DIR : /home/kozerus/public_html/go/dgs/dgs_data.sql

/home/kozerus/public_html/go/dgs

-- phpMyAdmin SQL Dump
-- version 5.1.1
-- https://www.phpmyadmin.net/
--
-- Host: localhost
-- Generation Time: Nov 26, 2021 at 05:25 PM
-- Server version: 8.0.23
-- PHP Version: 8.0.6

SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
START TRANSACTION;
SET time_zone = "+00:00";


/*!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 utf8mb4 */;

--
-- Database: `dgs`
--

-- --------------------------------------------------------

--
-- Table structure for table `Adminlog`
--

CREATE TABLE `Adminlog` (
  `ID` int NOT NULL,
  `uid` int NOT NULL DEFAULT '0',
  `Handle` varchar(16) NOT NULL DEFAULT '',
  `Message` text NOT NULL,
  `Date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  `IP` varchar(16) NOT NULL DEFAULT ''
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

-- --------------------------------------------------------

--
-- Table structure for table `Bio`
--

CREATE TABLE `Bio` (
  `ID` int NOT NULL,
  `uid` int NOT NULL,
  `Category` varchar(40) NOT NULL,
  `Text` text NOT NULL,
  `SortOrder` smallint UNSIGNED NOT NULL DEFAULT '0'
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

-- --------------------------------------------------------

--
-- Table structure for table `Bulletin`
--

CREATE TABLE `Bulletin` (
  `ID` int NOT NULL,
  `uid` int NOT NULL,
  `LockVersion` tinyint UNSIGNED NOT NULL DEFAULT '0',
  `Category` enum('MAINT','ADM_MSG','TOURNEY','TNEWS','FEATURE','PRIV_MSG','AD') NOT NULL DEFAULT 'PRIV_MSG',
  `Status` enum('NEW','PENDING','REJECTED','SHOW','ARCHIVE','DELETE') NOT NULL DEFAULT 'NEW',
  `TargetType` enum('ALL','TD','TP','UL','MPG') NOT NULL,
  `TargetRatingMin` smallint NOT NULL DEFAULT '-9999',
  `TargetRatingMax` smallint NOT NULL DEFAULT '9999',
  `Flags` tinyint UNSIGNED NOT NULL DEFAULT '0',
  `PublishTime` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `ExpireTime` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `tid` int NOT NULL DEFAULT '0',
  `gid` int NOT NULL DEFAULT '0',
  `CountReads` mediumint UNSIGNED NOT NULL DEFAULT '0',
  `AdminNote` varchar(255) NOT NULL DEFAULT '',
  `Subject` varchar(255) NOT NULL,
  `Text` text NOT NULL,
  `Lastchanged` datetime NOT NULL DEFAULT '0000-00-00 00:00:00'
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

-- --------------------------------------------------------

--
-- Table structure for table `BulletinRead`
--

CREATE TABLE `BulletinRead` (
  `bid` int NOT NULL,
  `uid` int NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

-- --------------------------------------------------------

--
-- Table structure for table `BulletinTarget`
--

CREATE TABLE `BulletinTarget` (
  `bid` int NOT NULL,
  `uid` int NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

-- --------------------------------------------------------

--
-- Table structure for table `Clock`
--

CREATE TABLE `Clock` (
  `ID` smallint NOT NULL,
  `Ticks` int NOT NULL DEFAULT '0',
  `Lastchanged` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `Finished` datetime NOT NULL DEFAULT '0000-00-00 00:00:00'
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

-- --------------------------------------------------------

--
-- Table structure for table `ConfigBoard`
--

CREATE TABLE `ConfigBoard` (
  `User_ID` int NOT NULL,
  `Stonesize` tinyint UNSIGNED NOT NULL DEFAULT '25',
  `Woodcolor` tinyint UNSIGNED NOT NULL DEFAULT '1',
  `BoardFlags` tinyint UNSIGNED NOT NULL DEFAULT '0',
  `Boardcoords` smallint UNSIGNED NOT NULL DEFAULT '31',
  `MoveNumbers` smallint UNSIGNED NOT NULL DEFAULT '0',
  `MoveModulo` smallint UNSIGNED NOT NULL DEFAULT '0',
  `NotesSmallHeight` tinyint UNSIGNED NOT NULL DEFAULT '25',
  `NotesSmallWidth` tinyint UNSIGNED NOT NULL DEFAULT '30',
  `NotesSmallMode` enum('RIGHT','BELOW','RIGHTOFF','BELOWOFF') NOT NULL DEFAULT 'RIGHT',
  `NotesLargeHeight` tinyint UNSIGNED NOT NULL DEFAULT '25',
  `NotesLargeWidth` tinyint UNSIGNED NOT NULL DEFAULT '30',
  `NotesLargeMode` enum('RIGHT','BELOW','RIGHTOFF','BELOWOFF') NOT NULL DEFAULT 'RIGHT',
  `NotesCutoff` tinyint UNSIGNED NOT NULL DEFAULT '13'
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

-- --------------------------------------------------------

--
-- Table structure for table `ConfigPages`
--

CREATE TABLE `ConfigPages` (
  `User_ID` int NOT NULL,
  `StatusFlags` smallint NOT NULL DEFAULT '3',
  `StatusFolders` char(40) NOT NULL DEFAULT '',
  `ForumFlags` tinyint UNSIGNED NOT NULL DEFAULT '8',
  `ColumnsStatusGames` int NOT NULL DEFAULT '-1',
  `ColumnsStatusTournaments` int NOT NULL DEFAULT '-1',
  `ColumnsWaitingroom` int NOT NULL DEFAULT '-1',
  `ColumnsUsers` int NOT NULL DEFAULT '-1',
  `ColumnsOpponents` int NOT NULL DEFAULT '-1',
  `ColumnsContacts` int NOT NULL DEFAULT '-1',
  `ColumnsGamesRunningAll` int NOT NULL DEFAULT '-1',
  `ColumnsGamesRunningAll2` int NOT NULL DEFAULT '-1',
  `ColumnsGamesRunningUser` int NOT NULL DEFAULT '-1',
  `ColumnsGamesRunningUser2` int NOT NULL DEFAULT '-1',
  `ColumnsGamesFinishedAll` int NOT NULL DEFAULT '-1',
  `ColumnsGamesFinishedAll2` int NOT NULL DEFAULT '-1',
  `ColumnsGamesFinishedUser` int NOT NULL DEFAULT '-1',
  `ColumnsGamesFinishedUser2` int NOT NULL DEFAULT '-1',
  `ColumnsGamesObserved` int NOT NULL DEFAULT '-1',
  `ColumnsGamesObserved2` int NOT NULL DEFAULT '-1',
  `ColumnsGamesObservedAll` int NOT NULL DEFAULT '-1',
  `ColumnsGamesObservedAll2` int NOT NULL DEFAULT '-1',
  `ColumnsBulletinList` int NOT NULL DEFAULT '-1',
  `ColumnsFeatureList` int NOT NULL DEFAULT '-1',
  `ColumnsTournaments` int NOT NULL DEFAULT '-1',
  `ColumnsTournamentParticipants` int NOT NULL DEFAULT '-1',
  `ColumnsTDTournamentParticipants` int NOT NULL DEFAULT '-1',
  `ColumnsTournamentResults` int NOT NULL DEFAULT '-1',
  `ColumnsTournamentLadderView` int NOT NULL DEFAULT '-1',
  `ColumnsTournamentPoolView` int NOT NULL DEFAULT '-1'
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

-- --------------------------------------------------------

--
-- Table structure for table `Contacts`
--

CREATE TABLE `Contacts` (
  `uid` int NOT NULL,
  `cid` int NOT NULL,
  `SystemFlags` smallint UNSIGNED NOT NULL DEFAULT '0',
  `UserFlags` int UNSIGNED NOT NULL DEFAULT '0',
  `Created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `Lastchanged` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `Notes` varchar(255) NOT NULL DEFAULT ''
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

-- --------------------------------------------------------

--
-- Table structure for table `Contribution`
--

CREATE TABLE `Contribution` (
  `ID` int NOT NULL,
  `uid` int NOT NULL,
  `Category` enum('FOUNDER','DEV_MAIN','DEV_RECRUIT','DEV_CLIENT','OTHER') NOT NULL,
  `Comment` varchar(255) NOT NULL DEFAULT '',
  `Created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `Updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00'
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

-- --------------------------------------------------------

--
-- Table structure for table `Errorlog`
--

CREATE TABLE `Errorlog` (
  `ID` int NOT NULL,
  `uid` int NOT NULL DEFAULT '0',
  `Handle` varchar(16) NOT NULL DEFAULT '',
  `Message` varchar(32) NOT NULL,
  `Request` varchar(128) NOT NULL DEFAULT '',
  `MysqlError` text NOT NULL,
  `Debug` text NOT NULL,
  `Date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  `IP` varchar(16) NOT NULL DEFAULT ''
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

-- --------------------------------------------------------

--
-- Table structure for table `FAQ`
--

CREATE TABLE `FAQ` (
  `ID` int NOT NULL,
  `Parent` int NOT NULL DEFAULT '0',
  `Level` tinyint UNSIGNED NOT NULL DEFAULT '0',
  `SortOrder` smallint NOT NULL DEFAULT '0',
  `Question` int NOT NULL DEFAULT '0',
  `Answer` int NOT NULL DEFAULT '0',
  `Flags` tinyint UNSIGNED NOT NULL DEFAULT '128',
  `Reference` varchar(255) NOT NULL DEFAULT ''
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

--
-- Dumping data for table `FAQ`
--

INSERT INTO `FAQ` (`ID`, `Parent`, `Level`, `SortOrder`, `Question`, `Answer`, `Flags`, `Reference`) VALUES
(1, 1, 0, 0, 0, 0, 0, ''),
(12, 1, 1, 11, 501, 0, 0, ''),
(3, 1, 1, 29, 502, 0, 0, ''),
(14, 1, 1, 30, 503, 0, 0, ''),
(13, 1, 1, 4, 504, 0, 0, ''),
(8, 3, 2, 22, 505, 506, 0, ''),
(9, 3, 2, 19, 507, 508, 0, ''),
(15, 1, 1, 2, 509, 0, 0, ''),
(16, 1, 1, 27, 510, 0, 0, ''),
(17, 1, 1, 15, 511, 0, 0, ''),
(18, 1, 1, 5, 512, 0, 0, ''),
(19, 1, 1, 26, 513, 0, 0, ''),
(20, 16, 2, 5, 514, 515, 0, ''),
(103, 18, 2, 12, 673, 674, 0, ''),
(104, 357, 2, 21, 675, 676, 0, ''),
(105, 1, 1, 16, 677, 0, 0, ''),
(106, 105, 2, 11, 678, 679, 0, ''),
(107, 105, 2, 12, 680, 681, 0, ''),
(152, 3, 2, 36, 1019, 1020, 0, ''),
(109, 105, 2, 14, 684, 685, 0, ''),
(21, 3, 2, 23, 518, 519, 0, ''),
(141, 56, 2, 4, 991, 992, 0, ''),
(142, 56, 2, 5, 993, 994, 0, ''),
(143, 56, 2, 6, 995, 996, 0, ''),
(144, 105, 2, 8, 999, 1000, 0, ''),
(145, 56, 2, 1, 1001, 1002, 0, ''),
(146, 15, 2, 1, 1004, 1005, 0, ''),
(147, 19, 2, 4, 1006, 1007, 0, ''),
(148, 19, 2, 5, 1008, 1009, 0, ''),
(149, 105, 2, 10, 1010, 1011, 0, ''),
(150, 19, 2, 2, 1012, 1013, 0, ''),
(153, 3, 2, 25, 1021, 1022, 0, ''),
(154, 3, 2, 8, 1024, 1025, 0, ''),
(25, 15, 2, 3, 522, 523, 0, ''),
(27, 19, 2, 1, 525, 526, 0, ''),
(94, 3, 2, 33, 655, 656, 0, ''),
(95, 3, 2, 11, 657, 658, 0, ''),
(97, 357, 2, 14, 661, 662, 0, ''),
(98, 357, 2, 16, 663, 664, 0, ''),
(99, 3, 2, 17, 665, 666, 0, ''),
(100, 3, 2, 9, 667, 668, 0, ''),
(101, 3, 2, 29, 669, 670, 0, ''),
(110, 3, 2, 34, 686, 687, 0, ''),
(111, 357, 2, 18, 688, 689, 0, ''),
(112, 3, 2, 31, 690, 691, 0, ''),
(113, 3, 2, 12, 692, 693, 0, ''),
(29, 13, 2, 4, 529, 530, 0, ''),
(28, 13, 2, 2, 531, 532, 0, ''),
(30, 14, 2, 1, 533, 534, 0, ''),
(31, 3, 2, 37, 535, 536, 0, ''),
(32, 3, 2, 3, 537, 538, 0, ''),
(33, 3, 2, 18, 539, 540, 0, ''),
(34, 56, 2, 19, 541, 542, 0, ''),
(38, 3, 2, 20, 545, 546, 0, ''),
(39, 3, 2, 6, 547, 548, 0, ''),
(40, 56, 2, 15, 549, 550, 0, ''),
(41, 18, 2, 1, 551, 552, 0, ''),
(42, 56, 2, 3, 553, 554, 0, ''),
(43, 365, 2, 8, 555, 556, 0, ''),
(44, 357, 2, 1, 557, 558, 0, ''),
(45, 365, 2, 1, 559, 560, 0, ''),
(46, 365, 2, 10, 561, 562, 0, ''),
(47, 365, 2, 11, 563, 564, 0, ''),
(48, 1, 1, 1, 565, 0, 0, ''),
(49, 48, 2, 2, 566, 567, 0, ''),
(50, 105, 2, 3, 568, 569, 0, ''),
(56, 1, 1, 17, 570, 0, 0, ''),
(53, 56, 2, 16, 571, 572, 0, ''),
(54, 48, 2, 1, 573, 574, 128, ''),
(55, 12, 2, 3, 575, 576, 0, ''),
(57, 56, 2, 7, 577, 578, 0, ''),
(58, 56, 2, 8, 579, 580, 0, ''),
(59, 56, 2, 9, 581, 582, 0, ''),
(60, 56, 2, 13, 583, 584, 0, ''),
(61, 56, 2, 10, 585, 586, 0, ''),
(62, 56, 2, 12, 587, 588, 0, ''),
(63, 12, 2, 5, 589, 590, 0, ''),
(64, 56, 2, 18, 591, 592, 0, ''),
(65, 56, 2, 17, 593, 594, 0, ''),
(66, 56, 2, 14, 595, 596, 0, ''),
(67, 3, 2, 4, 597, 598, 0, ''),
(68, 56, 2, 11, 599, 600, 0, ''),
(69, 3, 2, 32, 601, 602, 0, ''),
(70, 360, 2, 5, 603, 604, 0, ''),
(75, 365, 2, 9, 605, 606, 0, ''),
(102, 365, 2, 3, 671, 672, 0, ''),
(140, 105, 2, 4, 989, 990, 0, ''),
(151, 13, 2, 3, 1016, 1017, 0, ''),
(89, 3, 2, 15, 645, 646, 0, ''),
(76, 19, 2, 3, 607, 608, 0, ''),
(77, 1, 1, 23, 622, 0, 0, ''),
(78, 3, 2, 24, 623, 624, 0, ''),
(79, 77, 2, 2, 625, 626, 0, ''),
(80, 12, 2, 8, 627, 628, 0, ''),
(81, 12, 2, 9, 629, 630, 0, ''),
(82, 357, 2, 4, 631, 632, 0, ''),
(83, 357, 2, 17, 633, 634, 0, ''),
(84, 358, 2, 3, 635, 636, 0, ''),
(85, 56, 2, 2, 637, 638, 0, ''),
(86, 19, 2, 7, 639, 640, 0, ''),
(88, 279, 2, 2, 643, 644, 0, ''),
(114, 18, 2, 5, 694, 695, 0, ''),
(115, 3, 2, 5, 696, 697, 0, ''),
(116, 3, 2, 21, 698, 699, 0, ''),
(117, 3, 2, 14, 700, 701, 0, ''),
(118, 3, 2, 10, 702, 703, 0, ''),
(119, 3, 2, 26, 704, 705, 0, ''),
(120, 3, 2, 28, 706, 707, 0, ''),
(121, 105, 2, 7, 708, 709, 0, ''),
(122, 13, 2, 1, 710, 711, 0, ''),
(123, 105, 2, 6, 712, 713, 0, ''),
(124, 77, 2, 1, 748, 749, 0, ''),
(125, 365, 2, 12, 751, 752, 0, ''),
(126, 365, 2, 13, 753, 754, 0, ''),
(127, 357, 2, 10, 963, 964, 0, ''),
(129, 357, 2, 15, 967, 968, 0, ''),
(131, 16, 2, 1, 971, 972, 0, ''),
(132, 356, 2, 7, 973, 974, 0, ''),
(133, 356, 2, 1, 975, 976, 0, ''),
(135, 16, 2, 2, 979, 980, 0, ''),
(136, 360, 2, 1, 981, 5318, 0, ''),
(137, 360, 2, 2, 983, 984, 0, ''),
(138, 17, 2, 10, 985, 986, 0, ''),
(139, 105, 2, 2, 987, 988, 0, ''),
(156, 12, 2, 12, 1036, 1037, 0, ''),
(157, 15, 2, 5, 1038, 1039, 0, ''),
(304, 160, 2, 1, 4626, 4627, 0, ''),
(159, 356, 2, 2, 1042, 1043, 0, ''),
(160, 1, 1, 25, 1132, 0, 0, ''),
(240, 3, 2, 16, 1360, 1361, 0, ''),
(236, 18, 2, 2, 1352, 1353, 0, ''),
(214, 17, 2, 3, 1309, 1310, 0, ''),
(220, 360, 2, 3, 1320, 1321, 0, ''),
(222, 358, 2, 1, 1324, 1325, 0, ''),
(209, 357, 2, 13, 1299, 1300, 0, ''),
(235, 12, 2, 11, 1350, 1351, 0, ''),
(219, 215, 2, 4, 1318, 1319, 0, ''),
(221, 360, 2, 4, 1322, 1323, 0, ''),
(208, 18, 2, 9, 1297, 1298, 0, ''),
(276, 365, 2, 7, 1723, 1724, 0, ''),
(173, 12, 2, 7, 1156, 1157, 0, ''),
(174, 356, 2, 4, 1158, 1159, 0, ''),
(200, 1, 1, 18, 1282, 0, 0, ''),
(387, 357, 2, 8, 5365, 5366, 0, ''),
(268, 160, 2, 5, 1706, 1707, 128, ''),
(242, 200, 2, 12, 1364, 1365, 0, ''),
(329, 1, 1, 9, 5259, 0, 0, ''),
(239, 339, 2, 4, 1358, 1359, 0, ''),
(238, 339, 2, 3, 1356, 1357, 0, ''),
(237, 339, 2, 2, 1354, 1355, 0, ''),
(234, 356, 2, 3, 1348, 1349, 0, ''),
(233, 12, 2, 4, 1346, 1347, 0, ''),
(232, 358, 2, 4, 1344, 1345, 0, ''),
(231, 13, 2, 5, 1342, 1343, 0, ''),
(201, 3, 2, 1, 1283, 1284, 0, ''),
(202, 105, 2, 9, 1285, 1286, 0, ''),
(203, 12, 2, 1, 1287, 1288, 0, ''),
(204, 279, 2, 5, 1289, 1290, 0, ''),
(205, 279, 2, 6, 1291, 1292, 0, ''),
(206, 279, 2, 7, 1293, 1294, 0, ''),
(207, 16, 2, 3, 1295, 1296, 0, ''),
(210, 357, 2, 3, 1301, 1302, 0, ''),
(211, 357, 2, 6, 1303, 1304, 0, ''),
(212, 357, 2, 2, 1305, 1306, 0, ''),
(213, 279, 2, 4, 1307, 1308, 0, ''),
(215, 1, 1, 24, 1311, 0, 0, ''),
(216, 215, 2, 5, 1312, 1313, 0, ''),
(217, 215, 2, 3, 1314, 1315, 0, ''),
(218, 215, 2, 2, 1316, 1317, 0, ''),
(223, 200, 2, 2, 1326, 1327, 0, ''),
(224, 200, 2, 9, 1328, 1329, 0, ''),
(225, 200, 2, 11, 1330, 1331, 0, ''),
(226, 200, 2, 6, 1332, 1333, 0, ''),
(227, 17, 2, 11, 1334, 1335, 0, ''),
(228, 17, 2, 12, 1336, 1337, 0, ''),
(229, 365, 2, 5, 1338, 1339, 0, ''),
(230, 18, 2, 11, 1340, 1341, 0, ''),
(243, 160, 2, 3, 1366, 1367, 0, ''),
(244, 160, 2, 4, 1368, 1369, 0, ''),
(245, 12, 2, 6, 1660, 1661, 0, ''),
(246, 200, 2, 1, 1662, 1663, 0, ''),
(247, 200, 2, 19, 1664, 1665, 0, ''),
(248, 200, 2, 18, 1666, 1667, 0, ''),
(249, 200, 2, 17, 1668, 1669, 0, ''),
(250, 200, 2, 16, 1670, 1671, 0, ''),
(251, 200, 2, 15, 1672, 1673, 0, ''),
(252, 200, 2, 14, 1674, 1675, 0, ''),
(253, 200, 2, 13, 1676, 1677, 0, ''),
(254, 200, 2, 8, 1678, 1679, 0, ''),
(255, 200, 2, 7, 1680, 1681, 0, ''),
(256, 200, 2, 5, 1682, 1683, 0, ''),
(257, 200, 2, 4, 1684, 1685, 0, ''),
(258, 200, 2, 3, 1686, 1687, 0, ''),
(330, 329, 2, 4, 5260, 5261, 0, ''),
(260, 361, 2, 3, 1690, 1691, 0, ''),
(261, 361, 2, 1, 1692, 1693, 0, ''),
(262, 361, 2, 2, 1694, 1695, 0, ''),
(263, 356, 2, 6, 1696, 1697, 0, ''),
(264, 361, 2, 4, 1698, 1699, 0, ''),
(265, 361, 2, 5, 1700, 1701, 0, ''),
(266, 361, 2, 6, 1702, 1703, 0, ''),
(267, 361, 2, 7, 1704, 1705, 0, ''),
(386, 357, 2, 7, 5363, 5364, 0, ''),
(271, 279, 2, 9, 1712, 1713, 0, ''),
(272, 160, 2, 6, 1714, 1715, 0, ''),
(273, 356, 2, 5, 1716, 1717, 0, ''),
(274, 160, 2, 7, 1718, 1719, 0, ''),
(275, 160, 2, 8, 1720, 1721, 0, ''),
(277, 365, 2, 2, 1738, 1739, 0, ''),
(278, 105, 2, 13, 1740, 1741, 0, ''),
(279, 1, 1, 19, 1742, 0, 0, ''),
(280, 279, 2, 1, 1743, 1744, 0, ''),
(281, 279, 2, 3, 1745, 1746, 0, ''),
(282, 279, 2, 8, 1747, 1748, 0, ''),
(283, 1, 1, 21, 1749, 0, 0, ''),
(284, 283, 2, 2, 1750, 1751, 0, ''),
(285, 283, 2, 3, 1752, 1753, 128, ''),
(286, 160, 2, 2, 1869, 1870, 0, ''),
(287, 200, 2, 10, 1881, 1882, 0, ''),
(288, 16, 2, 4, 1883, 1884, 0, ''),
(289, 365, 2, 6, 1888, 1889, 0, ''),
(290, 3, 2, 13, 1890, 1891, 0, ''),
(291, 3, 2, 35, 1892, 1893, 0, ''),
(292, 3, 2, 30, 1894, 1895, 0, ''),
(293, 3, 2, 2, 1896, 1897, 0, ''),
(296, 19, 2, 6, 1902, 1903, 0, ''),
(297, 15, 2, 6, 1904, 1905, 0, ''),
(298, 15, 2, 4, 1906, 1907, 0, ''),
(299, 283, 2, 1, 1908, 1909, 0, ''),
(300, 365, 2, 4, 1910, 1911, 0, ''),
(416, 358, 2, 2, 5471, 5472, 128, ''),
(302, 15, 2, 2, 1914, 1915, 0, ''),
(303, 215, 2, 1, 1916, 1917, 0, ''),
(305, 1, 1, 8, 4628, 0, 0, ''),
(306, 305, 2, 1, 4629, 4630, 0, ''),
(307, 305, 2, 2, 4631, 4632, 0, ''),
(308, 305, 2, 3, 4633, 4634, 0, ''),
(309, 305, 2, 7, 4635, 4636, 0, ''),
(310, 305, 2, 24, 4637, 4638, 0, ''),
(311, 305, 2, 4, 4639, 4640, 0, ''),
(312, 305, 2, 21, 4641, 4642, 0, ''),
(313, 305, 2, 26, 4643, 4644, 0, ''),
(314, 329, 2, 1, 5230, 5231, 0, ''),
(317, 17, 2, 4, 5236, 5237, 0, ''),
(318, 1, 1, 20, 5238, 0, 0, ''),
(319, 318, 2, 4, 5239, 5240, 0, ''),
(320, 18, 2, 10, 5241, 5242, 0, ''),
(356, 1, 1, 3, 5311, 0, 0, ''),
(322, 318, 2, 3, 5245, 5246, 0, ''),
(323, 318, 2, 5, 5247, 5248, 0, ''),
(324, 318, 2, 6, 5249, 5250, 0, ''),
(325, 318, 2, 7, 5251, 5252, 0, ''),
(326, 318, 2, 1, 5253, 5254, 0, ''),
(327, 318, 2, 2, 5255, 5256, 0, ''),
(328, 318, 2, 8, 5257, 5258, 0, ''),
(331, 329, 2, 5, 5262, 5263, 0, ''),
(332, 329, 2, 6, 5264, 5265, 0, ''),
(333, 329, 2, 7, 5266, 5267, 0, ''),
(334, 329, 2, 8, 5268, 5269, 0, ''),
(335, 329, 2, 10, 5270, 5271, 0, ''),
(336, 279, 2, 10, 5272, 5273, 0, ''),
(337, 329, 2, 2, 5274, 5275, 0, ''),
(338, 329, 2, 3, 5276, 5277, 0, ''),
(339, 1, 1, 13, 5278, 0, 0, ''),
(340, 339, 2, 6, 5279, 5280, 128, ''),
(341, 366, 2, 21, 5281, 5282, 128, ''),
(342, 366, 2, 15, 5283, 5284, 128, ''),
(343, 17, 2, 5, 5285, 5286, 0, ''),
(344, 339, 2, 5, 5287, 5288, 128, ''),
(345, 18, 2, 13, 5289, 5290, 0, ''),
(346, 17, 2, 6, 5291, 5292, 0, ''),
(347, 17, 2, 2, 5293, 5294, 0, ''),
(348, 105, 2, 5, 5295, 5296, 0, ''),
(349, 357, 2, 11, 5297, 5298, 0, ''),
(350, 17, 2, 7, 5299, 5300, 0, ''),
(351, 357, 2, 5, 5301, 5302, 0, ''),
(352, 18, 2, 14, 5303, 5304, 0, ''),
(353, 357, 2, 20, 5305, 5306, 0, ''),
(354, 17, 2, 1, 5307, 5308, 128, ''),
(355, 12, 2, 2, 5309, 5310, 0, ''),
(357, 1, 1, 6, 5312, 0, 0, ''),
(358, 1, 1, 10, 5313, 0, 0, ''),
(360, 1, 1, 14, 5315, 0, 0, ''),
(361, 1, 1, 12, 5316, 0, 0, ''),
(362, 339, 2, 1, 5317, 982, 0, ''),
(363, 18, 2, 3, 5319, 5320, 0, ''),
(364, 18, 2, 4, 5321, 5322, 0, ''),
(365, 1, 1, 7, 5323, 0, 0, ''),
(366, 1, 1, 28, 5324, 0, 0, ''),
(367, 366, 2, 2, 5325, 5326, 128, ''),
(368, 366, 2, 6, 5327, 5328, 64, ''),
(369, 366, 2, 8, 5329, 5330, 128, ''),
(370, 366, 2, 10, 5331, 5332, 128, ''),
(371, 366, 2, 11, 5333, 5334, 128, ''),
(372, 366, 2, 12, 5335, 5336, 128, ''),
(373, 366, 2, 13, 5337, 5338, 128, ''),
(374, 366, 2, 9, 5339, 5340, 128, ''),
(375, 366, 2, 3, 5341, 5342, 128, ''),
(376, 366, 2, 20, 5343, 5344, 128, ''),
(377, 366, 2, 19, 5345, 5346, 128, ''),
(378, 366, 2, 18, 5347, 5348, 128, ''),
(379, 366, 2, 1, 5349, 5350, 128, ''),
(380, 366, 2, 7, 5351, 5352, 128, ''),
(381, 366, 2, 4, 5353, 5354, 128, ''),
(382, 366, 2, 17, 5355, 5356, 128, ''),
(383, 366, 2, 14, 5357, 5358, 128, ''),
(384, 366, 2, 5, 5359, 5360, 128, ''),
(385, 366, 2, 16, 5361, 5362, 128, ''),
(388, 329, 2, 9, 5367, 5368, 0, ''),
(389, 17, 2, 8, 5369, 5370, 0, ''),
(390, 17, 2, 9, 5371, 5372, 0, ''),
(391, 357, 2, 9, 5373, 5374, 0, ''),
(392, 357, 2, 12, 5375, 5376, 0, ''),
(393, 357, 2, 19, 5377, 5378, 0, ''),
(394, 18, 2, 6, 5379, 5380, 0, ''),
(395, 305, 2, 20, 5381, 5382, 0, ''),
(396, 305, 2, 5, 5383, 5384, 0, ''),
(397, 305, 2, 8, 5385, 5386, 0, ''),
(398, 305, 2, 11, 5387, 5388, 0, ''),
(399, 305, 2, 19, 5389, 5390, 0, ''),
(400, 305, 2, 22, 5391, 5392, 0, ''),
(401, 305, 2, 14, 5393, 5394, 0, ''),
(402, 305, 2, 18, 5395, 5396, 0, ''),
(403, 305, 2, 15, 5397, 5398, 0, ''),
(404, 305, 2, 16, 5399, 5400, 0, ''),
(405, 305, 2, 17, 5401, 5402, 0, ''),
(406, 305, 2, 25, 5403, 5404, 0, ''),
(414, 305, 2, 9, 5467, 5468, 0, ''),
(408, 305, 2, 23, 5407, 5408, 0, ''),
(409, 305, 2, 6, 5409, 5410, 0, ''),
(410, 18, 2, 7, 5454, 5455, 0, ''),
(411, 18, 2, 8, 5456, 5457, 0, ''),
(412, 305, 2, 12, 5462, 5463, 0, ''),
(413, 305, 2, 13, 5464, 5465, 0, ''),
(415, 305, 2, 10, 5469, 5470, 0, ''),
(417, 3, 2, 7, 6180, 6181, 0, ''),
(418, 3, 2, 27, 6182, 6183, 0, ''),
(422, 1, 1, 22, 6257, 0, 0, ''),
(420, 105, 2, 1, 6185, 6186, 0, ''),
(421, 12, 2, 10, 6211, 6212, 0, ''),
(423, 422, 2, 1, 6258, 6259, 0, ''),
(424, 422, 2, 3, 6260, 6261, 0, ''),
(425, 422, 2, 2, 6262, 6263, 0, '');

-- --------------------------------------------------------

--
-- Table structure for table `FAQlog`
--

CREATE TABLE `FAQlog` (
  `ID` int NOT NULL,
  `uid` int NOT NULL DEFAULT '0',
  `Ref_ID` int NOT NULL DEFAULT '0',
  `Type` enum('FAQ','Links','Intro') NOT NULL DEFAULT 'FAQ',
  `Flags` tinyint UNSIGNED NOT NULL DEFAULT '0',
  `Question` text NOT NULL,
  `Answer` text NOT NULL,
  `Reference` varchar(255) NOT NULL DEFAULT '',
  `Date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

-- --------------------------------------------------------

--
-- Table structure for table `Feature`
--

CREATE TABLE `Feature` (
  `ID` int NOT NULL,
  `Status` enum('NEW','VOTE','WORK','DONE','LIVE','NACK') NOT NULL DEFAULT 'NEW',
  `Size` enum('?','EPIC','XXL','XL','L','M','S') NOT NULL DEFAULT '?',
  `Subject` varchar(255) NOT NULL,
  `Description` text NOT NULL,
  `Editor_ID` int NOT NULL,
  `Created` datetime NOT NULL,
  `Lastchanged` datetime NOT NULL DEFAULT '0000-00-00 00:00:00'
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

-- --------------------------------------------------------

--
-- Table structure for table `FeatureVote`
--

CREATE TABLE `FeatureVote` (
  `fid` int NOT NULL,
  `Voter_ID` int NOT NULL,
  `Points` tinyint NOT NULL DEFAULT '0',
  `Lastchanged` datetime NOT NULL DEFAULT '0000-00-00 00:00:00'
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

-- --------------------------------------------------------

--
-- Table structure for table `Folders`
--

CREATE TABLE `Folders` (
  `ID` int NOT NULL,
  `uid` int NOT NULL,
  `Folder_nr` tinyint NOT NULL DEFAULT '0',
  `Name` char(40) NOT NULL,
  `BGColor` char(8) NOT NULL DEFAULT 'f7f5e3FF',
  `FGColor` char(6) NOT NULL DEFAULT '000000'
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

-- --------------------------------------------------------

--
-- Table structure for table `Forumlog`
--

CREATE TABLE `Forumlog` (
  `ID` int NOT NULL,
  `User_ID` int NOT NULL,
  `Thread_ID` int NOT NULL,
  `Post_ID` int NOT NULL,
  `Time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `Action` varchar(40) NOT NULL,
  `IP` varchar(16) NOT NULL DEFAULT ''
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

-- --------------------------------------------------------

--
-- Table structure for table `Forumreads`
--

CREATE TABLE `Forumreads` (
  `User_ID` int NOT NULL DEFAULT '0',
  `Forum_ID` smallint NOT NULL DEFAULT '0',
  `Thread_ID` int NOT NULL DEFAULT '0',
  `Time` datetime NOT NULL,
  `HasNew` tinyint NOT NULL DEFAULT '0'
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

-- --------------------------------------------------------

--
-- Table structure for table `Forums`
--

CREATE TABLE `Forums` (
  `ID` smallint NOT NULL,
  `Name` char(40) NOT NULL DEFAULT '',
  `Description` char(128) NOT NULL DEFAULT '',
  `SortOrder` tinyint UNSIGNED NOT NULL DEFAULT '0',
  `Options` int UNSIGNED NOT NULL DEFAULT '0',
  `LastPost` int NOT NULL DEFAULT '0',
  `Updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `ThreadsInForum` mediumint UNSIGNED NOT NULL DEFAULT '0',
  `PostsInForum` mediumint UNSIGNED NOT NULL DEFAULT '0'
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

-- --------------------------------------------------------

--
-- Table structure for table `GameInvitation`
--

CREATE TABLE `GameInvitation` (
  `gid` int NOT NULL,
  `uid` int NOT NULL,
  `Lastchanged` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `Ruleset` enum('JAPANESE','CHINESE') NOT NULL DEFAULT 'JAPANESE',
  `Size` tinyint UNSIGNED NOT NULL DEFAULT '19',
  `Komi` decimal(4,1) NOT NULL DEFAULT '6.5',
  `Handicap` tinyint UNSIGNED NOT NULL DEFAULT '0',
  `Handicaptype` enum('conv','proper','nigiri','double','black','white','auko_sec','auko_opn','div_ykic','div_ikyc') NOT NULL DEFAULT 'conv',
  `AdjKomi` decimal(4,1) NOT NULL DEFAULT '0.0',
  `JigoMode` enum('KEEP_KOMI','ALLOW_JIGO','NO_JIGO') NOT NULL DEFAULT 'KEEP_KOMI',
  `AdjHandicap` tinyint NOT NULL DEFAULT '0',
  `MinHandicap` tinyint UNSIGNED NOT NULL DEFAULT '0',
  `MaxHandicap` tinyint NOT NULL DEFAULT '-1',
  `Maintime` smallint NOT NULL DEFAULT '0',
  `Byotype` enum('JAP','CAN','FIS') NOT NULL DEFAULT 'JAP',
  `Byotime` smallint NOT NULL DEFAULT '0',
  `Byoperiods` tinyint NOT NULL DEFAULT '0',
  `Rated` enum('N','Y') NOT NULL DEFAULT 'N',
  `StdHandicap` enum('N','Y') NOT NULL DEFAULT 'N',
  `WeekendClock` enum('N','Y') NOT NULL DEFAULT 'Y'
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

-- --------------------------------------------------------

--
-- Table structure for table `GamePlayers`
--

CREATE TABLE `GamePlayers` (
  `ID` int NOT NULL,
  `gid` int NOT NULL,
  `GroupColor` enum('B','W','G1','G2','BW') NOT NULL DEFAULT 'BW',
  `GroupOrder` tinyint NOT NULL DEFAULT '0',
  `uid` int NOT NULL DEFAULT '0',
  `Flags` smallint UNSIGNED NOT NULL DEFAULT '0'
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

-- --------------------------------------------------------

--
-- Table structure for table `Games`
--

CREATE TABLE `Games` (
  `ID` int NOT NULL,
  `tid` int NOT NULL DEFAULT '0',
  `ShapeID` int UNSIGNED NOT NULL DEFAULT '0',
  `Starttime` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `Lastchanged` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `mid` int NOT NULL DEFAULT '0',
  `DoubleGame_ID` int NOT NULL DEFAULT '0',
  `Black_ID` int NOT NULL,
  `White_ID` int NOT NULL,
  `ToMove_ID` int NOT NULL DEFAULT '0',
  `GameType` enum('GO','TEAM_GO','ZEN_GO') NOT NULL DEFAULT 'GO',
  `GamePlayers` char(5) NOT NULL DEFAULT '',
  `Ruleset` enum('JAPANESE','CHINESE') NOT NULL DEFAULT 'JAPANESE',
  `Size` tinyint UNSIGNED NOT NULL DEFAULT '19',
  `Komi` decimal(4,1) NOT NULL DEFAULT '6.5',
  `Handicap` tinyint UNSIGNED NOT NULL DEFAULT '0',
  `Status` enum('KOMI','SETUP','INVITED','PLAY','PASS','SCORE','SCORE2','FINISHED') NOT NULL DEFAULT 'INVITED',
  `Moves` smallint UNSIGNED NOT NULL DEFAULT '0',
  `Black_Prisoners` smallint UNSIGNED NOT NULL DEFAULT '0',
  `White_Prisoners` smallint UNSIGNED NOT NULL DEFAULT '0',
  `Last_X` tinyint NOT NULL DEFAULT '-1',
  `Last_Y` tinyint NOT NULL DEFAULT '-1',
  `Last_Move` char(2) NOT NULL DEFAULT '',
  `Flags` smallint UNSIGNED NOT NULL DEFAULT '0',
  `Score` decimal(5,1) NOT NULL DEFAULT '0.0',
  `Maintime` smallint NOT NULL DEFAULT '0',
  `Byotype` enum('JAP','CAN','FIS') NOT NULL DEFAULT 'JAP',
  `Byotime` smallint NOT NULL DEFAULT '0',
  `Byoperiods` tinyint NOT NULL DEFAULT '0',
  `Black_Maintime` smallint NOT NULL DEFAULT '0',
  `White_Maintime` smallint NOT NULL DEFAULT '0',
  `Black_Byotime` smallint NOT NULL DEFAULT '0',
  `White_Byotime` smallint NOT NULL DEFAULT '0',
  `Black_Byoperiods` tinyint NOT NULL DEFAULT '-1',
  `White_Byoperiods` tinyint NOT NULL DEFAULT '-1',
  `LastTicks` int NOT NULL DEFAULT '0',
  `ClockUsed` smallint NOT NULL DEFAULT '0',
  `TimeOutDate` int NOT NULL DEFAULT '0',
  `Rated` enum('N','Y','Done') NOT NULL DEFAULT 'N',
  `StdHandicap` enum('N','Y') NOT NULL DEFAULT 'N',
  `WeekendClock` enum('N','Y') NOT NULL DEFAULT 'Y',
  `Black_Start_Rating` double NOT NULL DEFAULT '-9999',
  `White_Start_Rating` double NOT NULL DEFAULT '-9999',
  `Black_End_Rating` double NOT NULL DEFAULT '-9999',
  `White_End_Rating` double NOT NULL DEFAULT '-9999',
  `Snapshot` varchar(216) NOT NULL DEFAULT '',
  `ShapeSnapshot` varchar(255) NOT NULL DEFAULT '',
  `GameSetup` varchar(255) NOT NULL DEFAULT ''
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

-- --------------------------------------------------------

--
-- Table structure for table `GameSgf`
--

CREATE TABLE `GameSgf` (
  `gid` int NOT NULL,
  `uid` int NOT NULL,
  `Lastchanged` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `SgfData` blob NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

-- --------------------------------------------------------

--
-- Table structure for table `GamesNotes`
--

CREATE TABLE `GamesNotes` (
  `gid` int NOT NULL,
  `uid` int NOT NULL,
  `Hidden` enum('N','Y') NOT NULL DEFAULT 'N',
  `Notes` text NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

-- --------------------------------------------------------

--
-- Table structure for table `GamesPriority`
--

CREATE TABLE `GamesPriority` (
  `gid` int NOT NULL,
  `uid` int NOT NULL,
  `Priority` smallint NOT NULL DEFAULT '0'
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

-- --------------------------------------------------------

--
-- Table structure for table `GameStats`
--

CREATE TABLE `GameStats` (
  `uid` int NOT NULL,
  `oid` int NOT NULL,
  `Running` smallint UNSIGNED NOT NULL DEFAULT '0',
  `Finished` mediumint UNSIGNED NOT NULL DEFAULT '0'
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

-- --------------------------------------------------------

--
-- Table structure for table `Intro`
--

CREATE TABLE `Intro` (
  `ID` int NOT NULL,
  `Parent` int NOT NULL DEFAULT '0',
  `Level` tinyint UNSIGNED NOT NULL DEFAULT '0',
  `SortOrder` smallint NOT NULL DEFAULT '0',
  `Question` int NOT NULL DEFAULT '0',
  `Answer` int NOT NULL DEFAULT '0',
  `Flags` tinyint UNSIGNED NOT NULL DEFAULT '128',
  `Reference` varchar(255) NOT NULL DEFAULT ''
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

-- --------------------------------------------------------

--
-- Table structure for table `IpStats`
--

CREATE TABLE `IpStats` (
  `uid` int NOT NULL DEFAULT '0',
  `Page` char(4) NOT NULL DEFAULT '',
  `IP` char(16) NOT NULL,
  `Counter` int UNSIGNED NOT NULL DEFAULT '0',
  `Created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `Lastchanged` datetime NOT NULL DEFAULT '0000-00-00 00:00:00'
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

-- --------------------------------------------------------

--
-- Table structure for table `ko_temp`
--

CREATE TABLE `ko_temp` (
  `id` int UNSIGNED NOT NULL,
  `fname` varchar(30) NOT NULL,
  `lname` varchar(30) NOT NULL,
  `email` varchar(50) DEFAULT NULL,
  `reg_date` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;

--
-- Dumping data for table `ko_temp`
--

INSERT INTO `ko_temp` (`id`, `fname`, `lname`, `email`, `reg_date`) VALUES
(1, 'fname0', 'lname0', 'lname0@somewhere.com', '2021-11-26 15:52:52'),
(3, 'fname1', 'lname1', 'lname1@somewhere.com', '2021-11-26 15:59:51'),
(4, 'fname2', 'lname2', 'lname2@somewhere.com', '2021-11-26 16:00:03'),
(5, 'fname3', 'lname3', 'lname3@somewhere.com', '2021-11-26 16:00:23'),
(6, '', '', '', '2021-11-26 16:05:51'),
(7, 'fname5', 'lname5', 'lname5@somewhere.com', '2021-11-26 16:30:20'),
(8, 'fname6', 'lname6', 'lname6@somewhere.com', '2021-11-26 16:31:00');

-- --------------------------------------------------------

--
-- Table structure for table `Links`
--

CREATE TABLE `Links` (
  `ID` int NOT NULL,
  `Parent` int NOT NULL DEFAULT '0',
  `Level` tinyint UNSIGNED NOT NULL DEFAULT '0',
  `SortOrder` smallint NOT NULL DEFAULT '0',
  `Question` int NOT NULL DEFAULT '0',
  `Answer` int NOT NULL DEFAULT '0',
  `Flags` tinyint UNSIGNED NOT NULL DEFAULT '128',
  `Reference` varchar(255) NOT NULL DEFAULT ''
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

--
-- Dumping data for table `Links`
--

INSERT INTO `Links` (`ID`, `Parent`, `Level`, `SortOrder`, `Question`, `Answer`, `Flags`, `Reference`) VALUES
(1, 1, 0, 0, 0, 0, 0, ''),
(35, 1, 1, 1, 256, 0, 0, ''),
(36, 35, 2, 1, 265, 266, 0, 'http://senseis.xmp.net'),
(37, 35, 2, 2, 257, 258, 0, 'http://gobase.org'),
(38, 35, 2, 3, 1102, 1103, 0, 'http://www.gogod.co.uk/'),
(39, 35, 2, 4, 259, 260, 0, 'http://senseis.xmp.net/?RGGFAQ'),
(40, 35, 2, 5, 4566, 1406, 0, 'http://intergofed.org/members.html'),
(41, 35, 2, 6, 267, 4567, 0, 'http://go-news.blogspot.com/'),
(42, 35, 2, 7, 4568, 4569, 0, 'http://gosensations.com/'),
(43, 35, 2, 8, 271, 272, 0, 'http://senseis.xmp.net/?HikaruNoGo'),
(44, 1, 1, 2, 273, 0, 0, ''),
(45, 44, 2, 1, 274, 275, 0, 'http://playgo.to/interactive/index.html'),
(46, 44, 2, 2, 248, 276, 0, 'http://www.britgo.org/intro/intro1.html'),
(47, 44, 2, 3, 4570, 4571, 0, 'http://www.pandanet.co.jp/English/introduction_of_go/'),
(48, 1, 1, 3, 281, 0, 0, ''),
(49, 48, 2, 1, 283, 284, 0, 'http://www.goproblems.com/'),
(50, 48, 2, 2, 285, 286, 0, 'http://gtl.jeudego.org/'),
(51, 48, 2, 3, 1104, 1105, 0, 'http://www.yomiuri.co.jp/dy/columns/0001/'),
(52, 48, 2, 4, 287, 288, 0, 'http://senseis.xmp.net/?EssentialGoTerms'),
(53, 1, 1, 4, 291, 0, 0, ''),
(54, 53, 2, 1, 292, 293, 0, 'http://www.britgo.org/intro/intro1.html#bh'),
(55, 53, 2, 2, 294, 295, 0, 'http://gobase.org/information/history/'),
(56, 1, 1, 5, 296, 0, 0, ''),
(57, 56, 2, 1, 297, 298, 0, 'http://www.gobooks.info/'),
(58, 56, 2, 2, 4572, 4616, 0, 'http://www.slateandshell.com/'),
(59, 56, 2, 3, 4574, 4616, 0, 'http://www.kiseido.com/'),
(60, 56, 2, 4, 4575, 4616, 0, 'http://www.yutopian.com/go/'),
(61, 56, 2, 5, 4576, 299, 0, 'http://www.schaakengo.nl/'),
(62, 1, 1, 6, 300, 0, 0, ''),
(63, 62, 2, 1, 4577, 301, 0, 'http://www.itsyourturn.com/'),
(64, 62, 2, 2, 4578, 1407, 0, 'http://www.online-go.com/'),
(65, 62, 2, 3, 4579, 1408, 0, 'http://www.gokgs.com/'),
(66, 62, 2, 4, 4580, 303, 0, 'http://www.pandanet-igs.com/'),
(67, 62, 2, 5, 305, 306, 0, 'http://senseis.xmp.net/?GoServers');

-- --------------------------------------------------------

--
-- Table structure for table `MessageCorrespondents`
--

CREATE TABLE `MessageCorrespondents` (
  `ID` int NOT NULL,
  `uid` int NOT NULL DEFAULT '0',
  `mid` int NOT NULL DEFAULT '0',
  `Folder_nr` tinyint NOT NULL,
  `Sender` enum('M','N','Y','S') NOT NULL DEFAULT 'Y',
  `Replied` enum('M','N','Y') NOT NULL DEFAULT 'N'
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

-- --------------------------------------------------------

--
-- Table structure for table `Messages`
--

CREATE TABLE `Messages` (
  `ID` int NOT NULL,
  `Type` enum('NORMAL','INVITATION','DISPUTED','RESULT') NOT NULL DEFAULT 'NORMAL',
  `Flags` tinyint UNSIGNED NOT NULL DEFAULT '0',
  `Thread` int NOT NULL DEFAULT '0',
  `Level` smallint NOT NULL DEFAULT '0',
  `ReplyTo` int NOT NULL DEFAULT '0',
  `Game_ID` int NOT NULL DEFAULT '0',
  `Time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `Subject` varchar(80) NOT NULL DEFAULT '',
  `Text` text NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

-- --------------------------------------------------------

--
-- Table structure for table `MoveMessages`
--

CREATE TABLE `MoveMessages` (
  `gid` int NOT NULL,
  `MoveNr` smallint UNSIGNED NOT NULL DEFAULT '0',
  `Text` text NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

-- --------------------------------------------------------

--
-- Table structure for table `Moves`
--

CREATE TABLE `Moves` (
  `ID` int NOT NULL,
  `gid` int NOT NULL,
  `MoveNr` smallint UNSIGNED NOT NULL,
  `Stone` tinyint UNSIGNED NOT NULL DEFAULT '0',
  `PosX` tinyint NOT NULL,
  `PosY` tinyint NOT NULL,
  `Hours` smallint UNSIGNED NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

-- --------------------------------------------------------

--
-- Table structure for table `MoveSequence`
--

CREATE TABLE `MoveSequence` (
  `ID` int NOT NULL,
  `gid` int NOT NULL,
  `uid` int NOT NULL,
  `Status` enum('INACTIVE','ACTIVE','ILLEGAL','OPP_MSG','DEVIATED','DONE') NOT NULL DEFAULT 'INACTIVE',
  `Flags` tinyint UNSIGNED NOT NULL DEFAULT '0',
  `ErrorCode` tinyint UNSIGNED NOT NULL DEFAULT '0',
  `StartMoveNr` smallint UNSIGNED NOT NULL DEFAULT '0',
  `StartMove` char(3) NOT NULL DEFAULT '',
  `LastMoveNr` smallint UNSIGNED NOT NULL DEFAULT '0',
  `LastMovePos` smallint UNSIGNED NOT NULL DEFAULT '0',
  `LastMove` char(3) NOT NULL DEFAULT '',
  `Sequence` varbinary(2048) NOT NULL DEFAULT ''
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

-- --------------------------------------------------------

--
-- Table structure for table `MoveStats`
--

CREATE TABLE `MoveStats` (
  `uid` int NOT NULL DEFAULT '0',
  `SlotTime` smallint UNSIGNED NOT NULL DEFAULT '0',
  `SlotWDay` tinyint NOT NULL DEFAULT '0',
  `SlotWeek` tinyint NOT NULL DEFAULT '0',
  `Counter` mediumint UNSIGNED NOT NULL DEFAULT '0'
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

-- --------------------------------------------------------

--
-- Table structure for table `Observers`
--

CREATE TABLE `Observers` (
  `ID` int NOT NULL,
  `uid` int NOT NULL,
  `gid` int NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

-- --------------------------------------------------------

--
-- Table structure for table `Players`
--

CREATE TABLE `Players` (
  `ID` int NOT NULL,
  `Type` smallint UNSIGNED NOT NULL DEFAULT '0',
  `Handle` varchar(16) NOT NULL,
  `Password` varchar(41) NOT NULL,
  `Newpassword` varchar(41) NOT NULL DEFAULT '',
  `Sessioncode` varchar(41) NOT NULL DEFAULT '',
  `Sessionexpire` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `Lastaccess` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `LastQuickAccess` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `LastMove` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `Registerdate` date NOT NULL,
  `Hits` int NOT NULL DEFAULT '0',
  `VaultCnt` smallint UNSIGNED NOT NULL DEFAULT '0',
  `VaultTime` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `Moves` int NOT NULL DEFAULT '0',
  `Activity` int NOT NULL DEFAULT '15000',
  `Name` varchar(40) NOT NULL DEFAULT '',
  `Email` varchar(80) NOT NULL DEFAULT '',
  `Rank` varchar(40) NOT NULL DEFAULT '',
  `SendEmail` set('ON','MOVE','BOARD','MESSAGE') NOT NULL DEFAULT '',
  `Notify` enum('NONE','NEXT','NOW','DONE') NOT NULL DEFAULT 'NONE',
  `NotifyFlags` tinyint UNSIGNED NOT NULL DEFAULT '0',
  `LastNotified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `CountMsgNew` mediumint NOT NULL DEFAULT '-1',
  `CountFeatNew` smallint NOT NULL DEFAULT '-1',
  `CountBulletinNew` smallint NOT NULL DEFAULT '-1',
  `CountTourneyNew` smallint NOT NULL DEFAULT '-1',
  `Adminlevel` smallint UNSIGNED NOT NULL DEFAULT '0',
  `AdminOptions` smallint UNSIGNED NOT NULL DEFAULT '0',
  `AdminNote` varchar(100) NOT NULL DEFAULT '',
  `Timezone` varchar(40) NOT NULL DEFAULT 'GMT',
  `Rating` double DEFAULT NULL,
  `Rating2` double DEFAULT NULL,
  `RatingMin` double DEFAULT NULL,
  `RatingMax` double DEFAULT NULL,
  `InitialRating` double NOT NULL DEFAULT '-9999',
  `RatingStatus` enum('NONE','INIT','RATED') NOT NULL DEFAULT 'NONE',
  `Open` varchar(60) NOT NULL DEFAULT '',
  `Lang` varchar(20) NOT NULL DEFAULT 'C',
  `VacationDays` float NOT NULL DEFAULT '14',
  `OnVacation` float NOT NULL DEFAULT '0',
  `Running` smallint UNSIGNED NOT NULL DEFAULT '0',
  `Finished` mediumint UNSIGNED NOT NULL DEFAULT '0',
  `RatedGames` mediumint UNSIGNED NOT NULL DEFAULT '0',
  `Won` mediumint UNSIGNED NOT NULL DEFAULT '0',
  `Lost` mediumint UNSIGNED NOT NULL DEFAULT '0',
  `GamesMPG` smallint UNSIGNED NOT NULL DEFAULT '0',
  `GamesWeaker` mediumint UNSIGNED NOT NULL DEFAULT '0',
  `Translator` varchar(80) NOT NULL DEFAULT '',
  `IP` varchar(16) NOT NULL DEFAULT '',
  `Browser` varchar(150) NOT NULL DEFAULT '',
  `Country` char(2) NOT NULL DEFAULT '',
  `BlockReason` text NOT NULL,
  `ForumReadTime` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `ForumReadNew` tinyint NOT NULL DEFAULT '0',
  `UserFlags` int NOT NULL DEFAULT '0',
  `SkinName` varchar(32) NOT NULL DEFAULT '',
  `MenuDirection` enum('VERTICAL','HORIZONTAL') NOT NULL DEFAULT 'VERTICAL',
  `TableMaxRows` smallint UNSIGNED NOT NULL DEFAULT '20',
  `Button` tinyint NOT NULL DEFAULT '0',
  `UserPicture` varchar(48) NOT NULL DEFAULT '',
  `NextGameOrder` enum('LASTMOVED_OF','LASTMOVED_NF','MOVES','PRIO','TIMELEFT') NOT NULL DEFAULT 'LASTMOVED_OF',
  `SkipBulletin` tinyint UNSIGNED NOT NULL DEFAULT '4',
  `RejectTimeoutWin` tinyint NOT NULL DEFAULT '-1',
  `ThumbnailSize` tinyint UNSIGNED NOT NULL DEFAULT '7'
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

--
-- Dumping data for table `Players`
--

INSERT INTO `Players` (`ID`, `Type`, `Handle`, `Password`, `Newpassword`, `Sessioncode`, `Sessionexpire`, `Lastaccess`, `LastQuickAccess`, `LastMove`, `Registerdate`, `Hits`, `VaultCnt`, `VaultTime`, `Moves`, `Activity`, `Name`, `Email`, `Rank`, `SendEmail`, `Notify`, `NotifyFlags`, `LastNotified`, `CountMsgNew`, `CountFeatNew`, `CountBulletinNew`, `CountTourneyNew`, `Adminlevel`, `AdminOptions`, `AdminNote`, `Timezone`, `Rating`, `Rating2`, `RatingMin`, `RatingMax`, `InitialRating`, `RatingStatus`, `Open`, `Lang`, `VacationDays`, `OnVacation`, `Running`, `Finished`, `RatedGames`, `Won`, `Lost`, `GamesMPG`, `GamesWeaker`, `Translator`, `IP`, `Browser`, `Country`, `BlockReason`, `ForumReadTime`, `ForumReadNew`, `UserFlags`, `SkinName`, `MenuDirection`, `TableMaxRows`, `Button`, `UserPicture`, `NextGameOrder`, `SkipBulletin`, `RejectTimeoutWin`, `ThumbnailSize`) VALUES
(1, 0, 'dgsmstr', '=dbsmstr=', '=dgsmstr=', '', '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', '2021-11-23', 0, 0, '0000-00-00 00:00:00', 0, 15000, 'dgs mstr', 'dgsmstr@ko0.us', '', '', 'NONE', 0, '0000-00-00 00:00:00', -1, -1, -1, -1, 0, 0, '', 'GMT', NULL, NULL, NULL, NULL, -9999, 'NONE', '', 'C', 14, 0, 0, 0, 0, 0, 0, 0, 0, '', '', '', '', 'blockreason_dgsmstr', '0000-00-00 00:00:00', 0, 0, '', 'VERTICAL', 20, 0, '', 'LASTMOVED_OF', 4, -1, 7),
(2, 0, 'dgsuser', '-dbguser-', '-dgsmstr-', '', '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', '2021-11-23', 0, 0, '0000-00-00 00:00:00', 0, 15000, 'dgs user', 'dgsuser@ko0.us', '', '', 'NONE', 0, '0000-00-00 00:00:00', -1, -1, -1, -1, 0, 0, '', 'GMT', NULL, NULL, NULL, NULL, -9999, 'NONE', '', 'C', 14, 0, 0, 0, 0, 0, 0, 0, 0, '', '', '', '', 'blockreason_dgsuser', '0000-00-00 00:00:00', 0, 0, '', 'VERTICAL', 20, 0, '', 'LASTMOVED_OF', 4, -1, 7);

-- --------------------------------------------------------

--
-- Table structure for table `Posts`
--

CREATE TABLE `Posts` (
  `ID` int NOT NULL,
  `Forum_ID` smallint NOT NULL DEFAULT '0',
  `Time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `Lastchanged` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `Lastedited` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `Subject` varchar(80) NOT NULL DEFAULT '',
  `Text` text NOT NULL,
  `User_ID` int NOT NULL,
  `Parent_ID` int NOT NULL DEFAULT '0',
  `Thread_ID` int NOT NULL DEFAULT '0',
  `Flags` tinyint UNSIGNED NOT NULL DEFAULT '0',
  `AnswerNr` mediumint UNSIGNED NOT NULL DEFAULT '0',
  `Depth` tinyint UNSIGNED NOT NULL DEFAULT '0',
  `crc32` int DEFAULT NULL,
  `PosIndex` varchar(80) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '',
  `Approved` enum('Y','N','P') NOT NULL DEFAULT 'Y',
  `PostsInThread` mediumint UNSIGNED NOT NULL DEFAULT '0',
  `Hits` int NOT NULL DEFAULT '0',
  `LastPost` int NOT NULL DEFAULT '0',
  `CountLikes` smallint UNSIGNED NOT NULL DEFAULT '0'
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

-- --------------------------------------------------------

--
-- Table structure for table `Profiles`
--

CREATE TABLE `Profiles` (
  `ID` int NOT NULL,
  `User_ID` int NOT NULL,
  `Type` smallint NOT NULL,
  `SortOrder` smallint NOT NULL DEFAULT '1',
  `Active` enum('Y','N') NOT NULL DEFAULT 'N',
  `Name` varchar(60) NOT NULL DEFAULT '',
  `Lastchanged` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `Text` blob NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

-- --------------------------------------------------------

--
-- Table structure for table `RatingChangeAdmin`
--

CREATE TABLE `RatingChangeAdmin` (
  `ID` int NOT NULL,
  `uid` int NOT NULL,
  `Created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `Changes` tinyint NOT NULL DEFAULT '0',
  `Rating` double NOT NULL DEFAULT '-9999'
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

-- --------------------------------------------------------

--
-- Table structure for table `Ratinglog`
--

CREATE TABLE `Ratinglog` (
  `ID` int NOT NULL,
  `uid` int NOT NULL,
  `gid` int NOT NULL,
  `Time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `Rating` double NOT NULL,
  `RatingMin` double NOT NULL,
  `RatingMax` double NOT NULL,
  `RatingDiff` float NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

-- --------------------------------------------------------

--
-- Table structure for table `Shape`
--

CREATE TABLE `Shape` (
  `ID` int NOT NULL,
  `uid` int NOT NULL,
  `Name` varchar(40) NOT NULL DEFAULT '',
  `Size` tinyint UNSIGNED NOT NULL,
  `Flags` tinyint UNSIGNED NOT NULL DEFAULT '0',
  `Snapshot` varchar(216) NOT NULL DEFAULT '',
  `Notes` text NOT NULL,
  `Created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `Lastchanged` datetime NOT NULL DEFAULT '0000-00-00 00:00:00'
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

-- --------------------------------------------------------

--
-- Table structure for table `Statistics`
--

CREATE TABLE `Statistics` (
  `ID` int NOT NULL,
  `Time` datetime NOT NULL,
  `Hits` int NOT NULL,
  `Users` int NOT NULL,
  `Moves` int NOT NULL,
  `MovesFinished` int NOT NULL,
  `MovesRunning` int NOT NULL,
  `Games` int NOT NULL,
  `GamesFinished` int NOT NULL,
  `GamesRunning` int NOT NULL,
  `Activity` int NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

-- --------------------------------------------------------

--
-- Table structure for table `Survey`
--

CREATE TABLE `Survey` (
  `ID` int NOT NULL,
  `uid` int NOT NULL,
  `Type` enum('POINTS','SUM','SINGLE','MULTI') NOT NULL DEFAULT 'POINTS',
  `Status` enum('NEW','ACTIVE','CLOSED','DELETE') NOT NULL DEFAULT 'NEW',
  `Flags` tinyint UNSIGNED NOT NULL DEFAULT '0',
  `MinPoints` tinyint NOT NULL DEFAULT '0',
  `MaxPoints` tinyint NOT NULL DEFAULT '0',
  `UserCount` mediumint UNSIGNED NOT NULL DEFAULT '0',
  `Created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `Lastchanged` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `Title` varchar(255) NOT NULL,
  `Header` text NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

-- --------------------------------------------------------

--
-- Table structure for table `SurveyOption`
--

CREATE TABLE `SurveyOption` (
  `ID` int NOT NULL,
  `sid` int NOT NULL DEFAULT '0',
  `Tag` tinyint UNSIGNED NOT NULL DEFAULT '0',
  `SortOrder` tinyint UNSIGNED NOT NULL DEFAULT '0',
  `MinPoints` tinyint NOT NULL DEFAULT '0',
  `Score` int NOT NULL DEFAULT '0',
  `Title` varchar(255) NOT NULL DEFAULT '',
  `Text` text NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

-- --------------------------------------------------------

--
-- Table structure for table `SurveyUser`
--

CREATE TABLE `SurveyUser` (
  `sid` int NOT NULL,
  `uid` int NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

-- --------------------------------------------------------

--
-- Table structure for table `SurveyVote`
--

CREATE TABLE `SurveyVote` (
  `soid` int NOT NULL,
  `uid` int NOT NULL DEFAULT '0',
  `Points` tinyint NOT NULL DEFAULT '0'
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

-- --------------------------------------------------------

--
-- Table structure for table `Tagged`
--

CREATE TABLE `Tagged` (
  `User_ID` int NOT NULL,
  `Tag_ID` int NOT NULL,
  `Post_ID` int NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

-- --------------------------------------------------------

--
-- Table structure for table `Tags`
--

CREATE TABLE `Tags` (
  `ID` int NOT NULL,
  `User_ID` int NOT NULL,
  `Name` varchar(64) NOT NULL,
  `ColorBG` char(6) NOT NULL,
  `ColorFG` char(6) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

-- --------------------------------------------------------

--
-- Table structure for table `Tournament`
--

CREATE TABLE `Tournament` (
  `ID` int NOT NULL,
  `Scope` enum('DRAGON','PUBLIC','PRIVATE') NOT NULL DEFAULT 'PUBLIC',
  `Type` enum('LADDER','ROUNDROBIN','LEAGUE') NOT NULL,
  `WizardType` tinyint NOT NULL,
  `Title` varchar(255) NOT NULL,
  `Description` text NOT NULL,
  `Owner_ID` int NOT NULL,
  `Status` enum('ADM','NEW','REG','PAIR','PLAY','CLOSED','DEL') NOT NULL DEFAULT 'NEW',
  `Flags` smallint UNSIGNED NOT NULL DEFAULT '0',
  `Created` datetime NOT NULL,
  `Lastchanged` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `ChangedBy` varchar(54) NOT NULL DEFAULT '',
  `StartTime` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `EndTime` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `Rounds` tinyint UNSIGNED NOT NULL DEFAULT '1',
  `CurrentRound` tinyint UNSIGNED NOT NULL DEFAULT '1',
  `RegisteredTP` smallint NOT NULL DEFAULT '0',
  `LockNote` varchar(255) NOT NULL DEFAULT '',
  `Prev_tid` int NOT NULL DEFAULT '0',
  `Next_tid` int NOT NULL DEFAULT '0'
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

-- --------------------------------------------------------

--
-- Table structure for table `TournamentDirector`
--

CREATE TABLE `TournamentDirector` (
  `tid` int NOT NULL,
  `uid` int NOT NULL,
  `Flags` smallint UNSIGNED NOT NULL DEFAULT '0',
  `Comment` varchar(255) NOT NULL DEFAULT ''
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

-- --------------------------------------------------------

--
-- Table structure for table `TournamentExtension`
--

CREATE TABLE `TournamentExtension` (
  `tid` int NOT NULL,
  `Property` smallint UNSIGNED NOT NULL,
  `IntValue` int NOT NULL DEFAULT '0',
  `DateValue` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `Lastchanged` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `ChangedBy` char(54) NOT NULL DEFAULT ''
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

-- --------------------------------------------------------

--
-- Table structure for table `TournamentGames`
--

CREATE TABLE `TournamentGames` (
  `ID` int NOT NULL,
  `tid` int NOT NULL,
  `Round_ID` int NOT NULL DEFAULT '0',
  `Tier` tinyint UNSIGNED NOT NULL DEFAULT '1',
  `Pool` smallint UNSIGNED NOT NULL DEFAULT '0',
  `gid` int NOT NULL DEFAULT '0',
  `Status` enum('INIT','PLAY','SCORE','WAIT','DONE') NOT NULL DEFAULT 'INIT',
  `TicksDue` int NOT NULL DEFAULT '0',
  `Flags` smallint UNSIGNED NOT NULL DEFAULT '0',
  `Lastchanged` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `Challenger_uid` int NOT NULL,
  `Challenger_rid` int NOT NULL,
  `Defender_uid` int NOT NULL,
  `Defender_rid` int NOT NULL,
  `StartTime` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `EndTime` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `Score` decimal(5,1) NOT NULL DEFAULT '0.0'
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

-- --------------------------------------------------------

--
-- Table structure for table `TournamentLadder`
--

CREATE TABLE `TournamentLadder` (
  `tid` int NOT NULL,
  `rid` int NOT NULL,
  `uid` int NOT NULL,
  `Flags` tinyint UNSIGNED NOT NULL DEFAULT '0',
  `Created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `RankChanged` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `Rank` smallint UNSIGNED NOT NULL DEFAULT '0',
  `BestRank` smallint UNSIGNED NOT NULL DEFAULT '0',
  `StartRank` smallint UNSIGNED NOT NULL DEFAULT '0',
  `PeriodRank` smallint UNSIGNED NOT NULL DEFAULT '0',
  `HistoryRank` smallint UNSIGNED NOT NULL DEFAULT '0',
  `ChallengesIn` tinyint UNSIGNED NOT NULL DEFAULT '0',
  `ChallengesOut` tinyint UNSIGNED NOT NULL DEFAULT '0',
  `SeqWins` smallint UNSIGNED NOT NULL DEFAULT '0',
  `SeqWinsBest` smallint UNSIGNED NOT NULL DEFAULT '0'
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

-- --------------------------------------------------------

--
-- Table structure for table `TournamentLadderProps`
--

CREATE TABLE `TournamentLadderProps` (
  `tid` int NOT NULL,
  `Lastchanged` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `ChangedBy` char(54) NOT NULL DEFAULT '',
  `ChallengeRangeAbsolute` smallint NOT NULL DEFAULT '0',
  `ChallengeRangeRelative` tinyint UNSIGNED NOT NULL DEFAULT '0',
  `ChallengeRangeRating` smallint NOT NULL DEFAULT '-32768',
  `ChallengeRematchWait` smallint UNSIGNED NOT NULL DEFAULT '0',
  `MaxDefenses` tinyint UNSIGNED NOT NULL,
  `MaxDefenses1` tinyint UNSIGNED NOT NULL DEFAULT '0',
  `MaxDefenses2` tinyint UNSIGNED NOT NULL DEFAULT '0',
  `MaxDefensesStart1` tinyint UNSIGNED NOT NULL DEFAULT '0',
  `MaxDefensesStart2` tinyint UNSIGNED NOT NULL DEFAULT '0',
  `MaxChallenges` tinyint UNSIGNED NOT NULL DEFAULT '0',
  `DetermineChallenger` enum('GAME_START','GAME_END') NOT NULL DEFAULT 'GAME_END',
  `GameEndNormal` enum('CH_ABOVE','CH_BELOW','SWITCH','DF_BELOW','DF_LAST') NOT NULL DEFAULT 'CH_ABOVE',
  `GameEndJigo` enum('NO_CHANGE','CH_ABOVE','CH_BELOW') NOT NULL DEFAULT 'CH_BELOW',
  `GameEndTimeoutWin` enum('NO_CHANGE','CH_ABOVE','CH_BELOW','SWITCH','DF_BELOW','DF_LAST','DF_DEL') NOT NULL DEFAULT 'DF_BELOW',
  `GameEndTimeoutLoss` enum('NO_CHANGE','CH_LAST','CH_DEL') NOT NULL DEFAULT 'CH_LAST',
  `PenaltyTimeout` smallint UNSIGNED NOT NULL DEFAULT '0',
  `PenaltyLimit` smallint UNSIGNED NOT NULL DEFAULT '0',
  `UserJoinOrder` enum('REGTIME','RATING','RANDOM') NOT NULL DEFAULT 'REGTIME',
  `UserAbsenceDays` tinyint UNSIGNED NOT NULL DEFAULT '0',
  `RankPeriodLength` tinyint UNSIGNED NOT NULL DEFAULT '1',
  `SeqWinsThreshold` tinyint UNSIGNED NOT NULL DEFAULT '0'
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

-- --------------------------------------------------------

--
-- Table structure for table `Tournamentlog`
--

CREATE TABLE `Tournamentlog` (
  `ID` int NOT NULL,
  `tid` int NOT NULL,
  `uid` int NOT NULL,
  `Date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `Type` char(2) NOT NULL,
  `Object` varchar(16) NOT NULL DEFAULT 'T',
  `Action` varchar(16) NOT NULL,
  `actuid` int NOT NULL DEFAULT '0',
  `Message` text NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

-- --------------------------------------------------------

--
-- Table structure for table `TournamentNews`
--

CREATE TABLE `TournamentNews` (
  `ID` int NOT NULL,
  `tid` int NOT NULL,
  `uid` int NOT NULL,
  `Status` enum('NEW','SHOW','ARCHIVE','DELETE') NOT NULL DEFAULT 'NEW',
  `Flags` tinyint UNSIGNED NOT NULL DEFAULT '0',
  `Published` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `Lastchanged` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `ChangedBy` varchar(54) NOT NULL DEFAULT '',
  `Subject` varchar(255) NOT NULL,
  `Text` text NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

-- --------------------------------------------------------

--
-- Table structure for table `TournamentParticipant`
--

CREATE TABLE `TournamentParticipant` (
  `ID` int NOT NULL,
  `tid` int NOT NULL,
  `uid` int NOT NULL,
  `Status` enum('APPLY','REGISTER','INVITE') NOT NULL DEFAULT 'APPLY',
  `Flags` smallint UNSIGNED NOT NULL DEFAULT '0',
  `Rating` double NOT NULL DEFAULT '-9999',
  `StartRound` tinyint UNSIGNED NOT NULL DEFAULT '1',
  `NextRound` tinyint UNSIGNED NOT NULL DEFAULT '0',
  `Created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `Lastchanged` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `ChangedBy` varchar(54) NOT NULL DEFAULT '',
  `Comment` varchar(60) NOT NULL DEFAULT '',
  `DirectorMessage` text NOT NULL,
  `Finished` mediumint UNSIGNED NOT NULL DEFAULT '0',
  `Won` mediumint UNSIGNED NOT NULL DEFAULT '0',
  `Lost` mediumint UNSIGNED NOT NULL DEFAULT '0',
  `PenaltyPoints` mediumint NOT NULL DEFAULT '0',
  `Lastmoved` datetime NOT NULL DEFAULT '0000-00-00 00:00:00'
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

-- --------------------------------------------------------

--
-- Table structure for table `TournamentPoints`
--

CREATE TABLE `TournamentPoints` (
  `tid` int NOT NULL,
  `PointsType` enum('SIMPLE','HAHN') NOT NULL DEFAULT 'SIMPLE',
  `Flags` tinyint UNSIGNED NOT NULL DEFAULT '1',
  `PointsWon` tinyint NOT NULL DEFAULT '2',
  `PointsLost` tinyint NOT NULL DEFAULT '0',
  `PointsDraw` tinyint NOT NULL DEFAULT '1',
  `PointsForfeit` smallint NOT NULL DEFAULT '2',
  `PointsNoResult` smallint NOT NULL DEFAULT '1',
  `ScoreBlock` tinyint UNSIGNED NOT NULL DEFAULT '10',
  `MaxPoints` smallint UNSIGNED NOT NULL DEFAULT '10',
  `PointsResignation` smallint NOT NULL DEFAULT '10',
  `PointsTimeout` smallint NOT NULL DEFAULT '10',
  `Lastchanged` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `ChangedBy` varchar(54) NOT NULL DEFAULT ''
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

-- --------------------------------------------------------

--
-- Table structure for table `TournamentPool`
--

CREATE TABLE `TournamentPool` (
  `ID` int NOT NULL,
  `tid` int NOT NULL,
  `Round` tinyint UNSIGNED NOT NULL,
  `Tier` tinyint UNSIGNED NOT NULL DEFAULT '1',
  `Pool` smallint UNSIGNED NOT NULL,
  `uid` int NOT NULL DEFAULT '0',
  `Rank` tinyint NOT NULL DEFAULT '-100'
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

-- --------------------------------------------------------

--
-- Table structure for table `TournamentProperties`
--

CREATE TABLE `TournamentProperties` (
  `tid` int NOT NULL,
  `Lastchanged` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `ChangedBy` char(54) NOT NULL DEFAULT '',
  `MinParticipants` smallint NOT NULL DEFAULT '2',
  `MaxParticipants` smallint NOT NULL DEFAULT '0',
  `MaxStartRound` tinyint UNSIGNED NOT NULL DEFAULT '1',
  `MinRatingStartRound` smallint NOT NULL DEFAULT '-9999',
  `RatingUseMode` enum('COPY_CUSTOM','CURR_FIX','COPY_FIX') NOT NULL DEFAULT 'COPY_CUSTOM',
  `RegisterEndTime` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `UserMinRating` smallint NOT NULL DEFAULT '-9999',
  `UserMaxRating` smallint NOT NULL DEFAULT '-9999',
  `UserRated` enum('N','Y') NOT NULL DEFAULT 'N',
  `UserMinGamesFinished` smallint NOT NULL DEFAULT '0',
  `UserMinGamesRated` smallint NOT NULL DEFAULT '0',
  `Notes` text NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

-- --------------------------------------------------------

--
-- Table structure for table `TournamentResult`
--

CREATE TABLE `TournamentResult` (
  `ID` int NOT NULL,
  `tid` int NOT NULL,
  `uid` int NOT NULL,
  `rid` int NOT NULL DEFAULT '0',
  `Rating` double NOT NULL DEFAULT '-9999',
  `Type` tinyint UNSIGNED NOT NULL DEFAULT '0',
  `Round` tinyint UNSIGNED NOT NULL DEFAULT '1',
  `StartTime` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `EndTime` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `Result` mediumint NOT NULL DEFAULT '0',
  `Rank` smallint UNSIGNED NOT NULL DEFAULT '0',
  `Comment` varchar(128) NOT NULL DEFAULT '',
  `Note` varchar(255) NOT NULL DEFAULT ''
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

-- --------------------------------------------------------

--
-- Table structure for table `TournamentRound`
--

CREATE TABLE `TournamentRound` (
  `ID` int NOT NULL,
  `tid` int NOT NULL,
  `Round` tinyint UNSIGNED NOT NULL DEFAULT '1',
  `Status` enum('INIT','POOL','PAIR','PLAY','DONE') NOT NULL DEFAULT 'INIT',
  `MinPoolSize` tinyint UNSIGNED NOT NULL DEFAULT '0',
  `MaxPoolSize` tinyint UNSIGNED NOT NULL DEFAULT '0',
  `MaxPoolCount` smallint UNSIGNED NOT NULL DEFAULT '0',
  `PoolWinnerRanks` tinyint UNSIGNED NOT NULL DEFAULT '0',
  `Pools` smallint UNSIGNED NOT NULL DEFAULT '0',
  `PoolSize` tinyint UNSIGNED NOT NULL DEFAULT '0',
  `PoolNamesFormat` varchar(64) NOT NULL DEFAULT '',
  `Lastchanged` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `ChangedBy` char(54) NOT NULL DEFAULT ''
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

-- --------------------------------------------------------

--
-- Table structure for table `TournamentRules`
--

CREATE TABLE `TournamentRules` (
  `ID` int NOT NULL,
  `tid` int NOT NULL,
  `ShapeID` int UNSIGNED NOT NULL DEFAULT '0',
  `Lastchanged` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `ChangedBy` varchar(54) NOT NULL DEFAULT '',
  `Flags` smallint UNSIGNED NOT NULL DEFAULT '0',
  `Ruleset` enum('JAPANESE','CHINESE') NOT NULL DEFAULT 'JAPANESE',
  `Size` tinyint UNSIGNED NOT NULL DEFAULT '19',
  `Handicaptype` enum('CONV','PROPER','NIGIRI','DOUBLE','BLACK','WHITE','ALTERNATE') NOT NULL DEFAULT 'CONV',
  `AdjKomi` decimal(4,1) NOT NULL DEFAULT '0.0',
  `JigoMode` enum('KEEP_KOMI','ALLOW_JIGO','NO_JIGO') NOT NULL DEFAULT 'KEEP_KOMI',
  `Handicap` tinyint UNSIGNED NOT NULL DEFAULT '0',
  `Komi` decimal(4,1) NOT NULL DEFAULT '6.5',
  `AdjHandicap` tinyint NOT NULL DEFAULT '0',
  `MinHandicap` tinyint UNSIGNED NOT NULL DEFAULT '0',
  `MaxHandicap` tinyint NOT NULL DEFAULT '-1',
  `StdHandicap` enum('N','Y') NOT NULL DEFAULT 'N',
  `Maintime` smallint NOT NULL DEFAULT '0',
  `Byotype` enum('JAP','CAN','FIS') NOT NULL DEFAULT 'JAP',
  `Byotime` smallint NOT NULL DEFAULT '0',
  `Byoperiods` tinyint NOT NULL DEFAULT '0',
  `WeekendClock` enum('N','Y') NOT NULL DEFAULT 'Y',
  `Rated` enum('N','Y') NOT NULL DEFAULT 'N',
  `ShapeSnapshot` varchar(255) NOT NULL DEFAULT '',
  `Notes` text NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

-- --------------------------------------------------------

--
-- Table structure for table `TournamentVisit`
--

CREATE TABLE `TournamentVisit` (
  `uid` int NOT NULL,
  `tid` int NOT NULL,
  `VisitTime` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `VisitType` tinyint UNSIGNED NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

-- --------------------------------------------------------

--
-- Table structure for table `TranslationFoundInGroup`
--

CREATE TABLE `TranslationFoundInGroup` (
  `Text_ID` int NOT NULL,
  `Group_ID` int NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

--
-- Dumping data for table `TranslationFoundInGroup`
--

INSERT INTO `TranslationFoundInGroup` (`Text_ID`, `Group_ID`) VALUES
(1, 8),
(2, 8),
(3, 8),
(7, 8),
(8, 8),
(9, 8),
(12, 8),
(13, 8),
(14, 8),
(15, 8),
(16, 8),
(17, 8),
(18, 8),
(19, 8),
(20, 8),
(22, 8),
(27, 8),
(29, 8),
(32, 8),
(33, 8),
(35, 8),
(38, 8),
(39, 8),
(40, 8),
(41, 8),
(42, 8),
(43, 8),
(44, 8),
(45, 8),
(46, 8),
(48, 8),
(49, 8),
(50, 8),
(51, 8),
(52, 8),
(54, 8),
(55, 8),
(56, 8),
(57, 8),
(58, 8),
(59, 8),
(60, 8),
(61, 8),
(63, 8),
(66, 8),
(69, 8),
(75, 8),
(80, 1),
(81, 1),
(82, 1),
(82, 3),
(82, 5),
(82, 6),
(82, 12),
(82, 13),
(82, 17),
(82, 18),
(83, 1),
(83, 6),
(84, 1),
(84, 5),
(84, 18),
(85, 1),
(85, 6),
(86, 1),
(86, 5),
(86, 6),
(86, 18),
(87, 1),
(87, 3),
(87, 5),
(87, 6),
(87, 14),
(87, 18),
(88, 1),
(88, 5),
(88, 6),
(89, 1),
(89, 5),
(89, 6),
(90, 1),
(90, 6),
(91, 1),
(91, 11),
(92, 6),
(92, 9),
(93, 1),
(93, 6),
(94, 1),
(94, 6),
(95, 1),
(96, 1),
(96, 6),
(97, 1),
(97, 6),
(98, 1),
(98, 3),
(99, 1),
(99, 3),
(99, 4),
(99, 5),
(100, 1),
(100, 3),
(100, 18),
(101, 1),
(102, 1),
(102, 4),
(102, 18),
(103, 1),
(104, 1),
(106, 1),
(106, 4),
(107, 4),
(108, 1),
(108, 4),
(109, 3),
(122, 4),
(127, 11),
(128, 5),
(129, 5),
(132, 3),
(132, 17),
(134, 5),
(134, 18),
(135, 6),
(136, 6),
(136, 11),
(156, 5),
(157, 5),
(158, 5),
(159, 6),
(160, 6),
(160, 19),
(161, 6),
(161, 9),
(163, 6),
(164, 6),
(165, 6),
(165, 20),
(168, 6),
(169, 6),
(170, 6),
(173, 6),
(175, 5),
(176, 4),
(176, 5),
(177, 5),
(178, 5),
(179, 5),
(180, 5),
(181, 2),
(181, 5),
(182, 5),
(183, 5),
(184, 5),
(185, 5),
(187, 5),
(188, 5),
(189, 5),
(190, 2),
(190, 5),
(191, 2),
(191, 5),
(192, 5),
(192, 6),
(193, 5),
(194, 5),
(195, 5),
(196, 5),
(197, 5),
(198, 5),
(199, 5),
(199, 6),
(200, 5),
(201, 2),
(201, 5),
(201, 18),
(202, 2),
(202, 5),
(204, 5),
(205, 4),
(205, 5),
(205, 18),
(206, 5),
(207, 5),
(208, 5),
(209, 5),
(210, 5),
(211, 5),
(212, 5),
(213, 5),
(214, 5),
(215, 5),
(216, 5),
(217, 5),
(218, 5),
(219, 5),
(220, 5),
(222, 5),
(223, 2),
(223, 6),
(223, 8),
(225, 3),
(226, 3),
(227, 3),
(229, 3),
(229, 11),
(229, 18),
(230, 3),
(230, 18),
(231, 3),
(232, 3),
(233, 3),
(234, 3),
(235, 3),
(236, 3),
(237, 3),
(238, 3),
(239, 3),
(240, 2),
(242, 2),
(243, 2),
(244, 2),
(245, 2),
(245, 6),
(246, 2),
(247, 2),
(247, 6),
(248, 1),
(248, 2),
(248, 19),
(248, 20),
(252, 19),
(253, 3),
(254, 3),
(256, 20),
(257, 20),
(258, 20),
(259, 20),
(260, 20),
(265, 20),
(266, 20),
(267, 20),
(271, 20),
(272, 20),
(273, 3),
(273, 20),
(274, 20),
(275, 20),
(276, 20),
(281, 20),
(283, 20),
(284, 20),
(285, 20),
(286, 20),
(287, 20),
(288, 20),
(291, 15),
(291, 20),
(292, 20),
(293, 20),
(294, 20),
(295, 20),
(296, 20),
(297, 20),
(298, 20),
(299, 20),
(300, 20),
(301, 20),
(303, 20),
(305, 20),
(306, 20),
(307, 4),
(307, 6),
(308, 4),
(309, 13),
(309, 14),
(309, 18),
(310, 4),
(311, 4),
(311, 11),
(311, 12),
(311, 17),
(311, 18),
(312, 4),
(314, 4),
(315, 4),
(316, 4),
(322, 4),
(323, 4),
(324, 4),
(325, 3),
(325, 4),
(326, 4),
(327, 4),
(328, 3),
(328, 4),
(329, 1),
(329, 3),
(329, 4),
(330, 1),
(330, 3),
(330, 4),
(330, 5),
(330, 14),
(330, 18),
(331, 1),
(331, 3),
(331, 4),
(331, 5),
(331, 14),
(331, 18),
(332, 4),
(333, 3),
(333, 4),
(334, 4),
(335, 4),
(336, 4),
(337, 6),
(340, 6),
(342, 5),
(343, 5),
(344, 1),
(344, 2),
(345, 2),
(346, 4),
(346, 11),
(348, 5),
(348, 18),
(349, 5),
(349, 18),
(350, 3),
(351, 3),
(352, 1),
(352, 3),
(359, 1),
(359, 5),
(360, 1),
(360, 3),
(360, 18),
(361, 3),
(361, 4),
(361, 5),
(361, 14),
(362, 1),
(362, 3),
(362, 4),
(362, 5),
(362, 18),
(363, 3),
(363, 4),
(363, 5),
(363, 18),
(364, 1),
(364, 3),
(364, 5),
(366, 3),
(366, 5),
(366, 18),
(368, 3),
(368, 5),
(370, 1),
(370, 3),
(370, 5),
(370, 18),
(371, 1),
(371, 3),
(371, 5),
(371, 18),
(372, 1),
(372, 3),
(372, 5),
(372, 18),
(373, 3),
(373, 5),
(374, 6),
(375, 5),
(375, 6),
(377, 6),
(378, 5),
(378, 6),
(379, 5),
(380, 6),
(383, 6),
(384, 6),
(385, 6),
(385, 11),
(388, 5),
(389, 1),
(390, 1),
(391, 1),
(393, 5),
(394, 3),
(394, 5),
(394, 18),
(395, 5),
(396, 3),
(396, 5),
(396, 6),
(397, 3),
(398, 3),
(399, 3),
(400, 3),
(402, 5),
(406, 3),
(407, 3),
(408, 4),
(408, 18),
(409, 4),
(409, 18),
(411, 3),
(412, 2),
(412, 3),
(412, 4),
(412, 18),
(414, 3),
(414, 18),
(415, 5),
(415, 18),
(416, 3),
(416, 18),
(417, 3),
(419, 4),
(420, 4),
(421, 3),
(422, 3),
(423, 3),
(424, 3),
(424, 18),
(425, 3),
(426, 3),
(426, 4),
(426, 5),
(427, 4),
(428, 3),
(428, 4),
(428, 18),
(429, 3),
(430, 3),
(431, 3),
(431, 4),
(431, 5),
(431, 14),
(431, 18),
(432, 4),
(433, 3),
(433, 4),
(433, 5),
(433, 18),
(436, 4),
(436, 18),
(437, 3),
(437, 4),
(437, 18),
(439, 4),
(439, 11),
(442, 4),
(443, 1),
(443, 4),
(445, 3),
(445, 12),
(445, 18),
(446, 4),
(447, 3),
(447, 4),
(449, 1),
(449, 3),
(450, 1),
(451, 3),
(452, 1),
(453, 4),
(454, 3),
(455, 3),
(456, 3),
(457, 2),
(458, 3),
(460, 1),
(460, 11),
(461, 1),
(461, 11),
(462, 1),
(463, 1),
(464, 1),
(465, 1),
(466, 1),
(467, 1),
(468, 1),
(469, 1),
(470, 1),
(472, 1),
(473, 1),
(474, 8),
(475, 8),
(476, 8),
(477, 8),
(478, 19),
(479, 1),
(484, 1),
(484, 5),
(485, 1),
(485, 5),
(486, 1),
(486, 5),
(487, 1),
(487, 5),
(488, 1),
(488, 5),
(489, 1),
(489, 5),
(490, 1),
(490, 5),
(491, 1),
(491, 5),
(492, 1),
(492, 5),
(494, 5),
(495, 1),
(495, 5),
(496, 1),
(496, 5),
(497, 1),
(497, 5),
(498, 5),
(499, 5),
(500, 1),
(501, 9),
(502, 9),
(503, 5),
(503, 9),
(504, 9),
(505, 9),
(506, 9),
(507, 9),
(508, 9),
(509, 9),
(510, 9),
(511, 9),
(512, 9),
(513, 9),
(514, 9),
(515, 9),
(518, 9),
(519, 9),
(522, 9),
(523, 9),
(525, 9),
(526, 9),
(529, 9),
(530, 9),
(531, 9),
(532, 9),
(533, 9),
(534, 9),
(535, 9),
(536, 9),
(537, 9),
(538, 9),
(539, 9),
(540, 9),
(541, 9),
(542, 9),
(545, 9),
(546, 9),
(547, 9),
(548, 9),
(549, 9),
(550, 9),
(551, 9),
(552, 9),
(553, 9),
(554, 9),
(555, 9),
(556, 9),
(557, 9),
(558, 9),
(559, 9),
(560, 9),
(561, 9),
(562, 9),
(563, 9),
(564, 9),
(565, 9),
(566, 9),
(567, 9),
(568, 9),
(569, 9),
(570, 9),
(571, 9),
(572, 9),
(573, 9),
(574, 9),
(575, 9),
(576, 9),
(577, 9),
(578, 9),
(579, 9),
(580, 9),
(581, 9),
(582, 9),
(583, 9),
(584, 9),
(585, 9),
(586, 9),
(587, 9),
(588, 9),
(589, 9),
(590, 9),
(591, 9),
(592, 9),
(593, 9),
(594, 9),
(595, 9),
(596, 9),
(597, 9),
(598, 9),
(599, 9),
(600, 9),
(601, 9),
(602, 9),
(603, 9),
(604, 9),
(605, 9),
(606, 9),
(607, 9),
(608, 9),
(618, 3),
(619, 3),
(620, 3),
(621, 9),
(622, 9),
(623, 9),
(624, 9),
(625, 9),
(626, 9),
(627, 9),
(628, 9),
(629, 9),
(630, 9),
(631, 9),
(632, 9),
(633, 9),
(634, 9),
(635, 9),
(636, 9),
(637, 9),
(638, 9),
(639, 9),
(640, 9),
(643, 9),
(644, 9),
(645, 9),
(646, 9),
(655, 9),
(656, 9),
(657, 9),
(658, 9),
(661, 9),
(662, 9),
(663, 9),
(664, 9),
(665, 9),
(666, 9),
(667, 9),
(668, 9),
(669, 9),
(670, 9),
(671, 9),
(672, 9),
(673, 9),
(674, 9),
(675, 9),
(676, 9),
(677, 9),
(678, 9),
(679, 9),
(680, 9),
(681, 9),
(684, 9),
(685, 9),
(686, 9),
(687, 9),
(688, 9),
(689, 9),
(690, 9),
(691, 9),
(692, 9),
(693, 9),
(694, 9),
(695, 9),
(696, 9),
(697, 9),
(698, 9),
(699, 9),
(700, 9),
(701, 9),
(702, 9),
(703, 9),
(704, 9),
(705, 9),
(706, 9),
(707, 9),
(708, 9),
(709, 9),
(710, 9),
(711, 9),
(712, 9),
(713, 9),
(714, 8),
(715, 1),
(719, 1),
(722, 4),
(724, 4),
(726, 4),
(726, 6),
(727, 4),
(730, 6),
(731, 5),
(732, 1),
(732, 5),
(733, 1),
(733, 3),
(733, 5),
(733, 18),
(736, 5),
(737, 5),
(738, 5),
(739, 5),
(740, 4),
(741, 4),
(742, 4),
(743, 4),
(744, 4),
(745, 4),
(746, 4),
(746, 5),
(747, 1),
(748, 9),
(749, 9),
(750, 1),
(751, 9),
(752, 9),
(753, 9),
(754, 9),
(755, 4),
(756, 10),
(757, 10),
(758, 10),
(759, 10),
(760, 10),
(761, 10),
(762, 10),
(763, 10),
(764, 10),
(765, 10),
(766, 10),
(767, 10),
(768, 10),
(769, 10),
(770, 10),
(771, 10),
(772, 10),
(773, 10),
(774, 10),
(775, 10),
(776, 10),
(777, 10),
(779, 10),
(780, 10),
(782, 10),
(783, 10),
(784, 10),
(785, 10),
(786, 10),
(787, 10),
(788, 10),
(789, 10),
(790, 10),
(791, 10),
(792, 10),
(793, 10),
(794, 10),
(795, 10),
(796, 10),
(797, 10),
(798, 10),
(799, 10),
(800, 10),
(801, 10),
(802, 10),
(803, 10),
(804, 10),
(805, 10),
(806, 10),
(808, 10),
(809, 10),
(810, 10),
(811, 10),
(812, 10),
(813, 10),
(814, 10),
(815, 10),
(816, 10),
(817, 10),
(818, 10),
(819, 10),
(820, 10),
(821, 10),
(822, 10),
(823, 10),
(824, 10),
(825, 10),
(826, 10),
(827, 10),
(828, 10),
(829, 10),
(830, 10),
(831, 10),
(832, 10),
(833, 10),
(834, 10),
(835, 10),
(836, 10),
(837, 10),
(838, 10),
(839, 10),
(840, 10),
(841, 10),
(842, 10),
(843, 10),
(845, 10),
(846, 10),
(849, 10),
(850, 10),
(851, 10),
(852, 10),
(853, 10),
(854, 10),
(855, 10),
(856, 10),
(857, 10),
(858, 10),
(859, 10),
(861, 10),
(862, 10),
(863, 10),
(864, 10),
(865, 10),
(866, 10),
(867, 10),
(868, 10),
(869, 10),
(870, 10),
(871, 10),
(872, 10),
(873, 10),
(874, 10),
(875, 10),
(876, 10),
(877, 10),
(878, 10),
(879, 10),
(880, 10),
(881, 10),
(882, 10),
(883, 10),
(884, 10),
(885, 10),
(886, 10),
(887, 10),
(888, 10),
(889, 10),
(890, 10),
(892, 10),
(893, 10),
(894, 10),
(895, 10),
(896, 10),
(897, 10),
(898, 10),
(899, 10),
(900, 10),
(901, 10),
(902, 10),
(903, 10),
(904, 10),
(905, 10),
(906, 10),
(907, 10),
(908, 10),
(909, 10),
(910, 10),
(911, 10),
(913, 10),
(914, 10),
(915, 10),
(916, 10),
(917, 10),
(918, 10),
(919, 10),
(920, 10),
(921, 10),
(922, 10),
(923, 10),
(924, 10),
(925, 10),
(926, 10),
(927, 10),
(928, 10),
(929, 10),
(930, 10),
(931, 10),
(932, 10),
(933, 10),
(934, 10),
(935, 10),
(936, 10),
(937, 10),
(938, 10),
(939, 10),
(940, 10),
(941, 10),
(942, 10),
(943, 10),
(944, 10),
(945, 10),
(946, 10),
(947, 10),
(948, 10),
(949, 10),
(950, 10),
(951, 10),
(952, 10),
(953, 10),
(954, 1),
(955, 5),
(956, 5),
(957, 5),
(958, 5),
(959, 5),
(960, 5),
(962, 5),
(963, 9),
(964, 9),
(967, 9),
(968, 9),
(971, 9),
(972, 9),
(973, 9),
(974, 9),
(975, 9),
(976, 9),
(979, 9),
(980, 9),
(981, 9),
(982, 9),
(983, 9),
(984, 9),
(985, 9),
(986, 9),
(987, 9),
(988, 9),
(989, 9),
(990, 9),
(991, 9),
(992, 9),
(993, 9),
(994, 9),
(995, 9),
(996, 9),
(997, 1),
(998, 1),
(999, 9),
(1000, 9),
(1001, 9),
(1002, 9),
(1003, 1),
(1003, 10),
(1004, 9),
(1005, 9),
(1006, 9),
(1007, 9),
(1008, 9),
(1009, 9),
(1010, 9),
(1011, 9),
(1012, 9),
(1013, 9),
(1014, 1),
(1014, 10),
(1015, 1),
(1015, 10),
(1016, 9),
(1017, 9),
(1018, 1),
(1019, 9),
(1020, 9),
(1021, 9),
(1022, 9),
(1023, 1),
(1024, 3),
(1024, 9),
(1025, 9),
(1028, 1),
(1029, 1),
(1029, 10),
(1030, 1),
(1031, 1),
(1032, 1),
(1033, 1),
(1034, 1),
(1034, 10),
(1035, 1),
(1036, 9),
(1037, 9),
(1038, 9),
(1039, 9),
(1042, 9),
(1043, 9),
(1044, 8),
(1045, 8),
(1046, 8),
(1047, 8),
(1048, 8),
(1049, 8),
(1050, 8),
(1051, 8),
(1053, 8),
(1055, 1),
(1059, 1),
(1060, 1),
(1067, 5),
(1068, 5),
(1069, 5),
(1073, 5),
(1074, 5),
(1076, 3),
(1076, 5),
(1077, 5),
(1078, 5),
(1079, 5),
(1080, 5),
(1081, 5),
(1082, 2),
(1083, 3),
(1084, 3),
(1084, 4),
(1084, 18),
(1085, 3),
(1086, 3),
(1087, 3),
(1087, 5),
(1088, 3),
(1089, 3),
(1090, 3),
(1091, 3),
(1091, 18),
(1092, 3),
(1092, 4),
(1093, 3),
(1094, 3),
(1095, 3),
(1096, 2),
(1097, 2),
(1099, 2),
(1102, 20),
(1103, 20),
(1104, 20),
(1105, 20),
(1106, 4),
(1108, 4),
(1109, 3),
(1109, 4),
(1109, 11),
(1109, 12),
(1109, 13),
(1109, 14),
(1109, 15),
(1109, 17),
(1109, 18),
(1110, 4),
(1111, 5),
(1112, 2),
(1113, 5),
(1120, 4),
(1121, 4),
(1122, 4),
(1124, 4),
(1125, 1),
(1126, 10),
(1127, 10),
(1128, 10),
(1129, 10),
(1130, 10),
(1131, 5),
(1132, 9),
(1156, 9),
(1157, 9),
(1158, 9),
(1159, 9),
(1210, 5),
(1210, 6),
(1211, 1),
(1211, 3),
(1212, 2),
(1213, 19),
(1214, 5),
(1218, 5),
(1219, 5),
(1220, 5),
(1221, 5),
(1222, 5),
(1223, 5),
(1224, 5),
(1225, 5),
(1226, 5),
(1227, 2),
(1228, 6),
(1234, 11),
(1235, 11),
(1237, 9),
(1237, 11),
(1238, 11),
(1241, 11),
(1243, 11),
(1244, 11),
(1245, 5),
(1245, 11),
(1246, 11),
(1251, 11),
(1252, 3),
(1252, 11),
(1253, 11),
(1254, 11),
(1255, 11),
(1256, 11),
(1257, 11),
(1258, 11),
(1258, 12),
(1258, 14),
(1259, 11),
(1260, 11),
(1261, 11),
(1262, 11),
(1263, 11),
(1266, 19),
(1267, 11),
(1270, 3),
(1270, 6),
(1271, 3),
(1271, 6),
(1273, 5),
(1274, 1),
(1275, 1),
(1276, 1),
(1277, 1),
(1279, 1),
(1280, 1),
(1281, 1),
(1282, 9),
(1283, 9),
(1284, 9),
(1285, 9),
(1286, 9),
(1287, 9),
(1288, 9),
(1289, 9),
(1290, 9),
(1291, 9),
(1292, 9),
(1293, 9),
(1294, 9),
(1295, 9),
(1296, 9),
(1297, 9),
(1298, 9),
(1299, 9),
(1300, 9),
(1301, 9),
(1302, 9),
(1303, 9),
(1304, 9),
(1305, 9),
(1306, 9),
(1307, 9),
(1308, 9),
(1309, 9),
(1310, 9),
(1311, 9),
(1312, 9),
(1313, 9),
(1314, 9),
(1315, 9),
(1316, 9),
(1317, 9),
(1318, 9),
(1319, 9),
(1320, 9),
(1321, 9),
(1322, 9),
(1323, 9),
(1324, 9),
(1325, 9),
(1326, 9),
(1327, 9),
(1328, 9),
(1329, 9),
(1330, 9),
(1331, 9),
(1332, 9),
(1333, 9),
(1334, 9),
(1335, 9),
(1336, 9),
(1337, 9),
(1338, 9),
(1339, 9),
(1340, 9),
(1341, 9),
(1342, 9),
(1343, 9),
(1344, 9),
(1345, 9),
(1346, 9),
(1347, 9),
(1348, 8),
(1348, 9),
(1349, 9),
(1350, 9),
(1351, 9),
(1352, 9),
(1353, 9),
(1354, 9),
(1355, 9),
(1356, 9),
(1357, 9),
(1358, 9),
(1359, 9),
(1360, 9),
(1361, 9),
(1364, 9),
(1365, 9),
(1366, 9),
(1367, 9),
(1368, 9),
(1369, 9),
(1371, 8),
(1373, 8),
(1374, 8),
(1375, 8),
(1376, 8),
(1377, 8),
(1378, 1),
(1378, 6),
(1379, 5),
(1382, 6),
(1383, 6),
(1384, 6),
(1385, 6),
(1386, 6),
(1386, 20),
(1387, 6),
(1388, 6),
(1389, 5),
(1389, 6),
(1390, 5),
(1391, 5),
(1392, 5),
(1393, 5),
(1394, 9),
(1395, 2),
(1396, 3),
(1397, 3),
(1397, 6),
(1398, 3),
(1398, 6),
(1399, 3),
(1400, 3),
(1401, 3),
(1401, 18),
(1402, 3),
(1402, 18),
(1403, 3),
(1403, 5),
(1403, 17),
(1403, 18),
(1406, 20),
(1407, 20),
(1408, 20),
(1409, 4),
(1409, 6),
(1412, 3),
(1413, 3),
(1414, 3),
(1415, 5),
(1415, 12),
(1415, 13),
(1415, 14),
(1415, 18),
(1416, 1),
(1416, 3),
(1417, 3),
(1418, 3),
(1419, 3),
(1420, 3),
(1421, 3),
(1422, 3),
(1423, 3),
(1424, 3),
(1425, 3),
(1426, 3),
(1427, 3),
(1428, 3),
(1429, 1),
(1430, 1),
(1430, 3),
(1430, 5),
(1430, 18),
(1433, 1),
(1433, 3),
(1433, 5),
(1433, 18),
(1435, 1),
(1435, 3),
(1436, 3),
(1437, 1),
(1437, 3),
(1437, 14),
(1437, 18),
(1438, 1),
(1438, 3),
(1439, 1),
(1439, 3),
(1440, 1),
(1440, 3),
(1441, 3),
(1441, 18),
(1442, 3),
(1443, 1),
(1443, 3),
(1443, 5),
(1443, 18),
(1444, 1),
(1444, 3),
(1444, 5),
(1446, 3),
(1447, 3),
(1456, 6),
(1457, 6),
(1462, 6),
(1463, 6),
(1464, 5),
(1464, 6),
(1465, 6),
(1466, 6),
(1467, 5),
(1467, 6),
(1467, 18),
(1468, 6),
(1469, 6),
(1470, 6),
(1471, 5),
(1471, 6),
(1473, 6),
(1474, 6),
(1475, 1),
(1476, 5),
(1477, 5),
(1478, 5),
(1479, 1),
(1479, 3),
(1479, 5),
(1479, 14),
(1479, 18),
(1480, 3),
(1480, 5),
(1480, 18),
(1481, 5),
(1482, 5),
(1483, 3),
(1483, 5),
(1483, 18),
(1484, 5),
(1485, 5),
(1485, 18),
(1486, 5),
(1486, 18),
(1487, 5),
(1487, 18),
(1489, 5),
(1490, 3),
(1490, 5),
(1490, 18),
(1492, 5),
(1493, 3),
(1493, 5),
(1493, 12),
(1493, 13),
(1493, 18),
(1497, 3),
(1498, 3),
(1498, 18),
(1499, 3),
(1502, 3),
(1502, 18),
(1503, 3),
(1505, 4),
(1506, 4),
(1506, 5),
(1507, 4),
(1508, 1),
(1508, 4),
(1508, 5),
(1508, 13),
(1508, 18),
(1509, 4),
(1510, 4),
(1511, 4),
(1512, 4),
(1513, 4),
(1513, 12),
(1513, 17),
(1513, 18),
(1515, 4),
(1516, 4),
(1517, 4),
(1518, 4),
(1519, 4),
(1520, 1),
(1521, 1),
(1523, 6),
(1525, 11),
(1526, 11),
(1527, 11),
(1528, 11),
(1529, 11),
(1532, 11),
(1533, 11),
(1535, 11),
(1536, 11),
(1537, 11),
(1538, 11),
(1539, 11),
(1540, 5),
(1541, 5),
(1541, 18),
(1542, 5),
(1543, 5),
(1544, 5),
(1545, 5),
(1546, 5),
(1547, 5),
(1548, 5),
(1549, 5),
(1550, 5),
(1550, 14),
(1550, 18),
(1551, 5),
(1552, 5),
(1553, 5),
(1554, 1),
(1554, 3),
(1554, 5),
(1554, 18),
(1555, 5),
(1556, 5),
(1557, 1),
(1557, 3),
(1557, 5),
(1558, 3),
(1558, 4),
(1558, 5),
(1558, 13),
(1558, 14),
(1558, 17),
(1560, 5),
(1561, 5),
(1562, 5),
(1563, 6),
(1564, 5),
(1565, 5),
(1566, 5),
(1568, 5),
(1569, 1),
(1569, 5),
(1569, 11),
(1569, 12),
(1569, 13),
(1569, 14),
(1569, 18),
(1570, 5),
(1572, 5),
(1573, 5),
(1574, 5),
(1575, 5),
(1576, 5),
(1576, 18),
(1577, 5),
(1578, 5),
(1579, 5),
(1580, 5),
(1581, 5),
(1582, 5),
(1583, 5),
(1584, 5),
(1585, 4),
(1586, 4),
(1587, 4),
(1588, 4),
(1590, 4),
(1591, 4),
(1592, 4),
(1594, 4),
(1595, 4),
(1596, 5),
(1597, 5),
(1598, 5),
(1599, 5),
(1600, 5),
(1601, 5),
(1602, 1),
(1602, 5),
(1603, 5),
(1604, 5),
(1606, 1),
(1607, 1),
(1608, 1),
(1609, 1),
(1610, 1),
(1611, 1),
(1612, 1),
(1613, 1),
(1614, 1),
(1617, 1),
(1618, 1),
(1619, 1),
(1620, 1),
(1621, 1),
(1622, 1),
(1623, 1),
(1624, 1),
(1626, 1),
(1627, 1),
(1628, 1),
(1629, 1),
(1630, 1),
(1631, 1),
(1632, 1),
(1633, 1),
(1634, 1),
(1635, 1),
(1636, 1),
(1637, 1),
(1638, 1),
(1639, 1),
(1640, 1),
(1641, 1),
(1642, 1),
(1643, 1),
(1644, 1),
(1645, 1),
(1646, 1),
(1647, 1),
(1648, 1),
(1650, 1),
(1651, 1),
(1654, 17),
(1654, 18),
(1660, 9),
(1661, 9),
(1662, 9),
(1663, 9),
(1664, 9),
(1665, 9),
(1666, 9),
(1667, 9),
(1668, 9),
(1669, 9),
(1670, 9),
(1671, 9),
(1672, 9),
(1673, 9),
(1674, 9),
(1675, 9),
(1676, 9),
(1677, 9),
(1678, 9),
(1679, 9),
(1680, 9),
(1681, 9),
(1682, 9),
(1683, 9),
(1684, 9),
(1685, 9),
(1686, 9),
(1687, 9),
(1690, 9),
(1691, 9),
(1692, 9),
(1693, 9),
(1694, 9),
(1695, 9),
(1696, 9),
(1697, 9),
(1698, 9),
(1699, 9),
(1700, 9),
(1701, 9),
(1702, 9),
(1703, 9),
(1704, 9),
(1705, 9),
(1706, 9),
(1707, 9),
(1712, 9),
(1713, 9),
(1714, 9),
(1715, 9),
(1716, 9),
(1717, 9),
(1718, 9),
(1719, 9),
(1720, 9),
(1721, 9),
(1723, 9),
(1724, 9),
(1725, 6),
(1726, 6),
(1731, 3),
(1732, 11),
(1733, 11),
(1734, 11),
(1735, 11),
(1736, 11),
(1737, 1),
(1738, 9),
(1739, 9),
(1740, 9),
(1741, 9),
(1742, 9),
(1743, 9),
(1744, 9),
(1745, 9),
(1746, 9),
(1747, 9),
(1748, 9),
(1749, 9),
(1750, 9),
(1751, 9),
(1752, 9),
(1753, 9),
(1754, 8),
(1756, 8),
(1757, 2),
(1758, 2),
(1759, 2),
(1760, 2),
(1761, 2),
(1762, 2),
(1763, 2),
(1764, 2),
(1765, 8),
(1766, 8),
(1767, 8),
(1768, 8),
(1769, 8),
(1772, 11),
(1776, 6),
(1777, 6),
(1779, 6),
(1780, 6),
(1781, 6),
(1782, 3),
(1783, 5),
(1784, 5),
(1785, 11),
(1787, 11),
(1826, 3),
(1826, 11),
(1842, 1),
(1842, 2),
(1843, 2),
(1844, 2),
(1845, 2),
(1846, 2),
(1847, 2),
(1848, 2),
(1849, 2),
(1850, 2),
(1851, 2),
(1852, 2),
(1853, 6),
(1853, 14),
(1854, 6),
(1860, 6),
(1861, 6),
(1869, 9),
(1870, 9),
(1871, 1),
(1872, 1),
(1872, 6),
(1873, 1),
(1873, 6),
(1874, 6),
(1875, 1),
(1877, 1),
(1878, 1),
(1879, 1),
(1880, 1),
(1881, 9),
(1882, 9),
(1883, 9),
(1884, 9),
(1885, 4),
(1886, 5),
(1887, 1),
(1888, 9),
(1889, 9),
(1890, 9),
(1891, 9),
(1892, 9),
(1893, 9),
(1894, 9),
(1895, 9),
(1896, 9),
(1897, 9),
(1902, 9),
(1903, 9),
(1904, 9),
(1905, 9),
(1906, 9),
(1907, 9),
(1908, 9),
(1909, 9),
(1910, 9),
(1911, 9),
(1914, 9),
(1915, 9),
(1916, 9),
(1917, 9),
(1919, 8),
(1920, 2),
(1920, 8),
(1922, 8),
(1923, 1),
(1924, 3),
(1926, 3),
(1927, 3),
(1928, 3),
(1929, 1),
(1930, 1),
(1932, 1),
(1933, 12),
(1933, 13),
(1934, 12),
(1935, 12),
(1936, 12),
(1937, 12),
(1938, 12),
(1939, 12),
(1941, 12),
(1942, 12),
(1943, 5),
(1943, 12),
(1943, 13),
(1943, 17),
(1943, 18),
(1944, 1),
(1944, 3),
(1944, 4),
(1944, 5),
(1944, 12),
(1944, 13),
(1944, 14),
(1944, 15),
(1944, 18),
(1945, 12),
(1946, 12),
(1947, 12),
(1950, 12),
(1953, 12),
(1955, 12),
(1955, 18),
(1957, 12),
(1959, 12),
(1959, 18),
(1960, 12),
(1960, 13),
(1960, 14),
(1960, 18),
(1961, 12),
(1964, 12),
(1965, 12),
(1966, 3),
(1966, 12),
(1966, 18),
(1967, 12),
(1968, 12),
(1969, 12),
(1970, 12),
(1971, 12),
(1972, 12),
(1973, 12),
(1974, 12),
(1975, 12),
(1976, 12),
(1977, 12),
(1978, 12),
(1979, 12),
(1981, 12),
(1982, 12),
(1983, 12),
(1985, 12),
(1986, 12),
(1987, 12),
(2005, 12),
(2005, 18),
(2006, 3),
(2055, 5),
(2059, 5),
(2059, 6),
(2086, 13),
(2087, 13),
(2088, 13),
(2089, 13),
(2090, 13),
(2091, 13),
(2092, 13),
(2093, 13),
(2093, 14),
(2093, 17),
(2093, 18),
(2094, 13),
(2095, 13),
(2097, 13),
(2098, 13),
(2101, 3),
(2101, 13),
(2101, 18),
(2102, 13),
(2104, 13),
(2105, 13),
(2106, 13),
(2107, 6),
(2107, 11),
(2107, 13),
(2108, 13),
(2109, 13),
(2110, 13),
(2111, 13),
(2112, 13),
(2113, 13),
(2114, 13),
(2115, 13),
(2116, 13),
(2117, 13),
(2118, 13),
(2119, 13),
(2120, 13),
(2121, 13),
(2122, 13),
(2125, 13),
(2126, 13),
(2127, 13),
(2128, 13),
(2131, 13),
(2132, 13),
(2133, 13),
(2134, 13),
(2135, 13),
(2136, 13),
(2137, 13),
(2144, 13),
(2145, 1),
(2146, 1),
(2146, 5),
(2153, 3),
(2153, 18),
(2154, 3),
(2155, 3),
(2156, 6),
(2157, 6),
(2158, 1),
(2158, 6),
(2159, 6),
(2160, 6),
(2161, 3),
(2161, 6),
(2162, 6),
(2163, 2),
(2164, 2),
(2165, 2),
(2166, 12),
(2167, 3),
(2167, 5),
(2167, 18),
(2168, 12),
(2169, 12),
(2170, 12),
(2171, 12),
(2172, 6),
(2172, 12),
(2173, 1),
(2173, 3),
(2173, 6),
(2173, 12),
(2174, 1),
(2174, 3),
(2174, 12),
(2174, 18),
(2175, 12),
(2176, 12),
(2177, 12),
(2178, 5),
(2179, 5),
(2180, 5),
(2181, 5),
(2182, 5),
(2183, 1),
(2183, 3),
(2183, 5),
(2183, 14),
(2183, 18),
(2184, 5),
(2185, 5),
(2186, 5),
(2187, 5),
(2188, 5),
(2189, 5),
(2191, 5),
(2192, 5),
(2193, 5),
(2194, 5),
(2195, 5),
(2196, 5),
(2197, 5),
(2198, 5),
(2199, 5),
(2200, 5),
(2201, 5),
(2202, 5),
(2203, 5),
(2204, 5),
(2205, 5),
(2206, 5),
(2207, 5),
(2208, 5),
(2208, 6),
(2209, 5),
(2210, 5),
(2211, 5),
(2212, 5),
(2212, 18),
(2213, 5),
(2214, 5),
(2215, 5),
(2216, 5),
(2217, 5),
(2218, 5),
(2219, 5),
(2220, 5),
(2221, 5),
(2222, 5),
(2225, 5),
(2226, 5),
(2227, 5),
(2234, 14),
(2241, 14),
(2242, 14),
(2244, 14),
(2244, 15),
(2264, 9),
(2266, 9),
(2267, 9),
(2268, 17),
(2269, 17),
(2270, 17),
(2271, 17),
(2272, 17),
(2273, 17),
(2274, 17),
(2275, 17),
(2276, 17),
(2277, 3),
(2277, 17),
(2278, 17),
(2279, 17),
(2280, 17),
(2281, 17),
(2282, 17),
(2283, 17),
(2284, 17),
(2285, 17),
(2286, 17),
(2287, 6),
(2287, 17),
(2288, 6),
(2288, 17),
(2289, 17),
(2290, 17),
(2291, 17),
(2292, 17),
(2293, 17),
(2294, 17),
(2295, 17),
(2296, 17),
(2297, 17),
(2298, 17),
(2299, 17),
(2300, 17),
(2301, 17),
(2302, 17),
(2303, 17),
(2304, 17),
(2305, 17),
(2306, 17),
(2307, 17),
(2308, 17),
(2309, 17),
(2310, 17),
(2311, 17),
(2312, 17),
(2313, 17),
(2314, 17),
(2316, 17),
(2317, 17),
(2318, 17),
(2319, 17),
(2320, 17),
(2321, 17),
(2322, 17),
(2323, 17),
(2324, 17),
(2325, 17),
(2326, 17),
(2327, 12),
(2327, 13),
(2327, 17),
(2327, 18),
(2329, 17),
(2330, 17),
(2331, 17),
(2332, 17),
(2333, 17),
(2334, 17),
(2335, 17),
(2335, 18),
(2336, 17),
(2337, 17),
(2338, 17),
(2339, 17),
(2340, 17),
(2341, 17),
(2342, 17),
(2343, 17),
(2344, 17),
(2345, 17),
(2346, 13),
(2346, 17),
(2347, 17),
(2348, 17),
(2349, 2),
(2350, 2),
(2360, 11),
(2361, 11),
(2362, 11),
(2362, 18),
(2363, 11),
(2364, 11),
(2365, 11),
(2366, 11),
(2367, 11),
(2368, 11),
(2369, 11),
(2370, 11),
(2371, 11),
(2372, 11),
(2373, 11),
(2374, 11),
(2375, 11),
(2376, 11),
(2377, 1),
(2377, 6),
(2377, 11),
(2377, 15),
(2378, 5),
(2378, 11),
(2379, 11),
(2380, 11),
(2381, 11),
(2382, 11),
(2383, 11),
(2384, 11),
(2385, 11),
(2386, 11),
(2387, 11),
(2388, 11),
(2389, 11),
(2390, 11),
(2391, 11),
(2392, 11),
(2393, 11),
(2394, 3),
(2395, 3),
(2396, 3),
(2397, 3),
(2399, 3),
(2400, 3),
(2401, 3),
(2401, 6),
(2402, 3),
(2403, 3),
(2404, 3),
(2406, 3),
(2407, 3),
(2408, 3),
(2411, 3),
(2412, 3),
(2412, 18),
(2414, 3),
(2414, 4),
(2415, 3),
(2416, 3),
(2416, 4),
(2416, 18),
(2418, 3),
(2418, 18),
(2419, 3),
(2420, 3),
(2421, 3),
(2422, 3),
(2423, 3),
(2424, 3),
(2424, 4),
(2424, 5),
(2425, 3),
(2426, 3),
(2427, 3),
(2428, 3),
(2429, 3),
(2429, 18),
(2430, 3),
(2430, 4),
(2432, 3),
(2434, 3),
(2435, 3),
(2436, 3),
(2437, 3),
(2438, 3),
(2439, 3),
(2440, 3),
(2441, 3),
(2442, 3),
(2443, 3),
(2444, 3),
(2445, 3),
(2446, 3),
(2447, 3),
(2449, 3),
(2449, 18),
(2450, 3),
(2450, 18),
(2451, 3),
(2454, 3),
(2456, 3),
(2457, 3),
(2458, 1),
(2458, 3),
(2459, 3),
(2460, 18),
(2461, 3),
(2461, 18),
(2462, 3),
(2462, 18),
(2463, 3),
(2464, 3),
(2465, 3),
(2466, 15),
(2467, 15),
(2468, 15),
(2469, 15),
(2470, 15),
(2471, 15),
(2472, 15),
(2473, 15),
(2474, 15),
(2475, 15),
(2476, 15),
(2477, 15),
(2478, 15),
(2479, 15),
(2480, 15),
(2481, 15),
(2482, 15),
(2483, 15),
(2484, 15),
(2485, 15),
(2486, 15),
(2487, 15),
(2488, 15),
(2489, 15),
(2490, 15),
(2491, 15),
(2492, 15),
(2493, 15),
(2494, 15),
(2495, 15),
(2496, 3),
(2497, 3),
(2498, 3),
(2499, 3),
(2500, 3),
(2501, 3),
(2502, 3),
(2503, 3),
(2504, 3),
(2506, 3),
(2507, 3),
(2507, 4),
(2507, 18),
(2508, 3),
(2509, 3),
(2510, 3),
(2511, 3),
(2512, 3),
(2513, 3),
(2514, 3),
(2515, 3),
(2516, 3),
(2517, 3),
(2519, 3),
(2522, 3),
(2523, 3),
(2524, 3),
(2525, 3),
(2526, 3),
(2527, 3),
(2528, 3),
(2529, 3),
(2530, 3),
(2531, 3),
(2532, 3),
(2533, 3),
(2534, 3),
(2535, 3),
(2536, 3),
(2537, 3),
(2538, 3),
(2539, 3),
(2540, 3),
(2541, 3),
(2542, 3),
(2545, 3),
(2546, 3),
(2547, 3),
(2548, 3),
(2549, 3),
(2550, 3),
(2551, 3),
(2552, 3),
(2553, 3),
(2554, 3),
(2555, 3),
(2556, 3),
(2557, 3),
(2558, 3),
(2558, 5),
(2558, 18),
(2559, 3),
(2560, 3),
(2561, 3),
(2562, 3),
(2563, 3),
(2564, 3),
(2565, 3),
(2566, 3),
(2567, 3),
(2568, 3),
(2569, 3),
(2570, 3),
(2571, 3),
(2572, 3),
(2573, 3),
(2574, 3),
(2575, 3),
(2576, 3),
(2577, 3),
(2578, 3),
(2579, 3),
(2580, 3),
(2581, 3),
(2582, 3),
(2583, 3),
(2584, 3),
(2584, 18),
(2585, 15),
(2586, 15),
(2587, 15),
(2588, 15),
(2589, 15),
(2590, 15),
(2591, 15),
(2592, 15),
(2593, 15),
(2594, 15),
(2595, 15),
(2596, 15),
(2597, 15),
(2598, 15),
(2599, 15),
(2600, 15),
(2601, 15),
(2602, 15),
(2603, 15),
(2604, 15),
(2605, 15),
(2606, 15),
(2607, 15),
(2608, 15),
(2609, 15),
(2610, 15),
(2611, 15),
(2612, 15),
(2613, 15),
(2614, 15),
(2615, 15),
(2616, 15),
(2617, 15),
(2618, 15),
(2619, 15),
(2620, 15),
(2621, 15),
(2622, 15),
(2623, 15),
(2624, 15),
(2625, 15),
(2626, 15),
(2627, 15),
(2628, 15),
(2629, 15),
(2630, 3),
(2631, 3),
(2632, 3),
(2633, 3),
(2634, 3),
(2635, 3),
(2636, 3),
(2637, 3),
(2638, 3),
(2639, 3),
(2640, 3),
(2641, 3),
(2642, 3),
(2644, 3),
(2645, 3),
(2646, 3),
(2647, 3),
(2648, 3),
(2649, 3),
(2650, 5),
(2651, 5),
(2652, 5),
(2653, 5),
(2654, 5),
(2655, 5),
(2656, 5),
(2657, 5),
(2658, 5),
(2659, 1),
(2660, 1),
(2661, 1),
(2662, 1),
(2663, 1),
(2664, 1),
(2665, 1),
(2666, 1),
(2667, 1),
(2668, 1),
(2669, 1),
(2670, 1),
(2671, 1),
(2672, 5),
(2673, 5),
(2674, 5),
(2675, 10),
(2676, 10),
(2677, 10),
(2678, 10),
(2679, 10),
(2680, 10),
(2681, 10),
(2682, 10),
(2683, 10),
(2684, 10),
(2685, 10),
(2686, 10),
(2687, 10),
(2688, 10),
(2689, 10),
(2690, 10),
(2691, 10),
(2692, 10),
(2693, 10),
(2694, 10),
(2695, 10),
(2696, 10),
(2697, 10),
(2698, 10),
(2699, 10),
(2700, 10),
(2701, 10),
(2702, 10),
(2703, 10),
(2704, 10),
(2705, 10),
(2706, 10),
(2707, 10),
(2708, 10),
(2709, 10),
(2710, 10),
(2711, 10),
(2712, 10),
(2713, 10),
(2714, 10),
(2715, 10),
(2716, 10),
(2717, 10),
(2718, 10),
(2719, 10),
(2720, 10),
(2721, 10),
(2722, 10),
(2723, 10),
(2724, 10),
(2725, 10),
(2726, 3),
(2727, 3),
(2728, 3),
(2729, 3),
(2730, 3),
(2731, 3),
(2732, 3),
(2733, 8),
(2734, 8),
(2735, 8),
(2736, 8),
(2737, 8),
(2738, 8),
(2739, 8),
(2740, 8),
(2741, 8),
(2742, 8),
(2743, 8),
(2744, 8),
(2745, 8),
(2746, 8),
(2747, 8),
(2748, 8),
(2749, 8),
(2750, 8),
(2751, 8),
(2752, 8),
(2753, 8),
(2754, 8),
(2755, 8),
(2756, 8),
(2757, 8),
(2758, 8),
(2759, 8),
(2760, 8),
(2761, 8),
(2762, 8),
(2763, 8),
(2764, 8),
(2765, 8),
(2766, 8),
(2767, 8),
(2768, 8),
(2769, 8),
(2770, 8),
(2771, 8),
(2772, 8),
(2773, 8),
(2774, 8),
(2775, 8),
(2776, 8),
(2777, 8),
(2778, 8),
(2779, 8),
(2780, 8),
(2781, 8),
(2782, 8),
(2783, 8),
(2784, 8),
(2785, 8),
(2786, 8),
(2787, 8),
(2788, 8),
(2789, 8),
(2790, 8),
(2791, 8),
(2792, 8),
(2793, 8),
(2794, 8),
(2795, 8),
(2796, 8),
(2797, 8),
(2798, 8),
(2799, 8),
(2800, 8),
(2801, 8),
(2802, 8),
(2803, 8),
(2804, 8),
(2805, 8),
(2806, 8),
(2807, 8),
(2808, 8),
(2809, 8),
(2810, 8),
(2811, 8),
(2812, 8),
(2813, 8),
(2814, 8),
(2815, 8),
(2816, 8),
(2817, 8),
(2818, 8),
(2819, 8),
(2820, 8),
(2821, 8),
(2822, 8),
(2823, 8),
(2824, 8),
(2825, 8),
(2826, 8),
(2827, 8),
(2828, 8),
(2829, 8),
(2830, 8),
(2832, 1),
(2833, 1),
(2834, 1),
(2835, 1),
(2836, 1),
(2837, 1),
(2838, 1),
(2839, 1),
(2840, 1),
(2841, 3),
(2842, 3),
(2843, 3),
(2844, 3),
(2845, 3),
(2846, 3),
(2847, 3),
(2848, 3),
(2849, 3),
(2850, 3),
(2851, 3),
(2852, 3),
(2853, 3),
(2854, 3),
(2855, 3),
(2856, 3),
(2857, 3),
(2858, 3),
(2859, 3),
(2860, 3),
(2861, 3),
(2862, 3),
(2863, 3),
(2864, 3),
(2865, 3),
(2866, 3),
(2867, 3),
(2868, 3),
(2869, 3),
(2870, 3),
(2871, 3),
(2872, 3),
(2873, 3),
(2874, 3),
(2875, 3),
(2876, 3),
(2877, 3),
(2878, 3),
(2879, 3),
(2880, 3),
(2881, 3),
(2882, 3),
(2883, 3),
(2884, 3),
(2885, 3),
(2886, 3),
(2887, 3),
(2888, 3),
(2889, 3),
(2891, 3),
(2892, 3),
(2893, 3),
(2895, 3),
(2896, 3),
(2898, 3),
(2899, 3),
(2900, 3),
(2902, 3),
(2903, 3),
(2904, 3),
(2905, 3),
(2906, 1),
(2906, 3),
(2906, 6),
(2907, 3),
(2908, 3),
(2909, 3),
(2911, 3),
(2911, 6),
(2912, 3),
(2913, 3),
(2914, 3),
(2915, 3),
(2918, 3),
(2919, 3),
(2920, 3),
(2921, 3),
(2922, 3),
(2922, 4),
(2923, 3),
(2924, 3),
(2925, 3),
(2928, 3),
(2929, 3),
(2930, 3),
(2931, 3),
(2932, 3),
(2933, 3),
(2934, 3),
(2935, 3),
(2936, 3),
(2937, 3),
(2938, 3),
(2939, 3),
(2940, 3),
(2941, 3),
(2942, 3),
(2943, 3),
(2944, 1),
(2944, 3),
(2945, 3),
(2946, 3),
(2947, 3),
(2948, 3),
(2949, 3),
(2950, 3),
(2951, 3),
(2952, 3),
(2953, 3),
(2954, 3),
(2955, 3),
(2956, 3),
(2959, 3),
(2960, 3),
(2961, 12),
(2962, 12),
(2963, 12),
(2964, 12),
(2965, 12),
(2966, 12),
(2967, 12),
(2968, 12),
(2969, 12),
(2970, 12),
(2971, 12),
(2972, 12),
(2973, 12),
(2974, 12),
(2975, 12),
(2976, 12),
(2977, 12),
(2978, 12),
(2979, 12),
(2980, 12),
(2981, 12),
(2982, 12),
(2983, 12),
(2984, 1),
(2985, 1),
(2986, 1),
(2987, 1),
(2988, 1),
(2989, 1),
(2992, 1),
(2992, 6),
(2992, 18),
(2993, 1),
(2995, 1),
(2996, 5),
(2997, 5),
(2998, 5),
(2999, 5),
(3000, 5),
(3001, 16),
(3002, 16),
(3003, 16),
(3004, 16),
(3005, 16),
(3006, 16),
(3007, 16),
(3008, 16),
(3009, 16),
(3010, 16),
(3011, 16),
(3012, 16),
(3013, 16),
(3014, 16),
(3015, 16),
(3016, 16),
(3017, 16),
(3018, 16),
(3019, 16),
(3020, 16),
(3021, 16),
(3022, 16),
(3023, 16),
(3024, 16),
(3025, 16),
(3026, 16),
(3027, 16),
(3028, 16),
(3030, 16),
(3031, 16),
(3032, 16),
(3033, 16),
(3034, 16),
(3035, 16),
(3036, 16),
(3037, 16),
(3038, 16),
(3039, 16),
(3040, 16),
(3041, 16),
(3042, 16),
(3043, 16),
(3044, 16),
(3045, 16),
(3046, 16),
(3047, 16),
(3048, 16),
(3049, 16),
(3050, 16),
(3051, 16),
(3054, 4),
(3055, 4),
(3056, 4),
(3057, 4),
(3058, 4),
(3059, 4),
(3060, 4),
(3060, 12),
(3061, 4),
(3061, 12),
(3062, 4),
(3063, 3),
(3063, 4),
(3064, 4),
(3065, 4),
(3066, 4),
(3067, 4),
(3068, 4),
(3069, 4),
(3070, 1),
(3070, 4),
(3071, 4),
(3072, 4),
(3072, 6),
(3073, 4),
(3074, 4),
(3075, 4),
(3076, 4),
(3079, 4),
(3080, 4),
(3081, 4),
(3082, 3),
(3082, 4),
(3083, 4),
(3084, 4),
(3085, 4),
(3086, 4),
(3087, 4),
(3088, 4),
(3089, 4),
(3090, 4),
(3091, 4),
(3091, 18),
(3092, 4),
(3092, 18),
(3093, 4),
(3096, 4),
(3097, 3),
(3098, 3),
(3099, 3),
(3100, 3),
(3101, 4),
(3102, 4),
(3103, 4),
(3104, 4),
(3105, 4),
(3106, 4),
(3107, 4),
(3108, 4),
(3109, 4),
(3110, 4),
(3111, 4),
(3112, 4),
(3113, 4),
(3114, 3),
(3115, 3),
(3116, 3),
(3117, 3),
(3118, 3),
(3119, 3),
(3120, 3),
(3121, 3),
(3121, 18),
(3122, 3),
(3123, 3),
(3124, 3),
(3125, 3),
(3126, 3),
(3127, 3),
(3128, 3),
(3129, 3),
(3130, 3),
(3131, 3),
(3132, 3),
(3133, 3),
(3134, 3),
(3135, 3),
(3136, 3),
(3137, 3),
(3138, 3),
(3139, 2),
(3140, 14),
(3141, 14),
(3142, 1),
(3143, 1),
(3144, 1),
(3145, 1),
(3146, 1),
(3147, 1),
(3148, 1),
(3149, 1),
(3150, 1),
(3151, 1),
(3152, 1),
(3153, 1),
(3154, 1),
(3155, 1),
(3155, 6),
(3156, 1),
(3156, 3),
(3156, 6),
(3157, 1),
(3157, 6),
(3158, 1),
(3158, 17),
(3159, 1),
(3159, 6),
(3160, 1),
(3161, 1),
(3162, 1),
(3163, 1),
(3164, 1),
(3165, 1),
(3166, 1),
(3167, 1),
(3168, 13),
(3169, 13),
(3170, 13),
(3171, 13),
(3172, 13),
(3173, 13),
(3174, 13),
(3175, 13),
(3176, 13),
(3177, 13),
(3178, 13),
(3179, 13),
(3180, 13),
(3181, 13),
(3182, 13),
(3183, 13),
(3184, 13),
(3185, 13),
(3186, 1),
(3187, 1),
(3188, 1),
(3189, 1),
(3190, 1),
(3191, 1),
(3192, 1),
(3193, 12),
(3194, 12),
(3195, 12),
(3196, 12),
(3197, 12),
(3198, 12),
(3199, 12),
(3200, 12),
(3201, 12),
(3202, 12),
(3205, 12),
(3206, 12),
(3207, 12),
(3208, 1),
(3209, 12),
(3212, 12),
(3213, 12),
(3214, 12),
(3215, 12),
(3216, 12),
(3217, 12),
(3218, 12),
(3219, 12),
(3220, 12),
(3221, 12),
(3222, 12),
(3223, 12),
(3224, 5),
(3225, 5),
(3226, 1),
(3226, 3),
(3226, 5),
(3226, 18),
(3227, 1),
(3227, 3),
(3227, 5),
(3227, 18),
(3228, 5),
(3229, 4),
(3229, 17),
(3230, 4),
(3231, 4),
(3235, 3),
(3235, 4),
(3235, 6),
(3235, 14),
(3235, 15),
(3240, 13),
(3242, 13),
(3245, 13),
(3249, 4),
(3250, 4),
(3251, 1),
(3251, 3),
(3251, 4),
(3252, 4),
(3253, 4),
(3255, 4),
(3256, 4),
(3257, 4),
(3258, 4),
(3259, 4),
(3260, 4),
(3261, 4),
(3262, 4),
(3263, 6),
(3264, 3),
(3265, 3),
(3267, 3),
(3267, 6),
(3268, 3),
(3268, 6),
(3295, 5),
(3296, 5),
(3297, 5),
(3298, 3),
(3298, 5),
(3299, 3),
(3299, 5),
(3300, 5),
(3301, 1),
(3302, 1),
(3303, 5),
(3304, 5),
(3304, 6),
(3304, 18),
(3315, 6),
(3316, 6),
(3332, 6),
(3333, 6),
(3333, 12),
(3333, 18),
(3334, 3),
(3337, 2),
(3338, 1),
(3339, 1),
(3340, 1),
(3341, 1),
(3342, 1),
(3343, 1),
(3344, 1),
(3345, 1),
(3346, 1),
(3347, 1),
(3348, 1),
(3349, 1),
(3350, 1),
(3351, 1),
(3352, 1),
(3353, 1),
(3354, 3),
(3355, 3),
(3356, 3),
(3357, 3),
(3358, 1),
(3358, 3),
(3359, 3),
(3360, 3),
(3361, 3),
(3362, 3),
(3366, 1),
(3366, 3),
(3367, 1),
(3367, 3),
(3367, 18),
(3368, 3),
(3369, 3),
(3370, 3),
(3370, 6),
(3371, 1),
(3371, 3),
(3371, 6),
(3372, 3),
(3372, 6),
(3372, 18),
(3373, 3),
(3373, 6),
(3373, 18),
(3374, 3),
(3375, 3),
(3376, 3),
(3377, 3),
(3378, 3),
(3379, 3),
(3380, 3),
(3381, 3),
(3382, 3),
(3383, 6),
(3384, 6),
(3385, 1),
(3385, 3),
(3385, 6),
(3385, 18),
(3386, 1),
(3386, 3),
(3386, 6),
(3386, 18),
(3387, 3),
(3388, 1),
(3388, 6),
(3388, 18),
(3389, 6),
(3390, 6),
(3394, 6),
(3394, 18),
(3395, 6),
(3396, 6),
(3396, 18),
(3397, 6),
(3397, 18),
(3398, 6),
(3398, 18),
(3399, 6),
(3399, 18),
(3400, 6),
(3401, 6),
(3401, 18),
(3402, 6),
(3402, 18),
(3403, 6),
(3403, 18),
(3404, 6),
(3404, 18),
(3405, 6),
(3405, 18),
(3408, 6),
(3408, 18),
(3409, 6),
(3409, 18),
(3410, 6),
(3410, 18),
(3411, 6),
(3411, 18),
(3413, 6),
(3414, 6),
(3415, 6),
(3416, 6),
(3417, 5),
(3417, 6),
(3418, 6),
(3421, 6),
(3422, 6),
(3423, 6),
(3424, 6),
(3426, 6),
(3427, 6),
(3428, 6),
(3429, 6),
(3430, 6),
(3431, 6),
(3432, 6),
(3434, 6),
(3435, 6),
(3436, 6),
(3437, 6),
(3438, 6),
(3439, 6),
(3440, 1),
(3441, 1),
(3442, 1),
(3443, 1),
(3445, 1),
(3446, 1),
(3446, 3),
(3447, 1),
(3448, 1),
(3449, 1),
(3450, 1),
(3451, 1),
(3451, 3),
(3451, 17),
(3451, 18),
(3452, 1),
(3453, 1),
(3454, 1),
(3455, 1),
(3456, 1),
(3457, 1),
(3458, 1),
(3459, 1),
(3460, 1),
(3461, 1),
(3462, 1),
(3464, 1),
(3465, 1),
(3467, 1),
(3468, 18),
(3469, 18),
(3470, 18),
(3471, 18),
(3472, 18),
(3473, 18),
(3474, 18),
(3476, 18),
(3477, 18),
(3479, 18),
(3481, 18),
(3483, 18),
(3484, 18),
(3485, 18),
(3487, 18),
(3488, 18),
(3491, 18),
(3492, 18),
(3494, 18),
(3496, 18),
(3497, 18),
(3499, 18),
(3501, 18),
(3504, 18),
(3506, 18),
(3507, 18),
(3508, 18),
(3510, 18),
(3511, 18),
(3513, 18),
(3514, 18),
(3515, 18),
(3518, 18),
(3519, 18),
(3521, 18),
(3523, 18),
(3524, 18),
(3536, 18),
(3537, 5),
(3537, 18),
(3544, 18),
(3545, 18),
(3547, 18),
(3548, 18),
(3550, 18),
(3551, 18),
(3552, 18),
(3554, 18),
(3555, 18),
(3557, 18),
(3562, 18),
(3563, 18),
(3566, 18),
(3567, 18),
(3569, 18),
(3570, 18),
(3571, 18),
(3572, 18),
(3573, 18),
(3574, 18),
(3578, 18),
(3579, 18),
(3580, 18),
(3586, 18),
(3588, 18),
(3589, 18),
(3590, 18),
(3591, 18),
(3603, 18),
(3604, 18),
(3607, 18),
(3608, 18),
(3609, 18),
(3610, 18),
(3612, 18),
(3613, 18),
(3614, 18),
(3615, 18),
(3616, 18),
(3617, 18),
(3618, 18),
(3619, 18),
(3620, 18),
(3621, 18),
(3622, 18),
(3623, 18),
(3624, 18),
(3625, 18),
(3626, 18),
(3627, 18),
(3628, 18),
(3629, 18),
(3630, 18),
(3631, 18),
(3632, 18),
(3633, 18),
(3634, 18),
(3635, 18),
(3636, 18),
(3639, 18),
(3640, 18),
(3641, 18),
(3642, 18),
(3643, 18),
(3649, 18),
(3651, 18),
(3652, 18),
(3658, 18),
(3659, 18),
(3660, 18),
(3661, 18),
(3662, 18),
(3668, 18),
(3669, 18),
(3670, 18),
(3671, 18),
(3673, 18),
(3674, 18),
(3681, 18),
(3682, 18),
(3683, 18),
(3685, 18),
(3686, 18),
(3687, 18),
(3688, 18),
(3689, 18),
(3690, 18),
(3691, 18),
(3692, 18),
(3693, 18),
(3694, 18),
(3695, 18),
(3696, 18),
(3697, 18),
(3698, 18),
(3699, 18),
(3700, 18),
(3701, 18),
(3702, 18),
(3703, 18),
(3704, 18),
(3705, 18),
(3711, 18),
(3712, 18),
(3713, 18),
(3714, 18),
(3715, 18),
(3716, 18),
(3717, 18),
(3718, 18),
(3719, 18),
(3720, 18),
(3721, 18),
(3722, 18),
(3724, 18),
(3736, 18),
(3738, 18),
(3739, 18),
(3740, 18),
(3741, 18),
(3743, 18),
(3745, 18),
(3746, 18),
(3747, 18),
(3749, 18),
(3752, 18),
(3753, 18),
(3754, 18),
(3755, 18),
(3756, 18),
(3757, 18),
(3760, 18),
(3784, 18),
(3798, 18),
(3804, 18),
(3807, 18),
(3808, 18),
(3811, 18),
(3825, 18),
(3838, 18),
(3839, 18),
(3840, 18),
(3841, 18),
(3842, 18),
(3843, 18),
(3844, 18),
(3845, 18),
(3849, 18),
(3850, 18),
(3851, 18),
(3852, 18),
(3853, 18),
(3854, 18),
(3855, 18),
(3856, 18),
(3858, 18),
(3859, 18),
(3860, 18),
(3861, 18),
(3862, 18),
(3863, 18),
(3865, 18),
(3866, 18),
(3870, 18),
(3872, 18),
(3891, 18),
(3892, 18),
(3893, 18),
(3895, 18),
(3896, 18),
(3898, 18),
(3903, 18),
(3906, 18),
(3908, 18),
(3909, 18),
(3910, 18),
(3911, 18),
(3916, 18),
(3917, 18),
(3918, 18),
(3921, 18),
(3922, 18),
(3923, 18),
(3924, 18),
(3925, 18),
(3926, 18),
(3929, 18),
(3932, 18),
(3933, 18),
(3934, 18),
(3935, 18),
(3936, 18),
(3937, 18),
(3938, 18),
(3941, 18),
(3951, 18),
(3952, 18),
(3953, 18),
(3954, 18),
(3955, 18),
(3956, 18),
(3957, 18),
(3958, 18),
(3959, 18),
(3960, 18),
(3961, 18),
(3969, 18),
(3970, 18),
(3971, 18),
(3980, 18),
(3981, 18),
(3982, 18),
(3983, 18),
(3984, 18),
(3985, 18),
(3987, 18),
(3988, 18),
(3989, 18),
(3991, 18),
(3992, 18),
(3993, 18),
(3994, 18),
(3995, 18),
(4002, 18),
(4003, 18),
(4005, 18),
(4006, 18),
(4007, 18),
(4008, 18),
(4009, 18),
(4010, 18),
(4017, 18),
(4019, 18),
(4023, 18),
(4024, 18),
(4028, 18),
(4036, 18),
(4046, 18),
(4047, 18),
(4048, 18),
(4049, 18),
(4073, 18),
(4074, 18),
(4083, 18),
(4090, 18),
(4092, 18),
(4103, 18),
(4108, 18),
(4109, 18),
(4120, 18),
(4121, 18),
(4123, 18),
(4133, 18),
(4134, 18),
(4156, 18),
(4157, 18),
(4180, 18),
(4181, 18),
(4183, 18),
(4184, 18),
(4185, 18),
(4188, 18),
(4201, 18),
(4206, 18),
(4207, 18),
(4209, 18),
(4210, 18),
(4211, 18),
(4212, 18),
(4213, 18),
(4214, 18),
(4218, 18),
(4222, 18),
(4227, 18),
(4228, 18),
(4229, 18),
(4230, 18),
(4231, 18),
(4232, 18),
(4233, 18),
(4237, 18),
(4247, 18),
(4248, 18),
(4253, 18),
(4254, 18),
(4255, 18),
(4256, 18),
(4257, 18),
(4258, 18),
(4259, 18),
(4260, 18),
(4262, 18),
(4263, 18),
(4264, 18),
(4265, 18),
(4266, 18),
(4267, 18),
(4268, 18),
(4269, 18),
(4272, 18),
(4274, 18),
(4275, 18),
(4276, 18),
(4278, 18),
(4279, 18),
(4280, 18),
(4283, 18),
(4285, 18),
(4287, 18),
(4289, 18),
(4290, 18),
(4292, 18),
(4293, 18),
(4295, 18),
(4298, 18),
(4305, 18),
(4307, 18),
(4309, 18),
(4313, 18),
(4315, 18),
(4316, 18),
(4317, 18),
(4318, 18),
(4319, 18),
(4323, 18),
(4324, 18),
(4325, 18),
(4326, 18),
(4327, 18),
(4329, 18),
(4330, 18),
(4331, 18),
(4332, 18),
(4333, 18),
(4334, 18),
(4337, 18),
(4339, 18),
(4340, 18),
(4341, 18),
(4342, 18),
(4345, 18),
(4346, 18),
(4347, 18),
(4348, 18),
(4349, 18),
(4357, 18),
(4361, 18),
(4367, 18),
(4370, 18),
(4371, 18),
(4378, 18),
(4379, 18),
(4381, 18),
(4384, 18),
(4387, 18),
(4389, 18),
(4390, 18),
(4391, 18),
(4392, 18),
(4393, 18),
(4395, 18),
(4396, 18),
(4397, 18),
(4398, 18),
(4399, 18),
(4400, 18),
(4406, 18),
(4410, 18),
(4412, 18),
(4421, 18),
(4423, 18),
(4429, 18),
(4430, 18),
(4432, 18),
(4433, 18),
(4434, 18),
(4435, 18),
(4436, 18),
(4437, 18),
(4438, 18),
(4441, 18),
(4443, 18),
(4444, 18),
(4445, 18),
(4448, 18),
(4449, 18),
(4482, 18),
(4483, 18),
(4484, 18),
(4485, 18),
(4486, 18),
(4487, 18),
(4488, 18),
(4489, 18),
(4490, 18),
(4491, 18),
(4492, 18),
(4493, 5),
(4494, 5),
(4496, 5),
(4497, 5),
(4498, 5),
(4499, 5),
(4500, 5),
(4501, 5),
(4502, 5),
(4503, 5),
(4505, 12),
(4508, 14),
(4510, 13),
(4511, 13),
(4512, 13),
(4513, 13),
(4514, 13),
(4515, 13),
(4516, 13),
(4517, 13),
(4518, 3),
(4519, 3),
(4520, 3),
(4521, 3),
(4522, 3),
(4523, 3),
(4524, 3),
(4525, 3),
(4526, 3),
(4527, 3),
(4528, 3),
(4529, 3),
(4530, 3),
(4531, 3),
(4531, 4),
(4532, 3),
(4533, 3),
(4534, 3),
(4535, 3),
(4535, 18),
(4536, 3),
(4537, 3),
(4538, 3),
(4539, 3),
(4545, 4),
(4546, 3),
(4547, 3),
(4548, 3),
(4549, 3),
(4552, 3),
(4553, 3),
(4554, 3),
(4555, 3),
(4556, 3),
(4557, 3),
(4558, 3),
(4559, 3),
(4560, 3),
(4561, 3),
(4562, 3),
(4563, 3),
(4564, 3),
(4565, 3),
(4566, 20),
(4567, 20),
(4568, 20),
(4569, 20),
(4570, 20),
(4571, 20),
(4572, 20),
(4574, 20),
(4575, 20),
(4576, 20),
(4577, 20),
(4578, 20),
(4579, 20),
(4580, 20),
(4581, 5),
(4583, 3),
(4584, 3),
(4585, 1),
(4586, 6),
(4587, 11),
(4588, 3),
(4589, 3),
(4590, 1),
(4591, 5),
(4592, 5),
(4593, 5),
(4594, 5),
(4595, 5),
(4596, 5),
(4597, 5),
(4598, 5),
(4599, 5),
(4600, 5),
(4601, 5),
(4602, 5),
(4603, 5),
(4604, 1),
(4605, 6),
(4606, 12),
(4607, 12),
(4608, 6),
(4608, 17),
(4609, 17),
(4610, 15),
(4612, 6),
(4612, 18),
(4613, 3),
(4615, 4),
(4616, 20),
(4617, 5),
(4618, 8),
(4619, 1),
(4619, 6),
(4619, 19),
(4621, 11),
(4622, 11),
(4623, 11),
(4624, 11),
(4625, 3),
(4625, 18),
(4626, 9),
(4627, 9),
(4628, 9),
(4629, 9),
(4630, 9),
(4631, 9),
(4632, 9),
(4633, 9),
(4634, 9),
(4635, 9),
(4636, 9),
(4637, 9),
(4638, 9),
(4639, 9),
(4640, 9),
(4641, 9),
(4642, 9),
(4643, 9),
(4644, 9),
(4645, 17),
(4646, 17),
(4647, 17),
(4648, 17),
(4649, 17),
(4650, 3),
(4651, 17),
(4652, 17),
(4653, 12),
(4653, 13),
(4654, 12),
(4655, 12),
(4656, 12),
(4657, 12),
(4658, 12),
(4659, 12),
(4660, 12),
(4661, 12),
(4662, 13),
(4662, 18),
(4663, 13),
(4664, 13),
(4665, 13),
(4666, 13),
(4667, 13),
(4668, 12),
(4669, 14),
(4670, 14),
(4671, 14),
(4672, 14),
(4673, 14),
(4674, 14),
(4675, 14),
(4676, 6),
(4676, 14),
(4677, 6),
(4677, 14),
(4678, 14),
(4679, 14),
(4680, 14),
(4681, 14),
(4682, 14),
(4683, 14),
(4684, 14),
(4685, 14),
(4686, 14),
(4687, 14),
(4688, 9),
(4689, 9),
(4690, 11),
(4691, 11),
(4692, 11),
(4693, 11),
(4695, 3),
(4696, 3),
(4696, 18),
(4697, 3),
(4697, 18),
(4698, 3),
(4698, 18),
(4699, 3),
(4699, 18),
(4700, 3),
(4700, 18),
(4701, 3),
(4702, 3),
(4702, 13),
(4702, 14),
(4702, 18),
(4703, 9),
(4704, 3),
(4705, 3),
(4705, 18),
(4706, 3),
(4706, 6),
(4707, 1),
(4707, 14),
(4707, 18),
(4708, 1),
(4708, 14),
(4709, 4),
(4710, 3),
(4710, 4),
(4711, 3),
(4711, 12),
(4711, 13),
(4711, 14),
(4711, 18),
(4712, 12),
(4712, 18),
(4713, 12),
(4714, 12),
(4714, 13),
(4714, 14),
(4714, 18),
(4715, 6),
(4715, 14),
(4716, 6),
(4716, 14),
(4717, 6),
(4717, 14),
(4718, 13),
(4718, 18),
(4719, 6),
(4720, 6),
(4721, 6),
(4722, 6),
(4723, 6),
(4724, 3),
(4725, 6),
(4725, 18),
(4726, 6),
(4726, 18),
(4727, 6),
(4727, 18),
(4728, 6),
(4728, 14),
(4729, 18),
(4730, 18),
(4731, 18),
(4732, 18),
(4733, 18),
(4734, 18),
(4737, 18),
(4738, 18),
(4739, 18),
(4740, 18),
(4741, 18),
(4742, 18),
(4743, 18),
(4744, 18),
(4745, 18),
(4746, 18),
(4748, 18),
(4749, 18),
(4750, 18),
(4751, 18),
(4753, 18),
(4754, 18),
(4755, 18),
(4756, 18),
(4757, 18),
(4758, 18),
(4761, 18),
(4763, 18),
(4764, 18),
(4765, 18),
(4766, 18),
(4768, 18),
(4769, 18),
(4770, 18),
(4771, 18),
(4772, 18),
(4773, 18),
(4774, 18),
(4775, 18),
(4776, 18),
(4777, 18),
(4778, 18),
(4779, 18),
(4780, 18),
(4781, 3),
(4781, 18),
(4783, 18),
(4784, 18),
(4785, 18),
(4786, 18),
(4787, 18),
(4788, 18),
(4789, 18),
(4790, 18),
(4793, 18),
(4794, 18),
(4795, 18),
(4796, 18),
(4797, 18),
(4798, 18),
(4799, 18),
(4800, 18),
(4803, 18),
(4804, 18),
(4805, 18),
(4806, 18),
(4808, 18),
(4809, 18),
(4810, 18),
(4811, 18),
(4812, 18),
(4813, 18),
(4814, 18),
(4815, 18),
(4816, 18),
(4817, 18),
(4818, 18),
(4819, 18),
(4820, 18),
(4823, 18),
(4824, 18),
(4825, 18),
(4826, 18),
(4827, 18),
(4828, 18),
(4830, 18),
(4831, 18),
(4832, 18),
(4833, 18),
(4834, 18),
(4835, 18),
(4836, 18),
(4837, 18),
(4838, 18),
(4839, 18),
(4840, 18),
(4843, 18),
(4847, 18),
(4848, 18),
(4849, 18),
(4850, 18),
(4851, 18),
(4852, 18),
(4853, 18),
(4854, 18),
(4855, 18),
(4856, 18),
(4863, 18),
(4864, 18),
(4865, 18),
(4866, 18),
(4867, 18),
(4868, 18),
(4869, 18),
(4870, 18),
(4871, 18),
(4872, 18),
(4873, 18),
(4874, 18),
(4875, 18),
(4876, 18),
(4877, 18),
(4878, 18),
(4879, 18),
(4881, 18),
(4885, 18),
(4887, 18),
(4888, 18),
(4889, 18),
(4890, 18),
(4891, 18),
(4892, 18),
(4893, 18),
(4894, 18),
(4895, 18),
(4896, 18),
(4898, 18),
(4899, 18),
(4900, 18),
(4901, 18),
(4902, 18),
(4905, 18),
(4906, 18),
(4907, 18),
(4908, 18),
(4909, 18),
(4910, 18),
(4911, 18),
(4913, 18),
(4914, 18),
(4915, 18),
(4916, 18),
(4917, 18),
(4918, 18),
(4919, 18),
(4920, 18),
(4921, 18),
(4922, 18),
(4923, 18),
(4924, 18),
(4925, 18),
(4926, 18),
(4927, 18),
(4928, 18),
(4929, 18),
(4930, 18),
(4931, 18),
(4932, 18),
(4933, 18),
(4934, 18),
(4935, 18),
(4936, 18),
(4937, 18),
(4938, 18),
(4940, 18),
(4941, 18),
(4942, 18),
(4943, 18),
(4944, 18),
(4945, 18),
(4946, 18),
(4947, 18),
(4948, 18),
(4949, 18),
(4950, 18),
(4951, 18),
(4952, 18),
(4953, 18),
(4954, 18),
(4955, 18),
(4956, 18),
(4959, 18),
(4960, 18),
(4966, 18),
(4968, 18),
(4970, 18),
(4971, 18),
(4972, 18),
(4974, 18),
(4977, 18),
(4978, 18),
(4979, 18),
(4980, 18),
(4981, 18),
(4988, 18),
(4989, 18),
(4991, 18),
(4992, 18),
(4993, 18),
(4995, 18),
(4996, 18),
(4997, 18),
(4998, 18),
(4999, 18),
(5000, 18),
(5001, 18),
(5002, 18),
(5003, 18),
(5004, 18),
(5005, 18),
(5006, 18),
(5007, 18),
(5008, 18),
(5009, 18),
(5010, 18),
(5011, 18),
(5012, 18),
(5013, 18),
(5014, 18),
(5015, 18),
(5016, 18),
(5017, 18),
(5018, 18),
(5019, 18),
(5020, 18),
(5021, 18),
(5022, 18),
(5023, 18),
(5024, 18),
(5025, 18),
(5026, 18),
(5027, 18),
(5028, 3),
(5028, 18),
(5029, 18),
(5030, 18),
(5031, 18),
(5032, 18),
(5033, 18),
(5034, 18),
(5035, 18),
(5036, 18),
(5037, 18),
(5038, 18),
(5039, 18),
(5040, 18),
(5041, 18),
(5042, 18),
(5043, 18),
(5044, 18),
(5045, 18),
(5046, 18),
(5047, 18),
(5048, 18),
(5049, 18),
(5050, 18),
(5051, 18),
(5052, 18),
(5054, 18),
(5055, 18),
(5056, 18),
(5057, 18),
(5058, 18),
(5059, 18),
(5060, 18),
(5061, 18),
(5062, 18),
(5064, 18),
(5065, 18),
(5066, 18),
(5067, 18),
(5068, 18),
(5069, 18),
(5070, 18),
(5071, 18),
(5073, 18),
(5074, 18),
(5077, 18),
(5078, 18),
(5079, 18),
(5080, 18),
(5081, 18),
(5082, 18),
(5084, 18),
(5085, 18),
(5086, 18),
(5087, 18),
(5088, 18),
(5089, 18),
(5090, 18),
(5091, 18),
(5092, 18),
(5093, 18),
(5094, 18),
(5095, 18),
(5096, 18),
(5098, 18),
(5099, 18),
(5100, 18),
(5101, 18),
(5102, 18),
(5103, 18),
(5104, 18),
(5105, 18),
(5106, 18),
(5107, 18),
(5108, 18),
(5109, 18),
(5110, 18),
(5111, 18),
(5112, 18),
(5115, 18),
(5117, 18),
(5118, 18),
(5120, 18),
(5121, 18),
(5122, 18),
(5123, 18),
(5127, 18),
(5128, 18),
(5130, 18),
(5131, 18),
(5132, 18),
(5133, 18),
(5134, 18),
(5136, 18),
(5137, 18),
(5138, 18),
(5139, 18),
(5140, 18),
(5141, 18),
(5142, 18),
(5143, 18),
(5144, 18),
(5145, 18),
(5146, 18),
(5147, 18),
(5148, 18),
(5149, 18),
(5150, 18),
(5151, 18),
(5154, 18),
(5156, 18),
(5158, 18),
(5159, 18),
(5161, 18),
(5163, 18),
(5164, 18),
(5165, 18),
(5166, 18),
(5167, 18),
(5169, 18),
(5171, 18),
(5172, 18),
(5173, 18),
(5174, 18),
(5175, 18),
(5176, 18),
(5177, 18),
(5178, 18),
(5180, 18),
(5181, 18),
(5182, 18),
(5183, 18),
(5184, 3),
(5185, 3),
(5186, 3),
(5187, 18),
(5188, 18),
(5189, 18),
(5190, 18),
(5191, 18),
(5192, 18),
(5193, 18),
(5194, 5),
(5195, 14),
(5196, 14),
(5197, 3),
(5198, 17),
(5199, 18),
(5200, 18),
(5201, 18),
(5202, 18),
(5203, 18),
(5204, 18),
(5205, 18),
(5206, 18),
(5207, 6),
(5208, 6),
(5209, 6),
(5210, 6),
(5211, 6),
(5212, 2),
(5213, 17),
(5214, 17),
(5215, 11),
(5216, 8),
(5217, 12),
(5218, 1),
(5218, 3),
(5219, 3),
(5220, 1),
(5221, 18),
(5222, 18),
(5223, 18),
(5225, 3),
(5226, 3),
(5227, 3),
(5228, 1),
(5229, 12),
(5230, 9),
(5231, 9),
(5236, 9),
(5237, 9),
(5238, 9),
(5239, 9),
(5240, 9),
(5241, 9),
(5242, 9),
(5245, 9),
(5246, 9),
(5247, 9),
(5248, 9),
(5249, 9),
(5250, 9),
(5251, 9),
(5252, 9),
(5253, 9),
(5254, 9),
(5255, 9),
(5256, 9),
(5257, 9),
(5258, 9),
(5259, 9),
(5260, 9),
(5261, 9),
(5262, 9),
(5263, 9),
(5264, 9),
(5265, 9),
(5266, 9),
(5267, 9),
(5268, 9),
(5269, 9),
(5270, 9),
(5271, 9),
(5272, 9),
(5273, 9),
(5274, 9),
(5275, 9),
(5276, 9),
(5277, 9),
(5278, 9),
(5279, 9),
(5280, 9),
(5281, 9),
(5282, 9),
(5283, 9),
(5284, 9),
(5285, 9),
(5286, 9),
(5287, 9),
(5288, 9),
(5289, 9),
(5290, 9),
(5291, 9),
(5292, 9),
(5293, 9),
(5294, 9),
(5295, 9),
(5296, 9),
(5297, 9),
(5298, 9),
(5299, 9),
(5300, 9),
(5301, 9),
(5302, 9),
(5303, 9),
(5304, 9),
(5305, 9),
(5306, 9),
(5307, 9),
(5308, 9),
(5309, 9),
(5310, 9),
(5311, 9),
(5312, 9),
(5313, 9),
(5315, 9),
(5316, 9),
(5317, 9),
(5318, 9),
(5319, 9),
(5320, 9),
(5321, 9),
(5322, 9),
(5323, 9),
(5324, 9),
(5325, 9),
(5326, 9),
(5327, 9),
(5328, 9),
(5329, 9),
(5330, 9),
(5331, 9),
(5332, 9),
(5333, 9),
(5334, 9),
(5335, 9),
(5336, 9),
(5337, 9),
(5338, 9),
(5339, 9),
(5340, 9),
(5341, 9),
(5342, 9),
(5343, 9),
(5344, 9),
(5345, 9),
(5346, 9),
(5347, 9),
(5348, 9),
(5349, 9),
(5350, 9),
(5351, 9),
(5352, 9),
(5353, 9),
(5354, 9),
(5355, 9),
(5356, 9),
(5357, 9),
(5358, 9),
(5359, 9),
(5360, 9),
(5361, 9),
(5362, 9),
(5363, 9),
(5364, 9),
(5365, 9),
(5366, 9),
(5367, 9),
(5368, 9),
(5369, 9),
(5370, 9),
(5371, 9),
(5372, 9),
(5373, 9),
(5374, 9),
(5375, 9),
(5376, 9),
(5377, 9),
(5378, 9),
(5379, 9),
(5380, 9),
(5381, 9),
(5382, 9),
(5383, 9),
(5384, 9),
(5385, 9),
(5386, 9),
(5387, 9),
(5388, 9),
(5389, 9),
(5390, 9),
(5391, 9),
(5392, 9),
(5393, 9),
(5394, 9),
(5395, 9),
(5396, 9),
(5397, 9),
(5398, 9),
(5399, 9),
(5400, 9),
(5401, 9),
(5402, 9),
(5403, 9),
(5404, 9),
(5407, 9),
(5408, 9),
(5409, 9),
(5410, 9),
(5411, 12),
(5412, 3),
(5412, 6),
(5413, 3),
(5414, 3),
(5415, 3),
(5416, 3),
(5417, 3),
(5418, 3),
(5419, 3),
(5420, 3),
(5421, 3),
(5422, 1),
(5423, 1),
(5424, 3),
(5424, 4),
(5425, 3),
(5426, 3),
(5427, 3),
(5428, 3),
(5430, 3),
(5431, 3),
(5432, 3),
(5433, 3),
(5434, 3),
(5435, 3),
(5436, 3),
(5437, 3),
(5438, 3),
(5439, 3),
(5440, 3),
(5441, 3),
(5442, 3),
(5443, 3),
(5444, 3),
(5445, 3),
(5446, 3),
(5447, 3),
(5448, 3),
(5449, 3),
(5450, 3),
(5450, 6),
(5451, 6),
(5452, 3),
(5453, 3),
(5454, 9),
(5455, 9),
(5456, 9),
(5457, 9),
(5458, 3),
(5459, 3),
(5460, 3),
(5461, 3),
(5462, 9),
(5463, 9),
(5464, 9),
(5465, 9),
(5467, 9),
(5468, 9),
(5469, 9),
(5470, 9),
(5471, 9),
(5472, 9),
(5473, 6),
(5474, 6),
(5475, 6),
(5476, 5),
(5477, 5),
(5478, 5),
(5479, 5),
(5480, 5),
(5481, 5),
(5482, 5),
(5483, 5),
(5484, 5),
(5485, 5),
(5485, 6),
(5486, 5),
(5487, 5),
(5488, 5),
(5489, 5),
(5490, 5),
(5491, 5),
(5492, 5),
(5493, 5),
(5494, 5),
(5495, 5),
(5496, 5),
(5497, 5),
(5498, 5),
(5499, 5),
(5500, 5),
(5501, 5),
(5502, 17),
(5503, 3),
(5504, 3),
(5505, 3),
(5506, 3),
(5507, 3),
(5508, 3),
(5509, 3),
(5510, 3),
(5511, 2),
(5512, 2),
(5513, 8),
(5514, 8),
(5515, 8),
(5516, 8),
(5517, 8),
(5518, 3),
(5519, 3),
(5520, 3),
(5521, 3),
(5522, 3),
(5522, 4),
(5523, 3),
(5524, 3),
(5525, 3),
(5526, 3),
(5527, 3),
(5528, 3),
(5529, 3),
(5530, 3),
(5530, 4),
(5531, 3),
(5532, 3),
(5533, 3),
(5534, 1),
(5535, 4),
(5536, 4),
(5537, 4),
(5538, 4),
(5539, 4),
(5540, 4),
(5541, 4),
(5542, 4),
(5543, 4),
(5545, 4),
(5546, 4),
(5547, 4),
(5548, 4),
(5549, 4),
(5551, 4),
(5553, 2),
(5554, 2),
(5555, 2),
(5556, 2),
(5557, 2),
(5558, 2),
(5559, 2),
(5560, 2),
(5561, 2),
(5562, 2),
(5563, 2),
(5564, 2),
(5565, 2),
(5566, 2),
(5567, 2),
(5568, 2),
(5569, 2),
(5570, 2),
(5571, 2),
(5572, 2),
(5573, 2),
(5574, 2),
(5575, 2),
(5576, 2),
(5577, 2),
(5578, 2),
(5579, 2),
(5580, 2),
(5581, 1),
(5582, 1),
(5583, 1),
(5584, 1),
(5585, 1),
(5586, 1),
(5587, 1),
(5588, 1),
(5589, 1),
(5590, 1),
(5591, 1),
(5592, 1),
(5593, 1),
(5594, 2),
(5595, 2),
(5596, 2),
(5597, 2),
(5598, 2),
(5599, 6),
(5599, 18),
(5600, 6),
(5601, 2),
(5601, 6),
(5602, 1),
(5603, 18),
(5604, 18),
(5606, 18),
(5607, 18),
(5608, 18),
(5609, 18),
(5610, 18),
(5611, 18),
(5612, 18),
(5613, 18),
(5615, 18),
(5617, 18),
(5619, 18),
(5621, 18),
(5622, 18),
(5623, 18),
(5624, 18),
(5625, 18),
(5627, 18),
(5628, 18),
(5629, 18),
(5630, 18),
(5633, 18),
(5634, 18),
(5635, 18),
(5636, 18),
(5637, 18),
(5638, 18),
(5639, 18),
(5640, 18),
(5642, 18),
(5643, 18),
(5644, 18),
(5645, 18),
(5646, 18),
(5647, 18),
(5648, 18),
(5649, 18),
(5650, 18),
(5653, 18),
(5658, 18),
(5659, 18),
(5661, 18),
(5662, 18),
(5663, 18),
(5664, 18),
(5665, 18),
(5666, 18),
(5667, 1),
(5668, 1),
(5669, 2),
(5670, 2),
(5671, 2),
(5672, 2),
(5673, 2),
(5674, 2),
(5675, 2),
(5676, 2),
(5677, 2),
(5678, 2),
(5679, 3),
(5680, 3),
(5681, 3),
(5682, 4),
(5683, 18),
(5684, 18),
(5685, 18),
(5686, 18),
(5687, 18),
(5688, 18),
(5689, 18),
(5690, 18),
(5691, 18),
(5692, 8),
(5693, 1),
(5693, 3),
(5693, 5),
(5693, 18),
(5696, 18),
(5697, 3),
(5698, 3),
(5699, 8),
(5700, 18),
(5701, 18),
(5702, 18),
(5703, 18),
(5704, 18),
(5705, 18),
(5706, 18),
(5707, 18),
(5708, 18),
(5709, 18),
(5710, 18),
(5711, 18),
(5712, 18),
(5713, 18),
(5714, 3),
(5714, 5),
(5714, 6),
(5715, 5),
(5716, 5),
(5717, 5),
(5718, 5),
(5719, 5),
(5720, 5),
(5722, 5),
(5723, 5),
(5726, 5),
(5727, 5),
(5728, 5),
(5729, 5),
(5731, 5),
(5732, 5),
(5733, 5),
(5734, 5),
(5735, 18),
(5738, 3),
(5742, 3),
(5743, 1),
(5744, 1),
(5745, 1),
(5746, 1),
(5747, 1),
(5748, 1),
(5749, 1),
(5750, 1),
(5751, 5),
(5752, 5),
(5754, 18),
(5755, 5),
(5756, 6),
(5757, 3),
(5758, 3),
(5759, 6),
(5760, 6),
(5761, 6),
(5762, 6),
(5763, 6),
(5764, 3),
(5765, 3),
(5766, 3),
(5767, 3),
(5768, 13),
(5768, 18),
(5769, 13),
(5770, 13),
(5771, 5),
(5772, 5),
(5773, 3),
(5774, 3),
(5775, 3),
(5776, 3),
(5777, 3),
(5778, 3),
(5778, 18),
(5779, 8),
(5780, 1),
(5781, 1),
(5782, 1),
(5783, 1),
(5784, 1),
(5785, 1),
(5786, 1),
(5787, 1),
(5788, 5),
(5789, 5),
(5790, 3),
(5791, 3),
(5791, 18),
(5792, 6),
(5792, 18),
(5793, 6),
(5793, 18),
(5794, 6),
(5795, 6),
(5796, 6),
(5797, 6),
(5798, 6),
(5799, 6),
(5800, 18),
(5801, 18),
(5802, 18),
(5803, 18),
(5804, 18),
(5805, 18),
(5806, 18),
(5807, 18),
(5808, 18),
(5809, 18),
(5810, 18),
(5811, 18),
(5812, 18),
(5813, 18),
(5814, 18),
(5815, 18),
(5816, 18),
(5817, 18),
(5818, 18),
(5820, 18),
(5821, 18),
(5822, 18),
(5823, 18),
(5824, 18),
(5825, 18),
(5826, 18),
(5827, 18),
(5828, 18),
(5829, 18),
(5830, 18),
(5831, 18),
(5832, 18),
(5833, 18),
(5834, 18),
(5835, 18),
(5836, 18),
(5837, 18),
(5838, 18),
(5839, 18),
(5840, 18),
(5841, 18),
(5842, 18),
(5843, 18),
(5844, 18),
(5845, 18),
(5846, 18),
(5847, 18),
(5848, 18),
(5849, 18),
(5850, 18),
(5851, 18),
(5852, 18),
(5853, 18),
(5854, 18),
(5855, 18),
(5856, 18),
(5857, 18),
(5858, 18),
(5859, 18),
(5860, 18),
(5861, 18),
(5862, 18),
(5864, 18),
(5865, 18),
(5866, 18),
(5867, 18),
(5868, 18),
(5869, 18),
(5870, 18),
(5871, 18),
(5872, 18),
(5873, 18),
(5874, 18),
(5875, 18),
(5876, 18),
(5877, 18),
(5878, 18),
(5880, 18),
(5882, 18),
(5883, 18),
(5884, 18),
(5885, 18),
(5887, 18),
(5888, 18),
(5889, 18),
(5890, 18),
(5891, 18),
(5892, 18),
(5893, 18),
(5894, 18),
(5895, 18),
(5896, 18),
(5897, 18),
(5898, 18),
(5899, 18),
(5900, 18),
(5901, 18),
(5902, 18),
(5903, 18),
(5905, 18),
(5906, 18),
(5907, 18),
(5909, 18),
(5910, 18),
(5911, 18),
(5912, 18),
(5914, 18),
(5915, 18),
(5916, 18),
(5917, 18),
(5918, 18),
(5919, 18),
(5920, 18),
(5921, 18),
(5922, 18),
(5923, 18),
(5924, 18),
(5925, 18),
(5927, 18),
(5928, 18),
(5929, 18),
(5930, 18),
(5931, 18),
(5932, 18),
(5933, 18),
(5934, 18),
(5935, 18),
(5936, 18),
(5937, 18),
(5938, 18),
(5940, 18),
(5941, 18),
(5942, 18),
(5943, 18),
(5946, 18),
(5947, 18),
(5948, 18),
(5949, 18),
(5950, 18),
(5951, 18),
(5952, 18),
(5954, 18),
(5955, 18),
(5956, 18),
(5957, 18),
(5958, 18),
(5959, 18),
(5960, 18),
(5961, 18),
(5962, 18),
(5963, 18),
(5965, 18),
(5966, 18),
(5967, 18),
(5968, 18),
(5969, 18),
(5970, 18),
(5972, 18),
(5973, 18),
(5974, 18),
(5975, 18),
(5976, 18),
(5977, 18),
(5978, 18),
(5979, 18),
(5980, 18),
(5981, 18),
(5982, 18),
(5983, 18),
(5984, 18),
(5985, 18),
(5986, 18),
(5987, 18),
(5988, 18),
(5989, 18),
(5990, 18),
(5991, 18),
(5992, 18),
(5993, 18),
(5994, 18),
(5995, 18),
(5996, 18),
(5997, 18),
(5998, 18),
(5999, 18),
(6000, 18),
(6001, 18),
(6002, 18),
(6003, 18),
(6004, 18),
(6005, 18),
(6006, 18),
(6007, 18),
(6008, 18),
(6009, 18),
(6010, 18),
(6011, 18),
(6012, 18),
(6013, 18),
(6014, 18),
(6015, 18),
(6016, 18),
(6017, 18),
(6018, 18),
(6019, 18),
(6020, 18),
(6021, 18),
(6022, 18),
(6023, 18),
(6024, 18),
(6026, 18),
(6027, 18),
(6028, 18),
(6029, 18),
(6030, 18),
(6031, 18),
(6032, 18),
(6033, 18),
(6034, 18),
(6035, 18),
(6036, 18),
(6037, 18),
(6038, 18),
(6039, 18),
(6040, 18),
(6041, 18),
(6042, 18),
(6043, 18),
(6044, 18),
(6045, 18),
(6046, 18),
(6048, 3),
(6049, 18),
(6050, 18),
(6051, 18),
(6052, 18),
(6053, 18),
(6054, 18),
(6055, 18),
(6056, 18),
(6057, 18),
(6058, 18),
(6059, 18),
(6060, 18),
(6061, 18),
(6063, 18),
(6064, 18),
(6065, 18),
(6066, 18),
(6067, 18),
(6068, 18),
(6069, 18),
(6070, 18),
(6071, 18),
(6072, 18),
(6073, 18),
(6075, 18),
(6076, 18),
(6077, 18),
(6078, 18),
(6079, 18),
(6080, 18),
(6081, 18),
(6082, 3),
(6083, 3),
(6084, 3),
(6085, 3),
(6086, 3),
(6087, 3),
(6088, 3),
(6089, 3),
(6090, 3),
(6091, 3),
(6092, 3),
(6093, 3),
(6094, 3),
(6095, 3),
(6096, 3),
(6097, 3),
(6098, 3),
(6099, 3),
(6100, 3),
(6101, 3),
(6102, 3),
(6103, 3),
(6104, 1),
(6105, 3),
(6106, 3),
(6107, 3),
(6108, 3),
(6109, 3),
(6110, 3),
(6111, 3),
(6112, 3),
(6113, 3),
(6114, 3),
(6115, 3),
(6116, 3),
(6117, 3),
(6118, 3),
(6119, 3),
(6120, 3),
(6121, 3),
(6122, 3),
(6123, 3),
(6124, 3),
(6125, 3),
(6126, 3),
(6127, 3),
(6128, 3),
(6129, 3),
(6130, 3),
(6131, 3),
(6132, 3),
(6133, 3),
(6134, 3),
(6135, 3),
(6136, 3),
(6137, 3),
(6138, 8),
(6139, 3),
(6140, 3),
(6140, 4),
(6141, 12),
(6142, 12),
(6147, 4),
(6148, 4),
(6149, 4),
(6150, 3),
(6151, 3),
(6152, 3),
(6153, 3),
(6154, 1),
(6155, 1),
(6156, 1),
(6157, 1),
(6158, 1),
(6159, 1),
(6160, 5),
(6161, 5),
(6162, 18),
(6163, 18),
(6164, 18),
(6166, 18),
(6167, 18),
(6168, 18),
(6169, 18),
(6170, 18),
(6171, 18),
(6174, 18),
(6175, 6),
(6176, 6),
(6177, 5),
(6178, 5),
(6179, 5),
(6180, 9),
(6181, 9),
(6182, 9),
(6183, 9),
(6185, 9),
(6186, 9),
(6187, 1),
(6188, 12),
(6189, 12),
(6191, 12),
(6192, 12),
(6193, 12),
(6194, 12),
(6195, 5),
(6196, 5),
(6197, 11),
(6198, 3),
(6199, 3),
(6200, 16),
(6201, 1),
(6202, 1),
(6203, 1),
(6204, 1),
(6205, 12),
(6206, 18),
(6207, 18),
(6208, 18),
(6209, 18),
(6210, 18),
(6211, 9),
(6212, 9),
(6213, 12),
(6214, 5),
(6215, 5),
(6216, 5),
(6217, 5),
(6218, 3),
(6219, 4),
(6220, 4),
(6221, 4),
(6222, 4),
(6223, 4),
(6224, 4),
(6225, 4),
(6226, 4),
(6227, 18),
(6228, 18),
(6229, 5),
(6230, 5),
(6231, 18),
(6233, 12),
(6233, 18),
(6234, 17),
(6235, 8),
(6236, 4),
(6237, 4),
(6238, 4),
(6239, 4),
(6240, 4),
(6241, 4),
(6242, 4),
(6243, 18),
(6244, 18),
(6245, 18),
(6246, 18),
(6247, 18),
(6248, 18),
(6249, 18),
(6250, 18),
(6251, 18),
(6252, 3),
(6253, 18),
(6254, 18),
(6255, 18),
(6256, 18),
(6257, 9),
(6258, 9),
(6259, 9),
(6260, 9),
(6261, 9),
(6262, 9),
(6263, 9),
(6264, 5),
(6265, 11),
(6266, 5),
(6268, 18),
(6269, 18),
(6270, 18),
(6271, 18),
(6272, 18),
(6273, 18),
(6274, 18),
(6275, 18),
(6276, 18),
(6277, 18),
(6278, 18),
(6279, 18),
(6280, 18),
(6281, 18),
(6282, 18),
(6283, 18),
(6284, 18),
(6285, 18),
(6286, 18),
(6287, 18),
(6288, 18),
(6289, 18),
(6290, 18),
(6291, 18),
(6292, 18),
(6293, 18),
(6294, 18),
(6295, 18),
(6296, 18),
(6297, 18),
(6298, 18),
(6299, 18),
(6300, 18),
(6301, 18),
(6302, 18),
(6303, 18),
(6304, 18),
(6305, 18),
(6306, 18),
(6307, 18),
(6308, 18),
(6309, 18),
(6310, 18),
(6311, 18),
(6312, 18),
(6313, 18),
(6314, 5),
(6315, 5),
(6316, 5),
(6317, 3),
(6318, 1),
(6319, 1),
(6320, 1),
(6321, 1),
(6322, 1),
(6323, 1),
(6324, 1),
(6325, 1),
(6326, 1),
(6327, 1),
(6328, 3),
(6329, 3),
(6330, 3),
(6331, 3),
(6332, 3),
(6333, 3),
(6334, 3),
(6335, 3),
(6336, 3),
(6337, 3),
(6338, 3),
(6339, 3),
(6340, 3),
(6341, 3),
(6342, 3),
(6343, 3),
(6344, 3),
(6345, 3),
(6346, 3),
(6347, 3),
(6348, 3),
(6349, 3),
(6350, 3),
(6351, 3),
(6352, 3),
(6353, 3),
(6354, 3),
(6355, 3),
(6356, 3),
(6357, 5),
(6358, 1),
(6359, 6),
(6360, 5),
(6361, 5),
(6362, 5),
(6363, 6),
(6364, 6),
(6365, 6),
(6366, 6),
(6367, 6),
(6368, 6),
(6369, 5),
(6370, 3),
(6371, 3),
(6372, 3),
(6373, 3),
(6374, 3),
(6375, 3),
(6376, 3),
(6378, 17),
(6379, 17),
(6381, 3),
(6382, 3),
(6383, 4),
(6384, 4),
(6385, 4),
(6386, 4),
(6387, 4),
(6388, 4),
(6389, 4),
(6390, 4),
(6391, 4),
(6392, 5),
(6393, 5),
(6394, 5),
(6395, 5),
(6396, 5),
(6397, 5),
(6398, 5),
(6399, 5),
(6408, 5),
(6409, 18),
(6411, 18),
(6412, 18),
(6413, 18),
(6414, 18),
(6415, 18),
(6416, 18),
(6417, 5),
(6418, 5),
(6420, 5),
(6421, 5),
(6422, 5),
(6423, 5),
(6424, 5),
(6425, 5),
(6426, 5),
(6427, 5),
(6428, 1),
(6429, 6),
(6429, 18),
(6430, 3),
(6431, 18),
(6432, 18),
(6433, 18);
INSERT INTO `TranslationFoundInGroup` (`Text_ID`, `Group_ID`) VALUES
(6434, 18),
(6435, 18);

-- --------------------------------------------------------

--
-- Table structure for table `TranslationGroups`
--

CREATE TABLE `TranslationGroups` (
  `ID` int NOT NULL,
  `Groupname` char(32) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

--
-- Dumping data for table `TranslationGroups`
--

INSERT INTO `TranslationGroups` (`ID`, `Groupname`) VALUES
(1, 'Common'),
(2, 'Start'),
(3, 'Game'),
(4, 'Messages'),
(5, 'Users'),
(6, 'Docs'),
(7, 'Admin'),
(8, 'Error'),
(9, 'FAQ'),
(10, 'Countries'),
(11, 'Forum'),
(12, 'Bulletin'),
(13, 'Survey'),
(14, 'Games'),
(15, 'Goban'),
(16, 'Languages'),
(17, 'Feature'),
(18, 'Tournament'),
(19, 'Intro'),
(20, 'Links');

-- --------------------------------------------------------

--
-- Table structure for table `TranslationLanguages`
--

CREATE TABLE `TranslationLanguages` (
  `ID` int NOT NULL,
  `Language` char(32) NOT NULL,
  `Name` char(32) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

--
-- Dumping data for table `TranslationLanguages`
--

INSERT INTO `TranslationLanguages` (`ID`, `Language`, `Name`) VALUES
(1, 'sv.iso-8859-1', 'Swedish'),
(2, 'no.iso-8859-1', 'Norwegian'),
(3, 'en.iso-8859-1', 'English'),
(4, 'de.iso-8859-1', 'German'),
(5, 'fr.iso-8859-1', 'French'),
(6, 'es.iso-8859-1', 'Spanish'),
(7, 'cs.iso-8859-2', 'Czech'),
(8, 'zh.big5', 'Chinese (Traditional)'),
(9, 'pt.iso-8859-1', 'Portuguese (Europe)'),
(10, 'zh.gb2312', 'Chinese (Simplified)'),
(11, 'nl.iso-8859-1', 'Dutch'),
(12, 'th.tis-620', 'Thai'),
(14, 'fi.iso-8859-1', 'Finnish'),
(15, 'ko.utf-8', 'Korean'),
(16, 'ru.windows-1251', 'Russian'),
(17, 'pl.iso-8859-2', 'Polish'),
(18, 'it.iso-8859-1', 'Italian'),
(19, 'eu.iso-8859-1', 'Basque'),
(20, 'ia.iso-8859-1', 'Interlingua'),
(21, 'eo.iso-8859-3', 'Esperanto'),
(23, 'jp.utf-8', 'Japanese'),
(24, 'sk.utf-8', 'Slovak'),
(25, 'ro.utf-8', 'Romanian'),
(26, 'il.utf-8', 'Hebrew'),
(27, 'lf.iso-8859-1', 'Lingua Franca Nova'),
(28, 'vn.utf-8', 'Vietnamese'),
(29, 'sr.utf-8', 'Serbian'),
(30, 'el.utf-8', 'Greek'),
(31, 'uk.utf-8', 'Ukrainian'),
(32, 'ca.utf-8', 'Catalan'),
(33, 'zh.utf-8', 'Chinese (Simplified) (utf-8)'),
(34, 'zt.utf-8', 'Chinese (Traditional) (utf-8)'),
(35, 'tr.utf-8', 'Turkish'),
(36, 'hu.utf-8', 'Hungarian'),
(37, 'bg.utf-8', 'Bulgarian'),
(39, 'la.iso-8859-1', 'Latin'),
(40, 'pt-br.iso-8859-1', 'Portuguese (Brazil)'),
(41, 'pt-br.utf-8', 'Portuguese (Brazil) (utf-8)');

-- --------------------------------------------------------

--
-- Table structure for table `Translationlog`
--

CREATE TABLE `Translationlog` (
  `ID` int NOT NULL,
  `Player_ID` int NOT NULL,
  `Language_ID` int NOT NULL,
  `Original_ID` int NOT NULL DEFAULT '0',
  `OldTranslation` blob NOT NULL,
  `Translation` blob NOT NULL,
  `Date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

-- --------------------------------------------------------

--
-- Table structure for table `TranslationPages`
--

CREATE TABLE `TranslationPages` (
  `Page` char(64) NOT NULL,
  `Group_ID` int NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

--
-- Dumping data for table `TranslationPages`
--

INSERT INTO `TranslationPages` (`Page`, `Group_ID`) VALUES
('error.php', 8),
('include/std_functions.php', 1),
('do_registration_blocked.php', 2),
('confirm.php', 3),
('bookmark.php', 1),
('change_bio.php', 5),
('change_password.php', 5),
('tournaments/include/tournament_log.php', 18),
('docs.php', 6),
('edit_bio.php', 5),
('edit_password.php', 5),
('edit_profile.php', 5),
('faq.php', 9),
('forgot.php', 2),
('game.php', 3),
('index.php', 2),
('install.php', 6),
('introduction.php', 19),
('join_waitingroom_game.php', 3),
('licence.php', 6),
('links.php', 20),
('list_messages.php', 4),
('message.php', 4),
('people.php', 6),
('ratinggraph.php', 5),
('register.php', 2),
('show_games.php', 3),
('site_map.php', 6),
('status.php', 1),
('admin_survey.php', 13),
('userinfo.php', 5),
('users.php', 5),
('waiting_room.php', 3),
('include/message_functions.php', 4),
('include/rating.php', 3),
('include/table_columns.php', 1),
('include/countries.php', 10),
('edit_vacation.php', 5),
('edit_folders.php', 5),
('game_comments.php', 3),
('send_new_password.php', 2),
('statistics.php', 6),
('statisticspng.php', 5),
('include/time_functions.php', 1),
('forum/forum_functions.php', 11),
('forum/index.php', 11),
('forum/list.php', 11),
('forum/post.php', 11),
('forum/read.php', 11),
('forum/search.php', 11),
('edit_contact.php', 5),
('list_contacts.php', 5),
('news.php', 6),
('opponents.php', 5),
('ratingpng.php', 5),
('search_messages.php', 4),
('statratingspng.php', 5),
('include/contacts.php', 5),
('include/filter.php', 1),
('include/filter_functions.php', 1),
('include/filter_parser.php', 1),
('include/tokenizer.php', 1),
('admin_bulletin.php', 12),
('translations/known_languages.php', 1),
('policy.php', 2),
('snapshot.php', 6),
('donation.php', 1),
('donation_success.php', 1),
('game_calc.php', 3),
('edit_bulletin.php', 12),
('edit_picture.php', 5),
('edit_rating.php', 5),
('edit_shape.php', 14),
('game_editor.php', 15),
('game_players.php', 3),
('game_rematch.php', 3),
('gameinfo.php', 3),
('goban_editor.php', 15),
('list_bulletins.php', 12),
('list_shapes.php', 14),
('list_surveys.php', 13),
('message_thread.php', 4),
('new_game.php', 3),
('rank_converter.php', 3),
('templates.php', 1),
('view_bulletin.php', 12),
('view_shape.php', 14),
('view_survey.php', 13),
('include/admin_faq_functions.php', 9),
('include/gamelist_control.php', 3),
('include/classlib_profile.php', 5),
('include/classlib_upload.php', 1),
('include/classlib_userpicture.php', 5),
('include/error_codes.php', 8),
('include/faq_functions.php', 9),
('include/filterlib_country.php', 1),
('include/filterlib_gametype.php', 1),
('include/filterlib_mysqlmatch.php', 1),
('include/form_functions.php', 1),
('include/game_functions.php', 3),
('include/game_texts.php', 3),
('include/goban_handler_dgsgame.php', 15),
('include/goban_handler_gfx.php', 15),
('include/goban_handler_sl.php', 15),
('include/gui_bulletin.php', 12),
('include/gui_functions.php', 1),
('include/gui_user_functions.php', 5),
('include/languages.php', 16),
('include/rank_converter.php', 3),
('include/register_functions.php', 2),
('include/shape_control.php', 14),
('include/survey_control.php', 13),
('include/wroom_control.php', 3),
('include/db/bulletin.php', 12),
('include/db/games.php', 3),
('include/db/ratinglog.php', 3),
('include/db/shape.php', 14),
('features/edit_feature.php', 17),
('features/lib_votes.php', 17),
('features/list_features.php', 17),
('features/list_votes.php', 17),
('features/vote_feature.php', 17),
('forum/class_forum_options.php', 11),
('forum/class_forum_read.php', 11),
('rss/status.php', 1),
('tournaments/edit_director.php', 18),
('tournaments/edit_lock.php', 18),
('tournaments/edit_news.php', 18),
('tournaments/edit_participant.php', 18),
('tournaments/edit_properties.php', 18),
('tournaments/edit_rules.php', 18),
('tournaments/edit_status.php', 18),
('tournaments/edit_tournament.php', 18),
('tournaments/game_admin.php', 18),
('tournaments/list_directors.php', 18),
('tournaments/list_news.php', 18),
('tournaments/list_participants.php', 18),
('tournaments/list_tournaments.php', 18),
('tournaments/manage_tournament.php', 18),
('tournaments/register.php', 18),
('tournaments/view_news.php', 18),
('tournaments/view_tournament.php', 18),
('tournaments/wizard.php', 18),
('tournaments/ladder/admin.php', 18),
('tournaments/ladder/challenge.php', 18),
('tournaments/ladder/edit_props.php', 18),
('tournaments/edit_results.php', 18),
('tournaments/ladder/view.php', 18),
('tournaments/roundrobin/create_pools.php', 18),
('tournaments/roundrobin/define_pools.php', 18),
('tournaments/roundrobin/edit_pairing.php', 18),
('tournaments/roundrobin/edit_pools.php', 18),
('tournaments/roundrobin/edit_ranks.php', 18),
('tournaments/roundrobin/edit_round_props.php', 18),
('tournaments/roundrobin/edit_round_status.php', 18),
('tournaments/roundrobin/edit_rounds.php', 18),
('tournaments/roundrobin/view_pools.php', 18),
('tournaments/include/tournament.php', 18),
('tournaments/include/tournament_director.php', 18),
('tournaments/include/tournament_games.php', 18),
('tournaments/include/tournament_gui_helper.php', 18),
('tournaments/include/tournament_helper.php', 18),
('tournaments/include/tournament_ladder.php', 18),
('tournaments/include/tournament_ladder_props.php', 18),
('tournaments/include/tournament_limits.php', 18),
('tournaments/include/tournament_news.php', 18),
('tournaments/include/tournament_participant.php', 18),
('tournaments/include/tournament_pool.php', 18),
('tournaments/include/tournament_pool_classes.php', 18),
('tournaments/include/tournament_properties.php', 18),
('tournaments/include/tournament_result.php', 18),
('tournaments/include/tournament_round.php', 18),
('tournaments/include/tournament_round_status.php', 18),
('tournaments/include/tournament_rules.php', 18),
('tournaments/include/tournament_status.php', 18),
('tournaments/include/tournament_template_round_robin.php', 18),
('tournaments/include/tournament_utils.php', 18),
('tournaments/include/types/dgs_ladder.php', 18),
('tournaments/include/types/dgs_round_robin.php', 18),
('tournaments/include/types/private_ladder.php', 18),
('tournaments/include/types/public_ladder.php', 18),
('tournaments/show_tournament_log.php', 18),
('goodies/index.php', 6),
('tournaments/include/tournament_log_helper.php', 18),
('manage_sgf.php', 3),
('include/game_sgf_control.php', 3),
('include/sgf_parser.php', 3),
('edit_email.php', 5),
('verify_email.php', 2),
('include/deprecated_functions.php', 3),
('include/game_actions.php', 3),
('include/rulesets.php', 3),
('include/db/verification.php', 2),
('tournaments/include/tournament_ladder_helper.php', 18),
('tournaments/include/tournament_round_helper.php', 18),
('rating_changes.php', 5),
('translation_stats.php', 6),
('include/game_comments.php', 3),
('tournaments/list_results.php', 18),
('tournaments/ladder/withdraw.php', 18),
('tournaments/roundrobin/edit_points.php', 18),
('tournaments/include/tournament_points.php', 18),
('tournaments/include/tournament_result_control.php', 18),
('include/conditional_moves.php', 3),
('include/db/move_sequence.php', 3),
('tournaments/include/types/private_round_robin.php', 18),
('tournaments/include/types/public_round_robin.php', 18),
('tournaments/include/tournament_visit.php', 18),
('include/db/contribution.php', 6);

-- --------------------------------------------------------

--
-- Table structure for table `Translations`
--

CREATE TABLE `Translations` (
  `Original_ID` int NOT NULL,
  `Language_ID` int NOT NULL,
  `Text` blob NOT NULL,
  `Translated` enum('Y','N') NOT NULL DEFAULT 'N',
  `Updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00'
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

--
-- Dumping data for table `Translations`
--

INSERT INTO `Translations` (`Original_ID`, `Language_ID`, `Text`, `Translated`, `Updated`) VALUES
(96, 1, 0x41646d696e, 'Y', '2012-05-29 15:52:33'),
(100, 1, 0x6f6368, 'Y', '2002-10-26 14:23:01'),
(108, 1, 0x4b616e6164656e7369736b2062796f796f6d69, 'Y', '2002-10-26 14:23:01'),
(98, 1, 0x646167, 'Y', '2012-05-29 15:52:33'),
(99, 1, 0x6461676172, 'Y', '2012-05-29 15:52:33'),
(94, 1, 0x446f6b756d656e746174696f6e, 'Y', '2012-05-29 15:52:33'),
(91, 1, 0x466f72756d, 'Y', '2012-05-29 15:52:33'),
(101, 1, 0x74696d6d65, 'Y', '2012-05-29 15:52:33'),
(102, 1, 0x74696d6d6172, 'Y', '2012-05-29 15:52:33'),
(87, 1, 0x426a756420696e, 'Y', '2012-05-29 15:52:33'),
(80, 1, 0x496e6c6f6767616420736f6d, 'Y', '2012-05-29 15:52:33'),
(97, 1, 0x4c6f676761207574, 'Y', '2012-05-29 15:52:33'),
(85, 1, 0x4d656464656c616e64656e, 'Y', '2012-05-29 15:52:33'),
(81, 1, 0x456a20696e6c6f67676164, 'Y', '2012-05-29 15:52:33'),
(95, 1, 0x536964616e20736b6170616465732070e5, 'Y', '2012-05-29 15:52:33'),
(86, 1, 0x536b69636b6120657474206d656464656c616e6465, 'Y', '2012-05-29 15:52:33'),
(82, 1, 0x537461747573, 'Y', '2012-05-29 15:52:33'),
(107, 1, 0x7374656e6172, 'Y', '2012-05-29 15:52:33'),
(90, 1, 0xd676657273e47474, 'Y', '2012-05-29 15:52:33'),
(88, 1, 0x416e76e46e64617265, 'Y', '2012-05-29 15:52:33'),
(83, 1, 0x56e46e7472756d, 'Y', '2002-10-26 14:23:01'),
(96, 2, '', 'Y', '2002-10-26 14:23:01'),
(100, 2, 0x6f67, 'Y', '2002-10-26 14:23:01'),
(108, 2, 0x4b616e616469736b206f766572746964, 'Y', '2002-10-26 14:23:01'),
(12, 2, 0x4665696c2076656420666f7262696e64656c73652074696c2064617461626173656e2e2056656e7420657420706172206d696e7574746572206f67207072f8762069676a656e2e, 'Y', '2002-10-26 14:23:01'),
(48, 2, 0x4b616e20696b6b652075746c656465207665726469656e2076656420696e746572706f6c61736a6f6e2e, 'Y', '2002-10-26 14:23:01'),
(19, 2, 0x4b616e20696b6b652076656c67652064617461626173652e2056656e7420657420706172206d696e7574746572206f67207072f8762069676a656e2e, 'Y', '2002-10-26 14:23:01'),
(18, 2, 0x4665696c20766564207370f87272696e6720692064617461626173656e2e2056656e7420657420706172206d696e7574746572206f67207072f8762069676a656e2e, 'Y', '2002-10-26 14:23:01'),
(98, 2, 0x646167, 'Y', '2002-10-26 14:23:01'),
(99, 2, 0x6461676572, 'Y', '2002-10-26 14:23:01'),
(13, 2, 0x4665696c2076656420736c657474696e672061762070617274692e2053616e6e73796e6c696776697320657220696b6b65206465747465206e6f652070726f626c656d2e, 'Y', '2002-10-26 14:23:01'),
(94, 2, 0x446f6b756d656e746572, 'Y', '2002-10-26 14:23:01'),
(92, 2, 0x4f5353, 'Y', '2002-10-26 14:23:01'),
(91, 2, 0x466f7261, 'Y', '2002-10-26 14:23:01'),
(89, 2, 0x50617274696572, 'Y', '2002-10-26 14:23:01'),
(101, 2, 0x74696d65, 'Y', '2002-10-26 14:23:01'),
(102, 2, 0x74696d6572, 'Y', '2002-10-26 14:23:01'),
(60, 2, 0x4876697320647520f86e736b657220e520686a656c70652074696c206d656420e5206f766572736574746520447261676f6e2c206c6567672069676a656e20656e206d656c64696e67206920275472616e736c6174696f6e2720666f72756d65742e, 'Y', '2002-10-26 14:23:01'),
(87, 2, 0x496e766974e972, 'Y', '2002-10-26 14:23:01'),
(106, 2, 0x4a6170616e736b206f766572746964, 'Y', '2002-10-26 14:23:01'),
(80, 2, 0x4c6f6767657420696e6e20736f6d, 'Y', '2002-10-26 14:23:01'),
(97, 2, 0x4c6f6767206176, 'Y', '2002-10-26 14:23:01'),
(85, 2, 0x4d656c64696e676572, 'Y', '2002-10-26 14:23:01'),
(81, 2, 0x496b6b6520696e6e6c6f67676574, 'Y', '2002-10-26 14:23:01'),
(95, 2, 0x536964656e20626c652067656e65726572742070e5, 'Y', '2002-10-26 14:23:01'),
(86, 2, 0x53656e6420656e206d656c64696e67, 'Y', '2002-10-26 14:23:01'),
(93, 2, 0x4e65747473746564206f76657273696b74, 'Y', '2002-10-26 14:23:01'),
(8, 2, 0x42656b6c616765722c206b616e20696b6b652066696e6e652064656e6e6520696e76697461736a6f6e656e2e2048617220647520616c6c6572656465206176736ce574743f, 'Y', '2002-10-26 14:23:01'),
(50, 2, 0x42656b6c616765722c2066696e6e657220696b6b6520646574746520706172746965742e2053616e6e73796e6c696776697320686172206e6f656e20616e64726520616c6c65726564652073746172746574206465742e, 'Y', '2002-10-26 14:23:01'),
(20, 2, 0x42656b6c616765722c206b616e20696b6b652073746172746520646574746520706172746965742e2056656e7420657420706172206d696e7574746572206f67207072f8762069676a656e2e, 'Y', '2002-10-26 14:23:01'),
(38, 2, 0x42656b6c616765722e204a6567206861722070726f626c656d206d656420e520746f6c6b6520726174696e67656e2e20476c656d746520647520e520616e676920276b79752720656c6c6572202764616e273f, 'Y', '2002-10-26 14:23:01'),
(39, 2, 0x42656b6c616765722e204a6567206861722070726f626c656d206d656420e520746f6c6b6520726174696e67656e2e20447520736b616c20696b6b65206272756b6520276b79752720656c6c6572202764616e2720666f722064656e6e6520726174696e67747970656e2e, 'Y', '2002-10-26 14:23:01'),
(41, 2, 0x42656b6c616765722c206a6567206b616e20696b6b652066696e6e6520646574746520706172746965742e, 'Y', '2002-10-26 14:23:01'),
(42, 2, 0x42656b6c616765722c206a65672066696e6e657220696b6b652064657420666f72756d657420647520f86e736b657220e5206c6573652e, 'Y', '2002-10-26 14:23:01'),
(44, 2, 0x42656b6c616765722c206a65672066696e6e657220696b6b652064656e206d656c64696e67656e2064752076696c206c6573652e, 'Y', '2002-10-26 14:23:01'),
(45, 2, 0x42656b6c616765722c206a65672066696e6e657220696b6b652064656e6e65206272756b6572656e2e, 'Y', '2002-10-26 14:23:01'),
(56, 2, 0x42656b6c616765722c2064657420657220696e67656e20736f6d206861722064656e6e65206272756b6572204944, 'Y', '2002-10-26 14:23:01'),
(32, 2, 0x42656b6c616765722e2044657420657220696b6b652064697474207472656b6b2e, 'Y', '2002-10-26 14:23:01'),
(59, 2, 0x42656b6c616765722e2042617265206f76657273657474657265206861722074696c6c6174656c73652074696c20e5206f76657273657474652e, 'Y', '2002-10-26 14:23:01'),
(63, 2, 0x42656b6c616765722e204b6c6172746520696b6b6520e5206f70706461746572652064617461626173656e206d6564206465206e7965206f76657273657474656c73656e652e, 'Y', '2002-10-26 14:23:01'),
(15, 2, 0x42656b6c616765722e204b6c6172746520696b6b6520e5206f7070726574746520646574206e796520706172746965742e, 'Y', '2002-10-26 14:23:01'),
(14, 2, 0x42656b6c616765722e204b6c6172746520696b6b6520e5206c61677265206d656c64696e67656e2e, 'Y', '2002-10-26 14:23:01'),
(2, 2, 0x42656b6c616765722e204465747465207061727469657420657220616c6c6572656465206176736c75747465742e, 'Y', '2002-10-26 14:23:01'),
(3, 2, 0x42656b6c616765722e20446574746520706172746965742068617220696b6b65207374617274657420656e64612e, 'Y', '2002-10-26 14:23:01'),
(57, 2, 0x42656b6c616765722e205374617274726174696e67656e206de52076e67265206d656c6c6f6d203330206b7975206f6720362064616e2e, 'Y', '2002-10-26 14:23:01'),
(29, 2, 0x42656b6c616765722e20446574746520657220696b6b652074696c6c61747420666f722067756573742e20526567697374726572206465672066f872737420666f7220e52066e5206f707072657474657420656e20706572736f6e6c6967206b6f6e746f2e, 'Y', '2002-10-26 14:23:01'),
(66, 2, 0x42656b6c616765722e2044656e6e6520736964656e206572206261726520666f722061646d696e6973747261746f7265722e, 'Y', '2002-10-26 14:23:01'),
(40, 2, 0x42656b6c616765722e2044656e20737465696e656e2076696c6c6520686120626567e574742073656c766d6f72642e2053656c766d6f726420657220696b6b652074696c6c61747420756e64657220676a656c64656e6465207265676c65722e, 'Y', '2002-10-26 14:23:01'),
(46, 2, 0x42656b6c616765722e2044656e6e65206272756b657220494420657220616c6c657265646520726567697374726572742e205072f87620e520656e647265204272756b65722049442e, 'Y', '2002-10-26 14:23:01'),
(27, 2, 0x42656b6c616765722e2042e56465206475206f67206d6f747374616e646572656e206de520686120616e6769747420656e20726174696e6720666f72206174206a656720736b616c206b756e6e652062657374656d6d6520656e2070617373656e646520666f72676176652e, 'Y', '2002-10-26 14:23:01'),
(61, 2, 0x42656b6c616765722e2044752068617220696b6b652074696c6c6174656c73652074696c20e5206f76657273657474652064657420737072e56b65742e, 'Y', '2002-10-26 14:23:01'),
(52, 2, 0x42656b6c616765722c206475206572207574656e666f7220f86e736b657420726174696e676f6d72e564652e, 'Y', '2002-10-26 14:23:01'),
(7, 2, 0x42656b6c616765722e204475206b616e20696b6b6520696e766974657265206465672073656c762e, 'Y', '2002-10-26 14:23:01'),
(51, 2, 0x42656b6c616765722c206475206b616e20696b6b6520737461727465206574207061727469206d6564206465672073656c762e, 'Y', '2002-10-26 14:23:01'),
(54, 2, 0x42656b6c616765722e20447520736b726576206665696c20706173736f72642e, 'Y', '2002-10-26 14:23:01'),
(22, 2, 0x42656b6c616765722e204475206de520616e6769206574206e61766e2e, 'Y', '2002-10-26 14:23:01'),
(1, 2, 0x42656b6c616765722e204475206b616e20696b6b652070617373652066f87220616c6c6520666f7267617665737465696e657220657220736174742075742e, 'Y', '2002-10-26 14:23:01'),
(9, 2, 0x42656b6c616765722e204475206b616e20696b6b6520746120656e20737465696e20736f6d206e6574746f707020686172207461747420656e20616e6e656e20737465696e2064612064657474652076696c2067692073616d6d65207369747561736a6f6e2070e5206272657474657420656e2067616e672074696c2e205365206574746572206b6f2069207265676c656e652e, 'Y', '2002-10-26 14:23:01'),
(49, 2, 0x42656b6c616765722c206475206b616e206261726520736c657474652065676e6520706172746965722e, 'Y', '2002-10-26 14:23:01'),
(58, 2, 0x42656b6c616765722e20447520736b7265762074656b737420696e6e20692065742066656c7420736f6d2065722062657265676e657420666f722074616c6c2e, 'Y', '2002-10-26 14:23:01'),
(82, 2, '', 'Y', '2002-10-26 14:23:01'),
(107, 2, 0x737465696e6572, 'Y', '2002-10-26 14:23:01'),
(35, 2, 0x42656b6c616765722e20506173736f7264206f672042656b7265667420706173736f72642076617220756c696b652e2047e52074696c62616b65206f67207072f87620656e2067616e672074696c2e, 'Y', '2002-10-26 14:23:01'),
(16, 2, 0x5472656b6b657420626c6520696b6b6520736b696b6b656c6967206c61677420696e6e20692064617461626173656e2e2044657420657220696b6b652073696b6b6572742064657474652065722065742070726f626c656d2e2076672067e52074696c62616b652074696c2070617274696574206f67207365206574746572206f6d207472656b6b657420657220726567697374726572742e, 'Y', '2002-10-26 14:23:01'),
(17, 2, 0x446574206f707073746f2065742070726f626c656d20756e646572206c616772696e672061762064696e65206461746120692064617461626173656e2e204f6d20647520696b6b65206b6c6172657220e5206c6f67676520696e6e2073e5207072f87620e520726567697374726572652064656720656e2067616e672074696c2e204f6d2068656c6c657220696b6b652064657474652067e5722073e5206b6f6e74616b7420737570706f72742e, 'Y', '2002-10-26 14:23:01'),
(33, 2, 0x506173736f7264657420696e6e65686f6c64657220756c6f766c696765207465676e2e2042617265207465676e656e6520612d7a2c20412d5a2c20302d39206f67202d5f2b2e2c3a3b3f21252a2065722074696c6c6174742e, 'Y', '2002-10-26 14:23:01'),
(90, 2, 0x4f7665727365747465, 'Y', '2002-10-26 14:23:01'),
(3163, 17, '', 'Y', '2013-08-21 00:40:47'),
(3164, 17, '', 'Y', '2013-08-21 00:40:47'),
(3165, 17, '', 'Y', '2013-08-21 00:42:54'),
(3166, 17, '', 'Y', '2013-08-21 00:42:54'),
(3167, 17, '', 'Y', '2013-08-21 00:42:54'),
(55, 2, 0x556b6a656e742067726164, 'Y', '2002-10-26 14:23:01'),
(84, 2, 0x4272756b657220696e666f, 'Y', '2002-10-26 14:23:01'),
(88, 2, 0x4272756b657265, 'Y', '2002-10-26 14:23:01'),
(83, 2, 0x56656e7465726f6d, 'Y', '2002-10-26 14:23:01'),
(104, 2, 0x6d656420257320656b73747261206876657274207472656b6b, 'Y', '2002-10-26 14:23:01'),
(103, 2, 0x7574656e206f766572746964, 'Y', '2002-10-26 14:23:01'),
(415, 1, 0x235370656c, 'Y', '2002-10-26 14:23:01'),
(333, 1, 0x416363657074657261, 'Y', '2002-10-26 14:23:01'),
(462, 1, 0x6ce467672074696c6c206b6f6c756d6e, 'Y', '2002-10-26 14:23:01'),
(331, 1, 0x7376617274, 'Y', '2012-05-29 15:52:33'),
(211, 1, 0x4272e46467726166696b, 'Y', '2012-05-29 15:52:33'),
(451, 1, 0x4b616e6164656e7369736b, 'Y', '2002-10-26 14:23:01'),
(192, 1, 0x427974206cf673656e6f7264, 'Y', '2012-05-29 15:52:33'),
(222, 1, 0xc46e6472612070726f66696c656e, 'Y', '2012-05-29 15:52:33'),
(360, 1, 0x46e47267, 'Y', '2002-10-26 14:23:01'),
(446, 1, 0x46e472676572, 'Y', '2002-10-26 14:23:01'),
(191, 1, 0x42656b72e4667461206cf673656e6f72646574, 'Y', '2012-05-29 15:52:33'),
(312, 1, 0x446174756d, 'Y', '2012-05-29 15:52:33'),
(429, 1, 0x546120626f7274, 'Y', '2002-10-26 14:23:01'),
(159, 1, 0x446f6b756d656e746174696f6e, 'Y', '2002-10-26 14:23:01'),
(379, 1, 0xc46e6472612062696f6772616669, 'Y', '2002-10-26 14:23:01'),
(188, 1, 0xc46e647261206cf673656e6f7264, 'Y', '2012-05-29 15:52:33'),
(199, 1, 0xc46e6472612064696e2070726f66696c, 'Y', '2012-05-29 15:52:33'),
(181, 1, 0x45706f7374, 'Y', '2012-05-29 15:52:33'),
(223, 1, 0x476cf66d74206cf673656e6f726465743f, 'Y', '2012-05-29 15:52:33'),
(136, 1, 0x466f72756d, 'Y', '2012-05-29 15:52:33'),
(202, 1, 0x48656c61206e616d6e6574, 'Y', '2012-05-29 15:52:33'),
(230, 1, 0x5370656c, 'Y', '2012-05-29 15:52:33'),
(240, 1, 0x48656d6d61, 'Y', '2012-05-29 15:52:33'),
(449, 1, 0x4a6170616e736b, 'Y', '2002-10-26 14:23:01'),
(430, 1, 0x47e5206d6564, 'Y', '2002-10-26 14:23:01'),
(208, 1, 0x537072e56b, 'Y', '2012-05-29 15:52:33'),
(368, 1, 0x53656e617374652064726167, 'N', '2002-10-26 14:23:01'),
(246, 1, 0x4c6f67676120696e, 'Y', '2012-05-29 15:52:33'),
(325, 1, 0x4d656464656c616e6465, 'Y', '2002-10-26 14:23:01'),
(436, 1, 0x6de56e61646572, 'Y', '2002-10-26 14:23:01'),
(378, 1, 0x4d696e20616e76e46e646172696e666f726d6174696f6e, 'Y', '2002-10-26 14:23:01'),
(134, 1, 0x4e616d6e, 'Y', '2012-05-29 15:52:33'),
(314, 1, 0x4e79, 'Y', '2002-10-26 14:23:01'),
(190, 1, 0x4e797474206cf673656e6f7264, 'Y', '2012-05-29 15:52:33'),
(371, 1, 0x6e656a, 'Y', '2012-05-29 15:52:33'),
(391, 1, 0x496e676120706172746965722066756e6e61, 'Y', '2002-10-26 14:23:01'),
(189, 1, 0x47616d6d616c74206cf673656e6f7264, 'Y', '2012-05-29 15:52:33'),
(388, 1, 0xd67070656e2066f672206e796120706172746965723f, 'Y', '2003-11-24 10:35:25'),
(359, 1, 0x4d6f747374e56e64617265, 'Y', '2002-10-26 14:23:01'),
(245, 1, 0x4cf673656e6f7264, 'Y', '2012-05-29 15:52:33'),
(157, 1, 0x4cf673656e6f7264657420e46e6472617421, 'Y', '2002-10-26 14:23:01'),
(200, 1, 0x506572736f6e6c69676120696e7374e46c6c6e696e676172, 'Y', '2012-05-29 15:52:33'),
(426, 1, 0x5370656c617265, 'Y', '2002-10-26 14:23:01'),
(345, 1, 0x56617220676f642066796c6c20692064617461, 'Y', '2012-05-29 15:52:33'),
(243, 1, 0x4c6f67676120696e2c207461636b2e, 'Y', '2012-05-29 15:52:33'),
(158, 1, 0x50726f66696c656e20e472207570706461746572616421, 'Y', '2012-05-29 15:52:33'),
(344, 1, 0x52656769737472657261, 'Y', '2012-05-29 15:52:33'),
(247, 1, 0x5265676973747265726120657474206e797474206b6f6e746f, 'Y', '2012-05-29 15:52:33'),
(315, 1, 0x537661726174, 'Y', '2002-10-26 14:23:01'),
(324, 1, 0x53766172, 'Y', '2002-10-26 14:23:01'),
(316, 1, 0x5376617221, 'Y', '2002-10-26 14:23:01'),
(229, 1, 0x506fe46e67, 'Y', '2012-05-29 15:52:33'),
(336, 1, 0x536b69636b6120696e626a7564616e, 'Y', '2002-10-26 14:23:01'),
(329, 1, 0x536b69636b61206d656464656c616e6465, 'Y', '2002-10-26 14:23:01'),
(326, 1, 0x536b69636b612073766172, 'Y', '2002-10-26 14:23:01'),
(375, 1, 0x566973612066e472646967612070617274696572, 'Y', '2002-10-26 14:23:01'),
(374, 1, 0x566973612070e567e5656e64652070617274696572, 'Y', '2002-10-26 14:23:01'),
(219, 1, 0x4d6a756b206272e4646b616e74, 'Y', '2012-05-29 15:52:33'),
(322, 1, 0x44656e6e61202573696e626a7564616e25732068617220726564616e2061636365707465726174732e20, 'Y', '2002-10-26 14:23:01'),
(209, 1, 0x546964737a6f6e, 'Y', '2012-05-29 15:52:33'),
(308, 1, 0x54696c6c, 'Y', '2002-10-26 14:23:01'),
(328, 1, 0x54696c6c2028616e76e46e6461726e616d6e29, 'Y', '2002-10-26 14:23:01'),
(244, 1, 0x416e76e46e642025732066f6722061747420736520646967206f6d6b72696e672e, 'Y', '2012-05-29 15:52:33'),
(201, 1, 0x416e76e46e6461722d4944, 'Y', '2003-11-24 10:18:43'),
(330, 1, 0x566974, 'Y', '2002-10-26 14:23:01'),
(370, 1, 0x4a61, 'Y', '2012-05-29 15:52:33'),
(390, 1, 0x44657420e4722064697474206472616720692066f66c6a616e64652070617274696572, 'Y', '2002-10-26 14:23:01'),
(415, 2, 0x416e74616c6c2070617274696572, 'Y', '2002-10-26 14:23:01'),
(419, 2, 0x25732062617265, 'Y', '2002-10-26 14:23:01'),
(452, 2, 0x257320706572202573207374656e6572, 'Y', '2002-10-26 14:23:01'),
(450, 2, 0x257320706572207472656b6b206f6720257320656b7374726120706572696f646572, 'Y', '2002-10-26 14:23:01'),
(292, 2, 0x4b6f727466617474657420686973746f726965, 'Y', '2002-10-26 14:23:01'),
(333, 2, 0x476f647461, 'Y', '2002-10-26 14:23:01'),
(266, 2, 0x456e207765622d73696465206261736572742070e5206272756b65722d64656c74616b656c73652e204c6573206f6720426964726121, 'Y', '2002-10-26 14:23:01'),
(402, 2, 0x416b74697669746574, 'Y', '2002-10-26 14:23:01'),
(462, 2, 0x4c6567672074696c206b6f6c6f6e6e65, 'Y', '2002-10-26 14:23:01'),
(425, 2, 0x4f707072657474207061727469, 'Y', '2002-10-26 14:23:01'),
(239, 2, 0x4c6567672074696c2069206f627365727661736a6f6e736c69737461, 'Y', '2002-10-26 14:23:01'),
(298, 2, 0x53746f722073616d6c696e6720616e6d656c64656c73657220617620476f2d62f86b6572, 'Y', '2002-10-26 14:23:01'),
(303, 2, 0x53746f722073657276657220666f72207370696c6c696e6720692073616e6e7469642e, 'Y', '2002-10-26 14:23:01'),
(301, 2, 0x4f6773e5207475726e2d62617365642e2048617220666c65726520616e647265207370696c6c2e, 'Y', '2002-10-26 14:23:01'),
(272, 2, 0x5465676e657365726965206f6d20476f2e20416e626566616c657321, 'Y', '2002-10-26 14:23:01'),
(306, 2, 0x456e206d65722066756c6c7374656e646967207365727665722d6f76657273696b74, 'Y', '2002-10-26 14:23:01'),
(274, 2, 0x456e20696e746572616b74697620696e74726f64756b736a6f6e, 'Y', '2002-10-26 14:23:01'),
(297, 2, 0x4b6f6d6d656e7465727465206c697474657261747572666f727465676e656c736572206f6d20476f, 'Y', '2002-10-26 14:23:01'),
(395, 2, 0x42696f6772616669736b20696e666f, 'Y', '2002-10-26 14:23:01'),
(156, 2, 0x42696f206f707064617465727421, 'Y', '2002-10-26 14:23:01'),
(331, 2, 0x7376617274, 'Y', '2002-10-26 14:23:01'),
(211, 2, 0x536964656f707073657474, 'Y', '2002-10-26 14:23:01'),
(431, 2, 0x42726574747374f87272656c7365, 'N', '2002-10-26 14:23:01'),
(451, 2, 0x4b616e616469736b, 'Y', '2002-10-26 14:23:01'),
(187, 2, 0x456e6472652062696f, 'Y', '2002-10-26 14:23:01'),
(192, 2, 0x456e64726520706173736f7264, 'Y', '2002-10-26 14:23:01'),
(222, 2, 0x456e6472652070726f66696c, 'Y', '2002-10-26 14:23:01'),
(177, 2, 0x4279, 'Y', '2002-10-26 14:23:01'),
(428, 2, 0x4b6c6f6b6b656e2067e57220692068656c67656e, 'Y', '2002-10-26 14:23:01'),
(179, 2, 0x4b6c756262, 'Y', '2002-10-26 14:23:01'),
(360, 2, 0x4661726765, 'Y', '2002-10-26 14:23:01'),
(446, 2, 0x466172676572, 'Y', '2002-10-26 14:23:01'),
(412, 2, 0x4b6f6d6d656e746172, 'Y', '2002-10-26 14:23:01'),
(287, 2, 0x56616e6c696765206a6170616e736b6520476f2d75747472796b6b, 'Y', '2002-10-26 14:23:01'),
(191, 2, 0x42656b7265667420706173736f7264, 'Y', '2002-10-26 14:23:01'),
(337, 2, 0x4269647261677379746572652074696c20447261676f6e, 'Y', '2002-10-26 14:23:01'),
(406, 2, 0x56616e6c6967, 'Y', '2002-10-26 14:23:01'),
(432, 2, 0x56616e6c696720666f7267617665, 'Y', '2002-10-26 14:23:01'),
(214, 2, 0x4b616e746b6f6f7264696e61746572, 'Y', '2002-10-26 14:23:01'),
(176, 2, 0x4c616e64, 'Y', '2002-10-26 14:23:01'),
(6105, 36, 0x417a20534746206567796ec3a96c2074c3b66262206ac3a174737a6d6166c3a1742074617274616c6d617a2e, 'Y', '2015-07-23 12:18:15'),
(2984, 17, 0x5a65676172207a6174727a796d616e79, 'Y', '2013-08-21 00:12:20'),
(421, 2, '', 'Y', '2002-10-26 14:23:01'),
(312, 2, 0x4461746f, 'Y', '2002-10-26 14:23:01'),
(334, 2, 0x4176736ce5, 'Y', '2002-10-26 14:23:01'),
(429, 2, 0x536c657474, 'Y', '2002-10-26 14:23:01'),
(232, 2, 0x536c657474207061727469, 'Y', '2002-10-26 14:23:01'),
(227, 2, 0x536c6574746572207061727469, 'Y', '2002-10-26 14:23:01'),
(6325, 36, 0x737a656dc3a96c796573206ec3a9766a6567797ac3a96b206d75746174c3a17361, 'Y', '2015-07-23 11:52:07'),
(332, 2, 0x466f7265736ce520616e64726520696e6e7374696c6c696e676572, 'Y', '2002-10-26 14:23:01'),
(159, 2, 0x446f6b756d656e7461736a6f6e, 'Y', '2002-10-26 14:23:01'),
(233, 2, 0x466572646967, 'Y', '2002-10-26 14:23:01'),
(409, 2, 0x446f6262656c747061727469, 'Y', '2002-10-26 14:23:01'),
(218, 2, 0x4e6564, 'Y', '2002-10-26 14:23:01'),
(170, 2, 0x4c617374206e656420447261676f6e206b696c64656b6f6465, 'Y', '2002-10-26 14:23:01'),
(236, 2, 0x4c617374206e656420534746, 'Y', '2002-10-26 14:23:01'),
(173, 2, 0x447261676f6e732070726f736a656b74736964652070e520736f75726365666f726765, 'Y', '2002-10-26 14:23:01'),
(379, 2, 0x526564696765722062696f, 'Y', '2002-10-26 14:23:01'),
(188, 2, 0x5265646967657220706173736f7264, 'Y', '2002-10-26 14:23:01'),
(199, 2, 0x526564696765722070726f66696c, 'Y', '2002-10-26 14:23:01'),
(181, 2, 0x452d706f7374, 'Y', '2002-10-26 14:23:01'),
(206, 2, 0x56617273656c2070722e20652d706f73743f, 'Y', '2002-10-26 14:23:01'),
(299, 2, 0x456e206575726f706569736b20666f727265746e696e67206d656420476f2d62f86b6572206f6720757473747972, 'Y', '2002-10-26 14:23:01'),
(408, 2, 0x4c696b74207061727469206d6564206e6967697269, 'Y', '2002-10-26 14:23:01'),
(453, 2, 0x656b7374726120706572207472656b6b, 'Y', '2002-10-26 14:23:01'),
(398, 2, 0x4176736c7574746574, 'Y', '2002-10-26 14:23:01'),
(348, 2, 0x4176736c7574746564652070617274696572, 'Y', '2002-10-26 14:23:01'),
(350, 2, 0x4176736c757474656465207061727469657220666f72202573, 'Y', '2002-10-26 14:23:01'),
(443, 2, 0x4669736368657220746964, 'Y', '2002-10-29 10:25:46'),
(309, 2, 0x466c616767, 'Y', '2002-10-26 14:23:01'),
(442, 2, 0x666f72, 'Y', '2002-10-26 14:23:01'),
(223, 2, 0x476c656d7420706173736f72643f, 'Y', '2002-10-26 14:23:01'),
(136, 2, '', 'Y', '2002-10-26 14:23:01'),
(293, 2, 0x666f722064656720736f6d2068617220646574206c6974742074726176656c742e, 'Y', '2002-10-26 14:23:01'),
(161, 2, 0x4f667465205374696c7465205370f872736de56c, 'Y', '2002-10-26 14:23:01'),
(260, 2, 0x4f667465205374696c7465205370f872736de56c20666f72206e79686574736772757070656e207265632e67616d65732e676f, 'Y', '2002-10-26 14:23:01'),
(310, 2, 0x467261, 'Y', '2002-10-26 14:23:01'),
(196, 2, 0x5472656b6b206d65642066756c6c742062726574742073616d74206d656c64696e676572, 'Y', '2002-10-26 14:23:01'),
(202, 2, 0x46756c6c74206e61766e, 'Y', '2002-10-26 14:23:01'),
(230, 2, 0x5061727469, 'Y', '2002-10-26 14:23:01'),
(109, 2, 0x50617274696574206572206f707072657474657421, 'Y', '2002-10-26 14:23:01'),
(253, 2, 0x5061727469657420657220736c657474657421, 'Y', '2002-10-26 14:23:01'),
(445, 2, 0x5061727469204944, 'Y', '2002-10-26 14:23:01'),
(254, 2, 0x5061727469657420686172207374617274657421, 'Y', '2002-10-26 14:23:01'),
(183, 2, 0x466f72657472756b6e652070617274697479706572, 'Y', '2002-10-26 14:23:01'),
(256, 2, 0x47656e6572656c6c20696e666f726d61736a6f6e, 'Y', '2002-10-26 14:23:01'),
(457, 2, 0x54696c62616b65, 'Y', '2002-10-26 14:23:01'),
(296, 2, 0x476f2062f86b65722c20757473747972206f672070726f6772616d76617265, 'Y', '2002-10-26 14:23:01'),
(259, 2, 0x476f204f5353, 'Y', '2002-10-26 14:23:01'),
(267, 2, 0x476f204e796865746572, 'Y', '2002-10-26 14:23:01'),
(283, 2, '', 'Y', '2002-10-26 14:23:01'),
(285, 2, '', 'Y', '2002-10-26 14:23:01'),
(362, 2, 0x466f7267617665, 'Y', '2002-10-26 14:23:01'),
(271, 2, '', 'Y', '2002-10-26 14:23:01'),
(291, 2, 0x486973746f726965, 'Y', '2002-10-26 14:23:01'),
(184, 2, 0x486f6262796572, 'Y', '2002-10-26 14:23:01'),
(240, 2, 0x486a656d, 'Y', '2002-10-26 14:23:01'),
(180, 2, 0x486a656d6d6573696465, 'Y', '2002-10-26 14:23:01'),
(198, 2, 0x486f7269736f6e74616c, 'Y', '2002-10-26 14:23:01'),
(182, 2, 0x4943512d6e756d6d6572, 'Y', '2002-10-26 14:23:01'),
(132, 2, '', 'Y', '2002-10-26 14:23:01'),
(424, 2, 0x48766973206a612c20726174696e67206d656c6c6f6d, 'Y', '2002-10-26 14:23:01'),
(169, 2, 0x6876697320647520f86e736b65722064696e206567656e20447261676f6e, 'Y', '2002-10-26 14:23:01'),
(411, 2, '', 'Y', '2002-10-26 14:23:01'),
(295, 2, 0x466f722064656720736f6d2076696c207669746520616c74, 'Y', '2002-10-26 14:23:01'),
(168, 2, 0x496e7374616c6c61736a6f6e7320696e737472756b736a6f6e, 'Y', '2002-10-26 14:23:01'),
(248, 2, 0x496e74726f64756b736a6f6e, 'Y', '2002-10-26 14:23:01'),
(160, 2, 0x496e74726f64756b736a6f6e2074696c20447261676f6e476f536572766572, 'Y', '2002-10-26 14:23:01'),
(335, 2, 0x496e76697461736a6f6e736d656c64696e67, 'Y', '2002-10-26 14:23:01'),
(373, 2, 0x496e766974e9722064656e6e65206272756b6572656e, 'Y', '2002-10-26 14:23:01'),
(257, 2, 0x4a616e2076616e2064657220537465656e73207369646572, 'Y', '2002-10-26 14:23:01'),
(449, 2, 0x4a6170616e736b, 'Y', '2002-10-26 14:23:01'),
(372, 2, '', 'N', '2002-10-26 14:23:01'),
(430, 2, 0x5374617274, 'Y', '2002-10-26 14:23:01'),
(363, 2, '', 'Y', '2002-10-26 14:23:01'),
(422, 2, '', 'Y', '2002-10-26 14:23:01'),
(208, 2, 0x537072e56b, 'Y', '2002-10-26 14:23:01'),
(394, 2, 0x536973746520616b73657373, 'Y', '2002-10-26 14:23:01'),
(368, 2, 0x5369737465207472656b6b, 'N', '2002-10-26 14:23:01'),
(215, 2, 0x56656e73747265, 'Y', '2002-10-26 14:23:01'),
(165, 2, 0x4c656e6b6572, 'Y', '2002-10-26 14:23:01'),
(246, 2, 0x4c6f676720696e6e, 'Y', '2002-10-26 14:23:01'),
(400, 2, 0x54617074, 'Y', '2002-10-26 14:23:01'),
(258, 2, 0x4d6173736520696e666f726d61736a6f6e206f6d20476f, 'Y', '2002-10-26 14:23:01'),
(437, 2, 0x486f766564746964, 'Y', '2002-10-26 14:23:01'),
(220, 2, 0x4d656e797265746e696e67, 'Y', '2002-10-26 14:23:01'),
(325, 2, 0x4d656c64696e67, 'Y', '2002-10-26 14:23:01'),
(307, 2, 0x4d656c64696e67736c69737465, 'Y', '2002-10-26 14:23:01'),
(346, 2, 0x4d656c64696e672073656e647421, 'Y', '2002-10-26 14:23:01'),
(436, 2, 0x6de56e65646572, 'Y', '2002-10-26 14:23:01'),
(364, 2, 0x5472656b6b, 'Y', '2002-10-26 14:23:01'),
(195, 2, 0x5472656b6b206f67206d656c64696e676572, 'Y', '2002-10-26 14:23:01'),
(378, 2, 0x4d696e206272756b657220696e666f, 'Y', '2002-10-26 14:23:01'),
(134, 2, 0x4e61766e, 'Y', '2002-10-26 14:23:01'),
(314, 2, 0x4e79, 'Y', '2002-10-26 14:23:01'),
(327, 2, 0x4e79206d656c64696e67, 'Y', '2002-10-26 14:23:01'),
(190, 2, 0x4e79747420706173736f7264, 'Y', '2002-10-26 14:23:01'),
(385, 2, 0x4e7974742074656d61, 'N', '2002-10-26 14:23:01'),
(460, 2, 0x6e657374652073696465, 'Y', '2002-10-26 14:23:01'),
(210, 2, 0x4e6174746964, 'Y', '2002-10-26 14:23:01'),
(447, 2, '', 'Y', '2002-10-26 14:23:01'),
(371, 2, 0x4e6569, 'Y', '2002-10-29 10:25:46'),
(391, 2, 0x496e67656e20706172746965722066756e6e6574, 'Y', '2002-10-26 14:23:01'),
(194, 2, 0x426172652076617273656c, 'Y', '2002-10-26 14:23:01'),
(427, 2, 0x416e74616c6c2070617274696572, 'Y', '2002-10-26 14:23:01'),
(420, 2, 0x416e74616c6c20706172746965722064752076696c20737461727465, 'Y', '2002-10-26 14:23:01'),
(185, 2, 0x59726b65, 'Y', '2002-10-26 14:23:01'),
(193, 2, 0x4176, 'Y', '2002-10-26 14:23:01'),
(189, 2, 0x47616d6d656c7420706173736f7264, 'Y', '2002-10-26 14:23:01'),
(252, 2, 0x56656c6b6f6d6d656e20736b616c2064752076e67265206f672076692068e5706572206475207472697665732068657221, 'Y', '2002-10-26 14:23:01'),
(388, 2, 0xc570656e20666f72206e796520706172746965723f, 'Y', '2002-10-26 14:23:01'),
(359, 2, 0x4d6f747374616e646572, 'Y', '2002-10-26 14:23:01'),
(175, 2, 0x416e6e65743a, 'Y', '2002-10-26 14:23:01'),
(300, 2, 0x416e64726520476f2d73657276657265, 'Y', '2002-10-26 14:23:01'),
(231, 2, '', 'Y', '2002-10-26 14:23:01'),
(226, 2, 0x4d656c6465722070617373, 'Y', '2002-10-26 14:23:01'),
(245, 2, 0x506173736f7264, 'Y', '2002-10-26 14:23:01'),
(157, 2, 0x506173736f7264657420657220656e6472657421, 'Y', '2002-10-26 14:23:01'),
(163, 2, 0x4d6564686a656c70657265, 'Y', '2002-10-26 14:23:01'),
(200, 2, 0x506572736f6e6c69676520696e6e7374696c6c696e676572, 'Y', '2002-10-26 14:23:01'),
(454, 2, 0x56656e6e6c6967737420706c617373e9722064696e6520666f72676176657374656e657221, 'Y', '2002-10-26 14:23:01'),
(426, 2, 0x5370696c6c6572, 'Y', '2002-10-26 14:23:01'),
(242, 2, 0x52656769737472e9722064656720676a65726e65206f67207370696c6c206e6f656e20706172746965722e, 'Y', '2002-10-26 14:23:01'),
(345, 2, 0x4c65676720696e6e20696e666f726d61736a6f6e, 'Y', '2002-10-26 14:23:01'),
(243, 2, 0x56656e6e6c69677374206c6f676720696e6e2e, 'Y', '2002-10-26 14:23:01'),
(461, 2, 0x666f72726967652073696465, 'Y', '2002-10-26 14:23:01'),
(458, 2, 0x46616e676572, 'Y', '2002-10-26 14:23:01'),
(158, 2, 0x50726f66696c656e206572206f707064617465727421, 'Y', '2002-10-26 14:23:01'),
(407, 2, 0x4b6f7272656b74, 'Y', '2002-10-26 14:23:01'),
(433, 2, 0x4b6f7272656b7420666f7267617665, 'Y', '2002-10-26 14:23:01'),
(204, 2, 0x5370696c6c65737479726b6520286772616429, 'Y', '2002-10-26 14:23:01'),
(366, 2, 0x5261746574, 'Y', '2002-10-26 14:23:01'),
(205, 2, '', 'Y', '2002-10-26 14:23:01'),
(384, 2, 0x4c657320666f7261, 'Y', '2002-10-26 14:23:01'),
(344, 2, 0x52656769737472e972, 'Y', '2002-10-26 14:23:01'),
(247, 2, 0x52656769737472e972206e79206b6f6e746f, 'Y', '2002-10-26 14:23:01'),
(393, 2, 0x52656769737472657274206461746f, 'Y', '2002-10-26 14:23:01'),
(238, 2, 0x466a65726e20667261206f627365727661736a6f6e736c69737461, 'Y', '2002-10-26 14:23:01'),
(315, 2, 0x42657376617274, 'Y', '2002-10-26 14:23:01'),
(324, 2, 0x53766172, 'Y', '2002-10-26 14:23:01'),
(316, 2, 0x5376617221, 'Y', '2002-10-26 14:23:01'),
(423, 2, 0x4261726520726174656465206d6f747374616e64657265, 'Y', '2002-10-26 14:23:01'),
(235, 2, 0x4769206f7070, 'Y', '2002-10-26 14:23:01'),
(225, 2, 0x476972206f7070, 'Y', '2002-10-26 14:23:01'),
(234, 2, 0x476a656e6f70707461207370696c6c, 'Y', '2002-10-26 14:23:01'),
(217, 2, 0x48f8797265, 'Y', '2002-10-26 14:23:01'),
(273, 2, 0x5265676c6572, 'Y', '2002-10-26 14:23:01'),
(397, 2, 0x50e567e5656e6465, 'Y', '2002-10-26 14:23:01'),
(349, 2, 0x50e567e5656e64652070617274696572, 'Y', '2002-10-26 14:23:01'),
(351, 2, 0x50e567e5656e6465207061727469657220666f72202573, 'Y', '2002-10-26 14:23:01'),
(229, 2, '', 'Y', '2002-10-26 14:23:01'),
(417, 2, 0x496e67656e207061727469657220666f7220f87965626c696b6b6574, 'Y', '2002-10-26 14:23:01'),
(336, 2, 0x53656e6420696e76697461736a6f6e, 'Y', '2002-10-26 14:23:01'),
(329, 2, 0x53656e64206d656c64696e67, 'Y', '2002-10-26 14:23:01'),
(396, 2, 0x53656e64206d656c64696e672074696c206272756b6572, 'Y', '2002-10-26 14:23:01'),
(326, 2, 0x53656e642073766172, 'Y', '2002-10-26 14:23:01'),
(265, 2, '', 'Y', '2002-10-26 14:23:01'),
(305, 2, 0x5365727665726c69737465, 'Y', '2002-10-26 14:23:01'),
(352, 2, '', 'Y', '2002-10-26 14:23:01'),
(375, 2, 0x566973206176736c7574746564652070617274696572, 'Y', '2002-10-26 14:23:01'),
(380, 2, 0x566973206d656c64696e67, 'Y', '2002-10-26 14:23:01'),
(374, 2, 0x5669732070e567e5656e64652070617274696572, 'Y', '2002-10-26 14:23:01'),
(361, 2, 0x5374f87272656c7365, 'Y', '2002-10-26 14:23:01'),
(237, 2, 0x54696c206e65737465207061727469, 'Y', '2002-10-26 14:23:01'),
(219, 2, 0x33442d6272657474, 'Y', '2002-10-26 14:23:01'),
(178, 2, 0x53746174, 'Y', '2002-10-26 14:23:01'),
(212, 2, 0x5374f87272656c73652070e520737465696e656e65, 'Y', '2002-10-26 14:23:01'),
(281, 2, 0x53747261746567696572206f6720476f2d75747472796b6b, 'Y', '2002-10-26 14:23:01'),
(311, 2, 0x456d6e65, 'Y', '2002-10-26 14:23:01'),
(455, 2, 0x53656e64206f672067e52074696c206e65737465207061727469, 'Y', '2002-10-26 14:23:01'),
(456, 2, 0x53656e64206f672067e52074696c20737461747573736964656e, 'Y', '2002-10-26 14:23:01'),
(286, 2, 0x486572206b616e2064752073656e646520696e6e2064696e652070617274696572206f672066e52064656d206b6f6d6d656e74657274, 'Y', '2002-10-26 14:23:01'),
(294, 2, 0x476f20686973746f72696b6b, 'Y', '2002-10-26 14:23:01'),
(322, 2, 0x44656e6e6520257320706172746920257320696e76697461736a6f6e656e2068617220616c6c657265646520626c69747420616b736570746572742e, 'Y', '2002-10-26 14:23:01'),
(323, 2, 0x44656e6e6520696e76697461736a6f6e656e2068617220626c6974742061767669737420656c6c6572207061727469657420736c6574746574, 'Y', '2002-10-26 14:23:01'),
(275, 2, 0x446574746520657220656e2075746d65726b6574207765622d7369646520666f722064656720736f6d2076696c206ce6726520e5207370696c6c652e, 'Y', '2002-10-26 14:23:01'),
(383, 2, 0x456d6e656c69737465, 'Y', '2002-10-26 14:23:01'),
(414, 2, 0x5469647362656772656e736e696e67, 'Y', '2002-10-26 14:23:01'),
(209, 2, 0x54696473736f6e65, 'Y', '2002-10-26 14:23:01'),
(308, 2, 0x54696c, 'Y', '2002-10-26 14:23:01'),
(328, 2, 0x54696c20286272756b657220494429, 'Y', '2002-10-26 14:23:01'),
(244, 2, 0x466f7220e5207365206465672072756e6474206b616e206475206272756b652025732e20, 'Y', '2002-10-26 14:23:01'),
(216, 2, 0x4f7070, 'Y', '2002-10-26 14:23:01'),
(207, 2, 0x4272756b206e6574746c65736572696e6e7374696c6c696e67656e65, 'Y', '2002-10-26 14:23:01'),
(201, 2, 0x4272756b6572204944, 'Y', '2002-10-26 14:23:01'),
(197, 2, 0x56657274696b616c, 'Y', '2002-10-26 14:23:01'),
(276, 2, 0x4d656765742076656c736b726576657420696e74726f64756b736a6f6e2074696c20476f2066726120646574204272697469736b6520476f2d666f7262756e6465742e, 'Y', '2002-10-26 14:23:01'),
(416, 2, 0x4b6c6f6b6b612067e57220692068656c6761, 'Y', '2002-10-26 14:23:01'),
(377, 2, 0x56656c6b6f6d737473696465, 'Y', '2002-10-26 14:23:01'),
(330, 2, 0x68766974, 'Y', '2002-10-26 14:23:01'),
(164, 2, 0x4876656d206269647261722074696c20447261676f6e, 'Y', '2002-10-26 14:23:01'),
(439, 2, 0x6d6564, 'Y', '2002-10-26 14:23:01'),
(399, 2, 0x56756e6e6574, 'Y', '2002-10-26 14:23:01'),
(213, 2, 0x54726574797065, 'Y', '2002-10-26 14:23:01'),
(284, 2, 0xc5206a6f6262652073656720676a656e6e6f6d2064697373652076696c20666f726265647265207370696c6c657420646974742e, 'Y', '2002-10-26 14:23:01'),
(370, 2, 0x4a61, 'Y', '2002-10-26 14:23:01'),
(288, 2, 0x44752062f872206b6a656e6e652074696c2064652075747472796b6b656e6520616e647265206272756b65722e, 'Y', '2002-10-26 14:23:01'),
(390, 2, 0x44697474207472656b6b20692066f86c67656e646520706172746965723a, 'Y', '2002-10-26 14:23:01'),
(415, 4, 0x416e7a61686c20646572205061727469656e, 'Y', '2002-10-26 14:23:01'),
(419, 4, 0x6e7572202573, 'Y', '2002-10-26 14:23:01'),
(452, 4, 0x253124732066fc72202532247320537465696e65, 'Y', '2002-10-26 14:23:01'),
(450, 4, 0x25732070726f205a756720756e6420257320506572696f64656e, 'Y', '2007-12-07 15:26:49'),
(292, 4, 0x45696e65206b75727a652047657363686963687465, 'Y', '2002-10-26 14:23:01'),
(333, 4, 0x416e6e65686d656e, 'Y', '2007-12-07 15:24:41'),
(266, 4, 0x45696e2057696b6920fc62657220476f2e204c6573656e20756e642073656c6265722062656974726167656e21, 'Y', '2003-01-07 12:00:31'),
(402, 4, 0x416b7469766974e474, 'Y', '2002-10-26 14:23:01'),
(462, 4, 0x5370616c74652068696e7a7566fc67656e, 'Y', '2002-10-26 14:23:01'),
(425, 4, 0x5061727469652068696e7a7566fc67656e, 'Y', '2002-10-26 14:23:01'),
(96, 4, 0x41646d696e6973747261746f72, 'Y', '2002-10-26 14:23:01'),
(298, 4, 0x45696e6520756d66616e677265696368652053616d6d6c756e6720766f6e2052657a656e73696f6e656e20766f6e20476f2d42fc636865726e2e, 'Y', '2002-10-26 14:23:01'),
(303, 4, 0x45696e2067726fdf657220456368747a6569742d536572766572, 'Y', '2004-02-14 19:43:42'),
(272, 4, 0x45696e204d616e676120fc62657220476f2e20456d706665686c656e737765727421, 'Y', '2002-10-26 14:23:01'),
(306, 4, 0x45696e6520766f6c6c7374e46e646967657265204c6973746520766f6e205365727665726e, 'Y', '2002-10-26 14:23:01'),
(100, 4, 0x756e64, 'Y', '2002-10-26 14:23:01'),
(274, 4, 0x45696e6520696e746572616b746976652045696e66fc6872756e67, 'Y', '2002-10-26 14:23:01'),
(395, 4, 0x42696f677261666965, 'Y', '2007-12-07 15:41:45'),
(156, 4, 0x42696f67726166696520616b7475616c69736965727421, 'Y', '2007-12-07 15:38:00'),
(331, 4, 0x5363687761727a, 'Y', '2007-12-06 10:54:13'),
(211, 4, 0x427265747467726166696b656e, 'Y', '2007-12-07 15:39:10'),
(431, 4, 0x42726574746772f6df65, 'Y', '2012-11-27 00:14:13'),
(2660, 17, 0x50727a657379b3616e7920706c696b205b25735d2070727a656b7261637a61206d616b73796d616c6e7920726f7a6d69617220646f7075737a637a616c6e792070727a657a207365727769732e, 'Y', '2013-08-21 00:01:06'),
(451, 4, 0x4b616e616469736368, 'Y', '2007-12-06 11:42:11'),
(108, 4, 0x4b616e61646973636865732042796f796f6d69, 'Y', '2007-12-06 11:42:11'),
(187, 4, 0x42696f67726166696520e46e6465726e, 'Y', '2007-12-07 15:38:00'),
(192, 4, 0x50617373776f727420e46e6465726e, 'Y', '2002-10-26 14:23:01'),
(222, 4, 0x45696e7374656c6c756e67656e20e46e6465726e, 'Y', '2002-10-26 14:23:01'),
(177, 4, 0x5374616474, 'Y', '2002-10-26 14:23:01'),
(428, 4, 0x556872206ce475667420616d20576f6368656e6465, 'Y', '2002-10-26 14:23:01'),
(179, 4, 0x4b6c7562, 'Y', '2002-10-26 14:23:01'),
(360, 4, 0x4661726265, 'Y', '2002-10-26 14:23:01'),
(446, 4, 0x46617262656e, 'Y', '2002-10-26 14:23:01'),
(412, 4, 0x4b6f6d6d656e746172, 'Y', '2002-10-26 14:23:01'),
(287, 4, 0x48e47566696765206a6170616e697363686520476f2d4175736472fc636b65, 'Y', '2002-10-26 14:23:01'),
(191, 4, 0x50617373776f72742062657374e4746967656e, 'Y', '2002-10-26 14:23:01'),
(12, 4, 0x4469652056657262696e64756e67207a757220446174656e62616e6b207363686c7567206665686c2e2042697474652076657273756368656e2053696520657320696e2065696e2070616172204d696e7574656e2065726e6575742e, 'Y', '2007-12-06 12:14:05'),
(337, 4, 0x4d69747769726b656e6465, 'Y', '2002-10-26 14:23:01'),
(406, 4, 0x476577f6686e6c696368, 'Y', '2002-10-26 14:23:01'),
(432, 4, 0x476577f6686e6c6963686520566f72676162652028302c352050756e6b7465204b6f6d692c2077656e6e206e6963687420676c6569636861756629, 'Y', '2007-12-07 15:24:41'),
(214, 4, 0x4b6f6f7264696e6174656e73656974656e, 'Y', '2002-10-26 14:23:01'),
(176, 4, 0x4c616e64, 'Y', '2013-02-28 16:14:38'),
(6103, 36, 0x4d656e74c3a97320616b746976c3a16cc3a173206ec3a96c6bc3bc6c, 'Y', '2015-07-23 12:18:15'),
(18, 4, 0x44696520446174656e62616e6b61626672616765207363686c7567206665686c2e2042697474652076657273756368656e2053696520657320696e2065696e2070616172204d696e7574656e2065726e6575742e, 'Y', '2007-12-06 12:14:05'),
(312, 4, 0x446174756d, 'Y', '2002-10-26 14:23:01'),
(98, 4, 0x546167, 'Y', '2002-10-26 14:23:01'),
(99, 4, 0x54616765, 'Y', '2002-10-26 14:23:01'),
(334, 4, 0x41626c65686e656e, 'Y', '2002-10-26 14:23:01'),
(429, 4, 0x4cf6736368656e, 'Y', '2002-10-26 14:23:01'),
(232, 4, 0x506172746965206cf6736368656e, 'Y', '2002-10-26 14:23:01'),
(13, 4, 0x446173204cf6736368656e206465722050617274696520697374207363686c7567206665686c2e204469657320697374207761687273636865696e6c696368206b65696e2050726f626c656d2e, 'Y', '2007-12-06 12:14:05'),
(227, 4, 0x6cf67363686520506172746965, 'Y', '2003-01-07 11:56:51'),
(332, 4, 0x45696e7374656c6c756e67656e2076657268616e64656c6e, 'Y', '2002-10-26 14:23:01'),
(94, 4, 0x446f6b756d656e7465, 'Y', '2002-10-26 14:23:01'),
(159, 4, 0x446f6b756d656e746174696f6e, 'Y', '2002-10-26 14:23:01'),
(233, 4, 0x466572746967, 'Y', '2002-10-26 14:23:01'),
(409, 4, 0x446f7070656c74, 'Y', '2007-12-09 03:17:32'),
(218, 4, 0x556e74656e, 'Y', '2002-10-26 14:23:01'),
(170, 4, 0x5175656c6c636f646520686572756e7465726c6164656e, 'Y', '2002-10-26 14:23:01'),
(236, 4, 0x5347462d446174656920686572756e7465726c6164656e, 'Y', '2007-12-06 10:15:20'),
(173, 4, 0x50726f6a656b7473656974652062656920536f75726365666f726765, 'Y', '2007-12-31 19:26:47'),
(379, 4, 0x42696f677261666965206265617262656974656e, 'Y', '2007-12-07 15:41:45'),
(188, 4, 0x50617373776f7274206265617262656974656e, 'Y', '2002-10-26 14:23:01'),
(199, 4, 0x50726f66696c206265617262656974656e, 'Y', '2012-12-09 02:07:38'),
(181, 4, 0x452d4d61696c, 'Y', '2002-10-26 14:23:01'),
(206, 4, 0x452d4d61696c2d42656e61636872696368746967756e67656e, 'Y', '2002-10-26 14:23:01'),
(408, 4, 0x476c65696368617566706172746965206d6974204e6967697269, 'Y', '2002-10-26 14:23:01'),
(453, 4, 0x7a7573e4747a6c6963682070726f205a7567, 'Y', '2002-10-26 14:23:01'),
(398, 4, 0x4265656e646574, 'Y', '2007-12-06 11:02:42'),
(350, 4, 0x4265656e64657465205061727469656e20766f6e202573, 'Y', '2003-01-07 11:56:51'),
(443, 4, 0x466973636865727a656974, 'Y', '2007-12-07 15:26:49'),
(309, 4, 0x4d61726b696572756e67656e, 'Y', '2002-10-26 14:23:01'),
(442, 4, 0x66fc72, 'Y', '2002-10-26 14:23:01'),
(223, 4, 0x50617373776f72742076657267657373656e, 'Y', '2002-10-26 14:23:01'),
(136, 4, '', 'Y', '2002-10-26 14:23:01'),
(91, 4, 0x466f72656e, 'Y', '2002-10-26 14:23:01'),
(293, 4, 0x46fc72204c65757465206d6974206b75727a6572204b6f6e7a656e74726174696f6e737370616e6e652e, 'Y', '2002-10-26 14:23:01'),
(161, 4, 0x46726167656e2c20416e74776f7274656e2c205175696e74657373656e7a656e, 'Y', '2007-12-06 15:00:11'),
(260, 4, 0x48e4756669672067657374656c6c74652046726167656e20fc62657220476f2061757320646572207265632e67616d65732e676f204e657773677275707065, 'Y', '2002-10-26 14:23:01'),
(310, 4, 0x566f6e, 'Y', '2003-01-10 15:33:00'),
(196, 4, 0x476573616d74657320427265747420756e64204e6163687269636874656e, 'Y', '2002-10-26 14:23:01'),
(202, 4, 0x4e616d65, 'Y', '2002-10-26 14:23:01'),
(230, 4, 0x506172746965, 'Y', '2002-10-26 14:23:01'),
(109, 4, 0x5061727469652068696e7a75676566fc677421, 'Y', '2002-10-26 14:23:01'),
(253, 4, 0x5061727469652067656cf67363687421, 'Y', '2007-12-06 10:50:42'),
(445, 4, 0x5061727469652d4944, 'Y', '2002-10-26 14:23:01'),
(254, 4, 0x5061727469652061756667656e6f6d6d656e21, 'Y', '2002-10-26 14:23:01'),
(183, 4, 0x4265766f727a7567746520537069656c617274656e, 'Y', '2002-10-26 14:23:01'),
(89, 4, 0x5061727469656e, 'Y', '2002-10-26 14:23:01'),
(256, 4, 0x416c6c67656d65696e6520496e666f726d6174696f6e656e, 'Y', '2002-10-26 14:23:01'),
(457, 4, 0x47656865207a7572fc636b, 'Y', '2007-12-07 15:14:28'),
(296, 4, 0x476f2042fc636865722c204175737374617474756e6720756e6420536f667477617265, 'Y', '2002-10-26 14:23:01'),
(283, 4, 0x476f2050726f626c656d65, 'Y', '2002-10-26 14:23:01'),
(362, 4, 0x566f7267616265, 'Y', '2004-02-14 19:34:20'),
(291, 4, 0x47657363686963687465, 'Y', '2002-10-26 14:23:01'),
(240, 4, 0x48617570747365697465, 'Y', '2002-10-26 14:23:01'),
(101, 4, 0x5374756e6465, 'Y', '2002-10-26 14:23:01'),
(102, 4, 0x5374756e64656e, 'Y', '2013-12-31 11:16:53'),
(182, 4, 0x4943512d4e756d6d6572, 'Y', '2002-10-26 14:23:01'),
(132, 4, '', 'Y', '2002-10-26 14:23:01'),
(424, 4, 0x46616c6c73206a612c20537069656c7374e4726b65207a7769736368656e, 'Y', '2002-10-26 14:23:01'),
(169, 4, 0x46616c6c732053696520496872656e20656967656e656e20447261676f6e2053657276657220776f6c6c656e, 'Y', '2004-02-14 19:43:42'),
(295, 4, 0x46616c6c732073696520616e7374726562656e2c20616c6c6573207a752077697373656e2e, 'Y', '2002-10-26 14:23:01'),
(168, 4, 0x496e7374616c6c6174696f6e73616e6c656974756e67, 'Y', '2002-10-26 14:23:01'),
(248, 4, 0x45696e66fc6872756e67, 'Y', '2002-10-26 14:23:01'),
(160, 4, 0x45696e66fc6872756e67207a7520447261676f6e, 'Y', '2002-10-26 14:23:01'),
(335, 4, 0x486572617573666f72646572756e67, 'Y', '2002-10-26 14:23:01'),
(87, 4, 0x486572617573666f726465726e, 'Y', '2002-10-26 14:23:01'),
(373, 4, 0x44696573656e2042656e75747a657220686572617573666f726465726e, 'Y', '2007-12-06 11:02:42'),
(449, 4, 0x4a6170616e69736368, 'Y', '2002-10-26 14:23:01'),
(106, 4, 0x4a6170616e6973636865732042796f796f6d69, 'Y', '2007-12-07 15:22:24'),
(372, 4, '', 'Y', '2012-09-01 21:20:33'),
(430, 4, 0x5465696c6e65686d656e, 'Y', '2002-10-26 14:23:01'),
(363, 4, '', 'Y', '2002-10-26 14:23:01'),
(208, 4, 0x53707261636865, 'Y', '2002-10-26 14:23:01'),
(394, 4, 0x4c65747a746572205a756772696666, 'Y', '2007-12-07 15:41:45'),
(368, 4, 0x4c65747a746572205a7567, 'Y', '2012-09-01 21:20:33'),
(215, 4, 0x4c696e6b73, 'Y', '2002-10-26 14:23:01'),
(80, 4, 0x416e67656d656c64657420616c73, 'Y', '2007-11-04 12:26:49'),
(246, 4, 0x416e6d656c64656e, 'Y', '2003-09-04 18:21:25'),
(97, 4, 0x41626d656c64656e, 'Y', '2007-11-04 12:26:49'),
(400, 4, 0x5665726c6f72656e, 'Y', '2007-12-06 11:02:42'),
(258, 4, 0x5669656c6520496e666f726d6174696f6e656e20fc62657220476f, 'Y', '2002-10-26 14:23:01'),
(437, 4, 0x4772756e647a656974, 'Y', '2007-12-07 15:26:49'),
(220, 4, 0x4d656efc706c61747a696572756e67, 'Y', '2007-12-06 14:16:10'),
(325, 4, 0x4e6163687269636874, 'Y', '2002-10-26 14:23:01'),
(307, 4, 0x4e6163687269636874656e6c69737465, 'Y', '2002-10-26 14:23:01'),
(85, 4, 0x4e6163687269636874656e, 'Y', '2002-10-26 14:23:01'),
(346, 4, 0x4e616368726963687420676573656e64657421, 'Y', '2010-08-10 01:17:53'),
(436, 4, 0x4d6f6e617465, 'Y', '2002-10-26 14:23:01'),
(364, 4, 0x5afc6765, 'Y', '2002-10-26 14:23:01'),
(195, 4, 0x5afc676520756e64204e6163687269636874656e, 'Y', '2002-10-26 14:23:01'),
(378, 4, 0x4d65696e652042656e75747a6572696e666f726d6174696f6e656e, 'Y', '2002-10-26 14:23:01'),
(134, 4, '', 'Y', '2002-10-26 14:23:01'),
(314, 4, 0x4e6575, 'Y', '2002-10-26 14:23:01'),
(327, 4, 0x4e657565204e6163687269636874, 'Y', '2002-10-26 14:23:01'),
(190, 4, 0x4e657565732050617373776f7274, 'Y', '2002-10-26 14:23:01'),
(385, 4, 0x4e65756573205468656d61, 'Y', '2012-09-01 21:20:33'),
(460, 4, 0x6ee46368737465205365697465, 'Y', '2002-10-26 14:23:01'),
(210, 4, 0x4e6163687472756865, 'Y', '2002-10-26 14:23:01'),
(447, 4, '', 'Y', '2002-10-26 14:23:01'),
(371, 4, 0x4e65696e, 'Y', '2003-02-25 19:15:00'),
(391, 4, 0x4b65696e65205061727469656e20676566756e64656e2e, 'Y', '2007-11-04 12:29:59'),
(194, 4, 0x4e75722062656e61636872696368746967656e, 'Y', '2002-10-26 14:23:01'),
(81, 4, 0x4e6963687420616e67656d656c6465742e, 'Y', '2007-11-04 12:26:49'),
(420, 4, 0x416e7a61686c206465722068696e7a757a7566fc67656e64656e205061727469656e, 'Y', '2003-01-07 11:56:51'),
(185, 4, 0x4265727566, 'Y', '2002-10-26 14:23:01'),
(193, 4, 0x417573, 'Y', '2002-10-26 14:23:01'),
(189, 4, 0x416c7465732050617373776f7274, 'Y', '2002-10-26 14:23:01'),
(252, 4, 0x4e6f63682065696e6d616c2077696c6c6b6f6d6d656e20756e64207669656c20566572676efc67656e2062656920496872656d2042657375636821, 'Y', '2007-12-07 15:14:28'),
(388, 4, 0x4265726569742066fc72205061727469656e3f, 'Y', '2007-11-04 12:28:06'),
(359, 4, 0x4765676e6572, 'Y', '2002-10-26 14:23:01'),
(175, 4, 0x416e64657265733a, 'Y', '2002-10-26 14:23:01'),
(300, 4, 0x416e6465726520476f2d536572766572, 'Y', '2002-10-26 14:23:01'),
(95, 4, 0x53656974652065727374656c6c7420696e, 'Y', '2010-08-10 01:18:50'),
(231, 4, 0x50617373656e, 'Y', '2002-10-26 14:23:01'),
(226, 4, 0x5061737365, 'Y', '2002-10-26 14:23:01'),
(245, 4, 0x50617373776f7274, 'Y', '2002-10-26 14:23:01'),
(157, 4, 0x50617373776f7274206765e46e6465727421, 'Y', '2002-10-26 14:23:01'),
(163, 4, 0x4c65757465, 'Y', '2002-10-26 14:23:01'),
(4571, 40, 0x566f63ea20706f646520646f6d696e6172206f20476f20656d20313020646961732e, 'Y', '2014-07-30 14:29:49'),
(200, 4, 0x50657273f66e6c696368652045696e7374656c6c756e67656e, 'Y', '2002-10-26 14:23:01'),
(454, 4, 0x4269747465207365747a656e20536965204968726520566f72676162652d537465696e6521, 'Y', '2004-02-14 19:37:22'),
(345, 4, 0x426974746520676562656e205369652064696520446174656e2065696e, 'Y', '2004-02-14 19:34:55'),
(243, 4, 0x4269747465206d656c64656e20536965207369636820616e2e, 'Y', '2006-05-02 18:16:48'),
(461, 4, 0x766f72686572696765205365697465, 'Y', '2002-10-26 14:23:01'),
(458, 4, 0x476566616e67656e65, 'Y', '2002-10-26 14:23:01'),
(158, 4, 0x45696e7374656c6c756e67656e20616b7475616c69736965727421, 'Y', '2002-10-26 14:23:01'),
(407, 4, 0x50617373656e64, 'Y', '2002-10-26 14:23:01'),
(433, 4, 0x47656e61756520566f7267616265, 'Y', '2007-12-07 15:24:41'),
(204, 4, 0x53656c62737465696e73747566756e67, 'Y', '2002-10-26 14:23:01'),
(366, 4, 0x4265776572746574, 'Y', '2002-10-26 14:23:01'),
(205, 4, 0x537069656c7374e4726b65, 'Y', '2002-10-26 14:23:01'),
(384, 4, 0x466f72756d206c6573656e, 'Y', '2002-10-26 14:23:01'),
(344, 4, 0x42656e75747a65726b6f6e746f20616e6c6567656e, 'Y', '2003-11-17 21:35:46'),
(247, 4, 0x4e657565732042656e75747a65726b6f6e746f20616e6c6567656e, 'Y', '2003-11-17 21:35:46'),
(393, 4, 0x52656769737472696572756e67, 'Y', '2007-12-07 15:41:45'),
(315, 4, 0x4265616e74776f72746574, 'Y', '2002-10-26 14:23:01'),
(324, 4, 0x4265616e74776f7274656e, 'Y', '2002-10-26 14:23:01'),
(316, 4, 0x4265616e74776f7274656e21, 'Y', '2002-10-26 14:23:01'),
(423, 4, 0x5665726c616e67652065696e67657374756674656e204765676e6572, 'Y', '2002-10-26 14:23:01'),
(235, 4, 0x417566676562656e, 'Y', '2002-10-26 14:23:01'),
(225, 4, 0x417566676562656e, 'Y', '2002-10-26 14:23:01'),
(234, 4, 0x50617274696520666f72747365747a656e, 'Y', '2002-10-26 14:23:01'),
(217, 4, 0x526563687473, 'Y', '2002-10-26 14:23:01'),
(273, 4, 0x526567656c6e, 'Y', '2002-10-26 14:23:01'),
(397, 4, 0x4c617566656e6465, 'Y', '2002-10-26 14:23:01'),
(351, 4, 0x4c617566656e6465205061727469656e20766f6e202573, 'Y', '2003-01-07 11:56:51'),
(229, 4, 0x45726765626e6973, 'Y', '2002-10-26 14:23:01'),
(417, 4, 0x53636865696e7420696d204d6f6d656e74206c656572207a75207365696e2e, 'Y', '2002-10-26 14:23:01'),
(86, 4, 0x4e61636872696368742073656e64656e, 'Y', '2007-12-10 01:04:13'),
(336, 4, 0x486572617573666f72646572756e6720616273656e64656e, 'Y', '2007-12-07 15:24:41'),
(329, 4, 0x4e616368726963687420616273656e64656e, 'Y', '2007-12-07 15:24:41'),
(396, 4, 0x4e616368726963687420616e2042656e75747a65722073656e64656e, 'Y', '2012-07-29 12:51:27'),
(326, 4, 0x416e74776f727420616273656e64656e, 'Y', '2007-12-07 15:22:24'),
(305, 4, 0x5365727665722d4c69737465, 'Y', '2002-10-26 14:23:01'),
(352, 4, 0x736766, 'Y', '2002-10-26 14:23:01'),
(375, 4, 0x4265656e64657465205061727469656e20616e7a656967656e, 'Y', '2007-11-04 12:28:06'),
(380, 4, 0x4e616368726963687420616e7a656967656e, 'Y', '2002-10-26 14:23:01'),
(374, 4, 0x4c617566656e6465205061727469656e20616e7a656967656e, 'Y', '2007-11-04 12:28:06'),
(93, 4, 0x536974656d6170, 'Y', '2002-10-26 14:23:01'),
(361, 4, 0x4772f6df65, 'Y', '2002-10-26 14:23:01'),
(237, 4, 0xdc626572737072696e67656e20756e64207a7572206ee463687374656e2050617274696520676568656e, 'Y', '2002-10-26 14:23:01'),
(219, 4, 0x4162676572756e646574652042726574746b616e74656e, 'Y', '2002-10-26 14:23:01'),
(8, 4, 0x446965205061727469652c207a752064657220536965206865726175736765666f72646572742077757264656e2c206b6f6e6e7465206e6963687420676566756e64656e2077657264656e2e20577572646520736965206265726569747320616267656c65686e743f, 'Y', '2007-12-06 12:14:05'),
(50, 4, 0x44696573652057617274657a696d6d6572706172746965206b6f6e6e7465206e6963687420676566756e64656e2077657264656e2e205761687273636865696e6c69636820777572646520736965207363686f6e2061756667656e6f6d6d656e2e, 'Y', '2002-10-26 14:23:01'),
(20, 4, 0x44696520506172746965206b6f6e6e7465206e69636874206265676f6e6e656e2077657264656e2e2042697474652076657273756368656e2053696520657320696e2065696e2070616172204d696e7574656e2065726e6575742e, 'Y', '2004-02-14 19:49:40'),
(41, 4, 0x446965736520506172746965206b6f6e6e7465206e6963687420676566756e64656e2077657264656e2e, 'Y', '2002-10-26 14:23:01'),
(42, 4, 0x44617320676577fc6e736368746520466f72756d206b6f6e6e7465206e6963687420676566756e64656e2077657264656e2e, 'Y', '2002-10-26 14:23:01'),
(44, 4, 0x44696520676577fc6e7363687465204e6163687269636874207775726465206e6963687420676566756e64656e2e, 'Y', '2003-01-07 12:14:00'),
(45, 4, 0x4469657365722042656e75747a6572206b6f6e6e7465206e6963687420676566756e64656e2077657264656e2e, 'Y', '2007-12-07 14:56:03'),
(56, 4, 0x45696e2042656e75747a6572206d6974206469657365722042656e75747a65722d494420697374206e696368742062656b616e6e742e, 'Y', '2002-10-26 14:23:01'),
(32, 4, 0x5369652073696e64206e6963687420616d205a75672e, 'Y', '2002-10-26 14:23:01'),
(59, 4, 0x4e757220dc6265727365747a65722064fc7266656e20fc6265727365747a656e2e, 'Y', '2002-10-26 14:23:01'),
(63, 4, 0x45696e204665686c65722074726174206175662c20616c732076657273756368742077757264652c20646965206e6575656e20dc6265727365747a756e67656e20696e2064696520446174656e62616e6b2065696e7a7566fc67656e2e, 'Y', '2002-10-26 14:23:01'),
(15, 4, 0x44696520506172746965206b6f6e6e746520616e73636865696e656e64206e6963687420696e2064696520446174656e62616e6b2065696e676566fc67742077657264656e2e, 'Y', '2002-10-26 14:23:01'),
(14, 4, 0x446965204e6163687269636874206b6f6e6e746520616e73636865696e656e64206e6963687420696e2064696520446174656e62616e6b2065696e676566fc67742077657264656e2e, 'Y', '2002-10-26 14:23:01'),
(2, 4, 0x4469652050617274696520697374206c6569646572207363686f6e206265656e6465742e, 'Y', '2002-10-26 14:23:01'),
(3, 4, 0x4469652050617274696520686174206e6f6368206e69636874206265676f6e6e656e2e, 'Y', '2002-10-26 14:23:01'),
(57, 4, 0x44696520696e697469616c6520537069656c7374e4726b65206d757373207a7769736368656e203330206b797520756e6420362064616e206c696567656e, 'Y', '2002-10-26 14:23:01'),
(29, 4, 0x4469657320697374206c6569646572206e696368742065726c617562742066fc722064617320476173746b6f6e746f2e204269747465206c6567656e205369652065696e2070657273f66e6c696368656e204b6f6e746f20616e2e, 'Y', '2004-02-14 19:49:40'),
(66, 4, 0x446965736520536569746520697374206175737363686c6965df6c6963682066fc722042656e75747a6572206d69742061646d696e6973747261746976656e205265636874656e2e, 'Y', '2002-10-26 14:23:01');
INSERT INTO `Translations` (`Original_ID`, `Language_ID`, `Text`, `Translated`, `Updated`) VALUES
(40, 4, 0x44696573657220537465696e2068e474746520736963682073656c62737420676574f67465742c20616265722053656c6273746d6f72642069737420696e2064696573656e20526567656c6e206e696368742065726c617562742e, 'Y', '2002-10-26 14:23:01'),
(46, 4, 0x44696573652042656e75747a65722d49442077697264206c6569646572207363686f6e2076657277656e6465742e2042697474652076657273756368656e207369652065696e6520616e646572652042656e75747a65722d4944207a752066696e64656e2e, 'Y', '2002-10-26 14:23:01'),
(27, 4, 0x53696520756e6420696872204765676e6572206dfc7373656e2065696e6520696e697469616c6520537069656c7374e4726b6520616e676562656e2e20416e6465726e66616c6c73206b616e6e206b65696e2070617373656e6465732048616e6469636170206572726563686e65742077657264656e2e, 'Y', '2004-02-14 19:49:40'),
(61, 4, 0x4573206973742069686e656e206e696368742065726c617562742c2064696573652053707261636865207a7520fc6265727365747a656e2e, 'Y', '2002-10-26 14:23:01'),
(52, 4, 0x5369652073696e64206e6963687420696d20616e6765676562656e656e20537069656c7374e4726b6562657265696368, 'Y', '2007-12-10 01:05:47'),
(7, 4, 0x536965206bf66e6e656e2073696368206e696368742073656c62737420686572617573666f726465726e2e, 'Y', '2002-10-26 14:23:01'),
(51, 4, 0x536965206bf66e6e656e206e6963687420616e20696872657220656967656e656e20506172746965207465696c6e65686d656e2e, 'Y', '2002-10-26 14:23:01'),
(54, 4, 0x53696520686162656e206968722050617373776f72742066616c7363682065696e6765676562656e2e, 'Y', '2002-10-26 14:23:01'),
(22, 4, 0x536965206dfc7373656e2065696e656e204e616d656e20616e676562656e2e, 'Y', '2002-10-26 14:23:01'),
(1, 4, 0x536965206bf66e6e656e206e696368742070617373656e206265766f72206e6963687420616c6c652048616e64696361702d537465696e652067657365747a742077757264656e2e, 'Y', '2002-10-26 14:23:01'),
(9, 4, 0x5369652064fc7266656e206b65696e656e2065696e7a656c6e656e20537465696e207a7572fc636b7363686c6167656e2c20646572206765726164652065696e656e2065696e7a656c6e656e20537465696e2067657363686c6167656e206861742c20646120736f6e73742065696e6520766f7268657269676520506f736974696f6e20776965646572686f6c742077fc7264652e205363686175656e2053696520756e746572204b6f20696e2064656e20526567656c6e206e6163682e, 'Y', '2007-12-06 12:14:05'),
(58, 4, 0x53696520686162656e2065696e656e206e696368742d6e756d657269736368656e205765727420696e2065696e656d206e756d657269736368656e2046656c6420616e6765676562656e2e, 'Y', '2002-10-26 14:23:01'),
(178, 4, 0x42756e6465736c616e64, 'Y', '2004-05-12 18:48:55'),
(82, 4, 0x537461747573, 'Y', '2002-10-26 14:23:01'),
(107, 4, 0x537465696e65, 'Y', '2002-10-26 14:23:01'),
(212, 4, 0x4772f6df652064657220537069656c737465696e65, 'Y', '2002-10-26 14:23:01'),
(281, 4, 0x53747261746567696520756e64205465726d696e6f6c6f676965, 'Y', '2002-10-26 14:23:01'),
(311, 4, 0x42657472656666, 'Y', '2002-10-26 14:23:01'),
(455, 4, 0x42657374e4746967656e20756e64207a7572206ee463687374656e2050617274696520676568656e, 'Y', '2002-10-26 14:23:01'),
(456, 4, 0x42657374e4746967656e20756e64207a757220537461747573736569746520676568656e, 'Y', '2002-10-26 14:23:01'),
(286, 4, 0x4c617373656e205369652049687265205061727469656e206b6f6d6d656e74696572656e2c20756d207a7520657266616872656e2c20776f207369652068e47474656e2062657373657220737069656c656e206bf66e6e656e2e, 'Y', '2004-02-14 19:43:42'),
(35, 4, 0x4461732062657374e474696774652050617373776f7274207061737374206e69636874207a756d2050617373776f72742e2042697474652076657273756368656e207369652065732065726e6575742e, 'Y', '2002-10-26 14:23:01'),
(294, 4, 0x4469652061757366fc68726c6963686572652047657363686963687465, 'Y', '2002-10-26 14:23:01'),
(16, 4, 0x4461732045696e66fc67656e20646573205a7567657320696e2064696520446174656e62616e6b207363686c756720616e73636865696e656e64206665686c2e2044696573206bf66e6e74652065696e2050726f626c656d207365696e2c206f6465722061756368206e696368742e20426974746520676568656e20536965207a7572fc636b207a75722050617274696520756e64207363686175656e206e616368206f6220646572205a75672072656769737472696572742077757264652e, 'Y', '2007-12-06 12:14:05'),
(17, 4, 0x4461732045696e66fc67656e20696872657220446174656e20696e2064696520446174656e62616e6b207363686c756720616e73636865696e656e64206665686c2e2046616c6c73205369652073696368206e6963687420616e6d656c64656e206bf66e6e656e2c2076657273756368656e205369652065732062697474652065726e6575742c20756e642077656e64656e20536965207369636820616e2064656e20537570706f72742c2066616c6c73206175636820646173206e696368742067656c696e67742e, 'Y', '2007-12-06 12:14:05'),
(322, 4, 0x44696520486572617573666f72646572756e67207a75206469657365722025735061727469652573207775726465206265726569747320616e67656e6f6d6d656e2e, 'Y', '2002-10-26 14:23:01'),
(323, 4, 0x44696520486572617573666f72646572756e6720777572646520616267656c65686e74206f64657220646965205061727469652067656cf673636874, 'Y', '2007-12-07 15:22:24'),
(275, 4, 0x45696e652068fc6273636865205365697465207a756d20426567696e6e656e2e, 'Y', '2004-02-14 19:43:42'),
(383, 4, 0x5468726561642d4c69737465, 'Y', '2002-10-26 14:23:01'),
(414, 4, 0x5a656974626573636872e46e6b756e67, 'Y', '2002-10-26 14:23:01'),
(209, 4, 0x5a6569747a6f6e65, 'Y', '2002-10-26 14:23:01'),
(308, 4, 0x416e, 'Y', '2002-10-26 14:23:01'),
(328, 4, 0x416e20284e75747a65722d494429, 'Y', '2007-12-07 15:24:41'),
(244, 4, 0x56657277656e64656e205369652025732c20756d207369636820756d7a75736568656e2e, 'Y', '2007-12-07 15:14:28'),
(90, 4, 0xdc6265727365747a656e, 'Y', '2002-10-26 14:23:01'),
(3159, 17, '', 'Y', '2013-08-21 00:40:47'),
(3160, 17, '', 'Y', '2013-08-21 00:40:47'),
(3161, 17, 0x52756368, 'Y', '2013-08-21 00:40:47'),
(3162, 17, '', 'Y', '2013-08-21 00:40:47'),
(55, 4, 0x556e62656b616e6e74657220537069656c7374e4726b656e747970, 'Y', '2002-10-26 14:23:01'),
(216, 4, 0x4f62656e, 'Y', '2002-10-26 14:23:01'),
(201, 4, 0x4e75747a65722d4944, 'Y', '2007-12-06 10:50:09'),
(84, 4, 0x42656e75747a6572696e666f, 'Y', '2007-12-10 01:09:38'),
(88, 4, 0x42656e75747a6572, 'Y', '2002-10-26 14:23:01'),
(197, 4, 0x56657274696b616c, 'Y', '2002-10-26 14:23:01'),
(276, 4, 0x536568722067757420676573636872696562656e652045696e66fc6872756e6720766f6e20646572204272697469736820476f204173736f63696174696f6e2e, 'Y', '2002-10-26 14:23:01'),
(83, 4, 0x57617274657a696d6d6572, 'Y', '2002-10-26 14:23:01'),
(416, 4, 0x576f6368656e656e6473756872, 'Y', '2002-10-26 14:23:01'),
(377, 4, 0x45696e67616e67732d5365697465, 'Y', '2002-10-26 14:23:01'),
(330, 4, 0x576569df, 'Y', '2007-12-06 10:54:13'),
(164, 4, 0x7765722068696c66742062656920447261676f6e206d6974, 'Y', '2002-10-26 14:23:01'),
(439, 4, 0x6d6974, 'Y', '2002-10-26 14:23:01'),
(104, 4, 0x6d6974202573207a7573e4747a6c6963682070726f205a7567, 'Y', '2002-10-26 14:23:01'),
(103, 4, 0x6f686e652042796f796f6d69, 'Y', '2007-11-04 12:26:49'),
(399, 4, 0x4765776f6e6e656e, 'Y', '2007-12-06 11:02:42'),
(213, 4, 0x46617262652064657320486f6c7a6573, 'Y', '2002-10-26 14:23:01'),
(284, 4, 0x44696573652064757263687a75617262656974656e206b616e6e2049687220537069656c207665726265737365726e2e, 'Y', '2004-02-14 19:43:42'),
(370, 4, 0x4a61, 'Y', '2002-10-26 14:23:01'),
(288, 4, 0x53696520736f6c6c74656e2077697373656e2c20fc6265722077617320616e64657265204c6575746520726564656e2e, 'Y', '2002-10-26 14:23:01'),
(390, 4, 0x5369652073696e6420696e20666f6c67656e64656e205061727469656e20616d205a75673a, 'Y', '2002-10-26 14:23:01'),
(415, 5, 0x4e6f6d6272652064652070617274696573, 'Y', '2007-10-08 18:53:14'),
(419, 5, 0x2573207365756c656d656e74, 'Y', '2002-10-26 14:23:01'),
(452, 5, 0x257320706f75722025732070696572726573, 'Y', '2002-10-26 14:23:01'),
(450, 5, 0x25732070617220746f75722065742025732070e972696f64657320737570706ce96d656e746169726573, 'Y', '2002-10-26 14:23:01'),
(292, 5, 0x556e206272656620686973746f7269717565, 'Y', '2003-01-21 05:20:39'),
(333, 5, 0x4163636570746572, 'Y', '2002-10-26 14:23:01'),
(266, 5, 0x556e207369746520636f6c6c61626f72617469662e204c6973657a206574207061727469636970657a266e6273703b21, 'Y', '2003-01-29 01:36:54'),
(402, 5, 0x41637469766974e9, 'Y', '2002-10-26 14:23:01'),
(462, 5, 0x416a6f7574657220756e6520636f6c6f6e6e65, 'Y', '2002-10-26 14:23:01'),
(425, 5, 0x416a6f75746572206c6120706172746965, 'Y', '2002-10-26 14:23:01'),
(239, 5, 0x416a6f757465722064616e73206c61206c697374652064276f62736572766174696f6e, 'Y', '2003-07-19 20:19:36'),
(96, 5, 0x41646d696e697374726174696f6e, 'Y', '2002-10-26 14:23:01'),
(298, 5, 0x556e6520636f6c6c656374696f6e20696d706f7274616e7465206465206c697672657320737572206c6520676f2e, 'Y', '2003-01-29 01:47:52'),
(303, 5, 0x506f7572206a6f75657220656e2074656d70732072e9656c20617520676f2e, 'Y', '2003-01-29 01:47:52'),
(301, 5, 0x556e2061757472652073697465206465206a657520656e20ab266e6273703b746f7572266e6273703b706172266e6273703b746f7572266e6273703bbb2c20706173207365756c656d656e7420646520676f2e, 'Y', '2003-01-29 01:47:52'),
(272, 5, 0x556e206d616e676120737572206c6520676f2e2053697465207265636f6d6d616e64e9266e6273703b21, 'Y', '2003-01-29 01:36:54'),
(306, 5, 0x556e65206c6973746520646520736572766575727320706f7572206a6f75657220617520676f2e, 'Y', '2003-01-29 01:47:52'),
(100, 5, 0x6574, 'Y', '2002-10-26 14:23:01'),
(274, 5, 0x556e6520696e74726f64756374696f6e20696e746572616374697665, 'Y', '2002-10-26 14:23:01'),
(297, 5, 0x4269626c696f677261706869657320616e6e6f74e9657320737572206c6520676f, 'Y', '2003-01-21 05:20:39'),
(395, 5, 0x496e666f732062696f67726170686971756573, 'Y', '2002-10-26 14:23:01'),
(156, 5, 0x42696f67726170686965206d69736520e0206a6f7572266e6273703b21, 'Y', '2003-08-24 20:53:03'),
(331, 5, 0x4e6f6972, 'Y', '2003-01-21 03:17:43'),
(211, 5, 0x466f6e6420647520706c6174656175, 'Y', '2002-10-26 14:23:01'),
(431, 5, 0x5461696c6c6520647520706c6174656175, 'Y', '2016-01-15 13:16:16'),
(2659, 17, 0x4e6965706f707261776e7920706c696b, 'Y', '2013-08-21 00:01:06'),
(451, 5, 0x43616e616469656e, 'Y', '2002-10-26 14:23:01'),
(108, 5, 0x42796f796f6d692063616e616469656e, 'Y', '2013-03-13 08:51:06'),
(187, 5, 0x4d6f646966696572206d612062696f67726170686965, 'Y', '2015-03-04 14:47:18'),
(192, 5, 0x4368616e676572206d6f6e206d6f74206465207061737365, 'Y', '2015-03-04 14:47:18'),
(222, 5, 0x4d6f646966696572206d6f6e2070726f66696c, 'Y', '2015-03-04 14:46:29'),
(177, 5, 0x56696c6c65, 'Y', '2002-10-26 14:23:01'),
(428, 5, 0x54656d70732064e9636f6d7074e9206c65207765656b656e64, 'Y', '2003-01-30 03:23:34'),
(179, 5, 0x436c7562, 'Y', '2002-10-26 14:23:01'),
(360, 5, 0x436f756c657572, 'Y', '2002-10-26 14:23:01'),
(446, 5, 0x436f756c65757273, 'Y', '2002-10-26 14:23:01'),
(412, 5, 0x436f6d6d656e7461697265, 'Y', '2002-10-26 14:23:01'),
(287, 5, 0x4c6573207465726d6573206a61706f6e61697320647520476f206c657320706c757320636f7572616e7473, 'Y', '2003-03-14 03:52:49'),
(191, 5, 0x436f6e6669726d657a206c65206d6f74206465207061737365, 'Y', '2002-10-26 14:23:01'),
(12, 5, 0x4c6120636f6e6e6578696f6e20e0206c61206261736520646520646f6e6ee96573206120e963686f75e92e20417474656e64657a207175656c71756573206d696e75746573206574207265636f6d6d656e63657a2e, 'Y', '2003-03-31 02:29:39'),
(337, 5, 0x5061727469636970616e747320e020447261676f6e, 'Y', '2002-10-26 14:23:01'),
(406, 5, 0x547261646974696f6e6e656c, 'Y', '2013-03-13 08:58:49'),
(432, 5, 0x48616e646963617020747261646974696f6e6e656c20286b6f6d692064653c62723e302e35207369206e6976656175782064696666e972656e747329, 'Y', '2013-03-13 09:16:45'),
(214, 5, 0x436f74e9732064657320636f6f72646f6e6ee96573, 'Y', '2003-01-21 03:56:19'),
(48, 5, 0x496d706f737369626c652064652063616c63756c657220756e652076616c6575722064616e73206c6120666f6e6374696f6e206427696e746572706f6c6174696f6e2e, 'Y', '2003-05-12 00:28:30'),
(19, 5, 0x4c612072e9736572766174696f6e206465206c61206261736520646520646f6e6ee96573206120e963686f75e92e20417474656e64657a207175656c71756573206d696e75746573206574207265636f6d6d656e63657a2e, 'Y', '2003-03-31 02:29:39'),
(176, 5, 0x50617973, 'Y', '2002-10-26 14:23:01'),
(6102, 36, 0x416b746976c3a16cc3a173, 'Y', '2015-07-23 12:18:15'),
(2832, 17, 0x42727974796a736b69652054657279746f7269756d204f6365616e7520496e64796a736b6965676f, 'Y', '2013-08-21 00:05:57'),
(421, 5, 0x64616e, 'Y', '2002-10-26 14:23:01'),
(18, 5, 0x4c612072657175ea7465206120e963686f75e92e20417474656e64657a207175656c71756573206d696e75746573206574207265636f6d6d656e63657a2e, 'Y', '2003-03-31 02:29:39'),
(312, 5, 0x44617465, 'Y', '2002-10-26 14:23:01'),
(98, 5, 0x6a6f7572, 'Y', '2002-10-26 14:23:01'),
(99, 5, 0x6a6f757273, 'Y', '2002-10-26 14:23:01'),
(334, 5, 0x52656675736572, 'Y', '2002-10-26 14:23:01'),
(429, 5, 0x5375707072696d6572, 'Y', '2002-10-26 14:23:01'),
(232, 5, 0x5375707072696d6572206c6120706172746965, 'Y', '2002-10-26 14:23:01'),
(13, 5, 0x4c61207375707072657373696f6e206465206c6120706172746965206120e963686f75e92e204d616973206365206e276573742073616e7320646f7574652070617320756e2070726f626ce86d652067726176652e, 'Y', '2003-05-12 00:28:30'),
(227, 5, 0x5375707072657373696f6e206465206c6120706172746965, 'Y', '2002-10-26 14:23:01'),
(6324, 36, 0x6d696e64656e206ac3a174c3a96b6f73206d75746174c3a17361, 'Y', '2015-07-23 11:52:07'),
(332, 5, 0x4469736375746572206c657320706172616de874726573, 'Y', '2013-03-13 08:54:41'),
(94, 5, 0x446f63756d656e746174696f6e73, 'Y', '2003-01-26 03:24:54'),
(159, 5, 0x446f63756d656e746174696f6e73, 'Y', '2003-01-26 15:45:38'),
(233, 5, 0x56616c69646572, 'Y', '2002-10-26 14:23:01'),
(409, 5, 0x50617274696520646f75626c65, 'Y', '2002-10-26 14:23:01'),
(218, 5, 0x426173, 'Y', '2002-10-26 14:23:01'),
(170, 5, 0x54e96ce963686172676572206c657320736f7572636573, 'Y', '2002-10-26 14:23:01'),
(236, 5, 0x54e96ce963686172676572206c65206669636869657220534746, 'Y', '2002-10-26 14:23:01'),
(173, 5, 0x506167652064752070726f6a657420447261676f6e2073757220736f75726365666f726765, 'Y', '2003-02-22 01:53:03'),
(379, 5, 0x4d6f646966696572206d612062696f67726170686965, 'Y', '2015-03-04 14:47:18'),
(188, 5, 0x4368616e676572206d6f6e206d6f74206465207061737365, 'Y', '2015-03-04 14:47:18'),
(199, 5, 0x4d6f646966696572206d6f6e2070726f66696c, 'Y', '2015-03-04 14:46:29'),
(181, 5, 0x452d6d61696c, 'Y', '2002-10-26 14:23:01'),
(206, 5, 0x4574726520696e666f726de92070617220452d6d61696c, 'Y', '2003-01-21 13:52:21'),
(299, 5, 0x556e6520626f75746971756520656e206c69676e65206575726f70e9656e6e652e, 'Y', '2003-01-29 01:47:52'),
(408, 5, 0x5061727469652072e967756c69e872652061766563206e6967697269, 'Y', '2002-10-26 14:23:01'),
(453, 5, 0x656e20737570706ce96d656e742070617220746f7572, 'Y', '2003-01-30 03:13:05'),
(92, 5, 0x462e412e512e, 'Y', '2002-10-26 14:23:01'),
(398, 5, 0x5465726d696ee9, 'Y', '2002-10-26 14:23:01'),
(348, 5, 0x50617274696573207465726d696ee96573, 'Y', '2002-10-26 14:23:01'),
(350, 5, 0x50617274696573207465726d696ee96573206465202573, 'Y', '2003-01-21 03:17:43'),
(443, 5, 0x54656d70732046697363686572, 'Y', '2002-10-26 14:23:01'),
(309, 5, 0x4d6172717565757273, 'Y', '2003-10-22 03:05:09'),
(442, 5, 0x706f7572, 'Y', '2002-10-26 14:23:01'),
(223, 5, 0x566f7573206176657a206f75626c69e920766f747265206d6f74206465207061737365266e6273703b3f, 'Y', '2003-08-24 20:52:54'),
(136, 5, 0x466f72756d, 'Y', '2002-10-26 14:23:01'),
(91, 5, 0x466f72756d73, 'Y', '2002-10-26 14:23:01'),
(161, 5, 0x466f69726520417578205175657374696f6e73, 'Y', '2002-10-26 14:23:01'),
(260, 5, 0x466f69726520617578207175657374696f6e7320737572206c6520676f20647520666f72756d2064652064697363757373696f6e207265632e67616d65732e676f2e, 'Y', '2003-01-29 01:47:52'),
(310, 5, 0x4465, 'Y', '2003-01-21 13:59:39'),
(196, 5, 0x506c617465617520636f6d706c6574206574206d65737361676573, 'Y', '2002-10-26 14:23:01'),
(202, 5, 0x4e6f6d20636f6d706c6574, 'Y', '2002-10-26 14:23:01'),
(230, 5, 0x506172746965, 'Y', '2002-10-26 14:23:01'),
(109, 5, 0x50617274696520616a6f7574e965266e6273703b21, 'Y', '2003-11-01 13:46:07'),
(253, 5, 0x506172746965207375707072696de965266e6273703b21, 'Y', '2003-11-01 13:46:07'),
(445, 5, 0x4e756de9726f20646520706172746965, 'Y', '2002-10-26 14:23:01'),
(254, 5, 0x5061727469652072656a6f696e7465266e6273703b21, 'Y', '2003-11-01 13:46:07'),
(183, 5, 0x5072e966e972656e636573206465206a6575, 'Y', '2002-10-26 14:23:01'),
(89, 5, 0x50617274696573, 'Y', '2002-10-26 14:23:01'),
(256, 5, 0x496e666f726d6174696f6e732067e96ee972616c6573, 'Y', '2002-10-26 14:23:01'),
(457, 5, 0x5265746f7572, 'Y', '2002-10-26 14:23:01'),
(296, 5, 0x4c69767265732c20e971756970656d656e7473206574206c6f67696369656c73, 'Y', '2003-03-15 23:08:37'),
(259, 5, 0x462e412e512e20737572206c6520676f, 'Y', '2003-02-22 01:53:03'),
(267, 5, '', 'Y', '2002-10-26 14:23:01'),
(283, 5, 0x50726f626ce86d657320646520676f, 'Y', '2002-10-26 14:23:01'),
(285, 5, '', 'Y', '2003-01-21 05:20:39'),
(362, 5, 0x48616e6469636170, 'Y', '2002-10-26 14:23:01'),
(271, 5, '', 'Y', '2003-01-21 05:20:39'),
(291, 5, 0x556e20706575206427686973746f697265, 'Y', '2003-08-09 02:59:13'),
(184, 5, 0x50617373696f6e73, 'Y', '2002-10-26 14:23:01'),
(240, 5, 0x50616765207072696e636970616c65, 'Y', '2002-10-26 14:23:01'),
(180, 5, 0x5061676520776562, 'Y', '2002-10-26 14:23:01'),
(198, 5, 0x486f72697a6f6e74616c, 'Y', '2002-10-26 14:23:01'),
(101, 5, 0x6865757265, 'Y', '2002-10-26 14:23:01'),
(102, 5, 0x686575726573, 'Y', '2002-10-26 14:23:01'),
(182, 5, 0x4e756de9726f20494351, 'Y', '2003-02-21 04:03:34'),
(132, 5, 0x4eb0, 'Y', '2003-01-26 03:25:56'),
(424, 5, 0x5369206f75692c206e697665617520656e747265, 'Y', '2003-02-23 14:29:35'),
(60, 5, 0x536920766f757320766f756c657a20616964657220706f7572206c612074726164756374696f6e20646520447261676f6e2c20766575696c6c657a20706f7374657220756e206d6573736167652064616e73206c6520666f72756d20ab266e6273703b5472616e736c6174696f6e266e6273703bbb202874726164756374696f6e73292e, 'Y', '2003-03-31 02:29:39'),
(169, 5, 0x736920766f757320766f756c657a20766f7472652070726f707265207365727665757220447261676f6e, 'Y', '2003-01-26 15:47:56'),
(411, 5, 0x496e666f, 'Y', '2002-10-26 14:23:01'),
(168, 5, 0x496e737472756374696f6e73206427696e7374616c6c6174696f6e, 'Y', '2003-08-09 02:59:13'),
(248, 5, 0x496e74726f64756374696f6e, 'Y', '2002-10-26 14:23:01'),
(160, 5, 0x496e74726f64756374696f6e20e020447261676f6e, 'Y', '2002-10-26 14:23:01'),
(335, 5, 0x4d657373616765206427696e7669746174696f6e, 'Y', '2003-06-20 14:00:14'),
(87, 5, 0x456e766f79657220756e6520696e7669746174696f6e, 'Y', '2015-03-04 14:51:15'),
(373, 5, 0x496e7669746572206c277574696c69736174657572, 'Y', '2003-08-20 02:29:00'),
(257, 5, '', 'Y', '2003-01-21 05:20:39'),
(449, 5, 0x4a61706f6e616973, 'Y', '2003-03-14 03:54:19'),
(106, 5, 0x42796f796f6d69206a61706f6e616973, 'Y', '2013-03-13 08:51:06'),
(372, 5, 0x4a69676f, 'Y', '2013-06-24 15:18:33'),
(430, 5, 0x52656a6f696e647265, 'Y', '2002-10-26 14:23:01'),
(363, 5, 0x4b6f6d69, 'Y', '2002-10-26 14:23:01'),
(422, 5, 0x6b7975, 'Y', '2002-10-26 14:23:01'),
(208, 5, 0x4c616e67616765, 'Y', '2002-10-26 14:23:01'),
(394, 5, 0x4465726e69657220616363e873, 'Y', '2003-01-21 03:56:19'),
(368, 5, 0x4465726e69657220636f7570, 'Y', '2016-01-15 13:16:16'),
(215, 5, 0x476175636865, 'Y', '2002-10-26 14:23:01'),
(165, 5, 0x4c69656e73, 'Y', '2002-10-26 14:23:01'),
(80, 5, 0x436f6e6e656374e920656e2074616e7420717565, 'Y', '2003-01-18 14:48:11'),
(246, 5, 0x536520636f6e6e6563746572, 'Y', '2002-10-26 14:23:01'),
(97, 5, 0x44e9636f6e6e6563746572, 'Y', '2002-10-26 14:23:01'),
(400, 5, 0x5065726475, 'Y', '2002-10-26 14:23:01'),
(258, 5, 0x4465206e6f6d6272657573657320696e666f7320737572206c6520676f2e, 'Y', '2003-01-29 01:47:52'),
(437, 5, 0x54656d7073206465206a6575, 'Y', '2002-10-26 14:23:01'),
(220, 5, 0x4f7269656e746174696f6e206475206d656e75, 'Y', '2003-01-29 02:06:15'),
(325, 5, 0x4d657373616765, 'Y', '2002-10-26 14:23:01'),
(307, 5, 0x4c6973746520646573206d65737361676573, 'Y', '2002-10-26 14:23:01'),
(85, 5, 0x4d65737361676573, 'Y', '2002-10-26 14:23:01'),
(346, 5, 0x4d65737361676520656e766f79e9266e6273703b21, 'Y', '2003-11-01 13:45:58'),
(436, 5, 0x6d6f6973, 'Y', '2002-10-26 14:23:01'),
(364, 5, 0x436f757073, 'Y', '2002-10-26 14:23:01'),
(195, 5, 0x436f757073206574206d65737361676573, 'Y', '2002-10-26 14:23:01'),
(378, 5, 0x4d657320696e666f7320706572736f6e6e656c6c6573, 'Y', '2002-10-26 14:23:01'),
(134, 5, 0x4e6f6d, 'Y', '2002-10-26 14:23:01'),
(314, 5, 0x4e6f7576656175, 'Y', '2002-10-26 14:23:01'),
(327, 5, 0x4e6f7576656175206d657373616765, 'Y', '2002-10-26 14:23:01'),
(190, 5, 0x4e6f7576656175206d6f74206465207061737365, 'Y', '2002-10-26 14:23:01'),
(385, 5, 0x4e6f75766561752073756a6574, 'Y', '2016-01-15 13:16:16'),
(460, 5, 0x706167652073756976616e7465, 'Y', '2002-10-26 14:23:01'),
(210, 5, 0x50e972696f6465206465206e756974, 'Y', '2002-10-26 14:23:01'),
(447, 5, 0x4e6967697269, 'Y', '2002-10-26 14:23:01'),
(371, 5, 0x4e6f6e, 'Y', '2003-01-21 03:17:43'),
(391, 5, 0x5061732064652070617274696573, 'Y', '2002-10-26 14:23:01'),
(194, 5, 0x496e666f726d6572207365756c656d656e74, 'Y', '2002-10-26 14:23:01'),
(81, 5, 0x4e6f6e20636f6e6e656374e9, 'Y', '2002-10-26 14:23:01'),
(427, 5, 0x4e6f6d6272652064652070617274696573, 'Y', '2002-10-26 14:23:01'),
(420, 5, 0x4e6f6d627265206465207061727469657320e020616a6f75746572, 'Y', '2002-10-26 14:23:01'),
(185, 5, 0x41637469766974e973, 'Y', '2002-10-26 14:23:01'),
(193, 5, 0x44e9736163746976e9, 'Y', '2003-01-21 03:56:19'),
(189, 5, 0x416e6369656e206d6f74206465207061737365, 'Y', '2002-10-26 14:23:01'),
(252, 5, 0x556e6520666f697320646520706c75732c206269656e76656e75652c20656e20657370e972616e742071756520766f75732061707072e963696572657a206365747465207669736974652e, 'Y', '2002-10-26 14:23:01'),
(388, 5, 0x446973706f6e69626c6520706f7572206a6f756572266e6273703b3f, 'Y', '2007-10-08 18:42:48'),
(359, 5, 0x41647665727361697265, 'Y', '2002-10-26 14:23:01'),
(175, 5, 0x41757472653a, 'Y', '2003-01-21 03:56:19'),
(300, 5, 0x442761757472657320736572766575727320706f7572206a6f75657220617520676f, 'Y', '2003-08-09 02:59:13'),
(95, 5, 0x50616765206372e9e96520656e, 'Y', '2003-07-15 01:20:37'),
(231, 5, 0x506173736572, 'Y', '2002-10-26 14:23:01'),
(226, 5, 0x5061737365, 'Y', '2002-10-26 14:23:01'),
(245, 5, 0x4d6f74206465207061737365, 'Y', '2002-10-26 14:23:01'),
(157, 5, 0x4c65206d6f7420646520706173736520e020e974e9206368616e67e9266e6273703b21, 'Y', '2003-08-24 20:53:03'),
(163, 5, 0x47656e73, 'Y', '2002-10-26 14:23:01'),
(200, 5, 0x52e9676c6167657320706572736f6e6e656c73, 'Y', '2013-03-11 14:48:43'),
(454, 5, 0x566575696c6c657a20706c6163657220766f7320706965727265732064652068616e64696361702e, 'Y', '2003-01-21 03:17:43'),
(426, 5, 0x4a6f75657572, 'Y', '2002-10-26 14:23:01'),
(242, 5, 0x566f757320706f7576657a20766f757320656e726567697374726572206c696272656d656e74206574206a6f756572207175656c7175657320706172746965732e, 'Y', '2002-10-26 14:23:01'),
(345, 5, 0x456e7472657a206c657320696e666f726d6174696f6e73207265717569736573, 'Y', '2002-10-26 14:23:01'),
(243, 5, 0x436f6e6e656374657a2d766f7573207327696c20766f757320706c61ee742e, 'Y', '2003-02-23 14:24:48'),
(461, 5, 0x70616765207072e963e964656e7465, 'Y', '2002-10-26 14:23:01'),
(458, 5, 0x507269736f6e6e69657273, 'Y', '2002-11-14 20:37:27'),
(158, 5, 0x50726f66696c206d6f64696669e9266e6273703b21, 'Y', '2003-08-24 20:53:03'),
(407, 5, 0x43616c63756ce9, 'Y', '2013-03-13 09:12:17'),
(433, 5, 0x48616e64696361702063616c63756ce9, 'Y', '2013-03-13 09:12:17'),
(204, 5, 0x416e6e6f746174696f6e73206465206e6976656175, 'Y', '2007-10-08 18:40:24'),
(366, 5, 0x50617274696520636c617373e965, 'Y', '2003-02-23 14:58:01'),
(205, 5, 0x4e6976656175, 'Y', '2003-02-23 14:21:51'),
(384, 5, 0x4c697265206c6520666f72756d, 'Y', '2002-10-26 14:23:01'),
(344, 5, 0x496e736372697074696f6e, 'Y', '2013-03-11 14:51:09'),
(247, 5, 0x5327696e7363726972652073757220447261676f6e20476f20536572766572, 'Y', '2013-03-11 14:51:09'),
(393, 5, 0x44617465206427656e72656769737472656d656e74, 'Y', '2003-08-20 02:29:00'),
(238, 5, 0x52657469726572206465206c61206c697374652064276f62736572766174696f6e, 'Y', '2003-07-19 20:19:36'),
(315, 5, 0x52e9706f6e6475, 'Y', '2002-10-26 14:23:01'),
(324, 5, 0x52e9706f6e647265, 'Y', '2002-10-26 14:23:01'),
(316, 5, 0x52e9706f6e647265266e6273703b21, 'Y', '2003-10-21 01:08:17'),
(423, 5, 0x4164766572736169726520636c617373e920726571756973, 'Y', '2002-10-26 14:23:01'),
(235, 5, 0x4162616e646f6e6e6572, 'Y', '2002-10-26 14:23:01'),
(225, 5, 0x4162616e646f6e, 'Y', '2002-10-26 14:23:01'),
(234, 5, 0x52657072656e647265206c65206a6575, 'Y', '2002-10-26 14:23:01'),
(217, 5, 0x44726f697465, 'Y', '2002-10-26 14:23:01'),
(273, 5, 0x52e8676c6573, 'Y', '2002-10-26 14:23:01'),
(397, 5, 0x456e20636f757273, 'Y', '2002-10-26 14:23:01'),
(349, 5, 0x5061727469657320656e20636f757273, 'Y', '2002-10-26 14:23:01'),
(351, 5, 0x5061727469657320656e20636f757273206465202573, 'Y', '2003-01-21 03:17:43'),
(229, 5, 0x53636f7265, 'Y', '2002-10-26 14:23:01'),
(417, 5, 0x53656d626c6520ea747265207669646520706f7572206c65206d6f6d656e74, 'Y', '2003-01-21 13:59:39'),
(86, 5, 0x456e766f79657220756e206d657373616765, 'Y', '2002-10-26 14:23:01'),
(336, 5, 0x456e766f796572206c27696e7669746174696f6e, 'Y', '2003-06-20 14:00:14'),
(329, 5, 0x456e766f79657220756e206d657373616765, 'Y', '2013-02-04 16:55:48'),
(396, 5, 0x456e766f79657220756e206d65737361676520e0206c277574696c69736174657572, 'Y', '2003-08-20 02:29:00'),
(326, 5, 0x456e766f796572206c612072e9706f6e7365, 'Y', '2002-10-26 14:23:01'),
(265, 5, '', 'Y', '2003-01-29 01:54:05'),
(305, 5, 0x4c69737465206465207365727665757273, 'Y', '2002-10-26 14:23:01'),
(352, 5, 0x736766, 'Y', '2002-10-26 14:23:01'),
(375, 5, 0x566f6972206c65732070617274696573207465726d696ee96573, 'Y', '2002-10-26 14:23:01'),
(380, 5, 0x566f6972206c65206d657373616765, 'Y', '2002-10-26 14:23:01'),
(374, 5, 0x566f6972206c6573207061727469657320656e20636f757273, 'Y', '2002-10-26 14:23:01'),
(93, 5, 0x506c616e2064752073697465, 'Y', '2002-10-26 14:23:01'),
(361, 5, 0x5461696c6c65, 'Y', '2002-10-26 14:23:01'),
(237, 5, 0x566f6972206c61207061727469652073756976616e7465, 'Y', '2013-04-23 15:16:47'),
(219, 5, 0x426f72647320647520706c6174656175206c697373e973, 'Y', '2003-01-21 03:56:19'),
(8, 5, 0x4c6120706172746965206e27612070617320e974e92074726f7576e9652e204c27696e7669746174696f6e206120706575742dea74726520e974e92064e9636c696ee9652e, 'Y', '2003-05-12 00:28:30'),
(50, 5, 0x496d706f737369626c652064652074726f757665722063657474652070617274696520656e20617474656e74652e20496c206573742070726f6261626c6520717527756e2061647665727361697265206169742064e96ae020e974e92074726f7576e92e, 'Y', '2003-05-12 00:28:30'),
(20, 5, 0x496d706f737369626c652064652064e96d6172726572206c61207061727469652e20417474656e64657a207175656c71756573206d696e757465732070756973207265636f6d6d656e63657a2e, 'Y', '2003-03-31 02:29:39'),
(38, 5, 0x4c65206e6976656175206e652073656d626c652070617320636f72726563742e204176657a2d766f75732070656e73e920e020696e64697175657220ab266e6273703b6b7975266e6273703bbb206f7520ab266e6273703b64616e266e6273703bbb266e6273703b3f, 'Y', '2003-02-23 14:51:27'),
(39, 5, 0x4c65206e6976656175206e652073656d626c652070617320636f72726563742e204e27696e64697175657a2070617320ab266e6273703b6b7975266e6273703bbb206e6920ab266e6273703b64616e266e6273703bbb206963692e, 'Y', '2003-05-12 00:28:30'),
(41, 5, 0x4c61207061727469652064656d616e64e9652065737420696e74726f757661626c652e, 'Y', '2002-10-26 14:23:01'),
(42, 5, 0x4c6520666f72756d2064656d616e64e92065737420696e74726f757661626c652e, 'Y', '2002-10-26 14:23:01'),
(44, 5, 0x4c65206d6573736167652064656d616e64e92065737420696e74726f757661626c652e, 'Y', '2002-10-26 14:23:01'),
(45, 5, 0x4c277574696c697361746575722064656d616e64e92065737420696e74726f757661626c652e, 'Y', '2003-05-12 00:28:30'),
(56, 5, 0x4c652070736575646f6e796d65207370e963696669e92065737420696e636f6e6e75206574206e6520636f72726573706f6e6420e020617563756e207574696c6973617465757220656e72656769737472e92e, 'Y', '2003-01-26 03:53:11'),
(32, 5, 0x566f7573206e6520706f7576657a20706173206a6f7565722e204365206e276573742070617320766f74726520746f75722e, 'Y', '2003-05-12 00:28:30'),
(59, 5, 0x566f7573206e276176657a20706173206c276175746f7269736174696f6e2e205365756c73206c65732074726164756374657572732070657576656e742074726164756972652e, 'Y', '2003-05-12 00:28:30'),
(63, 5, 0x556e652065727265757220696e617474656e647565206573742073757276656e75652070656e64616e74206c27696e73657274696f6e206427756e65206e6f7576656c6c652074726164756374696f6e2064616e73206c61206261736520646520646f6e6ee965732e, 'Y', '2003-05-12 00:28:30'),
(15, 5, 0x556e6520657272657572206573742073757276656e7565206c6f7273206465206c27616a6f7574206465206c61207061727469652064616e73206c61206261736520646520646f6e6ee965732e, 'Y', '2003-05-12 00:28:30'),
(14, 5, 0x556e6520657272657572206573742073757276656e7565206c6f7273206465206c27616a6f7574206475206d6573736167652064616e73206c61206261736520646520646f6e6ee965732e, 'Y', '2003-05-12 00:28:30'),
(2, 5, 0x4c6120706172746965206573742064e96ae0207465726d696ee9652e, 'Y', '2002-10-26 14:23:01'),
(3, 5, 0x4c6120706172746965206e27612070617320656e636f726520636f6d6d656e63e92e, 'Y', '2003-05-12 00:28:30'),
(57, 5, 0x4c65206e697665617520696e697469616c20646f697420ea74726520636f6d7072697320656e747265203330206b797520657420362064616e2e, 'Y', '2003-02-23 14:51:27'),
(29, 5, 0x436574746520616374696f6e206573742072e973657276e96520617578207574696c697361746575727320656e72656769737472e9732e, 'Y', '2003-03-31 02:29:39'),
(66, 5, 0x43657474652070616765206573742072e973657276e965206175782061646d696e697374726174657572732e, 'Y', '2003-01-21 14:53:31'),
(40, 5, 0x417474656e74696f6e2c206c652073756963696465206427756e6520706965727265206e2765737420706173206175746f726973e92061766563206c65732072e8676c657320656e20766967756575722073757220636520736974652e, 'Y', '2003-05-12 00:28:30'),
(46, 5, 0x4c652070736575646f6e796d652063686f697369206573742064e96ae0207574696c6973e92e20566575696c6c657a20656e2063686f6973697220756e2061757472652e, 'Y', '2002-10-26 14:23:01'),
(27, 5, 0x566f757320657420766f747265206164766572736169726520646576657a20696e64697175657220756e206e69766561752c206166696e206465207065726d65747472652061752073797374e86d652064652063616c63756c657220756e2068616e64696361702e, 'Y', '2003-02-23 14:51:27'),
(61, 5, 0x566f7573206e27ea74657320706173206175746f726973e920e02074726164756972652064616e73206365747465206c616e6775652e, 'Y', '2003-05-12 00:28:30'),
(52, 5, 0x566f7573206e276176657a20706173206c65206e69766561752072657175697320706f7572206365747465207061727469652e, 'Y', '2003-05-12 00:28:30'),
(7, 5, 0x566f7573206e6520706f7576657a2070617320766f757320696e766974657220766f75732d6dea6d652e, 'Y', '2003-01-21 14:53:31'),
(51, 5, 0x566f7573206e6520706f7576657a206a6f75657220636f6e74726520766f75732d6dea6d652e, 'Y', '2003-03-31 02:29:39'),
(54, 5, 0x566f7573206e276176657a2070617320696e64697175e920636f7272656374656d656e7420766f747265206d6f742064652070617373652e, 'Y', '2003-05-12 00:28:30'),
(22, 5, 0x566f757320646576657a20666f75726e697220756e206e6f6d2e, 'Y', '2002-10-26 14:23:01'),
(1, 5, 0x566f7573206e6520706f7576657a2070617320706173736572206176616e7420642761766f697220706c6163e920746f75746573206c657320706965727265732064652068616e64696361702e, 'Y', '2003-05-12 00:28:30'),
(9, 5, 0x566f7573206e6520706f7576657a2072657072656e64726520756e652070696572726520717569207669656e74206a75737465206427656e20636170747572657220756e652c2073692063656c6120726570726f6475697420756e6520706f736974696f6e207072e963e964656e74652e20526567617264657a206175206d6f7420ab266e6273703b6b6f266e6273703bbb2064616e73206c65732072e8676c657320656e20766967756575722e, 'Y', '2003-05-12 00:28:30'),
(49, 5, 0x44e9736f6ce92c20766f7573206e6520706f7576657a207375707072696d65722071756520766f732070726f7072657320706172746965732e, 'Y', '2002-10-26 14:23:01'),
(58, 5, 0x566f757320646576657a20646f6e6e657220756e652076616c657572206e756de9726971756520706f7572206365206368616d70732e, 'Y', '2002-10-26 14:23:01'),
(178, 5, 0xc97461742f50726f76696e6365, 'Y', '2002-10-26 14:23:01'),
(82, 5, 0x537461747574, 'Y', '2002-10-26 14:23:01'),
(107, 5, 0x70696572726573, 'Y', '2002-10-26 14:23:01'),
(212, 5, 0x5461696c6c65206465732070696572726573, 'Y', '2002-10-26 14:23:01'),
(281, 5, 0x5374726174e9676965206574206a6172676f6e, 'Y', '2002-10-26 14:23:01'),
(311, 5, 0x53756a6574, 'Y', '2003-01-18 14:48:11'),
(455, 5, 0x56616c69646572207075697320706173736572262331303b266e6273703be0206c61207061727469652073756976616e7465, 'Y', '2003-11-20 03:49:56'),
(456, 5, 0x56616c696465722070756973207265746f75726e6572262331303b266e6273703b266e6273703be0206c61207061676520646520737461747574, 'Y', '2004-03-17 04:51:45'),
(286, 5, 0x506f7374657a20766f73207061727469657320706f7572206c657320766f697220636f6d6d656e74e965732070617220646573206a6f7565757273206465206d65696c6c657572206e69766561752e, 'Y', '2002-10-26 14:23:01'),
(35, 5, 0x4c65206d6f7420646520706173736520646520636f6e6669726d6174696f6e206e6520636f72726573706f6e6420706173206175206d6f7420646520706173736520696e697469616c2e20566575696c6c657a207265636f6d6d656e6365722e, 'Y', '2002-10-26 14:23:01'),
(294, 5, 0x4c27686973746f726971756520636f6d706c6574, 'Y', '2003-08-09 02:59:13'),
(16, 5, 0x4c27616a6f757420647520636f75702064616e73206c61206261736520646520646f6e6ee965732073656d626c652061766f697220e963686f75e92e2043656c61206e2765737420706575742dea7472652070617320756e2070726f626ce86d652e20496c20766f7573206661757420646f6e632076e97269666965722070617220766f7573206dea6d6520737572206c612070617274696520696e6372696d696ee965207369206c6520636f757020766f756c752061206269656e20e974e920656e72656769737472e92e, 'Y', '2003-05-12 00:28:30'),
(17, 5, 0x4c27616a6f75742064616e73206c61206261736520646520646f6e6ee965732073656d626c652061766f697220e963686f75e92e20536920766f7573206e6520706f7576657a2070617320766f757320636f6e6e65637465722c206573736179657a20656e636f726520756e6520666f6973206176616e7420646520636f6e746163746572206c6520737570706f72742e, 'Y', '2003-05-12 00:28:30'),
(33, 5, 0x4c65206d6f7420646520706173736520636f6e7469656e742064657320636172616374e872657320696c6ce9676175782e205365756c73206c657320636172616374e872657320612d7a2c20412d5a2c20302d39206574202d5f2b2e2c3a3b3f21252a20736f6e74206175746f726973e9732e, 'Y', '2002-10-26 14:23:01'),
(322, 5, 0x4c27696e7669746174696f6e206465206365747465202573706172746965257320612064e96ae020e974e920616363657074e9652e, 'Y', '2003-06-20 14:00:14'),
(323, 5, 0x436574746520696e7669746174696f6e20612064e96ae020e974e9207265667573e965206f75206c6120706172746965206120e974e9207375707072696de965, 'Y', '2002-10-26 14:23:01'),
(275, 5, 0x556e207472e87320626f6e207369746520706f75722061707072656e6472652e, 'Y', '2003-01-29 01:47:52'),
(383, 5, 0x4c69737465206465732064697363757373696f6e73, 'Y', '2002-10-26 14:23:01'),
(414, 5, 0x4c696d6974652064652074656d7073, 'Y', '2002-10-26 14:23:01'),
(209, 5, 0x46757365617520686f7261697265, 'Y', '2013-02-04 17:02:23'),
(308, 5, 0xc0, 'Y', '2002-10-26 14:23:01'),
(328, 5, 0xc0202870736575646f6e796d6529, 'Y', '2003-01-21 15:22:38'),
(244, 5, 0x506f757220766f75732062616c616465722c207574696c6973657a2025732e, 'Y', '2002-10-26 14:23:01'),
(90, 5, 0x5472616475697265, 'Y', '2002-10-26 14:23:01'),
(3152, 17, 0x45647974756a2070726f66696c, 'Y', '2013-08-21 00:39:29'),
(3153, 17, 0x506f6b61bf, 'Y', '2013-08-21 00:39:29'),
(3154, 17, 0x4c6f67696e, 'Y', '2013-08-21 00:39:29'),
(3158, 17, 0x46756e6b636a652867b36f736f77616e696529, 'Y', '2013-08-22 11:35:10'),
(55, 5, 0x54797065206465206e697665617520696e636f6e6e75, 'Y', '2003-02-23 14:51:27'),
(216, 5, 0x48617574, 'Y', '2002-10-26 14:23:01'),
(207, 5, 0x5574696c69736572206c65732072e9676c61676573206475206e617669676174657572, 'Y', '2002-10-26 14:23:01'),
(201, 5, 0x50736575646f6e796d65, 'Y', '2003-01-26 04:14:57'),
(84, 5, 0x496e666f7320706572736f6e6e656c6c6573, 'Y', '2003-03-18 15:51:04'),
(88, 5, 0x5574696c6973617465757273, 'Y', '2002-10-26 14:23:01'),
(197, 5, 0x566572746963616c, 'Y', '2002-10-26 14:23:01'),
(276, 5, 0x5472e87320626f6e6e6520696e74726f64756374696f6e206574206269656e20e96372697465206465206c61204272697469736820476f204173736f63696174696f6e2e, 'Y', '2002-10-26 14:23:01'),
(83, 5, 0x53616c6c65206427617474656e7465, 'Y', '2003-08-09 02:59:13'),
(416, 5, 0x486f726c6f676520616374697665206c65207765656b656e64, 'Y', '2013-03-12 14:41:52'),
(377, 5, 0x506167652064276163637565696c, 'Y', '2003-08-09 02:59:13'),
(330, 5, 0x426c616e63, 'Y', '2003-01-21 03:17:43'),
(164, 5, 0x717569207061727469636970656e7420e020447261676f6e, 'Y', '2003-08-09 02:59:13'),
(439, 5, 0x61766563, 'Y', '2002-10-26 14:23:01'),
(104, 5, 0x6176656320257320656e20706c75732070617220746f7572, 'Y', '2004-11-06 14:18:18'),
(103, 5, 0x73616e732062796f796f6d69, 'Y', '2002-10-26 14:23:01'),
(399, 5, 0x4761676ee9, 'Y', '2002-10-26 14:23:01'),
(213, 5, 0x436f756c65757220647520626f6973, 'Y', '2002-10-26 14:23:01'),
(284, 5, 0x5472617661696c6c657220617665632063652073697465207065757420616de96c696f72657220766f7320706172746965732e, 'Y', '2003-01-29 01:47:52'),
(370, 5, 0x4f7569, 'Y', '2002-10-26 14:23:01'),
(288, 5, 0x536920766f757320766f756c657a207361766f69722064652071756f69207061726c656e74206c657320617574726573206a6f75657572732e, 'Y', '2003-01-29 01:47:52'),
(390, 5, 0x432765737420e020766f74726520746f7572206465206a6f7565722064616e73206c657320706172746965732073756976616e746573203a, 'Y', '2003-07-16 23:58:48'),
(415, 6, 0x235061727469646173, 'Y', '2002-10-26 14:23:01'),
(419, 6, 0x257320736f6c616d656e7465, 'Y', '2003-01-31 20:08:18'),
(452, 6, 0x257320706f722025732070696564726173, 'Y', '2002-10-26 14:23:01'),
(450, 6, 0x257320706f72206a7567616461207920257320646520706572696f646f73206578747261, 'Y', '2002-10-26 14:23:01'),
(292, 6, 0x427265766520686973746f726961, 'Y', '2002-10-26 14:23:01'),
(333, 6, 0x41636570746172, 'Y', '2002-10-26 14:23:01'),
(266, 6, 0x556e20736974696f20646520636f6c61626f72616369f36e2e204c6565207920636f6e7472696275796521, 'Y', '2002-10-26 14:23:01'),
(402, 6, 0x416374697669646164, 'Y', '2002-10-26 14:23:01'),
(462, 6, 0x41f16164697220636f6c756d6e61, 'Y', '2002-10-26 14:23:01'),
(425, 6, 0x41f1616469722050617274696461, 'Y', '2002-10-26 14:23:01'),
(239, 6, 0x41f1616469722061206c61206c69737461206465206f6273657276616369f36e, 'Y', '2002-10-26 14:23:01'),
(96, 6, '', 'Y', '2002-10-26 14:23:01'),
(298, 6, 0x556e61206772616e207265636f70696c616369f36e206465207265766973696f6e657320736f627265206c6962726f7320646520676f, 'Y', '2002-10-26 14:23:01'),
(303, 6, 0x556e206772616e207365727669646f722070617261206a7567617220656e207469656d706f207265616c, 'Y', '2002-10-26 14:23:01'),
(301, 6, 0x54616d6269e96e2062617361646f20656e207475726e6f732e205469656e65206d7563686f73206f74726f73206a7565676f732e, 'Y', '2002-10-26 14:23:01'),
(272, 6, 0x4d616e676120736f62726520676f2e205265636f6d656e6461646f21, 'Y', '2002-10-26 14:23:01'),
(306, 6, 0x4c69737461206de17320636f6d706c657461206465207365727669646f726573, 'Y', '2002-10-26 14:23:01'),
(100, 6, 0x79, 'Y', '2002-10-26 14:23:01'),
(274, 6, 0x556e6120496e74726f6475636369f36e20496e746572616374697661, 'Y', '2002-10-26 14:23:01'),
(297, 6, 0x4269626c696f67726166ed617320436f6e204e6f74617320536f62726520476f, 'Y', '2002-10-26 14:23:01'),
(395, 6, 0x496e666f726d616369f36e2062696f6772e166696361, 'Y', '2002-10-26 14:23:01'),
(156, 6, 0xa142696f2061637475616c697a61646121, 'Y', '2002-10-26 14:23:01'),
(331, 6, 0x4e6567726f, 'Y', '2003-08-29 05:36:15'),
(211, 6, 0x4772e16669636f73206465207461626c65726f, 'Y', '2002-10-26 14:23:01'),
(431, 6, 0x54616d61f16f2064656c205461626c65726f, 'Y', '2013-01-26 14:02:10'),
(2458, 17, 0x496e666f726d61636a65206f2067727a65, 'Y', '2013-08-21 00:01:06'),
(451, 6, 0x43616e616469656e7365, 'Y', '2002-10-26 14:23:01'),
(108, 6, 0x42796f796f6d692063616e616469656e7365, 'Y', '2002-10-26 14:23:01'),
(187, 6, 0x43616d626961722062696f, 'Y', '2002-10-26 14:23:01'),
(192, 6, 0x43616d6269617220636f6e7472617365f161, 'Y', '2002-10-26 14:23:01'),
(222, 6, 0x43616d626961722070657266696c, 'Y', '2002-10-26 14:23:01'),
(177, 6, 0x436975646164, 'Y', '2002-10-26 14:23:01'),
(428, 6, 0x456c207469656d706f20636f72726520656c2066696e2064652073656d616e61, 'Y', '2002-10-26 14:23:01'),
(179, 6, '', 'Y', '2002-10-26 14:23:01'),
(360, 6, '', 'Y', '2015-06-28 00:32:56'),
(446, 6, 0x436f6c6f726573, 'Y', '2002-10-26 14:23:01'),
(412, 6, 0x436f6d656e746172696f73, 'Y', '2002-10-26 14:23:01'),
(287, 6, 0x54e9726d696e6f73206a61706f6e65736573206de17320636f6d756e6573, 'Y', '2002-10-26 14:23:01'),
(191, 6, 0x436f6e6669726d617220636f6e7472617365f161, 'Y', '2002-10-26 14:23:01'),
(12, 6, 0x46616c6c6f20616c20636f6e656374617220636f6e206c612062617365206465206461746f732e20496e74e96e74616c6f206e756576616d656e746520656e20756e6f73206d696e75746f732e, 'Y', '2002-10-26 14:23:01'),
(337, 6, 0x436f6e747269627579656e20636f6e20447261676f6e, 'Y', '2002-10-26 14:23:01'),
(406, 6, 0x436f6e76656e63696f6e616c, 'Y', '2002-10-26 14:23:01'),
(432, 6, 0x48e16e646963617020636f6e76656e63696f6e616c20286b6f6d6920646520302e35207369206e6f207365206a75656761206120696775616c64616429, 'Y', '2002-10-26 14:23:01'),
(214, 6, 0x436f6f7264656e6164617320656e206c6f7320636f737461646f73, 'Y', '2002-10-26 14:23:01'),
(48, 6, 0x4e6f20707565646f206578747261706f6c617220656c2076616c6f72206465206c612066756e6369f36e, 'Y', '2002-10-26 14:23:01'),
(19, 6, 0x4e6f20686520706f6469646f2073656c656363696f6e6172206c612062617365206465206461746f732e2045737065726120756e6f73206d696e75746f73206520696e74e96e74616c6f206465206e7565766f2e, 'Y', '2002-10-26 14:23:01'),
(176, 6, 0x5061ed73, 'Y', '2002-10-26 14:23:01'),
(6091, 36, 0x46656c74c3a974656c6573206cc3a970c3a973656b206d656e7476652c20616b746976c3a16cc3a173206ec3a96c6bc3bc6c21, 'Y', '2015-07-23 12:16:04'),
(2671, 17, 0x2e706e67, 'Y', '2013-08-21 00:05:19'),
(421, 6, '', 'Y', '2015-06-28 00:33:58'),
(18, 6, 0x46616c6c6f20656e20736f6c6963697475642064652062617365206465206461746f732e20507275656261206e756576616d656e746520656e20756e6f73206d696e75746f732e, 'Y', '2002-10-26 14:23:01'),
(312, 6, 0x4665636861, 'Y', '2002-10-26 14:23:01'),
(98, 6, 0x64ed61, 'Y', '2002-10-26 14:23:01'),
(99, 6, 0x64ed6173, 'Y', '2002-10-26 14:23:01'),
(334, 6, 0x52656368617a6172, 'Y', '2002-10-26 14:23:01'),
(429, 6, 0x426f72726172, 'Y', '2002-10-26 14:23:01'),
(232, 6, 0x426f727261722070617274696461, 'Y', '2002-10-26 14:23:01'),
(13, 6, 0x46616c6c6f20616c20626f72726172206c6120706172746964612e204573746f2070726f6261626c656d656e7465206e6f2073656120756e2070726f626c656d612e, 'Y', '2002-10-26 14:23:01'),
(227, 6, 0x426f7272616e646f2070617274696461, 'Y', '2002-10-26 14:23:01'),
(332, 6, 0x4469737075746172206c6173206361726163746572ed737469636173206465206c612070617274696461, 'Y', '2002-10-26 14:23:01'),
(94, 6, 0x446f63756d656e746f73, 'Y', '2002-10-26 14:23:01'),
(159, 6, 0x446f63756d656e74616369f36e, 'Y', '2002-10-26 14:23:01'),
(233, 6, 0x4c6973746f, 'Y', '2002-10-26 14:23:01'),
(409, 6, 0x4a7565676f20446f626c65, 'Y', '2002-10-26 14:23:01'),
(218, 6, 0x4162616a6f, 'Y', '2002-10-26 14:23:01'),
(170, 6, 0x446573636172676172206675656e74657320646520447261676f6e, 'Y', '2002-10-26 14:23:01'),
(236, 6, 0x44657363617267617220736766, 'Y', '2002-10-26 14:23:01'),
(173, 6, 0x50e167696e612064656c2070726f796563746f20447261676f6e20656e20736f75726365666f726765, 'Y', '2002-10-26 14:23:01'),
(379, 6, 0x4564697461722062696f, 'Y', '2002-10-26 14:23:01'),
(188, 6, 0x45646974617220636f6e7472617365f161, 'Y', '2002-10-26 14:23:01'),
(199, 6, 0x4564697461722070657266696c, 'Y', '2002-10-26 14:23:01'),
(181, 6, 0x436f7272656f20656c65637472f36e69636f, 'Y', '2015-06-28 00:24:29'),
(206, 6, 0x4e6f74696669636163696f6e657320706f7220652d6d61696c, 'Y', '2002-10-26 14:23:01'),
(299, 6, 0x5469656e6461206575726f706561, 'Y', '2002-10-26 14:23:01'),
(408, 6, 0x4120696775616c64616420636f6e206e6967697269, 'Y', '2002-10-26 14:23:01'),
(453, 6, 0x657874726120706f72206a7567616461, 'Y', '2002-10-26 14:23:01'),
(92, 6, '', 'Y', '2002-10-26 14:23:01'),
(398, 6, 0x4163616261646173, 'Y', '2002-10-26 14:23:01'),
(348, 6, 0x5061727469646173207465726d696e61646173, 'Y', '2015-06-21 06:01:28'),
(350, 6, 0x5061727469646173207465726d696e616461732070617261202573, 'Y', '2015-06-21 06:01:28'),
(443, 6, 0x5469656d706f20466973686572, 'Y', '2002-10-26 14:23:01'),
(309, 6, 0x42616e6465726173, 'Y', '2002-10-26 14:23:01'),
(442, 6, 0x70617261, 'Y', '2002-10-26 14:23:01'),
(223, 6, 0xbf486173206f6c76696461646f20747520636f6e7472617365f1613f, 'Y', '2002-10-26 14:23:01'),
(136, 6, 0x466f726f, 'Y', '2015-06-28 00:08:40'),
(91, 6, 0x466f726f73, 'Y', '2004-11-14 21:16:16'),
(293, 6, '', 'Y', '2013-11-12 12:08:01'),
(161, 6, 0x50726567756e746173206de173206672656375656e746573, 'Y', '2002-10-26 14:23:01'),
(260, 6, 0x50726567756e746173206de173206672656375656e74657320736f62726520676f207061726120656c20677275706f206465206e6f746963696173207265632e67616d65732e676f, 'Y', '2002-10-26 14:23:01'),
(310, 6, 0x4465, 'Y', '2002-10-26 14:23:01'),
(196, 6, 0x5461626c65726f20636f6d706c65746f2079206d656e73616a6573, 'Y', '2002-10-26 14:23:01'),
(202, 6, 0x4e6f6d62726520636f6d706c65746f, 'Y', '2002-10-26 14:23:01'),
(230, 6, 0x50617274696461, 'Y', '2002-10-26 14:23:01'),
(109, 6, 0xa1506172746964612061f1616469646121, 'Y', '2002-10-26 14:23:01'),
(253, 6, 0xa15061727469646120626f727261646121, 'Y', '2002-10-26 14:23:01'),
(445, 6, 0x4eba2070617274696461, 'Y', '2002-10-26 14:23:01'),
(254, 6, 0xa14a7567616e646f207061727469646121, 'Y', '2002-10-26 14:23:01'),
(183, 6, 0x507265666572656e63696173206465206a7565676f, 'Y', '2002-10-26 14:23:01'),
(89, 6, 0x5061727469646173, 'Y', '2002-10-26 14:23:01'),
(256, 6, 0x496e666f726d616369f36e2047656e6572616c, 'Y', '2002-10-26 14:23:01'),
(457, 6, 0x417472e173, 'Y', '2002-10-26 14:23:01'),
(296, 6, 0x4c6962726f7320646520676f2c206571756970616d69656e746f20792070726f6772616d6173, 'Y', '2002-10-26 14:23:01'),
(259, 6, 0x46415120736f62726520476f, 'Y', '2003-01-31 20:13:28'),
(267, 6, 0x4e6f74696369617320736f62726520476f, 'Y', '2002-10-26 14:23:01'),
(283, 6, 0x50726f626c656d617320646520476f, 'Y', '2002-10-26 14:23:01'),
(285, 6, 0x457363616c65726120646520656e7365f1616e7a6120646520476f, 'Y', '2002-10-26 14:23:01'),
(362, 6, 0x48e16e6469636170, 'Y', '2002-10-26 14:23:01'),
(271, 6, '', 'Y', '2002-10-26 14:23:01'),
(291, 6, 0x486973746f726961, 'Y', '2002-10-26 14:23:01'),
(184, 6, '', 'Y', '2002-10-26 14:23:01'),
(240, 6, 0x5072696e636970616c, 'Y', '2002-10-26 14:23:01'),
(180, 6, 0x50e167696e6120776562, 'Y', '2002-10-26 14:23:01'),
(198, 6, '', 'Y', '2002-10-26 14:23:01'),
(101, 6, 0x686f7261, 'Y', '2002-10-26 14:23:01'),
(102, 6, 0x686f726173, 'Y', '2002-10-26 14:23:01'),
(182, 6, 0x4efa6d65726f20494351, 'Y', '2002-10-26 14:23:01'),
(132, 6, '', 'Y', '2002-10-26 14:23:01'),
(424, 6, 0x52616e676f20656e747265, 'Y', '2015-08-04 15:37:00'),
(60, 6, 0x5369207175696572657320617975646172206120747261647563697220647261676f6e2c20706f72206661766f722064656a6120756e206d656e73616a6520656e20656c20666f726f206465205472616475636369f36e2e, 'Y', '2007-11-03 15:54:40'),
(169, 6, 0x736920747520717569657265732074752070726f70696f20447261676f6e, 'Y', '2002-10-26 14:23:01'),
(411, 6, '', 'Y', '2013-12-02 17:23:03'),
(295, 6, 0x456e206361736f20717565206173706972657320612073616265726c6f20746f646f2e, 'Y', '2002-10-26 14:23:01'),
(168, 6, 0x496e737472756363696f6e657320646520696e7374616c616369f36e2e, 'Y', '2002-10-26 14:23:01'),
(248, 6, 0x496e74726f6475636369f36e, 'Y', '2002-10-26 14:23:01'),
(160, 6, 0x496e74726f6475636369f36e206120447261676f6e, 'Y', '2002-10-26 14:23:01'),
(335, 6, 0x4d656e73616a6520646520696e766974616369f36e, 'Y', '2002-10-26 14:23:01'),
(87, 6, 0x496e76697461722061206a75676172, 'Y', '2016-01-12 21:11:42'),
(373, 6, 0x496e766974617220612065737465207573756172696f, 'Y', '2002-10-26 14:23:01'),
(257, 6, 0x50e167696e6173206465204a616e2076616e2064657220537465656e73, 'Y', '2002-10-26 14:23:01'),
(449, 6, 0x4a61706f6ee973, 'Y', '2002-10-26 14:23:01'),
(106, 6, 0x42796f796f6d69206a61706f6ee973, 'Y', '2002-10-26 14:23:01'),
(372, 6, 0x456d7061746520286a69676f29, 'Y', '2015-06-15 16:12:21'),
(430, 6, 0x4a75676172, 'Y', '2015-06-24 05:24:19'),
(363, 6, '', 'Y', '2002-10-26 14:23:01'),
(422, 6, '', 'Y', '2015-06-28 00:33:58'),
(208, 6, 0x4964696f6d61, 'Y', '2002-10-26 14:23:01'),
(394, 6, 0xda6c74696d6f2041636365736f, 'Y', '2002-10-26 14:23:01'),
(368, 6, 0xda6c74696d61206a7567616461, 'Y', '2015-08-02 23:30:33'),
(215, 6, 0x497a71756965726461, 'Y', '2002-10-26 14:23:01'),
(165, 6, 0x456e6c61636573, 'Y', '2002-10-26 14:23:01'),
(80, 6, 0x436f6e65637461646f20636f6d6f, 'Y', '2002-10-26 14:23:01'),
(246, 6, 0x41636365646572, 'Y', '2002-10-26 14:23:01'),
(97, 6, 0x446573636f6e6563746172, 'Y', '2002-10-26 14:23:01'),
(400, 6, 0x5065726469646173, 'Y', '2002-10-26 14:23:01'),
(258, 6, 0x4d7563686120696e666f726d616369f36e20736f62726520676f, 'Y', '2002-10-26 14:23:01'),
(437, 6, 0x5469656d706f207072696e636970616c, 'Y', '2015-10-13 04:53:53'),
(220, 6, 0x4f7269656e74616369f36e2064656c206d656efa, 'Y', '2002-10-26 14:23:01'),
(325, 6, 0x4d656e73616a65, 'Y', '2002-10-26 14:23:01'),
(307, 6, 0x4c69737461206465206d656e73616a6573, 'Y', '2002-10-26 14:23:01'),
(85, 6, 0x4d656e73616a6573, 'Y', '2002-10-26 14:23:01'),
(346, 6, 0xa14d656e73616a6520656e766961646f21, 'Y', '2002-10-26 14:23:01'),
(436, 6, 0x6d65736573, 'Y', '2002-10-26 14:23:01'),
(364, 6, 0x4a756761646173, 'Y', '2002-10-26 14:23:01'),
(195, 6, 0x4a7567616461732079206d656e73616a6573, 'Y', '2002-10-26 14:23:01'),
(1887, 17, 0x44726f647a79206d69b36fb66e69637920676f2c0d0a3c703e0d0a70727a657a207072617769652073696564656d206c617420444753206d6961b320686f7374696e672070726f7761647a6f6e79207570727a656a6d69652070727a657a2053616d7572616a44617461206361b36b6f7769636965207a61206461726d6f2e204a65737465b66d7920626172647a6f2077647a69ea637a6e69207a612077737061726369652c206d6961b36f20746f206b6c75637a6f7765207a6e61637a656e696520646c612070727a65747277616e696120692073756b63657375204447532e0d0a0d0a4f642073616d65676f20706f637ab1746b75206f62736572776f77616c69b66d7920737a79626b6920726f7a77f36a20736572776572612c2070727a657a20636f2053616d7572616a44617461206d6961b3206e696573746574792070726f626c656d79207a207574727a796d7977616e69656d20646c61206e617320686f7374696e67752e0d0a0d0a5a6520777a676cea6475206e61206369b167b3b1207779736f6bb120616b7479776e6fb6e6206e6120444753206d757369656c69b66d792077796b6f727a79737461e620b6726f646b6920646c612075bf79746b6f776e696bf377202d20737461b36f207369ea206e69657a62ea646e652070727a656e69657369656e6965206e61206f736f626e652075727ab1647a656e696520447261676f6e20476f205365727665722e0d0a0d0a5720626fbf65206e61726f647a656e69652032303037207a6f737461b3207a6f7267616e697a6f77616e79207374617279207365727765722e, 'Y', '2013-08-20 23:45:40'),
(378, 6, 0x4d6920696e666f726d616369f36e206465207573756172696f, 'Y', '2002-10-26 14:23:01'),
(134, 6, 0x4e6f6d627265, 'Y', '2002-10-26 14:23:01'),
(314, 6, 0x4e7565766f, 'Y', '2002-10-26 14:23:01'),
(327, 6, 0x4d656e73616a65206e7565766f, 'Y', '2002-10-26 14:23:01'),
(190, 6, 0x4e7565766120636f6e7472617365f161, 'Y', '2002-10-26 14:23:01'),
(385, 6, 0x4e7565766f2054656d61, 'Y', '2013-01-26 14:02:10'),
(460, 6, 0x50e167696e61207369677569656e7465, 'Y', '2015-06-18 22:35:19'),
(210, 6, 0x486f726172696f206e6f637475726e6f, 'Y', '2002-10-26 14:23:01'),
(447, 6, '', 'Y', '2002-10-26 14:23:01'),
(371, 6, '', 'Y', '2015-06-28 00:33:58'),
(391, 6, 0x4e6f2073652068616e20656e636f6e747261646f207061727469646173, 'Y', '2002-10-26 14:23:01'),
(194, 6, 0x536f6c6f206e6f74696669636172, 'Y', '2002-10-26 14:23:01'),
(81, 6, 0x4e6f20636f6e65637461646f, 'Y', '2002-10-26 14:23:01'),
(427, 6, 0x4efa6d65726f206465207061727469646173, 'Y', '2002-10-26 14:23:01'),
(420, 6, 0x4efa6d65726f20646520706172746964617320612061f161646972, 'Y', '2002-10-26 14:23:01'),
(185, 6, 0x4f637570616369f36e, 'Y', '2002-10-26 14:23:01'),
(193, 6, 0x4170616761646f, 'Y', '2002-10-26 14:23:01'),
(189, 6, 0x5669656a6120636f6e7472617365f161, 'Y', '2002-10-26 14:23:01');
INSERT INTO `Translations` (`Original_ID`, `Language_ID`, `Text`, `Translated`, `Updated`) VALUES
(252, 6, 0x4269656e76656e69646f206f7472612076657a2e20a144697366727574612064652074752076697369746121, 'Y', '2002-10-26 14:23:01'),
(388, 6, 0xbf446973706f6e69626c652070617261206a756761723f, 'Y', '2002-10-26 14:23:01'),
(359, 6, 0x4f706f6e656e7465, 'Y', '2002-10-26 14:23:01'),
(175, 6, 0x4f74726f733a, 'Y', '2002-10-26 14:23:01'),
(300, 6, 0x4f74726f73207365727669646f72657320646520676f, 'Y', '2002-10-26 14:23:01'),
(95, 6, 0x50e167696e612063726561646120656e, 'Y', '2002-10-26 14:23:01'),
(231, 6, 0x5061736172, 'Y', '2002-10-26 14:23:01'),
(226, 6, 0x506173616e646f, 'Y', '2002-10-26 14:23:01'),
(245, 6, 0x436f6e7472617365f161, 'Y', '2002-10-26 14:23:01'),
(157, 6, 0xa1436f6e7472617365f1612063616d626961646121, 'Y', '2002-10-26 14:23:01'),
(163, 6, 0x47656e7465, 'Y', '2002-10-26 14:23:01'),
(200, 6, 0x496e666f726d616369f36e20706572736f6e616c, 'Y', '2002-10-26 14:23:01'),
(454, 6, 0x506f72206661766f722c20636f6c6f63612074757320706965647261732064652068e16e64696361702c, 'Y', '2015-06-25 04:13:55'),
(426, 6, 0x4a756761646f72, 'Y', '2002-10-26 14:23:01'),
(242, 6, 0xa1526567ed7374726174652079206a7565676120616c67756e61207061727469646121, 'Y', '2002-10-26 14:23:01'),
(345, 6, 0x496e74726f6475636520696e666f726d616369f36e20706f72206661766f72, 'Y', '2002-10-26 14:23:01'),
(243, 6, 0x456e74726120706f72206661766f722e, 'Y', '2002-10-26 14:23:01'),
(461, 6, 0x50e167696e6120616e746572696f72, 'Y', '2015-06-18 22:35:19'),
(458, 6, 0x50726973696f6e65726f73, 'Y', '2002-10-26 14:23:01'),
(158, 6, 0xa150657266696c206d6f646966696361646f21, 'Y', '2002-10-26 14:23:01'),
(407, 6, 0x416465637561646f, 'Y', '2002-10-26 14:23:01'),
(433, 6, 0x48e16e6469636170207072656369736f, 'Y', '2015-06-26 17:37:43'),
(204, 6, 0x496e666f2064652072616e676f, 'Y', '2015-08-02 23:28:22'),
(366, 6, 0x41666563746120656c2072616e676f, 'Y', '2015-06-24 04:59:01'),
(205, 6, 0x52616e676f, 'Y', '2015-06-23 21:12:32'),
(384, 6, 0x4c6565722066f372756d, 'Y', '2002-10-26 14:23:01'),
(344, 6, 0x5265676973747261727465, 'Y', '2002-10-26 14:23:01'),
(247, 6, 0x526567697374726172206e75657661206375656e7461, 'Y', '2002-10-26 14:23:01'),
(393, 6, 0x466563686120646520726567697374726f, 'Y', '2002-10-26 14:23:01'),
(238, 6, 0x517569746172206465206c61206c69737461206465206f6273657276616369f36e, 'Y', '2002-10-26 14:23:01'),
(315, 6, 0x436f6e7465737461646f, 'Y', '2002-10-26 14:23:01'),
(324, 6, 0x436f6e746573746172, 'Y', '2002-10-26 14:23:01'),
(316, 6, 0xa1436f6e746573746121, 'Y', '2002-10-26 14:23:01'),
(423, 6, 0x526571756965726520756e20726976616c20636f6e2072e174696e67, 'Y', '2002-10-26 14:23:01'),
(235, 6, 0x4162616e646f6e6172, 'Y', '2004-11-14 21:18:04'),
(225, 6, 0x4162616e646f6e616e646f, 'Y', '2004-11-14 21:18:04'),
(234, 6, 0x436f6e74696e756172206a7567616e646f, 'Y', '2002-10-26 14:23:01'),
(217, 6, 0x44657265636861, 'Y', '2002-10-26 14:23:01'),
(273, 6, 0x5265676c6173, 'Y', '2002-10-26 14:23:01'),
(397, 6, 0x456e206d6172636861, 'Y', '2002-10-26 14:23:01'),
(349, 6, 0x506172746964617320656e206d6172636861, 'Y', '2002-10-26 14:23:01'),
(351, 6, 0x506172746964617320656e206d61726368612070617261202573, 'Y', '2002-10-26 14:23:01'),
(229, 6, 0x4d61726361646f72, 'Y', '2002-10-26 14:23:01'),
(417, 6, 0x50617265636520657374617220766163ed6120656e2065737465206d6f6d656e746f, 'Y', '2002-10-26 14:23:01'),
(86, 6, 0x456e7669617220756e206d656e73616a65, 'Y', '2002-10-26 14:23:01'),
(336, 6, 0x456e7669617220756e6120696e766974616369f36e, 'Y', '2002-10-26 14:23:01'),
(329, 6, 0x456e76696172206d656e73616a65, 'Y', '2002-10-26 14:23:01'),
(396, 6, 0x456e7669617220756e206d656e73616a6520616c207573756172696f, 'Y', '2002-10-26 14:23:01'),
(326, 6, 0x456e7669617220636f6e74657374616369f36e, 'Y', '2002-10-26 14:23:01'),
(265, 6, 0x4269626c696f746563612064656c2053656e736569, 'Y', '2002-10-26 14:23:01'),
(305, 6, 0x4c69737461206465207365727669646f726573, 'Y', '2002-10-26 14:23:01'),
(352, 6, '', 'Y', '2015-06-28 00:32:56'),
(375, 6, 0x5061727469646173207465726d696e61646173, 'Y', '2015-06-21 06:01:28'),
(380, 6, 0x4d6f7374726172206d656e73616a65, 'Y', '2002-10-26 14:23:01'),
(374, 6, 0x506172746964617320656e206d6172636861, 'Y', '2002-10-26 14:23:01'),
(93, 6, 0x4d6170612064656c20736974696f, 'Y', '2002-10-26 14:23:01'),
(361, 6, 0x54616d61f16f, 'Y', '2002-10-26 14:23:01'),
(237, 6, 0x49722061206c61207369677569656e74652070617274696461, 'Y', '2002-10-26 14:23:01'),
(219, 6, 0x426f726465206465207461626c65726f207375617665, 'Y', '2002-10-26 14:23:01'),
(8, 6, 0x4e6f20707565646f20656e636f6e74726172206c6120706172746964612061206c612071756520657374e17320696e76697461646f2e20bf4c61206861732072656368617a61646f2079613f, 'Y', '2002-10-26 14:23:01'),
(50, 6, 0x4e6f207365207075646f20656e636f6e74726172206c61207061727469646120656e206c612073616c61206465206573706572612e2050726f6261626c656d656e746520616c677569656e20796120736520686120756e69646f206120656c6c612e, 'Y', '2015-09-16 01:59:32'),
(20, 6, 0x4e6f207365207075646f20696e6963696172206c6120706172746964612e2045737065726120756e6f73206d696e75746f73206520696e74e96e74616c6f206465206e7565766f2e, 'Y', '2015-09-16 01:59:32'),
(41, 6, 0x4e6f20707565646f20656e636f6e747261722065736120706172746964612e, 'Y', '2002-10-26 14:23:01'),
(42, 6, 0x4e6f20707565646f20656e636f6e747261722065736520666f726f2e, 'Y', '2002-10-26 14:23:01'),
(44, 6, 0x4e6f20707565646f20656e636f6e7472617220656c206d656e73616a65207175652071756965726573207665722e, 'Y', '2002-10-26 14:23:01'),
(45, 6, 0x4e6f20707565646f20656e636f6e7472617220657365207573756172696f2e, 'Y', '2002-10-26 14:23:01'),
(56, 6, 0x4e6f20636f6e6f7a636f206e6164696520636f6e20657365206964206465207573756172696f2e, 'Y', '2002-10-26 14:23:01'),
(32, 6, 0x4e6f206573207475207475726e6f2e, 'Y', '2002-10-26 14:23:01'),
(59, 6, 0x53f36c6f206c6f7320747261647563746f726573207469656e656e207065726d697469646f2074726164756369722e, 'Y', '2002-10-26 14:23:01'),
(63, 6, 0x48612068616269646f20756e2070726f626c656d61206375616e646f20696e74656e7461626120696e736572746172206c6173206e75657661732074726164756363696f6e657320656e206c612062617365206465206461746f732e, 'Y', '2002-10-26 14:23:01'),
(15, 6, 0x48612066616c6c61646f206c6120696e636c757369f36e206465206c61207061727469646120656e206c612062617365206465206461746f732e, 'Y', '2002-10-26 14:23:01'),
(14, 6, 0x4572726f7220616c206775617264617220656c206d656e73616a6520656e206c612062617365206465206461746f732e, 'Y', '2002-10-26 14:23:01'),
(2, 6, 0x4c6f207369656e746f2c206c6120706172746964612079612068612066696e616c697a61646f2e, 'Y', '2002-10-26 14:23:01'),
(3, 6, 0x4c6f207369656e746f2c206c612070617274696461206e6f20686120656d70657a61646f20746f646176ed612e, 'Y', '2002-10-26 14:23:01'),
(57, 6, 0x456c2072e174696e6720696e696369616c206465626520657374617220656e747265203330206b7975207920362064616e2e, 'Y', '2002-10-26 14:23:01'),
(29, 6, 0x4e6f20657374e1207065726d697469646f207061726120696e76697461646f732c20726567ed737472617465207072696d65726f2e, 'Y', '2002-10-26 14:23:01'),
(66, 6, 0x457374612070e167696e6120657320736f6c6f20706172612061646d696e6973747261646f7265732e, 'Y', '2002-10-26 14:23:01'),
(40, 6, 0x456c20737569636964696f206e6f20657374e1207065726d697469646f2062616a6f206c6173207265676c61732061637475616c65732e, 'Y', '2002-10-26 14:23:01'),
(46, 6, 0x457365206964206465207573756172696f207961206578697374652e20456c696a65206f74726f2e, 'Y', '2002-10-26 14:23:01'),
(27, 6, 0x5475206f706f6e656e746520792074fa206e656365736974616e20756e2072e174696e6720696e696369616c2070617261207175652070756564612063616c63756c617220656c2068e16e6469636170206170726f706961646f2e, 'Y', '2002-10-26 14:23:01'),
(61, 6, 0x4e6f20657374e173206175746f72697a61646f206120747261647563697220656e20657365206964696f6d612e, 'Y', '2002-10-26 14:23:01'),
(52, 6, 0x54fa206e6f20657374e17320656e20656c2072616e676f2064652072e174696e672065737065636966696361646f2e, 'Y', '2002-10-26 14:23:01'),
(7, 6, 0x4e6f2070756564657320696e7669746172746520612074ed206d69736d6f2e, 'Y', '2002-10-26 14:23:01'),
(51, 6, 0x4e6f2070756564657320756e6972746520612074752070726f70696120706172746964612e, 'Y', '2002-10-26 14:23:01'),
(54, 6, 0x4e6f20686173206573637269746f20636f7272656374616d656e746520747520636f6e7472617365f1612061637475616c2e, 'Y', '2002-10-26 14:23:01'),
(22, 6, 0x5469656e65732071756520696e74726f647563697220756e206e6f6d6272652e, 'Y', '2002-10-26 14:23:01'),
(1, 6, 0x4e6f2070756564657320706173617220616e74657320646520636f6c6f63617220746f646173206c617320706965647261732064652068e16e64696361702e, 'Y', '2002-10-26 14:23:01'),
(49, 6, 0x53f36c6f2070756564657320626f727261722074752070726f70696120706172746964612e, 'Y', '2002-10-26 14:23:01'),
(58, 6, 0x48617320696e74726f64756369646f20756e2076616c6f72206e6f206e756de97269636f20656e20756e2063616d706f206e756de97269636f2e, 'Y', '2002-10-26 14:23:01'),
(178, 6, 0x45737461646f, 'Y', '2002-10-26 14:23:01'),
(82, 6, 0x45737461646f, 'Y', '2002-10-26 14:23:01'),
(107, 6, 0x70696564726173, 'Y', '2002-10-26 14:23:01'),
(212, 6, 0x54616d61f16f20646520706965647261, 'Y', '2002-10-26 14:23:01'),
(281, 6, 0x4573747261746567696120792074e9726d696e6f73, 'Y', '2002-10-26 14:23:01'),
(311, 6, 0x54656d61, 'Y', '2002-10-26 14:23:01'),
(455, 6, 0x456e7669617220652069722061206c61207369677569656e74652070617274696461, 'Y', '2002-10-26 14:23:01'),
(456, 6, 0x456e7669617220652069722061206c612070e167696e612064652065737461646f, 'Y', '2002-10-26 14:23:01'),
(286, 6, 0x456e76ed6120747573207061727469646173207920736572e16e20636f6d656e746164617320706f7220756e206a756761646f72206de17320667565727465207175652074fa2e, 'Y', '2002-10-26 14:23:01'),
(35, 6, 0x4c6120636f6e7472617365f161207920737520636f6e6669726d616369f36e206e6f20636f696e636964656e2e20506f72206661766f7220726574726f636564652079207265696e74656e74612e, 'Y', '2002-10-26 14:23:01'),
(294, 6, 0x486973746f726961206de17320636f6d706c657461, 'Y', '2002-10-26 14:23:01'),
(16, 6, 0x4c61206a7567616461206e6f20686120706f6469646f20736572207265676973747261646120656e206c612062617365206465206461746f732e205675656c76652061206c612070617274696461207920636f6d707275656261207369206c61206a756761646120657374e12e, 'Y', '2002-10-26 14:23:01'),
(17, 6, 0x4e6f2068616e20706f6469646f2073657220636f6d70726f6261646f7320747573206461746f732e20507275656261206f7472612076657a2079207369207675656c766520612066616c6c617220636f6e746163746120636f6e206e6f736f74726f732e, 'Y', '2002-10-26 14:23:01'),
(33, 6, 0x4c6120636f6e7472617365f16120636f6e7469656e652063617261637465726573206e6f2076e16c69646f732c2073f36c6f206c6f73206361726163746572657320612d7a2c20412d5a2c20302d392079202d5f2b2e2c3a3b3f21252a20736f6e207065726d697469646f732e, 'Y', '2002-10-26 14:23:01'),
(322, 6, 0x4573746120696e766974616369f36e206120756e61202573706172746964612573207961206861207369646f2061636570746164612e, 'Y', '2003-08-29 05:36:15'),
(323, 6, 0x4c6120696e766974616369f36e206861207369646f2072656368617a616461206f206c612070617274696461206861207369646f20626f7272616461, 'Y', '2002-10-26 14:23:01'),
(275, 6, 0x4c75676172206d757920616772616461626c65207061726120617072656e6465722e, 'Y', '2002-10-26 14:23:01'),
(383, 6, 0x53656775697220656c2068696c6f, 'Y', '2002-10-26 14:23:01'),
(414, 6, 0x5469656d706f, 'Y', '2015-08-06 19:50:27'),
(209, 6, 0x5a6f6e6120686f7261726961, 'Y', '2002-10-26 14:23:01'),
(308, 6, 0x50617261, 'Y', '2002-10-26 14:23:01'),
(328, 6, 0x506172612028494429, 'Y', '2015-06-24 22:27:57'),
(244, 6, 0x5061726120656368617220756e2076697374617a6f2c207573612025732e, 'Y', '2002-10-26 14:23:01'),
(90, 6, 0x5472616475636972, 'Y', '2002-10-26 14:23:01'),
(3149, 17, '', 'Y', '2013-08-21 00:39:29'),
(3150, 17, '', 'Y', '2013-08-21 00:39:29'),
(3151, 17, 0x45647974756a2075726c6f70, 'Y', '2013-08-21 00:39:29'),
(55, 6, 0x43617465676f72ed6120646573636f6e6f636964612e, 'Y', '2002-10-26 14:23:01'),
(216, 6, 0x417272696261, 'Y', '2002-10-26 14:23:01'),
(207, 6, 0x5573617220636f6e6669677572616369f36e2064656c206e6176656761646f72, 'Y', '2002-10-26 14:23:01'),
(201, 6, 0x4964206465207573756172696f, 'Y', '2002-10-26 14:23:01'),
(84, 6, 0x496e666f2e206465205573756172696f, 'Y', '2016-01-12 21:12:47'),
(88, 6, 0x5573756172696f73, 'Y', '2002-10-26 14:23:01'),
(197, 6, '', 'Y', '2002-10-26 14:23:01'),
(276, 6, 0x4d7579206275656e6120696e74726f6475636369f36e20706f72206c612041736f6369616369f36e2042726974e16e69636120646520476f, 'Y', '2002-10-26 14:23:01'),
(83, 6, 0x53616c6120646520657370657261, 'Y', '2002-10-26 14:23:01'),
(416, 6, 0x52656c6f6a20656e2066696e2064652073656d616e61, 'Y', '2002-10-26 14:23:01'),
(377, 6, 0x50e167696e61206465206269656e76656e696461, 'Y', '2002-10-26 14:23:01'),
(330, 6, 0x426c616e636f, 'Y', '2003-08-29 05:36:15'),
(164, 6, 0x717569656e657320636f6e747269627579656e20636f6e20447261676f6e, 'Y', '2002-10-26 14:23:01'),
(439, 6, 0x636f6e, 'Y', '2002-10-26 14:23:01'),
(104, 6, 0x636f6e20257320657874726120706f72206d6f76696d69656e746f, 'Y', '2002-10-26 14:23:01'),
(103, 6, 0x73696e2062796f796f6d69, 'Y', '2002-10-26 14:23:01'),
(399, 6, 0x47616e61646173, 'Y', '2002-10-26 14:23:01'),
(213, 6, 0x436f6c6f72206465206c61206d6164657261, 'Y', '2002-10-26 14:23:01'),
(284, 6, 0x54726162616a617220656e206573746f7320707565646520617975646172746520656e207475206a7565676f2e, 'Y', '2002-10-26 14:23:01'),
(370, 6, 0x53ed, 'Y', '2002-10-26 14:23:01'),
(288, 6, 0x50617261207361626572206c6f20717565206f70696e616e206f74726f73206a756761646f7265732e, 'Y', '2002-10-26 14:23:01'),
(390, 6, 0x4573207475207475726e6f20656e206c6173207369677569656e746573207061727469646173, 'Y', '2002-10-26 14:23:01'),
(415, 7, 0x506fe8657420686572, 'Y', '2002-10-26 14:23:01'),
(419, 7, 0x706f757a65202573, 'Y', '2002-10-26 14:23:01'),
(452, 7, 0x2573206e61202573206b616d656ef9, 'Y', '2002-10-26 14:23:01'),
(450, 7, 0x2573206e6120746168206120257320657874726120706572696f64, 'Y', '2002-10-26 14:23:01'),
(333, 7, 0x50f8696a6d6f7574, 'Y', '2002-10-26 14:23:01'),
(402, 7, 0x416b746976697461, 'Y', '2002-10-26 14:23:01'),
(462, 7, 0x50f86964617420736c6f75706563, 'Y', '2002-10-26 14:23:01'),
(425, 7, 0x50f86964617420687275, 'Y', '2002-10-26 14:23:01'),
(239, 7, 0x50f86964617420646f2073657a6e616d7520736c65646f76616efd6368, 'Y', '2002-10-26 14:23:01'),
(96, 7, 0x537072e1766365, 'Y', '2002-10-26 14:23:01'),
(100, 7, 0x61, 'Y', '2002-10-26 14:23:01'),
(395, 7, 0x42696f6772616669636be920696e666f726d616365, 'Y', '2002-10-26 14:23:01'),
(156, 7, 0x42696f67726166696520616b7475616c697a6f76e16e6121, 'Y', '2002-10-26 14:23:01'),
(331, 7, 0xe865726efd, 'Y', '2002-10-26 14:23:01'),
(211, 7, 0x567a686c6564206465736b79, 'Y', '2002-10-26 14:23:01'),
(431, 7, 0x56656c696b6f7374206465736b79, 'Y', '2016-07-20 16:20:15'),
(2377, 17, 0x45647974756a20476f62616e, 'Y', '2013-08-21 00:01:06'),
(451, 7, 0x4b616e6164736be9, 'Y', '2002-10-26 14:23:01'),
(108, 7, 0x6b616e6164736be920626a6f6a6f6d69, 'Y', '2002-10-26 14:23:01'),
(187, 7, 0x5a6dec6e69742062696f677261666969, 'Y', '2002-10-26 14:23:01'),
(192, 7, 0x5a6dec6e6974206865736c6f, 'Y', '2002-10-26 14:23:01'),
(222, 7, 0x5a6dec6e69742070726f66696c, 'Y', '2002-10-26 14:23:01'),
(177, 7, 0x4dec73746f, 'Y', '2002-10-26 14:23:01'),
(428, 7, 0xc861732062ecbeed206f2076ed6b656e6475, 'Y', '2002-10-26 14:23:01'),
(179, 7, 0x4b6c7562, 'Y', '2002-10-26 14:23:01'),
(360, 7, 0x4261727661, 'Y', '2002-10-26 14:23:01'),
(446, 7, 0x4261727679, 'Y', '2002-10-26 14:23:01'),
(412, 7, 0x4b6f6d656e74e1f8, 'Y', '2016-07-20 16:13:17'),
(191, 7, 0x506f7476727a656eed206865736c61, 'Y', '2002-10-26 14:23:01'),
(12, 7, 0x53656c68616c6f2073706f6a656eed2073206461746162e17aed2e20506fe86b656a74652070726f73ed6d206eec6b6f6c696b206d696e75742061207a6b7573746520746f207a6e6f76752e, 'Y', '2002-10-26 14:23:01'),
(337, 7, 0x50f8697370ec766174656ce920447261676f6e75, 'Y', '2002-10-26 14:23:01'),
(406, 7, 0x4b6f6e76656ee86eed, 'Y', '2002-10-26 14:23:01'),
(432, 7, 0x4b6f6e76656ee86eed2068616e64696b617020286b6f6d6920302c352070f869206e65726f766ee92068f86529, 'Y', '2002-10-29 17:15:21'),
(214, 7, 0x536f75f861646e69636520737472616e, 'Y', '2002-10-26 14:23:01'),
(48, 7, 0x4e656c7a65206578747261706f6c6f76617420686f646e6f747920696e746572706f6c61e86eed2066756e6b63ed2e, 'Y', '2002-10-26 14:23:01'),
(19, 7, 0x4e656c7a652070726f76e973742073656c656374206461746162e17a652e20506fe86b656a74652070726f73ed6d206eec6b6f6c696b206d696e75742061207a6b7573746520746f207a6e6f76752e, 'Y', '2002-10-26 14:23:01'),
(176, 7, 0x5a656dec, 'Y', '2002-10-26 14:23:01'),
(2670, 17, 0x2e6a706567, 'Y', '2013-08-21 00:05:19'),
(18, 7, 0x53656c68616c20646f74617a206e61206461746162e17a692e20506fe86b656a74652070726f73ed6d206eec6b6f6c696b206d696e75742061207a6b7573746520746f207a6e6f76752e, 'Y', '2002-10-26 14:23:01'),
(312, 7, 0x446174756d, 'Y', '2002-10-26 14:23:01'),
(98, 7, 0x64656e, 'Y', '2002-10-26 14:23:01'),
(99, 7, 0x646ef9, 'Y', '2002-10-26 14:23:01'),
(334, 7, 0x4f646ded746e6f7574, 'Y', '2002-10-26 14:23:01'),
(429, 7, 0x4f64737472616e6974, 'Y', '2002-10-26 14:23:01'),
(232, 7, 0x4f64737472616e697420687275, 'Y', '2002-10-26 14:23:01'),
(13, 7, 0x53656c68616c6f20736d617ae16eed206872792e20546f207072617664ec706f646f626eec206e656eed2070726f626ce96d2e, 'Y', '2002-10-26 14:23:01'),
(227, 7, 0x4f64737472616e697420687275, 'Y', '2002-10-29 17:13:49'),
(332, 7, 0x4c696369746f766174206e6173746176656eed, 'Y', '2002-10-26 14:23:01'),
(94, 7, 0x446f6b756d656e7479, 'Y', '2002-10-26 14:23:01'),
(159, 7, 0x446f6b756d656e74616365, 'Y', '2002-10-26 14:23:01'),
(233, 7, 0x486f746f766f, 'Y', '2002-10-26 14:23:01'),
(409, 7, 0x44766f6a6974e120687261, 'Y', '2002-10-26 14:23:01'),
(218, 7, 0x446f6c65, 'Y', '2002-10-26 14:23:01'),
(170, 7, 0x5374e1686e6f7574207a64726f6a6f76e9206bf3647920447261676f6e75, 'Y', '2002-10-26 14:23:01'),
(236, 7, 0x5374e1686e6f757420534746, 'Y', '2002-10-26 14:23:01'),
(173, 7, 0x537472e16e6b612070726f6a656b747520447261676f6e206e6120736f75726365666f726765, 'Y', '2002-10-26 14:23:01'),
(379, 7, 0x557072617669742062696f677261666969, 'Y', '2002-10-26 14:23:01'),
(188, 7, 0x55707261766974206865736c6f, 'Y', '2002-10-26 14:23:01'),
(199, 7, 0x557072617669742070726f66696c, 'Y', '2002-10-26 14:23:01'),
(181, 7, 0x452d6d61696c, 'Y', '2002-10-26 14:23:01'),
(206, 7, 0x4f7a6ee16d656eed20652d6d61696c656d, 'Y', '2002-10-26 14:23:01'),
(408, 7, 0x5679726f766e616ee1206872612073206e6967697269, 'Y', '2002-10-26 14:23:01'),
(453, 7, 0x6578747261206e6120746168, 'Y', '2002-10-26 14:23:01'),
(92, 7, 0x4641512028c86173746f206b6c6164656ee920646f74617a7929, 'Y', '2002-10-26 14:23:01'),
(398, 7, 0x556b6f6ee8656e6f, 'Y', '2002-10-26 14:23:01'),
(348, 7, 0x556b6f6ee8656ee920687279, 'Y', '2002-10-26 14:23:01'),
(350, 7, 0x556b6f6ee8656ee9206872792070726f202573, 'Y', '2002-10-26 14:23:01'),
(443, 7, 0x466973636865726f76736bfd20e86173, 'Y', '2002-10-26 14:23:01'),
(309, 7, 0x50f8ed7a6e616b79, 'Y', '2002-10-26 14:23:01'),
(442, 7, 0x70726f, 'Y', '2002-10-26 14:23:01'),
(223, 7, 0x5a61706f6d6eec6c69206a737465206865736c6f3f, 'Y', '2002-10-26 14:23:01'),
(136, 7, 0x46f372756d, 'Y', '2002-10-26 14:23:01'),
(91, 7, 0x46f37261, 'Y', '2002-10-26 14:23:01'),
(161, 7, 0x4641512028c86173746f206b6c6164656ee920646f74617a7929, 'Y', '2002-10-26 14:23:01'),
(310, 7, 0x4f64, 'Y', '2016-07-21 22:02:59'),
(196, 7, 0x43656ce9206465736b792061207a7072e17679, 'Y', '2002-10-26 14:23:01'),
(202, 7, 0x43656ce9206a6de96e6f, 'Y', '2002-10-26 14:23:01'),
(230, 7, 0x487261, 'Y', '2002-10-26 14:23:01'),
(109, 7, 0x4872612070f86964e16e6121, 'Y', '2002-10-26 14:23:01'),
(253, 7, 0x487261206f64737472616eec6e6121, 'Y', '2002-10-26 14:23:01'),
(445, 7, 0x494420687279, 'Y', '2002-10-26 14:23:01'),
(254, 7, 0x4872612070f8696a61746121, 'Y', '2002-10-26 14:23:01'),
(183, 7, 0x5072656665726f76616ee920687279, 'Y', '2002-10-26 14:23:01'),
(89, 7, 0x487279, 'Y', '2002-10-26 14:23:01'),
(457, 7, 0x5a70ec74, 'Y', '2002-10-26 14:23:01'),
(362, 7, 0x48656e64796b6570, 'Y', '2016-07-20 15:01:51'),
(184, 7, 0x4b6f6eede86b79, 'Y', '2002-10-26 14:23:01'),
(240, 7, 0x446f6df9, 'Y', '2002-10-26 14:23:01'),
(180, 7, 0x446f6d6f76736be120737472e16e6b61, 'Y', '2002-10-26 14:23:01'),
(198, 7, 0x566f646f726f766eec, 'Y', '2002-10-26 14:23:01'),
(101, 7, 0x686f64696e61, 'Y', '2002-10-26 14:23:01'),
(102, 7, 0x686f64696e, 'Y', '2002-10-29 17:08:14'),
(182, 7, 0xc8ed736c6f20494351, 'Y', '2002-10-26 14:23:01'),
(132, 7, '', 'Y', '2002-10-26 14:23:01'),
(424, 7, 0x506f6b756420616e6f2c20726174696e67206d657a69, 'Y', '2016-07-20 16:14:23'),
(60, 7, 0x506f6b75642063686365746520706f6d6f63692073206c6f6b616c697a6163ed20447261676f6e752c20706fb96c6574652070726f73ed6d207a7072e1767520646f2066f37261205472616e736c6174696f6e2e, 'Y', '2002-10-26 14:23:01'),
(169, 7, 0x706f6b75642063686365746520766c6173746eed20647261676f6e, 'Y', '2002-10-26 14:23:01'),
(168, 7, 0x506f6b796e792070726f20696e7374616c616369, 'Y', '2002-10-26 14:23:01'),
(248, 7, 0xda766f64, 'Y', '2016-07-20 15:00:10'),
(160, 7, 0xda766f6420646f20447261676f6e75, 'Y', '2002-10-26 14:23:01'),
(335, 7, 0x56fd7a7661, 'Y', '2002-10-26 14:23:01'),
(87, 7, 0x56797a766174, 'Y', '2002-10-26 14:23:01'),
(373, 7, 0x56797a76617420746f686f746f2075be69766174656c65, 'Y', '2002-10-26 14:23:01'),
(449, 7, 0x4a61706f6e736be9, 'Y', '2002-10-26 14:23:01'),
(106, 7, 0x6a61706f6e736be920626a6f6a6f6d69, 'Y', '2002-10-26 14:23:01'),
(430, 7, 0x50f8696a6d6f7574, 'Y', '2002-10-26 14:23:01'),
(208, 7, 0x4a617a796b, 'Y', '2002-10-26 14:23:01'),
(394, 7, 0x506f736c65646eed2070f8ed73747570, 'Y', '2002-10-26 14:23:01'),
(368, 7, 0x506f736c65646eed20746168, 'Y', '2016-07-20 16:11:26'),
(215, 7, 0x566c65766f, 'Y', '2002-10-26 14:23:01'),
(165, 7, 0x4f646b617a79, 'Y', '2002-10-26 14:23:01'),
(80, 7, 0x50f869686ce1b9656e206a616b6f, 'Y', '2002-10-26 14:23:01'),
(246, 7, 0x50f869686ce1736974207365, 'Y', '2002-10-26 14:23:01'),
(97, 7, 0x4f64686ce1736974, 'Y', '2002-10-26 14:23:01'),
(400, 7, 0x50726f6872e16c, 'Y', '2002-10-26 14:23:01'),
(437, 7, 0x5ae16b6c61646eed20e86173, 'Y', '2002-10-26 14:23:01'),
(220, 7, 0x556ded7374ec6eed206d656e75, 'Y', '2002-10-26 14:23:01'),
(325, 7, 0x5a7072e17661, 'Y', '2002-10-26 14:23:01'),
(307, 7, 0x53657a6e616d207a7072e176, 'Y', '2002-10-26 14:23:01'),
(85, 7, 0x5a7072e17679, 'Y', '2002-10-26 14:23:01'),
(346, 7, 0x5a7072e17661206f6465736ce16e6121, 'Y', '2002-10-26 14:23:01'),
(436, 7, 0x6dec73ed6365, 'Y', '2002-10-26 14:23:01'),
(364, 7, 0x54616879, 'Y', '2002-10-26 14:23:01'),
(195, 7, 0x546168792061207a7072e17679, 'Y', '2002-10-26 14:23:01'),
(378, 7, 0x4d6f6a652075be69766174656c736be920696e666f726d616365, 'Y', '2002-10-26 14:23:01'),
(134, 7, 0x4a6de96e6f, 'Y', '2002-10-26 14:23:01'),
(314, 7, 0x4e6f76e9, 'Y', '2003-09-17 18:34:50'),
(327, 7, 0x4e6f76e1207a7072e17661, 'Y', '2002-10-26 14:23:01'),
(190, 7, 0x4e6f76e9206865736c6f, 'Y', '2002-10-26 14:23:01'),
(460, 7, 0x64616cb9ed20737472e16e6b61, 'Y', '2002-10-26 14:23:01'),
(210, 7, 0x4e6f63, 'Y', '2002-10-26 14:23:01'),
(371, 7, 0x4e65, 'Y', '2003-01-08 12:19:49'),
(391, 7, 0xaee1646ee920687279206e656e616c657a656e79, 'Y', '2002-10-26 14:23:01'),
(194, 7, 0x4a656e206f7a6ee16d656eed, 'Y', '2002-10-26 14:23:01'),
(81, 7, 0x4e6570f869686ce1b9656e, 'Y', '2002-10-26 14:23:01'),
(427, 7, 0x506fe8657420686572, 'Y', '2002-10-26 14:23:01'),
(420, 7, 0x506fe8657420686572206b2070f86964e16eed, 'Y', '2002-10-26 14:23:01'),
(185, 7, 0x5a616dec73746ee16eed, 'Y', '2002-10-26 14:23:01'),
(193, 7, 0x5679706e75746f, 'Y', '2002-10-26 14:23:01'),
(189, 7, 0x53746172e9206865736c6f, 'Y', '2002-10-26 14:23:01'),
(252, 7, 0x4a65b974ec206a65646e6f752076ed74656a746520612075be696a7465207369206ee176b974ec7675207a646521, 'Y', '2002-10-26 14:23:01'),
(388, 7, 0x50f8696aed6de12076fd7a76793f, 'Y', '2002-10-26 14:23:01'),
(359, 7, 0x536f757065f8, 'Y', '2002-10-26 14:23:01'),
(175, 7, 0x4a696ee93a, 'Y', '2002-10-26 14:23:01'),
(95, 7, 0x537472e16e6b6120767974766ff8656e61207a61, 'Y', '2016-07-21 20:46:12'),
(245, 7, 0x4865736c6f, 'Y', '2002-10-26 14:23:01'),
(157, 7, 0x4865736c6f207a6dec6eec6e6f21, 'Y', '2002-10-26 14:23:01'),
(163, 7, 0x4c6964e9, 'Y', '2002-10-26 14:23:01'),
(200, 7, 0x4f736f626eed206e6173746176656eed, 'Y', '2002-10-26 14:23:01'),
(454, 7, 0x556ded7374ec74652c2070726f73ed6d2c207376e92068656e64696b6570792e, 'Y', '2016-07-20 16:17:11'),
(426, 7, 0x4872e1e8, 'Y', '2002-10-26 14:23:01'),
(242, 7, 0x4df9be657465207365206c69626f766f6c6eec207a61726567697374726f7661742061207a616872e1742073692070e172206865722e, 'Y', '2002-10-26 14:23:01'),
(345, 7, 0x5a6164656a74652070726f73ed6d20fa64616a65, 'Y', '2002-10-26 14:23:01'),
(243, 7, 0x50f869686c61b974652073652070726f73ed6d2e, 'Y', '2002-10-26 14:23:01'),
(461, 7, 0x70f8656463686f7aed20737472e16e6b61, 'Y', '2002-10-26 14:23:01'),
(458, 7, 0x5a616a61746369, 'Y', '2002-10-26 14:23:01'),
(158, 7, 0x50726f66696c20616b7475616c697a6f76e16e21, 'Y', '2002-10-26 14:23:01'),
(407, 7, 0x50f865736efd, 'Y', '2002-10-26 14:23:01'),
(433, 7, 0x50f865736efd2068656e64696b6570, 'Y', '2016-07-20 16:15:24'),
(204, 7, 0xda726f7665f2, 'Y', '2002-10-26 14:23:01'),
(366, 7, 0x486f646e6f63656ee1, 'Y', '2002-10-26 14:23:01'),
(384, 7, 0xc8ed73742066f372756d, 'Y', '2002-10-26 14:23:01'),
(344, 7, 0x5a61726567697374726f766174, 'Y', '2002-10-26 14:23:01'),
(247, 7, 0x5a61726567697374726f766174206e6f76fd20fae86574, 'Y', '2002-10-26 14:23:01'),
(393, 7, 0x446174756d2072656769737472616365, 'Y', '2002-10-26 14:23:01'),
(238, 7, 0x4f64737472616e6974207a652073657a6e616d7520736c65646f76616efd6368, 'Y', '2002-10-26 14:23:01'),
(315, 7, 0x4f6465736ce16e61206f64706f76ecef, 'Y', '2002-10-26 14:23:01'),
(324, 7, 0x4f64706f76ec64ec74, 'Y', '2002-10-26 14:23:01'),
(316, 7, 0x4f64706f76ec64ec7421, 'Y', '2002-10-26 14:23:01'),
(423, 7, 0x506fbe6164756a69206f686f646e6f63656ee9686f20736f757065f865, 'Y', '2002-10-26 14:23:01'),
(235, 7, 0x567a64e174, 'Y', '2002-10-26 14:23:01'),
(234, 7, 0x506f6b7261e86f7661742076652068f865, 'Y', '2002-10-26 14:23:01'),
(217, 7, 0x56707261766f, 'Y', '2002-10-26 14:23:01'),
(397, 7, 0x416b7469766eed, 'Y', '2002-10-26 14:23:01'),
(349, 7, 0x416b7469766eed20687279, 'Y', '2002-10-26 14:23:01'),
(351, 7, 0x416b7469766eed206872792070726f202573, 'Y', '2002-10-26 14:23:01'),
(229, 7, 0x536bf37265, 'Y', '2002-10-26 14:23:01'),
(417, 7, 0x5a64e12073652c20be65206a65207465ef207072e17a646ee12e, 'Y', '2002-10-26 14:23:01'),
(86, 7, 0x4f6465736c6174207a7072e17675, 'Y', '2002-10-26 14:23:01'),
(336, 7, 0x4f6465736c61742076fd7a7675, 'Y', '2002-10-26 14:23:01'),
(329, 7, 0x4f6465736c6174207a7072e17675, 'Y', '2002-10-26 14:23:01'),
(396, 7, 0x506f736c61742075be69766174656c69207a7072e17675, 'Y', '2002-10-26 14:23:01'),
(326, 7, 0x4f6465736c6174206f64706f76ecef, 'Y', '2002-10-26 14:23:01'),
(352, 7, '', 'Y', '2002-10-26 14:23:01'),
(375, 7, 0x5a6f6272617a697420756b6f6ee8656ee920687279, 'Y', '2002-10-26 14:23:01'),
(380, 7, 0x5a6f6272617a6974207a7072e17675, 'Y', '2002-10-26 14:23:01'),
(374, 7, 0x5a6f6272617a697420616b7469766eed20687279, 'Y', '2002-10-26 14:23:01'),
(93, 7, 0x4d6170612073657276657275, 'Y', '2002-10-26 14:23:01'),
(361, 7, 0x56656c696b6f7374, 'Y', '2002-10-26 14:23:01'),
(237, 7, 0x50f865736b6fe86974206e612064616cb9ed20687275, 'Y', '2002-10-26 14:23:01'),
(219, 7, 0x486c61646be9206872616e79206465736b79, 'Y', '2002-10-26 14:23:01'),
(8, 7, 0x50726f6d69f274652c206e656c7a65206e616aed74206872752c206b65206b746572e9206a7374652062796c692076797a76e16e692e204e6562796c612075be206f646ded746e7574613f, 'Y', '2002-10-26 14:23:01'),
(50, 7, 0x50726f6d69f274652c206e656c7a65206e616aed74207475746f20687275207620e8656be1726eec2e205072617664ec706f646f626eec206a69206a69be206eec6b646f2070f8696a616c2e, 'Y', '2002-10-26 14:23:01'),
(20, 7, 0x50726f6d69f274652c206e656c7a652073707573746974206872752e20506fe86b656a74652070726f73ed6d206eec6b6f6c696b206d696e75742061207a6b7573746520746f207a6e6f76752e, 'Y', '2002-10-26 14:23:01'),
(38, 7, 0x50726f6d69f27465206de16d2070726f626ce96d207320726174696e67656d2e20557665646c69206a7374652c207a6461206a6465206f206b7975206e65626f2064616e3f, 'Y', '2002-10-26 14:23:01'),
(41, 7, 0x50726f6d69f274652c206e656c7a65206e616aed74207475746f206872752e, 'Y', '2002-10-26 14:23:01'),
(42, 7, 0x50726f6d69f274652c206e656c7a65206e616aed742066f372756d2c206b746572e920636863657465207a6f6272617a69742e, 'Y', '2002-10-26 14:23:01'),
(44, 7, 0x50726f6d69f274652c206e656c7a65206e616aed74207a7072e176752c206b7465726f7520636863657465207a6f6272617a69742e, 'Y', '2002-10-26 14:23:01'),
(45, 7, 0x50726f6d69f274652c206e656c7a65206e616aed7420746f686f746f2075be69766174656c652e, 'Y', '2002-10-26 14:23:01'),
(56, 7, 0x50726f6d69f274652c206e656eed207a64652075be69766174656c20732074616b6f76fd6d2049442e, 'Y', '2002-10-26 14:23:01'),
(32, 7, 0x50726f6d69f274652c206e656a737465206e6120746168752e, 'Y', '2002-10-26 14:23:01'),
(59, 7, 0x50726f6d69f274652c20706f757a652070f8656b6c61646174656ce9206d6f686f752070f8656b6ce16461742e, 'Y', '2002-10-26 14:23:01'),
(63, 7, 0x50726f6d69f274652c206eec636f207365206e65706f7665646c6f2070f86920706f6b757375206f20756c6fbe656eed206e6f76e9686f2070f8656b6c61647520646f206461746162e17a652e, 'Y', '2003-03-10 15:28:41'),
(15, 7, 0x50726f6d69f274652c20706174726eec2073656c68616c6f20756c6fbe656eed2068727920646f206461746162e17a652e, 'Y', '2002-10-26 14:23:01'),
(14, 7, 0x50726f6d69f274652c20706174726eec2073656c68616c6f20756c6fbe656eed207a7072e1767920646f206461746162e17a652e, 'Y', '2002-10-26 14:23:01'),
(2, 7, 0x50726f6d69f274652c20687261206a65206a69be20756b6f6ee8656e612e, 'Y', '2002-10-26 14:23:01'),
(3, 7, 0x50726f6d69f274652c20687261206a65b974ec206e657a61e8616c612e, 'Y', '2002-10-26 14:23:01'),
(57, 7, 0x50726f6d69f274652c20706fe8e17465e86eed20726174696e67206d7573ed2062fd74206d657a69203330206b7975206120362064616e2e, 'Y', '2002-10-26 14:23:01'),
(29, 7, 0x50726f6d69f274652c20746f746f206e656eed20686f7374f96d20706f766f6c656e6f2e205a6172656769737472756a74652073692070726f73ed6d206f736f626eed20fae865742e, 'Y', '2002-10-26 14:23:01'),
(66, 7, 0x50726f6d69f274652c207461746f20737472e16e6b61206a6520706f757a652070726f2061646d696e69737472e1746f72792e, 'Y', '2002-10-26 14:23:01'),
(40, 7, 0x50726f6d69f274652c2074656e746f206be16d656e2062792073652073e16d207a6162696c2c20616c652073656265767261be6475207072617669646c61206e65706f766f6c756aed2e, 'Y', '2002-10-26 14:23:01'),
(46, 7, 0x50726f6d69f274652c20746f746f2075be69766174656c736be92049442075be206a6520706f75beed76e16e6f2c207a6b757374652070726f73ed6d206e616aed74206a6564696e65e86ee92049442e, 'Y', '2002-10-26 14:23:01'),
(27, 7, 0x50726f6d69f274652c20767920692076e1b920736f757065f8206d7573ed7465206ded74206e6173746176656e20706fe8e17465e86eed20726174696e672c206a696e616b206e656c7a65206e616aed742076686f646efd2068616e64696361702e, 'Y', '2002-10-26 14:23:01'),
(61, 7, 0x50726f6d69f274652c206e656eed20706f766f6c656e6f2070f8656b6ce16461742076796272616efd206a617a796b2e, 'Y', '2002-10-26 14:23:01'),
(52, 7, 0x50726f6d69f274652c2076e1b920726174696e67206e656eed2076206e6173746176656ee96d20726f7a736168752e, 'Y', '2002-10-26 14:23:01'),
(7, 7, 0x50726f6d69f274652c206e656df9be6574652076797a7661742073e16d20736562652e, 'Y', '2002-10-26 14:23:01'),
(51, 7, 0x50726f6d69f274652c206e656df9be6574652070f8696a6d6f757420766c6173746eed206872752e, 'Y', '2002-10-26 14:23:01'),
(54, 7, 0x50726f6d69f274652c206e656e617073616c206a73746520737072e1766eec207661b96520736f75e861736ee9206865736c6f2e, 'Y', '2002-10-26 14:23:01'),
(22, 7, 0x50726f6d69f274652c206d7573ed7465207a61646174206a6de96e6f2e, 'Y', '2002-10-26 14:23:01'),
(1, 7, 0x50726f6d69f274652c206e65736ded74652064e17420706173732070f8656420706f6c6fbe656eed6d2076b96563682068616e64696b6170f92e, 'Y', '2002-10-26 14:23:01'),
(49, 7, 0x50726f6d69f274652c206df9be657465206f64737472616e697420706f757a652073766f7520766c6173746eed206872752e, 'Y', '2002-10-26 14:23:01'),
(58, 7, 0x50726f6d69f274652c206e656c7a65207a61646174206e65e8ed736c656e6f7520686f646e6f747520646f20e8ed73656c6ee9686f20706f6c652e, 'Y', '2002-10-26 14:23:01'),
(178, 7, 0x5374e174, 'Y', '2002-10-26 14:23:01'),
(82, 7, 0x53746176, 'Y', '2016-08-04 10:13:31'),
(107, 7, 0x6b616d656ef9, 'Y', '2002-10-26 14:23:01'),
(212, 7, 0x56656c696b6f7374206b616d656ef9, 'Y', '2002-10-26 14:23:01'),
(311, 7, 0x50f865646dec74, 'Y', '2002-10-26 14:23:01'),
(455, 7, 0x4f6465736c617420612070f8656aed74206e612064616cb9ed20687275, 'Y', '2016-07-20 16:17:11'),
(456, 7, 0x4f6465736c617420612070f8656aed74206e612070f865686c6564, 'Y', '2016-07-20 16:17:11'),
(35, 7, 0x506f7476727a656eed206865736c61206e656f64706f76ed64e1207a6164616ee96d75206865736c6f2c20767261bb74652073652070726f73ed6d207a70ec742061207a6164656a7465206a65207a6e6f76752e, 'Y', '2002-10-26 14:23:01'),
(16, 7, 0x556c6fbe656eed207461687520646f206461746162e17a65207af8656a6dec2073656c68616c6f2e20546f206e656d7573ed2062fd742070726f626ce96d2c20767261bb652073652070726f73ed6d20646f206872792061207a6b6f6e74726f6c756a74652c207a6461206a652076e1b920746168207a617a6e616d656ee16e2e, 'Y', '2002-10-26 14:23:01'),
(17, 7, 0x556c6fbe656eed207661b969636820fa64616af920646f206461746162e17a65207af8656a6dec2073656c68616c6f2e20506f6b7564207365206e656df9be6574652070f869686ce17369742c207a6b7573746520746f2070726f73ed6d206a65b974ec206a65646e6f752061206b6479be20746f206e65706f6df9be652c206b6f6e74616b74756a746520706f64706f72752e, 'Y', '2002-10-26 14:23:01'),
(33, 7, 0x4865736c6f206f62736168756a65207a616be17a616ee9207a6e616b792c20706f766f6c656e79206a736f7520706f757a65207a6e616b7920612d7a2c20412d5a2c20302d392061202d5f2b2e2c3a3b3f21252a2e, 'Y', '2002-10-26 14:23:01'),
(322, 7, 0x56fd7a7661206e61207475746f20257368727525732075be2062796c612070f8696a6174612e, 'Y', '2002-10-29 17:15:21'),
(323, 7, 0x5461746f2076fd7a76612075be2062796c61206f646ded746e757461206e65626f2068726120736d617ae16e61, 'Y', '2002-10-26 14:23:01'),
(383, 7, 0x53657a6e616d2074e96d6174, 'Y', '2002-10-26 14:23:01'),
(414, 7, 0xc861736f76fd206c696d6974, 'Y', '2002-10-26 14:23:01'),
(209, 7, 0xc861736f76e92070e1736d6f, 'Y', '2002-10-26 14:23:01'),
(308, 7, 0x4b6f6d75, 'Y', '2003-01-10 12:16:18'),
(328, 7, 0x4b6f6d75202849442075be69766174656c6529, 'Y', '2002-10-26 14:23:01'),
(244, 7, 0x506f6b756420736520636863657465206a656e20726f7a686ce9646e6f75742c20706f75be696a74652025732e, 'Y', '2002-10-26 14:23:01'),
(90, 7, 0x50f8656b6ce1646174, 'Y', '2002-10-26 14:23:01'),
(216, 7, 0x4e61686ff865, 'Y', '2002-10-26 14:23:01'),
(207, 7, 0x506f75beed74206e6173746176656eed2070726f686cedbe65e865, 'Y', '2002-10-26 14:23:01'),
(201, 7, 0x49442075be69766174656c65, 'Y', '2002-10-26 14:23:01'),
(84, 7, 0x496e666f726d616365206f2075be69766174656c69, 'Y', '2002-10-26 14:23:01'),
(88, 7, 0x55be69766174656ce9, 'Y', '2002-10-26 14:23:01'),
(197, 7, 0x537669736c65, 'Y', '2002-10-26 14:23:01'),
(83, 7, 0xc8656be1726e61, 'Y', '2002-10-26 14:23:01'),
(416, 7, 0xc86173206265beed206f2076ed6b656e6475, 'Y', '2002-10-26 14:23:01'),
(377, 7, 0x5576ed746163ed20737472e16e6b61, 'Y', '2002-10-26 14:23:01'),
(330, 7, 0x62ed6cfd, 'Y', '2002-10-26 14:23:01'),
(164, 7, 0x6b646f20736520706f64ed6ced206e6120447261676f6e75, 'Y', '2002-10-26 14:23:01'),
(439, 7, 0x73, 'Y', '2002-10-26 14:23:01'),
(104, 7, 0x612064616cb9ed202573206e61206b61be64fd20746168, 'Y', '2002-10-26 14:23:01'),
(103, 7, 0x62657a20626a6f6a6f6d69, 'Y', '2002-10-26 14:23:01'),
(399, 7, 0x56796872e16c, 'Y', '2002-10-26 14:23:01'),
(213, 7, 0x42617276612064f8657661, 'Y', '2002-10-26 14:23:01'),
(370, 7, 0x416e6f, 'Y', '2002-10-26 14:23:01'),
(390, 7, 0x4a737465206e61207461687520762074ec6368746f206872e163683a, 'Y', '2002-10-26 14:23:01'),
(415, 8, 0xa7bdbcc6, 'Y', '2007-02-26 05:22:42'),
(419, 8, 0xadad202573, 'Y', '2007-02-13 10:42:02'),
(452, 8, 0x257320a45520257320a4e2, 'Y', '2007-02-13 10:37:55'),
(450, 8, 0x2573203120a4e220257320a6b8, 'Y', '2007-02-13 10:37:55'),
(292, 8, 0xb3f2b4d1c2b2a576, 'Y', '2007-05-31 11:11:06'),
(333, 8, 0xb1b5a8fc, 'Y', '2002-10-26 14:23:01'),
(402, 8, 0xaca1c544b57babd7, 'Y', '2007-02-19 06:27:36'),
(462, 8, 0xbc57a55bb6b5a5d8, 'Y', '2007-02-17 11:16:10'),
(425, 8, 0xbc57a55bb4d1a7bd, 'Y', '2007-05-29 12:17:21'),
(239, 8, 0xa55ba44ac65bacdd, 'Y', '2007-05-31 13:31:16'),
(96, 8, 0xbadeb27aaacc, 'Y', '2002-10-26 14:23:01'),
(272, 8, 0xc3f6a9f3b3f2b4d1aababaa9b565a143a46aa44fb1c0c2cba149, 'Y', '2007-02-25 08:52:27'),
(306, 8, 0xa7f3a7b9bee3aababaf4afb8a643aaed, 'Y', '2007-03-04 08:58:49'),
(100, 8, 0x2d, 'Y', '2007-02-18 13:24:24'),
(274, 8, 0xa4acb0cabec7b3f2b4d1, 'Y', '2008-03-07 07:41:01'),
(395, 8, 0xa470b6c7b8eaaec6, 'Y', '2002-10-26 14:23:01'),
(156, 8, 0xa470b6c7a7f3b773a7b9a6a8a149, 'Y', '2002-10-26 14:23:01'),
(331, 8, 0xb6c2a4e8, 'Y', '2007-06-03 13:47:19'),
(211, 8, 0xb4d1bd4c, 'Y', '2007-02-17 11:26:56'),
(431, 8, 0xb4d1bd4c, 'N', '2007-02-26 05:23:12'),
(451, 8, '', 'Y', '2007-02-17 11:20:13'),
(108, 8, 0xa55baeb3a46aa6a1adcbbcc6ad70aec9, 'Y', '2007-06-06 19:59:05'),
(187, 8, 0xa7f3a7efa470b6c7, 'Y', '2002-10-26 14:23:01'),
(192, 8, 0xa7f3a7efb14bbd58, 'Y', '2002-10-26 14:23:01'),
(222, 8, 0xa7f3b773add3a448b35da977, 'Y', '2007-02-17 11:32:25'),
(177, 8, 0xabb0a5ab, 'Y', '2002-10-26 14:23:01'),
(428, 8, 0xb667a5bdad70aec9, 'Y', '2007-03-10 20:06:32'),
(179, 8, 0xaac0b9ce, 'Y', '2002-10-26 14:23:01'),
(360, 8, 0xf9d6a6e2, 'Y', '2002-10-26 14:23:01'),
(446, 8, 0xf9d6a6e2, 'Y', '2007-05-13 11:12:59'),
(412, 8, 0xb3c6b5f9, 'Y', '2009-02-14 07:27:00'),
(191, 8, 0xbd54bb7bb14bbd58, 'Y', '2002-10-26 14:23:01'),
(406, 8, 0xb6c7b2cec5fda46c, 'Y', '2007-02-12 19:40:08'),
(432, 8, 0xb6c7b2cec5fda46ca15dad59c5fda46cb64ba562a5d8a15e, 'Y', '2007-06-07 10:38:40'),
(214, 8, 0xae79bcd0a6ecb86d, 'Y', '2002-10-26 14:23:01'),
(176, 8, 0xb0eaae61, 'Y', '2002-10-26 14:23:01'),
(421, 8, 0xac71, 'Y', '2009-05-06 04:30:53'),
(312, 8, 0xa4e9b4c1, 'Y', '2002-10-26 14:23:01'),
(98, 8, 0xa4e9, 'Y', '2007-03-10 20:27:16'),
(99, 8, 0xa4e9, 'Y', '2002-10-26 14:23:01'),
(334, 8, 0xa9dab5b4, 'Y', '2002-10-26 14:23:01'),
(429, 8, 0xa752b0a3, 'Y', '2002-10-26 14:23:01'),
(232, 8, 0xa752b0a3b9efa7bd, 'Y', '2002-10-26 14:23:01'),
(227, 8, 0xa752b0a3b9efa7bda4a4, 'Y', '2002-10-26 14:23:01'),
(6323, 36, 0x70726976c3a17420c3bc7a656e6574206bc3bc6c64c3a973652061206dc3a173696b206ac3a174c3a96b6f736e616b, 'Y', '2015-07-23 11:52:07'),
(332, 8, 0xa574c4b3b35da977, 'Y', '2002-10-26 14:23:01'),
(94, 8, 0xa4e5a5f3, 'Y', '2002-10-26 14:23:01'),
(159, 8, 0xa4e5a5f3, 'Y', '2002-10-26 14:23:01'),
(233, 8, 0xa7b9a6a8, 'Y', '2002-10-26 14:23:01'),
(409, 8, 0xc2f9a6e2b9efa7bd, 'Y', '2007-05-29 12:36:37'),
(218, 8, 0xa455, 'Y', '2002-10-26 14:23:01'),
(170, 8, 0xa455b8fcc073a4a7f9d6adeca96cbd58, 'Y', '2007-03-04 08:58:49'),
(236, 8, 0xa455b8fcb4d1c3d0, 'Y', '2007-02-25 08:38:09'),
(379, 8, 0xbd73bfe8a470b6c7, 'Y', '2002-10-26 14:23:01'),
(188, 8, 0xbd73bfe8b14bbd58, 'Y', '2002-10-26 14:23:01'),
(199, 8, 0xadd3a448b35da977, 'Y', '2007-02-17 11:32:25'),
(181, 8, 0xb971a46cb66ca5f3, 'Y', '2002-10-26 14:23:01'),
(206, 8, 0xb971b66cb371aabe, 'Y', '2007-06-02 08:26:29'),
(299, 8, 0xbcdaac77a9b1, 'Y', '2007-02-25 08:52:27'),
(408, 8, 0xb271a46ca4c0a5fd, 'Y', '2007-05-29 12:38:06'),
(453, 8, 0x3aa843a4e2bc57a55baec9b6a1, 'Y', '2007-02-27 10:24:35'),
(92, 8, 0xb160a8a3b0ddc344, 'Y', '2007-10-01 07:30:44'),
(398, 8, 0xa7b9a6a8, 'Y', '2002-10-26 14:23:01'),
(348, 8, 0xb5b2a7f4b4d1a7bd, 'Y', '2007-02-19 10:31:27'),
(350, 8, 0x257320a477b5b2a7f4b4d1a7bd, 'Y', '2007-05-31 14:06:46'),
(443, 8, 0xb64fb3b7a6a1ad70aec9, 'Y', '2007-06-06 19:59:05'),
(309, 8, 0xbcd0c5d2, 'Y', '2002-10-26 14:23:01'),
(442, 8, 0xa455, 'Y', '2007-02-13 10:39:13'),
(223, 8, 0xa7d1b04fb14bbd58a148, 'Y', '2007-03-10 08:45:27'),
(136, 8, 0xbdd7bec2, 'Y', '2002-10-26 14:23:01'),
(91, 8, 0xbdd7bec2, 'Y', '2002-10-26 14:23:01'),
(161, 8, 0xb160a8a3b0ddc344, 'Y', '2002-10-26 14:23:01'),
(310, 8, 0xb148a5f3aacc, 'Y', '2002-10-26 14:23:01'),
(196, 8, 0xbd4cadb1a4ceab48a5f3, 'Y', '2007-06-22 20:35:23'),
(202, 8, 0xa5fea657, 'Y', '2002-10-26 14:23:01'),
(230, 8, 0xb9efa7bd, 'Y', '2002-10-26 14:23:01'),
(109, 8, 0xa477a55ba44ab9efa7bda149, 'Y', '2002-10-26 14:23:01'),
(253, 8, 0xa477a752b0a3b9efa7bda149, 'Y', '2002-10-26 14:23:01'),
(445, 8, 0xbd73b8b9, 'Y', '2007-06-22 20:34:25'),
(254, 8, 0xa477b0d1bb50b9efa7bda149, 'Y', '2002-10-26 14:23:01'),
(183, 8, 0xb9efa7bdb35da977, 'Y', '2002-10-26 14:23:01'),
(89, 8, 0xb4d1a7bd, 'Y', '2007-02-17 11:16:10'),
(256, 8, 0xa440afebb8eab054, 'Y', '2002-10-26 14:23:01'),
(457, 8, 0xa65ea457a440adb6, 'Y', '2007-07-03 12:29:20'),
(296, 8, 0xf9d6aed1a141f9d6a8e3a4ceb36ec5e9, 'Y', '2002-10-26 14:23:01'),
(259, 8, 0xb3f2b4d1b160a8a3b0ddc344, 'Y', '2002-10-26 14:23:01'),
(267, 8, 0xb3f2b4d1b773bb44, 'Y', '2002-10-26 14:23:01'),
(283, 8, 0xb8d7f9d6, 'Y', '2002-10-26 14:23:01'),
(285, 8, '', 'Y', '2002-10-26 14:23:01'),
(362, 8, 0xc5fda46c, 'Y', '2002-10-26 14:23:01'),
(271, 8, 0xb4d1c646a4fd, 'Y', '2002-10-26 14:23:01'),
(291, 8, 0xbefaa576, 'Y', '2002-10-26 14:23:01'),
(184, 8, 0xbfb3bdec, 'Y', '2002-10-26 14:23:01'),
(240, 8, 0xadbaadb6, 'Y', '2007-02-18 13:25:33'),
(180, 8, 0xadbaadb6, 'Y', '2002-10-26 14:23:01'),
(198, 8, 0xa4f4a5ad, 'Y', '2002-10-26 14:23:01'),
(101, 8, 0xa470aec9, 'Y', '2007-02-17 11:16:10'),
(102, 8, 0xa470aec9, 'Y', '2002-10-26 14:23:01'),
(182, 8, 0x49435120b8b9bd58, 'Y', '2002-10-26 14:23:01'),
(132, 8, 0xbd73b8b9, 'Y', '2007-02-11 20:59:43'),
(424, 8, 0xb9efa4e2b5a5afc5, 'Y', '2007-02-26 05:22:42'),
(411, 8, 0xb8eaaec6, 'Y', '2007-02-27 10:16:51'),
(168, 8, 0xa677b8cbabfca4de, 'Y', '2002-10-26 14:23:01'),
(248, 8, 0xa4b6b2d0, 'Y', '2002-10-26 14:23:01'),
(160, 8, 0xc073a4a7f9d6a4b6b2d0, 'Y', '2007-03-04 08:06:37'),
(335, 8, 0xc1dcbdd0b9efa7bd, 'Y', '2007-06-22 20:34:25'),
(87, 8, 0xc1dcbdd0, 'Y', '2002-10-26 14:23:01'),
(373, 8, 0xc1dcbdd0a6b9b4d1a4e2, 'Y', '2007-10-01 06:58:33'),
(449, 8, '', 'Y', '2008-05-07 07:16:19'),
(106, 8, 0xa4e9a5bba6a1adcbbcc6ad70aec9, 'Y', '2007-06-06 19:59:05'),
(372, 8, 0xa94db4d1, 'N', '2007-06-03 15:06:37'),
(430, 8, 0xa55ba44a, 'Y', '2002-10-26 14:23:01'),
(363, 8, 0xb64ba5d8, 'Y', '2002-10-26 14:23:01'),
(422, 8, 0xafc5, 'Y', '2009-05-06 04:30:20'),
(208, 8, 0xbb79a8a5, 'Y', '2002-10-26 14:23:01'),
(394, 8, 0xa457a6b8b56ea44a, 'Y', '2007-02-17 11:39:06'),
(368, 8, 0xb3ccabe1a440a4e2, 'N', '2002-10-26 14:23:01'),
(215, 8, 0xa5aa, 'Y', '2002-10-26 14:23:01'),
(165, 8, 0xb373b5b2, 'Y', '2002-10-26 14:23:01'),
(80, 8, 0xb56ea44aacb0, 'Y', '2007-02-17 11:16:36'),
(246, 8, 0xb56ea44a, 'Y', '2002-10-26 14:23:01'),
(97, 8, 0xb56ea558, 'Y', '2002-10-26 14:23:01'),
(400, 8, 0xad74, 'Y', '2002-10-26 14:23:01'),
(437, 8, 0xa544ad6eaec9b6a1, 'Y', '2007-05-29 12:17:21'),
(220, 8, 0xbfefb3e6a4e8a656, 'Y', '2007-02-21 12:00:45'),
(325, 8, 0xb054aea7, 'Y', '2002-10-26 14:23:01'),
(307, 8, 0xb054aea7a643aaed, 'Y', '2002-10-26 14:23:01'),
(85, 8, 0xab48bd63, 'Y', '2007-02-18 13:24:24'),
(346, 8, 0xa477b065a558a149, 'Y', '2007-02-20 18:58:44'),
(436, 8, 0xa4eb, 'Y', '2002-10-26 14:23:01'),
(364, 8, 0xa4e2bcc6, 'Y', '2002-10-26 14:23:01'),
(195, 8, 0xa4e2bcc6a4ceab48a5f3, 'Y', '2007-06-22 20:39:12'),
(1648, 17, 0x42b3ea646e7920584d4c2d746167, 'Y', '2013-08-21 01:17:20'),
(378, 8, 0xa7daaabab8eaaec6, 'Y', '2002-10-26 14:23:01'),
(134, 8, 0xa96da657, 'Y', '2002-10-26 14:23:01'),
(314, 8, 0xb773, 'Y', '2002-10-26 14:23:01'),
(327, 8, 0xb773ab48a5f3, 'Y', '2007-06-22 20:32:29'),
(190, 8, 0xb773b14bbd58, 'Y', '2002-10-26 14:23:01'),
(385, 8, 0xb773b8dcc344, 'N', '2007-02-25 08:57:52'),
(460, 8, 0xa455adb6, 'Y', '2002-10-26 14:23:01'),
(210, 8, 0xbaceaf76, 'Y', '2007-02-17 11:26:56'),
(447, 8, 0xb271a46c, 'Y', '2002-10-26 14:23:01'),
(371, 8, 0xa75f, 'Y', '2002-10-26 14:23:01'),
(391, 8, 0xb54cb4d1a7bd, 'Y', '2007-06-22 20:08:03'),
(194, 8, 0xa575b148b371aabe, 'Y', '2007-06-23 11:54:33'),
(81, 8, 0xa5bcb56ea44a, 'Y', '2007-02-17 11:16:36'),
(420, 8, 0xa7bdbcc6, 'Y', '2007-02-26 05:22:42'),
(185, 8, 0xc2beb77e, 'Y', '2002-10-26 14:23:01'),
(193, 8, 0xc3f6, 'Y', '2002-10-26 14:23:01'),
(189, 8, 0xc2c2b14bbd58, 'Y', '2002-10-26 14:23:01'),
(252, 8, 0xc577aaefa641abd7a5fac17ba149bdd0a66ea66ea8c9a8fca149, 'Y', '2007-03-10 08:39:11'),
(388, 8, 0xb67da9f1b9efa7bd, 'Y', '2007-02-11 20:59:43'),
(359, 8, 0xb9efa4e2a96da657, 'Y', '2007-06-06 14:02:34'),
(175, 8, 0xa8e4a54c3a, 'Y', '2007-05-11 21:01:13'),
(300, 8, 0xa8e4a54cb3f2b4d1baf4afb8, 'Y', '2007-03-04 08:58:49'),
(95, 8, 0xa6b9adb6abd8a9f3, 'Y', '2002-10-26 14:23:01'),
(231, 8, 0xb5eaa4e2, 'Y', '2002-10-26 14:23:01'),
(226, 8, 0xb5eaa4e2, 'Y', '2007-02-13 10:42:02'),
(245, 8, 0xb14bbd58, 'Y', '2002-10-26 14:23:01'),
(157, 8, 0xb14bbd58a477a7f3a7efa149, 'Y', '2002-10-26 14:23:01'),
(1105, 40, 0x556d6120636f6c756e612073656d616e616c20736f62726520476f2c206573637269746120706f7220526f622056616e205a65696a73742e, 'Y', '2014-07-30 14:29:49'),
(200, 8, 0xadd3a448b35da977, 'Y', '2007-02-17 11:26:56'),
(454, 8, 0xbdd0a455a66ec5fda46ca149, 'Y', '2007-06-17 18:49:43'),
(426, 8, 0xb4d1a4e2, 'Y', '2007-11-07 07:01:16'),
(242, 8, 0xbdd0b5f9a555a141a8d3a455b458bd4cb3f2b4d1a143, 'Y', '2007-03-10 08:39:11'),
(345, 8, 0xbdd0bfe9a44ab8eaaec6, 'Y', '2002-10-26 14:23:01'),
(243, 8, 0xbdd0b56ea44aa143, 'Y', '2002-10-26 14:23:01'),
(461, 8, 0xa457adb6, 'Y', '2002-10-26 14:23:01'),
(458, 8, 0xb4a3a46c, 'Y', '2002-10-26 14:23:01'),
(158, 8, 0xadd3a448b35da977a7f3b773a149, 'Y', '2007-02-17 11:32:25'),
(407, 8, 0xbe41b7edc5fda46c, 'Y', '2007-02-12 19:40:08'),
(433, 8, 0xbe41b7edc5fda46ca15da874b2cebdd5bee3b64ba5d8a15e, 'Y', '2007-06-07 10:38:40'),
(204, 8, 0xb0d1a6d2b5a5afc5, 'Y', '2007-02-23 14:11:27'),
(366, 8, 0xb5fbb5a5, 'Y', '2007-01-04 15:00:46'),
(205, 8, 0x444753b5a5afc5, 'Y', '2007-02-11 20:59:43'),
(384, 8, 0xbe5cc5aabdd7bec2, 'Y', '2007-02-25 08:51:25'),
(344, 8, 0xb5f9a555, 'Y', '2002-10-26 14:23:01'),
(247, 8, 0xb5f9a555b773b162b8b9, 'Y', '2002-10-26 14:23:01'),
(393, 8, 0xb5f9a555a4e9b4c1, 'Y', '2002-10-26 14:23:01'),
(238, 8, 0xa752b0a3c65bacdd, 'Y', '2007-05-31 13:35:45'),
(315, 8, 0xa477a65ec2d0, 'Y', '2002-10-26 14:23:01'),
(324, 8, 0xa65ec2d0, 'Y', '2002-10-26 14:23:01'),
(316, 8, 0xbdd0a65ec2d0a149, 'Y', '2008-04-29 07:37:14'),
(423, 8, 0xb9efa4e2a5b2b6b7a6b3b5a5afc5, 'Y', '2007-02-26 05:22:42'),
(235, 8, 0xbb7bbfe9, 'Y', '2007-05-30 12:33:56'),
(225, 8, 0xbb7bbfe9, 'Y', '2007-05-30 12:33:56'),
(234, 8, 0xc47ec4f2b9efa7bd, 'Y', '2002-10-26 14:23:01'),
(217, 8, 0xa56b, 'Y', '2002-10-26 14:23:01'),
(397, 8, 0xb669a6e6, 'Y', '2007-02-26 05:16:02'),
(349, 8, 0xb669a6e6b4d1a7bd, 'Y', '2007-02-19 10:31:27'),
(351, 8, 0x257320b669a6e6a4a4b4d1a7bd, 'Y', '2007-05-31 14:06:46'),
(229, 8, 0xad70a4c0, 'Y', '2002-10-26 14:23:01'),
(417, 8, 0xa5d8ab65b54cb8eaaec6a143, 'Y', '2002-10-26 14:23:01'),
(86, 8, 0xbc67ab48, 'Y', '2009-10-12 16:16:04'),
(336, 8, 0xb065a558c1dcbdd0, 'Y', '2007-06-22 20:34:25'),
(329, 8, 0xb148ab48, 'Y', '2015-05-12 08:37:52'),
(396, 8, 0xb148ab48b5b9b4d1a4e2, 'Y', '2007-10-01 06:58:33'),
(326, 8, 0xb065a558a65ea8e7, 'Y', '2002-10-26 14:23:01'),
(375, 8, 0xa477b5b2a7f4b4d1a7bd, 'Y', '2007-02-19 10:31:27'),
(380, 8, 0xc5e3a5dcb054aea7, 'Y', '2002-10-26 14:23:01'),
(374, 8, 0xb669a6e6a4a4b4d1a7bd, 'Y', '2007-02-19 10:31:27'),
(93, 8, 0xbaf4afb8a661b9cf, 'Y', '2002-10-26 14:23:01'),
(361, 8, 0xb4d1bd4c, 'Y', '2007-06-01 07:56:48'),
(237, 8, 0xb8f5a8eca455a440a7bd, 'Y', '2002-10-26 14:23:01'),
(219, 8, 0xbd4cc3e4a5adb7c6, 'Y', '2007-02-17 11:26:56'),
(178, 8, 0xacd9a5f7, 'Y', '2002-10-26 14:23:01'),
(82, 8, 0xa5d8ab65b9efa7bd, 'Y', '2002-10-26 14:23:01'),
(107, 8, 0xa46c, 'Y', '2002-10-26 14:23:01'),
(212, 8, 0xf9d6a5dba46aa470, 'Y', '2002-10-26 14:23:01'),
(311, 8, 0xa544a6ae, 'Y', '2002-10-26 14:23:01'),
(455, 8, 0xb065a558a141a8c3a8eca455a440a7bd, 'Y', '2007-05-31 16:45:27'),
(456, 8, 0xb065a558a141a65ea8ecb9efa7bdadb6, 'Y', '2007-06-17 18:45:54'),
(322, 8, 0x257320b9efa7bd20257320a477b351b1b5a8fca143, 'Y', '2002-10-26 14:23:01'),
(323, 8, 0xc1dcbdd0b351a9daa141a9ceb9efa7bda477a752b0a3, 'Y', '2002-10-26 14:23:01'),
(383, 8, 0xb8dcc344a643aaed, 'Y', '2007-03-04 08:06:37'),
(414, 8, 0xaec9adad, 'Y', '2002-10-26 14:23:01'),
(209, 8, 0xaec9b0cf, 'Y', '2002-10-26 14:23:01'),
(308, 8, 0xa6aca5f3a448, 'Y', '2002-10-26 14:23:01'),
(328, 8, 0xa6aca5f3a44828b162b8b929, 'Y', '2007-06-22 20:34:25'),
(244, 8, 0xb0d1c65bbdd0a5ce202573a143, 'Y', '2002-10-26 14:23:01'),
(90, 8, 0xc2bdc4b6, 'Y', '2002-10-26 14:23:01'),
(216, 8, 0xa457, 'Y', '2002-10-26 14:23:01'),
(201, 8, 0xb162b8b9, 'Y', '2002-10-26 14:23:01'),
(84, 8, 0xa8cfa5ceaacc, 'Y', '2007-02-17 11:16:10'),
(88, 8, 0xb4d1a4e2, 'Y', '2007-10-01 06:18:34'),
(197, 8, 0xababaabd, 'Y', '2002-10-26 14:23:01'),
(83, 8, 0xabdda7bdabc7, 'Y', '2002-10-26 14:23:01'),
(416, 8, 0xb667a5bdad70aec9, 'Y', '2009-01-16 13:31:08'),
(377, 8, 0xc577aaefadb6, 'Y', '2002-10-26 14:23:01'),
(330, 8, 0xa5d5a4e8, 'Y', '2007-06-03 13:47:19'),
(439, 8, 0x2d, 'Y', '2007-02-13 13:47:43'),
(104, 8, 0xa843a4e2a55b202573, 'Y', '2002-10-26 14:23:01'),
(103, 8, 0xb54cadcbbcc6ad70aec9, 'Y', '2007-06-06 19:59:05'),
(399, 8, 0xb3d3, 'Y', '2002-10-26 14:23:01'),
(213, 8, 0xb4d1bd4cc343a6e2, 'Y', '2007-02-17 11:26:56'),
(370, 8, 0xac4f, 'Y', '2007-06-01 07:59:37'),
(390, 8, 0xbdfca8ecb17aa455aabab9efa7bda147, 'Y', '2007-06-22 20:08:03'),
(415, 9, 0x234a6f676f73, 'Y', '2002-10-26 14:23:01'),
(419, 9, 0x4170656e6173202573, 'Y', '2002-10-26 18:00:40'),
(452, 9, 0x257320706f7220257320706564726173, 'Y', '2002-10-26 14:23:01'),
(450, 9, 0x257320706f72206a6f67616461206520257320706572ed6f646f73206578747261, 'Y', '2003-05-24 03:11:44'),
(292, 9, 0x556d612048697374f3726961204272657665, 'Y', '2003-05-24 03:22:06'),
(333, 9, 0x41636569746172, 'Y', '2002-10-26 14:23:01'),
(266, 9, 0x556d207369746520636f6f706572617469766f2e2050617261206c6572206520636f6e7472696275697221, 'Y', '2002-10-26 14:23:01'),
(402, 9, 0x41637469766964616465, 'Y', '2002-10-26 14:23:01'),
(462, 9, 0x41646963696f6e617220636f6c756e61, 'Y', '2002-10-26 14:23:01'),
(425, 9, 0x41646963696f6e6172206a6f676f, 'Y', '2002-10-26 14:23:01'),
(239, 9, 0x41646963696f6e617220616f73206a6f676f7320656d206f627365727661e7e36f, 'Y', '2003-05-24 03:10:21'),
(96, 9, 0x41646d696e, 'Y', '2002-10-26 14:23:01'),
(298, 9, 0x556d61206772616e646520636f6c6563e7e36f206465206372ed74696361732061206c6976726f7320646520676f, 'Y', '2003-05-24 03:22:06'),
(303, 9, 0x556d207365727669646f72206772616e64652070617261206a6f67617220656d2074656d706f207265616c, 'Y', '2002-10-26 14:23:01'),
(301, 9, 0x54616d62e96d20277475726e206261736564272e2054656d206d7569746f73206f7574726f73206a6f676f732e, 'Y', '2003-05-24 03:22:06'),
(272, 9, 0x274d616e67612720736f627265206f20676f2e205265636f6d656e6461646f21, 'Y', '2003-05-24 03:22:06'),
(306, 9, 0x556d61206c69737461206d61697320636f6d706c657461206465207365727669646f726573, 'Y', '2002-10-26 14:23:01'),
(100, 9, 0x65, 'Y', '2002-10-26 14:23:01'),
(274, 9, 0x556d6120496e74726f6475e7e36f20496e746572616374697661, 'Y', '2003-05-24 03:22:06'),
(297, 9, 0x4269626c696f6772616669617320646520476f20416e6f74616461732e, 'Y', '2002-10-26 14:23:01'),
(395, 9, 0x496e666f726d61e7e36f2062696f6772e166696361, 'Y', '2003-05-24 03:15:38'),
(156, 9, 0x42696f6772616669612061637475616c697a61646121, 'Y', '2002-10-26 14:23:01'),
(331, 9, 0x707265746173, 'Y', '2002-10-26 14:23:01'),
(211, 9, 0x4772e16669636f7320646f20746162756c6569726f, 'Y', '2003-05-24 03:15:38'),
(431, 9, 0x54616d616e686f20646f20746162756c6569726f, 'N', '2002-10-26 14:23:01'),
(2183, 17, 0x42b3ea6479, 'Y', '2013-08-21 00:01:06'),
(451, 9, 0x43616e616469616e6f, 'Y', '2002-10-26 14:23:01'),
(108, 9, 0x42796f796f6d692043616e616469616e6f, 'Y', '2002-10-26 14:23:01'),
(187, 9, 0x41637475616c697a61722062696f677261666961, 'Y', '2002-10-26 14:23:01'),
(192, 9, 0x4d7564617220612070617373776f7264, 'Y', '2002-10-26 14:23:01'),
(222, 9, 0x416c74657261722070657266696c, 'Y', '2002-10-26 14:23:01'),
(177, 9, 0x436964616465, 'Y', '2002-10-26 14:23:01'),
(428, 9, 0x52656cf367696f2066756e63696f6e6120616f732066696e732064652073656d616e61, 'Y', '2003-05-24 03:10:21'),
(179, 9, 0x436c756265, 'Y', '2002-10-26 14:23:01');
INSERT INTO `Translations` (`Original_ID`, `Language_ID`, `Text`, `Translated`, `Updated`) VALUES
(360, 9, 0x436f72, 'Y', '2002-10-26 14:23:01'),
(446, 9, 0x436f726573, 'Y', '2002-10-26 14:23:01'),
(412, 9, 0x436f6d656e74e172696f, 'Y', '2003-05-24 03:10:21'),
(287, 9, 0x50616c6176726173204a61706f6e6573617320436f6d756e7320646520476f, 'Y', '2002-10-26 14:23:01'),
(191, 9, 0x436f6e6669726d6520612070617373776f7264, 'Y', '2002-10-26 14:23:01'),
(12, 9, 0x41206c696761e7e36f20e02062617365206465206461646f732066616c686f752e2045737065726520616c67756e73206d696e75746f732065207465737465206e6f76616d656e74652e, 'Y', '2003-05-24 03:42:07'),
(337, 9, 0x436f6c61626f7261646f72657320646f2044726167e36f, 'Y', '2003-05-24 03:22:06'),
(406, 9, 0x436f6e76656e63696f6e616c, 'Y', '2002-10-26 14:23:01'),
(432, 9, 0x48616e646963617020636f6e76656e63696f6e616c2028636f6d20302e35206465206b6f6d6920736520646573696775616c29, 'Y', '2002-10-26 14:23:01'),
(214, 9, 0x4c61646f73207061726120636f6f7264656e61646173, 'Y', '2002-10-26 14:23:01'),
(48, 9, 0x496d706f7373ed76656c206578747261706f6c6172206f2076616c6f72206e612066756ee7e36f20696e746572706f6c6174652829, 'Y', '2003-05-24 03:42:07'),
(19, 9, 0x496d706f7373ed76656c2073656c656363696f6e617220612062617365206465206461646f732e2045737065726520756e73206d696e75746f7320652074656e7465206f757472612076657a2e, 'Y', '2003-05-24 03:42:07'),
(176, 9, 0x5061ed73, 'Y', '2003-05-24 03:15:38'),
(6090, 36, 0x46656c74c3a974656c6573206cc3a970c3a973656b206d656e74766520c3a97320616b746976c3a16c766121, 'Y', '2015-07-23 12:16:04'),
(2669, 17, 0x2e676966, 'Y', '2013-08-21 00:05:19'),
(421, 9, 0x64616e, 'Y', '2002-10-26 14:23:01'),
(18, 9, 0x4120706573717569736120e02062617365206465206461646f732066616c686f752e2045737065726520756e73206d696e75746f7320652074656e7465206f757472612076657a2e, 'Y', '2003-05-24 03:42:07'),
(312, 9, 0x44617461, 'Y', '2002-10-26 14:23:01'),
(98, 9, 0x646961, 'Y', '2002-10-26 14:23:01'),
(99, 9, 0x64696173, 'Y', '2002-10-26 14:23:01'),
(334, 9, 0x52656375736172, 'Y', '2002-10-26 14:23:01'),
(429, 9, 0x417061676172, 'Y', '2002-10-26 14:23:01'),
(232, 9, 0x417061676172206a6f676f, 'Y', '2002-10-26 14:23:01'),
(13, 9, 0x4f206a6f676f206ee36f20666f69206170616761646f2e2050726f766176656c6d656e7465206ee36f20e920756d2070726f626c656d612e, 'Y', '2003-05-24 03:42:07'),
(227, 9, 0x4120617061676172206f206a6f676f, 'Y', '2002-10-26 14:23:01'),
(332, 9, 0x446973707574617220616a7573746573, 'Y', '2002-10-26 14:23:01'),
(94, 9, 0x446f63756d656e7461e7e36f, 'Y', '2003-05-24 03:03:30'),
(159, 9, 0x446f63756d656e7461e7e36f, 'Y', '2003-05-24 03:22:06'),
(233, 9, 0x666569746f, 'Y', '2002-10-26 14:23:01'),
(409, 9, 0x4a6f676f206475706c6f, 'Y', '2002-10-26 14:23:01'),
(218, 9, 0x46756e646f, 'Y', '2002-10-26 14:23:01'),
(170, 9, 0x446f776e6c6f616420617320666f6e74657320646f2064726167e36f, 'Y', '2003-05-24 03:22:06'),
(236, 9, 0x446f776e6c6f616420736766, 'Y', '2002-10-26 14:23:01'),
(173, 9, 0x412070e167696e6120646f2064726167e36f206e6f20736f75726365666f726765, 'Y', '2003-05-24 03:22:06'),
(379, 9, 0x416c74657261722062696f677261666961, 'Y', '2002-10-26 14:23:01'),
(188, 9, 0x416c746572617220612070617373776f7264, 'Y', '2002-10-26 14:23:01'),
(199, 9, 0x416c74657261722070657266696c, 'Y', '2002-10-26 14:23:01'),
(181, 9, 0x456d61696c, 'Y', '2002-10-26 14:23:01'),
(206, 9, 0x4e6f746966696361e7f5657320706f7220656d61696c, 'Y', '2003-05-24 03:15:38'),
(299, 9, 0x4c6f6a61206575726f70656961, 'Y', '2002-10-26 14:23:01'),
(453, 9, 0x657874726120706f72206a6f67616461, 'Y', '2002-10-26 14:23:01'),
(92, 9, 0x464151, 'Y', '2002-10-26 14:23:01'),
(398, 9, 0x5465726d696e61646f73, 'Y', '2002-10-26 14:23:01'),
(348, 9, 0x4a6f676f73207465726d696e61646f73, 'Y', '2002-10-26 14:23:01'),
(350, 9, 0x4a6f676f73207465726d696e61646f732070617261202573, 'Y', '2002-10-26 14:23:01'),
(443, 9, 0x54656d706f2046697363686572, 'Y', '2002-10-26 14:23:01'),
(309, 9, 0x496e64696361646f726573, 'Y', '2002-10-26 14:23:01'),
(442, 9, 0x706f72, 'Y', '2002-10-26 14:23:01'),
(223, 9, 0x45737175656365752d73652064612070617373776f72643f, 'Y', '2002-10-26 14:23:01'),
(136, 9, 0x46f372756d, 'Y', '2003-05-24 03:22:06'),
(91, 9, 0x46f372756e73, 'Y', '2003-05-24 03:03:30'),
(293, 9, 0x5061726120706573736f617320636f6d20706f75636f2074656d706f2e, 'Y', '2002-10-26 14:23:01'),
(161, 9, 0x50657267756e746173204d616973204672657175656e746573202846415129, 'Y', '2002-10-26 14:23:01'),
(260, 9, 0x50657267756e746173206672657175656e74657320736f627265206f20676f20646f20677275706f2064652064697363757373f56573203c693e7265632e67616d65732e676f3c2f693e, 'Y', '2003-05-24 03:22:06'),
(310, 9, 0x4465, 'Y', '2002-10-26 14:23:01'),
(196, 9, 0x546162756c6569726f20636f6d706c65746f2065206d656e736167656e73, 'Y', '2002-10-26 14:23:01'),
(202, 9, 0x4e6f6d6520636f6d706c65746f, 'Y', '2002-10-26 14:23:01'),
(230, 9, 0x4a6f676f, 'Y', '2002-10-26 14:23:01'),
(109, 9, 0x4a6f676f2061646963696f6e61646f21, 'Y', '2002-10-26 14:23:01'),
(253, 9, 0x4a6f676f206170616761646f21, 'Y', '2002-10-26 14:23:01'),
(445, 9, 0x494420646f206a6f676f, 'Y', '2002-10-26 14:23:01'),
(254, 9, 0x4a6f676f2061636569746521, 'Y', '2002-10-26 14:23:01'),
(183, 9, 0x507265666572ea6e63696173206465206a6f676f, 'Y', '2003-05-24 03:15:38'),
(89, 9, 0x4a6f676f73, 'Y', '2002-10-26 14:23:01'),
(256, 9, 0x496e666f726d61e7e36f20476572616c2e, 'Y', '2003-05-24 03:22:06'),
(457, 9, 0x526574726f6365646572, 'Y', '2002-10-26 14:23:01'),
(296, 9, 0x4c6976726f732c206571756970616d656e746f206520736f66747761726520646520676f2e, 'Y', '2002-10-26 14:23:01'),
(259, 9, 0x46415120646f20476f, 'Y', '2002-10-26 14:23:01'),
(267, 9, 0x4e6f74ed6369617320646520476f, 'Y', '2003-05-24 03:22:06'),
(283, 9, 0x50726f626c656d617320646520476f, 'Y', '2002-10-26 14:23:01'),
(362, 9, 0x48616e6469636170, 'Y', '2002-11-02 02:29:31'),
(271, 9, 0x48696b617275206e6f20476f, 'Y', '2002-10-26 14:23:01'),
(291, 9, 0x48697374f3726961, 'Y', '2003-05-24 03:22:06'),
(184, 9, 0x506173736174656d706f73, 'Y', '2002-10-26 14:23:01'),
(240, 9, 0x5072696e636970616c, 'Y', '2002-10-26 14:23:01'),
(180, 9, 0x486f6d6570616765, 'Y', '2002-10-26 14:23:01'),
(198, 9, 0x486f72697a6f6e74616c, 'Y', '2002-10-26 14:23:01'),
(101, 9, 0x686f7261, 'Y', '2002-10-26 14:23:01'),
(102, 9, 0x686f726173, 'Y', '2002-10-26 14:23:01'),
(182, 9, 0x4efa6d65726f20646520494351, 'Y', '2003-05-24 03:15:38'),
(132, 9, 0x4944, 'Y', '2002-10-26 14:23:01'),
(424, 9, 0x53652073696d2c20636c6173736966696361e7e36f20656e747265, 'Y', '2003-05-24 03:10:21'),
(60, 9, 0x53652071756973657220616a7564617220612074726164757a6972206f2064726167e36f2c20e9206661766f722064656978617220756d61206d656e736167656d206e6f2066f372756d20277472616e736c6174696f6e272e, 'Y', '2003-05-24 03:42:07'),
(169, 9, 0x736520717569736572206f207365752064726167e36f, 'Y', '2003-05-24 03:22:06'),
(411, 9, 0x496e666f, 'Y', '2002-10-26 14:23:01'),
(295, 9, 0x4361736f2073656a6120756d206173706972616e7465206120736162652d7475646f, 'Y', '2002-10-26 14:23:01'),
(168, 9, 0x496e73747275e7f565732070617261206120696e7374616c61e7e36f, 'Y', '2003-05-24 03:22:06'),
(248, 9, 0x496e74726f6475e7e36f, 'Y', '2003-05-24 03:07:12'),
(160, 9, 0x496e74726f6475e7e36f20616f2044726167e36f203c693e27447261676f6e273c2f693e, 'Y', '2003-05-24 03:22:06'),
(335, 9, 0x4d656e736167656d20646520636f6e76697465, 'Y', '2002-10-26 14:23:01'),
(87, 9, 0x436f6e7669646172, 'Y', '2002-10-26 14:23:01'),
(373, 9, 0x436f6e76696461722065737465207574696c697a61646f72, 'Y', '2002-10-26 14:23:01'),
(257, 9, 0x50e167696e6173206465204a616e2076616e2064657220537465656e73, 'Y', '2003-05-24 03:22:06'),
(449, 9, 0x4a61706f6eea73, 'Y', '2003-05-24 03:11:44'),
(106, 9, 0x42796f796f6d69206a61706f6eea73, 'Y', '2003-05-24 03:03:30'),
(372, 9, 0x6a69676f, 'N', '2002-10-26 14:23:01'),
(430, 9, 0x41646572697220616f206a6f676f, 'Y', '2002-10-26 14:23:01'),
(363, 9, 0x4b6f6d69, 'Y', '2002-10-26 14:23:01'),
(422, 9, 0x6b7975, 'Y', '2002-10-26 14:23:01'),
(208, 9, 0x4c696e67756167656d, 'Y', '2002-10-26 14:23:01'),
(394, 9, 0xda6c74696d6f2041636573736f, 'Y', '2003-05-24 03:15:38'),
(368, 9, 0xda6c742e206a6f672e, 'N', '2003-05-24 03:03:30'),
(215, 9, 0x4573717565726461, 'Y', '2002-10-26 14:23:01'),
(165, 9, 0x4c696e6b73, 'Y', '2002-10-26 14:23:01'),
(80, 9, 0x4944206465207574696c697a61646f72, 'Y', '2002-10-26 14:23:01'),
(246, 9, 0x456e74726172, 'Y', '2002-10-26 14:23:01'),
(97, 9, 0x53616972, 'Y', '2002-10-26 14:23:01'),
(400, 9, 0x446572726f746173, 'Y', '2002-10-26 14:23:01'),
(258, 9, 0x4d7569746120696e666f726d61e7e36f20736f627265206f20476f, 'Y', '2003-05-24 03:22:06'),
(437, 9, 0x54656d706f205072696e636970616c, 'Y', '2002-10-26 14:23:01'),
(220, 9, 0x4469726563e7e36f20646f206d656e75, 'Y', '2003-05-24 03:15:38'),
(325, 9, 0x4d656e736167656d, 'Y', '2002-10-26 14:23:01'),
(307, 9, 0x4c69737461206465206d656e736167656e73, 'Y', '2002-10-26 14:23:01'),
(85, 9, 0x4d656e736167656e73, 'Y', '2002-10-26 14:23:01'),
(346, 9, 0x4d656e736167656d20656e766961646121, 'Y', '2002-10-26 14:23:01'),
(436, 9, 0x6d65736573, 'Y', '2002-10-26 14:23:01'),
(364, 9, 0x4a6f6761646173, 'Y', '2002-10-26 14:23:01'),
(195, 9, 0x4a6f67616461732065206d656e736167656e73, 'Y', '2002-10-26 14:23:01'),
(378, 9, 0x41206d696e686120696e666f726d61e7e36f206465207574696c697a61646f72, 'Y', '2003-05-24 03:15:38'),
(134, 9, 0x4e6f6d65, 'Y', '2002-10-26 14:23:01'),
(314, 9, 0x4e6f766f, 'Y', '2002-10-26 14:23:01'),
(327, 9, 0x4e6f7661206d656e736167656d, 'Y', '2002-10-26 14:23:01'),
(190, 9, 0x4e6f76612070617373776f7264, 'Y', '2002-10-26 14:23:01'),
(385, 9, 0x4e6f766f2074f37069636f, 'N', '2003-05-24 03:22:06'),
(460, 9, 0x70e167696e612073656775696e7465, 'Y', '2003-05-24 03:03:30'),
(210, 9, 0x486f72617320656d20717565206f2072656cf367696f2070e17261, 'Y', '2003-05-24 03:15:38'),
(447, 9, 0x4e6967697269, 'Y', '2002-10-26 14:23:01'),
(371, 9, 0x6ee36f, 'Y', '2003-05-24 03:10:21'),
(391, 9, 0x4e656e68756d206a6f676f20656e636f6e747261646f, 'Y', '2002-10-26 14:23:01'),
(194, 9, 0x536f6d656e7465206e6f746966696361e7e36f, 'Y', '2003-05-24 03:15:38'),
(81, 9, 0x53656d2076616c696461e7e36f206465207574696c697a61646f72, 'Y', '2003-05-24 03:03:30'),
(427, 9, 0x4efa6d65726f206465206a6f676f73, 'Y', '2003-05-24 03:10:21'),
(420, 9, 0x4efa6d65726f206465206a6f676f7320612061646963696f6e6172, 'Y', '2003-05-24 03:10:21'),
(185, 9, 0x50726f66697373e36f, 'Y', '2003-05-24 03:15:38'),
(193, 9, 0x4465736c696761646f, 'Y', '2002-10-26 14:23:01'),
(189, 9, 0x50617373776f726420616e74696761, 'Y', '2002-10-26 14:23:01'),
(252, 9, 0x4d61697320756d612076657a2c2062656d2076696e646f2861293b20646976697274612d736520636f6d2061207375612076697369746120706f72206171756921, 'Y', '2002-10-26 14:23:01'),
(388, 9, 0x446973706f6eed76656c3f, 'Y', '2003-05-24 03:03:30'),
(359, 9, 0x416476657273e172696f, 'Y', '2003-05-24 03:03:30'),
(175, 9, 0x4f7574726f, 'Y', '2002-10-26 14:23:01'),
(300, 9, 0x4f7574726f73207365727669646f72657320646520476f, 'Y', '2002-10-26 14:23:01'),
(95, 9, 0x50e167696e612063726961646120656d, 'Y', '2002-10-26 14:23:01'),
(231, 9, 0x506173736172, 'Y', '2002-10-26 14:23:01'),
(226, 9, 0x4120706173736172, 'Y', '2002-10-26 14:23:01'),
(245, 9, 0x50617373776f7264, 'Y', '2002-10-26 14:23:01'),
(157, 9, 0x412070617373776f726420666f6920616c74657261646121, 'Y', '2002-10-26 14:23:01'),
(163, 9, 0x47656e7465, 'Y', '2002-10-26 14:23:01'),
(200, 9, 0x446566696e69e7f5657320706572736f6e616c697a61646173, 'Y', '2003-05-24 03:15:38'),
(454, 9, 0x506f72206661766f722c20636f6c6f717565206173207065647261732064652068616e646963617021, 'Y', '2002-10-26 14:23:01'),
(426, 9, 0x4a6f6761646f72, 'Y', '2002-10-26 14:23:01'),
(242, 9, 0x526567697374652d7365206c697672656d656e74652065206a6f67756520616c67756e73206a6f676f73, 'Y', '2002-10-26 14:23:01'),
(345, 9, 0x506f72206661766f7220696e74726f64757a61206f732073657573206461646f73, 'Y', '2002-10-26 14:23:01'),
(243, 9, 0x506f72206661766f722c20656e747265206e6f2073697374656d612e, 'Y', '2002-10-26 14:23:01'),
(461, 9, 0x70e167696e6120616e746572696f72, 'Y', '2003-05-24 03:03:30'),
(458, 9, 0x50726973696f6e6569726f73, 'Y', '2002-10-26 14:23:01'),
(158, 9, 0x4f2070657266696c20666f692061637475616c697a61646f21, 'Y', '2002-10-26 14:23:01'),
(407, 9, 0x5072f37072696f, 'Y', '2003-05-24 03:10:21'),
(433, 9, 0x48616e6469636170207072f37072696f, 'Y', '2003-05-24 03:11:44'),
(204, 9, 0x43617465676f726961, 'Y', '2002-10-26 14:23:01'),
(366, 9, 0x4163742e20636c6173732e, 'Y', '2002-10-26 14:23:01'),
(205, 9, 0x436c6173736966696361e7e36f, 'Y', '2003-05-24 03:03:30'),
(384, 9, 0x4c65722066f372756e73, 'Y', '2003-05-24 03:22:06'),
(344, 9, 0x526567697374652d7365, 'Y', '2002-10-26 14:23:01'),
(247, 9, 0x5265676973746520756d61206e6f766120636f6e7461, 'Y', '2002-10-26 14:23:01'),
(393, 9, 0x44617461206465207265676973746f, 'Y', '2002-10-26 14:23:01'),
(238, 9, 0x446569786172206465206f62736572766172, 'Y', '2002-10-26 14:23:01'),
(315, 9, 0x526573706f6e64696461, 'Y', '2002-10-26 14:23:01'),
(324, 9, 0x526573706f6e646572, 'Y', '2002-10-26 14:23:01'),
(316, 9, 0x526573706f6e64657221, 'Y', '2002-10-26 14:23:01'),
(423, 9, 0x526571756572657220616476657273e172696f20636c6173736966696361646f, 'Y', '2003-05-24 03:10:21'),
(235, 9, 0x4465736973746972, 'Y', '2002-10-26 14:23:01'),
(225, 9, 0x41206465736973746972, 'Y', '2002-10-26 14:23:01'),
(234, 9, 0x436f6e74696e756172206f206a6f676f, 'Y', '2002-10-26 14:23:01'),
(217, 9, 0x44697265697461, 'Y', '2002-10-26 14:23:01'),
(273, 9, 0x526567726173, 'Y', '2002-10-26 14:23:01'),
(397, 9, 0x41206465636f72726572, 'Y', '2002-10-26 14:23:01'),
(349, 9, 0x41206465636f72726572, 'Y', '2002-10-26 14:23:01'),
(351, 9, 0x4a6f676f732061206465636f727265722070617261202573, 'Y', '2002-10-26 14:23:01'),
(229, 9, 0x506f6e747561e7e36f, 'Y', '2003-05-24 03:10:21'),
(417, 9, 0x5061726563652065737461722076617a696f206465206d6f6d656e746f2e, 'Y', '2002-10-26 14:23:01'),
(86, 9, 0x456e76696172206d656e736167656d, 'Y', '2002-10-26 14:23:01'),
(336, 9, 0x436f6e7669646172, 'Y', '2002-10-26 14:23:01'),
(329, 9, 0x456e76696172204d656e736167656d, 'Y', '2002-10-26 14:23:01'),
(396, 9, 0x456e76696172206d656e736167656d20616f207574696c697a61646f72, 'Y', '2002-10-26 14:23:01'),
(326, 9, 0x456e7669617220526573706f737461, 'Y', '2002-10-26 14:23:01'),
(265, 9, 0x4269626c696f7465636120646f2053656e736569, 'Y', '2002-10-26 14:23:01'),
(305, 9, 0x4c69737461206465207365727669646f726573, 'Y', '2002-10-26 14:23:01'),
(352, 9, 0x736766, 'Y', '2002-10-26 14:23:01'),
(375, 9, 0x4a6f676f73207465726d696e61646f73, 'Y', '2002-10-26 14:23:01'),
(380, 9, 0x4d6f7374726172206d656e736167656d, 'Y', '2002-10-26 14:23:01'),
(374, 9, 0x4a6f676f732061637469766f73, 'Y', '2002-10-26 14:23:01'),
(93, 9, 0x4d61706120646f2073697465, 'Y', '2002-10-26 14:23:01'),
(361, 9, 0x54616d2e, 'Y', '2002-11-02 01:26:02'),
(237, 9, 0x566572206a6f676f2073656775696e7465, 'Y', '2002-10-26 14:23:01'),
(219, 9, 0x426f72646120646f20746162756c6569726f2073756176697a616461, 'Y', '2002-10-26 14:23:01'),
(8, 9, 0x4ee36f20e920706f7373ed76656c20656e636f6e74726172206f206a6f676f2070617261206f207175616c20666f6920636f6e76696461646f2e204ae12072656375736f753f, 'Y', '2003-05-24 03:42:07'),
(50, 9, 0x4ee36f20666f6920706f7373ed76656c20656e636f6e747261722065737465206a6f676f206e612073616c61206465206573706572612e2050726f766176656c6d656e74652c206ae120616c6775e96d206f20636f6d65e76f752e, 'Y', '2003-05-24 03:42:07'),
(20, 9, 0x4ee36f20666f6920706f7373ed76656c20636f6d65e76172206f206a6f676f2e2045737065726520756e73206d696e75746f7320652074656e7465206f757472612076657a2e, 'Y', '2003-05-24 03:42:07'),
(38, 9, 0x48e120756d2070726f626c656d6120636f6d206120636c6173736966696361e7e36f2c2065737175656365752d736520646520657370656369666963617220276b797527206f75202764616e273f, 'Y', '2003-05-24 03:42:07'),
(39, 9, 0x48e120756d2070726f626c656d6120636f6d206120636c6173736966696361e7e36f2c2064657665207573617220276b797527206f72202764616e2720706172612065737465207469706f20646520636c6173736966696361e7e36f2e, 'Y', '2003-05-24 03:42:07'),
(41, 9, 0x4ee36f20e920706f7373ed76656c20656e636f6e747261722065737365206a6f676f2e, 'Y', '2003-05-24 03:42:07'),
(42, 9, 0x4ee36f20e920706f7373ed76656c20656e636f6e74726172206f2066f372756d207175652073656c656363696f6e6f752e, 'Y', '2003-05-24 03:42:07'),
(44, 9, 0x4ee36f20666f6920706f7373ed76656c20656e636f6e747261722065737361206d656e736167656d2e, 'Y', '2003-05-24 03:42:07'),
(45, 9, 0x4ee36f20666f6920706f7373ed76656c20656e636f6e747261722065737365207574696c697a61646f722e, 'Y', '2003-05-24 03:42:07'),
(56, 9, 0x4ee36f20666f6920706f7373ed76656c20656e636f6e7472617220756d207574696c697a61646f7220636f6d2065737365205573657249442e, 'Y', '2003-05-24 03:42:07'),
(32, 9, 0x4ee36f20e92061207375612076657a206465206a6f6761722e, 'Y', '2003-05-24 03:42:07'),
(59, 9, 0x53f3206f73207472616475746f72657320657374e36f206175746f72697a61646f7320612074726164757a69722e, 'Y', '2003-05-24 03:42:07'),
(63, 9, 0x416c676f20636f72726575206d616c20616f2074656e74617220696e74726f64757a6972206173206e6f766173207472616475e7f56573206e612062617365206465206461646f732e, 'Y', '2003-05-24 03:42:07'),
(15, 9, 0x4120696e736572e7e36f20646f206a6f676f206e612062617365206465206461646f732066616c686f752e, 'Y', '2003-05-24 03:42:07'),
(14, 9, 0x4120696e736572e7e36f206461206d656e736167656d206e612062617365206465206461646f732066616c686f752e, 'Y', '2003-05-24 03:42:07'),
(2, 9, 0x4f206a6f676f206ae120616361626f752e, 'Y', '2003-05-24 03:42:07'),
(3, 9, 0x4f206a6f676f2061696e6461206ee36f20636f6d65e76f752e, 'Y', '2003-05-24 03:42:07'),
(57, 9, 0x4120436c6173736966696361e7e36f20696e696369616c2074656d2064652073657220656e747265203330206b7975206520362064616e2e, 'Y', '2003-05-24 03:42:07'),
(29, 9, 0x4973746f206ee36f20e9207065726d697469646f206120636f6e76696461646f7320283c693e276775657374273c2f693e292c20706f72206661766f72207265676973746520756d6120636f6e746120706573736f616c2e, 'Y', '2003-05-24 03:42:07'),
(66, 9, 0x457374612070e167696e6120e92070617261207574696c697a61646f72657320636f6d20746172656661732061646d696e697374726174697661732e, 'Y', '2003-05-24 03:42:07'),
(40, 9, 0x45737461207065647261207465722d73652d69612073756963696461646f2c206d6173206f2073756963ed64696f206ee36f20e9207065726d697469646f20636f6d2061732072656772617320656d2075736f2e, 'Y', '2003-05-24 03:42:07'),
(46, 9, 0x4573746520557365724944206ae120657374e12072656769737461646f2c2074656e746520656e636f6e7472617220756d205573657249442076e16c69646f2e, 'Y', '2003-05-24 03:42:07'),
(27, 9, 0xc9206e6563657373e172696f20717565206f7320646f697320616476657273e172696f732074656e68616d20756d6120636c6173736966696361e7e36f2c2073656ee36f206ee36f20e920706f7373ed76656c20656e636f6e7472617220756d2068616e646963617020616465717561646f, 'Y', '2003-05-24 03:42:07'),
(61, 9, 0x4ee36f20657374e1206175746f72697a61646f20612074726164757a69722065737361206ced6e6775612e, 'Y', '2003-05-24 03:42:07'),
(52, 9, 0x4ee36f20657374e1206e6120657363616c6120646520636c6173736966696361e7e36f206573706563696669636164612e, 'Y', '2003-05-24 03:42:07'),
(7, 9, 0x4ee36f20e920706f7373ed76656c20636f6e76696461722d73652061207369207072f37072696f2e, 'Y', '2003-05-24 03:42:07'),
(51, 9, 0x4ee36f20706f6465206a6f67617220636f6e7369676f207072f37072696f2e, 'Y', '2003-05-24 03:42:07'),
(54, 9, 0x4ee36f2065736372657665752061207375612070617373776f726420636f7272656374616d656e74652e, 'Y', '2003-05-24 03:42:07'),
(22, 9, 0xc9206e6563657373e172696f20657370656369666963617220756d206e6f6d652e, 'Y', '2003-05-24 03:42:07'),
(1, 9, 0x4ee36f20706f6465207061737361722073656d2074657220636f6c6f6361646f20746f646173206173207065647261732064652068616e64696361702e, 'Y', '2003-05-24 03:42:07'),
(9, 9, 0x4ee36f20e9207065726d697469646f20636170747572617220756d612070656472612071756520616361626f7520646520636170747572617220756d612070656472612c20706f6973206973736f2072657065746520756d6120706f7369e7e36f20616e746572696f72206e6f20746162756c6569726f2e2050726f63757265206e61732072656772617320706f7220276b6f272e, 'Y', '2003-05-24 03:42:07'),
(49, 9, 0x53f320706f646520617061676172206f732073657573207072f37072696f73206a6f676f732e, 'Y', '2003-05-24 03:42:07'),
(58, 9, 0x457363726576657520756d2076616c6f72206ee36f2d6e756de97269636f206e756d2063616d706f206e756de97269636f2e, 'Y', '2003-05-24 03:42:07'),
(178, 9, 0x50726f76ed6e636961, 'Y', '2003-05-24 03:15:38'),
(82, 9, 0x5369747561e7e36f2061637475616c, 'Y', '2003-04-04 02:49:41'),
(107, 9, 0x706564726173, 'Y', '2002-10-26 14:23:01'),
(212, 9, 0x54616d616e686f2064617320706564726173, 'Y', '2002-10-26 14:23:01'),
(281, 9, 0x457374726174e96769612065207465726d6f73, 'Y', '2003-05-24 03:22:06'),
(311, 9, 0x417373756e746f, 'Y', '2002-10-26 14:23:01'),
(455, 9, 0x456e76696172206a6f67616461206520766572206a6f676f2073656775696e7465, 'Y', '2002-10-26 14:23:01'),
(456, 9, 0x456e76696172206a6f67616461206520766572205369747561e7e36f2061637475616c, 'Y', '2003-05-24 03:10:21'),
(286, 9, 0x456e7669652073657573206a6f676f73207061726120636f6d656e74e172696f73207061726120766572206f6e646520766f63ea20706f646572696120746572206a6f6761646f206d656c686f722e, 'Y', '2003-05-24 03:22:06'),
(35, 9, 0x412070617373776f726420636f6e6669726d616461206ee36f206261746520636572746f20636f6d20657374612070617373776f72642c20766f6c746520617472e17320652074656e7465206e6f76616d656e74652e, 'Y', '2003-05-24 03:42:07'),
(294, 9, 0x412048697374f372696120416c617267616461, 'Y', '2003-05-24 03:22:06'),
(16, 9, 0x4120696e736572e7e36f206461206a6f67616461206e612062617365206465206461646f7320706172656365207465722066616c6861646f2e204973736f20706f6465206f75206ee36f2073657220756d2070726f626c656d612c20706f72206661766f722c207265746f726e6520616f206a6f676f2070617261207665722073652061206a6f6761646120666f6920726567697374726164612e, 'Y', '2003-05-24 03:42:07'),
(17, 9, 0x4120696e736572e7e36f20646173207375617320696e666f726d61e7f56573206e612062617365206465206461646f7320706172656365207465722066616c6861646f2e20536520766f63ea206ee36f20636f6e7365677569722066617a6572206c6f67696e2c20706f72206661766f722c2074656e7465206d61697320756d612076657a20652c207365206973736f2066616c6861722c20656e74726520656d20636f6e7461746f20636f6d206f207375706f7274652e, 'Y', '2003-05-24 03:42:07'),
(33, 9, 0x412070617373776f72642074656d206361726163746572657320696e76e16c69646f732c2073f3206f73206361726163746572657320612d7a2c20412d5a2c20302d392065202d5f2b2e2c3a3b3f21252a2073e36f207065726d697469646f732e, 'Y', '2003-05-24 03:42:07'),
(322, 9, 0x4f20636f6e76697465207061726120657374652025736a6f676f2573206ae120666f69206163656974652e, 'Y', '2002-10-26 14:23:01'),
(323, 9, 0x4573746520636f6e7669746520666f6920726563757361646f206f75206f206a6f676f206170616761646f, 'Y', '2002-10-26 14:23:01'),
(275, 9, 0x4573746520e920756d2073697465206d7569746f20626f6d207061726120736520617072656e6465722e, 'Y', '2003-05-24 03:22:06'),
(414, 9, 0x4c696d6974652064652074656d706f, 'Y', '2002-10-26 14:23:01'),
(209, 9, 0x4675736f20686f72e172696f, 'Y', '2003-05-24 03:15:38'),
(308, 9, 0x50617261, 'Y', '2003-01-10 01:59:48'),
(328, 9, 0x5061726120284944207574696c697a61646f7229, 'Y', '2002-10-26 14:23:01'),
(244, 9, 0x506172612064617220756d61207669737461206465206f6c686f732c207573652025732e, 'Y', '2002-10-26 14:23:01'),
(90, 9, 0x54726164757a6972, 'Y', '2002-10-26 14:23:01'),
(3145, 17, '', 'Y', '2013-08-21 00:39:29'),
(3146, 17, '', 'Y', '2013-08-21 00:39:29'),
(3147, 17, '', 'Y', '2013-08-21 00:39:29'),
(3148, 17, '', 'Y', '2013-08-21 00:39:29'),
(55, 9, 0x5469706f20646520677261647561e7e36f20646573636f6e68656369646f, 'Y', '2003-05-24 03:42:07'),
(216, 9, 0x546f706f, 'Y', '2002-10-26 14:23:01'),
(207, 9, 0x5573617220617320646566696e69e7f5657320646f2062726f77736572, 'Y', '2003-05-24 03:15:38'),
(201, 9, 0x757365726964, 'Y', '2002-10-26 14:23:01'),
(84, 9, 0x496e666f2e205574696c697a61646f72, 'Y', '2002-10-26 14:23:01'),
(88, 9, 0x5574696c697a61646f726573, 'Y', '2002-10-26 14:23:01'),
(197, 9, 0x566572746963616c, 'Y', '2002-10-26 14:23:01'),
(276, 9, 0x556d6120696e74726f6475e7e36f206d7569746f2062656d20657363726974612070656c61204173736f636961e7e36f2042726974e26e69636120646520476f2e, 'Y', '2003-05-24 03:22:06'),
(83, 9, 0x53616c6120646520657370657261, 'Y', '2002-10-26 14:23:01'),
(416, 9, 0x52656cf367696f206e6f2066696d2064652073656d616e61, 'Y', '2003-05-24 03:10:21'),
(377, 9, 0x50e167696e6120646520626f61732076696e646173, 'Y', '2003-05-24 03:22:06'),
(330, 9, 0x6272616e636173, 'Y', '2002-10-26 14:23:01'),
(164, 9, 0x71756520636f6e7472696275692070617261206f2044726167e36f, 'Y', '2003-05-24 03:22:06'),
(439, 9, 0x636f6d, 'Y', '2002-10-26 14:23:01'),
(104, 9, 0x636f6d20257320657874726120706f72206a6f67616461, 'Y', '2002-10-26 14:23:01'),
(103, 9, 0x73656d2062796f796f6d69, 'Y', '2002-10-26 14:23:01'),
(399, 9, 0x566974f372696173, 'Y', '2003-05-24 03:15:38'),
(213, 9, 0x436f72206461206d616465697261, 'Y', '2002-10-26 14:23:01'),
(284, 9, 0x54726162616c68616e646f206973736f20706f646520616a75646172206f20736575206a6f676f2e, 'Y', '2002-10-26 14:23:01'),
(370, 9, 0x53696d, 'Y', '2002-10-26 14:23:01'),
(288, 9, 0x566f63ea2074656d2071756520736162657220736f627265206f20717565206f7574726f73206a6f6761646f72657320657374e36f2066616c616e646f2e, 'Y', '2003-05-24 03:22:06'),
(390, 9, 0xc92061207375612076657a206465206a6f676172206e6f732073656775696e746573206a6f676f733a, 'Y', '2003-05-24 03:03:30'),
(333, 11, 0x4163636570746572656e, 'Y', '2002-10-26 14:23:01'),
(462, 11, 0x4b6f6c6f6d20746f65766f6567656e, 'Y', '2002-10-26 14:23:01'),
(239, 11, 0x546f65766f6567656e2061616e2062656b696a6b2d6c696a7374, 'Y', '2016-07-27 18:45:39'),
(96, 11, 0x426568656572646572, 'Y', '2002-10-26 14:23:01'),
(100, 11, 0x656e, 'Y', '2002-10-26 14:23:01'),
(156, 11, 0x42696f2067652675756d6c3b706461746521, 'Y', '2016-07-29 15:05:53'),
(331, 11, 0x5a77617274, 'Y', '2003-03-28 09:13:25'),
(211, 11, 0x57656572676176652076616e2068657420626f7264, 'Y', '2004-03-06 16:52:44'),
(451, 11, 0x43616e6164656573, 'Y', '2002-10-26 14:23:01'),
(108, 11, 0x43616e61646573652062796f796f6d69, 'Y', '2016-07-27 17:03:50'),
(187, 11, 0x566572616e6465722062696f, 'Y', '2002-10-26 14:23:01'),
(192, 11, 0x566572616e646572207761636874776f6f7264, 'Y', '2016-07-29 15:06:23'),
(222, 11, 0x566572616e6465722070726f6669656c, 'Y', '2013-01-11 17:28:51'),
(177, 11, 0x53746164, 'Y', '2002-10-26 14:23:01'),
(428, 11, 0x4b6c6f6b206c6f6f707420646f6f7220696e20686574207765656b656e64, 'Y', '2002-10-26 14:23:01'),
(360, 11, 0x4b6c657572, 'Y', '2002-10-26 14:23:01'),
(446, 11, 0x4b6c657572656e, 'Y', '2002-10-26 14:23:01'),
(191, 11, 0x4265766573746967207761636874776f6f7264, 'Y', '2016-07-29 15:06:23'),
(12, 11, 0x44652076657262696e64696e67206d6574206465206461746162617365206d69736c756b742e2057616368742065656e2070616172206d696e7574656e20656e2070726f6265657220686574206f706e696575772e, 'Y', '2004-02-14 12:16:48'),
(337, 11, 0x5672696a77696c6c69676572732076616e20447261676f6e, 'Y', '2002-10-26 14:23:01'),
(214, 11, 0x436ff67264696e6174656e206c616e6773206465207a696a6b616e74656e, 'Y', '2003-03-28 09:19:53'),
(48, 11, 0x4b6f6e2064652077616172646520696e20646520696e746572706f6c617469652066756e63746965206e696574206578747261706f6c6572656e2e, 'Y', '2002-10-26 14:23:01'),
(19, 11, 0x496b206b6f6e206465206461746162617365206e6965742073656c6563746572656e2e20576163687420732e762e702e2065656e2070616172206d696e7574656e20656e2070726f6265657220686574206f706e696575772e, 'Y', '2004-02-14 12:16:48'),
(176, 11, 0x4c616e64, 'Y', '2002-10-26 14:23:01'),
(2668, 17, 0x44616e7920706c696b206e6965206d6fbf65207a6f737461e6207a6163686f77616e792e, 'Y', '2013-08-21 00:05:19'),
(18, 11, 0x44617461626173652075697476726167696e67206d69736c756b742e20576163687420732e762e702e2065656e2070616172206d696e7574656e20656e2070726f6265657220686574206f706e696575772e, 'Y', '2004-02-14 12:16:48'),
(312, 11, 0x446174756d, 'Y', '2002-10-26 14:23:01'),
(98, 11, 0x646167, 'Y', '2002-10-26 14:23:01'),
(99, 11, 0x646167656e, 'Y', '2002-10-26 14:23:01'),
(232, 11, 0x56657277696a6465722070617274696a, 'Y', '2002-10-26 14:23:01'),
(13, 11, 0x56657277696a646572656e2076616e207370656c206e6965742067656c756b742e204469742069732077616172736368696a6e6c696a6b206765656e2070726f626c65656d2e, 'Y', '2002-10-26 14:23:01'),
(227, 11, 0x50617274696a2061616e206865742076657277696a646572656e, 'Y', '2016-07-27 19:39:59'),
(94, 11, 0x446f63756d656e74656e, 'Y', '2016-07-27 17:02:08'),
(159, 11, 0x446f63756d656e7461746965, 'Y', '2002-10-26 14:23:01'),
(233, 11, 0x4b6c616172, 'Y', '2002-10-26 14:23:01'),
(218, 11, 0x4f6e646572, 'Y', '2003-03-26 10:15:47'),
(170, 11, 0x446f776e6c6f6164204461676f6e2062726f6e636f6465, 'Y', '2013-01-11 16:08:50'),
(173, 11, 0x447261676f6e2070726f6a65637420706167696e612062696a20736f75726365666f726765, 'Y', '2002-10-26 14:23:01'),
(379, 11, 0x57696a7a69672062696f, 'Y', '2016-07-29 15:12:28'),
(188, 11, 0x57696a7a6967207761636874776f6f7264, 'Y', '2016-07-29 15:06:23'),
(199, 11, 0x57696a7a69672070726f6669656c, 'Y', '2004-02-14 11:05:01'),
(206, 11, 0x456d61696c206d656c64696e67656e, 'Y', '2016-07-29 15:08:04'),
(443, 11, 0x466973636865722074696a64, 'Y', '2002-10-26 14:23:01'),
(442, 11, 0x766f6f72, 'Y', '2002-10-26 14:23:01'),
(223, 11, 0x5761636874776f6f726420766572676574656e3f, 'Y', '2003-03-25 13:10:00'),
(161, 11, 0x5665656c2067657374656c64652076726167656e, 'Y', '2002-10-26 14:23:01'),
(196, 11, 0x566f6c6c6564696720626f726420656e2062657269636874656e, 'Y', '2002-10-26 14:23:01'),
(202, 11, 0x566f6c6c6564696765206e61616d, 'Y', '2002-10-26 14:23:01'),
(230, 11, 0x50617274696a, 'Y', '2002-10-26 14:23:01'),
(445, 11, 0x50617274696a204944, 'Y', '2002-10-26 14:23:01'),
(183, 11, 0x50617274696a20766f6f726b657572656e, 'Y', '2004-03-06 16:52:44'),
(457, 11, 0x4761207465727567, 'Y', '2002-10-26 14:23:01'),
(184, 11, 0x486f6262792773, 'Y', '2003-08-18 14:13:32'),
(240, 11, 0x5374617274706167696e61, 'Y', '2002-10-26 14:23:01'),
(198, 11, 0x486f72697a6f6e7461616c, 'Y', '2002-10-26 14:23:01'),
(101, 11, 0x757572, 'Y', '2002-10-26 14:23:01'),
(102, 11, 0x7572656e, 'Y', '2016-07-31 10:31:17'),
(182, 11, 0x4943512d6e756d6d6572, 'Y', '2002-10-26 14:23:01'),
(60, 11, 0x57696c206a652068656c70656e206d6574206865742076657274616c656e2076616e20647261676f6e3f20506c616174732065656e206265726963687420696e2068657420277665727461616c2720666f72756d2e, 'Y', '2004-02-14 12:16:48'),
(169, 11, 0x57696c74205520557720656967656e20647261676f6e, 'Y', '2002-10-26 14:23:01'),
(168, 11, 0x496e7374616c6c6174696520696e737472756374696573, 'Y', '2002-10-26 14:23:01'),
(248, 11, 0x496e6c656964696e67, 'Y', '2003-03-25 13:10:00'),
(160, 11, 0x496e6c656964696e6720746f7420447261676f6e, 'Y', '2004-02-07 17:12:15'),
(87, 11, 0x5569746e6f646967656e, 'Y', '2002-10-26 14:23:01'),
(373, 11, 0x4e6f6469672064657a65206765627275696b657220756974, 'Y', '2002-10-26 14:23:01'),
(449, 11, 0x4a6170616e73, 'Y', '2002-10-26 14:23:01'),
(106, 11, 0x4a6170616e73652062796f796f6d69, 'Y', '2016-07-27 17:03:50'),
(430, 11, 0x4d6565646f656e, 'Y', '2002-10-26 14:23:01'),
(208, 11, 0x5461616c, 'Y', '2002-10-26 14:23:01'),
(215, 11, 0x4c696e6b73, 'Y', '2002-10-26 14:23:01'),
(80, 11, 0x41616e67656d656c6420616c73, 'Y', '2003-03-25 13:06:59'),
(97, 11, 0x41666d656c64656e, 'Y', '2003-03-25 13:06:59'),
(437, 11, 0x486f6f666474696a64, 'Y', '2002-10-26 14:23:01'),
(220, 11, 0x5269636874696e672076616e20686574206d656e75, 'Y', '2003-03-28 09:19:53'),
(325, 11, 0x42657269636874, 'Y', '2002-10-26 14:23:01'),
(85, 11, 0x42657269636874656e, 'Y', '2002-10-26 14:23:01'),
(436, 11, 0x6d61616e64656e, 'Y', '2002-10-26 14:23:01'),
(364, 11, 0x5a657474656e, 'Y', '2002-10-26 14:23:01'),
(195, 11, 0x5a657474656e20656e2062657269636874656e, 'Y', '2002-10-26 14:23:01'),
(190, 11, 0x4e69657577207761636874776f6f7264, 'Y', '2002-10-26 14:23:01'),
(460, 11, 0x566f6c67656e646520706167696e61, 'Y', '2016-07-27 17:05:19'),
(210, 11, 0x4e6163687474696a64, 'Y', '2016-07-29 15:08:04'),
(371, 11, 0x4e6565, 'Y', '2003-08-12 06:00:02'),
(194, 11, 0x416c6c65656e206d656c64656e, 'Y', '2016-07-29 15:07:06'),
(81, 11, 0x4e6965742061616e67656d656c64, 'Y', '2003-03-25 13:06:59'),
(185, 11, 0x4265726f6570, 'Y', '2002-10-26 14:23:01'),
(193, 11, 0x556974, 'Y', '2002-10-26 14:23:01'),
(189, 11, 0x4f7564207761636874776f6f7264, 'Y', '2002-10-26 14:23:01'),
(252, 11, 0x4e6f676d61616c732077656c6b6f6d20656e2067656e6965742076616e206a652062657a6f656b206869657221, 'Y', '2004-02-14 10:55:28'),
(175, 11, 0x4f76657269673a, 'Y', '2016-07-29 15:05:53'),
(95, 11, 0x506167696e612067656d61616b7420696e, 'Y', '2002-10-26 14:23:01'),
(231, 11, 0x506173, 'Y', '2002-10-26 14:23:01'),
(226, 11, 0x50617373656e, 'Y', '2002-10-26 14:23:01'),
(245, 11, 0x5761636874776f6f7264, 'Y', '2002-10-26 14:23:01'),
(157, 11, 0x5577207761636874776f6f726420697320766572616e6465726421, 'Y', '2004-03-06 16:52:44'),
(163, 11, 0x4d656e73656e, 'Y', '2002-10-26 14:23:01'),
(200, 11, 0x506572736f6f6e6c696a6b6520696e7374656c6c696e67656e, 'Y', '2002-10-26 14:23:01'),
(454, 11, 0x506c61617473206a652068616e64696361707374656e656e2c20616c736a65626c6965667421, 'Y', '2016-07-27 18:51:19'),
(426, 11, 0x5370656c6572, 'Y', '2002-10-26 14:23:01'),
(242, 11, 0x536368726f6f6d2075206e696574206f6d2075207465207265676973746572656e20656e207761742070617274696a656e207465207370656c656e2e, 'Y', '2003-03-25 13:10:00'),
(345, 11, 0x566f6572206461746120696e, 'Y', '2002-10-26 14:23:01'),
(243, 11, 0x41616e6d656c64656e20616c737475626c696566742e, 'Y', '2003-03-25 13:10:00'),
(461, 11, 0x566f7269676520706167696e61, 'Y', '2016-07-27 17:05:19'),
(458, 11, 0x476576616e67656e656e, 'Y', '2002-10-26 14:23:01'),
(158, 11, 0x50726f6669656c2069732067652675756d6c3b706461746521, 'Y', '2016-07-29 15:05:53'),
(204, 11, 0x52616e6720696e666f, 'Y', '2016-07-29 15:08:04'),
(366, 11, 0x54656c74206d6565, 'Y', '2004-06-09 11:44:03'),
(205, 11, '', 'Y', '2016-07-29 15:08:04'),
(344, 11, 0x526567697374726572656e, 'Y', '2002-10-26 14:23:01'),
(247, 11, 0x526567697374726565722065656e206e6965757765206163636f756e74, 'Y', '2002-10-26 14:23:01'),
(238, 11, 0x56616e2064652062656b696a6b2d6c696a737420616668616c656e, 'Y', '2016-07-27 18:44:56'),
(235, 11, 0x4f70676576656e, 'Y', '2013-04-07 20:51:27'),
(225, 11, 0x4f70676576656e, 'Y', '2002-10-26 14:23:01'),
(234, 11, 0x566572646572207370656c656e, 'Y', '2002-10-26 14:23:01'),
(217, 11, 0x526563687473, 'Y', '2002-10-26 14:23:01'),
(361, 11, 0x47726f6f747465, 'Y', '2002-10-26 14:23:01'),
(237, 11, 0x4761206e61617220766f6c67656e64652070617274696a, 'Y', '2002-10-26 14:23:01'),
(219, 11, 0x476c6164646520626f726472616e64, 'Y', '2016-07-27 19:52:15'),
(8, 11, 0x536f7272792c20696b206b616e20686574207370656c206e6965742076696e64656e2077616172766f6f72206a652062656e742075697467656e6f646967642e20497320686574206765616e6e756c656572643f, 'Y', '2004-02-14 12:16:48'),
(50, 11, 0x536f7272792c206b6f6e20646974207370656c206e6965742076696e64656e20696e2064652077616368746b616d65722e2057616172736368696a6e6c696a6b2069732069656d616e6420616e64657273206f7020646520756974646167696e6720696e2067656761616e2e, 'Y', '2002-10-26 14:23:01'),
(20, 11, 0x536f7272792c206b6f6e206765656e206e69657577207370656c207374617274656e2e20576163687420616c737475626c696566742065656e2070616172206d696e7574656e20656e2070726f6265657220686574206f706e696575772e, 'Y', '2002-10-26 14:23:01'),
(38, 11, 0x536f7272792c20696b206865622065656e2070726f626c65656d206d65742064652072616e672c20636f6e74726f6c656572206f66206a6520276b797527206f66202764616e27206865627420696e676576756c642e, 'Y', '2004-02-14 12:16:48'),
(39, 11, 0x536f7272792c20696b206865622065656e2070726f626c65656d206d65742064652072616e672c206a65206b756e74206765656e20276b797527206f66202764616e27206765627275696b656e20766f6f72206469742072616e67747970652e, 'Y', '2004-02-14 12:16:48'),
(41, 11, 0x536f7272792c20696b206b616e20686574207370656c206e6965742076696e64656e2e, 'Y', '2002-10-26 14:23:01'),
(42, 11, 0x536f7272792c20696b206b616e206865742067657672616167646520666f72756d206e6965742076696e64656e2e, 'Y', '2004-02-14 12:16:48'),
(178, 11, 0x5374616174, 'Y', '2002-10-26 14:23:01'),
(107, 11, 0x7374656e656e, 'Y', '2002-10-26 14:23:01'),
(212, 11, 0x537465656e67726f6f747465, 'Y', '2016-07-27 19:52:15'),
(455, 11, 0x537065656c207a657420656e206761206e61617220766f6c67656e64652070617274696a, 'Y', '2013-01-11 16:25:11'),
(456, 11, 0x4765656620646f6f7220656e206761206e61617220737461747573, 'Y', '2016-07-27 18:51:19'),
(414, 11, 0x54696a64736c696d696574, 'Y', '2003-03-25 13:16:23'),
(209, 11, 0x54696a647a6f6e65, 'Y', '2002-10-26 14:23:01'),
(244, 11, 0x4f6d20726f6e64207465206b696a6b656e2c206765627275696b2025732e, 'Y', '2002-10-26 14:23:01'),
(90, 11, 0x56657274616c656e, 'Y', '2002-10-26 14:23:01'),
(216, 11, 0x426f76656e, 'Y', '2003-03-26 10:15:47'),
(207, 11, 0x4765627275696b2062726f77736572696e7374656c6c696e67656e, 'Y', '2016-07-29 15:08:04'),
(201, 11, 0x4765627275696b6572736964, 'Y', '2016-07-29 15:07:06'),
(84, 11, 0x4765627275696b6572736765676576656e73, 'Y', '2004-06-13 20:51:27'),
(88, 11, 0x4765627275696b657273, 'Y', '2002-10-26 14:23:01'),
(197, 11, 0x56657274696361616c, 'Y', '2004-03-06 16:52:44'),
(83, 11, 0x57616368746b616d6572, 'Y', '2002-10-26 14:23:01'),
(330, 11, 0x576974, 'Y', '2003-03-28 09:13:25'),
(164, 11, 0x5769652064726167656e2065722062696a2061616e20447261676f6e, 'Y', '2002-10-26 14:23:01'),
(104, 11, 0x6d657420257320657874726120706572207a6574, 'Y', '2002-10-26 14:23:01'),
(103, 11, 0x7a6f6e6465722062796f796f6d69, 'Y', '2004-03-06 16:58:16'),
(213, 11, 0x486f75746b6c657572, 'Y', '2016-07-27 19:52:15'),
(370, 11, 0x4a61, 'Y', '2002-10-26 14:23:01'),
(465, 1, 0x456e67656c736b61, 'Y', '2002-10-26 14:23:01'),
(463, 1, 0x5376656e736b61, 'Y', '2002-10-26 14:23:01'),
(464, 1, 0x4e6f72736b61, 'Y', '2002-10-26 14:23:01'),
(466, 1, 0x5479736b61, 'Y', '2002-10-26 14:23:01'),
(467, 1, 0x4672616e736b61, 'Y', '2002-10-26 14:23:01'),
(468, 1, 0x5370616e736b61, 'Y', '2002-10-26 14:23:01'),
(469, 1, 0x546a65636b69736b61, 'Y', '2002-10-26 14:23:01'),
(465, 2, 0x456e67656c736b, 'Y', '2002-10-26 14:23:01'),
(463, 2, 0x5376656e736b, 'Y', '2002-10-26 14:23:01'),
(464, 2, 0x4e6f72736b, 'Y', '2002-10-26 14:23:01'),
(466, 2, 0x5479736b, 'Y', '2002-10-26 14:23:01'),
(467, 2, 0x4672616e736b, 'Y', '2002-10-26 14:23:01'),
(468, 2, 0x5370616e736b, 'Y', '2002-10-26 14:23:01'),
(469, 2, 0x54736a656b6b69736b, 'Y', '2002-10-26 14:23:01'),
(470, 2, 0x4b696e73657369736b20287472616469736a6f6e656c6c29, 'Y', '2002-10-26 14:23:01'),
(3350, 17, '', 'Y', '2013-08-21 00:43:55'),
(472, 2, 0x4b696e657369736b2028666f72656e6b6c657429, 'Y', '2002-10-26 14:23:01'),
(473, 2, 0x486f6c6c616e736b, 'Y', '2002-10-26 14:23:01'),
(465, 4, 0x456e676c69736368, 'Y', '2002-10-26 14:23:01'),
(463, 4, 0x53636877656469736368, 'Y', '2002-10-26 14:23:01'),
(464, 4, 0x4e6f7277656769736368, 'Y', '2002-10-26 14:23:01'),
(466, 4, 0x44657574736368, 'Y', '2002-10-26 14:23:01'),
(467, 4, 0x4672616e7af67369736368, 'Y', '2002-10-26 14:23:01'),
(468, 4, 0x5370616e69736368, 'Y', '2002-10-26 14:23:01'),
(469, 4, 0x5473636865636869736368, 'Y', '2002-10-26 14:23:01'),
(465, 5, 0x416e676c616973, 'Y', '2002-10-26 14:23:01'),
(463, 5, 0x5375e9646f6973, 'Y', '2002-10-26 14:23:01'),
(464, 5, 0x4e6f7276e96769656e, 'Y', '2002-10-26 14:23:01'),
(466, 5, 0x416c6c656d616e64, 'Y', '2002-10-26 14:23:01'),
(467, 5, 0x4672616ee7616973, 'Y', '2002-10-26 14:23:01'),
(468, 5, 0x45737061676e6f6c, 'Y', '2002-10-26 14:23:01'),
(469, 5, 0x546368e8717565, 'Y', '2002-10-26 14:23:01'),
(470, 5, 0x4368696e6f69732028747261646974696f6e6e656c29, 'Y', '2002-10-26 14:23:01'),
(3349, 17, '', 'Y', '2013-08-21 00:43:55'),
(472, 5, 0x4368696e6f6973202873696d706c696669e929, 'Y', '2002-10-26 14:23:01'),
(473, 5, 0x486f6c6c616e64616973, 'Y', '2002-10-26 14:23:01'),
(465, 6, 0x496e676ce973, 'Y', '2002-10-26 14:23:01'),
(463, 6, 0x537565636f2032, 'Y', '2015-06-18 22:35:19'),
(464, 6, 0x4e6f727565676f, 'Y', '2002-10-26 14:23:01'),
(466, 6, 0x416c656de16e, 'Y', '2002-10-26 14:23:01'),
(467, 6, 0x4672616e63e973, 'Y', '2002-10-26 14:23:01'),
(468, 6, 0x43617374656c6c616e6f, 'Y', '2002-10-26 14:23:01'),
(469, 6, 0x436865636f, 'Y', '2002-10-26 14:23:01'),
(470, 6, 0x4368696e6f2028547261646963696f6e616c29, 'Y', '2002-10-26 14:23:01'),
(3348, 17, '', 'Y', '2013-08-21 00:43:55'),
(472, 6, 0x4368696e6f202853696d706c6966696361646f29, 'Y', '2002-10-26 14:23:01'),
(473, 6, 0x486f6c616e64e973, 'Y', '2002-10-26 14:23:01'),
(465, 7, 0x416e676c69636b79, 'Y', '2002-10-26 14:23:01'),
(463, 7, 0xa976e964736b79, 'Y', '2002-10-26 14:23:01'),
(464, 7, 0x4e6f72736b79, 'Y', '2002-10-26 14:23:01'),
(466, 7, 0x4eec6d65636b79, 'Y', '2002-10-26 14:23:01'),
(467, 7, 0x4672616e636f757a736b79, 'Y', '2002-10-26 14:23:01'),
(468, 7, 0xa970616eec6c736b79, 'Y', '2002-10-26 14:23:01'),
(469, 7, 0xc865736b79, 'Y', '2002-10-26 14:23:01'),
(470, 7, 0xc8ed6e736b7920287472616469e86eec29, 'Y', '2002-10-26 14:23:01'),
(3347, 17, '', 'Y', '2013-08-21 00:43:55'),
(472, 7, 0xc8ed6e736b7920287a6a65646e6f6475b9656eec29, 'Y', '2002-10-26 14:23:01'),
(473, 7, 0x486f6c616e64736b79, 'Y', '2002-10-26 14:23:01'),
(465, 8, '', 'Y', '2002-10-26 14:23:01'),
(463, 8, '', 'Y', '2002-10-26 14:23:01'),
(464, 8, '', 'Y', '2002-10-26 14:23:01'),
(466, 8, '', 'Y', '2002-10-26 14:23:01'),
(467, 8, '', 'Y', '2002-10-26 14:23:01'),
(468, 8, '', 'Y', '2002-10-26 14:23:01'),
(469, 8, '', 'Y', '2002-10-26 14:23:01'),
(465, 9, 0x496e676cea73, 'Y', '2003-05-24 03:15:38'),
(463, 9, 0x537565636f, 'Y', '2002-10-26 14:23:01'),
(464, 9, 0x4e6f7275656775ea73, 'Y', '2003-05-24 03:15:38'),
(466, 9, 0x416c656de36f, 'Y', '2003-05-24 03:15:38'),
(467, 9, 0x4672616e63ea73, 'Y', '2003-05-24 03:15:38'),
(468, 9, 0x457370616e686f6c, 'Y', '2002-10-26 14:23:01'),
(469, 9, 0x436865636f, 'Y', '2002-10-26 14:23:01'),
(470, 9, 0x4368696eea732028547261646963696f6e616c29, 'Y', '2003-05-24 03:15:38'),
(3346, 17, '', 'Y', '2013-08-21 00:43:55'),
(472, 9, 0x4368696eea73202853696d706c6966696361646f29, 'Y', '2003-05-24 03:15:38'),
(465, 11, 0x456e67656c73, 'Y', '2002-10-26 14:23:01'),
(463, 11, 0x5a7765656473, 'Y', '2002-10-26 14:23:01'),
(464, 11, 0x4e6f6f7273, 'Y', '2002-10-26 14:23:01'),
(466, 11, 0x4475697473, 'Y', '2002-10-26 14:23:01'),
(467, 11, 0x4672616e73, 'Y', '2002-10-26 14:23:01'),
(468, 11, 0x537061616e73, 'Y', '2002-10-26 14:23:01'),
(469, 11, 0x546a65636869736368, 'Y', '2002-10-31 13:02:57'),
(470, 11, 0x4368696e6565732028547261646974696f6e65656c29, 'Y', '2016-07-27 17:09:07'),
(3345, 17, '', 'Y', '2013-08-21 00:43:55'),
(472, 11, 0x4368696e656573202856657265656e766f756469676429, 'Y', '2016-07-27 17:09:07'),
(473, 11, 0x4e656465726c616e6473, 'Y', '2002-10-26 14:23:01'),
(301, 4, 0x41756368202272756e64656e62617369657274222e20486174206175636820616e6465726520537069656c652e, 'Y', '2004-02-14 19:43:42'),
(48, 4, 0x45696e205765727420696e206465722046756e6b74696f6e2022696e746572706f6c61746522206b6f6e6e7465206e69636874206578747261706f6c696572742077657264656e2e, 'Y', '2003-08-12 11:40:13'),
(19, 4, 0x45696e65202273656c656374222d416e667261676520616e2064696520446174656e62616e6b20697374206665686c67657363686c6167656e2e2042697474652076657273756368656e2073696520657320696e2065696e2070616172204d696e7574656e2065726e6575742e, 'Y', '2003-08-12 11:40:13'),
(38, 4, 0x457320676962742065696e2050726f626c656d206d69742064657220537069656c7374e4726b652e20486162656e207369652076657267657373656e20226b797522206f646572202264616e2220616e7a75676562656e3f, 'Y', '2003-08-12 11:40:13'),
(39, 4, 0x457320676962742065696e2050726f626c656d206d69742064657220537069656c7374e4726b652e2053696520736f6c6c74656e2066fc722064696573656e20537069656c7374e4726b656e74797020226b797522206f646572202264616e22206e696368742076657277656e64656e2e, 'Y', '2003-08-12 11:40:13'),
(38, 6, 0x48617920756e2070726f626c656d6120636f6e20656c2072e174696e672e20bf486173206f6c76696461646f20657370656369666963617220226b797522206f202264616e223f, 'Y', '2002-10-26 14:23:01'),
(39, 6, 0x48617920756e2070726f626c656d6120636f6e20656c2072e174696e672e20412074752076616c6f72206e6f206c6520707565646f20636f72726573706f6e64657220226b797522206f202264616e22, 'Y', '2002-10-26 14:23:01'),
(9, 6, 0x4e6f207075656465732072652d6361707475726172206c612070696564726120707565732073652072657065746972e1206c61206d69736d6120706f73696369f36e20656e20656c207461626c65726f2e204c6565206163657263612064656c20226b6f2220656e206c6173207265676c61732e, 'Y', '2002-10-26 14:23:01'),
(39, 7, 0x50726f6d69f27465206de16d2070726f626ce96d207320726174696e67656d2e205520746f686f746f207479707520726174696e6775206279737465206dec6c69207576e9737420226b797522206e65626f202264616e222e, 'Y', '2003-03-10 15:28:41'),
(9, 7, 0x50726f6d69f274652c206e65736ded746520767aed74207a6e6f7675206be16d656e2c206b746572fd207072e176ec207a616a616c2074656e746f206be16d656e2c2070726f746fbe65206279207365206f70616b6f76616c612070f8656463686f7aed20706f7a696365206e612064657363652e204e656a64ec74652073692076207072617669646c65636820706f6a656d20226b6f222e, 'Y', '2003-03-10 15:28:41'),
(89, 1, 0x50617274696572, 'Y', '2012-05-29 15:52:33'),
(103, 1, 0x7574616e2062796f796f6d69, 'Y', '2012-05-29 15:52:33'),
(84, 1, 0x416e76e46e646172696e666f, 'Y', '2002-10-26 14:23:01'),
(460, 1, 0x6ee47374612073696461, 'Y', '2012-05-29 15:52:33'),
(461, 1, 0x66f6726567e5656e64652073696461, 'Y', '2012-05-29 15:52:33'),
(352, 1, '', 'Y', '2012-05-29 15:52:33'),
(476, 2, 0x446574206f707073746f20656e206665696c2e205072f87620656e2067616e672074696c2e204f6d206665696c656e2076656476617265722073e5206d656c6420667261206920737570706f72742d666f72756d65742e, 'Y', '2002-10-26 14:23:01'),
(478, 2, 0x44752066696e6e6572206d65726520696e666f726d61736a6f6e2069203c6120687265663d226661712e706870223e46415120666f72756d3c2f613e2c20646572206475206f6773e5206b616e207374696c6c652064696e652065676e65207370f872736de56c2e20466f72756d65742065722070e520656e67656c736b2e, 'Y', '2002-10-26 14:23:01'),
(475, 2, 0x4b6f6d69206572207574656e666f722076657264696f6d72e564652e204272756b20656e206d657220666f726e75667469672076657264692e, 'Y', '2008-07-26 20:40:42'),
(474, 2, 0x44656e6e652068616e646c696e67656e20657220656e74656e20756b6a656e7420656c6c65722064656e206b616e20696b6b652062656e797474657320692064656e6e6520666173656e20617620706172746965742e, 'Y', '2008-07-26 20:40:42'),
(477, 2, 0x4665696c20616e74616c6c20666f7267617665737465696e6572, 'Y', '2008-07-26 20:40:42'),
(476, 4, 0x45696e204665686c65722069737420617566676574726574656e2e20dc626c696368657277656973652066756e6b74696f6e69657274206573206e6163682065696e656d2065726e657574656e20566572737563682e2046616c6c73206e696368742c2077656e64656e20736965207369636820626974746520616e2064656e20537570706f72742e, 'Y', '2002-10-26 14:23:01'),
(478, 4, 0x5765697465726520496e666f726d6174696f6e656e2066696e64656e2053696520696d203c6120687265663d226661712e706870223e4641512d466f72756d3c2f613e2c20776f205369652061756368206765726e6520656967656e652046726167656e207374656c6c656e206bf66e6e656e2e, 'Y', '2007-12-07 15:14:28'),
(475, 4, 0x446173204b6f6d69206c69656774206e6963687420696e2065696e656d2073696e6e766f6c6c656e20426572656963682e2042697474652077e4686c656e207369652065696e656e207665726efc6e667469676572656e20576572742e, 'Y', '2012-07-29 12:52:42'),
(474, 4, 0x446965736520416b74696f6e2069737420656e74776564657220756e62656b616e6e742c206f646572206b616e6e20696e2064696573656d205374616469756d2064657220506172746965206e6963687420616e676577616e64742077657264656e2e, 'Y', '2012-07-29 12:52:42'),
(477, 4, 0x46616c73636865205a61686c20766f6e2048616e64696361702d537465696e656e, 'Y', '2012-07-29 12:52:42'),
(476, 5, 0x556e6520657272657572206573742073757276656e75652e204e6f726d616c656d656e742c20736920766f75732072e96573736179657a20746f7574206465767261697420726576656e69722064616e73206c276f726472652e2053692063656c61206e65206d6172636865207061732c20636f6e74616374657a206c6520737570706f727420746563686e697175652e, 'Y', '2003-05-12 00:28:30'),
(478, 5, 0x566f757320706f7576657a2074726f7576657220706c7573206427696e666f726d6174696f6e732064616e73206c61203c6120687265663d226661712e706870223e4641513c2f613e20647520736974652e204e2768e9736974657a2070617320e0207920706f73657220766f732070726f70726573207175657374696f6e732e, 'Y', '2003-02-23 14:24:48'),
(475, 5, 0x4c65206b6f6d69207370e963696669e9206e27657374207061732076616c6964652e20566575696c6c657a20646f6e6e657220756e652076616c65757220706c757320726169736f6e6e61626c652e, 'Y', '2003-05-12 00:28:30'),
(477, 5, 0x4d617576616973206e6f6d62726520646520706965727265732064652068616e6469636170, 'Y', '2011-10-26 12:06:49'),
(476, 6, 0x4861206f6375727269646f20756e206572726f722e204e6f726d616c6d656e7465206465626572ed612066756e63696f6e61722073692070727565626173206465206e7565766f2c207369206e6f2c20636f6e74e1637461746520636f6e206e6f736f74726f732e, 'Y', '2002-10-26 14:23:01'),
(478, 6, 0x50756564657320656e636f6e74726172206de17320696e666f726d616369f36e20656e203c6120687265663d226661712e706870223e4641512066f372756d3c2f613e20656e20656c2071756520746520616e696d616d6f73206120656e76696172207475732064756461732e, 'Y', '2007-11-03 15:59:00'),
(475, 6, 0x456c206b6f6d6920657374e12066756572612064652072616e676f2e20496e74726f6475636520756e2076616c6f722072617a6f6e61626c652e, 'Y', '2007-11-03 16:08:38'),
(474, 6, 0x41636369f36e20646573636f6e6f63696461206f206e6f2076e16c69646120656e2065737465206d6f6d656e746f206465206c6120706172746964612e, 'Y', '2007-11-03 16:08:38'),
(477, 6, 0x4efa6d65726f20646520706965647261732064652068e16e646963617020696e636f72726563746f2e, 'Y', '2007-11-03 16:08:38'),
(476, 7, 0x50f8692070726f76e164ec6eed2074616875206e617374616c612063687962612e204f6276796b6c65206279206dec6c6f2066756e676f7661742c206b6479be20746f207a6b7573ed7465207a6e6f76752e20506f6b7564206e652c206b6f6e74616b74756a746520706f64706f72752e, 'Y', '2003-09-30 15:30:52'),
(478, 7, 0x56ed636520696e666f726d6163ed206e616a646574652076203c6120687265663d226661712e706870223e4641513c2f613e2e20562070f8ed736c75b96ee96d2066f37275207365206e65737479ef746520706f6c6fbe697420766c6173746eed20646f74617a792e, 'Y', '2002-11-04 14:35:39'),
(475, 7, 0x4b6f6d69206a65206d696d6f206d6fbe6efd20726f7a7361682c20767962657274652070726f73ed6d20726f7a756d6eec6ab9ed20686f646e6f74752e, 'Y', '2008-01-08 15:28:39'),
(477, 7, 0xa97061746efd20706fe865742068616e64696b61706f76fd6368206b616d656ef92e, 'Y', '2008-01-08 15:28:39'),
(478, 8, 0xa7f3a668b8eaaec6bdd0acdd203c6120687265663d226661712e706870223eb160a8a3b0ddc3443c2f613ea141b17aa45da569a548a662bdd7bec2b4a3a558a6dba476aabab0ddc344a143, 'Y', '2007-10-01 07:33:04'),
(476, 9, 0x486f75766520756d206572726f2e204e6f726d616c6d656e74652066756e63696f6e612073652074656e746172206f757472612076657a2c2073656ee36f20636f6e7461637465206f207375706f7274652e, 'Y', '2003-05-24 03:42:07'),
(478, 9, 0x506f646520656e636f6e74726172206d61697320696e666f726d61e7f56573206e6f203c6120687265663d226661712e706870223e666f72756d2064617320464151733c2f613e206f6e646520706f64652074616d62e96d207375626d6574657220617320737561732070657267756e7461732e, 'Y', '2003-05-24 03:07:12'),
(474, 9, 0x45737365207469706f206465206163e7e36f20e920646573636f6e68656369646f206f75206ee36f20706f646520736572207573616461206e6573746120616c7475726120646f206a6f676f2e, 'Y', '2003-05-24 03:42:07'),
(477, 9, 0x4efa6d65726f2065727261646f206465207065647261732064652068616e6469636170, 'Y', '2003-05-24 03:42:07'),
(476, 11, 0x45722069732065656e20666f7574206f70676574726564656e2e204d65657374616c207765726b742068657420616c73206a6520686574206e6f672065656e206b6565722070726f62656572642e205a6f6e6965742c206e65656d2064616e20732e762e702e20636f6e74616374206f70206d6574206465206265686565726465722e, 'Y', '2004-02-14 12:16:48'),
(478, 11, 0x4d65657220696e666f726d6174696520696e20686574203c6120687265663d226661712e706870223e46415120285665656c2067657374656c64652076726167656e2920666f72756d3c2f613e2e205374656c20676572757374206a6520656967656e2076726167656e2e, 'Y', '2004-02-14 10:55:28'),
(452, 11, 0x257320706572202573207374656e656e, 'Y', '2002-10-26 14:23:01');
INSERT INTO `Translations` (`Original_ID`, `Language_ID`, `Text`, `Translated`, `Updated`) VALUES
(450, 11, 0x257320706572207a657420656e20257320657874726120706572696f64656e, 'Y', '2002-10-26 14:23:01'),
(431, 11, 0x426f726467726f6f747465, 'Y', '2013-01-11 15:35:49'),
(432, 11, 0x436f6e76656e74696f6e656c652068616e646963617020286b6f6d692076616e20302c352062696a206e6965742067656c696a6b652070617274696a29, 'Y', '2002-10-26 14:23:01'),
(334, 11, 0x41667a656767656e, 'Y', '2002-10-26 14:23:01'),
(409, 11, 0x44756262656c652070617274696a, 'Y', '2002-10-26 14:23:01'),
(408, 11, 0x47656c696a6b652070617274696a206d6574206e6967697269, 'Y', '2002-10-26 14:23:01'),
(453, 11, 0x657874726120706572207a6574, 'Y', '2002-10-26 14:23:01'),
(310, 11, 0x56616e, 'Y', '2002-10-26 14:23:01'),
(335, 11, 0x5569746e6f646967696e67, 'Y', '2003-03-28 09:13:25'),
(307, 11, 0x42657269636874656e6c696a7374, 'Y', '2002-10-26 14:23:01'),
(346, 11, 0x42657269636874207665727a6f6e64656e21, 'Y', '2002-10-26 14:23:01'),
(327, 11, 0x4e696575772062657269636874, 'Y', '2002-10-26 14:23:01'),
(433, 11, 0x4a75697374652068616e6469636170, 'Y', '2003-05-21 10:33:51'),
(315, 11, 0x4265616e74776f6f7264, 'Y', '2002-10-26 14:23:01'),
(324, 11, 0x416e74776f6f7264656e, 'Y', '2002-10-26 14:23:01'),
(316, 11, 0x416e74776f6f7264656e21, 'Y', '2002-10-26 14:23:01'),
(86, 11, 0x53747575722065656e2062657269636874, 'Y', '2002-10-26 14:23:01'),
(336, 11, 0x5665727a656e64207569746e6f646967696e67, 'Y', '2013-01-11 15:52:49'),
(329, 11, 0x5665727a656e642062657269636874, 'Y', '2013-01-11 15:52:49'),
(326, 11, 0x5665727a656e6420616e74776f6f7264, 'Y', '2013-01-11 15:52:49'),
(311, 11, 0x4f6e64657277657270, 'Y', '2002-10-26 14:23:01'),
(322, 11, 0x44657a652025732070617274696a2773202573207569746e6f646967696e6720697320616c206765616363657074656572642e, 'Y', '2003-05-21 10:33:51'),
(323, 11, 0x44657a65207569746e6f646967696e67206973206166676577657a656e206f662064652070617274696a2069732076657277696a64657264, 'Y', '2002-10-26 14:23:01'),
(308, 11, 0x4e616172, 'Y', '2002-10-26 14:23:01'),
(328, 11, 0x4e61617220286765627275696b6572736e61616d29, 'Y', '2003-03-28 09:13:25'),
(439, 11, 0x6d6574, 'Y', '2002-10-26 14:23:01'),
(332, 11, 0x4f6e64657268616e64656c206f766572206465206b65757a6573, 'Y', '2003-03-28 09:13:25'),
(93, 11, 0x5369746520706c6174746567726f6e64, 'Y', '2002-10-26 14:23:01'),
(92, 11, 0x46415120285665656c2067657374656c64652076726167656e29, 'Y', '2004-02-14 11:14:35'),
(378, 11, 0x4d696a6e206765627275696b657273696e666f, 'Y', '2016-07-29 15:12:28'),
(384, 11, 0x4c65657320666f72756d, 'Y', '2002-10-26 14:23:01'),
(380, 11, 0x546f6f6e2062657269636874, 'Y', '2002-10-26 14:23:01'),
(383, 11, 0x6c696a73742076616e2062657269636874656e, 'Y', '2002-10-26 14:23:01'),
(377, 11, 0x57656c6b6f6d7374706167696e61, 'Y', '2003-03-27 13:46:50'),
(309, 11, 0x566c616767656e, 'Y', '2002-10-26 14:23:01'),
(368, 11, 0x4c616174737465207a6574, 'Y', '2016-07-27 19:43:18'),
(134, 11, 0x4e61616d, 'Y', '2002-10-26 14:23:01'),
(314, 11, 0x4e69657577, 'Y', '2002-10-26 14:23:01'),
(391, 11, 0x4765656e2070617274696a656e206765766f6e64656e, 'Y', '2002-10-26 14:23:01'),
(388, 11, 0x4265736368696b6261617220766f6f722070617274696a656e3f, 'Y', '2016-07-29 15:12:28'),
(359, 11, 0x546567656e7374616e646572, 'Y', '2002-10-26 14:23:01'),
(375, 11, 0x546f6f6e20616667656c6f70656e2070617274696a656e, 'Y', '2016-07-29 15:12:28'),
(374, 11, 0x4c6f70656e64652070617274696a656e, 'Y', '2004-02-14 11:05:01'),
(390, 11, 0x4a6f757720626575727420696e20646520766f6c67656e64652070617274696a656e3a, 'Y', '2016-07-27 17:05:19'),
(402, 11, 0x41637469766974656974, 'Y', '2002-10-26 14:23:01'),
(395, 11, 0x42696f67726166697363686520696e666f, 'Y', '2002-10-26 14:23:01'),
(398, 11, 0x416667656c6f70656e, 'Y', '2016-07-27 18:47:16'),
(348, 11, 0x416667656c6f70656e2070617274696a656e, 'Y', '2016-07-29 15:11:28'),
(350, 11, 0x416667656c6f70656e2070617274696a656e20766f6f72202573, 'Y', '2016-07-27 18:46:04'),
(89, 11, 0x50617274696a656e, 'Y', '2002-10-26 14:23:01'),
(394, 11, 0x4c61617473746520746f6567616e67, 'Y', '2016-07-27 18:47:16'),
(400, 11, 0x5665726c6f72656e, 'Y', '2002-10-26 14:23:01'),
(393, 11, 0x5265676973747261746965646174756d, 'Y', '2016-07-29 15:12:28'),
(397, 11, 0x4c6f70656e6465, 'Y', '2002-10-26 14:23:01'),
(349, 11, 0x4c6f70656e64652070617274696a656e, 'Y', '2002-10-26 14:23:01'),
(351, 11, 0x4c6f70656e64652070617274696a656e20766f6f72202573, 'Y', '2002-10-26 14:23:01'),
(396, 11, 0x537475757220626572696368742061616e206765627275696b6572, 'Y', '2016-07-29 15:13:01'),
(399, 11, 0x4765776f6e6e656e, 'Y', '2002-10-26 14:23:01'),
(415, 11, 0x2350617274696a656e, 'Y', '2002-10-26 14:23:01'),
(419, 11, 0x416c6c65656e202573, 'Y', '2002-10-26 14:23:01'),
(425, 11, 0x50617274696a20746f65766f6567656e, 'Y', '2002-10-26 14:23:01'),
(412, 11, 0x4f706d65726b696e67, 'Y', '2016-07-27 18:48:49'),
(406, 11, 0x436f6e76656e74696f6e65656c, 'Y', '2002-10-26 14:23:01'),
(429, 11, 0x56657277696a646572656e, 'Y', '2002-10-26 14:23:01'),
(109, 11, 0x50617274696a20746f656765766f65676421, 'Y', '2002-10-26 14:23:01'),
(253, 11, 0x50617274696a2076657277696a6465726421, 'Y', '2002-10-26 14:23:01'),
(254, 11, 0x4a6520646f6574206d65652061616e2064652070617274696a21, 'Y', '2016-07-27 19:42:47'),
(424, 11, 0x5a6f206a612c20726174696e672074757373656e, 'Y', '2003-08-12 06:00:02'),
(427, 11, 0x41616e74616c2070617274696a656e, 'Y', '2002-10-26 14:23:01'),
(420, 11, 0x41616e74616c20746f6520746520766f6567656e2070617274696a656e, 'Y', '2003-08-12 06:00:02'),
(407, 11, 0x4a7569737465, 'Y', '2003-03-25 13:16:23'),
(423, 11, 0x546567656e7374616e646572206d6f657420726174696e672068656262656e, 'Y', '2003-08-12 06:00:02'),
(417, 11, 0x4c696a6b74206c656567206f7020686574206d6f6d656e74, 'Y', '2002-10-26 14:23:01'),
(416, 11, 0x5765656b656e646b6c6f6b, 'Y', '2004-09-28 17:41:04'),
(310, 1, 0x4672e56e, 'Y', '2002-10-26 14:23:07'),
(311, 1, 0xc46d6e65, 'Y', '2002-10-26 14:23:07'),
(389, 9, 0x4d656e736167656e73206e6f766173, 'Y', '2002-10-26 17:53:36'),
(342, 9, 0x4772e16669636f20646520636c6173736966696361e7e36f206465, 'Y', '2003-05-24 03:10:21'),
(343, 9, 0x4a6f676f7320656d207175616e74696461646520696e737566696369656e7465207061726120646573656e686172206f206772e16669636f, 'Y', '2003-05-24 03:10:21'),
(408, 9, 0x4a6f676f206e6f726d616c20636f6d206e6967697269, 'Y', '2002-10-26 18:00:40'),
(473, 9, 0x486f6c616e64ea73, 'Y', '2003-05-24 03:15:38'),
(479, 9, 0x5461696c616e64ea73, 'Y', '2003-05-24 03:15:38'),
(340, 9, 0x456469746f7220646120464151, 'Y', '2002-10-26 18:15:48'),
(383, 9, 0x4c6973746120656e63616465616461, 'Y', '2002-10-26 18:15:48'),
(389, 6, 0x4e7565766f73206d656e73616a6573, 'Y', '2002-10-26 19:18:10'),
(342, 6, 0x4772e16669636f2064652072616e676f2070617261, 'Y', '2015-06-23 21:13:55'),
(343, 6, 0x4e6f2068617920737566696369656e746573207061727469646173207061726120646962756a617220656c206772e16669636f, 'Y', '2015-09-16 01:58:11'),
(479, 6, 0x5461696c616e64e973, 'Y', '2002-10-26 19:18:10'),
(340, 6, 0x456469746f7220646520464151, 'Y', '2003-01-31 20:13:28'),
(122, 6, 0x526573707565737461, 'Y', '2002-10-26 19:18:10'),
(127, 6, 0x656469746172, 'Y', '2013-01-26 14:02:10'),
(128, 6, 0x5375626972, 'Y', '2002-10-26 19:18:10'),
(129, 6, 0x42616a6172, 'Y', '2002-10-26 19:18:10'),
(135, 6, 0x547261647563746f726573, 'Y', '2002-10-26 19:18:10'),
(43, 6, 0x4d6d6d6d2c2065737465206d656e73616a65207061726563652073657220756e6120726573707565737461206120756e206d656e73616a65206e6f206578697374656e74652e, 'Y', '2002-10-26 19:18:10'),
(69, 6, 0x4c6f206c616d656e746f2c206e6f20707565646f20656e636f6e747261722065736120656e74726164612e, 'Y', '2002-10-26 19:18:10'),
(75, 6, 0x4c6f206c616d656e746f2c206e6f207075646520656e636f6e7472617220656c20746f726e656f206461646f2e, 'Y', '2002-10-26 19:18:10'),
(389, 5, 0x4e6f757665617578206d65737361676573266e6273703b, 'Y', '2004-10-16 02:07:54'),
(342, 5, 0x436f75726265206465206e69766561757820706f7572, 'Y', '2004-03-30 02:38:22'),
(343, 5, 0x44e9736f6ce92c206d61697320696c207920612074726f7020706575206465207061727469657320636c617373e9657320706f75722064657373696e657220756e6520636f757262652e, 'Y', '2004-03-30 02:38:22'),
(122, 5, 0x52e9706f6e7365, 'Y', '2002-10-26 20:55:20'),
(127, 5, 0x4d6f646966696572, 'Y', '2016-01-15 13:16:16'),
(135, 5, 0x5472616475637465757273, 'Y', '2003-01-21 04:14:00'),
(340, 5, 0x52e964616374657572206465206c6120462e412e512e, 'Y', '2003-01-21 14:57:11'),
(128, 5, 0x4d6f6e746572, 'Y', '2002-10-26 21:06:16'),
(129, 5, 0x44657363656e647265, 'Y', '2002-10-26 21:06:16'),
(474, 5, 0x536f697420636574746520616374696f6e2065737420696e636f6e6e75652c20736f697420656c6c65206e65207065757420ea747265207574696c6973e9652064616e73206c27e97461742061637475656c206475206a65752e, 'Y', '2003-05-12 00:28:30'),
(92, 1, '', 'Y', '2012-05-29 15:52:33'),
(104, 1, 0x6d6564202573206578747261207065722064726167, 'Y', '2002-10-26 21:16:25'),
(106, 1, 0x6a6170616e736b2062796f796f6d69, 'Y', '2002-10-26 21:16:25'),
(132, 1, '', 'Y', '2012-05-29 15:52:33'),
(204, 1, '', 'Y', '2012-05-29 15:52:33'),
(309, 1, 0x466c6167676f72, 'Y', '2002-10-26 21:16:25'),
(361, 1, 0x53746f726c656b, 'Y', '2002-10-26 21:16:25'),
(362, 1, 0x48616e64696b617070, 'Y', '2002-10-26 21:16:25'),
(363, 1, '', 'Y', '2012-05-29 15:52:33'),
(364, 1, 0x44726167, 'Y', '2002-10-26 21:16:25'),
(248, 1, 0x496e74726f64756b74696f6e, 'Y', '2002-10-26 21:18:59'),
(372, 1, '', 'N', '2012-05-29 15:52:33'),
(80, 12, 0xe0a2e9d2cad9e8c3d0babae2b4c2, 'Y', '2002-10-26 21:52:13'),
(81, 12, 0xc2d1a7e4c1e8e4b4e9e0a2e9d2cad9e8c3d0baba, 'Y', '2002-10-26 21:52:13'),
(82, 12, 0xcab6d2b9d0c0d2be, 'Y', '2002-10-26 21:52:13'),
(83, 12, 0xcbe9cda7c3cde0c5e8b9, 'Y', '2002-10-26 21:52:13'),
(84, 12, 0xa2e9cdc1d9c5cae8c7b9b5d1c7, 'Y', '2002-10-26 21:52:13'),
(85, 12, 0xa2e9cda4c7d2c1, 'Y', '2002-10-26 21:52:13'),
(86, 12, 0xcae8a7a2e9cda4c7d2c1, 'Y', '2002-10-26 21:52:13'),
(87, 12, 0xe0aad7e9cde0aad4ad, 'Y', '2002-10-28 07:07:52'),
(88, 12, 0xbcd9e9e0c5e8b9, 'Y', '2002-10-26 21:52:13'),
(89, 12, 0xe0a1c1, 'Y', '2002-10-26 21:52:13'),
(90, 12, 0xe1bbc5, 'Y', '2002-10-26 21:52:13'),
(91, 12, 0xa1c3d0b4d2b9a2e8d2c7, 'Y', '2002-10-28 06:12:46'),
(92, 12, 0xa4d3b6d2c1b7d5e8b6d2c1a1d1b9bae8cdc2, 'Y', '2002-10-28 06:12:46'),
(93, 12, 0xbcd1a7e0c7bb, 'Y', '2002-10-28 06:12:46'),
(94, 12, 0xbab7a4c7d2c1, 'Y', '2002-10-28 06:12:46'),
(95, 12, 0xcbb9e9d2b9d5e9cac3e9d2a7a2d6e9b9e0c1d7e8cd, 'Y', '2002-10-26 21:52:13'),
(96, 12, '', 'Y', '2003-07-21 01:44:14'),
(97, 12, 0xcdcda1a8d2a1c3d0baba, 'Y', '2002-10-26 21:52:13'),
(98, 12, 0xc7d1b9, 'Y', '2002-10-26 21:52:13'),
(99, 12, 0xc7d1b9, 'Y', '2002-10-26 21:52:13'),
(100, 12, 0xe1c5d0, 'Y', '2002-10-26 21:52:13'),
(101, 12, 0xaad1e8c7e2c1a7, 'Y', '2002-10-26 21:52:13'),
(102, 12, 0xaad1e8c7e2c1a7, 'Y', '2002-10-26 21:52:13'),
(103, 12, 0xe2b4c2e4c1e8c1d520e0bad5c2c7e2c2c1d4, 'Y', '2002-10-26 21:52:13'),
(104, 12, 0xb5d2bed4e0c8c9202573, 'Y', '2002-10-26 21:52:13'),
(106, 12, 0xe0bad5c2c7e2c2c1d420add5e8bbd8e8b9, 'Y', '2002-10-26 21:52:13'),
(107, 12, 0xe0c1e7b4cbc1d2a1, 'Y', '2002-10-26 21:52:13'),
(108, 12, 0xe0bad5c2c7e2c2c1d420e1a4b9b9d2b4d2, 'Y', '2002-10-26 21:52:13'),
(132, 12, 0xc3cbd1ca, 'Y', '2002-10-28 07:01:57'),
(134, 12, 0xaad7e8cd, 'Y', '2002-10-26 21:52:13'),
(201, 12, 0xc3cbd1cabcd9e9e3aae9, 'Y', '2002-10-28 06:56:54'),
(204, 12, 0xa2e9cdc1d9c5c3d0b4d1babdd5c1d7cd, 'Y', '2002-10-26 21:52:13'),
(205, 12, 0xc3d0b4d1babdd5c1d7cd, 'Y', '2002-10-26 21:52:13'),
(309, 12, 0xb8a7, 'Y', '2002-10-26 21:52:13'),
(310, 12, 0xa8d2a1, 'Y', '2002-10-26 21:52:13'),
(311, 12, 0xcbd1c7a2e9cd, 'Y', '2002-10-26 21:52:13'),
(312, 12, 0xc7d1b9, 'Y', '2002-10-26 21:52:13'),
(314, 12, 0xe3cbc1e8, 'Y', '2002-10-26 21:52:13'),
(316, 12, 0xb5cdba21, 'Y', '2002-10-26 21:52:13'),
(352, 12, '', 'Y', '2003-07-21 01:44:14'),
(359, 12, 0xa4d9e8b5e8cdcad9e9, 'Y', '2002-10-26 21:52:13'),
(360, 12, 0xcad5, 'Y', '2002-10-26 21:52:13'),
(361, 12, 0xa2b9d2b4, 'Y', '2002-10-26 21:52:13'),
(362, 12, 0xcbc1d2a1b5e8cd, 'Y', '2002-10-26 21:52:13'),
(363, 12, 0xe2a4c1d4, 'Y', '2002-10-26 21:52:13'),
(364, 12, 0xb5d2, 'Y', '2002-10-26 21:52:13'),
(368, 12, 0xb5d2c5e8d2cad8b4, 'N', '2002-10-26 21:52:13'),
(374, 12, 0xe1cab4a7e0a1c1b7d5e8a1d3c5d1a7e0c5e8b9cdc2d9e8, 'Y', '2002-10-26 21:52:13'),
(375, 12, 0xe1cab4a7e0a1c1b7d5e8a8bae4bb, 'Y', '2002-10-26 21:52:13'),
(388, 12, 0xe0bbd4b4c3d1baa1d2c3c3ba3f, 'Y', '2002-10-26 21:52:13'),
(389, 12, 0xa2e9cda4c7d2c1e3cbc1e8, 'Y', '2002-10-26 21:52:13'),
(390, 12, 0xb5d2a2cda7a4d8b3e3b9e0a1c1b5e8cde4bbb9d5e9, 'Y', '2002-10-26 21:52:13'),
(391, 12, 0xe4c1e8bebae0a1c1e3b4e6, 'Y', '2002-10-26 21:52:13'),
(460, 12, 0xcbb9e9d2b5e8cde4bb, 'Y', '2002-10-26 21:52:13'),
(461, 12, 0xa1e8cdb9cbb9e9d2b9d5e9, 'Y', '2002-10-26 21:52:13'),
(462, 12, 0xe0bed7e8c1a4cdc5d1e8c1, 'Y', '2002-10-28 07:07:52'),
(160, 12, 0xe1b9d0b9d3b5d1c7e0a2e9d2cad9e820b4c3d2a1e9cdb9, 'Y', '2002-10-26 22:10:45'),
(191, 12, 0xc2d7b9c2d1b9c3cbd1cabce8d2b9, 'Y', '2002-10-28 10:39:41'),
(202, 12, 0xaad7e8cde0b5e7c1, 'Y', '2002-10-26 22:10:45'),
(223, 12, 0xc5d7c1c3cbd1cabce8d2b93f, 'Y', '2002-10-29 10:51:52'),
(240, 12, 0xbae9d2b9, 'Y', '2002-10-26 22:10:45'),
(243, 12, 0xa1c3d8b3d2c5e7cda4cdd4b9, 'Y', '2002-10-26 22:10:45'),
(244, 12, 0xe0bed7e8cdcad3c3c7a82ce3aae9202573, 'Y', '2002-10-26 22:10:45'),
(245, 12, 0xc3cbd1cabce8d2b9, 'Y', '2002-10-29 10:51:52'),
(246, 12, 0xe0a2e9d2cad9e8c3d0baba, 'Y', '2002-10-26 22:10:45'),
(242, 12, 0xe0aad4adc5a7b7d0e0bad5c2b9e1c5d0c5cda7e0c5e8b9b4d9cad1a1e0a1c1, 'Y', '2002-10-26 22:15:22'),
(247, 12, 0xc5a7b7d0e0bad5c2b9e3cbc1e8, 'Y', '2002-10-29 10:51:52'),
(248, 12, 0xe1b9d0b9d3b5d1c7, 'Y', '2002-10-26 22:15:22'),
(109, 12, 0xe0bed7e8cde0a1c1e1c5e9c721, 'Y', '2002-10-26 22:24:41'),
(225, 12, 0xc2cdc1e1bee9, 'Y', '2002-10-26 22:24:41'),
(226, 12, 0xbce8d2b9, 'Y', '2002-10-26 22:24:41'),
(227, 12, 0xc5bae0a1c1, 'Y', '2002-10-26 22:24:41'),
(229, 12, 0xa4d0e1b9b9, 'Y', '2002-10-26 22:24:41'),
(230, 12, 0xe0a1c1, 'Y', '2002-10-26 22:24:41'),
(231, 12, 0xbce8d2b9, 'Y', '2002-10-26 22:24:41'),
(232, 12, 0xc5bae0a1c1, 'Y', '2002-10-26 22:24:41'),
(233, 12, 0xe0cac3e7a8, 'Y', '2002-10-26 22:24:41'),
(234, 12, 0xe0c5e8c1b5e8cd, 'Y', '2002-10-26 22:24:41'),
(235, 12, 0xc2cdc1e1bee9, 'Y', '2002-10-26 22:24:41'),
(236, 12, 0xb4d2c7b9ece2cbc5b420736766, 'Y', '2002-10-26 22:24:41'),
(237, 12, 0xa2e9d2c1cad9e8e0a1c1b6d1b4e4bb, 'Y', '2002-10-26 22:24:41'),
(238, 12, 0xc5baa8d2a1c3d2c2a1d2c3cad1a7e0a1b5a1d2c3b3ec, 'Y', '2002-10-26 22:45:50'),
(239, 12, 0xe0bed4e8c1c3d2c2a1d2c3cad1a7e0a1b5d8a1d2c3b3ec, 'Y', '2002-10-26 22:45:50'),
(253, 12, 0xc5bae0a1c1e0c3d5c2bac3e9cdbae1c5e9c7, 'Y', '2002-10-26 22:45:50'),
(254, 12, 0xe0a2e9d2c3e8c3c1e0a1c1e0c3d5c2bac3e9cdbae1c5e9c7, 'Y', '2002-10-26 22:45:50'),
(324, 12, 0xb5cdba, 'Y', '2002-10-26 22:45:50'),
(325, 12, 0xa2e9cda4c7d2c1, 'Y', '2002-10-26 22:45:50'),
(330, 12, 0xa2d2c7, 'Y', '2002-10-26 22:45:50'),
(331, 12, 0xb4d3, 'Y', '2002-10-26 22:45:50'),
(342, 12, 0xa1c3d2bfc3d0b4d1baa2cda7, 'Y', '2002-10-26 22:45:50'),
(343, 12, 0xc1d5a8d3b9c7b9c3d0b4d1bac1d2a1e4bbe4c1e8cad2c1d2c3b6c7d2b4a1c3d2bfe4b4e9, 'Y', '2002-10-26 22:45:50'),
(348, 12, 0xe0a1c1b7d5e8a8bae1c5e9c7, 'Y', '2002-10-26 22:45:50'),
(349, 12, 0xe0a1c1b7d5e8a1d3c5d1a7e0c5e8b9cdc2d9e8, 'Y', '2002-10-26 22:45:50'),
(350, 12, 0xe0a1c1b7d5e8a8bae1c5e9c7a2cda7202573, 'Y', '2002-10-26 22:45:50'),
(351, 12, 0xe0a1c1b7d5e8a1d3c5d1a7e0c5e8b9cdc2d9e8a2cda7202573, 'Y', '2002-10-26 22:45:50'),
(366, 12, 0xa8d1b4cdd1b9b4d1ba, 'Y', '2002-10-26 22:45:50'),
(370, 12, 0xe3aae8, 'Y', '2002-10-26 22:45:50'),
(371, 12, 0xe4c1e8e3aae8, 'Y', '2002-10-26 22:45:50'),
(372, 12, 0xa8d4e2a1d028e0cac1cd29, 'N', '2002-10-26 22:45:50'),
(373, 12, 0xe0aad7e9cde0aad4adbcd9e9e0c5e8b9a4b9b9d5e9, 'Y', '2002-10-28 07:01:57'),
(406, 12, 0xe0a1d5e8c2c7a1d1baa2e9cdb5a1c5a7cbc3d7cdcad1adadd2, 'Y', '2002-10-26 22:45:50'),
(407, 12, 0xcac1a4c7c3, 'Y', '2002-10-26 22:45:50'),
(408, 12, 0xe0a1c1e0cac1cdb4e9c7c2b9d4a1d4c3d4, 'Y', '2002-10-26 22:45:50'),
(409, 12, 0x32e0a1c1, 'Y', '2002-10-26 22:45:50'),
(411, 12, 0xa2e9cdc1d9c5, 'Y', '2002-10-26 22:45:50'),
(412, 12, 0xa4d3e1b9d0b9d3, 'Y', '2002-10-26 22:45:50'),
(414, 12, 0xe0c7c5d2a8d3a1d1b4, 'Y', '2002-10-26 22:45:50'),
(415, 12, 0x23e0a1c1, 'Y', '2002-10-26 22:45:50'),
(416, 12, 0xb5d1e9a7b9d2ccd4a1d220cad8b4cad1bbb4d2cbec, 'Y', '2002-10-26 22:45:50'),
(417, 12, 0xb4d9e0cbc1d7cdb9a8d0c7e8d2a720e3b9b5cdb9b9d5e9, 'Y', '2002-10-26 22:45:50'),
(421, 12, 0xb4d1e9a7, 'Y', '2002-10-26 22:45:50'),
(422, 12, 0xa4d4c7, 'Y', '2002-10-26 22:45:50'),
(419, 12, 0xe0a9bed2d0, 'Y', '2002-10-26 22:53:58'),
(420, 12, 0xa8d3b9c7b9e0a1c1b7d5e8a8d0e0bed4e8c1, 'Y', '2002-10-26 22:53:58'),
(423, 12, 0xb5e9cda7a1d2c3a4d9e8e1a2e8a7b7d5e8c1d5e4b4e9a8d1b4cdd1b9b4d1ba, 'Y', '2002-10-26 22:53:58'),
(424, 12, 0xb6e9d2e3aae82ccdd1b9b4d1ba20c3d0cbc7e8d2a7, 'Y', '2002-10-26 22:53:58'),
(425, 12, 0xe0bed4e8c1e0a1c1, 'Y', '2002-10-26 22:53:58'),
(426, 12, 0xbcd9e9e0c5e8b9, 'Y', '2002-10-26 22:53:58'),
(427, 12, 0xa8d3b9c7b9e0a1c1, 'Y', '2002-10-26 22:53:58'),
(428, 12, 0xe0c7c5d2e0b4d4b9b5cdb9cad8cad1bbb4d2cbec, 'Y', '2002-10-26 22:53:58'),
(429, 12, 0xc5ba, 'Y', '2002-10-26 22:53:58'),
(430, 12, 0xc3e8c7c1, 'Y', '2002-10-26 22:53:58'),
(437, 12, 0xe0c7c5d2cbc5d1a1, 'Y', '2002-10-26 22:53:58'),
(454, 12, 0xa1c3d8b3d2c7d2a7cbc1d2a1b5e8cd, 'Y', '2002-10-26 22:53:58'),
(455, 12, 0xb5a1c5a720e1c5d020e0a2e9d2cad9e8e0a1c1b5e8cde4bb, 'Y', '2002-10-26 22:53:58'),
(456, 12, 0xb5a1c5a720e1c5d020e0a2e9d2b4d9cab6d2b9d0, 'Y', '2002-10-26 22:57:43'),
(457, 12, 0xc2e9cdb9a1c5d1ba, 'Y', '2002-10-28 12:26:58'),
(458, 12, 0xe0aac5c2, 'Y', '2002-10-26 22:53:58'),
(389, 2, 0x4e7965206d656c64696e676572, 'Y', '2002-10-27 02:08:03'),
(342, 2, 0x526174696e676b7572766520666f72, 'Y', '2002-10-27 02:18:21'),
(343, 2, 0x42656b6c616765722e20466f722066e520706172746965722074696c20e5207465676e6520656e206b75727665, 'Y', '2002-10-27 02:18:21'),
(479, 2, '', 'Y', '2002-10-27 02:18:21'),
(122, 2, 0x53766172, 'Y', '2002-10-27 02:18:21'),
(127, 2, 0x52656469676572, 'N', '2002-10-27 02:18:21'),
(128, 2, 0x4f70706f766572, 'Y', '2002-10-27 02:18:21'),
(129, 2, 0x4e65646f766572, 'Y', '2002-10-27 02:18:21'),
(135, 2, 0x4f76657273657474657265, 'Y', '2002-10-27 02:18:21'),
(43, 2, 0x486d6d2c207376617265722064752070e520656e20696b6b652d656b736973746572656e6465206d65646c696e673f, 'Y', '2002-10-27 02:18:21'),
(69, 2, 0x42656b6c616765722e2046696e6e657220696b6b652064656e20617274696b6b656c656e2e, 'Y', '2002-10-27 02:18:21'),
(75, 2, 0x42656b6c616765722e2046696e6e657220696b6b652064656e6e65207475726e6572696e67656e2e, 'Y', '2002-10-27 02:18:21'),
(252, 12, 0xa2cdb5e9cdb9c3d1bacdd5a1a4c3d1e9a720a2cde3cbe9cab9d8a1a1d1bab7d5e8b9d5e8200d0a28e1bbc5e1c5d0e0c3d5c2bae0c3d5c2a7c0d2c9d2e4b7c2e2b4c2cdd1c5a1d2e0b4ca29, 'Y', '2002-10-28 06:56:54'),
(344, 12, 0xc5a7b7d0e0bad5c2b9, 'Y', '2002-10-28 06:29:32'),
(345, 12, 0xa1c3d8b3d2a1c3cda1a2e9cdc1d9c5, 'Y', '2002-10-28 06:29:32'),
(478, 12, 0xa2e9cdc1d9c5b9cda1e0cbb9d7cda8d2a1b9d5e9cad2c1d2c3b6a4e9b9cbd2e4b4e9a8d2a13c6120687265663d226661712e706870223ea1c3d0b4d2b9a2e8d2c720a4d3b6d2c1b7d5e8b6d2c1c1d2bae8cdc23c2f613e20b7d5e820e620a4d8b3cad2c1d2c3b6b6d2c1a4d3b6d2c1b7d5e8a4d8b3e0cda7caa7cad1c2e4b4e9, 'Y', '2002-10-29 10:51:52'),
(307, 12, 0xc3d2c2a1d2c320a2e9cda4c7d2c1, 'Y', '2002-10-28 07:24:28'),
(308, 12, 0xb6d6a7, 'Y', '2002-10-28 07:24:28'),
(315, 12, 0xb5cdbae0c3d5c2bac3e9cdc2e1c5e9c7, 'Y', '2002-10-28 07:24:28'),
(322, 12, 0xe0a1c120257320b9d5e920257320e4b4e9c3d1baa1d2c3b5cdbac3d1bae1c5e9c7, 'Y', '2002-10-28 07:24:28'),
(323, 12, 0xa1d2c3e0aad7e9cde0aad4adb9d5e9b6d9a1bbaed4e0cab8cbc3d7cdc5bab7d4e9a7e1c5e9c7, 'Y', '2002-10-28 07:24:28'),
(326, 12, 0xcae8a7a2e9cda4c7d2c1, 'Y', '2002-10-28 07:24:28'),
(327, 12, 0xa2e9cda4c7d2c1e3cbc1e8, 'Y', '2002-10-28 07:24:28'),
(328, 12, 0xb6d6a728c3cbd1cabcd9e9e3aae929, 'Y', '2002-10-28 07:24:28'),
(329, 12, 0xcae8a7a2e9cda4c7d2c1, 'Y', '2002-10-28 07:24:28'),
(332, 12, 0xe1c2e9a7a1d2c3bbc3d1ba, 'Y', '2002-10-28 07:24:28'),
(333, 12, 0xb5a1c5a7, 'Y', '2002-10-28 07:24:28'),
(334, 12, 0xbbaed4e0cab8, 'Y', '2002-10-28 07:24:28'),
(335, 12, 0xa2e9cda4c7d2c1e0aad7e9cde0aad4ad, 'Y', '2002-10-28 07:24:28'),
(336, 12, 0xcae8a7a2e9cda4c7d2c1e0aad7e9cde0aad4ad, 'Y', '2002-10-28 07:24:28'),
(346, 12, 0xcae8a7a2e9cda4c7d2c1e0c3d5c2bac3e9cdc2e1c5e9c7, 'Y', '2002-10-28 07:24:28'),
(431, 12, 0xa2b9d2b4a2cda7a1c3d0b4d2b9, 'N', '2002-10-28 07:30:13'),
(432, 12, 0xcbc1d2a1b5e8cdb7d5e8e0bbc5d5e8c2b9e1bbc5a7e4b4e928e2a4c1d420302e3520e1b5e9c1b6e9d2e4c1e8e0cac1cdc0d2a429, 'Y', '2002-10-28 07:30:13'),
(433, 12, 0xcbc1d2a1b5e8cdb7d5e8e0cbc1d2d0cac1, 'Y', '2002-10-28 07:30:13'),
(436, 12, 0xe0b4d7cdb9, 'Y', '2002-10-28 07:30:13'),
(439, 12, 0xb4e9c7c2, 'Y', '2002-10-28 07:30:13'),
(442, 12, 0xcad3cbc3d1ba, 'Y', '2002-10-28 07:30:13'),
(443, 12, '', 'Y', '2003-07-21 01:44:14'),
(445, 12, 0xc3cbd1cae0a1c1, 'Y', '2002-10-28 07:35:36'),
(446, 12, 0xcad5, 'Y', '2002-10-28 07:35:36'),
(447, 12, 0xb9d4a1d4c3d4, 'Y', '2002-10-28 07:35:36'),
(449, 12, 0xaad2c7add5e8bbd8e8b9, 'Y', '2002-10-28 07:35:36'),
(450, 12, 0x257320b5e8cdb5d220e1c5d020257320c3d0c2d0bed4e0c8c9, 'Y', '2002-10-28 07:35:36'),
(451, 12, 0xaad2c7e1a4b9b9d2b4d2, 'Y', '2002-10-28 07:35:36'),
(452, 12, 0x257320b5e8cd20257320cbc1d2a1, 'Y', '2002-10-28 07:35:36'),
(453, 12, 0xbed4e0c8c9b5e8cdb5d2, 'Y', '2002-10-28 07:35:36'),
(156, 12, 0xe0bed4e8c1e0b5d4c1aad5c7bbc3d0c7d1b5d4e1c5e9c7, 'Y', '2002-10-28 07:45:52'),
(157, 12, 0xe0bbc5d5e8c2b9c3cbd1cabce8d2b9e1c5e9c7, 'Y', '2002-10-28 07:45:52'),
(158, 12, 0xe0bed4e8c1e0b5d4c1a2e9cdc1d9c5cae8c7b9b5d1c7e1c5e9c7, 'Y', '2002-10-28 07:45:52'),
(175, 12, 0xcdd7e8b9e6, 'Y', '2002-10-28 07:45:52'),
(176, 12, 0xbbc3d0e0b7c8, 'Y', '2002-10-28 07:45:52'),
(177, 12, 0xcdd3e0c0cd, 'Y', '2002-10-28 07:45:52'),
(178, 12, 0xa8d1a7cbc7d1b4, 'Y', '2002-10-28 07:45:52'),
(179, 12, 0xaac1c3c1, 'Y', '2002-10-28 07:45:52'),
(180, 12, 0xe2cec1e0bea8, 'Y', '2002-10-28 07:45:52'),
(181, 12, 0xcdd5e0c1c5ec, 'Y', '2002-10-28 07:45:52'),
(182, 12, 0xcbc1d2c2e0c5a220e4cdabd5a4d4c7, 'Y', '2002-10-28 07:45:52'),
(184, 12, 0xa7d2b9cdb4d4e0c3a1, 'Y', '2002-10-28 07:45:52'),
(379, 12, 0xe1a1e9e4a220aad5c7bbc3d0c7d1b5d4, 'Y', '2002-10-28 07:45:52'),
(479, 12, 0xe4b7c2, 'Y', '2002-10-28 07:45:52'),
(183, 12, 0xe0a1c1b7d5e8e2bbc3b4bbc3d2b9, 'Y', '2002-10-28 10:39:41'),
(185, 12, 0xcdd2aad5be, 'Y', '2002-10-28 10:39:41'),
(187, 12, 0xe0bbc5d5e8c2b9aad5c7bbc3d0c7d1b5d4, 'Y', '2002-10-28 10:39:41'),
(188, 12, 0xe1a1e9e4a2c3cbd1cabce8d2b9, 'Y', '2002-10-28 10:39:41'),
(189, 12, 0xc3cbd1cabce8d2b9e0a1e8d2, 'Y', '2002-10-28 10:39:41'),
(190, 12, 0xc3cbd1cabce8d2b9e3cbc1e8, 'Y', '2002-10-28 10:39:41'),
(192, 12, 0xe0bbc5d5e8c2b9c3cbd1cabce8d2b9, 'Y', '2002-10-28 10:39:41'),
(193, 12, 0xbbd4b4, 'Y', '2002-10-28 10:39:41'),
(194, 12, 0xe1a8e9a7e0b7e8d2b9d1e9b9, 'Y', '2002-10-28 10:39:41'),
(195, 12, 0xb5d2e0b4d4b9e1c5e9d0a2e9cda4c7d2c1, 'Y', '2002-10-28 10:39:41'),
(196, 12, 0xa1c3d0b4d2b9e0b5e7c1e1c5d0a2e9cda4c7d2c1, 'Y', '2002-10-28 10:39:41'),
(197, 12, 0xe1b9c7b5d1e9a7, 'Y', '2002-10-28 10:39:41'),
(198, 12, 0xe1b9c7b9cdc7, 'Y', '2002-10-28 10:39:41'),
(199, 12, 0xe1a1e9e4a2a2e9cdc1d9c5cae8c7b9b5d1c7, 'Y', '2002-10-28 10:39:41'),
(200, 12, 0xa1d2c3b5d4b4b5d1e9a7cae8c7b9b5d1c7, 'Y', '2002-10-28 10:39:41'),
(206, 12, 0xe1a8e9a7b7d2a7cdd5e0c1c5ec, 'Y', '2002-10-28 10:39:41'),
(207, 12, 0xe3aae9b7d5e8bac3d2c7e0abcdc3ecb5d4b4b5d1e9a7e4c7e9, 'Y', '2002-10-28 10:39:41'),
(393, 12, 0xc7d1b9b7d5e8c5a7b7d0e0bad5c2b9, 'Y', '2002-10-28 12:58:08'),
(394, 12, 0xe0a2e9d2c1d2a4c3d1e9a7c5e8d2cad8b4, 'Y', '2002-10-28 12:58:08'),
(395, 12, 0xa2e9cdc1d9c5aad5c7bbc3d0c7d1b5d4, 'Y', '2002-10-28 12:58:08'),
(396, 12, 0xcae8a7a2e9cda4c7d2c1b6d6a7bcd9e9e3aae9, 'Y', '2002-10-28 12:58:08'),
(397, 12, 0xa1d3c5d1a7b4d3e0b9d4b9, 'Y', '2002-10-28 12:58:08'),
(398, 12, 0xa8bae1c5e9c7, 'Y', '2002-10-28 12:58:08'),
(399, 12, 0xaab9d0, 'Y', '2002-10-28 12:58:08'),
(400, 12, 0xe1bee9, 'Y', '2002-10-28 12:58:08'),
(6179, 40, 0x506f7263656e746167656d206465206a6f676f7320636f6d20706573736f6173206d61697320667261636173, 'Y', '2014-07-30 14:28:34'),
(402, 12, 0xa1d4a8a1c3c3c1, 'Y', '2002-10-28 12:58:08'),
(463, 12, 0xcac7d5e0b4e7b9, 'Y', '2002-10-28 12:58:08'),
(464, 12, 0xb9cdc3ece0c7c2ec, 'Y', '2002-10-28 12:58:08'),
(465, 12, 0xcdd1a7a1c4c9, 'Y', '2002-10-28 12:58:08'),
(466, 12, 0xe0c2cdc3c1d1b9, 'Y', '2002-10-28 12:58:08'),
(467, 12, 0xbdc3d1e8a7e0c8ca, 'Y', '2002-10-28 12:58:08'),
(468, 12, 0xcae0bbb9, 'Y', '2002-10-28 12:58:08'),
(469, 12, '', 'Y', '2003-07-21 01:44:14'),
(470, 12, 0xa8d5b90d0a28547261646974696f6e616c29, 'Y', '2002-10-28 12:58:08'),
(3344, 17, '', 'Y', '2013-08-21 00:43:55'),
(472, 12, 0xa8d5b90d0a2853696d706c696669656429, 'Y', '2002-10-28 12:58:08'),
(473, 12, 0xb4d1aa, 'Y', '2002-10-28 12:58:08'),
(82, 11, '', 'Y', '2007-06-04 15:49:02'),
(91, 11, '', 'Y', '2007-06-04 15:49:02'),
(132, 11, '', 'Y', '2007-06-04 15:49:02'),
(352, 11, '', 'Y', '2007-06-04 15:49:02'),
(362, 11, '', 'Y', '2007-06-04 15:49:02'),
(363, 11, '', 'Y', '2007-06-04 15:49:02'),
(389, 11, 0x4e69657577652062657269636874656e, 'Y', '2002-10-28 13:55:20'),
(246, 11, 0x4d656c6420752061616e, 'Y', '2003-03-25 13:10:00'),
(229, 11, '', 'Y', '2007-06-04 15:49:02'),
(236, 11, 0x53474620646f776e6c6f6164656e, 'Y', '2016-07-27 18:44:56'),
(342, 11, 0x526174696e676772616669656b20766f6f72, 'Y', '2016-07-29 15:11:28'),
(343, 11, 0x536f7272792c207465207765696e6967206d656574656c6c656e64652070617274696a656e20766f6f722065656e206772616669656b, 'Y', '2016-07-29 15:11:28'),
(372, 11, '', 'Y', '2016-07-29 13:57:33'),
(411, 11, '', 'Y', '2007-06-04 15:49:02'),
(421, 11, '', 'Y', '2007-06-04 15:49:02'),
(422, 11, '', 'Y', '2007-06-04 15:49:02'),
(447, 11, '', 'Y', '2007-06-04 15:49:02'),
(179, 11, '', 'Y', '2007-06-04 15:49:02'),
(180, 11, '', 'Y', '2007-06-04 15:49:02'),
(181, 11, '', 'Y', '2007-06-04 15:49:02'),
(479, 11, 0x5468616973, 'Y', '2002-10-31 13:02:57'),
(136, 11, '', 'Y', '2007-06-04 15:49:02'),
(165, 11, '', 'Y', '2007-06-04 15:49:02'),
(256, 11, 0x416c67656d656e6520496e666f, 'Y', '2002-10-28 14:00:54'),
(257, 11, 0x4a616e2076616e2064657220537465656e732720706167696e61, 'Y', '2003-05-20 10:33:58'),
(258, 11, 0x5665656c20676f20696e666f726d61746965, 'Y', '2004-02-14 11:14:35'),
(259, 11, 0x476f2046415120285665656c2067657374656c64652076726167656e29, 'Y', '2004-02-14 11:14:35'),
(385, 11, 0x4e69657577204f6e64657277657270, 'Y', '2016-07-30 10:54:05'),
(479, 5, 0x546861ef6c616e64616973, 'Y', '2003-01-21 13:52:21'),
(43, 5, 0x496c2073656d626c6520717565206365206d65737361676520736f697420756e652072e9706f6e736520e020756e206d657373616765206e6f6e206578697374616e742e, 'Y', '2002-10-28 20:54:00'),
(69, 5, 0x496d706f737369626c652064652074726f7576657220636574746520656e7472e965, 'Y', '2003-01-21 14:53:31'),
(75, 5, 0x4c6520746f75726e6f69206e27612070617320e974e92074726f7576e92e, 'Y', '2003-05-12 00:28:30'),
(340, 2, 0x4f535320726564616b74f872, 'Y', '2002-10-29 10:21:44'),
(260, 11, 0x5661616b2067657374656c64652076726167656e206f76657220676f20766f6f72206465207265632e67616d65732e676f206e696575777367726f6570, 'Y', '2002-10-29 11:16:35'),
(265, 11, 0x53656e7365692773204269626c696f746865656b, 'Y', '2003-05-20 10:33:58'),
(266, 11, 0x45656e2073616d656e7765726b656e646520776562736974652e204c65657320656e20646f65206d656521, 'Y', '2003-03-27 13:46:50'),
(267, 11, 0x476f204e6965757773, 'Y', '2002-10-29 11:16:35'),
(271, 11, '', 'Y', '2007-06-04 15:49:02'),
(272, 11, 0x45656e206d616e6761206f76657220676f2e2056616e2068617274652061616e6265766f6c656e2e, 'Y', '2004-02-14 11:14:35'),
(273, 11, 0x526567656c73, 'Y', '2002-10-29 11:16:35'),
(274, 11, 0x45656e20496e7465726163746965766520496e74726f647563746965, 'Y', '2002-10-29 11:16:35'),
(275, 11, 0x4469742069732065656e20676f6564652073697465206f6d20676f207465206c6572656e2e, 'Y', '2003-03-27 13:46:50'),
(276, 11, 0x45656e20676f6564206765736368726576656e20696e74726f64756374696520646f6f722064652042726974736520476f204173736f6369617469652e, 'Y', '2002-10-29 11:16:35'),
(281, 11, 0x53747261746567696520656e207465726d656e, 'Y', '2002-10-29 11:16:35'),
(283, 11, 0x476f2050726f626c656d656e, 'Y', '2002-10-29 11:16:35'),
(284, 11, 0x48657420646f6f726e656d656e206b616e206a652068656c70656e2062696a206a65207370656c2e, 'Y', '2004-02-14 11:14:35'),
(285, 11, '', 'Y', '2007-06-04 15:49:02'),
(286, 11, 0x4c616174206a652070617274696a656e20766f6f727a69656e2076616e20636f6d6d656e74616172206f6d207465206c6572656e2077616172206a65206d697373636869656e20626574657220686164206b756e6e656e207370656c656e2e, 'Y', '2004-02-14 11:14:35'),
(287, 11, 0x5661616b206765627275696b7465204a6170616e736520476f207465726d656e, 'Y', '2004-02-14 11:14:35'),
(288, 11, 0x55206d6f657420776574656e207761617220616e64657265207370656c65727320686574206f7665722068656262656e2e, 'Y', '2002-10-29 11:16:35'),
(291, 11, 0x4765736368696564656e6973, 'Y', '2003-05-20 10:33:58'),
(292, 11, 0x45656e206b6f727465206765736368696564656e6973, 'Y', '2004-02-14 11:14:35'),
(293, 11, 0x566f6f7220616c6c65206d656e73656e206d65742065656e206b6f72746520636f6e63656e7472617469652e, 'Y', '2003-05-20 10:33:58'),
(294, 11, 0x4465207569746765627265696465206765736368696564656e6973, 'Y', '2004-02-14 11:14:35'),
(295, 11, 0x566f6f7220646520746f656b6f6d737469676520776565742d616c, 'Y', '2003-03-27 13:46:50'),
(296, 11, 0x476f20626f656b656e2c206d617465726961616c20656e20736f667477617265, 'Y', '2002-10-29 11:16:35'),
(297, 11, 0x476f206269626c696f677261666965eb6e, 'Y', '2002-10-29 11:16:35'),
(298, 11, 0x45656e2067726f7465207665727a616d656c696e6720626f656b6265737072656b696e67656e, 'Y', '2003-03-27 13:46:50'),
(299, 11, 0x4575726f706573652077696e6b656c, 'Y', '2002-10-29 11:16:35'),
(300, 11, 0x416e6465726520676f2073657276657273, 'Y', '2002-10-29 11:16:35'),
(301, 11, 0x4f6f6b207475726e2d62617365642e204865656674206f6f6b20766572736368696c6c656e646520616e64657265207370656c656e2e, 'Y', '2003-03-27 13:46:50'),
(303, 11, 0x45656e2067726f74652073657276657220766f6f72207265616c74696d65207370656c656e, 'Y', '2003-03-27 13:46:50'),
(305, 11, 0x536572766572206c696a7374, 'Y', '2002-10-29 11:16:35'),
(306, 11, 0x45656e206d65657220636f6d706c657465206c696a7374206d65742073657276657273, 'Y', '2002-10-29 11:16:35'),
(340, 11, '', 'Y', '2007-06-04 15:49:02'),
(205, 7, '', 'Y', '2008-01-08 15:28:39'),
(363, 7, '', 'Y', '2008-01-08 15:28:39'),
(389, 7, 0x4e6f76e9207a7072e17679, 'Y', '2002-10-29 17:08:14'),
(225, 7, 0x567a64e174, 'Y', '2002-10-29 17:13:49'),
(226, 7, 0x44e1742070617373, 'Y', '2002-10-29 17:13:49'),
(231, 7, '', 'Y', '2008-01-08 15:28:39'),
(342, 7, 0x4772616620686f646e6f63656eed2070726f, 'Y', '2016-07-21 20:46:12'),
(343, 7, 0x50726f6d69f274652c2070f8ed6c69b9206de16c6f20686f646e6f63656efd6368206865722070726f2076796b7265736c656eed2067726166752e, 'Y', '2002-10-29 17:13:49'),
(411, 7, '', 'Y', '2008-01-08 15:28:39'),
(421, 7, '', 'Y', '2002-10-26 14:23:01'),
(422, 7, '', 'Y', '2002-10-26 14:23:01'),
(447, 7, '', 'Y', '2008-01-08 15:28:39'),
(479, 7, 0x5468616a736b79, 'Y', '2002-10-29 17:17:03'),
(340, 7, 0x526564616b746f7220464151, 'Y', '2002-10-29 17:18:19'),
(1, 11, 0x536f7272792c206a65206d6167206e6965742070617373656e20766f6f7264617420616c6c652068616e6469636170207374656e656e207a696a6e206765706c61617473742e, 'Y', '2004-02-14 12:16:48'),
(2, 11, 0x536f7272792c2064652070617274696a20697320616c20616667656c6f70656e2e, 'Y', '2003-03-26 10:20:57'),
(3, 11, 0x536f7272792c2064652070617274696a206973206e6f67206e696574206265676f6e6e656e2e, 'Y', '2003-03-26 10:20:57'),
(7, 11, 0x536f7272792c206a65206b756e74206a657a656c66206e696574207569746e6f646967656e2e, 'Y', '2004-02-14 12:16:48'),
(9, 11, 0x536f7272792c206a65206d61672065656e20737465656e206e696574207465727567736c61616e20646965206e65742065656e20737465656e2076616e206a6f75206865656674206765736c6167656e206f6d646174206461742065656e20646972656374652068657268616c696e672076616e20646520626f7264706f7369746965207a6f75207665726f6f727a616b656e2e20566f6f72206d65657220696e666f726d617469653a207a6f656b20696e20646520726567656c73206e61617220274b6f27202e, 'Y', '2004-02-14 12:16:48'),
(14, 11, 0x536f7272792c2068657420746f65766f6567656e2076616e2068657420626572696368742061616e206465206461746162617365206c696a6b74207465207a696a6e206d69736c756b742e, 'Y', '2004-02-14 12:16:48'),
(15, 11, 0x536f7272792c2068657420746f65766f6567656e2076616e2064652070617274696a2061616e206465206461746162617365206c696a6b74207465207a696a6e206d69736c756b742e, 'Y', '2004-02-14 12:16:48'),
(51, 11, 0x536f7272792c206a65206b756e74206e696574206a6520656967656e20756974646167696e67206163636570746572656e2e, 'Y', '2004-02-14 12:16:48'),
(52, 11, 0x536f7272792c206a6520726174696e672069732062756974656e20686574206765767261616764652062657265696b2e, 'Y', '2004-02-14 12:16:48'),
(54, 11, 0x536f7272792c206a65207761636874776f6f726420776173206f6e6a756973742e, 'Y', '2004-02-14 12:16:48'),
(55, 11, 0x4f6e62656b656e742072616e672074797065, 'Y', '2002-10-31 12:20:42'),
(56, 11, 0x536f7272792c20696b206b656e206e69656d616e64206d657420646174206765627275696b6572732069642e, 'Y', '2002-10-31 12:20:42'),
(57, 11, 0x536f7272792c20646520626567696e2d72616e67206d6f6574206c696767656e2074757373656e206465203330206b797520656e20362064616e2e, 'Y', '2002-10-31 12:20:42'),
(58, 11, 0x536f7272792c2075206865656674206765656e20676574616c20696e6765766f65726420696e2065656e206e756d657269656b2076656c642e, 'Y', '2004-02-14 12:16:48'),
(59, 11, 0x536f7272792c20616c6c65656e2076657274616c657273206d6f67656e2076657274616c656e2e, 'Y', '2002-10-31 12:20:42'),
(61, 11, 0x536f7272792c206a65206d616720696e20646520676573656c6563746565726465207461616c206e6965742076657274616c656e2e, 'Y', '2004-02-14 12:16:48'),
(63, 11, 0x536f7272792c2065722067696e67206965747320666f7574206d65742068657420696e766f6567656e2076616e206465206e69657577652076657274616c696e67656e20696e2064652064617461626173652e, 'Y', '2002-10-31 12:20:42'),
(66, 11, 0x536f7272792c2064657a6520706167696e6120697320616c6c65656e20766f6f72206765627275696b657273206d65742061646d696e697374726174696576652074616b656e2e, 'Y', '2002-10-31 12:20:42'),
(69, 11, 0x536f7272792c206b616e2064696520746f65766f6567696e67206e6965742076696e64656e2e, 'Y', '2002-10-31 12:20:42'),
(75, 11, 0x536f7272792c20696b206b6f6e2068657420746f65726e6f6f69206e6965742076696e64656e2e, 'Y', '2002-10-31 12:20:42'),
(3070, 17, '', 'Y', '2013-08-21 00:38:21'),
(3142, 17, 0x50726f, 'Y', '2013-08-21 00:38:21'),
(3143, 17, 0x4e6175637a796369656c, 'Y', '2013-08-21 00:38:21'),
(3144, 17, 0x426f74, 'Y', '2013-08-21 00:38:21'),
(474, 11, 0x4469742074797065206163746965206973206e6965742062656b656e74206f66206b616e206e696574206765627275696b7420776f7264656e20696e2064657a652073746161742076616e2064652070617472696a2e, 'Y', '2002-10-31 12:20:42'),
(475, 11, 0x4465206b6f6d69206c696774207569742064652073636861616c2e204b69657320612e752e622e2065656e206d6565722070617373656e6465207761617264652e, 'Y', '2002-10-31 12:20:42'),
(477, 11, 0x5665726b65657264652061616e74616c2068616e6469636170207374656e656e, 'Y', '2002-10-31 12:20:42'),
(16, 11, 0x446520746f65766f6567696e672076616e206465207a65742061616e206465206461746162617365206c696a6b74207465207a696a6e206d69736c756b742e20446974206b616e2065656e2070726f626c65656d207a696a6e2e2047656c69657665207465727567207465206761616e206e6161722064652070617274696a20656e206b696a6b206f66206465207a657420676572656769737472656572642069732e, 'Y', '2004-02-14 12:16:48'),
(17, 11, 0x446520746f65766f6567696e672076616e206a6520646174612061616e206465206461746162617365206c696a6b74207465207a696a6e206d69736c756b742e2050726f6265657220686574206e6f672065656e732e20416c73206865742064616e206e6f67206e696574206c756b742c206e65656d2064616e20612e752e622e20636f6e74616374206f7020686574206465206265686565726465722e, 'Y', '2004-02-14 12:16:48'),
(22, 11, 0x536f7272792c206a65206d6f65742065656e206e61616d20696e76756c6c656e2e, 'Y', '2004-02-14 12:16:48'),
(27, 11, 0x536f7272792c206a696a20656e206a6520746567656e7374616e646572206d6f6574656e2065656e2072616e6720696e7374656c6c656e206f6d2065656e2070617373656e64652068616e6469636170207465206b756e6e656e20626570616c656e2e, 'Y', '2004-02-14 12:16:48'),
(29, 11, 0x536f7272792c20646974206973206e69657420746f656765737461616e20766f6f722067617374656e2e205265676973747265657220732e762e702e2065657273742065656e206163636f756e74, 'Y', '2004-02-14 12:16:48'),
(32, 11, 0x536f7272792c206a652062656e74206e6965742061616e206465206265757274206f6d207465207a657474656e2e, 'Y', '2004-02-14 12:16:48'),
(33, 11, 0x486574207761636874776f6f7264206265766174746520696c6c6567616c652074656b656e732e20416c6c65656e206465206b6172616b7465727320612d7a2c20412d5a2c20302d3920616e64202d5f2b2e2c3a3b3f21252a207a696a6e20746f656765737461616e2e, 'Y', '2004-02-14 12:16:48'),
(35, 11, 0x48657420636f6e74726f6c652d7761636874776f6f7264206b77616d206e696574206f76657265656e206d657420686574207761636874776f6f72642e20476120746572756720656e2070726f6265657220686574206e6f676d61616c732e, 'Y', '2004-02-14 12:16:48'),
(40, 11, 0x536f7272792c2064657a6520737465656e207a6f75207a6963687a656c66206765736c6167656e2068656262656e2c206d616172207a656c666d6f6f7264206973206e69657420746f656765737461616e206f6e6465722064657a6520726567656c732e, 'Y', '2002-10-31 12:59:03'),
(43, 11, 0x486d6d2c206469742062657269636874206c696a6b742065656e20616e74776f6f7264207465207a696a6e206f702065656e206e696574206265737461616e6420626572696368742e, 'Y', '2002-10-31 12:59:03'),
(44, 11, 0x536f7272792c20696b206b6f6e20686574206765767261616764652062657269636874206e6965742076696e64656e2e, 'Y', '2002-10-31 12:59:03'),
(45, 11, 0x536f7272792c20696b206b616e20646965206765627275696b6572206e6965742076696e64656e2e, 'Y', '2004-02-14 12:16:48'),
(46, 11, 0x536f7272792c2069656d616e6420616e646572732068656566742064657a65206765627275696b65727320494420616c2c2070726f626565722065656e20756e69656b206765627275696b65727320494420746520626564656e6b656e2e, 'Y', '2004-02-14 12:16:48'),
(49, 11, 0x536f7272792c206a65206d616720616c6c65656e206a6520656967656e2070617274696a656e2076657277696a646572656e2e, 'Y', '2004-02-14 12:16:48'),
(122, 11, 0x416e74776f6f7264, 'Y', '2002-11-01 16:53:15'),
(127, 11, 0x77696a7a6967, 'Y', '2016-07-30 10:54:05'),
(128, 11, 0x566572706c61617473206f6d686f6f67, 'Y', '2016-07-29 15:04:46'),
(129, 11, 0x566572706c61617473206f6d6c616167, 'Y', '2016-07-29 15:04:46'),
(135, 11, 0x56657274616c657273, 'Y', '2002-11-01 16:53:15'),
(372, 7, '', 'Y', '2016-07-20 16:12:12'),
(271, 7, '', 'Y', '2008-01-08 15:28:39'),
(122, 9, 0x526573706f737461, 'Y', '2002-11-18 01:37:26'),
(127, 9, 0x416c7465726172, 'N', '2002-11-18 01:37:26'),
(128, 9, 0x506172612063696d61, 'Y', '2002-11-18 01:37:26'),
(129, 9, 0x5061726120626169786f, 'Y', '2002-11-18 01:37:26'),
(135, 9, 0x5472616475746f726573, 'Y', '2002-11-18 01:37:26'),
(43, 9, 0x486d6d2c2065737461206d656e736167656d207061726563652073657220756d6120726573706f737461206120756d20706f7374206ee36f2d6578697374656e74652e, 'Y', '2003-05-24 03:42:07'),
(69, 9, 0x4ee36f20666f6920706f7373ed76656c20656e636f6e74726172206573736120656e74726164612e, 'Y', '2003-05-24 03:42:07'),
(75, 9, 0x4ee36f20666f6920706f7373ed76656c20656e636f6e74726172206f20746f726e65696f20666f726e656369646f2e, 'Y', '2003-05-24 03:42:07'),
(475, 9, 0x4f206b6f6d6920657374e120666f726120646f73206c696d697465732e204573636f6c686120756d2076616c6f72206d6169732072617a6fe176656c2e, 'Y', '2003-05-24 03:42:07'),
(80, 10, 0xb5c7c8ebceaa, 'Y', '2007-02-25 08:18:27'),
(81, 10, 0xceb4b5c7c8eb, 'Y', '2007-02-25 08:18:27'),
(82, 10, 0xc4bfc7b0b6d4bed6, 'Y', '2007-05-30 11:38:03'),
(83, 10, 0xb4fdbed6cad2, 'Y', '2007-05-30 11:38:03'),
(84, 10, 0xcab9d3c3d5df, 'Y', '2007-05-30 11:38:03'),
(85, 10, 0xd0c5cfe4, 'Y', '2007-05-30 11:38:03'),
(86, 10, 0xd0b4d0c5, 'Y', '2009-10-12 16:17:19'),
(87, 10, 0xd1fbc7eb, 'Y', '2007-05-30 11:38:03'),
(88, 10, 0xc6e5cad6, 'Y', '2007-10-01 06:19:51'),
(89, 10, 0xc6e5bed6, 'Y', '2002-11-25 00:47:06'),
(90, 10, 0xb7add2eb, 'Y', '2002-11-23 08:41:45'),
(91, 10, 0xc2dbccb3, 'Y', '2002-11-23 08:41:45'),
(92, 10, 0xb3a3bcfbcecacce2, 'Y', '2007-10-01 09:13:50'),
(93, 10, 0xcdf8d5beb5d8cdbc, 'Y', '2007-05-30 11:38:03'),
(94, 10, 0xcec4bcfe, 'Y', '2007-05-30 11:38:03'),
(96, 10, 0xb9dcc0edd4b1, 'Y', '2002-11-21 09:33:31'),
(97, 10, 0xb5c7b3f6, 'Y', '2007-05-30 11:38:03'),
(98, 10, 0xc8d5, 'Y', '2002-11-24 03:59:17'),
(99, 10, 0xc8d5, 'Y', '2002-11-22 01:31:45'),
(100, 10, 0x2d, 'Y', '2007-04-19 13:01:49'),
(101, 10, 0xd0a1cab1, 'Y', '2007-05-30 11:38:03'),
(102, 10, 0xd0a1cab1, 'Y', '2007-05-30 11:38:03'),
(103, 10, 0xcedeb5b9cafdbcc6cab1, 'Y', '2007-06-06 20:07:33'),
(106, 10, 0xc8d5b1becabdb5b9cafdbcc6cab1, 'Y', '2007-06-06 20:07:33'),
(107, 10, 0xd7d3, 'Y', '2002-11-22 01:31:45'),
(108, 10, 0xbcd3c4c3b4f3cabdb5b9cafdbcc6cab1, 'Y', '2007-06-06 20:07:33'),
(132, 10, 0xb1e0bac5, 'Y', '2007-04-19 13:19:27'),
(134, 10, 0xd0d5c3fb, 'Y', '2002-11-22 01:22:55'),
(201, 10, 0xd5cabac5, 'Y', '2007-05-30 11:38:03'),
(204, 10, 0xb2cebfbcb5c8bcb6, 'Y', '2007-05-30 11:38:03'),
(205, 10, 0x444753b5c8bcb6, 'Y', '2007-05-30 11:38:03'),
(310, 10, 0xbcc4bcfec8cb, 'Y', '2007-04-19 13:19:27'),
(311, 10, 0xd6f7d6bc, 'Y', '2007-04-19 13:19:27'),
(312, 10, 0xc8d5c6da, 'Y', '2002-11-24 03:59:17'),
(314, 10, 0xd0c2, 'Y', '2002-11-23 08:41:45'),
(316, 10, 0xc7ebbbd8b8b4a3a1, 'Y', '2008-04-29 07:39:05'),
(352, 10, 0xc6e5c6d7, 'Y', '2002-11-21 09:33:31'),
(359, 10, 0xb6d4cad6d0d5c3fb, 'Y', '2007-06-06 14:06:08'),
(360, 10, 0xb39ec9ab, 'Y', '2007-04-19 13:19:27'),
(361, 10, 0xc6e5c5cc, 'Y', '2007-06-01 08:02:23'),
(362, 10, 0xc8c3d7d3, 'Y', '2002-11-22 01:48:36'),
(363, 10, 0xccf9c4bf, 'Y', '2002-11-22 01:33:37'),
(364, 10, 0xcad6cafd, 'Y', '2002-11-25 02:03:30'),
(368, 10, 0xd7eebdfcd2bbcad6, 'Y', '2015-08-29 12:40:26'),
(374, 10, 0xbdf8d0d0d6d0c6e5bed6, 'Y', '2007-05-30 11:38:03'),
(375, 10, 0xd2d1bde1caf8c6e5bed6, 'Y', '2007-05-30 11:38:03'),
(388, 10, 0xbfaab7c5b6d4bed6, 'Y', '2007-05-30 11:38:03'),
(389, 10, 0xd0c2d0c5bcfe, 'Y', '2007-05-30 11:38:03'),
(390, 10, 0xc2d6b5bdc4facfc2b5c4b6d4bed6a3ba, 'Y', '2007-06-22 20:10:19'),
(104, 10, 0xc3bfcad6bcd3202573, 'Y', '2007-04-19 13:19:27'),
(391, 10, 0xcedec6e5bed6, 'Y', '2007-06-22 20:10:19'),
(487, 9, 0x4d6169, 'Y', '2003-01-04 00:23:07'),
(460, 10, 0xcfc2d2bbd2b3, 'Y', '2007-05-30 11:38:03'),
(461, 10, 0xc7b0d2bbd2b3, 'Y', '2007-05-30 11:38:03'),
(462, 10, 0xd4f6bcd3cfeec4bf, 'Y', '2012-01-14 14:43:13'),
(160, 10, 0xc1fad6aeb39ebde9c9dc, 'Y', '2007-05-30 11:42:13'),
(191, 10, 0xc8b7c8cfc3dcc2eb, 'Y', '2002-11-29 00:39:44'),
(202, 10, 0xc8abc3fb, 'Y', '2002-11-29 00:39:44'),
(223, 10, 0xcdfcbcc7c3dcc2eba3bf, 'Y', '2002-11-22 01:23:49'),
(240, 10, 0xcad7d2b3, 'Y', '2002-11-29 00:39:44'),
(486, 9, 0x416272, 'Y', '2003-01-04 00:23:07'),
(242, 10, 0xc7ebd7a2b2e1a3acc0b4cfc2bcb8c5cccea7c6e5a1a3, 'Y', '2007-04-19 13:21:38'),
(243, 10, 0xc7ebb5c7c8eba1a3, 'Y', '2007-05-30 11:42:13'),
(244, 10, 0xb2ceb9dbc7ebd3c3202573a1a3, 'Y', '2007-04-19 13:21:38'),
(245, 10, 0xc3dcc2eb, 'Y', '2002-11-22 01:23:49'),
(246, 10, 0xb5c7c8eb, 'Y', '2007-05-30 11:42:13'),
(247, 10, 0xd7a2b2e1d0c2d5cabac5, 'Y', '2007-05-30 11:42:13'),
(248, 10, 0xcea7c6e5bde9c9dc, 'Y', '2007-05-30 11:42:13'),
(252, 10, 0xbbb6d3add4d9b6c8b9e2c1d9a3acc7ebbac3bac3cfedcadca3a1, 'Y', '2007-05-30 11:42:13'),
(1082, 10, 0xc3dcc2ebcbcdb3f6, 'Y', '2007-05-30 11:42:13'),
(344, 10, 0xd7a2b2e1, 'Y', '2007-05-30 11:42:13'),
(345, 10, 0xc7ebcae4c8ebd7cac1cf, 'Y', '2007-05-30 11:42:13'),
(109, 10, 0xc6e5bed6bcd3c8eba3a1, 'Y', '2007-05-30 12:31:19'),
(225, 10, 0xc8cfcae4, 'Y', '2002-12-11 03:44:57'),
(226, 10, 0xd0e9cad6, 'Y', '2007-05-30 12:31:19'),
(227, 10, 0xc9beb3fdc6e5bed6, 'Y', '2002-12-11 03:44:57'),
(485, 9, 0x466576, 'Y', '2003-01-04 00:23:07'),
(229, 10, 0xbcc6b7d6, 'Y', '2007-05-30 12:31:19'),
(230, 10, 0xc6e5bed6, 'Y', '2002-11-21 09:39:55'),
(231, 10, 0xd0e9cad6, 'Y', '2007-05-30 12:31:19'),
(232, 10, 0xc9beb3fdc6e5bed6, 'Y', '2002-12-11 03:44:57'),
(233, 10, 0xcdeab3c9, 'Y', '2002-12-11 03:44:57'),
(234, 10, 0xbcccd0f8b6d4bed6, 'Y', '2002-12-13 09:42:55'),
(235, 10, 0xc8cfcae4, 'Y', '2002-12-11 03:44:57'),
(236, 10, 0xcfc2d4d8c6e5c6d7, 'Y', '2002-12-11 03:44:57'),
(237, 10, 0xccf8b5bdcfc2d2bbbed6, 'Y', '2007-05-30 12:31:19'),
(238, 10, 0xb4d3b9dbbfb4d2c6b3fd, 'Y', '2007-05-30 12:31:19'),
(239, 10, 0xbcd3c8ebb9dbbfb4, 'Y', '2007-05-30 12:31:19'),
(253, 10, 0xc6e5bed6c9beb3fda3a1, 'Y', '2007-05-30 12:31:19'),
(254, 10, 0xbcd3c8ebb6d4bed6a3a1, 'Y', '2007-05-30 12:31:19'),
(324, 10, 0xbbd8b8b4, 'Y', '2002-11-29 00:55:36'),
(325, 10, 0xd1b6cfa2, 'Y', '2007-05-30 12:08:05'),
(330, 10, 0xb0d7b7bd, 'Y', '2007-04-19 13:19:27'),
(331, 10, 0xbadab7bd, 'Y', '2007-04-19 13:19:27'),
(342, 10, 0xc6e5c1a6cdbc, 'Y', '2007-05-29 13:11:09'),
(343, 10, 0xb1a7c7b8a3acc6e5bed6b9fdc9d9cedeb7a8b3c9cdbc, 'Y', '2007-05-29 13:11:09'),
(348, 10, 0xbde1caf8c6e5bed6, 'Y', '2007-05-29 13:11:09'),
(349, 10, 0xbdf8d0d0c6e5bed6, 'Y', '2007-05-29 13:11:09'),
(350, 10, 0x257320d2d1bde1caf8c6e5bed6, 'Y', '2007-05-29 13:11:09'),
(351, 10, 0x257320bdf8d0d0d6d0c6e5bed6, 'Y', '2007-05-29 13:11:09'),
(366, 10, 0xc6c0b5c8, 'Y', '2007-04-19 13:11:55'),
(370, 10, 0xcac7, 'Y', '2007-06-01 08:02:23'),
(371, 10, 0xb7f1, 'Y', '2002-11-22 01:33:37'),
(373, 10, 0xd1fbc7ebb6d4bed6, 'Y', '2002-12-04 03:47:19'),
(408, 10, 0xb2c2d7d3b7d6cfc8, 'Y', '2007-04-19 13:32:11'),
(411, 10, 0xd7cac1cf, 'Y', '2007-05-29 13:11:09'),
(412, 10, 0xb1b8d7a2, 'Y', '2007-05-30 12:31:19'),
(414, 10, 0xcab1cfde, 'Y', '2003-06-03 06:01:43'),
(420, 10, 0xbed6cafd, 'Y', '2007-05-30 12:31:19'),
(421, 10, 0xb6ce, 'Y', '2002-11-29 00:49:28'),
(422, 10, 0xbcb6, 'Y', '2002-11-29 00:49:28'),
(423, 10, 0xb6d4cad6b1d8d0ebd3d0b5c8bcb6, 'Y', '2007-05-29 13:11:09'),
(424, 10, 0xb6d4cad6b5c8bcb6, 'Y', '2007-05-29 13:11:09'),
(425, 10, 0xd4f6bcd3c6e5bed6, 'Y', '2007-05-29 13:11:09'),
(426, 10, 0xc6e5cad6, 'Y', '2002-11-29 00:49:28'),
(427, 10, 0xbed6cafd, 'Y', '2007-05-29 13:11:09'),
(429, 10, 0xc9beb3fd, 'Y', '2003-01-22 01:06:33'),
(430, 10, 0xbcd3c8eb, 'Y', '2003-01-22 01:06:33'),
(437, 10, 0xd6f7d2aacab1bce4, 'Y', '2007-05-30 12:08:05'),
(454, 10, 0xc7ebcfc2bac3c8c3d7d3a3a1, 'Y', '2007-05-29 13:11:09'),
(455, 10, 0xcbcdb3f6a3acb2a2b5bdcfc2d2bbbed6, 'Y', '2007-05-29 13:11:09'),
(456, 10, 0xcbcdb3f6a3acbbd8b5bdb6d4bed6d2b3, 'Y', '2007-06-17 18:47:46'),
(1076, 10, 0xcbbdc8cbb1cabcc7b1be, 'Y', '2007-05-31 11:26:53'),
(457, 10, 0xbbd8c9cfd2bbd2b3, 'Y', '2007-07-03 12:29:36'),
(307, 10, 0xd0c5cfe4, 'Y', '2007-05-30 12:08:05'),
(308, 10, 0xcad5bcfec8cb, 'Y', '2007-05-30 12:08:05'),
(315, 10, 0xd2d1bbd8b8b4, 'Y', '2002-11-22 01:50:40'),
(4676, 7, 0x5570726176697420726f7a6573746176656eed, 'Y', '2016-07-20 18:39:56'),
(322, 10, 0x2573b6d4bed6257320d1fbc7ebd2d1b1bbbdd3cadc, 'Y', '2007-05-30 12:08:05'),
(492, 9, 0x44657a, 'Y', '2003-01-04 00:23:07'),
(323, 10, 0xb6d4bed6b1bbcdf1bedca3acbbf2c6e5bed6d2d1c9beb3fd, 'Y', '2007-05-30 12:08:05'),
(490, 9, 0x536574, 'Y', '2003-01-04 00:23:07'),
(491, 9, 0x4f7574, 'Y', '2003-01-04 00:23:07'),
(326, 10, 0xbcc4b3f6bbd8baaf, 'Y', '2007-05-30 12:08:05'),
(327, 10, 0xd0c2d0c5bcfe, 'Y', '2002-11-29 00:55:36'),
(328, 10, 0xcad5bcfec8cb28d5cabac529, 'Y', '2007-05-30 12:08:05'),
(329, 10, 0xbcc4d0c5, 'Y', '2015-05-12 08:38:42'),
(333, 10, 0xbdd3cadc, 'Y', '2002-11-29 00:55:36'),
(334, 10, 0xbedcbef8, 'Y', '2002-11-29 00:55:36'),
(335, 10, 0xd1fbc7ebb6d4bed6, 'Y', '2007-05-30 12:08:05'),
(336, 10, 0xb7a2cbcdd1fbc7eb, 'Y', '2002-12-04 03:37:45'),
(346, 10, 0xd2d1cbcdb3f6a3a1, 'Y', '2007-05-30 12:08:05'),
(1880, 17, 0x447a69ea6b756a656d79207a612077737061726369652066696e616e736f7765206e61737a65676f207365727765726121, 'Y', '2013-08-20 23:01:09'),
(436, 10, 0xd4c2, 'Y', '2002-11-29 00:55:36'),
(439, 10, 0x2d, 'Y', '2007-05-30 12:08:05'),
(445, 10, 0xc6e5bed6b1e0bac5, 'Y', '2007-05-30 12:08:05'),
(446, 10, 0xb39ec9ab, 'Y', '2007-05-29 13:11:09'),
(449, 10, '', 'Y', '2002-11-29 00:55:36'),
(451, 10, '', 'Y', '2007-05-30 12:08:05'),
(431, 10, 0xc6e5c5cc, 'N', '2007-05-30 12:08:05'),
(156, 10, 0xd0a1b4abd2d1b8fcd0c2a3a1, 'Y', '2007-05-30 12:22:26'),
(489, 9, 0x41676f, 'Y', '2003-01-04 00:23:07'),
(157, 10, 0xc3dcc2ebd2d1b8fcd0c2a3a1, 'Y', '2002-12-04 03:47:19'),
(158, 10, 0xb8f6c8cbc9e8b6a8d2d1b8fcd0c2a3a1, 'Y', '2007-05-30 12:22:26'),
(488, 9, 0x4a756e, 'Y', '2003-01-04 00:23:07'),
(175, 10, 0xc6e4cbfca3ba, 'Y', '2007-05-30 12:22:26'),
(176, 10, 0xb9fabcd2, 'Y', '2002-11-24 04:03:46'),
(177, 10, 0xb3c7cad0, 'Y', '2002-11-24 04:03:46'),
(178, 10, 0xcaa12fd6dd, 'Y', '2007-05-30 12:22:26'),
(179, 10, 0xbee3c0d6b2bf, 'Y', '2002-11-24 04:03:46'),
(180, 10, 0xd6f7d2b3, 'Y', '2002-11-24 04:03:46'),
(181, 10, 0xb5e7d7d3d3cacfe4, 'Y', '2002-11-29 01:02:54'),
(182, 10, 0x494351bac5c2eb, 'Y', '2002-11-29 01:02:54'),
(183, 10, 0xb6d4bed6b2cecafd, 'Y', '2002-12-04 03:47:19'),
(184, 10, 0xb0aebac3, 'Y', '2002-11-29 01:02:54'),
(185, 10, 0xd6b0d2b5, 'Y', '2002-11-24 04:03:46'),
(187, 10, 0xb8c4b1e4d0a1b4ab, 'Y', '2007-05-30 12:22:26'),
(188, 10, 0xb1e0bcadc3dcc2eb, 'Y', '2002-11-29 01:02:54'),
(189, 10, 0xd4adc3dcc2eb, 'Y', '2002-11-29 01:02:54'),
(190, 10, 0xd0c2c3dcc2eb, 'Y', '2002-11-29 01:02:54'),
(192, 10, 0xb8fcb8c4c3dcc2eb, 'Y', '2002-11-29 01:02:54'),
(193, 10, 0xb9d8, 'Y', '2007-05-30 12:22:26'),
(194, 10, 0xd6bbbcc4cda8d6aa, 'Y', '2007-06-23 11:56:02'),
(195, 10, 0xcad6cafdd3ebd0c5bcfe, 'Y', '2007-06-22 20:38:34'),
(196, 10, 0xc5ccc3e6d3ebd0c5bcfe, 'Y', '2007-06-22 20:38:34'),
(197, 10, 0xb4b9d6b1, 'Y', '2007-05-30 12:22:26'),
(198, 10, 0xcbaec6bd, 'Y', '2007-05-30 12:22:26'),
(199, 10, 0xb8f6c8cbc9e8b6a8, 'Y', '2007-05-30 12:22:26'),
(200, 10, 0xb8f6c8cbc9e8b6a8, 'Y', '2002-12-04 03:47:19'),
(206, 10, 0xb5e7d3cacce1d0d1, 'Y', '2002-11-29 01:02:54'),
(207, 10, 0xe4afc0c0c6f7c9e8b6a8, 'Y', '2007-05-30 12:22:26'),
(208, 10, 0xd3efd1d4, 'Y', '2002-11-29 01:02:54'),
(209, 10, 0xcab1c7f8, 'Y', '2002-11-29 01:02:54'),
(211, 10, 0xc6e5c5cc, 'Y', '2007-05-30 12:22:26'),
(212, 10, 0xb39ecaafb4f3d0a1, 'Y', '2007-05-30 12:22:26'),
(213, 10, 0xc6e5c5ccd1d5c9ab, 'Y', '2002-12-04 03:47:19'),
(214, 10, 0xd7f8b1eacebbd6c3, 'Y', '2002-12-04 03:47:19'),
(215, 10, 0xd7f3, 'Y', '2002-11-29 01:02:54'),
(216, 10, 0xc9cf, 'Y', '2002-11-29 01:02:54'),
(217, 10, 0xd3d2, 'Y', '2002-11-29 01:02:54'),
(218, 10, 0xcfc2, 'Y', '2002-11-29 01:02:54'),
(219, 10, 0xc5ccd4b5c6bdbbac, 'Y', '2007-05-30 12:22:26'),
(220, 10, 0xd1a1b5a5b7bdcff2, 'Y', '2007-05-30 12:22:26'),
(222, 10, 0xb1e4b8fcb8f6c8cbc9e8b6a8, 'Y', '2007-05-30 12:22:26'),
(379, 10, 0xb1e0bcadd0a1b4ab, 'Y', '2007-05-30 12:22:26'),
(393, 10, 0xd7a2b2e1c8d5c6da, 'Y', '2002-12-04 03:47:19'),
(394, 10, 0xc9cfb4ceb5c7c8eb, 'Y', '2007-05-30 12:22:26'),
(395, 10, 0xd0a1b4ab, 'Y', '2007-05-30 12:22:26'),
(396, 10, 0xbcc4d0c5b8f8b4cbc6e5cad6, 'Y', '2007-10-01 07:15:53'),
(397, 10, 0xbdf8d0d0, 'Y', '2007-05-29 13:11:09'),
(398, 10, 0xbde1caf8, 'Y', '2002-12-04 03:47:19'),
(399, 10, 0xcaa4, 'Y', '2002-12-04 03:47:19'),
(400, 10, 0xb8ba, 'Y', '2002-12-04 03:47:19'),
(463, 10, '', 'Y', '2002-11-21 06:45:13'),
(464, 10, '', 'Y', '2002-11-21 06:45:13'),
(465, 10, '', 'Y', '2002-11-21 06:45:13'),
(466, 10, '', 'Y', '2002-11-21 06:45:13'),
(467, 10, '', 'Y', '2002-11-21 06:45:13'),
(468, 10, '', 'Y', '2002-11-21 06:45:13'),
(469, 10, '', 'Y', '2002-11-21 06:45:13'),
(470, 10, 0xd6d0cec428b7b1cce529, 'Y', '2007-05-30 12:43:46'),
(3343, 17, '', 'Y', '2013-08-21 00:43:28'),
(472, 10, 0xd6d0cec428bcf2cce529, 'Y', '2007-05-30 12:43:46'),
(473, 10, '', 'Y', '2002-11-21 06:45:13'),
(479, 10, '', 'Y', '2002-11-21 06:45:13'),
(136, 10, 0xc2dbccb3, 'Y', '2002-11-24 09:56:07'),
(159, 10, 0xcec4bcfe, 'Y', '2012-01-08 23:27:57'),
(161, 10, 0xb3a3bcfbcecacce2, 'Y', '2007-05-30 14:11:50'),
(164, 10, 0xc1fad6aeb39ed0add6fad5df, 'Y', '2007-05-30 14:11:50'),
(165, 10, 0xc1acbdd3, 'Y', '2007-05-30 14:11:50'),
(168, 10, 0xb0b2d7b0d6b8cabe, 'Y', '2007-05-30 14:11:50');
INSERT INTO `Translations` (`Original_ID`, `Language_ID`, `Text`, `Translated`, `Updated`) VALUES
(170, 10, 0xcfc2d4d820447261676f6e20d4b4c2eb, 'Y', '2007-05-30 14:11:50'),
(2174, 17, 0x496e666f726d61636a65206f207475726e69656a75, 'Y', '2013-08-20 23:51:45'),
(259, 10, 0xcea7c6e5b3a3bcfbcecacce2, 'Y', '2007-05-30 14:11:50'),
(470, 8, 0xc163c5e9a4a4a4e5, 'Y', '2007-06-02 08:26:29'),
(265, 10, '', 'Y', '2002-11-24 04:56:42'),
(267, 10, 0xcea7c6e5d0c2cec5, 'Y', '2007-05-30 14:11:50'),
(273, 10, 0xb9e6d4f2, 'Y', '2002-11-24 08:56:11'),
(274, 10, 0xbba5b6afd1a7cea7c6e5, 'Y', '2007-05-30 14:11:50'),
(275, 10, 0xd1a7c6e5b5c4bac3b5d8b7bda1a3, 'Y', '2003-01-03 11:44:32'),
(276, 10, 0x262332363436393b262333333235383b4272697469736820476f204173736f63696174696f6e262333303334303b262333353831343b262332333631333b262332353335313b262332313333353b, 'Y', '2002-11-21 07:26:46'),
(294, 8, 0xb3f2b4d1b8d4a576, 'Y', '2007-05-31 11:11:06'),
(281, 10, 0x262333313537343b262333303035333b262332313435303b262332363431353b262333353832313b, 'Y', '2002-11-21 07:26:46'),
(283, 10, 0x262332323236303b262332363832373b262333303334303b262333333530393b262332343137383b262333383338323b262333393036343b, 'Y', '2002-11-21 07:26:46'),
(284, 10, 0x262332353535323b262332313331393b262332363832373b262332313134373b262333303334303b262332343131303b262332353136333b, 'Y', '2002-11-21 07:26:46'),
(286, 10, 0x262333303333313b262333353736303b262332303332303b262333303334303b262332363832373b262333353838393b262332343138323b262333333731393b262332343437313b262332353335313b262332333534383b, 'Y', '2002-11-21 07:26:46'),
(287, 10, 0x262332343132303b262332393939323b262332363038353b262333353832313b262332323236303b262332363832373b262332363431353b262333353832313b, 'Y', '2002-11-21 07:26:46'),
(288, 10, 0x262332353438343b262332353536393b262332363832373b262332353136333b262332303230343b262333303334303b262333353832313b262333353332383b, 'Y', '2002-11-21 07:26:46'),
(291, 10, 0x262332313338323b262332313439303b, 'Y', '2002-11-21 07:26:46'),
(292, 10, 0x262333313631363b262332313439303b, 'Y', '2002-11-21 07:26:46'),
(295, 10, '', 'Y', '2002-11-25 00:47:06'),
(296, 10, 0xc6e5cae9a3acc6e5bedfbcb0c8edbcfe, 'Y', '2002-11-24 08:56:11'),
(417, 10, 0xc4bfc7b0cbc6baf5cedec8cb, 'Y', '2007-05-30 12:31:19'),
(297, 10, 0x262332323236303b262332363832373b262332303037303b262333303434363b262333353831343b262333353239393b, 'Y', '2002-11-21 07:26:46'),
(298, 10, 0x262332323236303b262332363832373b262332303037303b262333353738303b262332323832333b262332303834303b, 'Y', '2002-11-21 07:26:46'),
(299, 10, 0x262332373433313b262332373935343b262332313833303b262332343231353b, 'Y', '2002-11-21 07:26:46'),
(300, 10, 0x262332303835343b262332333432373b262332363832373b262333313434393b, 'Y', '2002-11-21 07:26:46'),
(301, 10, 0x262332323233383b262332313531323b262332313034363b262331323239303b262332313531363b262332363130323b262332353535323b262332303337393b262332303835343b262332333432373b262332383231363b262332353130333b, 'Y', '2002-11-21 07:26:46'),
(303, 10, 0x262332303135343b262332373636383b262333393634303b262332383037323b262333303334303b262332333435343b262332363130323b262332363338313b262332313135333b262332323132303b, 'Y', '2002-11-21 07:26:46'),
(305, 10, 0x262332363338313b262332313135333b262332323132303b262332313031353b262333343932303b, 'Y', '2002-11-21 07:26:46'),
(306, 10, 0x262332363335363b262332303834303b262333383735343b262333303334303b262332363338313b262332313135333b262332323132303b262332313031353b262333343932303b, 'Y', '2002-11-21 07:26:46'),
(337, 10, 0x447261676f6e262333303334303b262333363139303b262332313136313b262333323737333b, 'Y', '2002-11-21 07:26:46'),
(6089, 36, 0x4e656d2074616cc3a16c686174c3b36b2066656c74c3a974656c6573206cc3a970c3a973656b2e, 'Y', '2015-07-23 12:16:04'),
(340, 10, 0xb3a3bcfbcecacce2b1e0bcad, 'Y', '2007-10-01 09:17:20'),
(377, 10, 0xbbb6d3add2b3, 'Y', '2007-05-30 14:11:50'),
(378, 10, 0xced2b5c4d7cac1cf, 'Y', '2007-05-30 12:22:26'),
(380, 10, 0xcfd4cabed1b6cfa2, 'Y', '2007-05-30 14:11:50'),
(383, 10, 0xbbb0cce2c1d0b1ed, 'Y', '2007-05-30 14:11:50'),
(385, 10, 0xd0c2d6f7cce2, 'Y', '2015-08-29 12:40:26'),
(1228, 10, 0xcdb3bcc6cdbc, 'Y', '2007-05-30 14:11:50'),
(122, 10, 0xb4f0b8b4, 'Y', '2007-05-30 12:08:05'),
(127, 10, 0xb1e0bcad, 'Y', '2015-08-29 12:39:02'),
(128, 10, 0x262332313532313b262331393937383b, 'Y', '2002-11-21 07:42:53'),
(129, 10, 0x262332313532313b262331393937393b, 'Y', '2002-11-21 07:42:53'),
(135, 10, 0xb7add2eb, 'Y', '2012-01-31 05:58:46'),
(1438, 10, 0xc8c3d7d3, 'Y', '2012-01-10 19:30:09'),
(1890, 33, 0xe8aea9e5ad90, 'Y', '2012-01-10 19:28:36'),
(1583, 33, 0xe8aea9e5ad90e6a38be5b180, 'Y', '2012-01-10 19:28:36'),
(1393, 33, 0xe4bb85e694b9e58f98e6ada4e6b58fe8a788e599a8, 'Y', '2012-01-14 06:12:08'),
(1438, 33, 0xe8aea9e5ad90, 'Y', '2012-01-10 19:28:36'),
(1503, 10, 0xd0c7cebb, 'Y', '2012-01-10 19:24:25'),
(1503, 33, 0xe6989fe4bd8d, 'Y', '2012-01-10 19:24:40'),
(1439, 10, 0xccf9c4bf, 'Y', '2012-01-10 19:21:32'),
(1439, 33, 0xe8b4b4e79bae, 'Y', '2012-01-10 19:21:56'),
(1, 10, 0x262332353236353b262332373436353b262336353238313b262332343531373b262333393033353b262333323632323b262332303833373b262332303834303b262333373039363b262333353735333b262332333337363b262332353136353b262333333032313b262333323438373b262333323439333b262331323239303b, 'Y', '2002-11-21 08:38:04'),
(2, 10, 0x262332333534353b262331393938313b262333363231353b262336353239323b262332333534353b262332333631363b262332343035303b262333323436333b262333323436373b262332363436333b262332303130323b262331323239303b, 'Y', '2002-11-21 08:38:04'),
(3, 10, 0x262332333534353b262331393938313b262333363231353b262336353239323b262332373630343b262333363138373b262332333537383b262332363431303b262332343332303b262332323938373b262331323239303b, 'Y', '2002-11-21 08:38:04'),
(7, 10, 0x262332333534353b262331393938313b262333363231353b262336353239323b262332303332303b262332363038303b262332373836313b262333363939323b262333353833313b262332303332303b262333333235383b262332343034393b262331323239303b, 'Y', '2002-11-21 08:38:04'),
(8, 10, 0x262332353236353b262332373436353b262336353238313b262332363038303b262332373836313b262332353231343b262332313034303b262333353831333b262332333534353b262332333631363b262333363939323b262333353833313b262331323239303b262332343035303b262333323436333b262332313436323b262332383034303b262336353331313b, 'Y', '2002-11-21 08:38:04'),
(9, 10, 0x262332333534353b262331393938313b262333363231353b262336353239323b262331393938313b262333333032313b262332323233383b262332353535323b262336353239323b262333353833313b262332353335333b262333353236383b262332313031373b262332333534373b262332313136333b262331323239303b, 'Y', '2002-11-21 08:38:04'),
(12, 10, 0x262332363038303b262332373836313b262333363833303b262332353530393b262332313034303b262332353936383b262332353435343b262332343231313b262336353239323b262333353833313b262333363830373b262332303936303b262332303939383b262333383034373b262332303837373b262333353739373b262331323239303b, 'Y', '2002-11-21 08:38:04'),
(13, 10, 0x262332313032343b262333383530303b262332323833333b262333363133333b262331323239303b262333383735303b262332353932353b262333383535363b262331323239303b, 'Y', '2002-11-21 08:38:04'),
(14, 10, 0x262332353236353b262332373436353b262336353239323b262332313532313b262332353936383b262332353435343b262332343231313b262332383135353b262332313135323b262332383034303b262332343638373b262332323833333b262333363133333b262331323239303b, 'Y', '2002-11-21 08:38:04'),
(15, 10, 0x262332353236353b262332373436353b262336353239323b262332313532313b262332353936383b262332353435343b262332343231313b262332383135353b262332313135323b262332333534353b262332333631363b262332323833333b262333363133333b262331323239303b, 'Y', '2002-11-21 08:38:04'),
(16, 10, 0x262332313532313b262332353936383b262332353435343b262332343231313b262332383135353b262332313135323b262333353831333b262333303532383b262332353136333b262333363933353b262332313034303b262333383338323b262333393036343b262331323239303b262333363832353b262332313438373b262333333032313b262332363135393b262331393936383b262332303031303b262332353932353b262333383535363b262336353239323b262333353833313b262333363832303b262332323233383b262332333534353b262332333631363b262332363831363b262332363539373b262333353831333b262333303532383b262332353136333b262332363135393b262332313534323b262332343035303b262333353736303b262332343430353b262331323239303b, 'Y', '2002-11-21 08:38:04'),
(17, 10, 0x262332313532313b262332353936383b262332353435343b262332343231313b262333363735353b262332303833373b262332343734343b262333303334303b262332353936383b262332353435343b262332363130323b262332303938363b262333383136393b262331323239303b262332323931343b262332363431303b262333333032313b262333303333313b262332343430353b262333353833313b262332303837373b262333353739373b262331393936383b262332373432353b262336353239323b262332323931343b262332303135343b262332363038303b262332373836313b262333303333313b262332343430353b262336353239323b262333353833313b262333323835323b262333313939353b262332353930333b262332353334353b262332303135343b262332313539323b262331323239303b, 'Y', '2002-11-21 08:38:04'),
(18, 10, 0x262332353936383b262332353435343b262332363539373b262333353831303b262333383136393b262333353832333b262331323239303b262333353833313b262333313234353b262332313531383b262332303837373b262333353739373b262331323239303b, 'Y', '2002-11-21 08:38:04'),
(19, 10, 0x262332363038303b262332373836313b262333363837333b262332303031333b262332353936383b262332353435343b262332343231313b262331323239303b262333353833313b262333313234353b262332313531383b262332303837373b262333353739373b262331323239303b, 'Y', '2002-11-21 08:38:04'),
(20, 10, 0x262332353236353b262332373436353b262336353238313b262332363038303b262332373836313b262332343332303b262332323938373b262332333534353b262332333631363b262331323239303b262333353833313b262333313234353b262332313531383b262332303837373b262333353739373b262331323239303b, 'Y', '2002-11-21 08:38:04'),
(22, 10, 0x262332333534353b262331393938313b262333363231353b262336353239323b262332343531373b262333393033353b262332353535323b262332303337393b262332323939353b262332313531373b262331323239303b, 'Y', '2002-11-21 08:38:04'),
(27, 10, 0xb1a7c7b8a3acc4fad3ebb6d4cad6d0e8d2aac9e8b6a8b5c8bcb6a3acb7f1d4f2cedeb7a8c8b7b6a8cacab5b1c8c3d7d3a1a3, 'Y', '2012-01-19 19:06:13'),
(1389, 8, 0xa470b6c7a6b8a7c7, 'Y', '2012-01-30 19:59:12'),
(29, 10, 0x262332333534353b262331393938313b262333363231353b262336353239323b262333353737353b262332333435383b262332363038303b262332373836313b262332303335313b262332393939323b262336353239323b262333353833313b262332373838303b262332303837363b262332343734343b262333303334303b262332303031303b262332303135343b262333363133343b262332353134333b262331323239303b, 'Y', '2002-11-21 08:38:04'),
(32, 10, 0x262332333534353b262331393938313b262333363231353b262336353239323b262331393938313b262333353831333b262332303332303b262333303532383b262332333337363b262331323239303b, 'Y', '2002-11-21 08:38:04'),
(33, 10, 0x262332333439343b262333303732313b262332313534373b262333383735303b262332373836313b262332333338333b262333313532363b262336353239323b262332313438323b262333333032313b262332303335313b262332393939323b612d7a2c20412d5a2c20302d3920616e64202d5f2b2e2c3a3b3f21252a262333313536313b262332333338333b262333313532363b262331323239303b, 'Y', '2002-11-21 08:38:04'),
(35, 10, 0x262333303833303b262333353734383b262332333439343b262333303732313b262332323833333b262333363133333b262336353239323b262333353833313b262333363832303b262332323233383b262333373332353b262333353739373b262331323239303b, 'Y', '2002-11-21 08:38:04'),
(1373, 10, 0xb1a7c7b8a3acd5d2b2bbb5bdcad5d0c5c8cba1a3c7ebc8b7b6a8cac7b4abcbcdb8f8d3c3bba7d5cabac5a3acb6f8b7c7d3c3bba7d0d5c3fba1a3, 'Y', '2012-03-11 05:55:18'),
(1923, 34, 0xe799bbe585a5e9858de9a18d, 'Y', '2012-05-08 19:14:14'),
(1923, 10, 0xb5c7c8ebc5e4b6ee, 'Y', '2012-05-08 19:14:53'),
(38, 10, 0x262332333534353b262331393938313b262333363231353b262336353239323b262332373537333b262332303330313b262333383338323b262333393036343b262336353239323b262332343734343b262332363135393b262332313534323b262332343533363b262333353736303b262332353335313b262332363132363b3f616d703b2333323432333b3f616d703b2332353131303b3f616d703b2332373537333b3f616d703b2336353331313b, 'Y', '2002-11-22 01:07:35'),
(39, 10, 0x262332333534353b262331393938313b262333363231353b262336353239323b262332373537333b262332303330313b262333383338323b262333393036343b262336353239323b262332373439323b262332323738383b262331393938313b262332343231323b262332303335313b262332393939323b3f616d703b2333323432333b3f616d703b2332353131303b3f616d703b2332373537333b3f616d703b2331323239303b, 'Y', '2002-11-22 01:07:35'),
(40, 10, 0x262332333534353b262331393938313b262333363231353b262336353239323b262332353335333b262333353236383b262332313031373b262331393938313b262333333032313b262332323331323b3f616d703b2333313130353b262333303532383b262332383835373b3f616d703b2333303532383b262332333337363b262331323239303b, 'Y', '2002-11-22 01:07:35'),
(41, 10, 0x262332333534353b262331393938313b262333363231353b262336353239323b262332363038303b262332373836313b262332353231343b262332313034303b262333353831333b262332333534353b262332333631363b262331323239303b, 'Y', '2002-11-21 08:38:04'),
(42, 10, 0x262332333534353b262331393938313b262333363231353b262336353239323b262332363038303b262332373836313b262332353231343b262332313034303b262333353831333b262333353737303b262332323336333b262331323239303b, 'Y', '2002-11-21 08:38:04'),
(43, 10, 0x262333303437353b262333363231353b262332363436393b262333363832353b262332363436353b262332383034303b262332343638373b262332363135393b262333323437333b262331393936383b262332343335323b262332343138323b262331393938313b262332333338343b262332323331323b262333303334303b262332343038363b262332333337363b262333303334303b262332323233383b262332323739373b262332313833343b, 'Y', '2002-11-21 08:38:04'),
(44, 10, 0x262332333534353b262331393938313b262333363231353b262336353239323b262332363038303b262332373836313b262332353231343b262332313034303b262333353831333b262332383034303b262332343638373b262331323239303b, 'Y', '2002-11-21 08:38:04'),
(45, 10, 0x262332333534353b262331393938313b262333363231353b262336353239323b262332363038303b262332373836313b262332353231343b262332313034303b262333353831333b262332393939323b262332353134333b262331323239303b, 'Y', '2002-11-21 08:38:04'),
(46, 10, 0x262332353236353b262332373436353b262336353239323b262333353831333b262332393939323b262332353134333b262332313531373b262332343035303b262332363337373b262332303135343b262332303335313b262332393939323b262336353239323b262333353833313b262332333538313b262333353739373b262332303835343b262332303138323b262332393939323b262332353134333b262332313531373b262331323239303b, 'Y', '2002-11-21 08:38:04'),
(49, 10, 0x262332333534353b262331393938313b262333363231353b262336353239323b262332313438323b262333333032313b262332313032343b262333383530303b262333333235383b262332343034393b262333303334303b262332333534353b262332333631363b262331323239303b, 'Y', '2002-11-21 08:38:04'),
(50, 10, 0xb1a7c7b8a3accedeb7a8d4dab4fdbed6cad2d5d2b5bdb4cbc6e5bed6a1a3bfc9c4dcd2d1d3d0c8cbbcd3c8ebc6e5bed6a1a3, 'Y', '2012-03-11 05:56:12'),
(1373, 33, 0xe68ab1e6ad89efbc8ce69caae689bee588b0e8aeafe681afe4bca0e98081e5afb9e8b1a1e38082e8afb7e7a1aee5ae9ae698afe4bca0e98081e7bb99e794a8e688b7e5b890e58fb7efbc8ce8808ce99d9ee794a8e688b7e5a793e5908de38082, 'Y', '2012-03-11 05:57:12'),
(51, 10, 0x262332333534353b262331393938313b262333363231353b262336353239323b262332363038303b262332373836313b262332313135323b262332303833373b262333333235383b262332343034393b262333303334303b262332333534353b262332333631363b262331323239303b, 'Y', '2002-11-21 08:38:04'),
(52, 10, 0x262332333534353b262331393938313b262333363231353b262336353239323b262332343734343b262333303334303b262332373537333b262332303330313b262331393938313b262332323331323b262332353335313b262332333435303b262333303334303b262333333533393b262332323236303b262331323239303b, 'Y', '2002-11-21 08:38:04'),
(54, 10, 0x262332333534353b262331393938313b262333363231353b262336353239323b262333363735353b262332303833373b262332333439343b262333303732313b262331393938313b262332373439313b262333303833303b262331323239303b, 'Y', '2002-11-21 08:38:04'),
(55, 10, 0x262332373537333b262332303330313b262333313836373b262332323431313b262333383735303b262332373836313b, 'Y', '2002-11-21 08:38:04'),
(56, 10, 0x262332333534353b262331393938313b262333363231353b262336353239323b262332373830393b262332363337373b262332303335313b262332393939323b262333353831333b262332393939323b262332353134333b262332313531373b262333303334303b262332363832373b262332353136333b262331323239303b, 'Y', '2002-11-21 08:38:04'),
(57, 10, 0x262332333534353b262331393938313b262333363231353b262336353239323b262332313032313b262332323938373b262332373537333b262332303330313b262332343531373b262333393033353b262332323331323b3330262333323432333b262332313034303b36262332373537333b262332303034333b262333383338383b262331323239303b, 'Y', '2002-11-21 08:38:04'),
(58, 10, 0x262332333534353b262331393938313b262333363231353b262336353239323b262332353936383b262332303534303b262332323439353b262332313438323b262333333032313b262333363735353b262332303833373b262332353936383b262332303534303b262331323239303b, 'Y', '2002-11-21 08:38:04'),
(59, 10, 0x262332353236353b262332373436353b262336353239323b262332313438323b262332363337373b262333323736333b262333353739333b262332303135343b262332313539323b262332313438373b262332303139373b262333363832373b262332303833373b262331323239303b, 'Y', '2002-11-21 08:38:04'),
(60, 10, 0x262332323931343b262332363532343b262332343734343b262332343839353b262332343834373b262332343131303b447261676f6e262333363832373b262333343839323b262333323736333b262333353739333b262336353239323b262333353833313b262332313034303b937472616e736c6174696f6e3f616d703b2333353737303b262332323336333b262332313435373b262333363134383b262331323239303b, 'Y', '2002-11-22 01:07:35'),
(61, 10, '', 'Y', '2002-11-21 08:38:04'),
(1393, 10, 0xbdf6b8c4b1e4b4cbe4afc0c0c6f7, 'Y', '2012-01-14 06:12:43'),
(1583, 10, 0xc8c3d7d3c6e5bed6, 'Y', '2012-01-10 19:30:09'),
(1890, 10, 0xc8c3d7d3, 'Y', '2012-01-10 19:30:09'),
(1497, 10, 0xd7cac1cf, 'Y', '2012-01-10 19:32:03'),
(1497, 33, 0xe8b584e69699, 'Y', '2012-01-10 19:32:43'),
(63, 10, 0x262332353236353b262332373436353b262336353239323b262332323331323b262332313532313b262332353936383b262332353435343b262332343231313b262332383135353b262332313135323b262332363033323b262333353739333b262332363130323b262332303938363b262333383136393b262331323239303b, 'Y', '2002-11-21 08:38:04'),
(484, 9, 0x4a616e, 'Y', '2003-01-04 00:23:07'),
(409, 10, 0xcbabc9abb6d4bed6, 'Y', '2007-05-29 13:11:09'),
(415, 10, 0xbed6cafd, 'Y', '2002-11-22 01:26:22'),
(416, 10, 0xd6dcc4a9, 'Y', '2007-05-30 12:31:19'),
(428, 10, 0xd6dcc4a9bcc6cab1, 'Y', '2002-11-21 09:39:55'),
(447, 10, 0xb2c2cfc8, 'Y', '2002-11-21 09:43:22'),
(519, 14, 0x4e6967697269206f6e20746170612076616c6974612c206b756d70692070656c61616a6973746120736161206d7573746174206b697665742e20546f696e656e2070656c61616a6973746120706f696d69692076616c697473656d616e7361206de4e472e46e2076616c6b6f69736961206b697669e4206b7465656e73e42e20546f696e656e2061736574746161206c617564616c6c6520796864656e20746169206b616b7369206d7573746161206b697665e4206a6120617276616120736974656e2c2076616c697473696b6f20746f696e656e2070656c61616a6120706172696c6c6973656e20766169207061726974746f6d616e206de4e472e46e2076616c6b6f69736961206b697669e42e204a6f7320617276617573206f6e206f696b65696e2c2061727661616a6120736161206d7573746174206b697665742c206d75757373612074617061756b73657373612068e46e2070656c61612076616c6b6f6973696c6c612e0d0a447261676f6e696c6c612070616c76656c696e20686f69746161206172766f6e6e616e2e2056616c6b6f69736574206b697665742073616176612070656c61616a6120736161206d79f67320362e35207069737465656e206b6f6d696e2e204e6967697269e4206b616e6e6174746161206be4797474e4e42c206a6f732070656c61616a6174206f7661742073616d616e7661687675697369612e, 'N', '2003-02-26 10:24:46'),
(478, 10, 0xb8fcb6e0d7cac1cfc7ebbfb4203c6120687265663d226661712e706870223eb3a3bcfbcecacce23c2f613ea3acc4fad2b2bfc9d2d4d4dac2dbccb3cce1b3f6d7d4bcbab5c4cecacce2a1a3, 'Y', '2007-10-01 09:15:58'),
(458, 10, 0xcce1d7d3, 'Y', '2002-11-22 00:39:09'),
(210, 10, 0xcbafc3df, 'Y', '2007-05-30 12:22:26'),
(163, 10, 0xc8c8d0c4c8cb, 'Y', '2007-05-30 14:11:50'),
(169, 10, 0xbcdcc9e8c4fad7d4bcbab5c420447261676f6e20b7fecef1c6f7, 'Y', '2007-05-30 14:11:50'),
(173, 10, 0xd4da736f75726365666f726765b5c4447261676f6ecfeec4bfcdf8d2b3, 'Y', '2002-11-22 00:49:46'),
(258, 10, 0xb4f3c1bfb9d8d3dacea7c6e5b5c4d0c5cfa2, 'Y', '2002-11-22 00:49:46'),
(260, 10, 0x7265632e67616d65732e676fd0c2cec5d7e9b3a3bcfbcce1ceca, 'Y', '2002-11-22 00:49:46'),
(266, 10, '', 'Y', '2012-07-15 07:07:26'),
(285, 10, 0xcea7c6e5bdfabcb6d5be, 'Y', '2003-04-02 11:37:56'),
(450, 10, 0x2573203120cad620257320b4ce, 'Y', '2007-04-19 13:19:27'),
(453, 10, 0x3ac3bfcad6d4f6bcd3cab1bce4, 'Y', '2007-05-30 12:08:05'),
(372, 10, 0xbacdc6e5, 'N', '2002-12-02 06:55:32'),
(443, 10, 0xb7d1d1a9cabdbcc6cab1, 'Y', '2007-06-06 20:07:33'),
(495, 9, 0x4d6172, 'Y', '2003-01-04 00:23:07'),
(496, 9, 0x4a756c, 'Y', '2003-01-04 00:23:07'),
(497, 9, 0x4e6f76, 'Y', '2003-01-04 00:23:07'),
(384, 10, 0xd4c4c0c0c2dbccb3, 'Y', '2007-05-30 14:11:50'),
(66, 10, 0xb6d4b2bbc6f0a3acb8c3d2b3bdf6b6d4b8bad4f0b9dcc0edb5c4d3c3bba7bfaab7c5a1a3, 'Y', '2002-11-22 01:07:35'),
(69, 10, 0xb1a7c7b8a3accedeb7a8d5d2b5bdb8c3b1cacae4c8eba1a3, 'Y', '2012-03-11 05:56:39'),
(75, 10, 0xb6d4b2bbc6f0a3accedeb7a8d5d2b5bdd6b8b6a8b5c4b1c8c8fca1a3, 'Y', '2002-11-22 01:07:35'),
(2993, 17, '', 'Y', '2013-08-21 00:38:21'),
(2995, 17, '', 'Y', '2013-08-21 00:38:21'),
(474, 10, 0xc4bfc7b0d7b4ccaccfc2b2bbcce1b9a9b8c3b9a6c4dca3acbbf2d5dfcedeb7a8cab9d3c3b8c3b9a6c4dca1a3, 'Y', '2002-11-22 01:07:35'),
(475, 10, 0xccf9c4bfb2bbbacfc0eda3acc7ebd1a1d4f1cacab5b1b5c4cafdd6b5a1a3, 'Y', '2002-11-22 01:07:35'),
(476, 10, 0xd7c5d7d3cab1b7a2c9fab4edcef3a1a3d6d8cad4cda8b3a3c4dcb9bbbde2bef6cecacce2a3acb7f1d4f2c7ebc1aacfb5d6a7b3d6c8cbd4b1a1a3, 'Y', '2002-11-22 01:07:35'),
(477, 10, 0xc8c3d7d3cafdd6b5b4edcef3, 'Y', '2002-11-22 01:07:35'),
(402, 10, 0xbbeed4beb3ccb6c8, 'Y', '2007-05-30 12:22:26'),
(256, 10, 0xd2bbb0e3d7cac1cf, 'Y', '2007-05-30 14:11:50'),
(257, 10, '', 'Y', '2012-07-15 07:07:26'),
(272, 10, 0xcdc6bcf6a3a1, 'Y', '2003-01-03 11:44:32'),
(406, 10, 0xb4abcdb3c8c3d7d3, 'Y', '2007-05-29 13:11:09'),
(407, 10, 0xcacab5b1c8c3d7d3, 'Y', '2007-04-19 13:32:11'),
(419, 10, 0xcfde202573, 'Y', '2007-05-30 12:31:19'),
(432, 10, 0xb4abcdb3c8c3d7d3a3a8c8f4c8c3d7d3ccf9b0ebc4bfa3a9, 'Y', '2007-06-07 10:39:47'),
(433, 10, 0xcacab5b1c8c3d7d3a3a8cfb5cdb3b5f7d5fbccf9c4bfa3a9, 'Y', '2007-06-07 10:39:47'),
(452, 10, 0x257320cfc220257320cad6, 'Y', '2007-04-19 13:19:27'),
(309, 10, 0xbeedb1ea, 'Y', '2007-05-30 11:38:03'),
(271, 10, '', 'Y', '2012-07-15 07:07:26'),
(494, 9, 0x496e666f726d61e7e36f20736f627265202573, 'Y', '2003-05-24 03:15:38'),
(498, 7, 0x4f64, 'Y', '2003-01-10 12:15:50'),
(1055, 10, 0xc4bfc7b0b6d4bed65253532046656564, 'Y', '2007-04-19 13:19:27'),
(95, 10, 0xb4cbd2b3bda8d3da, 'Y', '2007-05-30 11:38:03'),
(676, 10, 0xb2bbc4dca1a3, 'N', '2007-05-30 11:27:37'),
(494, 11, 0x4765627275696b657273696e666f2076616e202573, 'Y', '2016-07-29 15:13:14'),
(484, 7, 0x4c6564656e, 'Y', '2016-07-21 20:47:05'),
(485, 7, 0xda6e6f72, 'Y', '2003-01-06 20:14:10'),
(486, 7, 0x447562656e, 'Y', '2016-07-21 20:47:45'),
(487, 7, 0x4b76ec74656e, 'Y', '2016-07-21 20:47:45'),
(488, 7, 0xc8657276656e, 'Y', '2016-07-21 20:47:45'),
(489, 7, 0x537270656e, 'Y', '2016-07-21 20:47:45'),
(490, 7, 0x5ae1f8ed, 'Y', '2003-01-06 20:14:10'),
(491, 7, 0xd8ed6a656e, 'Y', '2016-07-21 20:47:45'),
(492, 7, 0x50726f732e, 'Y', '2016-07-21 20:48:30'),
(4675, 7, 0x556c6fbe697420726f7a6573746176656eed, 'Y', '2016-07-20 18:39:56'),
(495, 7, 0x42f8657a2e, 'Y', '2016-07-21 20:48:30'),
(496, 7, 0xc86572762e, 'Y', '2016-07-21 20:48:30'),
(497, 7, 0x4c697374702e, 'Y', '2016-07-21 21:24:13'),
(494, 7, 0x496e666f726d616365206f2075be69766174656c69202573, 'Y', '2003-01-06 20:14:10'),
(256, 7, 0x4f6265636ee920696e666f726d616365, 'Y', '2003-01-06 20:14:10'),
(273, 7, 0x5072617669646c61, 'Y', '2003-01-06 20:14:10'),
(92, 4, '', 'Y', '2012-07-29 12:52:42'),
(389, 4, 0x4e657565204e6163687269636874656e, 'Y', '2003-01-07 11:47:46'),
(242, 4, 0x4c6567656e2053696520646f63682065696e2042656e75747a65726b6f6e746f20616e20756e6420737069656c656e2065696e2070616172205061727469656e2e, 'Y', '2012-04-19 08:55:19'),
(238, 4, 0x566f6e206465722042656f6261636874756e67736c6973746520656e746665726e656e, 'Y', '2007-12-06 10:50:09'),
(239, 4, 0x4465722042656f6261636874756e67736c697374652068696e7a7566fc67656e, 'Y', '2007-12-06 10:50:09'),
(342, 4, 0x537069656c7374e4726b656e677261706820766f6e, 'Y', '2007-12-07 15:41:45'),
(343, 4, 0x4573206578697374696572656e206c6569646572207a752077656e69676520626577657274657465205061727469656e2c20756d2065696e656e204772617068656e207a75207a656963686e656e, 'Y', '2003-01-07 11:56:51'),
(348, 4, 0x4265656e64657465205061727469656e, 'Y', '2003-01-07 11:56:51'),
(349, 4, 0x4c617566656e6465205061727469656e, 'Y', '2003-01-07 11:56:51'),
(421, 4, '', 'Y', '2012-07-29 12:52:42'),
(422, 4, '', 'Y', '2012-07-29 12:52:42'),
(426, 4, 0x537069656c6572, 'Y', '2003-01-07 11:56:51'),
(427, 4, 0x416e7a61686c20646572205061727469656e, 'Y', '2003-01-07 11:56:51'),
(484, 4, '', 'Y', '2012-07-29 12:52:42'),
(485, 4, '', 'Y', '2012-07-29 12:52:42'),
(486, 4, '', 'Y', '2012-07-29 12:52:42'),
(487, 4, 0x4d6169, 'Y', '2003-01-07 11:56:51'),
(488, 4, '', 'Y', '2012-07-29 12:52:42'),
(489, 4, '', 'Y', '2012-07-29 12:52:42'),
(490, 4, '', 'Y', '2012-07-29 12:52:42'),
(491, 4, 0x4f6b74, 'Y', '2003-01-07 11:56:51'),
(492, 4, 0x44657a, 'Y', '2003-01-07 11:56:51'),
(4674, 7, 0x506f7a6ee16d6b79206b20726f7a6573746176656eed, 'Y', '2016-07-20 18:39:56'),
(495, 4, 0x4de472, 'Y', '2003-01-07 11:56:51'),
(496, 4, '', 'Y', '2012-07-29 12:52:42'),
(497, 4, '', 'Y', '2012-07-29 12:52:42'),
(180, 4, 0x496e7465726e65742d5365697465, 'Y', '2008-03-23 03:03:30'),
(184, 4, 0x486f62627973, 'Y', '2007-12-07 15:38:00'),
(198, 4, '', 'Y', '2012-07-29 12:52:42'),
(207, 4, 0x42726f777365722d45696e7374656c6c756e67656e2076657277656e64656e, 'Y', '2007-12-06 13:47:11'),
(3342, 17, '', 'Y', '2013-08-21 00:43:28'),
(473, 4, 0x4e69656465726ce46e6469736368, 'Y', '2003-01-07 11:59:21'),
(494, 4, 0x42656e75747a6572696e666f726d6174696f6e656e20766f6e202573, 'Y', '2003-01-07 11:59:21'),
(165, 4, '', 'Y', '2012-07-29 12:52:42'),
(259, 4, '', 'Y', '2012-07-29 12:52:42'),
(265, 4, '', 'Y', '2012-07-29 12:52:42'),
(271, 4, '', 'Y', '2012-07-29 12:52:42'),
(285, 4, '', 'Y', '2012-07-29 12:52:42'),
(122, 4, 0x416e74776f7274, 'Y', '2003-01-07 12:08:12'),
(127, 4, 0x4265617262656974656e, 'Y', '2012-09-01 21:20:33'),
(128, 4, 0x4e616368206f62656e, 'Y', '2003-01-07 12:08:12'),
(129, 4, 0x4e61636820756e74656e, 'Y', '2003-01-07 12:08:12'),
(135, 4, 0xdc6265727365747a6572, 'Y', '2003-01-07 12:08:12'),
(33, 4, 0x4461732050617373776f727420656e7468e46c7420756e7a756ce47373696765205a65696368656e2e204e757220646965205a65696368656e20612d7a2c20412d5a2c20302d3920736f776965202d5f2b2e2c3a3b3f21252a2073696e64207a756ce4737369672e, 'Y', '2007-12-06 12:14:05'),
(43, 4, 0x4469657365204e61636872696368742073636865696e742065696e6520416e74776f7274206175662065696e65204e6163687269636874207a75207365696e2c2064696520676172206e696368742065786973746965722e, 'Y', '2003-01-07 12:14:00'),
(49, 4, 0x536965206bf66e6e656e206e757220656967656e65205061727469656e206cf6736368656e2e, 'Y', '2003-01-07 12:14:00'),
(60, 4, 0x46616c6c7320736965206265692064657220dc6265727365747a756e672064657320447261676f6e20476f205365727665722068656c66656e20776f6c6c656e2c206d656c64656e20736965207369636820626974746520696d205472616e736c6174696f6e2d466f72756d2e, 'Y', '2003-01-07 12:14:00'),
(69, 4, 0x4469657365722045696e74726167206b6f6e6e7465206e6963687420676566756e64656e2077657264656e2e, 'Y', '2003-01-07 12:14:00'),
(498, 3, 0x46726f6d, 'Y', '2003-01-10 01:15:34'),
(499, 3, 0x546f, 'Y', '2003-01-10 01:15:34'),
(498, 9, 0x4465, 'Y', '2003-01-10 01:59:17'),
(499, 9, 0x4174e9, 'Y', '2003-05-24 03:10:21'),
(499, 7, 0x446f, 'Y', '2003-01-10 12:15:50'),
(498, 4, 0x566f6e, 'Y', '2003-01-10 15:33:00'),
(499, 4, 0x426973, 'Y', '2003-01-10 15:33:00'),
(484, 5, 0x4a616e2e, 'Y', '2003-01-20 13:40:51'),
(485, 5, 0x46e9762e, 'Y', '2003-01-20 13:40:51'),
(486, 5, 0x4176722e, 'Y', '2003-01-20 13:40:51'),
(487, 5, 0x4d6169, 'Y', '2003-01-20 13:40:51'),
(488, 5, 0x4a75696e, 'Y', '2003-01-20 13:40:51'),
(489, 5, 0x416ffb74, 'Y', '2003-01-21 03:17:43'),
(490, 5, 0x5365702e, 'Y', '2003-01-20 13:40:51'),
(491, 5, 0x4f63742e, 'Y', '2003-01-20 13:40:51'),
(492, 5, 0x44e9632e, 'Y', '2003-01-20 13:40:51'),
(495, 5, 0x4d617273, 'Y', '2003-01-21 03:17:43'),
(496, 5, 0x4a75696c2e, 'Y', '2003-01-20 13:40:51'),
(497, 5, 0x4e6f762e, 'Y', '2003-01-20 13:40:51'),
(498, 5, 0x4465, 'Y', '2003-01-21 03:19:15'),
(499, 5, 0xc0, 'Y', '2003-01-21 03:45:51'),
(494, 5, 0x496e666f73206465206c277574696c69736174657572202573, 'Y', '2003-08-20 02:29:00'),
(571, 25, 0x44652063652065737465206c696d69746174c483206d6f64616c69746174656120646520666f6c6f736972652061207a696c656c6f7220646520766163616ec5a3c4833f, 'Y', '2004-12-20 15:51:56'),
(293, 5, 0x506f7572206c6573207072657373e973266e6273703b2e2e2e, 'Y', '2003-01-29 01:47:52'),
(295, 5, 0x506f7572206c6573206173706972616e747320ab266e6273703b4a65266e6273703b73616973266e6273703b746f7574266e6273703bbb2e, 'Y', '2003-01-29 01:47:52'),
(484, 10, 0x31d4c2, 'Y', '2003-01-22 01:06:33'),
(485, 10, 0x32d4c2, 'Y', '2003-01-22 01:06:33'),
(486, 10, 0x34d4c2, 'Y', '2003-01-22 01:06:33'),
(487, 10, 0x35d4c2, 'Y', '2003-01-22 01:06:33'),
(488, 10, 0x36d4c2, 'Y', '2003-01-22 01:06:33'),
(489, 10, 0x38d4c2, 'Y', '2003-01-22 01:06:33'),
(490, 10, 0x39d4c2, 'Y', '2003-01-22 01:06:33'),
(491, 10, 0x3130d4c2, 'Y', '2003-01-22 01:06:33'),
(492, 10, 0x3132d4c2, 'Y', '2003-01-22 01:06:33'),
(4673, 7, 0x5665f8656a6ee920726f7a6573746176656eed, 'Y', '2016-07-20 18:39:56'),
(495, 10, 0x33d4c2, 'Y', '2003-01-22 01:06:33'),
(496, 10, 0x37d4c2, 'Y', '2003-01-22 01:06:33'),
(497, 10, 0x3131d4c2, 'Y', '2003-01-22 01:06:33'),
(498, 10, 0xd7d4, 'Y', '2007-05-30 12:31:19'),
(499, 10, 0xd6c1, 'Y', '2007-05-30 12:31:19'),
(484, 2, 0x4a616e, 'Y', '2003-01-23 22:57:58'),
(485, 2, 0x466562, 'Y', '2003-01-23 22:57:58'),
(486, 2, 0x417072, 'Y', '2003-01-23 22:57:58'),
(487, 2, 0x4d6169, 'Y', '2003-01-23 22:57:58'),
(488, 2, 0x4a756e, 'Y', '2003-01-23 22:57:58'),
(489, 2, 0x417567, 'Y', '2003-01-23 22:57:58'),
(490, 2, 0x536570, 'Y', '2003-01-23 22:57:58'),
(491, 2, 0x4f6b74, 'Y', '2003-01-23 22:57:58'),
(492, 2, 0x446573, 'Y', '2003-01-23 22:57:58'),
(4672, 7, 0x4a6de96e6f20726f7a6573746176656eed, 'Y', '2016-07-20 18:39:56'),
(495, 2, 0x4d6172, 'Y', '2003-01-23 22:57:58'),
(496, 2, 0x4a756c, 'Y', '2003-01-23 22:57:58'),
(497, 2, 0x4e6f76, 'Y', '2003-01-23 22:57:58'),
(498, 2, 0x467261, 'Y', '2003-01-23 22:57:58'),
(499, 2, 0x54696c, 'Y', '2003-01-23 22:57:58'),
(494, 2, 0x4272756b6572696e666f20666f72202573, 'Y', '2003-01-23 22:59:54'),
(502, 5, 0x476f202d204c657869717565, 'Y', '2003-03-06 02:16:19'),
(484, 6, 0x456e65, 'Y', '2003-01-30 01:09:37'),
(485, 6, '', 'Y', '2007-11-03 16:08:38'),
(486, 6, 0x416272, 'Y', '2003-01-30 01:09:37'),
(487, 6, '', 'Y', '2007-11-03 16:08:38'),
(488, 6, '', 'Y', '2007-11-03 16:08:38'),
(489, 6, 0x41676f, 'Y', '2003-01-30 01:09:37'),
(490, 6, 0x536574, 'Y', '2003-01-30 01:09:37'),
(491, 6, '', 'Y', '2007-11-03 16:08:38'),
(492, 6, 0x446963, 'Y', '2003-01-30 01:09:37'),
(4671, 7, 0x494420726f7a6573746176656eed, 'Y', '2016-07-20 18:39:56'),
(495, 6, '', 'Y', '2007-11-03 16:08:38'),
(496, 6, '', 'Y', '2007-11-03 16:08:38'),
(497, 6, '', 'Y', '2007-11-03 16:08:38'),
(498, 6, 0x4465736465, 'Y', '2013-12-07 15:49:18'),
(499, 6, 0x4861737461, 'Y', '2013-12-07 15:49:50'),
(494, 6, 0x496e666f206465207573756172696f2070617261202573, 'Y', '2003-01-30 01:09:37'),
(500, 5, 0x46696e6e6f6973, 'Y', '2003-02-10 13:27:06'),
(80, 14, 0x4b69726a617574756e65656e6120736973e4e46e206e696d656c6ce4, 'Y', '2003-02-10 16:36:28'),
(81, 14, 0x456920736973e4e46e6b69726a617574756d69737461, 'Y', '2003-02-10 16:36:28'),
(82, 14, 0x54696c616e6e65, 'Y', '2003-02-10 16:36:28'),
(83, 14, 0x4f646f74757368756f6e65, 'Y', '2003-02-10 16:36:28'),
(84, 14, 0x4be4797474e46ae4746965646f74, 'Y', '2003-02-10 16:36:28'),
(85, 14, 0x56696573746974, 'Y', '2003-02-10 16:36:28'),
(86, 14, 0x4ce4686574e420766965737469, 'Y', '2003-02-10 16:36:28'),
(87, 14, 0x4b75747375, 'Y', '2003-02-10 16:36:28'),
(88, 14, 0x4be4797474e46ae474, 'Y', '2003-02-10 16:36:28'),
(89, 14, 0x50656c6974, 'Y', '2003-02-10 16:36:28'),
(90, 14, 0x4be4e46e6ee4, 'Y', '2003-02-10 16:36:28'),
(91, 14, 0x466f6f72756d6974, 'Y', '2003-02-10 16:36:28'),
(92, 14, 0x557365696e206b797379747974206b7973796d796b736574, 'Y', '2003-02-10 16:36:28'),
(93, 14, 0x5369767573746f6b6172747461, 'Y', '2003-02-10 16:36:28'),
(94, 14, 0x4f686a656574, 'Y', '2003-02-10 16:36:28'),
(95, 14, 0x53697675206c756f7475, 'Y', '2003-02-10 16:36:28'),
(96, 14, 0x50e4e46be4797474e46ae4, 'Y', '2003-02-10 16:36:28'),
(97, 14, 0x4b69726a6175647520756c6f73, 'Y', '2003-02-10 16:36:28'),
(98, 14, 0x70e46976e4, 'Y', '2003-02-10 16:36:28'),
(99, 14, 0x70e46976e4e4, 'Y', '2003-02-10 16:36:28'),
(100, 14, 0x6a61, 'Y', '2003-02-10 16:36:28'),
(101, 14, 0x74756e7469, 'Y', '2003-02-10 16:36:28'),
(102, 14, 0x74756e746961, 'Y', '2003-02-10 16:36:28'),
(103, 14, 0x696c6d616e2062796f796f6d6961, 'Y', '2003-02-10 16:36:28'),
(104, 14, 0x257320796c696de4e472e4697374e42073696972746f61206b6f6864656e, 'Y', '2003-02-10 16:36:28'),
(106, 14, 0x6a6170616e696c61696e656e2062796f796f6d69, 'Y', '2003-02-10 16:36:28'),
(107, 14, 0x6b697665e4, 'Y', '2003-02-10 16:36:28'),
(108, 14, 0x6b616e6164616c61696e656e2062796f796f6d69, 'Y', '2003-02-10 16:36:28'),
(132, 14, '', 'Y', '2006-11-14 11:49:44'),
(134, 14, 0x4e696d69, 'Y', '2003-02-10 16:36:28'),
(201, 14, 0x4be4797474e46ae474756e6e7573, 'Y', '2003-02-10 16:36:28'),
(204, 14, 0x546965746f61206c756f6b6974756b7365737461, 'Y', '2003-02-10 17:45:44'),
(205, 14, 0x4c756f6b69747573, 'Y', '2003-02-10 17:45:44'),
(309, 14, 0x4c69707574, 'Y', '2003-02-10 16:36:28'),
(310, 14, 0x4b656e656c74e4, 'Y', '2003-02-10 16:36:28'),
(311, 14, 0x41696865, 'Y', '2003-02-10 16:36:28'),
(312, 14, 0x50766d, 'Y', '2003-02-10 16:36:28'),
(314, 14, 0x55757369, 'Y', '2003-02-10 16:36:28'),
(316, 14, 0x5661737461757321, 'Y', '2003-02-10 16:36:28'),
(352, 14, '', 'Y', '2006-11-14 11:49:44'),
(359, 14, 0x56617374757374616a61, 'Y', '2003-02-10 16:36:28'),
(360, 14, 0x56e47269, 'Y', '2003-02-10 16:36:28'),
(361, 14, 0x4b6f6b6f, 'Y', '2003-02-10 16:36:28'),
(362, 14, 0x5461736f69747573, 'Y', '2003-02-10 16:36:28'),
(363, 14, '', 'Y', '2006-11-14 11:49:44'),
(364, 14, 0x53696972746f6a61, 'Y', '2003-02-10 16:36:28'),
(368, 14, 0x5669696d656973696e2073696972746f, 'N', '2003-02-10 16:36:28'),
(374, 14, 0x4ee47974e4206d656e65696c6ce4e46e206f6c657661742070656c6974, 'Y', '2003-02-10 16:36:28'),
(375, 14, 0x4ee47974e4206c6f7070756e6565742070656c6974, 'Y', '2003-02-10 16:36:28'),
(388, 14, 0x41766f696e20757573696c6c652070656c65696c6c653f, 'Y', '2003-02-10 16:36:28'),
(389, 14, 0x55756465742076696573746974, 'Y', '2003-02-10 16:36:28'),
(390, 14, 0x53696e756e2076756f726f7369207369697274e4e42073657572616176697373612070656c65697373e43a, 'Y', '2003-02-10 16:36:28'),
(391, 14, 0x50656c656ae4206569206cf67974796e7974, 'Y', '2003-02-10 16:36:28'),
(460, 14, 0x73657572616176612073697675, 'Y', '2003-02-10 16:36:28'),
(461, 14, 0x6564656c6c696e656e2073697675, 'Y', '2003-02-10 16:36:28'),
(462, 14, 0x4c6973e4e420736172616b65, 'Y', '2003-02-10 16:36:28'),
(160, 14, 0x4a6f68646174757320447261676f6e2d70616c76656c696d656c6c65, 'Y', '2003-02-10 16:47:19'),
(191, 14, 0x56616876697374612073616c6173616e617369, 'Y', '2003-02-10 16:47:19'),
(202, 14, 0x4b6f6b6f206e696d69, 'Y', '2003-02-10 16:47:19'),
(223, 14, 0x556e6f686469746b6f2073616c6173616e6173693f, 'Y', '2003-02-10 16:47:19'),
(240, 14, 0x45747573697675, 'Y', '2003-02-10 16:47:19'),
(242, 14, 0x52656b6973746572f6696479207661706161737469206a6120616c6f6974612070656c61616d696e656e21, 'Y', '2003-02-10 16:47:19'),
(243, 14, 0x4b69726a6175647520736973e4e46e2c206b6969746f732e, 'Y', '2003-02-10 16:47:19'),
(244, 14, 0x566f6974206b6f6b65696c6c612070616c76656c75612074756e6e756b73696c6c612025732e, 'Y', '2003-02-10 16:47:19'),
(245, 14, 0x53616c6173616e61, 'Y', '2003-02-10 16:47:19'),
(246, 14, 0x4b69726a6175647520736973e4e46e, 'Y', '2003-02-10 16:47:19'),
(247, 14, 0x52656b6973746572f66920757573692074756e6e7573, 'Y', '2003-02-10 16:47:19'),
(248, 14, 0x4a6f6864616e746f, 'Y', '2003-02-10 16:47:19'),
(252, 14, 0x5669656ce4206b657272616e20746572766574756c6f612c20746f69766f7474617661737469207669696864797421, 'Y', '2003-02-10 16:47:19'),
(344, 14, 0x52656b6973746572f6696479, 'Y', '2003-02-10 16:47:19'),
(345, 14, 0x416e6e6120746965746f6a61, 'Y', '2003-02-10 16:47:19'),
(478, 14, 0x4c6973e4746965746f6a61206cf67964e474203c6120687265663d226661712e706870223e757365696e206b7973797474796a656e206b7973796d797374656e20666f6f72756d696c74613c2f613e2c206a6f73736120766f6974206d79f673206573697474e4e42069747365206b7973796d796b7369e42e, 'Y', '2003-02-10 16:47:19'),
(109, 14, 0x50656c69206c6973e474747921, 'Y', '2003-02-10 16:59:07'),
(225, 14, 0x4c756f7675747573, 'Y', '2003-02-10 16:59:07'),
(226, 14, 0x5061737361616d696e656e, 'Y', '2003-02-10 16:59:07'),
(227, 14, 0x50656c696e20706f697374616d696e656e, 'Y', '2003-02-10 16:59:07'),
(229, 14, 0x54756c6f73, 'Y', '2003-02-10 16:59:07'),
(230, 14, 0x50656c69, 'Y', '2003-02-10 16:59:07'),
(231, 14, 0x50617373617573, 'Y', '2003-02-10 16:59:07'),
(232, 14, 0x506f697374612070656c69, 'Y', '2003-02-10 16:59:07'),
(233, 14, 0x56616c6d6973, 'Y', '2003-02-10 16:59:07'),
(234, 14, 0x4a61746b612070656c61616d69737461, 'Y', '2003-02-10 16:59:07'),
(235, 14, 0x4c756f76757461, 'Y', '2003-02-10 16:59:07'),
(236, 14, 0x486165207367662d746965646f73746f, 'Y', '2003-02-10 16:59:07'),
(237, 14, 0x48797070e4e4207365757261617661616e2070656c69696e, 'Y', '2003-02-10 16:59:07'),
(238, 14, 0x506f69737461207461726b6b61696c74617669656e206c697374616c7461, 'Y', '2003-02-10 16:59:07'),
(239, 14, 0x4c6973e4e4207461726b6b61696c74617669656e206c697374616c6c65, 'Y', '2003-02-10 16:59:07'),
(253, 14, 0x50656c6920706f6973746574747521, 'Y', '2003-02-10 16:59:07'),
(254, 14, 0x4c6969747969742070656c69696e21, 'Y', '2003-02-10 16:59:07'),
(308, 14, 0x4b656e656c6c65, 'Y', '2003-02-10 16:59:07'),
(324, 14, 0x566173746161, 'Y', '2003-02-10 16:59:07'),
(325, 14, 0x566965737469, 'Y', '2003-02-10 16:59:07'),
(330, 14, 0x56616c6b6f696e656e, 'Y', '2003-02-10 16:59:07'),
(331, 14, 0x4d75737461, 'Y', '2003-02-10 16:59:07'),
(342, 14, 0x4c756f6b697475736b757661616a612070656c61616a616c6c65, 'Y', '2003-02-10 17:48:18'),
(343, 14, 0x56616c69746574746176617374692070656c61616a616c6c61206569206f6c65207461727065656b73692070656c656ae4206b757661616a616e207069697274e46d697374e42076617274656e, 'Y', '2003-02-10 17:48:18'),
(348, 14, 0x4c6f7070756e6565742070656c6974, 'Y', '2003-02-10 16:59:07'),
(349, 14, 0x4d656e65696c6ce4e46e206f6c657661742070656c6974, 'Y', '2003-02-10 16:59:07'),
(350, 14, 0x50656c61616a616e202573206c6f7070756e6565742070656c6974, 'Y', '2003-02-10 16:59:07'),
(351, 14, 0x50656c61616a616e202573206d656e65696c6ce4e46e206f6c657661742070656c6974, 'Y', '2003-02-10 16:59:07'),
(366, 14, 0x4f6e6b6f206c756f6b6974657474753f, 'Y', '2003-02-11 07:57:17'),
(370, 14, 0x4b796c6ce4, 'Y', '2003-02-10 16:59:07'),
(371, 14, 0x4569, 'Y', '2003-02-10 16:59:07'),
(372, 14, '', 'N', '2006-11-14 11:49:44'),
(373, 14, 0x4b757473752074e46de4206be4797474e46ae4, 'Y', '2003-02-10 16:59:07'),
(406, 14, 0x4be47974e46e6ef66c6c696e656e, 'Y', '2003-02-12 11:33:20'),
(407, 14, 0x4b756e6e6f6c6c696e656e, 'Y', '2003-02-10 16:59:07'),
(408, 14, 0x54617361696e656e2070656c69206e69676972696c6ce4, 'Y', '2003-02-10 16:59:07'),
(409, 14, 0x5475706c6170656c69, 'Y', '2003-02-10 16:59:07'),
(411, 14, 0x4c6973e4746965746f6a61, 'Y', '2003-02-10 16:59:07'),
(412, 14, 0x4b6f6d6d656e747469, 'Y', '2003-02-10 16:59:07'),
(414, 14, 0x41696b6172616a6f69747573, 'Y', '2003-02-10 16:59:07'),
(415, 14, 0x50656c656ae4, 'Y', '2003-02-10 16:59:07'),
(416, 14, 0x5669696b6f6e6c6f7070756b656c6c6f, 'Y', '2003-02-10 16:59:07'),
(417, 14, 0x4ee4797474e4e4207479686ae46c74e42074e46c6ce4206865746b656c6ce42e, 'Y', '2003-02-10 16:59:07'),
(419, 14, 0x7661696e202573, 'Y', '2003-02-10 16:59:07'),
(420, 14, 0x4c6973e47474e47669656e2070656c69656e206de4e472e4, 'Y', '2003-02-10 16:59:07'),
(421, 14, '', 'Y', '2006-11-14 11:49:44'),
(422, 14, '', 'Y', '2006-11-14 11:49:44'),
(423, 14, 0x5661616469206c756f6b6974657474752076617374757374616a61, 'Y', '2003-02-10 17:48:18'),
(424, 14, 0x4a6f73206b796c6ce42c206e69696e206c756f6b697475732076e46c696c74e4, 'Y', '2003-02-10 17:48:18'),
(425, 14, 0x4c6973e4e42070656c69, 'Y', '2003-02-10 16:59:07'),
(426, 14, 0x50656c61616a61, 'Y', '2003-02-10 16:59:07'),
(427, 14, 0x50656c69656e206de4e472e4, 'Y', '2003-02-10 16:59:07'),
(428, 14, 0x4b656c6c6f206be479207669696b6f6e6c6f7070756973696e, 'Y', '2003-02-10 16:59:07'),
(429, 14, 0x506f69737461, 'Y', '2003-02-10 16:59:07'),
(430, 14, 0x4c69697479, 'Y', '2003-02-10 16:59:07'),
(437, 14, 0x50e4e461696b61, 'Y', '2003-02-10 16:59:07'),
(454, 14, 0x4173657461207461736f697475736b69766573692c206f6c6520687976e421, 'Y', '2003-02-10 16:59:07'),
(455, 14, 0x487976e46b7379206a6120736969727279207365757261617661616e2070656c69696e, 'Y', '2003-02-10 16:59:07'),
(456, 14, 0x487976e46b7379206a61207369697272792074696c616e6e656ee4797474f6f66e, 'Y', '2003-02-10 16:59:07'),
(457, 14, 0x50616c61612074616b616973696e, 'Y', '2003-02-10 16:59:07'),
(458, 14, 0x56616e6b656a61, 'Y', '2003-02-10 16:59:07'),
(484, 14, 0x74616d6d696b7575, 'Y', '2003-02-10 16:59:07'),
(485, 14, 0x68656c6d696b7575, 'Y', '2003-02-10 16:59:07'),
(486, 14, 0x68756874696b7575, 'Y', '2003-02-10 16:59:07'),
(487, 14, 0x746f756b6f6b7575, 'Y', '2003-02-10 16:59:07'),
(488, 14, 0x6b6573e46b7575, 'Y', '2003-02-10 16:59:07'),
(489, 14, 0x656c6f6b7575, 'Y', '2003-02-10 16:59:07'),
(490, 14, 0x737979736b7575, 'Y', '2003-02-10 16:59:07'),
(491, 14, 0x6c6f6b616b7575, 'Y', '2003-02-10 16:59:07'),
(492, 14, 0x6a6f756c756b7575, 'Y', '2003-02-10 16:59:07'),
(4670, 7, 0x526f7a6573746176656eed20756c6fbe656e6f21, 'Y', '2016-07-20 18:39:56'),
(495, 14, 0x6d61616c69736b7575, 'Y', '2003-02-10 16:59:07'),
(496, 14, 0x6865696ee46b7575, 'Y', '2003-02-10 16:59:07'),
(497, 14, 0x6d61727261736b7575, 'Y', '2003-02-10 16:59:07'),
(498, 14, 0x616c6b61656e, 'Y', '2003-02-10 16:59:07'),
(499, 14, 0x70e4e4747479656e, 'Y', '2003-02-10 16:59:07'),
(307, 14, 0x5669657374696c69737461, 'Y', '2003-02-10 18:14:29'),
(315, 14, 0x5661737461747475, 'Y', '2003-02-10 18:14:29'),
(322, 14, 0x54e46de4206b75747375206f6e206a6f20687976e46b73797474792e, 'Y', '2003-02-10 18:14:29'),
(323, 14, 0x4b75747375737461206f6e206a6f206b69656c74e4796479747479207461692070656c69206f6e206a6f20706f697374657474752e, 'Y', '2003-02-10 18:14:29'),
(326, 14, 0x4ce4686574e42076617374617573, 'Y', '2003-02-10 18:14:29'),
(327, 14, 0x5575736920766965737469, 'Y', '2003-02-10 18:14:29'),
(328, 14, 0x4b656e656c6c65202874756e6e757329, 'Y', '2003-02-10 18:14:29'),
(329, 14, 0x4ce4686574e420766965737469, 'Y', '2003-02-10 18:14:29'),
(332, 14, 0x4d757574612061736574756b736961, 'Y', '2003-02-10 18:14:29'),
(333, 14, 0x487976e46b7379, 'Y', '2003-02-10 18:14:29'),
(334, 14, 0x48796c6be4e4, 'Y', '2003-02-10 18:14:29'),
(335, 14, 0x4b75747375766965737469, 'Y', '2003-02-10 18:14:29'),
(336, 14, 0x4ce4686574e4206b75747375, 'Y', '2003-02-10 18:14:29'),
(346, 14, 0x566965737469206ce46865746574747921, 'Y', '2003-02-10 18:14:29'),
(431, 14, 0x4c617564616e206b6f6b6f, 'N', '2003-02-10 18:14:29'),
(432, 14, 0x4be47974e46e6ef66c6c696e656e207461736f6974757320286b6f6d6920302c35206a6f732065692074617361696e656e29, 'Y', '2003-02-12 11:33:43'),
(433, 14, 0x4b756e6e6f6c6c696e656e207461736f69747573, 'Y', '2003-02-10 18:14:29'),
(436, 14, 0x6b75756b6175747461, 'Y', '2003-02-10 18:14:29'),
(439, 14, 0x6a6f737361, 'Y', '2003-02-10 18:14:29'),
(442, 14, 0x6a61, 'Y', '2003-02-10 18:14:29'),
(443, 14, 0x466973636865722d61696b61, 'Y', '2003-02-10 18:14:29'),
(445, 14, 0x50656c696e206e756d65726f, 'Y', '2003-02-10 18:14:29'),
(446, 14, 0x56e4726974, 'Y', '2003-02-10 18:14:29'),
(447, 14, '', 'Y', '2006-11-14 11:49:44'),
(449, 14, 0x6a6170616e696c61696e656e, 'Y', '2003-02-10 18:14:29'),
(450, 14, 0x25732073696972746f61206b6f6864656e206a6120257320796c696de4e472e4697374e4206a616b736f61, 'Y', '2003-02-10 18:14:29'),
(451, 14, 0x6b616e6164616c61696e656e, 'Y', '2003-02-10 18:14:29'),
(452, 14, 0x2573202573206b697665e4206b6f687469, 'Y', '2003-02-10 18:14:29'),
(453, 14, 0x6c6973e461696b61612074656864797374e42073696972726f737461, 'Y', '2003-02-11 08:31:14'),
(156, 14, 0x48656e6b696cf6746965646f742070e4697669746574747921, 'Y', '2003-09-10 16:46:28'),
(157, 14, 0x53616c6173616e612076616968646574747521, 'Y', '2003-02-11 08:08:26'),
(158, 14, 0x50726f6669696c692070e4697669746574747921, 'Y', '2003-02-11 08:08:26'),
(175, 14, 0x4d757574613a, 'Y', '2003-02-11 08:08:26'),
(176, 14, 0x4d6161, 'Y', '2003-02-11 08:08:26'),
(177, 14, 0x4b617570756e6b69, 'Y', '2003-02-11 08:08:26'),
(178, 14, 0x4f736176616c74696f, 'Y', '2003-02-11 08:08:26'),
(179, 14, 0x4b6572686f, 'Y', '2003-02-11 08:08:26'),
(180, 14, 0x4b6f746973697675, 'Y', '2003-02-11 08:08:26'),
(181, 14, 0x452d6d61696c, 'Y', '2003-02-11 08:08:26'),
(182, 14, 0x4943512d6e756d65726f, 'Y', '2003-02-11 08:08:26'),
(183, 14, 0x50656c696d69656c74796d796b736574, 'Y', '2003-02-11 08:08:26'),
(184, 14, 0x48617272617374756b736574, 'Y', '2003-02-11 08:08:26'),
(185, 14, 0x5479f6, 'Y', '2003-02-11 08:08:26'),
(187, 14, 0x54616c6c656e6e61, 'Y', '2003-02-11 08:08:26'),
(188, 14, 0x4d756f6b6b61612073616c6173616e6161, 'Y', '2003-02-11 08:08:26'),
(189, 14, 0x56616e68612073616c6173616e61, 'Y', '2003-02-11 08:08:26'),
(190, 14, 0x557573692073616c6173616e61, 'Y', '2003-02-11 08:08:26'),
(192, 14, 0x5661696864612073616c6173616e6161, 'Y', '2003-02-11 08:08:26'),
(193, 14, 0x506f69732070e4e46c74e4, 'Y', '2003-02-11 08:08:26'),
(194, 14, 0x5661696e206d756973747574756b736574, 'Y', '2003-02-11 08:08:26'),
(195, 14, 0x53696972726f74206a612076696573746974, 'Y', '2003-02-11 08:08:26'),
(196, 14, 0x4b6f6b6f206c6175646174206a612076696573746974, 'Y', '2003-02-11 08:08:26'),
(197, 14, 0x507973747973756f7261616e, 'Y', '2003-02-11 08:08:26'),
(198, 14, 0x5661616b6173756f7261616e, 'Y', '2003-02-11 08:08:26'),
(199, 14, 0x4d756f6b6b61612070726f6669696c69617369, 'Y', '2003-02-11 08:08:26'),
(200, 14, 0x48656e6b696cf66b6f687461697365742061736574756b736574, 'Y', '2003-02-11 08:08:26'),
(206, 14, 0x53e4686bf6706f7374696d756973747574756b736574, 'Y', '2003-02-11 08:08:26'),
(207, 14, 0x4be47974e42073656c61696d656e2061736574756b736961, 'Y', '2003-02-11 08:08:26'),
(208, 14, 0x4b69656c69, 'Y', '2003-02-11 08:08:26'),
(209, 14, 0x41696b617679f668796b65, 'Y', '2003-02-11 08:08:26'),
(210, 14, 0x59f661696b61, 'Y', '2003-02-11 08:08:26'),
(211, 14, 0x4c617564616e206772616669696b6174, 'Y', '2003-02-11 08:08:26'),
(212, 14, 0x4b697669656e206b6f6b6f, 'Y', '2003-02-11 08:08:26'),
(213, 14, 0x5075756e2076e47269, 'Y', '2003-02-11 08:08:26'),
(214, 14, 0x4b6f6f7264696e61617474697369767574, 'Y', '2003-02-11 08:08:26'),
(215, 14, 0x566173656e, 'Y', '2003-02-11 08:08:26'),
(216, 14, 0x596ce47265756e61, 'Y', '2003-02-11 08:08:26'),
(217, 14, 0x4f696b6561, 'Y', '2003-02-11 08:08:26'),
(218, 14, 0x416c617265756e61, 'Y', '2003-02-11 08:08:26'),
(219, 14, 0x5079f672697374e4206c617564616e207265756e61, 'Y', '2003-02-11 08:08:26'),
(220, 14, 0x56616c696b6f6964656e207375756e7461, 'Y', '2003-02-11 08:08:26'),
(222, 14, 0x4d757574612070726f6669696c6961, 'Y', '2003-02-11 08:08:26'),
(378, 14, 0x4d696e756e206be4797474e46ae4746965746f6e69, 'Y', '2003-02-11 08:08:26'),
(379, 14, 0x4d756f6b6b61612068656e6b696cf6746965746f6a61, 'Y', '2003-02-11 08:08:26'),
(393, 14, 0x52656b6973746572f66974796d697370e46976e46de4e472e4, 'Y', '2003-02-11 08:08:26'),
(394, 14, 0x5669696d656973696e206be4796e7469, 'Y', '2003-02-11 08:08:26'),
(395, 14, 0x48656e6b696cf6746965646f74, 'Y', '2003-02-11 08:08:26'),
(396, 14, 0x4ce4686574e420766965737469206be4797474e46ae46c6c65, 'Y', '2003-02-11 08:08:26'),
(397, 14, 0x4d656e6f737361, 'Y', '2003-02-11 08:08:26'),
(398, 14, 0x4c6f7070756e7574, 'Y', '2003-02-11 08:08:26'),
(399, 14, 0x566f69746f74, 'Y', '2003-02-11 08:08:26'),
(400, 14, 0x54617070696f74, 'Y', '2003-02-11 08:08:26'),
(6160, 40, 0x4170726f762e20282529, 'Y', '2014-07-30 14:28:34'),
(402, 14, 0x416b746969766973757573, 'Y', '2003-02-11 08:08:26'),
(463, 14, 0x72756f747369, 'Y', '2003-02-11 08:08:26'),
(464, 14, 0x6e6f726a61, 'Y', '2003-02-11 08:08:26'),
(465, 14, 0x656e676c616e7469, 'Y', '2003-02-11 08:08:26'),
(466, 14, 0x73616b7361, 'Y', '2003-02-11 08:08:26'),
(467, 14, 0x72616e736b61, 'Y', '2003-02-11 08:08:26'),
(468, 14, 0x657370616e6a61, 'Y', '2003-02-11 08:08:26'),
(469, 14, 0x7473656b6b69, 'Y', '2003-02-11 08:08:26'),
(470, 14, 0x6b69696e612028706572696e742e29, 'Y', '2003-02-11 08:08:26'),
(3341, 17, '', 'Y', '2013-08-21 00:43:28'),
(472, 14, 0x6b69696e612028796b73696e6b6572742e29, 'Y', '2003-02-11 08:08:26'),
(473, 14, 0x686f6c6c616e7469, 'Y', '2003-02-11 08:08:26'),
(479, 14, 0x74686169, 'Y', '2003-02-11 08:08:26'),
(494, 14, 0x50656c61616a616e20257320746965646f74, 'Y', '2003-02-11 08:08:26'),
(500, 14, 0x73756f6d69, 'Y', '2003-02-11 08:08:26'),
(136, 14, 0x466f6f72756d69, 'Y', '2003-02-11 08:27:04'),
(159, 14, 0x446f6b756d656e74616174696f, 'Y', '2003-02-11 08:27:04'),
(161, 14, 0x557365696e206b797379747974206b7973796d796b736574, 'Y', '2003-02-11 08:27:04'),
(163, 14, 0x49686d69736574, 'Y', '2003-02-11 08:27:04'),
(164, 14, 0x6a6f746b612074656b6576e47420447261676f6e6961, 'Y', '2003-02-11 08:27:04'),
(165, 14, 0x4c696e6b6974, 'Y', '2003-02-11 08:27:04'),
(168, 14, 0x4173656e6e75736f686a656574, 'Y', '2003-02-11 08:27:04'),
(169, 14, 0x6a6f732068616c756174206f6d616e20447261676f6e697369, 'Y', '2003-02-11 08:27:04'),
(170, 14, 0x48616520447261676f6e696e206ce46864656b6f6f646974, 'Y', '2003-02-11 08:27:04'),
(257, 14, 0x4a616e2076616e2064657220537465656e696e207369767574, 'Y', '2003-02-11 08:27:04'),
(258, 14, 0x50616c6a6f6e20746965746f6120476f737461, 'Y', '2003-02-11 08:27:04'),
(259, 14, '', 'Y', '2006-11-14 11:49:44'),
(260, 14, 0x557365696e206b7973797474796ae420476f2d6b7973796d796b7369e4207265632e67616d65732e676f2d75757469737279686de47373e42e, 'Y', '2003-02-11 08:27:04'),
(265, 14, '', 'Y', '2006-11-14 11:49:44'),
(271, 14, '', 'Y', '2006-11-14 11:49:44'),
(272, 14, 0x476f2d61696865696e656e206d616e67612e2053756f736974656c6c61616e21, 'Y', '2003-02-11 08:27:04'),
(377, 14, 0x546572766574756c6f746f69766f74757373697675, 'Y', '2003-02-11 08:27:04'),
(380, 14, 0x4ee47974e420766965737469, 'Y', '2003-02-11 08:27:04'),
(383, 14, 0x53e469656c69737461, 'Y', '2003-02-11 08:27:04'),
(384, 14, 0x4c756520666f6f72756d6961, 'Y', '2003-02-11 08:27:04'),
(385, 14, 0x557573692061696865, 'N', '2003-02-11 08:27:04'),
(2173, 17, 0x506f6b61bf20677261637a79, 'Y', '2013-08-20 23:51:45'),
(173, 14, 0x447261676f6e696e2070726f6a656b74697369767520536f75726365666f7267657373612e, 'Y', '2003-02-11 11:13:19'),
(256, 14, 0x596c65697374e420746965746f61, 'Y', '2003-02-11 11:13:19'),
(266, 14, 0x5968746569737479f67665726b6b6f736976752e204c7565206a61206f73616c6c6973747521, 'Y', '2003-02-11 11:13:19'),
(267, 14, '', 'Y', '2006-11-14 11:49:44'),
(273, 14, 0x53e4e46e6ef674, 'Y', '2003-02-11 11:13:19');
INSERT INTO `Translations` (`Original_ID`, `Language_ID`, `Text`, `Translated`, `Updated`) VALUES
(274, 14, 0x496e746572616b74696976696e656e206a6f686461747573, 'Y', '2003-02-11 11:13:19'),
(275, 14, 0x4d69656c6c797474e476e4206f7069736b656c75736976752e, 'Y', '2003-02-11 11:13:19'),
(276, 14, 0x487976696e206b69726a6f697465747475206a6f68646174757320284272697469736820476f204173736f63696174696f6e292e, 'Y', '2003-02-11 11:13:19'),
(281, 14, 0x53747261746567696161206a61207465726d656ae4, 'Y', '2003-02-11 11:13:19'),
(283, 14, 0x476f2d6f6e67656c6d6961, 'Y', '2003-02-11 11:13:19'),
(284, 14, 0x4f6e67656c6d69656e207261746b6f6d696e656e206175747461612070656c69746169746f6a656e206b6568697474e46d6973657373e42e, 'Y', '2003-02-11 11:13:19'),
(285, 14, '', 'Y', '2006-11-14 11:49:44'),
(286, 14, 0x4ce4686574e42070656c697369206b6f6d6d656e746f69746176696b7369202d206f706974206d6974e4206f6c6973697420766f696e75742074656864e420706172656d6d696e2e, 'Y', '2003-02-11 11:13:19'),
(287, 14, 0x596c656973696d6de474206a6170616e696c616973657420476f2d7465726d6974, 'Y', '2003-02-11 11:13:19'),
(288, 14, 0x4a6f74746120796d6de47272e474206d697374e4206f6e206b7973652e, 'Y', '2003-02-11 11:13:19'),
(291, 14, 0x486973746f726961, 'Y', '2003-02-11 11:13:19'),
(292, 14, 0x4c7968797420686973746f726961, 'Y', '2003-02-11 11:13:19'),
(293, 14, 0x49686d6973696c6c652c206a6f696c6c61206f6e206b65736b697474796d69737661696b65756b7369612e, 'Y', '2003-02-11 11:13:19'),
(294, 14, 0x4b61747461766120686973746f726961, 'Y', '2003-02-11 11:13:19'),
(295, 14, 0x4a6f732068616c7561742074696574e4e420616976616e206b61696b656e2e, 'Y', '2003-02-11 11:13:19'),
(296, 14, 0x476f2d6b69726a6f6a612c202d76e46c696e656974e4206a61202d6f686a656c6d69612e, 'Y', '2003-02-11 11:13:19'),
(297, 14, '', 'Y', '2006-11-14 11:49:44'),
(298, 14, 0x5375757269206b6f6b6f656c6d6120476f2d6b69726a612d6172766f7374656c756a612e, 'Y', '2003-02-11 11:13:19'),
(299, 14, 0x4575726f6f7070616c61696e656e206b6175707061, 'Y', '2003-02-11 11:13:19'),
(300, 14, 0x4d7569746120476f2d70616c76656c696d6961, 'Y', '2003-02-11 11:13:19'),
(301, 14, 0x4d79f6732076756f726f706f686a61696e656e2e2054756b6565206d79f67320757365697461206d756974612070656c656ae42e, 'Y', '2003-02-11 11:13:19'),
(303, 14, 0x53757572692070616c76656c696e20726561616c6961696b61697369612070656c656ae42076617274656e, 'Y', '2003-02-11 11:13:19'),
(305, 14, 0x50616c76656c696e6c69737461, 'Y', '2003-02-11 11:13:19'),
(306, 14, 0x4b6174746176616d7069206c697374612070616c76656c696d69737461, 'Y', '2003-02-11 11:13:19'),
(337, 14, 0x447261676f6e696e206176757374616a6174, 'Y', '2003-02-11 11:13:19'),
(6088, 36, 0x4869c3a16e797ac3b32066656c74c3a974656c6573206cc3a970c3a973656b2e, 'Y', '2015-07-23 12:16:04'),
(340, 14, 0x4641512d746f696d697474616a61, 'Y', '2003-02-11 11:13:19'),
(122, 14, 0x56617374617573, 'Y', '2003-02-11 11:18:11'),
(127, 14, 0x4d756f6b6b6161, 'N', '2003-02-11 11:18:11'),
(128, 14, 0x53696972727920796cf67370e4696e, 'Y', '2003-02-11 11:18:11'),
(129, 14, 0x53696972727920616c617370e4696e, 'Y', '2003-02-11 11:18:11'),
(135, 14, 0x4be4e46e74e46ae474, 'Y', '2003-02-11 11:18:11'),
(1, 14, 0x416e7465656b73692c206d7574746120657420766f69207061737361746120656e6e656e6b75696e206b61696b6b69207461736f697475736b69766574206f6e2061736574657474752e, 'Y', '2003-02-11 11:18:11'),
(2, 14, 0x416e7465656b73692c206d757474612070656c69206f6e206a6f2070e4e47474796e79742e, 'Y', '2003-02-11 11:18:11'),
(3, 14, 0x416e7465656b73692c206d757474612070656c69206569206f6c65207669656ce420616c6b616e75742e, 'Y', '2003-02-11 11:18:11'),
(7, 14, 0x416e7465656b73692c206d7574746120657420766f69206b75747375612069747365e473692e, 'Y', '2003-02-11 11:18:11'),
(8, 14, 0x416e7465656b73692c206d757474612070656c69e4206a6f686f6e2073696e7574206f6e206b75747375747475206569206cf67964792e204b69656c74e479647969746bf6206a6f3f, 'Y', '2003-02-12 09:38:03'),
(9, 14, 0x56616c6974616e2c206d7574746120657420766f69206f74746161206b697665e42c206a6f6b61206f6e206a757572692076616e67696e6e757420746f6973656e206b6976656e2c206b6f736b6120736520746f697374616973692061696b616973656d6d616e2074696c616e7465656e206c617564616c6c612e204b6174736f2073e4e46e6ef6697374e4206b6f68746120226b6f222e, 'Y', '2003-02-12 09:38:03'),
(12, 14, 0x59687465797320746965746f6b616e7461616e206570e46f6e6e69737475692e204f646f7461206d757574616d61206d696e7575747469206a612079726974e42073697474656e2075756465737461616e2e, 'Y', '2003-02-12 09:38:03'),
(13, 14, 0x50656c696e20706f697374616d696e656e206570e46f6e6e69737475692e2054e46de4206569206f6c6520746f64656e6ee46bf6697365737469206f6e67656c6d612e, 'Y', '2003-02-12 09:38:03'),
(14, 14, 0x5669657374696e206c6973e4e46d696e656e20746965746f6b616e7461616e206ee4797474e4e42076616c6974657474617661737469206570e46f6e6e697374756e65656e2e, 'Y', '2003-02-12 09:38:03'),
(15, 14, 0x50656c696e206c6973e4e46d696e656e20746965746f6b616e7461616e206ee4797474e4e42076616c6974657474617661737469206570e46f6e6e697374756e65656e2e, 'Y', '2003-02-12 09:38:03'),
(16, 14, 0x53696972726f6e206c6973e4e46d696e656e20746965746f6b616e7461616e206ee4797474e4e4206570e46f6e6e697374756e65656e2e2054e46de420766f69206f6c6c61206f6e67656c6d612c206b616e6e6174746161206be47964e4207461726b697374616d617373612c206ee46b79796bf62073696972746f2070656c697373e42e, 'Y', '2003-02-12 09:38:03'),
(17, 14, 0x546965746f6a657369206c6973e4e46d696e656e20746965746f6b616e7461616e206ee4797474e4e42076616c6974657474617661737469206570e46f6e6e697374756e65656e2e204a6f7320657420766f69206b69726a617574756120736973e4e46e2c2079726974e4207669656ce4206b657272616e206a61206a6f732073656be4e46e20656920617574612c206f74612079687465797474e42074756b65656e2e, 'Y', '2003-02-12 09:38:03'),
(18, 14, 0x546965746f6b616e74616b7973656c79206570e46f6e6e69737475692e204f646f7461206d757574616d61206d696e7575747469206a612079726974e42075756465737461616e2e, 'Y', '2003-02-12 09:38:03'),
(19, 14, 0x546965746f6b616e6e616e2076616c696e7461206570e46f6e6e69737475692e204f646f7461206d757574616d61206d696e7575747469206a612079726974e42075756465737461616e2e, 'Y', '2003-02-12 09:38:03'),
(20, 14, 0x50656c696e20616c6f697474616d696e656e2065692076616c6974657474617661737469206f6e6e697374756e75742e204f646f7461206d757574616d61206d696e7575747469206a612079726974e42075756465737461616e2e, 'Y', '2003-02-12 09:38:03'),
(22, 14, 0x56616c6974616e2c206d757474612073696e756e2074e479747979207379f67474e4e4206e696d692e, 'Y', '2003-02-12 09:38:03'),
(27, 14, 0x53696e756e206a612076617374757374616a6173692074e479747979206173657474616120616c757374617661206c756f6b697475732c206d757574656e20656e20766f69206cf67974e4e420736f7069766161207461736f6974757374612e, 'Y', '2003-02-12 09:38:03'),
(29, 14, 0x54e46de420746f696d696e746f206569206f6c6520736161746176696c6c61207669657261696c6c652c2072656b6973746572f66920697473656c6c657369206f6d612074756e6e75732e, 'Y', '2003-02-12 09:38:03'),
(32, 14, 0x56616c6974657474617661737469206e7974206569206f6c652073696e756e2076756f726f73692e, 'Y', '2003-02-12 09:38:03'),
(33, 14, 0x53616c6173616e61736920736973e46c736920736f70696d6174746f6d6961206d65726b6b656ae42e2053616c6c697474756a61206f766174207661696e206d65726b697420612d7a2c20412d5a2c20302d39206a61202d5f2b2e2c3a3b3f21252a2e, 'Y', '2003-02-12 09:38:03'),
(35, 14, 0x56616876697374757373616c6173616e612065692074e4736de46e6e79742073616c6173616e616173692c2070616c61612074616b616973696e206a612079726974e42075756465737461616e2c206f6c6520687976e42e, 'Y', '2003-02-12 09:38:03'),
(38, 14, 0x456e206f7361612076616c69746574746176617374692074756c6b697461206c756f6b69747573746173692e20556e6f686469746b6f206b656e74696573206d65726b6974e4206f6c65746b6f20276b75792720766169202764616e273f, 'Y', '2003-02-12 09:38:03'),
(39, 14, 0x456e206f7361612076616c69746574746176617374692074756c6b697461206c756f6b69747573746173692e2054e46de46e206c756f6b6974757374797970696e206b616e7373612065692074756c65206be4797474e4e4206d65726b696e74f66ae420276b75792720746169202764616e272e, 'Y', '2003-02-12 09:38:03'),
(40, 14, 0x54e46de4206b697669206f6c6973692074617070616e757420697473656e73e42c206d7574746120697473656d75726861206569206f6c652073616c6c6974747561206d656964e46e2073e4e46e6ef6697373e46d6d652e, 'Y', '2003-02-12 09:38:03'),
(41, 14, 0x50656c69e4206569206cf67964792e, 'Y', '2003-02-12 09:38:03'),
(42, 14, 0x48616c75616d6161736920666f6f72756d6961206569206cf67964792e, 'Y', '2003-02-12 09:38:03'),
(43, 14, 0x486d6d2c206ee4797474e4697369206f6c6576616e2076617374617573206f6c656d6174746f6d61616e20766965737469696e21, 'Y', '2003-02-12 09:38:03'),
(44, 14, 0x48616c75616d6161736920766965737469e4206569206cf67974796e79742e, 'Y', '2003-02-12 09:38:03'),
(45, 14, 0x4be4797474e46ae4e4206569206cf67964792e, 'Y', '2003-02-12 09:38:03'),
(46, 14, 0x54e46de4206be4797474e46ae474756e6e7573206f6e2076616c6974657474617661737469206a6f206be47974f67373e42c2079726974e4206b656b7369e420756e69696b6b69206be4797474e46ae474756e6e75732e, 'Y', '2003-02-12 09:38:03'),
(48, 14, 0x456e20766f696e757420656b73747261706f6c6f696461206172766f6120696e746572706f6c6f696e746966756e6b74696f7373612e, 'Y', '2003-02-12 09:38:03'),
(49, 14, 0x566f697420706f6973746161207661696e206f6d69612070656c656ae473692e, 'Y', '2003-02-12 09:38:03'),
(50, 14, 0x4f646f74757368756f6e6570656c69e4206569206cf67974796e79742e204a6f6b75206d7575206568746920746f64656e6ee46bf669736573746920656e73696e2e, 'Y', '2003-02-12 09:38:03'),
(51, 14, 0x457420766f69206c6969747479e4206f6d61616e2070656c696973692e, 'Y', '2003-02-12 09:38:03'),
(52, 14, 0x4574206f6c652076616c6974657474617661737469206f696b6561737361206c756f6b6974757376e46c697373e42e, 'Y', '2003-02-12 09:38:03'),
(54, 14, 0x4574206b69726a6f697474616e75742073616c6173616e61617369206f696b65696e2e, 'Y', '2003-02-12 09:38:03'),
(55, 14, 0x54756e74656d61746f6e206c756f6b697475737479797070692e, 'Y', '2003-02-12 09:38:03'),
(56, 14, 0x456e2074756e6e652076616c6974657474617661737469206b6574e4e46e2074756f6e206e696d697374e42e, 'Y', '2003-02-12 09:38:03'),
(57, 14, 0x416c6b756c756f6b6974756b73656e2074756c6565206f6c6c61203330206b75796e206a6120362064616e696e2076e46c696c6ce42e, 'Y', '2003-02-12 09:38:03'),
(58, 14, 0x4b69726a6f697469742065692d6e756d6565726973656e206172766f6e206e756d656572697365656e206b656e7474e4e46e2e, 'Y', '2003-02-12 09:38:03'),
(59, 14, 0x5661696e206be4e46e74e46ae47420736161766174206be4e46e74e4e42e, 'Y', '2003-02-12 09:38:03'),
(60, 14, 0x4a6f732068616c7561742061757474616120447261676f6e696e206be4e46e74e46d6973657373e42c206b69726a6f69746120766965737469206be4e46e6ef673666f6f72756d696c6c652e, 'Y', '2003-02-12 09:38:03'),
(61, 14, 0x53696e756c6c61206569206f6c65206f696b65756b736961206be4e46e74e4e42074e474e4206b69656c74e42e, 'Y', '2003-02-12 09:43:58'),
(63, 14, 0x4a6f7461696e206d656e692076616c69746574746176617374692076696b61616e206b756e2079726974696e2073696a6f6974746161206be4e46e6ef66b7369e420746965746f6b616e7461616e2e, 'Y', '2003-02-12 09:43:58'),
(66, 14, 0x54e46de42073697675206f6e207661696e20796c6ce47069746f2d6f696b65756b73696e20766172757374657474756a61206be4797474e46a69e42076617274656e2e, 'Y', '2003-02-12 09:43:58'),
(69, 14, 0x456e206cf67974e46e797420736974e4206b6f687461612e, 'Y', '2003-02-12 09:43:58'),
(75, 14, 0x416e7465656b73692c206d7574746120656e206cf67964e4206b797365697374e4207475726e61757374612e, 'Y', '2003-02-12 09:43:58'),
(2987, 17, '', 'Y', '2013-08-21 00:38:21'),
(2988, 17, 0x4f6e6c696e65, 'Y', '2013-08-21 00:38:21'),
(2989, 17, 0x4f6e6c696e65203c2573206d696e75742074656d75, 'Y', '2013-08-21 00:38:21'),
(474, 14, 0x546f696d696e7461747979707069206f6e206a6f6b6f2074756e74656d61746f6e2074616920736974e420656920766f69206be4797474e4e42074e47373e4207661696865657373612070656c69e42e, 'Y', '2003-02-12 09:43:58'),
(475, 14, 0x4b6f6d69206f6e2072616a6f6a656e20756c6b6f70756f6c656c6c612c206f6c6520687976e4206a612076616c69747365206ae4726b6576e46d7069206172766f2e, 'Y', '2003-02-12 09:43:58'),
(476, 14, 0x54e47373e42073696972726f7373612074617061687475692076697268652e204b6f6b65696c652075756465737461616e2c2073652061757474616120796c65656e73e42e204a6f732065692c206f74612079687465797474e420796c6ce47069746f6f6e2e, 'Y', '2003-02-12 09:43:58'),
(477, 14, 0x56e4e472e4206de4e472e4207461736f697475736b697669e42e, 'Y', '2003-02-12 09:43:58'),
(513, 5, 0x447261676f6e202d2044e976656c6f7070656d656e74, 'Y', '2004-03-02 02:56:28'),
(514, 5, '', 'Y', '2005-06-24 04:04:46'),
(618, 5, 0x4e69766561752061752064e9627574, 'Y', '2003-02-23 14:29:35'),
(619, 5, 0x4e697665617520e0206c612066696e, 'Y', '2003-02-23 14:29:35'),
(620, 5, 0xc963617274206465203c42523e6e6976656175, 'Y', '2003-02-25 04:53:01'),
(515, 5, '', 'Y', '2005-06-24 04:04:46'),
(618, 6, 0x52616e676f20616c20696e6963696172, 'Y', '2015-06-26 17:12:53'),
(619, 6, 0x52616e676f20616c207465726d696e6172, 'Y', '2015-06-23 21:13:55'),
(620, 6, 0x4469666572656e6369612064652072616e676f, 'Y', '2015-06-23 21:13:55'),
(500, 6, 0x46696e6c616e64e973, 'Y', '2003-02-21 17:23:09'),
(513, 6, '', 'Y', '2007-11-03 16:08:38'),
(514, 6, 0xbf43f36d6f2066756e63696f6e612065737465204641513f, 'Y', '2003-02-21 17:23:09'),
(515, 6, 0x4573706572616d6f732071756520657374652046415120636f6e7465737465207475732070726567756e746173207920726573756d61206c61732070726567756e746173206672656375656e74657320792073757320726573707565737461732e0d0a0d0a456c2046415120646520447261676f6e20646570656e646520646520747520666565646261636b20287920656c206465206f74726f73207573756172696f732e20a13c6e6f62723e54fa20657374e1733c2f6e6f62723e20696e76697461646f206120636f6e7472696275697220636f6e20e96c2e2120506f72206661766f722c2064656a6120747573207375676572656e636961732c20636f6e747269627563696f6e6573206f2070726567756e74617320656e20656c203c6120687265663d222f70686f72756d2f6c6973742e7068703f663d3322205441524745543d225f626c616e6b223e666f726f2064652064697363757369f36e2064656c204641513c2f613e2e, 'Y', '2003-08-29 06:13:13'),
(525, 6, 0x41f16f726f205b785d20656e20447261676f6e2e20bf48617920706c616e657320646520696d706c656d656e7461726c6f3f, 'Y', '2003-02-21 17:23:09'),
(526, 6, 0x5175697ae1732e204563686120756e2076697374617a6f20656e206c61206c69737461206465203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f746f646f2e706870223e50656e6469656e7465733c2f613e2e200d0a5369206e6f20657374e120616c6ced2c2070756564657320737567657269726c6f20656e20656c203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f70686f72756d2f6c6973742e7068703f663d34223e466f726f20646520646973637573696f6e20646520447261676f6e3c2f613e2e, 'N', '2003-08-11 04:36:23'),
(553, 6, 0xbf4375e16e646f2073652061637475616c697a616e206c6f732072656c6f6a6573206465206d69732070617274696461733f, 'Y', '2003-08-29 06:13:13'),
(554, 6, 0x4c6f732072656c6f6a6573206465207475732070617274696461732073652064656372656d656e74616e203c623e736f6c616d656e74653c2f623e206375616e646f206573207475207475726e6f2e200d0a0d0a4e6f2073652064656372656d656e74616e0d0a3c756c3e200d0a3c6c693e6375616e646f207475206f706f6e656e7465207469656e6520656c207475726e6f2070617261206d6f7665723c2f6c693e200d0a3c6c693e647572616e7465207475203c6120687265663d222f6661712e7068703f726561643d74266361743d353623456e7472793631223e7469656d706f20646520737565f16f3c2f613e3c2f6c693e200d0a3c6c693e647572616e746520747573203c6120687265663d222f6661712e7068703f726561643d74266361743d353623456e7472793636223e7661636163696f6e65733c2f613e3c2f6c693e200d0a3c6c693e6c6f732066696e65732064652073656d616e61202873692068617320656c656769646f20657461206f706369f36e20656e203c6120687265663d222f6661712e7068703f726561643d74266361743d33353723456e7472793434223e6c6120696e766974616369f36e206465206c6120706172746964613c2f613e293c2f6c693e200d0a3c2f756c3e, 'N', '2003-08-29 06:13:13'),
(571, 6, 0xbf506f727175e920657374e1206c696d697461646f20656c2075736f206465206c6173207661636163696f6e65733f, 'Y', '2003-08-29 06:23:16'),
(572, 6, 0xa14d65203c753e616c656772612074616e746f3c2f753e2071756520686179617320686563686f206573612070726567756e7461210d0a0d0aa1456e206375616c717569657220636f7361207265616c6d656e746521205369207069656e736173207175652068617920756e2074f37069636f206f2070726567756e746120656e20706172746963756c61722071756520657374e12066616c74616e646f2c2068e17a6d656c6f2073616265722e204d656a6f722061fa6e2c2065736372696265207475206d69736d6f20756e20626f727261646f722079207075626ced63616c6f20656e20656c203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f70686f72756d2f6c6973742e7068703f663d33223e466f726f20736f62726520656c204641513c2f613e2e, 'Y', '2003-08-11 04:36:23'),
(573, 6, 0xbf4375e16c657320736f6e206c6f732063616d62696f732072656369656e7465732064652065737465204641513f, 'Y', '2003-08-29 06:23:16'),
(574, 6, '', 'Y', '2007-11-03 16:08:38'),
(607, 6, 0xbf507565646f2061797564617220656e20656c206465736172726f6c6c6f20646520447261676f6e3f, 'Y', '2003-02-21 17:23:09'),
(608, 6, 0x5175697ae1732e20456d7069657a61206d6972616e646f20656e206c61203c6120687265663d22687474703a2f2f736f75726365666f7267652e6e65742f70726f6a656374732f647261676f6e676f73657276657222207461726765743d6e65773e70e167696e6120646520447261676f6e20656e20736f75726365666f7267653c2f613e2e, 'N', '2003-08-11 04:36:23'),
(621, 6, 0x4d6f737472617220746f646f20656c2046415120656e20756e612073f36c612070e167696e61, 'Y', '2003-02-21 17:23:09'),
(622, 6, 0x546f726e656f7320447261676f6e, 'Y', '2003-02-21 17:23:09'),
(623, 6, 0xbf507565646f207061727469636970617220656e20746f726e656f7320656e20447261676f6e3f, 'N', '2003-02-21 17:23:09'),
(624, 6, 0x53ed2e203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f75736572696e666f2e7068703f7569643d31373935223e44616e69656c2057616b656669656c643c2f613e20657374e12061637475616c6d656e7465206f7267616e697a616e646f20756e207470726e656f2e2048617920756e20736974696f206170617274652070617261206573746520746f726e656f20656e203c6120687265663d22687474703a2f2f64677373686f67756e2e746f706369746965732e636f6d2f696e6465782e68746d22207461726765743d6e65773e687474703a2f2f64677373686f67756e2e746f706369746965732e636f6d2f696e6465782e68746d3c2f613e2e, 'N', '2003-08-11 04:36:23'),
(625, 6, 0xbf536f6e206c6f7320746f726e656f73206d616e74656e69646f7320646972656374616d656e746520706f7220447261676f6e3f, 'Y', '2003-02-21 17:23:09'),
(626, 6, 0x4e6f2c2061fa6e206e6f2e20a15065726f206c6f20736572e16e21204573746120657320756e61206465206c6173206772616e6465732074617265617320656e206c61203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f746f646f2e706870223e6c6973746120646520636f7361732070656e6469656e7465733c2f613e2e, 'Y', '2003-08-11 04:36:23'),
(525, 5, 0x556e6520666f6e6374696f6e6e616c6974e9206d65206d616e717565206368657a20447261676f6e2e20507569732d6a65206c612070726f706f736572266e6273703b3f, 'Y', '2005-06-24 04:04:46'),
(526, 5, 0x4269656e2073fb72266e6273703b2120566f757320706f7576657a206c612070726f706f7365722064616e73206c6520666f72756d206465203c686f6d6520666f72756d2f6c6973742e7068703f666f72756d3d343e44697363757373696f6e73206175746f757220646520447261676f6e3c2f686f6d653e2e0d0a0d0a4c6573206c69737465732064657320666f6e6374696f6e6e616c6974e9732064e96ae02070726f706f73e9657320736f6e7420646973706f6e69626c65730d0a3c756c3e0d0a3c6c693e64616e73206c6573203c686f6d65206e6577732e7068703e6e6577733c2f686f6d653e2c0d0a3c6c693e737572206c61203c686f6d652066656174757265732f6c6973745f766f7465732e7068703e7061676520646520766f746520646573207574696c69736174657572733c2f686f6d653e2064657320736f756861697473206427e9766f6c7574696f6e732c0d0a3c6c693e6175206d6f79656e206465206c6120666f6e6374696f6e6e616c6974e9206465203c686f6d6520666f72756d2f7365617263682e7068703e7265636865726368652064616e73206c657320666f72756d733c2f686f6d653e2c0d0a3c6c693e64616e73206c61203c5f687474703a2f2f73656e736569732e786d702e6e65742f3f444753576973686c697374207c6c697374652053656e7365692064657320736f75686169747320706f7572204447533e2e0d0a3c2f756c3e0d0a0d0a536920756e6520666f6e6374696f6e6e616c6974e9207061726169742072e9616c697361626c652c206a757374696669e9652c20657420717565207361206465736372697074696f6e2065737420737566666973616d6d656e7420636c616972652028706f7572206c6576657220746f75746520616d62696775ef74e9292c20756e206d6f64e97261746575722070657574206c27616a6f7574657220e0206c61206c697374652064657320666f6e6374696f6e6e616c6974e97320e02070726f706f73206465737175656c6c6573206c6573207574696c697361746575727320736f6e7420696e766974e97320e020646f6e6e6572206c657572206176697320656e20766f74616e742e, 'Y', '2013-04-04 22:40:21'),
(553, 5, 0x41207175656c206d6f6d656e74206d6f6e20ab266e6273703b54656d7073206465206a6575266e6273703bbb2064e963726fee74266e6273703b3f, 'Y', '2003-08-25 00:19:48'),
(554, 5, 0x566f74726520ab266e6273703b54656d7073206465206a6575266e6273703bbb206573742064696d696e75e9203c623e756e697175656d656e743c2f623e207175616e6420632765737420766f74726520746f7572206465206a6f7565722e0d0a0d0a566f74726520686f726c6f67652065737420617272ea74e965207175616e64266e6273703b3a0d0a3c756c3e3c6c693e632765737420e020766f7472652061647665727361697265206465206a6f7565720d0a3c6c693e70656e64616e7420766f747265203c6120687265663d222f6661712e7068703f726561643d7426616d703b6361743d353623456e7472793631223e70e972696f6465206465206e7569743c2f613e0d0a3c6c693e70656e64616e7420766f73203c6120687265663d222f6661712e7068703f726561643d7426616d703b6361743d353623456e7472793636223e766163616e6365733c2f613e0d0a3c6c693e6c65207765656b656e642c20736920766f7573206176657a2063686f697369206365747465206f7074696f6e206175203c6120687265663d222f6661712e7068703f726561643d7426616d703b6361743d33353723456e7472793434223e64e96d617272616765206465206c61207061727469653c2f613e0d0a3c2f756c3e0d0a0d0a506f757220756e652070617274696520646f6e6e266561637574653b652c206c276172722665636972633b74206465206c27686f726c6f67652065737420696e64697175266561637574653b20266167726176653b206c276169646520646573206963266f636972633b6e65732073756976616e7465732e2043656c6c65732d636920617070617261697373656e7420736f697420737572206c612070616765207072266561637574653b73656e74616e74206c6573207061727469657320656e20636f757273202864616e73206c6120636f6c6f6e6e65203c693e4f66662d74696d653c2f693e292c20736f697420737572206c612070616765207370266561637574653b6369666971756520266167726176653b206c612070617274696520286a7573746520266167726176653b2064726f697465206475206e6f6d20646573206a6f756575727329266e6273703b3a0d0a3c756c3e0d0a3c6c693e3c696d616765206e696768742e6769663e203a206a6f7565757220656e203c686f6d65206661712e7068703f726561643d74266361743d353623456e74727936313e70266561637574653b72696f6465206465206e7569743c2f686f6d653e0d0a3c6c693e3c696d616765207661636174696f6e2e6769663e203a206a6f7565757220656e203c686f6d65206661712e7068703f726561643d74266361743d353623456e74727936363e766163616e6365733c2f686f6d653e0d0a3c6c693e3c696d6167652077636c6f636b5f73746f702e6769663e203a206c6f727320646573203c686f6d65206661712e7068703f726561643d74266361743d353626653d31343323456e7472793134333e7765656b656e64733c2f686f6d653e0d0a3c2f756c3e, 'Y', '2013-04-04 22:10:38'),
(571, 5, 0x506f757271756f69206c277574696c69736174696f6e20646573206a6f75727320646520766163616e636573206573742d656c6c6520726573747265696e7465266e6273703b3f, 'Y', '2003-10-13 17:07:59'),
(572, 5, 0x5327696c206e277920617661697420706173206465207265737472696374696f6e2c20696c2073756666697261697420e020756e206a6f75657572206465207072656e64726520756e206a6f757220646520766163616e63657320e02063686163756e2064652073657320636f75707320706f757220626c6f71756572206c27686f726c6f67652064e9636f6d7074616e7420736f6e20ab266e6273703b3c6120687265663d222f6661712e7068703f726561643d7426616d703b6361743d3536223e54656d7073206465206a65753c2f613e266e6273703bbb2e0d0a0d0a506f757220e9766974657220636563692c20447261676f6e206c696d697465206c277574696c69736174696f6e20646573206a6f75727320646520766163616e636573266e6273703b3a0d0a3c756c3e3c6c693e6f6e20646f6974207072656e64726520756e206d696e696d756d206465206a6f75727320646520766163616e63657320e0206c6120666f69732c0d0a3c6c693e6f6e206e65207065757420706173207072656e64726520706c7573206465203330206a6f75727320646520766163616e63657320e0206c6120666f69732c0d0a3c6c693e6f6e206e65207065757420706c757320616e6e756c657220756e652070e972696f646520646520766163616e63657320717569206175726169742064e96ae02064e96d617272e92e0d0a3c2f756c3e, 'Y', '2013-04-06 13:12:36'),
(573, 5, 0x5175656c6c657320736f6e74206c6573206d6973657320e0206a6f75722072e963656e74657320646520636574746520462e412e512e266e6273703b3f, 'Y', '2005-01-24 11:37:26'),
(574, 5, '', 'Y', '2005-06-24 04:04:46'),
(607, 5, 0x507569732d6a652061696465722061752064e976656c6f7070656d656e7420646520447261676f6e266e6273703b3f, 'Y', '2003-02-22 02:05:36'),
(608, 5, 0x506575742dea7472652e20566f757320646576657a20636f6e6e61ee747265206c65732072e8676c657320647520476f2c206c6573206c616e6761676573205048502065742048544d4c2c2061696e736920717565206c657320626173657320646520646f6e6ee96573204d7953514c2e0d0a436f6d6d656e63657a2070617220636f6e73756c746572206c61203c6120687265663d22687474703a2f2f736f75726365666f7267652e6e65742f70726f6a656374732f647261676f6e676f73657276657222207461726765743d225f626c616e6b223e506167652064752070726f6a657420447261676f6e2073757220536f75726365466f7267653c2f613e2065742061626f6e6e657a20766f757320e0203c4120485245463d22687474703a2f2f6c697374732e736f75726365666f7267652e6e65742f6c697374732f6c697374696e666f2f647261676f6e676f7365727665722d646576656c22205441524745543d225f626c616e6b223e647261676f6e676f7365727665722d646576656c206d61696c696e67206c6973743c2f413e2e, 'N', '2004-03-05 03:26:34'),
(621, 5, 0x546f757465206c6120462e412e512e2064616e7320756e65207365756c652070616765, 'Y', '2003-02-22 02:05:36'),
(622, 5, 0x447261676f6e202d204c657320746f75726e6f6973, 'Y', '2004-03-02 02:56:28'),
(623, 5, '', 'N', '2003-10-13 17:07:59'),
(624, 5, 0x2e2e2e266e6273703b65737420756e207465726d65206a61706f6e61697320747261646974696f6e6e656c6c656d656e74207574696c6973e920617520476f20706f75722064697265266e6273703b3a20224d657263692064276163636570746572206365747465207061727469652c20626f6e6e65206368616e6365266e6273703b2122, 'Y', '2013-04-03 11:04:58'),
(33, 23, 0xe38391e382b9e383afe383bce38389e381aee69687e5ad97e585a5e58a9be98195e58f8de3818ce799bae7949fe38197e381bee38197e3819fe38082612d7ae381a820412d5ae381a820302d39e381a8202d5f2b2e2c3a3b3f21252a20e38197e3818be588a9e794a8e587bae69da5e381bee3819be38293e38082, 'Y', '2005-01-29 01:32:04'),
(572, 25, 0x446163c48320732d6172207075746561206c756120766163616ec5a3c483206f726963756d2c206174756e63692074752028736175206164766572736172756c2074c48375292061c5a369207075746561206c756120c3ae6e206d6f6420726570657461742063c3a27465206f207a6920646520766163616ec5a3c4832070656e7472752061206576697461207465726d696e617265612074696d70756c7569206465206a6f632e20c38e6e206163657374206d6f642c206c696d6974656c652064652074696d70206e65676f6369617465206c6120c3ae6e6365707574756c20706172746964656920c59f692d6172207069657264652073656e73756c2e2043612075726d6172652c20736572766572756c206c696d697465617ac48320666f6c6f73697265612061636573746f72207a696c652061737466656c3a0d0a3c756c3e0d0a3c6c693e766163616ec5a3656c6520747265627569652073c483206669652064652063656c207075c5a3696e2037207a696c653b3c2f6c693e0d0a3c6c693e766163616ec5a3656c6520c3ae6e636570757465203c623e6e753c2f623e20706f7420666920616e756c61746520283c623e213c2f623e293c2f6c693e0d0a3c2f756c3e, 'N', '2004-12-20 15:51:56'),
(625, 5, 0x592d612d7427696c2064657320746f75726e6f6973206f7267616e6973e97320646972656374656d656e742073757220447261676f6e266e6273703b3f, 'Y', '2003-08-21 16:07:58'),
(626, 5, 0x4e6f6e2c2070617320656e636f72652e204d61697320696c207920656e2061757261266e6273703b2120432765737420756e6520646573206c6f75726465732074e263686573206465206c61203c6120687265663d222f746f646f2e706870223e4c69737465206465732063686f73657320e02066616972653c2f613e2e, 'Y', '2003-08-21 16:07:58'),
(1266, 5, 0x566f757320706f7576657a20766f6972206365207369746520636f6d6d6520756e206d6f79656e206465206a6f75657220617520676f2070617220636f72726573706f6e64616e63652e20506f75722064e9627574657220756e65207061727469652c20766f757320646576657a20642761626f726420766f7573203c6120687265663d2272656769737465722e706870223e656e7265676973747265723c2f613e2c207369206365206e276573742064e96ae020666169742e20456e73756974652c20766f757320706f7576657a206d6f64696669657220766f747265203c6120687265663d22656469745f70726f66696c652e706870223e70726f66696c3c2f613e2061696e73692071756520766f747265203c6120687265663d22656469745f62696f2e706870223e62696f677261706869653c2f613e2e204e276f75626c69657a20706173206e6f74616d6d656e74206c6573206368616d707320ab266e6273703b4e6976656175266e6273703bbb2c20ab266e6273703b416e6e6f746174696f6e266e6273703b6475266e6273703b6e6976656175266e6273703bbb2c20657420ab266e6273703b44276163636f7264266e6273703b706f7572266e6273703b6a6f756572266e6273703bbb2071756920736f6e74207472e873207574696c657320706f75722074726f757665722064657320616476657273616972657320e020766f747265206e69766561752e20456e66696e2c20726567617264657a203c6120687265663d2275736572732e706870223e6c61206c6973746520646573207574696c69736174657572733c2f613e206f75207574696c6973657a206c6573203c6120687265663d22666f72756d2f696e6465782e706870223e666f72756d733c2f613e20706f75722074726f7576657220756e2061647665727361697265206574203c6120687265663d226d6573736167652e7068703f6d6f64653d496e76697465223e696e766974657a2d6c653c2f613e2e, 'Y', '2006-08-20 21:51:06'),
(507, 5, '', 'Y', '2003-10-13 17:01:28'),
(508, 5, 0x556e206365727461696e206e6f6d627265206465203c6120687265663d222f6661712e7068703f726561643d7426616d703b6361743d3323456e74727938223e6d6f6b753c2f613e2028706f696e74732920616a6f7574e9732061752073636f726520646520626c616e63207175692070657576656e7420ea747265207574696c6973e973206465206661e76f6e2076617269e9653a0d0a3c6f6c3e0d0a3c6c693e506f757220636f6d70656e736572206c276176616e7461676520717565206e6f6972206120656e206a6f75616e74206c61207072656d69e8726520706965727265206465206c61207061727469652e0d0a3c6c693e506f757220e9766974657220756e6520706172746965206e756c6c6520283c686f6d65206661712e7068703f726561643d74266361743d3323456e7472793234303e6a69676f3c2f686f6d653e2920656e207574696c6973616e7420756e206b6f6d69206e6f6e2d656e746965722028706172206578656d706c6520362c35292e0d0a3c6c693e436f6d6d6520636f6d70656e736174696f6e20656e74726520646573206a6f756575727320646520666f7263657320696ee967616c65732e0d0a506f757220706c75732064276578706c69636174696f6e2c20766f69723a20203c686f6d65206661712e7068703f726561643d74266361743d33353723456e74727939383e5175656c6c6520657374206c612064696666e972656e636520656e74726520756e2068616e646963617020636f6e76656e74696f6e6e656c20657420756e2068616e64696361702063616c63756ce93f3c2f686f6d653e2e0d0a3c2f6f6c3e, 'Y', '2011-10-18 16:44:39'),
(509, 5, 0x447261676f6e202d20457469717565747465, 'Y', '2003-02-23 23:23:43'),
(510, 5, 0x447261676f6e202d204c6573206572726575727320657420647973666f6e6374696f6e6e656d656e7473, 'N', '2005-06-24 04:08:29'),
(537, 5, '', 'Y', '2016-01-15 13:16:52'),
(545, 5, '', 'Y', '2011-10-26 12:06:49'),
(547, 5, '', 'Y', '2011-10-26 12:06:49'),
(715, 12, 0xe0c7c5d2bab9e0c7bb, 'Y', '2003-07-21 01:34:11'),
(508, 10, 0x4b6f6d69a3baccf9b8f8b0d7b7bdcac2cfc8d4bcb6a8b5c4203c6120687265663d222f6661712e7068703f726561643d74266361743d3323456e74727938223ec4bf3c2f613ea3acd3c3c0b4c3d6b2b9badab7bdcfc8cad6b5c4d3c5cac6a1a3, 'N', '2007-05-29 17:39:00'),
(515, 10, 0xc4fad7f8d4dabcc6cbe3bbfac7b0cde62044475320ccabbec3c1cba1a3c7ebcfb4b8f6d4e8a3acbbbbc9cfb8c9bebbd2c2b7fe203a2d29, 'Y', '2007-05-29 17:39:00'),
(538, 10, 0x4174617269a3babdd0b3d4becdcac7cdfed0b2d2aacce1b5f4d2bbd7d3bbf2d2bbc8bad7d3a1a3d5e2d2bbd7d3bbf2d5e2d2bbc8bad7d3d6bbcaa3cfc2d2bbbfdac6f8a1a3d5e2d2bbd7d3bbf2d5e2d2bbc8bad7d3becdcac722b1bbbdd0b3d422a1a30d0a0d0ad4dad5e6b5c4c6e5c5cccfc2c6e5cab1a3acbab0b3f622bdd0b3d422cac7b3a3bcfbb5c4c0f1c3b2a3acb5abb2a2b2bbcac7b1d8d2aab5c4a1a3cda8b3a3d4dac6e5bed6bfaacabcc7b0a3accbabb7bdbbe1d4bcb6a8bac3b8c3c8e7baceb4a6c0eda1a3d4dad6b8b5bcc6e5bbf2c8c3d7d3c6e5d6d0a3acb0d7b7bdbab0bdd0b3d4c0b4d0add6fabadab7bdcac7bacfc0edb5c4a1a30d0a0d0ab5abcac7d4dacdf8c2e7cfc2c6e5cab1b4f2b3f622bdd0b3d4a1b1b5c4d7d6d1dba3accda8b3a3b1bbcad3ceaab6e0d3e0d6aebed9a1a3, 'N', '2007-05-29 17:39:00'),
(540, 10, 0x4b6fa3ba22b4f2bdd922cac7d4dac6e5c5ccc9cfb3f6cfd6d6d8b8b4cce1c8a1c4b3d2bbd7d3b5c4c7e9bff6a1a3bdd9b5c4d7d6c3e6d2e2d2e5cac722ceded6d522a1a3, 'Y', '2007-05-29 17:39:00'),
(546, 10, 0x4b7975a3ba22bcb622b5c4d2e2cbbccac722b3f5d1a7b3ccb6c822a1a3bcb6b4d320333020bcb6b5bd203120bcb6a3ac3120bcb6d7eec7bfa1a3333020bcb6b5c4b3ccb6c8cac7c1cbbde2b9e6d4f2a3acb5abc1acd2bbc5ccc6e5b6bcbbb9c3bbcfc2a1a30d0a0d0acda8b3a3b5bd20313020bcb6d7f3d3d2a3acbcb6b5c4b3ccb6c8b2c5bbe1cec8b6a8cfc2c0b4a3acd5e2cab1baf2bfc9d2d4d3eb2031203c6120687265663d222f6661712e7068703f726561643d74266361743d3323456e7472793339223eb6ce3c2f613e20c6e5cad6bdf8d0d0203920d7d3203c6120687265663d222f6661712e7068703f726561643d74266361743d33353723456e7472793937223ec8c3d7d33c2f613e20b6d4bed6a1a3, 'Y', '2007-05-29 17:39:00'),
(548, 10, 0x44616ea3ba22b6ce22b5c4d2e2cbbccac722d7a8bcd2b3ccb6c822a1a3b6ceb4d3203120b6cebfaacabca3accafdc4bfd4bdb8dfd4bdc7bfa1a33520b6ced2b5d3e0c6e5cad6beddcbb5cfe0b5b1d3da203120b6ced6b0d2b5c6e5cabfa1a328d6b0d2b5c6e5cabfc3bbd3d0203c6120687265663d222f6661712e7068703f726561643d74266361743d3323456e7472793338223ebcb63c2f613e20b5c4c7f8b7d629, 'Y', '2007-05-29 17:39:00'),
(598, 10, 0x42796f2d796f6d69a3bab5b1c6e5bed6d6f7d2aacab1bce4d3c3cdeabaf3b5c4b5b9cafdcab1cfdeb9e6d4f2a1a3, 'Y', '2007-06-06 20:10:12'),
(622, 10, 0xc1fad6aeb39ecea7c6e5b1c8c8fc, 'Y', '2007-05-30 11:27:37'),
(500, 10, '', 'Y', '2003-02-26 01:50:10'),
(502, 10, 0xcea7c6e5caf5d3ef, 'Y', '2003-02-24 03:02:47'),
(507, 10, 0xccf9c4bf, 'Y', '2007-05-30 11:27:37'),
(522, 10, 0xbfaacabcd0c2bed6cab1bfc9d2d4d7a3b6d4cad6bac3d4cbc2f0a3bf, 'Y', '2007-05-29 17:39:00'),
(537, 10, 0xbdd0b3d4, 'N', '2007-05-30 11:27:37'),
(539, 10, 0xb4f2bdd9, 'Y', '2007-05-30 11:27:37'),
(545, 10, 0xbcb6, 'Y', '2007-05-30 11:27:37'),
(547, 10, 0xb6ce, 'Y', '2007-05-30 11:27:37'),
(553, 10, 0xced2b5c4bcc6cab1d6d3bacecab1bfaacabcbcc6cab1a3bf, 'Y', '2007-05-29 17:39:00'),
(565, 10, 0xc1fad6aeb39ebde9c9dc, 'Y', '2007-05-29 17:39:00'),
(566, 10, 0xd5e2c0efcac7cab2e7dbb5d8b7bda3bf, 'Y', '2007-05-29 17:39:00'),
(568, 10, 0xced2bbb9b2bbc7e5b3feced2b5c4b3f5cabcb5c8bcb6a1ad, 'Y', '2007-05-29 17:39:00'),
(522, 5, 0x4573742d696c20636f727265637420646520736f756861697465722022476f6f64206c75636b222028626f6e6e65206368616e63652920656e2064e9627574616e7420756e6520706172746965266e6273703b3f, 'Y', '2003-10-13 17:07:59'),
(523, 5, 0x4f75692e2043656369206120e974e9207472616974e920656e2070726f666f6e64657572203c6120687265663d222f666f72756d2f726561642e7068703f663d3526616d703b693d31343126616d703b743d313431223e6963693c2f613e2e0d0a4365727461696e73206a6f7565757273207574696c6973656e74206175737369206c65207465726d6520747261646974696f6e6e656c203c6120687265663d222f6661712e7068703f726561643d7426616d703b6361743d3323456e7472793738223e6f6e656761697368696d6173753c2f613e2e, 'Y', '2013-04-04 22:40:21'),
(538, 5, 0x41746172692064e97369676e6520756e65206d656e61636520696d6de964696174652064652063617074757265206427756e6520706965727265206f75206427756e2067726f7570652e2041766563206c2761746172692c206c6120706965727265206f75206c652067726f757065206e6520706f7373e8646520706c757320717527756e65207365756c65206c6962657274e92e0d0a4469726520ab266e6273703b6174617269266e6273703bbb207175616e64206f6e206d656e616365206465207072656e64726520756e2067726f75706520646520706965727265732070656e64616e74206c65206a6575206e2765737420706173206ee9636573736169726520617520476f2c20636f6e7472616972656d656e742061757820264561637574653b6368656373206ff9206c276f6e20646f6974206469726520ab266e6273703be963686563266e6273703bbb207175616e64206f6e206d656e616365206c6520726f6920616476657273652e0d0a456e2067e96ee972616c2c206f6e206e652072e973657276652063657474652070726174697175652071752761757820706172746965732070e96461676f67697175657320636f6e74726520756e2064e9627574616e7420706f7572206c27616964657220e020636f6d7072656e647265206c65206a65752e, 'Y', '2013-04-04 22:11:10'),
(539, 5, '', 'Y', '2011-10-26 12:06:49'),
(540, 5, 0x556e206b6f2065737420756e6520736974756174696f6e2064652063617074757265732072e970e9746974697665732073616e73206d6f64696669636174696f6e20676c6f62616c6520647520706c61746561752e20456e206a61706f6e6169732c206b6f207665757420646972652022e97465726e6974e9222e0d0a5175616e6420756e206b6f20617070617261ee742c20696c2079206120756e652072e8676c65207370e96369616c6520706f7572207065726d6574747265206175206a65752064652066696e6972266e6273703b3a0d0a4176616e7420646520726563617074757265722c206f6e20657374206f626c6967e9206465206a6f756572206175747265207061727420737572206c6520706c61746561752e, 'Y', '2003-08-21 16:07:58'),
(568, 5, 0x4a65206e27616920706173206c61206d6f696e647265206964e965206465206d6f6e206e69766561752e2051756520646f69732d6a6520696e646971756572266e6273703b3f, 'Y', '2003-11-08 17:01:14'),
(569, 5, 0x456e2064e9627574616e7420617520476f2c20766f757320ea7465732c20656e2067e96ee972616c266e6273703b3a0d0a3c756c3e3c6c693e3330206b79752c20736920766f757320636f6e6e61697373657a206c65732072e8676c657320647520476f2e0d0a3c6c693e32392d3238206b79752c20736920766f7573206176657a2064e96ae0206a6f75e9207175656c7175657320706172746965732e0d0a3c6c693e32372d3236206b79752c20736920766f7573206176657a2064e96ae0206761676ee9207175656c71756573207061727469657320636f6e7472652064276175747265732064e9627574616e74732e0d0a3c6c693e32352d3232206b79752c20736920766f7573206176657a2064e96ae0206761676ee9207175656c71756573207061727469657320636f6e74726520646573206a6f7565757273206e6f6e2064e9627574616e74732e0d0a3c6c693e617520646573737573206465203232206b79752c20736920766f757320636f6e6e61697373657a20766f747265206e69766561752e0d0a3c2f756c3e0d0a0d0a556e6520617574726520706f73736962696c6974e9206427e976616c756174696f6e20202d20706f757220636575782071756920636f6e6e61ee7373656e742064e96ae0206c65732072e8676c6573202d2065737420646520706173736572203c4120485245463d22687474703a2f2f706c61792e626164756b2e6f72672f223e636520746573743c2f413e206465203130206d696e75746573206574207574696c6973657220736f6e2072e973756c74617420636f6d6d65206e697665617520696e697469616c206368657a20447261676f6e2e0d0a0d0a4d65726369206465206e65207061732064e96275746572206176656320756e206e69766561752074726f7020e96c6576e92028706172206578656d706c652022362064616e22292c2063617220756e6520666f69732064e97465726d696ee92c20766f747265206e697665617520696e697469616c203c623e6e65207065757420706c75733c2f623e20ea747265206d6f64696669e920e0206e6f75766561752e0d0a43686f6973697373657a2d6c65207061726d69206c65732076616c657572732070726f706f73e965732063692d6465737375732c206f7520656e2072656e736569676e616e7420766f7472652076726169206e697665617520736920766f7573206c6520636f6e6e61697373657a2e0d0a536920766f7573206e27ea74657320746f756a6f757273207061732073fb722064652063652071756520766f757320646576657a2063686f697369722c20766f7320706f7576657a2064656d616e646572206465206c276169646520737572206c65203c686f6d6520666f72756d2f6c6973742e7068703f666f72756d3d323e466f72756d3c2f686f6d653e2e, 'N', '2013-04-06 13:12:36'),
(1444, 17, 0x4f737461746e692072756368, 'Y', '2013-08-21 00:30:48'),
(1399, 25, 0x43c3a2742074696d7020767265692073c48320616461756769206164766572736172756c7569, 'Y', '2010-09-18 00:21:27'),
(1400, 25, 0x6164c48375676174c483286529206c612074696d70756c207072696e636970616c20616c206164766572736172756c7569, 'Y', '2010-09-18 00:21:27'),
(1403, 25, 0x416e756c617265, 'Y', '2010-09-18 00:21:54'),
(575, 5, 0x506f757271756f6920447261676f6e20766575742d696c20636f6e6e61ee747265206d6f6e206164726573736520452d6d61696c266e6273703b3f, 'Y', '2003-10-13 17:07:59'),
(576, 5, 0x506f757220766f757320656e766f79657220756e206e6f7576656175206d6f7420646520706173736520736920766f7573206c276176657a206f75626c69e92e0d0a0d0a4e27656e766f796572206c65206e6f7576656175206d6f7420646520706173736520717527e0206c276164726573736520452d6d61696c20696e64697175e9652064616e7320766f7472652070726f66696c2064277574696c697361746575722065737420756e206d6f79656e20666163696c65206427617373757265722071756520766f757320656e20736572657a206269656e206c652062e96ee966696369616972652e0d0a447261676f6e20726573706563746520766f747265207669652070726976e9652e20566f7573206e6520726563657672657a20706173206427452d6d61696c20696e64e973697261626c65732e20566f747265206164726573736520452d6d61696c20726573746572612073656372e87465206574206e6520736572612076656e64756520e020706572736f6e6e652e0d0a0d0a4269656e2073fb722c20447261676f6e206e6520766f7573206f626c6967652070617320e020696e64697175657220766f747265206164726573736520452d6d61696c2e20536920766f7573206e65206c6520666169746573207061732c20766f757320706f757272657a20746f756a6f757273206a6f75657220636f6d6d65206e27696d706f727465207175656c206175747265206a6f756575722e2e2e206d6169732064616e73206365206361732c206e276f75626c69657a203c623e737572746f7574207061733c2f623e20766f747265206d6f74206465207061737365266e6273703b21, 'Y', '2005-01-24 11:37:26'),
(597, 5, '', 'Y', '2011-10-26 12:06:49'),
(598, 5, 0x4c65732072e8676c6573207370e96369616c6573206465206c696d69746174696f6e2064652074656d70732073276170706c697175616e74207175616e64206c6120647572e965207072696e636970616c65206475206a6575206573742064e970617373e9652e, 'Y', '2003-08-21 16:07:58'),
(639, 5, 0x4c65207365727665757220447261676f6e2c206327657374206772e2636520e020717569266e6273703b3f, 'Y', '2003-11-24 01:11:00'),
(640, 5, 0x4c65207365727665757220447261676f6e2028447261676f6e20476f20536572766572292028444753292065737420756e2070726f6a65742073616e732062757420636f6d6d65726369616c20646f6e74206c657320736f757263657320736f6e7420656e206c6962726520616363e87320286f70656e20736f75726365292e20496c206120e974e9206372e9e92070617220657420706f75722064657320706572736f6e6e6573207175692061696d656e74206a6f75657220617520476f20656e20ab266e6273703b746f7572266e6273703b706172266e6273703b746f7572266e6273703bbb2e0d0a0d0a447261676f6e206120e974e920636f6ee77520706172203c6120687265663d222f75736572696e666f2e7068703f7569643d32223e4572696b3c2f613e20657420657374203c6120687265663d22687474703a2f2f736f75726365666f7267652e6e65742f70726f6a6563742f6d656d6265726c6973742e7068703f67726f75705f69643d323939333322207461726765743d225f626c616e6b223e6d61696e74656e753c2f613e20706172203c6120687265663d222f75736572696e666f2e7068703f7569643d3222207461726765743d225f626c616e6b223e4572696b3c2f613e2c203c6120687265663d222f75736572696e666f2e7068703f7569643d323038223e5261676e61723c2f613e206574203c6120687265663d222f75736572696e666f2e7068703f7569643d3130353622207461726765743d225f626c616e6b223e526f643c2f613e2e20446f6e6e657a206c65757220756e65206f766174696f6e266e6273703b21266e6273703b3a2d290d0a0d0a4c6120462e412e512e2065737420626173e96520737572203c623e766f733c2f623e2072e9616374696f6e732c20657420657374206d61696e74656e756520706172203c6120687265663d222f75736572696e666f2e7068703f7569643d3137303022207461726765743d225f626c616e6b223e4672616e6b3c2f613e206574203c6120687265663d222f75736572696e666f2e7068703f7569643d393322207461726765743d225f626c616e6b223e426af8726e3c2f613e2e0d0a0d0a4447532065737420747261647569742064616e73206469766572736573206c616e677565732e204c657320747261647563746575727320e02066e96c69636974657220736f6e7420e96e756de972e9732064616e73206365747465203c6120687265663d222f70656f706c652e70687022207461726765743d225f626c616e6b223e706167653c2f613e2e, 'N', '2003-11-24 01:11:00'),
(509, 10, 0xc1fad6aeb39ec0f1d2c7, 'Y', '2007-05-29 17:39:00'),
(510, 10, 0xc1fad6aeb39eb3ccd0f2d0a1c3abb2a1, 'N', '2007-05-29 17:39:00'),
(513, 10, 0xc1fad6aeb39ed1d0b7a2, 'Y', '2007-05-29 17:39:00'),
(514, 10, 0xbec8c3fca3a1b5bdb4a6b6bccac7b3ccd0f2c3abb2a1a3a1, 'Y', '2007-05-29 17:39:00'),
(525, 10, 0xced2c4dcbda8d2e9d0c2b9a6c4dcc2f0a3bf, 'Y', '2007-05-29 17:39:00'),
(526, 10, 0xb5b1c8bbbfc9d2d4a3a1c7ebb0d1bda8d2e9b5c7d4da203c4120485245463d222f70686f72756d2f6c6973742e7068703f663d34223ec2dbccb33c2f413e2e0d0a0d0ad2d1beadbda8d2e9b5c4cac2cfeebfc9b2cebfbc22c1fad6aeb39ec2dbccb3cbd1d1b0d1a1cfee22a3acbbb9d3d0203c4120485245463d22687474703a2f2f73656e736569732e786d702e6e65742f3f444753576973686c69737422205441524745543d225f626c616e6b223e2253656e7365692773204c696272617279c1fad6aeb39ed0edd4b8b5a5223c2f413e20d2d4bcb022536f75726365666f726765c1fad6aeb39ebcc6bbad435653b1e4b8fcbccdc2bc22a1a3, 'N', '2007-05-29 17:39:00'),
(554, 10, 0xd2d4cfc2b5c4c7e9bff6b2bbbbe1bcc6cab1a3ba3c756c3e0d0a3c6c693ebbbbb6d4cad6cfc2b5c4cab1baf23c2f6c693e0d0a3c6c693eb5b1c4fab4a6d3da203c6120687265663d222f6661712e7068703f726561643d74266361743d353623456e7472793631223ecbafc3dfcab1bce43c2f613e3c2f6c693e0d0a3c6c693eb5b1c4fab4a6d3da203c6120687265663d222f6661712e7068703f726561643d74266361743d353623456e7472793636223ebcd9c6da3c2f613e3c2f6c693e0d0a3c6c693ed6dcc4a9cab1a3a8b1d8d0ebd4da203c6120687265663d222f6661712e7068703f726561643d74266361743d33353723456e7472793434223ed1fbc7ebc6e5bed63c2f613e203c2f6c693ecab1d1a1d4f1b4cbb9a6c4dca3a90d0a3c2f756c3e, 'N', '2007-05-29 17:39:00'),
(575, 10, 0xc1fad6aeb39eceaabaced2aad6aab5c0ced2b5c4b5e7d7d3d3cabcfeb5d8d6b7a3bf, 'Y', '2007-05-30 11:27:37'),
(576, 10, 0xceaac1cbb4abcbcdd0c2b5c4c3dcc2eba3a8c8e7b9fbd3d0b4cbd0e8d2aaa3a9a1a3b4abcbcdd0c2c3dcc2ebb5bd3c693eb4a2b4e6d4dac6e5cad6b8f6c8cbd7cac1cf3c2f693eb5c4b5e7d7d3d3cabcfeb5d8d6b7a3acb1c8bdcfc8ddd2d7c8cfd6a4c6e5cad6a1a30d0a0d0ac1fad6aeb39ed7f0d6d8d2fecbbda3ba44475320b2bbbbe1d6f7b6afbcc4cbcdb2bbd0e8d2aab5c4d0c5bcfea1a3cedec8cbc4dcbfb4b5bdc6e4cbfcc8cbb5c4b5e7d7d3d3cabcfeb5d8d6b7a3acb5e7d7d3d3cabcfeb5d8d6b7d2b2b2bbbbe1c2f4b8f8c8cebacec8cba1a30d0a0d0ac1fad6aeb39ec8ddd0edd3c3bba73c693eb2bbb4a2b4e63c2f693eb5e7d7d3d3cabcfeb5d8d6b7a1a3d2f2b4cbc7eb3c693ed0a1d0c43c2f693eb2bbd2aacdfcbcc7c3dcc2eba3a1, 'Y', '2007-10-01 07:26:26'),
(597, 10, 0xb5b9cafd28b6c1c3eb29bcc6cab1, 'Y', '2007-06-06 20:10:12'),
(505, 10, 0xc4bf, 'Y', '2007-05-30 11:27:37'),
(506, 10, 0x4d6f6b75a3bad4dac5ccc9cfb5c4d2bbb8f6bfd5b5e3a1a3, 'N', '2007-05-29 17:39:00'),
(518, 10, 0xb2c2d7d3, 'N', '2007-05-30 11:27:37'),
(519, 10, 0x4e69676972693a20b2c2d7d3cac7d3c3c0b4bef6b6a8cbadc4c3badad7d3a1a3d2bbb7bda3a8cda8b3a3cac7bdcfc4eab3a4d5dfa3a9d7a5c8a1d2bbb0d1b0d7d7d3a3acc1edd2bbb7bdd1a1d4f1d2bbbfc5bbf2c1bdbfc5badad7d3b7c5d4dac6e5c5ccc9cfa3acc0b4b2c2b6d4b7bdcad6d6d0b5c4b0d7d7d3cac7cbabcafdbbf2b5a5cafda1a3c8e7b9fbb2c2b6d4c1cbbecdc4c3badad7d3a3acb2c2b4edc1cbbecdc4c3b0d7d7d3a1a30d0a0d0ad4dac1fad6aeb39ea3acd5e2b8f6b9fdb3ccd3c9cfb5cdb3b4a6c0eda1a3c4c3b0d7d7d3d2bbb7bdbfc9d2d4b5c3b5bd203620c4bfb0ebb5c4ccf9c4bfa1a30d0a0d0ad7eebac3cac7c6e5c1a6cfe0b5b1b5c4c6e5cad6b2c5d3c3b2c2d7d3a1a3, 'N', '2007-05-29 17:39:00'),
(601, 10, '', 'Y', '2012-07-15 07:07:26'),
(602, 10, 0x53474620cac720536d6172742047616d6520466f726d617420b5c4cbf5d0b4a3acd5e2cac7d3c3c0b4b4a2b4e6cea7c6e5a3a8bbf2c6e4cbfcd3cecfb7a3a9c6e5c6d7b5c4b5b5b0b8a1a3cfb8bddac7ebbfb45347462046465b345d20b1ead7bcb5c4203c6120687265663d22687474703a2f2f7777772e7265642d6265616e2e636f6d2f7367662f22207461726765743d6e65773ed5fdcabdb8f1cabd3c2f613ea1a3, 'Y', '2007-05-30 11:27:37'),
(623, 10, '', 'N', '2003-02-24 08:33:15'),
(624, 10, 0xa1adb4abcdb3b5c4c8d5b1becea7c6e5cecabaf2d3efa3acd2e2cbbccac7a3ba22d0bbd0bbd1fbc7eba3acd7a3bac3d4cba3a122, 'N', '2007-05-30 11:27:37'),
(625, 10, 0xc1fad6aeb39ecac7b7f1d3d0d6b1bdd3d6f7b0ecc8cebaceb1c8c8fca3bf, 'Y', '2007-05-30 11:27:37'),
(626, 10, 0xbbb9c3bbd3d0a1a3, 'Y', '2007-05-30 11:27:37'),
(639, 10, 0xc1fad6aeb39ed3d0c4c4d0a9c8c8d0c4d0add6fad5dfa3bf, 'Y', '2007-05-30 11:27:37'),
(640, 10, 0xc1fad6aeb39ea3a8444753a3a9cac7b7c7c9ccd2b5d0d4d3ebbfaab7c5c2ebb5c4cdc5b6d3bcc6bbada3acd3c9cfb2bbb6cde6bbd8bacfd6c6cea7c6e5b5c4c8cbceaacdacbac3cbf9d1d0b7a2a1a344475320d3c9203c6120687265663d222f75736572696e666f2e7068703f7569643d3222207461726765743d225f626c616e6b223e4572696b3c2f613e20b4b4c1a2a3acb2a2d3c9203c6120687265663d222f75736572696e666f2e7068703f7569643d3222207461726765743d225f626c616e6b223e4572696b3c2f613e20d3eb203c6120687265663d222f75736572696e666f2e7068703f7569643d3130353622207461726765743d225f626c616e6b223e526f643c2f613e203c6120687265663d22687474703a2f2f736f75726365666f7267652e6e65742f70726f6a6563742f6d656d6265726c6973742e7068703f67726f75705f69643d323939333322207461726765743d225f626c616e6b223eb8bad4f0ceacbba43c2f613ea1a3b3a3bcfbcecacce2cac7b8f9bedd3c423ec4fab5c43c2f423ed2e2bcfba3acd3c9203c6120687265663d222f75736572696e666f2e7068703f7569643d393322207461726765743d225f626c616e6b223e426a6f726e20496e676d61723c2f613e20b8bad4f0ceacbba4a1a344475320b1bbb7add2ebb3c9cafdb9fad3efd1d4a1a3b7add2ebc8cbd4b1c3fbb5a5d4da203c6120687265663d222f70656f706c652e70687022207461726765743d225f626c616e6b223ed5e2c0ef3c2f613e20d2d4bcb0203c4120485245463d222f70686f72756d2f6c6973742e7068703f663d37223eb7add2ebc2dbccb33c2f413ea1a3, 'N', '2007-10-01 09:24:54'),
(332, 10, 0xc1edd2e9c9e8b6a8, 'Y', '2007-05-30 12:08:05'),
(535, 10, 0xcad5b9d9, 'Y', '2007-02-21 19:37:05'),
(536, 10, 0x596f7365a3bad6d5c5cca3acc6e5bed6b5c4d7eebaf3bdd7b6cea3acd2d1beadc3bbd3d0b9a5bbf7cfc2b7a8a3acd6bbd3d0c0a9d5b9bcc8d3d0b5d8c5ccb5c4d7eebcd1cfc2b7a8a1a3, 'Y', '2007-05-29 17:39:00'),
(573, 10, 0xb3a3bcfbcecacce2d7eebdfcd3d0baced0deb8c4a3bf, 'Y', '2007-10-01 09:24:54'),
(574, 10, '', 'Y', '2007-05-30 11:27:37'),
(607, 10, 0xced2c4dcb3c9ceaac1fad6aeb39eb5c4d1d0b7a2c8cbd4b1c2f0a3bf, 'Y', '2007-05-30 11:27:37'),
(608, 10, 0xd2b2d0edbfc9d2d4a1a3c4fab1d8d0ebcaeccfa4cea7c6e5b9e6d4f2a3ac50485020d3eb204d7953514ca1a30d0a0d0ac7ebb2ced4c4203c4120485245463d22687474703a2f2f736f75726365666f7267652e6e65742f70726f6a656374732f647261676f6e676f73657276657222205441524745543d225f626c616e6b223e536f75726365466f726765c1fad6aeb39ed1d0b7a2cdf8d2b33c2f413e20b2a2c7d2c7ebd7a2b2e1203c4120485245463d22687474703a2f2f6c697374732e736f75726365666f7267652e6e65742f6c697374732f6c697374696e666f2f647261676f6e676f7365727665722d646576656c22205441524745543d225f626c616e6b223ec1fad6aeb39ed1d0b7a2b5e7d7d3d3cabcfec1d0b1ed3c2f413ea1a3, 'N', '2007-05-30 11:27:37'),
(621, 10, 0xc8abb2bfcecab4f0cfd4cabed3dad2bbd2b3, 'Y', '2007-05-30 11:27:37'),
(571, 10, 0xceaabacebcd9c6dacab1bce4d3d0cfded6c6a3bf, 'Y', '2007-05-29 17:39:00'),
(572, 10, 0xc8e7b9fbbcd9c6dac3bbd3d0cfded6c6a3acc4faa3a8bbf2b6d4cad6a3a9d2b2d0edbbe1d6d8b8b4d1a1d4f1d2bbccecb5c4bcd9c6dac0b4b1dcc3e2d3c3b9e2b6d4bed6cab1bce4a1a3c8e7b4cbbdabcab9d4adc0b4c9e8b6a8b5c4cab1cfdecaa7c8a5d2e2d2e5a1a30d0a0d0ad2f2b4cbc1fad6aeb39eb6d4bcd9c6dad3d0d2d4cfc2cfded6c6a3ba0d0a3c756c3e3c6c693ed2d1beadbfaacabcb5c4bcd9c6da3c623ecedeb7a83c2f623eb1bbc8a1cffba1a33c2f6c693e3c2f756c3e, 'N', '2007-05-29 17:39:00');
INSERT INTO `Translations` (`Original_ID`, `Language_ID`, `Text`, `Translated`, `Updated`) VALUES
(567, 10, 0xd4dac1fad6aeb39ea3a8444753a3a9bfc9d2d4cde6203c6120687265663d226661712e7068703f726561643d74266361743d3323456e747279313532223ebbd8bacfd6c63c2f613e20cea7c6e5a1a3badcc0e0cbc6cda8d0c5cfc2c6e5a1a30d0a0d0ac6e5cad6cda8b3a3d2bbd6dccfc2cee5cad6a1a3d2f2b4cbcfc2d2bbc5ccc6e5d2aabba8cafdd6dccab1bce4a3bbc1fad6aeb39eb8bad4f0c1cfc0edd3d0b9d8bcc6cab1d3ebd3d0d0a7c6c0b5c8b5c422c2e9b7b322b9a4d7f7a1a30d0a0d0ad4dad5e2c0ef3c623ecedeb7a83c2f623ecfc2203c6120687265663d226661712e7068703f726561643d74266361743d3323456e747279313533223ecab5cab13c2f613e20b6d4bed6a1a3cab5cab1b6d4bed6b5c4d2e2cbbccac7a3acd4bcd2bbd0a1cab1becdbfc9d2d4cfc2cdead2bbc5ccc6e5a1a3c8e7b9fbc4facfb2bbb6cfc2cab5cab1b6d4bed6a3acc4fabfc9d2d4cad4cad4bfb4203c6120687265663d22687474703a2f2f73656e736569732e786d702e6e65742f3f476f53657276657222207461726765743d225f626c616e6b223ec6e4cbfc3c2f613e20cab5cab1cea7c6e5cdf8d5bea3acc0fdc8e7203c6120687265663d22687474703a2f2f6b67732e6b69736569646f2e636f6d2f22207461726765743d225f626c616e6b223e4b47533c2f613e20bbf2203c6120687265663d22687474703a2f2f70616e64612d6967732e6a6f796a6f792e6e65742f22207461726765743d225f626c616e6b223e4947533c2f613ea1a30d0a0d0a44475320d2b2cce1b9a9203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f70686f72756d2f223ec2dbccb33c2f613e20c0b4ccd6c2dbcea7c6e5d3ebc1fad6aeb39ea1a3, 'N', '2007-05-29 17:39:00'),
(569, 10, 0xc8e7b9fbc4fab8d5d1a7cea7c6e5a3acc4c7e7dbc4fad2b2d0edcac73c756c3e0d0a3c6c693e333020bcb6a3bad6aab5c0cea7c6e5b9e6d4f20d0a3c6c693e32392d323820bcb6a3bacfc2b9fdbcb8c5cccea7c6e50d0a3c6c693e32372d323620bcb6a3bad3aeb9fdc6e4cbfcb3f5d1a7d5dfbcb8c5ccc6e50d0a3c6c693e32352d323220bcb6a3bad3aeb9fdc6e4cbfcb7c7b3f5d1a7d5dfbcb8c5ccc6e50d0a3c2f756c3e0d0a0d0ac1edd2bbd6d6c6c0b6a822bdf8bdd7b3f5d1a7d5df22b5c4b7bdcabdcac7a3acbba8d4bc20313020b7d6d6d3cdeab3c9203c4120485245463d687474703a2f2f7777772e6d6f746f7273636f70652e636f6d2f646f6a6f2f74657374732f205441524745543d5f626c616e6b3eb4cbb2e2d1e93c2f413e20c0b4bef6b6a8c4fad4dac1fad6aeb39eb5c4b3f5cabcb5c8bcb6a1a3, 'N', '2007-05-29 17:39:00'),
(523, 10, 0xb5b1c8bbbfc9d2d4a1a3d3d0d0a9c6e5cad6d2b2cfb2bbb6b4abcdb3b5c4c8d5d3ef203c6120687265663d222f6661712e7068703f726561643d74266361743d3323456e7472793738223e6f6e656761697368696d6173753c2f613ea1a3, 'N', '2007-05-29 17:39:00'),
(502, 6, 0x54e9726d696e6f7320646520476f, 'Y', '2003-02-24 21:31:01'),
(505, 6, '', 'Y', '2007-11-03 16:08:38'),
(506, 6, 0x556e2070756e746f206465207465727269746f72696f2e, 'Y', '2013-11-11 22:23:13'),
(507, 6, '', 'Y', '2007-11-03 16:08:38'),
(508, 6, 0x556e206efa6d65726f2065787472612064652070756e746f7320283c686f6d65206661712e7068703f726561643d74266361743d3323456e747279383e6d6f6b753c2f686f6d653e292071756520736520646120616c206a756761646f7220626c616e636f2e205469656e6520766172696f732075736f733a0d0a3c6f6c3e0d0a3c6c693e5061726120636f6d70656e736172206c612076656e74616a6120717565207469656e6520656c206a756761646f72206e6567726f20706f72206a75676172206c61207072696d65726120706965647261206465206c6120706172746964612e0d0a3c6c693e506172612065766974617220756e20656d7061746520283c686f6d65200d0a6661712e7068703f726561643d74266361743d3323456e7472793234303e6a69676f3c2f686f6d653e29207574696c697a616e646f20756e206efa6d65726f206672616363696f6e6172696f2028706f7220656a656d706c6f20756e206b6f6d6920646520362e35292e0d0a3c6c693e506172612061637475617220636f6d6f20636f6d70656e73616369f36e20656e747265206a756761646f7265732064652064697374696e746f206e6976656c2e0d0a50617261206de17320696e666f726d616369f36e3a203c686f6d65206661712e7068703f726561643d74266361743d33353723456e74727939383ebf4375e16c206573206c61206469666572656e63696120656e7472652068e16e646963617020636f6e76656e63696f6e616c2079206170726f706961646f3f3c2f686f6d653e0d0a3c2f6f6c3e, 'Y', '2013-11-11 22:23:13'),
(509, 6, 0x457469717565746120646520447261676f6e, 'Y', '2003-02-24 21:31:01'),
(510, 6, 0x4572726f72657320792070726f626c656d617320646520447261676f6e, 'Y', '2013-01-26 14:03:00'),
(518, 6, '', 'Y', '2013-11-11 22:13:31'),
(522, 6, 0xbf457320636f72726563746f2064657365617220224275656e6120737565727465222061207475206f706f6e656e746520616c207072696e636970696f206465206c6120706172746964613f, 'Y', '2003-08-11 04:36:23'),
(537, 6, '', 'Y', '2013-11-11 22:23:13'),
(539, 6, '', 'Y', '2007-11-03 16:08:38'),
(545, 6, '', 'Y', '2007-11-03 16:08:38'),
(547, 6, '', 'Y', '2007-11-03 16:08:38'),
(597, 6, '', 'Y', '2007-11-03 16:08:38'),
(601, 6, '', 'Y', '2007-11-03 16:08:38'),
(639, 6, 0xbf517569e96e2068697a6f20447261676f6e3f, 'Y', '2003-02-24 21:35:50'),
(548, 6, 0x44616e207369676e6966696361202272616e676f20646520756e206d61657374726f222e204c6f732072616e6b732064652064616e2076616e206465736465203120656e206164656c616e74652c20756e206efa6d65726f206de17320616c746f20696e6469636120756e206a756761646f72206de173206675657274652e20556e20616d617465757220352064616e206573206170726f78696d6164616d656e746520696775616c20656e20667565727a61206120312064616e2070726f666573696f6e616c2e20284c6f732070726f666573696f6e616c6573206e6f207469656e656e2072616e6b73206465206b7975292e, 'Y', '2003-08-29 06:13:13'),
(565, 6, 0x5072696e63697069616e746520656e20447261676f6e, 'Y', '2003-02-24 21:38:12'),
(566, 6, 0xbf5175e9206573206573746520736974696f3f, 'Y', '2003-02-24 21:38:12'),
(494, 10, 0x2573b5c4d7cac1cf, 'Y', '2007-05-30 12:22:26'),
(618, 10, 0xd4adc0b4b5c8bcb6, 'Y', '2007-05-29 13:11:09'),
(619, 10, 0xbde1caf8b5c8bcb6, 'Y', '2007-05-29 13:11:09'),
(620, 10, 0xced2b7bdd4f6bcf5, 'Y', '2007-06-03 15:09:48'),
(502, 14, 0x476f2d7465726d6974, 'Y', '2003-02-25 09:13:10'),
(505, 14, '', 'Y', '2006-11-14 11:49:44'),
(506, 14, 0x50697374652c20796b736920766170617573206c617564616c6c612e, 'N', '2003-02-25 09:13:10'),
(507, 14, '', 'Y', '2006-11-14 11:49:44'),
(508, 14, 0x596c696de4e472e4697369e42070697374656974e42c206a6f69746120616e6e657461616e2076616c6b6f6973656c6c65207461736f697474616d61616e206d757374616e20616c6f6974756b7365737461207361616d616120657475612e, 'N', '2003-02-25 09:13:10'),
(509, 14, 0x447261676f6e696e206574696b65747469, 'Y', '2003-02-25 09:13:10'),
(510, 14, 0x447261676f6e696e20666f6f72756d6974, 'N', '2003-02-25 09:13:10'),
(513, 14, 0x554b4b, 'Y', '2003-02-25 09:13:10'),
(514, 14, 0x4b75696e6b6120757365696e206b797379747974206b7973796d796b73657420746f696d697661743f, 'Y', '2003-02-25 09:13:10'),
(518, 14, '', 'N', '2006-11-14 11:49:44'),
(522, 14, 0x4f6e6b6f20736f706976616120746f69766f7474616120766173746170656c61616a616c6c6520687976e4e4206f6e6e65612070656c696e20616c757373613f, 'Y', '2003-02-25 09:13:10'),
(523, 14, 0x4b796c6ce42e3c62723e3c62723e41696865747461206f6e203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f70686f72756d2f726561642e7068703f663d3526693d31343126743d313431223e7075697475206b796c6ce47374796d697365656e20617374693c2f613e2e204b6f6d6d656e7474656a612070756f6c6573746120746169207661737461616e2073616120746f6b69206573697474e4e42e, 'N', '2003-02-25 09:13:10'),
(537, 14, '', 'N', '2006-11-14 11:49:44'),
(538, 14, 0x4174617269206f6e2075686b617573206b616170617461206b69766920746169207279686de4206b697669e42c206a6f6c6c61206f6e20656ee4e420796b736920766170617573206ae46c6a656c6ce42e204b756e2070656c61612074e46c6c616973656e2075686b61756b73656e2c206f6e206b6f6874656c69617374612073616e6f6120224174617269222c206d75747461207365206569206f6c65206d6974656e6be4e46e2076e46c7474e46de474f66e74e42e, 'N', '2003-02-25 09:13:10'),
(539, 14, '', 'Y', '2006-11-14 11:49:44'),
(540, 14, 0x54696c616e6e65206c617564616c6c612c206a6f7373612073616d612061736574656c6d6120746f6973747575206c6f707574746f6d69696e2c206b756e206a6f7461696e206b697665e4206b616170617461616e2076756f726f74656c6c656e2e205461726b6f6974746161206b69726a61696d656c6c6973657374692022696b7569737575747461222e2053e4e46e6ef674206b69656c74e476e474206b6f3a6e2e, 'Y', '2003-02-25 09:13:10'),
(545, 14, '', 'Y', '2006-11-14 11:49:44'),
(547, 14, '', 'Y', '2006-11-14 11:49:44'),
(618, 14, 0x416c6f697475736c756f6b69747573, 'Y', '2003-02-25 12:08:27'),
(619, 14, 0x4c6f7070756c756f6b69747573, 'Y', '2003-02-25 12:08:27'),
(620, 14, 0x4c756f6b6974756b73656e206d7575746f73, 'Y', '2003-02-25 12:08:27'),
(515, 14, 0x557365696e206b7973797474796ae4206b7973796d796b7369e420796c6ce4706974e4e4203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f75736572696e666f2e7068703f7569643d3933223e426af8726e20496e676d617220426572673c2f613e2e0d0a0d0a4b61696b6b69206d7575746f736568646f74756b736574206a61206b6f6d6d656e7469742074756c6565206ce468657474e4e420447261676f6e696e20554b4b2d6b65736b757374656c75666f6f72756d696c6c652e, 'Y', '2003-02-25 12:08:27'),
(574, 14, '', 'Y', '2006-11-14 11:49:44'),
(597, 14, '', 'Y', '2006-11-14 11:49:44'),
(601, 14, '', 'Y', '2006-11-14 11:49:44'),
(505, 4, '', 'Y', '2012-07-29 12:52:42'),
(507, 4, '', 'Y', '2012-07-29 12:52:42'),
(618, 4, 0x416e66616e67737374e4726b65, 'Y', '2007-12-06 11:19:43'),
(619, 4, 0x456e647374e4726b65, 'Y', '2007-12-06 11:19:43'),
(620, 4, 0x5374e4726b656ee46e646572756e67, 'Y', '2007-12-06 11:19:43'),
(411, 4, '', 'Y', '2012-07-29 12:52:42'),
(470, 4, 0x4368696e6573697363682028747261646974696f6e656c6c29, 'Y', '2003-02-25 19:10:31'),
(472, 4, 0x4368696e657369736368202876657265696e666163687429, 'Y', '2003-02-25 19:10:31'),
(479, 4, 0x546861696ce46e6469736368, 'Y', '2003-02-25 19:10:31'),
(500, 4, 0x46696e6e69736368, 'Y', '2003-02-25 19:10:31'),
(257, 4, 0x4a616e2076616e2064657220537465656e732053656974656e, 'Y', '2003-02-25 19:25:02'),
(267, 4, '', 'Y', '2012-07-29 12:52:42'),
(297, 4, 0x4b6f6d6d656e74696572746520476f2d4269626c696f67726170686965, 'Y', '2003-02-25 19:25:02'),
(299, 4, 0x4575726f70e4697363686573204765736368e46674, 'Y', '2003-02-25 19:25:02'),
(340, 4, 0x4641512d42656172626569746572, 'Y', '2003-02-25 19:25:02'),
(502, 4, 0x476f2d4265677269666665, 'Y', '2007-12-06 15:00:11'),
(506, 4, 0x45696e204765626965747370756e6b742e, 'Y', '2010-11-05 23:10:18'),
(508, 4, 0x45696e6520416e7a61686c20766f6e207a7573e4747a6c696368656e2050756e6b74656e20283c686f6d65206661712e7068703f726561643d74266361743d3323456e747279383e6d6f6b753c2f686f6d653e292c2064696520576569df20657268e46c742c20756d0d0a0d0a3c6f6c3e0d0a3c6c693e64656e20457273747a756773766f727465696c20766f6e205363687761727a206175737a75676c65696368656e0d0a3c6c693e65696e20556e656e74736368696564656e20283c686f6d65200d0a6661712e7068703f726561643d74266361743d3323456e7472793234303e6a69676f3c2f686f6d653e29206d697468696c66652065696e65732068616c62656e2050756e6b746573207a75207665726d656964656e20287a756d20426569737069656c206d697420362e35204b6f6d69290d0a3c6c693e537069656c7374e4726b65756e74657273636869656465206175737a75676c65696368656e202873696568652064617a753a203c686f6d65206661712e7068703f726561643d74266361743d33353723456e74727939383e57617320756e746572736368656964657420676577f6686e6c6963686520756e642070617373656e646520566f726761626520766f6e65696e616e6465723f3c2f686f6d653e0d0a3c2f6f6c3e, 'Y', '2010-04-02 21:39:24'),
(513, 4, 0x447261676f6e2d456e747769636b6c756e67, 'Y', '2010-04-02 22:31:15'),
(514, 4, 0x5769652066756e6b74696f6e69657274206469652046415120766f6e20447261676f6e3f, 'Y', '2003-11-04 11:13:25'),
(518, 4, '', 'Y', '2012-09-01 21:20:33'),
(525, 14, 0x447261676f6e697374612070757574747575206a6f7461696e2e2041696f7474656b6f206c6973e474e42073656e3f, 'Y', '2003-02-26 10:24:46'),
(526, 14, 0x45686be42e205461726b69737461203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f746f646f2e706870223e74656874e476e4e43c2f613e2d6c697374616c74612e0d0a4a6f7320736974e4206569206f6c65206c697374616c6c612c20746565206568646f747573203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f70686f72756d2f6c6973742e7068703f663d34223e447261676f6e2d666f6f72756d696c6c613c2f613e2e, 'N', '2003-02-26 10:24:46'),
(621, 14, 0x4ee47974e4206b61696b6b69206b7973796d796b73657420796874656ee420736976756e612e, 'Y', '2003-02-26 10:24:46'),
(643, 10, 0xced2bfc9d2d4d4dac1fad6aeb39ec9cfcab9d3c32048544d4c20c2f0a3bf, 'N', '2007-05-30 11:27:37'),
(644, 10, '', 'N', '2007-05-30 11:27:37'),
(1418, 8, 0xb6c2a4e8b162b8b9, 'Y', '2012-01-08 18:02:28'),
(1422, 8, 0xa5d5a4e8b162b8b9, 'Y', '2012-01-08 18:02:51'),
(1422, 34, 0xe799bde696b9e5b8b3e8999f, 'Y', '2012-01-08 18:03:50'),
(1418, 34, 0xe9bb91e696b9e5b8b3e8999f, 'Y', '2012-01-08 18:04:14'),
(1418, 10, 0xbadab7bdd5cabac5, 'Y', '2012-01-08 18:04:54'),
(1422, 10, 0xb0d7b7bdd5cabac5, 'Y', '2012-01-08 18:05:37'),
(1422, 33, 0xe799bde696b9e5b890e58fb7, 'Y', '2012-01-08 18:05:51'),
(1418, 33, 0xe9bb91e696b9e5b890e58fb7, 'Y', '2012-01-08 18:06:23'),
(1420, 33, 0xe9bb91e696b9e7ad89e7baa7, 'Y', '2012-01-08 18:07:45'),
(1426, 33, 0xe9bb91e696b9e7ad89e7baa7e5b7aee5bc82, 'Y', '2012-01-08 18:07:45'),
(1424, 33, 0xe799bde696b9e7ad89e7baa7, 'Y', '2012-01-08 18:08:22'),
(1428, 33, 0xe799bde696b9e7ad89e7baa7e5b7aee5bc82, 'Y', '2012-01-08 18:08:22'),
(1424, 10, 0xb0d7b7bdb5c8bcb6, 'Y', '2012-01-08 18:08:50'),
(1428, 10, 0xb0d7b7bdb5c8bcb6b2eed2ec, 'Y', '2012-01-08 18:08:50'),
(1420, 10, 0xbadab7bdb5c8bcb6, 'Y', '2012-01-08 18:09:22'),
(1426, 10, 0xbadab7bdb5c8bcb6b2eed2ec, 'Y', '2012-01-08 18:09:22'),
(1420, 8, 0xb6c2a4e8b5a5afc5, 'Y', '2012-01-08 18:09:40'),
(1426, 8, 0xb6c2a4e8b5a5afc5ae74b2a7, 'Y', '2012-01-08 18:09:40'),
(1424, 8, 0xa5d5a4e8b5a5afc5, 'Y', '2012-01-08 18:10:00'),
(1428, 8, 0xa5d5a4e8b5a5afc5ae74b2a7, 'Y', '2012-01-08 18:10:00'),
(645, 10, 0xd0c7cebb, 'Y', '2007-05-30 11:27:37'),
(646, 10, 0x486f736869a3ba22d0c7cebb22d3d0c1bdb8f6d2e2d2e5a3accda8b3a3cac7d6b8c6e5c5ccc9cfb5c4203920b8f6c8c3d7d3b5e3a1a3b8fcc3f7c8b7d2bbb5e3cac7d6b8bdc7c2e4c9cfb5c420342d3420b5e3a1a3, 'Y', '2007-05-30 11:27:37'),
(655, 10, 0xccecd4aa, 'N', '2007-05-30 11:27:37'),
(656, 10, 0x54656e67656ea3bac6e5c5ccb5c4d6d0d0c4b5e3a1a3d4da20313920c2b7c6e5c5cccac72031302d313020b5e3a1a3c8d5cec4b5c4d2e2cbbccac722ccecccc3b5c4c6f0d4b422a1a3, 'N', '2007-05-30 11:27:37'),
(657, 10, 0xc6e5c5cc, 'Y', '2007-05-30 11:27:37'),
(658, 10, 0x476f62616ea3bad5e6d5fdbbf2bcc6cbe3bbfad0e9c4e2b5c4cea7c6e5c6e5c5cca1a3, 'Y', '2007-05-30 11:27:37'),
(665, 10, 0xb6a8caaf, 'N', '2007-05-30 11:27:37'),
(666, 10, 0x4a6f73656b69a3bacda8b3a3cac7d4dabdc7c2e4bdf8d0d0a3acbed6b2bfc9cfbeadb9fdd1e9d6a4b5c4bcc8b6a8cfc2b7a8a1a3cda8b3a3d4dabed6b2bfc9cfb6d4cbabb7bdb6bcd3d0c0fba3acb5abcac7b2bbd2bbb6a8c8abc5ccd3d0c0fba1a3b6a8caafcac7d5bdcaf5bfbcc1bfa3acb6f8b2bbcac7b2dfc2d4bfbcc1bfa1a3, 'N', '2007-05-30 11:27:37'),
(667, 10, 0xb2bcbed6, 'N', '2007-05-30 11:27:37'),
(668, 10, 0x467573656b69a3bac6e5bed6bfaacabcbdd7b6ceb5c4cfc2b7a8a1a3bfaac5cccab1beadb9fdd1e9d6a4b5c4bcc8b6a8cfc2b7a8a1a3b2bcbed6d0e8d2aac8abc5ccb5c4b2dfc2d4bfbcc1bfa1a3, 'N', '2007-05-30 11:27:37'),
(535, 14, 0x4d696b7369206a6f7461696e207465726d69e4206569206f6c652073656c6974657474793f, 'Y', '2003-02-28 11:33:00'),
(536, 14, 0x4a6f6b6f2073656c6974797374e4206569206f6c65207669656ce42065686469747479206b69726a6f6974746161207461692074617276657474612073656c6974796b73656c6c65206569206f6c652068756f6d617474752e204c61697461206b7973796d7973203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f70686f72756d2f6c6973742e7068703f663d33223e554b4b2d666f6f72756d696c6c653c2f613e2c206e69696e2073656c69747973207361616461616e2061696b616973656b736920706172697373612070e46976e47373e42e, 'Y', '2003-02-28 11:33:00'),
(546, 14, 0x4b7975207461726b6f6974746161206f7070696c617374612e204b79752d6c756f6b6974756b73657420616c6b61766174203330206b7975737461206a612070e4e4747976e4742079687465656e206b797568756e2c206a6f6b61206f6e2076616876696e2e203330206b7975206f6e20226de4e4726974656c7479222070656c61616a616b73692c206a6f6b612074756e746565206a6120796d6de47274e4e42073e4e46e6ef6742c206d75747461206569206f6c652070656c616e6e757420796874e4e46e2070656c69e42e0d0a4b79752d6c756f6b6974756b73657420656976e474206f6c652065726974796973656e206c756f746574746176696120656e6e656e6b75696e203130206b79756e207461736f6c6c612c206a6f6c6c6f696e206f7070696c617320766f692070656c61746120312064616e696e207461736f697374612070656c61616a6161207661737461616e20796864656b73e46e206b6976656e207461736f6974756b73656c6c612e, 'Y', '2003-02-28 11:33:00'),
(548, 14, 0x44616e207461726b6f6974746161206d657374617269612e2044616e2d6c756f6b6974756b736574206e6f7573657661742076616876757564656e206d79f674e420796cf67370e4696e2e20416d6d617474696c616973696c6c61206a6120616d6174f6f67265696c6ce4206f6e206f6d6174206c756f6b6974756b73656e73612c2076696964656e2064616e696e20616d6174f6f67269207661737461612073757572696e706969727465696e20796864656e2064616e696e20616d6d617474696c61697374612e, 'Y', '2003-02-28 11:33:00'),
(553, 14, 0x566f696e6b6f2074656864e4206568646f74756b73696120447261676f6e696e20736976756968696e206c6969747479656e3f, 'Y', '2003-02-28 11:33:00'),
(554, 14, 0x566f69742c206a61206e65206f7661746b696e2061696e6120746572766574756c6c656974612e204568646f74756b736574206b616e6e6174746161206ce468657474e4e4203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f70686f72756d2f6c6973742e7068703f663d34223e447261676f6e2d666f6f72756d696c6c653c2f613e2c206a6f737361206e69697374e420766f696461616e206b65736b757374656c6c612e, 'N', '2003-02-28 11:33:00'),
(565, 14, 0x416c6f697474656c696a6f6964656e206b7973796d796b7369e4, 'Y', '2003-02-28 11:33:00'),
(566, 14, 0x4d696be42074e46de4207061696b6b61206f6e3f, 'Y', '2003-02-28 11:33:00'),
(567, 14, 0x54e4e46c6ce420766f69742070656c61746120476f74612e20447261676f6e206f6e203c753e76756f726f706f686a61696e656e3c2f753e2070616c76656c696e2c20656c692070656c6974617061206d75697374757474616120706f7374696e2076e46c6974796b73656c6ce42070656c61616d697374612e205365207461726b6f6974746161206d79f67320736974e42c20657474e42070656c697420766f69766174206b657374e4e4206a61206b657374e476e4746b696e20757365696e207669696b6b6f6a6120746169206a6f7061206b75756b617573696120286f6e206b756974656e6b696e206d6168646f6c6c697374612070656c617461206e6f7065616d7069616b696e2070656c656ae4207469756b656d6d696c6c612061696b6172616a6f696c6c61292e0d0a0d0a526561616c6961696b61696e656e2070656c61616d696e656e206569206f6c652065696be42074756c65206f6c656d61616e206d6168646f6c6c697374612074e4e46c6ce42e20526561616c6961696b61696e656e2070656c69207461726b6f69747461612070656c69e42c206a6f7373612070656c692070656c617461616e20616c75737461206c6f707075756e2074696574796e20616a616e20286573696d65726b696b73692074756e6e696e29206b756c75657373612e204c696e6b6b656ae4207061696b6b6f6968696e2c206a6f6973736120766f692070656c61746120726561616c6961696b616973746120476f7461206cf67964e474203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f6c696e6b732e706870223e6c696e6b6b69736976756c74613c2f413e2e, 'N', '2003-02-28 11:33:00'),
(568, 14, 0x456e2074696564e4206c756f6b6974757374616e692c206d6974e4206c616974616e3f, 'Y', '2003-02-28 11:33:00'),
(569, 14, 0x4a6f732065742074696564e4206c756f6b69747573746173692c2073756f73697474656c656d6d6520657474e42070656c616174206d757574616d616e206c756f6b697474616d6174746f6d616e2070656c696e206b6f6b656e65656d7069612070656c61616a6961207661737461616e2c206a6f6c6c6f696e20686520707973747976e47420617276696f696d61616e206c756f6b6974756b736573692e204c6973e4e4206d757574616d612070656c69203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f77616974696e675f726f6f6d2e706870223e6f646f74757368756f6e65657365656e3c2f613e206a61207661726d697374612c20657474e420696c6d6f69746174206d697374e4206f6e206b797365206a6120657474e42070656c69206569206f6c65206c756f6b6974657474752e20566f6974206d79f673206ce468657474e4e4207669657374696e203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f70686f72756d2f6c6973742e7068703f663d36223e766173746170656c61616a61666f6f72756d696c6c653c2f613e2e204f6e6e656121, 'N', '2003-02-28 11:33:00'),
(571, 14, 0x54617276697473657474656b6f2061707561206a6f686f6e6b696e3f, 'Y', '2003-02-28 11:33:00'),
(572, 14, 0x3c753e546f64656c6c61206869656e6f3c2f753e206a7574747520657474e4206b7973796974210d0a0d0a4b61696b6b65656e2c20746f7474612070756875656e2e204a6f73206a6f6b7520746965747479206169686520746169206b7973796d797320707575747475752c20696c6d6f6974612e205669656ce420706172656d706920616a61747573206f6e206b69726a6f69747461612069747365206a6f6e6b756e6c61696e656e206c756f6e6e6f73206a61206ce468657474e4e4207365203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f70686f72756d2f6c6973742e7068703f663d33223e554b4b2d666f6f72756d696c6c653c2f613e2e, 'N', '2003-02-28 11:33:00'),
(573, 14, 0x4d696c6c6f696e20757365696e206b7973797474796ae4206b7973796d796b7369e4206f6e207669696d656b73692070e469766974657474793f, 'Y', '2003-02-28 11:33:00'),
(575, 14, 0x506f7274616174, 'Y', '2003-02-28 11:45:21'),
(576, 14, 0x4b6174736f203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f70686f72756d2f726561642e7068703f663d3326693d31393626743d313936223e706f727461697369696e206c696974747976e4e4207669657374696b65746a75613c2f613e20554b4b2d666f6f72756d696c6c612e, 'Y', '2003-02-28 11:45:21'),
(598, 14, 0x42796f2d796f6d69207461726b6f6974746161206c6973e461696b6173e4e46e74f66ae42c206a6f697461206be479746574e4e46e206b756e2070656c696e2076617273696e61696e656e2070656c6961696b61206f6e206c6f7070756e75742e, 'Y', '2003-02-28 11:45:21'),
(602, 14, 0x534746202874756c65652073616e6f6973746120536d6172742047616d6520466f726d617429206f6e20476f6e206a61206d756964656e2070656c69656e2074616c6c656e74616d697365656e207461726b6f69746574747520746965646f73746f666f726d61617474692e204c7565206c6973e4e4203c6120687265663d22687474703a2f2f7777772e7265642d6265616e2e636f6d2f7367662f22207461726765743d6e65773e5347462046465b345d202d7374616e64617264696e20766972616c6c697365737461206de4e472697474656c797374e43c2f613e202861756b6561612075757465656e20696b6b756e61616e292e, 'Y', '2003-02-28 11:45:21'),
(607, 14, 0x566f696e6b6f2061757474616120447261676f6e696e206b6568697474e46d6973657373e43f, 'Y', '2003-02-28 11:45:21'),
(608, 14, 0x45686be42e20566f697420616c6f697474616120747574757374756d616c6c6120447261676f6e696e203c6120687265663d22687474703a2f2f736f75726365666f7267652e6e65742f70726f6a656374732f647261676f6e676f73657276657222207461726765743d6e65773e536f75726365666f7267652d73697675756e3c2f613e202861756b6561612075757465656e20696b6b756e61616e292e, 'N', '2003-02-28 11:45:21'),
(622, 14, 0x5475726e61756b73657420447261676f6e69737361, 'Y', '2003-02-28 11:45:21'),
(623, 14, 0x566f696b6f20447261676f6e697373612070656c617461207475726e61756b7369613f, 'N', '2003-02-28 11:45:21'),
(624, 14, 0x4b796c6ce42e203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f75736572696e666f2e7068703f7569643d31373935223e44616e69656c2057616b656669656c643c2f613e206ae4726a657374e4e4207061726861696c6c61616e207475726e61757374612e2053656e206b6f7469736976756e206cf67964e474206f736f6974746565737461203c6120687265663d22687474703a2f2f64677373686f67756e2e746f706369746965732e636f6d2f696e6465782e68746d22207461726765743d6e65773e687474703a2f2f64677373686f67756e2e746f706369746965732e636f6d2f696e6465782e68746d3c2f613e202861756b6561612075757465656e20696b6b756e61616e292e, 'N', '2003-02-28 11:45:21'),
(625, 14, 0x4f6e6b6f20447261676f6e69737361206f6d6161207475726e6175736ae4726a657374656c6de4e43f, 'Y', '2003-02-28 11:45:21'),
(626, 14, 0x4569207669656ce42e2053656c6c61696e656e206f6e206b756974656e6b696e207375756e6e69747465696c6c6121205475726e6175736ae4726a657374656c6de4206f6e2069736f696d7069612074656874e47669e4203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f746f646f2e706870223e74756c657669656e2074656874e47669656e206c697374616c6c613c2f413e2e, 'Y', '2003-02-28 11:45:21'),
(639, 14, 0x4b756b61206f6e206c756f6e757420447261676f6e696e3f, 'Y', '2003-02-28 11:45:21'),
(640, 14, 0x447261676f6e696e206f766174206c756f6e656574206a6120736974e420796c6ce4706974e476e474203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f75736572696e666f2e7068703f7569643d32223e4572696b3c2f613e206a61203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f75736572696e666f2e7068703f7569643d323038223e5261676e61723c2f613e2e20537575726574206b6969746f6b736574206865696c6c652e, 'N', '2003-02-28 11:45:21'),
(643, 14, 0x566f696b6f20447261676f6e69737361206be4797474e4e42048544d4c3ae4e43f, 'N', '2003-02-28 11:45:21'),
(644, 14, 0x48544d4c2d6b6f6f64696120766f69206be4797474e4e4206f6d6973736120746965646f69737361616e2c20766965737465697373e4206a6120666f6f72756d65696c6c612e204a6f73206be47974e4742048544d4c2d746167656a612c207661726d6973746120657474e4206b69726a6f69746174206e65207461726b616c6c65656e206f696b65696e2e2048756f6d696f69206572697479697365737469206c6f70707574616769656e206be4797474f62e20536575726161766174207461676974206f6e2073616c6c697474753a0d0a0d0a3c756c3e200d0a3c6c693e6c69737461740d0a3c6c693e3c623e6c696861766f696e74693c2f623e200d0a3c6c693e3c693e6b757273696976693c2f693e200d0a3c6c693e3c753e616c6c65766969766175733c2f753e200d0a3c6c693e3c666f6e7420636f6c6f723d7265643e6b69726a6173696d656e207461692076e472696e2076616968746f3c2f666f6e743e200d0a3c6c693e6b756c6d6173756c75743a203c203e200d0a3c6c693e3c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e6574223e6c696e6b69743c2f613e200d0a3c6c693e796b73696e6b6572746169736574206c696e6b69743a203c687474703a2f2f7777772e647261676f6e676f7365727665722e6e65743e200d0a3c2f756c3e200d0a0d0a596c6ce46f6c6576616e206c697374616e207361612061696b616973656b73692073657572616176696c6c61206b6f6f6465696c6c613a0d0a0d0a266c743b756c2667743b200d0a266c743b6c692667743b6c6973746174200d0a266c743b6c692667743b266c743b622667743b6c696861766f696e7469266c743b2f622667743b200d0a266c743b6c692667743b266c743b692667743b6b75727369697669266c743b2f692667743b200d0a266c743b6c692667743b266c743b752667743b616c6c6576696976617573266c743b2f752667743b200d0a266c743b6c692667743b266c743b666f6e7420636f6c6f723d7265642667743b6b69726a6173696d656e207461692076e472696e2076616968746f266c743b2f666f6e742667743b200d0a266c743b6c692667743b6b756c6d6173756c75743a2026616d703b6c743b2026616d703b67743b200d0a266c743b6c692667743b266c743b6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e6574222667743b6c696e6b6974266c743b2f612667743b200d0a266c743b6c692667743b796b73696e6b6572746169736574206c696e6b69743a20266c743b687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742667743b200d0a266c743b2f756c2667743b, 'N', '2003-02-28 11:45:21'),
(645, 14, '', 'Y', '2006-11-14 11:49:44'),
(646, 14, 0x486f736869207461726b6f69747461612074e4687465e4206a612073696c6ce4206f6e206b616b7369206d65726b6974797374e420476f7373612e20596c65697365737469206f747461656e2073696c6ce42076696974617461616e20796864656b73e4e46e207461736f697475736b697669656e207061696b6b61616e206c617564616c6c612c207461726b6b61616e206f747461656e207365207461726b6f6974746161206b756c6d616e20342d34202d70697374657474e42e, 'Y', '2003-02-28 11:45:21'),
(655, 14, '', 'N', '2006-11-14 11:49:44'),
(656, 14, 0x4c617564616e206b65736b697069737465202831302d31302031397831392d6c617564616c6c61292e2054656e67656e207461726b6f697474616120227461697661616e20616c6b75706572e4e422206a6170616e696b73692e, 'N', '2003-02-28 11:45:21'),
(657, 14, '', 'Y', '2006-11-14 11:49:44'),
(658, 14, 0x476f2d6c6175746120286169746f2074616920766972747561616c696e656e292e, 'Y', '2003-02-28 11:45:21'),
(665, 14, '', 'N', '2006-11-14 11:49:44'),
(666, 14, 0x4b756c6d6170656c692e2056616b69696e74756e7574207361726a612073696972746f6a612074696574797373e4207061696b616c6c6973657373612074696c616e7465657373612e20596c65656e73e4207061726173207361726a612073696972746f6a61206d6f6c656d6d696c6c652070656c61616a696c6c65207061696b616c6c6973657374692c206d757474612065692076e46c7474e46de47474e4206b6f6b6f206c617564616c6c612e204a6f73656b69206f6e2074616b74696e656e2c2065692073747261746567696e656e207465726d692e, 'N', '2003-02-28 11:45:21'),
(667, 14, '', 'N', '2006-11-14 11:49:44'),
(668, 14, 0x50656c696e2061766175732e20596c65656e73e42076616b69696e74756e7574207461706120616c6f69747461612070656c692e20467573656b6920736973e46c74e4e4206c61616a6f6a61206b6f6b6f206c617564616e206b61747461766961207374726174656769736961207375756e6e6974656c6d69612e, 'N', '2003-02-28 11:45:21'),
(669, 14, '', 'Y', '2006-11-14 11:49:44'),
(670, 14, 0x53656b69207461726b6f697474616120226b6168746120656ce46de4e4222e2053656b69206f6e207061696b616c6c696e656e207461736170656c6970697374652c206a6f737361206b616b7369207279686de4e4206a616b61612076617061756b7369612065696be4206b756d70696b61616e20766f692076616c6c61746120746f697374612e2054e46c6c616973697373612074696c616e74656973736120746f6973656e207279686de46e20616c6f697474616d612076616c74617573797269747973206b6f697475752073656e20697473656e73e4206b756f6c656d616b73692e, 'Y', '2003-02-28 11:45:21'),
(519, 6, 0x4e696769726920657320756e6120666f726d61206465206465636964697220717565206a756761646f72206a75676172e120636f6e206c61732070696564726173206e65677261732e0d0a556e6f206465206c6f73206a756761646f72657320746f6d6120636f6e207375206d616e6f20756e206efa6d65726f206465207069656472617320626c616e6361732e20456c206f74726f206a756761646f7220706f6e6520756e61206f20646f73207069656472617320656e20656c20676f62616e20287461626c65726f29207061726120696e64696361722073692063726565207175652068617920756e206efa6d65726f20706172206f20696d706172206465207069656472617320626c616e6361732e2053692061646976696e612c206a75676172e120636f6e206c6173206e65677261732c206465206c6f20636f6e74726172696f2c206c6f20686172e120636f6e206c617320626c616e6361732e0d0a417175ed2c20656e20447261676f6e2c20657374652070726f6365736f206573206d616e656a61646f20706f7220656c207365727669646f722e0d0a456c204e6967697269206465626572ed612073657220757361646f206375616e646f206c6f73206a756761646f726573207469656e656e20667565727a61732073696d696c617265732e, 'Y', '2013-11-11 22:23:13'),
(535, 6, '', 'Y', '2003-02-28 16:51:54'),
(568, 6, 0x4e6f20636f6e6f7a636f206d692072616e6b696e672c20bf7175652074656e676f2071756520696e6772657361723f, 'Y', '2003-02-28 16:51:54'),
(575, 6, 0xbf506f727175e920447261676f6e20717569657265207361626572206d692064697265636369f36e20646520636f7272656f20656c65637472f36e69636f3f, 'Y', '2003-08-29 06:23:16'),
(598, 6, 0x42796f20796f6d6920657320756e2074e9726d696e6f2070617261207265676c6173206465206ced6d69746573206465207469656d706f207175652073652061706c696361206375616e646f20656c207469656d706f207072696e636970616c207365207465726d696e612e, 'Y', '2003-02-28 16:51:54'),
(602, 6, 0x53474620657320756e61207369676c61207061726120536d6172742047616d6520466f726d61742c20756e20666f726d61746f206465206172636869766f2070617261206775617264617220696e666f726d616369f36e20736f62726520756e61207061727469646120646520476f202879206f74726f73206a7565676f73292e20506f7220646574616c6c657320766973697461206c61203c6120687265663d22687474703a2f2f7777772e7265642d6265616e2e636f6d2f7367662f22207461726765743d6e65773e657370656369666963616369f36e206f66696369616c3c2f613e2064656c20657374e16e646172205347462046465b345d2e, 'Y', '2003-08-11 04:36:23'),
(643, 6, 0xbf507565646f207574696c697a61722048544d4c20656e20447261676f6e3f, 'N', '2003-02-28 16:51:54'),
(645, 6, '', 'Y', '2007-11-03 16:08:38'),
(655, 6, '', 'N', '2007-11-03 16:08:38'),
(657, 6, 0x476f62e16e, 'Y', '2015-06-28 00:35:56'),
(658, 6, 0x456c207461626c65726f20287265616c206f207669727475616c2920646520476f2e, 'Y', '2003-02-28 16:51:54'),
(665, 6, '', 'N', '2007-11-03 16:08:38'),
(667, 6, '', 'N', '2007-11-03 16:08:38'),
(669, 6, '', 'Y', '2007-11-03 16:08:38'),
(669, 10, 0xb9b2bbee, 'Y', '2007-05-30 11:27:37'),
(670, 10, 0x53656b69a3bad2e2cbbccac722cbabb7bdb6bcbbee22a1a3c1bdc8bac6e5d7d3b9b2cfedc6f8b5c4d2bbd6d6bed6b2bfbda9bed6a3accbabb7bdb6bccedeb7a8cce1b5f4b6d4b7bdb5c4d7d3a1a3, 'Y', '2007-05-30 11:27:37'),
(509, 4, 0x447261676f6e7320457469717565747465202d20526567656c6e2066fc722067757465732042656e65686d656e, 'Y', '2007-12-06 15:00:11'),
(510, 4, 0x447261676f6e2d4665686c657220756e642050726f626c656d65, 'Y', '2009-07-05 15:21:47'),
(565, 4, 0x45696e66fc6872756e6720696e20447261676f6e, 'Y', '2007-12-06 15:22:06'),
(622, 4, 0x5475726e696572652061756620447261676f6e, 'Y', '2003-03-03 15:48:34'),
(515, 4, 0x446965736520464151207769726420646972656b742061756620447261676f6e20766f6e203c75736572203d496e676d61723e2065727374656c6c742e0d0a0d0a4265697472e467652c20566f727363686ce467652c204b726974696b656e206f6465722046726167656e207a75206469657365722046415120736f6c6c74656e20696d203c686f6d6520666f72756d2f6c6973742e7068703f666f72756d3d333e4641512d4469736b757373696f6e73666f72756d3c2f686f6d653e20676573636872696562656e2077657264656e2e, 'Y', '2009-07-04 10:13:28'),
(655, 4, '', 'Y', '2012-07-29 12:52:42'),
(656, 4, 0x446965204d697474652064657320537069656c6272657474732c20616c736f206465722031302d31302d50756e6b74206175662065696e656d2031397831392d537069656c62726574742e202254656e67656e2220697374204a6170616e6973636820756e6420686569df742022646572205572737072756e67206465732048696d6d656c73222e, 'Y', '2010-10-18 17:00:33'),
(657, 4, '', 'Y', '2012-07-29 12:52:42'),
(658, 4, 0x44617320537069656c62726574742e, 'Y', '2007-12-06 16:45:18'),
(645, 4, '', 'Y', '2012-07-29 12:52:42'),
(646, 4, 0x486f73686920697374206a6170616e697363682066fc7220537465726e20756e6420686174207a77656920426564657574756e67656e2e20496d20616c6c67656d65696e656e2077657264656e2064616d697420646965206e65756e206d61726b69657274656e20566f726761626570756e6b74652062657a656963686e65743b207370657a69656c6c20776972642064616d697420616265722064657220342d342d50756e6b7420696e206465722045636b652062657a656963686e65742e, 'Y', '2007-12-06 16:45:18'),
(519, 4, 0x4e6967697269206973742065696e65204d6574686f6465207a756d2042657374696d6d756e672c2077656c6368657220537069656c657220646965207363687761727a656e20537465696e6520657268e46c742e2045696e65722064657220537069656c6572206e696d6d742065696e652048616e6420766f6c6c20776569df6520537465696e653b2064657220616e6465726520537069656c6572206c6567742065696e206f646572207a776569207363687761727a6520537465696e6520617566206461732042726574742c206a656e61636864656d206f6220657220676c617562742c20646572204765676e657220686162652065696e6520756e676572616465206f6465722065696e652067657261646520416e7a61686c20766f6e20537465696e656e2e2052e47420657220726963687469672c2062656b6f6d6d7420657220646965207363687761727a656e20537465696e652c20616e6465726e66616c6c732064696520776569df656e2e0d0a0d0a486965722061756620447261676f6e20776972642064617320616c6c657320766f6d2053657276657220fc6265726e6f6d6d656e2e2044657220776569df6520537069656c657220657268e46c74206e6f636820362c352050756e6b7465203c686f6d65206661712e7068703f726561643d74266361743d3323456e747279393e6b6f6d693c2f686f6d653e2e0d0a0d0a4e696769726920736f6c6c7465206265766f727a7567746572776569736520626569206574776120676c65696368737461726b656e20537069656c65726e2076657277656e6465742077657264656e2e, 'Y', '2007-12-06 15:00:11'),
(537, 4, '', 'Y', '2005-10-19 19:21:22'),
(538, 4, 0x45696e6520537465696e206f646572204b6574746520766f6e20537465696e656e20697320696e2041746172692c2077656e6e206469657365206e7572206d6568722065696e652065696e7a696765204672656968656974206861742e20204461686572206bf66e6e746520646572204765676e6572206469657365204b65747465206d69742064656d206ee463687374656e205a756720676566616e67656e206e65686d656e2e, 'Y', '2010-08-22 21:36:09'),
(539, 4, '', 'Y', '2012-07-29 12:52:42'),
(540, 4, 0x45696e204b6f206973742065696e6520536974756174696f6e206175662064656d2042726574742c20696e2064657220776965646572686f6c742065696e2065696e7a656c6e657220537465696e20676566616e67656e2077657264656e206b616e6e2e2057f672746c69636820fc6265727365747a74206265646575746574204b6f20457769676b6569742e, 'Y', '2007-12-06 15:22:06'),
(545, 4, '', 'Y', '2012-07-29 12:52:42'),
(546, 4, 0x4b7975206265646575746574204c6568726c696e672e20446965204b79752d52e46e6765207265696368656e20766f6e2033306b2062697320316b2c20776f62656920316b20646572207374e4726b737465204b79752d52616e67206973742e2045696e2033306b206b656e6e742064696520526567656c6e20756e642068617420736965207665727374616e64656e2c206162657220686174206e6f6368206b65696e65207269636869676520506172746965206765737069656c742e0d0a0d0a4b79752d52e46e67652073696e64206e69636874207a757665726ce4737369672c206265766f72206d616e20657477612031302d6b79752065727265696368742c20776f206d616e2073696368206d69742065696e656d203c686f6d65206661712e7068703f726561643d74266361743d3323456e74727933393e44616e3c2f686f6d653e2d537069656c6572206d69742039203c686f6d65206661712e7068703f726561643d74266361743d33353723456e74727939373e566f7267616265737465696e656e3c2f686f6d653e206d657373656e206b616e6e2e, 'Y', '2007-12-06 15:22:06'),
(547, 4, '', 'Y', '2012-07-29 12:52:42'),
(548, 4, 0x44616e206265646575746574204d6569737465722e204469652044616e2d52e46e6765207265696368656e20766f6e20316420756e642061756677e47274732c20776f6265692065696e2068f668657265722052616e672065696e656e207374e4726b6572656e20537069656c65722062657a656963686e65742e2045696e20416d61746575722d362d44616e20697374206574776120736f20737461726b207769652065696e2050726f66692d312d44616e2e, 'Y', '2007-12-06 15:22:06'),
(597, 4, '', 'Y', '2012-07-29 12:52:42'),
(598, 4, 0x42796f796f6d692062657a656963686e65742064696520526567656c6e2066fc72204e616368737069656c2d206f64657220dc6265727a6569742c20646965206ce47566742c206e61636864656d20646965204861757074626564656e6b7a656974206162676c617566656e206973742e, 'Y', '2007-12-06 16:18:37'),
(505, 5, '', 'Y', '2011-10-26 12:06:49'),
(506, 5, 0x4327657374206c65207465726d65206a61706f6e61697320706f757220756e20706f696e742064652073636f72652c20756e20706f696e74206465207465727269746f6972652c20756e6520696e74657273656374696f6e20766964652e, 'N', '2003-08-21 16:07:58'),
(518, 5, '', 'Y', '2016-01-15 13:16:52'),
(519, 5, 0x4e69676972692065737420756e65206661e76f6e2064652064e96369646572207175692073657261206c65206a6f75657572206e6f697220656e7472652064657578206a6f7565757273206465206dea6d6520666f7263652e0d0a0d0a556e20646573206a6f7565757273207072656e6420756e6520706f69676ee965206465207069657272657320626c616e63686573206574206c657320706f736520737572206c6520706c61746561752063616368e9657320736f7573207361206d61696e2e204c276175747265206a6f7565757220646f697420646576696e657220736920656c6c657320736f6e7420656e206e6f6d6272652070616972206f7520696d706169722e20506f75722063656c612c20696c20706c61636520737572206c6520706c617465617520756e65206f7520646575782070696572726573206e6f697265732e205327696c206120646576696ee9206a757374652c20696c207072656e647261206c6573206e6f6972732c2073696e6f6e20696c207072656e647261206c657320626c616e63732e0d0a53757220447261676f6e2c2063276573742c206269656e20656e74656e64752c206c65207365727665757220717569207365206368617267652064652063652074697261676520617520736f72742e0d0a46696e616c656d656e742c2063656c7569207175692061206c657320626c616e6373207265e76f697420756e206b6f6d6920646520362c3520706f696e74732e, 'N', '2003-08-21 16:07:58'),
(535, 5, '', 'Y', '2003-05-15 01:43:52'),
(536, 5, 0x46696e206465207061727469652e204c61206465726e69e87265207068617365206475206a6575206ff9206f6e206e65207065757420706c7573206174746171756572206c65732067726f75706573206465206c2761647665727361697265206d6169732073696d706c656d656e742074726f75766572206c6573206d65696c6c6575727320636f75707320706f757220616772616e646972206c6573207465727269746f69726573206578697374616e74732e, 'Y', '2004-08-16 20:46:23'),
(677, 10, 0xc1fad6aeb39eb5c4b5c8bcb6d3ebc6c0b5c8, 'Y', '2007-05-30 11:27:37'),
(678, 10, 0xcab9d3c3d5dfb5c4b5c8bcb6c0b8cac7cab2e7dba3bf, 'Y', '2007-05-30 11:27:37'),
(679, 10, 0xb5c8bcb6b5c4c7b0d2bbb0ebcac7c4bfc7b0203c6120687265663d222f6661712e7068703f726561643d74266361743d3323456e7472793339223eb6ce3c2f613e20bbf2203c6120687265663d222f6661712e7068703f726561643d74266361743d3323456e7472793338223ebcb63c2f613e20b5c4b5c8bcb6a1a3baf3d2bbb0ebb5c4b0d9b7d6b1c8a3a8c0a8bac5c4daa3a9cfd4cabed5e2b8f6b5c8bcb6b5c4c7bfc8f5a1a30d0a0d0ac0fdc8e7a3ac22203120bcb620282b343025292220cac7badcc7bfb5c4203120bcb6a3a8bcb8baf5b5c8d3dabdcfc8f5b5c4203120b6cea3a9a1a3, 'N', '2007-05-30 11:27:37'),
(601, 5, '', 'Y', '2011-10-26 12:06:49'),
(602, 5, 0x53474620657374206c27616272e976696174696f6e2064652022536d6172742047616d6520466f726d6174222c20756e20666f726d617420646520666963686965727320706f757220656e726567697374726572206c65732070617274696573206475206a657520646520476f2028656e74726520617574726573206a657578292e0d0a506f757220706c75732064652064e97461696c732c20636f6e73756c74657a203c6120687265663d22687474703a2f2f7777772e7265642d6265616e2e636f6d2f7367662f22207461726765743d6e65773e6f6666696369616c2073706563696669636174696f6e3c2f613e2c206c6573207370e963696669636174696f6e73206f6666696369656c6c6573206475207374616e64617264205347462046465b345d2e, 'Y', '2003-08-21 16:07:58'),
(645, 5, '', 'Y', '2011-10-26 12:06:49'),
(646, 5, 0x456e206a61706f6e6169732c20686f736869207369676e696669652022e9746f696c652220657420612064657578207369676e696669636174696f6e733a0d0a2d204c6573206e65756620696e74657273656374696f6e73206ff9206f6e20706c616365206c657320706965727265732064652068616e646963617020737572206c6520706c61746561752e0d0a2d204c27696e74657273656374696f6e20342d342064616e73206c6520636f696e20647520706c61746561752e, 'Y', '2003-08-21 16:07:58'),
(655, 5, '', 'N', '2011-10-26 12:06:49'),
(656, 5, 0x4c27696e74657273656374696f6e2064752063656e74726520647520706c61746561752e204c6520706f696e742031302d31302073757220756e20706c61746561752031397831392e20456e206a61706f6e6169732c2074656e67656e207369676e6966696520226f726967696e65206475206369656c222e, 'N', '2004-08-16 20:46:23'),
(657, 5, '', 'Y', '2011-10-26 12:06:49'),
(658, 5, 0x4c6520706c6174656175206475206a657520646520476f2e, 'Y', '2003-03-05 13:12:39'),
(665, 5, '', 'N', '2011-10-26 12:06:49'),
(666, 5, 0x53e97175656e636520646520636f75707320636f6e736964e972e965206c6f63616c656d656e7420286d61697320706173206ee963657373616972656d656e7420676c6f62616c656d656e742920e97175697461626c6520706f7572206c65732064657578206a6f75657572732e204a6f73656b6920636f6e6365726e65206c61207461637469717565206d61697320706173206c61207374726174e96769652e, 'N', '2003-03-05 13:12:39'),
(667, 5, '', 'N', '2011-10-26 12:06:49'),
(668, 5, 0x4c652064e962757420646520706172746965206574206c657320636f6e736964e9726174696f6e73207374726174e967697175657320286f7576657274757265732920717569206c756920736f6e74206173736f6369e965732e, 'N', '2003-03-05 13:12:39'),
(669, 5, '', 'Y', '2011-10-26 12:06:49'),
(670, 5, 0x53656b6920766575742064697265202276696520646f75626c65222e20496c20732761676974206427756e6520736974756174696f6e206c6f63616c65206ff920706c757369657572732067726f7570657320706172746167656e7420646573206c6962657274e97320636f6d6d756e65732073616e7320717527696c73207075697373656e74207365207072656e647265206c657320756e73206c6573206175747265732e0d0a432765737420756e20636173206465207669652073616e732079657578206574206c6573206c6962657274e97320706172746167e96573206e6520736f6e742070617320636f6d7074e9657320636f6d6d65207465727269746f6972652e, 'Y', '2003-08-21 16:07:58'),
(546, 5, 0x4b7975206573742022756e206e69766561752064652064e9627574616e74222e204c65732067726164657320656e206b797520766f6e7420646520333020e020312e20316572206b797520657374206c6520706c757320666f72742067726164652064657320e96ce87665732065742065737420696d6de964696174656d656e7420737569766920706172203165722064616e2c206c6520706c757320666169626c6520677261646520646573206d61ee747265732e20556e203330e86d65206b7975206573742064e966696e6920636f6d6d65207175656c717527756e2071756920612061707072697320657420636f6d70726973206c65732072e8676c65732c206d616973206e27612070617320656e636f7265206a6f75e9206465207061727469652e0d0a4c65732067726164657320656e206b7975206e6520736f6e7420706173207472e873207369676e696669636174696673206176616e74206c65203130e86d65206b797520e0207061727469722064757175656c206f6e207065757420636f6d6d656e63657220e020636f6d62617474726520756e20316572203c6120687265663d222f6661712e7068703f726561643d7426616d703b6361743d3323456e7472793339223e64616e3c2f613e2061766563206e6575662070696572726573206465203c6120687265663d222f6661712e7068703f726561643d7426616d703b6361743d33353723456e7472793937223e68616e64696361703c2f613e2e, 'Y', '2005-09-20 18:05:29'),
(548, 5, 0x44616e206573742022756e206e6976656175206465206d61ee747265222e204c65732067726164657320656e2064616e20636f6d6d656e63656e7420e02031206574206175676d656e74656e7420706c7573206c65206a6f756575722065737420666f72742e20556e20616d61746575722035e86d652064616e206573742064697420ea747265206465206c61206dea6d6520666f72636520717527756e2070726f66657373696f6e6e656c203165722064616e2e20284c65732050726f73206e276f6e74207061732064652067726164657320656e203c6120687265663d222f6661712e7068703f726561643d7426616d703b6361743d3323456e7472793338223e6b79753c2f613e29, 'Y', '2005-09-20 18:05:29'),
(565, 5, 0x447261676f6e202d20496e74726f64756374696f6e, 'Y', '2004-03-05 03:26:34'),
(566, 5, 0x5175656c206573742063657420656e64726f6974266e6273703b3f, 'Y', '2004-02-26 13:01:51'),
(567, 5, 0x447261676f6e20476f205365727665722028444753292065737420756e207369746520766961206c657175656c20766f757320706f7576657a206a6f75657220617520476f20ab266e6273703b3c6120687265663d222f6661712e7068703f726561643d7426616d703b6361743d3323456e747279313532223e746f7572266e6273703b706172266e6273703b746f75723c2f613e266e6273703bbb2c20632765737420e0206469726520717527696c207065726d6574206465206a6f75657220706c7573206f75206d6f696e7320636f6d6d65206f6e206c65206665726169742070617220756e65206d65737361676572696520e96c656374726f6e697175652e20447261676f6e206170706f72746520656e20706c757320756e652072657072e973656e746174696f6e206772617068697175652064657320706172746965732c2061696e736920717565206c612067657374696f6e206175746f6d617469717565206465206c612070656e64756c652c2064752063616c63756c206465732073636f726573206574206475206e697665617520646573206a6f75657572732e0d0a0d0a4c6573206a6f75657572732073757220444753206a6f75656e7420656e206d6f79656e6e65203520636f757073207061722073656d61696e652e204465206c6120736f7274652c206c657320706172746965732070657576656e74207327e974616c65722073757220706c757369657572732073656d61696e65732e204d61697320636f6d6d65206365727461696e73206a6f75656e74206269656e20706c7573207261706964656d656e74266e6273703b2c20447261676f6e206f6666726520756e65206c61726765206469766572736974e92064652072e9676c616765732064652070656e64756c65732e0d0a0d0a4a6f75657220656e203c6120687265663d222f6661712e7068703f726561643d7426616d703b6361743d3323456e747279313533223e74656d70732072e9656c3c2f613e206e276573742070617320767261696d656e7420706f737369626c65206176656320447261676f6e2e204e692061756a6f757264276875692c206e692064656d61696e20642761696c6c657572732e204a6f75657220656e2074656d70732072e9656c207665757420646972652071756520766f757320657420766f747265206164766572736169726520646973707574657a20756e652070617274696520656e2072657374616e7420636f6e6e656374e9732064752064e962757420e0206c612066696e2c206176656320756e65206c696d6974652064652074656d7073206465206c276f72647265206427756e652068657572652063686163756e2e20536920766f757320766f756c657a206a6f75657220617520476f20656e2074656d70732072e9656c2c20766f7573206465767269657a20636865726368657220756e203c5f687474703a2f2f73656e736569732e786d702e6e65742f3f476f536572766572207c736572766575722074656d70732072e9656c3e2c2074656c20717565203c5f687474703a2f2f7777772e676f6b67732e636f6d2f207c4b47533e206f75203c5f687474703a2f2f7777772e70616e64616e65742d6967732e636f6d207c4947533e2e0d0a0d0a444753206c696d697465206c65206e6f6d62726520646520636f6e6e6578696f6e732073696d756c74616ee965732070617220756e203c686f6d65206661712e7068703f726561643d74266361743d33353626653d32373323456e7472793237333e71756f7461206d6178696d616c206465206a6f75657572733c2f686f6d653e2c20696c2065737420646f6e632064656d616e64e920e02063686163756e20642765757820646520736520636f6e6475697265206465206661e76f6e20726573706f6e7361626c6520656e20616472657373616e74206465206661e76f6e20726169736f6e6e61626c65206c657572732072657175ea74657320617520736572766575722e204465206c6120736f7274652c206c657320617574726573206a6f7565757273206e65207365726f6e74207061732070e96e616c6973e9732e0d0a0d0a444753206d657420617573736920e020646973706f736974696f6e20646520736573207574696c697361746575727320646573203c686f6d6520666f72756d2f3e666f72756d732064652064697363757373696f6e3c2f686f6d653e207472616974616e742064652073756a65747320636f6d6d65206c6520476f20656e2067e96ee972616c2c206f7520656e636f7265206c6520666f6e6374696f6e6e656d656e742064752073697465206c75692d6dea6d652e, 'Y', '2013-04-06 03:27:20'),
(643, 5, 0x507569732d6a65207574696c69736572206c65206c616e676167652048544d4c2073757220447261676f6e266e6273703b3f3c756c207374796c653d226c6973742d7374796c652d747970653a276e6f6e65273b223e3c6c693e28266e6273703b6f7520706f757271756f6920756e202726616d703b272c20756e2027266c743b27206f75206c65732065737061636573206d756c7469706c65732070726f64756973656e7420646573206566666574732062697a61727265732064616e73206d6573206d65737361676573266e6273703b3f266e6273703b293c2f756c3e, 'N', '2003-08-25 04:37:37');
INSERT INTO `Translations` (`Original_ID`, `Language_ID`, `Text`, `Translated`, `Updated`) VALUES
(644, 5, 0x43652073657276657572207574696c697365206c65206c616e676167652048544d4c2e2044616e73206365206c616e676167652c20746f7573206c65732065737061636573206d756c7469706c657320736f6e742072e9647569747320e020756e207365756c2073e97061726174657572206574206365727461696e7320636172616374e872657320736f6e742072e973657276e9732e0d0a0d0a566f757320706f7576657a207574696c69736572207175656c7175657320666f6e6374696f6e6e616c6974e9732048544d4c2064616e7320766f7472652062696f2c2064616e7320766f73206d657373616765732065742064616e73206c657320666f72756d732e2044616e73206365206361732c2072657370656374657a20636f7272656374656d656e74206c65732072e8676c65732064652073796e74617865206475206c616e676167652048544d4c2e20537572746f75742c206e6520706173206f75626c696572206c65732062616c69736573206665726d616e746573207175616e6420656c6c657320736f6e74206ee96365737361697265732e0d0a0d0a4c6573206f7574696c732048544d4c207065726d697320736f6e743a0d0a3c756c3e3c6c693e6c69737465730d0a3c6c693e3c623e677261733c2f623e0d0a3c6c693e3c693e6974616c69717565733c2f693e0d0a3c6c693e3c753e736f756c69676ee9733c2f753e0d0a3c6c693e3c666f6e7420636f6c6f723d7265643e65666665747320646520706f6c69636520646520636172616374e87265733c2f666f6e743e0d0a3c6c693e636172616374e8726573207370e963696175783a2026616d703b266e6273703b266e6273703b266e6273703b266e6273703b266c743b202020202667743b0d0a3c6c693e3c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e6574223e6c69656e733c2f613e0d0a3c6c693e6c69656e7320726170696465733a203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e6574223e687474703a2f2f7777772e647261676f6e676f7365727665722e6e65743c2f613e0d0a3c2f756c3e0d0a0d0a4c6520636f6465206ee9636573736169726520706f757220e96372697265206c61206c697374652063692d646573737573206120e974e93a0d0a0d0a266c743b756c2667743b0d0a266c743b6c692667743b6c69737465730d0a266c743b6c692667743b266c743b622667743b67726173266c743b2f622667743b0d0a266c743b6c692667743b266c743b692667743b6974616c6971756573266c743b2f692667743b0d0a266c743b6c692667743b266c743b752667743b736f756c69676ee973266c743b2f752667743b0d0a266c743b6c692667743b266c743b666f6e7420636f6c6f723d7265642667743b65666665747320646520706f6c69636520646520636172616374e8726573266c743b2f666f6e742667743b0d0a266c743b6c692667743b636172616374e8726573207370e963696175783a266e6273703b266e6273703b266e6273703b266e6273703b26616d703b616d703b26616d703b6e6273703b26616d703b6e6273703b26616d703b6e6273703b26616d703b6e6273703b26616d703b6c743b266e6273703b266e6273703b266e6273703b266e6273703b26616d703b67743b0d0a266c743b6c692667743b266c743b6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e6574222667743b6c69656e73266c743b2f612667743b0d0a266c743b6c692667743b6c69656e7320726170696465733a20266c743b687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742667743b0d0a266c743b2f756c2667743b, 'N', '2003-08-25 04:37:37'),
(618, 7, 0x506fe8e17465e86eed20726174696e67, 'Y', '2016-07-20 16:17:11'),
(619, 7, 0x4b6f6e636f76fd20726174696e67, 'Y', '2016-07-20 16:17:11'),
(620, 7, 0x526f7a64ed6c20726174696e6775, 'Y', '2003-03-10 15:17:42'),
(500, 7, 0x46696e736b79, 'Y', '2003-03-10 15:19:39'),
(385, 7, 0x4e6f76e92074e96d61, 'Y', '2016-08-09 20:01:00'),
(502, 7, 0x476f207465726ded6e79, 'Y', '2003-03-10 15:25:02'),
(505, 7, '', 'Y', '2008-01-08 15:28:39'),
(507, 7, '', 'Y', '2008-01-08 15:28:39'),
(509, 7, 0x4574696b657461206e6120447261676f6e75, 'Y', '2003-03-10 15:25:02'),
(510, 7, 0x436879627920612070726f626ce96d7920447261676f6e75, 'Y', '2016-07-20 17:28:27'),
(513, 7, 0x56fd766f6a20447261676f6e75, 'Y', '2005-03-29 13:43:14'),
(514, 7, '', 'Y', '2003-03-10 15:25:02'),
(518, 7, '', 'Y', '2016-07-20 17:28:27'),
(537, 7, '', 'N', '2008-01-08 15:28:39'),
(539, 7, '', 'Y', '2008-01-08 15:28:39'),
(545, 7, '', 'Y', '2008-01-08 15:28:39'),
(547, 7, '', 'Y', '2008-01-08 15:28:39'),
(601, 7, '', 'Y', '2008-01-08 15:28:39'),
(645, 7, '', 'Y', '2008-01-08 15:28:39'),
(655, 7, '', 'N', '2008-01-08 15:28:39'),
(657, 7, '', 'Y', '2008-01-08 15:28:39'),
(665, 7, '', 'N', '2008-01-08 15:28:39'),
(667, 7, '', 'N', '2008-01-08 15:28:39'),
(669, 7, '', 'Y', '2008-01-08 15:28:39'),
(43, 7, 0x486d6d2c207a64e12073652c20be65207461746f207a7072e17661206f64706f76ed64e1206e61206e656578697374756aed63ed207a7072e176752e, 'Y', '2003-03-10 15:28:41'),
(500, 9, 0x46696e6c616e64ea73, 'Y', '2003-05-24 03:15:38'),
(513, 9, 0x464151, 'Y', '2003-03-10 22:13:12'),
(618, 9, 0x436c6173732e20696e696369616c, 'Y', '2003-03-12 02:26:28'),
(619, 9, 0x436c6173732e2066696e616c, 'Y', '2003-03-12 02:26:28'),
(620, 9, 0x4469662e20636c6173732e, 'Y', '2003-03-12 02:26:28'),
(675, 10, 0xced2c4dcb2bbc4dcc9cfd4d82053474620b5b5c0b4bfaacabcd0c2c6e5bed6a3bf, 'Y', '2007-05-30 11:27:37'),
(502, 9, 0x50616c617672617320646520476f, 'Y', '2003-03-12 02:26:28'),
(506, 9, 0x4f206d65736d6f2071756520706f6e746f2e20556d61206c6962657264616465206e6f20746162756c6569726f2e, 'N', '2003-03-12 02:26:28'),
(508, 9, 0x556d206e267561637574653b6d65726f206578747261206465206d6f6b75206461646f20266167726176653b73204272616e6361732e204973746f20266561637574653b207061726120636f6d70656e73617220612076616e746167656d207175652061732050726574617320742665636972633b6d20706f72206a6f676172656d207072696d6569726f2e, 'N', '2003-03-12 02:26:28'),
(509, 9, 0x657469717565746120646f2064726167266174696c64653b6f, 'Y', '2003-03-12 02:26:28'),
(510, 9, 0x66266f61637574653b72756e7320646f2064726167266174696c64653b6f, 'N', '2003-03-12 02:26:28'),
(514, 9, 0x436f6d6f2066756e63696f6e612065737461204641513f, 'Y', '2003-03-12 02:26:28'),
(515, 9, 0x457374612046415120266561637574653b206d616e7469646120646972656374616d656e7465206e6f2044726167266174696c64653b6f20706f72203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f2075736572696e666f2e7068703f7569643d3933223e426af8726e20496e676d617220426572673c2f613e2e0d0a0d0a546f64617320617320636f6e7472696275692663636564696c3b266f74696c64653b65732c20737567657374266f74696c64653b65732c206372266961637574653b74696361732c20717565697861732065207175657374266f74696c64653b657320736f62726520612046415120646576656d2073657220636f6c6f6361646173206e6f2066266f61637574653b72756d2064652064697363757373266174696c64653b6f206461204641512e, 'Y', '2003-06-17 03:28:07'),
(519, 9, 0x4e696769726920266561637574653b20756d6120666f726d612064652064656369646972207175616c206f206a6f6761646f7220717565206a6f676120636f6d206173207072657461732e20556d20646f73206a6f6761646f7265732070656761206e756d206e267561637574653b6d65726f20646520706564726173206272616e6361732e204f206f7574726f20636f6c6f636120756d61206f7520647561732070656472617320707265746173206e6f20746162756c6569726f207061726120696e646963617220756d206e267561637574653b6d65726f20706172206f7520266961637574653b6d70617220646520706564726173206272616e6361732e20536520696e6469636120636f7272656374616d656e74652c206669636120636f6d20617320706564726173207072657461732c206465206f7574726120666f726d61206669636120636f6d206173206272616e6361732e0d0a417175692c206e6f2044726167266174696c64653b2c20657374652070726f636573736f20266561637574653b2067657269646f2070656c6f207365727669646f722e204e6f2066696d20646f2070726f636573736f2c206f206a6f6761646f7220636f6d20617320706564726173206272616e63617320666963612074616d62266561637574653b6d20636f6d20362e3520706f6e746f73206465206b6f6d692e0d0a0d0a446576652d73652075736172206f204e696769726920707265666572656e6369616c6d656e7465207175616e646f206f73206a6f6761646f7265732074ea636972633b6d206f206d65736d6f206e266961637574653b76656c2e, 'N', '2003-03-12 02:26:28'),
(522, 9, 0x264561637574653b20646520626f6d20746f6d20646573656a6172202671756f743b426f6120536f7274652671756f743b20616f20616476657273266161637574653b72696f20616f20636f6d652663636564696c3b6172206f206a6f676f3f, 'Y', '2003-03-12 02:26:28'),
(523, 9, 0x53696d3c6272202f3e3c6272202f3e0d0a4973746f206a266161637574653b20666f69203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f70686f72756d2f726561642e7068703f663d3526693d31343126743d313431223e64697363757469646f3c2f613e20656d2070726f66756e6469646164652e20436f6e747269627569206f7520636f6d656e746120266167726176653b20766f6e746164652e, 'N', '2003-06-17 03:28:07'),
(525, 9, 0x53696e746f20612066616c7461206465205b2078205d206e6f2044726167266174696c64653b6f2e2048266161637574653b20706c616e6f73207061726120696d706c656e746172206973736f3f, 'Y', '2003-03-12 02:26:28'),
(526, 9, 0x54616c76657a2e2044266161637574653b20756d61206f6c68616461206e61206c69737461203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f746f646f2e706870223e412046617a65723c2f613e2e0d0a5365206e266174696c64653b6f2065737469766572206c266161637574653b20706f6465207375676572697220657373612066756e63696f6e616c6964616465206e6f203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f70686f72756d2f6c6973742e7068703f663d34223e66266f61637574653b72756d2064652064697363757373266174696c64653b6f20646f2044726167266174696c64653b6f3c2f613e2e, 'N', '2003-06-17 03:28:07'),
(535, 9, 0x506f7271756520266561637574653b2071756520612070616c61767261205b2078205d206e266174696c64653b6f20266561637574653b206578706c696361646120617175693f, 'Y', '2003-03-12 02:26:28'),
(536, 9, 0x4f752061696e6461206e266174696c64653b6f2063686567756569206c266161637574653b2c206f75206e266174696c64653b6f206d65206170657263656269206465737361206e656365737369646164652e2050657267756e7465206e6f203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f70686f72756d2f6c6973742e7068703f663d33223e66266f61637574653b72756d206461204641513c2f613e2c206f75206d616e64652d6d6520756d61206d656e736167656d2e2050726f766176656c6d656e746520657373612070616c6176726120736572266161637574653b2061646963696f6e6164612064656e74726f20646520756d206f7520646f697320646961732e, 'Y', '2003-06-17 03:28:07'),
(538, 9, 0x417461726920266561637574653b20756d6120616d65612663636564696c3b6120696d656469617461206465206361707475726120646520756d61207065647261206f7520677275706f2e204573746173207065647261206f7520677275706f2073266f61637574653b2074656d20756d61206c69626572646164652e2041766973616e646f202241746172692220647572616e7465206f206a6f676f20266561637574653b20706f722076657a657320636f7272656e746520652063657274616d656e74652073696d70266161637574653b7469636f2c206d6173206e266174696c64653b6f20266561637574653b206e6563657373266161637574653b72696f2e, 'N', '2003-06-17 03:28:07'),
(540, 9, 0x556d206b6f20266561637574653b20756d612073697475612663636564696c3b266174696c64653b6f206e6f20746162756c6569726f20636f6d2063617074757261207265706574697469766120646520756d612070656472612e20224b6f22206c69746572616c6d656e746520717565722064697a65722022457465726e6964616465222e, 'Y', '2003-06-17 03:28:07'),
(505, 9, 0x4d6f6b75, 'Y', '2003-03-12 22:52:23'),
(507, 9, 0x4b6f6d69, 'Y', '2003-03-12 22:52:23'),
(518, 9, 0x4e6967697269, 'N', '2003-03-12 22:52:23'),
(539, 9, 0x4b6f, 'Y', '2003-03-12 22:52:23'),
(545, 9, 0x4b7975, 'Y', '2003-03-12 22:52:23'),
(546, 9, 0x4b797520717565722064697a6572202671756f743b6573747564616e74652671756f743b2e20417320636c61737369666963612663636564696c3b266f74696c64653b6573206b79752076266174696c64653b6f206465203330206120312c20656d2071756520316b797520266561637574653b206f206d61697320666f7274652e2041202671756f743b646566696e692663636564696c3b266174696c64653b6f2671756f743b2064652033306b7975202665616375746520646520616c6775266563617574653b6d20717565206a266161637574653b20617072656e64657520652070657263656265206173207265677261732c206d61732061696e6461206e266174696c64653b6f206a6f676f75206e656e68756d206a6f676f2e0d0a417320636c61737369666963612663636564696c3b266f74696c64653b6573206b79752c20676572616c6d656e74652c206e266174696c64653b6f2073266174696c64653b6f206669266161637574653b76656973206174266561637574653b20616f732031306b79752c20616c7475726120656d20717565206f206573747564616e746520706f6465206a6f67617220636f6e74726120756d203164616e206e756d206a6f676f20636f6d2039207065647261732064652068616e64696361702e, 'Y', '2003-03-12 23:01:47'),
(547, 9, 0x44616e, 'Y', '2003-03-12 22:52:23'),
(553, 9, 0x4f6e646520706f73736f2064617220737567657374266f74696c64653b657320736f627265206f207369746520646f2044726167266174696c64653b6f3f, 'Y', '2003-03-12 23:01:47'),
(554, 9, 0x417320737567657374266f74696c64653b65732073266174696c64653b6f2073656d7072652062656d2076696e6461732e20436f6c6f63612d6173206e6f203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f70686f72756d2f6c6973742e7068703f663d34223e66266f61637574653b72756d2064652064697363757373266174696c64653b6f20646f2044726167266174696c64653b6f3c2f613e2e, 'N', '2003-06-17 03:28:07'),
(566, 9, 0x4f2071756520266561637574653b2065737465206c756761723f, 'Y', '2003-03-12 23:01:47'),
(568, 9, 0x4e266174696c64653b6f207365692061206d696e686120636c61737369666963612663636564696c3b266174696c64653b6f2c206f2071756520266561637574653b20717565206d65746f206e6120636c61737369666963612663636564696c3b266174696c64653b6f3f, 'Y', '2003-03-12 23:01:47'),
(575, 9, 0x45736361646120283c656d3e6c61646465723c2f656d3e29, 'Y', '2003-03-12 23:01:47'),
(597, 9, 0x42796f2d796f6d69, 'Y', '2003-03-12 23:01:47'),
(601, 9, 0x534746, 'Y', '2003-03-12 23:01:47'),
(621, 9, 0x4d6f737472617220612046415120636f6d706c657461206e756d612070266161637574653b67696e612073266f61637574653b, 'Y', '2003-03-12 23:01:47'),
(622, 9, 0x546f726e65696f73206e6f2044726167266174696c64653b6f, 'Y', '2003-03-12 23:01:47'),
(623, 9, 0x506f73736f206a6f67617220656d20746f726e65696f73206e6f2044726167266174696c64653b6f3f, 'N', '2003-03-12 23:01:47'),
(285, 9, 0x412045736361646120646120417072656e64697a6167656d20646f20476f, 'Y', '2003-03-12 23:04:28'),
(537, 9, 0x4174617269, 'N', '2003-03-13 02:04:52'),
(548, 9, 0x44616e20717565722064697a6572202671756f743b6d65737472652671756f743b2e20417320636c61737369666963612663636564696c3b266f74696c64653b65732064616e2076266174696c64653b6f206465203120706172612063696d612c207175616e746f206d61697320616c746f2c206d61697320666f72746520266561637574653b206f206a6f6761646f722e2044697a2d73652071756520756d20616d61646f72203564616e2074656d2061206d65736d6120636170616369646164652071756520756d2070726f66697373696f6e616c203164616e20286f73206a6f6761646f7265732070726f66697373696f6e616973206e266174696c64653b6f20742665636972633b6d20636c61737369666963612663636564696c3b266174696c64653b6f206b7975292e, 'Y', '2003-03-13 02:04:52'),
(565, 9, 0x496e696369616e7465206e6f2044726167266174696c64653b6f, 'Y', '2003-03-13 02:04:52'),
(484, 11, '', 'Y', '2007-06-04 15:49:02'),
(485, 11, '', 'Y', '2007-06-04 15:49:02'),
(486, 11, '', 'Y', '2007-06-04 15:49:02'),
(487, 11, 0x4d6569, 'Y', '2003-03-19 21:28:04'),
(488, 11, '', 'Y', '2007-06-04 15:49:02'),
(489, 11, '', 'Y', '2007-06-04 15:49:02'),
(490, 11, '', 'Y', '2007-06-04 15:49:02'),
(491, 11, 0x4f6b74, 'Y', '2003-03-19 21:28:04'),
(492, 11, '', 'Y', '2007-06-04 15:49:02'),
(495, 11, 0x4d6161, 'Y', '2003-03-19 21:28:04'),
(496, 11, '', 'Y', '2007-06-04 15:49:02'),
(497, 11, '', 'Y', '2007-06-04 15:49:02'),
(498, 11, 0x56616e, 'Y', '2003-05-20 10:35:25'),
(499, 11, 0x546f74, 'Y', '2003-05-20 10:35:25'),
(618, 11, 0x426567696e726174696e67, 'Y', '2016-07-29 14:57:32'),
(619, 11, 0x45696e64726174696e67, 'Y', '2016-07-29 14:57:32'),
(620, 11, 0x526174696e67766572736368696c, 'Y', '2016-07-29 14:57:32'),
(500, 11, 0x46696e73, 'Y', '2003-03-26 10:15:47'),
(502, 11, 0x476f207465726d656e, 'Y', '2003-03-19 21:28:04'),
(505, 11, '', 'Y', '2007-06-04 15:49:02'),
(506, 11, 0x45656e206765626965647370756e74, 'Y', '2016-07-30 10:54:05'),
(507, 11, '', 'Y', '2007-06-04 15:49:02'),
(509, 11, 0x447261676f6e2067656472616773726567656c73, 'Y', '2003-03-19 21:28:04'),
(510, 11, 0x447261676f6e206275677320656e2070726f626c656d656e, 'Y', '2016-07-30 10:54:05'),
(513, 11, 0x447261676f6e206f6e7477696b6b656c696e67, 'Y', '2004-11-23 09:43:42'),
(514, 11, 0x486574207a6974206869657220766f6c20666f7574656e21, 'Y', '2005-07-19 16:32:47'),
(571, 9, 0x436f6d206f2071756520266561637574653b207175652071756572657320616a756461723f, 'Y', '2003-03-23 03:28:35'),
(572, 9, 0x4573746f75203c753e74266174696c64653b6f20636f6e74656e74653c2f753e20706f722074657265732070657267756e7461646f206973736f210d0a0d0a5175616c7175657220636f697361212053652061636861732071756520756d2074266f61637574653b7069636f206f75207175657374266174696c64653b6f20657374266161637574653b20656d2066616c74612c2066617a2d6d652073616265722e204d656c686f722061696e64612c206573637265766520756d2072617363756e686f2070617261206973736f2c2065206d6574652d6f206e6f203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f70686f72756d2f6c6973742e7068703f663d33223e66266f61637574653b72756d2064617320464151733c612f3e2e, 'N', '2003-06-17 03:28:07'),
(573, 9, 0x5175616e646f20666f69206120267561637574653b6c74696d612061637475616c697a612663636564696c3b266174696c64653b6f206461204641513f, 'Y', '2003-03-23 03:28:35'),
(574, 9, 0x323030362d30372d32340d0a0d0a4e656e68756d61206d7564616e2663636564696c3b61207369676e69666963617469766120726563656e74656d656e74652e, 'Y', '2006-08-05 19:57:32'),
(607, 9, 0x506f73736f20616a7564617220636f6d206f20646573656e766f6c76696d656e746f20646f2044726167266174696c64653b6f3f, 'Y', '2003-03-23 03:28:35'),
(625, 9, 0x48266161637574653b20746f726e65696f73206d616e7469646f7320646972656374616d656e7465206e6f2044726167266174696c64653b6f3f, 'Y', '2003-03-23 03:28:35'),
(626, 9, 0x4e266174696c64653b6f2c2061696e6461206e266174696c64653b6f2e204d61732076616920686176657221204573746120266561637574653b20756d61206461732074617265666173206772616e646573206e61203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f746f646f2e706870223e6c6973746120646520636f6973617320612066617a65723c2f613e, 'Y', '2003-06-17 03:28:07'),
(639, 9, 0x5175656d2066657a206f2044726167266174696c64653b6f3f, 'Y', '2003-03-23 03:28:35'),
(640, 9, 0x4f2044726167266174696c64653b6f20666f6920666569746f206520266561637574653b206d616e7469646f2070656c6f203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f75736572696e666f2e7068703f7569643d32223e4572696b3c2f613e20652070656c6f203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f75736572696e666f2e7068703f7569643d323038223e5261676e61723c2f613e2e2044266161637574653b2d6c68657320756d206772616e64652061706c6175736f203a2d29, 'N', '2003-06-17 03:28:07'),
(643, 9, 0x506f73736f20757361722048544d4c206e6f2044726167266174696c64653b6f3f, 'N', '2003-03-23 03:28:35'),
(508, 11, 0x576974206b72696a6774206578747261203c6120687265663d222f6661712e7068703f726561643d74266361743d3323456e74727938223e6d6f6b753c2f613e2e2044697420636f6d70656e73656572742068657420766f6f726465656c20646174205a7761727420686565667420646f6f7220616c7320656572737465207465207370656c656e2e, 'Y', '2013-01-11 15:36:56'),
(515, 11, 0x4465207672616167206973206f6620646520666f7574656e20696e20646520636f6d7075746572207a697474656e2c206f66206572766f6f722e2e2e203a2d29, 'Y', '2005-07-19 16:32:47'),
(518, 11, '', 'Y', '2016-07-30 10:56:48'),
(519, 11, 0x4e696769726920686f75647420696e20646174206a65206b6c6575722077696c6c656b657572696720676573656c6563746565726420776f7264742e, 'Y', '2016-07-30 10:54:05'),
(522, 11, 0x4d6f67656e20776520646520746567656e7374616e64657220225665656c2067656c756b2220746f6577656e73656e20616c732065656e207370656c2073746172743f, 'Y', '2004-12-07 10:23:10'),
(523, 11, 0x4a612c206e61747575726c696a6b2e20536f6d6d696765207370656c6572732077616172646572656e206f6f6b20646520747261646974696f6e656c65207465726d203c6120687265663d22687474703a2f2f73656e736569732e786d702e6e65742f3f4f6e656761697368696d61737522207461726765743d225f626c616e6b223e6f6e656761697368696d6173753c2f613e2e, 'Y', '2016-07-30 10:54:05'),
(655, 11, '', 'N', '2007-06-04 15:49:02'),
(656, 11, 0x486574206d696464656c70756e742076616e2068657420626f72642e20447573206865742031302d31302070756e74206f702065656e2031397831392d626f72642e2054656e67656e20626574656b656e7420696e20686574204a6170616e7320274f6f727370726f6e672076616e2064652068656d656c27, 'N', '2003-08-23 20:31:38'),
(525, 11, 0x496b2076696e64205b785d206e696574206f7020447261676f6e2e205a696a6e20657220706c616e6e656e206f6d206469742074652076657277657a656e6c696a6b656e3f, 'Y', '2003-03-25 21:21:42'),
(526, 11, 0x4a6120696e646572646161642120506c6161747320616c736a65626c69656674206a6520737567676573746965206f7020686574203c686f6d6520666f72756d2f6c6973742e7068703f666f72756d3d343e66756e637469652064697363757373696520666f72756d3c2f686f6d653e2e0d0a0d0a4f70736f6d6d696e67656e2076616e203c623e726565647320766f6f7267657374656c64652066756e63746965733c2f623e207a696a6e206265736368696b626161720d0a3c756c3e0d0a3c6c693e696e206465203c686f6d65206e6577732e7068703e75697467617665206e6f7469746965733c2f686f6d653e2c0d0a3c6c693e6f70206465203c686f6d652066656174757265732f6c6973745f766f7465732e7068703e66756e63746965207374656d726573756c746174656e20706167696e613c2f686f6d653e2c0d0a3c6c693e766961203c693e447261676f6e2773203c686f6d6520666f72756d2f7365617263682e7068703e666f72756d207a6f656b3c2f686f6d653e2066756e637469653c2f693e2c0d0a3c6c693e766961206465203c5f687474703a2f2f73656e736569732e786d702e6e65742f3f444753576973686c697374207c4447532077656e73656e6c696a7374206f702053656e7365696073204c6962726172793e2e0d0a3c2f756c3e0d0a0d0a416c732065656e2066756e6374696520756974766f65726261617220656e207a696e6e696720697320656e2064652064657461696c7320766f6f722065656e2066756e63746965207a696a6e2064756964656c696a6b2067656e6f65672c206b616e2065656e2066756e637469652d61646d696e2068657420746f65766f6567656e2061616e206465206c696a73742076616e2066756e6374696573206f6d206f70206465207374656d6d656e206f6d206465206d656e696e672076616e2064652067656d65656e7363686170207465206b72696a67656e2e2048696572766f6f722069732068657420676f6564206f6d2064652066756e637469656f6d73636872696a76696e67207a6f2070726563696573206d6f67656c696a6b207465206d616b656e206f6d206d69737665727374616e64656e20746520766f6f726b6f6d656e2e, 'Y', '2016-07-30 10:54:05'),
(535, 11, '', 'Y', '2004-02-07 17:40:34'),
(536, 11, 0x5a657474656e20646965206465206772656e73206469636874656e2c206d6565737420696e206865742065696e647370656c2c200d0a7a6965203c6120687265663d22687474703a2f2f73656e736569732e786d702e6e65742f3f53687562616e223e53687562616e203c2f613e2e, 'Y', '2004-02-14 11:49:38'),
(5783, 40, 0x4f636f7272657520756d206572726f, 'Y', '2014-04-13 17:46:25'),
(719, 4, 0x257320676577696e6e74206d697420252e3166, 'Y', '2003-08-12 11:19:43'),
(537, 11, '', 'Y', '2016-07-30 10:56:48'),
(538, 11, 0x41746172692069732065656e2073697475617469652077616172696e2065656e20737465656e206f662065656e2067726f6570207374656e656e206d61617220266561637574653b266561637574653b6e207672696a686569642068656566742e205a6f616c7320686574206572766f6f722073746161742c206b616e20646520737465656e206f66207468652067726f6570207374656e656e20676576616e67656e20776f7264656e2074696a64656e7320646520766f6c67656e64652062657572742076616e20646520746567656e7374616e6465722e, 'Y', '2016-07-30 10:56:48'),
(539, 11, '', 'Y', '2007-06-04 15:49:02'),
(540, 11, 0x4b6f2069732065656e2073697475617469652076616e20686574206865726861616c64206e656d656e2076616e2076616e2065656e20656e6b656c6520737465656e2e204b6f20626574656b656e7420226f6e65696e646967222e, 'Y', '2003-08-23 20:31:38'),
(545, 11, '', 'Y', '2007-06-04 15:49:02'),
(546, 11, 0x4b797520626574656b656e74206c6565726c696e672e204e6f726d616c69746572206c6f70656e206465206b79752d67726164656e2076616e20333020746f7420312c207761617262696a2031206b797520646520737465726b7374652069732e203330206b797520626574656b6e742069656d616e642064696520646520726567656c732067656c656572642068656566742c20656e20766572737461616e2c206d616172206e6f67206765656e20656e6b656c207370656c206765737065656c642068656566742e0d0a4b7975206973206e696574206563687420626574726f75776261617220626f76656e206465203130206b79752e20496e2064617420676576616c20776f72647420657220696e207370656c20746567656e2065656e20312064616e207370656c65722065656e20392d737465656e2068616e6469636170206765676576656e2e, 'Y', '2003-03-26 09:16:13'),
(547, 11, '', 'Y', '2007-06-04 15:49:02'),
(548, 11, 0x44616e20626574656b656e74206d6565737465722e2044652064616e2d67726164656e206c6f70656e2076616e61662031206e61617220626f76656e2e20486f6520686f6765722064652067726161642c20686f65206265746572206465207370656c65722e2045656e20352064616e20616d6174657572206973206f6e676576656572206576656e20737465726b20616c732065656e20312064616e2070726f2e202850726f66657373696f6e616c732068656262656e206765656e206b79752d67726164656e2e29, 'Y', '2003-03-26 09:16:13'),
(645, 11, '', 'Y', '2007-06-04 15:49:02'),
(646, 11, 0x486f736869206973206a6170616e7320766f6f722022737465722220656e206865656674203220626574656b656e697373656e20696e20476f2e0d0a4f6677656c206265646f656c74206d656e20646520392068616e64696361702d706c61617473656e20277374657270756e74656e27206f702068657420626f72642c206f6677656c206265646f656c74206d656e2073706563696669656b2068657420342d342d70756e7420696e20646520686f656b2e, 'Y', '2004-11-23 09:39:11'),
(657, 11, '', 'Y', '2007-06-04 15:49:02'),
(658, 11, 0x48657420476f2d626f726420287a6f77656c207265eb656c20616c7320766972747565656c292e, 'Y', '2003-03-26 09:29:07'),
(665, 11, '', 'N', '2007-06-04 15:49:02'),
(666, 11, 0x486574207370656c20696e20646520686f656b2e2045722069732065656e207661737420737472616d69656e20766f6f7220646974206c6f6b616c65207370656c2e20446974206973206d65657374616c206465206265737465207265656b73207a657474656e20766f6f72206265696465207370656c65727320706c61617473656c696a6b2028676c6f6261616c206b616e20686574207a696a6e2064617420e9e96e2076616e206265696465207370656c657273206265737420616e6465727320737065656c74292e204a6f73656b692069732065656e207461637469736368206265677269702c206565726465722064616e2065656e207374726174656769736368206265677269702e, 'N', '2003-03-26 09:29:07'),
(667, 11, '', 'N', '2007-06-04 15:49:02'),
(668, 11, 0x4f70656e696e672e20285661737420737472616d69656e20766f6f722920686574207370656c20696e2068657420626567696e2076616e2065656e2070617274696a2e2054696a64656e7320667573656b69206761617420686574206f6d20676c6f62616c6520737472617465676973636865206f766572776567696e67656e2e2044652068656c6520676f62616e2028686574207370656c626f7264292069732062656c616e6772696a6b2e, 'N', '2004-02-14 12:28:20'),
(669, 11, '', 'Y', '2007-06-04 15:49:02'),
(670, 11, 0x53656b6920626574656b656e74202264756262656c206c6576656e222e2053656b692069732065656e206c6f6b616c6520696d7061737365207761617220322067726f6570656e2073616d656e207672696a686564656e2068656262656e2c20656e206765656e2076616e20626569646520646520616e64657265206b616e2076616e67656e2f7765676e656d656e2e, 'Y', '2003-08-23 20:31:38'),
(571, 11, 0x576161726f6d20697320686574206765627275696b2076616e2076616b616e746965646167656e2062656772656e73643f, 'Y', '2003-08-21 22:31:01'),
(572, 11, 0x416c73206865742061616e74616c2076616b616e746965646167656e206f6e62657065726b74207a6f75207a696a6e2c2064616e207a6f75206a696a206f66206a6520746567656e7374616e6465722074656c6b656e73206f706e696575772065656e2076616b616e746965646167206b756e6e656e206e656d656e206f6d2064652061666c6f6f7020646f6f722074696a64207465207665726d696a64656e2e20446174207a6f7520646520696e67657374656c646520737065656c74696a64656e206e757474656c6f6f73206d616b656e2e0d0a0d0a4d6f6d656e7465656c207a696a6e2064652062657065726b696e67656e206f7020447261676f6e20616c7320766f6c67743a0d0a3c756c3e0d0a3c6c693e76616b616e7469657320647572656e206d696e7374656e73203720646167656e3c2f6c693e0d0a3c6c693e65656e6d61616c20676573746172742c206b616e206d656e2064652076616b616e746965203c623e6e6965743c2f623e6f6e6465726272656b656e3c2f6c693e0d0a3c6c693e6e69656d616e64206b616e206d6565722064616e2033302076616b616e746965646167656e20706572206a616172206765627275696b656e3c2f6c693e0d0a3c2f756c3e, 'N', '2003-08-21 22:31:01'),
(573, 11, 0x57656c6b652061616e70617373696e67656e207a696a6e20657220726563656e7420676562657572742061616e20646520225665656c2047657374656c64652056726167656e222d6c696a73743f, 'Y', '2004-12-07 10:23:10'),
(574, 11, 0x3620646563656d62657220323030343a0d0a0d0a446520647261676f6e2067656472616773726567656c73207a696a6e2061616e6765706173742e0d0a5442474720746f726e6f6f692061616e6b6f6e646967696e67656e2076657277696a646572642e0d0a456e6b656c652028696e7465726e652046415129206c696e6b732062696a6765766f6567642e0d0a0d0a313720617567757374757320323030343a0d0a0d0a486574206465656c2022447261676f6e20696e6c656964696e672220766f6c6c6564696720686572736368726576656e2e0d0a486574206465656c2022447261676f6e207370656c6c656e2220766f6c6c6564696720686572736368726576656e2e, 'Y', '2004-12-07 10:21:12'),
(575, 11, 0x576161726f6d2076726161677420447261676f6e206f6d206d696a6e20656d61696c2061647265733f, 'Y', '2004-02-07 20:48:07'),
(576, 11, 0x4f6d206a6520286f70207665727a6f656b292065656e206e69657577207761636874776f6f7264207465206b756e6e656e2073747572656e2e0d0a0d0a4865742076657273747572656e2076616e2065656e207761636874776f6f7264206e6161722068657420616472657320696e206a652070726f6669656c2069732065656e2065656e766f75646967652061757468656e74696361746965206d616174726567656c2e20447261676f6e2077696c20686574207a6f2065656e766f75646967206d6f67656c696a6b20686f7564656e2e0d0a0d0a447261676f6e20726573706563746565727420646520706572736f6f6e6c696a6b65206c6576656e7373666565722e0d0a447261676f6e20766572737475757274206765656e206f6e67657672616167646520656d61696c2e204a65206164726573206973206f6e7a69636874626161722c20656e20776f7264742061616e206e69656d616e64207665726b6f6368742e0d0a0d0a486574206973206d6f67656c696a6b206f6d203c623e6765656e3c2f623e20656d61696c20616472657320696e2074652076756c6c656e2e200d0a5a6f72672065722064616e20766f6f7220646174206a65206a65207761636874776f6f7264203c623e776565743c2f623e21, 'Y', '2004-02-07 20:48:07'),
(597, 11, '', 'Y', '2007-06-04 15:49:02'),
(598, 11, 0x42796f2d796f6d692069732065656e207465726d20766f6f722074696a642d6c696d69657420726567656c732c2064696520696e2065656e2070617274696a2067656c64656e2c206e612068657420766572737472696a6b656e2076616e206465206e6f726d616c652074696a642e, 'Y', '2003-03-26 09:46:04'),
(601, 11, '', 'Y', '2007-06-04 15:49:02'),
(602, 11, 0x5347462069732064652061666b6f7274696e672076616e2022536d6172742047616d6520466f726d6174222028736c696d6d65207370656c20737472756374757572292e204469742069732065656e2062657374616e64206f6d20476f2028616e6420616e6465726529207370656c656e206f7020746520736c61616e2e20566f6f722064657461696c732c2076657277696a7a656e207765206e616172206465203c6120687265663d22687474703a2f2f7777772e7265642d6265616e2e636f6d2f7367662f22207461726765743d6e65773e6f6666696369eb6c6520737065636966696361746965733c2f613e2076616e205347462046465b345d2e, 'Y', '2003-08-23 20:31:38'),
(607, 11, 0x4b616e20696b2068656c70656e206f6d20646520447261676f6e207665726465722075697420746520626f7577656e3f, 'Y', '2003-03-26 09:46:04'),
(608, 11, 0x4d697373636869656e2e204a65206b756e7420626567696e6e656e206d65742065656e206b696a6b6a65207465206e656d656e206f70206465203c6120687265663d22687474703a2f2f736f75726365666f7267652e6e65742f70726f6a656374732f647261676f6e676f73657276657222207461726765743d6e65773e70726f6a6563742d706167696e61206f702027736f75726365666f726765273c2f613e2e, 'N', '2004-11-23 09:39:11'),
(621, 11, 0x4765656620646520766f6c6c656469676520225665656c2047657374656c64652056726167656e222d6c696a7374202846415129206f7020e9e96e20706167696e612e, 'Y', '2003-08-23 20:31:38'),
(622, 11, 0x447261676f6e20746f65726e6f6f69656e, 'Y', '2013-08-16 19:25:37'),
(623, 11, '', 'N', '2004-11-23 09:39:11'),
(624, 11, 0x2e2e2e20697320646520747261646974696f6e656c6520476f20626567726f6574696e673a202244616e6b206a6520766f6f72206465207569746e6f646967696e6720656e207665656c2067656c756b2122, 'N', '2004-12-07 10:21:12'),
(625, 11, 0x476565667420447261676f6e207a656c66206f6f6b20746f726e6f6f69656e3f, 'Y', '2004-11-23 09:39:11'),
(626, 11, 0x4e65652c206e6f67206e6965742e204d61617220646174206b6f6d742077656c212044697420697320e9e96e2076616e2064652067726f74652074616b656e2064696520737461616e207465207761636874656e206f70206465203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f746f646f2e706870223e746f646f206c696a73743c2f613e2e, 'Y', '2003-08-23 20:31:38'),
(639, 11, 0x57696520686565667420447261676f6e2067656d61616b743f, 'Y', '2003-03-26 09:46:04'),
(640, 11, 0x447261676f6e20476f205365727665722028444753292069732065656e206e6965742d636f6d6d65726369eb6c6520656e206f70656e2062726f6e2070726f6a6563742076616e20656e20766f6f72206d656e73656e206469652076616e20227475726e2d626173656422286265757274656c696e67732920476f20686f7564656e2e0d0a0d0a444753206861732069732067656d61616b7420646f6f72203c6120687265663d222f75736572696e666f2e7068703f7569643d3222207461726765743d225f626c616e6b223e4572696b3c2f613e20616e6420776f7264743c6120687265663d22687474703a2f2f736f75726365666f7267652e6e65742f70726f6a6563742f6d656d6265726c6973742e7068703f67726f75705f69643d323939333322207461726765743d225f626c616e6b223e6f6e646572686f7564656e3c2f613e20646f6f72203c6120687265663d222f75736572696e666f2e7068703f7569643d3222207461726765743d225f626c616e6b223e4572696b3c2f613e20656e203c6120687265663d222f75736572696e666f2e7068703f7569643d3130353622207461726765743d225f626c616e6b223e526f643c2f613e2e204465207665656c67657374656c64652076726167656e202846415129207a696a6e20676562617365657264206f70203c423e6a756c6c69653c2f423e20666565646261636b20656e20776f726474206f6e646572686f7564656e20646f6f72203c6120687265663d222f75736572696e666f2e7068703f7569643d3137303022207461726765743d5f626c616e6b3e4672616e6b3c2f613e20656e203c6120687265663d222f75736572696e666f2e7068703f7569643d393322207461726765743d5f626c616e6b3e426af8726e3c2f613e2e2044475320697320696e2076656c652074616c656e207665727461616c642e2044652076657274616c65727320737461616e203c6120687265663d222f70656f706c652e70687022207461726765743d225f626c616e6b223e686965723c2f613e20656e206f6f6b20696e20686574203c4120485245463d222f70686f72756d2f6c6973742e7068703f663d37223e76657274616c657273666f72756d3c2f413e2e, 'N', '2004-11-23 09:39:11'),
(553, 11, 0x57616e6e65657220776f7264656e206465207370656c6b6c6f6b6b656e2062696a67657765726b743f, 'Y', '2004-02-07 20:48:07'),
(554, 11, 0x4a65207370656c6b6c6f6b6b656e206c6f70656e203c623e616c6c65656e3c2f623e2077616e6e656572206a652061616e2064652062657572742062656e742e0d0a0d0a4465206b6c6f6b6b656e207374616174207374696c200d0a3c756c3e0d0a3c6c693e77616e6e656572206a6520746567656e7374616e6465722065656e207a6574206d6f657420646f6f72676576656e3c2f6c693e0d0a3c6c693e74696a64656e73206a65203c6120687265663d222f6661712e7068703f726561643d74266361743d353623456e7472793631223e736c61617074696a640d0a3c2f613e3c2f6c693e0d0a3c6c693e74696a64656e73206a65203c6120687265663d222f6661712e7068703f726561643d74266361743d353623456e7472793636223e76616b616e7469653c2f613e3c2f6c693e0d0a3c6c693e696e20686574207765656b656e642028616c73206a652064657a65206f7074696520686562742067656b6f7a656e2062696a206465203c6120687265663d222f6661712e7068703f726561643d74266361743d33353723456e7472793434223e7370656c7569746e6f646967696e673c2f613e290d0a3c2f6c693e0d0a3c2f756c3e0d0a0d0a566f6f722065656e2073706563696669656b652070617274696a20776f7264742065656e20676573746f707465207370656c6b6c6f6b2061616e6765676576656e206d657420646520766f6c67656e64652069636f6e656e2c206765746f6f6e64206f70207a6f77656c20686574207370656c657273696e666f2d67656465656c7465206f70206465207370656c706167696e61207265636874732076616e206465206765627275696b6572736e616d656e2c206f66206f70206465207370656c696e666f2d706167696e6120696e206465203c693e5672696a652074696a643c2f693e222d72696a3a0d0a3c756c3e0d0a3c6c693e3c696d616765206e696768742e6769663e203a206765627275696b657220696e203c686f6d65206661712e7068703f726561643d74266361743d353623456e74727936313e736c61617074696a643c2f686f6d653e0d0a3c6c693e3c696d616765207661636174696f6e2e6769663e203a206765627275696b6572206f70203c686f6d65206661712e7068703f726561643d74266361743d353623456e74727936363e76616b616e7469653c2f686f6d653e0d0a3c6c693e3c696d6167652077636c6f636b5f73746f702e6769663e203a20766f6f72203c686f6d65206661712e7068703f726561643d74266361743d353626653d31343323456e7472793134333e7765656b656e64656e3c2f686f6d653e0d0a3c2f756c3e, 'Y', '2016-08-02 16:29:15'),
(565, 11, 0x496e6c656964696e6720746f7420447261676f6e, 'Y', '2004-03-03 16:16:57'),
(566, 11, 0x57617420697320646974206869657220616c6c656d61616c3f, 'Y', '2003-03-26 09:56:27'),
(567, 11, 0x74703a2f2f7777772e647261676f6e676f7365727665722e6e65742f6c696e6b732e706870223e616e646572652073697465733c2f613e207a696a6e2e, 'Y', '2016-08-02 16:29:15'),
(2584, 11, 0x5370656c206c6f6f7074, 'Y', '2016-08-02 17:17:44'),
(3121, 11, '', 'Y', '2016-08-02 17:17:44'),
(3394, 11, 0x4d61616b206e6965757720746f65726e6f6f69, 'Y', '2016-08-02 17:17:44'),
(3397, 11, 0x566f656720746f65726e6f6f696c656964657220746f65, 'Y', '2016-08-02 17:17:44'),
(3398, 11, 0x57696a7a696720746f65726e6f6f696c6569646572, 'Y', '2016-08-02 17:17:44'),
(3399, 11, 0x56657277696a64657220546f65726e6f6f696c6569646572, 'Y', '2016-08-02 17:17:44'),
(3401, 11, 0x566572616e64657220537461747573, 'Y', '2016-08-02 17:17:44'),
(3403, 11, 0x566f6567206e696575777320746f65, 'Y', '2016-08-02 17:17:44'),
(3405, 11, 0x546f6f6e20746f65726e6f6f696c656964657273, 'Y', '2016-08-02 17:17:44'),
(3408, 11, 0x57696a7a6967206465656c6e656d657273, 'Y', '2016-08-02 17:19:30'),
(3410, 11, 0x546f6f6e20746f65726e6f6f696465656c6e656d657273, 'Y', '2016-08-02 17:19:30'),
(3411, 11, 0x546f65726e6f6f696465656c6e656d657273, 'Y', '2016-08-02 17:19:30'),
(3468, 11, 0x546f65726e6f6f696c65696465722076657277696a6465726421, 'Y', '2016-08-02 17:19:30'),
(568, 11, 0x496b2077656574206e6965742077656c6b6520677261616420696b206865622e20576174206765656620696b2064616e206265737420696e3f, 'Y', '2003-03-26 18:17:09'),
(569, 11, 0x706c657a69657220656e2067656c756b21, 'Y', '2016-08-02 16:29:15'),
(1401, 11, 0x4865727374656c2062796f796f6d6920696e7374656c6c696e67656e2062696a20686572696e73636872696a76656e, 'Y', '2016-08-02 17:14:05'),
(1441, 11, '', 'Y', '2016-08-02 17:14:05'),
(1498, 11, 0x4f706d65726b696e67, 'Y', '2016-08-02 17:14:05'),
(1502, 11, 0x54696a64736c696d696574, 'Y', '2016-08-02 17:14:05'),
(1959, 11, 0x54656b7374, 'Y', '2016-08-02 17:14:05'),
(2101, 11, 0x546974656c, 'Y', '2016-08-02 17:14:05'),
(2153, 11, 0x54696a6420746f656765766f65676421, 'Y', '2016-08-02 17:14:05'),
(2327, 11, '', 'Y', '2016-08-02 17:14:05'),
(1955, 11, 0x5075626c69636174696574696a64, 'Y', '2016-08-02 17:16:27'),
(1966, 11, 0x4e696575772061646d696e2062756c6c6574696e, 'Y', '2016-08-02 17:16:27'),
(2335, 11, 0x50756e74656e, 'Y', '2016-08-02 17:16:27'),
(2362, 11, 0x4d61726b65657220616c6c657320616c732067656c657a656e, 'Y', '2016-08-02 17:16:27'),
(2412, 11, 0x4e6f6f743a20487569646967652062796f796f6d692d706572696f6465206973206865727374656c64206f6e6765616368742076616e20766f6c6c65646967652072657365742e, 'Y', '2016-08-02 17:16:27'),
(2429, 11, 0x537461727474696a64, 'Y', '2016-08-02 17:16:27'),
(2450, 11, '', 'Y', '2016-08-02 17:16:27'),
(2460, 11, 0x42656b696a6b204c6164646572, 'Y', '2016-08-02 17:16:27'),
(2461, 11, 0x41646d696e20746f65726e6f6f697370656c, 'Y', '2016-08-02 17:16:27'),
(643, 11, 0x4b616e20696b2048544d4c206765627275696b656e206f7020447261676f6e3f, 'N', '2003-03-26 18:17:09'),
(644, 11, 0x4a612c206a65206b756e742048544d4c206465656c73206765627275696b656e20696e206a652062696f2c20696e2062657269636874656e20656e20696e20646520666f72756d732e20416c73206a652048544d4c20636f646573206765627275696b742c206d6f6574206a652077656c207a656b6572207a696a6e20646174206a652061616e20646520726567656c7320656e2073796e7461782076616e2048544d4c20686f7564742e2044697420626574656b656e74206f6e64657220616e64657265206465206166736c75697420636f64652773206765627275696b656e20776161722064697420686f6f72742e0d0a0d0a566f6c67656e64652048544d4c20697320746f656765737461616e3a0d0a0d0a3c756c3e200d0a3c6c693e6c696a7374656e200d0a3c6c693e3c623e7665743c2f623e200d0a3c6c693e3c693e637572736965663c2f693e200d0a3c6c693e3c753e6f6e6465726c696a6e656e3c2f753e200d0a3c6c693e3c666f6e7420636f6c6f723d7265643e6c6574746572747970653c2f666f6e743e200d0a3c6c693e6861616b6a65733a203c203e200d0a3c6c693e3c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e6574223e6c696e6b733c2f613e200d0a3c6c693e6b6f727465206c696e6b733a203c687474703a2f2f7777772e647261676f6e676f7365727665722e6e65743e0d0a3c2f756c3e200d0a0d0a44657a65206c696a737420776572642067656d61616b74206d657420646520766f6c67656e646520636f64653a0d0a0d0a266c743b756c2667743b200d0a266c743b6c692667743b6c696a7374656e200d0a266c743b6c692667743b266c743b622667743b766574266c743b2f622667743b200d0a266c743b6c692667743b266c743b692667743b63757273696566266c743b2f692667743b200d0a266c743b6c692667743b266c743b752667743b6f6e6465726c696a6e656e266c743b2f752667743b200d0a266c743b6c692667743b266c743b666f6e7420636f6c6f723d7265642667743b6c657474657274797065266c743b2f666f6e742667743b200d0a266c743b6c692667743b6861616b6a65733a2026616d703b6c743b2026616d703b67743b200d0a266c743b6c692667743b266c743b6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e6574222667743b6c696e6b73266c743b2f612667743b200d0a266c743b6c692667743b6b6f727465206c696e6b733a20266c743b687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742667743b200d0a266c743b2f756c2667743b, 'N', '2003-08-23 20:31:38'),
(523, 6, 0x3c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f70686f72756d2f726561642e7068703f663d3526693d31343126743d313431223e53ed3c2f613e2e, 'Y', '2003-08-11 04:36:23'),
(536, 6, 0x46696e206465206c6120706172746964612e, 'Y', '2003-08-11 04:36:23'),
(538, 6, 0x417461726920657320756e6120616d656e617a6120696e6d696e656e746520646520636170747572617220756e6120706965647261206f20756e20677275706f2e204573746120706965647261206f20677275706f207469656e652061686f726120756e6120736f6c61206c696265727461642c207920706f6472ed61207365722063617074757261646120656e20656c207072f378696d6f207475726e6f2e20457320757375616c2064656369722022417461726922206d69656e74726173207365206a756567612079206369657274616d656e746520657320616d61626c652c207065726f206e6f206f626c696761746f72696f2e, 'Y', '2013-11-11 22:23:13'),
(540, 6, 0x4b6f206573206c612073697475616369f36e20656e206c61207175652c206465206a756761722064652064657465726d696e616461206d616e6572612c20756e206a756761646f722064656a6172ed6120656c207461626c65726f206578616374616d656e746520696775616c206120636f6d6f2065737461626120616e74657320646520717565207375206f706f6e656e656e7465206869636965726120656c20fa6c74696d6f206d6f76696d69656e746f2e204c69746572616c6d656e7465207369676e69666963612022457465726e69646164222079206c6173207265676c617320646520476f206e6f207065726d6974656e20717565206573746f2070756564612064617273652e, 'Y', '2003-08-11 04:36:23'),
(257, 7, '', 'Y', '2008-01-08 15:28:39'),
(258, 7, 0x4d6e6f686f20696e666f726d6163ed206f20676f, 'Y', '2003-04-04 13:58:51'),
(259, 7, '', 'Y', '2008-01-08 15:28:39'),
(260, 7, 0xc86173746f206b6c6164656ee9206f74e17a6b79202846415129207a6520736b7570696e79206e657773207265632e67616d65732e676f, 'Y', '2004-09-08 17:17:45'),
(265, 7, '', 'Y', '2008-01-08 15:28:39'),
(267, 7, '', 'Y', '2008-01-08 15:28:39'),
(283, 7, '', 'Y', '2008-01-08 15:28:39'),
(285, 7, '', 'Y', '2008-01-08 15:28:39'),
(305, 7, '', 'Y', '2004-09-02 16:23:40'),
(266, 7, 0x5765626f76e120737472e16e6b612070726f2073706f6c757072e163692e20c874ec74652061207a61706f6a746520736521, 'Y', '2003-04-11 13:06:28'),
(272, 7, 0x4d616e6761206f20676f2e20446f706f7275e8756a656d6521, 'Y', '2003-04-11 13:06:28'),
(274, 7, '', 'Y', '2003-04-11 13:06:28'),
(276, 7, 0x56656c6d6920646f62f865206e617073616efd20fa766f64206f642042726974736be92061736f636961636520676f2e, 'Y', '2003-04-11 13:06:28'),
(275, 7, 0x546f746f206a652076656c6d692070ec6b6ee120737472e16e6b61206e612075e8656eed2073652068f8652e, 'Y', '2004-09-08 17:31:41'),
(281, 7, 0x5374726174656769652061207465726ded6e792e, 'Y', '2003-04-18 16:56:35'),
(618, 2, 0x5374617274726174696e67, 'Y', '2003-04-29 13:30:54'),
(619, 2, 0x536c757474726174696e67, 'Y', '2003-04-29 13:30:54'),
(620, 2, 0x526174696e6720666f72736b6a656c6c, 'Y', '2003-04-29 13:30:54'),
(500, 2, 0x46696e736b, 'Y', '2003-04-29 13:30:54'),
(502, 2, 0x476f207465726d6572, 'Y', '2003-04-29 13:30:54'),
(505, 2, '', 'Y', '2008-07-26 20:40:42'),
(506, 2, 0x4465742073616d6d6520736f6d20706f656e672e204574206c656469672070756e6b742070e520627265747465742e, 'N', '2003-04-29 13:30:54'),
(507, 2, '', 'Y', '2008-07-26 20:40:42'),
(508, 2, 0x457420616e74616c6c20656b73747261203c6120687265663d222f6661712e7068703f726561643d74266361743d3323456e74727938223e6d6f6b753c2f613e2074696c20687669742e20446574746520736b616c206b6f6d70656e7365726520666f7220666f7264656c656e20737661727420616e74617320e520686120617620e5207370696c6c652066f87273742e, 'N', '2004-10-20 14:27:13'),
(509, 2, 0x447261676f6e206574696b65747465, 'Y', '2003-04-29 13:30:54'),
(510, 2, 0x447261676f6e20666f7261, 'N', '2003-04-29 13:30:54'),
(513, 2, 0x447261676f6e20757476696b6c696e67, 'Y', '2004-10-20 14:27:13'),
(514, 2, 0x48766f7264616e207669726b65722064656e6e65204f5353206c697374656e3f, 'Y', '2003-04-29 13:30:54'),
(515, 2, 0x4f5353206c697374656e207665646c696b65686f6c64657320646972656b74652070e520447261676f6e206176203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f75736572696e666f2e7068703f7569643d3933223e426af8726e20496e676d617220426572673c2f613e2e0d0a0d0a416c6c65206269647261672c20666f72736c61672c2070726f626c656d65722f6b6c6167657220656c6c6572207370f872736de56c206f6d204f5353206c697374656e20736b616c20706f737465732069204f5353206469736b75736a6f6e7320666f72756d656e742e, 'Y', '2003-06-25 17:45:08'),
(518, 2, '', 'N', '2008-07-26 20:40:42'),
(519, 2, 0x4e696769726920657220656e206de5746520e5206176676af87265206876656d20736f6d20736b616c207370696c6c652073766172742e2044656e20656e65207370696c6c6572656e20706c756b6b6572206f707020657420616e74616c6c20687669746520737465696e6572206f6720736b6a756c65722064656d20692068e56e64656e2073696e2e2044656e20616e647265207370696c6c6572656e20706c6173736572657220656e20656c6c657220746f2073766172746520737465696e65722070e5206272657474657420666f7220e520766973652061742068616e2074726f72206465742065722068656e686f6c6473766973206f64646574616c6c20656c6c65722070617274616c6c20687669746520737465696e65722e20487669732068616e20676a65747465722072696b7469672c207370696c6c65722068616e2073766172742c20656c6c6572207370696c6c65722068616e20687669742e0d0a4865722070e520447261676f6e2068e56e6474657265732064656e6e652070726f73657373656e20617620736572766572656e2e2044656e20736f6d2066e57220687669742066e572206f6773e520362e35206b6f6d692e0d0a4e69676972692062f8722062617265206272756b6573206d656c6c6f6d207370696c6c6572652061762074696c6ee6726d65742073616d6d6520737479726b652e, 'N', '2003-04-29 13:30:54'),
(522, 2, 0x45722064657420677265697420e520f86e736b65206e6f656e20226c796b6b652074696c222069207374617274656e20617620706172746965743f, 'Y', '2003-06-25 17:45:08'),
(523, 2, 0x4a612e0d0a44657474652068617220626c697474203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f70686f72756d2f20726561642e7068703f663d3526693d31343126743d313431223e6469736b75746572743c2f613e207469646c69676572652e20476a65726e65206b6f6d6d656e74e97220656c6c65722062696472612e, 'N', '2003-06-25 17:45:08'),
(525, 2, 0x4a6567207361766e6572205b785d2070e520447261676f6e2e20457220646574206e6f656e20706c616e6572206f6d20e5206c616765206465743f, 'Y', '2003-04-29 13:30:54'),
(526, 2, 0x4b616e736b6a652e2053652070e5203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f746f646f2e706870223e476af872656de56c206c697374656e3c2f613e2e20487669732064657420696b6b65206572206465722c206b616e20647520666f7265736ce5206465742069203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f70686f72756d2f206c6973742e7068703f663d34223e447261676f6e206469736b75736a6f6e73666f72756d65743c2f613e2e, 'N', '2003-06-25 17:45:08'),
(535, 2, '', 'Y', '2003-04-29 13:30:54'),
(536, 2, 0x536c7574747370696c6c2e, 'Y', '2004-08-12 16:43:43'),
(80, 24, 0x507269686cc3a173656ec3bd20616b6f, 'Y', '2004-08-13 12:33:12'),
(81, 24, 0x4e65707269686cc3a173656ec3bd2076, 'Y', '2004-08-13 12:33:12'),
(83, 24, 0xc48c616bc3a17265c588, 'Y', '2004-08-13 12:33:41'),
(85, 24, 0x537072c3a17679, 'Y', '2004-08-13 12:34:40'),
(86, 24, 0x506f736c61c5a520737072c3a17675, 'Y', '2004-10-09 13:03:52'),
(553, 2, 0x4ee5722067e5722070617274696b6c6f6b6b656e3f, 'Y', '2003-10-04 00:19:18'),
(554, 2, 0x466f72736c616720657220616c6c7469642076656c6b6f6d6e652e20506f73742064656d2069203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f70686f72756d2f206c6973742e7068703f663d34223e447261676f6e206469736b75736a6f6e73666f72756d65743c2f613e2e, 'N', '2003-06-25 17:45:08'),
(565, 2, 0x447261676f6e206e79626567796e6e6572, 'Y', '2003-04-29 13:30:54'),
(573, 2, 0x48766120657220646520736973746520656e6472696e67656e652069204f5353206c697374656e3f, 'Y', '2003-10-04 00:19:18'),
(574, 2, '', 'Y', '2008-07-26 20:40:42'),
(597, 2, '', 'Y', '2008-07-26 20:40:42'),
(598, 2, 0x42796f20796f6d69206572206e61766e65742070e520746964737265676c657220736f6d206b6f6d6d657220696e6e20692062696c646574206ee572207061727469657420686f766564746964206572206f70706272756b742e, 'Y', '2003-04-29 13:35:30'),
(621, 2, 0x5669732068656c65204f5353206c697374656e2070e520656e20736964652e, 'Y', '2003-06-25 17:45:08'),
(645, 2, '', 'Y', '2008-07-26 20:40:42'),
(646, 2, 0x486f736869206572206a6170616e736b20666f72202273746a65726e6522206f672068617220746f2062657479646e696e6765722e2047656e6572656c7420657220646574206465206e69206d65726b6564652070756e6b74656e65206465722068616e6469636170737465696e657220706c617373657265732e204d65726520737065736966696b206272756b657320646574206f6d20342d342070756e6b746574206920686af8726e65742e, 'Y', '2003-06-25 17:45:08'),
(655, 2, '', 'N', '2008-07-26 20:40:42'),
(656, 2, 0x53656e74657270756e6b7465742070e520627265747465742c206476732031302d31302070e52065742031397831392062726574742e2054656e67656e206572206a6170616e736b20666f72202268696d6d656c656e73206f707072696e6e656c7365222e, 'N', '2003-06-25 17:45:08'),
(657, 2, '', 'Y', '2008-07-26 20:40:42'),
(658, 2, 0x476f20627265747465742e, 'Y', '2003-04-29 13:39:05'),
(665, 2, '', 'N', '2008-07-26 20:40:42'),
(666, 2, 0x457420657461626c6572206df86e7374657220666f72207370696c6c206920656e206c6f6b616c20706f7369736a6f6e2e2056616e6c69677669732064656e2062657374652073656b76656e73656e20666f7220626567676520706172746572206c6f6b616c742c206d656e20696b6b65206ef86476656e64696776697320676c6f62616c742e204a6f73656b6920657220656e2074616b7469736b207465726d2c20696b6b6520656e207374726174656769736b2e, 'N', '2003-04-29 13:39:05'),
(667, 2, '', 'N', '2008-07-26 20:40:42'),
(668, 2, 0xc5706e696e67737370696c6c2e2028457461626c657274206df86e7374657220666f7229207370696c6c206920e5706e696e67656e20617620706172746965742e20467573656b692074617220666f722073656720676c6f62616c65207374726174656769736b6520767572646572696e6765722c206f672062657472616b7465722068656c6520627265747465742e, 'N', '2003-04-29 13:39:05'),
(669, 2, '', 'Y', '2008-07-26 20:40:42'),
(670, 2, 0x53656b692062657479722022646f6262656c74206c6976222e2053656b6920657220656e206c6f6b616c207369747561736a6f6e20646572207370696c6c6572656e652068617220656e20677275707065206876657220736f6d2064656c65722066726968657465722c206f672064657220696e67656e206b616e2066616e67652064656e20616e6472652e, 'Y', '2003-06-25 17:45:08'),
(537, 2, '', 'N', '2008-07-26 20:40:42');
INSERT INTO `Translations` (`Original_ID`, `Language_ID`, `Text`, `Translated`, `Updated`) VALUES
(538, 2, 0x417461726920657220656e20756d696464656c626172207472757373656c206f6d20e52066616e676520656e20737465696e20656c6c657220656e2067727570706520737465696e65723b20737465696e656e20656c6c6572206772757070656e20686172206261726520656e206672696865742069676a656e2e204e6f656e2067616e676572206572206465742076616e6c696720e52073692022617461726922206ee572206d616e207370696c6c65723b20646574206572206162736f6c7574742068f8666c69672c206d656e20696b6b652070e56b72657665742e, 'N', '2003-06-25 17:45:08'),
(539, 2, '', 'Y', '2008-07-26 20:40:42'),
(540, 2, 0x456e206b6f20657220656e207369747561736a6f6e2070e5206272657474657420646572207370696c6c6572656e6520676a656e74617474652067616e6765722066616e676572206d6f747374616e646572656e7320737465696e206672656d206f672074696c62616b652e204b6f206265747972202265766967686574222e, 'Y', '2003-06-25 17:45:08'),
(545, 2, '', 'Y', '2008-07-26 20:40:42'),
(546, 2, 0x4b7975206265747972202273747564656e74222e204b7975206772616465722067e572206672612033302074696c20312c20646572203120657220737465726b6573742e2022446566696e69736a6f6e656e2220617620656e203330206b7975207370696c6c65722c20657220656e20736f6d20686172206ce67274206f6720666f727374e57474207265676c656e652c206d656e20736f6d20696b6b6520686172207370696c6c74206e6f656e207061727469657220656e6ee52e0d0a4b79752067726164657220626c697220696b6b652073e6726c69672070e56c6974656c6967652066f872206465206ee6726d657220736567203130206b79752c20646572207370696c6c6572656e206b616e206d617463686573206d6f7420656e20312064616e206d6564206e6920737465696e657220692068616e64696361702e, 'Y', '2003-06-25 17:45:08'),
(547, 2, '', 'Y', '2008-07-26 20:40:42'),
(548, 2, 0x44616e20626574797220226d6573746572222e2044616e2067726164656e2067e572206672612031206f67206f70706f7665723b2065742068f879657265206e756d6d657220696e64696b6572657220656e20737465726b657265207370696c6c65722e20456e20352064616e20616d6174f872207369657320e52076e672652061762073616d6d6520737479726b6520736f6d20656e20312064616e2070726f666573736a6f6e656c6c2e, 'Y', '2003-06-25 17:45:08'),
(501, 10, 0xc1fad6aeb39ec6e5cad6d3ebcab9d3c3d5dfb8f6c8cbd7cac1cf, 'N', '2007-10-01 07:26:26'),
(504, 10, 0xcea7c6e5b9e6d4f2, 'Y', '2003-05-07 05:18:53'),
(511, 10, 0xc1fad6aeb39eb5c4d1a1b5a5d3ebd1a1cfee, 'Y', '2007-05-29 17:39:00'),
(512, 10, 0xc1fad6aeb39ec6e5bed6, 'Y', '2007-05-29 17:39:00'),
(529, 10, 0xced2d2aac8e7baceb2e9d1afccd8b6a8b5c4b9e6d4f2a3bf, 'Y', '2007-05-29 17:39:00'),
(530, 10, 0xd4dab3a3bcfbcecacce2bbf2c2dbccb3d6d0cbb5c3f7c4fab5c4b2e9d1afa1a3d7eebac3cac7cbb5c3f7c4facfebb2e9d1afb5c4b9e6d4f2a3acd3c3d4dac6e5bed6b5c4cab2e7dbc7e9bff6d6d0a1a3, 'Y', '2007-10-01 09:24:54'),
(531, 10, 0xcea7c6e5b5c4bbf9b1beb9e6d4f2cac7cab2e7dba3bf, 'Y', '2007-05-29 17:39:00'),
(532, 10, 0xc1bdcebbb6d4cad6d4dad2bbb8f6b7bdd0cec6e5c5ccc9cfb0fccea7c1eccdc1a1a3c6e5c5cccac720313978313920c2b7a3acb5abd2b2d3d02039783920c2b7d3eb20313378313320c2b7b5c4a1a3b6d4cad6c2d6c1f7d4dabdbbb2e6b5e3c9cfb7c5cfc2d7d4bcbad1d5c9abb5c4c6e5d7d3a1a3badad7d3cfc8cfc2a3acc8bbbaf3cac7b0d7d7d3a1a30d0a0d0ac8e7b9fbc2e4d7d3baf3a3acc8c3b6d4b7bdb5c4d2bbc8bac6e5d7d3c3bbd3d0c1cbc6f8a3acb6d4b7bdb5c4d5e2c8bac6e5d7d3becdb4d3c6e5c5ccc9cfc4c3b5f4a3a8cce1d7d3a3a9a1a3c8e7b9fbc2e4d7d3bbe1b5bcd6c2d7d4bcbab5c4d2bbc8bac6e5d7d3c3bbd3d0c6f8a3acd5e2d2bbcad6cac7cea5b9e6b5c4bdfbd7d3a1a30d0a0d0ab5b1cbabb7bdb6bcd0e9cad6baf3a3acb6d4bed6becdbde1caf8a3acbfaacabccafdb5d8bcc6b7d6a3bacfc8cceec2fad6d0c1a2bfd5bce4a3a8b5a5b9d9a3a9a3acc8bbbaf3d2c6b3fdcbc0d7d3a1a3badab7bdd3ebb0d7b7bdb5c4c1eccdc1cac7d2d4b0fccea7b5c4bdbbb2e6b5e3bcc6cbe3a3acbcf5b5f4b1bbb6d4cad6cce1d7d3b5c4cafdc4bfa1a30d0a0d0acfeac7e9bfc9b2cebfbc3c6120687265663d22687474703a2f2f706c6179676f2e746f2f696e7465726163746976652f696e6465782e68746d6c22207461726765743d6e65773ebba5b6afd1a7cea7c6e53c2f613e2e, 'Y', '2007-05-29 17:39:00'),
(533, 10, 0xc4c4c0efbfc9d5d2b5bdb8fcb6e0b5c4cea7c6e5cdf8d5bea3bf, 'Y', '2007-05-29 17:39:00'),
(534, 10, 0xc1fad6aeb39eb5c4203c6120687265663d222f6c696e6b732e706870223ec1acbde13c2f613ea1a3, 'Y', '2007-05-29 17:39:00'),
(541, 10, 0xcab1bce4d3c3b9e2b5c4c6e5bed6bfc9d2d4d6d8d0c2bcc6cab1c2f0a3bf, 'Y', '2007-05-29 17:39:00'),
(542, 10, 0xb2bbd0d0a3ac3c693ec7ebd6d8d0c2bfaacabcd0c2c6e5bed6b2a2203c6120687265663d222f6661712e7068703f726561643d74266361743d3536223ed1a1d4f1cacab5b1b5c4cab1cfde3c2f613ea3a13c2f693e, 'Y', '2007-05-29 17:39:00'),
(549, 10, 0xced2d4dac1fad6aeb39ed3d0b6e0c9d9ccecbcd9c6daa3bf, 'Y', '2007-05-29 17:39:00'),
(550, 10, 0xd7eeb6e020333020cceca3a8c3bfc4eaa3a9a3acc3bfb8f6d4c2d4f6bcd320322e3520ccecbcd9c6daa1a3, 'Y', '2007-05-29 17:39:00'),
(551, 10, 0x22c4bfc7b0b6d4bed622b5c4cfeec4bfcac7cab2e7dba3bf, 'N', '2007-05-29 17:39:00'),
(552, 10, 0xbcf2b5a5cbb5c3f7203c6120687265663d222f7374617475732e706870223ec4bfc7b0b6d4bed63c2f613e20b5c4cfeec4bfa3ba0d0a3c756c3e0d0a3c6c693e3c623ed0d5c3fb3c2f623e20cab9d3c3d5dfb5c4b1bec3fbbbf2bbafc3fba3acbfc9cbe6d2e2b1e4b8fca3acb8f1cabdb2bbcfdea1a30d0a3c6c693e3c623ed5cabac53c2f623e20cab9d3c3d5dfb5c7c8ebb5c4d5cabac5a3acb2bbbfc9b1e4b8fca1a30d0a3c6c693e3c623ebfaab7c5b6d4bed63c2f623e20b8f8b6d4cad6b5c4d0c5cfa2a3acbfc9cbe6d2e2b1e4b8fca1a30d0a3c6c693e3c623e444753b5c8bcb63c2f623e20cab9d3c3d5dfc4bfc7b0d4dac1fad6aeb39eb5c4b5c8bcb6a3acd3c9cfb5cdb3bef6b6a8a1a30d0a3c6c693e3c623eb2cebfbcb5c8bcb63c2f623e20b2b9b3e4b5c4b5c8bcb6d7cac1cfa3acc0fdc8e7c6e4cbfccea7c6e5d7e9d6afc8cfb6a8b5c4b5c8bcb6a3acbfc9cbe6d2e2b1e4b8fca1a30d0a3c2f756c3e, 'N', '2007-05-29 17:39:00'),
(555, 10, 0xc8e7baceb9dbbfb4534746c6e5c6d7a3bf, 'N', '2003-05-07 07:00:28'),
(556, 10, 0xd3d0d0edb6e0b3ccd0f2bfc9d2d4b9dbbfb4d3ebb1e0bcadc6e5c6d72053474620996ea1a3d2bbb8f6bac3d1a1d4f1cac7203c6120687265663d22687474703a2f2f7777772e72656e652d67726f74686d616e6e2e64652f6a61676f2f223e4a61676f3c2f613ea3ac4a61766120cea7c6e5b1e0bcadc6f7a1a30d0a0d0ad3a2b9facea7c6e5d0adbbe1d3d0d2bbb3a4c1d0b5c4203c6120687265663d22687474703a2f2f7777772e62726974676f2e6f72672f676f70637265732f676f7063726573312e68746d6c23732d76696577223eb3ccd0f23c2f613e20bfc9b9dbbfb42053474620996ea1a30d0a0d0ab5b1c4fad3d0c1cb2053474620b9dbbfb4b3ccd0f2baf3a3acbfc9d2d4c9e8b6a8e4afc0c0c6f7c0b4c1acbdd3206d696d65a3accae4c8eb276170706c69636174696f6e2f782d676f2d73676627a3acd6bbd2aab5e3d1a1becdbfc9d2d4bca4bbeeb3ccd0f2a1a3, 'N', '2007-05-29 17:39:00'),
(557, 10, 0xc8e7bacebfaacabcd0c2c6e5bed6a3bf, 'Y', '2007-05-29 17:39:00'),
(558, 10, 0xd3d0bcb8d6d6b7bdcabdbfc9d2d4bfaacabcd0c2c6e5bed6a3ba3c554c3e0d0a0d0a3c4c493ebcd3c8eb203c4120485245463d2277616974696e675f726f6f6d2e706870223eb4fdbed6cad23c2f413e20b5c4b6d4bed6a1a30d0a0d0ac8e7b9fbc4facfebd5d2d0c2b6d4cad6becdd3c3d5e2b8f6b7bdb7a8a1a3cad7cfc8a3acb5e3d1a1203c6120687265663d222f77616974696e675f726f6f6d2e706870223eb4fdbed6cad23c2f613ea1a3d5d2b5bdcfebbcd3c8ebb5c4c6e5bed6a3acc8bbbaf3b5e3d1a1d7f3b1dfb5c4c0b6c9ab22d7cac1cf22a1a3d4dad5e2d2bbd2b3b5c4cfc2b7bdd3a6b8c3d3d0c6e5bed6b5c4cfeacfb8d7cac1cfa1a3c8e7b9fbc4facfebbcd3c8eba3acbecdb5e3d1a122bcd3c8eb22a1a3becdcac7d5e2d1f9bcf2b5a5a1a30d0a0d0a3c4c493ed4da203c4120485245463d2277616974696e675f726f6f6d2e706870223eb4fdbed6cad23c2f413e20bfafb5c7c4fad7d4bcbac9e8b6a8b5c4c6e5bed6a1a30d0a0d0ac8e7b9fb203c6120687265663d2277616974696e675f726f6f6d2e706870223eb4fdbed6cad23c2f613e20c3bbd3d0c4facfebbcd3c8ebb5c4c6e5bed6a3acc4c7e7dbc4fabfc9d2d4bfafb5c7d7d4bcbab5c4c6e5bed6a1a3cad7cfc8a3accceed0b4b4fdbed6cad2cfc2b7bdb5c4b1edb8f1a1a3b5e3d1a122d4f6bcd3c6e5bed622a1a3b5c8b4fdd2bbcfc2a3acd2b2d0edbcb8ccecbaf3c4fabecdd3d0c6e5bfc9cfc2c1cba1a30d0a0d0a3c4c493ed1fbc7ebc4fab5c4c5f3d3d1a1a33c42523e0d0ac8e7b9fbc4fad6aab5c0c4b3cebbb6d4cad6b5c4d5cabac5a3acc4fabfc9d2d4d1fbc7ebcbfbc0b4cfc2c6e5a3acbdf8c8ebd1a1b5a5d6d0b5c4203c6120687265663d222f6d6573736167652e7068703f6d6f64653d496e76697465223ed1fbc7eb3c2f613ea1a3cceec9cfcfebd2aab5c4c6e5bed6c9e8b6a8a3acc8bbbaf3cbcdb3f6d1fbc7eba1a3c4fab5c4b6d4cad6bfc9d2d4d0deb8c4c6e5bed6c9e8b6a8a1a30d0ad4dac3bfcebbc6e5cad6d2b3b5c4cfc2b7bdd2b2d3d022d1fbc7ebd5e2cebbc6e5cad622b5c4c1acbdd3a1a3cab9d3c3d5e2b8f6c1acbdd3d2b2c4dcd1fbc7ebc5f3d3d1a3acb6f8c7d2b8fcbfeccbd9a1a33c2f554c3e, 'N', '2007-10-01 07:26:26'),
(559, 10, 0xc8e7bacec2e4d7d3a3bf, 'Y', '2007-05-29 17:39:00'),
(560, 10, 0xd4da203c6120687265663d222f7374617475732e706870223e20c4bfc7b0b6d4bed63c2f613e20d3d0bbbbc4facfc2b5c4c6e5bed6a1a3b5e3d1a1c6e5bed6bac5c2ebbecdbbe1b4f2bfaac6e5bed6a1a30d0a0d0ab4f2bfaac6e5bed6baf3a3acb5e3d1a1bfd5b5c4bdbbb2e6b5e3becdbfc9d2d4c2e4d7d3a3a8cfc2b3f6d2bbcad6a3a9a1a3c8e7b9fbd5e2d2bbcad6cce1d7dfc8cebaceb6d4cad6c6e5d7d3a3accfb5cdb3becdbbe1d7d4b6afb4a6c0eda1a3d0e9cad6bbf2c8cfcae4d2b2bfc9b5e3d1a1c6e5c5cccfc2b5c4c1acbdd3a1a30d0a0d0ab5b1d7f6b3f6d0c2b5c4c2e4d7d32fd0e9cad62fc8cfcae4d6aebaf3a3acb0b4cfc222cbcdb3f622c0b4c8b7b6a8c4fab5c4d1a1d4f1a1a3c8e7b9fbc4fab8c4b1e4d6f7d2e2a3acbecdb0b4cfc222bbd8cad622b0b4c5a5a1a3, 'Y', '2007-06-07 17:29:40'),
(561, 10, 0xc8e7bacec9beb3fdbdf8d0d0d6d0b5c4b6d4bed6a3bf, 'Y', '2007-05-29 17:39:00'),
(562, 10, 0xd4dab5dacaaecad6d6aec7b0a3acc6e5c5cccfc2b7bdbbe1d3d022c9beb3fd22d1a1cfeea1a3c8e7b9fbb5e3d1a1c9beb3fda3acb2bbbbe1d3b0cfecc4fab5c4b5c8bcb6a1a3b3acb9fdcaaecad6d6aebaf3a3acc6e5bed6becdcedeb7a8c9beb3fda1a3, 'N', '2007-05-29 17:39:00'),
(563, 10, 0xc8e7bacebde1caf8b6d4bed6a3bf, 'Y', '2007-05-29 17:39:00'),
(564, 10, 0xd6bbd3d0bbbb3c693ec4fa3c2f693ecfc2cab1b2c5c4dcbde1caf8b6d4bed6a1a30d0a3c554c3e0d0a3c4c493ec4fad3ebb6d4cad6c1acd0f8d0e9cad6a1a3d5e2cac7d5fdb3a3b5c4bde1caf8b6d4bed6b7bdcabda1a3c8bbbaf3c4e3c3c7bdabb5e3d1a1cbc0d7d3a1a3c8bbbaf3c1fad6aeb39ebbe1cafdb5d8a3acbef6b6a8caa4b8baa1a30d0a0d0a3c4c493ecab9d3c322c8cfcae422b0b4c5a5a1a3c8cfcae4baf3b5c8bcb6bbe1cadcb5bdd3b0cfeca1a30d0a0d0a3c4c493ec8c3c6e5bed6cab1bce4d3c3cdeaa1a33c693e2820b5abcac7c7ebc4facfc8bfbcc2c7c6e4cbfcd1a1d4f1a3a129203c2f693ec8e7b9fbc4fab5c4cab1bce4d3c3cdeaa3acc4fabecdcbe3cae4c1cba3acc4fab5c4b5c8bcb6d2b2bbe1cadcb5bdd3b0cfeca1a30d0a3c2f554c3e, 'N', '2007-06-07 17:29:40'),
(570, 10, 0xc1fad6aeb39ebcc6cab1b7bdcabd, 'Y', '2007-05-29 17:39:00'),
(577, 10, 0xc8d5b1becabdb5b9cafd28b6c1c3eb29bcc6cab1cac7cab2e7dba3bf, 'Y', '2007-06-06 20:10:12'),
(578, 10, 0xb5b1d6f7d2aacab1bce4d3c3b9e2baf3a3acc6e5cad6b5c43c623ec3bfd2bbcad63c2f623eb6bcd3d0b9ccb6a8b5c4cab1cfdea1a3b3fdb4cbd6aecde2a3acbbb9d3d0d4bcb6a8bac3b5c4b4cecafda3ba0d0a3c554c3e0d0a3c4c493eb5b1c6e5cad6d4dacab1cfdec4dac2e4d7d3a3acbcc6cab1d6d3becdbbd8b5bdcab1cfdeb5c4bfaacabca3acb4cecafdd2b2b2bbbbe1bcf5c9d9a1a33c2f4c493e0d0a0d0a3c4c493eb5b1c6e5cad6d4dacab1cfdec4dac3bbd3d0c2e4d7d3a3acb4cecafdbecdbbe1bcf5c9d9d2bbb4cea3acbcc6cab1c1a2bfccb4d3cdb7bfaacabca1a33c2f4c493e0d0a3c2f554c3e0d0ab5b1c6e5cad6c3bbd3d0caa3cfc2b4cecafdd3ebcab1cfdea3acbecdcab1bea1b0dca1a3, 'N', '2007-05-29 17:39:00'),
(579, 10, 0xbcd3c4c3b4f3cabdb5b9cafd28b6c1c3eb29bcc6cab1cac7cab2e7dba3bf, 'Y', '2007-06-06 20:10:12'),
(580, 10, 0xb5b1d6f7d2aacab1bce4d3c3bea1baf3a3acc6e5cad6c2e4d7d3b1e3d3d03c623ecab1cfde3c2f623ea1a30d0a0d0ac0fdc8e7a3ba20313520c8d5cfc220313020d7d3a3ba0d0ac8e7b9fbc6e5cad6d4dacab1cfdec4dacfc2b3f6b5da20313020cad6a3acbcc6cab1d6d3b1e3d6d8d0c2bfaacabcbcc6cab1a3a8bdd3cfc2c0b4b5c420313020d7d3d2aad4da20313520c8d5c4dacfc2cdeaa3a9a1a30d0a0d0ac8e7b9fbc6e5cad6ceb4c4dcd4dacab1cfdec4dacfc2cdeaa3acbecdcae4b5f4c6e5bed6a1a3, 'N', '2007-05-29 17:39:00'),
(581, 10, 0xb7d1d1a9cabdbcc6cab1cac7cab2e7dba3bf, 'Y', '2007-06-06 20:10:12'),
(582, 10, 0xc6e5cad6c3bfb4cec2e4d7d3baf3a3acbecdbbe1d4f6bcd322b6eecde222cab1bce428d7eeb6e0b2bbb3acb9fdd6f7d2aacab1bce429a1a30d0a0d0ab5b1c6e5cad6d3c3b9e2cab1bce4cab1a3acbecdcae4b5f4c6e5bed6a1a3, 'N', '2007-05-29 17:39:00'),
(583, 10, 0xcbafc3dfcab1bce4cac7b7f1bbe1d3b0cfecb7d1d1a9cabdbcc6cab1a3bf, 'Y', '2007-05-29 17:39:00'),
(584, 10, 0xbed9c0fdcbb5c3f7a3ba0d0ac8e7b9fbc3bfd6dccfebcfc2203320cad6a3acb6f8c4fab2bbcfa3cdfbd4dad6dcc1f9bbf2d6dcc8d5d3c3b9e2cab1bce4a1a30d0abecdcac7282037202d20322029c8d5207820282032342068202d2039206820cbafc3dfcab1bce4292f203320cad6203d20c3bfcad6d4f6bcd320323520d0a1cab1b5c4b7d1d1a9bcc6cab1a3ac20d6dcc4a9b2bbbcc6cab1a1a3, 'Y', '2007-05-29 17:39:00'),
(585, 10, 0xcbafc3dfcab1bce4cac7cab2e7dba3bf, 'N', '2007-05-29 17:39:00'),
(586, 10, 0xd4dac9e8b6a8ceaa22cbafc3df22b5c4cab1b6cea3acbcc6cab1d6d3bbe1d4ddcda3a3accaa3d3e0b5c4cab1bce4b2bbbbe1bcf5c9d9a1a3, 'N', '2007-05-29 17:39:00'),
(587, 10, 0xceaabaceced2b5c4bcc6cab1d6d3d4da20313020b7d6d6d3c4dabcf5c9d9203920d0a1cab1a3bf, 'Y', '2007-05-29 17:39:00'),
(588, 10, 0xc8e7b9fbc4fabfb4b5bdbcc6cab1d6d3d5e2d1f9b4f3b7f9bcf5c9d9cab1bce4a3acc4fad3a6b8c3d2aacbafd2bbcfc2c1cb203b2d290d0a0d0ab5b1bcc6cab1d6d3cfd4cabec4fabbb9d3d0203320cceccab1bce4a3acd2e2cbbccac7a3ba0d0a3c6e6f77723ec4fad3d03c2f6e6f77723e203c6e6f77723e332078202832342d39293c2f6e6f77723e203d203c6e6f77723e343520d0a1cab13c2f6e6f77723e20b5c4b7c7cbafc3dfcab1bce4a1a30d0a0d0ab5b1bcc6cab1d6d3cfd4cabec4fabbb9d3d0203220c8d520313420d0a1cab1a3acd2e2cbbccac7a3ba0d0a3c6e6f77723ec4fad3d03c2f6e6f77723e203c6e6f77723e322078202832342d3929202b2031343c2f6e6f77723e203d203c6e6f77723e343420d0a1cab13c2f6e6f77723e20b5c4b7c7cbafc3dfcab1bce4a1a3, 'Y', '2007-05-29 17:39:00'),
(589, 10, 0xceaabaceced2cedeb7a8b8c4b1e4ced2b8f6c8cbd7cac1cfd6d0b5c4cbafc3dfcab1bce4a3bf, 'Y', '2007-05-29 17:39:00'),
(590, 10, 0xd2f2ceaac3bfccecb8c4b1e4c8fdb4cecbafc3dfcab1bce4bbe1cda3d6b9bcc6cab1d6d3a1a3b3fdb7c7c4fad7eebdfcc3bbd3d0d0deb8c4a3acc4fab2c5c4dcb1e4b6afcbafc3dfcab1bce4a1a3, 'Y', '2007-05-29 17:39:00'),
(591, 10, 0xced2c4dcd4f6bcd3d7d4bcbab5c4b6d4bed6cab1bce4c2f0a3bf, 'Y', '2007-05-29 17:39:00'),
(592, 10, 0xb2bbc4dca1a30d0a0d0ac4bfc7b0a1b0bcd3cab1a1b1b9a6c4dcc9d0ceb4d3a6d3c3a3acb5abd2d1c1d0c8eb3c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f746f646f2e706870223ecdeac9c6bcc6bbae3c2f613ea1a3, 'N', '2007-05-29 17:39:00'),
(593, 10, 0xced2c4dcd4f6bcd3b6d4cad6b5c4b6d4bed6cab1bce4c2f0a3bf, 'Y', '2007-05-29 17:39:00'),
(594, 10, '', 'N', '2007-05-29 17:39:00'),
(595, 10, 0xbcd9c6dacac7cab2e7dba3bf, 'Y', '2007-05-29 17:39:00'),
(596, 10, 0xb5b1c4fad0ddbcd9cab1a3acbbf2cdbbc8bbd2f2b9abb3f6b2eecab1a3acbfc9d2d4d4ddcda3bcc6cab1d6d3a1a30d0a0d0ac7ebb5e3d1a1203c4120485245463d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f75736572696e666f2e706870223ecab9d3c3d5df3c2f613e20b5c4203c4120485245463d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f656469745f7661636174696f6e2e706870223ebfaacabcd0ddbcd93c2f613e20c0b4b0b2c5c5bcd9c6dacab1bce4a1a3bcd9c6dad7b4ccacbdabcfd4cabed4dac4bfc7b0b6d4bed6d3ebcab9d3c3d5dfd7cac1cfa1a3, 'N', '2007-06-21 11:31:45'),
(599, 10, 0xced2b5c4cbafc3dfcab1bce4cac7b0b4d5d5c4c4d2bbb8f6cab1c7f8a3bf, 'Y', '2007-05-29 17:39:00'),
(600, 10, 0xc1fad6aeb39ebbe1cab9d3c3c4fab5c4b5b1b5d8cab1c7f8a3a8d2d4bcb0c8d5b9e2bddad4bccab1bce4a3a9a3acd3c9c4fad7d4bcbad4dab8f6c8cbd7cac1cfd6d0c9e8b6a8a1a3, 'Y', '2007-05-29 17:39:00'),
(603, 10, 0xceaabacec1fad6aeb39eb2bbcfd4cabeb6d4cad6b5c4b5e7d7d3d3cabcfeb5d8d6b7a3bf, 'Y', '2007-05-30 11:27:37'),
(604, 10, 0xd2f2ceaac1fad6aeb39ebbe1b1a3d5cfc4fab6d4cad6a3a8d3ebc4faa3a9b5c4d2fecbbda1a30d0a0d0ac8e7b9fbc4fab8fccfebb6e0c1cbbde2c4fab5c4b6d4cad6a3acc4fab1d8d0ebd6b1bdd3d1afcecac4fab5c4b6d4cad6a1a3, 'Y', '2007-05-30 11:27:37'),
(605, 10, 0xc8e7baced4dac6e5c6d72053474620b5b5b4a2b4e6cec4d7d6a3bf, 'Y', '2007-05-30 11:27:37'),
(606, 10, 0xd4dac4fab5c4c1f4d1d4c7b0baf3bcd3c9cfd6b8c1eea3ba20266c743b636f6d6d656e742667743b20d2d4bcb020266c743b2f636f6d6d656e742667743b200d0a0d0ac0fdc8e7a3bad4dac4fabdf8d0d0d6d0b5c4c6e5bed6a3ba200d0a0d0a312e20d4dac4fab5c422cbcdb3f622c1f4d1d4c0b8d6d0cae4c8eb3a200d0a0d0ad5e2d6bbcac7b2e2cad4a3acc7ebb1f0c0edbbe1a1a30d0a266c743b636f6d6d656e742667743b0d0ab2e2cad4c1f4d1d4a3acd3a6b8c3bbe1b3f6cfd6d4da534746a1a30d0a266c743b2f636f6d6d656e742667743b0d0ab2e2cad4c1f4d1d4a3acd3a6b8c3b2bbbbe1b3f6cfd6d4da534746a1a30d0a0d0a322e20cbcdb3f6c4fab5c4c2e4d7d3a1a3200d0a332e20cfc2d4d8c6e5c6d72053474620996ea1a3200d0a342e20b4f2bfaac6e5c6d72053474620cec4bcfe2028cab9d3c3cea7c6e5c8edbcfebbf2cec4d7d6b1e0bcadc8edbcfe29a1a30d0a0d0a352e20d5e2d2bbcad6b5c4c1f4d1d4cac7a3ba200d0a266c743bc4fab5c4d5cabac52667743b3a20b2e2cad4c1f4d1d4a3acd3a6b8c3bbe1b3f6cfd6d4da534746a1a30d0a0d0a362e20c8e7b9fbc4facfa3cdfbc1f4d1d4d4dac6e5bed6bde1caf8baf3b2c5bfc9b1bbd4c4b6c1a3acbecdd2aad0b4b3c920266c743b68696464656e2667743b20266c743b2f68696464656e2667743b20b6f8b2bbcac720266c743b636f6d6d656e742667743b20266c743b2f636f6d6d656e742667743b20c7ebd7a2d2e2a3a1d2feb2d8b5c4c1f4d1d43c753ed6bbc4dc3c2f753e20cdb8b9fdc6e5c6d72053474620b5b5b0b8c0b4d4c4b6c1a1a30d0a0d0a266c743b636f6d6d656e742667743b20266c743b2f636f6d6d656e742667743b20d3eb20266c743b68696464656e2667743b20266c743b2f68696464656e2667743b20bfc9d2d4bcf2d0b4b3c920266c743b632667743b20266c743b2f632667743b20d3eb20266c743b682667743b20266c743b2f682667743ba1a30d0a0d0ad5fdb3a3c1f4d1d4cec4d7d62028c3bbd3d0bcd3c9cf20266c743b636f6d6d656e742667743b20d3eb20266c743b2f636f6d6d656e742667743b20b5c4cec4d7d62920d6bbc4dcd3c9b6d4bed6b5c4cbabb7bdd4c4b6c1a1a3c6e4cbfcc8cbcedeb7a8d4c4b6c1a3acb6f8c7d2d2b2b2bbbbe1cae4c8ebb5bdc6e5c6d72053474620996ea1a3d5e2cac7ceaac1cbb1a3d5cfc4fab5c4d2fecbbda1a3, 'N', '2007-06-13 15:53:16'),
(627, 10, 0xcab9d3c3d5dfb5c422bbeed4beb3ccb6c822cac7cab2e7dba3bf, 'Y', '2007-05-30 11:27:37'),
(628, 10, 0xcfd4cabecab9d3c3d5dfd7eebdfccfc2c1cbb6e0c9d9cad6a1a30d0a0d0a3220c2ccd0c7a3bad0edb6e0cad6a3a8c3bfd4c2b3acb9fd20373020cad6a3a90d0a3120e9d9d0c7a3bad0a9d0edcad6a3a8c3bfd4c220352d373020cad6a3a90d0a3020d0c7a3babadcc9d9cad6a3a8c3bfd4c2c9d9d3da203520cad6a3a9, 'Y', '2007-05-30 11:27:37'),
(629, 10, 0xcab9d3c3d5dfb5c422caa4c2ca22cac7cab2e7dba3bf, 'Y', '2007-05-30 11:27:37'),
(637, 10, 0xd6f7d2aacab1bce4cac7cab2e7dba3bf, 'Y', '2007-05-30 11:27:37'),
(638, 10, 0x3c693ed6f7d2aacab1bce43c2f693ecac7ceaacbabb7bdc9e8b6a8b5c4b3f5b2bdb6d4bed6cab1bce4a1a30d0a0d0ac8e7b9fbd6f7d2aacab1bce4d3c3cdeac1cba3acc6e5bed63c623ec9d0ceb43c2f623ebde1caf8a3acb1e3bdf8c8ebc1cbb5b9cafdb6d4bed6cab1bce4a3a8bcfbd2d4cfc2cbb5c3f7a3a9a1a3, 'Y', '2007-06-06 20:10:12'),
(661, 10, 0xc8c3d7d3cac7cab2e7dba3bf, 'Y', '2007-05-30 11:27:37'),
(662, 10, 0xc8e7b9fbb6d4bed6cbabb7bdc6e5c1a6b2bbbef9a3accbabb7bdd3a6b8c3cdacd2e2c8c3bdcfc8f5b5c4d2bbb7bdd3d0b6eecde2b5c422c8c3d7d322a1a3c8c3d7d3d3c0d4b6cac7b8f8badab7bda3acd5fdc8b7d1a1d4f1c8c3d7d3cafdc4bfa3acbfc9d2d4c3d6b2b9c6e5c1a6c9cfb5c4b2eebee0a1a3c8c3d7d3b6d4bed6bbe1b8fcd3d0c8a4a3accbabb7bdd3aec6e5b5c4bbfabbe1bef9b5c8a1a30d0a0d0ad4da3139c2b7c6e5c5ccc9cfa3acc8c3d7d3cafdc4bfcfe0cdacd3dab5c8bcb6b5c4b2eebee0a1a3b6d4d3dac6e4cbfcb4f3d0a1b5c4c6e5c5cca3acd3c9c1fad6aeb39ebef6b6a8cacab5b1b5c4c8c3d7d3cafdc4bfa1a30d0a0d0ab4abcdb3c9cfa3acc8c3d7d3cac7b0b4d5d5b9ccb6a8d0cecabdb7c5d4da203c4120485245463d226661712e7068703f726561643d74266361743d3323456e7472793839223ed0c7cebb3c2f413e20c9cfa1a3d4dac1fad6aeb39ea3acbfc9d2d4d7d4d3c9d1a1d4f1c8c3d7d3cebbd6c3a1a30d0a0d0ab5abcac7c7ebd7a2d2e2a3acd0edb6e0c6e5cad6cfb0b9dfc8c3d7d3d3dad0c7cebbc9cfa1a3cbf9d2d4c8e7b9fbc4fad2aac8c3d7d3a3acd7eebac3cfc8d3ebb6d4cad6cdacd2e2cac7d0c7cebbc8c3d7d3bbb9cac7d7d4d3c9c8c3d7d3a1a3, 'Y', '2007-05-30 11:27:37'),
(663, 10, 0xb4abcdb3c8c3d7d3d3ebcacab5b1c8c3d7d3d3d0baceb2bbcdaca3bf, 'Y', '2007-05-30 11:27:37'),
(664, 10, 0x3c693eb4abcdb3c8c3d7d33c2f693ed2c0d5d5b5c8bcb6b2eebee0a3a8d3ebc6e5c5ccb4f3d0a1a3a9c0b4bef6b6a8c8c3d7d3cafda1a3c8f4d3d0c8c3d7d3d4f2203c6120687265663d226661712e7068703f726561643d74266361743d3323456e74727939223eccf9c4bf3c2f613e20302e35a1a3c8f4cedec8c3d7d3d4f2ccf9c4bf20362e35a1a30d0a0d0a3c693ecacab5b1c8c3d7d33c2f693ed4f2b2c9c8a1b8fccfb8b5c4ccf9c4bfb2eeb1f0282e2e2e2c20312e352c20322e302c20322e352c202e2e2e29c0b4c6bdbae2c6e5c1a6b2eebee0a3accab9cbabb7bdd3aec6e5bbfabbe1bef9b5c8a1a3, 'Y', '2007-05-30 11:27:37'),
(630, 10, 0xd5e2cac7c6e5cad6b5c4caa4b8bab1c8a3acc4dcb6d4c4bfc7b0b5c4b5c8bcb6cce1b9a9b8fcb6e0d1b6cfa2a1a30d0a0d0ab5b1c6e5cad6cdeab3c9c1cbcfe0b5b1cafdc1bfb5c4c6c0b5c8b6d4bed6baf3a3acd4bc203530a3a520b5c4caa4c2cacfd4cabecbfbb5c4b5c8bcb6d2d1beadcec8b6a8a1a3b4f3d3da203735a3a520cfd4cabec4bfc7b0b5c8bcb6bfc9c4dcccabb5cda3acb5cdd3da203235a3a520cfd4cabec4bfc7b0b5c8bcb6bfc9c4dcccabb8dfa1a3, 'Y', '2007-05-30 11:27:37'),
(631, 10, 0xced2d2aac8e7bacec9beb3fdced2d4dab4fdbed6cad2b5c4b1c8c8fcd1fbc7eba3bf, 'Y', '2007-05-30 11:27:37'),
(632, 10, 0xb5e3d1a1203c693ec4fab5c43c2f693e20b1c8c8fcb5c4d7cac1cfb0b4c5a5a1a3d4dab8c3cdf8d2b3b5c4cfc2b7bdd3d0c9beb3fdc6e5bed6b5c4b0b4c5a5a1a3c8e7b9fbd0c2c6e5bed6d4dacafdd6dcbaf3c8d4c8bbcedec8cbbcd3c8eba3acbecdbbe1d7d4b6afb1bbc9beb3fda1a3, 'Y', '2007-05-30 11:27:37'),
(633, 10, 0xb2c2d7d3b7d6cfc8cac7cab2e7dba3bf, 'Y', '2007-05-30 11:27:37'),
(634, 10, 0x3c6120687265663d226661712e7068703f726561643d74266361743d3323456e7472793231223eb2c2d7d33c2f613e20cac7d6b8c4fab5c4b39ec9abcac7d3c9cbe6bbfad1a1d4f1b5c4a1a30d0a3c6120687265663d226661712e7068703f726561643d74266361743d3323456e747279313534223eb7d6cfc83c2f613e20cac7d6b8c4fac9e8b6a8b5c4d0c2c6e5bed6c3bbd3d0203c6120687265663d226661712e7068703f726561643d74266361743d33353723456e7472793937223ec8c3d7d33c2f613e20a1a3, 'Y', '2007-05-30 11:27:37'),
(635, 10, 0xceaabaced3d0d0a9cab9d3c3d5dfc3bbd3d0c1d0d4dac6e5cad6c1d0b1edc9cfa3bf, 'Y', '2007-10-01 07:26:26'),
(636, 10, 0xc1fad6aeb39ec9e8b6a8b2bbbbe1c1d0c8ebcda3d6b9bbeeb6afb5c4c6e5cad6a1a33c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f75736572732e706870223eb6d4bed6d6d0b5c4c6e5cad63c2f613e20cfc2b7bdd3d0203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f75736572732e7068703f73686f77616c6c3d31223ecfd4cabecbf9d3d0c6e5cad63c2f613e20bfc9d2d4b2e9d1afa1a3, 'N', '2007-10-01 07:26:26'),
(501, 11, 0x447261676f6e206765627275696b657273766f6f726b657572656e, 'Y', '2016-07-30 10:54:05'),
(504, 11, 0x526567656c732076616e20476f, 'Y', '2003-05-08 14:56:12'),
(511, 11, 0x447261676f6e206d656e757320656e206f7074696573, 'Y', '2003-05-08 14:56:12'),
(512, 11, 0x447261676f6e207370656c6c656e, 'Y', '2004-11-23 09:43:42'),
(529, 11, 0x57616172206b616e20696b206d65657220746520776574656e206b6f6d656e206f7665722065656e2062657061616c646520726567656c3f, 'Y', '2004-02-14 11:49:38'),
(530, 11, 0x5374656c206a65207672616167206f662070726f626c65656d20696e20686574204641512d20285665656c2067657374656c64652076726167656e29206f662068657420476f2d666f72756d2e205665726d656c64207a6f77656c20646520726567656c20616c732064652072656c6576616e7465207370656c73697475617469652e0d0a4e612065656e206b6c65696e652064697363757373696520656e20616c732065722065656e20676f656420616e74776f6f726420696e2068657420666f72756d206b6f6d742c20776f7264742068657420696e20646520464151206f7067656e6f6d656e2e, 'Y', '2004-02-14 11:49:38'),
(531, 11, 0x576174207a696a6e206465207370656c726567656c732076616e20476f3f, 'Y', '2004-02-14 11:49:38'),
(532, 11, 0x54776565207370656c6572732070726f626572656e206f702065656e20766965726b616e7420626f7264206d65657220676562696564207465206f6d73696e67656c656e2064616e20646520616e6465722e204f6d20646520626575727420646f656e207a652065656e207a657420646f6f722065656e20737465656e2076616e2068756e206b6c657572206f702065656e206c656567206b7275697370756e74207465206c656767656e20656e206576656e7475656c6520676576616e67656e207374656e656e2074652076657277696a646572656e2e0d0a0d0a416c73202d206e6120686574206e6565726c656767656e2076616e2065656e20737465656e202d2067726f6570656e2076616e20646520746567656e7374616e6465722067e9e96e207672696a686564656e206d6565722068656262656e2c2064616e2076657277696a64657274206465207370656c65722064657a652076616e2068657420626f72642e2044657a65207374656e656e207a696a6e2028696e2064657a65207a65742920676576616e67656e2e2048657420697320766572626f64656e206f6d203c693e203c753e206e613c2f753e2065656e207a6574203c2f693e2065656e2067726f6570207a6f6e646572207672696a686564656e206f702068657420626f72642074652068656262656e2e0d0a0d0a57616e6e656572206265696465207370656c65727320646972656374206e6120656c6b6161722070617373656e2c2064616e20776f72647420657220676573636f6f72642e204465207370656c6572732076756c6c656e206465206e65757472616c652070756e74656e202864616d6529206f702c20646f646520286b616e736c6f7a6529207374656e656e20776f7264656e20616c7320676576616e67656e2076657277696a646572642e20566f6f72207a7761727420656e207769742067656c6474206e753a203c693e73636f72653c2f693e203d203c693e6f6d73696e67656c64652070756e74656e3c2f693e206d696e757320646520646f6f7220646520746567656e7374616e646572203c693e676576616e67656e207374656e656e203c2f693e2e200d0a0d0a45656e2061616e7261646572206973203a203c6120687265663d22687474703a2f2f706c6179676f2e746f2f696e7465726163746976652f696e6465782e68746d6c223e54686520496e7465726163746976652057617920546f20476f3c2f613e2e, 'Y', '2004-02-14 11:49:38'),
(533, 11, 0x57616172206b616e20696b2077656273697465732076696e64656e206f76657220476f3f, 'Y', '2003-08-07 16:07:39'),
(534, 11, 0x4b696a6b20766f6f726c6f7069672065656e73206e616172206f6e7a6520656967656e203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f6c696e6b732e706870223e4c696e6b733c2f613e2e0d0a576f72647420766572766f6c67642e2e2e, 'Y', '2003-08-23 20:31:38'),
(541, 11, 0x4b616e2065656e207370656c206461742065696e646967646520776567656e732074696a647367656272656b206f706e69657577206765737461727420776f7264656e3f, 'Y', '2003-05-08 14:56:12'),
(501, 6, 0x507265666572656e63696173206465207573756172696f20646520447261676f6e, 'Y', '2013-11-11 22:13:31'),
(503, 6, 0x4f74726f73, 'Y', '2015-12-09 21:05:56'),
(504, 6, 0x5265676c61732064656c20476f, 'Y', '2003-05-09 01:19:24'),
(511, 6, 0x4d656efa732079206f7063696f6e657320646520447261676f6e, 'Y', '2003-05-09 01:19:24'),
(512, 6, 0x506172746964617320656e20447261676f6e, 'Y', '2003-05-09 01:19:24'),
(529, 6, 0xbf44f36e646520707565646f20617072656e646572206de1732061636572636120646520756e61207265676c6120656e20706172746963756c61723f, 'Y', '2003-05-09 01:19:24'),
(530, 6, 0x4578706c69636120747520636f6e73756c746120656e20656c20666f72756d20464151206f20476f2e20536572ed61206275656e6120736920707565646573206d656e63696f6e617220736f627265206375616c207265676c61207175696572657320696e666f726d616369f36e207920656e207175652073697475616369f36e20647572616e7465206c6120706172746964612073652061706c6963612e, 'Y', '2003-05-09 01:19:24'),
(531, 6, 0xbf4375e16c657320736f6e206c6173207265676c617320646520476f3f, 'Y', '2003-08-11 04:36:23'),
(532, 6, 0x446f73206a756761646f72657320636f6d706974656e207061726120656e636572726172207465727269746f72696f20656e20756e207461626c65726f20637561647261646f2e20416c7465726e6164616d656e74652c2076616e20706f6e69656e646f207069656472617320646520737520636f6c6f7220656e206c617320696e74657273656363696f6e657320766163ed61732e0d0a0d0a53692c206c7565676f20646520756e61206d6f766964612c20616c67756e6f206465206c6f7320677275706f7320646520706965647261732064656c206f706f6e656e656e7465207469656e652030206c6962657274616465732c20656e746f6e636573206469636861732070696564726120736f6e2071756974616461732064656c207461626c65726f202870726973696f6e65726f732063617074757261646f73292e20556e206d6f76696d69656e746f20657320696c6567616c207369206465737075e973206465206375616c7175696572206361707475726120756e20677275706f2070726f70696f206e6f207469656e65206c6962657274616465732e0d0a0d0a4375616e646f206c6f7320646f73206a756761646f72657320706173616e20286e6f206d756576656e207920646963656e20225061736f22292073756365736976616d656e746520656c206a7565676f20736520646120706f72207465726d696e61646f2079207365206375656e74616e206c6f732070756e746f733a204c6f732070756e746f73206e657574726f7320282264616d652220656e206a61706f6ee9732920736f6e206c6c656e61646f732079206c61732070696564726173206d75657274617320736f6e2072656d6f76696461732e205365206375656e746120656c207465727269746f72696f2071756520656e6369657272612063616461206a756761646f722079207365206c652072657374616e206c6173207069656472617320717565207375206f706f6e656e7465206c6520636170747572f32e0d0a0d0a5465207375676965726f203c6120687265663d22687474703a2f2f706c6179676f2e746f2f696e7465726163746976652f696e6465782e68746d6c223e54686520496e7465726163746976652057617920546f20476f3c2f613e2e, 'Y', '2003-08-11 04:36:23'),
(533, 6, 0xbf44f36e646520707565646f20656e636f6e747261722070e167696e61732077656220736f62726520476f3f, 'Y', '2003-05-09 01:19:24'),
(534, 6, 0x506f7220656c206d6f6d656e746f2c206563686120756e2076697374617a6f20656e206c612070e167696e61206465203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f6c696e6b732e706870223e4c696e6b733c2f613e20656e20447261676f6e2e2028a14de17320706f722076656e69722129, 'Y', '2003-08-11 04:36:23'),
(541, 6, 0xbf50756564652073657220726576697669646120756e612070617274696461206375796f207469656d706f206578706972f33f, 'Y', '2003-05-09 01:19:24'),
(555, 6, 0xbf43f36d6f20707565646f20766572206c6f73206172636869766f73205347463f, 'N', '2003-05-09 01:19:24'),
(557, 6, 0xbf43f36d6f20636f6d69656e7a6f20756e61206e7565766120706172746964613f, 'Y', '2003-05-09 01:19:24'),
(559, 6, 0xbf43f36d6f206861676f206d6f76696d69656e746f7320656e206d69732070617274696461733f, 'Y', '2003-05-09 01:19:24'),
(560, 6, 0x456e206c61203c6120687265663d222f7374617475732e706870223e70e167696e612064652065737461646f3c2f613e2068617920756e61206c6973746120646520706172746964617320656e206c6173206375616c6573206573207475207475726e6f2070617261206d6f7665722e20556e20636c69636b20736f62726520656c206efa6d65726f2064652070617274696461206c6120686172e12061706172656365722e200d0a0d0a416c6ced2c20756e612070696564726120657320636f6c6f6361646120287920756e61206d6f76696461206573207265616c697a616461292068616369656e646f20636c69636b20656e20756e6120696e7465727365636369f36e20766163ed612064656c207461626c65726f2e2053692065737461206d6f76696461206d61746120706965647261732064656c206f706f6e656e74652c206c6173206d69736d617320736572e16e206175746f6de1746963616d656e746520717569746164617320706f7220656c207365727669646f722e2050617261207061736172206f2072656e64697273652c207369677565206c6f7320686970657276ed6e63756c6f732071756520657374e16e2062616a6f20656c207461626c65726f2e200d0a0d0a456e206c61207369677569656e74652070e167696e612c2070726573696f6e6120756e20626f74f36e207061726120636f6e6669726d617220747520656c65636369f36e2e, 'Y', '2003-08-29 06:13:13'),
(562, 6, 0x486173746120656c2064e963696d6f206d6f76696d69656e746f2068616272e120756e20686970657276ed6e63756c6f2022656c696d696e61722220646562616a6f2064656c207461626c65726f206375616e646f20736561207475207475726e6f2e20436f6c6f63617220706965647261732064652068e16e6469636170206e6f20736f6e20636f6e746164617320636f6d6f206d6f76696461732e200d0a0d0a536920626f7272617320756e6120706172746964612074752072e174696e67206e6f2063616d62696172e12e200d0a4c7565676f206465206c612064e963696d61206d6f76696461206e6f20736520707565646520656c696d696e6172206c6120706172746964612e20436f6d6f20656e206f7472617320616363696f6e65732064656e74726f2064656c206a7565676f2c20626f7272617220756e61207061727469646120636f6e73746120646520646f73207061736f733a206573206e656365736172696f2076616c6964617220747520656c65636369f36e2e, 'N', '2007-10-31 03:17:38'),
(563, 6, 0xbf43f36d6f207465726d696e6f20756e6120706172746964613f, 'Y', '2003-05-09 01:19:24'),
(570, 6, 0x4361726163746572ed7374696361732064656c207469656d706f20656e20447261676f6e, 'Y', '2015-06-29 05:39:00'),
(577, 6, 0xbf43f36d6f2066756e63696f6e6120656c2073697374656d612062796f2d796f6d69206a61706f6ee9733f, 'Y', '2003-05-09 01:19:24'),
(579, 6, 0xbf43f36d6f2066756e63696f6e6120656c2073697374656d612062796f2d796f6d692063616e616469656e73653f, 'Y', '2003-05-09 01:19:24'),
(581, 6, 0xbf43f36d6f2066756e63696f6e6120656c2073697374656d6120466973636865723f, 'Y', '2003-05-09 01:19:24'),
(591, 6, 0xbf507565646f2061677265676172207469656d706f20616c2072656c6f6a206465206d69732070617274696461733f, 'Y', '2003-05-09 01:19:24'),
(593, 6, 0xbf507565646f2061677265676172207469656d706f20616c2072656c6f6a206465206d69206f706f6e656e74653f, 'Y', '2003-05-09 01:19:24'),
(542, 6, 0x4e6f2e203c693ea1506f72206661766f7220696e696369612074757320706172746964617320636f6e203c6120687265663d222f6661712e7068703f726561643d74266361743d3536223e6ced6d69746573206465207469656d706f206170726f706961646f733c2f613e213c2f693e, 'Y', '2003-08-29 06:13:13'),
(629, 6, 0xbf5175e9207369676e6966696361206c6120636f6c756d6e6120646520706f7263656e74616a6520656e206c61206c69737461206465207573756172696f733f, 'Y', '2003-05-09 01:26:57'),
(631, 6, 0xbf43f36d6f20707565646f20656c696d696e617220756e612070617274696461207075626c696361646120706f72206ded20656e206c612053616c61206465204573706572613f, 'Y', '2003-08-29 06:23:16'),
(633, 6, 0xbf5175e9207369676e696669636120226120696775616c64616420636f6e206e6967697269223f, 'Y', '2003-08-29 06:23:16'),
(635, 6, 0xbf506f727175e920616c67756e6f73207573756172696f73206e6f20657374e16e20656e206c61206c69737461206465207573756172696f733f, 'Y', '2003-08-29 06:23:16'),
(636, 6, 0x456e20393920646520313030206361736f732c20696e646963612071756520656c207573756172696f206573206e7565766f20656e20447261676f6e2e204573746f20696d706c696361207175652073752072e174696e672061637475616c207469656e6520756e20616c746f2072616e676f20646520696e636572746964756d6272652e0d0a0d0a5061726120657669746172206a756963696f732066e163696c65732c20706f72206661766f7220726576697361206c61206c69737461206465206a7565676f732061637475616c65732079207465726d696e61646f732064656c207573756172696f2e0d0a0d0a506f72206661766f722c2072656375657264613a2074fa2074616d6269e96e20636f6d656e7a6173746520656e20447261676f6e206e6f206861636572206d7563686f207469656d706f2e2e2e, 'Y', '2003-05-09 01:26:57'),
(637, 6, 0xbf5175e920657320656c207469656d706f207072696e636970616c3f, 'Y', '2003-05-09 01:26:57'),
(504, 4, 0x476f2d526567656c6e, 'Y', '2007-12-06 15:00:11'),
(529, 4, 0x576f206b616e6e20696368206d65687220fc6265722065696e652062657374696d6d746520537069656c726567656c20657266616872656e3f, 'Y', '2003-05-09 20:26:05'),
(531, 4, 0x5769652073696e6420646965204772756e64726567656c6e20766f6e20476f3f, 'Y', '2007-12-06 15:00:11'),
(533, 4, 0x576f206b616e6e206963682077656974657265204e65747a73656974656e20fc62657220476f2066696e64656e3f, 'Y', '2007-12-06 15:00:11'),
(501, 5, 0x447261676f6e202d204c6573207574696c6973617465757273206574206c6575722070726f66696c, 'N', '2003-05-12 00:44:11'),
(503, 5, 0x446976657273, 'Y', '2004-12-07 11:21:38'),
(504, 5, 0x476f202d2052e8676c6573, 'Y', '2003-05-12 00:44:11'),
(511, 5, 0x447261676f6e202d204d656e7573206574206f7074696f6e73, 'Y', '2003-05-12 00:44:11'),
(512, 5, 0x447261676f6e202d204c65732070617274696573, 'Y', '2003-05-12 00:44:11'),
(529, 5, 0x4ff920707569732d6a652076e972696669657220756e20706f696e742064652064e97461696c206465732072e8676c657320647520476f266e6273703b3f, 'Y', '2003-05-12 00:44:11'),
(531, 5, 0x5175656c6c657320736f6e74206c65732072e8676c657320647520476f266e6273703b3f204c6573206261736573266e6273703b2e2e2e, 'Y', '2004-08-11 15:16:01'),
(532, 5, 0x44657578206a6f75657572732c20626c616e63206574206e6f69722c20736520646973707574656e74206c65207465727269746f697265206427756e20706c61746561752063617272e92e204c6520706c617465617520636f6e76656e74696f6e6e656c20636f6e7469656e7420313978313920696e74657273656374696f6e732c206d616973206427617574726573207461696c6c65732070657576656e7420ea747265207574696c6973e96573202831337831332c203978392c266e6273703b2e2e2e292e204c6573206a6f7565757273206a6f75656e7420616c7465726e61746976656d656e7420656e20706c61e7616e7420646573207069657272657320286c65206e6f6d206465732070696f6e732064616e73206365206a657529206465206c6575722070726f70726520636f756c65757220737572206c657320696e74657273656374696f6e732076696465732e204e6f697220636f6d6d656e63652e0d0a0d0a53692c20617072e873206c6520706c6163656d656e74206427756e65207069657272652c20756e206465732067726f75706573206465206c2761647665727361697265206e276120706c757320617563756e65206c6962657274e92c20696c2065737420636170747572e920657420736573207069657272657320736f6e7420656e6c6576e9657320647520706c617465617520286574207072656e6e656e74206c65206e6f6d20646520707269736f6e6e69657273292e20556e20636f75702065737420696c6ce967616c2073692c20617072e87320746f75746573206c657320636170747572657320706f737369626c657320646573207069657272657320656e6e656d6965732c206c612070696572726520706c6163e96520286f7520736f6e2067726f75706529206e276120706c7573206465206c6962657274e9732e0d0a0d0a5175616e64206c65732064657578206a6f75657572732070617373656e7420737563636573736976656d656e74206c65757220746f75722c206c612070617274696520657374207465726d696ee9652e204c657320696e74657273656374696f6e73206e6575747265732028696e74657273656374696f6e73206c696272657320656e746f7572e96573206465207069657272657320646573206465757820636f756c657572732e2064616d6520656e206a61706f6e6169732920736f6e7420636f6d626ce96573206574206c65732070696572726573206d6f7274657320736f6e7420656e6c6576e9657320657420616a6f7574e965732061757820707269736f6e6e696572732e204f6e20636f6d70746520616c6f7273206c65206e6f6d627265206427696e74657273656374696f6e73206c696272657320656e746f7572e96573206465207069657272657320646520736120636f756c65757220286c6573207465727269746f69726573292061757175656c206f6e20736f75737472616974206c65206e6f6d62726520646520707269736f6e6e6965727320636170747572e9732070617220736f6e20616476657273616972652e0d0a0d0a506f757220706c75732064652064e97461696c732c20636f6e73756c74657a203c4120485245463d222f6661712e7068703f726561643d7426616d703b6361743d313323456e747279313232223e636520706172616772617068653c2f413e2e, 'Y', '2005-09-20 18:05:29'),
(533, 5, 0x4ff920707569732d6a652074726f7576657220646573207369746573206179616e7420726170706f72742061766563206c6520476f266e6273703b3f, 'Y', '2003-05-12 00:44:11'),
(534, 5, 0x506f7572206c27696e7374616e742c20766f757320706f7576657a20636f6e73756c746572206c61207061676520646573203c6120687265663d222f6c696e6b732e706870223e6c69656e733c2f613e2c206963692c2073757220447261676f6e2e, 'Y', '2003-08-21 16:07:58'),
(541, 5, 0x4573742d636520717527756e6520706172746965207465726d696ee965207061722064e970617373656d656e742064752074656d7073207065757420ea7472652072e96163746976e965266e6273703b3f, 'Y', '2003-10-13 17:07:59'),
(542, 5, 0x432765737420696d706f737369626c652063617220656c6c6520612064e96ae020696e666c75656e63e9206c27616a757374656d656e74206175746f6d61746971756520646573206e6976656175782e0d0a496c20657374207072e966e97261626c65206465207072e9766f697220756e203c6120687265663d222f6661712e7068703f726561643d7426616d703b6361743d3536223eab266e6273703b54656d7073206465206a6575266e6273703bbb3c2f613e20737566666973616d6d656e74206c6f6e6720706f757220766f732070726f636861696e657320706172746965732e, 'Y', '2005-09-20 18:05:29'),
(549, 5, 0x436f6d6269656e2061692d6a65206465206a6f75727320646520766163616e636573206368657a20447261676f6e266e6273703b3f, 'Y', '2003-10-12 09:21:18'),
(512, 9, 0x4a6f676f7320646f2044726167266174696c64653b6f, 'Y', '2003-05-15 14:40:36'),
(550, 5, 0x4a7573717527e0203330206a6f7572732070617220616e2e20566f74726520746f74616c206175676d656e746520e0206c61207669746573736520646520322c35206a6f75727320706172206d6f69732e20536920766f757320ea74657320756e206e6f7576656c206172726976616e742c20766f7573207265636576657a20746f7574206465207375697465203134206a6f75727320646520766163616e6365732e, 'Y', '2003-08-25 00:19:48'),
(634, 5, 0x556e65203c6120687265663d222f6661712e7068703f726561643d7426616d703b6361743d3323456e747279313534223e70617274696520e020e967616c6974e93c2f613e2065737420756e65207061727469652073616e732070696572726573206465203c6120687265663d222f6661712e7068703f726561643d7426616d703b6361743d33353723456e7472793937223e68616e64696361703c2f613e2e203c6120687265663d222f6661712e7068703f726561643d7426616d703b6361743d3323456e7472793231223e4e69676972693c2f613e2065737420756e65206de974686f646520706f757220746972657220766f74726520636f756c65757220617520736f72742e, 'Y', '2005-09-20 18:05:29'),
(635, 5, 0x506f757271756f69206365727461696e73206a6f7565757273206e27617070617261697373656e74207061732064616e73206c61206c6973746520646573207574696c6973617465757273266e6273703b3f, 'Y', '2004-08-16 20:46:23'),
(636, 5, 0x5061722064e9666175742c20447261676f6e206e65206d6f6e74726520706173206c6573206a6f756575727320696e6163746966732e204d6169732c20656e20626173206465206c61207061676520646573203c6120687265663d222f75736572732e70687022207461726765743d225f626c616e6b223e7574696c69736174657572733c2f613e2c20756e206c69656e20766f7573207065726d6574747261206465206c657320766f697220746f75732e, 'N', '2003-08-24 12:19:23'),
(501, 9, 0x5574696c697a61646f72657320652070657266697320646f2044726167266174696c64653b6f, 'N', '2003-05-15 14:40:36'),
(503, 9, 0x4c75676172657320646520476f, 'Y', '2003-05-15 14:40:36'),
(504, 9, 0x52656772617320646f20476f, 'Y', '2003-05-15 14:40:36'),
(511, 9, 0x4d656e75732065206f702663636564696c3b266f74696c64653b657320646f2044726167266174696c64653b6f, 'Y', '2003-05-15 14:40:36'),
(501, 14, 0x447261676f6e696e206be4797474e46ae474206a61206be4797474e46a69656e2070726f6669696c6974, 'N', '2003-05-13 13:13:25'),
(503, 14, 0x476f2d7061696b6b6f6a61, 'Y', '2003-05-13 13:13:25'),
(504, 14, 0x476f6e2073e4e46e6ef674, 'Y', '2003-05-13 13:13:25'),
(511, 14, 0x447261676f6e696e2076616c696b6f74, 'Y', '2003-05-13 13:13:25'),
(512, 14, 0x447261676f6e696e2070656c6974, 'Y', '2003-05-13 13:13:25'),
(529, 14, 0x4d697374e4207361616e206c6973e4746965746f61206a6f737461696e2074696574797374e42073e4e46e6ef67374e43f, 'Y', '2003-05-13 13:13:25'),
(530, 14, 0x4b79737920617369616120757365696e206b7973797474796a656e206b7973796d797374656e20666f6f72756d696c6c612074616920476f2d666f6f72756d696c6c612e204f6e20687976e42c206a6f73207079737479742073656c76697474e46de4e46e2073656be42073e4e46e6ef66e2c206a6f7374612068616c756174206c6973e4746965746f6120657474e42074696c616e7465656e2c206a6f73736120736520657369696e7479792070656c697373e42e0d0a4b65736b757374656c756e206ae46c6b65656e2076617374617573206c6973e474e4e46e20757365696e206b7973797474796968696e206b7973796d796b7369696e2e, 'Y', '2003-05-13 13:13:25'),
(531, 14, 0x4d697373e420766f696e206f7070696120476f6e2073e4e46e6ef6743f, 'Y', '2003-05-13 13:13:25'),
(532, 14, 0x53756f73697474656c656e203c6120687265663d22687474703a2f2f706c6179676f2e746f2f696e7465726163746976652f66696e6e6973682f223e496e746572616b746969766973746120476f2d6f707069613c2f613e2e, 'Y', '2003-05-13 13:13:25'),
(533, 14, 0x4d697374e4206cf67964e46e20476f2d6169686569736961206e65747469736976756a613f, 'Y', '2003-05-13 13:13:25'),
(534, 14, 0x4b6174736f20447261676f6e696e203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f6c696e6b732e706870223e6c696e6b6b6973697675613c2f613e2e, 'Y', '2003-05-13 13:13:25'),
(541, 14, 0x566f696b6f20616a616e206c6f7070756d697365656e2070e4e47474796e65656e2070656c696e20656c76797474e4e43f, 'Y', '2003-05-13 13:13:25'),
(542, 14, 0x4a6f73207365206f6c69206c756f6b6974657474752c2065692e204a6f73207365206f6c69206c756f6b697474616d61746f6e2c206b796c6ce42e0d0a0d0a456c76797474e46d696e656e206564656c6c797474e4e420746f696d696120796c6ce47069646f6c74612c206a6f74656e20736974e42065692074656864e420757365696e2e204f6e20706172656d70692061736574746161207269697474e476e46e207069746be4742061696b6172616a61742e, 'Y', '2003-05-13 13:13:25'),
(549, 14, 0x4d6974e4206c756f6b69747573736172616b65206be4797474e46ae46c69737461737361207461726b6f69747461613f, 'Y', '2003-05-13 13:13:25'),
(550, 14, 0x456e73696d6de4696e656e206f7361206c756f6b6974756b7365737461206f6e206e796b79696e656e2064616e2d20746169206b79756c756f6b697475732e20546f696e656e206f7361202873756c756973736129206f736f69747461612c206b75696e6b61207661687661206c756f6b69747573206f6e2e0d0a0d0a4573696d65726b696b7369202231206b797520282b3430252922206f6e2076616876612031206b79756e206c756f6b6974757320286d656c6b65696e207269697474e476e46e207661687661206f6c6c616b7365656e206865696b6b6f20312064616e292e, 'Y', '2003-05-13 13:13:25'),
(635, 14, 0x4d6974e4207461726b6f69747461612028302529206c756f6b6974756b73656e20706572e47373e43f, 'Y', '2003-05-13 13:25:12'),
(636, 14, 0x39392074617061756b73657373612073616461737461207365207461726b6f69747461612c20657474e4206be4797474e46ae4206f6e207575736920447261676f6e697373612e2048e46e656e206c756f6b6974756b73656e7361206f6e20736969732076617273696e206570e47661726d612e0d0a0d0a56e46c7474e4e46b736573692074757268616e20686570706f697374612074756f6d697473656d697374612c207461726b69737461206be4797474e46ae46e206be4796e6e697373e4206f6c65766174206a612070e4e47474796e6565742070656c69742e0d0a0d0a4a61206d75697374613a2073696ee46b696e206f6c6574206a6f736b7573206f6c6c7574207575736920447261676f6e697373612e2e2e, 'N', '2003-05-13 13:25:12'),
(551, 14, 0x4d6974e42074696c616e6e65736976756e206b6f68646174207461726b6f697474617661743f, 'N', '2003-05-13 13:32:01'),
(552, 14, 0x4c796879657374693a0d0a0d0a3c756c3e0d0a3c6c693e3c623e4e696d693c2f623e204be4797474e46ae46e206f696b6561206e696d69207461692076617374616176612e2056617061617374692076616c6974746176697373612e0d0a3c6c693e3c623e4be4797474e46ae474756e6e75733c2f623e204569206d756f6b6174746176697373612e0d0a3c6c693e3c623e41766f696e2070656c65696c6c653f3c2f623e20546965646f6b7369206d6168646f6c6c6973696c6c6520766173746170656c61616a696c6c652e205661706161737469206d756f6b6174746176697373612e0d0a3c6c693e3c623e4c756f6b697475733c2f623e204be4797474e46ae46e206e796b79696e656e20447261676f6e2d6c756f6b697475732e2050616c76656c696d656e206de4e472697474656c656de42e0d0a3c6c693e3c623e546965746f61206c756f6b6974756b73657374613c2f623e204c6973e4746965746f612c206573696d65726b696b7369206b6572686f6c756f6b697475732e205661706161737469206d756f6b6174746176697373612e0d0a3c2f756c3e, 'N', '2003-05-13 13:32:01'),
(555, 14, 0x4b75696e6b6120766f696e206b617473656c6c61205347462d746965646f73746f6a613f, 'N', '2003-05-13 13:55:56'),
(556, 14, 0x5347462d746965646f73746f6a656e206b6174736f6d697365656e206a61206d756f6b6b61616d697365656e206f6e20757365697461206f686a656c6d69612e20487976e42076616c696e7461206f6e203c6120687265663d22687474703a2f2f7777772e72656e652d67726f74686d616e6e2e64652f6a61676f2f223e4a61676f3c2f613e2c204a6176616c6c6120746568747920476f2d6f686a656c6d612e0d0a0d0a4272697469736820476f204173736f63696174696f6e696c6c61206f6e207069746be4203c6120687265663d22687474703a2f2f7777772e62726974676f2e6f72672f676f70637265732f676f7063726573312e68746d6c23732d76696577223e6c697374613c2f613e206f686a656c6d6961205347462d746965646f73746f6a656e206b617473656c656d697365656e2e0d0a0d0a4b756e206f6c65742068616e6b6b696e757420736f706976616e206f686a656c6d616e2c20766f697420617365747461612073656c61696d65736920796864697374e46de4e46e206d696d652d74797970696e20276170706c69636174696f6e2f782d676f2d73676627206f686a656c6d616173692c206a6f6c6c6f696e207365206be4796e6e6973747979206b756e2076616c6974736574206c696e6b696e20447261676f6e697373612e, 'N', '2003-05-13 13:55:56'),
(557, 14, 0x4b75696e6b6120616c6f6974616e20757564656e2070656c696e3f, 'Y', '2003-05-13 13:55:56'),
(558, 14, 0x557564656e2070656c696e20616c6f697474616d697365656e206f6e206d757574616d612065726920746170613a0d0a0d0a3c756c3e0d0a3c6c693e4b757473756d696e656e2e3c62723e0d0a4a6f732074696564e47420766173746170656c61616a617369206be4797474e46ae474756e6e756b73656e2c20766f6974206ce468657474e4e42068e46e656c6c65206b757473756e20766173656d6d616e207265756e616e206e61766967616174696f70616c6b69737461206cf679747976e46c6ce420226b75747375222d746f696d696e6e6f6c6c612e2056616c6974736520736f70697661742061736574756b7365742070656c696c6c65206a61206ce4686574e4206b757473752e20566173746170656c61616a61736920766f69206d7575747461612070656c696e2061736574756b736961206e69696e2068616c757465737361616e2e204a6f6b616973656e206be4797474e46ae46e20736976756c6c61206f6e206d79f67320226b757473752074e46de4206be4797474e46ae4222d6c696e6b6b692c206a6f6b6120616a61612073616d616e20617369616e2e0d0a0d0a3c6c693e4c69697474796d696e656e206f646f74757368756f6e6570656c69696e2e3c62723e0d0a4a6f7320657473697420757574746120766173746170656c61616a61612c20766f6974206be4797474e4e42074e474e4206d656e6574656c6de4e42e204d656e65206f646f74757368756f6e65657365656e2c2065747369207369656c74e420736f706976616c7461206ee4797474e476e42070656c69206a61207061696e6120226c6973e4746965746f6a61222d6e61707069612e2054e46de46e206ae46c6b65656e20736976756e20616c617265756e61737461206cf679747979207461726b656d7069206b75766175732070656c696e20746965646f7374612e204a6f732068616c756174206c6969747479e42c207061696e61206c69697474796d69736e61707069612e204e69696e2068656c706f737469207365206be479210d0a0d0a3c6c693e4c61697461206f6d6120696c6d6f69747573206f646f74757368756f6e65657365656e2e3c62723e0d0a4a6f73206f646f74757368756f6e6565737361206f6c657661742070656c697420656976e47420736f76692073696e756c6c652c20766f6974206c616974746161206f6d616e20696c6d6f6974756b73656e2e2054e47974e4207661696e206c6f6d616b65206f646f74757368756f6e65736976756e20616c617265756e61737361206a61206f646f74612e204a6f732065742070797964e4206d6168646f746f6e746120286573696d2e20392064616e696e2076617374757374616a6961292c207361617420746f64656e6ee46bf66973657374692068616c75616d617369206de4e472e46e2070656c656ae420706172697373612070e46976e47373e42e0d0a3c2f756c3e0d0a0d0a4b6174736f206d79f6733a204f646f74757368756f6e652c20566965737469742c2050656c6961736574756b7365742e, 'N', '2003-05-13 13:55:56'),
(599, 14, 0x4d6974e42061696b617679f668796b657474e4206be479746574e4e46e206e756b6b756d697361696b616e69206de4e472697474656c79796e3f, 'Y', '2003-05-13 13:58:36'),
(600, 14, 0x447261676f6e206be4797474e4e42069747365206de4e472697474656c656de4e473692061696b617679f668796b657474e4202868756f6d696f6964656e206b6573e4616a616e292e, 'Y', '2003-05-13 13:58:36'),
(603, 14, 0x4d696b736920447261676f6e206569206b6572726f206d696e756c6c652076617374757374616a616e69206f736f6974657474613f, 'Y', '2003-05-13 13:58:36'),
(604, 14, 0x4b6f736b6120447261676f6e206b756e6e696f697474616120766173746170656c61616a61736920286a6120697473657369206d79f6732920796b73697479697379797474e42e0d0a0d0a4a6f732068616c7561742074696574e4e420766173746170656c61616a61737461736920656e656d6de46e206b75696e2068e46e2070726f6669696c69737361616e206b6572746f6f2c2073696e756e2074e479747979206b797379e42068e46e656c74e420697473656c74e4e46e2e, 'Y', '2003-05-13 13:58:36'),
(671, 14, 0x566f696e6b6f206ce468657474e4e42073696972746f6e69206d757574656e206b75696e2073656c61696d656c6c613f, 'Y', '2003-05-13 13:58:36'),
(672, 14, 0x4ce468657474e4e46b736573692073696972746f73692073696e756e2074e479747979206b69726a617574756120447261676f6e696e207665726b6b6f73697675696c6c652e2053696972746f6a656e206ce468657474e46d696e656e2073e4686bf6706f7374696c6c61206569206f6c65206d6168646f6c6c697374612e, 'Y', '2003-05-13 13:58:36'),
(673, 14, 0x4d7569737475747461616b6f20447261676f6e206d696e75612c206b756e206f6e2076756f726f6e692070656c6174613f, 'Y', '2003-05-13 13:59:08'),
(674, 14, 0x4b796c6ce42c206a6f73206f6c6574206c61697474616e75742073e4686bf6706f7374696d756973747574756b7365742070e4e46c6c652070726f6669696c6973736173692e, 'Y', '2003-05-13 13:59:08'),
(559, 14, 0x4b75696e6b61207465656e2073696972746f6a612070656c697373e46e693f, 'Y', '2003-05-13 14:15:18'),
(560, 14, 0x54696c616e6e65736976756c6c61206f6e206c697374612070656c65697374e42c206a6f69737361206f6e2073696e756e2076756f726f7369207369697274e4e42e2056616c697473656d616c6c612070656c696e206e756d65726f6e2070e4e4736574206b6174736f6d61616e2070656c696c61757461612e0d0a0d0a4b697665742061736574657461616e206e61707361757474616d616c6c61207479686ae4e42070697374657474e42e204a6f732073696972746f20706f69737461612076617374757374616a616e206b697669e42c206e6520706f697374657461616e206175746f6d616174746973657374692e204a6f732068616c756174207061737361746120746169206c756f7675747461612c206be47974e4206c617564616e20616c6c61206f6c65766961206c696e6b6b656ae42e0d0a0d0a53696972746f2076616876697374657461616e2073657572616176616c6c6120736976756c6c61206f6c6576696c6c61206e617065696c6c612e, 'Y', '2003-05-13 14:15:18');
INSERT INTO `Translations` (`Original_ID`, `Language_ID`, `Text`, `Translated`, `Updated`) VALUES
(561, 14, 0x4b75696e6b6120706f697374616e206be4796e6e697373e4206f6c6576616e2070656c696e3f, 'Y', '2003-05-13 14:15:18'),
(562, 14, 0x4b796d6d656e656e7465656e2073696972746f6f6e2061737469206c617564616e20616c6c61206ee46b79792022706f69737461222d6c696e6b6b692e204a6f7320706f69737461742070656c696e2c206c756f6b6974756b73657369206569206d75757475206d696c6ce4e46e206c61696c6c612e0d0a0d0a4b796d6d656e656e6e656e2073696972726f6e206ae46c6b65656e2070656c69e420656920766f6920656ee4e420706f69737461612e, 'N', '2003-05-13 14:15:18'),
(563, 14, 0x4b75696e6b612070656c69206c6f706574657461616e3f, 'Y', '2003-05-13 14:15:18'),
(564, 14, 0x4c6f70657474616d696e656e206f6e6e6973747575207661696e203c753e6f6d616c6c613c2f753e2076756f726f6c6c6173692e0d0a0d0a3c756c3e0d0a3c6c693e4be47974e4203c753e4c756f767574613c2f753e2d6e61707069612e204a6f73206c756f76757461742c2068e47669e4742070656c696e206a61206c756f6b6974756b73657369206c61736b65652e0d0a0d0a3c6c693e4b616b736920706572e47474e4697374e4207061737361757374612073696e756c7461206a6120766173746170656c61616a616c746173692e2054e46de4206f6e206e6f726d61616c692074617061206c6f7065747461612070656c692e2053656e206ae46c6b65656e2074656974e4206d6f6c656d70696120707979646574e4e46e206d65726b697473656de4e46e206b756f6c6c656574206b697665742c206a6f6e6b61206ae46c6b65656e20746965746f6b6f6e65206c61736b65652070697374656574206a61207261746b616973656520766f697474616a616e2e0d0a0d0a3c6c693e416e6e6120616a616e206c6f707075612e203c693e2850797964e46d6d652c20657474e4206be47974e474206a6f6d7061616b756d70616120796c6ce4206d61696e697475697374612076616968746f6568646f6973746121293c2f693e204a6f732070656c6961696b617369206c6f707075752c206f6c65742068e476696e6e79742070656c696e206a61206c756f6b6974756b73657369206c61736b65652e, 'N', '2003-05-13 14:15:18'),
(570, 14, 0x447261676f6e696e2061696b616f6d696e6169737575646574, 'Y', '2003-05-13 14:15:18'),
(577, 14, 0x4b75696e6b61206a6170616e696c61696e656e2062796f2d796f6d6920746f696d69693f, 'Y', '2003-05-13 14:20:46'),
(578, 14, 0x4b756e2070656c61616a616e2070e4e461696b61206f6e206c6f7070752c2068e46e656c6ce4206f6e207469657474792061696b6172616a61206b756c6c656b696e2073696972726f6c6c652e204c6973e46b73692068e46e656c6ce4206f6e20757365697461206a616b736f6a613a0d0a3c756c3e0d0a3c6c693e4b756e2070656c61616a61207369697274e4e42c2068e46e656e2061696b616c61736b7572696e73612068797070e4e42074616b616973696e20616c6b756172766f6f6e73612c2065696be4206a616b736f6a656e206de4e472e4206d757574752e3c2f6c693e0d0a0d0a3c6c693e4b756e2070656c61616a61206569207369697272e42061696b616e7361206b756c75657373612c206a616b736f6a656e206de4e472e4206c61736b656520796864656c6ce4206a612061696b616c61736b7572692068797070e4e42074616b616973696e20616c6b756172766f6f6e73612e3c2f6c693e0d0a3c2f756c3e0d0a50656c61616a612068e47669e4e42070656c696e2c206b756e2068e46e656c74e4206c6f707075752061696b61206a61206c6973e461696b616a616b736f742e, 'N', '2003-05-13 14:20:46'),
(579, 14, 0x4b75696e6b61206b616e6164616c61696e656e2062796f2d796f6d6920746f696d69693f, 'Y', '2003-05-13 14:20:46'),
(580, 14, 0x4b756e2070656c61616a616e2070e4e461696b61206c6f707075752c2068e46e656c6ce4206f6e20746965747479206de4e472e42061696b61612070656c61746120746965747479206de4e472e4206b697669e42e0d0a0d0a4573696d65726b696b7369203130206b697665e42031352070e46976e47373e43a0d0a4a6f732070656c61616a612070656c61612031302e2073696972746f6e73612031352070e46976e46e206b756c75657373612c2061696b6120616c6b616120757564656c6c65656e202831352070e46976e4e4203130206b697665e42076617274656e292e0d0a0d0a4a6f732070656c61616a61206569207465652073696972746f6120616a6f697373612c2068e47669e4e42068e46e2070656c696e2e, 'N', '2003-05-13 14:20:46'),
(581, 14, 0x4b75696e6b612046697363686572696e2061696b6120746f696d69693f, 'Y', '2003-05-13 14:20:46'),
(582, 14, 0x4b756e2070656c61616a61206f6e207369697274e46e79742c206c6973e461696b6161206c6973e474e4e46e2068e46e656e206b656c6c6f6f6e7361202870e4e461696b61206f6e206d616b73696d696de4e472e42061696b61612c206a6f6b612070656c61616a616c6c6120766f69206f6c6c61292e0d0a0d0a4b756e2061696b61206c6f707075752c2070656c61616a612068e47669e4e42070656c696e2e, 'N', '2003-05-13 14:20:46'),
(583, 14, 0x4b75696e6b61206e756b6b756d697361696b61207661696b75747461612046697363686572696e2061696b61616e3f, 'Y', '2003-05-13 14:20:46'),
(584, 14, 0x4573696d65726b6b693a0d0a0d0a48616c756174206b65736b696de4e472696e206b6f6c6d652073696972746f61207669696b6f7373612c2065746be42068616c75612070656c696e2070e4e474747976e46e20616a616e206c6f7070756d697365656e206c6175616e74616973696e207461692073756e6e756e74616973696e2e0d0a0d0a48616c7561742073696973202837202d2032292070e46976e4e4202a202832342068202d20392068206e756b6b756d697361696b616129202f20332073696972746f61203d2032352074756e746961206c6973e461696b61612073696972746f61206b6f6864656e2c207669696b6f6e6c6f7070756b656c6c6f20706f69732070e4e46c74e42e, 'Y', '2003-05-13 14:20:46'),
(585, 14, 0x4d6974e4206f6e206e756b6b756d697361696b613f, 'N', '2003-05-13 14:26:31'),
(586, 14, 0x4e756b6b756d6973616a616e2061696b616e612070656c696b656c6c6f7369206f6e20707973e47974657474792065696be4206ae46c6a656c6ce4206f6c6576612061696b6173692076e468656e65206c61696e6b61616e2e, 'N', '2003-05-13 14:26:31'),
(587, 14, 0x4d696b73692070656c696b656c6c6f6e692068797070e4736920796864656b73e46e2074756e746961206b796d6d656e656e206d696e757574696e20736973e46c6ce43f, 'Y', '2003-05-13 14:26:31'),
(588, 14, 0x4a6f73206ee465742068797070697669e4206b656c6c6f6a612c206b616e6e6174746161206861726b697461206e756b6b756d697374612e203b2d290d0a0d0a4b756e2070656c696b656c6c6f2073616e6f6f2c20657474e42073696e756c6c61206f6e20332070e46976e4e42061696b61612c207365207461726b6f69747461613a2073696e756c6c61206f6e2033202a20283234202d203929203d2034352074756e7469612070656c6961696b61612e0d0a0d0a4b756e2070656c696b656c6c6f2073616e6f6f2c20657474e42073696e756c6c61206f6e20322070e46976e4e4206a612031342074756e746961206ae46c6a656c6ce42c207365207461726b6f69747461613a2073696e756c6c61206f6e2032202a20283234202d203929202b203134203d2034342074756e7469612070656c6961696b61612e, 'Y', '2003-05-13 14:26:31'),
(589, 14, 0x4d696b736920656e20766f69206d757574746161206e756b6b756d697361696b61616e69206be4797474e46ae470726f6669696c697373616e693f, 'Y', '2003-05-13 14:26:31'),
(590, 14, 0x4b6f736b61206a6f73206d757574746169736974206e756b6b756d697361696b61617369206b6f6c6d65206b65727461612070e46976e47373e42c20766f6973697420707973e4797474e4e42070656c696b656c6c6f7369206b6f6b6f6e61616e2e20566f6974206d75757474616120736974e4207661696e2c206a6f73206574206f6c65206d75757474616e757420736974e4207669696d652061696b6f696e612e, 'Y', '2003-05-13 14:26:31'),
(591, 14, 0x566f696e6b6f206c6973e474e42061696b6161206f6d61616e206b656c6c6f6f6e693f, 'Y', '2003-05-13 14:26:31'),
(592, 14, 0x45742e, 'N', '2003-05-13 14:26:31'),
(593, 14, 0x566f696e6b6f206c6973e474e42061696b616120766173746170656c61616a616e69206b656c6c6f6f6e3f, 'Y', '2003-05-13 14:26:31'),
(594, 14, 0x45742e2054e46de4206f6d696e616973757573206f6e206b756974656e6b696e203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f746f646f2e706870223e6c6973e47474e47669656e206c697374616c6c613c2f613e2e, 'N', '2003-05-13 14:26:31'),
(595, 14, 0x4f6e6b6f20447261676f6e69737361206c6f6d616f6d696e61697375757474613f, 'Y', '2003-05-13 14:26:31'),
(596, 14, 0x45742e2054e46de4206f6d696e616973757573206f6e206b756974656e6b696e203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f746f646f2e706870223e6c6973e47474e47669656e206c697374616c6c613c2f613e2e, 'N', '2003-05-13 14:26:31'),
(530, 5, 0x506f73657a20766f7472652070726f626ce86d652064616e73206c657320666f72756d73203c6120687265663d222f666f72756d2f6c6973742e7068703f663d33223e464151266e6273703b44697363757373696f6e733c2f613e206f75203c6120687265663d222f666f72756d2f6c6973742e7068703f663d35223e476f2064697363757373696f6e733c2f613e2e20496e64697175657a2c20736920706f737369626c652c20e0206c6120666f6973206c612072e8676c652071756520766f757320766f756c657a20766f6972207072e9636973657220657420e0207175656c206d6f6d656e74206465206c61207061727469652c2064616e73207175656c6c6520736974756174696f6e2c20656c6c65206465767261697420617070617261ee7472652e, 'Y', '2006-08-19 16:46:11'),
(690, 5, '', 'N', '2011-10-26 12:06:49'),
(691, 5, 0x556e20636f7570206427617474617175652c20756e65206d656e6163652c207175656c7175652063686f7365207175692064656d616e646520756e652072e9706f6e736520696d6de964696174652e20446f6e6e65206c27696e6974696174697665206574206c61206761726465726120656e207065726d657474616e742064652063686f6973697220736f6e2070726f7072652070726f636861696e20636f75702e0d0a53656e746520657374206c6520636f6e747261697265206465203c6120687265663d222f6661712e7068703f726561643d7426616d703b6361743d3323456e747279313133223e676f74653c2f613e2e0d0a506172206578656d706c652c20756e20636f757020ab266e6273703b73656e7465266e6273703bbb20766f7573207065726d6574206465206661697265203c6120687265663d222f6661712e7068703f726561643d7426616d703b6361743d3323456e747279313130223e74656e756b693c2f613e20737572206c65207072e963e964656e7420636f757020646520766f74726520616476657273616972652c20706f757220726576656e697220792072e9706f6e64726520656e73756974652e, 'N', '2005-09-20 18:05:29'),
(551, 5, 0x517565207369676e696669656e74206c657320696e666f726d6174696f6e73206465206c612070616765203c686f6d65207374617475732e7068703e5374617475743c2f686f6d653e266e6273703b3f, 'Y', '2013-04-04 22:41:49'),
(552, 5, 0x566f6963692c20627269e876656d656e742c206c61207369676e696669636174696f6e2064657320e96ce96d656e747320617070617261697373616e742064616e73206c65207461626c65617520656e206861757420646520766f7472652070616765203c6120687265663d222f7374617475732e706870223e5374617475743c2f613e2e204365727461696e732070657576656e7420ea747265206d6f64696669e97320706172206c6520ab266e6273703b50726f66696c266e6273703bbb206465206c612070616765203c6120687265663d222f75736572696e666f2e706870223e496e666f73207574696c697361746575723c2f613e2e0d0a0d0a3c756c3e3c6c693e3c623e4e6f6d3c2f623e266e6273703b3a204e6f6d2c2072e9656c206f75207061732c206465206c277574696c697361746575722e205465787465206c696272652e0d0a3c6c693e3c623e50736575646f6e796d653c2f623e266e6273703b3a204964656e74696669616e74206465206c277574696c697361746575722e2043276573742061766563206c756920717527696c20736520636f6e6e656374652e2043276573742063656c75692071756520766f757320646576657a207574696c6973657220706f7572206c756920656e766f79657220756e206d657373616765206f7520756e6520696e7669746174696f6e2e204e6f6e206d6f6469666961626c652e0d0a3c6c693e3c623e44276163636f726420706f7572206a6f756572266e6273703b3f3c2f623e266e6273703b3a204a7573746520756e6520696e666f726d6174696f6e20e02064657374696e6174696f6e206427e976656e7475656c732061647665727361697265732e205465787465206c696272652e0d0a3c6c693e3c623e4e69766561753c2f623e266e6273703b3a204c65206e697665617520656e20636f7572732073657276616e742064652072e966e972656e63652073757220447261676f6e2e205072697320656e2063686172676520706172206c6520736572766575722e0d0a3c6c693e3c623e416e6e6f746174696f6e73206475206e69766561753c2f623e266e6273703b3a20496e666f726d6174696f6e206164646974696f6e6e656c6c652e204c652067726164652064616e7320756e20636c756220646520476f2c20706172206578656d706c652e205465787465206c696272652e0d0a3c2f756c3e, 'N', '2006-08-18 14:43:10'),
(555, 5, 0x436f6d6d656e742076697375616c69736572206c6573206669636869657273205347462028536d6172742047616d6520466f726d617429266e6273703b3f, 'Y', '2013-04-04 22:47:06'),
(556, 5, 0x496c207920612062656175636f7570206465206c6f67696369656c73207175692070657576656e7420766f7573207065726d65747472652064652066616972652063656c612e20556e6520626f6e6e6520616c7465726e617469766520657374206c6520636c69656e74204a617661203c6120687265663d22687474703a2f2f7777772e72656e652d67726f74686d616e6e2e64652f6a61676f2f223e4a61676f3c2f613e2e0d0a0d0aab266e6273703b546865204272697469736820476f204173736f63696174696f6e266e6273703bbb2070726f706f736520756e65206c6f6e677565203c6120687265663d22687474703a2f2f7777772e62726974676f2e6f72672f676f70637265732f676f7063726573312e68746d6c23732d76696577223e6c69737465206465206c6f67696369656c733c2f613e20706f75722076697375616c69736572206c6573206669636869657273205347462e200d0a0d0a556e6520666f697320766f7472652076697375616c697365757220696e7374616c6ce92c20766f757320706f7576657a20696e64697175657220e020766f747265206e617669676174657572206465206c65206c616e636572206176656320756e2073696d706c6520636c69636b206772e263652061752074797065206d696d6520223c74743e6170706c69636174696f6e2f782d676f2d7367663c2f74743e222e0d0a0d0a506f757220756e65206465736372697074696f6e20636f6d706ce8746520647520666f726d6174205347462c20766f757320706f7576657a20766f75732072656e64726520e0206c61203c6120687265663d22687474703a2f2f73656e736569732e786d702e6e65742f3f536d61727447616d65466f726d617422207461726765743d225f626c616e6b223e70616765207472e8732064e97461696c6ce9652064652053656e7365693c2f613e2e, 'N', '2013-04-04 22:47:06'),
(557, 5, 0x436f6d6d656e742064e96d617272657220756e6520706172746965266e6273703b3f, 'Y', '2003-05-14 01:28:43'),
(558, 5, 0x496c2079206120706c75736965757273206661e76f6e732064652064e96d617272657220756e65206e6f7576656c6c6520706172746965266e6273703b3a0d0a3c756c3e0d0a3c6c693e52656a6f696e64726520756e6520706172746965206465206c612073616c6c65206427617474656e74652e0d0a0d0a5574696c6973657a206365747465206de974686f646520736920766f757320636865726368657a20756e206e6f7576656c20616476657273616972652e20436f6d6d656e63657a2070617220737569767265206c65206c69656e203c6120687265663d222f77616974696e675f726f6f6d2e70687022207461726765743d225f626c616e6b223eab266e6273703b53616c6c65206427617474656e7465266e6273703bbb3c2f613e206475206d656e7520646520447261676f6e2e2043686f6973697373657a20756e65207061727469652071756920766f757320636f6e7669656e742064616e73206c61206c697374652c2070756973207574696c6973657a206c6520626f75746f6e20ab266e6273703b496e666f266e6273703bbb2073652074726f7576616e742061752064e9627574206465207361206c69676e6520706f757220656e20666169726520617070617261ee747265203c686f6d65206661712e7068703f726561643d74266361743d33353726653d33383623456e7472793338363e756e65206465736372697074696f6e2064e97461696c6c266561637574653b653c2f686f6d653e2e20456e20626173206465206c6120706167652c20696c2079206120756e20626f75746f6e20ab266e6273703b3c693e52656a6f696e6472653c2f693e266e6273703bbb20706f75722064e96d6172726572206c61207061727469652e3c62722f3e3c62722f3e3c2f6c693e0d0a0d0a3c6c693e3c686f6d65206661712e7068703f726561643d74266361743d33353723456e7472793231303e50726f706f73657220766f7472652070726f707265207061727469653c2f686f6d653e2064616e73206c61203c686f6d652077616974696e675f726f6f6d2e7068703e73616c6c65206427617474656e74653c2f686f6d653e2e0d0a0d0a536920617563756e65206465732070617274696573206465206c61203c6120687265663d222f77616974696e675f726f6f6d2e70687022207461726765743d225f626c616e6b223e73616c6c65206427617474656e74653c2f613e206e6520766f757320636f6e7669656e742c20766f757320706f7576657a203c686f6d65206661712e7068703f726561643d74266361743d33353723456e7472793231303e70726f706f736572206c612076266f636972633b7472653c2f686f6d653e2e20506f75722063656c612c2072656d706c697373657a206c6520666f726d756c61697265206465206c61207061676520ab266e6273703b3c686f6d65206e65775f67616d652e7068703e4e6f7576656c6c65207061727469653c2f686f6d653e266e6273703bbb2c207075697320636c697175657a20737572206c6520626f75746f6e20ab266e6273703b3c693e416a6f75746572206c61207061727469653c2f693e266e6273703bbb20657420617474656e64657a20286465207175656c717565732068657572657320266167726176653b207175656c71756573206a6f7572732920717565207175656c717527756e20736f697420696e74e972657373e92e3c62722f3e3c62722f3e3c2f6c693e0d0a0d0a3c6c693e3c686f6d65206661712e7068703f726561643d74266361743d33353723456e7472793231323e496e766974657220756e20616d693c2f686f6d653e2e0d0a0d0a536920766f757320636f6e6e61697373657a206c652070736575646f6e796d6520646520766f74726520616476657273616972652c20766f757320706f7576657a206c756920656e766f79657220756e6520696e7669746174696f6e20656e2073756976616e74206c65206c69656e203c6120687265663d222f6d6573736167652e7068703f6d6f64653d496e7669746522207461726765743d225f626c616e6b223eab266e6273703b496e7669746572266e6273703bbb3c2f613e206475206d656e7520646520447261676f6e2e2043686f6973697373657a206c6573206f7074696f6e732071756520766f7573207072e966e972657a2c20616a6f7574657a20756e206d65737361676520706572736f6e6e656c2073692064e9736972e92c207075697320656e766f79657a206c27696e7669746174696f6e2e205175616e6420766f74726520616476657273616972652061757261207265e775206c27696e7669746174696f6e2c20696c20706f75727261206c27616363657074657220646972656374656d656e7420286574206c612070617274696520636f6d6d656e6365726129206f7520766f75732070726f706f736572206427617574726573206f7074696f6e7320717569206c756920636f6e7669656e6e656e74206d69657578202871756520766f757320726563657672657a20706172207265746f757220646520636f757272696572292e0d0a496c2079206120617573736920756e206c69656e20ab266e6273703b496e7669746572206c277574696c69736174657572266e6273703bbb20706f696e74616e7420646972656374656d656e7420737572206365636920656e2062617320646520636861717565207061676520ab266e6273703b496e666f73206465206c277574696c69736174657572266e6273703bbb2e0d0a0d0a0d0a3c2f756c3e, 'Y', '2013-04-04 22:10:38'),
(559, 5, 0x436f6d6d656e74206a6f756572206d657320636f7570732064616e73206d6120706172746965266e6273703b3f, 'Y', '2003-05-14 01:28:43'),
(561, 5, 0x436f6d6d656e74207375707072696d657220756e652070617274696520656e20636f757273266e6273703b3f, 'Y', '2003-05-14 01:28:43'),
(563, 5, 0x436f6d6d656e74207465726d696e657220756e6520706172746965266e6273703b3f, 'Y', '2003-05-14 01:28:43'),
(564, 5, 0x566f7573206e6520706f7576657a206c6520666169726520717565207369206327657374203c623e766f7472653c2f623e20746f75722e0d0a0d0a3c756c3e3c6c693e566f757320657420766f74726520616476657273616972652070617373657a20737563636573736976656d656e7420766f74726520746f75722e204327657374206c61206661e76f6e206e6f726d616c65206465207465726d696e657220756e65207061727469652e20456e73756974652c20766f75732064657672657a20696e646971756572206c65732070696572726573206d6f727465732e20456e206361732064652064e9736163636f72642c20696c2079206120756e206c69656e20ab266e6273703b52657072656e647265206c6120706172746965266e6273703bbb20656e20626173206465206c6120706167652e205175616e64206c65732070696572726573206d6f72746573207365726f6e742076616c6964e965732c206c6520736572766575722063616c63756c657261206c652073636f726520657420616a75737465726120766f73206e6976656175782e0d0a0d0a3c6c693e536920766f757320736f7568616974657a206162616e646f6e6e657220756e65207061727469652c207574696c6973657a206c65206c69656e20ab266e6273703b4162616e646f6e6e6572266e6273703bbb20647520626173206465206c6120706167652e2041757175656c2063617320766f7573206c612070657264657a2c20657420766f747265206e6976656175207365726120616a757374e920656e20636f6e73e97175656e636520706172206c6520736572766575722e0d0a0d0a3c6c693e447572616e74206c61207072656d69e872652064697a61696e6520646520636f757073206427756e65207061727469652c20696c2079206120756e206c69656e20ab266e6273703b5375707072696d6572206c6120706172746965266e6273703bbb20656e20626173206465206c6120706167652e20536920766f7573207375707072696d657a20756e65207061727469652c20656c6c65206e276175726120617563756e652072e970657263757373696f6e20737572206c65206e697665617520646573206a6f75657572732e0d0a0d0a3c6c693e536920766f7573206c61697373657a206c61207061727469652064e970617373657220736120647572e965206c696d697465203c693e287327696c20766f757320706c61ee742c2063686f6973697373657a20756e652064657320617574726573206f7074696f6e73266e6273703b21293c2f693e2c20766f75732070657264657a206c61207061727469652c20657420766f747265206e6976656175207365726120616a757374e920656e20636f6e73e97175656e636520706172206c6520736572766575722e0d0a3c2f756c3e, 'Y', '2013-04-04 22:52:05'),
(570, 5, 0x447261676f6e202d204c652074656d7073206574206c6120647572e965206465732070617274696573, 'Y', '2003-05-14 01:28:43'),
(577, 5, 0x436f6d6d656e7420666f6e6374696f6e6e65206c652062796f796f6d69206a61706f6e616973266e6273703b3f, 'Y', '2003-05-14 01:28:43'),
(578, 5, 0x41752064e9627574206465206c61207061727469652c20636861717565206a6f7565757220636f6d6d656e6365206176656320756e6520647572e965206c696d69746520706f7572206a6f75657220636f72726573706f6e64616e7420e0206c276f7074696f6e20ab266e6273703b54656d7073206465206a6575266e6273703bbb2e0d0a0d0a5175616e6420736f6e20ab266e6273703b54656d7073206465206a6575266e6273703bbb206573742064e970617373e92c206c65206a6f7565757220656e7472652064616e7320736f6e20ab266e6273703b62796f2d796f6d69266e6273703bbb2e2043686163756e206465207365732070726f636861696e7320636f75707320646576726120616c6f727320ea747265206a6f75e92064616e7320756e2074656d7073206c696d6974e920657420706f757220756e206e6f6d627265206c696d6974e92064652070e972696f646573266e6273703b3a0d0a0d0a3c756c3e3c6c693e5175616e64206c65206a6f75657572206a6f75652064616e73206c61206c696d6974652064652074656d70732c2063656c6c652d6369207265636f6d6d656e636520e020ea7472652064e9636f6d7074e96520e0207061727469722064652073612076616c65757220696e697469616c65206574206c65206e6f6d6272652064652070e972696f646573206e2765737420706173206d6f64696669e92e0d0a0d0a3c6c693e5369206c65206a6f75657572206e65206a6f7565207061732064616e73206c61206c696d6974652064652074656d70732c206c65206e6f6d6272652064652070e972696f646573206573742064696d696e75e920646520756e2c206574206c61206c696d6974652064652074656d7073207265636f6d6d656e636520e020ea7472652064e9636f6d7074e96520746f757420646520737569746520e0207061727469722064652073612076616c65757220696e697469616c652e0d0a0d0a3c6c693e556e6520666f697320717565206c65206e6f6d6272652064652070e972696f6465732072657374616e74657320657374207ae9726f203c623e65743c2f623e207175616e64206365747465206465726e69e87265206c696d6974652064652074656d70732061747465696e74207ae9726f2c206c65206a6f756575722070657264206c61207061727469652e0d0a3c2f756c3e, 'Y', '2013-08-05 19:01:31'),
(579, 5, 0x436f6d6d656e7420666f6e6374696f6e6e65206c652062796f796f6d692063616e616469656e266e6273703b3f, 'Y', '2003-05-14 01:28:43'),
(580, 5, 0x41752064e9627574206465206c61207061727469652c20636861717565206a6f7565757220636f6d6d656e6365206176656320756e6520647572e965206c696d69746520706f7572206a6f75657220636f72726573706f6e64616e7420e0206c276f7074696f6e20ab266e6273703b54656d7073206465206a6575266e6273703bbb2e0d0a0d0a5175616e6420736f6e20ab266e6273703b54656d7073206465206a6575266e6273703bbb206573742064e970617373e92c206c65206a6f7565757220656e7472652064616e7320736f6e20ab266e6273703b62796f2d796f6d69266e6273703bbb2e20496c20646f697420616c6f7273206a6f75657220756e206365727461696e206e6f6d62726520646520636f7570732064616e7320756e2074656d7073206c696d6974e92e20506172206578656d706c652c2061766563203135206a6f75727320706f75722031302070696572726573266e6273703b3a0d0a0d0a3c756c3e3c6c693e5175616e64206c65206a6f75657572206a6f75652073657320313020636f7570732064616e73206c61206c696d6974652064652074656d70732c2063656c6c652d6369207265636f6d6d656e636520e020ea7472652064e9636f6d7074e96520e0207061727469722064652073612076616c65757220696e697469616c652028e0206e6f7576656175203135206a6f75727320706f7572206a6f756572206c65732031302070726f636861696e65732070696572726573292e0d0a0d0a3c6c693e5369206c65206a6f75657572206e65206a6f7565207061732073657320313020636f7570732064616e73206c61206c696d6974652064652074656d70732c20696c2070657264206c61207061727469652e0d0a3c2f756c3e, 'Y', '2013-08-05 19:00:31'),
(581, 5, 0x436f6d6d656e7420666f6e6374696f6e6e65206c652073797374e86d652064652074656d70732046697363686572266e6273703b3f, 'Y', '2003-05-14 01:28:43'),
(582, 5, 0x41752064e9627574206465206c61207061727469652c20636861717565206a6f7565757220636f6d6d656e6365206176656320756e6520647572e965206c696d69746520706f7572206a6f75657220636f72726573706f6e64616e7420e0206c276f7074696f6e20ab266e6273703b54656d7073206465206a6575266e6273703bbb2e0d0a0d0a5175616e64206c65206a6f75657572206a6f75652c207361206c696d6974652064652074656d707320657374206175676d656e74e965206465206c612076616c65757220ab266e6273703b656e20737570706ce96d656e742070617220746f7572266e6273703bbb2073616e7320746f757465666f69732064e9706173736572206c6520ab266e6273703b54656d7073206465206a6575266e6273703bbb2e0d0a0d0a5369207361206c696d6974652064652074656d70732061747465696e74207ae9726f2c206c65206a6f756575722070657264206c61207061727469652e, 'N', '2003-08-21 16:07:58'),
(583, 5, 0x436f6d6d656e74206c612070e972696f6465206465206e75697420696e666c75656e6365206c652074656d70732046697363686572266e6273703b3f, 'Y', '2003-05-14 01:28:43'),
(584, 5, 0x556e206578656d706c65206578706c696361746966266e6273703b3a0d0a0d0a536920766f757320766f756c657a2071756520636861717565206a6f7565757220726573706563746520756e206d696e696d756d206465203320636f757073207061722073656d61696e652073616e7320717565206c61206c696d6974652064652074656d70732070756973736520ea7472652064e970617373e9652070656e64616e74206c65207765656b656e642e0d0a496c207920612035206a6f757273207061722073656d61696e65266e6273703b3a2037202d203220706f7572206c65207765656b656e640d0a496c207920612031352068657572657320706172206a6f7572266e6273703b3a203234202d203920706f7572206c612070e972696f6465206465206e7569740d0a4c6573203320636f75707320646f6976656e7420646f6e6320ea747265206a6f75e97320656e20373520686575726573266e6273703b3d20356a202a203135680d0a457420756e20636f757020646f6974206c27ea74726520656e20323520686575726573266e6273703b3d20373568202f20330d0a0d0a43686f6973697373657a2032352068657572657320ab266e6273703b656e20737570706ce96d656e742070617220746f7572266e6273703bbb2065742064e9736163746976657a206c6520ab266e6273703b54656d70732064e9636f6d7074e9206c65207765656b656e64266e6273703bbb2e, 'Y', '2003-08-21 16:07:58'),
(585, 5, 0x5175276573742d636520717565206c612070e972696f6465206465206e756974266e6273703b3f, 'Y', '2016-01-15 13:17:20'),
(586, 5, 0x50656e64616e74206c657320686575726573207370e963696669e965732064616e7320766f747265206f7074696f6e20ab266e6273703b50e972696f6465206465206e756974266e6273703bbb2c206c657320686f726c6f67657320646520766f73207061727469657320736f6e7420666967e9657320657420766f73206c696d697465732064652074656d7073206e652064696d696e75656e7420706c75732e20537572206c6573207061676573206427696e666f726d6174696f6e732073757220766f7320706172746965732c20636563692065737420696e64697175e920706172206c926963f46e65203c696d616765206e696768742e6769663e2e, 'Y', '2016-01-15 13:20:29'),
(587, 5, 0x506f757271756f69206d61206c696d6974652064652074656d7073207669656e74206465207065726472652039266e6273703b68657572657320656e203130266e6273703b6d696e75746573266e6273703b3f, 'Y', '2003-05-14 01:28:43'),
(588, 5, 0x432765737420e0206361757365206465206c612070e972696f6465206465206e7569742e20456e20666169742c20766f747265206c696d6974652064652074656d7073206120e974e920666967e9652070656e64616e742039206865757265732e0d0a0d0a5175616e6420447261676f6e2064697420717527696c20766f75732072657374652033206a6f757273206465206a65752c2063656c612076657574206469726520717527696c20766f75732072657374652033202a202832342d3929203d20343520686575726573206465206a657520686f72732070e972696f646573206465206e7569742e0d0a0d0a5175616e6420447261676f6e2064697420717527696c20766f75732072657374652032206a6f75727320657420313420686575726573206465206a65752c2063656c612076657574206469726520717527696c20766f75732072657374652032202a202832342d3929202b203134203d20343420686575726573206465206a657520686f72732070e972696f646573206465206e7569742e, 'Y', '2003-08-21 16:07:58'),
(589, 5, 0x506f757271756f69206573742d636520717565206a65206e65207065757820706173206d6f646966696572206d612070e972696f6465206465206e7569742064616e73206d6f6e2070726f66696c266e6273703b3f, 'Y', '2003-05-14 01:28:43'),
(590, 5, 0x506172636520717565206d6f6469666965722074726f697320666f69732073612070e972696f6465206465206e75697420706172206a6f7572207065726d65747472616974206427617272ea746572206c657320686f726c6f6765732064652073657320706172746965732e0d0a0d0a4f6e206e652070657574206d6f6469666965722073612070e972696f6465206465206e75697420717565207369206f6e206e65206c2761207061732064e96ae020666169742072e963656d6d656e742e, 'Y', '2003-08-21 16:07:58'),
(591, 5, 0x4573742d636520717565206a652070657578206175676d656e746572206d61206c696d6974652064652074656d7073266e6273703b3f, 'Y', '2003-05-14 01:28:43'),
(592, 5, 0x4e6f6e2e204e6f726d616c656d656e742c20766f757320646576657a2064656d616e64657220e020766f747265206164766572736169726520646520766f7573206163636f7264657220756e20737570706ce96d656e742064652074656d70732e0d0a0d0a432765737420696e686162697475656c20657420696d706f6c6974206465206d656e646965722064652074656d707320737570706c656d656e7461697265206a757374656d656e7420642761766f697220706c75732064652074656d707320706f75722072e9666ce9636869722c20616c6f7273206e6520736f79657a2070617320e9746f6e6ee920736920766f747265206f70706f73616e7420726566757365206c612064656d616e64652e, 'Y', '2010-05-24 14:35:48'),
(593, 5, 0x4573742d636520717565206a652070657578206175676d656e746572206c61206c696d6974652064652074656d7073206465206d6f6e2061647665727361697265266e6273703b3f, 'Y', '2003-05-14 01:28:43'),
(594, 5, 0x50617320706f7572206c27696e7374616e742e204d616973206327657374207072e976752064616e73206c6120203c6120687265663d222f746f646f2e706870223e4c69737465206465732063686f73657320e02066616972653c2f613e2e, 'N', '2005-03-09 04:47:01'),
(595, 5, 0x517565207369676e69666965206c612070e972696f646520646520766163616e636573266e6273703b3f, 'Y', '2003-10-13 17:07:59'),
(596, 5, 0x566f757320706f7576657a20626c6f71756572206c27686f726c6f67652064e9636f6d7074616e7420766f747265203c6120687265663d222f6661712e7068703f726561643d7426616d703b6361743d3536223eab266e6273703b54656d7073206465206a6575266e6273703bbb3c2f613e20706f75722070617274697220656e20766163616e6365732e2e2e206f7520736920766f747265207472617661696c20766f757320656d70ea636865206d6f6d656e74616ee96d656e74206465206a6f75657220636f7272656374656d656e7420766f73207061727469657320656e20636f7572732e0d0a53756976657a206c65206c69656e203c4120485245463d222f656469745f7661636174696f6e2e706870223eab266e6273703b4a6f75727320646520766163616e63657320e0207072656e647265266e6273703bbb3c2f613e206465206c612070616765203c6120687265663d222f7374617475732e70687022207461726765743d225f626c616e6b223eab266e6273703b537461747574266e6273703bbb3c2f613e20706f75722064e9636c6172657220766f7320766163616e6365732e, 'N', '2005-09-20 18:05:29'),
(599, 5, 0x5175656c6c65207a6f6e6520686f726169726520657374207574696c6973e96520706f7572206d612070e972696f6465206465206e756974266e6273703b3f, 'Y', '2003-05-14 01:28:43'),
(600, 5, 0x447261676f6e207574696c697365206c61207a6f6e6520686f7261697265206c6f63616c652071756520766f7573206176657a2064e966696e69652064616e7320766f7472652070726f66696c2028657420696c207375697420617573736920736f6e206865757265206427e974e9207369206ee96365737361697265292e, 'Y', '2003-08-21 16:07:58'),
(605, 14, 0x4b75696e6b61205347462d746965646f73746f6f6e20766f692073e4696cf6e42074656b737469e43f, 'Y', '2003-05-14 12:28:42'),
(606, 14, 0x596d70e472f6692074656b73746920266c743b636f6d6d656e742667743b206a6120266c743b2f636f6d6d656e742667743b2074616765696c6c612e0d0a0d0a566f6974206b6f6b65696c6c61206a6f737361696e2070656c65697374e473693a0d0a0d0a312e204b69726a6f6974612073696972726f6e207669657374696b656e7474e4e46e3a0d0a0d0a74657374692c20756e6f6864610d0a266c743b636f6d6d656e742667743b0d0a74657374696b6f6d6d656e7474692c20706974e4697369206ee46b79e4207367663a7373e40d0a266c743b2f636f6d6d656e742667743b0d0a74657374692c20656920706974e4697369206ee46b79e4207367663a7373e40d0a0d0a322e204ce4686574e42073696972746f2e0d0a332e20486165205347462d746965646f73746f2e0d0a342e2041766161205347462d746965646f73746f2028476f2d6f686a656c6d616c6c61207461692074656b737469656469746f72696c6c61292e0d0a0d0a352e204b6f6d6d656e7474696e61206c756b61613a0d0a266c743b6e696d65736920447261676f6e697373612667743b3a2074657374696b6f6d6d656e7474692c20706974e4697369206ee46b79e4207367663a7373e40d0a0d0a4e6f726d61616c692074656b737469202874656b7374692c206a6f6b61206569206f6c6520266c743b636f6d6d656e742667743b206a6120266c743b2f636f6d6d656e742667743b2074616769656e20736973e46c6ce429206ee46b7979207661696e2070656c696e2070656c61616a696c6c652e20536974e4206569206ee465206b756b61616e206d75752c2065696be42073652074616c6c656e6e75205347462d746965646f73746f6f6e2e2054e46de4206f6e20796b7369747969737979746573692073756f6a656c656d6973656b73692e, 'N', '2003-05-14 12:28:42'),
(627, 14, 0x4d6974e420616b74697669746565747469736172616b65206be4797474e46ae46c69737461737361207461726b6f69747461613f, 'Y', '2003-05-14 12:28:42'),
(628, 14, 0x5365206b6572746f6f2c206d6f6e74616b6f2073696972746f612070656c61616a61206f6e206ce468657474e46e7974207669696d652061696b6f696e612e0d0a0d0a322074e4687465e43a206d6f6e74612073696972746f612028656e656d6de46e206b75696e203135206e656c6ae46e2070e46976e46e20736973e46c6ce4290d0a312074e46874693a206a6f6e6b696e2076657272616e2073696972746f6a612028322d3135206e656c6ae46e2070e46976e46e20736973e46c6ce4290d0a65692074e4687465e43a2076e468e46e2073696972746f6a612028616c6c6520322073696972746f61206e656c6ae46e2070e46976e46e20736973e46c6ce429, 'Y', '2003-05-14 12:28:42'),
(629, 14, 0x4d6974e42070726f73656e747469736172616b65206be4797474e46ae46c69737461737361207461726b6f69747461613f, 'Y', '2003-05-14 12:28:42'),
(630, 14, 0x5365206f6e206be4797474e46ae46e20766f6974746f2d74617070696f2d73756864652c206a6f6b6120616e746161206c6973e4746965746f61206be4797474e46ae46e206c756f6b6974756b73657374612e0d0a0d0a4b756e2070656c61616a616c6c61206f6e2074616b616e61616e206c756f6b6974657474756a612070656c656ae42c206e6f696e2035302025206172766f206f736f69747461612c20657474e42068e46e656e206c756f6b6974756b73656e7361206f6e20746f64656e6ee46bf66973657374692076616b69696e74756e75742e204a6f73206172766f206f6e20796c6920373520252c207461726b6f69747461612073652c20657474e4206c756f6b69747573206f6e20746f64656e6ee46bf6697365737469206c6969616e20616c6861696e656e2e204a6f73206172766f206f6e20616c6c6520323520252c206f6e206c756f6b6974757320746f64656e6ee46bf6697365737469206c6969616e206b6f726b65612e0d0a0d0a48756f6d6161206b756974656e6b696e2c20657474e42070726f73656e747469736172616b6520766f69206f6c6c61206861726861616e6a6f68746176612e2050656c61616a61206f6e20766f696e7574206573696d65726b696b7369206d656e65737479e420687976696e206d6f6e69737361203978392d70656c65697373e42c206d757474612068e476696e6e79742073757572696d6d616e206f73616e2031397831392d70656c65697374e4e46e2e2054616920657474e42068e46e206f6e2070656c616e6e7574207661696e2076e468e46e2076616b6176696120286c756f6b6974657474756a61292070656c656ae42c206d757474612073656e2073696a61616e207573656974612076e468656d6de46e2076616b617669612c206c756f6b697474616d6174746f6d69612070656c656ae42e2053616164616b73657369207461726b656d70696120746965746f6a612c206b6174736f2068e46e656e2070656c61616d616e73612070656c69742e, 'Y', '2003-05-14 12:28:42'),
(637, 14, 0x4d6974e4207461726b6f69747461612070e4e461696b613f, 'Y', '2003-05-14 12:33:41'),
(638, 14, 0x50e4e461696b61206f6e206b756d6d616c6c656b696e2070656c61616a616c6c65206d79f66e6e657474792061696b6172616a612e204c61736b757269207069656e656e65652c206b756e206f6e2073696e756e2076756f726f73692e20556e6961696b616e617369206c61736b757269206569207069656e656e652e200d0a0d0a4a6f732061696b61206c6f707075752c2070656c69206569207669656ce42070e4e474792e20416a616e206c6f707075657373612070656c61616a61206d656e6565206c6973e4616a616c6c6520286b74732e20616c6c61292e, 'Y', '2003-05-14 12:33:41'),
(661, 14, 0x4d6974e4207461726b6f6974746161207461736f697475733f, 'Y', '2003-05-14 12:33:41'),
(662, 14, 0x4a6f73206b616864656e2070656c61616a616e2070656c69746169646f69737361206f6e2065726f612c20686520766f6976617420736f7069612c20657474e42068756f6e6f6d70692070656c61616a61207361612070656c696e20616c7573736120796c696de4e472e4697369e4207461736f697475736b697669e42e204ee46de4206d7573746174206b69766574207461736f697474617661742065726f6a6120746169646f697373612e204e696964656e206176756c6c612070656c697374e42074756c6565206b69696e6e6f73746176616d7069206a61206b756d6d616c6c616b696e2070656c61616a616c6c61206f6e20796874e46ce4696e656e206d6168646f6c6c697375757320766f69747461612e0d0a0d0a3139783139207069737465656e20676f62616e696c6c61207461736f697475736b697669656e206de4e472e4206f6e2073616d61206b75696e206c756f6b6974757374656e2065726f7475732e204d75756e206b6f6b6f6973696c6c6120676f62616e65696c6c6120447261676f6e2073e4e474e4e4207461736f697475737461207461727065656e206d756b61616e2e0d0a0d0a5461736f697475736b697665742061736574657461616e20706572696e7465697365737469203c4120485245463d222f6661712e7068703f726561643d74266361743d3323456e7472793839223e686f7368693c2f413e2d7069737465697369696e2074696574796e2c206b697669656e206de4e472e47374e42072696970707576616e206b616176616e206d756b61616e2e20447261676f6e69737361206b6976657420736161206b756974656e6b696e20617365747461612076617061617374692e, 'Y', '2003-05-14 12:33:41'),
(675, 14, 0x566f696b6f2070656c696e20616c6f6974746161205347462d746965646f73746f6e20706f686a616c74613f, 'Y', '2003-05-14 12:37:43'),
(676, 14, 0x45692e2054e46de4206f6d696e616973757573206b756974656e6b696e203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f70686f72756d2f726561642e7068703f663d3426693d3132363126743d31323631223e74756c6c61616e206c6973e4e46de4e46e3c2f613e2074756c657669656e206f6d696e61697375756b7369656e206c697374616c6c652e, 'N', '2003-05-14 12:37:43'),
(677, 14, 0x447261676f6e696e206c756f6b6974756b736574, 'Y', '2003-05-14 12:37:43'),
(678, 14, 0x4d6974e4206be4797474e46ae46c697374616e206c756f6b69747573736172616b65207461726b6f69747461613f, 'Y', '2003-05-14 12:37:43'),
(679, 14, 0x4c756f6b6974756b73656e20616c6b756f7361206b6572746f6f206e796b796973656e2064616e2d20746169206b79752d6c756f6b6974756b73656e2e20546f696e656e2c2073756c7569737361206f6c657661206f73612c206b6572746f6f206c756f6b6974756b73656e2076616876757564656e2e0d0a0d0a4573696d65726b696b7369202231206b797520282b3430252922206f6e2076616876612031206b7975206c756f6b697475732e205365206f6e206d656c6b65696e207269697474e476e46e207661687661206f6c6c616b7365656e206865696b6b6f20312064616e206c756f6b697475732e, 'N', '2003-05-14 12:37:43'),
(680, 14, 0x4d6974e4202b20746169202d206c756f6b6974756b73656e20706572e47373e4207461726b6f697474617661743f, 'Y', '2003-05-14 12:39:56'),
(681, 14, 0x447261676f6e206be4797474e4e420736973e4697365737469206ae4726a657374656c6de4e42c206a6f73736120796b736920476f2d6c756f6b6974756b73656e2065726f207661737461612031303020454c4f2d7069737465656e2065726f612e204573696d65726b696b73693a0d0a0d0a37206b79752028302529203d203134303020454c4f2d70697374657474e40d0a37206b797520282b33302529203d203134333020454c4f2d70697374657474e40d0a36206b797520282d34382529203d203134353220454c4f2d70697374657474e40d0a36206b79752028302529203d203135303020454c4f2d70697374657474e4, 'N', '2003-05-14 12:39:56'),
(663, 14, 0x4d696be4206f6e206be47974e46e6ef66c6c6973656e206a61206b756e6e6f6c6c6973656e207461736f6974756b73656e2076e46c696e656e2065726f3f, 'Y', '2003-05-14 12:44:03'),
(664, 14, 0x4be47974e46e6ef66c6c696e656e207461736f69747573206be4797474e4e4206c756f6b6974757365726f6a6120286a61206c617564616e206b6f6b6f6129206de4e472697474e4e46b7365656e207461736f6974756b73656e2e204b6f6d69206f6e20302e35206570e4746173616973696c6c65206a6120362e3520746173616973696c6c652070656c65696c6c652e0d0a0d0a4b756e6e6f6c6c696e656e207461736f69747573206be4797474e4e4207461726b656d706161206b6f6d696e206de4e472697474656c79e420282e2e2e2c20312e352c20322e302c20322e352c202e2e2e2920746173617061696e6f747461616b7365656e207069656e65742065726f742070656c61616a69656e2076e46c696c6ce42c206a6f747461206b756d6d616c6c616b696e2070656c61616a616c6c61206f6c69736920796874e46ce4696e656e206d6168646f6c6c697375757320766f69747461612e, 'Y', '2003-05-14 12:44:03'),
(684, 14, 0x4d6974e4206c756f6b697475736772616166696e2073696e696e656e20616c7565207461726b6f69747461613f, 'Y', '2003-05-14 12:44:03'),
(685, 14, 0x5365206f736f69747461612c206b75696e6b61206ce468656c6ce4206be4797474e46ae46e206c756f6b69747573206f6e20447261676f6e696e2074756c6b696e74616120476f2d6c756f6b6974756b7369737461206a612070656c69746169646f697374612e0d0a0d0a4b756e206be4797474e46ae420696c6d6f697474616120476f2d6c756f6b6974756b73656e73612c20447261676f6e2065692074696564e4207661737461616b6f2074e46de420616c6b756172766f20447261676f6e696e206de4e4726974656c6de4e42e204d6161696c6d616e6c61616a75697369612c206b61747461766961206de4e4726974656c6d69e420476f2d6c756f6b6974756b73696c6c65206569206f6c65206f6c656d617373612e20447261676f6e2074656b6565207061726861616e7361207461726a6f74616b7365656e2070656c61616a696c6c65206c756f7465747461766961206a61207665727461696c756b656c706f69736961206c756f6b6974756b7369612e0d0a0d0a53696e6973656e207461757374616e206c6576657973206c756f6b697475736772616166696e207461757374616c6c61206b6572746f6f206b75696e6b61206ce468656c6ce420757564656e206be4797474e46ae46e20447261676f6e2d6c756f6b69747573206f6e20447261676f6e696e206de4e4726974656c6d69e420476f2d6c756f6b6974756b73696c6c652e, 'N', '2003-05-14 12:44:03'),
(560, 5, 0x4c61206c69737465206465732070617274696573206ff920632765737420e020766f7573206465206a6f756572206573742064616e73206c612070616765203c6120687265663d222f7374617475732e70687022207461726765743d225f626c616e6b223eab266e6273703b537461747574266e6273703bbb3c2f613e2e205574696c6973657a206c657320626f75746f6e7320706f7274616e74206c657572206e756de9726f20706f7572206c657320666169726520617070617261ee7472652e0d0a0d0a41206365206d6f6d656e742c206f6e206a6f756520656e20706f696e74616e742028706c6163657220756e6520706965727265292073757220756e6520696e74657273656374696f6e20766964652e205369206c6520636f757020747565206365727461696e65732070696572726573206465206c27616476657273616972652c20656c6c6573207365726f6e7420656e6c6576e96573206175746f6d6174697175656d656e7420706172206c6520736572766575722e205574696c6973657a206c6573206c69656e7320647520626173206465206c61207061676520706f75722070617373657220766f74726520746f7572206f7520706f7572206162616e646f6e6e65722e0d0a0d0a556e6520666f6973206c612070616765206d69736520e0206a6f75722073656c6f6e20766f7472652063686f69782c207574696c6973657a20756e2064657320626f75746f6e7320ab266e6273703b56616c69646572266e6273703b2e2e2e266e6273703bbb20706f757220636f6e6669726d657220766f74726520636f75702c206f75206c6520626f75746f6e20ab266e6273703b5265746f7572266e6273703bbb20706f75722072657072656e64726520766f7472652063686f69782e, 'Y', '2004-08-18 15:02:26'),
(562, 5, 0x447572616e74206c61207072656d69e872652064697a61696e6520646520636f757073206427756e65207061727469652c20756e206c69656e20ab266e6273703b3c693e5375707072696d6572206c61207061727469653c2f693e266e6273703bbb20657374207072e973656e7420656e206261732064652070616765206475206a65752c20736f7573206c6520706c61746561752e204c657320706965727265732064652068616e6469636170206e6520736f6e742070617320636f6d70746162696c6973e965732064616e732063657320313020636f7570732c20657420696c2065737420706f737369626c65206465207375707072696d657220756e652070617274696520616c6f72732071756520e761206e276573742070617320766f74726520746f7572206465206a6f7565722e20436f6d6d6520706f7572206c657320617574726520616374696f6e73206c6f7273206427756e65207061727469652c20766f757320646576657a2076616c6964657220766f7472652063686f6978206465207375707072657373696f6e2e0d0a0d0a536920766f7573207375707072696d657a20756e65207061727469652c2063656c6c652d6369206e276175726120617563756e652072e970657263757373696f6e20737572206c65206e697665617520646573206a6f75657572732e20417072e873206c652031303c7375703ee86d653c2f7375703e20636f75702c20756e6520706172746965206e65207065757420706c757320ea747265207375707072696de9652e20436570656e64616e742c20766f757320706f7576657a20746f756a6f75727320616472657373657220756e652064656d616e64652064652073757070726573696f6e2061757072e873206427756e203c623e61646d696e69737472617465757220646520706172746965733c2f623e2c2064616e73206c65203c686f6d6520666f72756d2f6c6973742e7068703f666f72756d3d323e666f72756d20646520737570706f72743c2f686f6d653e20656e206578706c697175616e7420766f74726520736f75686169742e0d0a4e277574696c6973657a20636574746520706f73736962696c6974e92071756520736920766f7573206c61206a7567657a206162736f6c756d656e74206ee96365737361697265266e6273703b21, 'Y', '2013-04-06 03:27:20'),
(603, 5, 0x506f757271756f6920447261676f6e206e65206d27696e646971756520706173206c276164726573736520452d6d61696c206465206d6f6e2061647665727361697265266e6273703b3f, 'Y', '2003-08-21 16:07:58'),
(604, 5, 0x43617220447261676f6e2070726f74e86765206c6120636f6e666964656e7469616c6974e920646520636574746520696e666f726d6174696f6e2e0d0a0d0a536920766f757320766f756c657a20656e207361766f697220706c75732061752073756a657420646520766f74726520616476657273616972652c2064656d616e64657a206c65206c756920646972656374656d656e74206772e2636520617578206d6573736167657320646520447261676f6e2e, 'Y', '2003-05-14 22:18:22'),
(605, 5, 0x507569732d6a6520616a6f7574657220647520746578746520e0206d657320666963686965727320534746266e6273703b3f, 'Y', '2003-05-14 22:18:22'),
(606, 5, 0x50617220736f7563697320646520636f6e666964656e7469616c6974e92c206c6520746578746520646573206d65737361676573206427756e6520706172746965206e276573742076697369626c65207175652070617220766f757320657420766f74726520616476657273616972652c206574206e27617070617261ee74207061732064616e73206c6573206669636869657273205347462e0d0a0d0a506f757220636f7069657220756e2074657874652064616e73206c652066696368696572205347462c20656e746f7572657a206c65206176656320266c743b636f6d6d656e742667743b20657420266c743b2f636f6d6d656e742667743b2064616e73206c6120626fee7465206465206d6573736167652e0d0a0d0a506172206578656d706c652c2064616e7320756e6520646520766f73207061727469657320656e20636f757273266e6273703b3a0d0a0d0a312e20546170657a206c65206d6573736167652073756976616e74266e6273703b3a0d0a0d0a74686973206973206f6e6c79206120746573742c20706c656173652069676e6f72652074686973206d6573736167652e0d0a266c743b636f6d6d656e742667743b200d0a4365207465787465207365726120636f7069e92064616e73206c652066696368696572205347462e0d0a266c743b2f636f6d6d656e742667743b200d0a4365207465787465206e6520736572612070617320636f7069e92064616e73206c652066696368696572205347462e0d0a0d0a322e204a6f75657a20766f74726520636f75702e0d0a332e2054e96ce963686172676572206c652066696368696572205347462e0d0a342e204f757672657a206c65206669636869657220534746206176656320756e2076697375616c697365757220617070726f707269e9206f752073696d706c656d656e7420756e20e96469746575722064652074657874652e0d0a352e204c6520636f6d6d656e746169726520647520636f757020657374266e6273703b3a0d0a266c743b766f747265206e6f6d206368657a20447261676f6e2667743b3a204365207465787465207365726120636f7069e92064616e73206c652066696368696572205347462e0d0a0d0a536920766f757320766f756c657a2071756520766f74726520636f6d6d656e7461697265206e6520736f6974206c697369626c6520717527656e2066696e2064652070617274696520286d61697320756e697175656d656e742064616e73206c65206669636869657220534746292c207574696c6973657a20266c743b68696464656e2667743b266c743b2f68696464656e2667743b20e0206c6120706c61636520646520266c743b636f6d6d656e742667743b266c743b2f636f6d6d656e742667743b2e0d0a0d0a4c65732062616c6973657320266c743b632667743b266c743b2f632667743b20657420266c743b682667743b266c743b2f682667743b2070657576656e7420ea747265207574696c6973e9657320e0206c6120706c61636520646520266c743b636f6d6d656e742667743b266c743b2f636f6d6d656e742667743b20657420266c743b68696464656e2667743b266c743b2f68696464656e2667743b2e, 'N', '2006-04-29 23:28:43'),
(627, 5, 0x517565207369676e69666965206c6120636f6c6f6e6e6520ab266e6273703b41637469766974e9266e6273703bbb20646573206a6f7565757273266e6273703b3f, 'Y', '2003-10-13 17:07:59'),
(628, 5, 0x456c6c652072656e736569676e6520737572206c65206e6f6d62726520646520636f75707320717527696c2061206a6f75e92072e963656d6d656e742e0d0a0d0a3220e9746f696c657320766572746573266e6273703b3a20706c757320646520373020636f75707320706172206d6f69730d0a3120e9746f696c65206f72616e6765266e6273703b3a206465203520e020373020636f75707320706172206d6f69730d0a706173206427e9746f696c65266e6273703b3a206d6f696e73206465203520636f75707320706172206d6f6973, 'Y', '2003-08-24 16:27:38'),
(629, 5, 0x517565207369676e69666965206c6120636f6c6f6e6e6520ab266e6273703b506f757263656e74616765266e6273703bbb20646573206a6f7565757273266e6273703b3f, 'Y', '2003-10-13 17:07:59'),
(630, 5, 0x432765737420206c612070726f706f7274696f6e2064652070617274696573206761676ee965732070617220726170706f7274206175782070617274696573207465726d696ee965732e20456c6c65207065757420646f6e6e6572207175656c7175657320696e6469636174696f6e7320737572206c61206a75737465737365206475206e6976656175206465206c277574696c697361746575722e0d0a0d0a5175616e6420756e206a6f7565757220612064e96ae0207465726d696ee920756e206365727461696e206e6f6d62726520646520706172746965732c20756e20706f757263656e746167652070726f6368652064652035302520766575742073fb72656d656e7420646972652071756520736f6e206e697665617520616666696368e9206573742070657274696e656e742e20556e652076616c65757220737570e972696575726520e02037352520696e646971756520717565206365206e6976656175206573742073616e7320646f7574652074726f70206261732e20556e652076616c65757220696e66e972696575726520e0203235252c20717527696c2065737420737572e976616c75e92e0d0a0d0a4d61697320696c2066617574207361766f6972207175652063656369207065757420ea7472652074726f6d706575722e20506172206578656d706c652c20756e206a6f7565757220706575742061766f697220e974e9207472e87320626f6e2064616e73207365732070617274696573203978392c206d6169732061766f6972207065726475206c6120706c75706172742064652073657320706172746965732031397831392e204f7520696c2070657574206e2761766f6972207465726d696ee920717527756e207065746974206e6f6d62726520646520706172746965732073e9726965757365732028636c617373e965732920636f6e74726520756e206772616e64206e6f6d627265206465207061727469657320657870e972696d656e74616c657320286e6f6e20636c617373e96573292e20506f75722061766f697220756e20706f696e742064652076756520706c7573207072e96369732c20696c206661757420636f6e73756c746572206c61206c6973746520636f6d706ce874652064657320ab266e6273703b50617274696573207465726d696ee96573266e6273703bbb206475206a6f7565757220657420736120ab266e6273703b436f75726265206465206e697665617578266e6273703bbb2e, 'Y', '2005-04-22 00:47:51'),
(680, 5, 0x517565207369676e696669656e74206c6573202b206574202d2064616e73206c6573206e69766561757820646573206a6f7565757273266e6273703b3f, 'Y', '2003-05-14 22:30:31'),
(681, 5, 0x447261676f6e207574696c69736520756e6520e96368656c6c65206465206e697665617578206ff920756e652064696666e972656e6365206427756e20677261646520636f72726573706f6e6420e020756e652064696666e972656e63652064652031303020706f696e74732e20506172206578656d706c65266e6273703b3a0d0a0d0a36206b7975202820302529203d203135303020706f696e74730d0a36206b797520282d34382529203d203134353220706f696e74730d0a37206b797520282b33302529203d203134333020706f696e74730d0a37206b7975202820302529203d203134303020706f696e7473, 'N', '2004-12-07 11:21:38'),
(684, 5, 0x517565207369676e69666965206c61207a6f6e6520626c6575652064657320636f7572626573206465206e697665617578266e6273703b3f, 'Y', '2004-03-30 02:38:16');
INSERT INTO `Translations` (`Original_ID`, `Language_ID`, `Text`, `Translated`, `Updated`) VALUES
(685, 5, 0x456c6c65206d6f6e747265206c27696e636572746974756465206475206e6976656175206475206a6f756575722070617220726170706f727420e0206c27e96368656c6c652064652076616c6575727320646520447261676f6e2e0d0a0d0a4120736f6e206172726976e96520737572206c6520736974652c207175616e6420756e206e6f7576656175206a6f7565757220646f6e6e6520736f6e2067726164652c20447261676f6e206e65207065757420706173207361766f69722073692063657474652076616c6575722065737420636f68e972656e74652e20556e652064e966696e6974696f6e206d6f6e6469616c65206465732067726164657320646520476f206e27657869737465207061732e20447261676f6e206661697420646520736f6e206d6965757820706f757220666f75726e697220646573206e69766561757820636f6d70617261626c6573206175207365696e20646520736f6e20736974652e2041696e73692c20706c7573206365747465207a6f6e6520626c6575652065737420e974726f6974652c20706c7573206c65206e6976656175206475206a6f756575722065737420666961626c652070617220726170706f72742061757820617574726573206a6f756575727320646520447261676f6e2e, 'N', '2003-08-21 16:07:58'),
(637, 5, 0x517565207369676e69666965206c6520ab266e6273703b54656d7073206465206a6575266e6273703bbb266e6273703b3f, 'Y', '2003-10-13 17:07:59'),
(638, 5, 0x4368617175652070617274696520636f6d6d656e6365206176656320756e65206c696d6974652064652074656d707320706f7572206a6f7565722e204c6520ab266e6273703b54656d7073206465206a6575266e6273703bbb20657374206c6120647572e96520696e697469616c65206163636f7264e96520e02063686163756e20646573206a6f75657572732e20447572616e74206c61207061727469652c2063657474652076616c6575722064696d696e7565207175616e6420632765737420617520746f7572206475206a6f756575722028656e206465686f7273206465732070e972696f646573206465206e75697429206574206d6f6e7472652061696e7369206c652074656d707320717527696c206c756920726573746520706f7572206a6f7565722e0d0a0d0a5175616e64206c652074656d7073206475206a65752065737420e970756973e92c206c6120706172746965203c623e6e27657374207061733c2f623e206f626c696761746f6972656d656e74207465726d696ee9652e204365727461696e6573206de974686f6465732064652063616c63756c207072e9766f69656e74206465732070e972696f64657320737570706ce96d656e7461697265732e20566f697220706c7573206c6f696e2e, 'Y', '2003-08-21 16:07:58'),
(661, 5, 0x5175276573742d636520717527756e2068616e6469636170266e6273703b3f, 'Y', '2003-08-21 16:07:58'),
(662, 5, 0x53692064657578206a6f756575727320736f6e7420646520666f726365732064696666e972656e7465732c20696c2070657576656e7420636f6e76656e697220717565206c6520706c757320666169626c6520636f6d6d656e63657261206c6120706172746965206176656320756e206365727461696e206e6f6d627265206465207069657272657320706c6163e965732064276176616e636520737572206c6520706c61746561752e2043657320706965727265732c20746f756a6f757273206e6f697265732c20617070656ce9657320706965727265732064652068616e64696361702c20636f6d70656e73656e74206c612064696666e972656e6365206465206e69766561752e204176656320656c6c65732c206c61207061727469652064657669656e64726120696e74e972657373616e746520706f7572206c65732064657578206a6f756575727320707569737175652063686163756e20617572612073656e7369626c656d656e74206c61206dea6d65206368616e6365206465206761676e65722e0d0a0d0a53757220756e20706c61746561752031397831392c206c652068616e64696361702065737420e967616c20e0206c612064696666e972656e636520646573206772616465732e20447261676f6e20616a75737465206c652068616e646963617020656e20666f6e6374696f6e2064657320617574726573207461696c6c657320646520706c61746561752e0d0a0d0a486162697475656c6c656d656e742c206c657320706965727265732064652068616e646963617020736f6e7420706c6163e9657320737572206c6573203c4120485245463d222f6661712e7068703f726561643d7426616d703b6361743d3323456e7472793839223e686f7368693c2f413e2073656c6f6e20756e206f726472652064e970656e64616e74206475206e6f6d62726520646520706965727265732e2045742c206269656e20717565206c6520706c6163656d656e7420636f6e76656e74696f6e6e656c2064657320706965727265732064652068616e64696361702070756973736520ea74726520767520636f6d6d6520756e6520706f6c6974657373652c20447261676f6e207065726d6574206465206c657320706c616365722073656c6f6e206c652064e97369722028636f6e76656e752920646573206a6f75657572732e, 'Y', '2005-09-20 18:05:29'),
(663, 5, 0x5175656c6c6520657374206c612064696666e972656e636520656e74726520756e2068616e646963617020747261646974696f6e6e656c20657420756e2068616e64696361702063616c63756ce9266e6273703b3f, 'Y', '2013-03-13 09:14:19'),
(664, 5, 0x44616e73206c61206de974686f646520636f6e76656e74696f6e6e656c6c652c206c65206e6f6d62726520646520706965727265732064652068616e64696361702065737420646f6e6ee920706172206c612064696666e972656e6365206465732067726164657320646573206a6f75657572732e20506f7572206c6573206a65757820e020e967616c6974e9202870617320646520706965727265732064652068616e6469636170292c206c65203c6120687265663d222f6661712e7068703f726561643d7426616d703b6361743d3323456e74727939223e4b6f6d693c2f613e2065737420646520362c3520706f696e74732e20506f7572206c6573206a65757820e02068616e64696361702c206c65204b6f6d692065737420646520302c352e0d0a0d0a44616e73206c61206de974686f64652063616c63756ce9652c20447261676f6e20616a7573746520706c75732066696e656d656e74206c65204b6f6d6920282e2e2e202d302c35203020302c3520312c3020312c35202e2e2e2920656e20666f6e6374696f6e206465206c612064696666e972656e636520646573206e69766561757820706f757220e97175696c6962726572206175206d69657578206c61207061727469652e, 'Y', '2005-09-20 18:05:29'),
(671, 5, 0x507569732d6a6520656e766f796572206d657320636f7570732070617220452d6d61696c2c20534d53206f75206427617574726573206d6f79656e73266e6273703b3f, 'Y', '2003-08-24 20:52:43'),
(672, 5, 0x506f7572206a6f756572206368657a20447261676f6e2c20766f757320646576657a20766f757320636f6e6e656374657220737572206c65207369746520646520447261676f6e2e0d0a496c206e276573742070617320706f737369626c65206465206a6f7565722070617220452d6d61696c2c20534d53206f7520706172206427617574726573206d6f79656e732e, 'Y', '2003-08-24 20:52:43'),
(673, 5, 0x4573742d63652071756520447261676f6e206d65207072e97669656e647261207175616e642063652073657261206d6f6e20746f7572206465206a6f756572266e6273703b3f, 'Y', '2003-05-14 23:20:31'),
(674, 5, 0x4f75692c20e020636f6e646974696f6e2071756520766f7573206179657a206163746976e9206c276f7074696f6e20ab266e6273703b4574726520696e666f726de92070617220452d6d61696c266e6273703bbb20646520766f7472652070726f66696c2065742071756520766f7573206179657a207072e9636973e920766f747265206164726573736520452d6d61696c2028636f6e666964656e7469656c6c65292e, 'Y', '2003-08-21 16:07:58'),
(675, 5, 0x507569732d6a6520636f6d6d656e63657220756e2070617274696520656e2074e96ce9636861726765616e7420736f6e206669636869657220534746266e6273703b3f, 'Y', '2003-05-14 22:51:25'),
(676, 5, 0x5061732020706f7572206c27696e7374616e742e204d61697320636574746520706f73736962696c6974e9203c6120687265663d222f666f72756d2f726561642e7068703f663d3426616d703b693d3132363126616d703b743d31323631223e7365726120616a6f7574e9653c2f613e2064616e73206c6120ab266e6273703b4c69737465206465732063686f73657320e0206661697265266e6273703bbb2e, 'N', '2006-10-25 04:54:15'),
(677, 5, 0x447261676f6e202d204e69766561757820657420e976616c756174696f6e, 'Y', '2003-05-14 22:51:25'),
(678, 5, 0x517565207369676e69666965206c6120636f6c6f6e6e6520ab266e6273703b4e6976656175266e6273703bbb2064616e73206c65732070616765732064277574696c6973617465757273266e6273703b3f, 'Y', '2003-08-21 16:07:58'),
(679, 5, 0x4c61207072656d69e872652070617274696520646573206e69766561757820657374206c6520677261646520656e203c6120687265663d222f6661712e7068703f726561643d7426616d703b6361743d3323456e7472793339223e64616e3c2f613e206f7520656e203c6120687265663d222f6661712e7068703f726561643d7426616d703b6361743d3323456e7472793338223e6b79753c2f613e2e0d0a4c61207365636f6e6465207061727469652c20656e74726520706172656e7468e87365732c20696e6469717565206c6120666f726365206475206a6f756575722064616e732063652067726164652e20506172206578656d706c652c20ab266e6273703b31266e6273703b6b7975266e6273703b282b34302529266e6273703bbb2065737420756e206a6f756575722064652067726164652031206b797520666f72742e205072657371756520617573736920666f727420717527756e206a6f7565757220646520677261646520312064616e20666169626c6520ab266e6273703b31266e6273703b64616e266e6273703b282d34352529266e6273703bbb2e204c612066726f6e7469e8726520656e7472652067726164652065737420e0202b2f2d3530252e0d0a0d0a436c69717565722073757220756e206e6976656175207065726d65742064276f6274656e6972206c6520677261706869717565206465206c612070726f6772657373696f6e206475206a6f756575722e, 'N', '2005-09-20 18:05:29'),
(631, 5, 0x436f6d6d656e7420656e6c6576657220756e65206465206d657320696e7669746174696f6e73206465206c612073616c6c65206427617474656e7465266e6273703b3f, 'Y', '2003-10-13 17:07:59'),
(632, 5, 0x5574696c6973657a206c6520626f75746f6e20ab266e6273703b496e666f266e6273703bbb206465203c623e766f7472653c2f623e20696e7669746174696f6e2e20456e20626173206465206c6120706167652c20696c2079206175726120756e20626f75746f6e20706f7572206c61207375707072696d65722e0d0a0d0a4e6f74657a207175652c20736920766f747265206f66667265206e27612070617320e974e920616363657074e96520617072e873207175656c717565732073656d61696e65732c20656c6c65207365726120656e6c6576e965206175746f6d6174697175656d656e7420706172206c6520736572766575722e, 'Y', '2003-08-24 16:31:43'),
(633, 5, 0x5175276573742d636520717527756e652070617274696520e020e967616c6974e92061766563206e6967697269266e6273703b3f, 'Y', '2003-08-21 16:07:58'),
(529, 9, 0x4f6e646520706f73736f20617072656e646572206d61697320736f62726520756d6120726567726120706172746963756c61723f, 'Y', '2003-05-15 14:40:36'),
(531, 9, 0x4f6e646520706f73736f20617072656e6465722061732072656772617320646f20476f3f, 'Y', '2003-05-15 14:40:36'),
(532, 9, 0x45752073756769726f202671756f743b3c6120687265663d22687474703a2f2f706c6179676f2e746f2f696e7465726163746976652f696e6465782e68746d6c223e54686520496e7465726163746976652057617920546f20476f3c2f613e2671756f743b20284f2043616d696e686f20496e74657261637469766f2070617261206f20476f29, 'Y', '2003-06-17 03:28:07'),
(533, 9, 0x4f6e646520706f73736f20656e636f6e74726172206d6169732070266161637574653b67696e61732077656220736f627265206f20476f3f, 'Y', '2003-05-15 14:40:36'),
(534, 9, 0x4e61203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f6c696e6b732e706870223e70266161637574653b67696e6120646f73206c696e6b733c2f613e2e, 'Y', '2003-06-17 03:28:07'),
(541, 9, 0x264561637574653b20706f7373266961637574653b76656c207265636f6d652663636564696c3b617220756d206a6f676f207175652074656e6861206163616261646f20706f72717565206f2074656d706f20636865676f7520616f2066696d3f, 'Y', '2003-05-15 14:40:36'),
(542, 9, 0x50617261206a6f676f7320636f6d2061637475616c697a612663636564696c3b266174696c64653b6f20646520636c61737369666963612663636564696c3b266174696c64653b6f2c206e266174696c64653b6f2e204361736f20636f6e7472266161637574653b72696f2c2073696d2c20266561637574653b20706f7373266961637574653b76656c2e0d0a0d0a4d6173207265636f6d652663636564696c3b6172206f206a6f676f2074656d2064652073657220666569746f206d616e75616c6d656e74652070656c6f2061646d696e6973747261646f722c20706f7274616e746f206e266174696c64653b6f20266561637574653b20756d61206f702663636564696c3b266174696c64653b6f206e6f726d616c206f7520657865637574616461206672657175656e74656d656e74652e20264561637574653b20707265666572266961637574653b76656c2066617a6572206a6f676f7320636f6d206c696d697465732064652074656d706f20737566696369656e74656d656e7465206772616e6465732e, 'Y', '2003-05-15 14:40:36'),
(551, 9, 0x4f20717565207369676e69666963616d206f73206974656d732064612070266161637574653b67696e61206465205374617475733f, 'N', '2006-08-05 19:57:32'),
(555, 9, 0x436f6d6f20706f73736f20766572206f7320666963686569726f73205347463f, 'N', '2003-05-15 14:40:36'),
(557, 9, 0x436f6d6f20706f73736f20636f6d652663636564696c3b617220756d206a6f676f206e6f766f3f, 'Y', '2003-05-15 14:40:36'),
(559, 9, 0x436f6d6f2066612663636564696c3b6f206a6f6761646173206e6f73206d657573206a6f676f733f, 'Y', '2003-05-15 14:40:36'),
(561, 9, 0x436f6d6f20706f73736f2061706167617220756d206a6f676f2061637469766f3f, 'Y', '2003-05-15 14:40:36'),
(563, 9, 0x436f6d6f20706f73736f2061636162617220756d206a6f676f3f, 'Y', '2003-05-15 14:40:36'),
(570, 9, 0x4361726163746572266961637574653b737469636173206465206c696d697465732064652074656d706f206e6f2044726167266174696c64653b6f, 'Y', '2003-05-15 14:40:36'),
(577, 9, 0x436f6d6f2066756e63696f6e61206f2073697374656d612062796f2d796f6d69206a61706f6e2665636972633b733f, 'Y', '2003-05-15 14:40:36'),
(579, 9, 0x436f6d6f2066756e63696f6e61206f2073697374656d612062796f2d796f6d692063616e616469616e6f3f, 'Y', '2003-05-15 14:40:36'),
(581, 9, 0x436f6d6f2066756e63696f6e61206f2073697374656d612074656d706f20466973636865723f, 'Y', '2003-05-15 14:40:36'),
(583, 9, 0x5175616c20266561637574653b206f2065666569746f20646f2074656d706f206e6f637475726e6f20736f627265206f2074656d706f20466973636865723f, 'Y', '2003-05-15 14:40:36'),
(585, 9, 0x4f2071756520e9206f2074656d706f206e6f637475726e6f3f, 'N', '2003-05-15 14:40:36'),
(591, 9, 0x506f73736f2061646963696f6e61722074656d706f20616f206d65752072656cf367696f3f, 'Y', '2003-05-15 14:40:36'),
(592, 9, 0x4e266174696c64653b6f2e, 'N', '2003-05-15 14:40:36'),
(593, 9, 0x506f73736f2061646963696f6e61722074656d706f20616f2072656cf367696f20646f206d657520616476657273266161637574653b72696f3f, 'Y', '2003-05-15 14:40:36'),
(594, 9, 0x4e266174696c64653b6f2e204d6173206573746120266561637574653b20756d612066756e63696f6e616c6964616465206e61203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f746f646f2e706870223e6c6973746120646520636f6973617320612066617a65723c2f613e2e, 'N', '2003-06-17 03:28:07'),
(637, 9, 0x4f2071756520266561637574653b206f2074656d706f207072696e636970616c3f, 'Y', '2003-05-15 14:41:33'),
(686, 5, '', 'N', '2011-10-26 12:06:49'),
(687, 5, 0x4e65207061732072e9706f6e647265203c623e6c6f63616c656d656e743c2f623e206175206465726e69657220636f757020646520736f6e20616476657273616972652e, 'N', '2003-05-17 00:38:01'),
(688, 5, 0x5175276573742d636520717527756e652070617274696520646f75626c65266e6273703b3f, 'Y', '2003-08-21 16:07:58'),
(689, 5, 0x4176656320756e6520ab266e6273703b70617274696520646f75626c65266e6273703bbb2c20766f757320636f6d6d656e63657a203c623e646575783c2f623e206e6f7576656c6c657320706172746965732061766563206c65206dea6d6520616476657273616972652e20566f757320617572657a206c657320626c616e63732064616e73206c27756e652c206574206c6573206e6f6972732064616e73206c2761757472652e20417563756e65206e2761757261206465203c6120687265663d222f6661712e7068703f726561643d7426616d703b6361743d33353723456e7472793937223e68616e64696361703c2f613e2e, 'N', '2005-09-20 18:05:29'),
(680, 10, 0xb5c8bcb6d6d0b5c4202b20bbf2202d20cac7cab2e7dba3bf, 'Y', '2007-05-30 11:27:37'),
(681, 10, 0xc1fad6aeb39ecab9d3c3b5c4b5c8bcb6cfb5cdb3cac731bcb6cfe0b5b1d3da313030b5e3b5c4b2eeb1f0a1a3c0fdc8e7a3ba0d0a0d0a3620bcb6202820302529203d203135303020b5e30d0a3620bcb620282d34382529203d203134353220b5e30d0a3720bcb620282b33302529203d203134333020b5e30d0a3720bcb6202820302529203d203134303020b5e3, 'N', '2007-05-30 11:27:37'),
(684, 10, 0xc6e5c1a6cdbcb5c4c0b6c9abc7f8d3f2cac7cab2e7dba3bf, 'Y', '2007-05-30 11:27:37'),
(685, 10, 0xd5e2cac7d6b8cab9d3c3d5dfb5c4b5c8bcb6d3ebc1fad6aeb39eb5c4b5c8bcb6c6e5c1a6b6a8d2e5d3d0b6e0c9d9b2eebee0a1a30d0a0d0ab5b1d0c2cab9d3c3d5dfcae4c8ebb3f5cabcb5c8bcb6cab1a3acc1fad6aeb39eb2a2b2bbd6aab5c0d5e2b8f6b3f5cabcd6b5cac7b7f1b7fbbacfc1fad6aeb39eb5c4b6a8d2e5a1a3c4bfc7b0cac0c9cfbbb9c3bbd3d0b7c5d6eecbc4baa3bdd4d7bcb5c4cea7c6e5b5c8bcb6b6a8d2e5a1a3c1fad6aeb39ebea1c1a6cce1b9a9bfc9bfbfd3ebbfc9b1c8bdcfb5c4cea7c6e5b5c8bcb6a1a3c6e5c1a6cdbcb5c4c0b6c9abc7f8d3f2d6bbb4fab1edd0c2cab9d3c3d5dfb5c42044475320b5c8bcb6d3ebc1fad6aeb39ebcc8b6a8b5c4cea7c6e5b5c8bcb6d3d0b6e0c9d9b2eebee0a1a3, 'N', '2007-05-30 11:27:37'),
(686, 10, 0xcad6b0ce, 'N', '2007-05-30 11:27:37'),
(687, 10, 0x54656e756b69a3bacfc2d2bbcad63c623eb2bb3c2f623ecfecd3a6b6d4cad6b5c4c9cfd2bbcad6a1a3, 'N', '2007-05-30 11:27:37'),
(688, 10, 0xcbabc9abb6d4bed6cac7cab2e7dba3bf, 'Y', '2007-05-30 11:27:37'),
(689, 10, 0x3c693ecbabc9abb6d4bed63c2f693ecac7d3ebcdacd2bbcebbb6d4cad6bdf8d0d03c693eb6feb3a13c2f693ed0c2c6e5bed6a1a3c4fad4dad2bbbed6b3d6b0d7d7d3a3acc1edd2bbbed6b3d6badad7d3a1a3d1a1d4f1b5c4ccf9c4bfd3ebc8c3d7d3bdabcacad3c3d3dac1bdbed6a1a3b4fdbed6cad2d6d0b5c4c6e5bed6d7cac1cfbfc9bfb4b5bdc8c3d7d3cafdc4bfa1a3, 'N', '2007-09-16 21:45:43'),
(503, 10, 0xd4d3cfee, 'Y', '2007-05-29 17:39:00'),
(673, 10, 0xbbbbced2cfc2cab1a3acc1fad6aeb39ebbe1b2bbbbe1cda8d6aaced2a3bf, 'Y', '2007-05-30 11:27:37'),
(674, 10, 0xbbe1a3acd6bbd2aac4fad3d0d4dab8f6c8cbd7cac1cfd6d0cce1b9a9c1cbb5e7d7d3d3cabcfeb5d8d6b7a3a8b1a3c3dc29a3acc8bbbaf3c6f4d3c322b5e7d3cacda8d6aa22a1a3, 'Y', '2007-05-30 11:27:37'),
(671, 10, 0xced2c4dcd3c3b5e7d7d3d3cabcfeb4abcbcdc2e4d7d3c2f0a3bf, 'Y', '2007-05-30 11:27:37'),
(672, 10, 0xb2bbc4dca3acd3c3b5e7d7d3d3cabcfeb4abcbcdc2e4d7d3cac7b2bbbfc9c4dcb5c4a1a30d0ac4fab1d8d0ebb5c7c8eb203c6120687265663d222f223ec1fad6aeb39ecdf8d5be3c2f613e20b2c5c4dccbcdb3f6c2e4d7d3a1a3, 'Y', '2007-05-30 11:27:37'),
(20, 18, 0x5370696163656e74652c20e820696d706f73736962696c6520696e697a69617265206c6120706172746974612e204173706574746120616c63756e69206d696e757469206520726970726f76612e, 'Y', '2011-09-29 16:02:30'),
(522, 4, 0x49737420657320696e204f72646e756e672c206a656d616e64656d207669656c20476cfc636b20616d20416e66616e672065696e657220506172746965207a752077fc6e736368656e3f, 'Y', '2007-12-06 15:00:11'),
(551, 6, 0xbf5175e9207369676e69666963616e206c6f7320ed74656d7320656e206c612070e167696e612064652065737461646f3f, 'Y', '2013-11-11 22:23:13'),
(561, 6, 0xbf43f36d6f20656c696d696e6f20756e61207061727469646120656e206d61726368613f, 'Y', '2003-06-02 08:34:41'),
(583, 6, 0xbf43f36d6f2061666563746120656c207469656d706f20646520737565f16f20616c207469656d706f20466973636865723f, 'Y', '2003-06-02 08:34:41'),
(585, 6, 0xbf5175e920657320656c207469656d706f20646520737565f16f3f, 'N', '2003-06-02 08:34:41'),
(586, 6, 0x447572616e7465206c617320686f7261732064656c20227469656d706f20646520737565f16f22206c6f732072656c6f6a65732064652074757320706172746964617320657374e16e20656e2070617573612c20706f72206c6f2074616e746f20656c207469656d706f206e6f206176616e7a612e, 'N', '2003-08-11 04:36:23'),
(587, 6, 0xbf506f727175e920656c2072656c6f6a206465206d6920706172746964612062616af3203920686f72617320656e203130206d696e75746f733f, 'Y', '2003-06-02 08:34:41'),
(589, 6, 0xbf506f727175e9206e6f20707565646f2065646974617220656c207469656d706f20646520737565f16f20656e206d692070657266696c206465207573756172696f3f, 'Y', '2003-06-02 08:34:41'),
(590, 6, 0x506f7271756520656469746172207475207469656d706f20646520737565f16f207472657320766563657320706f722064ed61207465207065726d69746972ed6120646574656e6572206c6f732072656c6f6a657320646520747520706172746964612e2053f36c6f20707565646573206564697461726c6f207369206e6f206c6f2068617320686563686f2072656369656e74656d656e74652e, 'Y', '2003-06-02 08:34:41'),
(592, 6, 0x4e6f2e, 'Y', '2003-06-02 08:34:41'),
(595, 6, 0xbf5175e920736f6e206c6f732064ed6173206465207661636163696f6e65733f, 'Y', '2003-08-29 06:23:16'),
(599, 6, 0xbf5175e9207a6f6e6120686f72617269612065732075736164612070617261206d69207469656d706f20646520737565f16f3f, 'Y', '2003-06-02 08:34:41'),
(600, 6, 0x447261676f6e207574696c697a61207475207a6f6e6120686f7261726961206c6f63616c2c20636f6e666967757261646120706f722074ed206d69736d6f20656e20656c2070657266696c206465207573756172696f2e, 'Y', '2003-06-02 08:34:41'),
(603, 6, 0xbf506f727175e920447261676f6e206e6f206d652064696365206c612064697265636369f36e20646520636f7272656f20656c65637472f36e69636f206465206d69206f706f6e656e74653f, 'Y', '2003-06-02 08:34:41'),
(605, 6, 0xbf43f36d6f20707565646f206775617264617220746578746f20656e20656c205347463f, 'Y', '2003-06-02 08:34:41'),
(661, 6, 0xbf5175e9207369676e69666963612068616e64696361703f, 'Y', '2003-06-02 08:34:41'),
(571, 4, 0x576172756d206b616e6e206963682055726c6175627374616765206e6963687420736f206e75747a656e2c2077696520696368206df6636874653f, 'Y', '2003-11-04 11:13:25'),
(572, 4, 0x57e4726520646965204e75747a756e6720766f6e2055726c61756273746167656e206e696368742065696e676573636872e46e6b742c206bf66e6e74656e20536965206f64657220496872204765676e657220776965646572686f6c74206a657765696c73206e75722065696e656e2055726c61756273746167206e65686d656e2c20756d2065696e65204e69656465726c61676520647572636820dc62657273636872656974756e672064657220426564656e6b7a656974207a752076657268696e6465726e2c207761732064696520426564656e6b7a65697420626564657574756e67736c6f73206d61636874652e0d0a0d0a4461686572206b616e6e2065696e206265676f6e6e656e65722055726c617562203c623e6e696368743c2f623e207769646572727566656e206f646572206162676562726f6368656e2077657264656e2c20756e64206465722055726c617562206d75df206d696e64657374656e73207a7765692054616765206c616e67207365696e2e, 'Y', '2007-12-06 15:56:36'),
(575, 4, 0x576172756d20667261677420447261676f6e206e616368206d65696e657220452d4d61696c2d416472657373653f, 'Y', '2007-12-06 14:24:39'),
(675, 4, 0x4b616e6e206d616e2065696e20537069656c206265692065696e656d20766f7268657220686f636867656c6164656e656e205347462d537069656c7374616e6420626567696e6e656e3f, 'Y', '2007-12-06 20:55:54'),
(676, 4, 0x4e6f6368206e696368742e, 'N', '2007-12-06 20:55:54'),
(677, 4, 0x537069656c657272e46e67652061756620447261676f6e, 'Y', '2003-06-03 00:48:00'),
(678, 4, 0x57656c63686520426564657574756e6720686162656e20646965205a61686c656e20646572205370616c746520537069656c7374e4726b6520696e206465722042656e75747a65726c697374653f, 'Y', '2007-12-06 20:55:54'),
(601, 4, '', 'Y', '2012-07-29 12:52:42'),
(602, 4, 0x53474620697374206469652041626bfc727a756e672066fc7220536d6172742047616d6520466f726d61742c2065696e204461746569666f726d6174207a756d2053706569636865726e20766f6e20476f2d20756e64206175636820616e6465726520537069656c652e2045732067696274206d65687265726520416e77656e64756e67656e203c686f6d65206661712e7068703f726561643d74266361743d33363523456e74727934333e7a756d20416e7363686175656e20766f6e205347462d4461746569656e3c2f686f6d653e2e0d0a0d0a416c6c652044657461696c73207a756d20466f726d61742073696e6420696e20646572203c6120687265663d22687474703a2f2f7777772e7265642d6265616e2e636f6d2f7367662f22207461726765743d6e65773e6f6666697a69656c6c656e205370657a6966696b6174696f6e3c2f613e20646573205347462d466f726d6174657320626573636872696562656e2e, 'Y', '2007-12-06 16:18:37'),
(623, 4, '', 'Y', '2007-12-06 16:18:37'),
(625, 4, 0x4769627420657320686965722076657277616c74657465205475726e696572653f, 'Y', '2007-12-06 16:18:37'),
(626, 4, 0x4e65696e2c206c6569646572206e6f6368206e696368742e, 'Y', '2007-12-06 16:18:37'),
(667, 4, '', 'Y', '2012-07-29 12:52:42'),
(669, 4, '', 'Y', '2012-07-29 12:52:42'),
(690, 10, 0xcfc8cad6, 'N', '2007-05-30 11:27:37'),
(691, 10, 0x53656e7465a3bab9a5bbf7cad6a3accdfed0b2a3acb1d8d0ebc1a2bcb4cfecd3a6a1a3b4b4d4eccfc8bbfaa3acd3d0c8a8d1a1d4f1cfc2d2bbcad6b5c4cebbd6c3a1a3cfc8cad6b5c4cfe0b7b4cac7203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f6661712e7068703f726561643d74266361743d3323456e747279313133223ebaf3cad63c2f613ea1a30d0acfc8cad6b5c4d2bbb7bdc8e7b9fbbef5b5c3cacab5b1a3acd2b2bfc9d2d4d1a1d4f1203c6120687265663d222f6661712e7068703f726561643d74266361743d3323456e747279313130223ecad6b0ce3c2f613ea1a3, 'N', '2007-05-30 11:27:37'),
(692, 10, 0xbaf3cad6, 'N', '2007-05-30 11:27:37'),
(693, 10, 0x476f7465a3bab7c0d3f9cad6a3accfecd3a6cdfed0b2a1a3b7c5c6facfc8bbfaa3acc8c3b6d4cad6d1a1d4f1cfc2d2bbcad6b5c4cebbd6c3a1a3baf3cad6b5c4cfe0b7b4cac7203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f6661712e7068703f726561643d74266361743d3323456e747279313132223ecfc8cad63c2f613ea1a3, 'N', '2007-05-30 11:27:37'),
(624, 4, 0x2e2e2e206973742065696e20747261646974696f6e656c6c6572206a6170616e69736368657220476f2d426567726966662c206465722062656465757465743a2044616e6b652066fc722064617320537069656c616e6765626f7420756e64207669656c20476cfc636b21, 'Y', '2007-12-06 16:18:37'),
(690, 4, '', 'Y', '2012-07-29 12:52:42'),
(692, 4, '', 'Y', '2012-07-29 12:52:42'),
(692, 5, '', 'N', '2011-10-26 12:06:49'),
(693, 5, 0x556e20636f75702064e966656e7369662c206c612072e9706f6e736520e020756e65206d656e6163652e204661697420706572647265206c27696e6974696174697665206574206c61697373657261206c27616476657273616972652063686f6973697220736f6e2070726f636861696e20636f75702e0d0a476f746520657374206c6520636f6e747261697265206465203c6120687265663d222f6661712e7068703f726561643d7426616d703b6361743d3323456e747279313132223e73656e74653c2f613e2e, 'N', '2005-09-20 18:05:29'),
(694, 5, 0x51756520736f6e74206c65732070617274696573206f6273657276e96573266e6273703b3f, 'Y', '2003-06-09 00:10:46'),
(695, 5, 0x4327657374206c61206c6973746520646520746f75746573206c65732070617274696573203c623e6427617574726573206a6f75657572733c2f623e20646f6e7420766f757320766f756c657a20737569767265206c652064e9726f756c656d656e742e0d0a0d0a506f757220616a6f7574657220756e6520706172746965206427756e206a6f756575722064616e7320766f747265206c69737465206465732070617274696573206f6273657276e965732c20696c20766f7573206661757420642761626f7264206c612074726f757665722064616e73206c61206c69737465206465732070617274696573203c623e656e20636f7572733c2f623e206465206365206a6f756575722c206f7576726972206c612070616765206465206c61207061727469652c2070756973207574696c69736572206c65206c69656e20ab266e6273703b416a6f757465722064616e73206c61206c697374652064276f62736572766174696f6e266e6273703bbb20647520626173206465206c6120706167652e20284365206c69656e2064657669656e64726120ab266e6273703b52657469726572206465206c61206c697374652064276f62736572766174696f6e266e6273703bbb20706172206c61207375697465290d0a0d0a5175616e6420756e6520706172746965206f6273657276e965207365207465726d696e652c20447261676f6e206c612072657469726520646520766f747265206c69737465206175746f6d6174697175656d656e7420657420766f7573206c65207369676e616c652070617220756e206d6573736167652e, 'N', '2006-05-22 02:36:50'),
(694, 4, 0x5761732073696e642062656f6261636874657465205061727469656e3f, 'Y', '2003-06-09 16:43:34'),
(695, 4, 0x44696573652046756e6b74696f6e2065726c617562742065732049686e656e2c2065696e65204c6973746520766f6e205061727469656e20616e646572657220537069656c657220616e7a756c6567656e2c20646965205369652062656f6261636874656e206df6636874656e2e0d0a0d0a486162656e205369652065696e652050617274696520676566756e64656e2c20646965205369652062656f6261636874656e20776f6c6c656e2c2064616e6e206b6c69636b656e2053696520617566203c693e5a75722042656f6261636874656e6c697374652068696e7a7566fc67656e3c2f693e2e20556d207370e4746572207769656465722061756620646965736520506172746965207a7572fc636b7a756b6f6d6d656e2c207265696368742065732c2061756620646572203c686f6d65207374617475732e7068703e53746174757373656974653c2f686f6d653e2064656d204c696e6b203c686f6d652073686f775f67616d65732e7068703f6f6273657276653d743e62656f6261636874657465205061727469656e20616e7a656967656e3c2f686f6d653e207a7520666f6c67656e2e0d0a0d0a57656e6e2065696e652062656f626163687465746520506172746965206265656e64657420776972642c2076657273656e64657420646572205365727665722065696e65204e6163687269636874206d69742064656d20656e6467fc6c746967656e2050756e6b74657374616e642e, 'N', '2009-07-04 10:05:29'),
(551, 4, 0x57617320626564657574656e2064696520766572736368696564656e656e2050756e6b746520617566206465722053746174757373656974653f, 'Y', '2012-12-17 13:07:06'),
(552, 4, 0x45696e65206b75727a652045726b6ce472756e67206465722066fc6e6620456c656d656e746520696e2064657220546162656c6c65206f62656e2061756620646572203c686f6d65207374617475732e7068703e53746174757373656974653c2f686f6d653e2e0d0a3c756c3e0d0a3c6c693e3c623e4e616d653c2f623e20446572204e616d65206465732042656e75747a6572732e204672656920766572e46e646572626172657220546578742e0d0a3c6c693e3c623e42656e75747a65722d49443c2f623e2044657220416e6d656c64656e616d65206465732042656e75747a6572732e20577572646520626569206465722052656769737472696572756e67206665737467656c6567742e0d0a3c6c693e3c623e4265726569742066fc72205061727469656e3f3c2f623e2045696e6520496e666f726d6174696f6e2066fc72206df6676c69636865204765676e65722e204672656920766572e46e646572626172657220546578742e0d0a3c6c693e3c623e537069656c7374e4726b653c2f623e20446965206465727a65697469676520537069656c7374e4726b652064657320537069656c6572732e205769726420766f6d205365727665722067656e6572696572742e0d0a3c6c693e3c623e53656c62737465696e73747566756e673c2f623e2045696e65207a7573e4747a6c6963686520496e666f726d6174696f6e2c2064696520667265692065696e67657374656c6c742077657264656e206b616e6e2e0d0a3c2f756c3e, 'N', '2009-07-04 09:32:54'),
(1346, 4, 0x4963682068616265206469652066616c7363686520537072616368652065696e67657374656c6c7420756e642066696e6465206b65696e65204df6676c6963686b65697420646965732072fc636b67e46e676967207a75206d616368656e2e20576173206b616e6e206963682074756e3f, 'N', '2009-07-05 15:39:22'),
(553, 4, 0x57616e6e206ce4756674206d65696e6520426564656e6b7a6569743f, 'Y', '2003-10-30 02:33:18'),
(554, 4, 0x44696520426564656e6b7a656974206ce4756674203c623e6e75723c2f623e2c2077656e6e2053696520616d205a75672073696e642e0d0a0d0a536965206ce4756674206e696368742c0d0a3c756c3e0d0a3c6c693e77656e6e20496872204765676e657220616d205a7567206973742e3c2f6c693e0d0a3c6c693e77e46872656e64204968726572203c686f6d65206661712e7068703f726561643d74266361743d353623456e74727936313e4e61636874727568653c2f686f6d653e2e3c2f6c693e0d0a3c6c693e77e46872656e64204968726573203c686f6d652061712e7068703f726561643d74266361743d353623456e74727936363e55726c617562733c2f686f6d653e2e3c2f6c693e0d0a3c6c693e616e20576f6368656e656e64656e2c2077656e6e20536965206469657365204f7074696f6e20696e20646572203c686f6d65206661712e7068703f726561643d74266361743d33353723456e74727934343e486572617573666f72646572756e673c2f686f6d653e20676577e4686c7420686162656e2e3c2f6c693e0d0a3c2f756c3e0d0a0d0a4ce475667420696e2065696e656d2062657374696d6d74656e20537069656c2064696520537069656c7a656974206e696368742c20736f207769726420646965732064757263682065696e65732064657220666f6c67656e64656e2053796d626f6c652064617267657374656c6c742e204469652053796d626f6c652077657264656e2072656368747320766f6e2064657220537069656c6572696e666f726d6174696f6e20736f776965206175662064657220537069656c2d496e666f726d6174696f6e73736569746520696e2064656e205a65696c656e20223c693e5568727374617475733c2f693e2220756e6420223c693e527568657a6569743c2f693e2220616e67657a656967743a0d0a3c756c3e0d0a3c6c693e3c696d616765206e696768742e6769663e203a203c686f6d65206661712e7068703f726561643d74266361743d353623456e74727936313e4e61636874727568653c2f686f6d653e0d0a3c6c693e3c696d616765207661636174696f6e2e6769663e203a203c686f6d65206661712e7068703f726561643d74266361743d353623456e74727936363e55726c6175623c2f686f6d653e0d0a3c6c693e3c696d6167652077636c6f636b5f73746f702e6769663e203a203c686f6d65206661712e7068703f726561643d74266361743d353626653d31343323456e7472793134333e576f6368656e656e64653c2f686f6d653e0d0a3c2f756c3e, 'Y', '2013-05-09 22:41:29'),
(511, 4, 0x4d656efc7320756e64204f7074696f6e656e2062656920447261676f6e, 'Y', '2004-02-08 20:03:26'),
(523, 4, 0x53656c6273747665727374e46e646c6963682e2045696e69676520537069656c657220736368e4747a656e20617563682064656e20747261646974696f6e656c6c656e2042656772696666203c6120687265663d22687474703a2f2f73656e736569732e786d702e6e65742f3f4f6e656761697368696d61737522207461726765743d225f626c616e6b223e6f6e656761697368696d6173753c2f613e2e, 'Y', '2007-12-06 15:00:11'),
(525, 4, 0x576f206b616e6e2069636820566f727363686ce467652065696e6272696e67656e3f, 'Y', '2004-02-26 14:33:27'),
(526, 4, 0x536965206bf66e6e656e204968726520566f727363686ce4676520696d203c686f6d6520666f72756d2f6c6973742e7068703f666f72756d3d343e4469736b757373696f6e73666f72756d3c2f686f6d653e2065696e6272696e67656e2e0d0a0d0a5a7573616d6d656e66617373756e67656e206672fc686572657220566f727363686ce467652066696e64656e2053696520fc6265722064696520223c693e5375636866756e6b74696f6e2064657320447261676f6e2d466f72756d733c2f693e222c206265692053656e73656973204269626c696f7468656b2061756620646572205365697465203c6120687265663d22687474703a2f2f73656e736569732e786d702e6e65742f3f444753576973686c69737422207461726765743d225f626c616e6b223e224447532d57756e7363686c69737465223c2f613e20756e6420696e20646572203c6120687265663d22687474703a2f2f647261676f6e676f7365727665722e6376732e736f75726365666f7267652e6e65742f647261676f6e676f7365727665722f447261676f6e476f5365727665722f736372697074732f4368616e67654c6f673f766965773d6d61726b7570223e2243565320c46e646572756e67736c6973746520766f6e20447261676f6e7320536f75726365666f7267652d50726f6a656b747365697465223c2f613e2e0d0a0d0a57656e6e2065696e20566f727363686c616720647572636866fc687262617220756e642073696e6e766f6c6c20657273636865696e742c20756e642077656e6e2064657220566f727363686c6167207665727374e46e646c69636820626573636872696562656e206973742c2064616e6e206b616e6e20657220766f6e2065696e656d2041646d696e6973747261746f72207a757220566f727363686c6167736c6973746520617566204447532068696e7a75676566fc67742077657264656e2c20776f20646965204e75747a657267656d65696e646520fc6265722064656e20566f727363686c61672061627374696d6d742e20556d20646f7274204d6973737665727374e46e646e697373656e20766f727a7562657567656e2c20736f6c6c74656e20566f727363686ce4676520736f2064657461696c6c6965727420776972206df6676c69636820617573676561726265697465742077657264656e2e, 'Y', '2013-03-11 18:28:22'),
(1745, 4, 0x57656c63686520447261676f6e2074616773206b616e6e206963682076657277656e64656e3f, 'Y', '2009-07-05 15:29:55'),
(534, 4, 0x57697220686162656e2065696e65203c686f6d65206c696e6b732e7068703e4c696e6b6c697374653c2f686f6d653e206d697420696e746572657373616e74656e2053656974656e2e, 'Y', '2009-07-04 09:46:34'),
(535, 4, '', 'Y', '2012-07-29 12:52:42'),
(536, 4, 0x456e64737069656c2e20446965206c65747a74652050686173652064657320537069656c65732c20696e20646572206b65696e65207374726174656769736368656e205afc6765207a756d20416e6772656966656e20766f6e204772757070656e2067657365747a742077657264656e2c20736f6e6465726e206e7572206e6f636820736f6c6368652c2064696520646965206578697374696572656e64656e2047656269657465207665726772f6df65726e206f646572207665726b6c65696e65726e2e, 'Y', '2007-12-06 15:22:06'),
(541, 4, 0x4b616e6e2065696e65205061727469652c20696e206465722064696520426564656e6b7a65697420616267656c617566656e206973742c2065726e6575742061756667656e6f6d6d656e2077657264656e3f, 'Y', '2007-12-06 15:22:06'),
(542, 4, 0x4e65696e2e203c693e4269747465207374617274656e205369652069687265205061727469656e206d6974206175737265696368656e64656e203c686f6d65206661712e7068703f726561643d74266361743d35363e5a6569746c696d6974733c2f686f6d653e2e3c2f693e, 'Y', '2009-07-05 14:52:36'),
(1003, 6, 0x566173636f, 'Y', '2015-06-21 03:10:37'),
(694, 10, 0xcab2e7dbcac7b9dbbfb4d6d0c6e5bed6a3bf, 'Y', '2007-05-30 11:27:37'),
(695, 10, 0xb4cbb9a6c4dcbfc9d2d4ceaa3c623ec6e4cbfc3c2f623ec6e5cad6b5c4b6d4bed6bcd3c9cfcae9c7a9a1a30d0a0d0ad2aab0d1b6d4bed6bcd3c8ebb9dbbfb4d6d0c6e5bed6a3accfc8d5d2b5bdbdf8d0d0d6d0b5c4c6e5bed6a3acb5e3d1a122bcd3c8ebb9dbbfb422a1a3d2aabfb4c4fab5c4b9dbbfb4d6d0c6e5bed6a3acb5e3d1a1203c6120687265663d222f7374617475732e706870223ec4bfc7b0b6d4bed63c2f613e20c8bbbaf3b5e3d1a122b9dbbfb4d6d0c6e5bed622a1a30d0a0d0ad2aad2c6b3fdb9dbbfb4d6d0c6e5bed6a3acd5d2b5bdcfebd2c6b3fdb5c4c6e5bed6a3acb5e3d1a122b4d3b9dbbfb4d2c6b3fd22a1a30d0a0d0ac4fad6bbc4dcb9dbbfb4bdf8d0d0d6d0b5c4c6e5bed6a3acb5b1b6d4bed6bde1caf8a3acbecdd7d4b6afb4d3b9dbbfb4c1d0b1edd2c6b3fda1a3b5b1b9dbbfb4d6d0b5c4c6e5bed6bde1caf8cab1a3acc1fad6aeb39ebbe1b7a2d1b6cfa2b8f8c4faa3acb8e6d6aac4fab6d4bed6b5c4bde1b9fba1a3, 'N', '2007-05-30 11:27:37'),
(686, 14, '', 'N', '2006-11-14 11:49:44'),
(687, 14, 0x53656c6c61696e656e2073696972746f2c206a6f6b61206569206f6c65207061696b616c6c696e656e207661737461757320766173746170656c61616a616e206564656c6c697365656e2073696972746f6f6e2e, 'N', '2003-06-12 12:15:58'),
(688, 14, 0x4d696be4206f6e207475706c6170656c693f, 'Y', '2003-06-12 12:15:58'),
(689, 14, 0x5475706c6170656c6920616c6f6974746161203c623e6b616b73693c2f623e2075757474612070656c69e42073616d616e2070656c61616a616e206b616e7373612e2053696ee42070656c6161742076616c6b6f6973696c6c6120746f6973657373612c206d757374696c6c6120746f6973657373612e204b756d6d617373616b61616e2070656c697373e4206569206f6c65207461736f6974757374612e, 'N', '2003-06-12 12:15:58'),
(690, 14, '', 'N', '2006-11-14 11:49:44'),
(691, 14, 0x4879f66b6be4797373696972746f2c2075686b612c2073696972746f2c206a6f6b61207661617469692076e46c6974f66e74e4207661737461757374612e204c756f20616c6f697465747461206a6120616e746161206f696b657564656e2076616c6974612c206d6968696e2070656c6174612073657572616176616b73692e2053656e7465206f6e203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f6661712e7068703f726561643d74266361743d3323456e747279313133223e676f74656e3c2f613e2076617374616b6f6874612e2050656c61616a612c206a6f6c6c61206f6e2073656e746520766f692070656c617461206d79f673203c6120687265663d222f6661712e7068703f726561643d74266361743d3323456e747279313130223e74656e756b696e3c2f613e2c206a6f732073652074756e74757520706172656d6d616c74612076616968746f6568646f6c74612e204b69726a61696d656c6c6973657374692073656e7465207461726b6f69747461612022656e73696d6de4697374e420746169206a6f6874617661612073696972746f61222e, 'N', '2003-06-12 12:15:58'),
(696, 10, 0xb5a5b9d9, 'Y', '2007-05-30 11:27:37'),
(697, 10, 0x44616d65a3bac6e5c5ccc9cfb5c4d6d0c1a2bdbbb2e6b5e3a1a3d5e2d0a922b9abc4bf22b2bbcaf4d3dacbabb7bdc6e5cad6a1a3, 'Y', '2007-05-30 11:27:37'),
(696, 5, '', 'Y', '2011-10-26 12:06:49'),
(697, 5, 0x556e6520696e74657273656374696f6e206e657574726520647520676f62616e2e20456c6c65206e6520706f757272612070617320ea747265207472616e73666f726de96520656e207465727269746f6972652e2047726f7570e96573206f752069736f6ce965732c20656c6c657320666f726d656e7420646573207a6f6e657320717569206e6520646f6e6e65726f6e742070617320646520706f696e747320e020617563756e20646573206a6f75657572732e, 'Y', '2003-06-16 12:35:21'),
(698, 5, 0x4c6962657274e9, 'Y', '2003-06-17 02:07:17'),
(699, 5, 0x556e6520696e74657273656374696f6e207669646520746f756368616e7420756e6520706965727265206f7520756e2067726f75706520646520706965727265732e, 'Y', '2003-06-17 02:07:17'),
(530, 9, 0x4578706c69717565206120737561207175657374e36f206e6f20666f72756d206461732046415173206f75206e6f20646520476f2e20c920626f6d20717565206d656e63696f6e652074616e746f206120726567726120736f6272652061207175616c2071756572206d61697320696e666f726d61e7e36f2c2065206120717565207369747561e7e36f20646f206a6f676f20656c612073652061706c6963612e, 'Y', '2003-06-17 03:28:07'),
(552, 9, 0x4171756920657374266161637574653b20756d61206272657665206578706c6963612663636564696c3b266174696c64653b6f20646f732063696e636f206974656d73206e6120746162656c61206e6f20746f706f206461203c6120687265663d222f7374617475732e706870223e70266161637574653b67696e61206465205374617475733c2f613e2e0d0a3c756c3e0d0a3c6c693e3c623e4e6f6d653c2f3e204f206e6f6d65207265616c20646f20757375266161637574653b72696f2c206f752073696d696c61722e20546578746f206c697672656d656e746520616c746572266161637574653b76656c3c2f6c693e0d0a3c6c693e3c623e7573657269643c2f623e2041206964656e7469666963612663636564696c3b266174696c64653b6f206372696164612070656c6f20757375266161637574653b72696f2e204e266174696c64653b6f20616c746572266161637574653b76656c3c2f6c693e0d0a3c6c693e446973706f6eed76656c3f3c2f623e20496e666f726d612663636564696c3b266174696c64653b6f2070617261206576656e747561697320616476657273266161637574653b72696f732e20546578746f206c697672656d656e746520616c7465722661616375746576656c2e3c2f6c693e0d0a3c6c693e3c623e436c61737369666963612663636564696c3b266174696c64653b6f3c2f623e204120636c61737369666963612663636564696c3b266174696c64653b6f20617475616c20646f2044726167266174696c64653b6f2070617261206f2075746c697a61646f722e20476572616461206175746f6d61746963616d656e74652070656c6f207365727669646f723c2f6c693e0d0a3c6c693e3c623e43617465676f7269613c2f623e20496e666f726d612663636564696c3b266174696c64653b6f2061646963696f6e616c2c20706f72206578656d706c6f2c20636c61737369666963612663636564696c3b266174696c64653b6f20646520756d20636c7562652e20546578746f206c697672656d656e746520616c746572266161637574653b76656c2e3c2f6c693e0d0a3c2f756c3e, 'N', '2006-08-05 19:57:32'),
(556, 9, 0x48e1206d7569746f732070726f6772616d617320717565206f2064656978616d20766572206520616c746572617220666963686569726f73205347462e20556d6120626f61206f70e7e36f20e9206f203c6120687265663d22687474703a2f2f7777772e72656e652d2067726f74686d616e6e2e64652f6a61676f2f223e4a61676f3c2f613e2c20756d20636c69656e746520646520476f20656d204a6176612e0d0a0d0a41204173736f636961e7e36f2042726974e26e69636120646520476f2074656d20756d61206c6f6e6761203c6120687265663d22687474703a2f2f207777772e62726974676f2e6f72672f676f70637265732f676f7063726573312e68746d6c23732d76696577223e6c6973746120646520736f6674776172653c2f613e20706172612076697375616c697a61e7e36f20646520666963686569726f73205347462e0d0a0d0a5175616e646f20746976657220756d2070726f6772616d6120706172612076657220666963686569726f73205347462c20706f646520636f6e66696775726172206f207365752062726f777365722070617261206c69676172206f20226d696d652d747970652220276170706c69636174696f6e2f782d676f2d7367662720616f2070726f6772616d612c206465206d616e6569726120717565206573746520706f737361207365722065786563757461646f20636f6d20756d2073696d706c657320636c6971756520646f207261746f2e, 'N', '2003-06-17 03:28:07'),
(558, 9, 0x48e120616c67756d6173206d616e656972617320646520636f6d65e7617220756d206a6f676f206e6f76653a0d0a0d0a3c756c3e0d0a3c6c693e436f6e76696465206f73207365757320616d69676f732e3c62723e53652073616265206f2075736572696420646f20616476657273e172696f2c20706f646520656e766961722d6c686520756d20636f6e766974652073656775696e646f206c696e65203c6120687265663d222f206d6573736167652e7068703f6d6f64653d496e76697465223e636f6e76696461723c2f613e206e6f206d656e7520646173206f70e7f565732e20507265656e636861206173206f70e7f5657320646573656a61646173206520656e766965206f20636f6e766974652e204f20616476657273e172696f20706f6465206469737075746172206173206f70e7f5657320736520617373696d206f20646573656a61722e2048e12061696e646120756d2022636f6e76696461722065737465207574696c697a61646f7222206e6f2066756e646f2064612070e167696e612064652063616461207574696c697a61646f722e205365677569722065737465206c696e6b2066617a2061206d65736d6120636f6973612c206d617320e9206d6169732072e17069646f2e3c2f6c693e0d0a0d0a3c6c693e4164697261206120756d206a6f676f206e612053616c61206465204573706572612e3c62723e5573652065737465206de9746f646f20736520657374e120e02070726f6375726120646520756d206e6f766f20616476657273e172696f2e205072696d6569726f2c20636c69717565206e6f206c696e6b203c6120687265663d222f77616974696e675f726f6f6d2e706870223e2253616c6120646520657370657261223c2f613e20646f206d656e7520646173206f70e7f565732e20456e636f6e74726520756d206a6f676f2061207175652071756569726120616465726972206520736567756964616d656e746520636c69717565206e6f20626f74e36f2022496e666f2220e0206573717565726461206465737365206a6f676f2e204e6f2066756e646f2064612070e167696e61206465766520617061726563657220756d6120646573637269e7e36f20646574616c68616461206465737365206a6f676f2e2053652070726574656e6465206164657269722c20636c69717565206e6f20626f74e36f202241646572697220616f206a6f676f222e3c2f6c693e0d0a0d0a3c6c693e436f6c6f717565206f20736575207072f37072696f206a6f676f206e612053616c61206465206573706572612e3c62723e5365206e656e68756d20646f73206a6f676f73206e61203c6120687265663d222f77616974696e675f726f6f6d2e706870223e53616c61206465206573706572613c2f613e2074656d206173206f70e7f56573207175652070726f637572612c20706f646520636f6c6f63617220756d206a6f676f20636f6d206173206f70e7f5657320717565206d61697320676f7374612e20506172612066617a6572206973746f2073696d706c65736d656e746520707265656e636861206f20666f726d756ce172696f206e6f2066756e646f2064612070e167696e612064612053616c61206465206573706572612e20436c69717565206f20626f74e36f202241646963696f6e6172206a6f676f2220652061677561726465206174e92071756520616c6775e96d206573636f6c6861206f20736575206a6f676f2e2050726f766176656c6d656e7465206573746172e12061206a6f6761722064656e74726f20646520706f75636f7320646961732e3c2f6c693e0d0a3c2f756c3e, 'N', '2003-06-17 03:28:07'),
(560, 9, 0x4e612070e167696e61206461205369747561e7e36f2061637475616c20657374e120756d61206c6973746120646f73206a6f676f7320656d2071756520e92061207375612076657a206465206a6f6761722e20556d20636c69717565206e6f206efa6d65726f20646f206a6f676f20666172e12065737365206a6f676f2061706172656365722e0d0a0d0a4ce12c20756d6120706564726120e9206a6f676f646120286520756d61206a6f67616461206566656374756164612920636c6963616e646f206e756d20706f6e746f2076617a696f2e2053652065737461206a6f6761646120636170747572612070656472617320646f20616476657273e172696f2c2065737461732073e36f206175746f6d61746963616d656e74652072656d6f76696461732070656c6f207365727669646f722e205061726120706173736172206f752064657369737469722c2073696761206f73206c696e6b73206e6f2066756e646f2064612070e167696e612e0d0a0d0a4e612070e167696e612073656775696e74652c207072696d61206f20626f74e36f2071756520636f6e6669726d61206120737561206573636f6c68612e, 'Y', '2003-06-17 03:28:07'),
(562, 9, 0x4174e920e020646563696d61206a6f6761646120657374e120646973706f6eed76656c20756d206c696e6b2070617261202261706167617222206f206a6f676f2e0d0a416f2061706167617220756d206a6f676f206ee36f2068e120616c74657261e7e36f206e6120636c6173736966696361e7e36f2e0d0a0d0a4465706f69732064612064e963696d61206a6f676164612c206e656e68756d206a6f676f20706f646520736572206170616761646f2e, 'N', '2003-06-17 03:28:07'),
(564, 9, 0x4973746f2073f320706f64652073657220666569746f207175616e646f20666f722061203c623e7375613c2f623e206a6f676164612e0d0a0d0a3c756c3e0d0a3c6c693e446f69732070617373657320636f6e736563757469766f732c20756d20706f722063616461206a6f6761646f722e204573746120e9206120666f726d61206e6f726d616c2064652061636162617220756d206a6f676f2e20536567756964616d656e746520736572e12070656469646f206120616d626f7320717565206d61727175656d20617320706564726173206d6f727461732e204465706f697320646973746f206f207365727669646f72206972e12063616c63756c6172206120706f6e747561e7e36f20652064656369646972206f2076656e6365646f722e3c2f6c693e0d0a0d0a3c6c693e557365206f20626f74e36f20226465736973746972222e2053652064657369737469722c206f206a6f676f20e920636f6e736964657261646f20706172612065666569746f7320646520636c6173736966696361e7e36f2e3c2f6c693e0d0a0d0a3c6c693e4465697865206f206a6f676f207465726d696e617220706f722074656d706f2e203c693e284d617320706f72206661766f7221204573636f6c686120756d6120646173206f7574726173206f70e7f5657321293c2f693e2e20536520756d206a6f676f207465726d696e6120706f722074656d706f206120636c6173736966696361e7e36f20e92061637475616c697a6164612e3c2f6c693e0d0a3c2f756c3e, 'N', '2003-06-17 03:28:07'),
(698, 10, 0xc6f8, 'Y', '2007-05-30 11:27:37'),
(699, 10, 0x4c696265727479a3bad3ebd2bbbfc5d7d3bbf2d2bbb4aed7d3c1acbdd3b5c4bfd5b5e3a1a3, 'Y', '2007-05-30 11:27:37'),
(607, 2, 0x4b616e206a656720686a656c70652074696c206d656420766964657265757476696b6c696e6720617620447261676f6e3f, 'Y', '2003-06-25 17:45:08'),
(622, 2, 0x447261676f6e207475726e6572696e676572, 'Y', '2003-06-25 17:45:08'),
(623, 2, 0x4b616e206a6567207370696c6c65207475726e6572696e6765722070e520447261676f6e3f, 'N', '2003-06-25 17:45:08'),
(639, 2, 0x4876656d206c6167657420447261676f6e3f, 'Y', '2003-06-25 17:45:08'),
(643, 2, 0x4b616e206a6567206272756b65722048544d4c2070e520447261676f6e3f, 'N', '2003-06-25 17:45:08'),
(503, 11, 0x446976657273656e, 'Y', '2016-07-29 15:15:20'),
(551, 11, 0x576174207a696a6e2064652064696e67656e206f702064652073746174757320706167696e613f, 'Y', '2016-07-30 10:56:48'),
(555, 11, 0x486f65206b616e20696b205347462062657374616e64656e2062656b696a6b656e3f, 'Y', '2016-07-30 10:56:48'),
(557, 11, 0x486f6520737461727420696b2065656e206e69657577652070617274696a3f, 'Y', '2003-07-03 00:19:13'),
(559, 11, 0x486f6520646f6520696b207a657474656e20696e206d696a6e2070617274696a3f, 'Y', '2004-02-07 20:48:07'),
(561, 11, 0x486f652076657277696a64657220696b2065656e206c6f70656e64652070617274696a3f, 'Y', '2003-07-03 00:19:13'),
(562, 11, 0x546f742061616e20646520313065207a6574207a616c2065722065656e2076657277696a646572206c696e6b206f6e6465722068657420626f726420766572736368696a6e656e2e20416c7320752065656e2070617274696a2076657277696a646572742c20686565667420646974206765656e206765766f6c67656e20766f6f722075772072616e672e0d0a0d0a4e6120646520313065207a6574206b616e20646174206e696574206d6565722e, 'N', '2004-02-07 20:48:07'),
(563, 11, 0x486f65206265eb696e64696720696b2065656e207370656c3f, 'Y', '2004-02-07 20:48:07'),
(570, 11, 0x447261676f6e203c623e74696a643c2f623e206d6f67656c696a6b686564656e, 'Y', '2004-02-07 20:48:07'),
(577, 11, 0x486f65207765726b7420686574204a6170616e73652062796f2d796f6d692074696a64207379737465656d3f, 'Y', '2003-07-03 00:19:13'),
(692, 14, '', 'N', '2006-11-14 11:49:44'),
(693, 14, 0x50756f6c7573746175747576612073696972746f2c20766173746175732075686b61756b7365656e2e20476f74652d73696972726f6c6c61206d656e657474e4e420616c6f69747465656e2c206a6f6c6c6f696e20766173746170656c61616a6120766f692076616c6974612c206d696e6e652070656c61612073657572616176616b73692e20476f7465206f6e203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f6661712e7068703f726561643d74266361743d3323456e747279313132223e73656e74656e3c2f613e2076617374616b6f6874612e204b69726a61696d656c6c697365737469207365207461726b6f69747461612022616c656d706161206be47474e4222e, 'N', '2003-07-03 16:43:13'),
(694, 14, 0x4d6974e4206f766174207461726b6b61696c6c75742070656c69743f, 'Y', '2003-07-03 16:43:13'),
(695, 14, 0x54e46de46e206f6d696e616973757564656e206176756c6c6120766f69742074656864e4206c697374616e20746f697374656e2070656c61616a69656e2070656c65697374e42c206a6f6974612068616c75617420736575726174612e204c6973e474e46b736573692070656c696e206c697374616c6c652c20657473692068616c75616d617369206d656e65696c6ce4e46e206f6c6576612070656c69206a612076616c6974736520224c6973e4e4207461726b6b61696c74617669656e206c697374616c6c65222e0d0a0d0a5461726b6b61696c656d6173692070656c6974206ee46574203c6120687265663d222f7374617475732e706870223e74696c616e6e65736976756c74613c2f613e206c696e6b696e20224ee47974e4207461726b6b61696c6c75742070656c6974222e0d0a0d0a4b756e207461726b6b61696c74752070656c692070e4e4747479792c20447261676f6e206ce468657474e4e42073696e756c6c65207669657374696e2c206a6f6b61206b6572746f6f2070656c696e206c6f70707574756c6f6b73656e2e, 'N', '2003-07-03 16:43:13'),
(696, 14, '', 'Y', '2006-11-14 11:49:44'),
(697, 14, 0x4c617564616e206e6575747261616c6974207269737465796b7365742e2054e46de4202265692d6b656e656e6be4e46e2d6d61612220656920616e6e612070697374656974e42070656c696e206c6f707574747561206b756d6d616c6c656b61616e2070656c61616a616c6c652e, 'Y', '2003-07-03 16:51:13'),
(698, 14, 0x566170617573, 'Y', '2003-07-03 16:51:13'),
(699, 14, 0x5479686ae420726973746579732c206a6f6b61206f6e206b6976656e20746169206b6976696a6f6e6f6e2076696572657373e42e, 'Y', '2003-07-03 16:51:13'),
(700, 14, '', 'N', '2006-11-14 11:49:44'),
(701, 14, 0x56696e6f2073696972746f2076617374757374616a616e206b6976656e20746169206b6976696a6f6e6f6e2070e4e464797373e42e, 'N', '2003-07-03 16:51:13'),
(702, 14, '', 'N', '2006-11-14 11:49:44'),
(703, 14, 0x5665726b6b6f6d61696e656e2076616e67697473656d697373696972746f2e, 'N', '2003-07-03 16:51:13'),
(704, 14, '', 'N', '2006-11-14 11:49:44'),
(705, 14, 0x596c65696e656e2061766175732c206a6f7373612070656c61616a61206f6e2070656c616e6e7574206c616964616e206b6f6c6d65656e2074e46874697069737465657365656e2e, 'N', '2003-07-03 16:51:13'),
(706, 14, '', 'N', '2006-11-14 11:49:44'),
(707, 14, 0x4b6174736f203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f6661712e7068703f726561643d74266361743d313223456e7472793535223e706f72746161743c2f613e2e, 'N', '2003-07-03 16:51:13');
INSERT INTO `Translations` (`Original_ID`, `Language_ID`, `Text`, `Translated`, `Updated`) VALUES
(708, 14, 0x5661696b75747461616b6f206c617564616e206b6f6b6f2070656c69656e206c756f6b6974756b7369696e3f, 'Y', '2003-07-03 16:51:13'),
(709, 14, 0x31397831392d6c617564616c6c612070656c617474756a656e2070656c69656e207661696b75747573206c756f6b6974756b7365656e206f6e2073757572696e2e204b616b73692031337831332d6c617564616c6c612070656c61747475612070656c69e4207661696b75747461612073757572696e20706969727465696e20796874e42070616c6a6f6e206b75696e20796b73692031397831392d6c617564616c6c612070656c617474752070656c69206a61206b616b7369203978392d6c617564616c6c612070656c61747475612070656c692073616d616e2076657272616e206b75696e20796b73692031337831332d6c617564616c6c612070656c617474752070656c692e, 'N', '2003-07-03 16:51:13'),
(710, 14, 0x4d697373e420766f696e206f707069612070656c61616d61616e20476f74613f, 'Y', '2003-07-03 16:51:13'),
(711, 14, 0x4b6174736f20203c6120687265663d22687474703a2f2f706c6179676f2e746f2f696e7465726163746976652f696e6465782e68746d6c22207461726765743d6e65773e54686520496e7465726163746976652057617920546f20476f3c2f613e206a612042726974616e6e69616e20476f2d6c6969746f6e203c6120687265663d22687474703a2f2f7777772e62726974676f2e6f72672f696e74726f2f696e74726f2e68746d6c22207461726765743d6e65773e496e74726f64756374696f6e20746f207468652067616d65206f6620476f3c2f613e2e, 'Y', '2003-07-03 16:51:13'),
(673, 6, 0xbf447261676f6e206d65206e6f74696669636172e1206375616e646f20736561206d69207475726e6f3f, 'Y', '2003-07-04 00:46:27'),
(674, 6, 0x53ed2c2073692068617320686162696c697461646f206c61206e6f7469666963616369f36e20706f7220636f7272656f20656c65637472f36e69636f20656e2074752070657266696c206465207573756172696f2e, 'Y', '2003-07-04 00:46:27'),
(700, 5, '', 'N', '2011-10-26 12:06:49'),
(701, 5, 0x556e20636f757020656e20646961676f6e616c6520636f6e746f75726e616e7420756e65207069657272652061647665727365206f75206c6520626f7574206427756e6520636861ee6e652064652073657320706965727265732e, 'N', '2004-08-16 20:46:23'),
(702, 5, '', 'N', '2011-10-26 12:06:49'),
(703, 5, 0x556e20636f757020717569207072656e642064657320706965727265732061647665727365732064616e7320756e6520736f727465206465206e617373652e, 'N', '2003-07-06 14:28:02'),
(704, 5, '', 'N', '2011-10-26 12:06:49'),
(705, 5, 0x556e65206f757665727475726520636c61737369717565206ff9206c65206a6f756575722061206f63637570e9206c65732074726f6973203c4120485245463d222f6661712e7068703f726561643d7426616d703b6361743d3323456e7472793839223e686f7368693c2f413e206427756e20626f72642e, 'N', '2005-09-20 18:05:29'),
(706, 5, '', 'N', '2003-10-13 17:07:36'),
(707, 5, 0x4c652073686963686f20286c616464657220656e20616e676c6169732c20657363616c69657220656e206672616ee7616973292065737420756e652073756363657373696f6e20646520636f75707320666f7263e97320717569206de86e656e7420e020756e6520636170747572652e0d0a436f6e73756c74657a206c612064697363757373696f6e203c6120687265663d222f666f72756d2f726561642e7068703f663d3326616d703b693d31393626616d703b743d313936223e4c61646465723c2f613e2064616e73206c6520666f72756d20ab266e6273703b464151266e6273703b64697363757373696f6e73266e6273703bbb2e, 'N', '2006-10-25 04:54:15'),
(708, 5, 0x4573742d636520717565206c61207461696c6c6520647520706c617465617520696e666c75656e6365206c6573206e697665617578266e6273703b3f, 'Y', '2003-07-06 14:28:02'),
(709, 5, 0x4c6573207061727469657320313978313920696e666c75656e63656e7420706c7573206c6573206e69766561757820646573206a6f75657572732e20456e73756974652c20717561747265207061727469657320397839206f6e7420e020706575207072e873206c61206dea6d6520696e666c75656e6365207175652064657578207061727469657320313378313320657420717527756e65207061727469652031397831392e, 'N', '2005-01-24 11:37:26'),
(710, 5, 0x4ff920707569732d6a652061707072656e64726520e0206a6f75657220617520476f266e6273703b3f, 'Y', '2003-07-06 14:28:02'),
(711, 5, 0x536920766f7573206c6973657a206c27616e676c6169732c20766f757320706f7576657a20616c6c657220766f6972203c6120687265663d22687474703a2f2f706c6179676f2e746f2f696e7465726163746976652f696e6465782e68746d6c22207461726765743d6e65773e54686520496e7465726163746976652057617920546f20476f3c2f613e20657420ab266e6273703b546865204272697469736820476f204173736f63696174696f6e266e6273703bbb207175692070726f706f7365203c6120687265663d22687474703a2f2f7777772e62726974676f2e6f72672f696e74726f2f696e74726f2e68746d6c22207461726765743d6e65773e496e74726f64756374696f6e20746f207468652067616d65206f6620476f3c2f613e2e0d0a0d0a456e206672616ee76169732c20766f757320706f7576657a2076697369746572206c65203c6120687265663d22687474703a2f2f6b67732e6b69736569646f2e636f6d2f66725f46522f7475746f7269616c2f22207461726765743d6e65773e446964616374696369656c206475204b69736569646f20476f205365727665723c2f613e206f75203c6120687265663d22687474703a2f2f676f626173652e6f72672f7374756479696e672f72756c65732f3f69643d3026616d703b6c6e3d667222207461726765743d6e65773e4c65732072e8676c6573206475206a657520646520476f3c2f613e2e, 'Y', '2005-09-20 18:05:29'),
(712, 5, 0x436f6d6d656e7420666f6e6374696f6e6e65206c652073797374e86d65206465206e69766561757820646520447261676f6e266e6273703b3f, 'Y', '2010-05-24 14:37:28'),
(713, 5, 0x506f7572207365732063616c63756c73206475206e697665617520646573206a6f75657572732c20447261676f6e207574696c697365206c652073797374c3a86d6520454746202846e964e9726174696f6e204575726f70e9656e6e6520646520476f2920646f6e7420766f757320706f7576657a2074726f75766572206c65732064c3a97461696c732064616e73206c657320706167657320266c743b6120687265663d2671756f743b687474703a2f2f67656d6d612e756a662e6361732e637a2f7e636965706c792f474f2f676f722e68746d6c2671756f743b2667743b45474620476f20526174696e67205061676573266c743b2f612667743b20657420266c743b6120687265663d2671756f743b687474703a2f2f7777772e6575726f7065616e2d676f2e6f72672f726174696e672f676f722e68746d6c2671756f743b2667743b454746204f6666696369616c20726174696e6773266c743b2f612667743b2e0d0a0d0a4c657320616a757374656d656e7473206465206e69766561757820736f6e742063616c63756cc3a97320c320206c612066696e206426233033393b756e652070617274696520c32020706172746972206475206e6f6d62726520646520706965727265732064652068616e64696361702c206475206b6f6d692c2064752072c3a973756c746174206465206c6120706172746965206574206475206e69766561757820646573206164766572736169726573206175206d6f6d656e74206465206c612066696e206465207061727469652e20506173206426233033393b6175747265732066616374657572732c20636f6d6d65206c65206e6976656175206426233033393b617574726573206a6f7565757273206f75206c652072c3a973756c746174206426233033393b61757472657320706172746965732c206e26233033393b616666656374652063652063616c63756c2e0d0a0d0a4c6573206e69766561757820646573206a6f7565757273206574206c657320617272616e67656d656e74732064652064c3a96275742064652070617274696520736f6e7420737570706f73c3a97320696e64697175657220717569206465767261697420266c743b622667743b73746174697374697175656d656e74266c743b2f622667743b206761676e65722064616e7320756e652070617274696520c32020c3a967616c6974c3a92e20506172206578656d706c652c2064657578206a6f7565757273206465206dc3aa6d65206e6976656175206f6e7420617574616e74206465206368616e6365206465206761676e65722e204d6169732c20756e206a6f7565757220706c757320666169626c65206e6520646576726169742070726f6261626c656d656e74206761676e65722071756520706575206465207061727469657320c32020c3a967616c6974c3a920636f6e74726520756e206a6f7565757220706c757320666f72742e2050617220636f6e7472652c206176656320756e2068616e646963617020657420756e206b6f6d6920636f72726563742c20696c206465767261697420c320206e6f757665617520656e206761676e657220756e652073757220646575782e0d0a0d0a4c652073797374c3a86d65206465206e69766561757820646520447261676f6e20636f6d70617265206c652072c3a973756c746174206465732070617274696573206a6f75c3a965732061766563206c6575722072c3a973756c7461742070726f6261626c652e2053692c20656e2066696e206465207061727469652c206c6573206e69766561757820646573206a6f7565757273206574206c652068616e6469636170206c61697373656e74207072c3a9766f697220756e2072c3a973756c74617420c3a971756976616c656e7420c3202063656c7569206465206c61207061727469652c20656c6c65206e26233033393b617572612071756520706575206426233033393b656666657420737572206c6573206e69766561757820646573206a6f75657572732e20416c6f72732071756520736920656c6c6520657374206761676ec3a965202671756f743b636f6e74726520746f757465732070726f626162696c6974c3a9732671756f743b2c20656c6c6520696e666c75656e636572612062656175636f7570206c65757273206e6976656175782e, 'N', '2008-04-04 02:16:58'),
(1016, 5, 0x5175656c6c657320736f6e74206c65732072e8676c6573207574696c6973e965732070617220447261676f6e266e6273703b3f, 'Y', '2004-08-11 15:16:01'),
(715, 14, 0x536976756e2070e46976e47973, 'Y', '2003-07-16 11:03:43'),
(581, 40, 0x436f6d6f2066756e63696f6e61206f2073697374656d612064652074656d706f20466973636865723f, 'Y', '2014-04-13 18:43:57'),
(722, 14, 0x4b616e73696f, 'Y', '2003-07-16 11:03:43'),
(732, 14, 0x4c6f6d6170e4697669e4206ae46c6a656c6ce4, 'Y', '2003-07-16 11:03:43'),
(733, 14, 0x4c6f6d616c6c61, 'Y', '2003-07-16 11:03:43'),
(747, 14, 0x4b61696b6b6920736172616b6b656574, 'Y', '2003-07-16 11:03:43'),
(724, 14, 0x506f69737461206d65726b697479742076696573746974, 'Y', '2003-07-16 11:09:40'),
(726, 14, 0x4d756f6b6b6161206b616e73696f697461, 'Y', '2003-07-16 11:09:40'),
(727, 14, 0x50656c696b757473756e2061736574756b736961206f6e2025736d757574657474752573, 'Y', '2003-07-16 11:09:40'),
(740, 14, 0x4b61696b6b692073616170756e656574, 'Y', '2003-07-16 11:09:40'),
(741, 14, 0x50e4e46b616e73696f, 'Y', '2003-07-16 11:09:40'),
(742, 14, 0x526f736b616b6f7269, 'Y', '2003-07-16 11:09:40'),
(743, 14, 0x4ce468657465747974, 'Y', '2003-07-16 11:09:40'),
(744, 14, 0x5369697272e4206b616e73696f6f6e20766173746174746165737361, 'Y', '2003-07-16 11:09:40'),
(745, 14, 0x5369697272e4206b616e73696f6f6e, 'Y', '2003-07-16 11:09:40'),
(746, 14, 0x4b616e73696f6e206e696d69, 'Y', '2003-07-16 11:09:40'),
(731, 14, 0x4d756f6b6b6161206b616e73696f697461, 'Y', '2003-07-16 11:09:40'),
(736, 14, 0x566f6974746f6a61, 'Y', '2003-07-16 11:09:40'),
(737, 14, 0x54617070696f697461, 'Y', '2003-07-16 11:09:40'),
(738, 14, 0x4d75757461206c6f6d616e207069747575747461, 'Y', '2003-07-16 11:09:40'),
(739, 14, 0x416c6f697461206c6f6d61, 'Y', '2003-07-16 11:09:40'),
(730, 14, 0x4d756f6b6b6161206c6f6d6161, 'Y', '2003-07-16 11:09:40'),
(714, 14, 0x416e7465656b73692c206d75747461206de4e4726974656c7479e4206b616e73696f7461206569206cf67964792e, 'Y', '2003-07-16 11:09:40'),
(712, 14, 0x4b75696e6b6120447261676f6e696e206c756f6b6974756b73657420746f696d697661743f, 'N', '2003-07-16 11:09:40'),
(713, 14, 0x50656c61616a69656e206c756f6b6974756b736574206a612070656c696e2061736574756b736574206b6572746f7661742c206b756b612070656c696e203c623e746f64656e6ee46bf66973657374693c2f623e20766f69747461612e20546173617665726f6973696c6c612070656c61616a696c6c61206f6e206573696d65726b696b736920796874e46ce4696e656e206d6168646f6c6c697375757320766f69747461612e203230206b79756e2070656c61616a612073656e2073696a61616e20766f6974746161207461736f6974756b736574746f6d69612070656c656ae420766f696d616b6b61616d7069612076617374757374616a6961207661737461616e207661696e20686172766f696e2e0d0a0d0a447261676f6e696e20616c676f7269746d69207665727461696c65652070656c696e2074756c6f7374612073656e206f646f7465747475756e2074756c6f6b7365656e2e204a6f732070656c61616a69656e206c756f6b6974756b736574206a612070656c696e2061736574756b73657420766969747461617661742073616d616e6c61697365656e2074756c6f6b7365656e206b75696e206d6968696e2070656c692070e4e4747479692c2070656c696c6ce4206f6e207661696e207069656e69207661696b75747573206c756f6b6974756b7369696e2e204a6f732070656c61616a612073656e2073696a61616e20766f69747461612070656c696e20746f64656e6ee46bf6697379796b7369e42075686d6174656e2c2070656c69207661696b75747461612070656c61616a69656e206c756f6b6974756b7369696e20656e656d6de46e2e, 'N', '2003-07-16 11:09:40'),
(715, 5, 0x50616765206475, 'Y', '2003-07-16 12:10:59'),
(5782, 40, 0x4f70657261e7e36f2064652073616c7661722074657665207375636573736f21, 'Y', '2014-04-13 17:46:25'),
(719, 5, 0x2573206761676e6520646520252e3166, 'Y', '2003-07-16 12:10:59'),
(722, 5, 0x446f7373696572, 'Y', '2003-07-16 12:10:59'),
(747, 5, 0x546f75746573206c657320636f6c6f6e6e6573, 'Y', '2003-07-16 12:10:59'),
(724, 5, 0x45666661636572206c6573206d657373616765732073e96c656374696f6e6ee973, 'Y', '2013-04-23 14:34:05'),
(726, 5, 0x4d6f646966696572206c657320646f737369657273, 'Y', '2003-07-16 12:10:59'),
(727, 5, 0x4c65732072e9676c6167657320646520636574746520696e7669746174696f6e20736f6e74202573646973637574e9732573, 'Y', '2013-03-11 14:48:43'),
(740, 5, 0x546f7573206c6573207265e77573, 'Y', '2003-07-16 12:10:59'),
(741, 5, 0x4c7573, 'Y', '2003-07-16 12:10:59'),
(742, 5, 0x506f7562656c6c65, 'Y', '2003-07-16 12:10:59'),
(743, 5, 0x456e766f79e973, 'Y', '2003-07-16 12:10:59'),
(744, 5, 0x44e9706c616365722076657273206c6520646f737369657220617072e8732072e9706f6e7365, 'Y', '2003-07-16 12:10:59'),
(745, 5, 0x44e9706c616365722076657273206c6520646f7373696572, 'Y', '2003-07-16 12:10:59'),
(746, 5, 0x4e6f6d20647520646f7373696572, 'Y', '2003-07-16 12:10:59'),
(736, 5, 0x50617274696573206761676ee96573, 'Y', '2003-07-16 12:10:59'),
(737, 5, 0x506172746965732070657264756573, 'Y', '2003-07-16 12:10:59'),
(738, 5, 0x4d6f646966696572206c6120647572e9652064657320766163616e636573, 'Y', '2003-07-16 12:10:59'),
(739, 5, 0x50617274697220656e20766163616e636573, 'Y', '2003-07-16 12:10:59'),
(730, 5, 0x4d6f646966696572206c657320766163616e636573, 'Y', '2003-07-16 12:10:59'),
(714, 5, 0x44e9736f6ce92c206c6520646f737369657220696e64697175e92065737420696e74726f757661626c652e, 'Y', '2003-07-16 12:10:59'),
(732, 5, 0x4a6f75727320646520766163616e63657320e0207072656e647265, 'Y', '2003-07-16 23:58:48'),
(733, 5, 0x456e20766163616e636573, 'Y', '2003-07-16 12:15:49'),
(731, 5, 0x4d6f646966696572206c657320646f737369657273206465206d65737361676573, 'Y', '2003-08-08 11:58:20'),
(715, 7, 0xc8617320737472e16e6b79, 'Y', '2003-07-16 12:27:16'),
(719, 7, 0x25732076796872e16c206f20252e3166, 'Y', '2003-07-30 19:59:06'),
(722, 7, 0x536c6fbe6b61, 'Y', '2003-07-16 12:27:16'),
(732, 7, 0x5a62fd76e120646ef920646f766f6c656ee9, 'Y', '2016-07-20 18:14:03'),
(733, 7, 0x4e6120646f766f6c656ee9, 'Y', '2016-07-20 18:14:03'),
(747, 7, 0x56b96563686e7920736c6f75706365, 'Y', '2003-07-16 12:27:16'),
(724, 7, 0x5a6e69e86974206f7a6e61e8656ee9207a7072e17679, 'Y', '2003-07-16 12:31:07'),
(726, 7, 0x5570726176697420736c6fbe6b79, 'Y', '2003-07-16 12:31:07'),
(727, 7, 0x4e73746176656eed2074e9746f2076fd7a76792062796c6f2025736c696369746f76e16e6f2573, 'Y', '2003-07-16 12:31:07'),
(740, 7, 0x56b96563686e792070f8696a6174e9, 'Y', '2003-07-16 12:31:07'),
(741, 7, 0x486c61766eed, 'Y', '2003-07-16 12:31:07'),
(742, 7, 0x4b6fb9, 'Y', '2003-07-16 12:31:07'),
(743, 7, 0x4f6465736c616ee9, 'Y', '2003-07-16 12:31:07'),
(744, 7, 0x50f869206f64706f76ec64692070f86573756e6f757420646f20736c6fbe6b79, 'Y', '2003-07-16 12:31:07'),
(745, 7, 0x50f86573756e6f757420646f20736c6fbe6b79, 'Y', '2003-07-16 12:31:07'),
(746, 7, 0x4ee17a657620736c6fbe6b79, 'Y', '2003-07-16 12:31:07'),
(731, 7, 0x5570726176697420736c6fbe6b79207a7072e176, 'Y', '2003-07-16 12:32:31'),
(736, 7, 0x56796872616efd636820686572, 'Y', '2003-07-16 12:32:31'),
(737, 7, 0x50726f6872616efd636820686572, 'Y', '2003-07-16 12:32:31'),
(738, 7, 0x5a6dec6e69742064e96c6b7520646f766f6c656ee9, 'Y', '2016-07-20 18:14:03'),
(739, 7, 0x5a61e8ed7420646f766f6c656e6f75, 'Y', '2016-07-20 18:12:40'),
(730, 7, 0x5570726176697420646f766f6c656e6f75, 'Y', '2016-07-20 18:14:46'),
(579, 40, 0x436f6d6f2066756e63696f6e61206f2073697374656d612064652074656d706f2062796f2d796f6d692063616e6164656e73653f, 'Y', '2014-04-13 18:43:57'),
(5781, 40, 0x53756120636f74612064652061636573736f20657374e12061636162616e646f21, 'Y', '2014-04-13 17:46:25'),
(719, 12, 0x257320aab9d0e4bb20252e3166, 'Y', '2003-07-21 01:34:11'),
(722, 12, 0xe2bfc5ece0b4cdc3ec, 'Y', '2003-07-21 01:34:11'),
(215, 12, 0xe0cbc5d7cd, 'Y', '2003-07-21 01:34:11'),
(747, 12, 0xb7d1e9a7e1b6c7, 'Y', '2003-07-21 01:34:11'),
(484, 12, 0xc1a1c3d2a4c1, 'Y', '2003-07-21 01:38:31'),
(485, 12, 0xa1d8c1c0d2bed1b9b8ec, 'Y', '2003-07-21 01:38:31'),
(494, 12, 0xe3aae9a2e7cdc1d9c5cad3cbc3d1ba202573, 'Y', '2003-07-21 01:44:14'),
(500, 12, 0xa8ba, 'Y', '2003-07-21 01:44:14'),
(736, 12, 0xaab9d0, 'Y', '2003-07-21 01:44:14'),
(737, 12, 0xe1bee9, 'Y', '2003-07-21 01:44:14'),
(736, 10, 0xcaa4, 'Y', '2007-05-30 12:22:26'),
(737, 10, 0xb8ba, 'Y', '2007-05-30 12:22:26'),
(738, 10, 0xb8c4b1e4bcd9c6dacab1bce4, 'Y', '2007-05-30 12:22:26'),
(739, 10, 0xbfaacabcd0ddbcd9, 'Y', '2003-07-21 07:44:02'),
(715, 11, 0x54696a64737469702076616e2064657a6520706167696e61, 'Y', '2004-03-06 16:58:16'),
(719, 11, 0x25732077696e74206d657420252e3166, 'Y', '2004-04-22 10:19:41'),
(722, 11, 0x4d6170, 'Y', '2004-02-07 21:50:35'),
(732, 11, 0x56616b616e746965646167656e206f766572, 'Y', '2016-07-29 15:15:20'),
(733, 11, 0x4f702076616b616e746965, 'Y', '2003-07-21 14:08:46'),
(747, 11, 0x416c6c65206b6f6c6f6d6d656e, 'Y', '2003-07-21 14:08:46'),
(724, 11, 0x56657277696a6465722067656d61726b65657264652062657269636874656e, 'Y', '2003-07-21 14:12:25'),
(726, 11, 0x42657765726b206d617070656e, 'Y', '2003-07-21 14:12:25'),
(742, 11, 0x5072756c6c656e62616b, 'Y', '2003-07-21 14:12:25'),
(743, 11, 0x566572737475757264, 'Y', '2003-07-21 14:12:25'),
(744, 11, 0x566572706c61617473206e616172206d61702062696a206265616e74776f6f7264656e, 'Y', '2003-07-21 14:12:25'),
(745, 11, 0x566572706c61617473206e616172206d6170, 'Y', '2003-07-21 14:12:25'),
(746, 11, 0x4d61706e61616d, 'Y', '2003-07-21 14:12:25'),
(731, 11, 0x57696a7a696720626572696368746d617070656e, 'Y', '2016-07-29 15:15:20'),
(736, 11, 0x4765776f6e6e656e2070617274696a656e, 'Y', '2003-07-21 14:12:25'),
(737, 11, 0x5665726c6f72656e2070617274696a656e, 'Y', '2003-07-21 14:12:25'),
(738, 11, 0x566572616e64657220647575722076616e2064652076616b616e746965, 'Y', '2004-03-06 16:52:44'),
(739, 11, 0x53746172742076616b616e746965, 'Y', '2003-07-21 14:12:25'),
(730, 11, 0x42657765726b2076616b616e746965, 'Y', '2003-07-21 14:12:25'),
(714, 11, 0x536f7272792c20696b206b6f6e2064652073706563696669656b652062657269636874656e206d6170206e6965742076696e64656e2e, 'Y', '2003-07-21 14:12:25'),
(719, 14, 0x257320766f697474616120252e3166207069737465656c6ce4, 'Y', '2004-08-15 19:47:27'),
(549, 11, 0x486f657665656c2076616b616e746965646167656e2068656220696b3f, 'Y', '2003-08-07 01:43:12'),
(550, 11, 0x4d6178696d61616c2033302028706572206a616172292e20496564657265206d61616e64206b6f6d656e20657220322e35206461672062696a2e0d0a0d0a4e696575776520447261676f6e6765627275696b65727320626567696e6e656e206d65742031342076616b616e746965646167656e2e, 'Y', '2003-08-07 01:43:12'),
(579, 11, 0x486f65207765726b742043616e61646565732062796f2d796f6d693f, 'Y', '2003-08-07 01:43:12'),
(580, 11, 0x57616e6e65657220646520686f6f666474696a64206f70206973206d6f6574206465207370656c65722062696e6e656e2064652065787472612074696a642065656e203c623e61616e74616c3c2f623e207a657474656e20646f656e2e0d0a0d0a566f6f726265656c643a203130207a657474656e20696e20313520646167656e3a0d0a416c7320646520313065207a6574206f702074696a642069732067656461616e2068657273746172742068657420616674656c6c656e2e200d0a4465207370656c6572206865656674207765657220313520646167656e20766f6f7220646520766f6c67656e6465203130207a657474656e2e0d0a0d0a4c756b74206865742062696e6e656e206469652074696a6420656368746572206e696574206f6d20646520313065207a657420746520646f656e2064616e2069732064652070617274696a207665726c6f72656e2e, 'N', '2003-08-07 01:43:12'),
(581, 11, 0x486f65207765726b7420466973636865722d74696a643f, 'Y', '2003-08-07 01:43:12'),
(582, 11, 0x5a6f6472612065656e207370656c65722065656e207a65742068656566742067656461616e20776f7264742065722065787472612074696a6420746f656765766f6567642028746f742061616e20686574206d6178696d756d2c20646520686f6f666474696a64292e0d0a0d0a416c732064652074696a64206f702069732c2069732064652070617274696a207665726c6f72656e2e, 'N', '2003-08-07 01:43:12'),
(583, 11, 0x486f65207765726b7420736c61617074696a642062696a20466973636865722d74696a643f, 'Y', '2003-08-07 01:43:12'),
(584, 11, 0x45656e20766f6f726265656c643a0d0a0d0a5374656c3a206a652077696c742065656e2067656d696464656c64652076616e2033207a657474656e20706572207765656b2c20656e20686574207370656c206d6167206e696574206f70207a61746572646167206f66207a6f6e64616720646f6f722074696a6467656272656b206569646967656e2e200d0a0d0a44616e3a202837202d20322920646167656e202a2028323420757572202d20392075757220736c61617074696a6429202f2033207a657474656e203d2032352075757220657874726120706572207a657420696e20466973636865722d74696a64206d6574206465207765656b656e642d6b6c6f6b207569746765736368616b656c642e, 'Y', '2003-08-07 01:43:12'),
(585, 11, 0x57617420697320736c61617074696a64206f66206e6163687474696a643f, 'Y', '2016-08-02 16:30:24'),
(591, 11, 0x4b616e20696b2074696a642061616e206d696a6e20656967656e20737065656c74696a6420746f65766f6567656e3f, 'Y', '2003-08-07 01:43:12'),
(592, 11, 0x4e65652c20646174206b756e206a65206e6965742c206d616172206a6520746567656e7374616e646572206973206d697373636869656e20626572656964206a65206d6565722074696a6420746520676576656e2e0d0a0d0a486574206973206f6e6765776f6f6e20656e206f6e62656c65656664206f6d206f6d206d65657220626564656e6b74696a6420746520736d656b656e2c20647573207261616b74206e696574206f766572737475757220616c73206a6520746567656e7374616e646572207a6f276e207665727a6f656b20616677696a73742e, 'Y', '2016-08-03 17:13:21'),
(593, 11, 0x4b616e20696b2074696a6420746f65766f6567656e2061616e20646520737065656c74696a642076616e206d696a6e20746567656e7374616e6465723f, 'Y', '2003-08-07 01:43:12'),
(594, 11, 0x4a612c206a65206b756e74206f70206965646572206d6f6d656e74206d6565722074696a6420746f65766f6567656e2061616e206a6520746567656e7374616e646572732070617274696a6b6c6f6b2c20626568616c76652062696a20746f65726e6f6f6970617274696a656e2e20566f6c67206465206c696e6b206f6e64657261616e2064652070617274696a2d706167696e612e205374656c2064652065787472612074696a6420646965206a652061616e206a6520746567656e7374616e6465722077696c7420676576656e20696e206f6e6465722068657420476f2d626f72642e204a65206b756e742074696a6420746f65766f6567656e2061616e20646520686f6f666474696a2062696a20616c6c652074696a6473797374656d656e20283c686f6d65206661712e7068703f726561643d74266361743d353626653d353723456e74727935373e4a6170616e73653c2f686f6d653e2f3c686f6d65206661712e7068703f726561643d74266361743d353626653d353823456e74727935383e43616e61646573652062796f2d796f6d693c2f686f6d653e20656e203c686f6d65206661712e7068703f726561643d74266361743d353626653d353923456e74727935393e466973636865722074696a643c2f686f6d653e2920656e2f6f662064652062796f796f6d692d706572696f646573206865727374656c6c656e202862696a204a6170616e73652f43616e61646573652062796f796f6d69292e204e6f746974696573206f76657220646520746f656765766f656764652074696a64207a696a6e20696e206865742070617274696a2d696e666f2d76656c64206f702064652070617274696a2d706167696e61207465207a69656e2e0d0a0d0a42696a20746f65726e6f6f6970617274696a656e2069732074696a6420746f65766f6567656e20646f6f72206465207370656c657273206e69657420746f656765737461616e2c207a6f64617420646520746f65726e6f6f696c6569646572206465206765736368617474652074696a6420646174207370656c6572732062657a6967207a696a6e206d657420746f65726e6f6f6970617274696a656e206b616e2062657065726b656e2e20536f6d6d69676520746f65726e6f6f696c656964657273202068656262656e20746f657374656d6d696e67206f6d206e61617220656967656e20696e7a696368742074696a6420746f6520746520766f6567656e2061616e2065656e20746f65726e6f6f6970617274696a2e, 'Y', '2016-08-03 17:11:05'),
(740, 11, 0x416c6c65206f6e7476616e67656e, 'Y', '2013-08-27 19:10:40'),
(741, 11, 0x486f6f6664, 'Y', '2003-08-07 02:22:11'),
(542, 11, 0x416c6c65656e2065656e207370656c20646174203c753e6e696574203c2f753e206d656574656c646520766f6f722064652072616e672e0d0a0d0a486574206973206e696574206465206765627275696b656c696a6b652067616e672076616e207a616b656e2e2045656e20626568656572646572206d6f65742068616e646d6174696720696e6772696a70656e206f6d2065656e207370656c207465206865726f70656e656e2e204475732e2e2e203c693e20286e65656d20766f6c646f656e646520203c6120687265663d222f6661712e7068703f726561643d74266361743d3536223e74696a643c2f613e21293c2f693e, 'Y', '2003-08-23 20:31:38'),
(586, 11, 0x54696a64656e7320616c7320736c61617074696a642061616e67656d65726b7465207572656e206c6f70656e206465207370656c6b6c6f6b6b656e206e6965742e20446520726573746572656e64652074696a642074656c74206e6965742061662e, 'N', '2003-08-07 13:57:21'),
(587, 11, 0x576161726f6d207370726f6e67206d696a6e207370656c6b6c6f6b20696e65656e732028696e203130206d696e7574656e29203920757572206e6161722062656e6564656e3f, 'Y', '2003-08-07 13:57:21'),
(588, 11, 0x416c73206a6520737072696e67656e6465206b6c6f6b6b656e207a696574206d6f6574206a65206761616e20736c6170656e203b2d290d0a0d0a416c732065656e207370656c6b6c6f6b207a65677420646174206a65203320646167656e206f76657220686562742c2064616e20626574656b656e74206461743a203c6e6f77723e4a6520686562743c2f6e6f77723e203c6e6f77723e33202a202832342d39293c2f6e6f77723e203d203c6e6f77723e3435207575723c2f6e6f77723e203c693e737065656c3c2f693e202869747420736c616170292074696a642e0d0a0d0a5a6567742065656e206b6c6f6b20646174206a65203220646167656e20656e20313420757572206f76657220686562742c2064616e20626574656b656e74206461743a203c6e6f77723e4a6520686562743c2f6e6f77723e203c6e6f77723e32202a202832342d3929202b2031343c2f6e6f77723e203d203c6e6f77723e343420757572733c2f6e6f77723e206f7665722c20646520736c61617074696a64206e696574206d6565676572656b656e642e, 'Y', '2003-08-07 13:57:21'),
(589, 11, 0x576161726f6d206b616e20696b20646520736c61617074696a64206e69657420696e7374656c6c656e20696e206d696a6e206765627275696b65727370726f6669656c3f, 'Y', '2003-08-07 13:57:21'),
(590, 11, 0x4f6d64617420616c73206a65206461742064726965206b6565722070657220646167207a6f75206b756e6e656e20646f656e206a6520656666656374696566206a6520737065656c6b6c6f6b6b656e207374696c207a6f75206b756e6e656e207a657474656e2e204a65206b756e7420646520736c61617074696a6420616c6c65656e20696e7374656c6c656e20616c73206a652064617420616c2065656e2074696a646a65206e69657420686562742067656461616e2e, 'Y', '2003-08-07 13:57:21'),
(595, 11, 0x576174207a696a6e2076616b616e746965646167656e3f, 'Y', '2003-08-07 13:57:21'),
(599, 11, 0x57656c6b652074696a647a6f6e652067656c647420766f6f72206d696a6e20736c61617074696a643f, 'Y', '2003-08-07 13:57:21'),
(600, 11, 0x447261676f6e206765627275696b742064652074696a647a6f6e652028656e207a6f6d657274696a64292c20646965206a6520696e206a652070726f6669656c20696e7374656c742e, 'Y', '2003-08-07 13:57:21'),
(603, 11, 0x576161726f6d20676565667420447261676f6e206d652068657420656d61696c2d61647265732076616e206d696a6e20746567656e7374616e646572206e6965743f, 'Y', '2003-08-07 13:57:21'),
(604, 11, 0x447261676f6e2072657370656374656572742064652070726976616379202d207a6f77656c206469652076616e206a6520746567656e7374616e64657220616c73206465206a6f7577652e0d0a0d0a416c73206a65206d6565722076616e206a6520746567656e7374616e6465722077696c7420776574656e2064616e2077617420657220696e206865742070726f6669656c2073746161742c207a756c206a6520686574206d6f6574656e2076726167656e2e, 'Y', '2003-08-07 13:57:21'),
(605, 11, 0x486f65206b616e20696b2074656b7374206f70736c61616e20696e205347463f, 'Y', '2003-08-07 13:57:21'),
(558, 11, 0x4572207a696a6e20766572736368696c6c656e6465206d616e696572656e206f6d2065656e206e69657577652070617274696a20746520626567696e6e656e2e0d0a3c554c3e0d0a3c4c493e4d6565646f656e206d65742065656e2061616e6765626f64656e2070617274696a20696e206465203c686f6d652077616974696e675f726f6f6d2e7068703e77616368746b616d65723c2f686f6d653e2e3c42523e0d0a4765627275696b2064657a65206d616e69657220616c73206a65206f70207a6f656b2062656e74206e6161722065656e206e696575776520746567656e7374616e6465722e204b6c696b206565727374206f70206465203c686f6d652077616974696e675f726f6f6d2e7068703e77616368746b616d65723c2f686f6d653e206c696e6b20696e20686574206d656e752e2056696e642065656e2070617274696a207761617261616e206a65206d65652077696c7420646f656e2c20656e206b6c696b2064616e206f7020646520223c693e496e666f3c2f693e22206b6e6f702064616172206c696e6b732076616e2e204f6e64657261616e20646520706167696e61207a6f752065656e203c686f6d65206661712e7068703f726561643d74266361743d33353726653d33383623456e7472793338363e676564657461696c6c6565726465206f6d73636872696a76696e672076616e2064652070617274696a2d696e666f3c2f686f6d653e206d6f6574656e20737461616e2e20416c73206a652065722061616e206d65652077696c7420646f656e2c206b6c696b206f7020646520223c693e4d6565646f656e3c2f693e22206b6e6f702e205a6f2065656e766f75646967206973206865742e0d0a0d0a3c4c493e3c686f6d65206661712e7068703f726561643d74266361743d33353723456e7472793231303e42696564206a6520656967656e2070617274696a2061616e3c2f686f6d653e20696e206465203c686f6d652077616974696e675f726f6f6d2e7068703e77616368746b616d65723c2f686f6d653e2e3c42523e0d0a416c73206572206765656e207370656c6c656e206e616172206a6f757720736d61616b20696e206465203c6120687265663d222f77616974696e675f726f6f6d2e70687022207461726765743d225f626c616e6b223e77616368746b616d65723c2f613e20737461616e2c2064616e206b756e206a65203c686f6d65206661712e7068703f726561643d74266361743d33353723456e7472793231303e65656e20656967656e2070617274696a61616e626f6420706c61617473656e3c2f686f6d653e2e204f6d2064697420746520646f656e206765627275696b206a65206465203c686f6d65206e65775f67616d652e7068703e6e69657577652070617274696a20706167696e613c2f686f6d653e2c2076756c206a652068657420666f726d756c69657220696e20656e206472756b206a65206f7020646520223c693e50617274696a20546f65766f6567656e3c2f693e22206b6e6f7020656e207761636874206a652061662e204a65207a756c742077616172736368696a6e6c696a6b2062696e6e656e2065656e207061617220646167656e207370656c656e2e0d0a0d0a3c4c493e3c686f6d65206661712e7068703f726561643d74266361743d33353723456e7472793231323e4e6f646967206a6520767269656e64656e207569743c2f686f6d653e2e3c42523e0d0a416c73206a652065656e20746567656e7374616e646572206765627275696b6572736964206b656e742c206b756e206a652065656e207569746e6f646967696e672073747572656e20646f6f72206465203c686f6d65206d6573736167652e7068703f6d6f64653d496e766974653e5569746e6f646967656e3c2f686f6d653e206c696e6b20696e2068657420686f6f66646d656e7520746520766f6c67656e2e2056756c206a6520676577656e7374652070617274696a2d6f707469657320696e20656e207665727374757572206865742e204a6520746567656e7374616e646572206b616e206163636570746572656e206f662064652070617274696a2d6f70746965732062657477697374656e2e0d0a4572206973206f6f6b2065656e20223c693e44657a65206765627275696b6572207569746e6f646967656e3c2f693e22206c696e6b206f6e64657261616e20646520706167696e612076616e20696564657265206765627275696b657273696e666f20706167696e612e2048657420766f6c67656e2076616e2064657a65206c696e6b2062657265696b74206865747a656c66646520616c732068696572626f76656e2c20616c6c65656e20736e656c6c65722e3c2f554c3e, 'Y', '2016-08-04 13:44:54'),
(606, 11, 0x4e61646174206a652065656e207a6574206865622067656b6f7a656e2c206b616e206a65206e6f672065656e2062657269636874206163687465726c6174656e20766f6f72616c656572206a65206465207a657420737065656c742e0d0a0d0a4572207a696a6e2064726965206d616e696572656e206f6d206465203c623e7a6963687462616172686569643c2f623e2076616e2065656e2062657269636874207465206265686572656e3a0d0a3c756c3e0d0a3c6c693e77616e6e65657220696564657265656e206a652062657269636874206d6167206c657a656e202874696a64656e73206f66206e612064652070617274696a292c2064616e206765627275696b206a65207a6f67656e61616d6465203c623e7075626c69632d636f6d6d656e7420746167733c2f623e3a203c636f6c6f72207265643e3c74743e266c743b633e7075626c69632074657874266c743b2f633e3c2f74743e3c2f636f6c6f723e0d0a3c6c693e77616e6e656572206a65206265726963687420706173207075626c69656b206d616720776f7264656e206e616461742064652070617274696a20697320616667656c6f70656e2c2064616e206765627275696b206a65203c623e68696464656e2d636f6d6d656e7420746167733c2f623e3a203c636f6c6f7220626c75653e3c74743e266c743b683e74657874266c743b2f683e3c2f74743e3c2f636f6c6f723e0d0a3c6c693e77616e6e656572206a65206765656e2074616773206765627275696b742c20776f726474206a6520626572696368742065656e206765776f6f6e20626572696368742064617420616c6c65656e20646f6f7220646520746567656e7374616e646572206b616e2067656c657a656e20776f7264656e2e0d0a3c2f756c3e0d0a0d0a57616e6e656572206a65203c686f6d65206661712e7068703f726561643d74266361743d33363523456e7472793237363e65656e20534746206f706861616c743c2f686f6d653e203c693e6d657420636f6d6d656e746161723c2f693e2c207a616c206a65206765627275696b6572736e61616d20696e20646520636f6d6d656e746172656e20696e6765766f65676420776f7264656e2c20656e207a756c6c656e206465207370656369616c65206d61726b6572696e67656e2028696e6469656e206765627275696b7429206f706e6965757720766572736368696a6e656e2e0d0a0d0a4465203c693e7075626c69633c2f693e20656e203c693e68696464656e3c2f693e2074616773206b756e6e656e206f6f6b20696e206c616e676520766f726d20776f7264656e206765736368726576656e3a3a0d0a2a20266c743b636f6d6d656e743e202e2e2e20266c743b2f636f6d6d656e743e206973206865747a656c66646520616c73203c636f6c6f72207265643e266c743b633e202e2e2e20266c743b2f633e3c2f636f6c6f723e0d0a2a20266c743b68696464656e3e202e2e2e20266c743b2f68696464656e3e206973206865747a656c66646520616c73203c636f6c6f7220626c75653e266c743b683e202e2e2e20266c743b2f683e3c2f636f6c6f723e0d0a0d0a566f6f72206d65657220696e666f726d61746965206f766572205347462c207a6965203c686f6d65206661712e7068703f726561643d74266361743d33363526653d343323456e74727934333e4641513c2f686f6d653e2e, 'N', '2013-01-14 11:43:09'),
(556, 11, 0x4572207a696a6e2076656c652070726f6772616d6d612773206f6d205347462062657374616e64656e206d65652074652062656b696a6b656e20656e2074652062657765726b656e2e2045656e206d6f67656c696a6b68656964206973203c6120687265663d22687474703a2f2f7777772e72656e652d67726f74686d616e6e2e64652f6a61676f2f223e4a61676f3c2f613e2c206465204a61766120476f20636c69656e742e0d0a0d0a44652042726974736520476f204173736f6369617469652068656566742065656e206c616e6765203c6120687265663d22687474703a2f2f7777772e62726974676f2e6f72672f676f70637265732f676f7063726573312e68746d6c23732d76696577223e6c696a7374206d657420736f6674776172653c2f613e206f6d205347462062657374616e64656e2074652062656b696a6b656e2e0d0a0d0a416c73206a65207a6f276e2070726f6772616d6d6120686562742c2064616e20697320686574206d6f67656c696a6b206f6d206a652062726f7773657220696e207465207374656c6c656e20686574206d696d652d7479706520276170706c69636174696f6e2f782d676f2d73676627207465206c6174656e2076657262696e64656e206d6574206865742070726f6772616d6d612c207a6f64617420686574206d65742065656e20656e6b656c65206b6c696b206f7067657374617274206b616e20776f7264656e2e0d0a0d0a4a65206b756e74206d656572206c657a656e206f702064657a6520706167696e613a0d0a3c687474703a2f2f73656e736569732e786d702e6e65742f3f536d61727447616d65466f726d61743e, 'Y', '2016-08-02 16:29:15'),
(637, 11, 0x57617420697320646520686f6f666474696a643f, 'Y', '2003-08-07 22:13:46'),
(661, 11, 0x57617420626574656b656e742068616e64696361703f, 'Y', '2003-08-07 22:13:46'),
(631, 11, 0x486f65206b616e20696b206d696a6e207569746e6f646967696e6720696e2064652077616368746b616d65722076657277696a646572656e3f, 'Y', '2003-08-08 23:12:25'),
(632, 11, 0x4472756b206f7020646520696e666f2d6b6e6f702076616e206a65207569746e6f646967696e672e204f6e64657261616e20646520766f6c67656e646520706167696e61206973206465202276657277696a646572656e22206b6e6f702e0d0a0d0a54726f7577656e732c2077616e6e656572206e69656d616e64206a65207569746e6f646967696e672062696e6e656e20656e6b656c652077656b656e20616363657074656572742c2076657277696a6465727420646520736572766572206465207569746e6f646967696e672e, 'Y', '2004-11-23 09:39:11'),
(715, 2, 0x5369646520746964, 'Y', '2003-08-08 23:18:57'),
(5780, 40, 0x4d6f7374726172206d61697320696e666f726d61e7f5657320736f627265205b25735d, 'Y', '2014-04-13 17:43:02'),
(719, 2, 0x2573207365696572206d656420252e3166, 'Y', '2003-08-08 23:18:57'),
(722, 2, 0x4d61707065, 'Y', '2003-08-08 23:18:57'),
(732, 2, 0x466572696564616765722069676a656e, 'Y', '2003-08-08 23:18:57'),
(733, 2, 0x50e5206665726965, 'Y', '2003-08-08 23:18:57'),
(747, 2, 0x416c6c65206b6f6c6f6e6e6572, 'Y', '2003-08-08 23:18:57'),
(724, 2, 0x466a65726e206d65726b656465206d656c64696e676572, 'Y', '2003-08-08 23:18:57'),
(726, 2, 0x52656469676572206d6170706572, 'Y', '2003-08-08 23:18:57'),
(727, 2, 0x496e6e7374696c6c696e67656e6520666f722064656e6e6520696e76697461736a6f6e656e2068617220626c697474202573656e647265742573, 'Y', '2003-08-08 23:18:57'),
(740, 2, 0x416c6c65204d6f747461747465, 'Y', '2003-08-08 23:18:57'),
(741, 2, 0x486f766564, 'Y', '2003-08-08 23:18:57'),
(742, 2, 0x53f87070656c64756e6b, 'Y', '2003-08-08 23:18:57'),
(743, 2, 0x53656e6474, 'Y', '2003-08-08 23:18:57'),
(744, 2, 0x466c7974742074696c206d61707065206ee5722062657376617274, 'Y', '2003-08-08 23:18:57'),
(745, 2, 0x466c7974742074696c206d61707065, 'Y', '2003-08-08 23:18:57'),
(746, 2, 0x4d617070656e61766e, 'Y', '2003-08-08 23:18:57'),
(731, 2, 0x52656469676572206d656c64696e67736d6170706572, 'Y', '2003-08-08 23:18:57'),
(736, 2, 0x56756e6e6564652070617274696572, 'Y', '2003-08-08 23:18:57'),
(737, 2, 0x54617074652070617274696572, 'Y', '2003-08-08 23:18:57'),
(738, 2, 0x456e6472652066657269656c656e676465, 'Y', '2003-08-08 23:18:57'),
(739, 2, 0x5374617274206665726965, 'Y', '2003-08-08 23:18:57'),
(730, 2, 0x52656469676572206665726965, 'Y', '2003-08-08 23:18:57'),
(714, 2, 0x4465737376657272652c206b756e6e6520696b6b652066696e6e652064656e20616e6769747465206d656c64696e67736d617070652e, 'Y', '2003-08-08 23:18:57'),
(501, 2, 0x447261676f6e206272756b6572206f67206272756b657270726f66696c6572, 'N', '2003-08-08 23:18:57'),
(503, 2, 0x476f20737465646572, 'Y', '2003-08-08 23:18:57'),
(504, 2, 0x476f207265676c6572, 'Y', '2003-08-08 23:18:57'),
(511, 2, 0x447261676f6e206d656e796572206f6720696e6e7374696c6c696e676572, 'Y', '2003-08-08 23:18:57'),
(512, 2, 0x447261676f6e2070617274696572, 'Y', '2003-08-08 23:18:57'),
(529, 2, 0x48766f72206b616e206a6567206ce67265206d657265206f6d20656e2062657374656d7420726567656c3f, 'Y', '2004-08-12 16:43:43'),
(531, 2, 0x48766f7264616e206572207265676c656e6520666f72207370696c6c657420476f3f, 'Y', '2003-08-08 23:18:57'),
(533, 2, 0x48766f72206b616e206a65672066696e6e6520666c657265207765627369646572206f6d20476f3f, 'Y', '2003-08-08 23:22:38'),
(534, 2, 0x50e520447261676f6e73203c6120687265663d222f6c696e6b732e706870223e6c656e6b6520736964653c2f613e2e, 'Y', '2003-08-08 23:22:38'),
(549, 2, 0x48766f72206d616e6765206665726965646167657220686172206a65672074696c676a656e67656c69673f, 'Y', '2003-08-08 23:22:38'),
(550, 2, 0x4f70702074696c20333020286d616b73696d756d2070657220e572292e2048766572206de56e64656420626c697220322c35206461676572206c6167742074696c20666f722064696e206272756b65722e204ee572206475206572206ee52070e520447261676f6e2073746172746572206475206d656420313420666572696564616765722e, 'Y', '2003-08-08 23:22:38'),
(570, 2, 0x447261676f6e207469647366756e6b736a6f6e6572, 'Y', '2003-08-08 23:22:38'),
(577, 40, 0x436f6d6f2066756e63696f6e61206f2073697374656d612064652074656d706f2062796f2d796f6d69206a61706f6eea733f, 'Y', '2014-04-13 18:43:57'),
(3026, 36, 0x7376c3a964, 'Y', '2015-09-19 12:52:13'),
(719, 6, 0x25732067616e6120706f7220252e3166, 'Y', '2015-09-21 21:50:34'),
(747, 6, 0x546f646173206c617320636f6c756d6e6173, 'Y', '2003-08-11 03:58:54'),
(722, 6, 0x43617270657461, 'Y', '2003-08-11 04:09:09'),
(732, 6, 0x44ed6173206465207661636163696f6e657320646973706f6e69626c6573, 'Y', '2003-08-11 04:09:09'),
(733, 6, 0x4465207661636163696f6e6573, 'Y', '2003-08-11 04:09:09'),
(724, 6, 0x4465737472756972206d656e73616a6573206d61726361646f73, 'Y', '2003-08-11 04:14:25'),
(726, 6, 0x456469746172206361727065746173, 'Y', '2003-08-11 04:14:25'),
(727, 6, 0x4c6173206361726163746572ed737469636173206465206c6120696e766974616369f36e2061206573746120706172746964612068616e207369646f202573646973707574616461732573, 'Y', '2003-08-11 04:14:25'),
(740, 6, 0x546f646f73206c6f7320726563696269646f73, 'Y', '2003-08-11 04:14:25'),
(741, 6, 0x5072696e636970616c, 'Y', '2003-08-11 04:14:25'),
(742, 6, 0x506170656c657261, 'Y', '2003-08-11 04:14:25'),
(743, 6, 0x456e766961646f73, 'Y', '2003-08-11 04:14:25'),
(744, 6, 0x4d6f7665722061206361727065746120616c20726573706f6e646572, 'Y', '2003-08-11 04:14:25'),
(745, 6, 0x4d6f76657220612063617270657461, 'Y', '2003-08-11 04:14:25'),
(746, 6, 0x4e6f6d6272652064652063617270657461, 'Y', '2003-08-11 04:14:25'),
(731, 6, 0x456469746172206361727065746173206465206d656e73616a6573, 'Y', '2003-08-11 04:16:18'),
(736, 6, 0x50617274696461732067616e61646173, 'Y', '2003-08-11 04:16:18'),
(737, 6, 0x5061727469646173207065726469646173, 'Y', '2003-08-11 04:16:18'),
(738, 6, 0x43616d62696172206c6120647572616369f36e206465206c6173207661636163696f6e6573, 'Y', '2003-08-11 04:16:18'),
(739, 6, 0x436f6d656e7a6172207661636163696f6e6573, 'Y', '2003-08-11 04:16:18'),
(730, 6, 0x456469746172207661636163696f6e6573, 'Y', '2003-08-11 04:17:30'),
(549, 6, 0xbf4375e16e746173207661636163696f6e65732074656e676f3f, 'Y', '2003-08-11 04:36:23'),
(550, 6, 0x48617374612033302064ed617320706f722061f16f2e2043616461206d6573207365207465206167726567616e20322e352064ed61732e2053692065726573206e7565766f20656e20447261676f6e20636f6d69656e7a617320636f6e2031342064ed6173206465207661636163696f6e657320646973706f6e69626c65732e, 'Y', '2003-08-29 06:13:13'),
(552, 6, 0x486520617175ed20756e61206272657665206578706c6963616369f36e206465206c6f732063696e636f20ed74656d73206465206c61207461626c6120656e206c61207061727465207375706572696f72206465206c61203c6120687265663d222f7374617475732e706870223e70e167696e612064652065737461646f3c2f613e2e200d0a3c756c3e200d0a3c6c693e3c623e4e6f6d6272653c2f623e20456c206e6f6d627265207265616c2064656c207573756172696f2c206f2073696d696c61722e20546578746f206c696272652e200d0a3c6c693e3c623e4964206465207573756172696f3c2f623e204c61206964206465207573756172696f2071756520656c207573756172696f20637265f32e204e6f206573206d6f646966696361626c652e200d0a3c6c693e3c623ebf446973706f6e69626c652070617261206a756761723f3c2f623e20496e666f726d616369f36e207061726120706f7369626c6573206f706f6e656e7465732e20546578746f206c696272652e200d0a3c6c693e3c623e52e174696e673c2f623e20456c2072e174696e672061637475616c2064656c207573756172696f20656e20447261676f6e2e2047656e657261646f20706f7220656c207365727669646f722e0d0a3c6c693e3c623e496e666f2064652072616e6b696e673c2f623e20496e666f726d616369f36e2061646963696f6e616c2c20706f7220656a656d706c6f20656c2072e174696e6720656e20756e20636c75622e20546578746f206c696272652e200d0a3c2f756c3e, 'N', '2003-08-11 04:36:23'),
(638, 11, 0x44652061616e76616e6b656c696a6b652074696a6420646965206265696465207370656c657273206b72696a67656e20746f65676577657a656e206973206465203c693e686f6f666474696a643c2f693e2e200d0a0d0a416c732064657a652074696a6420616667656c6f70656e2069732c2064616e20697320686574207370656c206e6f67203c623e6e6965743c2f623e2074656e2065696e6465204465203c693e65787472612074696a643c2f693e20287a696520686965726f6e6465722920676161742064616e20696e2e, 'Y', '2003-08-11 20:28:49'),
(663, 11, 0x5761742069732068657420766572736368696c2074757373656e20636f6e76656e74696f6e656c6520656e206a75697374652068616e64696361703f, 'Y', '2003-08-11 20:28:49'),
(671, 11, 0x4b616e20696b207a657474656e20646f656e2070657220656d61696c3f, 'Y', '2004-02-14 12:28:20'),
(672, 11, 0x4e65652c20686574206973206e696574206d6f67656c696a6b206f6d207a657474656e2070657220656d61696c20746520646f656e2e0d0a4f6d207a657474656e20746520646f656e206d6f6574206a65206a65206d6574206a652062726f777365722061616e6d656c64656e206f70203c6120687265663d222f223e447261676f6e27732077656220736974653c2f613e2e, 'Y', '2003-08-23 20:31:38'),
(673, 11, 0x476565667420447261676f6e2065656e206d656c64696e672077616e6e65657220696b2061616e2064652062657572742062656e3f, 'Y', '2003-08-11 20:28:49'),
(674, 11, 0x446573676577656e73742e204865742069732065656e206f7074696520646965206a65206b756e742061616e7a657474656e20696e206a652070726f6669656c2e, 'Y', '2004-02-14 12:28:20'),
(675, 11, 0x4b616e20696b2065656e207370656c207374617274656e206d65742065656e2075706c6f61642076616e2065656e205347462d62657374616e643f, 'Y', '2003-08-11 20:28:49'),
(676, 11, 0x4e65652e204d61617220646174203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f70686f72756d2f726561642e7068703f663d3426693d3132363126743d31323631223e206b6f6d743c2f613e2077656c206f7020646520746f646f206c696a73742e, 'N', '2003-08-23 20:31:38'),
(677, 11, 0x447261676f6e2072616e67656e20656e20726174696e67732e, 'Y', '2003-08-11 20:28:49'),
(678, 11, 0x57617420626574656b656e7420646520726174696e67206b6f6c6f6d20696e2064652067656275696b6572736c696a73743f, 'Y', '2003-08-11 20:28:49'),
(686, 11, '', 'N', '2007-06-04 15:49:02'),
(690, 11, '', 'N', '2004-02-07 17:40:34'),
(727, 11, 0x4f76657220646520696e7374656c6c696e67656e20766f6f7220646974207370656c206973202573206f6e64657268616e64656c64202573, 'Y', '2003-08-11 20:39:22'),
(578, 11, 0x57616e6e65657220646520686f6f666474696a64206f702069732c20676161742065722065656e206661736520696e206d65742065656e2061666c6f70656e642067656e756d6d657264652073657269652076616e2076617374652074696a64656e20766f6f7220696564657265207a65742e200d0a4164646974696f6e65656c3a0d0a3c554c3e0d0a3c4c493e416c73206465207370656c6572206f702074696a64207a65742c2068657273746172742068657420616674656c6c656e2076616e2064652076617374652074696a64206d6574206865747a656c666465206e756d6d6572206f706e696575772e0d0a3c2f4c493e0d0a0d0a3c4c493e416c73206465207370656c6572203c693e206e696574203c2f693e206f702074696a64207a65742c206e65656d74206865742073657269656e756d6d65722061662c20656e2068657273746172742068657420616674656c6c656e2e3c2f4c493e0d0a3c2f554c3e0d0a416c73206465207365726965206f7020697320656e206465207370656c657220737065656c74206e6965742062696e6e656e2064652076617374652074696a642c2064616e20697320686574207370656c207665726c6f72656e2e, 'N', '2003-08-11 20:39:22'),
(722, 4, 0x4f72646e6572, 'Y', '2003-08-12 11:19:43'),
(732, 4, 0x56657266fc6762617265722055726c617562, 'Y', '2007-12-07 15:45:09'),
(733, 4, 0x496d2055726c617562, 'Y', '2007-12-06 11:19:43'),
(747, 4, 0x416c6c65205370616c74656e, 'Y', '2003-08-12 11:19:43'),
(724, 4, 0x4d61726b6965727465204e6163687269636874656e206cf6736368656e, 'Y', '2003-08-12 11:23:56'),
(726, 4, 0x4f72646e6572206265617262656974656e, 'Y', '2003-08-12 11:23:56'),
(740, 4, 0x416c6c6520656d7066616e67656e656e, 'Y', '2003-08-12 11:23:56'),
(744, 4, 0x56657273636869656265206e6163682064656d20416e74776f7274656e20696e204f72646e6572, 'Y', '2007-12-07 15:31:05'),
(745, 4, 0x5665727363686965626520696e204f72646e6572, 'Y', '2003-08-12 11:26:30'),
(746, 4, 0x4f72646e65726e616d65, 'Y', '2003-08-12 11:23:56'),
(731, 4, 0x4e6163687269636874656e6f72646e6572206265617262656974656e, 'Y', '2003-08-12 11:28:19'),
(736, 4, 0x4765776f6e6e656e65205061727469656e, 'Y', '2003-08-12 11:28:19'),
(737, 4, 0x5665726c6f72656e65205061727469656e, 'Y', '2003-08-12 11:28:19'),
(738, 4, 0x55726c617562736ce46e676520e46e6465726e, 'Y', '2003-08-12 11:28:19'),
(739, 4, 0x55726c61756220626567696e6e656e, 'Y', '2003-08-12 11:28:19'),
(730, 4, 0x55726c617562206265617262656974656e, 'Y', '2003-08-12 11:29:17'),
(501, 4, 0x447261676f6e2042656e75747a657270726f66696c, 'Y', '2012-12-17 13:06:39'),
(512, 4, 0x5061727469656e2062656920447261676f6e, 'Y', '2004-02-08 20:03:26'),
(555, 4, 0x576965206b616e6e20696368206d6972205347462d4461746569656e20616e736568656e3f, 'Y', '2003-10-30 02:33:18'),
(557, 4, 0x5769652066616e6765206963682065696e65206e6575652050617274696520616e3f, 'Y', '2007-12-06 15:22:06'),
(559, 4, 0x576965207365747a652069636820696e206d65696e6572205061727469653f, 'Y', '2010-04-02 22:33:46'),
(561, 4, 0x576965206b616e6e206963682065696e206c617566656e64657320537069656c206265656e64656e3f, 'Y', '2003-10-30 10:31:41'),
(563, 4, 0x576965206265656e6465206963682065696e65205061727469653f, 'Y', '2003-08-12 11:39:13'),
(566, 4, 0x5761732069737420447261676f6e3f, 'Y', '2003-10-30 10:31:41'),
(570, 4, 0x5a65697473797374656d652062656920447261676f6e, 'Y', '2003-10-30 10:31:41'),
(591, 4, 0x4b616e6e20696368206d6972207a7573e4747a6c69636865205a65697420676562656e3f, 'Y', '2003-08-12 11:39:13'),
(592, 4, 0x4e65696e2c205369652073656c627374206bf66e6e656e20646173206e696368742c206a65646f6368206bf66e6e656e2053696520496872656e204765676e657220756d206d65687220426564656e6b7a6569742062697474656e2e202044612064696573206a65646f636820736f776f686c20726563687420756e676577f6686e6c69636820616c7320617563682067657769737365726d61df656e20756e68f6666c696368206973742c206dfc7373656e20536965206d69742065696e65722041626c65686e756e672064657220426974746520726563686e656e2e, 'Y', '2007-11-01 18:59:46'),
(593, 4, 0x4b616e6e20696368206d65696e656d204765676e6572207a7573e4747a6c69636865205a65697420676562656e3f, 'Y', '2003-08-12 11:39:13'),
(595, 4, 0x5761732073696e642055726c61756273746167653f, 'Y', '2003-08-12 11:39:13'),
(621, 4, 0x446965206b6f6d706c6574746520464151206175662065696e6572205365697465, 'Y', '2012-12-09 02:07:59'),
(714, 4, 0x44657220616e6765676562656e65204e6163687269636874656e6f72646e6572206b6f6e6e7465206e6963687420676566756e64656e2077657264656e2e, 'Y', '2003-08-12 11:40:13'),
(560, 11, 0x496e2064652070617274696a656e206f702064653c6120687265663d222f7374617475732e706870223e73746174757320706167696e613c2f613e2062656e206a696a2061616e206465206265757274206f6d2065656e207a657420746520646f656e2e204b6c696b206f7020686574207370656c206f6d2068657420746520746f6e656e2e0d0a0d0a44616172206b756e206a652065656e207a657420646f656e20646f6f72206f702065656e206c656567206b7275697370756e74207465206b6c696b6b656e2e20416c732064657a65207a65742076696a616e64656c696a6b65207374656e656e2076616e67742c2064616e20776f7264656e207a65206175746f6d6174697363682076657277696a646572642e2050617373656e206f66206f70676576656e20646f65206a6520646f6f722064652062657472656666656e6465206c696e6b73206f6e6465722068657420626f72642061616e207465206b6c696b6b656e2e0d0a0d0a4f7020646520766f6c67656e646520706167696e6120776f726474206a65206e6f67206f6d206265766573746967696e672076616e206a65206b6575732067657672616167642e, 'Y', '2003-08-23 20:31:38'),
(627, 11, 0x57617420626574656b656e742065656e206765627275696b657273202261637469766974656974223f, 'Y', '2003-08-23 20:31:38'),
(628, 11, 0x44657a652067656566742061616e20686f657665656c207a657474656e2064657a65206765627275696b657220726563656e74656c696a6b2068656566742067656461616e2e0d0a0d0a32207374657272656e203a207665656c207a657474656e20286d6565722064616e20373020706572206d61616e64290d0a312073746572203a20726564656c696a6b2061616e74616c207a657474656e202835202d20373020706572206d61616e64290d0a30207374617273203a207765696e6967207a657474656e20286d696e6465722064616e203520706572206d61616e6429, 'Y', '2003-08-14 21:58:56'),
(629, 11, 0x57617420626574656b656e742065656e206765627275696b657273202270657263656e7461676522203f, 'Y', '2003-08-23 20:31:38');
INSERT INTO `Translations` (`Original_ID`, `Language_ID`, `Text`, `Translated`, `Updated`) VALUES
(564, 11, 0x446174206b616e20616c6c65656e2077616e6e656572206a652061616e2064652062657572742062656e742e0d0a3c554c3e0d0a3c4c493e54776565206f7065656e766f6c67656e64652070617373656e202d2076616e206a6f7520656e2076616e206a6520746567656e7374616e6465722e20446974206973206465206765776f6e65206d616e696572206f6d2065656e2070617274696a2074652065696e646967656e2e20446161726e6120776f7264742061616e206265696465207370656c657273206765767261616764206f6d2064652074652076657277696a646572656e2028646f646529207374656e656e207465206d61726b6572656e2e20566572766f6c67656e73206b656e7420447261676f6e2065656e2073636f726520746f6520656e2062657061616c742064652077696e6e6161722e200d0a0d0a3c4c493e4b6c696b20646520226f70676576656e22206c696e6b2e20416c73206a65206f7067656566742c20686562206a652064652070617274696a207665726c6f72656e2e200d0a0d0a3c4c493e4c61617420646520737065656c74696a64207665726c6f70656e2e203c693e2841736a65626c69656674207a656721204e65656d2065656e2076616e20646520616e64657265206f707469657321293c2f693e200d0a3c2f554c3e0d0a48657420726573756c7461617420776f726474202d20616c732062696a2064652073746172742069732061616e6765676576656e2064617420686574207370656c206d656574656c74202d206e6120656c6b2076616e2064657a65206d616e696572656e206f6d20686574207370656c2074652065696e646967656e20696e20646520726174696e672076616e2062656964652073706c657273207665727765726b742e, 'N', '2003-08-23 20:31:38'),
(568, 4, 0x496368206b656e6e65206d65696e6520537069656c7374e4726b65206e696368742e2057617320736f6c6c206963682065696e676562656e3f, 'Y', '2003-10-30 02:33:18'),
(569, 4, 0x46616c6c7320536965206765726164652065727374206d697420476f20626567696e6e656e2c2064616e6e2073696e6420536965207761687273636865696e6c6963680d0a3c756c3e0d0a20203c6c693e626569203330206b75792c2066616c6c73205369652064696520526567656c6e206b656e6e656e0d0a20203c6c693e6265692032392d3238206b79752c2066616c6c7320536965207363686f6e20496872652065727374656e205061727469656e206765776f6e6e656e20686162656e0d0a20203c6c693e6265692032352d3232206b79752c2066616c6c7320536965205061727469656e20626569204765676e6572206d69742065696e656d20736f6c6368656e2052616e67206765776f6e6e656e20686162656e2e0d0a3c2f756c3e0d0a0d0a536965206bf66e6e656e20626569203c6120687265663d22687474703a2f2f706c61792e626164756b2e6f72672f223e6469652045696e73747566756e677368696c666520766f6e20626164756b2e6f72673c2f613e2076657277656e64656e2e202057656974657273206bf66e6e656e2073696520696d203c686f6d6520666f72756d2f6c6973742e7068703f666f72756d3d323e537570706f72742d466f72756d3c2f686f6d653e20756d2048696c66652066726167656e2e0d0a0d0a45696e6520686f686520537069656c7374e4726b6520287a2e20422e3a20362064616e2920736f6c6c7465206d616e206e757220616e676562656e2c2077656e6e206d616e207369636820646965736572207365687220736963686572206973742c20646120646965736572207370e4746572203c623e6e696368743c2f623e206d656872206e657520676577e4686c742077657264656e206b616e6e2e, 'N', '2010-11-05 23:10:18'),
(573, 4, 0x57617320777572646520766f72206b75727a656d20616e2064696573657220464151206765e46e646572743f, 'Y', '2004-02-24 17:31:52'),
(576, 4, 0x416e204968726520452d4d61696c2d4164726573736520776972642049686e656e2062656920416e66726167652c2065747761207765696c20536965204968722050617373776f72742076657267657373656e20686162656e2c2065696e206e657565732050617373776f727420676573616e64742e0d0a0d0a45696e206e657565732050617373776f727420616e2064696520696e20496872656d2050726f66696c2067657370656963686572746520452d4d61696c2d41647265737365207a752073656e64656e2c206973742065696e652065696e666163686520756e6420756e6b6f6d706c697a6965727465204d6574686f64652c20756d2064656e204d697373627261756368204968726573204b6f6e746f73207a752076657268696e6465726e2e205a756765676562656e3a204573206769627420736963686572657265204d6574686f64656e2c20646f636820776972206df6636874656e206573206e6963687420756e6ef6746967206b6f6d706c697a696572742067657374616c74656e2e0d0a0d0a44696520452d4d61696c2d416472657373652077697264206e6963687420766572f66666656e746c696368742c206e69636874207765697465726765676562656e20756e64206e69636874207665726b617566742e20447261676f6e2072657370656b74696572656e204968726520507269766174737068e47265210d0a0d0a447261676f6e207a77696e6774206e69656d616e64656e2c2065696e6520452d4d61696c2d41647265737365207a752073706569636865726e3b20736f7267656e205369652064616e6e206a65646f63682062697474652073656c62737420646166fc722c206461737320536965206175636820696e2064726569204d6f6e6174656e206e6f6368206461732050617373776f727420496872657320447261676f6e2d4b6f6e746f73206b656e6e656e2e0d0a0d0a4175df657264656d206bf66e6e656e20536965203c686f6d65206661712e7068703f726561643d74266361743d313223456e7472793137333e452d4d61696c2d42656e6163687269636874756e67656e3c2f686f6d653e20626569206e6575656e205afc67656e206f646572204e6163687269636874656e207a75676573616e642062656b6f6d6d656e2c2077656e6e205369652064696573206df6636874656e2e, 'Y', '2007-12-06 16:00:40'),
(577, 4, 0x5769652066756e6b74696f6e6965727420646173206a6170616e69736368652042796f796f6d693f, 'Y', '2007-12-06 15:56:36'),
(579, 4, 0x5769652066756e6b74696f6e6965727420646173206b616e616469736368652042796f796f6d693f, 'Y', '2007-12-06 15:56:36'),
(581, 4, 0x5769652066756e6b74696f6e696572742064617320466973636865722d5a65697473797374656d3f, 'Y', '2004-02-08 20:06:22'),
(583, 4, 0x57656c6368656e2045696e666c75df20686162656e2064696520527568657a656974656e206175662064696520466973636865722d5a6569743f, 'Y', '2003-09-07 15:45:36'),
(585, 4, 0x576173206973742064696520527568657a6569743f, 'Y', '2013-05-09 22:41:29'),
(587, 4, 0x576965736f20737072696e6774206d65696e6520426564656e6b7a656974206e65756e205374756e64656e20766f723f, 'Y', '2007-12-06 15:56:36'),
(589, 4, 0x576172756d206b616e6e206963682064696520527568657a656974206e6963687420e46e6465726e3f, 'Y', '2003-09-07 15:45:36'),
(599, 4, 0x46fc722077656c636865205a6569747a6f6e65206d7573732069636820646965205363686c61667a656974656e20616e676562656e3f, 'Y', '2003-08-15 16:25:57'),
(603, 4, 0x576172756d2077697264206e69652064696520452d4d61696c2d4164726573736520646573204765676e65727320616e67657a656967743f, 'Y', '2007-12-06 16:18:37'),
(607, 4, 0x4b616e6e20696368206265692064657220456e747769636b6c756e6720766f6e20447261676f6e206d697468656c66656e3f, 'Y', '2004-03-03 14:21:32'),
(635, 4, 0x576172756d2073696e64206d616e6368652042656e75747a6572206e696368742061756667656c69737465743f, 'Y', '2004-02-27 13:24:18'),
(639, 4, 0x5765722061726265697465742062656920447261676f6e206d69743f, 'Y', '2004-02-24 00:51:42'),
(643, 4, 0x57656c6368652048544d4c2074616773206b616e6e2069636820696e20447261676f6e2062656e75747a656e3f, 'Y', '2009-07-05 15:28:45'),
(743, 4, 0x476573616e6474, 'Y', '2007-12-07 15:31:05'),
(549, 4, 0x5769657669656c652055726c61756273746167652068616265206963682062656920447261676f6e3f, 'Y', '2003-10-30 02:33:18'),
(550, 4, 0x536965206bf66e6e656e206d6178696d616c2033302055726c61756273746167652070726f204a61687220616e73616d6d656c6e2c20776f62656920536965206a6564656e204d6f6e617420322c352055726c617562737461676520677574676573636872696562656e2062656b6f6d6d656e2e205a7520426567696e6e20686162656e205369652031342055726c6175627374616765207a75722056657266fc67756e672e, 'Y', '2007-12-06 12:50:54'),
(715, 4, 0x5a6569747374656d70656c3a, 'Y', '2007-11-04 12:29:59'),
(742, 4, 0x4dfc6c6c65696d6572, 'Y', '2003-08-15 16:32:48'),
(727, 4, 0xdc626572206469652045696e7374656c6c756e67656e2064696573657220486572617573666f72646572756e6720777572646520257376657268616e64656c742573, 'Y', '2003-08-15 16:47:50'),
(75, 4, 0x4963682066696e646520646173205475726e696572206e696368742e, 'Y', '2004-02-14 19:49:40'),
(627, 4, 0x5761732062656465757465742064696520416b7469766974e4742065696e65732042656e75747a6572733f, 'Y', '2003-08-15 16:57:46'),
(628, 4, 0x44696520416b7469766974e474207a6569677420616e2c20776965206f6674206a656d616e6420696e206c65747a746572205a656974205afc6765206d61636874652e0d0a0d0a32206772fc6e6520537465726e653a206d65687220616c73203730205afc67652070726f204d6f6e61740d0a31206f72616e67657220537465726e3a20206d6974746c6572652042657465696c6967756e670d0a3020537465726e653a2077656e6967657220616c732035205afc67652070726f204d6f6e6174, 'Y', '2007-12-06 16:18:37'),
(631, 4, 0x576965206b616e6e20696368206d65696e20506172746965616e6765626f74206175732064656d2057617274657a696d6d6572206cf6736368656e3f, 'Y', '2007-12-06 16:18:37'),
(605, 4, 0x576965206b616e6e20696368205465787420696e20646572205347462d44617465692073706569636865726e3f, 'Y', '2004-02-20 18:50:51'),
(632, 4, 0x4b6c69636b656e20536965206175662064656e20496e666f6b6e6f706620496872657320537069656c616e6765626f74732e2041756620646572206ee463687374656e20536569746520676962742065732064616e6e2067616e7a20756e74656e2065696e656e204b6e6f7066207a756d204cf6736368656e2064657320537069656c65732e20576972642065696e20537069656c616e6765626f7420696e6e657268616c622065696e6967657220576f6368656e206e6963687420616b7a657074696572742c2077697264206573206175746f6d6174697363682067656cf6736368742e, 'Y', '2007-12-06 14:12:35'),
(562, 4, 0x426973207a756d207a65686e74656e205a7567206bf66e6e656e205369652065696e6520506172746965206265656e64656e2c206f686e6520646173732073696368206469657320617566204968726520426577657274756e67206175737769726b742e2044617320506c61747a696572656e20766f6e20566f7267616265737465696e656e207ae4686c74206e69636874207a752064696573656e207a65686e205afc67656e2e2057696520617563682062656920616e646572656e2045696e676162656e2c2066696e6465742065696e20736f6c63686573204cf6736368656e2064657320537069656c7320696e207a7765692053636872697474656e2073746174743b20736965206dfc7373656e2064656e204cf6736368766f7267616e672062657374e4746967656e2e2045696e20537069656c2c2064617320617566206469657365205765697365206265656e64657420776972642c20686174206b65696e65204175737769726b756e672061756620496872656e2052616e672e200d0a0d0a4e6163682064656d207a65686e74656e205a7567206b616e6e2065696e6520506172746965206e69636874206d65687220766f6d20537069656c65722067656cf6736368742077657264656e2e20536f6c6c74656e205369652064656e6e6f63682065696e65204cf6736368756e672077fc6e736368656e2c20736f206bf66e6e656e205369652065696e656e2041646d696e6973747261746f722062697474656e2c2064696573652064757263687a7566fc6872656e2e20446965736572205363687269747420736f6c6c74652061626572206e7572206572666f6c67656e2c2077656e6e205369652064656e6b656e2c206461737320646965204265656e646967756e672064657320537069656c732061757320677574656e204772fc6e64656e206162736f6c7574206e6f7477656e646967206973742e20556d2065696e6520537069656c6cf6736368756e672064757263682065696e656e2041646d696e6973747261746f72207a7520766572616e6c617373656e2c20706c61747a696572656e205369652062697474652065696e656e2045696e7472616720696d203c686f6d6520666f72756d2f6c6973742e7068703f666f72756d3d323e537570706f727420466f72756d3c2f686f6d653e20756e642065726b6ce472656e2053696520496872656e2057756e7363682e, 'Y', '2013-03-16 03:51:35'),
(532, 4, 0x5a77656920537069656c65722076657273756368656e2c206175662065696e656d207175616472617469736368656e20537069656c62726574742047656269657465207a7520756d7a696e67656c6e2e2044696520537465696e652077657264656e2061756620646965205363686e69747470756e6b746520646572204c696e69656e2067657365747a742e20426569646520537069656c6572207365747a656e2061627765636873656c6e6420617566206672656965205363686e69747470756e6b74652c20776f626569205363687761727a20626567696e6e742e0d0a0d0adc626c696368657277656973652077697264206175662065696e656d2031397831392d4272657474206765737069656c742c20616c6c657264696e67732077657264656e20617563682031337831332d20756e64203978392d427265747465722076657277656e6465742e0d0a0d0a46616c6c73206e6163682064656d205365747a656e2064657320537465696e65732065696e6520646572206765676e657269736368656e204b657474656e202865696e65204b65747465206973742065696e652047727570706520766f6e20537465696e656e20676c6569636865722046617262652c2077656c63686520686f72697a6f6e74616c206f6465722076657274696b616c20646972656b74206e6562656e65696e616e646572206c696567656e29206b65696e65204672656968656974656e20286e696368742062657365747a746520616e6772656e7a656e6465205363686e69747470756e6b746529206d656872206861742c2077657264656e2064696520537465696e65206469657365722047727570706520766f6d2042726574742067656e6f6d6d656e2028756e642064616d6974207a7520476566616e67656e656e292e0d0a0d0a45696e205a75672c206265692077656c6368656d206e6163682064656d20456e746665726e656e20736f6c6368657220476566616e67656e65722065696e6520656967656e6520477275707065206b65696e65204672656968656974656e206d6568722062657369747a742028736f67656e616e6e7465722053656c6273746d6f7264292c2069737420766572626f74656e2e0d0a0d0a57656e6e20626569646520537069656c65722068696e74657265696e616e6465722070617373656e2c2067696c74206469652050617274696520616c73206265656e64657420756e6420776972642061757367657ae4686c742e20446965206e65757472616c656e2050756e6b7465202844616d65292077657264656e20617573676566fc6c6c7420756e6420746f746520537465696e6520656e746665726e742e2047657ae4686c7420776972642064616e616368206461732065696e67657363686c6f7373656e65204765626965742061627afc676c6963682064656e20766f6d204765676e657220676566616e67656e656e20537465696e656e2e0d0a0d0a536965686520617563683a203c6120687265663d22687474703a2f2f706c6179676f2e746f2f696e7465726163746976652f6765726d616e2f22207461726765743d226e6577223e44657220696e746572616b7469766520576567207a756d20476f3c2f613e, 'Y', '2007-12-06 15:00:11'),
(558, 4, 0x45732067696274206d656872657265204df6676c6963686b656974656e2c2065696e6520506172746965207a7520626567696e6e656e3a3c554c3e0d0a0d0a3c4c493e45696e20537069656c206175732064656d203c686f6d652077616974696e675f726f6f6d2e7068703e57617274657a696d6d65723c2f686f6d653e20616e6e65686d656e0d0a0d0a536965206bf66e6e656e20696d2057617274657a696d6d6572206e6163682065696e656d206e6575656e204765676e65722073756368656e2e204b6c69636b656e20536965207a756572737420617566203c686f6d652077616974696e675f726f6f6d2e7068703e57617274657a696d6d65723c2f686f6d653e20696d2048617570746d656efc2c2064616e6163682073756368656e205369652065696e20537069656c2061757320756e64206b6c69636b656e2064616e6e206175662064656e20496e666f6b6e6f7066206c696e6b732e20556e74656e2077657264656e206e756e2044657461696c732065696e6765626c656e6465742c20756e6420536965206bf66e6e656e20656e74736368656964656e2c206f62205369652064617320537069656c20616e6e65686d656e2e0d0a0d0a3c4c493e45696e20537069656c20696d203c686f6d652077616974696e675f726f6f6d2e7068703e57617274657a696d6d65723c2f686f6d653e20616e62696574656e0d0a0d0a57656e6e2049686e656e206b65696e65732064657220537069656c6520696d203c686f6d652077616974696e675f726f6f6d2e7068703e57617274657a696d6d65723c2f686f6d653e207a75736167742c203c686f6d65206661712e7068703f726561643d74266361743d33353723456e7472793231303e736f206bf66e6e656e205369652073656c6265722065696e20537069656c20696d2057617274657a696d6d657220616e62696574656e3c2f686f6d653e2e204b6c69636b656e2053696520646166fc722061756620223c693e4e6575657320537069656c3c2f693e2220616d20456e6465206465722057617274657a696d6d65722d53656974652e20496e2064657220526567656c20776972642065696e206e657565696e67657374656c6c74657320537069656c20696e6e657268616c622077656e69676572205461676520766f6e2065696e656d20616e646572656e20537069656c657220616e67656e6f6d6d656e2e0d0a0d0a3c4c493e4a656d616e64656e20686572617573666f726465726e0d0a0d0a57656e6e2053696520646965204944206465732062657472656666656e64656e204d6974737069656c657273206b656e6e656e2c206bf66e6e656e205369652069686e20696d2048617570746d656efc203c686f6d65206661712e7068703f726561643d74266361743d33353723456e7472793231323e686572617573666f726465726e3c2f686f6d653e2c20696e64656d205369652064656e204c696e6b203c686f6d65206d6573736167652e7068703f6d6f64653d496e766974653e486572617573666f726465726e3c2f686f6d653e20616e77e4686c656e2e204c6567656e20536965206968726520676577fc6e73636874656e2045696e7374656c6c756e67656e206665737420756e642073656e64656e205369652064696520486572617573666f72646572756e672061622e20496872204d6974737069656c6572206b616e6e206d69742049686e656e20fc626572206469652045696e7374656c6c756e67656e2076657268616e64656c6e2c2077656e6e206572206df6636874652e2044657320776569746572656e2066696e646574207369636820616d20456e6465206465722042656e75747a6572696e666f726d6174696f6e656e207a75206a6564656d20537069656c65722065696e204c696e6b2028223c693e44696573656e2042656e75747a657220686572617573666f726465726e3c2f693e22292e0d0a0d0a3c2f554c3e, 'Y', '2013-05-09 22:41:29'),
(1289, 4, 0x576965206b616e6e206963682065696e656e204c696e6b206175662064696520496e666f2053656974652065696e65732055736572732065727a657567656e3f, 'Y', '2009-07-05 15:33:39'),
(1291, 4, 0x576965206b616e6e206963682065696e656e204c696e6b2065727a657567656e2c20756d2065696e65204e616368726963687420616e2065696e656e2042656e75747a6572207a752073636869636b656e3f, 'Y', '2009-07-05 15:35:22'),
(560, 4, 0x41756620646572203c686f6d65207374617475732e7068703e53746174757373656974653c2f686f6d653e20736568656e205369652065696e65204c697374652064657220537069656c652c20696e2077656c6368656e2053696520616d205a75672073696e642e2057656e6e20536965206175662064696520537069656c6e756d6d6572206b6c69636b656e2c20776972642064617320537069656c20616e67657a656967742e0d0a0d0a446f7274206bf66e6e656e205369652065696e656e20537465696e207365747a656e2c20696e64656d20536965206175662065696e65206672656965205374656c6c65206175662064656d204272657474206b6c69636b656e2e2057657264656e2064616475726368206765676e6572697363686520537465696e6520676566616e67656e2c20656e746665726e742064657220536572766572206469657365206175746f6d6174697363682e20556d207a752070617373656e206f646572206175667a75676562656e2c206b6c69636b656e20536965206175662064696520656e74737072656368656e64656e204c696e6b7320756e7465722064656d2042726574743b2061756620646572206ee463687374656e205365697465206bf66e6e656e205369652064616e6e206968726520676577e4686c746520416b74696f6e2062657374e4746967656e2e, 'Y', '2009-07-04 09:57:35'),
(564, 4, 0x44617320697374206e7572206df6676c6963682c2077656e6e203c623e5369653c2f623e20616d205a75672073696e642e0d0a3c756c3e0d0a3c6c693e53696520756e6420696872204765676e65722070617373656e20646972656b74206e61636865696e616e6465722e20446173206973742064696520fc626c696368652057656973652c2065696e20537069656c207a75206265656e64656e2e20416c73206ee4636873746573206d61726b696572656e2062656964652064696520746f74656e20537465696e653b2064616e616368207769726420447261676f6e2064617320537069656c20626577657274656e20756e642064656e205369656765722062657374696d6d656e2e3c2f6c693e0d0a0d0a3c6c693e5369652062656e75747a656e2064656e20417566676562656e6b6e6f70662e2044616d6974206973742064617320537069656c2066fc7220536965207665726c6f72656e2028756e6420696872652057657274756e672077697264206573207369636820656e74737072656368656e642077696465727370696567656c6e292e3c2f6c693e0d0a0d0a3c6c693e536965206c617373656e2064696520426564656e6b7a6569742076657273747265696368656e203c693e284e75747a656e20536965206469657365204df6676c6963686b656974206269747465206e6963687420616273696368746c696368293c2f693e2e2053696520686162656e2064616e6e207665726c6f72656e2e3c2f6c693e0d0a3c2f756c3e, 'Y', '2013-05-09 22:41:29'),
(644, 4, 0x3c656d3e48696572206973742065696e65204c6973746520766f6e20617566204447532065726c61756274656e2048544d4c20546167732c206d697420426569737069656c656e2e202045696e6520766f6c6c7374e46e6469676520426573636872656962756e6720646572205461677320776972642068696572206e69636874206765676562656e3b2065696e65205265666572656e7a207a752048544d4c206bf66e6e656e20536965206265696d203c6120687265663d22687474703a2f2f7777772e77332e6f72672f223e576f726c6420576964652057656220436f6e736f727469756d3c2f613e2066696e64656e2e3c2f656d3e0d0a0d0a3c636f64653e3c623e666574742067657365747a74657220546578743c2f623e3c2f636f64653e0d0a3c623e666574742067657365747a74657220546578743c2f623e0d0a0d0a3c636f64653e3c753e756e746572737472696368656e657220546578743c2f753e3c2f636f64653e0d0a3c753e756e746572737472696368656e657220546578743c2f753e0d0a0d0a3c636f64653e3c693e6b75727369762067657365747a74657220546578743c2f693e3c2f636f64653e0d0a3c693e6b75727369762067657365747a74657220546578743c2f693e0d0a0d0a3c636f64653e3c656d3e6265746f6e74657220546578743c2f656d3e3c2f636f64653e0d0a3c656d3e6265746f6e74657220546578743c2f656d3e0d0a0d0a3c636f64653e3c7374726f6e673e737461726b20686572766f726765686f62656e657220546578743c2f7374726f6e673e3c2f636f64653e0d0a3c7374726f6e673e737461726b20686572766f726765686f62656e657220546578743c2f7374726f6e673e0d0a0d0a3c636f64653e3c74743e65696e7a656c6e65205a65696c6520696e206765737065727274657220536368726966743c2f74743e3c2f636f64653e0d0a3c74743e65696e7a656c6e65205a65696c6520696e206765737065727274657220536368726966743c2f74743e0d0a0d0a3c636f64653e3c7072653e4d656865727a65696c696765722c0d0a766f72666f726d617469657274657220546578740d0a696e206765737065727274657220536368726966743c2f7072653e3c2f636f64653e0d0a3c7072653e4d656865727a65696c696765722c0d0a766f72666f726d617469657274657220546578740d0a696e206765737065727274657220536368726966743c2f7072653e0d0a0d0a3c636f64653e0d0a3c666f6e7420636f6c6f723d22726564223e726f74657220546578743c2f666f6e743e0d0a3c666f6e7420636f6c6f723d226f72616e6765223e6f72616e67657220546578743c2f666f6e743e0d0a3c666f6e7420636f6c6f723d2279656c6c6f77223e67656c62657220546578743c2f666f6e743e0d0a3c666f6e7420636f6c6f723d22677265656e223e6772fc6e657220546578743c2f666f6e743e0d0a3c666f6e7420636f6c6f723d22626c7565223e626c6175657220546578743c2f666f6e743e0d0a3c666f6e7420636f6c6f723d22696e6469676f223e696e6469676f2d666172626967657220546578743c2f666f6e743e0d0a3c666f6e7420636f6c6f723d2276696f6c6574223e76696f6c657474657220546578743c2f666f6e743e0d0a3c666f6e7420636f6c6f723d227768697465223e776569df657220546578743c2f666f6e743e0d0a3c666f6e7420636f6c6f723d22626c61636b223e7363687761727a657220546578743c2f666f6e743e0d0a3c2f636f64653e0d0a3c666f6e7420636f6c6f723d22726564223e726f74657220546578743c2f666f6e743e0d0a3c666f6e7420636f6c6f723d226f72616e6765223e6f72616e67657220546578743c2f666f6e743e0d0a3c666f6e7420636f6c6f723d2279656c6c6f77223e67656c62657220546578743c2f666f6e743e0d0a3c666f6e7420636f6c6f723d22677265656e223e6772fc6e657220546578743c2f666f6e743e0d0a3c666f6e7420636f6c6f723d22626c7565223e626c6175657220546578743c2f666f6e743e0d0a3c666f6e7420636f6c6f723d22696e6469676f223e696e6469676f2d666172626967657220546578743c2f666f6e743e0d0a3c666f6e7420636f6c6f723d2276696f6c6574223e76696f6c657474657220546578743c2f666f6e743e0d0a3c666f6e7420636f6c6f723d227768697465223e776569df657220546578743c2f666f6e743e0d0a3c666f6e7420636f6c6f723d22626c61636b223e7363687761727a657220546578743c2f666f6e743e0d0a0d0a3c636f64653e4b6c616d6d65726e3a20266c743b202667743b3c2f636f64653e0d0a4b6c616d6d65726e3a20266c743b202667743b0d0a0d0a3c636f64653e416d70657273616e643a2026616d703b3c2f636f64653e0d0a416d70657273616e643a2026616d703b0d0a0d0a3c636f64653e4e696368742d756d6272656368656e646573204c6565727a65696368656e3a203e266e6273703b3c3c2f636f64653e0d0a4e696368742d756d6272656368656e646573204c6565727a65696368656e3a202667743b266e6273703b266c743b0d0a0d0a3c636f64653e0d0a3c756c3e0d0a3c6c693e756e67656f72646e657465204c697374653c2f6c693e0d0a3c6c693e756e67656f72646e657465204c697374653c2f6c693e0d0a3c6c693e756e67656f72646e657465204c697374653c2f6c693e0d0a3c6c693e756e67656f72646e657465204c697374653c2f6c693e0d0a3c6c693e756e67656f72646e657465204c697374653c2f6c693e0d0a3c2f756c3e0d0a3c2f636f64653e0d0a3c756c3e0d0a3c6c693e756e67656f72646e657465204c697374653c2f6c693e0d0a3c6c693e756e67656f72646e657465204c697374653c2f6c693e0d0a3c6c693e756e67656f72646e657465204c697374653c2f6c693e0d0a3c6c693e756e67656f72646e657465204c697374653c2f6c693e0d0a3c6c693e756e67656f72646e657465204c697374653c2f6c693e0d0a3c2f756c3e0d0a0d0a3c636f64653e0d0a3c6f6c3e0d0a3c6c693e6e756d6d65726965727465204c697374653c2f6c693e0d0a3c6c693e6e756d6d65726965727465204c697374653c2f6c693e0d0a3c6c693e6e756d6d65726965727465204c697374653c2f6c693e0d0a3c6c693e6e756d6d65726965727465204c697374653c2f6c693e0d0a3c6c693e6e756d6d65726965727465204c697374653c2f6c693e0d0a3c2f6f6c3e0d0a3c2f636f64653e0d0a3c6f6c3e0d0a3c6c693e6e756d6d65726965727465204c697374653c2f6c693e0d0a3c6c693e6e756d6d65726965727465204c697374653c2f6c693e0d0a3c6c693e6e756d6d65726965727465204c697374653c2f6c693e0d0a3c6c693e6e756d6d65726965727465204c697374653c2f6c693e0d0a3c6c693e6e756d6d65726965727465204c697374653c2f6c693e0d0a3c2f6f6c3e0d0a0d0a3c636f64653e45696e20676577f6686e6c696368657220566572776569733a203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e6574223e447261676f6e20476f205365727665723c2f613e3c2f636f64653e0d0a45696e20676577f6686e6c696368657220566572776569733a203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e6574223e447261676f6e20476f205365727665723c2f613e, 'N', '2010-04-02 01:17:42'),
(1294, 4, 0x56657277656e64656e205369652064656e20266c743b67616d65204749442667743b20447261676f6e2054616720756d206175662065696e6520506172746965207a752076657277656973656e2e202056657277656e64656e205369652064656e20266c743b67616d65204749442c6d6f76652667743b20447261676f6e205461672c20756d206175662065696e656e2062657374696d6d74656e205a7567207a752076657277656973656e2e202045696e69676520426569737069656c653a0d0a0d0a3c636f64653e3c67616d652031333333393e3c2f636f64653e0d0a3c67616d652031333333393e0d0a0d0a3c636f64653e3c67616d652031333333392c35303e3c2f636f64653e0d0a3c67616d652031333333392c35303e, 'N', '2010-04-02 01:35:07'),
(662, 4, 0x5a77656920537069656c657220756e7465727363686965646c6963686572205374e4726b65206bf66e6e656e2028756e6420736f6c6c74656e292073696368206461726175662065696e6967656e2c206461df2064617320537069656c206d6974207a7573e4747a6c696368656e20566f7267616265737465696e656e2066fc722064656e2073636877e463686572656e20537069656c657220626567696e6e742e0d0a0d0a4469657365207363687761727a656e20537465696e65206b6f6d70656e73696572656e2064696520756e7465727363686965646c696368656e20537069656c7374e4726b656e2064657220537069656c65722e204d697420566f7267616265737465696e656e20776972642064617320537069656c20696e746572657373616e74657220756e6420646965204368616e63656e2073696e6420676c656963686de4df69676572207665727465696c742e0d0a0d0a4175662064656d20fc626c696368652031397831392d4272657474206973742064696520416e7a61686c2064657220566f7267616265737465696e6520676c656963682064656d20537069656c7374e4726b65756e7465727363686965643b20617566206b6c65696e6572656e20427265747465726e206769627420657320656e74737072656368656e642077656e6967657220537465696e652e0d0a0d0adc626c696368657277656973652077657264656e2064696520566f7267616265737465696e652061756620646965203c686f6d65206661712e7068703f726561643d74266361743d3323456e74727938393e486f736869733c2f686f6d653e2067657365747a742c20776f6265692064696520416e6f72646e756e6720766f6e2064657220416e7a61686c2064657220537465696e6520616268e46e67742e0d0a0d0a57656e6e20646965204f7074696f6e203c686f6d65206661712e7068703f726561643d74266361743d33353723456e7472793132393e5374616e64617264706c61747a696572756e673c2f686f6d653e20696e2065696e656d20537069656c616e6765626f7420617573676577e4686c742077757264652c2077657264656e2064696520566f7267616265737465696e65206175662064656e20486f7368697320706c61747a696572743b20616e6465726e66616c6c732064617266205363687761727a2073696368207365696e6520566f7267616265737465696e652073656c627374206e6163682042656c696562656e207365747a656e2e, 'Y', '2009-07-04 09:53:33'),
(530, 4, 0x5374656c6c656e20536965206968726520467261676520696d204641512d206f64657220696d20476f2d466f72756d2e2041636874656e20536965206461726175662c20646173732053696520736f776f686c20736368696c6465726e2c2077656c63686520526567656c205369652065726b6ce4727420686162656e206df6636874656e2c20616c7320617563682c20696e2077656c6368656e20536974756174696f6e656e2064696573652049686e656e20756e6b6c6172206973742e, 'Y', '2004-02-08 20:03:26'),
(750, 11, 0x4b6f726561616e73, 'Y', '2003-08-18 14:13:32'),
(679, 11, 0x486574206565727374652067656465656c74652076616e20646520726174696e672067656566742064652068756964696765203c6120687265663d222f6661712e7068703f726561643d74266361743d3323456e7472793339223e64616e3c2f613e206f66203c6120687265663d222f6661712e7068703f726561643d74266361743d3323456e7472793338223e6b79753c2f613e2072616e672061616e2e20486574207477656564652067656465656c7465202874757373656e2074652074656b737468616b656e292067656566742061616e20686f6520737465726b2069656d616e64206461617262696e6e656e2069732e0d0a45656e20766f6f726265656c643a202231206b797520282b34302529222069732065656e20737465726b652031206b797520726174696e67202862696a6e6120737465726b2067656e6f656720766f6f722031652064616e292e, 'N', '2003-08-23 20:31:38'),
(680, 11, 0x5761742067656566742065656e20272b27206f662065656e20272d27206163687465722065656e20726174696e672061616e3f, 'Y', '2003-08-23 20:31:38'),
(681, 11, 0x496e746572206765627275696b7420447261676f6e2065656e2073797374656d2c2077616172696e2065656e20766572736368696c2076616e203120737465656e206f76657265656e6b6f6d74206d65742065656e20766572736368696c2076616e203130302070756e74656e2e0d0a0d0a566f6f726265656c64656e3a0d0a0d0a37206b7975202820302529203d20313430302070756e74656e0d0a37206b797520282b33302529203d20313433302070756e74656e0d0a36206b797520282d34382529203d20313435322070756e74656e0d0a36206b7975202820302529203d20313530302070756e74656e, 'N', '2003-08-18 14:29:30'),
(684, 11, 0x5761742067656566742068657420626c617577652067656269656420696e20646520726174696e672d6772616669656b2061616e3f, 'Y', '2003-08-18 14:29:30'),
(688, 11, 0x5761742069732065656e2064756262656c652070617274696a3f, 'Y', '2003-08-18 14:29:30'),
(700, 11, '', 'N', '2007-06-04 15:49:02'),
(701, 11, 0x45656e20646961676f6e616c65207a6574206469726563742061616e206865742065696e642076616e2065656e2076696a616e64656c696a6b65206b6574656e2e, 'N', '2003-08-18 14:29:30'),
(702, 11, 0x4e657420284765746129, 'N', '2004-02-07 17:40:34'),
(704, 11, '', 'N', '2007-06-04 15:49:02'),
(706, 11, 0x53686963686f206f66206c6164646572, 'N', '2004-02-07 17:40:34'),
(708, 11, 0x486565667420646520626f726467726f6f74746520696e766c6f6564206f702068657420726174696e672d6566666563742076616e2065656e2070617274696a3f, 'Y', '2003-08-18 14:29:30'),
(709, 11, 0x31397831392070617274696a656e2068656262656e206865742067726f6f74737465206566666563742e0d0a547765652031337831332070617274696a656e2074656c6c656e20616c732065656e2031397831392070617274696a2e0d0a54776565203978392070617274696a656e2074656c6c656e20616c732065656e2031337831332070617274696a2e, 'N', '2003-08-18 14:29:30'),
(1, 15, 0xebaaa8eb93a020ed95b8eb9494ecbaa120eb8f8cec9db420ebb0b0ecb998eb9098eab8b020eca084ec979020ebafb8ec958820ed95b4ec9a942c20eb8bb9ec8ba0ec9db420ed86b5eab3bceb9098eca78020ec958aec9d8420ec889820ec9e88ec8ab5eb8b88eb8ba42e, 'Y', '2011-01-17 19:03:09'),
(590, 4, 0x4d616e206bf66e6e746520736f6e737420647265696d616c20616d205461672064696520527568657a656974656e20e46e6465722c20736f206461df2064696520426564656e6b7a656974206e69656d616c732061626c696566652e0d0a0d0a4d616e206b616e6e2064696520527568657a6569742064657368616c62206e75722064616e6e207665727374656c6c656e2c2077656e6e206d616e20736965206e69636874206bfc727a6c6963682065727374206765e46e64657274206861742e, 'Y', '2007-12-06 15:56:36'),
(594, 4, 0x4a612c20536965206bf66e6e656e2064656d204765676e657220696d6d6572207a7573e4747a6c6963686520426564656e6b7a65697420676562656e2c20696e64656d20536965206175662064656e20656e74737072656368656e64656e204c696e6b20756e74657268616c6220646573204272657474657320696e2065696e657220506172746965206b6c69636b656e2e20536965206bf66e6e656e20646162656920736f776f686c2065696e69676520546167652064657220476573616d747a6569742068696e7a7566fc67656e2c20616c732061756368206469652042796f796f6d69205370616e6e65207a7572fc636b7365747a656e20286175df65722062656920466973636865722d5a656974292e20446965207a7573e4747a6c69636865205a656974207769726420696d20506172746965696e666f726d6174696f6e736b617374656e20616e67657a656967742e, 'N', '2010-04-02 21:39:24'),
(750, 5, 0x436f72e9656e, 'Y', '2003-08-20 01:33:21'),
(756, 5, 0x41666768616e697374616e, 'Y', '2003-08-20 15:27:25'),
(780, 5, 0x4272e973696c, 'Y', '2003-08-20 01:50:39'),
(757, 5, 0x416c62616e6965, 'Y', '2003-08-20 15:27:25'),
(758, 5, 0x416c67e9726965, 'Y', '2003-08-20 15:27:25'),
(759, 5, 0x416e646f727265, 'Y', '2003-08-20 15:27:25'),
(760, 5, 0x416e676f6c61, 'Y', '2003-08-20 15:27:25'),
(761, 5, 0x416e746172637469717565, 'Y', '2003-08-20 15:27:25'),
(762, 5, 0x416e74696775612065742042617262756461, 'N', '2003-08-20 15:27:25'),
(763, 5, 0x417267656e74696e65, 'Y', '2003-08-20 15:27:25'),
(764, 5, 0x41726de96e6965, 'Y', '2003-08-20 15:27:25'),
(765, 5, 0x4175737472616c6965, 'Y', '2003-08-20 15:27:25'),
(766, 5, 0x4175747269636865, 'Y', '2003-08-20 15:27:25'),
(767, 5, 0x417a65726261ef646a616e, 'Y', '2003-08-20 15:27:25'),
(768, 5, 0x426168616d6173, 'Y', '2003-08-20 15:27:25'),
(769, 5, 0x4261687265ef6e, 'Y', '2003-08-20 15:27:25'),
(770, 5, 0x42617262616465, 'Y', '2003-08-20 15:27:25'),
(771, 5, 0x42616e676c6164657368, 'Y', '2003-08-20 15:27:25'),
(772, 5, 0x4269e96c6f727573736965, 'Y', '2003-08-20 15:27:25'),
(773, 5, 0x42656c6769717565, 'Y', '2003-08-20 15:27:25'),
(774, 5, 0x42656c697a65, 'Y', '2003-08-20 15:27:25'),
(775, 5, 0x42e96e696e, 'Y', '2003-08-20 15:27:25'),
(776, 5, 0x42686f7574616e, 'Y', '2003-08-20 15:27:25'),
(777, 5, 0x426f6c69766965, 'Y', '2003-08-20 15:27:25'),
(779, 5, 0x426f747377616e61, 'Y', '2003-08-20 15:27:25'),
(782, 5, 0x42756c6761726965, 'Y', '2003-08-20 15:27:25'),
(783, 5, 0x4275726b696e61204661736f, 'Y', '2003-08-20 15:27:25'),
(784, 5, 0x427572756e6469, 'Y', '2003-08-20 15:27:25'),
(785, 5, 0x43616d626f646765, 'Y', '2003-08-20 15:27:25'),
(786, 5, 0x43616d65726f756e, 'Y', '2003-08-20 15:27:25'),
(787, 5, 0x43616e616461, 'Y', '2003-08-20 15:27:25'),
(788, 5, 0x4361702d56657274, 'Y', '2003-08-20 15:27:25'),
(789, 5, 0x43656e747261667269717565, 'Y', '2003-08-20 15:27:25'),
(790, 5, 0x5463686164, 'Y', '2003-08-20 15:27:25'),
(791, 5, 0x4368696c69, 'Y', '2003-08-20 15:27:25'),
(792, 5, 0x4368696e65, 'Y', '2003-08-20 15:27:25'),
(793, 5, 0x436f6c6f6d626965, 'Y', '2003-08-20 15:27:25'),
(794, 5, 0x436f6d6f726573, 'Y', '2003-08-20 15:27:25'),
(795, 5, 0x436f6e676f2d4272617a7a6176696c6c65, 'Y', '2003-08-20 15:27:25'),
(796, 5, 0x436f6e676f2d4b696e7368617361, 'Y', '2003-08-20 15:27:25'),
(797, 5, 0x436f7374612052696361, 'Y', '2003-08-20 15:27:25'),
(798, 5, 0x43f4746520642749766f697265, 'Y', '2003-08-20 15:27:25'),
(799, 5, 0x43726f61746965, 'Y', '2003-08-20 15:27:25'),
(800, 5, 0x43756261, 'Y', '2003-08-20 15:27:25'),
(801, 5, 0x436879707265, 'Y', '2003-08-20 15:27:25'),
(802, 5, 0x52e97075626c6971756520746368e8717565, 'Y', '2003-08-20 15:27:25'),
(803, 5, 0x44616e656d61726b, 'Y', '2003-08-20 15:27:25'),
(804, 5, 0x446a69626f757469, 'Y', '2003-08-20 15:27:25'),
(805, 5, 0x446f6d696e69717565, 'Y', '2003-08-20 15:27:25'),
(806, 5, 0x52e97075626c6971756520646f6d696e696361696e65, 'Y', '2003-08-20 15:27:25'),
(808, 5, 0xc971756174657572, 'Y', '2003-08-20 15:27:25'),
(809, 5, 0xc96779707465, 'Y', '2003-08-20 15:27:25'),
(810, 5, 0x456c2053616c7661646f72, 'Y', '2003-08-20 15:27:25'),
(811, 5, 0x4775696ee96520e9717561746f7269616c65, 'Y', '2003-08-20 15:27:25'),
(812, 5, 0xc97279746872e965, 'Y', '2003-08-20 15:27:25'),
(813, 5, 0x4573746f6e6965, 'Y', '2003-08-20 15:27:25'),
(814, 5, 0xc97468696f706965, 'Y', '2003-08-20 15:27:25'),
(815, 5, 0x4669646a69, 'Y', '2003-08-20 15:27:25'),
(816, 5, 0x46696e6c616e6465, 'Y', '2003-08-20 15:27:25'),
(817, 5, 0x4672616e6365, 'Y', '2003-08-20 15:27:25'),
(818, 5, 0x4761626f6e, 'Y', '2003-08-20 15:27:25'),
(819, 5, 0x47616d626965, 'Y', '2003-08-20 15:27:25'),
(820, 5, 0x47e96f72676965, 'Y', '2003-08-20 15:27:25'),
(821, 5, 0x416c6c656d61676e65, 'Y', '2003-08-20 15:27:25'),
(822, 5, 0x4768616e61, 'Y', '2003-08-20 15:27:25'),
(823, 5, 0x4772e86365, 'Y', '2003-08-20 15:27:25'),
(824, 5, 0x4772656e616465, 'Y', '2003-08-20 15:27:25'),
(825, 5, 0x47756174656d616c61, 'Y', '2003-08-20 15:27:25'),
(826, 5, 0x4775696ee965, 'Y', '2003-08-20 15:27:25'),
(827, 5, 0x4775696ee9652d426973736175, 'Y', '2003-08-20 15:27:25'),
(828, 5, 0x477579616e61, 'Y', '2003-08-20 15:27:25'),
(829, 5, 0x4861ef7469, 'Y', '2003-08-20 15:27:25'),
(830, 5, 0x486f6e6475726173, 'Y', '2003-08-20 15:27:25'),
(831, 5, 0x486f6e672d4b6f6e67, 'Y', '2003-08-20 15:27:25'),
(832, 5, 0x486f6e67726965, 'Y', '2003-08-20 15:27:25'),
(833, 5, 0x49736c616e6465, 'Y', '2003-08-20 15:27:25'),
(834, 5, 0x496e6465, 'Y', '2003-08-20 15:27:25'),
(835, 5, 0x496e646f6ee9736965, 'Y', '2003-08-20 15:27:25'),
(836, 5, 0x4972616e, 'Y', '2003-08-20 15:27:25'),
(837, 5, 0x49726171, 'Y', '2003-08-20 15:27:25'),
(838, 5, 0x49726c616e6465, 'Y', '2003-08-20 15:27:25'),
(839, 5, 0x49737261eb6c, 'Y', '2003-08-20 15:27:25'),
(840, 5, 0x4974616c6965, 'Y', '2003-08-20 15:27:25'),
(841, 5, 0x4a616d61ef717565, 'Y', '2003-08-20 15:27:25'),
(842, 5, 0x4a61706f6e, 'Y', '2003-08-20 15:27:25'),
(843, 5, 0x4a6f7264616e6965, 'Y', '2003-08-20 15:27:25'),
(845, 5, 0x4b656e7961, 'Y', '2003-08-20 15:27:25'),
(846, 5, 0x4b69726962617469, 'Y', '2003-08-20 15:27:25'),
(849, 5, 0x4b6f7765ef74, 'Y', '2003-08-20 15:27:25'),
(850, 5, 0x4b69726768697a697374616e, 'Y', '2003-08-20 15:27:25'),
(851, 5, 0x4c616f73, 'Y', '2003-08-20 15:27:25'),
(852, 5, 0x4c6574746f6e6965, 'Y', '2003-08-20 15:27:25'),
(853, 5, 0x4c6962616e, 'Y', '2003-08-20 15:27:25'),
(854, 5, 0x4c65736f74686f, 'Y', '2003-08-20 15:27:25'),
(855, 5, 0x4c6962e9726961, 'Y', '2003-08-20 15:27:25'),
(856, 5, 0x4c79626965, 'Y', '2003-08-20 15:27:25'),
(857, 5, 0x4c6965636874656e737465696e, 'Y', '2003-08-20 15:27:25'),
(858, 5, 0x4c697475616e6965, 'Y', '2003-08-20 15:27:25'),
(859, 5, 0x4c7578656d626f757267, 'Y', '2003-08-20 15:27:25'),
(861, 5, 0x4d6163e9646f696e65, 'Y', '2003-08-20 15:27:25'),
(862, 5, 0x4d616461676173636172, 'Y', '2003-08-20 15:27:25'),
(863, 5, 0x4d616c617769, 'Y', '2003-08-20 15:27:25'),
(864, 5, 0x4d616c6169736965, 'Y', '2003-08-20 15:27:25'),
(865, 5, 0x4d616c6469766573, 'Y', '2003-08-20 15:27:25'),
(866, 5, 0x4d616c69, 'Y', '2003-08-20 15:27:25'),
(867, 5, 0x4d616c7465, 'Y', '2003-08-20 15:27:25'),
(868, 5, 0x496c6573204d61727368616c6c, 'Y', '2003-08-20 15:27:25'),
(869, 5, 0x4d6175726974616e6965, 'Y', '2003-08-20 15:27:25'),
(870, 5, 0x4d617572696365, 'Y', '2003-08-20 15:27:25'),
(871, 5, 0x4d657869717565, 'Y', '2003-08-20 15:27:25'),
(872, 5, 0x4d6963726f6ee9736965, 'Y', '2003-08-20 15:27:25'),
(873, 5, 0x4d6f6c6461766965, 'Y', '2003-08-20 15:27:25'),
(874, 5, 0x4d6f6e61636f, 'Y', '2003-08-20 15:27:25'),
(875, 5, 0x4d6f6e676f6c6965, 'Y', '2003-08-20 15:27:25'),
(876, 5, 0x4d61726f63, 'Y', '2003-08-20 15:27:25'),
(877, 5, 0x4d6f7a616d6269717565, 'Y', '2003-08-20 15:27:25'),
(878, 5, 0x4d79616e6d6172, 'Y', '2003-08-20 15:27:25'),
(879, 5, 0x4e616d69626965, 'Y', '2003-08-20 15:27:25'),
(880, 5, 0x4e61757275, 'Y', '2003-08-20 15:27:25'),
(881, 5, 0x4ee970616c, 'Y', '2003-08-20 15:27:25'),
(882, 5, 0x506179732d426173, 'Y', '2003-08-20 15:27:25'),
(883, 5, 0x4e6f7576656c6c652d5ae96c616e6465, 'Y', '2003-08-20 15:27:25'),
(884, 5, 0x4e6963617261677561, 'Y', '2003-08-20 15:27:25'),
(885, 5, 0x4e69676572, 'Y', '2003-08-20 15:27:25'),
(886, 5, 0x4e6967e9726961, 'Y', '2003-08-20 15:27:25'),
(887, 5, 0x4e6f7276e86765, 'Y', '2003-08-20 15:27:25'),
(888, 5, 0x53756c74616e61742064274f6d616e, 'Y', '2003-08-20 15:27:25'),
(889, 5, 0x50616b697374616e, 'Y', '2003-08-20 15:27:25'),
(890, 5, 0x50616c6175, 'Y', '2003-08-20 15:27:25'),
(892, 5, 0x50616e616d61, 'Y', '2003-08-20 15:27:25'),
(893, 5, 0x5061706f75617369652d4e6f7576656c6c652d4775696ee965, 'Y', '2003-08-20 15:27:25'),
(894, 5, 0x5061726167756179, 'Y', '2003-08-20 15:27:25'),
(895, 5, 0x50e9726f75, 'Y', '2003-08-20 15:27:25'),
(896, 5, 0x5068696c697070696e6573, 'Y', '2003-08-20 15:27:25'),
(897, 5, 0x506f6c6f676e65, 'Y', '2003-08-20 15:27:25'),
(898, 5, 0x506f72747567616c, 'Y', '2003-08-20 15:27:25'),
(899, 5, 0x506f72746f205269636f, 'Y', '2003-08-20 15:27:25'),
(900, 5, 0x5161746172, 'Y', '2003-08-20 15:27:25'),
(901, 5, 0x526f756d616e6965, 'Y', '2003-08-20 15:27:25'),
(902, 5, 0x527573736965, 'Y', '2003-08-20 15:27:25'),
(903, 5, 0x5277616e6461, 'Y', '2003-08-20 15:27:25'),
(904, 5, 0x5361696e742d4b69747473206574204e65766973, 'Y', '2003-08-20 15:27:25'),
(905, 5, 0x5361696e74652d4c75636965, 'Y', '2003-08-20 15:27:25'),
(906, 5, 0x5361696e742d56696e63656e74206574206c6573204772656e6164696e6573, 'Y', '2003-08-20 15:27:25'),
(907, 5, 0x53616d6f61, 'Y', '2003-08-20 15:27:25'),
(908, 5, 0x5361696e742d4d6172696e, 'Y', '2003-08-20 15:27:25'),
(909, 5, 0x53616f20546f6de9206574205072696e63697065, 'Y', '2003-08-20 15:27:25'),
(910, 5, 0x4172616269652073616f7564697465, 'Y', '2003-08-20 15:27:25'),
(911, 5, 0x53e96ee967616c, 'Y', '2003-08-20 15:27:25'),
(913, 5, 0x5365796368656c6c6573, 'Y', '2003-08-20 15:27:25'),
(914, 5, 0x536965727261204c656f6e65, 'Y', '2003-08-20 15:27:25'),
(915, 5, 0x53696e6761706f7572, 'Y', '2003-08-20 15:27:25'),
(916, 5, 0x536c6f766171756965, 'Y', '2003-08-20 15:27:25'),
(917, 5, 0x536c6f76e96e6965, 'Y', '2003-08-20 15:27:25'),
(918, 5, 0x496c65732053616c6f6d6f6e, 'Y', '2003-08-20 15:27:25'),
(919, 5, 0x536f6d616c6965, 'Y', '2003-08-20 15:27:25'),
(920, 5, 0x4166726971756520647520537564, 'Y', '2003-08-20 15:27:25'),
(921, 5, 0x45737061676e65, 'Y', '2003-08-20 15:27:25'),
(922, 5, 0x537269204c616e6b61, 'Y', '2003-08-20 15:27:25'),
(923, 5, 0x536f7564616e, 'Y', '2003-08-20 15:27:25'),
(924, 5, 0x537572696e616d65, 'Y', '2003-08-20 15:27:25'),
(925, 5, 0x5377617a696c616e64, 'Y', '2003-08-20 15:27:25'),
(926, 5, 0x5375e86465, 'Y', '2003-08-20 15:27:25'),
(927, 5, 0x537569737365, 'Y', '2003-08-20 15:27:25'),
(928, 5, 0x5379726965, 'Y', '2003-08-20 15:27:25'),
(929, 5, 0x5461ef77616e, 'Y', '2003-08-20 15:27:25'),
(930, 5, 0x5461646a696b697374616e, 'Y', '2003-08-20 15:27:25'),
(931, 5, 0x54616e7a616e6965, 'Y', '2003-08-20 15:27:25'),
(932, 5, 0x546861ef6c616e6465, 'Y', '2003-08-20 15:27:25'),
(933, 5, 0x546f676f, 'Y', '2003-08-20 15:27:25'),
(934, 5, 0x546f6e6761, 'Y', '2003-08-20 15:27:25'),
(935, 5, 0x5472696e6974e920657420546f6261676f, 'Y', '2003-08-20 15:27:25'),
(936, 5, 0x54756e69736965, 'Y', '2003-08-20 15:27:25'),
(937, 5, 0x54757271756965, 'Y', '2003-08-20 15:27:25'),
(938, 5, 0x5475726b6de96e697374616e, 'Y', '2003-08-20 15:27:25'),
(939, 5, 0x547576616c75, 'Y', '2003-08-20 15:27:25'),
(940, 5, 0x4f7567616e6461, 'Y', '2003-08-20 15:27:25'),
(941, 5, 0x556b7261696e65, 'Y', '2003-08-20 15:27:25'),
(942, 5, 0xc96d69726174732061726162657320756e6973, 'Y', '2003-08-20 15:27:25'),
(943, 5, 0x526f7961756d652d556e69, 'Y', '2003-08-20 15:27:25'),
(944, 5, 0xc9746174732d556e6973, 'Y', '2003-08-20 15:27:25'),
(945, 5, 0x55727567756179, 'Y', '2003-08-20 15:27:25'),
(946, 5, 0x4f757a62e96b697374616e, 'Y', '2003-08-20 15:27:25'),
(947, 5, 0x56616e75617475, 'Y', '2003-08-20 15:27:25'),
(948, 5, 0x5661746963616e20285361696e742d5369e8676529, 'Y', '2003-08-20 15:27:25'),
(949, 5, 0x56656e657a75656c61, 'Y', '2003-08-20 15:27:25'),
(950, 5, 0x56696574204e616d, 'Y', '2003-08-20 15:27:25'),
(951, 5, 0x59e96d656e, 'Y', '2003-08-20 15:27:25'),
(952, 5, 0x5a616d626965, 'Y', '2003-08-20 15:27:25'),
(953, 5, 0x5a696d6261627765, 'Y', '2003-08-20 15:27:25'),
(80, 16, 0xc2e0f820eff1e5e2e4eeede8ec, 'Y', '2003-08-21 16:54:48'),
(81, 16, 0xc3eef1f2fc, 'Y', '2003-08-21 16:13:10'),
(82, 16, 0xd1eef1f2eeffede8e5, 'Y', '2003-08-21 16:13:10'),
(83, 16, 0xc8e3f0eee2eee920e7e0eb, 'Y', '2003-08-21 17:01:04'),
(84, 16, 0xc0edeae5f2e0, 'Y', '2003-08-22 11:02:31'),
(85, 16, 0xd1eeeee1f9e5ede8ff, 'Y', '2003-08-21 16:13:10'),
(86, 16, 0xcef2eff0e0e2e8f2fc, 'Y', '2003-08-22 11:02:31'),
(87, 16, 0xc2fbe7e2e0f2fc, 'Y', '2004-01-30 00:07:55'),
(88, 16, 0xd3f7e0f1f2ede8eae8, 'Y', '2003-08-21 16:13:10'),
(89, 16, 0xc8e3f0fb, 'Y', '2003-08-22 11:50:52'),
(90, 16, 0x5452414e534c415445, 'Y', '2003-08-21 17:03:03'),
(91, 16, 0xd4eef0f3ecfb, 'Y', '2003-08-21 16:13:10'),
(92, 16, 0xd7e0c2ee, 'Y', '2003-08-21 16:13:10'),
(93, 16, 0xcae0f0f2e020f1e0e9f2e0, 'Y', '2003-08-21 16:13:10'),
(94, 16, 0xc4eeeaf3ece5edf2fb, 'Y', '2003-08-21 18:48:52'),
(95, 16, 0xd1f2f0e0ede8f6e020f1eee7e4e0ede020e2, 'Y', '2003-08-21 16:13:10'),
(96, 16, 0xc0e4ece8ede8f1f2f0e0f2eef0, 'Y', '2003-08-21 16:13:10'),
(97, 16, 0xcfeeeae8edf3f2fc20f1e5f0e2e5f0, 'Y', '2003-08-21 16:13:10'),
(98, 16, 0xe4e5edfc, 'Y', '2003-08-21 16:13:10'),
(99, 16, 0xe4ede5e9, 'Y', '2003-08-21 16:13:10'),
(100, 16, 0xe8, 'Y', '2003-08-21 16:13:10'),
(101, 16, 0xf7e0f1, 'Y', '2003-08-21 16:13:10'),
(102, 16, 0xf7e0f1eee2, 'Y', '2003-08-21 16:13:10'),
(103, 16, 0xe1e5e720e1e5e5ece8, 'Y', '2003-08-21 16:13:10'),
(104, 16, 0xe820e5f9e520257320ede020f5eee4, 'Y', '2003-08-21 16:13:10'),
(106, 16, 0xdfefeeedf1eaeee520e1e5e5ece8, 'Y', '2003-08-21 16:13:10'),
(107, 16, 0xeae0ecede5e9, 'Y', '2003-08-21 16:13:10'),
(108, 16, 0xcae0ede0e4f1eaeee520e1e5e5ece8, 'Y', '2003-08-21 16:13:10'),
(132, 16, '', 'Y', '2012-07-15 21:20:17'),
(134, 16, 0xc8ecff, 'Y', '2003-08-21 16:13:10'),
(201, 16, 0xcff1e5e2e4eeede8ec, 'Y', '2003-08-21 16:54:48'),
(205, 16, 0x5f5fd0e5e9f2e8ede35f5f, 'Y', '2004-05-08 18:49:16'),
(309, 16, 0xcff0e8e7ede0eae8, 'Y', '2003-08-21 16:13:10'),
(310, 16, 0xcef2, 'Y', '2003-08-21 16:13:10'),
(311, 16, 0xd2e5ece0, 'Y', '2003-08-21 16:13:10'),
(312, 16, 0xc4e0f2e0, 'Y', '2003-08-21 16:13:10'),
(314, 16, 0xcdeee2eee5, 'Y', '2003-08-21 16:13:10'),
(316, 16, 0xcef2e2e5f2e8f2fc21, 'Y', '2003-08-21 16:13:10'),
(330, 16, 0xc1e5ebfbe5, 'Y', '2003-08-21 16:13:10'),
(331, 16, 0xd7e5f0edfbe5, 'Y', '2003-08-21 16:13:10'),
(352, 16, 0x736766, 'Y', '2014-05-01 20:35:22'),
(359, 16, 0xcff0eef2e8e2ede8ea, 'Y', '2003-08-21 16:13:10'),
(360, 16, 0xd6e2e5f2, 'Y', '2003-08-21 16:13:10'),
(361, 16, 0xd0e0e7ece5f0, 'Y', '2014-05-01 20:35:22'),
(362, 16, 0xd4eef0e0, 'Y', '2003-08-21 16:13:10'),
(363, 16, 0xcaeeece8, 'Y', '2003-08-21 16:13:10'),
(364, 16, 0xd5eee4eee2, 'Y', '2004-07-06 14:52:42'),
(368, 16, 0xcfeef1ebe5e4ede8e920f5eee4, 'Y', '2012-10-14 14:25:25'),
(374, 16, 0xcff0eee4eeebe6e0fef9e8e5f1ff20efe0f0f2e8e8, 'Y', '2003-08-21 16:42:35'),
(375, 16, 0xc7e0eaeeedf7e5ededfbe520efe0f0f2e8e8, 'Y', '2003-08-21 16:42:35'),
(388, 16, 0xc3eef2eee2fb20e8e3f0e0f2fc3f, 'Y', '2003-08-21 17:49:59'),
(389, 16, 0xcdeee2fbe520f1eeeee1f9e5ede8ff, 'Y', '2003-08-21 16:42:35'),
(390, 16, 0xc2e0f820f5eee420e220efe0f0f2e8fff53a, 'Y', '2003-08-21 16:42:35'),
(391, 16, 0xd2e0eae8f520efe0f0f2e8e920ede5f2, 'Y', '2003-08-21 16:59:19'),
(460, 16, 0xf1f2f0e0ede8f6e020e2efe5f0e5e4, 'Y', '2003-08-21 16:42:35'),
(461, 16, 0xf1f2f0e0ede8f6e020ede0e7e0e4, 'Y', '2003-08-21 16:42:35'),
(462, 16, 0xc4eee1e0e2e8f2fc20eaeeebeeedeaf3, 'Y', '2003-08-21 16:42:35'),
(3028, 36, 0x74c3b672c3b66b, 'Y', '2015-09-19 12:52:13'),
(719, 16, 0x257320efeee1e5e4e8ebe820f120f0e5e7f3ebfcf2e0f2eeec20252e3166, 'Y', '2004-01-28 19:37:17'),
(722, 16, 0xcfe0efeae0, 'Y', '2003-08-21 16:42:35'),
(732, 16, 0xc7e0efe0f120e4ede5e920eef2eff3f1eae0, 'Y', '2005-11-10 13:31:55'),
(733, 16, 0xc220eef2eff3f1eae5, 'Y', '2003-08-21 16:42:35'),
(747, 16, 0xc2f1e520eaeeebeeedeae8, 'Y', '2003-08-21 16:42:35'),
(755, 16, 0xd1eeeee1f9e5ede8e520f1e5f0e2e5f0e0, 'Y', '2004-01-20 14:53:28'),
(204, 16, 0xce20f0e5e9f2e8ede3e5, 'Y', '2003-08-21 16:54:48'),
(160, 16, 0xc7ede0eaeeecf1f2e2ee20f120c4f0e0eaeeedeeec, 'Y', '2003-08-22 14:03:37'),
(191, 16, 0xcfeee4f2e2e5f0e4e8f2e520efe0f0eeebfc, 'Y', '2003-08-22 14:03:37'),
(202, 16, 0xcfeeebedeee520e8ecff, 'Y', '2003-08-21 18:47:00'),
(223, 16, 0xc7e0e1fbebe820efe0f0eeebfc3f, 'Y', '2003-08-21 18:47:00'),
(242, 16, 0xd0eef1f1e8e9f1eae0ff20f1e1eef0ede0ff20efeee1e5e4e8ebe020e220eaeeece0ede4edeeec20f7e5ecefe8eeede0f2e520c5e2f0eeeffb20efee20c3ee21, 'Y', '2007-10-08 19:00:55'),
(245, 16, 0xcfe0f0eeebfc, 'Y', '2003-08-21 18:47:00'),
(247, 16, 0xc7e0f0e5e3e8f1f2f0e8f0eee2e0f2fcf1ff, 'Y', '2003-08-21 18:47:00'),
(248, 16, 0xc7ede0eaeeecf1f2e2ee, 'Y', '2003-08-21 18:47:00'),
(596, 11, 0x4a65206b756e74206a6520737065656c6b6c6f6b6b656e2074696a64656c696a6b207374696c7a657474656e202d20766f6f722065656e2076616b616e746965206f662065656e207a616b656e726569732062696a766f6f726265656c642e0d0a0d0a4f70206465203c4120485245463d222f656469745f7661636174696f6e2e706870223e76616b616e746965206c696e6b3c2f613e206f70206465203c4120485245463d222f7374617475732e706870223e737461747573202d203c2f413e206f66206465203c4120485245463d222f75736572696e666f2e706870223e6765627275696b657273696e666f726d617469653c2f613e20706167696e61206b756e206a65206a652076616b616e7469652061616e6b6f6e646967656e2e, 'N', '2003-08-23 20:31:38'),
(243, 16, 0xcaf2ee20e2fb3f, 'Y', '2006-09-08 23:10:08'),
(246, 16, 0xcde0e7e2e0f2fc20f1e5e1ff, 'Y', '2003-08-22 14:03:37'),
(252, 16, 0xcff0e8f5eee4e8f2e520f1edeee2e0202c20e820eff3f1f2fc20c2e0f820e2e8e7e8f220e1f3e4e5f220f3e4e0f7edfbec21, 'Y', '2003-08-21 23:32:52'),
(344, 16, 0xc7e0f0e5e3e8f1f2f0e8f0f3e9f2e5f1fc, 'Y', '2003-08-21 23:32:52'),
(345, 16, 0xcfeee6e0ebf3e9f1f2e02c20e2e2e5e4e8f2e520e4e0ededfbe5, 'Y', '2003-08-21 23:32:52'),
(478, 16, 0xc4eeefeeebede8f2e5ebfcedf3fe20e8edf4eef0ece0f6e8fe20c2fb20ede0e9e4e5f2e520ede0203c6120687265663d226661712e706870223e20f4eef0f3ece520d7e0c2ee203c2f613e2028d7e0f1f2ee20e7e0e4e0e2e0e5ecfbf520c2eeeff0eef1eee2292c20e3e4e520c2fb20f1eceee6e5f2e520f2e0eae6e520e7e0e4e0e2e0f2fc20f1e2eee820e2eeeff0eef1fb2e, 'Y', '2003-08-24 03:33:20'),
(661, 4, 0x57617320626564657574657420566f72676162653f, 'Y', '2004-02-28 15:41:32'),
(755, 4, 0x5365727665722d4d656c64756e67, 'Y', '2003-08-23 16:54:09'),
(750, 4, 0x4b6f7265616e69736368, 'Y', '2003-08-23 16:54:09'),
(954, 4, 0x5275737369736368, 'Y', '2003-08-23 16:54:09'),
(955, 4, 0x55726c617562, 'Y', '2003-08-23 16:54:09'),
(956, 4, 0x536965206bf66e6e656e206469652055726c617562736461756572206a65747a74206e6963687420e46e6465726e2e, 'Y', '2007-12-06 12:50:54'),
(957, 4, 0x55726c617562736461756572206765e46e6465727421, 'Y', '2003-08-23 16:54:09'),
(958, 4, 0x48696e7a7566fc67656e, 'Y', '2003-08-23 16:54:09'),
(959, 4, 0x456e746665726e656e, 'Y', '2003-08-23 16:54:09'),
(960, 4, 0x57e4686c656e20536965206469652055726c617562736461756572, 'Y', '2007-12-07 15:45:09'),
(962, 4, 0x5669656c20537061df20696d2055726c61756221, 'Y', '2003-11-17 21:36:51'),
(753, 11, 0x57617420626574656b656e656e206465206b6c65696e6520726f646520766965726b616e746a6573206f70206865742065696e642076616e2065656e2070617274696a3f, 'N', '2003-08-23 20:22:37');
INSERT INTO `Translations` (`Original_ID`, `Language_ID`, `Text`, `Translated`, `Updated`) VALUES
(754, 11, 0x45656e206b6c65696e20726f6f6420766965726b616e746a652067656566742061616e2064617420447261676f6e206e696574206b616e20626570616c656e206f66206461742070756e7420776974206f66207a77617274206765626965642069732e204d6f67656c696a6b65206f6f727a616b656e3a0d0a3c756c3e0d0a3c6c693e42696e6e656e2065656e20676562696564207a696a6e206572206e6f672076696a616e64656c696a6b65207374656e656e20646965206e6f67206e696574206465207374617475732022646f6f64222068656262656e2067656b726567656e2e204b6c696b206f702064657a65207374656e656e206f6d2064652073746174757320696e2022646f6f642220746520766572616e646572656e2e3c2f6c693e0d0a0d0a3c6c693e4465206772656e7a656e2074757373656e2068657420776974746520656e207a776172746520676562696564207a696a6e206e6f67206e69657420636f6d706c6565742e20486574206b616e207a6f207a696a6e206461742068657420766f6f72206d656e73656c696a6b65207370656c65727320766f6c737472656b742064756964656c696a6b2069732c206d61617220766f6f7220447261676f6e206d6f65696c696a6b206f6d20746520626570616c656e207769652077656c6b206765626965642068656566742e204b6c696b206f70202270617274696a2068657276617474656e2220656e20646f65206465206e6f64696765207a657474656e206f6d206465206772656e7a656e20746520736c756974656e2e3c2f6c693e0d0a0d0a3c6c693e4865742069732065656e203c6120687265663d222f6661712e7068703f726561643d74266361743d3323456e747279313031223e73656b693c2f613e20706f73697469652e204b6c696b20206f702068657420766965726b616e746a65206f6d2068657420646520737461747573203c6120687265663d222f6661712e7068703f726561643d74266361743d3323456e747279313135223e2264616d65223c2f613e20746520676576656e2e20447261676f6e206c61617420646974207a69656e20616c732065656e2067726f656e20766965726b616e746a652e205a6f206b616e206a652065656e20766f6f7220447261676f6e207477696a66656c616368746967652073656b692064756964656c696a6b206d616b656e2e2056657264657265207569746c656720696e3c6120687265663d222f70686f72756d2f726561642e7068703f663d3226693d38343326743d383433223e2064657a65206469736375737369653c2f613e2e3c2f6c693e0d0a3c2f756c3e, 'N', '2004-11-23 09:39:11'),
(751, 11, 0x486f77206b616e20696b206f70206865742065696e642076616e2065656e2070617274696a20646f6465207374656e656e2076657277696a646572656e3f, 'Y', '2003-08-23 20:31:38'),
(752, 11, 0x57616e6e656572206265696465207370656c6572732068656262656e206765706173742c206d6f6574656e207a696a20646520646f6465207374656e656e2068616e646d617469672076657277696a646572656e2e2045656e20737465656e2061616e6b6c696b6b656e20646f6574206465207374617475732076616e20226c6576656e642220696e2022646f6f642220766572616e646572656e2e204b6c65696e65207a776172746520656e20776974746520766965726b616e746a6573206d61726b6572656e2077697420656e207a77617274206765626965642e0d0a0d0a4265696465207370656c657273206d6f6574656e206865742065656e7320776f7264656e206f766572207769652077656c6b206765626965642068656566742e204b6c696b206f7020226b6c61617222206f6e6465722068657420626f7264206f6d2061616e20746520676576656e206461742068657420626f726420636f72726563742069732e0d0a0d0a45656e207370656c65722064696520686574206e6965742065656e73206973206d65742065656e20766f6f727374656c20766f6f722064652065696e64706f7369746965206b616e20227370656c2068657276617474656e222061616e6b6c696b6b656e206f6d2065656e206265736c697373696e67206f766572207477696a66656c6163687469676520676562696564656e20746520666f72636572656e20646f6f7220766572646572207465207370656c656e2e2045656e20616e64657265206d6f67656c696a6b68656964206973206f6d206465207369747561746965207465206265737072656b656e206d696464656c732062657269636874656e2061616e20646520746567656e7374616e646572206f662061616e20686574203c6120687265663d222f70686f72756d2f6c6973742e7068703f663d35223e476f2064697363757373696520666f72756d3c2f613e2e, 'Y', '2003-08-23 20:31:38'),
(600, 4, 0x447261676f6e206e75747a742069687265204f7274737a65697420756e6420536f6d6d65727a6569742c20736f207769652073696520696e20696872656d2050726f66696c2065696e67657374656c6c74206973742e, 'Y', '2007-12-06 16:18:37'),
(604, 4, 0x5765696c20447261676f6e204968726520507269766174737068e4726520756e6420646965204968726572204d6974737069656c657220736368fc747a742e2057656e6e20536965206d6568722077697373656e206df6636874656e2c20616c7320646572204d6974737069656c657220696d2050726f66696c20616e6765676562656e206861742c206dfc7373656e205369652069686e20646972656b742066726167656e2e, 'Y', '2007-12-06 16:18:37'),
(671, 4, 0x4b616e6e206d616e2070657220452d4d61696c207a696568656e3f, 'Y', '2004-06-14 18:09:33'),
(672, 4, 0x4e65696e2c20657320697374206e69636874206df6676c6963682c2070657220452d4d61696c207a75207a696568656e3b207a756d205a696568656e206dfc7373656e20536965207369636820617566203c686f6d65206c6f67696e2e7068703e447261676f6e732057656273656974653c2f686f6d653e20616e6d656c64656e2e, 'Y', '2009-07-04 09:54:53'),
(673, 4, 0x42656e6163687269636874696774206d69636820447261676f6e2c2077656e6e2069636820616d205a75672062696e3f, 'Y', '2007-12-06 20:55:54'),
(674, 4, 0x4a612c2077656e6e2053696520646965203c686f6d65206661712e7068703f726561643d74266361743d313223456e7472793137333e452d4d61696c2d42656e61636872696368746967756e673c2f686f6d653e20696d2042656e75747a657270726f66696c2065696e6765736368616c74657420686162656e2e, 'Y', '2007-12-06 20:55:54'),
(244, 16, 0x28cceee6edee20e2e2e5f1f2e820257320e1e5e720f0e5e3e8f1f2f0e0f6e8e829, 'Y', '2003-08-24 03:33:20'),
(109, 16, 0xc8e3f0e020e4eee1e0e2ebe5ede021, 'Y', '2003-08-24 03:58:09'),
(225, 16, 0xcae0efe8f2f3ebfff6e8ff, 'Y', '2003-08-24 03:58:09'),
(226, 16, 0xcff0eeeff3f1ea20f5eee4e0, 'Y', '2003-08-24 03:58:09'),
(227, 16, 0xd3e4e0ebe5ede8e520e8e3f0fb, 'Y', '2003-08-24 03:58:09'),
(232, 16, 0xd3e4e0ebe8f2fc20e8e3f0f3, 'Y', '2003-08-24 03:58:09'),
(233, 16, 0xc3eef2eee2ee, 'Y', '2003-08-24 03:58:09'),
(234, 16, 0xc2eee7eee1edeee2e8f2fc20e8e3f0f3, 'Y', '2003-08-24 03:58:09'),
(235, 16, 0xd1e4e0f2fcf1ff, 'Y', '2003-08-24 03:58:09'),
(236, 16, 0xd1eae0f7e0f2fc20736766, 'Y', '2014-05-01 20:38:16'),
(237, 16, 0xcff0eeeff3f1f2e8f2fc20e820efe5f0e5e9f2e820ea20e4f0f3e3eee920efe0f0f2e8e8, 'Y', '2004-01-19 16:10:52'),
(238, 16, 0xc8f1eaebfef7e8f2fc20e8e720f1efe8f1eae020ede0e1ebfee4e0e5ecfbf520efe0f0f2e8e9, 'Y', '2003-08-24 03:58:09'),
(239, 16, 0xc4eee1e0e2e8f2fc20e220f1efe8f1eeea20ede0e1ebfee4e0e5ecfbf520efe0f0f2e8e9, 'Y', '2003-08-24 03:58:09'),
(253, 16, 0xcfe0f0f2e8ff20f3e4e0ebe5ede021, 'Y', '2014-05-01 20:35:51'),
(254, 16, 0xcfe0f0f2e8ff20e4eee1e0e2ebe5ede021, 'Y', '2014-05-01 20:35:51'),
(308, 16, 0xcaeeecf3, 'Y', '2003-08-24 03:58:09'),
(324, 16, 0xcef2e2e5f2e8f2fc, 'Y', '2003-08-24 03:58:09'),
(325, 16, 0xd1eeeee1f9e5ede8e5, 'Y', '2003-08-24 03:58:09'),
(342, 16, 0xc3f0e0f4e8ea20f0e5e9f2e8ede3e020e4ebff, 'Y', '2003-08-24 03:58:09'),
(343, 16, 0xc8e7e2e8ede8f2e52c20f1fbe3f0e0edee20f1ebe8f8eaeeec20ece0ebee20efe0f0f2e8e920e4ebff20efeef1f2f0eee5ede8ff20e3f0e0f4e8eae0, 'Y', '2003-08-24 03:58:09'),
(348, 16, 0xc7e0eaeeedf7e5ededfbe520efe0f0f2e8e8, 'Y', '2003-08-24 03:58:09'),
(349, 16, 0xcff0eee4eeebe6e0fef9e8e5f1ff20efe0f0f2e8e8, 'Y', '2003-08-24 03:58:09'),
(350, 16, 0xc7e0eaeeedf7e5ededfbe520efe0f0f2e8e8, 'Y', '2003-08-24 03:58:09'),
(351, 16, 0xcff0eee4eeebe6e0fef9e8e5f1ff20efe0f0f2e8e820e4ebff202573, 'Y', '2003-08-24 03:58:09'),
(366, 16, '', 'Y', '2014-05-01 20:35:22'),
(370, 16, 0xc4e0, 'Y', '2003-08-24 03:58:09'),
(371, 16, 0xcde5f2, 'Y', '2003-08-24 03:58:09'),
(372, 16, 0xcde8f7fcff, 'Y', '2014-05-01 20:33:55'),
(373, 16, 0xc2fbe7e2e0f2fc20fdf2eee3ee20e8e3f0eeeae0, 'Y', '2003-08-24 03:58:09'),
(755, 5, 0x4d6573736167652064752073657276657572, 'Y', '2003-08-24 12:17:12'),
(751, 5, 0x436f6d6d656e7420707569732d6a6520656e6c65766572206c65732070696572726573206d6f7274657320e0206c612066696e206427756e6520706172746965266e6273703b3f, 'Y', '2003-08-24 20:52:43'),
(752, 5, 0x556e6520666f697320717565206c65732064657578206a6f7565757273206f6e742070617373e92c206c65732070696572726573206d6f7274657320646f6976656e7420ea74726520696e64697175e9657320617520736572766575722e20456e20706f696e74616e742073757220756e65207069657272652c206f6e206368616e676520736f6e20e974617420646520766965206f75206465206d6f72742e204c6573207065746974732063617272e973206d61727175616e74206c6573207069657272657320696e64697175656e7420e0207175692061707061727469656e74206c65207465727269746f69726520736f75732d6a6163656e742e0d0a0d0a4c65732064657578206a6f756575727320646f6976656e74207365206d65747472652064276163636f726420737572206c65732070696572726573206d6f7274657320657420737572206c6573207465727269746f6972657320706f757220717565206c652073636f72652070756973736520ea7472652063616c63756ce92e20506f7572206163636570746572206c652073636f72652c206170707579657a20737572206c65206c69656e20ab266e6273703b56616c69646572266e6273703bbb20647520626173206465206c6120706167652e0d0a0d0a5369206c6573206a6f7565757273206e652070657576656e74207365206d65747472652064276163636f72642c206c27756e20642765757820646f6974207574696c69736572206c65206c69656e20ab266e6273703b52657072656e647265206c65206a6575266e6273703bbb20706f757220636c61726966696572206c6120736974756174696f6e20656e20616a6f7574616e74207175656c7175657320636f7570732e20546f75742063656369207065757420ea747265206163636f6d7061676ee9206465206d6573736167657320736f697420e0206c27616476657273616972652c20736f69742064616e73206c6520666f72756d203c6120687265663d222f666f72756d2f6c6973742e7068703f663d35223e476f2064697363757373696f6e733c2f613e20706f757220756e652064656d616e646520646520636c6172696669636174696f6e2061757072e9732064657320617574726573206a6f75657572732e, 'Y', '2006-08-19 16:46:11'),
(753, 5, 0x517565207369676e696669656e74206c6573207065746974732063617272e97320726f7567657320e0206c612066696e206427756e6520706172746965266e6273703b3f, 'N', '2003-08-24 20:52:43'),
(754, 5, 0x4c6573207065746974732063617272e97320726f7567657320696e64697175656e742071756520447261676f6e206e652070657574207061732064e96369646572207369206c27696e74657273656374696f6e2065737420756e207465727269746f69726520626c616e63206f75206e6f69722e204c657320726169736f6e732070657576656e7420656e20ea747265266e6273703b3a0d0a3c756c3e3c6c693e4c27696e74657273656374696f6e2065737420756e2076e972697461626c65203c6120687265663d222f6661712e7068703f726561643d7426616d703b6361743d3323456e747279313135223e64616d653c2f613e20657420646f6e6320756e207465727269746f69726520717569206e2761707061727469656e7420e020706572736f6e6e652e2044616e73206365206361732c20746f757420657374206e6f726d616c2e0d0a3c6c693e41206c27696e74e97269657572206475207465727269746f6972652c20696c2079206120656e636f726520646573207069657272657320616476657273657320717569206e6520736f6e7420706173206d6f727465732e20506f696e74657a20636573207069657272657320706f7572206c6573206d61727175657220636f6d6d65206d6f727465732e0d0a3c6c693e4c657320626f726473206475207465727269746f697265206e276f6e742070617320e974e920636f7272656374656d656e74206665726de9732e20506f757220756e206a6f756575722068756d61696e2c2063652073657261697420706575742dea74726520e9766964656e742c206d61697320447261676f6e206e27657374207061732068756d61696e2e205574696c6973657a206c65206c69656e20ab266e6273703b52657072656e647265206c65206a6575266e6273703bbb20647520626173206465206c61207061676520706f757220636c61726966696572206c6120736974756174696f6e20656e20616a6f7574616e74207175656c7175657320636f7570732e0d0a3c2f756c3e, 'N', '2005-09-20 18:05:29'),
(954, 5, 0x5275737365, 'Y', '2003-08-24 20:53:03'),
(955, 5, 0x566163616e636573, 'Y', '2003-08-24 20:53:03'),
(956, 5, 0x566f7573206e6520706f7576657a20706173206368616e676572206c6120647572e96520646520766f7320766163616e63657320656e206365206d6f6d656e742e, 'Y', '2003-08-24 20:53:03'),
(957, 5, 0x447572e96520646520766f7320766163616e636573206d6f64696669e965266e6273703b21, 'Y', '2003-08-24 20:53:03'),
(958, 5, 0x416a6f75746572, 'Y', '2003-08-24 20:53:03'),
(959, 5, 0x456e6c65766572, 'Y', '2003-08-24 20:53:03'),
(960, 5, 0x43686f69736972206c6120647572e9652064657320766163616e636573, 'Y', '2003-08-24 20:53:03'),
(962, 5, 0x426f6e6e657320766163616e636573266e6273703b21, 'Y', '2003-08-24 20:53:03'),
(748, 5, 0x507569732d6a6520636f6d6d656e636572206f75206f7267616e6973657220756e20746f75726e6f69266e6273703b3f, 'Y', '2003-08-25 01:22:58'),
(749, 5, 0x4e6f757320766f757320696e7669746f6e7320e0206f7267616e6973657220756e20746f75726e6f692e2046616974657320656e206c27616e6e6f6e63652064616e73206c6520666f72756d203c4120485245463d222f666f72756d2f6c6973742e7068703f663d3422205441524745543d225f626c616e6b223eab266e6273703b447261676f6e266e6273703b64697363757373696f6e266e6273703bbb3c2f413e2e20447261676f6e20766f75732061696465726120656e20616a6f7574616e74207365732072e966e972656e6365732064616e73206c6120462e412e512e, 'Y', '2006-08-19 16:46:11'),
(755, 2, 0x536572766572206d656c64696e67, 'Y', '2003-08-26 10:46:24'),
(750, 2, 0x4b6f7265616e736b, 'Y', '2003-08-26 10:46:24'),
(954, 2, 0x5275737369736b, 'Y', '2003-08-26 10:46:24'),
(955, 2, 0x4665726965, 'Y', '2003-08-26 10:46:24'),
(956, 2, 0x4475206b616e2064657373766572726520696b6b6520656e647265206c656e6764656e2070e52066657269656e206ee52e, 'Y', '2003-08-26 10:46:24'),
(957, 2, 0x4c656e6764656e2070e52066657269656e20656e6472657421, 'Y', '2003-08-26 10:46:24'),
(958, 2, 0x4c6567672074696c, 'Y', '2003-08-26 10:46:24'),
(959, 2, 0x466a65726e, 'Y', '2003-08-26 10:46:24'),
(960, 2, 0x56656c67206c656e6764652070e52066657269656e, 'Y', '2003-08-26 10:46:24'),
(962, 2, 0x486120656e2066696e20666572696521, 'Y', '2003-08-26 10:46:24'),
(640, 4, 0x447261676f6e20476f20536572766572202844475329206973742065696e2067656d65696e7363686166746c69636865732c206e696368746b6f6d6d65727a69656c6c6573204f70656e2d536f757263652d50726f6a656b742c2077656c6368657320766f6e20756e642066fc72204d656e736368656e20676573636872696562656e206973742c20646965206765726e65207a7567626173696572656e6420476f20737069656c656e2e0d0a0d0a4447532077757264652062656772fc6e64657420756e642077697264203c6120687265663d22687474703a2f2f736f75726365666f7267652e6e65742f70726f6a6563742f6d656d6265726c6973742e7068703f67726f75705f69643d323939333322207461726765743d225f626c616e6b223e67657761727465743c2f613e20766f6e203c75736572203d656a6c6f3e2e20416e646572652048656c666572202841646d696e6973747261746f72656e2c20456e747769636b6c657220756e6420dc6265727365747a6572292077657264656e206175662064657220203c686f6d652070656f706c652e7068703e4c6575746573656974653c2f686f6d653e2061756667656c69737465742e0d0a0d0a446965736520464151206261736965727420617566203c623e49687265723c2f623e204d69747769726b756e6720696d203c686f6d6520666f72756d2f6c6973742e7068703f666f72756d3d333e4641512d4469736b757373696f6e73666f72756d3c2f686f6d653e2e20416c6c652054657874652077657264656e20766f6e204672656977696c6c6967656e20696e20766572736368696564656e6520537072616368656e20fc6265727365747a742e, 'Y', '2009-07-04 10:05:29'),
(679, 4, 0x446572206572737465205465696c2064657220537069656c7374e4726b65206973742064657220616b7475656c6c65203c686f6d65206661712e7068703f726561643d74266361743d3323456e74727933383e4b79753c2f686f6d653e2d206f646572203c686f6d65206661712e7068703f726561643d74266361743d3323456e74727933393e44616e3c2f686f6d653e2d52616e673b20646572207a7765697465205465696c20696e2064656e204b6c616d6d65726e206769627420616e2c2077696520737461726b206f64657220736368776163682064657220537069656c657220696e6e657268616c62206469657365722052616e6773747566652073696e642e0d0a0d0a5a756d20426569737069656c20697374202231206b797520282b34302529222065696e6520737461726b6520312d4b79752d426577657274756e6720286661737420737461726b2067656e75672c20756d2065696e2073636877616368657220312044616e207a75207365696e292e, 'N', '2009-07-04 10:05:29'),
(715, 6, 0x486f7261206465206c612070e167696e61, 'Y', '2003-08-29 04:51:46'),
(755, 6, 0x4d656e73616a652064656c207365727669646f72, 'Y', '2003-08-29 04:51:46'),
(750, 6, 0x436f7265616e6f, 'Y', '2003-08-29 04:51:46'),
(954, 6, 0x5275736f, 'Y', '2003-08-29 04:51:46'),
(955, 6, 0x5661636163696f6e6573, 'Y', '2003-08-29 04:51:46'),
(956, 6, 0x4c6f206c616d656e746f2c206e6f207075656465732063616d6269617220656c206c6172676f206465206c6173207661636163696f6e657320656e2065737465206d6f6d656e746f, 'Y', '2003-08-29 04:51:46'),
(957, 6, 0xa1447572616369f36e206465206c6173207661636163696f6e65732063616d626961646f21, 'Y', '2015-06-15 16:13:49'),
(958, 6, 0x41677265676172, 'Y', '2003-08-29 04:51:46'),
(959, 6, 0x517569746172, 'Y', '2003-08-29 04:51:46'),
(960, 6, 0x456c696a65206c6120647572616369f36e206465206c6173207661636163696f6e6573, 'Y', '2015-06-15 16:13:49'),
(962, 6, 0xa15175652064697366727574657320747573207661636163696f6e657321, 'Y', '2003-08-29 04:51:46'),
(714, 6, 0x4c6f206c616d656e746f2c206e6f207075646520656e636f6e74726172206c612063617270657461206465206d656e73616a6573206573706563696669636164612e, 'Y', '2003-08-29 04:51:46'),
(546, 6, 0x4b7975207369676e6966696361202272616e676f20646520756e207072696e63697069616e7465222e204c6f732072616e676f73206465206b79752076616e20646520333020686173746120312c207369656e646f203120656c206de173206675657274652e204c6120646566696e696369f36e206465203330206b797520657320616c677569656e2071756520686120617072656e6469646f207920656e7469656e6465206c6173207265676c6173207065726f2061fa6e206e6f206861206a756761646f206e696e67756e6120706172746964612e0d0a4c6f732072616e676f73206465206b7975206e6f20736f6e206d757920636f6e666961626c6573206861737461206170726f78696d6164616d656e7465203130206b797520646f6e646520656c206a756761646f7220707565646520636f6e73696465726172736520636f6d6f2031203c6120687265663d222f6661712e7068703f726561643d74266361743d3323456e7472793339223e64616e3c2f613e20656e20756e207461626c65726f2064652039207069656472617320636f6e203c6120687265663d222f6661712e7068703f726561643d74266361743d33353723456e7472793937223e68616e64696361703c2f613e2e, 'Y', '2003-08-29 04:51:46'),
(556, 6, 0x48617920766172696f732070726f6772616d617320717565207465207065726d6974656e20766572207920656469746172206c6f73206172636869766f73205347462e20556e61206275656e61206f706369f36e206573203c6120687265663d22687474703a2f2f7777772e72656e652d67726f74686d616e6e2e64652f6a61676f2f223e4a61676f3c2f613e2c20656c20636c69656e7465204a61766120646520476f2e200d0a0d0a4c612041736f6369616369f36e2042726974e16e69636120646520476f207469656e6520756e61203c6120687265663d22687474703a2f2f7777772e62726974676f2e6f72672f676f70637265732f676f7063726573312e68746d6c23732d76696577223e6c697374612064652070726f6772616d617320646520736f6674776172653c2f613e20717565207065726d6974656e20766572206c6f73206172636869766f73205347462e0d0a0d0a4375616e646f2074656e67617320756e2070726f6772616d6120717565207065726d69746120766572206172636869766f73205347462070756564657320636f6e6669677572617220746f206e6176656761646f7220706172612061736f6369617220646963686f2070726f6772616d6120636f6e20656c207469706f206d696d6520276170706c69636174696f6e2f782d676f2d7367662720706172612071756520656c206d69736d6f20636f72726120636f6e20756e2073f36c6f20636c69636b20736f62726520656c20686970657276ed6e63756c6f20616c206172636869766f205347462e, 'N', '2003-08-29 06:13:13'),
(558, 6, 0x4861792076617269617320666f726d617320646520636f6d656e7a617220756e6120706172746964613a0d0a0d0a3c554c3e0d0a3c4c493e496e7669746120612074757320416d69676f732e3c42523e200d0a536920736162657320656c204944206465207573756172696f206465207475206f706f6e656e6574652070756564657320656e766961726c6520756e6120696e766974616369f36e207369677569656e646f20656c20686970657276ed6e63756c6f203c6120687265663d222f6d6573736167652e7068703f6d6f64653d496e7669746522207461726765743d225f626c616e6b223e22496e766974617222206c696e6b3c2f613e20656e20656c206d656efa2e20456c696a65206c6173206f7063696f6e65732064657365616461732070617261206c6120706172746964612079206c7565676f20656e76ed61206c6120696e766974616369f36e2e205475206f706f6e656e74652074656e6472e1206c61206f706369f36e206465206469737075746172206c6173206361726163746572ed737469636173207175652070726f707573697374652e200d0a54616d6269e96e2068617920756e20686970657276ed6e63756c6f2022696e766974617220612065737465207573756172696f2220616c2066696e616c206465206c612070e167696e612064652063616461207573756172696f2e205369677569656e646f2065736520686970657276ed6e63756c6f206c6f67726172e173206c6f206d69736d6f2071756520636f6e20656c20616e746572696f72207065726f206de1732072e17069646f2e200d0a0d0a3c4c493e556e69727465206120556e612050617274696461206465206c612053616c61206465204573706572612e3c42523e200d0a55736120e9737465206de9746f646f20736920657374e1732062757363616e646f20756e206e7565766f206f706f6e656e74652e205072696d65726f2068617a20636c69636b20736f62726520656c20686970657276ed6e63756c6f203c6120687265663d222f77616974696e675f726f6f6d2e70687022207461726765743d225f626c616e6b223e2253616c6120646520457370657261223c2f613e20656e20656c206d656efa2e20456e6375656e74726120756e6120706172746964612061206c6120717565207175696572617320756e697274652079206c7565676f2068617a20636c69636b20656e20656c20626f74f36e20617a756c2064652022696e666f222071756520736520656e6375656e747261206120737520697a717569657264612e20416c2066696e616c206465206c612070e167696e6120656e636f6e74726172e17320756e6120646573637269706369f36e20646574616c6c616461206465206c6120696e666f726d616369f36e206465206c6120706172746964612e205369207175696572657320756e69727465206120656c6c612c206f7072696d6520656c20626f74f36e2022756e69727465222e204173ed2064652073656e63696c6c6f2e200d0a0d0a3c4c493e5075626c6963612074752050726f706961205061727469646120656e206c612053616c61206465204573706572612e3c42523e200d0a5369206e696e67756e61206465206c61207061727469646173206465206c61203c6120687265663d222f77616974696e675f726f6f6d2e70687022207461726765743d225f626c616e6b223e53616c61206465204573706572613c2f613e20736520616a75737461206120747573206573706563746174697661732c20707565646573207075626c696361722074752070726f70696120706172746964612e20506172612068616365726c6f2c2073696d706c656d656e7465206c6c656e6120656c20666f726d756c6172696f20616c2066696e616c206465206c612070e167696e6120756e612076657a2071756520657374e97320656e206c612053616c61206465204573706572612e2050726573696f6e6120656c20626f74f36e2022616772656761722070617274696461222079206573706572612e2050726f6261626c656d656e7465206573746172e173206a7567616e646f20656e20706f636f732064ed61732e200d0a3c2f554c3e, 'N', '2003-08-29 06:13:13'),
(564, 6, 0x4573746f2073f36c6f2070756564652068616365727365206375616e646f206573203c623e74753c2f623e207475726e6f2e200d0a3c554c3e200d0a3c4c493e446f73207061736164617320636f6e736563757469766173206c6120747579612079206c61206465207475206f706f6e656e74652e2045737461206573206c6120666f726d61206e6f726d616c206465207465726d696e617220756e6120706172746964612e204c7565676f2c206c6f7320646f7320706f6472e16e206d6172636172206c61732070696564726173206d7565727461732e204c7565676f206465206573746f2c20447261676f6e2063616c63756c6172e120656c206d61726361646f7220792064656369646972e120717569656e20657320656c2067616e61646f722e200d0a0d0a3c4c493e55736120656c20626f74f36e202272656e6469727365222e2053692074652072696e6465732c20706572646572e173206c61207061727469646120792074752072e174696e67207265666c656a6172e1206573746520686563686f2e200d0a0d0a3c4c493e44656a61207175652065787069726520656c207469656d706f206465206c6120706172746964612e203c693e28a15065726f20706f72206661766f722120a1456c696a6120756e61206465206c6173206f74726173206f7063696f6e657321293c2f693e20536920747520706172746964612065787069726120706572646572e17320792074752072e174696e67207265666c656a6172e1206573746520686563686f2e200d0a3c2f554c3e, 'N', '2003-08-29 06:13:13'),
(681, 4, 0x447261676f6e2062656e75747a7420696e7465726e2065696e203c686f6d65206661712e7068703f726561643d74266361743d31303523456e7472793132333e426577657274756e677373797374656d3c2f686f6d653e2c206265692064656d2065696e20556e74657273636869656420766f6e2065696e656d20476f2d52616e672065696e656d20556e74657273636869656420766f6e203130302050756e6b74656e20656e74737072696368742e0d0a0d0a426569737069656c3a0d0a36206b797520282020302529203d20313530302050756e6b74650d0a36206b797520282d34382529203d20313435322050756e6b74650d0a37206b797520282b33302529203d20313433302050756e6b74650d0a37206b797520282020302529203d20313430302050756e6b7465, 'N', '2007-12-06 20:55:54'),
(755, 14, 0x5669657374692070616c76656c696d656c7461, 'Y', '2003-09-03 12:47:14'),
(750, 14, 0x6b6f726561, 'Y', '2003-09-03 12:47:14'),
(954, 14, 0x76656ee46ae4, 'Y', '2003-09-03 12:47:14'),
(955, 14, 0x4c6f6d61, 'Y', '2003-09-03 12:47:14'),
(956, 14, 0x416e7465656b73692c206d7574746120657420766f69206d757574746161206c6f6d616e207069747575747461206e79742e, 'Y', '2003-09-03 12:47:14'),
(957, 14, 0x4c6f6d616e20706974757573206d7575746574747521, 'Y', '2003-09-03 12:47:14'),
(958, 14, 0x4c6973e4e4, 'Y', '2003-09-03 12:47:14'),
(959, 14, 0x506f69737461, 'Y', '2003-09-03 12:47:14'),
(960, 14, 0x56616c69747365206c6f6d616e20706974757573, 'Y', '2003-09-03 12:47:14'),
(962, 14, 0x486175736b6161206c6f6d616121, 'Y', '2003-09-03 12:47:14'),
(631, 14, 0x4b75696e6b6120766f696e20706f69737461612070656c697461726a6f756b73656e69206f646f74757368756f6e65657374613f, 'Y', '2003-09-03 12:47:14'),
(632, 14, 0x4e617073617574612070656c697369206c6973e4746965746f7061696e696b657474612e20536976756e206c6f7075737361206f6e206e617070692c206a6f73746120766f697420706f69737461612070656c6973692e204a6f73206b756b61616e206569206b69696e6e6f7374752070656c697461726a6f756b736573746173692c20736520706f6973747575206d757574616d616e207669696b6f6e206b756c75747475612e, 'Y', '2003-09-03 12:47:14'),
(633, 14, 0x4d6974e4207461726b6f69747461612074617361696e656e2070656c69206e69676972696c6ce43f, 'Y', '2003-09-03 12:47:14'),
(634, 14, 0x3c693e54617361696e656e2070656c693c2f693e207461726b6f69747461612070656c69e420696c6d616e203c6120687265663d222f6661712e7068703f726561643d74266361743d33353723456e7472793937223e7461736f6974757374613c2f613e2e203c693e4e69676972693c2f693e207461726b6f69747461612076e47269656e2076616c697473656d69737461206172706f6d616c6c612e, 'Y', '2003-09-03 12:47:14'),
(748, 14, 0x566f696e6b6f206ae4726a657374e4e4207475726e61756b7369613f, 'Y', '2003-09-03 12:47:14'),
(749, 14, 0x5475726e61757374656e206ae4726a657374e46d696e656e206f6e6e6973747575206b796c6ce42e204e69697374e420766f6920696c6d6f6974746161203c6120687265663d222f70686f72756d2f6c6973742e7068703f663d34223e447261676f6e2d6b65736b757374656c75616c7565656c6c613c2f613e2e20447261676f6e20617574746161206d61696e6f7374616d697365737361206c6973e4e46de46c6ce4206c696e6b6b656ae420757365696e206b7973797474796968696e206b7973796d796b7369696e2e, 'Y', '2003-09-03 12:47:14'),
(751, 14, 0x4b75696e6b61206b756f6c6c656574206b6976657420706f697374657461616e2070656c696e206c6f70757373613f, 'Y', '2003-09-03 12:47:14'),
(752, 14, 0x4b756e206d6f6c656d6d61742070656c61616a6174206f7661742070617373616e6e6565742c206b756f6c6c656574206b6976657420766f696461616e20706f6973746161206be473696e2e204e6170736175747573206b6976656e206b6f6864616c6c6120766169687461612073656e20737461747573746120656ce476e47374e4206b756f6c6c65656b73692e205069656e6574206d7573746174206a612076616c6b6f69736574206e656c69f674206f736f697474617661742c206b756b612068616c6c6974736565206d6974e46b696e20616c75657474612e0d0a0d0a50656c61616a69656e2074756c6565206f6c6c612073616d6161206d69656c74e42073696974e42c206d6974e4206b69766574206f766174206b756f6c6c65697461206a61206b656e656c6c65206d696b696e20616c7565206b75756c75752e204a6f73206f6c65742073616d6161206d69656c74e42c206e61707361757461202276616c6d6973222d6c696e6b6b69e4206c617564616e20616c6c612e0d0a0d0a4a6f7320746f696e656e2070656c61616a69737461206f6e20657269206d69656c74e42c2068e46e20766f69206a61746b61612070656c61616d69737461206a61207261746b6169737461206570e4696c797474e476e46e2074696c616e7465656e2e20546f696e656e2076616968746f6568746f206f6e206b65736b757374656c6c612061736961737461206ce468657474e46de46c6ce4207669657374656ae42076617374757374616a616c6c6520746169206be4796de46c6ce4206b65736b757374656c7561203c6120687265663d222f70686f72756d2f6c6973742e7068703f663d35223e476f2d616c7565656c6c613c2f613e2e, 'Y', '2003-09-03 12:47:14'),
(753, 14, 0x4d6974e4207069656e65742070756e6169736574206e656c69f6742070656c696e206c6f7075737361207461726b6f697474617661743f, 'N', '2003-09-03 12:47:14'),
(754, 14, 0x50756e6169736574206e656c69f674206f7661742070697374656974e42c206a6f6973746120447261676f6e2065692074696564e42c206b756d6d616c6c65206e65206b75756c757661742e204d6168646f6c6c697369612073796974e4206f7661743a0d0a3c756c3e0d0a3c6c693e416c7565656e20736973e46c6ce4206f6e20766173746170656c61616a616e206b697669e42c206a6f697461206569206f6c65207669656ce4206d65726b69747479206b756f6c6c65696b73692e204d65726b69747365206b69766574206b756f6c6c65696b7369206e61707361757474616d616c6c61206e696974e42e3c2f6c693e0d0a0d0a3c6c693e416c7565656e207265756e6f6a61206569206f6c652073756c6a657474752e2049686d6973696c6c652061736961206f6e20696c6d65696e656e2c206d7574746120447261676f6e696e206f6e207661696b65612070e4e474656c6ce42c206b656e656c6c6520616c7565206b75756c75752e204a61746b616b61612070656c61616d69737461206a612073756c6b656b616120616c7565656e2072616a61742e3c2f6c693e0d0a0d0a3c6c693e4b797365657373e420766f69206d79f673206f6c6c61203c6120687265663d222f6661712e7068703f726561643d74266361743d3323456e747279313031223e73656b693c2f613e2e204e61707361757475732070756e61697365656e206e656c69f6f66e206d7575747461612073656e203c6120687265663d222f6661712e7068703f726561643d74266361743d3323456e747279313135223e64616d656b73693c2f613e2073656b69206d6f6b757373612e2053656e206f736f6974756b73656b7369206e656c69f6206d757574747575207669687265e46b73692e204ee4696e20766f696e207261746b6169737461206570e46de4e472e4697365742073656b69742073616164616b73657369206f696b65616e2074756c6f6b7365742e204b74732e203c6120687265663d222f70686f72756d2f726561642e7068703f663d3226693d38343326743d383433223e6b65736b757374656c75612061696865657374613c2f613e2e3c2f6c693e0d0a3c2f756c3e, 'N', '2003-09-03 12:47:14'),
(756, 14, '', 'Y', '2006-11-14 11:49:44'),
(757, 14, '', 'Y', '2006-11-14 11:49:44'),
(758, 14, '', 'Y', '2006-11-14 11:49:44'),
(759, 14, '', 'Y', '2006-11-14 11:49:44'),
(760, 14, '', 'Y', '2006-11-14 11:49:44'),
(761, 14, 0x416e7461726b746973, 'Y', '2003-09-03 12:47:14'),
(762, 14, 0x416e7469677561206a612042617262756461, 'N', '2003-09-03 12:47:14'),
(763, 14, 0x417267656e7469696e61, 'Y', '2003-09-03 12:47:14'),
(764, 14, '', 'Y', '2006-11-14 11:49:44'),
(765, 14, '', 'Y', '2006-11-14 11:49:44'),
(766, 14, 0x4974e476616c7461, 'Y', '2003-09-03 12:48:47'),
(767, 14, '', 'Y', '2006-11-14 11:49:44'),
(768, 14, 0x426168616d612d736161726574, 'Y', '2003-09-03 12:48:47'),
(769, 14, '', 'Y', '2006-11-14 11:49:44'),
(770, 14, '', 'Y', '2006-11-14 11:49:44'),
(771, 14, '', 'Y', '2006-11-14 11:49:44'),
(772, 14, 0x56616c6b6f2d56656ee46ae4, 'Y', '2003-09-03 12:48:47'),
(773, 14, 0x42656c676961, 'Y', '2003-09-03 12:48:47'),
(774, 14, '', 'Y', '2006-11-14 11:49:44'),
(775, 14, '', 'Y', '2006-11-14 11:49:44'),
(776, 14, '', 'Y', '2006-11-14 11:49:44'),
(777, 14, '', 'Y', '2006-11-14 11:49:44'),
(779, 14, '', 'Y', '2006-11-14 11:49:44'),
(780, 14, 0x42726173696c6961, 'Y', '2003-09-03 12:48:47'),
(782, 14, '', 'Y', '2006-11-14 11:49:44'),
(783, 14, '', 'Y', '2006-11-14 11:49:44'),
(784, 14, '', 'Y', '2006-11-14 11:49:44'),
(785, 14, 0x4b616d626f647a61, 'Y', '2003-09-03 12:48:47'),
(786, 14, 0x4b616d6572756e, 'Y', '2003-09-03 12:48:47'),
(787, 14, 0x4b616e616461, 'Y', '2003-09-03 12:48:47'),
(788, 14, 0x4b6170205665726465, 'Y', '2003-09-03 12:48:47'),
(789, 14, 0x4b65736b692d416672696b616e205461736176616c7461, 'Y', '2003-09-03 12:48:47'),
(790, 14, 0x54736164, 'Y', '2003-09-03 12:48:47'),
(791, 14, '', 'Y', '2006-11-14 11:49:44'),
(792, 14, 0x4b69696e61, 'Y', '2003-09-03 12:48:47'),
(793, 14, 0x4b6f6c756d626961, 'Y', '2003-09-03 12:51:27'),
(794, 14, 0x4b6f6d6f726f2d736161726574, 'Y', '2003-09-03 12:51:27'),
(795, 14, 0x4b6f6e676f2d4272617a7a6176696c6c65, 'Y', '2003-09-03 12:51:27'),
(796, 14, 0x4b6f6e676f2d4b696e7368617361, 'Y', '2003-09-03 12:51:27'),
(797, 14, '', 'Y', '2006-11-14 11:49:44'),
(798, 14, 0x4e6f7273756e6c757572616e6e696b6b6f, 'Y', '2003-09-03 12:51:27'),
(799, 14, 0x4b726f61746961, 'Y', '2003-09-03 12:51:27'),
(800, 14, 0x4b75756261, 'Y', '2003-09-03 12:51:27'),
(801, 14, 0x4b7970726f73, 'Y', '2003-09-03 12:51:27'),
(802, 14, 0x5473656b696e207461736176616c7461, 'Y', '2003-09-03 12:51:27'),
(803, 14, 0x54616e736b61, 'Y', '2003-09-03 12:51:27'),
(804, 14, '', 'Y', '2006-11-14 11:49:44'),
(805, 14, '', 'Y', '2006-11-14 11:49:44'),
(806, 14, 0x446f6d696e696b61616e696e656e207461736176616c7461, 'Y', '2003-09-03 12:51:27'),
(808, 14, '', 'Y', '2006-11-14 11:49:44'),
(809, 14, 0x456779707469, 'Y', '2003-09-03 12:51:27'),
(810, 14, '', 'Y', '2006-11-14 11:49:44'),
(811, 14, 0x50e46976e46e74617361616a616e204775696e6561, 'Y', '2003-09-03 12:51:27'),
(812, 14, '', 'Y', '2006-11-14 11:49:44'),
(813, 14, 0x5669726f, 'Y', '2003-09-03 12:51:27'),
(814, 14, 0x4574696f706961, 'Y', '2003-09-03 12:51:27'),
(815, 14, '', 'Y', '2006-11-14 11:49:44'),
(816, 14, 0x53756f6d69, 'Y', '2003-09-03 12:51:27'),
(817, 14, 0x52616e736b61, 'Y', '2003-09-03 12:51:27'),
(818, 14, '', 'Y', '2006-11-14 11:49:44'),
(819, 14, '', 'Y', '2006-11-14 11:49:44'),
(820, 14, 0x47727575736961, 'Y', '2003-09-03 12:51:27'),
(821, 14, 0x53616b7361, 'Y', '2003-09-03 12:51:27'),
(822, 14, '', 'Y', '2006-11-14 11:49:44'),
(823, 14, 0x4b7265696b6b61, 'Y', '2003-09-03 12:53:48'),
(824, 14, '', 'Y', '2006-11-14 11:49:44'),
(825, 14, '', 'Y', '2006-11-14 11:49:44'),
(826, 14, '', 'Y', '2006-11-14 11:49:44'),
(827, 14, '', 'Y', '2006-11-14 11:49:44'),
(828, 14, '', 'Y', '2006-11-14 11:49:44'),
(829, 14, '', 'Y', '2006-11-14 11:49:44'),
(830, 14, '', 'Y', '2006-11-14 11:49:44'),
(831, 14, '', 'Y', '2006-11-14 11:49:44'),
(832, 14, 0x556e6b617269, 'Y', '2003-09-03 12:53:48'),
(833, 14, 0x49736c616e7469, 'Y', '2003-09-03 12:53:48'),
(834, 14, 0x496e746961, 'Y', '2003-09-03 12:53:48'),
(835, 14, '', 'Y', '2006-11-14 11:49:44'),
(836, 14, '', 'Y', '2006-11-14 11:49:44'),
(837, 14, 0x4972616b, 'Y', '2003-09-03 12:53:48'),
(838, 14, 0x49726c616e7469, 'Y', '2003-09-03 12:53:48'),
(839, 14, '', 'Y', '2006-11-14 11:49:44'),
(840, 14, 0x4974616c6961, 'Y', '2003-09-03 12:53:48'),
(841, 14, 0x4a616d61696b61, 'Y', '2003-09-03 12:53:48'),
(842, 14, 0x4a6170616e69, 'Y', '2003-09-03 12:53:48'),
(843, 14, 0x4a6f7264616e6961, 'Y', '2003-09-03 12:53:48'),
(845, 14, 0x4b656e6961, 'Y', '2003-09-03 12:53:48'),
(846, 14, '', 'Y', '2006-11-14 11:49:44'),
(849, 14, '', 'Y', '2006-11-14 11:49:44'),
(850, 14, 0x4b6972676969736961, 'Y', '2003-09-03 12:53:48'),
(851, 14, '', 'Y', '2006-11-14 11:49:44'),
(852, 14, '', 'Y', '2006-11-14 11:49:44'),
(853, 14, 0x4c6962616e6f6e, 'Y', '2003-09-03 13:02:41'),
(854, 14, '', 'Y', '2006-11-14 11:49:44'),
(855, 14, '', 'Y', '2006-11-14 11:49:44'),
(856, 14, '', 'Y', '2006-11-14 11:49:44'),
(857, 14, '', 'Y', '2006-11-14 11:49:44'),
(858, 14, 0x4c696574747561, 'Y', '2003-09-03 13:02:41'),
(859, 14, 0x4c7578656d62757267, 'Y', '2003-09-03 13:02:41'),
(861, 14, 0x4d616b65646f6e6961, 'Y', '2003-09-03 13:02:41'),
(862, 14, '', 'Y', '2006-11-14 11:49:44'),
(863, 14, '', 'Y', '2006-11-14 11:49:44'),
(864, 14, 0x4d616c65736961, 'Y', '2003-09-03 13:02:41'),
(865, 14, 0x4d616c65646969766974, 'Y', '2003-09-03 13:02:41'),
(866, 14, '', 'Y', '2006-11-14 11:49:44'),
(867, 14, '', 'Y', '2006-11-14 11:49:44'),
(868, 14, 0x4d61727368616c6c2d736161726574, 'Y', '2003-09-03 13:02:41'),
(869, 14, '', 'Y', '2006-11-14 11:49:44'),
(870, 14, '', 'Y', '2006-11-14 11:49:44'),
(871, 14, 0x4d656b73696b6f, 'Y', '2003-09-03 13:02:41'),
(872, 14, 0x4d696b726f6e65736961, 'Y', '2003-09-03 13:02:41'),
(873, 14, 0x4d6f6c646f766961, 'Y', '2003-09-03 13:02:41'),
(874, 14, '', 'Y', '2006-11-14 11:49:44'),
(875, 14, '', 'Y', '2006-11-14 11:49:44'),
(876, 14, 0x4d61726f6b6b6f, 'Y', '2003-09-03 13:02:41'),
(877, 14, 0x4d6f73616d62696b, 'Y', '2003-09-03 13:02:41'),
(878, 14, '', 'Y', '2006-11-14 11:49:44'),
(879, 14, '', 'Y', '2006-11-14 11:49:44'),
(880, 14, '', 'Y', '2006-11-14 11:49:44'),
(881, 14, '', 'Y', '2006-11-14 11:49:44'),
(882, 14, 0x416c616e6b6f6d616174, 'Y', '2003-09-03 13:05:37'),
(883, 14, 0x557573692d5365656c616e7469, 'Y', '2003-09-03 13:05:37'),
(884, 14, '', 'Y', '2006-11-14 11:49:44'),
(885, 14, '', 'Y', '2006-11-14 11:49:44'),
(886, 14, '', 'Y', '2006-11-14 11:49:44'),
(887, 14, 0x4e6f726a61, 'Y', '2003-09-03 13:05:37'),
(888, 14, '', 'Y', '2006-11-14 11:49:44'),
(889, 14, '', 'Y', '2006-11-14 11:49:44'),
(890, 14, '', 'Y', '2006-11-14 11:49:44'),
(892, 14, '', 'Y', '2006-11-14 11:49:44'),
(893, 14, 0x50617075612d557573692d4775696e6561, 'Y', '2003-09-03 13:05:37'),
(894, 14, '', 'Y', '2006-11-14 11:49:44'),
(895, 14, '', 'Y', '2006-11-14 11:49:44'),
(896, 14, 0x46696c69707069696e6974, 'Y', '2003-09-03 13:05:37'),
(897, 14, 0x50756f6c61, 'Y', '2003-09-03 13:05:37'),
(898, 14, 0x506f72747567616c69, 'Y', '2003-09-03 13:05:37'),
(899, 14, '', 'Y', '2006-11-14 11:49:44'),
(900, 14, '', 'Y', '2006-11-14 11:49:44'),
(901, 14, '', 'Y', '2006-11-14 11:49:44'),
(902, 14, 0x56656ee46ae4, 'Y', '2003-09-03 13:05:37'),
(903, 14, 0x5275616e6461, 'Y', '2003-09-03 13:05:37'),
(904, 14, '', 'Y', '2006-11-14 11:49:44'),
(905, 14, '', 'Y', '2006-11-14 11:49:44'),
(906, 14, 0x5361696e742056696e63656e74206a61204772656e616469696e6974, 'Y', '2003-09-03 13:05:37'),
(907, 14, '', 'Y', '2006-11-14 11:49:44'),
(908, 14, '', 'Y', '2006-11-14 11:49:44'),
(909, 14, 0x53616f20546f6d65206a61205072696e63697065, 'Y', '2003-09-03 13:06:59'),
(910, 14, 0x53617564692d417261626961, 'Y', '2003-09-03 13:06:59'),
(911, 14, '', 'Y', '2006-11-14 11:49:44'),
(913, 14, 0x5365796368656c6c6974, 'Y', '2003-09-03 13:06:59'),
(914, 14, '', 'Y', '2006-11-14 11:49:44'),
(915, 14, '', 'Y', '2006-11-14 11:49:44'),
(916, 14, '', 'Y', '2006-11-14 11:49:44'),
(917, 14, '', 'Y', '2006-11-14 11:49:44'),
(918, 14, 0x536f6c6f6d6f6e2d736161726574, 'Y', '2003-09-03 13:06:59'),
(919, 14, '', 'Y', '2006-11-14 11:49:44'),
(920, 14, 0x4574656ce42d4166696b6b61, 'Y', '2003-09-03 13:06:59'),
(921, 14, 0x457370616e6a61, 'Y', '2003-09-03 13:06:59'),
(922, 14, '', 'Y', '2006-11-14 11:49:44'),
(923, 14, '', 'Y', '2006-11-14 11:49:44'),
(924, 14, 0x537572696e616d, 'Y', '2003-09-03 13:06:59'),
(925, 14, 0x5377617a696d6161, 'Y', '2003-09-03 13:06:59'),
(926, 14, 0x52756f747369, 'Y', '2003-09-03 13:06:59'),
(927, 14, 0x53766569747369, 'Y', '2003-09-03 13:06:59'),
(928, 14, 0x537979726961, 'Y', '2003-09-03 13:06:59'),
(929, 14, '', 'Y', '2006-11-14 11:49:44'),
(930, 14, '', 'Y', '2006-11-14 11:49:44'),
(931, 14, 0x54616e73616e6961, 'Y', '2003-09-03 13:06:59'),
(932, 14, 0x546861696d6161, 'Y', '2003-09-03 13:06:59'),
(933, 14, '', 'Y', '2006-11-14 11:49:44'),
(934, 14, '', 'Y', '2006-11-14 11:49:44'),
(935, 14, 0x5472696e69646164206a6120546f6261676f, 'Y', '2003-09-03 13:06:59'),
(936, 14, '', 'Y', '2006-11-14 11:49:44'),
(937, 14, 0x5475726b6b69, 'Y', '2003-09-03 13:06:59'),
(938, 14, '', 'Y', '2006-11-14 11:49:44'),
(939, 14, '', 'Y', '2006-11-14 11:49:44'),
(940, 14, '', 'Y', '2006-11-14 11:49:44'),
(941, 14, 0x556b7261696e61, 'Y', '2003-09-03 13:12:04'),
(942, 14, 0x596864697374796e656574204172616269656d69726161746974, 'Y', '2003-09-03 13:12:04'),
(943, 14, 0x49736f2d42726974616e6e6961, 'Y', '2003-09-03 13:12:04'),
(944, 14, 0x596864797376616c6c6174, 'Y', '2003-09-03 13:12:04'),
(945, 14, '', 'Y', '2006-11-14 11:49:44'),
(946, 14, '', 'Y', '2006-11-14 11:49:44'),
(947, 14, '', 'Y', '2006-11-14 11:49:44'),
(948, 14, 0x566174696b61616e69, 'Y', '2003-09-03 13:12:04'),
(949, 14, '', 'Y', '2006-11-14 11:49:44'),
(950, 14, '', 'Y', '2006-11-14 11:49:44'),
(951, 14, 0x4a656d656e, 'Y', '2003-09-03 13:12:04'),
(952, 14, 0x53616d626961, 'Y', '2003-09-03 13:12:04'),
(953, 14, '', 'Y', '2006-11-14 11:49:44'),
(680, 4, 0x576173206265646575746574202b206f646572202d206e6163682064656d2052616e673f, 'Y', '2007-12-06 20:55:54'),
(684, 4, 0x5761732062656465757465742064657220626c617565204265726569636820696d20537069656c7374e4726b656772617068656e3f, 'Y', '2007-12-06 20:55:54'),
(556, 4, 0x45732067696274207669656c6520766572736368696564656e652050726f6772616d6d652c20756d205347462d4461746569656e207a75206265747261636874656e206f646572207a752065646974696572656e2e2045696e652067757465205761686c20697374203c6120687265663d22687474703a2f2f7777772e72656e652d67726f74686d616e6e2e64652f6a61676f2f223e4a61676f3c2f613e2c2065696e204a6176612d476f2d436c69656e742e0d0a0d0a4465722042726974697363686520476f2d56657262616e64206861742065696e6520756d66616e67726569636865203c6120687265663d22687474703a2f2f7777772e62726974676f2e6f72672f676f70637265732f676f7063726573312e68746d6c23732d76696577223e4c6973746520766f6e2050726f6772616d6d656e3c2f613e2066fc7220646173204265747261636874656e20766f6e205347462d4461746569656e2e0d0a0d0a57656e6e205369652065696e656e205347462d4265747261636874657220686162656e2c206bf66e6e656e2053696520696872656e2042726f77736572206b6f6e6669677572696572656e2c2064656e204d494d452d54797020273c74743e6170706c69636174696f6e2f782d676f2d7367663c2f2f74743e27206d69742064696573656d2050726f6772616d6d207a752076657262696e64656e2e2044616475726368206bf66e6e656e20536965205347462d4461746569656e206d69742065696e656d204b6c69636b20696d2042726f77736572206265747261636874656e2e0d0a0d0a4d65687220496e666f726d6174696f6e656e206973742061756620666f6c67656e646572205365697465207a752066696e64656e3a203c687474703a2f2f73656e736569732e786d702e6e65742f3f536d61727447616d65466f726d61743e, 'N', '2012-07-03 00:27:20'),
(582, 4, 0x4e616368206a6564656d205a75672065696e657320537069656c65727320776972642064696573656d2065696e652045787472617a656974207a75207365696e6572205568722068696e7a75676566fc67742c20776f626569206d6178696d616c20646965203c686f6d65206661712e7068703f726561643d74266361743d353623456e74727938353e4772756e647a6569743c2f686f6d653e2e2065727265696368742077657264656e206b616e6e2e0d0a0d0a57656e6e2065696e20537069656c6572206b65696e65203c686f6d65206661712e7068703f726561643d74266361743d313823456e74727934313e5a656974206d65687220fc627269673c2f686f6d653e206861742c207665726c696572742065722064617320537069656c2e0d0a0d0a446965736573205a6569742d53797374656d20696d706c656d656e74696572742064617320736f67656e616e6e7465202247656465636b656c74652046697363686572205a6569742053797374656d222c206461732061756620444753206a65646f63682065696e6661636820616c73202246697363686572205a656974222062657a656963686e657420776972642e, 'Y', '2013-12-31 09:52:13'),
(586, 4, 0x57e46872656e642064657220527568657a656974207769726420496872652055687220616e676568616c74656e2c2064696520766572626c656962656e6465205a656974207769726420616c736f206e696368742077656974657220686572756e74657267657ae4686c742e20426566696e64656e20536965207369636820696e2064657220527568657a6569742c20736f207769726420646965732064757263682065696e2053796d626f6c20283c696d616765206e696768742e6769663e29206e6562656e20496872656d2042656e75747a65726e616d656e20756e6420696e2064657220537069656c696e666f726d6174696f6e73736569746520616e67657a656967742e, 'Y', '2013-05-09 22:41:29'),
(637, 4, 0x5761732069737420646965204772756e647a6569743f, 'Y', '2003-09-04 17:55:21'),
(638, 4, 0x5a7520426567696e6e207769726420646965203c693e4772756e647a6569743c2f693e206a6564656d20537069656c657220677574676573636872696562656e2e204ce4756674206469657365206175732c206973742064617320537069656c202e2e2e0d0a3c756c3e0d0a3c6c693e2e2e2e20766f726265692c2077656e6e206f686e6520dc6265727a656974206765737069656c742077757264652e0d0a3c6c693e2e2e2e203c623e6e696368743c2f623e20766f726265692c2077656e6e206d697420dc6265727a656974206765737069656c74207769726420287369656865203c686f6d65206661712e7068703f726561643d74266361743d3323456e74727936373e6a6170616e6973636865732042796f796f6d693c2f686f6d653e2c203c686f6d65206661712e7068703f726561643d74266361743d353623456e74727935383e6b616e61646973636865732042796f796f6d693c2f686f6d653e20756e64203c686f6d65206661712e7068703f726561643d74266361743d353623456e74727935393e466973636865727a6569743c2f686f6d653e292e0d0a3c2f756c3e, 'Y', '2007-12-06 16:45:18'),
(633, 4, 0x576173206973742065696e6520476c65696368617566706172746965206d6974204e69676972693f, 'Y', '2003-09-04 18:07:27'),
(634, 4, 0x45696e65203c686f6d65206661712e7068703f726561643d74266361743d3323456e7472793135343e476c656963686175667061727469653c2f686f6d653e206973742065696e20537069656c2c2077656c63686573206f686e65203c686f6d65206661712e7068703f726561643d74266361743d33353723456e74727939373e566f72676162656e3c2f686f6d653e206765737069656c7420776972642e203c686f6d65206661712e7068703f726561643d74266361743d3323456e74727932313e4e69676972693c2f686f6d653e202062656465757465742c206461737320646965204661726265207a7566e46c6c696720617573676577e4686c7420776972642e, 'Y', '2009-07-04 09:46:34'),
(663, 4, 0x57617320756e746572736368656964657420676577f6686e6c6963686520756e642070617373656e646520566f726761626520766f6e65696e616e6465723f, 'Y', '2004-02-28 15:41:32'),
(668, 4, 0x4572f666666e756e672e20496e20646572204572f666666e756e6720737069656c656e2064617320676573616d74652042726574742020756e6420756d66617373656e64652073747261746567697363686520dc6265726c6567756e67656e20646965207a656e7472616c6520526f6c6c652e, 'Y', '2007-12-06 16:45:18'),
(687, 4, 0x44656e206ee463687374656e205a7567203c623e6e696368743c2f623e20616c73206c6f6b616c6520416e74776f7274206175662064656e206c65747a74656e206765676e657269736368656e205a7567207a7520737069656c656e2e, 'Y', '2010-10-18 17:00:33'),
(693, 4, 0x45696e20646566656e7369766572205a75672c2065696e6520416e74776f7274206175662065696e6520426564726f68756e672e2044616475726368207665726c69657274206d616e2064696520496e69746961746976652c2077657368616c6220646572204765676e657220656e74736368656964656e206b616e6e2c20776f20616c73206ee4636873746573206765737069656c7420776972642e20476f7465206973742064617320476567656e7465696c20766f6e203c686f6d65206661712e7068703f726561643d74266361743d3323456e7472793131323e53656e74653c2f686f6d653e2e0d0a417566204465757473636820686569df7420476f7465204e61636868616e642e, 'Y', '2012-11-27 00:14:13'),
(696, 4, '', 'Y', '2012-07-29 12:52:42'),
(697, 4, 0x4e65757472616c65205363686e69747470756e6b7465206175662064656d20476f2d42726574742c20224e69656d616e64736c616e64222c20646173206b65696e656d2064657220537069656c65722050756e6b7465206272696e67742e, 'Y', '2007-12-06 20:55:54'),
(756, 4, '', 'Y', '2012-07-29 12:52:42'),
(757, 4, 0x416c62616e69656e, 'Y', '2003-09-04 18:20:22'),
(758, 4, 0x416c67657269656e, 'Y', '2003-09-04 18:20:22'),
(759, 4, '', 'Y', '2012-07-29 12:52:42'),
(760, 4, '', 'Y', '2012-07-29 12:52:42'),
(761, 4, 0x416e7461726b746973, 'Y', '2003-09-04 18:20:22'),
(763, 4, 0x417267656e74696e69656e, 'Y', '2003-09-04 18:20:22'),
(764, 4, 0x41726d656e69656e, 'Y', '2003-09-04 18:20:22'),
(765, 4, 0x4175737472616c69656e, 'Y', '2003-09-04 18:20:22'),
(766, 4, 0xd6737465727265696368, 'Y', '2003-09-04 18:20:22'),
(768, 4, '', 'Y', '2012-07-29 12:52:42'),
(771, 4, 0x42616e676c616465736368, 'Y', '2003-09-04 18:20:22'),
(773, 4, 0x42656c6769656e, 'Y', '2003-09-04 18:20:22'),
(777, 4, 0x426f6c697669656e, 'Y', '2003-09-04 18:20:22'),
(779, 4, '', 'Y', '2012-07-29 12:52:42'),
(780, 4, 0x42726173696c69656e, 'Y', '2003-09-04 18:20:22'),
(782, 4, 0x42756c67617269656e, 'Y', '2003-09-04 18:20:22'),
(786, 4, 0x4b616d6572756e, 'Y', '2003-09-04 18:20:22'),
(787, 4, 0x4b616e616461, 'Y', '2003-09-04 18:20:22'),
(791, 4, '', 'Y', '2012-07-29 12:52:42'),
(792, 4, '', 'Y', '2012-07-29 12:52:42'),
(793, 4, 0x4b6f6c756d6269656e, 'Y', '2003-09-04 18:20:22'),
(797, 4, '', 'Y', '2012-07-29 12:52:42'),
(799, 4, 0x4b726f617469656e, 'Y', '2003-09-04 18:20:22'),
(800, 4, 0x4b756261, 'Y', '2003-09-04 18:20:22'),
(801, 4, 0x5a797065726e, 'Y', '2003-09-04 18:20:22'),
(802, 4, 0x5473636865636869736368652052657075626c696b, 'Y', '2003-09-04 18:20:22'),
(803, 4, 0x44e46e656d61726b, 'Y', '2003-09-04 18:20:22'),
(806, 4, 0x446f6d696e696b616e69736368652052657075626c696b, 'Y', '2003-09-04 18:20:22'),
(808, 4, '', 'Y', '2012-07-29 12:52:42'),
(809, 4, 0xc467797074656e, 'Y', '2003-09-04 18:20:22'),
(810, 4, '', 'Y', '2012-07-29 12:52:42'),
(814, 4, 0xc47468696f7069656e, 'Y', '2003-09-04 18:20:22'),
(816, 4, 0x46696e6e6c616e64, 'Y', '2003-09-04 18:20:22'),
(817, 4, 0x4672616e6b7265696368, 'Y', '2003-09-04 18:20:22'),
(820, 4, '', 'Y', '2012-07-29 12:52:42'),
(821, 4, 0x446575747363686c616e64, 'Y', '2003-09-04 18:20:22'),
(822, 4, '', 'Y', '2012-07-29 12:52:42'),
(823, 4, 0x477269656368656e6c616e64, 'Y', '2003-09-04 18:20:22'),
(824, 4, '', 'Y', '2012-07-29 12:52:42'),
(825, 4, '', 'Y', '2012-07-29 12:52:42'),
(826, 4, '', 'Y', '2012-07-29 12:52:42'),
(827, 4, '', 'Y', '2012-07-29 12:52:42'),
(828, 4, '', 'Y', '2012-07-29 12:52:42'),
(829, 4, '', 'Y', '2012-07-29 12:52:42'),
(831, 4, '', 'Y', '2012-07-29 12:52:42'),
(832, 4, 0x556e6761726e, 'Y', '2003-09-04 18:20:22'),
(833, 4, 0x49736c616e64, 'Y', '2003-09-04 18:20:22'),
(834, 4, 0x496e6469656e, 'Y', '2003-09-04 18:20:22'),
(835, 4, 0x496e646f6e657369656e, 'Y', '2003-09-04 18:20:22'),
(836, 4, '', 'Y', '2012-07-29 12:52:42'),
(837, 4, 0x4972616b, 'Y', '2003-09-04 18:20:22'),
(838, 4, 0x49726c616e64, 'Y', '2003-09-04 18:20:22'),
(839, 4, '', 'Y', '2012-07-29 12:52:42'),
(840, 4, 0x4974616c69656e, 'Y', '2003-09-04 18:20:22'),
(841, 4, 0x4a616d61696b61, 'Y', '2003-09-04 18:20:22'),
(842, 4, '', 'Y', '2012-07-29 12:52:42'),
(843, 4, '', 'Y', '2012-07-29 12:52:42'),
(849, 4, '', 'Y', '2012-07-29 12:52:42'),
(853, 4, 0x4c6962616e6f6e, 'Y', '2003-09-04 18:20:22'),
(854, 4, '', 'Y', '2012-07-29 12:52:42'),
(855, 4, 0x4c6962657269656e, 'Y', '2003-09-04 18:20:22'),
(857, 4, 0x4c69636874656e737465696e, 'Y', '2003-09-04 18:20:22'),
(858, 4, 0x4c69746175656e, 'Y', '2003-09-04 18:20:22'),
(859, 4, 0x4c7578656d62757267, 'Y', '2003-09-04 18:20:22'),
(861, 4, 0x4d617a65646f6e69656e, 'Y', '2003-09-04 18:20:22'),
(865, 4, 0x4d616c65646976656e, 'Y', '2003-09-04 18:20:22'),
(867, 4, '', 'Y', '2012-07-29 12:52:42'),
(871, 4, '', 'Y', '2012-07-29 12:52:42'),
(873, 4, 0x4d6f6c64617769656e, 'Y', '2003-09-04 18:20:22'),
(874, 4, '', 'Y', '2012-07-29 12:52:42'),
(875, 4, 0x4d6f6e676f6c6569, 'Y', '2003-09-04 18:20:22'),
(879, 4, '', 'Y', '2012-07-29 12:52:42'),
(881, 4, '', 'Y', '2012-07-29 12:52:42'),
(882, 4, 0x4e69656465726c616e6465, 'Y', '2003-09-04 18:20:22'),
(883, 4, 0x4e65757365656c616e64, 'Y', '2003-09-04 18:20:22'),
(885, 4, '', 'Y', '2012-07-29 12:52:42'),
(887, 4, 0x4e6f72776567656e, 'Y', '2003-09-04 18:20:22'),
(889, 4, '', 'Y', '2012-07-29 12:52:42'),
(892, 4, '', 'Y', '2012-07-29 12:52:42'),
(895, 4, '', 'Y', '2012-07-29 12:52:42'),
(896, 4, 0x5068696c6c6970696e656e, 'Y', '2003-09-04 18:20:22'),
(897, 4, 0x506f6c656e, 'Y', '2003-09-04 18:20:22'),
(899, 4, '', 'Y', '2012-07-29 12:52:42'),
(902, 4, 0x527573736c616e64, 'Y', '2003-09-04 18:20:22'),
(908, 4, '', 'Y', '2012-07-29 12:52:42'),
(910, 4, 0x53617564692d4172616269656e, 'Y', '2003-09-04 18:20:22'),
(911, 4, '', 'Y', '2012-07-29 12:52:42'),
(915, 4, 0x53696e6761707572, 'Y', '2003-09-04 18:20:22'),
(917, 4, 0x536c6f77656e69656e, 'Y', '2003-09-04 18:20:22'),
(920, 4, 0x53fc66616672696b61, 'Y', '2003-09-04 18:20:22'),
(921, 4, 0x5370616e69656e, 'Y', '2003-09-04 18:20:22'),
(922, 4, '', 'Y', '2012-07-29 12:52:42'),
(923, 4, '', 'Y', '2012-07-29 12:52:42'),
(926, 4, 0x536368776564656e, 'Y', '2003-09-04 18:20:22'),
(927, 4, 0x5363687765697a, 'Y', '2003-09-04 18:20:22'),
(928, 4, 0x53797269656e, 'Y', '2003-09-04 18:20:22'),
(929, 4, '', 'Y', '2012-07-29 12:52:42'),
(932, 4, '', 'Y', '2012-07-29 12:52:42'),
(938, 4, '', 'Y', '2012-07-29 12:52:42'),
(940, 4, '', 'Y', '2012-07-29 12:52:42'),
(942, 4, 0x56657265696e696774652041726162697363686520456d6972617465, 'Y', '2003-09-04 18:20:22'),
(943, 4, 0x56657265696e6967746573204bf66e69677265696368, 'Y', '2003-09-04 18:20:22'),
(944, 4, 0x56657265696e69677465205374616174656e, 'Y', '2003-09-04 18:20:22'),
(948, 4, 0x566174696b616e, 'Y', '2003-09-04 18:20:22'),
(949, 4, '', 'Y', '2012-07-29 12:52:42'),
(950, 4, '', 'Y', '2012-07-29 12:52:42'),
(953, 4, 0x53696d6261627765, 'Y', '2003-09-06 20:54:48');
INSERT INTO `Translations` (`Original_ID`, `Language_ID`, `Text`, `Translated`, `Updated`) VALUES
(751, 4, 0x576965206b616e6e2069636820746f746520537465696e6520616d20456e64652064657320537069656c657320656e746665726e656e3f, 'Y', '2003-09-04 19:03:43'),
(752, 4, 0x4e61636864656d20626569646520537069656c6572206765706173737420686162656e2c206dfc7373656e20746f746520537465696e65206d616e75656c6c20656e746665726e742077657264656e2e204d69742065696e656d204b6c69636b206175662065696e6520477275707065206b616e6e206d616e2064656e20537461747573207a7769736368656e206c6562656e6420756e6420746f74207765636873656c6e2e204b6c65696e65207363687761727a6520756e6420776569df65205175616472617465207a656967656e20646965204765626965746520616e2e0d0a0d0a426569646520537069656c6572206dfc7373656e207369636820fc6265722064656e2053746174757320646572204772757070656e20756e642064696520476562696574652065696e6967207365696e2e20556d207a757a757374696d6d656e2c206dfc7373656e206469652064656e204665727469672d4c696e6b20756e7465722064656d20427265747420616e6b6c69636b656e2e0d0a0d0a46616c6c732065696e65722064657220537069656c6572206e69636874207a757374696d6d742c206b616e6e206469657365722064656e204c696e6b203c693e50617274696520666f72747365747a656e3c2f693e20616e6b6c69636b656e2c20756d206d69742065696e6967656e205afc67656e2064656e205374617475732065696e657220506f736974696f6e207a75206b6ce472656e2e20416c7320416c7465726e6174697665206b616e6e2064696520506f736974696f6e20706572204e616368726963687420616e2064656e204765676e6572206f64657220696d203c686f6d6520666f72756d2f6c6973742e7068703f666f72756d3d353e476f2d4469736b757373696f6e73666f72756d3c2f686f6d653e2062657370726f6368656e2077657264656e2e, 'Y', '2009-07-04 09:46:34'),
(753, 4, 0x57617320626564657574656e206b6c65696e65206772fc6e65206f64657220726f746520517561647261746520616d20456e64652064657320537069656c733f, 'Y', '2010-10-11 19:01:52'),
(686, 4, '', 'Y', '2012-07-29 12:52:42'),
(698, 4, 0x4672656968656974, 'Y', '2003-09-04 20:19:39'),
(699, 4, 0x45696e20667265696572205363686e69747470756e6b742c20646572206e6562656e2065696e656d20537465696e206f6465722065696e65722047727570706520766f6e20537465696e656e206c696567742e, 'Y', '2007-12-06 20:55:54'),
(700, 4, '', 'Y', '2012-07-29 12:52:42'),
(701, 4, 0x45696e2076657262696e64656e64657220646961676f6e616c6572205a756720616d20456e64652065696e6572206765676e657269736368656e204b657474652e, 'Y', '2010-11-05 23:10:18'),
(702, 4, '', 'Y', '2012-07-29 12:52:42'),
(703, 4, 0x45696e205a75672c2077656c636865722065696e65206765676e657269736368652047727570706520696e2065696e656d20224e65747a222066e46e67742e, 'Y', '2003-09-04 20:19:39'),
(704, 4, '', 'Y', '2012-07-29 12:52:42'),
(705, 4, 0x45696e6520766572627265697465204572f666666e756e672c206265692077656c636865722065696e20537069656c6572206472656920537465726e70756e6b746520656e746c616e672065696e65722053656974652062657365747a742e20204175662065696e656d2031397831392042726574742077e472652073696e6420646173206469652062656964656e20342d342d50756e6b7465206175662064657220676c65696368656e204c696e69652c20756e64206465722050756e6b742067656e617520696e20646572204d69747465207a7769736368656e2064656e2062656964656e2e, 'Y', '2010-10-18 17:00:33'),
(706, 4, '', 'Y', '2012-07-29 12:52:42'),
(707, 4, 0x53686963686f2069737420646572206a6170616e697363686520417573647275636b2066fc722065696e65205472657070652e, 'Y', '2010-10-18 17:00:33'),
(1316, 4, 0x556e7465727374fc747a7420447261676f6e205253533f, 'Y', '2010-10-18 17:01:28'),
(708, 4, 0x426565696e666c757373742064696520537069656c62726574746772f6df652064656e2045696e666c757373206175662064696520426577657274756e673f, 'Y', '2003-09-04 20:19:39'),
(709, 4, 0x4a612e0d0a0d0a31397831392d537069656c6520686162656e2064656e206772f6df74656e2045696e666c757373206175662064696520426577657274756e673b2064696573652077657264656e20616c7320416e6b65722076657277656e64657420756e6420686162656e2064616865722065696e656e2045696e666c75737366616b746f7220766f6e20313030252062656920646572204265726563686e756e6720646572203c686f6d65206661712e7068703f726561643d74266361743d31303523456e7472793132333e426577657274756e6773e46e646572756e673c2f686f6d653e2c2077656e6e206e65756520426577657274756e67656e206265726563686e65742077657264656e2e0d0a0d0a536f776f686c206772f6df6572652c20616c732061756368206b6c65696e657265204272657474657220686162656e2065696e656e20676572696e676572656e2045696e666c7573732e0d0a0d0a426569737069656c653a0d0a3c756c3e0d0a3c6c693e32357832353a203437250d0a3c6c693e31337831333a2034372520287a7765692031337831332d5061727469656e20656e74737072656368656e20756e676566e468722065696e65722031397831392d506172746965292e0d0a3c6c693e3978393a2032322520287a776569203978392d5061727469656e20656e74737072656368656e20756e676566e468722065696e65722031337831332d506172746965292e0d0a3c2f756c3e0d0a0d0a44696520466f726d656c2066fc722064656e2045696e666c75737366616b746f72206c61757465743a0d0a3c74743e283139202d202873697a652d3139295e3229202f2031395e323c2f74743e, 'Y', '2009-07-04 10:17:33'),
(748, 4, 0x4b616e6e206963682065696e205475726e696572206572f666666e656e206f646572206f7267616e6973696572656e3f, 'Y', '2007-12-06 21:52:19'),
(749, 4, 0x536965206bf66e6e656e206765726e652065696e205475726e696572206f7267616e73696572656e2e2054756e726e696572616e6bfc6e646967756e67656e206bf66e6e656e2053696520696d203c686f6d6520666f72756d2f6c6973742e7068703f666f72756d3d31313e5475726e69657220466f72756d3c2f686f6d653e206e6163686c6573656e20756e6420766572f66666656e746c696368656e2e20447261676f6e207769726420536965206d69742077696368746967656e204c696e6b7320696e2064657220464151206765726e6520756e7465727374fc747a656e2e, 'Y', '2009-07-04 10:13:28'),
(665, 4, '', 'Y', '2012-07-29 12:52:42'),
(710, 4, 0x576f206b616e6e20696368206c65726e656e2c20476f207a7520737069656c656e3f, 'Y', '2007-12-06 21:52:19'),
(712, 4, 0x5769652066756e6b74696f6e6965727420447261676f6e7320426577657274756e677373797374656d3f, 'Y', '2004-06-14 18:09:33'),
(608, 4, 0x4a612e2053696520736f6c6c74656e2073696368206d697420476f2d526567656c6e2c2050485020756e64204d7953514c206175736b656e6e656e2e0d0a0d0a536568656e205369652073696368207a756ee46368737420626569203c6120687265663d22687474703a2f2f736f75726365666f7267652e6e65742f70726f6a656374732f647261676f6e676f73657276657222207461726765743d225f626c616e6b223e447261676f6e732050726f6a656b7473656974652061756620536f75726365666f7267653c2f613e20756d2c20756e64206d656c64656e2053696520736963682062697474652062656920646572203c6120687265663d22687474703a2f2f6c697374732e736f75726365666f7267652e6e65742f6c697374732f6c697374696e666f2f647261676f6e676f7365727665722d646576656c22207461726765743d225f626c616e6b223e4d61696c696e672d4c6973746520647261676f6e676f7365727665722d646576656c3c2f613e20616e2e, 'N', '2009-07-04 10:13:28'),
(636, 4, 0x5374616e646172646de4df6967206c697374657420447261676f6e206b65696e6520696e616b746976656e20537069656c6572206175662e204573206769627420616c6c657264696e67732065696e203c686f6d65206661712e7068703f726561643d74266361743d32303023456e7472793234363e46696c7465722d5761686c66656c643c2f686f6d653e20696d20546162656c6c656e6b6f706620646572205370616c74652022416b7469766974e474222c206d697420646572207a7769736368656e20616b746976656e20756e6420616c6c656e20537069656c65726e20676577e4686c742077657264656e206b616e6e2e, 'Y', '2007-12-06 16:18:37'),
(664, 4, 0x3c693e476577f6686e6c6963686520566f72676162653c2f693e206c6567742064696520416e7a61686c2064657220566f7267616265737465696e6520616e68616e6420766f6e20537069656c7374e4726b65756e74657273636869656420756e6420537069656c62726574746772f6df6520666573742e203c686f6d65206661712e7068703f726561643d74266361743d3323456e747279393e4b6f6d693c2f686f6d653e2069737420362c352050756e6b74652066fc7220476c656963686175667061727469656e2c20616e736f6e7374656e20302c352e0d0a0d0a3c693e50617373656e646520566f72676162653c2f693e2062656e75747a74206665696e657265204b6f6d692d496e74657276616c6c6520282e2e2e2c20312c352c20322c302c20322c352c202e2e2e292c20756d20617563682062656920676572696e676572656e20537069656c7374e4726b65756e746572736368696564656e2065696e652035302d3530204368616e63652066fc7220626569646520537069656c6572207a7520676577e468726c65697374656e2e, 'Y', '2009-07-04 09:46:34'),
(666, 4, 0x45696e65207665726272656974657465205a756773657175656e7a2066fc722062657374696d6d7465206c6f6b616c6520536974756174696f6e656e202866617374206175737363686c6965df6c69636820696e206465722045636b65292e2020dc626c696368657277656973652069737420657320646965206265737465206c6f6b616c652053657175656e7a2066fc7220626569646520537069656c65722c2061626572206e69636874206e6f7477656e6469676572776569736520617563682064696520626573746520676c6f62616c652e20204a6f73656b69206973742065696e2074616b7469736368657220426567726966662c206b65696e20737472617465676973636865722e, 'Y', '2010-10-18 17:00:33'),
(713, 4, 0x447261676f6e2062656e75747a7420646173204547462d426577657274756e677373797374656d2066fc72207365696e65204265726563686e756e67656e2e2044657461696c732064617a752066696e64656e205369652061756620646572205365697465203c6120687265663d22687474703a2f2f7777772e6575726f7065616e2d676f2e6f72672f726174696e672f676f722e68746d6c223e454746204f6666696369616c20726174696e67733c2f613e2e0d0a0d0a44696520537069656c7374e4726b656ee46e646572756e6720657267696274207369636820616d20456e64652064657320537069656c65732064757263682064696520566f72676162652c20646173204b6f6d692c2064696520616b7475656c6c6520537069656c7374e4726b652064657220537069656c657220756e64206461732050617274696565726765626e69732e20416e646572652046616b746f72656e20737069656c656e206b65696e6520526f6c6c652e0d0a0d0a4d69742064657220566f72676162652c2064656d204b6f6d6920756e642064657220537069656c7374e4726b65206b616e6e206d616e20646965205761687273636865696e6c6963686b6569742065696e65732050617274696561757367616e67657320696e2064656e20766f7268616e64656e656e204547532d53746174697374696b656e206e6163687363686175656e20756e6420736f20666573747374656c6c656e2c206f62206d616e20626573736572206f646572207363686c65636874657220616c732065727761727465742061627363686e69747420756e642077696520737461726b2064696520656967656e6520426577657274756e6720626565696e666c75df7420776972642e204b6f6d6d74206461732074617473e463686c696368652045726765626e69732064656d206265726563686e6574656e2073656872206e6168652c206861742064617320537069656c206b61756d204175737769726b756e67656e206175662064696520426577657274756e67656e2062656964657220537069656c65723b206b6f6d6d742065732064656d206e69636874206e6168652c206861742064617320537069656c65726765626e69732065696e656e20737461726b656e2045696e666c757373206175662064696520426577657274756e67656e2062656964657220537069656c65722e0d0a0d0a5a756d20426569737069656c3a20496e2065696e656d203c656d3e6175736765676c696368656e656e3c2f656d3e20537069656c2c206265692064656d2064617320526174696e6720766f6e205363687761727a20676572696e6765722069737420616c732064617320526174696e6720766f6e20576569df2c207769726420576569df206d697420686f686572205761687273636865696e6c6963686b65697420676577696e6e656e2e0d0a3c756c3e0d0a3c6c693e57656e6e20576569df20676577696e6e742c20776972642064617320526174696e6720766f6e20576569df2077656e6967206f64657220676172206e6963687420657268f668742c20756d67656b6568727420776972642064617320526174696e6720766f6e205363687761727a2077656e69672062697320676172206e696368742076657272696e676572742c206461206461732045726765626e69732065727761727465742077757264652e3c2f6c693e0d0a3c6c693e57656e6e205363687761727a206e756e20676577696e6e742c20776972642064617320526174696e6720766f6e205363687761727a20756d2065696e656e206772f6df6572656e20426574726167206265737365722c206461206461732045726765626e6973206e69636874207a7520657277617274656e207761722e2041756620676c65696368657220426173697320776972642064617320526174696e6720766f6e20576569df206562656e736f207665726b6c65696e6572742e3c2f6c693e0d0a3c2f756c3e0d0a0d0a446162656920626c65696274206469652048f66865206465732053696567657320756e626572fc636b73696368746967742e2045696e2053696567206973742065696e20536965672c206567616c206f62206d697420302c35206f646572206d6974203130302050756e6b74656e206765776f6e6e656e2077757264652e2044696520c46e646572756e67656e2064657220526174696e67732073696e64206461766f6e20756e616268e46e6769672e, 'Y', '2012-06-14 00:12:24'),
(596, 4, 0x536965206bf66e6e656e2064696520766572626c656962656e646520426564656e6b7a65697420496872657220537069656c652074656d706f72e4722066fc722065696e656e2055726c61756220616e68616c74656e2e0d0a0d0a426974746520666f6c67656e205369652064656d204c696e6b203c686f6d6520656469745f7661636174696f6e2e7068703e56657266fc67626172652055726c61756273746167653c2f686f6d653e2061756620646572203c686f6d652075736572696e666f2e7068703e53746174757373656974653c2f686f6d653e2c2077656e6e205369652065696e656e2055726c61756220626567696e6e656e206df6636874656e2e0d0a0d0a3c6e6f74653edc6265727365747a756e672066fc7220224f6e205661636174696f6e2073746174757322206d757373206e6f63682068657272617573676573756368742077657264656e2e3c2f6e6f74653e, 'Y', '2009-07-04 10:13:28'),
(629, 4, 0x576173206265646575746574206469652050726f7a656e74616e676162652065696e65732042656e75747a6572733f, 'Y', '2004-02-27 13:24:18'),
(630, 4, 0x4465722050726f7a656e7465696e7472616720676962742064617320536965672d4e69656465726c6167652d56657268e46c746e69732065696e65732042656e75747a65727320616e20756e64206b616e6e2065696e2077656e6967207a7573e4747a6c6963686520496e666f726d6174696f6e20fc6265722064657373656e2052616e672062696574656e2e0d0a0d0a536f62616c642065696e20537069656c65722065696e69676520676577657274657465205061727469656e206765737069656c7420756e642065722065696e656e205765727420766f6e20353025206861742c206b616e6e20646173206175662065696e652072656368742067656e61756520537069656c7374e4726b65616e676162652068696e64657574656e2e2057656e6e206465722057657274206772f6df657220616c7320373525206973742c2077697264206465722042656e75747a6572207761687273636865696e6c69636820756e7465722d20756e6420756e7465722032352520fc6265726265776572746574207365696e2e, 'Y', '2007-12-06 16:18:37'),
(670, 4, 0x53656b6920626564657574657420646f7070656c746573204c6562656e20756e64206973742065696e65206c6f6b616c6520536974756174696f6e2c20696e2077656c63686572207a776569204772757070656e204672656968656974656e206d697465696e616e646572207465696c656e2c20736f64617373206b65696e65204772757070652064696520616e646572652066616e67656e206b616e6e2e, 'Y', '2007-12-06 20:56:30'),
(767, 4, 0x4173657262616964736368616e, 'Y', '2003-09-06 20:33:24'),
(769, 4, '', 'Y', '2012-07-29 12:52:42'),
(772, 4, 0x576569df727573736c616e64, 'Y', '2003-09-06 20:33:24'),
(785, 4, 0x4b616d626f6473636861, 'Y', '2003-09-06 20:33:24'),
(788, 4, 0x4b6170205665726465, 'Y', '2003-09-06 20:33:24'),
(790, 4, 0x547363686164, 'Y', '2003-09-06 20:34:59'),
(798, 4, 0x456c66656e6265696e6bfc737465, 'Y', '2003-09-06 20:35:25'),
(813, 4, 0x4573746c616e64, 'Y', '2003-09-06 20:54:48'),
(815, 4, 0x46696473636869, 'Y', '2003-09-06 20:54:48'),
(818, 4, 0x476162756e, 'Y', '2003-09-06 20:54:48'),
(830, 4, '', 'Y', '2012-07-29 12:52:42'),
(845, 4, 0x4b656e6961, 'Y', '2003-09-06 20:54:48'),
(846, 4, '', 'Y', '2012-07-29 12:52:42'),
(850, 4, 0x4b697267697374616e, 'Y', '2003-09-06 20:54:48'),
(851, 4, '', 'Y', '2012-07-29 12:52:42'),
(852, 4, 0x4c6574746c616e64, 'Y', '2003-09-06 20:54:48'),
(856, 4, 0x4c696279656e, 'Y', '2003-09-06 20:54:48'),
(862, 4, 0x4d6164616761736b6172, 'Y', '2003-09-06 20:54:48'),
(864, 4, '', 'Y', '2012-07-29 12:52:42'),
(866, 4, '', 'Y', '2012-07-29 12:52:42'),
(868, 4, 0x4d6172736368616c6c20496e73656c6e, 'Y', '2003-09-06 20:54:48'),
(869, 4, 0x4d6175726974616e69656e, 'Y', '2003-09-06 20:54:48'),
(872, 4, 0x4d696b726f6e657369656e, 'Y', '2003-09-06 20:54:48'),
(876, 4, 0x4d61726f6b6b6f, 'Y', '2003-09-06 20:54:48'),
(877, 4, 0x4d6f73616d62696b, 'Y', '2003-09-06 20:54:48'),
(878, 4, '', 'Y', '2012-07-29 12:52:42'),
(880, 4, '', 'Y', '2012-07-29 12:52:42'),
(884, 4, 0x4e696b617261677561, 'Y', '2003-09-06 20:54:48'),
(886, 4, '', 'Y', '2012-07-29 12:52:42'),
(888, 4, '', 'Y', '2012-07-29 12:52:42'),
(890, 4, '', 'Y', '2012-07-29 12:52:42'),
(893, 4, 0x5061707561204e65752d4775696e6561, 'Y', '2003-09-06 20:54:48'),
(894, 4, '', 'Y', '2012-07-29 12:52:42'),
(898, 4, '', 'Y', '2012-07-29 12:52:42'),
(900, 4, 0x4b61746172, 'Y', '2003-09-06 20:54:48'),
(901, 4, 0x52756de46e69656e, 'Y', '2003-09-06 20:54:48'),
(907, 4, '', 'Y', '2012-07-29 12:52:42'),
(913, 4, 0x5365796368656c6c656e, 'Y', '2003-09-06 20:54:48'),
(914, 4, '', 'Y', '2012-07-29 12:52:42'),
(916, 4, 0x536c6f77616b6569, 'Y', '2003-09-06 20:54:48'),
(918, 4, 0x536f6c6f6d6f6e2d496e73656c6e, 'Y', '2003-09-06 20:54:48'),
(919, 4, '', 'Y', '2012-07-29 12:52:42'),
(924, 4, 0x537572696e616d, 'Y', '2003-09-06 20:54:48'),
(930, 4, 0x546164736368696b697374616e, 'Y', '2003-09-06 20:54:48'),
(931, 4, 0x54616e73616e6961, 'Y', '2003-09-06 20:54:48'),
(933, 4, '', 'Y', '2012-07-29 12:52:42'),
(934, 4, '', 'Y', '2012-07-29 12:52:42'),
(936, 4, 0x54756e657369656e, 'Y', '2003-09-06 20:54:48'),
(937, 4, 0x54fc726b6569, 'Y', '2003-09-06 20:54:48'),
(939, 4, '', 'Y', '2012-07-29 12:52:42'),
(941, 4, '', 'Y', '2012-07-29 12:52:42'),
(945, 4, '', 'Y', '2012-07-29 12:52:42'),
(946, 4, 0x557362656b697374616e, 'Y', '2003-09-06 20:54:48'),
(947, 4, '', 'Y', '2012-07-29 12:52:42'),
(951, 4, 0x4a656d656e, 'Y', '2003-09-06 20:54:48'),
(952, 4, 0x53616d626961, 'Y', '2003-09-06 20:54:48'),
(762, 4, 0x416e746967756120756e642042617262756461, 'Y', '2012-09-01 21:20:33'),
(567, 4, 0x42656920447261676f6e206bf66e6e656e20536965203c686f6d65206661712e7068703f726561643d74266361743d3323456e7472793135323e7a7567626173696572656e643c2f686f6d653e20476f20737069656c656e2c207761732062656465757465742c206461737320476f2d5061727469656e2061756620447261676f6e205061727469656e2070657220452d4d61696c20e4686e656c6e20756e64206461737320447261676f6e207a7573e4747a6c696368207a7572204461727374656c6c756e67207369636820756d2064696520226ce473746967656e222044696e676520776965205a6569746c696d69747320756e6420426577657274756e67656e206bfc6d6d6572742e0d0a0d0a44475320537069656c6572207365747a656e20fc626c696368657277656973652066fc6e66205afc67652070726f20576f6368652e20204461686572206bf66e6e656e205061727469656e206d65687265726520576f6368656e206f64657220676172204d6f6e6174652064617565726e2c2061626572206475726368205365747a656e2073656872206b75727a6572205a6569746c696d697473206bf66e6e656e206175636820766572676c65696368737765697365207363686e656c6c65205061727469656e206765737069656c742077657264656e2e2020496e203c686f6d65206661712e7068703f726561643d74266361743d3323456e7472793135333e456368747a6569743c2f686f6d653e207a7520737069656c656e2c206973742062656920447261676f6e206e69636874206df6676c6963682028756e642077697264206175636820696e205a756b756e6674206e69636874206df6676c696368207365696e292e2020496e20456368747a656974207a7520737069656c656e2062656465757465742c206461737320626569646520537069656c6572207a75676c65696368206f6e6c696e652073696e642c20756e642064696520766f6d204765676e65722067657365747a74656e205afc676520736f666f727420736568656e3b20736f6c636865205061727469656e2064617565726e20756e676566e468722065696e65205374756e64652e0d0a0d0a46616c6c732053696520696e20456368747a65697420476f20737069656c656e206df6636874656e2c20736f6c6c74656e20536965203c6120687265663d22687474703a2f2f73656e736569732e786d702e6e65742f3f476f53657276657222207461726765743d225f626c616e6b223e616e6465726520476f2d5365727665723c2f613e2c207a756d20426569737069656c203c6120687265663d22687474703a2f2f7777772e676f6b67732e636f6d2f22207461726765743d225f626c616e6b223e4b47533c2f613e206f646572203c6120687265663d22687474703a2f2f7777772e70616e64616e65742e636f2e6a702f456e676c6973682f22207461726765743d225f626c616e6b223e4947533c2f613e2061757370726f62696572656e2e0d0a0d0a44475320626573636872e46e6b742064757263682065696e203c686f6d65206661712e7068703f726561643d74266361743d33353623456e7472793237333e51756f74612053797374656d3c2f686f6d653e2064696520416e7a61686c20766f6e20416e66726167656e20696e6e657268616c622065696e657220676577697373656e205a656974206175662065696e2022fc626c696368657322204e69766561752e20204469657320736f6c6c7465206b61756d206a656d616e64656d2061756666616c6c656e2e0d0a0d0a57656974657220626965746574204447532065696e203c686f6d6520666f72756d2f3e466f72756d3c2f686f6d653e2066fc72204469736b757373696f6e656e20fc62657220476f20756e64204447532e, 'Y', '2013-05-09 22:41:29'),
(578, 4, 0x57656e6e20646965204772756e647a6569742065696e657320537069656c65727320617566676562726175636874206973742c20676962742065732065696e652066697865205a656974626573636872e46e6b756e67656e2066fc72206a6564656e203c623e65696e7a656c6e656e3c2f623e205a75672e205a7573e4747a6c6963682067696274206573206d65687265726520506572696f64656e3a0d0a3c756c3e0d0a3c6c693e57656e6e2064657220537069656c657220696e6e657268616c622065696e657220506572696f6465207a696568742c2062656b6f6d6d74206469657365722064696520676573616d746520506572696f64652077696564657220677574676573636872696562656e3b2064696520416e7a61686c206465722076657266fc67626172656e20506572696f64656e20e46e646572742073696368206e696368742e3c2f6c693e0d0a0d0a3c6c693e44617565727420646572205a7567206ce46e6765722c20776972642064696520416e7a61686c2064657220506572696f64656e20756d2065696e652076657272696e676572742c20756e6420646965205a65697420626567696e6e74207769656465722068657272756e7465727a757ae4686c656e2e3c2f6c693e0d0a3c2f756c3e0d0a0d0a57656e6e2065696e20537069656c6572206b65696e65205a65697420756e64206b65696e6520506572696f64656e206d65687220fc62726967206861742c206973742064617320537069656c207665726c6f72656e2e, 'Y', '2013-05-09 22:41:29'),
(1307, 4, 0x576965206b616e6e206963682065696e656e204c696e6b207a752065696e65722062656c6965626967656e20447261676f6e2053656974652065727a657567656e3f, 'Y', '2009-07-05 15:39:22'),
(580, 4, 0x57656e6e20646965204772756e647a65697420617566676562726175636874206973742c20676962742065732065696e65205a656974626573636872e46e6b756e672066fc72203c623e6d6568726572653c2f623e205afc67652e0d0a0d0a426569737069656c3a20313020537465696e6520696e6e657268616c6220766f6e20313520546167656e2e0d0a57656e6e2064657220537069656c65722064656e2031302e205a756720696e6e657268616c6220646572205a6569742061626765676562656e206861742c207374617274657420646965205ae4686c756e6720766f6e20766f726e6520286d697420313520546167656e2066fc7220646965206ee463687374656e203130205afc6765292e0d0a0d0a44617320537069656c20697374207665726c6f72656e2c2077656e6e20646965205a6569742061626ce47566742c2064657220537069656c657220616c736f206e6963687420646965206765666f72646572746520416e7a61686c20766f6e205afc67656e20696e6e657268616c6220646572205a656974626573636872e46e6b756e67206d616368742e, 'Y', '2013-05-09 22:41:29'),
(584, 4, 0x44696520467261676520736f6c6c206d69742065696e656d20426569737069656c2065726b6ce472742077657264656e3a0d0a0d0a53696520776f6c6c656e2064757263687363686e6974746c6963682064726569205afc67652070726f20576f6368652c20756e642073696520776f6c6c656e206b65696e656e205a65697461626c61756620616d20576f6368656e656e64652e0d0a0d0a4461732077e472656e2028372d32292054616765202a2028323468202d20396820527568657a65697429202f2033205afc6765203d203235205374756e64656e207a7573e4747a6c69636865205a6569742070726f205a75672c20776f62656920646572205a65697461626c61756620616d20576f6368656e656e6465206175736765736368616c746574206973742e, 'Y', '2007-12-06 15:56:36'),
(503, 4, 0x566572736368696564656e6573, 'Y', '2007-12-07 15:45:09'),
(783, 4, '', 'Y', '2012-07-29 12:52:42'),
(789, 4, '', 'Y', '2012-07-29 12:52:42'),
(804, 4, '', 'Y', '2012-07-29 12:52:42'),
(770, 4, '', 'Y', '2012-07-29 12:52:42'),
(870, 4, '', 'Y', '2012-07-29 12:52:42'),
(963, 4, 0x5761732062656465757465742065696e20726f742068696e7465726c65677465732046656c6420696d2057617274657a696d6d65723f, 'Y', '2003-09-11 01:37:41'),
(964, 4, 0x45696e6520736f6c636865732046656c6420696e20646572205370616c7465205374e4726b65626572656963682062656465757465742c2064617373206968726520537069656c7374e4726b65206e6963687420646572206765666f7264657274656e20656e74737072696368742e20536965206bf66e6e656e20736f6c63682065696e20537069656c206e6963687420616e6e65686d656e2e, 'N', '2007-12-10 01:05:47'),
(755, 7, 0x53797374e96d6f76e1207a7072e17661, 'Y', '2003-09-11 15:14:09'),
(750, 7, 0x4b6f72656a736b79, 'Y', '2003-09-11 15:14:09'),
(954, 7, 0x5275736b79, 'Y', '2003-09-11 15:14:09'),
(504, 7, 0x5072617669646c6120676f, 'Y', '2003-09-17 18:37:32'),
(963, 14, 0x4d6974e42070756e61696e656e2074617573746176e47269206f646f74757368756f6e6565737361207461726b6f69747461613f, 'Y', '2003-09-11 17:46:31'),
(964, 14, 0x4a6f73206c756f6b6974757376e46c69736172616b6b65656e20746175737461206f6e207661616c65616e2070756e61696e656e2c206c756f6b6974756b7365736920656920736f76692070656c697461726a6f756b73656e2074656b696ae46e2076616174696d756b7369696e2e20457420766f69206c6969747479e42074e46c6c61697365656e2070656c69696e2e, 'N', '2003-09-11 17:46:31'),
(685, 4, 0x4572207a6569677420616e2c20776965206775742064696520426577657274756e672065696e657320537069656c6572732064657220446566696e6974696f6e20766f6e20447261676f6e7320476f2d52e46e67656e20656e74737072696368742e0d0a0d0a57656e6e2065696e206e657565722042656e75747a6572207365696e6520416e66616e6773737069656c7374e4726b652065696e676962742c20776569df20447261676f6e206e696368742c206f622064696573652057657274756e67206d697420447261676f6e7320446566696e6974696f6e20fc62657265696e7374696d6d742e2057656c74776569742065696e686569746c6963686520446566696e6974696f6e656e20766f6e20476f2d52e46e67656e2067696274206573206c6569646572206e696368743b20447261676f6e2076657273756368742c207665726ce473736c6963686520756e6420766572676c656963686261726520476f2d52e46e6765207a752062696574656e2e2044657220626c6175652048696e7465726772756e64207a6569677420616e2c207769652067656e617520447261676f6e2064696520426577657274756e672065696e65732042656e75747a6572732065696e736368e4747a742028696d2053696e6e652065696e657320224b6f6e666964656e7a696e74657276616c6c7322206f6465722022556e7369636865726865697422292e200d0a0d0a44696520556e73696368657268656974656e20686162656e2065696e656e2045696e666c757373206175662064696520c46e646572756e672064657320526174696e67206e61636820537069656c656e64653a2045696e65206772f6df65726520556e73696368657268656974207665726772f6df6572742064696520c46e646572756e672066fc722064696573656e20537069656c657220756e64207665726b6c65696e6572742064696520566572e46e646572756e672066fc722064656e204765676e65722028756e6420756d67656b6568727429, 'Y', '2012-06-11 23:54:26'),
(711, 4, 0x57657266656e207369652065696e656e20426c69636b20617566203c6120687265663d22687474703a2f2f706c6179676f2e746f2f696e7465726163746976652f6765726d616e2f22207461726765743d6e65773e2244657220696e746572616b7469766520576567207a756d20476f223c2f613e20756e6420646965203c6120687265663d22687474703a2f2f7777772e62726974676f2e6f72672f696e74726f2f696e74726f2e68746d6c22207461726765743d6e65773e496e74726f64756374696f6e20746f207468652067616d65206f6620476f3c2f613e20646573204272697469736820476f2d56657262616e6465732e, 'Y', '2007-12-06 21:52:19'),
(691, 4, 0x45696e206f6666656e7369766572205a75672c2065696e652044726f68756e672c20616c6c65732c206461732065696e6520736f666f727469676520416e74776f7274206572666f72646572742c20776972642053656e74652067656e616e6e742e2045696e20537069656c6572206861742053656e74652c2077656e6e206572206e6963687420756e6d697474656c626172206175662065696e656e205a756720646573204765676e6572732072656167696572656e206d75737320756e6420736f20646965204df6676c6963686b65697420686174206175737a7573756368656e2c20776f20616c73206ee4636873746573206765737069656c7420776972642e2053656e7465206973742064617320476567656e7465696c20766f6e203c686f6d65206661712e7068703f726561643d74266361743d3323456e7472793131333e476f74653c2f686f6d653e2e0d0a0d0a44657220537069656c657220696e2053656e7465206b616e6e2077e4686c656e2c203c686f6d65206661712e7068703f726561643d74266361743d3323456e7472793131303e54656e756b693c2f686f6d653e207a7520737069656c656e2c2066616c6c732065722065732066fc72206469652062657373657265204df6676c6963686b6569742068e46c742e2057f672746c69636820fc6265727365747a742062656465757465742053656e746520657273746572206f6465722066fc6872656e646572205a756720756e6420686569df7420696d2044657574736368656e20566f7268616e642e, 'Y', '2012-11-27 00:14:13'),
(963, 5, 0x517565207369676e69666965206c6520666f6e6420726f75676520646573206e697665617578206465206c612073616c6c65206427617474656e7465266e6273703b3f, 'Y', '2003-09-14 02:48:43'),
(964, 5, 0x556e20666f6e6420726f75676520636c6169722064616e73206c6120636f6c6f6e6e6520223c693e5265737472696374696f6e733c2f693e222064616e73206c61203c686f6d652077616974696e675f726f6f6d2e7068703e73616c6c65206427617474656e74653c2f686f6d653e207369676e696669652071756520766f7573206e276176657a20706173206c657320636f6e646974696f6e732072657175697365732c20657420646f6e632071756520766f7573206e6520706f7576657a206a6f696e647265206365747465206f66667265206465207061727469652e, 'Y', '2016-05-23 09:15:14'),
(5548, 5, 0x4e6f6d627265206465207061727469657320636f6d70746162696c6973e96573207465726d696ee965732c207061722065782e2022257322, 'Y', '2016-05-23 09:12:04'),
(754, 4, 0x4b6c65696e6520726f7465205175616472617465207a656967656e20756e62657374696d6d7465204765626965746520616e202d2d20447261676f6e206b616e6e206e6963687420656e74736368656964656e2c206f62206573207369636820756d207363687761727a6573206f64657220776569df6573204765626965742068616e64656c742e204df6676c69636865204772fc6e646520646166fc722073696e643a0d0a3c756c3e0d0a3c6c693e496e6e657268616c622065696e657320476562696574657320626566696e64656e2073696368206e6f636820746f746520537465696e652c20646965206e6963687420656e746665726e742077757264656e2e204b6c69636b656e205369652061756620646965736520537465696e652c20756d2073696520616c7320746f74207a75206d61726b696572656e2e3c2f6c693e0d0a0d0a3c6c693e446965204772656e7a656e207a7769736368656e20776569df656d20756e64207363687761727a656d204765626965742073696e64206e6963687420766f6c6c7374e46e6469672067657363686c6f7373656e2e2046fc72206d656e7363686c6963686520537069656c6572206d6167206573206b65696e2050726f626c656d207365696e2c206469657365204772656e7a656e2074726f747a64656d207a752065726b656e6e656e2c2066fc7220447261676f6e206dfc7373656e206469657365204772656e7a656e206162657220766f6c6c7374e46e646967206175736765737069656c742077657264656e2e204b6c69636b656e2053696520617566203c693e537069656c207769656465726175666e65686d656e3c2f693e20756d20646965206c65747a74656e204772656e7a656e20666573747a756c6567656e2e3c2f6c693e0d0a0d0a3c6c693e45732068616e64656c74207369636820756d2065696e203c686f6d65206661712e7068703f726561643d74266361743d3323456e7472793130313e53656b693c2f686f6d653e2e204b6c69636b656e20536965206175662064696520726f74656e2051756164726174652c20756d20646965736520616c73203c686f6d65206661712e7068703f726561643d74266361743d3323456e7472793131353e44616d653c2f686f6d653e207a75206d61726b696572656e2e20447261676f6e207769726420736965206d69742065696e656d206b6c65696e656e206772fc6e656e2051756164726174206d61726b696572656e2e0d0a3c2f756c3e, 'Y', '2009-07-04 10:16:09'),
(588, 4, 0x57656e6e20646965205568722033205461676520766572626c656962656e646520537069656c7a65697420616e7a656967742c206265646575746574206461733a2053696520686162656e2033202a202832342d3929203d203435205374756e64656e204e69636874727568657a6569742e0d0a0d0a57656e6e206469652055687220322054616765203134205374756e64656e20766572626c656962656e646520537069656c7a65697420616e7a656967742c206265646575746574206461733a2053696520686162656e2032202a202832342d3929202b203134203d203434205374756e64656e204e69636874727568657a6569742e, 'Y', '2009-07-04 09:39:36'),
(1347, 4, '', 'Y', '2012-07-29 12:52:42'),
(1293, 4, 0x576965206b616e6e206963682065696e656e204c696e6b207a752065696e656e20537069656c2065727a657567656e3f, 'Y', '2009-07-05 15:36:37'),
(955, 7, 0x446f766f6c656ee9, 'Y', '2016-07-20 18:14:03'),
(956, 7, 0x50726f6d69f274652c20762074e9746f20636876ed6c69206e656df9be657465207a6dec6e69742064e96c6b7520646f766f6c656ee12e, 'Y', '2016-07-20 18:14:03'),
(688, 4, 0x576173206973742065696e6520646f7070656c7465205061727469653f, 'Y', '2003-09-16 14:59:01'),
(689, 4, 0x4265692065696e6572203c693e646f7070656c74656e205061727469653c2f693e207374617274656e20536965203c693e7a7765693c2f693e205061727469656e20676567656e2064656e73656c62656e20537069656c65722e20496e2065696e65722050617274696520737069656c656e20536965205363687761727a2c20696e2064657220616e646572656e20576569df2e2046fc7220626569646520537069656c652077697264206469652065696e67657374656c6c746520566f726761626520756e64206461732065696e67657374656c6c74656e204b6f6d692076657277656e6465742e, 'N', '2007-12-06 20:55:54'),
(957, 7, 0x44e96c6b6120646f766f6c656ee9207a6dec6eec6e6121, 'Y', '2016-07-20 18:14:03'),
(958, 7, 0x50f869646174, 'Y', '2003-09-17 18:33:01'),
(959, 7, 0x4f646562726174, 'Y', '2003-09-17 18:33:01'),
(960, 7, 0x5a6dec6e69742064e96c6b7520646f766f6c656ee9, 'Y', '2016-07-20 18:14:03'),
(962, 7, 0x55be696a746520736920646f766f6c656e6f7521, 'Y', '2016-07-20 18:14:03'),
(756, 7, 0x41666768e16e697374e16e, 'Y', '2003-09-17 18:41:32'),
(757, 7, 0x416c62e16e6965, 'Y', '2003-09-17 18:41:32'),
(758, 7, 0x416cbeed72, 'Y', '2003-09-17 18:41:32'),
(759, 7, '', 'Y', '2008-01-08 15:28:39'),
(760, 7, '', 'Y', '2008-01-08 15:28:39'),
(761, 7, 0x416e7461726b74696461, 'Y', '2003-09-17 18:41:32'),
(762, 7, 0x416e746967756120612042617262756461, 'Y', '2016-08-04 00:07:24'),
(763, 7, '', 'Y', '2008-01-08 15:28:39'),
(764, 7, 0x41726de96e6965, 'Y', '2003-09-17 18:41:32'),
(765, 7, 0x4175737472e16c6965, 'Y', '2003-09-17 18:41:32'),
(766, 7, 0x52616b6f75736b6f, 'Y', '2003-09-17 18:41:32'),
(767, 7, 0xc17a657262616a64bee16e, 'Y', '2003-09-17 18:41:32'),
(768, 7, 0x426168616d79, 'Y', '2003-09-17 18:41:32'),
(769, 7, 0x42616872616a6e, 'Y', '2003-09-17 18:41:32'),
(770, 7, '', 'Y', '2008-01-08 15:28:39'),
(771, 7, 0x42616e676c6164e9b9, 'Y', '2003-09-17 18:41:32'),
(772, 7, 0x42ec6c6f7275736b6f, 'Y', '2003-09-17 18:41:32'),
(773, 7, 0x42656c676965, 'Y', '2003-09-17 18:41:32'),
(774, 7, '', 'Y', '2008-01-08 15:28:39'),
(775, 7, '', 'Y', '2008-01-08 15:28:39'),
(776, 7, 0x4268fa74e16e, 'Y', '2003-09-17 18:41:32'),
(777, 7, 0x426f6ced766965, 'Y', '2003-09-17 18:41:32'),
(779, 7, '', 'Y', '2008-01-08 15:28:39'),
(780, 7, 0x4272617aed6c6965, 'Y', '2003-09-17 18:41:32'),
(782, 7, 0x42756c686172736b6f, 'Y', '2003-09-17 18:41:32'),
(783, 7, '', 'Y', '2008-01-08 15:28:39'),
(784, 7, '', 'Y', '2008-01-08 15:28:39'),
(785, 7, 0x4b616d626f64be61, 'Y', '2003-09-17 18:49:50'),
(786, 7, 0x4b616d6572756e, 'Y', '2003-09-17 18:49:50'),
(787, 7, 0x4b616e616461, 'Y', '2003-09-17 18:49:50'),
(788, 7, '', 'Y', '2008-01-08 15:28:39'),
(789, 7, 0x5374f865646f61667269636be12072657075626c696b61, 'Y', '2003-09-17 18:49:50'),
(790, 7, 0xc86164, 'Y', '2003-09-17 18:49:50'),
(791, 7, 0xc8696c65, 'Y', '2003-09-17 18:49:50'),
(792, 7, 0xc8ed6e61, 'Y', '2003-09-17 18:49:50'),
(793, 7, 0x4b6f6c756d626965, 'Y', '2003-09-17 18:49:50'),
(794, 7, 0x4b6f6d6f7279, 'Y', '2003-09-17 18:49:50'),
(795, 7, 0x4b6f6e676f2d4272617a7a6176696c6c65, 'Y', '2003-09-17 18:49:50'),
(796, 7, 0x4b6f6e676f2d4b696e7368617361, 'Y', '2003-09-17 18:49:50'),
(797, 7, 0x4b6f73746172696b61, 'Y', '2003-09-17 18:49:50'),
(798, 7, 0x506f62f865beed20536c6f6e6f76696e79, 'Y', '2003-09-30 15:21:31'),
(799, 7, 0x43686f72766174736b6f, 'Y', '2003-09-17 18:49:50'),
(800, 7, 0x4b756261, 'Y', '2003-09-17 18:49:50'),
(801, 7, 0x4b797072, 'Y', '2003-09-17 18:49:50'),
(802, 7, 0xc865736be12072657075626c696b61, 'Y', '2003-09-17 18:49:50'),
(803, 7, 0x44e16e736b6f, 'Y', '2003-09-17 18:49:50'),
(804, 7, 0x44be6962757469, 'Y', '2003-09-17 18:49:50'),
(805, 7, 0x446f6d696e696b61, 'Y', '2003-09-17 18:49:50'),
(806, 7, 0x446f6d696e696be16e736be12072657075626c696b61, 'Y', '2003-09-17 18:49:50'),
(808, 7, 0x456b76e1646f72, 'Y', '2003-09-17 18:49:50'),
(809, 7, '', 'Y', '2008-01-08 15:28:39'),
(810, 7, '', 'Y', '2008-01-08 15:28:39'),
(811, 7, 0x526f766eed6b6f76e1204775696e6561, 'Y', '2003-09-17 18:49:50'),
(812, 7, '', 'Y', '2008-01-08 15:28:39'),
(813, 7, 0x4573746f6e736b6f, 'Y', '2003-09-17 18:49:50'),
(814, 7, 0x4574696f706965, 'Y', '2003-09-17 18:49:50'),
(815, 7, 0x466964be69, 'Y', '2003-09-17 18:49:50'),
(816, 7, 0x46696e736b6f, 'Y', '2003-09-17 18:49:50'),
(817, 7, 0x4672616e636965, 'Y', '2003-09-17 18:49:50'),
(818, 7, 0x476162756e, 'Y', '2003-09-17 18:49:50'),
(819, 7, 0x47616d626965, 'Y', '2003-09-17 18:49:50'),
(820, 7, 0x4772757a6965, 'Y', '2003-09-17 18:49:50'),
(821, 7, 0x4eec6d65636b6f, 'Y', '2003-09-17 18:49:50'),
(822, 7, '', 'Y', '2008-01-08 15:28:39'),
(823, 7, 0xd865636b6f, 'Y', '2003-09-17 18:49:50'),
(824, 7, '', 'Y', '2008-01-08 15:28:39'),
(825, 7, '', 'Y', '2008-01-08 15:28:39'),
(826, 7, '', 'Y', '2008-01-08 15:28:39'),
(827, 7, '', 'Y', '2008-01-08 15:28:39'),
(828, 7, '', 'Y', '2008-01-08 15:28:39'),
(829, 7, '', 'Y', '2008-01-08 15:28:39'),
(830, 7, '', 'Y', '2008-01-08 15:28:39'),
(831, 7, '', 'Y', '2008-01-08 15:28:39'),
(832, 7, 0x4d61ef6172736b6f, 'Y', '2003-09-17 18:49:50'),
(833, 7, 0x49736c616e64, 'Y', '2003-09-17 18:49:50'),
(834, 7, 0x496e646965, 'Y', '2003-09-17 18:49:50'),
(835, 7, 0x496e646f6ee9736965, 'Y', '2003-09-17 18:49:50'),
(836, 7, 0xcd72e16e, 'Y', '2003-09-17 18:49:50'),
(837, 7, 0x4972e16b, 'Y', '2003-09-17 18:49:50'),
(838, 7, 0x4972736b6f, 'Y', '2003-09-17 18:49:50'),
(839, 7, 0x497a7261656c, 'Y', '2003-09-17 18:49:50'),
(840, 7, 0x4974e16c6965, 'Y', '2003-09-17 18:49:50'),
(841, 7, 0x4a616d616a6b61, 'Y', '2003-09-17 18:49:50'),
(842, 7, 0x4a61706f6e736b6f, 'Y', '2003-09-17 18:49:50'),
(843, 7, 0x4a6f7264e16e736b6f, 'Y', '2003-09-17 18:49:50'),
(845, 7, 0x4b65f261, 'Y', '2003-09-17 18:49:50'),
(846, 7, '', 'Y', '2008-01-08 15:28:39'),
(849, 7, 0x4b7576616a74, 'Y', '2003-09-17 18:49:50'),
(850, 7, 0x4b797267797a7374e16e, 'Y', '2003-09-17 18:49:50'),
(851, 7, '', 'Y', '2008-01-08 15:28:39'),
(852, 7, 0x4c6f7479b9736b6f, 'Y', '2003-09-17 18:49:50'),
(853, 7, 0x4c6962616e6f6e, 'Y', '2003-09-17 18:49:50'),
(854, 7, '', 'Y', '2008-01-08 15:28:39'),
(855, 7, 0x4c6962e9726965, 'Y', '2003-09-17 18:49:50'),
(856, 7, 0x4c69627965, 'Y', '2003-09-17 18:49:50'),
(1743, 4, 0x4b616e6e206963682048544d4c20746167732061756620447261676f6e2076657277656e64656e3f, 'Y', '2009-07-05 15:32:04'),
(95, 26, 0xd794d793d7a320d7a0d795d7a6d7a820d791, 'Y', '2005-01-16 22:00:19'),
(497, 27, '', 'Y', '2008-01-21 19:27:11'),
(96, 26, 0xd79ed7a0d794d79c20d7a8d790d7a9d799, 'Y', '2005-01-16 22:00:19'),
(496, 27, '', 'Y', '2008-01-21 19:27:11'),
(97, 26, 0xd794d7aad7a0d7aad7a7, 'Y', '2005-01-16 22:00:19'),
(98, 26, 0xd799d795d79d, 'Y', '2005-01-16 22:00:19'),
(99, 26, 0xd799d79ed799d79d, 'Y', '2005-01-16 22:00:19'),
(100, 26, 0xd795, 'Y', '2005-01-16 22:00:19'),
(101, 26, 0xd7a9d7a2d794, 'Y', '2005-01-16 22:00:19'),
(967, 4, 0x576f68696e206b6f6d6d656e2064696520566f7267616265737465696e653f, 'Y', '2007-12-06 21:52:19'),
(968, 4, 0x4e616368206368696e657369736368656e20526567656c6e206b616e6e206d616e2064696520537465696e652062656c6965626967207365747a656e2c20626569206a6170616e69736368656e20526567656c6e20676962742065732065696e20766f726765676562656e6573204d75737465722e20204f686e65206578706c697a697465722056657265696e626172756e6720657277617274656e20646965206d65697374656e20537069656c6572206a6170616e697363686520526567656c6e2e2020496d20666f6c67656e64656e20776972642064696520506c61747a696572756e672066fc722065696e2031397831392d42726574742067657a656967743b207765697465726520496e666f726d6174696f6e656e206bf66e6e656e2053696520617566203c6120687265663d22687474703a2f2f73656e736569732e786d702e6e65742f3f48616e6469636170506c6163656d656e74223e53656e73656973204269626c696f7468656b3c2f613e206f646572203c6120687265663d22687474703a2f2f656e2e77696b6970656469612e6f72672f77696b692f476f5f68616e6469636170223e57696b6970656469613c2f613e2066696e64656e2e0d0a0d0a3c756c3e0d0a3c6c693e3120737465696e3a204465722053636877e4636865726520737069656c74205363687761727a2c2061626572206f686e65204b6f6d692e0d0a3c6c693e3220537465696e653a204434202b205131360d0a3c6c693e3320537465696e653a204434202b205134202b205131360d0a3c6c693e3420537465696e653a204434202b205134202b20443136202b205131360d0a3c6c693e3520537465696e653a204434202b205134202b204b3130202b20443136202b205131360d0a3c6c693e3620537465696e653a204434202b205134202b20443130202b20513130202b20443136202b205131360d0a3c6c693e3720537465696e653a204434202b205134202b20443130202b204b3130202b20513130202b20443136202b205131360d0a3c6c693e3820537465696e653a204434202b204b34202b205134202b20443130202b20513130202b20443136202b204b3136202b205131360d0a3c6c693e3920537465696e653a204434202b204b34202b205134202b20443130202b204b3130202b20513130202b20443136202b204b3136202b20513136203c2f756c3e0d0a0d0a496d203c686f6d652077616974696e675f726f6f6d2e7068703e57617274657a696d6d65723c2f686f6d653e20676962742065732061756620646572203c686f6d65206d6573736167652e7068703f6d6f64653d496e766974653e486572617573666f72646572756e677373656974653c2f686f6d653e20646965204df6676c6963686b6569742c20566f7267616265737465696e652061756620646965203c693e5374616e64617264706c61747a696572756e673c2f693e207365747a656e207a75206c617373656e2e20426569206d65687220616c73206e65756e20566f7267616265737465696e656e2077657264656e20646965204d757374657220766f6e203c6120687265663d22687474703a2f2f73656e736569732e786d702e6e65742f3f48616e6469636170734265796f6e644e696e6553746f6e657323746f6333223e53656e736569733c2f613e2076657277656e6465742e0d0a0d0a446965203c693e5374616e64617264706c61747a696572756e673c2f693e206973742076657266fc676261722066fc7220666f6c67656e6465204772f6df656e3a0d0a3c756c3e0d0a3c6c693e31397831390d0a3c6c693e556e67657261646520537069656c66656c646772f6df656e206162203778373a20626973207a75206e65756e20566f7267616265737465696e650d0a3c6c693e416e6465726520537069656c66656c646772f6df656e3a20626973207a75207669657220566f7267616265737465696e650d0a3c2f756c3e, 'Y', '2010-04-02 01:35:07'),
(253, 27, 0x4a756120737574726165646121, 'Y', '2005-02-17 13:20:31'),
(88, 26, 0xd79ed7a9d7aad79ed7a9d799d79d, 'Y', '2005-01-16 22:00:19'),
(89, 26, 0xd79ed7a9d797d7a7d799d79d, 'Y', '2005-01-16 22:00:19'),
(90, 26, 0xd7aad7a8d792d795d79d, 'Y', '2005-01-16 22:00:19'),
(91, 26, 0xd7a4d795d7a8d795d79ed799d79d, 'Y', '2005-01-16 22:00:19'),
(239, 27, 0x4a756e74612061206c69737461206f62657273657276616e7465, 'Y', '2005-02-01 10:56:58'),
(92, 26, 0xd7a9d790d79cd795d7aa20d795d7aad7a9d795d791d795d7aa, 'Y', '2005-01-16 22:00:19'),
(236, 27, 0x53616c766120736766, 'Y', '2005-02-01 10:56:58'),
(93, 26, 0xd79ed7a4d7aa20d794d790d7aad7a8, 'Y', '2005-01-16 22:00:19'),
(234, 27, 0x5265746f6e61206a7561, 'Y', '2005-02-01 10:56:58'),
(94, 26, 0xd7a7d791d7a6d799d79d, 'Y', '2005-01-16 22:00:19'),
(87, 26, 0xd794d796d79ed79f, 'Y', '2005-01-16 22:00:19'),
(85, 26, 0xd794d795d793d7a2d795d7aa, 'Y', '2005-01-16 22:00:19'),
(86, 26, 0xd7a9d79cd79720d794d795d793d7a2d794, 'Y', '2005-01-16 22:00:19'),
(254, 27, 0x4a7561206a756e7461646121, 'Y', '2005-02-17 13:20:31'),
(971, 4, 0x576965206d656c6465206963682065696e2050726f626c656d206f6465722065696e656e2050726f6772616d6d6665686c65723f, 'Y', '2013-03-16 21:26:54'),
(972, 4, 0x3c756c3e0d0a3c6c693e5363686175656e2053696520696e206465722046415120756e6420696e2064656e20466f72656e206e61636820496e666f726d6174696f6e656e207a7520496872656d204665686c65722e20416d2062657374656e206973742065732c20646965205375636866756e6b74696f6e2064657220466f72656e207a752076657277656e64656e2c2064612065746c69636865204265697472e4676520696e732066616c7363686520466f72756d20676573636872696562656e2077757264656e2e0d0a3c6c693e53636872656962656e205369652065696e656e2042656974726167206d69742065696e65722064657461696c69657274657220426573636872656962756e6720646573204665686c65727320696e73203c686f6d6520666f72756d2f6c6973742e7068703f666f72756d3d323e537570706f72742d466f72756d3c2f686f6d653e2e0d0a3c6c693e53656e64656e205369652065696e65204e616368726963687420616e2065696e656e20646572203c686f6d652070656f706c652e7068703e456e747769636b6c65723c2f686f6d653e2e0d0a3c2f756c3e, 'N', '2007-12-06 21:52:19'),
(456, 27, 0x456e766961207661646520652061207374617465, 'Y', '2008-01-21 19:26:37'),
(82, 26, 0xd79ed7a6d791, 'Y', '2005-01-16 21:50:16'),
(83, 26, 0xd797d793d7a820d794d79ed7aad7a0d794, 'Y', '2005-01-16 22:00:19'),
(84, 26, 0xd79ed799d793d7a220d790d799d7a9d799, 'Y', '2005-01-16 22:00:19'),
(455, 27, 0x456e766961206520766164652061206a75612073656775656e7465, 'Y', '2008-01-21 19:26:37'),
(857, 7, 0x4c69636874656eb974656a6e736b6f, 'Y', '2003-09-30 15:08:54'),
(858, 7, 0x4c69747661, 'Y', '2003-09-30 15:08:54'),
(859, 7, 0x4c7563656d627572736b6f, 'Y', '2003-09-30 15:08:54'),
(861, 7, 0x4d616b65646f6e6965, 'Y', '2003-09-30 15:08:54'),
(862, 7, 0x4d6164616761736b6172, 'Y', '2003-09-30 15:08:54'),
(863, 7, '', 'Y', '2008-01-08 15:28:39'),
(864, 7, 0x4d616c616a736965, 'Y', '2003-09-30 15:08:54'),
(865, 7, 0x4d616c6564697679, 'Y', '2003-09-30 15:08:54'),
(866, 7, '', 'Y', '2008-01-08 15:28:39'),
(867, 7, '', 'Y', '2008-01-08 15:28:39'),
(868, 7, 0x4d61727368616c6c6f7679204f7374726f7679, 'Y', '2003-09-30 15:21:31'),
(869, 7, 0x4d6175726974e16e6965, 'Y', '2003-09-30 15:08:54'),
(870, 7, '', 'Y', '2008-01-08 15:28:39'),
(871, 7, 0x4d6578696b6f, 'Y', '2003-09-30 15:08:54'),
(872, 7, 0x4d696b726f6ee9736965, 'Y', '2003-09-30 15:08:54'),
(873, 7, 0x4d6f6c64e1766965, 'Y', '2003-09-30 15:08:54'),
(874, 7, 0x4d6f6e616b6f, 'Y', '2003-09-30 15:08:54'),
(875, 7, 0x4d6f6e676f6c736b6f, 'Y', '2003-09-30 15:08:54'),
(876, 7, 0x4d61726f6b6f, 'Y', '2003-09-30 15:08:54'),
(877, 7, 0x4d6f73616d62696b, 'Y', '2003-09-30 15:08:54'),
(878, 7, 0x4d6a616e6d6172, 'Y', '2003-09-30 15:08:54'),
(879, 7, 0x4e616d69626965, 'Y', '2003-09-30 15:08:54'),
(880, 7, '', 'Y', '2008-01-08 15:28:39'),
(881, 7, 0x4e6570e16c, 'Y', '2003-09-30 15:08:54'),
(882, 7, 0x4e697a6f7a656ded, 'Y', '2003-09-30 15:08:54'),
(883, 7, 0x4e6f76fd205ae96c616e64, 'Y', '2003-09-30 15:08:54'),
(884, 7, 0x4e696b617261677561, 'Y', '2003-09-30 15:08:54'),
(885, 7, '', 'Y', '2008-01-08 15:28:39'),
(886, 7, 0x4e6967e9726965, 'Y', '2003-09-30 15:08:54'),
(887, 7, 0x4e6f72736b6f, 'Y', '2003-09-30 15:08:54'),
(888, 7, 0x4f6de16e, 'Y', '2003-09-30 15:14:55'),
(889, 7, 0x50e16b697374e16e, 'Y', '2003-09-30 15:14:55'),
(890, 7, '', 'Y', '2008-01-08 15:28:39'),
(892, 7, '', 'Y', '2008-01-08 15:28:39'),
(893, 7, 0x5061707561202d204e6f76e1204775696e6561, 'Y', '2003-09-30 15:14:55'),
(894, 7, '', 'Y', '2008-01-08 15:28:39'),
(895, 7, '', 'Y', '2008-01-08 15:28:39'),
(896, 7, 0x46696c6970ed6e79, 'Y', '2003-09-30 15:14:55'),
(897, 7, 0x506f6c736b6f, 'Y', '2003-09-30 15:14:55'),
(898, 7, 0x506f72747567616c736b6f, 'Y', '2003-09-30 15:14:55'),
(899, 7, 0x506f72746f72696b6f, 'Y', '2003-09-30 15:14:55'),
(900, 7, 0x4b61746172, 'Y', '2003-09-30 15:14:55'),
(901, 7, 0x52756d756e736b6f, 'Y', '2003-09-30 15:14:55'),
(902, 7, 0x5275736b6f, 'Y', '2003-09-30 15:14:55'),
(903, 7, '', 'Y', '2008-01-08 15:28:39'),
(904, 7, 0x53762e204b697474732061204e65766973, 'Y', '2003-09-30 15:14:55'),
(905, 7, 0x53762e204c75636965, 'Y', '2003-09-30 15:14:55'),
(906, 7, 0x53762e2056696e63656e742061204772656e6164696e79, 'Y', '2003-09-30 15:14:55'),
(907, 7, '', 'Y', '2008-01-08 15:28:39'),
(908, 7, '', 'Y', '2008-01-08 15:28:39'),
(909, 7, 0x53762e20546f6de1b92061205072696e63f976204f7374726f76, 'Y', '2003-09-30 15:21:31'),
(910, 7, 0x53617564736be1204172e1626965, 'Y', '2003-09-30 15:14:55'),
(911, 7, '', 'Y', '2008-01-08 15:28:39'),
(913, 7, 0x5365796368656c6c79, 'Y', '2003-09-30 15:14:55'),
(914, 7, '', 'Y', '2008-01-08 15:28:39'),
(915, 7, 0x53696e6761707572, 'Y', '2003-09-30 15:14:55'),
(916, 7, 0x536c6f76656e736b6f, 'Y', '2003-09-30 15:14:55'),
(917, 7, 0x536c6f76696e736b6f, 'Y', '2003-09-30 15:14:55'),
(918, 7, 0xa9616c616d6f756e6f7679204f7374726f7679, 'Y', '2003-09-30 15:21:31'),
(919, 7, 0x536f6de16c736b6f, 'Y', '2003-09-30 15:14:55'),
(920, 7, 0x4a69be6eed20416672696b61, 'Y', '2003-09-30 15:14:55'),
(921, 7, 0xa970616eec6c736b6f, 'Y', '2003-09-30 15:14:55'),
(922, 7, 0x5372ed204c616e6b61, 'Y', '2003-09-30 15:14:55'),
(923, 7, 0x53fa64e16e, 'Y', '2003-09-30 15:14:55'),
(924, 7, 0x537572696e616d, 'Y', '2003-09-30 15:14:55'),
(925, 7, 0x5376617a696a736b6f, 'Y', '2003-09-30 15:21:31'),
(926, 7, 0xa976e964736b6f, 'Y', '2003-09-30 15:21:31'),
(927, 7, 0xa976fd636172736b6f, 'Y', '2003-09-30 15:21:31'),
(928, 7, 0x5379726965, 'Y', '2003-09-30 15:21:31'),
(929, 7, '', 'Y', '2008-01-08 15:28:39'),
(930, 7, 0x54e164be696b697374e16e, 'Y', '2003-09-30 15:21:31'),
(931, 7, 0x54616e7a616e6965, 'Y', '2003-09-30 15:21:31'),
(932, 7, 0x5468616a736b6f, 'Y', '2003-09-30 15:21:31'),
(933, 7, '', 'Y', '2008-01-08 15:28:39'),
(934, 7, '', 'Y', '2008-01-08 15:28:39'),
(935, 7, 0x5472696e69646164206120546f6261676f, 'Y', '2003-09-30 15:21:31'),
(936, 7, 0x54756e69736b6f, 'Y', '2003-09-30 15:21:31'),
(937, 7, 0x54757265636b6f, 'Y', '2003-09-30 15:21:31'),
(938, 7, 0x5475726b6d656e697374e16e, 'Y', '2003-09-30 15:21:31'),
(939, 7, '', 'Y', '2008-01-08 15:28:39'),
(940, 7, '', 'Y', '2008-01-08 15:28:39'),
(941, 7, 0x556b72616a696e61, 'Y', '2003-09-30 15:21:31'),
(942, 7, 0x53706f6a656ee92041726162736be920456d6972e17479, 'Y', '2003-09-30 15:21:31'),
(943, 7, 0x53706f6a656ee9204b72e16c6f76737476ed, 'Y', '2003-09-30 15:21:31'),
(944, 7, 0x53706f6a656ee9205374e17479, 'Y', '2003-09-30 15:21:31'),
(945, 7, '', 'Y', '2008-01-08 15:28:39'),
(946, 7, 0x557a62656b697374e16e, 'Y', '2003-09-30 15:21:31'),
(947, 7, '', 'Y', '2008-01-08 15:28:39'),
(948, 7, 0x566174696be16e, 'Y', '2003-09-30 15:21:31'),
(949, 7, '', 'Y', '2008-01-08 15:28:39'),
(950, 7, '', 'Y', '2008-01-08 15:28:39'),
(951, 7, 0x4a656d656e, 'Y', '2003-09-30 15:21:31'),
(952, 7, 0x5a616d626965, 'Y', '2003-09-30 15:21:31'),
(953, 7, '', 'Y', '2008-01-08 15:28:39'),
(69, 7, 0x50726f6d69f274652c206e656d6f6875206e616aed7420706fbe61646f76616e6f7520706f6c6fbe6b752e, 'Y', '2003-09-30 15:30:52'),
(75, 7, 0x50726f6d69f274652c206e656d6f6875206e616ce97a742075766564656efd207475726e616a2e, 'Y', '2003-09-30 15:30:52'),
(2985, 17, '', 'Y', '2013-08-21 00:36:57'),
(2986, 17, 0x5765656b656e64202855544329, 'Y', '2013-08-21 00:36:57'),
(474, 7, 0x54656e746f2074797020616b6365206a65206275ef206e657a6ee16dfd2c206e65626f206a656a206e656c7a6520706f75beed74207620746f6d746f207374617675206872792e, 'Y', '2003-09-30 15:30:52'),
(714, 7, 0x50726f6d69f274652c206e656d6f6875206e616aed742075766564656e6f7520736c6fbe6b75207a7072e1762e, 'Y', '2003-09-30 15:32:25'),
(967, 14, 0x4b75696e6b6120766f696e206c6969747479e4206a756c6b6973656e2074756e6e756b73656e206a6f756b6b7565657365656e3f, 'Y', '2003-10-03 12:19:03'),
(968, 14, 0x4c75652074756e6e756b73656e206be4797474e46ae470726f6669696c69206a61206ce4686574e420766965737469206b7973656973656c6c652074756e6e756b73656c6c652e20536161742073616c6173616e616e203c756c3e0d0a0d0a3c6c693e6a6f73206c756f6b6974756b73657369206f6e206ce468656c6ce4206a756c6b6973656e2074756e6e756b73656e206c756f6b6974757374613c2f6c693e0d0a0d0a3c6c693e6a6f732073756f73747574206e6f7564617474616d61616e206be4797474e46ae470726f6669696c69737361206de4e4726974656c7479e4206574696b65747469e43c2f6c693e0d0a0d0a3c6c693e6a6f73206c75706161206f6c6c612076e4e472696e6be4797474e46de47474e420736974e42e3c2f6c693e3c2f756c3e, 'N', '2003-10-03 12:19:03'),
(589, 2, 0x48766f72666f72206b616e206a656720696b6b6520656e64726520736f7665746964656e2069206d696e206272756b657270726f66696c3f, 'Y', '2003-10-04 00:17:06'),
(590, 2, 0x466f7264692076656420e520656e64726520736f7665746964656e207472652067616e676572206f6d20646167656e2076696c6c6520676af87265206465672069207374616e642074696c20e52073746f707065206b6c6f6b6b656e2e204475206b616e206261726520656e6472652064656e206876697320647520696b6b652068617220676a6f727420646574206e796c69672e, 'Y', '2003-10-04 00:17:06'),
(591, 2, 0x4b616e206a6567206c656767652074696c207469642070e5206d696e206567656e206b6c6f6b6b653f, 'Y', '2003-10-04 00:17:06'),
(592, 2, 0x4e65692e, 'N', '2003-10-04 00:17:06'),
(555, 2, 0x48766f7264616e206b616e206a6567207365205347462066696c65723f, 'N', '2003-10-04 00:19:18');
INSERT INTO `Translations` (`Original_ID`, `Language_ID`, `Text`, `Translated`, `Updated`) VALUES
(557, 2, 0x48766f7264616e2073746172746572206a6567206574206e7974742070617274692e, 'Y', '2003-10-04 00:19:18'),
(559, 2, 0x48766f7264616e20676af872206a6567207472656b6b20692070617274696574206d6974743f, 'Y', '2003-10-04 00:19:18'),
(561, 2, 0x48766f7264616e20736c6574746572206a65672065742070e567e5656e64652070617274693f, 'Y', '2003-10-04 00:19:18'),
(563, 2, 0x48766f7264616e206176736c7574746572206a65672065742070617274693f, 'Y', '2003-10-04 00:19:18'),
(566, 2, 0x48766120736c61677320737465642065722064657474653f, 'Y', '2003-10-04 00:19:18'),
(756, 2, '', 'Y', '2008-07-26 20:40:42'),
(757, 2, '', 'Y', '2008-07-26 20:40:42'),
(758, 2, 0x416c6765726965, 'Y', '2003-10-04 00:29:17'),
(759, 2, '', 'Y', '2008-07-26 20:40:42'),
(760, 2, '', 'Y', '2008-07-26 20:40:42'),
(761, 2, 0x416e7461726b746973, 'Y', '2003-10-04 00:29:17'),
(762, 2, 0x416e7469677561206f672042617262756461, 'N', '2003-10-04 00:29:17'),
(763, 2, '', 'Y', '2008-07-26 20:40:42'),
(764, 2, '', 'Y', '2008-07-26 20:40:42'),
(765, 2, '', 'Y', '2008-07-26 20:40:42'),
(766, 2, 0xd87374657272696b65, 'Y', '2003-10-04 00:29:17'),
(768, 2, '', 'Y', '2008-07-26 20:40:42'),
(769, 2, '', 'Y', '2008-07-26 20:40:42'),
(770, 2, '', 'Y', '2008-07-26 20:40:42'),
(771, 2, '', 'Y', '2008-07-26 20:40:42'),
(772, 2, 0x4876697465727573736c616e64, 'Y', '2003-10-04 00:29:17'),
(773, 2, 0x42656c676961, 'Y', '2003-10-04 00:29:17'),
(774, 2, '', 'Y', '2008-07-26 20:40:42'),
(775, 2, '', 'Y', '2008-07-26 20:40:42'),
(776, 2, '', 'Y', '2008-07-26 20:40:42'),
(777, 2, '', 'Y', '2008-07-26 20:40:42'),
(779, 2, '', 'Y', '2008-07-26 20:40:42'),
(780, 2, 0x42726173696c, 'Y', '2003-10-04 00:29:17'),
(782, 2, '', 'Y', '2008-07-26 20:40:42'),
(783, 2, '', 'Y', '2008-07-26 20:40:42'),
(784, 2, '', 'Y', '2008-07-26 20:40:42'),
(785, 2, 0x4b616d626f64736a61, 'Y', '2003-10-04 00:29:17'),
(786, 2, 0x4b616d6572756e, 'Y', '2003-10-04 00:29:17'),
(787, 2, 0x4b616e616461, 'Y', '2003-10-04 00:29:17'),
(788, 2, 0x4b617070205665726465, 'Y', '2004-10-21 18:11:50'),
(789, 2, 0x44656e2053656e7472616c616672696b616e736b652052657075626c696b6b, 'Y', '2003-10-04 00:29:17'),
(790, 2, '', 'Y', '2008-07-26 20:40:42'),
(791, 2, '', 'Y', '2008-07-26 20:40:42'),
(792, 2, 0x4b696e61, 'Y', '2003-10-04 00:29:17'),
(793, 2, '', 'Y', '2008-07-26 20:40:42'),
(797, 2, '', 'Y', '2008-07-26 20:40:42'),
(798, 2, 0x456c66656e62656e736b797374656e, 'Y', '2003-10-04 00:29:17'),
(799, 2, 0x4b726f61746961, 'Y', '2003-10-04 00:29:17'),
(800, 2, '', 'Y', '2008-07-26 20:40:42'),
(801, 2, 0x4b7970726f73, 'Y', '2003-10-04 00:29:17'),
(802, 2, 0x44656e2054736a656b6b69736b652052657075626c696b6b, 'Y', '2003-10-04 00:29:17'),
(803, 2, 0x44616e6d61726b, 'Y', '2003-10-04 00:29:17'),
(804, 2, '', 'Y', '2008-07-26 20:40:42'),
(806, 2, 0x44656e20446f6d696e696b616e736b652052657075626c696b6b, 'Y', '2003-10-04 00:29:17'),
(808, 2, '', 'Y', '2008-07-26 20:40:42'),
(809, 2, '', 'Y', '2008-07-26 20:40:42'),
(810, 2, '', 'Y', '2008-07-26 20:40:42'),
(811, 2, 0x456b7661746f7269616c2d4775696e6561, 'Y', '2003-10-04 00:29:17'),
(812, 2, '', 'Y', '2008-07-26 20:40:42'),
(813, 2, 0x4573746c616e64, 'Y', '2003-10-04 00:29:17'),
(814, 2, 0x4574696f706961, 'Y', '2003-10-04 00:29:17'),
(815, 2, '', 'Y', '2008-07-26 20:40:42'),
(816, 2, '', 'Y', '2008-07-26 20:40:42'),
(817, 2, 0x4672616e6b72696b65, 'Y', '2003-10-04 00:29:17'),
(818, 2, '', 'Y', '2008-07-26 20:40:42'),
(819, 2, '', 'Y', '2008-07-26 20:40:42'),
(820, 2, '', 'Y', '2008-07-26 20:40:42'),
(821, 2, 0x5479736b6c616e64, 'Y', '2003-10-04 00:29:17'),
(822, 2, '', 'Y', '2008-07-26 20:40:42'),
(823, 2, 0x48656c6c6173, 'Y', '2003-10-04 00:29:17'),
(824, 2, '', 'Y', '2008-07-26 20:40:42'),
(825, 2, '', 'Y', '2008-07-26 20:40:42'),
(826, 2, '', 'Y', '2008-07-26 20:40:42'),
(827, 2, '', 'Y', '2008-07-26 20:40:42'),
(828, 2, '', 'Y', '2008-07-26 20:40:42'),
(829, 2, '', 'Y', '2008-07-26 20:40:42'),
(830, 2, '', 'Y', '2008-07-26 20:40:42'),
(831, 2, '', 'Y', '2008-07-26 20:40:42'),
(832, 2, 0x556e6761726e, 'Y', '2003-10-04 00:29:17'),
(833, 2, 0x49736c616e64, 'Y', '2003-10-04 00:29:17'),
(834, 2, '', 'Y', '2008-07-26 20:40:42'),
(835, 2, '', 'Y', '2008-07-26 20:40:42'),
(836, 2, '', 'Y', '2008-07-26 20:40:42'),
(837, 2, 0x4972616b, 'Y', '2003-10-04 00:29:17'),
(838, 2, 0x49726c616e64, 'Y', '2003-10-04 00:29:17'),
(839, 2, '', 'Y', '2008-07-26 20:40:42'),
(840, 2, 0x4974616c6961, 'Y', '2003-10-04 00:29:17'),
(841, 2, '', 'Y', '2008-07-26 20:40:42'),
(842, 2, '', 'Y', '2008-07-26 20:40:42'),
(843, 2, '', 'Y', '2008-07-26 20:40:42'),
(845, 2, '', 'Y', '2008-07-26 20:40:42'),
(846, 2, '', 'Y', '2008-07-26 20:40:42'),
(849, 2, '', 'Y', '2008-07-26 20:40:42'),
(850, 2, 0x4b697267697374616e, 'Y', '2003-10-04 00:29:17'),
(851, 2, '', 'Y', '2008-07-26 20:40:42'),
(852, 2, '', 'Y', '2008-07-26 20:40:42'),
(853, 2, 0x4c6962616e6f6e, 'Y', '2003-10-04 00:29:17'),
(854, 2, '', 'Y', '2008-07-26 20:40:42'),
(855, 2, '', 'Y', '2008-07-26 20:40:42'),
(856, 2, '', 'Y', '2008-07-26 20:40:42'),
(857, 2, '', 'Y', '2008-07-26 20:40:42'),
(858, 2, 0x4c69746175656e, 'Y', '2003-10-04 00:29:17'),
(859, 2, '', 'Y', '2008-07-26 20:40:42'),
(861, 2, 0x4d616b65646f6e6961, 'Y', '2003-10-04 00:29:17'),
(862, 2, 0x4d6164616761736b6172, 'Y', '2003-10-04 00:29:17'),
(863, 2, '', 'Y', '2008-07-26 20:40:42'),
(864, 2, '', 'Y', '2008-07-26 20:40:42'),
(865, 2, 0x4d616c646976656e65, 'Y', '2003-10-04 00:29:17'),
(866, 2, '', 'Y', '2008-07-26 20:40:42'),
(867, 2, '', 'Y', '2008-07-26 20:40:42'),
(868, 2, 0x4d61727368616c6c2df879656e65, 'Y', '2003-10-04 00:29:17'),
(870, 2, '', 'Y', '2008-07-26 20:40:42'),
(871, 2, '', 'Y', '2008-07-26 20:40:42'),
(872, 2, '', 'Y', '2008-07-26 20:40:42'),
(873, 2, '', 'Y', '2008-07-26 20:40:42'),
(874, 2, '', 'Y', '2008-07-26 20:40:42'),
(875, 2, '', 'Y', '2008-07-26 20:40:42'),
(876, 2, 0x4d61726f6b6b6f, 'Y', '2003-10-04 00:29:17'),
(879, 2, '', 'Y', '2008-07-26 20:40:42'),
(880, 2, '', 'Y', '2008-07-26 20:40:42'),
(881, 2, '', 'Y', '2008-07-26 20:40:42'),
(882, 2, 0x4e656465726c616e64, 'Y', '2003-10-04 00:29:17'),
(883, 2, '', 'Y', '2008-07-26 20:40:42'),
(884, 2, '', 'Y', '2008-07-26 20:40:42'),
(885, 2, '', 'Y', '2008-07-26 20:40:42'),
(886, 2, '', 'Y', '2008-07-26 20:40:42'),
(887, 2, 0x4e6f726765, 'Y', '2003-10-04 00:29:17'),
(888, 2, '', 'Y', '2008-07-26 20:40:42'),
(889, 2, '', 'Y', '2008-07-26 20:40:42'),
(892, 2, '', 'Y', '2008-07-26 20:40:42'),
(893, 2, '', 'Y', '2008-07-26 20:40:42'),
(894, 2, '', 'Y', '2008-07-26 20:40:42'),
(895, 2, '', 'Y', '2008-07-26 20:40:42'),
(897, 2, 0x506f6c656e, 'Y', '2003-10-04 00:29:17'),
(898, 2, '', 'Y', '2008-07-26 20:40:42'),
(899, 2, '', 'Y', '2008-07-26 20:40:42'),
(900, 2, '', 'Y', '2008-07-26 20:40:42'),
(901, 2, '', 'Y', '2008-07-26 20:40:42'),
(902, 2, 0x527573736c616e64, 'Y', '2003-10-04 00:29:17'),
(903, 2, '', 'Y', '2008-07-26 20:40:42'),
(907, 2, '', 'Y', '2008-07-26 20:40:42'),
(908, 2, '', 'Y', '2008-07-26 20:40:42'),
(910, 2, '', 'Y', '2008-07-26 20:40:42'),
(911, 2, '', 'Y', '2008-07-26 20:40:42'),
(913, 2, 0x5365796368656c6c656e65, 'Y', '2003-10-04 00:29:17'),
(914, 2, '', 'Y', '2008-07-26 20:40:42'),
(915, 2, '', 'Y', '2008-07-26 20:40:42'),
(916, 2, '', 'Y', '2008-07-26 20:40:42'),
(917, 2, '', 'Y', '2008-07-26 20:40:42'),
(918, 2, 0x536f6c6f6d6f6e2df879656e65, 'Y', '2003-10-04 00:29:17'),
(919, 2, '', 'Y', '2008-07-26 20:40:42'),
(920, 2, 0x53f8722d416672696b61, 'Y', '2003-10-04 00:29:17'),
(921, 2, 0x5370616e6961, 'Y', '2003-10-04 00:29:17'),
(922, 2, '', 'Y', '2008-07-26 20:40:42'),
(923, 2, '', 'Y', '2008-07-26 20:40:42'),
(924, 2, 0x537572696e616d, 'Y', '2003-10-04 00:29:17'),
(925, 2, '', 'Y', '2008-07-26 20:40:42'),
(926, 2, 0x53766572696765, 'Y', '2003-10-04 00:29:17'),
(927, 2, 0x537665697473, 'Y', '2003-10-04 00:29:17'),
(928, 2, '', 'Y', '2008-07-26 20:40:42'),
(929, 2, '', 'Y', '2008-07-26 20:40:42'),
(931, 2, '', 'Y', '2008-07-26 20:40:42'),
(932, 2, '', 'Y', '2008-07-26 20:40:42'),
(933, 2, '', 'Y', '2008-07-26 20:40:42'),
(934, 2, '', 'Y', '2008-07-26 20:40:42'),
(935, 2, 0x5472696e69646164206f6720546f6261676f, 'Y', '2003-10-04 00:29:17'),
(936, 2, '', 'Y', '2008-07-26 20:40:42'),
(937, 2, 0x5479726b6961, 'Y', '2003-10-04 00:29:17'),
(940, 2, '', 'Y', '2008-07-26 20:40:42'),
(941, 2, 0x556b7261696e61, 'Y', '2003-10-04 00:29:17'),
(942, 2, 0x466f72656e7465204172616269736b6520456d697261746572, 'Y', '2003-10-04 00:29:17'),
(943, 2, 0x53746f726272697474616e6961, 'Y', '2003-10-04 00:29:17'),
(944, 2, 0x555341, 'Y', '2003-10-04 00:29:17'),
(945, 2, '', 'Y', '2008-07-26 20:40:42'),
(948, 2, 0x566174696b616e73746174656e, 'Y', '2003-10-04 00:29:17'),
(949, 2, '', 'Y', '2008-07-26 20:40:42'),
(950, 2, '', 'Y', '2008-07-26 20:40:42'),
(951, 2, 0x4a656d656e, 'Y', '2003-10-04 00:29:17'),
(952, 2, '', 'Y', '2008-07-26 20:40:42'),
(953, 2, '', 'Y', '2008-07-26 20:40:42'),
(985, 5, 0x436f6d6d656e742061646170746572206c657320636f6c6f6e6e657320646573207461626c65617578266e6273703b3f, 'Y', '2005-07-21 14:01:22'),
(986, 5, 0x41766563206c6120706c757061727420646573207461626c656175782c20766f757320706f7576657a207375707072696d657220756e6520636f6c6f6e6e6520656e207574696c6973616e74206c652070657469742022782220726f756765207072e87320646520736f6e2074697472652e20456e73756974652c20656e20646573736f7573206475207461626c6561752c20696c2079206175726120756e6520626fee74652064652073e96c656374696f6e2071756920766f7573207065726d6574747261206427616a6f75746572206c657320636f6c6f6e6e6573207375707072696de965732e20566f757320706f7576657a206175737369207472696572206c65207461626c6561752073656c6f6e20756e6520636f6c6f6e6e6520656e20706f696e74616e7420646972656374656d656e7420736f6e2074697472652e, 'N', '2005-07-21 14:01:22'),
(967, 5, 0x4ff920646f6976656e7420ea74726520706c6163e96573206c657320706965727265732064652068616e6469636170266e6273703b3f, 'Y', '2005-08-11 11:58:39'),
(968, 5, 0x53656c6f6e206c65732072e8676c6573206368696e6f697365732c206c657320706965727265732064652068616e64696361702070657576656e7420ea74726520706c6163e96573206ff9206c26233033393b6f6e20766575742e0d0a4d61697320447261676f6e20737569742c20686162697475656c6c656d656e742c206c65732072e8676c6573206a61706f6e6169736573206ff9206c657320706965727265732064652068616e646963617020646f6976656e7420ea74726520706c6163e96573206465206661e76f6e20636f6e76656e74696f6e656c6c652e0d0a0d0a506f757220756e20706c617465617520313978313926616d703b6e6273703b3a0d0a266c743b756c2667743b266c743b6c692667743b31207069657272653a204c65206a6f75657572206c6520706c757320666169626c65206a6f756520656e207072656d6965722073616e73206b6f6d692e0d0a266c743b6c692667743b3220706965727265733a204434202b205131360d0a266c743b6c692667743b3320706965727265733a204434202b205134202b205131360d0a266c743b6c692667743b3420706965727265733a204434202b205134202b20443136202b205131360d0a266c743b6c692667743b3520706965727265733a204434202b205134202b204b3130202b20443136202b205131360d0a266c743b6c692667743b3620706965727265733a204434202b205134202b20443130202b20513130202b20443136202b205131360d0a266c743b6c692667743b3720706965727265733a204434202b205134202b20443130202b204b3130202b20513130202b20443136202b205131360d0a266c743b6c692667743b3820706965727265733a204434202b204b34202b205134202b20443130202b20513130202b20443136202b204b3136202b205131360d0a266c743b6c692667743b3920706965727265733a204434202b204b34202b205134202b20443130202b204b3130202b20513130202b20443136202b204b3136202b2051313620266c743b2f756c2667743b, 'N', '2008-05-29 23:26:43'),
(591, 25, 0x506f742073c48320c3ae6d69206164617567206d69652074696d702064652067c3a26e646972653f, 'Y', '2005-06-24 19:48:23'),
(971, 5, 0x436f6d6d656e742072656e64726520636f6d707465206427756e6520657272657572266e6273703b3f, 'N', '2005-06-24 04:04:46'),
(972, 5, 0x3c756c3e3c6c693e56e972696669657a2064616e73206c6120462e412e512e206574206c657320666f72756d73207327696c206e27792061207061732064e96ae02064657320696e666f726d6174696f6e73207375722063657474652065727265757220286c276f7074696f6e206465207265636865726368652064616e7320544f5553206c657320666f72756d7320646f6e6e6520736f7576656e7420756e20626f6e2072e973756c74617420636172206c6573207175657374696f6e73206f6e7420706172666f697320e974e920706c6163e96573206175206d61757661697320656e64726f6974290d0a3c6c693e4563726976657a20756e206d6573736167652064e97461696c6c616e7420766f7472652070726f626ce86d652064616e73206c6520666f72756d203c6120687265663d222f666f72756d2f6c6973742e7068703f663d32223eab266e6273703b537570706f7274266e6273703bbb3c2f613e0d0a3c6c693e456e766f79657a20756e206d6573736167652064e97461696c6c616e7420766f7472652070726f626ce86d6520e0206c27756e20646573203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f6661712e7068703f726561643d7426616d703b6361743d313923456e7472793836223e64e976656c6f7070657572733c2f613e3c2f756c3e, 'N', '2006-10-25 04:54:15'),
(587, 25, 0x44652063652074696d70756c2064652067c3a26e64697265206d692d61207363c4837a75742063752039206f726520c3ae6e203130206d696e7574653f, 'Y', '2005-06-24 19:03:35'),
(588, 25, 0x43c3a26e642063656173756c2074c483752061726174c4832063c483206d61692061692033207a696c652064652067c3a26e646972652c206173746120c3ae6e7365616d6ec4832063c483203c6e6f77723e6d61692061693c2f6e6f77723e203c6e6f77723e33202a202832342d39293c2f6e6f77723e203d203c6e6f77723e3435206f72653c2f6e6f77723e20c3ae6e2061666172c483206465206f72656c65206465206e6f617074652e0d0a0d0a446163c4832063656173756c207370756e652063c483206d61692061692032207a696c6520c59f69203134206f72652c206173746120c3ae6e7365616d6ec4832063c483203c6e6f77723e6d61692061693c2f6e6f77723e203c6e6f77723e32202a202832342d3929202b2031343c2f6e6f77723e203d203c6e6f77723e3434206f72653c2f6e6f77723e20c3ae6e2061666172c483206465206f72656c65206465206e6f617074652e, 'Y', '2005-06-24 19:39:08'),
(589, 25, 0x4465206365206e7520c3ae6d6920706f7420736368696d626120706572696f6164612070656e747275206e6f617074652064696e20656372616e756c2064652065646974617265206120636f6e74756c75693f, 'Y', '2005-06-24 19:39:08'),
(590, 25, 0x446163c48320c5a3692d616920707574656120736368696d626120706572696f616461206465206e6f617074652064652074726569206f7269207065207a692c206173746120c3ae6e7365616d6ec4832063c4832061692070757465612073c4832dc5a369206f707265c59f74692074696d70756c2064652067c3a26e646972652e204f20706fc5a36920736368696d626120646f617220646163c483206e75206169206d6f646966696361742d6f20726563656e742e, 'Y', '2005-06-24 19:39:08'),
(981, 5, 0x5175656c6c657320736f6e74206c6573206d6573736167657269657320646520447261676f6e266e6273703b3f, 'N', '2004-03-02 02:35:57'),
(982, 5, 0x4c6573206a6f75657572732070657576656e7420636f6d6d756e697175657220656e7472652065757820656e266e6273703b3a0d0a3c756c3e3c6c693e656e766f79616e7420756e206d65737361676520706572736f6e6e656c20e020756e206175747265207574696c6973617465757220656e2073756976616e74206c65206c69656e203c6120687265663d222f6d6573736167652e7068703f6d6f64653d4e65774d65737361676522207461726765743d225f626c616e6b223eab266e6273703b456e766f79657220756e206d657373616765266e6273703bbb3c2f613e206475206d656e752e0d0a3c6c693e7075626c69616e7420756e2061727469636c652064616e7320756e20646573203c6120687265663d222f666f72756d2f22207461726765743d225f626c616e6b223e666f72756d733c2f613e20646520447261676f6e20706f7572207327616472657373657220e020746f7573206c6573207574696c69736174657572732e0d0a3c6c693e616a6f7574616e7420756e203c6120687265663d222f6661712e7068703f726561643d7426616d703b6361743d33363523456e7472793735223e636f6d6d656e74616972653c2f613e20e0206365727461696e73206465206c6575727320636f7570732064616e73206c65757273207061727469657320706f7572207327616472657373657220e0206c657572732061647665727361697265732e0d0a3c2f756c3e0d0a4e2e422e3a204c6573206d65737361676573206e6520736f6e742070617320656e6c6576e973206465206c61206261736520646520646f6e6ee96573206dea6d65207175616e6420766f7573206c6573207375707072696d657a20646520766f74726520706f7562656c6c652e204c657320636f6d6d656e746169726573206465732070617274696573206574206c65732061727469636c65732064657320666f72756d73206e6520736f6e74207061732064e9747275697473206e6f6e20706c75732e2045766974657a20646f6e6320642779206d656e74696f6e6e65722064657320696e666f726d6174696f6e7320636f6e666964656e7469656c6c65732028446520746f757465206661e76f6e2c20e9766974657a206465206c65206661697265206e27696d706f727465206ff92073757220496e7465726e6574292e, 'N', '2006-10-25 04:54:15'),
(983, 5, 0x51756520736f6e74206c657320646f737369657273206465206c61206d657373616765726965266e6273703b3f, 'Y', '2003-10-13 16:39:18'),
(975, 5, 0x436f6d6d656e7420736520636f6e6e656374657220e020736f6e20636f6d707465266e6273703b3f, 'Y', '2006-08-19 16:46:11'),
(976, 5, 0x436f6e6e656374657a20766f757320677261636520e0203c6120687265663d222f22207461726765743d225f626c616e6b223e6c6120706167652064276163637565696c20646520447261676f6e3c2f613e2e0d0a4365636920706c61636572612064616e7320766f747265206f7264696e617465757220766f7320636f6f6b69657320646520636f6e6e656374696f6e2e20447261676f6e20e0206265736f696e2064652063657320636f6f6b69657320706f757220706f75766f697220766f7573207265636f6e6e61ee7472652070656e64616e7420766f747265206e61766967756174696f6e2064616e73206c652073697465206574206c612070726f636861696e6520666f69732071756520766f75732072657669656e6472657a206c6520766973697465722e0d0a43657320636f6f6b69657320736f6e742073746f636be9732074656d706f72616972656d656e7420283330206a6f757273292c206d61697320706f7572206c612073e96375726974e92c2073616368657a20717565206c65206c69656e202244e9636f6e6e65637465722220766f7573207065726d6574206465206c657320656666616365722e0d0a417665632063657320636f6f6b69657320646520636f6e6e656374696f6e2c20766f757320706f757272657a2c20706172206578656d706c652c206d65747472652064616e7320766f73206661766f72697320756e206c69656e2064697265637420737572206c61207061676520646520737461747574206574206c612072656a6f696e6472652073616e732070617373657220706172206c6120706167652064276964656e74696669636174696f6e2e0d0a0d0a496e64697175657a20766f747265206164726573736520656d61696c206e6520736572742071756520736920766f7573206176657a2064656d616e64e9206c6573206e6f74696669636174696f6e732070617220656d61696c20657420706f75722072656365766f697220756e206e6f7576656175206d6f7420646520706173736520656e206361732064276f75626c692e20456c6c65206e6520736572612064e9766f696ce96520e020706572736f6e6e652e, 'Y', '2006-08-19 16:46:11'),
(606, 4, 0x5363686c6965df656e2073696520646965204b6f6d6d656e7461726520696e20266c743b636f6d6d656e742667743b20756e6420266c743b2f636f6d6d656e742667743b2065696e2e0d0a0d0a3c693e426569737069656c3a3c2f693e0d0a496d204c617566652065696e6572204968726572205061727469656e3a0d0a0d0a312e20496d204e6163687269636874656e66656c64206265696d2053656e64656e2065696e6573205a75676573206bf66e6e74656e205369652065696e676562656e3a0d0a0d0a4c656469676c6963682065696e20546573742c2062697474652069676e6f72696572656e2e0d0a266c743b636f6d6d656e742667743b0d0a446965736572204b6f6d6d656e74617220736f6c6c746520696e20646572205347462d44617465692061756673636865696e656e2e0d0a266c743b2f636f6d6d656e742667743b0d0a446965736572204b6f6d6d656e7461722068696e676567656e206e696368742e0d0a0d0a322e2042657374e4746967656e205369652064656e205a75672e0d0a33612e204c6164656e2053696520646965205347462d446174656920686572756e7465722e0d0a33622e204c6164656e2053696520646965205347462d4461746569206d697420616c6c656e204b6f6d6d656e746172656e20686572756e7465722e0d0a342e20d666666e656e2073696520646965205347462d446174656920286d69742065696e656d20476f2d50726f6772616d6d206f6465722065696e656d2054657874656469746f72290d0a0d0a352e20446572204b6f6d6d656e7461722066fc72206469652044617465692061757320336120736f6c6c7465206c617574656e3a0d0a266c743b49687220447261676f6e2d4e616d652667743b3a20446965736572204b6f6d6d656e74617220736f6c6c746520696e20646572205347462d446174656920657273636865696e656e2e0d0a0d0a446572204b6f6d6d656e7461722066fc72202833622920656e7468e46c742064656e20676573616d74656e20546578742e0d0a0d0a362e2057656e6e205369652065696e656e204b6f6d6d656e7461722c2077656c63686572206175737363686c6965df6c6963682066fc722053696520202861756368206e696368742066fc7220696872656e204765676e65722129206c6573626172206973742c2073706569636865726e20776f6c6c656e2c207363686c6965df656e205369652064656e2054657874207a7769736368656e20266c743b68696464656e2667743b20756e6420266c743b2f68696464656e2667743b2065696e2c20616e737461747420266c743b636f6d6d656e742667743b20266c743b2f636f6d6d656e742667743b207a75206e75747a656e2e0d0a0d0a266c743b636f6d6d656e742667743b20266c743b2f636f6d6d656e742667743b206b616e6e207a7520266c743b632667743b20266c743b2f632667743b20616267656bfc727a742077657264656e2e0d0a266c743b68696464656e2667743b20266c743b2f68696464656e2667743b206b616e6e207a7520266c743b682667743b20266c743b2f682667743b20616267656bfc727a742077657264656e2e0d0a0d0a536f6e73746967657220546578742c2077656c63686572206e6963687420696e20266c743b636f6d6d656e742667743b20756e6420266c743b2f636f6d6d656e742667743b2065696e67656b6c616d6d65727420776972642c20697374206c656469676c6963682066fc72206469652062656964656e205465696c6e65686d65722065696e65722050617274696520736963687462617220756e642077697264206e6963687420696e20646572205347462d44617465692067657370656963686572742e, 'N', '2013-05-09 22:41:29'),
(973, 4, 0x576965206b616e6e20696368206d696368207363686e656c6c657220616e6d656c64656e3f, 'Y', '2007-12-06 21:52:19'),
(975, 4, 0x576965206b616e6e20696368206d696368206d6974206d65696e656d2042656e75747a65726b6f6e746f20616e6d656c64656e3f, 'Y', '2007-12-06 23:52:48'),
(981, 4, 0x5761732073696e6420447261676f6e2d4e6163687269636874656e3f, 'N', '2003-10-18 16:54:15'),
(983, 4, 0x5761732073696e64204e6163687269636874656e6f72646e65723f, 'Y', '2003-10-18 17:01:35'),
(984, 4, 0x446965204e6163687269636874656e6f72646e65722065726df6676c696368656e2065732049686e656e2c2069687265204e6163687269636874656e206e61636820696872656e20426564fc72666e697373656e207a75206f72646e656e2e20536965206bf66e6e656e204e6163687269636874656e2062656c6965626967207a7769736368656e20766572736368696564656e656e204f72646e65726e20766572736368696562656e2e0d0a0d0a447261676f6e2072696368746574207374616e646172646de4df696720666f6c67656e6465204f72646e65722065696e3a0d0a3c756c3e3c6c693e3c623e416c6c6520656d7066616e67656e656e3c2f623e3a204c6973746520616c6c657220656d7066616e67656e656e204e6163687269636874656e3c2f6c693e0d0a3c6c693e3c623e416c6c67656d65696e3c2f623e3a204c6973746520616c6c65722067656c6573656e656e204e6163687269636874656e3c2f6c693e0d0a3c6c693e3c623e4e65753c2f623e3a204c6973746520616c6c657220756e67656c6573656e656e20656d7066616e67656e656e204e6163687269636874656e3c2f6c693e0d0a3c6c693e3c623e4265616e74776f7274656e213c2f623e3a204c6973746520766f6e207a75206265616e74776f7274656e64656e204e6163687269636874656e3c2f6c693e0d0a3c6c693e3c623e4dfc6c6c65696d65723c2f623e3a204c6973746520766f6e20616c73207a75206cf6736368656e206d61726b69657274656e204e6163687269636874656e3c2f6c693e0d0a3c6c693e3c623e476573656e6465743c2f623e3a204c6973746520766f6e2076657273616e6474656e204e6163687269636874656e3c2f6c693e3c2f756c3e0d0a0d0a536965206bf66e6e656e207a7573e4747a6c69636865204e6163687269636874656e6f72646e657220fc6265722064656e204c696e6b203c686f6d6520656469745f666f6c646572732e7068703e4f72646e6572206265617262656974656e3c2f686f6d653e20616d20456e646520646572203c686f6d65206c6973745f6d657373616765732e7068703e4e6163687269636874656e73656974653c2f686f6d653e2065727374656c6c656e2e, 'Y', '2009-07-04 10:05:29'),
(984, 5, 0x4c657320646f737369657273206465206c61206d65737361676572696520766f7573207065726d657474656e742064276f7267616e6973657220766f73206d657373616765732e20566f757320706f7576657a206c65732064e9706c61636572206427756e20646f737369657220e0206c2761757472652073656c6f6e20766f73206265736f696e732e0d0a0d0a41206c276f726967696e652c20447261676f6e20766f75732070726f706f73652063657320646f7373696572733a0d0a3c756c3e3c6c693e3c623eab266e6273703b546f7573206c6573207265e77573266e6273703bbb3c2f623e3a204d6f6e74726520746f7573206c6573206d65737361676573207361756620636575782064657320646f73736965727320ab266e6273703b506f7562656c6c65266e6273703bbb20657420ab266e6273703b456e766f79e973266e6273703bbb2e0d0a3c6c693e3c623eab266e6273703b4c7573266e6273703bbb3c2f623e3a20436f6e7469656e74206c6573206d65737361676573207265e775732064e96ae0206c75732e0d0a3c6c693e3c623eab266e6273703b4e6f7576656175266e6273703bbb3c2f623e3a20436f6e7469656e74206c6573206d65737361676573207265e77573206e6f6e206c75732e0d0a3c6c693e3c623eab266e6273703b52e9706f6e647265266e6273703b21266e6273703bbb3c2f623e3a20436f6e7469656e74206c6573206d657373616765732064656d616e64616e7420756e652072e9706f6e73652e0d0a3c6c693e3c623eab266e6273703b506f7562656c6c65266e6273703bbb3c2f623e3a20436f6e7469656e74206c6573206d65737361676573207072ea747320e020ea7472652064e97472756974732064e966696e69746976656d656e742e0d0a3c6c693e3c623eab266e6273703b456e766f79e973266e6273703bbb3c2f623e3a20436f6e7469656e74206c6573206d657373616765732071756520766f7573206176657a20656e766f79e9732e0d0a3c2f756c3e0d0a0d0a566f757320706f7576657a20616a6f7574657220766f732070726f7072657320646f73736965727320656e207574696c6973616e74206c65206c69656e20ab266e6273703b4d6f646966696572206c657320646f737369657273266e6273703bbb20647520626173206465206c612070616765203c6120687265663d222f6c6973745f6d657373616765732e70687022207461726765743d225f626c616e6b223eab266e6273703b4d65737361676573266e6273703bbb3c2f613e202844657320656d706c6163656d656e7473206c696272657320736f6e7420616a6f7574e97320656e2066696e206465206c697374652061752066757220657420e0206d6573757265206465206c657572207574696c69736174696f6e292e, 'Y', '2006-06-04 15:26:41'),
(973, 5, 0x436f6d6d656e7420736520636f6e6e6563746572207261706964656d656e7420e020756e20636f6d707465207574696c6973617465757220706172746963756c696572266e6273703b3f, 'Y', '2003-10-20 23:41:26'),
(974, 5, 0x566f75732020706f7576657a206372e9657220756e20726163636f7572636920646f6e6e616e7420646972656374656d656e7420616363e87320e020756e65207061676520ab266e6273703b537461747574266e6273703bbb20646520447261676f6e20656e207574696c6973616e7420756e206c69656e2064752074797065203c753e2f6c6f67696e2e7068703f7573657269643d3c623e50736575646f6e796d653c2f623e26616d703b7061737377643d3c623e4d6f74446550617373653c2f623e3c2f753e2e0d0a0d0a4d6169732073616368657a2071756520636f6e736572766572207175656c717565207061727420756e206d6f7420646520706173736520656e20746578746520636c61697220766f7573206661697420636f757269722064657320726973717565732e205327696c20766f757320706c61ee742c20e9766974657a206427656e7265676973747265722064652074656c7320726163636f75726369732073757220646573206f7264696e61746575727320656e20616363e873207075626c69632c206427616666696368657220636573206c69656e732064616e73206c657320706167657320646520766f747265207369746520706572736f6e6e656c2c206574632e, 'Y', '2005-09-20 17:45:02'),
(584, 25, 0x4361206578706c696361c5a369652c20756e206578656d706c753a0d0a0d0a446163c48320767265692073c48320616920c3ae6e206d656469652033206d7574c48372692070652073c4837074c4836dc3a26ec48320c59f69206e7520767265692073c483206d75c5a3692073c3a26d62c4837461207361752064756d696e6963612c206174756e63693a0d0a0d0a4169202837202d203229207a696c65202a202832342068202d203920682074696d702070656e74727520736f6d6e29202f2033206d7574c4837269203d203235206f726520c3ae6e20706c7573207065206d75746172652c20637520736574617265612063612063656173756c2073c483206e75206d65617267c48320c3ae6e207765656b656e642e, 'Y', '2005-01-08 21:43:20'),
(774, 4, '', 'Y', '2012-07-29 12:52:42'),
(812, 4, '', 'Y', '2012-07-29 12:52:42'),
(819, 4, '', 'Y', '2012-07-29 12:52:42'),
(863, 4, '', 'Y', '2012-07-29 12:52:42'),
(903, 4, 0x5275616e6461, 'Y', '2003-10-30 09:55:53'),
(925, 4, '', 'Y', '2012-07-29 12:52:42'),
(935, 4, 0x5472696e6964616420756e6420546f6261676f, 'Y', '2003-10-30 09:55:53'),
(776, 4, '', 'Y', '2012-07-29 12:52:42'),
(784, 4, '', 'Y', '2012-07-29 12:52:42'),
(979, 5, 0x4573742d63652071756520746f75746573206c6573206572726575727320736f6e742072e9706572746f7269e965732064616e73206c6120462e412e512e266e6273703b3f, 'Y', '2005-06-24 04:04:46'),
(980, 5, 0x4e6f6e2e20457420656c6c6573206e2779207365726f6e74206a616d61697320746f757465732e204e6f7573206e6520666169736f6e7320617070617261ee7472652069636920717565206c65732070726f626ce86d657320636f6e6e75732065742072e9637572656e747320717569206e276f6e742070617320656e636f72652074726f7576e92064276578706c69636174696f6e732e2e2e20657420646f6e6320646520636f7272656374696f6e2e, 'Y', '2005-06-24 04:10:44'),
(775, 4, '', 'Y', '2012-07-29 12:52:42'),
(794, 4, 0x4b6f6d6f72656e, 'Y', '2003-11-04 10:15:40'),
(795, 4, 0x4b6f6e676f2d4272617a7a6176696c6c65, 'Y', '2003-11-04 10:15:40'),
(796, 4, 0x4b696e7368617361, 'Y', '2003-11-04 10:15:40'),
(805, 4, 0x446f6d696e696b616e69736368652052657075626c696b, 'Y', '2003-11-04 10:15:40'),
(811, 4, 0x4775696e6561, 'Y', '2003-11-04 10:15:40'),
(905, 4, 0x53616e7461204c75636961, 'Y', '2003-11-04 10:15:40'),
(985, 4, 0x576965206b616e6e2069636820546162656c6c656e7370616c74656e20656e746665726e656e206f6465722068696e7a7566fc67656e3f, 'Y', '2007-12-06 23:52:48'),
(906, 4, 0x53616e74612056696e63656e7420756e64204772656e6164697363686520496e73656c6e, 'Y', '2003-11-04 10:18:36'),
(909, 4, 0x53616f20546f6d65, 'Y', '2003-11-04 10:18:36'),
(574, 4, '', 'Y', '2005-08-28 02:50:53'),
(986, 4, 0x416d20456e646520646572206d65697374656e2053656974656e20626566696e64657420736963682065696e20466f726d756c61722c206d69742064656d20536965207a7573e4747a6c69636865205370616c74656e2065696e736368616c74656e206bf66e6e656e2e204e696368742062656ef67469677465205370616c74656e206bf66e6e656e2064757263682065696e656e204b6c69636b2061756620646173206b6c65696e6520726f7465205820283c696d6167652072656d6f76652e6769663e29206e6562656e2064656d205370616c74656e746974656c20656e746665726e742077657264656e3b2065696e696765205370616c74656e206a65646f63682073696e6420737461746973636820756e64206bf66e6e656e206e6963687420656e746665726e742077657264656e2e204d69742065696e656d204b6c69636b206175662064656e205370616c74656e746974656c2077657264656e2064696520496e666f726d6174696f6e656e20736f7274696572742e, 'N', '2007-12-06 23:52:48'),
(904, 4, '', 'Y', '2012-07-29 12:52:42'),
(974, 4, 0x536965206bf66e6e656e20447261676f6e73203c686f6d65207374617475732e7068703e2f7374617475732e7068703c2f686f6d653e206d6974203c753e2f6c6f67696e2e7068703f7573657269643d3c623e42656e75747a65726b656e6e756e673c2f623e267061737377643d3c623e50617373776f72743c2f623e3c2f753e20617566727566656e2e0d0a0d0a56657267657373656e20536965206269747465206e696368742c20646173732064617320756e7665727363686cfc7373656c74652053706569636865726e2065696e65732050617373776f727465732065696e205369636865726865697473726973696b6f206461727374656c6c742e20476562656e205369652064616865722064696573652055524c20616e206e69656d616e64656e2077656974657220756e642073706569636865726e2053696520736965206e6963687420616c73204c6573657a65696368656e2061756620f66666656e746c696368207a7567e46e676c696368656e205043732e, 'Y', '2009-07-04 10:13:28'),
(597, 25, 0x42796f2d796f6d69, 'Y', '2005-06-24 20:08:29'),
(596, 25, 0x506fc5a3692073c48320c3ae6e7472657275706920706172746964612070656e7472752074696d70756c2063c3a2742065c59f746920c3ae6e20636f6e6365646975207361752063c3a26e642061692064652066c483637574206f2063c4836cc483746f72696520286e6561c59f746570746174c4832920646520616661636572692e0d0a0d0a50656e747275206120616e756ec5a3612066617074756c2063c48320c3aec5a36920c3ae6e6365706920766163616ec5a3612c20746520727567c4836d2073c483206d65726769206c61203c4120485245463d222f656469745f7661636174696f6e2e706870223e5a696c6520646520766163616ec5a3c4832072c4836d6173653c2f613e2064696e20706167696e61203c4120485245463d222f7374617475732e706870223e5374617475733c2f413e20736175206c6120706167696e61203c4120485245463d222f75736572696e666f2e706870223e496e666f726d61c5a36969207574696c697a61746f723c2f613e2e, 'N', '2005-06-24 20:03:20'),
(987, 5, 0x4a652073756973206e6f7576656175206368657a20447261676f6e2e205175656c206e697665617520646f69732d6a6520696e646971756572266e6273703b3f, 'Y', '2003-11-08 17:01:04'),
(988, 5, 0x5175616e6420766f757320766f757320656e72656769737472657a2c20447261676f6e20766f75732064656d616e646520736920766f7573206176657a20756e206e69766561752070726f76656e616e74206427756e65206173736f63696174696f6e206c6f63616c65206f75206427756e206175747265207365727665757220646520476f2e20456e7472657a2063657474652076616c6575722065742073612070726f76656e616e63652e20447261676f6e206c27616a75737465726120706f757220717527696c20636f72726573706f6e6465206d6965757820e02073612070726f70726520e96368656c6c6520646573206e6976656175782e0d0a0d0a4e2e422e3a20536920766f7573206e27e8746573207061732073fb7220646520766f747265206e69766561752c204e452052454d504c495353455a20504153206c27656d706c6163656d656e7420ab266e6273703b4e6976656175266e6273703bbb2074616e742071756520766f7573206e276176657a20706173207265e775206465207265636f6d6d616e646174696f6e73206427617574726573206a6f75657572732e20556e6520666f697320656e7472e9652c2063657474652076616c657572206e65207065757420706c757320ea747265206d6f64696669e9652063617220656c6c652065737420707269736520656e206d61696e20706172206c65207365727665757220657420616a757374e9652073656c6f6e206c65732072e973756c7461747320646520766f7320706172746965732e, 'N', '2010-05-24 14:37:28'),
(567, 6, 0x456c207365727669646f7220646520476f20447261676f6e20657320756e206c7567617220646f6e646520707565646573206a7567617220706172746964617320646520476f203c623e6261736164617320656e207475726e6f733c2f623e2e2046756e63696f6e61206de173206f206d656e6f73206465206c61206d69736d61206d616e657261207175652066756e63696f6e6172ed61207369207365206a756761726120706f7220636f7272656f20656c65637472f36e69636f2e204c617320706172746964617320706f6472e16e20746172646172207661726961732073656d616e6173207920656c207365727669646f7220447261676f6e207365206f6375706172e12064656c2074726162616a6f206d6f6c6573746f20636f6d6f2073657220656c20636f6e74726f6c2064656c207469656d706f207920656c2063e16c63756c6f2064656c2072e174696e67206465206c6f73207573756172696f732e0d0a0d0a4a7567617220476f20656e207469656d706f207265616c206e6f20657320706f7369626c6520656e20447261676f6e2e204a7567617220656e207469656d706f207265616c207369676e69666963612071756520756e612070617274696461207465726d696e6120616c72656465646f7220646520756e6120686f7261206465737075e97320646520696e6963696164612e20536920707265666965726573206a7567617220476f20656e207469656d706f207265616c206465626572ed61732070726f626172203c6120687265663d22687474703a2f2f73656e736569732e786d702e6e65742f3f476f53657276657222207461726765743d225f626c616e6b223e6f74726f733c2f613e207365727669646f7220646520476f20656e207469656d706f207265616c20636f6d6f203c6120687265663d22687474703a2f2f6b67732e6b69736569646f2e636f6d2f22207461726765743d225f626c616e6b223e4b47533c2f613e206f203c6120687265663d22687474703a2f2f70616e64612d6967732e6a6f796a6f792e6e65742f22207461726765743d225f626c616e6b223e4947533c2f613e2e, 'N', '2003-11-11 17:15:25'),
(627, 6, 0xbf5175e92073696e676966696361206c6120226163746976696461642220646520756e207573756172696f3f, 'Y', '2003-11-11 17:19:33'),
(663, 6, 0xbf4375e16c206573206c61206469666572656e63696120656e7472652068e16e646963617020636f6e76656e63696f6e616c2079206170726f706961646f3f, 'Y', '2003-11-11 17:19:33'),
(671, 6, 0xbf507565646f20656e76696172206d6f76696d69656e746f7320706f7220636f7272656f20656c65637472f36e69636f3f, 'Y', '2003-11-11 17:19:33'),
(675, 6, 0xbf507565646f20636f6d656e7a617220756e206a7565676f2073756269656e646f20756e206172636869766f205347463f, 'Y', '2003-11-11 17:19:33'),
(677, 6, 0x52616e6b696e677320792072e174696e677320646520447261676f6e, 'Y', '2003-11-11 17:19:33'),
(678, 6, 0xbf5175e9207369676e6966696361206c6120636f6c756d6e61202272e174696e672220656e206c61206c69737461206465207573756172696f733f, 'Y', '2003-11-11 17:19:33'),
(680, 6, 0xbf5175e9207369676e696669636120656c202b207920656c202d206120636f6e74696e75616369f36e2064656c2072e174696e673f, 'Y', '2003-11-11 17:19:33'),
(686, 6, '', 'N', '2007-11-03 16:08:38'),
(688, 6, 0xbf5175e920657320756e61207061727469646120646f626c653f, 'Y', '2003-11-11 17:19:33'),
(690, 6, '', 'N', '2007-11-03 16:08:38'),
(692, 6, '', 'N', '2007-11-03 16:08:38'),
(569, 6, 0x506f72206661766f72207061736120756e6f73203130206d696e75746f7320706f72203c4120485245463d687474703a2f2f7777772e6d6f746f7273636f70652e636f6d2f646f6a6f2f74657374732f205441524745543d5f626c616e6b3e6573746520746573743c2f413e20792075736120656c20726573756c7461646f20706172612064657465726d696e61722074752072616e6b696e6720696e696369616c20656e20447261676f6e2e20547520657374e173203c756c3e200d0a0d0a3c6c693e656e203330206b79753a20736920636f6e6f636573206c6173207265676c61732064656c20476f200d0a3c6c693e656e2032392d3238206b79753a20736920796120686173206a756761646f20616c67756e612070617274696461200d0a3c6c693e656e2032372d3236206b79753a207369206861732067616e61646f20616c67756e612070617274696461206a7567616e646f20636f6e207072696e63697069616e746573200d0a3c6c693e61742032352d3232206b79753a207369206861732067616e61646f20616c67756e612070617274696461206a7567616e646f20636f6e206f706f6e656e74657320717565206e6f20736f6e207072696e63697069616e746573200d0a3c2f756c3e, 'N', '2003-11-12 20:55:48'),
(594, 6, 0x4e6f2e205065726f20657320756e61206361726163746572ed7374696361207175652074656e656d6f7320656e206c61203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f746f646f2e706870223e6c69737461206465207461726561732070656e6469656e7465733c2f613e2e, 'N', '2003-11-12 20:56:49'),
(583, 25, 0x43756d20696e666c75656ec5a365617ac4832074696d70756c2070656e74727520736f6d6e2073697374656d756c2064652074696d7020466973636865723f, 'Y', '2005-01-08 21:41:55'),
(979, 4, 0x57657264656e20616c6c652050726f6772616d6d6665686c657220696e206465722046415120626568616e64656c743f, 'Y', '2007-12-06 23:52:48'),
(582, 25, 0x447570c48320636520756e206a7563c483746f72206d7574c4832c2069207365206164617567c483206c61206365617320756e202274696d70207375706c696d656e74617222202870c3a26ec483206c6120756e206d6178696d20646174206465202274696d70756c207072696e636970616c22292e0d0a0d0ac38e6e206d6f6d656e74756c20c3ae6e206361726520756e206a7563c483746f722072c4836dc3a26e652066c48372c4832074696d702c2070696572646520706172746964612e, 'N', '2005-01-06 16:31:47'),
(980, 4, 0x4e65696e2c20756e64207369652077657264656e2065732061756368206e69656d616c732e20446965206869657220626573636872696562656e656e204665686c657220756e6420456967656e617274656e2073696e64207769656465726b656872656e6465206f646572206461756572686166677465204665686c65722c2064696520616c6c67656d65696e2062656b616e6e742073696e6420756e64207363686f6e2061757366fc68726c696368206469736b7574696572742077757264656e2e205369652077657264656e20697267656e6477616e6e206265686f62656e20283c693e756d20506c61747a2066fc72206e657565204665686c6572207a7520736368616666656e3f3c2f693e292c20616265722062697320646168696e2066696e64656e20736965206869657220457277e4686e756e672e, 'Y', '2009-07-04 09:54:53'),
(987, 4, 0x4963682062696e206e65752062656920447261676f6e2e2057656c6368656e20537069656c7374e4726b6520736f6c6c206963682077e4686c656e3f, 'Y', '2007-12-06 23:52:48'),
(988, 4, 0x57656e6e205369652065696e206e657565732042656e75747a65726b6f6e746f2065696e7269636874656e2c20667261677420447261676f6e2c206f6220536965206265726569747320696872656e20476f2d52616e67206b656e6e656e2c207a756d20426569737069656c20766f6e2065696e656d20616e646572656e20476f2d5365727665722c2065696e656d20476f2d4162656e64206f64657220496872656d20476f2d42756e642e2020476562656e205369652064696573656e20576572742065696e2c20756e6420447261676f6e20776972642069686e206175746f6d61746973636820696e2065696e656e206df6676c69636873742070617373656e64656e2052616e6720756d7365747a656e2e2020556e74657220556d7374e46e64656e20696e74657265737369657274205369652061756368206469657365203c6120687265663d22687474703a2f2f73656e736569732e786d702e6e65742f3f52616e6b576f726c6477696465436f6d70617269736f6e223e546162656c6c65207a756d20566572676c6569636820766f6e20537069656c7374e4726b656e3c2f613e2e0d0a0d0a0d0a426974746520626561636874656e205369653a2057656e6e20536965204968726520537069656c7374e4726b65206e69636874206b656e6e656e2c2074726167656e2053696520617566206b65696e656e2046616c6c20697267656e6465747761732065696e2c20646120536965206573207370e4746572206e69636874206d65687220e46e6465726e206bf66e6e656e21, 'N', '2010-11-05 23:10:18'),
(389, 1, 0x4e7961206d656464656c616e64656e, 'Y', '2003-11-24 10:33:36'),
(715, 1, 0x546964, 'Y', '2003-11-24 09:59:18'),
(3032, 36, 0x6d616cc3a16a, 'Y', '2015-09-19 12:52:53'),
(719, 1, 0x25732076696e6e6572206d656420252e3166, 'Y', '2003-11-24 09:59:18'),
(732, 1, 0x53656d65737465726461676172206b766172, 'Y', '2003-11-24 09:59:18'),
(733, 1, 0x50e52073656d6573746572, 'Y', '2003-11-24 09:59:18'),
(231, 1, 0x5061737361, 'Y', '2003-11-24 09:59:18'),
(232, 1, 0x5261646572612070617274696574, 'Y', '2003-11-24 10:24:04'),
(233, 1, 0x4b6c6172, 'Y', '2003-11-24 09:59:18'),
(234, 1, 0xc574657275707074612070617274696574, 'Y', '2003-11-24 09:59:18'),
(235, 1, 0x476520757070, 'Y', '2003-11-24 09:59:18'),
(236, 1, 0x4c61646461206e657220736766, 'Y', '2003-11-24 09:59:18'),
(237, 1, 0x486f7070612074696c6c206ee4737461207061727469, 'Y', '2003-11-24 09:59:18'),
(253, 1, 0x5061727469657420626f7274746167657421, 'Y', '2003-11-24 09:59:18'),
(93, 1, 0xd676657273696b74, 'Y', '2003-11-24 10:17:24'),
(205, 1, '', 'Y', '2012-05-29 15:52:33'),
(722, 1, 0x4d617070, 'Y', '2003-11-24 10:17:24'),
(215, 1, 0x6b766172, 'Y', '2003-11-24 10:17:24'),
(747, 1, 0x416c6c61206b6f6c756d6e6572, 'Y', '2003-11-24 10:17:24'),
(755, 1, 0x5365727665726d656464656c616e6465, 'Y', '2003-11-24 10:33:36'),
(225, 1, 0x47657220757070, 'Y', '2003-11-24 10:17:24'),
(226, 1, 0x506173736172, 'Y', '2003-11-24 10:17:24'),
(227, 1, 0x5261646572612070617274696574, 'Y', '2003-11-24 10:17:24'),
(238, 1, 0x546120626f7274206672e56e206f62736572766174696f6e736c697374616e, 'Y', '2003-11-24 10:17:24'),
(239, 1, 0x4ce4676720706172746965742074696c6c206f62736572766174696f6e736c697374616e, 'Y', '2003-11-24 10:24:04'),
(348, 1, 0x4176736c75746164652070617274696572, 'Y', '2003-11-24 10:24:04'),
(349, 1, 0x50e567e5656e64652070617274696572, 'Y', '2003-11-24 10:24:04'),
(350, 1, 0x4176736c757461646520706172746965722066f672202573, 'Y', '2003-11-24 10:24:04'),
(351, 1, 0x50e567e5656e646520706172746965722066f672202573, 'Y', '2003-11-24 10:24:04'),
(366, 1, 0x52616e6b6174, 'Y', '2003-11-24 10:24:04'),
(421, 1, '', 'Y', '2012-05-29 15:52:33'),
(422, 1, '', 'Y', '2012-05-29 15:52:33'),
(484, 1, 0x6a616e, 'Y', '2003-11-24 10:26:18'),
(485, 1, 0x666562, 'Y', '2003-11-24 10:26:18'),
(486, 1, 0x617072, 'Y', '2003-11-24 10:26:18'),
(487, 1, 0x6d616a, 'Y', '2003-11-24 10:26:18'),
(488, 1, 0x6a756e, 'Y', '2003-11-24 10:26:18'),
(489, 1, 0x617567, 'Y', '2003-11-24 10:26:18'),
(427, 1, 0x416e74616c2070617274696572, 'Y', '2003-11-24 10:28:26'),
(428, 1, 0x4b6c6f636b616e2067e57220756e6465722068656c67656e, 'Y', '2003-11-24 10:28:26'),
(437, 1, 0x4875767564746964, 'Y', '2003-11-24 10:28:26'),
(454, 1, 0x506c61636572612064696e612068616e64696b6170707374656e61722c207461636b21, 'Y', '2003-11-24 10:28:26'),
(457, 1, 0x47e52074696c6c62616b61, 'Y', '2003-11-24 10:28:26'),
(458, 1, 0x46e56e676172, 'Y', '2003-11-24 10:28:26'),
(490, 1, 0x736570, 'Y', '2003-11-24 10:28:26'),
(491, 1, 0x6f6b74, 'Y', '2003-11-24 10:28:26'),
(492, 1, 0x646563, 'Y', '2003-11-24 10:28:26'),
(495, 1, 0x6d6172, 'Y', '2003-11-24 10:28:26'),
(496, 1, 0x6a756c, 'Y', '2003-11-24 10:28:26'),
(497, 1, 0x6e6f76, 'Y', '2003-11-24 10:28:26'),
(989, 5, 0x4573742d63652071756520636f6d6d656e63657220e0206a6f756572206176656320756e206d617576616973206e69766561752061206465206c27696d706f7274616e6365266e6273703b3f, 'Y', '2004-03-02 02:35:57'),
(990, 5, 0x4365206e27657374207061732074726f702067726176652e204c65207365727665757220447261676f6e207661206c27616a7573746572207261706964656d656e74206772e26365206175782072e973756c7461747320646520766f732070726f636861696e657320706172746965732e20556e65206d6f79656e6e652064652063696e712070617274696573206465767261697420737566666972652e0d0a0d0a506f757274616e742c20736920766f757320636f6d6d656e63657a20e0206a6f756572206176656320756e206d617576616973206e69766561752c20766f757320616c6c657a2070657274757262657220696e636f7272656374656d656e742063656c756920646573207574696c697361746575727320617665632071756920766f757320616c6c657a206a6f7565722e20496c7320706f7572726f6e7420706575742dea747265207327656e206f666675737175657220657420766f7573206c6520726570726f636865722e0d0a0d0a4c27e96368656c6c6520646573206e6976656175782064e970656e6420617573736920646520766f74726520636f6f70e9726174696f6e2e205327696c20766f757320706c61ee742c206e27696e64697175657a2070617320756e206e697665617520696e697469616c2074726f7020e96c6f69676ee920646520766f7472652076616c6575722072e9656c6c652e204d657263692e, 'N', '2003-12-08 15:20:02'),
(989, 4, 0x497374206573207363686c696d6d2c2065696e652066616c7363686520537069656c7374e4726b65207a752077e4686c656e3f, 'Y', '2007-12-06 23:52:48'),
(990, 4, 0x4573207374f67274206e6963687420736568722c20776f6265692065696e69676520537069656c657220736167656e2c2064617373206573207369652073656872207374f672742c20756e6420616e6465726520776965646572756d2064617320476567656e7465696c2062656861757074656e2e20447261676f6e20776972642064656e2052616e672062616c6420616e68616e64206465722045726765626e6973736520766f6e206265776572746574656e205061727469656e20616e70617373656e2e204e61636820756e676566e468722066fc6e6620736f6c6368656e205061727469656e2064fc72667465204968722052616e6720696872652074617473e463686c696368656e20537069656c7374e4726b65207769656465727370696567656c6e2e0d0a0d0a57656e6e2053696520616c6c657264696e6773203c693e616273696368746c6963683c2f693e206d69742065696e656d2066616c736368656e2052616e6720626567696e6e656e2c2077657264656e2053696520646164757263682069687265204765676e657220756e6420616e6465726520537069656c65722c206d69742077656c6368656e20536965207669656c6c656963687420696e205a756b756e667420776965646572205061727469656e20737069656c656e20776f6c6c656e2c20766572e4726765726e20756e6420756e74657220556d7374e46e64656e206175636820646572656e20426577657274756e67206e65676174697620626565696e666c757373656e2e0d0a0d0a447261676f6e20766572737563687420627261756368626172652052e46e6765207a75206265726563686e656e2c20616c6c657264696e67732068e46e67742061756368207669656c20766f6e204968726572204d69746172626569742061623a204269747465207365747a656e2053696520696872656e20496e6974616c72616e67206e6163682062657374656d2057697373656e2e205669656c656e2044616e6b21, 'N', '2007-12-06 23:52:48'),
(997, 5, 0x506f6c6f6e616973, 'Y', '2003-12-03 03:14:04'),
(998, 5, 0x4974616c69656e, 'Y', '2003-12-03 03:14:04'),
(991, 5, 0x4573742d636520717565206c27686f726c6f6765206465206d6f6e2061647665727361697265206d6172636865207175616e64206c61206d69656e6e652065737420617272ea74e965266e6273703b3f, 'Y', '2003-12-08 15:20:02'),
(992, 5, 0x536920632765737420766f74726520746f7572206465206a6f7565722c206e6f6e2e0d0a5369206327657374206c6520746f757220646520766f74726520616476657273616972652c206f75692e2e2e20e020636f6e646974696f6e20717565206365206e6520736f6974207061732073612070e972696f6465206465206e7569742c20717527696c206e6520736f69742070617320656e20766163616e63657320657420717565206365206e6520736f697420706173206c65207765656b656e642028706f7572206c65732070617274696573206ff9206c657320686f726c6f67657320736f6e742067656ce965732070656e64616e74206c65207765656b656e64292e, 'Y', '2003-12-03 03:14:04'),
(997, 7, 0x506f6c736b79, 'Y', '2003-12-03 15:09:41'),
(998, 7, 0x4974616c736b79, 'Y', '2003-12-03 15:09:41'),
(80, 18, 0x436f6c6c656761746f20636f6d65, 'Y', '2003-12-06 13:15:13'),
(81, 18, 0x4e6f6e20636f6c6c656761746f, 'Y', '2003-12-06 13:15:13'),
(82, 18, 0x537461746f, 'Y', '2003-12-06 13:15:13'),
(83, 18, 0x5061727469746520696e20617474657361, 'Y', '2006-05-25 20:39:44'),
(84, 18, 0x496e666f726d617a696f6e69207574656e7465, 'Y', '2003-12-06 13:15:13'),
(85, 18, 0x4d65737361676769, 'Y', '2003-12-06 13:15:13'),
(86, 18, 0x496e76696120756e206d657373616767696f, 'Y', '2006-05-25 20:59:49'),
(87, 18, 0x496e76697461, 'Y', '2003-12-06 13:15:13'),
(88, 18, 0x5574656e7469, 'Y', '2003-12-06 13:15:13'),
(89, 18, 0x50617274697465, 'Y', '2003-12-06 16:12:46'),
(90, 18, 0x54726164756369, 'Y', '2003-12-06 13:15:13'),
(91, 18, 0x466f72756d, 'Y', '2003-12-06 13:15:13'),
(92, 18, 0x464151, 'Y', '2010-03-29 19:00:07'),
(93, 18, 0x4d617070612064656c207369746f, 'Y', '2003-12-06 13:15:13'),
(94, 18, 0x446f63756d656e7469, 'Y', '2003-12-06 13:15:13'),
(95, 18, 0x506167696e612063726561746120696e, 'Y', '2003-12-06 13:15:13'),
(96, 18, 0x416d6d696e6973747261746f7265, 'Y', '2003-12-06 13:15:13'),
(97, 18, 0x45736369, 'Y', '2012-07-30 16:13:13'),
(98, 18, 0x67696f726e6f, 'Y', '2003-12-06 13:15:13'),
(99, 18, 0x67696f726e69, 'Y', '2003-12-06 13:15:13'),
(100, 18, 0x65, 'Y', '2003-12-06 13:15:13'),
(101, 18, 0x6f7261, 'Y', '2003-12-06 13:15:13'),
(102, 18, 0x6f7265, 'Y', '2003-12-06 13:15:13'),
(103, 18, 0x73656e7a612062796f796f6d69, 'Y', '2003-12-06 13:15:13'),
(104, 18, 0x636f6e20257320657874726120706572206d6f737361, 'Y', '2003-12-06 13:15:13'),
(106, 18, 0x42796f796f6d692067696170706f6e657365, 'Y', '2003-12-06 13:15:13'),
(107, 18, 0x706965747265, 'Y', '2003-12-06 13:15:13'),
(108, 18, 0x42796f796f6d692063616e6164657365, 'Y', '2003-12-06 13:15:13'),
(132, 18, '', 'Y', '2012-08-22 20:48:45'),
(134, 18, 0x4e6f6d65, 'Y', '2003-12-06 13:15:13'),
(201, 18, '', 'Y', '2012-08-22 20:48:45'),
(204, 18, 0x496e666f726d617a696f6e692073756c20677261646f, 'Y', '2006-05-25 23:27:17'),
(205, 18, 0x477261646f, 'Y', '2010-10-18 16:28:05'),
(309, 18, 0x42616e6469657265, 'Y', '2003-12-06 13:15:13'),
(310, 18, 0x4461, 'Y', '2003-12-06 13:15:13'),
(311, 18, 0x4f67676574746f, 'Y', '2006-05-25 20:39:44'),
(312, 18, 0x44617461, 'Y', '2003-12-06 13:15:13'),
(314, 18, 0x4e756f766f, 'Y', '2003-12-06 13:15:13'),
(316, 18, 0x526973706f6e6469, 'Y', '2003-12-06 13:15:13'),
(330, 18, 0x4269616e636f, 'Y', '2003-12-06 13:15:13'),
(331, 18, 0x4e65726f, 'Y', '2003-12-06 13:15:13'),
(352, 18, '', 'Y', '2012-08-22 20:48:45'),
(359, 18, 0x4176766572736172696f, 'Y', '2003-12-06 13:15:13'),
(360, 18, 0x436f6c6f7265, 'Y', '2003-12-06 13:15:13'),
(361, 18, 0x44696d656e73696f6e65, 'Y', '2003-12-06 13:15:13'),
(362, 18, '', 'Y', '2012-08-22 20:48:45'),
(363, 18, '', 'Y', '2012-08-22 20:48:45'),
(364, 18, 0x4d6f737365, 'Y', '2003-12-06 13:15:13'),
(368, 18, 0x556c74696d61206d6f737361, 'N', '2003-12-06 13:20:34'),
(374, 18, 0x4d6f73747261206c65207061727469746520696e20636f72736f, 'Y', '2006-08-15 14:32:55'),
(375, 18, 0x4d6f73747261206c6520706172746974652066696e697465, 'Y', '2006-08-15 14:32:55'),
(388, 18, 0x446973706f6e6962696c65207065722067696f636172653f, 'Y', '2003-12-06 13:20:34'),
(389, 18, 0x4e756f7669206d65737361676769, 'Y', '2003-12-06 13:20:34'),
(390, 18, 0xc820696c2074756f207475726e6f2064692067696f636f206e656c6c652073656775656e746920706172746974653a, 'Y', '2006-05-25 20:39:44'),
(391, 18, 0x4e657373756e6120706172746974612074726f76617461, 'Y', '2003-12-06 13:20:34'),
(460, 18, 0x506167696e612073756363657373697661, 'Y', '2006-05-25 20:39:44'),
(461, 18, 0x506167696e6120707265636564656e7465, 'Y', '2006-05-25 20:39:44'),
(462, 18, 0x41676769756e676920636f6c6f6e6e61, 'Y', '2006-05-25 20:39:44'),
(575, 40, 0x506f7220717565206f20447261676f6e2071756572207361626572206d657520656e64657265e76f20656c657472f46e69636f2028656d61696c293f, 'Y', '2014-04-13 18:43:57'),
(3033, 36, 0x6772c3ba7a, 'Y', '2015-09-19 12:52:53'),
(719, 18, 0x25732076696e636520646920252e3166, 'Y', '2003-12-30 15:46:59'),
(722, 18, 0x43617274656c6c61, 'Y', '2003-12-06 13:20:34'),
(732, 18, 0x47696f726e6920646920766163616e7a612072696d616e656e7469, 'Y', '2003-12-06 13:20:34'),
(733, 18, 0x496e20766163616e7a61, 'Y', '2003-12-06 13:20:34'),
(747, 18, 0x5475747465206c6520636f6c6f6e6e65, 'Y', '2003-12-06 13:20:34'),
(755, 18, 0x4d657373616767696f2064656c20736572766572, 'Y', '2006-05-25 20:39:44');
INSERT INTO `Translations` (`Original_ID`, `Language_ID`, `Text`, `Translated`, `Updated`) VALUES
(160, 18, 0x496e74726f64757a696f6e65206120447261676f6e, 'Y', '2003-12-06 13:20:34'),
(191, 18, 0x436f6e6665726d612070617373776f7264, 'Y', '2003-12-06 13:20:34'),
(202, 18, 0x4e6f6d6520636f6d706c65746f, 'Y', '2003-12-06 13:20:34'),
(223, 18, 0x4861692064696d656e74696361746f206c612070617373776f72643f, 'Y', '2006-05-25 20:42:46'),
(240, 18, '', 'Y', '2012-08-22 20:48:45'),
(245, 18, '', 'Y', '2012-08-22 20:48:45'),
(997, 4, 0x506f6c6e69736368, 'Y', '2003-12-06 13:37:52'),
(998, 4, 0x4974616c69656e69736368, 'Y', '2003-12-06 13:37:52'),
(993, 5, 0x4573742d636520717565206a652070657578206a6f756572207175616e64206d6f6e20686f726c6f67652065737420617272ea74e965266e6273703b3f, 'Y', '2003-12-08 14:10:24'),
(994, 5, 0x4f6e2070657574203c623e746f756a6f7572733c2f623e206a6f7565722c206dea6d652070656e64616e74206c65732070e972696f646573206465206e7569742c20646520766163616e636573206f75206465207765656b656e642e, 'Y', '2003-12-30 02:15:11'),
(995, 5, 0x51752765737420636520717565206c27686f726c6f6765206465207765656b656e64266e6273703b3f, 'Y', '2003-12-08 14:10:24'),
(996, 5, 0x5175616e6420766f75732064e966696e697373657a20756e65206e6f7576656c6c65207061727469652c20766f7573206176657a20756e65206f7074696f6e2071756920766f7573207065726d65742064652067656c6572206c657320686f726c6f67657320646573206a6f75657572732070656e64616e74206c652073616d656469206574206c652064696d616e6368652e, 'N', '2003-12-08 14:10:24'),
(80, 17, 0x5a616c6f676f77616e79206a616b6f, 'Y', '2003-12-11 23:42:04'),
(81, 17, 0x4e69657a616c6f676f77616e79, 'Y', '2003-12-11 23:42:04'),
(82, 17, 0x537461747573, 'Y', '2013-08-21 00:24:40'),
(84, 17, 0x496e666f726d61636a65206f2075bf79746b6f776e696b75, 'Y', '2003-12-11 23:42:04'),
(85, 17, 0x576961646f6d6fb66369, 'Y', '2009-08-25 18:44:21'),
(86, 17, 0x5779b66c696a20776961646f6d6fb6e6, 'Y', '2003-12-11 23:42:04'),
(87, 17, 0x5a6170726f737a656e6965, 'Y', '2003-12-11 23:42:04'),
(88, 17, 0x55bf79746b6f776e696379, 'Y', '2003-12-11 23:42:04'),
(89, 17, 0x477279, 'Y', '2003-12-11 23:42:04'),
(90, 17, 0x54b3756d61637a656e6965, 'Y', '2003-12-11 23:42:04'),
(92, 17, '', 'Y', '2010-12-26 18:49:10'),
(93, 17, 0x4d6170612073657277697375, 'Y', '2003-12-11 23:42:04'),
(95, 17, 0x5374726f6e61207574776f727a6f6e612077, 'Y', '2003-12-11 23:42:04'),
(96, 17, 0x41646d696e6973747261746f72, 'Y', '2003-12-11 23:42:04'),
(97, 17, 0x57796c6f67756a, 'Y', '2003-12-11 23:42:04'),
(98, 17, 0x647a6965f1, 'Y', '2003-12-11 23:42:04'),
(99, 17, 0x646e69, 'Y', '2003-12-11 23:42:04'),
(100, 17, 0x69, 'Y', '2003-12-11 23:42:04'),
(101, 17, 0x676f647a696e61, 'Y', '2003-12-11 23:42:04'),
(102, 17, 0x676f647a696e, 'Y', '2013-08-21 00:25:22'),
(103, 17, 0x62657a2062796f796f6d69, 'Y', '2003-12-11 23:42:04'),
(106, 17, 0x6a61706ff1736b69652062796f796f6d69, 'Y', '2003-12-11 23:42:04'),
(107, 17, 0x6b616d69656e69, 'Y', '2003-12-11 23:42:04'),
(108, 17, 0x6b616e6164796a736b69652062796f796f6d69, 'Y', '2003-12-11 23:42:04'),
(132, 17, '', 'Y', '2010-12-26 18:49:10'),
(205, 17, 0x52616e6b696e67, 'Y', '2013-08-22 03:45:54'),
(310, 17, 0x4f64, 'Y', '2003-12-11 23:42:04'),
(311, 17, 0x54656d6174, 'Y', '2003-12-11 23:42:04'),
(312, 17, 0x44617461, 'Y', '2003-12-11 23:42:04'),
(316, 17, 0x4f64706f77696564bc21, 'Y', '2003-12-11 23:42:04'),
(330, 17, 0x426961b379, 'Y', '2003-12-11 23:42:04'),
(331, 17, 0x437a61726e79, 'Y', '2003-12-11 23:42:04'),
(352, 17, 0x2e736766, 'Y', '2013-08-21 00:24:11'),
(359, 17, 0x50727a656369776e696b, 'Y', '2003-12-11 23:42:04'),
(360, 17, 0x4b6f6c6f72, 'Y', '2003-12-11 23:42:04'),
(361, 17, 0x526f7a6d696172, 'Y', '2003-12-11 23:42:04'),
(362, 17, '', 'Y', '2010-12-26 18:49:10'),
(363, 17, '', 'Y', '2010-12-26 18:49:10'),
(364, 17, 0x5275636879, 'Y', '2003-12-11 23:42:04'),
(375, 17, 0x506f6b61bf207a616b6ff1637a6f6e6520677279, 'Y', '2003-12-11 23:52:56'),
(390, 17, 0x54776f6a61206b6f6c656a2077206e617374ea70756ab1637963682067726163683a, 'Y', '2003-12-11 23:52:56'),
(391, 17, 0x4e6965207a6e616c657a696f6e6f2067696572, 'Y', '2004-03-25 15:53:52'),
(460, 17, 0x6e617374ea706e61207374726f6e61, 'Y', '2003-12-11 23:52:56'),
(461, 17, 0x706f70727a65646e6961207374726f6e61, 'Y', '2003-12-11 23:52:56'),
(462, 17, 0x446f64616a206b6f6c756d6eea, 'Y', '2003-12-11 23:52:56'),
(722, 17, 0x466f6c646572, 'Y', '2013-08-22 03:43:59'),
(732, 17, 0x4c69637a626120646e692075726c6f7075, 'Y', '2013-08-20 22:07:36'),
(733, 17, 0x55726c6f70, 'Y', '2013-08-20 22:07:36'),
(747, 17, 0x57737a7973746b6965206b6f6c756d6e79, 'Y', '2003-12-11 23:52:56'),
(191, 17, 0x506f747769657264bc20686173b36f, 'Y', '2003-12-11 23:52:56'),
(202, 17, 0x5065b36e65206e617a7769736b6f, 'Y', '2003-12-11 23:52:56'),
(223, 17, 0x5a61706f6d6e6961b365b620686173b3613f, 'Y', '2003-12-11 23:52:56'),
(243, 17, 0x5a616c6f67756a207369ea2e, 'Y', '2013-08-22 03:14:16'),
(244, 17, 0x4a65bf656c692063686365737a207369ea2074796c6b6f20726f7a656a727a65e62c2075bf796a2025732e, 'Y', '2004-03-25 15:55:28'),
(245, 17, 0x486173b36f, 'Y', '2003-12-11 23:52:56'),
(247, 17, 0x5a6172656a65737472756a206e6f7765206b6f6e746f, 'Y', '2003-12-11 23:52:56'),
(374, 17, 0x506f6b61bf20726f7a67727977616e6520677279, 'Y', '2003-12-12 00:07:43'),
(389, 17, 0x4e6f776520776961646f6d6fb66369, 'Y', '2003-12-12 00:07:43'),
(252, 17, 0x4a65737a637a652072617a207365726465637a6e696520776974616d79206920626177207369ea20646f62727a6521, 'Y', '2003-12-12 00:07:43'),
(344, 17, 0x5a6172656a65737472756a207369ea, 'Y', '2013-08-22 03:17:14'),
(345, 17, 0x5770726f776164bc2064616e65, 'Y', '2003-12-12 00:07:43'),
(109, 17, 0x47726120646f64616e6121, 'Y', '2003-12-12 00:07:43'),
(227, 17, 0x4b61736f77616e696520677279, 'Y', '2003-12-12 00:07:43'),
(229, 17, 0x57796e696b, 'Y', '2003-12-12 00:07:43'),
(230, 17, 0x477261, 'Y', '2003-12-12 00:07:43'),
(231, 17, 0x506173, 'Y', '2003-12-12 00:07:43'),
(233, 17, 0x5a726f62696f6e65, 'Y', '2003-12-12 00:07:43'),
(234, 17, 0x577a6e6f7769656e696520677279, 'Y', '2003-12-12 00:07:43'),
(235, 17, 0x52657a79676e61636a61, 'Y', '2003-12-12 00:07:43'),
(236, 17, 0x506f626965727a20736766, 'Y', '2003-12-12 00:07:43'),
(237, 17, 0x4964bc20646f206e617374ea706e656a20677279, 'Y', '2003-12-13 18:25:56'),
(238, 17, 0x557375f1207a206c69737479206f62736572776f77616e796368, 'Y', '2003-12-12 00:07:43'),
(201, 17, 0x4964656e747966696b61746f722075bf79746b6f776e696b61, 'Y', '2003-12-12 00:17:14'),
(368, 17, 0x4f737461746e692072756368, 'N', '2003-12-12 00:17:14'),
(232, 17, 0x536b6173756a206772ea, 'Y', '2003-12-12 00:17:14'),
(239, 17, 0x446f64616a20646f206c69737479206f62736572776f77616e796368, 'Y', '2003-12-12 00:17:14'),
(253, 17, 0x47726120736b61736f77616e6121, 'Y', '2003-12-12 00:17:14'),
(308, 17, 0x446f, 'Y', '2003-12-12 00:17:14'),
(324, 17, 0x4f64706f77696564bc, 'Y', '2003-12-12 00:17:14'),
(325, 17, 0x576961646f6d6fb6e6, 'Y', '2003-12-12 00:17:14'),
(342, 17, 0x57796b7265732072616e6b696e676f777920646c61, 'Y', '2013-08-22 03:45:54'),
(343, 17, 0x50727a65707261737a616d792c207a627974206d61b36f20676965722072616e6b696e676f7779636820bf656279206e617279736f7761e62077796b726573, 'Y', '2003-12-12 00:17:14'),
(348, 17, 0x477279207a616b6ff1637a6f6e65, 'Y', '2003-12-12 00:17:14'),
(349, 17, 0x477279207720746f6b75, 'Y', '2003-12-12 00:17:14'),
(350, 17, 0x477279207a616b6ff1637a6f6e6520646c61202573, 'Y', '2003-12-12 00:17:14'),
(351, 17, 0x477279207720746f6b7520646c61202573, 'Y', '2003-12-12 00:17:14'),
(715, 17, 0x416b7475616c6e7920637a61733a, 'Y', '2013-08-21 00:27:21'),
(388, 17, 0x50727a796a6d756a65206f6665727479206772793f, 'Y', '2003-12-12 00:20:00'),
(94, 17, 0x4c696e6b69, 'Y', '2013-08-20 23:47:51'),
(366, 17, 0x52616e6b696e676f7761, 'Y', '2003-12-12 00:30:52'),
(372, 17, 0x4a69676f2872656d697329, 'Y', '2013-08-21 00:24:11'),
(408, 17, 0x52f3776e6120677261207a206e6967697269, 'Y', '2003-12-12 00:30:52'),
(409, 17, 0x506f6477f36a6e6120677261, 'Y', '2003-12-12 00:30:52'),
(412, 17, 0x4b6f6d656e7461727a, 'Y', '2013-08-22 04:05:32'),
(134, 17, 0x4e617a7769736b6f, 'Y', '2003-12-12 07:03:49'),
(204, 17, 0x496e666f726d61636a61206f2073696c65, 'Y', '2003-12-12 07:03:49'),
(309, 17, 0x466c616769, 'Y', '2003-12-12 07:03:49'),
(3045, 36, 0xc3bc7a62c3a967, 'Y', '2015-09-19 12:53:46'),
(225, 17, 0x52657a79676e61636a61, 'Y', '2003-12-12 07:03:49'),
(226, 17, 0x506173, 'Y', '2003-12-12 07:03:49'),
(370, 17, 0x54616b, 'Y', '2003-12-12 07:03:49'),
(371, 17, 0x4e6965, 'Y', '2003-12-12 07:03:49'),
(414, 17, 0x4c696d697420637a617375, 'Y', '2003-12-12 07:03:49'),
(420, 17, 0x4c69637a6261206769657220646f20646f64616e6961, 'Y', '2003-12-12 07:03:49'),
(421, 17, '', 'Y', '2010-12-26 18:49:10'),
(422, 17, '', 'Y', '2010-12-26 18:49:10'),
(424, 17, 0x4a65b66c692074616b2c2072616e6b696e6720772070727a65647a69616c65, 'Y', '2013-08-22 03:45:54'),
(425, 17, 0x446f64616a206772ea, 'Y', '2003-12-12 07:03:49'),
(242, 17, 0x5a61707261737a616d7920646f2062657a70b361746e656a2072656a6573747261636a69206920726f7a67727977616e696120676965722e, 'Y', '2009-08-24 10:22:57'),
(478, 17, 0x5769ea63656a20696e666f726d61636a69207a6e616a647a6965737a207720666f72756d204641512c2067647a6965206d6fbf65737a2072f3776e6965bf207a6164617761e620707974616e6961206920757a79736b61e62077737061726369652e, 'Y', '2003-12-12 07:10:01'),
(373, 17, 0x5a6170726fb6207465676f2075bf79746b6f776e696b6120646f20677279, 'Y', '2009-08-22 12:27:36'),
(427, 17, 0x4c69637a62612067696572, 'Y', '2003-12-12 07:14:09'),
(429, 17, 0x536b6173756a, 'Y', '2003-12-12 07:22:42'),
(437, 17, 0x437a617320706f64737461776f7779, 'Y', '2003-12-12 07:22:42'),
(454, 17, 0x556d6965b6e6206b616d69656e69652068616e64696361707521, 'Y', '2003-12-12 07:22:42'),
(455, 17, 0x506f747769657264bc20692070727a656a64bc20646f206e617374ea706e656a20677279, 'Y', '2003-12-12 07:22:42'),
(456, 17, 0x506f747769657264bc20692070727a656a64bc20646f2073746174757375, 'Y', '2003-12-12 07:22:42'),
(457, 17, 0x436f666e696a, 'Y', '2003-12-12 07:22:42'),
(458, 17, 0x4a65f16379, 'Y', '2003-12-12 07:22:42'),
(484, 17, 0x737479, 'Y', '2003-12-12 07:22:42'),
(485, 17, 0x6c7574, 'Y', '2003-12-12 07:22:42'),
(486, 17, 0x6b7769, 'Y', '2003-12-12 07:22:42'),
(487, 17, 0x6d616a, 'Y', '2003-12-12 07:22:42'),
(488, 17, 0x637a65, 'Y', '2003-12-12 07:22:42'),
(489, 17, 0x736965, 'Y', '2003-12-12 07:22:42'),
(490, 17, 0x77727a, 'Y', '2003-12-12 07:22:42'),
(491, 17, 0x7061bc, 'Y', '2003-12-12 07:22:42'),
(492, 17, 0x677275, 'Y', '2003-12-12 07:22:42'),
(495, 17, 0x6d6172, 'Y', '2003-12-12 07:22:42'),
(496, 17, 0x736965, 'Y', '2003-12-12 07:22:42'),
(497, 17, 0x6c6973, 'Y', '2003-12-12 07:22:42'),
(498, 17, 0x4f64, 'Y', '2003-12-12 07:22:42'),
(499, 17, 0x446f, 'Y', '2003-12-12 07:22:42'),
(618, 17, 0x526174696e6720706f637ab1746b6f7779, 'Y', '2003-12-12 07:22:42'),
(619, 17, 0x526174696e67206b6ff1636f7779, 'Y', '2003-12-12 07:22:42'),
(406, 17, 0x547261647963796a6e79, 'Y', '2003-12-12 13:03:35'),
(407, 17, 0x57b361b663697779, 'Y', '2003-12-12 13:03:35'),
(426, 17, 0x477261637a, 'Y', '2003-12-12 13:03:35'),
(428, 17, 0x5a6567617220647a6961b3612077207765656b656e6479, 'Y', '2003-12-12 13:03:35'),
(620, 17, 0x52f3bf6e69636120726174696e6775, 'Y', '2003-12-12 13:03:35'),
(326, 17, 0x5779b66c696a204f64706f77696564bc, 'Y', '2003-12-12 13:03:35'),
(327, 17, 0x4e6f776120776961646f6d6fb6e6, 'Y', '2003-12-12 13:03:35'),
(329, 17, 0x5779b66c696a20576961646f6d6fb6e6, 'Y', '2003-12-12 13:03:35'),
(91, 17, 0x466f7261206479736b7573796a6e65, 'Y', '2003-12-12 13:09:06'),
(104, 17, 0x646f6461746b6f776f202573206e612072756368, 'Y', '2003-12-12 13:09:06'),
(332, 17, 0x4e65676f636a61636a6120776172756e6bf377, 'Y', '2003-12-12 13:09:06'),
(333, 17, 0x416b6365707461636a61, 'Y', '2003-12-12 13:09:06'),
(334, 17, 0x4f64727a7563656e6965, 'Y', '2003-12-12 13:09:06'),
(336, 17, 0x5779b66c696a206f66657274ea, 'Y', '2003-12-12 13:09:06'),
(346, 17, 0x576961646f6d6fb6e620777973b3616e6121, 'Y', '2003-12-12 13:09:06'),
(431, 17, 0x526f7a6d69617220706c616e737a79, 'N', '2003-12-12 13:09:06'),
(432, 17, 0x547261647963796a6e792068616e646963617020286b6f6d6920302e35206a65b66c69206772612068616e64696361706f776129, 'Y', '2003-12-12 13:09:06'),
(433, 17, 0x57b361b6636977792068616e6469636170, 'Y', '2003-12-12 13:09:06'),
(439, 17, 0x7a, 'Y', '2003-12-12 13:09:06'),
(443, 17, 0x4b756d756c61636a6120637a617375, 'Y', '2003-12-12 13:09:06'),
(446, 17, 0x4b6f6c6f7279, 'Y', '2003-12-12 13:11:55'),
(447, 17, '', 'Y', '2010-12-26 18:49:10'),
(449, 17, 0x4a61706ff1736b69, 'Y', '2013-08-21 00:26:39'),
(451, 17, 0x6b616e6164796a736b6965, 'Y', '2003-12-12 13:11:55'),
(452, 17, 0x2573206e61202573206b616d69656e69, 'Y', '2003-12-12 13:11:55'),
(453, 17, 0x646f6461746b6f776f206e612072756368, 'Y', '2003-12-12 13:11:55'),
(724, 17, 0x5a6e69737a637a207a617a6e61637a6f6e6520776961646f6d6fb66369, 'Y', '2003-12-12 13:11:55'),
(726, 17, 0x45647974756a20666f6c64657279, 'Y', '2003-12-12 13:11:55'),
(719, 17, 0x2573207779677261b3206f20252e3166, 'Y', '2003-12-12 13:20:50'),
(755, 17, 0x576961646f6d6fb6e6206f642073657277657261, 'Y', '2003-12-12 13:20:50'),
(83, 17, 0x506f637a656b616c6e6961, 'Y', '2003-12-12 13:22:43'),
(314, 17, 0x4e6f7761, 'Y', '2003-12-12 13:22:43'),
(160, 17, 0x5770726f7761647a656e696520646f20447261676f6e676f, 'Y', '2003-12-12 13:38:26'),
(246, 17, 0x5a616c6f67756a, 'Y', '2003-12-12 19:02:01'),
(248, 17, 0x5770726f7761647a656e6965, 'Y', '2003-12-12 13:38:26'),
(415, 17, 0x4c69637a62612047696572, 'Y', '2003-12-12 13:38:26'),
(419, 17, 0x74796c6b6f202573, 'Y', '2003-12-12 13:38:26'),
(423, 17, 0x50727a656369776e696b207a20726174696e6769656d, 'Y', '2003-12-12 13:38:26'),
(436, 17, 0x6d69657369ea6379, 'Y', '2003-12-12 13:38:26'),
(442, 17, 0x646c61, 'Y', '2003-12-12 13:38:26'),
(445, 17, 0x494420477279, 'Y', '2003-12-12 13:38:26'),
(450, 17, 0x2573206e612072756368206920257320646f6461746b6f776f206e612072756368, 'Y', '2013-08-20 21:57:50'),
(740, 17, 0x57737a7973746b6965204f74727a796d616e65, 'Y', '2012-11-25 15:21:12'),
(741, 17, 0x47b3f3776e79, 'Y', '2003-12-12 13:38:26'),
(742, 17, 0x4b6f737a, 'Y', '2003-12-12 13:38:26'),
(743, 17, 0x577973b3616e65, 'Y', '2003-12-12 13:38:26'),
(745, 17, 0x50727a656e6965b620646f20666f6c64657275, 'Y', '2003-12-12 13:38:26'),
(746, 17, 0x4e617a776120666f6c64657275, 'Y', '2013-08-22 03:43:59'),
(157, 17, 0x486173b36f207a6f737461b36f207a6d69656e696f6e6521, 'Y', '2003-12-12 13:38:26'),
(176, 17, 0x4b72616a, 'Y', '2003-12-12 13:38:26'),
(177, 17, 0x4d696173746f, 'Y', '2003-12-12 13:38:26'),
(178, 17, 0x5374616e, 'Y', '2003-12-12 13:38:26'),
(179, 17, 0x4b6c7562, 'Y', '2003-12-12 13:38:26'),
(180, 17, 0x5374726f6e6120646f6d6f7761, 'Y', '2003-12-12 13:38:26'),
(181, 17, 0x456d61696c, 'Y', '2003-12-12 13:38:26'),
(182, 17, 0x4e756d657220494351202847472069747029, 'Y', '2003-12-12 13:38:26'),
(156, 17, 0x42696f677261666961207a616b7475616c697a6f77616e6121, 'Y', '2003-12-12 13:42:48'),
(158, 17, 0x50726f66696c207a616b7475616c697a6f77616e7921, 'Y', '2003-12-12 13:42:48'),
(183, 17, 0x507265666572656e636a6520677279, 'Y', '2003-12-12 13:42:48'),
(184, 17, 0x486f626279, 'Y', '2003-12-12 13:42:48'),
(187, 17, 0x5a6d6965f12062696f6772616669ea, 'Y', '2003-12-12 13:42:48'),
(188, 17, 0x45647974756a20686173b36f, 'Y', '2003-12-12 13:42:48'),
(189, 17, 0x537461726520686173b36f, 'Y', '2003-12-12 13:42:48'),
(190, 17, 0x4e6f776520686173b36f, 'Y', '2003-12-12 13:42:48'),
(192, 17, 0x5a6d6965f120686173b36f, 'Y', '2003-12-12 13:42:48'),
(197, 17, 0x50696f6e6f776f, 'Y', '2003-12-12 13:42:48'),
(198, 17, 0x506f7a696f6d6f, 'Y', '2003-12-12 13:42:48'),
(199, 17, 0x45647974756a2070726f66696c, 'Y', '2003-12-12 13:42:48'),
(200, 17, 0x557374617769656e6961206f736f6269737465, 'Y', '2003-12-12 13:42:48'),
(206, 17, 0x506f776961646f6d69656e6961206e6120656d61696c, 'Y', '2003-12-12 13:42:48'),
(208, 17, 0x4aea7a796b, 'Y', '2003-12-12 13:42:48'),
(209, 17, 0x53747265666120637a61736f7761, 'Y', '2003-12-12 13:42:48'),
(212, 17, 0x5769656c6b6fb6e6206b616d69656e69, 'Y', '2003-12-12 13:42:48'),
(399, 17, 0x57796772616e65, 'Y', '2003-12-12 21:57:37'),
(400, 17, 0x50727a656772616e65, 'Y', '2003-12-12 21:57:37'),
(402, 17, 0x416b7479776e6fb6e6, 'Y', '2003-12-12 21:57:37'),
(194, 17, 0x54796c6b6f20706f776961646f6d69656e6965, 'Y', '2003-12-12 22:06:00'),
(195, 17, 0x5275636879206920776961646f6d6fb66369, 'Y', '2003-12-12 22:06:00'),
(196, 17, 0x4361b36120706c616e737a61206920776961646f6d6fb66369, 'Y', '2003-12-12 22:06:00'),
(207, 17, 0x55bf796a2075737461776965f12070727a65676cb16461726b69, 'Y', '2003-12-12 22:06:00'),
(210, 17, 0x4369737a61206e6f636e61, 'Y', '2003-12-12 22:06:00'),
(214, 17, 0x577370f3b3727aea646e65206e6120626f6b616368, 'Y', '2003-12-12 22:06:00'),
(215, 17, 0x6c6577796d, 'Y', '2003-12-12 22:06:00'),
(216, 17, 0x67f3726e796d, 'Y', '2003-12-12 22:06:00'),
(217, 17, 0x70726177796d, 'Y', '2003-12-12 22:06:00'),
(218, 17, 0x646f6c6e796d, 'Y', '2003-12-12 22:06:00'),
(219, 17, 0x577967b361647a6f6e652062727a656769206465736b69, 'Y', '2003-12-12 22:06:00'),
(220, 17, 0x4b696572756e656b206d656e75, 'Y', '2003-12-12 22:06:00'),
(222, 17, 0x5a6d69616e612070726f66696c75, 'Y', '2003-12-12 22:06:00'),
(378, 17, 0x496e666f726d61636a65206f206d6e6965, 'Y', '2003-12-12 22:06:00'),
(379, 17, 0x456479636a612062696f677261666969, 'Y', '2003-12-12 22:06:00'),
(393, 17, 0x446174612072656a6573747261636a69, 'Y', '2003-12-12 22:06:00'),
(394, 17, 0x4f737461746e6961206f6265636e6fb6e6, 'Y', '2003-12-12 22:06:00'),
(395, 17, 0x42696f677261666961, 'Y', '2003-12-12 22:06:00'),
(396, 17, 0x5779b66c696a20776961646f6d6fb6e620646f2075bf79746b6f776e696b61, 'Y', '2003-12-12 22:06:00'),
(397, 17, 0x5720746f6b75, 'Y', '2003-12-12 22:06:00'),
(398, 17, 0x5a616b6ff1637a6f6e65, 'Y', '2003-12-12 22:06:00'),
(463, 17, 0x737a7765647a6b69, 'Y', '2013-08-20 21:59:50'),
(731, 17, 0x45647974756a20666f6c6465727920776961646f6d6fb66369, 'Y', '2013-08-22 03:44:16'),
(465, 17, 0x616e6769656c736b69, 'Y', '2013-08-20 21:59:50'),
(466, 17, 0x6e69656d6965636b69, 'Y', '2013-08-20 22:01:19'),
(467, 17, 0x6672616e6375736b69, 'Y', '2013-08-20 22:01:19'),
(468, 17, 0x6869737a7061f16b69, 'Y', '2013-08-20 22:01:19'),
(469, 17, 0x637a65736b69, 'Y', '2013-08-20 22:01:19'),
(470, 17, 0x636869f1736b6928747261647963796a6e7929, 'Y', '2013-08-20 22:01:19'),
(3340, 17, '', 'Y', '2013-08-21 00:43:28'),
(472, 17, 0x636869f1736b69287570726f737a637a6f6e7929, 'Y', '2013-08-20 22:01:19'),
(479, 17, 0x74616a736b69, 'Y', '2013-08-20 22:01:19'),
(494, 17, 0x496e666f726d61636a61206f2075bf79746b6f776e696b75202573, 'Y', '2003-12-12 22:14:00'),
(736, 17, 0x57796772616e6520677279, 'Y', '2003-12-12 22:14:00'),
(737, 17, 0x50727a656772616e6520677279, 'Y', '2003-12-12 22:14:00'),
(738, 17, 0x5a6d6965f12064b375676fb6e62075726c6f7075, 'Y', '2003-12-12 22:14:00'),
(739, 17, 0x526f7a706f637a6e696a2075726c6f70, 'Y', '2003-12-12 22:14:00'),
(750, 17, 0x6b6f726561f1736b69, 'Y', '2013-08-20 22:07:36'),
(954, 17, 0x726f73796a736b69, 'Y', '2013-08-20 22:07:36'),
(955, 17, 0x55726c6f70, 'Y', '2003-12-12 22:14:00'),
(956, 17, 0x50727a65707261737a616d792c206e6965206d6fbf65737a20746572617a207a6d69656e69e62064b375676fb663692075726c6f70752e, 'Y', '2003-12-12 22:14:00'),
(957, 17, 0x44b375676fb6e62075726c6f7075207a6d69656e696f6e6121, 'Y', '2003-12-12 22:14:00'),
(958, 17, 0x446f64616a, 'Y', '2003-12-12 22:14:00'),
(500, 17, 0x6669f1736b69, 'Y', '2013-08-20 23:02:54'),
(959, 17, 0x557375f1, 'Y', '2003-12-12 22:21:30'),
(960, 17, 0x4f6b7265b66c2064b375676fb6e62075726f7075, 'Y', '2003-12-12 22:21:30'),
(962, 17, 0x50727a796a656d6e65676f2075726c6f707521, 'Y', '2003-12-12 22:21:30'),
(997, 17, 0x706f6c736b69, 'Y', '2013-08-20 22:07:36'),
(998, 17, 0x77b36f736b69, 'Y', '2013-08-20 22:11:05'),
(136, 17, '', 'Y', '2010-12-26 18:49:10'),
(159, 17, 0x446f6b756d656e7461636a61, 'Y', '2003-12-12 22:21:30'),
(161, 17, 0x437aea73746f207a61646177616e6520707974616e6961, 'Y', '2003-12-12 22:21:30'),
(163, 17, 0x4c75647a6965, 'Y', '2003-12-12 22:21:30'),
(165, 17, 0x4c696e6b69, 'Y', '2003-12-12 22:21:30'),
(168, 17, 0x496e737472756b636a6120696e7374616c61636a69, 'Y', '2003-12-12 22:21:30'),
(169, 17, 0x6a65b66c692063686365737a206d6965e62077b361736e65676f20647261676f6e61, 'Y', '2003-12-12 22:21:30'),
(170, 17, 0x506f626965727a20bc72f364b36120647261676f6e61, 'Y', '2003-12-12 22:21:30'),
(2158, 17, 0x53746174797374796b69, 'Y', '2013-08-20 23:51:45'),
(501, 17, 0x55bf79746b6f776e69637920447261676f6e612069206963682070726f66696c65, 'Y', '2013-08-20 10:59:05'),
(502, 17, 0x5465726d696e7920676f69737479637a6e65, 'Y', '2003-12-12 22:34:42'),
(504, 17, 0x5a617361647920476f, 'Y', '2003-12-12 22:34:42'),
(505, 17, '', 'Y', '2010-12-26 18:49:10'),
(507, 17, '', 'Y', '2010-12-26 18:49:10'),
(513, 17, '', 'Y', '2010-12-26 18:49:10'),
(514, 17, 0x4a616b2066756e6b636a6f6e756a6520464151206e6120447261676f6e6965, 'Y', '2003-12-12 22:34:42'),
(518, 17, 0x4e6967697269, 'Y', '2013-08-21 00:57:14'),
(535, 17, '', 'Y', '2010-12-26 18:49:10'),
(536, 17, 0x4b6ff1636f77612066617a6120677279, 'Y', '2003-12-12 22:34:42'),
(537, 17, '', 'Y', '2010-12-26 18:49:10'),
(538, 17, 0x4174617269206a6573742067726fbc62b1207ab36170616e6961206b616d69656e6961206c75622067727570792c20676479206b616d69656e696f7769206c75622067727570696520706f7a6f737461b32074796c6b6f206a6564656e206f64646563682e20572074796d207374616e6965206b616d69656e6965206c7562206772757061206d6f67b1206279e6207a626974652077206e617374ea706e796d2072756368752070727a656369776e696b612e, 'Y', '2010-12-26 18:33:18'),
(539, 17, '', 'Y', '2010-12-26 18:49:10'),
(540, 17, 0x4b6f206a657374207379747561636ab1206e6120706c616e737a792077206b74f372656a206f62616a20677261637a65206d6f67b1206e61207a6d69616eea207a6162696a61e620706f6a6564796e637a79206b616d6965f12e20446f73b36f776e6965206b6f206f7a6e61637a612022776965637a6e6fb6e6222e, 'Y', '2003-12-12 22:34:42'),
(4669, 7, 0x567974766ff8206e6f76e920726f7a6573746176656eed202873206ee1686c6564656d292c2070726f746fbe65205b25735d206a65206175746f7220726f7a6573746176656eed20257321, 'Y', '2016-07-20 18:39:56'),
(991, 4, 0x56657272696e6765727420736963682064696520537069656c7a656974206d65696e6573204765676e6572732c2077656e6e206d65696e652055687220676573746f707074206973743f, 'Y', '2003-12-13 11:22:34'),
(992, 4, 0x57656e6e2053696520616d205a75672073696e643a206e65696e2e0d0a0d0a497374206162657220496872204765676e657220616d205a75673a204a612c20736f6c616e6765206573206e696368742077e46872656e64207365696e657220527568657a6569742c206e6963687420616d20576f6368656e656e646520286f686e6520576f6368656e64737568722920756e64206e696368742077e46872656e64206465732055726c6175626573204968726573204765676e657273206765736368696568742e, 'Y', '2007-12-06 23:52:48'),
(993, 4, 0x4b616e6e2069636820617563682077e46872656e64207061757369657274657220556872207a696568656e3f, 'Y', '2003-12-13 11:22:34'),
(994, 4, 0x57656e6e2053696520616d205a75672073696e642c206bf66e6e656e20536965203c693e696d6d65723c2f693e207a696568656e202d2d20617563682077e46872656e6420496872657220527568657a6569742c2077e46872656e642049687265732055726c617562657320756e6420616e20576f6368656e656e64656e2e, 'Y', '2007-12-06 23:52:48'),
(164, 17, 0x6b746f207773706f6d6167612074776f727a656e696520447261676f6e61, 'Y', '2003-12-13 18:03:20'),
(257, 17, 0x5374726f6e79204a616e612076616e2064657220537465656e61, 'Y', '2003-12-13 18:03:20'),
(258, 17, 0x4d6ef37374776f20696e666f726d61636a69206f20476f, 'Y', '2003-12-13 18:03:20'),
(259, 17, '', 'Y', '2010-12-26 18:49:10'),
(265, 17, '', 'Y', '2010-12-26 18:49:10'),
(271, 17, '', 'Y', '2010-12-26 18:49:10'),
(272, 17, 0x4d616e6761206f20476f2e20506f6c6563616d792120286e696573746574792077737a7973746b696520637aeab66369207a6f737461b379207573756e69ea74652069206e6965206d6fbf6e6120696368206a75bf20706f627261e629, 'Y', '2003-12-13 18:12:02'),
(273, 17, 0x5a6173616479, 'Y', '2003-12-13 18:12:02'),
(283, 17, 0x50726f626c656d7920476f, 'Y', '2003-12-13 18:12:02'),
(285, 17, '', 'Y', '2010-12-26 18:49:10'),
(997, 6, 0x506f6c61636f, 'Y', '2003-12-14 09:04:19'),
(998, 6, 0x4974616c69616e6f, 'Y', '2003-12-14 09:04:19'),
(576, 6, 0x5061726120656e766961726c6520756e61206e7565766120636f6e7472617365f16120287369207573746564206c6f20736f6c6963697461292e0d0a0d0a456e7669617220756e61206e7565766120636f6e7472617365f1612061206c612064697265636369f36e20646520656d61696c203c623e65737065636966696361646120656e2073752070657266696c206465207573756172696f3c2f623e20657320756e206de9746f646f2066e163696c206465206173656775726172206c6120617574656e7469666963616369f36e2064656c207573756172696f2e20447261676f6e206e6f2064657365612068616365726c6f206de17320636f6d706c696361646f20717565206c6f206e656365736172696f2e0d0a0d0a447261676f6e207265737065746120737520707269766163696461643a205573746564206e6f2072656369626972e120656d61696c73206e6f20736f6c6963697461646f732e2053752064697265636369f36e20646520656d61696c206e6f20706f6472e1207365722076697375616c697a61646120706f72206e616469652e2054616d706f636f20736572e12076656e646964612061206e616469652e0d0a0d0a446520746f646f73206d6f646f732c20447261676f6e206c65207065726d697465203c623e6e6f3c2f623e2065737065636966696361722073752064697265636369f36e20646520656d61696c2e205065726f20656e746f6e6365732c20706f72206661766f72203c623e61736567fa726573653c2f623e206465206e6f206f6c766964617220737520636f6e7472617365f16121, 'Y', '2003-12-14 09:04:19'),
(578, 6, 0x4375616e646f20656c207469656d706f207072696e636970616c20646520756e206a756761646f72206861207369646f2061676f7461646f2c2065737465207469656e6520756e206ced6d6974652066696a6f206465207469656d706f2070617261203c623e636164613c2f623e206a75676164612e204164656de173207469656e6520766172696f7320706572ed6f646f733a0d0a3c554c3e0d0a3c4c493e4375616e646f20656c206a756761646f72206d756576652064656e74726f2064656c207469656d706f20617369676e61646f2c206c61206375656e746120726567726573697661207675656c766520616c2076616c6f7220696e696369616c2c207920656c206efa6d65726f20646520706572ed6f646f73206e6f2063616d6269612e3c2f4c493e0d0a0d0a3c4c493e4375616e646f206e6f207265616c697a61206c61206a75676164612061207469656d706f2c20656c206efa6d65726f20646520706572ed6f646f73206469736d696e75796520656e20756e6f2c2079206c61206375656e746120726567726573697661207265636f6d69656e7a6120696e6d6564696174616d656e74652e3c2f4c493e0d0a3c2f554c3e0d0a4375616e646f206120756e206a756761646f72206e6f206c652071756564616e206de17320706572ed6f646f73206e69207469656d706f2c20657374652070696572646520656c207061727469646f2e, 'N', '2003-12-14 09:04:19'),
(580, 6, 0x4375616e646f20656c207469656d706f207072696e636970616c20646520756e206a756761646f72206861207369646f2061676f7461646f2c2065737465207469656e6520756e206ced6d697465206465207469656d706f2070617261206a75676172203c623e7661726961733c2f623e20706965647261732e0d0a0d0a506f7220656a656d706c6f3a20313020706965647261732064656e74726f2064652031352064ed61733a0d0a536920656c206a756761646f72206861207562696361646f2073752031306d61207069656472612064656e74726f2064656c207469656d706f20617369676e61646f2c207375206375656e74612072656772657369766120636f6d69656e7a61206e756576616d656e74652028636f6e2031352064ed61732070617261206c6173207072f378696d61732031302070696564726173292e0d0a0d0a536920656c206a756761646f72206e6f207265616c697a61206c61206a75676164612061207469656d706f2c2070696572646520656c207061727469646f2e, 'N', '2003-12-14 09:04:19'),
(582, 6, 0x4c7565676f2064652071756520756e206a756761646f72206861207265616c697a61646f207375206d6f766964612c20756e20706f636f20646520227469656d706f2061646963696f6e616c2220657320616772656761646f20612073752072656c6f6a2028686173746120756e206de178696d6f2065737065636966696361646f20706f7220656c20227469656d706f207072696e636970616c22292e0d0a0d0a4375616e646f206120756e206a756761646f72207365206c652061676f746120656c207469656d706f2c20657374652070696572646520656c207061727469646f2e, 'N', '2003-12-14 09:04:19'),
(646, 6, 0x486f736869207369676e6966696361202265737472656c6c612220656e206a61706f6ee973207920706f73656520646f73207369676e6966696361646f732e20456e2067656e6572616c2c20736f6e206c6f73206e75657665202270756e746f732064652065737472656c6c61222064652068616e646963617020656e20656c207461626c65726f2e204de17320657370656369666963616d656e74652c20657320656c2070756e746f20342d3420656e206c612065737175696e612e, 'Y', '2003-12-14 09:48:39'),
(656, 6, 0x456c2070756e746f2063656e7472616c2064656c207461626c65726f2e2054616d6269e96e20656c2070756e746f2031302d313020656e20756e207461626c65726f2064652031397831392e2054656e67656e207369676e696669636120226f726967656e2064656c206369656c6f2220656e206a61706f6ee9732e, 'N', '2003-12-14 09:48:39'),
(666, 6, 0x4a756761646120656e206c612065737175696e612e20556e2070617472f36e206465206a7565676f2065737461626c656369646f207061726120756e612073697475616369f36e206c6f63616c2e2047656e6572616c6d656e7465206c61206d656a6f722073656375656e636961206465206d6f76696d69656e746f73207061726120616d626f73206a756761646f72657320656e20666f726d61206c6f63616c2c207065726f206e6f206e65636573617269616d656e746520656e20666f726d6120676c6f62616c2e204a6f73656b6920657320756e2074e9726d696e6f2074e1637469636f2c206e6f20657374726174e96769636f2e, 'N', '2003-12-14 09:48:39'),
(668, 6, 0x4a75676164612064652061706572747572612e202850617472f36e2065737461626c656369646f207061726120756e6129206a756761646120656e206c6120617065727475726120646520756e207061727469646f2e20456c20667573656b6920696e636f72706f726120636f6e73696465726163696f6e657320657374726174e9676963617320676c6f62616c65732c207669656e646f20616c20676f62616e20656e20737520746f74616c696461642e, 'N', '2003-12-14 09:48:39'),
(670, 6, 0x53656b69207369676e69666963612022646f626c652076696461222e2053656b6920657320756e2063616c6c656af36e2073696e2073616c69646120656e20656c206375616c20646f7320677275706f7320636f6d70617274656e206c6962657274616465732c2079206e696e67756e6f20646520656c6c6f7320707565646520636170747572617220616c206f74726f2e, 'Y', '2003-12-14 09:48:39'),
(672, 6, 0x4e6f2c206e6f20657320706f7369626c6520656e76696172206c6173206a75676164617320706f7220656d61696c2e0d0a4465626520636f6e6563746172736520616c203c6120687265663d222f223e736974696f2077656220646520447261676f6e3c2f613e207061726120656e76696172207375206a75676164612e, 'Y', '2003-12-14 09:48:39'),
(676, 6, 0x4e6f2e205065726f2065737461206361726163746572ed7374696361203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f70686f72756d2f726561642e7068703f663d3426693d3132363126743d31323631223e736572e12061677265676164613c2f613e2061206c61206c69737461206465207461726561732070656e6469656e7465732e, 'N', '2003-12-14 09:48:39'),
(681, 6, 0x496e7465726e616d656e746520447261676f6e207574696c697a6120756e2073697374656d6120656e20656c206375616c20756e61206469666572656e63696120646520756e2072616e676f20646520476f206573206571756976616c656e7465206120756e61206469666572656e636961206465203130302070756e746f732e20506f7220656a656d706c6f3a0d0a0d0a37206b79752028302529203d20313430302070756e746f730d0a37206b797520282b33302529203d20313433302070756e746f730d0a36206b797520282d34382529203d20313435322070756e746f730d0a36206b79752028302529203d20313530302070756e746f73, 'N', '2003-12-14 09:48:39'),
(684, 6, 0x5175e9207369676e696669636120656c20e172656120617a756c2064656c206772e16669636f20646520726174696e673f, 'Y', '2003-12-14 09:48:39'),
(685, 6, 0x496e64696361207175e92074616e20636572636120657374e120656c20726174696e672064656c207573756172696f206465206c6120646566696e696369f36e20646520447261676f6e2064652072616e676f732c20726174696e6773207920686162696c696461646573206465206a7565676f2e0d0a0d0a4375616e646f20756e207573756172696f206e7565766f20696e67726573612073752072616e676f20696e696369616c20646520476f2c20447261676f6e206e6f2073616265207369206573652076616c6f7220696e696369616c2063756d706c6520636f6e206c6120646566696e696369f36e20646520447261676f6e2e204e6f206578697374656e20646566696e6963696f6e65732064652072616e676f7320646520476f206d756e6469616c65732e20447261676f6e2068616365206c6f206d656a6f7220706f7369626c6520706172612070726f706f7263696f6e617220726174696e677320646520476f20636f6e666961626c6573207920636f6d70617261626c65732e205065726f20656c20616e63686f2064656c20666f6e646f20617a756c2064656c206772e16669636f20646520726174696e6720646520756e207573756172696f2c206e6f2064696365206de17320717565206375e16e20636572636120657374e120656c20726174696e6720646520756e207573756172696f206e7565766f206465206c6120646566696e696369f36e2065737461626c65636964612064652072616e676f7320646520447261676f6e2e, 'N', '2003-12-14 09:48:39'),
(687, 6, 0x3c623e4e6f3c2f623e206a75676172206c61207072f378696d61206d6f7669646120636f6d6f20756e6120726573707565737461206c6f63616c2061206c6120fa6c74696d61206d6f766964612064656c206f706f6e656e74652e, 'N', '2003-12-14 09:48:39'),
(694, 6, 0x5175e920736f6e206c6f73207061727469646f73206f627365727661646f733f, 'Y', '2003-12-14 09:48:39'),
(696, 6, '', 'Y', '2007-11-03 16:08:38'),
(697, 6, 0x496e74657273656363696f6e6573206e65757472616c657320656e20656c20676f62616e2e20457374612022746965727261206465206e6164696522206e6f2073756d612070756e746f732070617261206e696e67756e6f206465206c6f73206a756761646f7265732e, 'Y', '2003-12-14 09:48:39'),
(698, 6, 0x4c69626572746164, 'Y', '2003-12-14 09:48:39'),
(699, 6, 0x556e6120696e7465727365636369f36e20766163ed612061646a6163656e7465206120756e6120706965647261206f20677275706f20646520706965647261732e, 'Y', '2003-12-14 09:48:39'),
(700, 6, '', 'N', '2007-11-03 16:08:38'),
(701, 6, 0x556e206d6f76696d69656e746f20656e20646961676f6e616c2061206c6120636162657a6120646520756e61207069656472612061647665727361726961206f20677275706f20646520706965647261732061647665727361726961732e, 'N', '2003-12-14 09:48:39'),
(702, 6, '', 'N', '2007-11-03 16:08:38'),
(703, 6, 0x4261736963616d656e74652c20756e61206a756761646120717565206361707475726120656e20756e612065737065636965206465207265642e, 'N', '2003-12-14 09:48:39'),
(704, 6, '', 'N', '2007-11-03 16:08:38'),
(705, 6, 0x556e6120617065727475726120636f6dfa6e20656e206c612071756520656c206a756761646f72206861206f63757061646f20747265732070756e746f732064652065737472656c6c612028686f736869292061206c6f206c6172676f20646520756e206c61646f2064656c207461626c65726f2e, 'N', '2003-12-14 09:48:39'),
(706, 6, '', 'N', '2007-11-03 16:08:38'),
(707, 6, 0x53686963686f20657320656c2074e9726d696e6f20646520476f20656e206a61706f6ee9732070617261203c6120687265663d222f70686f72756d2f726561642e7068703f663d3326693d31393626743d313936223e657363616c6572613c2f613e2e, 'N', '2003-12-14 09:48:39'),
(708, 6, 0x5469656e6520696d706163746f20656e206c6f7320726174696e677320656c2074616d61f16f2064656c207461626c65726f3f, 'Y', '2003-12-14 09:48:39'),
(709, 6, 0x4c617320706172746964617320656e203139783139207469656e656e20656c206d61796f7220696d706163746f20656e206c6f7320726174696e67732e0d0a446f7320706172746964617320656e203133783133206375656e74616e20636f6d6f20756e6120656e2031397831392e0d0a446f7320706172746964617320656e20397839206375656e74616e20636f6d6f20756e6120656e2031337831332e, 'N', '2003-12-14 09:48:39'),
(710, 6, 0x44f36e646520707565646f20617072656e6465722061206a7567617220616c20476f3f, 'Y', '2003-12-14 09:48:39'),
(711, 6, 0x48e96368616c6520756e61206d69726164612061203c6120687265663d22687474703a2f2f706c6179676f2e746f2f696e7465726163746976652f696e6465782e68746d6c22207461726765743d6e65773e54686520496e7465726163746976652057617920546f20476f3c2f613e20792061203c6120687265663d22687474703a2f2f7777772e62726974676f2e6f72672f696e74726f2f696e74726f2e68746d6c22207461726765743d6e65773e496e74726f64756374696f6e20746f207468652067616d65206f6620476f3c2f613e206465206c612041736f6369616369f36e2042726974e16e69636120646520476f2028616d626f7320656e6c6163657320656e20696e676ce973292e, 'Y', '2003-12-14 09:48:39'),
(712, 6, 0x43f36d6f2066756e63696f6e6120656c2073697374656d6120646520726174696e6720646520447261676f6e3f, 'N', '2003-12-14 09:48:39'),
(748, 6, 0x507565646f20636f6d656e7a61722075206f7267616e697a617220756e20746f726e656f3f, 'Y', '2003-12-14 10:00:02'),
(751, 6, 0x43f36d6f20707565646f20717569746172206c61732070696564726173206d75657274617320616c2066696e616c20646520756e6120706172746964613f, 'Y', '2003-12-14 10:00:02'),
(753, 6, 0x5175e9207369676e69666963616e206c6f73206375616472616469746f7320726f6a6f7320616c2066696e616c20646520756e6120706172746964613f, 'N', '2003-12-14 10:00:02'),
(967, 6, 0x43f36d6f20707565646f20756e69726d6520616c2065717569706f20646520756e61206375656e74612070fa626c6963613f, 'Y', '2003-12-14 10:00:02'),
(971, 6, 0x5175e9206375656e7461732064652065717569706f73206578697374656e3f, 'N', '2003-12-14 10:00:02'),
(973, 6, 0x43f36d6f206d6520636f6e6563746f206120756e61206375656e746120656e20706172746963756c61723f, 'Y', '2003-12-14 10:00:02'),
(975, 6, 0x43f36d6f206d6520636f6e6563746f2061206d69206375656e74613f, 'Y', '2003-12-14 10:00:02'),
(979, 6, 0x43f36d6f206573206c6120636f6d756e6963616369f36e2064656e74726f20646520756e2065717569706f2070fa626c69636f3f, 'Y', '2003-12-14 10:00:02'),
(980, 6, 0x4c61206d61796f72ed61206465206c6173206375656e7461732070fa626c696361732068616e2065737461626c656369646f20756e612063617270657461206465206d656e73616a65732064652022646973637573696f6e65732072656369656e7465732220717565206170617265636520656e2073752070e167696e612064652065737461646f2e, 'Y', '2003-12-14 10:00:02'),
(981, 6, 0x5175e920736f6e206c6f73206d656e73616a657320646520447261676f6e3f, 'N', '2003-12-14 10:00:02'),
(983, 6, 0x5175e920736f6e206c6173206361727065746173206465206d656e73616a65733f, 'Y', '2003-12-14 10:00:02'),
(985, 6, 0x507565646f20706572736f6e616c697a617220447261676f6e3f, 'Y', '2003-12-14 10:00:02'),
(986, 6, 0x456e20656c20736563746f7220696e666572696f72206465206c61206d61796f72ed61206465206c61732070e167696e61732068617920756e20666f726d756c6172696f2c20656c206375616c207465207065726d697465206d6f7374726172206461746f732061646963696f6e616c65732e20507565646573206f7264656e61726c6f2068616369656e646f20636c69636b20656e20656c20656e636162657a61646f206465206c6120636f6c756d6e612e2050756564657320717569746172206c617320636f6c756d6e617320717565206e6f206465736561732068616369656e646f20636c69636b20656e206c61207065717565f1612022782220726f6a6120616c206c61646f2064656c2074ed74756c6f206465206c6120636f6c756d6e612e, 'N', '2003-12-14 10:00:02'),
(987, 6, 0x536f79206e7565766f20656e20447261676f6e2e205175e92072616e676f20696e696369616c206465626572ed61207574696c697a61723f, 'Y', '2003-12-15 07:50:16'),
(989, 6, 0x496d706f72746120736920636f6d69656e7a6f20636f6e20756e2072616e676f2022696e636f72726563746f223f, 'Y', '2003-12-15 07:50:16'),
(993, 6, 0x507565646f207265616c697a617220756e61206a7567616461206d69656e74726173206d692072656c6f6a206465206a7565676f20657374e120656e2070617573613f, 'Y', '2003-12-15 07:50:16'),
(994, 6, 0x3c693e5369656d7072653c2f693e20707565646573207265616c697a617220756e61206a7567616461202d2d2061fa6e20647572616e7465207475207469656d706f206465207265706f736f2c20647572616e746520747573207661636163696f6e6573207920656e2066696e65732064652073656d616e612e, 'Y', '2003-12-15 07:50:16'),
(995, 6, 0x5175e920657320656c2072656c6f6a2064652066696e2064652073656d616e6120646520447261676f6e3f, 'Y', '2003-12-15 07:50:16'),
(996, 6, 0x4375616e646f206f66726563657320636f6d656e7a617220636f6e20756e61206e7565766120706172746964612c207469656e657320756e61206f706369f36e20706172612071756520656c2072656c6f6a203c623e6e6f3c2f623e206375656e746520647572616e74652073e16261646f73207920646f6d696e676f732e, 'N', '2003-12-15 07:50:16'),
(756, 6, 0x416667616e697374e16e, 'Y', '2015-06-17 05:00:43'),
(757, 6, '', 'Y', '2007-11-03 16:08:38'),
(758, 6, 0x417267656c6961, 'Y', '2015-06-16 18:25:43'),
(759, 6, '', 'Y', '2007-11-03 16:08:38'),
(760, 6, '', 'Y', '2007-11-03 16:08:38'),
(761, 6, 0x416e74e17274696361, 'Y', '2015-06-16 18:25:28'),
(762, 6, 0x416e746967756120792042617262756461, 'N', '2003-12-15 07:50:16'),
(763, 6, '', 'Y', '2007-11-03 16:08:38'),
(764, 6, '', 'Y', '2007-11-03 16:08:38'),
(765, 6, '', 'Y', '2007-11-03 16:08:38'),
(766, 6, '', 'Y', '2007-11-03 16:08:38'),
(767, 6, 0x417a657262616979e16e, 'Y', '2015-06-17 05:03:21'),
(768, 6, '', 'Y', '2007-11-03 16:08:38'),
(769, 6, 0x426172e9696e, 'Y', '2015-06-17 05:03:21'),
(770, 6, '', 'Y', '2007-11-03 16:08:38'),
(771, 6, 0x42616e676c6164e973, 'Y', '2015-06-17 05:03:21'),
(772, 6, 0x42656c6172fa7320284269656c6f72727573696129, 'Y', '2015-06-17 05:25:31'),
(773, 6, 0x42e96c67696361, 'Y', '2015-06-17 05:08:18'),
(774, 6, 0x42656c696365, 'Y', '2015-06-17 05:08:18'),
(775, 6, 0x42656eed6e, 'Y', '2015-06-17 05:08:18'),
(776, 6, 0x427574e16e, 'Y', '2015-06-16 18:26:35'),
(777, 6, '', 'Y', '2007-11-03 16:08:38'),
(780, 6, 0x42726173696c, 'Y', '2003-12-15 07:52:24'),
(782, 6, 0x42756c6761726961, 'Y', '2015-06-18 05:26:59'),
(783, 6, '', 'Y', '2007-11-03 16:08:38'),
(784, 6, '', 'Y', '2007-11-03 16:08:38'),
(785, 6, 0x43616d626f7961, 'Y', '2003-12-15 07:52:24'),
(786, 6, 0x43616d6572fa6e, 'Y', '2015-06-17 05:33:58'),
(787, 6, 0x43616e6164e1, 'Y', '2015-06-17 05:33:58'),
(788, 6, 0x4361626f205665726465, 'Y', '2003-12-15 07:52:24'),
(779, 6, 0x426f747375616e61, 'Y', '2015-06-17 05:08:18'),
(789, 6, 0x526570fa626c696361204166726963616e612043656e7472616c, 'Y', '2003-12-15 07:53:24'),
(790, 6, '', 'Y', '2007-11-03 16:08:38'),
(791, 6, '', 'Y', '2007-11-03 16:08:38'),
(792, 6, '', 'Y', '2007-11-03 16:08:38'),
(793, 6, '', 'Y', '2007-11-03 16:08:38'),
(794, 6, '', 'Y', '2007-11-03 16:08:38'),
(795, 6, '', 'Y', '2007-11-03 16:08:38'),
(796, 6, '', 'Y', '2007-11-03 16:08:38'),
(797, 6, '', 'Y', '2007-11-03 16:08:38'),
(799, 6, 0x43726f61636961, 'Y', '2003-12-15 07:53:24'),
(800, 6, '', 'Y', '2007-11-03 16:08:38'),
(802, 6, 0x526570fa626c69636120436865636120284368657175696129, 'Y', '2015-06-17 05:38:55'),
(803, 6, 0x44696e616d61726361, 'Y', '2003-12-15 07:54:53'),
(804, 6, '', 'Y', '2007-11-03 16:08:38'),
(805, 6, '', 'Y', '2007-11-03 16:08:38'),
(806, 6, 0x526570fa626c69636120446f6d696e6963616e61, 'Y', '2003-12-15 07:54:53'),
(808, 6, '', 'Y', '2007-11-03 16:08:38'),
(809, 6, 0x45676970746f, 'Y', '2003-12-15 07:54:53'),
(810, 6, '', 'Y', '2007-11-03 16:08:38'),
(811, 6, 0x4775696e65612045717561746f7269616c, 'Y', '2003-12-15 07:54:53'),
(812, 6, '', 'Y', '2007-11-03 16:08:38'),
(813, 6, '', 'Y', '2007-11-03 16:08:38'),
(814, 6, 0x4574696f706961, 'Y', '2003-12-15 07:55:41'),
(815, 6, '', 'Y', '2007-11-03 16:08:38'),
(816, 6, 0x46696e6c616e646961, 'Y', '2003-12-15 07:55:41'),
(817, 6, 0x4672616e636961, 'Y', '2003-12-15 07:55:41'),
(818, 6, 0x476162f36e, 'Y', '2015-06-28 00:38:18'),
(819, 6, '', 'Y', '2007-11-03 16:08:38'),
(820, 6, '', 'Y', '2007-11-03 16:08:38'),
(821, 6, 0x416c656d616e6961, 'Y', '2003-12-15 07:55:41'),
(822, 6, 0x47616e61, 'Y', '2015-06-28 00:38:18'),
(823, 6, 0x477265636961, 'Y', '2003-12-15 07:55:41'),
(824, 6, 0x4772616e616461, 'Y', '2003-12-15 07:56:29'),
(825, 6, '', 'Y', '2007-11-03 16:08:38'),
(826, 6, '', 'Y', '2007-11-03 16:08:38'),
(827, 6, '', 'Y', '2007-11-03 16:08:38'),
(828, 6, '', 'Y', '2007-11-03 16:08:38'),
(829, 6, 0x48616974ed, 'Y', '2015-06-28 00:38:18'),
(830, 6, '', 'Y', '2007-11-03 16:08:38'),
(831, 6, '', 'Y', '2007-11-03 16:08:38'),
(832, 6, 0x48756e67726961, 'Y', '2003-12-15 07:56:29'),
(834, 6, '', 'Y', '2007-11-03 16:08:38'),
(833, 6, 0x49736c616e646961, 'Y', '2003-12-15 07:57:20'),
(835, 6, '', 'Y', '2007-11-03 16:08:38'),
(836, 6, 0x4972e16e, 'Y', '2015-06-28 00:39:09'),
(837, 6, 0x4972616b, 'Y', '2015-06-28 00:39:09'),
(838, 6, 0x49726c616e6461, 'Y', '2003-12-15 07:57:20'),
(839, 6, '', 'Y', '2007-11-03 16:08:38'),
(840, 6, 0x4974616c6961, 'Y', '2003-12-15 07:57:20'),
(841, 6, '', 'Y', '2007-11-03 16:08:38'),
(842, 6, 0x4a6170f36e, 'Y', '2015-08-04 05:38:02'),
(843, 6, 0x4a6f7264616e6961, 'Y', '2003-12-15 07:57:20'),
(845, 6, 0x4b656e6961, 'Y', '2003-12-15 07:58:09'),
(846, 6, '', 'Y', '2007-11-03 16:08:38'),
(849, 6, '', 'Y', '2007-11-03 16:08:38'),
(850, 6, 0x4b697267697374e16e, 'Y', '2015-06-28 00:39:09'),
(851, 6, '', 'Y', '2007-11-03 16:08:38'),
(852, 6, 0x4c65746f6e6961, 'Y', '2015-06-28 00:39:45'),
(853, 6, 0x4c6962616e6f, 'Y', '2003-12-15 07:58:09'),
(854, 6, 0x4c65736f746f, 'Y', '2015-06-28 00:39:45'),
(855, 6, '', 'Y', '2007-11-03 16:08:38'),
(856, 6, 0x4c69626961, 'Y', '2003-12-15 07:58:56'),
(857, 6, '', 'Y', '2007-11-03 16:08:38'),
(858, 6, 0x4c697475616e6961, 'Y', '2003-12-15 07:58:56'),
(859, 6, 0x4c7578656d627572676f, 'Y', '2003-12-15 07:58:56'),
(861, 6, '', 'Y', '2007-11-03 16:08:38'),
(862, 6, '', 'Y', '2007-11-03 16:08:38'),
(863, 6, '', 'Y', '2007-11-03 16:08:38'),
(864, 6, 0x4d616c61736961, 'Y', '2003-12-15 07:58:56'),
(865, 6, 0x4d616c6469766961, 'Y', '2003-12-15 07:58:56'),
(866, 6, '', 'Y', '2007-11-03 16:08:38'),
(867, 6, '', 'Y', '2007-11-03 16:08:38'),
(868, 6, 0x49736c6173204d61727368616c6c, 'Y', '2003-12-15 07:59:43'),
(869, 6, '', 'Y', '2007-11-03 16:08:38'),
(870, 6, 0x4d6175726963696f, 'Y', '2015-06-28 00:42:44'),
(871, 6, 0x4d656a69636f, 'Y', '2003-12-15 07:59:43'),
(872, 6, '', 'Y', '2007-11-03 16:08:38'),
(873, 6, 0x4d6f6c6461766961, 'Y', '2015-06-28 00:42:44'),
(874, 6, 0x4df36e61636f, 'Y', '2015-06-28 00:42:44'),
(875, 6, '', 'Y', '2007-11-03 16:08:38'),
(876, 6, 0x4d6172727565636f73, 'Y', '2003-12-15 07:59:43'),
(877, 6, '', 'Y', '2007-11-03 16:08:38'),
(879, 6, '', 'Y', '2007-11-03 16:08:38'),
(880, 6, '', 'Y', '2007-11-03 16:08:38'),
(881, 6, '', 'Y', '2007-11-03 16:08:38'),
(882, 6, 0x5061ed7365732042616a6f73, 'Y', '2016-02-11 14:05:12'),
(883, 6, 0x4e75657661205a656c616e6461, 'Y', '2003-12-15 08:00:32'),
(884, 6, '', 'Y', '2007-11-03 16:08:38'),
(885, 6, '', 'Y', '2007-11-03 16:08:38'),
(886, 6, '', 'Y', '2007-11-03 16:08:38'),
(887, 6, 0x4e6f7275656761, 'Y', '2003-12-15 08:00:32'),
(888, 6, 0x4f6de16e, 'Y', '2015-06-28 00:43:23'),
(892, 6, 0x50616e616de1, 'Y', '2015-06-28 00:43:23'),
(893, 6, 0x5061707561204e75657661204775696e6561, 'Y', '2003-12-15 08:01:21'),
(894, 6, '', 'Y', '2007-11-03 16:08:38'),
(895, 6, 0x506572fa, 'Y', '2015-06-28 00:43:23'),
(896, 6, 0x46696c6970696e6173, 'Y', '2003-12-15 08:01:21'),
(897, 6, 0x506f6c6f6e6961, 'Y', '2003-12-15 08:01:21'),
(898, 6, '', 'Y', '2007-11-03 16:08:38'),
(889, 6, 0x50617175697374e16e, 'Y', '2015-06-28 00:43:23'),
(890, 6, '', 'Y', '2007-11-03 16:08:38'),
(899, 6, '', 'Y', '2007-11-03 16:08:38'),
(900, 6, 0x4361746172, 'Y', '2015-06-28 00:43:58'),
(901, 6, 0x52756d616e6961, 'Y', '2003-12-15 08:02:24'),
(902, 6, 0x5275736961, 'Y', '2003-12-15 08:02:24'),
(903, 6, 0x5275616e6461, 'Y', '2015-06-28 00:43:58'),
(904, 6, 0x53616e204b697474732079204e65766973, 'Y', '2003-12-15 08:02:24'),
(905, 6, 0x53616e7461204c7563ed61, 'Y', '2003-12-15 08:02:24'),
(907, 6, '', 'Y', '2007-11-03 16:08:38'),
(908, 6, '', 'Y', '2007-11-03 16:08:38'),
(909, 6, 0x53616f20546f6d652079205072696e63697065, 'Y', '2003-12-15 08:03:25'),
(910, 6, 0x4172616269612053617564697461, 'Y', '2003-12-15 08:03:25'),
(911, 6, '', 'Y', '2007-11-03 16:08:38'),
(913, 6, '', 'Y', '2007-11-03 16:08:38'),
(914, 6, 0x536965727261204c656f6e61, 'Y', '2003-12-15 08:03:25'),
(915, 6, 0x53696e6761707572, 'Y', '2003-12-15 08:03:25'),
(916, 6, 0x45736c6f766171756961, 'Y', '2003-12-15 08:04:15'),
(917, 6, 0x45736c6f76656e6961, 'Y', '2003-12-15 08:04:15'),
(918, 6, 0x49736c61732053616c6f6d6f6e, 'Y', '2003-12-15 08:04:15'),
(919, 6, '', 'Y', '2007-11-03 16:08:38'),
(920, 6, 0x537564616672696361, 'Y', '2003-12-15 08:04:15'),
(921, 6, 0x45737061f161, 'Y', '2003-12-15 08:04:15'),
(922, 6, '', 'Y', '2007-11-03 16:08:38'),
(923, 6, 0x537564e16e, 'Y', '2015-06-28 00:45:09'),
(924, 6, 0x537572696e616d, 'Y', '2003-12-15 08:04:15'),
(926, 6, 0x537565636961, 'Y', '2003-12-15 08:04:54'),
(927, 6, 0x5375697a61, 'Y', '2003-12-15 08:04:54'),
(928, 6, 0x5369726961, 'Y', '2003-12-15 08:04:54'),
(929, 6, '', 'Y', '2007-11-03 16:08:38'),
(930, 6, 0x546179696b697374e16e, 'Y', '2015-06-28 00:45:09'),
(931, 6, '', 'Y', '2007-11-03 16:08:38'),
(932, 6, 0x5461696c616e646961, 'Y', '2003-12-15 08:04:54'),
(933, 6, '', 'Y', '2007-11-03 16:08:38'),
(934, 6, '', 'Y', '2007-11-03 16:08:38'),
(935, 6, 0x5472696e69646164207920546f6261676f, 'Y', '2003-12-15 08:05:43'),
(936, 6, 0x54fa6e657a, 'Y', '2015-06-28 00:45:09'),
(937, 6, 0x54757271756961, 'Y', '2003-12-15 08:05:43'),
(938, 6, 0x5475726b6d656e697374e16e, 'Y', '2015-06-28 00:45:09'),
(939, 6, '', 'Y', '2007-11-03 16:08:38'),
(940, 6, '', 'Y', '2007-11-03 16:08:38'),
(941, 6, 0x556372616e6961, 'Y', '2003-12-15 08:05:43'),
(942, 6, 0x456d697261746f732041726162657320556e69646f73, 'Y', '2003-12-15 08:06:44'),
(943, 6, 0x5265696e6f20556e69646f, 'Y', '2003-12-15 08:06:44'),
(944, 6, 0x45737461646f7320556e69646f73, 'Y', '2003-12-15 08:06:44'),
(945, 6, '', 'Y', '2007-11-03 16:08:38'),
(946, 6, 0x557a62656b697374e16e, 'Y', '2015-06-28 00:46:59'),
(947, 6, '', 'Y', '2007-11-03 16:08:38'),
(948, 6, 0x4369756461642064656c205661746963616e6f202853616e7461205365646529, 'Y', '2003-12-15 08:06:44'),
(949, 6, '', 'Y', '2007-11-03 16:08:38'),
(950, 6, '', 'Y', '2007-11-03 16:08:38'),
(951, 6, '', 'Y', '2007-11-03 16:08:38'),
(952, 6, '', 'Y', '2007-11-03 16:08:38'),
(953, 6, 0x5a696d6261627565, 'Y', '2015-06-28 01:02:08'),
(584, 6, 0x556e20656a656d706c6f2070617261206578706c696361726c6f3a0d0a0d0a54fa20646573656173207265616c697a617220756e2070726f6d6564696f2064652033206d6f766964617320706f722073656d616e612c2079206e6f206465736561732071756520656c207469656d706f206465207061727469646f2065787069726520656e2053e16261646f73207920646f6d696e676f732e0d0a0d0a45736f20736572ed61202837202d2032292064ed6173202a202832346873202d20396873206465207469656d706f206465207265706f736f29202f2033206d6f7669646173203d20323520686f7261732061646963696f6e616c657320706f72206a756761646120656e207469656d706f204669736368657220636f6e20656c2072656c6f6a20646573686162696c697461646f20647572616e7465206c6f732066696e65732064652073656d616e612e, 'Y', '2003-12-15 17:56:48'),
(588, 6, 0x53692076657320717565206c6f732072656c6f6a657320636f6d69656e7a616e20612073616c7461722c206465626572ed617320636f6e7369646572617220746f6d617220756e61207369657374612e20203b2d290d0a0d0a4375616e646f20756e2072656c6f6a206465206a7565676f206d6172636120717565207469656e657320332064ed61732072657374616e7465732c2065736f207369676e69666963613a203c6e6f77723e5469656e65733c2f6e6f77723e203c6e6f77723e33202a202832342d39293c2f6e6f77723e203d203c6e6f77723e343520686f7261733c2f6e6f77723e206465207469656d706f2073696e207265706f736f2e0d0a0d0a4375616e646f20756e2072656c6f6a206465206a7565676f206d6172636120717565207469656e657320322064ed6173207920313420686f7261732072657374616e7465732c2065736f207369676e69666963613a203c6e6f77723e5469656e65733c2f6e6f77723e203c6e6f77723e32202a202832342d3929202b2031343c2f6e6f77723e203d203c6e6f77723e343420686f7261733c2f6e6f77723e206465207469656d706f2073696e207265706f736f2e, 'Y', '2003-12-15 17:56:48'),
(596, 6, 0x50756564657320706f6e657220656e2070617573612074752072656c6f6a206465206a7565676f206d69656e747261732064697366727574617320646520747573207661636163696f6e6573206f20736920756e207669616a652028696e657370657261646f29206465206e65676f63696f7320696e746572666965726520636f6e20747573207061727469646f7320656e20637572736f2e0d0a0d0a506f72206661766f722072657669736120656c203c4120485245463d222f656469745f7661636174696f6e2e706870223e656e6c61636520616365726361206465207661636163696f6e65733c2f613e20656e207475203c4120485245463d222f7374617475732e706870223e70e167696e612064652065737461646f3c2f413e206f20656e2074752070e167696e61206465203c4120485245463d222f75736572696e666f2e706870223e696e666f726d616369f36e206465207573756172696f3c2f613e207061726120636f6d656e7a6172207920616e756e6369617220747573207661636163696f6e65732e, 'Y', '2003-12-15 17:56:48'),
(604, 6, 0x4573746f2065732064656269646f20612071756520447261676f6e2070726f74656765206c612070726976616369646164206465207475206f706f6e656e7465202879206c612074757961292e0d0a0d0a53692064657365617320736162657220616c676f206de173206465206c6f20717565207475206f706f6e656e74652070726f706f7263696f6ef320656e2073752070657266696c206465207573756172696f2c2064656265732070726567756e7461726c652e, 'Y', '2003-12-15 17:56:48');
INSERT INTO `Translations` (`Original_ID`, `Language_ID`, `Text`, `Translated`, `Updated`) VALUES
(606, 6, 0x496e636c75796520656c20746578746f20656e7472652072f374756c6f7320646520266c743b636f6d6d656e742667743b207920266c743b2f636f6d6d656e742667743b202e0d0a0d0a506f7220656a656d706c6f3a20456e20756e6f20646520747573207061727469646f7320656e20637572736f3a0d0a0d0a312e20496e6772657361206c6f207369677569656e746520656e20656c2063616d706f206465206d656e73616a65206465207475202255524c20646520656e76ed6f206465206a7567616461223a0d0a0d0a73f36c6f20756e61207072756562612c20706f72206661766f722069676e6f7261720d0a266c743b636f6d6d656e742667743b0d0a636f6d656e746172696f206465207072756562612c206465626572ed6120617061726563657220656e20656c207367660d0a266c743b2f636f6d6d656e742667743b0d0a636f6d656e746172696f206465207072756562612c206e6f206465626572ed6120617061726563657220656e20656c207367660d0a0d0a322e20456e76ed61207475206a75676164612e0d0a332e2042e16a61746520656c205347462e0d0a342e204162726520656c205347462028636f6e20756e20636c69656e746520646520476f206f20756e20656469746f7220646520746578746f292e0d0a0d0a352e20456c20636f6d656e746172696f206465206c61206a75676164612065733a0d0a266c743b7475207573756172696f20656e20447261676f6e2667743b3a20636f6d656e746172696f206465207072756562612c206465626572ed6120617061726563657220656e20656c207367660d0a0d0a456c20746578746f206e6f726d616c2028656c20746578746f204e4f20696e636c75ed646f20656e7472652072f374756c6f7320646520266c743b636f6d6d656e742667743b207920266c743b2f636f6d6d656e742667743b292073f36c6f2065732076697369626c652070617261206c6f7320646f73206a756761646f72657320696e766f6c75637261646f7320656e206c6120706172746964612e20456c20746578746f206e6f2065732076697369626c652070617261206e61646965206de1732c2079206e6f207365206c6f20696e636c75796520656e20656c205347462e204573746f20657320706172612070726f746567657220747520707269766163696461642e, 'N', '2003-12-15 18:12:58'),
(628, 6, 0x496e64696361206375e16e746173206a756761646173206861207265616c697a61646f2072656369656e74656d656e74652e0d0a0d0a322065737472656c6c6173207665726465733a206d7563686173206a75676164617320286de17320646520373020706f72206d6573290d0a312065737472656c6c61206e6172616e6a613a20616c67756e6173206a756761646173202835202d20373020706f72206d6573290d0a302065737472656c6c61733a206d757920706f636173206a75676164617320286d656e6f73206465203520706f72206d6573290d0a0d0a4c6f7320646574616c6c657320657374e16e206578706c696361646f7320656e203c6120687265663d222f70686f72756d2f726561642e7068703f663d3426693d3134323526743d3134323522207461726765743d225f626c616e6b223e6573746520736974696f3c2f613e2e, 'Y', '2003-12-15 19:34:29'),
(630, 6, 0x4573206c612070726f706f726369f36e20646520766963746f726961732f646572726f7461732064656c206a756761646f722c206c61206375616c2070756564652073756d696e69737472617220616c67756e6120696e666f726d616369f36e2061646963696f6e616c2061636572636120646520737520726174696e672061637475616c2e0d0a0d0a4375616e646f20756e206a756761646f72206861207465726d696e61646f20616c67756e6173207061727469646173206576616c756164617320287261746564292c20756e2076616c6f7220646520616c72656465646f722064656c2035302520696e64696361207175652065732070726f6261626c656d656e746520756e20726174696e672065737461626c656369646f2e20556e2076616c6f72206d61796f7220616c2037352520696e646963612071756520737520726174696e672061637475616c2065732070726f6261626c656d656e74652064656d61736961646f2062616a6f2c206d69656e747261732071756520756e6f206d656e6f7220616c20323525207369676e6966696361207175652065732070726f6261626c656d656e74652064656d61736961646f20616c746f2e0d0a0d0a5065726f20706f72206661766f7220746f6d6120636f6e6369656e63696120646520717565206c6120696e666f726d616369f36e2064656c20706f7263656e74616a652070756564652073657220656e6761f16f73612e20506f7220656a656d706c6f2c20756e207573756172696f207075656465206861626572736520646573656d7065f161646f206269656e20656e206d7563686f73207061727469646f7320656e203978392c207065726f206861626572207065726469646f206c61206d61796f72ed61206465206c6f73207061727469646f7320656e2031397831392e204f207075656465206861626572207465726d696e61646f2073f36c6f20756e6f7320706f636f73207061727469646f7320736572696f7320287261746564292c207065726f206d7563686f73207061727469646f73206578706572696d656e74616c65732028756e7261746564292e, 'Y', '2003-12-15 19:54:47'),
(632, 6, 0x48617a20636c69636b20656e20656c20626f74f36e20646520696e666f726d616369f36e206465203c623e74753c2f623e206f66726563696d69656e746f20646520706172746964612e20416c2066696e616c206465206c612070e167696e61207369677569656e74652068617920756e20626f74f36e207061726120626f727261726c6f2e205369206e696e67fa6e206a756761646f7220616365707461207475206f6665727461206465206a7565676f2064656e74726f20646520756e617320706f6361732073656d616e61732c20657374612065732072656d6f76696461206175746f6de1746963616d656e74652e, 'Y', '2003-12-15 19:54:47'),
(798, 6, 0x436f737461206465204d617266696c, 'Y', '2003-12-15 19:56:37'),
(801, 6, 0x436869707265, 'Y', '2003-12-15 19:56:37'),
(878, 6, 0x4d79616e6d617220284269726d616e696129, 'Y', '2015-06-28 00:42:44'),
(906, 6, 0x53616e20566963656e74652079204c6173204772616e6164696e6173, 'Y', '2003-12-15 19:56:37'),
(925, 6, 0x5377617a696c616e646961, 'Y', '2003-12-15 19:56:37'),
(634, 6, 0x3c693e5061727469646f20706172656a6f20286576656e293c2f693e207369676e696669636120717565206f66726563657320636f6d656e7a617220756e207061727469646f2073696e2070696564726173206465203c6120687265663d222f6661712e7068703f726561643d74266361743d33353723456e7472793937223e68616e64696361703c2f613e2e203c693e4e69676972693c2f693e207369676e69666963612071756520747520636f6c6f722065732073656c656363696f6e61646f20656e20666f726d6120616c6561746f7269612e, 'Y', '2003-12-15 20:39:03'),
(638, 6, 0x5365206c65206f746f72676120612063616461206a756761646f7220756e206ced6d697465206465207469656d706f20696e696369616c2065737065636966696361646f20706f7220656c203c693e7469656d706f207072696e636970616c3c2f693e2e0d0a0d0a536920656c207469656d706f207072696e636970616c2073652068612061676f7461646f2c206c612070617274696461203c623e6e6f3c2f623e20657374e1207465726d696e6164612e204c612070617274696461207061736120656e746f6e6365732061207072f372726f67612028766572206de173206162616a6f292e, 'Y', '2003-12-15 20:39:03'),
(640, 6, 0x456c20447261676f6e20476f2053657276657220284447532920657320756e2070726f796563746f2064652065717569706f206e6f20636f6d65726369616c2079206465206675656e74657320616269657274617320646520792070617261206c612067656e746520717565206c65206775737461206a7567617220616c20476f20706f72207475726e6f732e0d0a0d0a444753206861207369646f2063726561646f20706f72203c6120687265663d222f75736572696e666f2e7068703f7569643d3222207461726765743d225f626c616e6b223e4572696b3c2f613e207920657374e1207369656e646f203c6120687265663d22687474703a2f2f736f75726365666f7267652e6e65742f70726f6a6563742f6d656d6265726c6973742e7068703f67726f75705f69643d323939333322207461726765743d225f626c616e6b223e6d616e74656e69646f3c2f613e20706f72203c6120687265663d222f75736572696e666f2e7068703f7569643d3222207461726765743d225f626c616e6b223e4572696b3c2f613e2079203c6120687265663d222f75736572696e666f2e7068703f7569643d3130353622207461726765743d225f626c616e6b223e526f643c2f613e2e0d0a0d0a456c20464151202870726567756e746173206de173206672656375656e7465732920657374e12062617361646f20656e203c623e74753c2f623e20666565646261636b206465207573756172696f207920657374e1207369656e646f206d616e74656e69646f20706f72203c6120687265663d222f75736572696e666f2e7068703f7569643d3137303022207461726765743d225f626c616e6b223e4672616e6b3c2f613e2079203c6120687265663d222f75736572696e666f2e7068703f7569643d393322207461726765743d225f626c616e6b223e426af8726e3c2f613e2e0d0a0d0a44475320657374e12074726164756369646f206120766172696f73206c656e6775616a65732e204c6f7320747261647563746f726573207265636962656e2073752064656269646f206372e96469746f20612074726176e973206465203c6120687265663d222f70656f706c652e70687022207461726765743d225f626c616e6b223e657374613c2f613e206c697374612e, 'Y', '2003-12-15 20:39:03'),
(644, 6, 0x53ed2c20707565646573207574696c697a61722048544d4c20656e207475207365636369f36e2062696f6772e1666963612c20656e206d656e73616a6573207920656e206c6f7320666f726f732e20536920696e636c757965732072f374756c6f732064652048544d4c20706f72206661766f72207265637565726461206164686572697274652061206c6173207265676c617320792073696e74617869732064652048544d4c2e204d61796f726d656e74652c206573746f2073696e696669636120696e636c7569722072f374756c6f732064652063696572726520646f6e646520636f72726573706f6e64652e204c6f732072f374756c6f732064652048544d4c207065726d697469646f7320736f6e3a0d0a3c756c3e0d0a3c6c693e6c69737461730d0a3c6c693e3c623e6e6567726974613c2f623e0d0a3c6c693e3c693e6974e16c6963613c2f693e0d0a3c6c693e3c753e73756272617961646f3c2f753e0d0a3c6c693e3c666f6e7420636f6c6f723d7265643e6675656e74653c2f666f6e743e0d0a3c6c693e636f726368657465733a20266c743b202667743b0d0a3c6c693e3c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e6574223e656e6c616365733c2f613e0d0a3c6c693e656e6c616365732073696d706c65733a203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e6574223e687474703a2f2f7777772e647261676f6e676f7365727665722e6e65743c2f613e0d0a3c2f756c3e0d0a4c6f732063f36469676f73206e656365736172696f732070617261206861636572207175652065737461206c69737461207365207665612064652065737461206d616e6572613a0d0a266c743b756c2667743b0d0a266c743b6c692667743b6c69737461730d0a266c743b6c692667743b266c743b622667743b6e656772697461266c743b2f622667743b0d0a266c743b6c692667743b266c743b692667743b6974e16c696361266c743b2f692667743b0d0a266c743b6c692667743b266c743b752667743b73756272617961646f266c743b2f752667743b0d0a266c743b6c692667743b266c743b666f6e7420636f6c6f723d7265642667743b6675656e7465266c743b2f666f6e742667743b0d0a266c743b6c692667743b636f726368657465733a2026616d703b6c743b2026616d703b67743b0d0a266c743b6c692667743b266c743b6120687265663d2671756f743b687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742671756f743b2667743b656e6c61636573266c743b2f612667743b0d0a266c743b6c692667743b656e6c616365732073696d706c65733a20266c743b687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742667743b0d0a266c743b2f756c2667743b, 'N', '2003-12-15 23:38:30'),
(662, 6, 0x536920646f73206a756761646f72657320646966696572656e20656e20737520667565727a612c2070756564656e202879206465626572ed616e2920706f6e65727365206465206163756572646f20656e20717565207375207061727469646120636f6d656e7a6172e120636f6e2070696564726173206465202268616e6469636170222061646963696f6e616c6573207061726120656c206a756761646f72206de1732064e962696c2e2045737461732070696564726173206e656772617320636f6d70656e73616e207375206469666572656e63696120656e20686162696c69646164657320646520476f2e20436f6e20706965647261732064652068616e64696361702c206c61207061727469646120736520766f6c766572e1206de17320696e7465726573616e746520792063616461206a756761646f722074656e6472e120696775616c6573206368616e6365732064652067616e61722e0d0a0d0a456e20756e20676f62616e20646520313978313920656c2068616e646963617020657320696775616c2061206c61206469666572656e6369612064652072616e676f20656e74726520616d626f73206a756761646f7265732e2050617261206f74726f732074616d61f16f7320646520676f62616e2c20447261676f6e206c6f20616a75737461206170726f70696164616d656e74652e0d0a0d0a547261646963696f6e616c6d656e74652c206c617320706965647261732064652068616e646963617020736f6e20756269636164617320656e206c6f73203c4120485245463d222f6661712e7068703f726561643d74266361743d3323456e7472793839223e686f7368693c2f413e20656e20756e2070617472f36e2071756520646570656e64652064656c206efa6d65726f20646520706965647261732e2053696e20656d626172676f2c20656e20447261676f6e2c2061204e6567726f207365206c65207065726d697465207562696361722073757320706965647261732064652068616e6469636170206c696272656d656e74652e, 'Y', '2003-12-15 23:51:01'),
(664, 6, 0x3c693e456c2068616e646963617020636f6e76656e63696f6e616c3c2f693e207574696c697a61206c61206469666572656e6369612064652072616e676f20287920656c2074616d61f16f2064656c207461626c65726f29207061726120616a757374617220656c2068616e64696361702e20456c203c6120687265663d222f6661712e7068703f726561643d74266361743d3323456e74727939223e6b6f6d693c2f613e20657320302e352070617261207061727469646173206e6f20706172656a6173207920362e35207061726120706172746964617320706172656a61732e200d0a0d0a3c693e456c2068616e6469636170206170726f706961646f3c2f693e2075736120696e74657276616c6f73206de17320726566696e61646f73206465206b6f6d6920282e2e2e2c20312e352c20322e302c20322e352c202e2e2e29207061726120657175696c6962726172206469666572656e63696173206d696efa7363756c617320646520726174696e672079206f6274656e657220756e61206368616e63652064652035303a3530207061726120616d626f73206a756761646f7265732e, 'Y', '2003-12-16 00:58:01'),
(679, 6, 0x4c61207072696d65726120706172746520646520747520726174696e6720657320656c2072616e676f206465203c6120687265663d222f6661712e7068703f726561643d74266361743d3323456e7472793339223e64616e3c2f613e206f203c6120687265663d222f6661712e7068703f726561643d74266361743d3323456e7472793338223e6b79753c2f613e2061637475616c2e204c6120736567756e64612070617274652028656e74726520636f726368657465732920696e64696361206375e16e20667565727465206f2064e962696c20657320657374652072616e676f2e0d0a0d0a506f7220656a656d706c6f2c202231206b797520282b343025292220657320756e20726174696e67206675657274652064652031206b79752028616c206d656e6f7320737566696369656e74656d656e74652066756572746520636f6d6f20706172612073657220756e20312064616e2064e962696c292e, 'N', '2003-12-16 00:58:01'),
(689, 6, 0x436f6e203c693e646f626c65206a7565676f3c2f693e20636f6d69656e7a6173203c623e646f733c2f623e206e756576617320706172746964617320636f6e74726120656c206d69736d6f206f706f6e656e74652e204a756567617320636f6e20426c616e63617320656e20756e612070617274696461207920636f6e204e656772617320656e206c61206f7472612e204e696e67756e6f206465206573746f73207061727469646f732074656e6472e1203c6120687265663d222f6661712e7068703f726561643d74266361743d33353723456e7472793937223e68616e64696361703c2f613e2e, 'N', '2003-12-16 01:15:01'),
(691, 6, 0x556e61206a7567616461206f66656e736976612c20756e6120616d656e617a612c20616c676f2071756520726571756965726520756e612072657370756573746120696e6d6564696174612e204372656120696e6963696174697661207920636f6e6365646520656c206465726563686f20646520656c656769722064f36e6465206a75676172206c7565676f2e2053656e7465206573206c6f206f70756573746f2061203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f6661712e7068703f726561643d74266361743d3323456e747279313133223e676f74653c2f613e2e20456c206a756761646f722022656e2073656e74652220707565646520656c65676972206a75676172203c6120687265663d222f6661712e7068703f726561643d74266361743d3323456e747279313130223e74656e756b693c2f613e2c20736920636f6e736964657261206573746f20636f6d6f20756e61206d656a6f72206f706369f36e2e204c69746572616c6d656e74652c202273656e746522207369676e696669636120227072696d657261206a7567616461202f206a756761646120646972656363696f6e61646f7261222e, 'N', '2003-12-16 03:52:38'),
(693, 6, 0x556e61206a756761646120646566656e736976612c20756e6120726573707565737461206120756e6120616d656e617a612e20456e7472656761206c6120696e69636961746976612079207065726d69746520616c206f706f6e656e746520656c656769722064f36e6465206a75676172206c7565676f2e20476f7465206573206c6f206f70756573746f2061203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f6661712e7068703f726561643d74266361743d3323456e747279313132223e73656e74653c2f613e3b206c69746572616c6d656e74652c207369676e696669636120226d616e6f2062616a61222e, 'N', '2003-12-16 03:52:38'),
(695, 6, 0x45737461206361726163746572ed7374696361207465207065726d69746520636f6e6669677572617220756e61206c69737461206465206c6173207061727469646173206465203c623e6f74726f733c2f623e206a756761646f7265732e0d0a0d0a50617261206167726567617220756e6120706172746964612061207475206c69737461206465207061727469646173206f6273657276616461732c207072696d65726f20656e6375656e747261206c61207061727469646120656e20637572736f20792068617a20636c69636b20656e20656c20656e6c6163652064652022616772656761722061206c61206c69737461206465206f627365727661646173222e205061726120766572207475206c69737461206465207061727469646173206f6273657276616461732c2068617a20636c69636b20656e207475203c6120687265663d222f7374617475732e706870223e65737461646f3c2f613e207920736967756520656c20656e6c6163652064652022766572207061727469646173206f627365727661646173222e0d0a0d0a4375616e646f20756e612070617274696461206f62736572766164612066696e616c697a612c20447261676f6e20746520656e76ed6120756e206d656e73616a652070617261206e6f7469666963617274652064656c20726573756c7461646f2e, 'N', '2003-12-16 17:23:40'),
(713, 6, 0x4c6f732072616e676f73207920636f6e66696775726163696f6e6573206465207061727469646120696d706c6963616e20717569e96e203c623e70726f6261626c656d656e74653c2f623e20766120612067616e617220756e6120706172746964612e20506f7220656a656d706c6f2c206a756761646f7265732064656c206d69736d6f2072616e676f207469656e656e20696775616c6573206368616e6365732064652067616e61722e205065726f20756e206a756761646f722032302d6b79752070726f6261626c656d656e74652067616e6172e12073f36c6f20756e6f7320706f636f73207061727469646f732073696e2068616e646963617020636f6e747261206f706f6e656e746573206de17320667565727465732e0d0a0d0a456c20616c676f7269746d6f20646520726174696e6720646520447261676f6e20636f6d7061726120656c20726573756c7461646f207265616c206465206c61207061727469646120636f6e20656c20726573756c7461646f2070726f6261626c652e205369206c6f732072616e676f73206465206c6f73206a756761646f7265732079206c6120636f6e6669677572616369f36e206465206c61207061727469646120737567696572656e20756e20726573756c7461646f2073696d696c617220616c20766967656e74652c20656e746f6e63657320e97374652074656e6472e120706f636f2065666563746f20656e206c6f7320726174696e67732e205065726f207369206c6120706172746964612065732067616e6164612022636f6e747261206c61732070726f626162696c696461646573222c20656c20726573756c7461646f20656a6572636520756e206772616e2065666563746f20656e206c6f7320726174696e677320646520616d626f73206a756761646f7265732e, 'N', '2003-12-16 17:23:40'),
(749, 6, 0x457374e17320696e76697461646f2061206f7267616e697a617220756e20746f726e656f2e205061726120616e756e63696f7320646520746f726e656f2c20706f72206661766f72207574696c697a6120286f206d6972612920656c203c6120687265663d222f70686f72756d2f6c6973742e7068703f663d34223e666f726f2064652064697363757369f36e20646520447261676f6e3c2f613e2e20447261676f6e20746520617975646172e120612070726f6d6f7665726c6f206167726567616e646f20656e6c616365732072656c6576616e74657320616c20464151202870726567756e746173206de173206672656375656e746573292e, 'Y', '2003-12-16 17:23:40'),
(752, 6, 0x4c7565676f2064652071756520616d626f73206a756761646f7265732068616e2070617361646f2c206c61732070696564726173206d75657274617320646562656e207365722072656d6f7669646173206d616e75616c6d656e74652e2048616369656e646f20636c69636b20736f62726520756e61207069656472612063616d626961732073752065737461646f20656e74726520766976612079206d75657274612e205065717565f16f7320637561647261646f73206e6567726f73207920626c616e636f732076697375616c697a616e20717569e96e20706f736565207175e9207465727269746f72696f2e0d0a0d0a416d626f73206a756761646f72657320646562656e2061636f72646172206375e16c6573207069656472617320657374616e206d756572746173207920717569e96e20706f736565207175e9207465727269746f72696f2e205061726120706f6e65727365206465206163756572646f2c20706f72206661766f722068617a20636c69636b20656e20656c20656e6c61636520646520226c6973746f2220646562616a6f2064656c207461626c65726f2e0d0a0d0a536920756e206a756761646f72206e6f20657374e1206465206163756572646f2c20e9737465207075656465207574696c697a617220656c20656e6c61636520646520227265616e75646172206c612070617274696461222070617261206465636964697220736f62726520756e6120706f73696369f36e20656e2064756461206a7567616e646f20756e617320706f636173206d616e6f73206de1732e20556e6120616c7465726e617469766120657320706c616e746561726c6f20656e7669616e646f20756e206d656e73616a652061207475206f706f6e656e7465206f20616c203c6120687265663d222f70686f72756d2f6c6973742e7068703f663d35223e666f726f2064652064697363757369f36e20646520476f3c2f613e2e, 'Y', '2003-12-16 17:23:40'),
(754, 6, 0x4c6f73206375616472616469746f7320726f6a6f7320696e646963616e2071756520447261676f6e206e6f20707565646520646563696469722073692065736120696e7465727365636369f36e206573207465727269746f72696f20626c616e636f206f206e6567726f2e204c617320706f7369626c65732072617a6f6e657320736f6e3a0d0a3c756c3e0d0a3c6c693e546f646176ed6120686179207069656472617320666f72e16e6561732064656e74726f20646520756e207465727269746f72696f20717565206e6f2068616e207369646f206d6172636164617320636f6d6f20226d756572746173222e3c2f6c693e0d0a0d0a3c6c693e4c6f7320626f726465732064656c207465727269746f72696f20646520626c616e636f206f206e6567726f206e6f2068616e207369646f206365727261646f732e2050617261206a756761646f7265732068756d616e6f73206573746f206573206f6276696f2c207065726f207061726120447261676f6e20657320646966ed63696c2064656369646972206120717569e96e206c652070657274656e656365207175e9207465727269746f72696f2e20506f72206661766f722068617a20636c69636b20656e20656c20656e6c61636520646520227265616e75646172206c6120706172746964612220646562616a6f2064656c207461626c65726f2079207265616c697a6120756e61206a75676164612070617261206365727261722065736520626f7264652e3c2f6c693e0d0a0d0a3c6c693e457320756e6120706f73696369f36e20656e203c6120687265663d222f6661712e7068703f726561643d74266361743d3323456e747279313031223e73656b693c2f613e2e20506f72206661766f722068617920636c69636b20656e2065736520637561647261646f20726f6a6f20792063e16d6269616c6f206120756e203c6120687265663d222f6661712e7068703f726561643d74266361743d3323456e747279313135223e64616d653c2f613e20656e2073656b69206d6f6b752e20447261676f6e20656e746f6e636573206c6f2076697375616c697a6172e120636f6e20756e20637561647261646f2076657264652e2045737461206361726163746572ed73746963612074652061797564612061207265736f6c76657220756e2073656b69206475646f736f207061726120636f72726567697220656c20726573756c7461646f20646520756e6120706172746964612e204c6f7320646574616c6c657320657374e16e206578706c696361646f7320656e203c6120687265663d222f70686f72756d2f726561642e7068703f663d3226693d38343326743d383433223ee9737465206d656e73616a653c2f613e2e3c2f6c693e0d0a3c2f756c3e, 'N', '2003-12-16 17:50:15'),
(963, 6, 0x5175e9207369676e696669636120756e20666f6e646f20726f6a6f20656e206c612073616c61206465206573706572613f, 'Y', '2003-12-16 17:50:15'),
(964, 6, 0x456c20666f6e646f20726f6a6f20636c61726f20656e206c6120636f6c756d6e61206465202272616e676f20646520726174696e6722207369676e69666963612071756520747520726174696e672061637475616c206e6f20736520656e6375656e7472612064656e74726f2064656c2072616e676f2072657175657269646f2e204e6f20707565646573206163657074617220657365206f66726563696d69656e746f206465207061727469646120656e20706172746963756c61722e, 'N', '2003-12-16 17:50:15'),
(968, 6, 0x506f72206661766f72206c65652073752070657266696c206465207573756172696f207920656e76ed616c657320756e206d656e73616a652e2044652065737461206d616e6572612072656369626972e173206c6120636f6e7472617365f1613c756c3e0d0a0d0a3c6c693e736920747520726174696e672061637475616c20736520656e6375656e7472612063657263612064656c20726174696e67206465206c61206375656e74612070fa626c6963612c0d0a3c6c693e736920796120686173207465726d696e61646f20636f6e20616c67756e6173207061727469646173206576616c756164617320287261746564292c0d0a3c6c693e7369206163657074617320792072657370657461732073752065746971756574612028636f6d6f206c6f206d656e63696f6e6120656e2073752070657266696c206465207573756172696f292c0d0a3c6c693e73692070726f6d656e746573206e6f20616275736172206465206c61206375656e74612e3c2f756c3e, 'N', '2003-12-16 17:50:15'),
(972, 6, 0x4578697374656e206375656e7461732064652065717569706f7320656e206c6f73206e6976656c6573206465203c6120687265663d222f75736572696e666f2e7068703f7569643d3433373022207461726765743d225f626c616e6b223e316b3c2f613e2c203c6120687265663d222f75736572696e666f2e7068703f7569643d3436373122207461726765743d225f626c616e6b223e346b3c2f613e2c203c6120687265663d222f75736572696e666f2e7068703f7569643d3431343822207461726765743d225f626c616e6b223e376b3c2f613e2c203c6120687265663d222f75736572696e666f2e7068703f7569643d3432383322207461726765743d225f626c616e6b223e31316b3c2f613e2c203c6120687265663d222f75736572696e666f2e7068703f7569643d3433343022207461726765743d225f626c616e6b223e31346b3c2f613e2c203c6120687265663d222f75736572696e666f2e7068703f7569643d3338363422207461726765743d225f626c616e6b223e31366b3c2f613e2c203c6120687265663d222f75736572696e666f2e7068703f7569643d3339373422207461726765743d225f626c616e6b223e31396b3c2f613e2c203c6120687265663d222f75736572696e666f2e7068703f7569643d3431353322207461726765743d225f626c616e6b223e32326b3c2f613e2c2079203c6120687265663d222f75736572696e666f2e7068703f7569643d3435323422207461726765743d225f626c616e6b223e32366b3c2f613e2e, 'N', '2003-12-16 17:50:15'),
(974, 6, 0x50756564657320637265617220756e20616c6961732064656c203c6120687265663d222f7374617475732e70687022207461726765743d225f626c616e6b223e2f7374617475732e7068703c2f613e20646520447261676f6e20636f6e203c753e2f6c6f67696e2e7068703f7573657269643d3c623e6e6f6d627265206465207573756172696f3c2f623e267061737377643d3c623e636f6e7472617365f1613c2f623e3c2f753e2e0d0a0d0a0d0a5065726f20706f72206661766f722074656e2070726573656e74652071756520616c6d6163656e617220756e6120636f6e7472617365f16120656e20746578746f20706c616e6f20747261652061706172656a61646f20756e2072696573676f206465207365677572696461642e20506f72206661766f72206e6f20636f6c6f71756573206f206469737472696275796173206573746520616c6961732064652055524c20656e2074752070e167696e6120706572736f6e616c2c20636f6d6f20756e206d61726361646f722064652055524c2028626f6f6b6d61726b2920656e20756e6120636f6d70757461646f72612070fa626c6963612c206574632e, 'Y', '2003-12-16 17:50:15'),
(976, 6, 0x3c693e4e6f2068617920756e612072657370756573746120656c61626f72616461206465204641512061fa6e202d64697363756c70612d2c2073696e20656d626172676f20617175ed20766120756e20626f727261646f723a3c2f693e0d0a0d0a436f6ee9637461746520612074726176e973206465206c61203c6120687265663d222f22207461726765743d225f626c616e6b223e70e167696e61207072696e636970616c20646520447261676f6e3c2f613e3b20756e6120636f6f6b696520657320656e746f6e63657320616c6d6163656e616461206c6f63616c6d656e746520656e20747520636f6d70757461646f726120287065726f206578706972612061206c6f732033302064ed6173293b206775617264612074752064697265636369f36e20646520656d61696c2070617261207265636962697220756e6120636f6e7472617365f161206f6c7669646164613b206372656120756e206d61726361646f722028626f6f6b6d61726b292064656c207374617475732e7068703b207920726573706563746f2061206c61207365677572696461643a20656c20656e6c61636520646520226c6f676f75742220626f7272612065736120636f6f6b69652e, 'Y', '2003-12-16 17:50:15'),
(982, 6, 0x4c6f73206a756761646f7265732070756564656e20636f6d756e69636172736520656e74726520656c6c6f7320646520766172696173206d616e657261732c20706f7220656a656d706c6f0d0a3c756c3e200d0a3c6c693e656e7669616e646f20756e206d656e73616a65207072697661646f206120756e207573756172696f20656e20706172746963756c61722c3c2f6c693e0d0a3c6c693e7075626c6963616e646f20616c676f20656e206c6f73203c6120687265663d222f70686f72756d2f22207461726765743d225f626c616e6b223e666f726f733c2f613e20646520447261676f6e2070617261206469726967697273652061206d7563686f73207573756172696f732c3c2f6c693e0d0a3c6c693e6167726567616e646f2028766172696f73207469706f732064652920636f6d656e746172696f73206120706172746964617320656e20637572736f2e3c2f6c693e0d0a3c2f756c3e, 'N', '2003-12-16 17:53:14'),
(984, 6, 0x4c6173206361727065746173206465206d656e73616a6573207465207065726d6974656e206f7267616e697a6172206c6f73206d656e73616a6573206465206163756572646f206120747573206e656365736964616465732e20507565646573206d6f766572206c6f73206d656e73616a657320656e747265206c61732064697374696e74617320636172706574617320636f6d6f206465736565732e0d0a0d0a447261676f6e2070726f706f7263696f6e61206573746173206361727065746173206465206d656e73616a6520706f72206465666563746f3a203c756c3e0d0a3c6c693e3c623e546f646f73206c6f7320726563696269646f733c2f623e3a204c6973746120646520746f646f73206c6f73206d656e73616a657320726563696269646f732e0d0a3c6c693e3c623e5072696e636970616c3c2f623e3a204c69737461206465206c6f73206d656e73616a657320726563696269646f73206c65ed646f732e0d0a3c6c693e3c623e4e7565766f733c2f623e3a204c69737461206465206c6f73206d656e73616a657320726563696269646f73206e6f206c65ed646f732e0d0a3c6c693e3c623e526573706f6e646572213c2f623e3a204c69737461206465206d656e73616a6573207175652072657175696572656e20756e61207265737075657374612e0d0a3c6c693e3c623e546163686f206465206261737572613c2f623e3a204c69737461206465206d656e73616a6573206d61726361646f73207061726120656c696d696e617273652e0d0a3c6c693e3c623e456e766961646f733c2f623e3a204c69737461206465206d656e73616a6573207175652068617320656e766961646f2e0d0a3c2f756c3e0d0a0d0a507565646573206372656172206361727065746173206465206d656e73616a65732061646963696f6e616c657320612074726176e9732064656c20656e6c61636520226564697461722063617270657461732220616c2066696e616c206465206c612070e167696e61206465203c6120687265663d222f6c6973745f6d657373616765732e70687022207461726765743d225f626c616e6b223e6d656e73616a65733c2f613e2e, 'Y', '2003-12-16 20:53:07'),
(988, 6, 0x4375616e646f2072656769737472617320756e61206e75657661206375656e74612c20447261676f6e2028444753292074652070726567756e7461207369207961207469656e657320756e2072616e6b20646520476f20646520616c67756e61206f7472612070617274652028706f7220656a656d706c6f2c206465206f74726f207365727669646f7220646520476f2c20646520747520636c756220646520476f206c6f63616c206f206c612041736f6369616369f36e20646520476f206465207475207061ed73292e2053696d706c656d656e74652070726f706f7263696f6e612065736f2c207920444753206c6f207472616475636972e1206120756e2072616e6b20696e696369616c20646520444753206170726f706961646f2e, 'N', '2003-12-16 20:53:07'),
(990, 6, 0x4e6f20696d706f7274612064656d61736961646f2e20447261676f6e206c6f20616a7573746172e12070726f6e746f202d20626173e16e646f736520656e206c6f7320726573756c7461646f7320646520747573207061727469646173206576616c75616461732028726174656429207465726d696e616461732e204465737075e97320646520616c72656465646f722064652063696e636f207061727469646173206c6c65676172e17320612074752072616e6b20227265616c222e0d0a0d0a53696e20656d626172676f2c207369203c693e696e74656e63696f6e616c6d656e74653c2f693e20636f6d69656e7a617320636f6e20756e2072616e6b20696e696369616c20657272f36e656f2069727269746172e173206120617175656c6c6f73206f706f6e656e7465732079207573756172696f7320636f6e206c6f73207175652064657365617320766f6c7665722061206a75676172206de1732074617264652e2e2e0d0a0d0a447261676f6e2070726f706f7263696f6e612072616e6b7320fa74696c65732c207065726f20646570656e646520646520747520636f6f706572616369f36e2074616d6269e96e3a20506f72206661766f722c206e6f20636f6e6669677572657320656c2072616e6b20696e696369616c206465207475206e75657661206375656e746120656e20447261676f6e20636f6e20756e2076616c6f72206d757920616c656a61646f2064652074757320636f6e6f63696d69656e746f73207920686162696c69646164657320646520476f207265616c65732e204772616369617321, 'N', '2003-12-16 21:20:15'),
(991, 6, 0x4e6f206465637265636520656c2072656c6f6a206465206d69206f706f6e656e7465206375616e646f206d692072656c6f6a20657374e120656e2070617573613f, 'Y', '2003-12-16 21:20:15'),
(992, 6, 0x5369206573207475207475726e6f20646520656e76696172206c61207072f378696d61206a75676164613a204e6f2e0d0a0d0a536920657320656c207475726e6f206465207475206f706f6e656e74653a2053ed2c207375706f6e69656e646f20717565206e6f20736520656e6375656e74726120656e207469656d706f206465207265706f736f2c206e6f2065732066696e2064652073656d616e612028656e20756e61207061727469646120636f6e20656c2072656c6f6a20646573686162696c697461646f20706172612066696e65732064652073656d616e612920792071756520207475206f706f6e656e7465206e6f20686120616e756e636961646f206573746172206465207661636163696f6e65732e, 'Y', '2003-12-16 21:20:15'),
(995, 4, 0x576173206973742064696520576f6368656e656e647375687220766f6e20447261676f6e3f, 'Y', '2007-12-06 23:52:48'),
(996, 4, 0x57656e6e205369652065696e20537069656c20616e62696574656e2c206769627420657320646965204df6676c6963686b6569742c206461737320646965205568722073616d737461677320756e6420736f6e6e74616773203c623e6e696368743c2f623e206ce47566742e, 'N', '2004-06-14 18:09:33'),
(982, 4, 0x537069656c6572206bf66e6e656e2061756620766572736368696564656e65205765697365206d697465696e616e646572206b6f6d6d756e697a696572656e2c207a756d20426569737069656c206475726368202e2e2e0d0a3c756c3e0d0a3c6c693e6461732056657273656e64656e207072697661746572204e6163687269636874656e20616e2065696e7a656c6e652042656e75747a65723c2f6c693e0d0a3c6c693e6461732053636872656962656e20696e20447261676f6e73203c6120687265663d222f666f72756d2f22207461726765743d225f626c616e6b223e466f72656e3c2f613e2c20756d207669656c652042656e75747a6572207a752065727265696368656e3c2f6c693e0d0a3c6c693e646173204162676562656e20766f6e203c686f6d65206661712e7068703f726561643d74266361743d33363523456e74727937353e4b6f6d6d656e746172656e3c2f686f6d653e20696e206c617566656e64656e20537069656c656e3c2f6c693e0d0a3c2f756c3e0d0a0d0a3c623e426974746520626561636874656e205369653a3c2f623e4b65696e6520646572204e6163687269636874656e207769726420766f6d205365727665722067656cf6736368743b207369652077657264656e206e757220766f6e204968726572204c697374652067656e6f6d6d656e2c206162657220766572626c656962656e20696e2064657220446174656e62616e6b2e, 'N', '2009-07-04 09:57:35'),
(307, 17, 0x4c6973746120776961646f6d6fb66369, 'Y', '2003-12-23 14:42:13'),
(323, 17, 0x5461206f6665727461207a6f737461b361206f64727a75636f6e61206c756220677261207a6f737461b36120736b61736f77616e61, 'Y', '2003-12-23 14:42:13'),
(999, 4, 0x4d616368742065732065696e656e20556e7465727363686965642c206f622065696e6520506172746965206d697420302c352050756e6b74656e2c203130302050756e6b74656e2c2064757263682041756667616265206f646572206475726368205a65697461626c617566207665726c6f72656e20776972643f, 'Y', '2007-12-06 23:52:48'),
(1000, 4, 0x46fc7220447261676f6e7320426577657274756e677373797374656d206d61636874206573206b65696e656e20556e7465727363686965642e2045696e65206765776f6e6e656e6520506172746965206973742065696e666163682065696e65206765776f6e6e656e6520506172746965202d2d20756e64206a656465207665726c6f72656e6520506172746965206973742065696e666163682065696e65207665726c6f72656e65205061727469652e, 'Y', '2007-12-06 23:52:48'),
(999, 6, 0x496d706f7274612073692067616e6f20706f7220302e352070756e746f732c203130302070756e746f732c206162616e646f6e6f206f2066616c7461206465207469656d706f3f, 'Y', '2003-12-29 05:10:19'),
(1000, 6, 0x456e2074e9726d696e6f7320646520726174696e677320646520447261676f6e2c2061637475616c6d656e7465206e6f20696d706f7274612e20556e6120706172746964612067616e6164612065732073696d706c656d656e746520756e6120706172746964612067616e6164612c207920756e61207061727469646120706572646964612065732073696d706c656d656e746520756e61207061727469646120706572646964612e, 'Y', '2003-12-29 05:10:19'),
(999, 5, 0x4573742d636520717565207065726472652070617220312f3220706f696e742c207061722031303020706f696e74732c20706172206162616e646f6e206f75207061722064e970617373656d656e742064652074656d70732061206465206c27696d706f7274616e6365266e6273703b3f, 'Y', '2003-12-30 01:27:20'),
(1000, 5, 0x4c6573206e697665617578206e6520736f6e742070617320696e666c75656e63e97320706172206c61206661e76f6e206465206761676e6572206f752064652070657264726520756e65207061727469652e205365756c206c65206661697420717527656c6c65203c623e736f69743c2f623e20706572647565206f75206761676ee96520657374207072697320656e20636f6d7074652e, 'Y', '2003-12-30 01:40:14'),
(55, 7, 0x4e657a6ee16dfd2074797020fa726f766eec, 'Y', '2004-01-02 10:03:44'),
(411, 17, '', 'Y', '2010-12-26 18:49:10'),
(256, 17, 0x506f64737461776f776520496e666f726d61636a65, 'Y', '2004-01-06 22:09:24'),
(267, 17, '', 'Y', '2010-12-26 18:49:10'),
(274, 17, 0x5770726f7761647a656e696520496e746572616b7479776e65, 'Y', '2004-01-06 22:09:24'),
(275, 17, 0x426172647a6f2070727a796a656d6e61207374726f6e6120646f206e61756b692e, 'Y', '2004-01-06 22:09:24'),
(276, 17, 0x426172647a6f20646f62727a65206e61706973616e65207770726f7761647a656e6965206175746f72737477612042727974796a736b6965676f2053746f7761727a79737a656e696120476f, 'Y', '2004-01-06 22:09:24'),
(291, 17, 0x486973746f726961, 'Y', '2004-01-06 22:09:24'),
(292, 17, 0x536b72f3636f6e6120686973746f726961, 'Y', '2004-01-06 22:09:24'),
(296, 17, 0x4b7369b1bf6b692c207779706f7361bf656e696520692070726f6772616d7920646f20476f, 'Y', '2004-01-06 22:14:13'),
(299, 17, 0x536b6c65702077204575726f706965, 'Y', '2004-01-06 22:14:13'),
(300, 17, 0x496e6e65207365727765727920476f, 'Y', '2004-01-06 22:14:13'),
(303, 17, 0x4475bf792073657277657220646f20677279207720476f, 'Y', '2004-01-06 22:14:13'),
(248, 18, 0x496e74726f64757a696f6e65, 'Y', '2004-01-11 15:19:03'),
(344, 18, 0x52656769737472617a696f6e65, 'Y', '2006-05-25 20:42:46'),
(109, 18, 0x4c61207061727469746120e82073746174612061676769756e7461, 'Y', '2006-08-15 14:41:31'),
(229, 18, 0x50756e74656767696f, 'Y', '2004-01-11 15:19:03'),
(230, 18, 0x50617274697461, 'Y', '2004-01-11 15:19:03'),
(231, 18, 0x5061737361, 'Y', '2004-01-11 15:19:03'),
(232, 18, 0x456c696d696e612070617274697461, 'Y', '2010-12-02 16:10:31'),
(233, 18, 0x466174746f, 'Y', '2004-01-11 15:19:03'),
(235, 18, 0x417272656e64697469, 'Y', '2004-01-11 15:19:03'),
(236, 18, 0x5363617269636120736766, 'Y', '2004-01-11 15:19:03'),
(237, 18, 0x506173736120616c6c612070726f7373696d612070617274697461, 'Y', '2004-01-11 15:19:03'),
(238, 18, 0x456c696d696e612064616c6c27656c656e636f2070617274697465206f7373657276617465, 'Y', '2004-01-11 15:19:03'),
(239, 18, 0x41676769756e676920616c6c27656c656e636f2070617274697465206f7373657276617465, 'Y', '2004-01-11 15:19:03'),
(253, 18, 0x506172746974612063616e63656c6c61746121, 'Y', '2004-01-11 15:19:03'),
(308, 18, 0x41, 'Y', '2004-01-11 15:19:03'),
(324, 18, 0x526973706f6e6469, 'Y', '2004-01-11 15:19:03'),
(325, 18, 0x4d657373616767696f, 'Y', '2004-01-11 15:19:03'),
(342, 18, 0x4772616669636f2064656c206c6976656c6c6f206469, 'Y', '2006-05-25 20:53:34'),
(343, 18, 0x5370696163656e74692c2074726f70706520706f636865207061727469746520756666696369616c69207065722064697365676e61726520756e206772616669636f, 'Y', '2004-01-11 15:19:03'),
(348, 18, 0x506172746974652066696e697465, 'Y', '2004-01-11 15:19:03'),
(349, 18, 0x5061727469746520696e20636f72736f, 'Y', '2004-01-11 15:19:03'),
(350, 18, 0x506172746974652066696e697465206469202573, 'Y', '2004-01-11 15:19:03'),
(351, 18, 0x5061727469746520696e20636f72736f206469202573, 'Y', '2004-01-11 15:19:03'),
(366, 18, 0x556666696369616c65, 'Y', '2004-01-11 15:19:03'),
(240, 17, 0x506f637ab174656b, 'Y', '2004-01-11 22:44:43'),
(328, 17, 0x446f202869642075bf79746b6f776e696b6129, 'Y', '2004-01-11 22:44:43'),
(213, 17, 0x4261727761206465736b69, 'Y', '2004-01-11 22:44:43'),
(464, 17, 0x6e6f727765736b69, 'Y', '2013-08-20 21:59:50'),
(473, 17, 0x6475f1736b69, 'Y', '2013-08-20 22:01:19'),
(260, 17, 0x464151206f20476f206e6120677275706965206479736b7573796a6e656a207265632e67616d65732e676f, 'Y', '2004-01-11 22:44:43'),
(305, 17, 0x4c6973746120736572776572f377, 'Y', '2004-01-11 22:44:43'),
(306, 17, 0x426172647a69656a206b6f6d706c65746e61206c6973746120736572776572f377, 'Y', '2004-01-11 22:44:43'),
(1001, 5, 0x436f6d6d656e7420447261676f6e2064e9636f6d707465206c652074656d7073266e6273703b3f, 'Y', '2004-01-16 01:30:17'),
(1002, 5, 0x41766563206e6f747265207365727665757220c2ab266e6273703b746f7572266e6273703b706172266e6273703b746f7572266e6273703bc2bb2c206c657320686f726c6f6765732073657276656e7420642761626f726420c32020c3a97669746572206c657320706172746965732073616e732066696e20286fc3b920756e20646573206a6f756575727320726566757365206465206a6f75657220706f7572206e652070617320706572647265292e0d0a0d0a4c657320686f726c6f67657320646573207061727469657320736f6e74206d6973657320c320206a6f757220746f75746573206c65732035206d696e75746573206d616973206c27756e6974c3a92064652074656d7073203c693e616666696368c3a9653c2f693e20657374206c2768657572652e0d0a417474656e74696f6e3a2063656369207369676e69666965207175652c207175616e6420766f74726520686f726c6f6765206e276166666963686520706c757320717527756e65206865757265206465206a65752c20696c206e6520766f757320726573746520706575742dc3aa74726520717527756e65207365636f6e6465206176616e7420717565206c652064c3a9636f6d707465206e6520706173736520c320207ac3a9726f2065742071756520766f7573206e65207065726469657a206c61207061727469652061752074656d70732e0d0a0d0a4c657320686f726c6f6765732064c3a96d617272656e742064c3a87320717565206c61207061727469652065737420616363657074c3a965206574207327617272c3aa74656e74207175616e64206c652073636f7265206120c3a974c3a920617070726f7576c3a92e0d0a417474656e74696f6e3a2063656369207369676e696669652071756520766f757320706f7576657a203c623e656e636f7265207065726472652061752074656d70733c2f623e2070656e64616e74206c657320c3a9746170657320c2ab266e6273703b7061737365266e6273703bc2bb2065742020c2ab266e6273703b73636f7265266e6273703bc2bb206465206c612066696e206465207061727469652e, 'Y', '2007-07-03 18:17:59'),
(997, 14, 0x70756f6c61, 'Y', '2004-01-19 11:58:02'),
(998, 14, 0x6974616c6961, 'Y', '2004-01-19 11:58:02'),
(971, 14, 0x4d6974e4206a6f756b6b75656be4797474e46a69e4206f6e206f6c656d617373613f, 'N', '2004-01-19 11:58:02'),
(995, 14, 0x4d6974e4207461726b6f6974746161207669696b6f6e6c6f7070756b656c6c6f3f, 'Y', '2004-01-19 11:58:02'),
(996, 14, 0x4b756e20706572757374617420757564656e2070656c696e2c20766f69742076616c6974612c206b756c757661746b6f2070656c696b656c6c6f74206c6175616e74616973696e206a612073756e6e756e74616973696e2e, 'N', '2004-01-19 11:58:02'),
(999, 14, 0x4f6e6b6f2076e46c69e42c20766f6974616e6b6f2070756f6c656c6c61207069737465656c6ce42c20736164616c6c61207069737465656c6ce42c20766173746170656c61616a616e206c756f767574756b7365656e2074616920616a616e206c6f7070756d697365656e3f, 'Y', '2004-01-19 11:58:02'),
(1000, 14, 0x4c756f6b6974757374656e206b616e6e616c74612073696c6ce4206569206f6c65206d65726b6974797374e42e20566f6974657474752070656c69206f6e20766f6974657474752070656c692c206f6c692070697374652d65726f206d696be420746168616e73612e, 'Y', '2004-01-19 11:58:02'),
(1001, 14, 0x4b75696e6b6120447261676f6e206c61736b65652061696b61613f, 'Y', '2004-01-19 11:58:31'),
(1002, 14, 0x5069656e696e203c693e6ee47974657474793c2f693e20616a616e20796b73696b6bf6206f6e2074756e74692e203c693e536973e46973657374693c2f693e206b656c6c6f74206be47976e4742076696964656e206d696e757574696e207461726b6b757564656c6c612e, 'Y', '2004-01-19 11:58:31'),
(229, 16, 0xd1f7e5f2, 'Y', '2004-01-19 12:53:10'),
(230, 16, 0xc8e3f0e0, 'Y', '2004-01-19 12:53:10'),
(231, 16, 0xcfe0f1, 'Y', '2004-01-19 12:53:10'),
(406, 16, 0xcee1fbf7ede0ff2c436f6e76656e74696f6e616c, 'Y', '2004-01-23 14:37:02'),
(407, 16, 0xd3f2eef7ede5edede0ff2c50726f706572, 'Y', '2004-01-23 14:37:02'),
(408, 16, 0xcde8e3e8f0e820e220f0e0e2edeee920e8e3f0e5, 'Y', '2004-01-19 12:53:10'),
(411, 16, 0xd3f1ebeee2e8ff, 'Y', '2004-01-23 12:02:26'),
(412, 16, 0xcff0e8ece5f7e0ede8e5, 'Y', '2004-01-19 12:53:10'),
(414, 16, 0xcbe8ece8f220e2f0e5ece5ede8, 'Y', '2004-01-19 12:53:10'),
(419, 16, 0xf2eeebfceaee202573, 'Y', '2004-01-19 12:53:10'),
(420, 16, 0xd7e8f1ebee20e4eee1e0e2ebffe5ecfbf520e8e3f0, 'Y', '2004-01-19 12:53:10'),
(421, 16, 0xe4e0ed, 'Y', '2004-01-19 12:53:10'),
(422, 16, 0xeafe, 'Y', '2004-01-19 12:53:10'),
(423, 16, 0xcfe0f0f2ede5f020f2eeebfceaee20f120f0e5e9f2e8ede3eeec, 'Y', '2004-01-19 12:53:10'),
(424, 16, 0xc5f1ebe820e4e02c20f0e5e9f2e8ede320ece5e6e4f3, 'Y', '2004-01-19 12:53:10'),
(425, 16, 0xc4eee1e0e2e8f2fc20e8e3f0f3, 'Y', '2004-01-19 12:53:10'),
(426, 16, 0xc8e3f0eeea, 'Y', '2004-01-19 12:53:10'),
(427, 16, 0xd7e8f1ebee20e8e3f0, 'Y', '2004-01-19 12:53:10'),
(429, 16, 0xd3e4e0ebe8f2fc, 'Y', '2004-01-19 12:53:10'),
(430, 16, 0xcff0e8f1eee5e4e8ede8f2fcf1ff, 'Y', '2004-01-19 12:53:10'),
(437, 16, 0xcef1edeee2edeee520e2f0e5ecff, 'Y', '2004-01-19 12:53:10'),
(454, 16, 0xcfeee6e0ebf3e9f1f2e02c20f0e0f1f1f2e0e2fcf2e520c2e0f8e820f4eef0eee2fbe520eae0ecede821, 'Y', '2004-01-19 12:53:10'),
(455, 16, 0x4f4b2e20cfe5f0e5e9f2e820ea20e4f0f3e3eee920efe0f0f2e8e8, 'Y', '2004-01-20 13:59:24'),
(456, 16, 0x4f4b2e20cfe5f0e5e9f2e820ea20eeeaedf320f1f2e0f2f3f1e0, 'Y', '2004-01-20 13:59:24'),
(457, 16, 0xcef2ece5ede8f2fc20f5eee4, 'Y', '2004-01-20 13:54:19'),
(458, 16, 0xcfebe5ededfbe5, 'Y', '2004-01-19 12:53:10'),
(484, 16, 0xdfede2, 'Y', '2004-01-19 12:53:10'),
(485, 16, 0xd4e5e2, 'Y', '2004-01-19 12:53:10'),
(486, 16, 0xc0eff0, 'Y', '2004-01-19 12:53:10'),
(487, 16, 0xcce0e9, 'Y', '2004-01-19 12:53:10'),
(488, 16, 0xc8feed, 'Y', '2004-01-19 12:53:10'),
(489, 16, 0xc0e2e3, 'Y', '2004-01-19 12:53:10'),
(490, 16, 0xd1e5ed, 'Y', '2004-01-19 12:53:10'),
(491, 16, 0xceeaf2, 'Y', '2004-01-19 12:53:10'),
(492, 16, 0xc4e5ea, 'Y', '2004-01-19 12:53:10'),
(4508, 7, 0x5a64726f6a, 'Y', '2016-07-20 16:22:45'),
(495, 16, 0xccf0f2, 'Y', '2004-01-19 12:53:10'),
(496, 16, 0xc8feeb, 'Y', '2004-01-19 12:53:10'),
(497, 16, 0xcdeeff, 'Y', '2004-01-19 12:53:10'),
(498, 16, 0xcef2202332, 'Y', '2004-01-19 12:53:10'),
(499, 16, 0xc4ee202332, 'Y', '2004-01-19 12:53:10'),
(618, 16, 0xcde0f72ef0e5e9f2e8ede3, 'Y', '2004-01-27 17:09:09'),
(619, 16, 0xcaeeed2ef0e5e9f2e8ede3, 'Y', '2004-01-27 17:09:09'),
(620, 16, 0xc8e7ece5ede5ede8e5, 'Y', '2004-01-27 17:11:21'),
(307, 16, 0xd1efe8f1eeea20f1eeeee1f9e5ede8e9, 'Y', '2004-01-28 19:51:35'),
(315, 16, 0xcef2e2e5f7e5edee, 'Y', '2004-01-20 14:53:28'),
(323, 16, 0xc2fbe7eee220e1fbeb20eef2eaebeeede5ed20e8ebe820e8e3f0e020f3e4e0ebe5ede0, 'Y', '2004-01-20 14:53:28'),
(326, 16, 0xcfeef1ebe0f2fc20eef2e2e5f2, 'Y', '2004-01-20 14:53:28'),
(327, 16, 0xcdeee2eee520f1eeeee1f9e5ede8e5, 'Y', '2004-01-20 14:53:28'),
(328, 16, 0xcaeeecf32028eff1e5e2e4eeede8ec29, 'Y', '2004-01-20 14:53:28'),
(329, 16, 0xcfeef1ebe0f2fc20f1eeeee1f9e5ede8e5, 'Y', '2004-01-20 14:53:28'),
(332, 16, 0xcee1f1f3e4e8f2fc20f3f1ebeee2e8ff, 'Y', '2004-01-20 14:53:28'),
(333, 16, 0xcff0e8edfff2fc, 'Y', '2004-01-20 14:53:28'),
(334, 16, 0xcef2eaebeeede8f2fc, 'Y', '2004-01-20 14:53:28'),
(335, 16, 0xd1eeeee1f9e5ede8e520ee20e2fbe7eee2e520ede020e8e3f0f3, 'Y', '2004-01-20 14:53:28'),
(336, 16, 0xcfeef1ebe0f2fc20e2fbe7eee220ede020e8e3f0f3, 'Y', '2004-01-20 14:53:28'),
(346, 16, 0xd1eeeee1f9e5ede8e520eef2eff0e0e2ebe5edee21, 'Y', '2004-01-20 14:53:28'),
(428, 16, 0xd7e0f1fb20e8e4f3f220efee20e2fbf5eee4edfbec, 'Y', '2004-01-20 14:53:28'),
(431, 16, 0xd4eef0ece0f220e4eef1eae8, 'Y', '2012-10-14 14:25:25'),
(432, 16, 0xcee1fbf7ede0ff20f4eef0e02028eaeeece820302e3520e5f1ebe820e4e0b8f2f1ff20f4eef0e029, 'Y', '2010-10-18 08:24:48'),
(433, 16, 0xd3f2eef7ede5edede0ff20f4eef0e0, 'Y', '2004-01-20 14:53:28'),
(436, 16, 0xece5f1fff6e5e2, 'Y', '2004-01-20 14:53:28'),
(442, 16, 0xe4ebff, 'Y', '2004-01-20 14:53:28'),
(443, 16, 0xc2f0e5ecff20efee20d4e8f8e5f0f3, 'Y', '2004-01-20 14:53:28'),
(445, 16, 0x494420efe0f0f2e8e8, 'Y', '2004-01-20 14:53:28'),
(446, 16, 0xd6e2e5f2e0, 'Y', '2004-01-20 14:53:28'),
(447, 16, 0xcde8e3e8f0e8, 'Y', '2004-01-20 14:53:28'),
(449, 16, 0xdfefeeedf1eaeee5, 'Y', '2004-01-20 14:53:28'),
(450, 16, 0x257320ede020f5eee420e820257320eff0e5e2fbf8e5ede8e9, 'Y', '2004-01-20 14:53:28'),
(451, 16, 0xcae0ede0e4f1eaeee5, 'Y', '2004-01-20 14:53:28'),
(452, 16, 0x257320ede020257320f5eee4eee2, 'Y', '2004-01-31 09:17:35'),
(453, 16, 0xc4eee1e0e2eae020ede020f5eee4, 'Y', '2004-01-20 14:53:28'),
(724, 16, 0xd3ede8f7f2eee6e8f2fc20eef2ece5f7e5ededfbe520f1eeeee1f9e5ede8ff, 'Y', '2004-01-20 14:53:28'),
(726, 16, 0xcfe5f0e5e4e5ebeae020efe0efeeea, 'Y', '2004-01-20 14:53:28'),
(740, 16, 0xcfeeebf3f7e5edfb, 'Y', '2004-01-29 11:08:39'),
(741, 16, 0xc3ebe0e2ede0ff, 'Y', '2004-01-20 14:54:54'),
(742, 16, 0xd3e4e0ebe5edfb, 'Y', '2004-01-29 11:08:39'),
(743, 16, 0xcef2eef1ebe0edfb, 'Y', '2006-09-08 23:12:32'),
(745, 16, 0xcfe5f0e5e9f2e820ea20efe0efeae5, 'Y', '2004-01-20 14:53:28'),
(746, 16, 0xc8ecff20efe0efeae8, 'Y', '2004-01-20 14:53:28'),
(322, 16, 0xddf2eef220e2fbe7eee220ede020257320e8e3f0f320257320e1fbeb20f3e6c520eff0e8edfff2, 'Y', '2004-01-23 14:13:02'),
(1001, 6, 0x43f36d6f206375656e746120447261676f6e20656c207469656d706f3f, 'Y', '2004-01-22 19:30:10'),
(1002, 6, 0x4c6120756e69646164206465207469656d706f203c693e6d6f7374726164613c2f693e206de173207065717565f16120657320756e6120686f72612e203c693e496e7465726e616d656e74653c2f693e206c6f732072656c6f6a6573206465206a7565676f20656e20637572736f20736f6e2061637475616c697a61646f7320636164612035206d696e75746f732e, 'Y', '2004-01-23 04:29:40'),
(409, 16, 0xc4e2eee9ede0ff20e8e3f0e0, 'Y', '2004-01-23 12:21:19'),
(1001, 4, 0x576965207ae4686c7420447261676f6e20646965205a6569743f, 'Y', '2004-01-23 22:37:01'),
(1002, 4, 0x4175662065696e656d207a756762617369657274656e20536572766572206769627420657320556872656e20686175707473e463686c696368207a752064656d205a7765636b652c20756d20756e656e646c696368206c616e6765205061727469656e207a75207665726d656964656e2e0d0a0d0a446965206b6c65696e737465203c693e616e67657a65696774653c2f693e205a6569747370616e6e652062657472e467742065696e65205374756e64652e203c693e496e7465726e3c2f693e2077657264656e206c617566656e646520556872656e20616c6c652066fc6e66204d696e7574656e20616b7475616c6973696572742e2041636874756e673a204461732062656465757465742c20646173732049687265205a65697420696e6e657268616c622077656e696765722053656b756e64656e20616267656c617566656e207365696e206b616e6e2c20617563682077656e6e2064696520556872206e6f63682065696e65205374756e646520426564656e6b7a65697420616e7a65696774210d0a0d0a44696520556872656e206c617566656e2c20736f62616c642064617320537069656c616e6765626f7420616b7a657074696572742077757264652c20756e64207369652068616c74656e20616e2c2077656e6e2064696520537069656c6572207369636820fc626572206469652050756e6b747a61686c2065696e69672073696e642e2041636874756e673a204461732062656465757465742c2064617373205369652064617320537069656c2061756368206e6f636820696e20646572205068617365206465732050617373656e73206f646572204175737ae4686c656e73207665726c696572656e206bf66e6e656e21, 'Y', '2009-07-04 09:57:35'),
(1003, 5, 0x426173717565, 'Y', '2004-01-24 00:58:13'),
(727, 16, 0xd3f1f2e0edeee2eae820fdf2eee920e8e3f0fb20257320eee1f1f3e6e4e0ebe8f1fc202573, 'Y', '2004-01-28 20:05:43'),
(157, 16, 0xcfe0f0eeebfc20f1ece5ede5ed21, 'Y', '2004-01-28 20:05:43'),
(158, 16, 0xcff0eef4e8ebfc20eee1edeee2ebe5ed21, 'Y', '2004-01-28 20:05:43'),
(175, 16, 0xc4f0f3e3eee53a, 'Y', '2004-01-28 20:05:43'),
(176, 16, 0xd1f2f0e0ede0, 'Y', '2004-01-28 20:05:43'),
(177, 16, 0xc3eef0eee4, 'Y', '2004-01-28 20:05:43'),
(178, 16, 0xd8f2e0f2, 'Y', '2004-01-28 20:05:43'),
(179, 16, 0xcaebf3e1, 'Y', '2004-01-28 20:05:43'),
(180, 16, 0xc4eeece0f8edffff20f1f2f0e0ede8f7eae0, 'Y', '2004-01-28 20:05:43'),
(181, 16, 0xddebe5eaf2f0eeedede0ff20efeef7f2e0, 'Y', '2004-01-28 20:05:43'),
(182, 16, 0xcdeeece5f020e0f1fceae8, 'Y', '2004-01-28 20:05:43'),
(183, 16, 0xc8e3f0eee2fbe520eff0e5e4efeef7f2e5ede8ff, 'Y', '2004-01-28 20:05:43'),
(184, 16, 0xd3e2ebe5f7e5ede8ff, 'Y', '2004-01-28 20:05:43'),
(185, 16, 0xcff0eee6e8e2e0ede8e5, 'Y', '2004-01-28 20:05:43'),
(187, 16, 0xc8e7ece5ede8f2fc20ebe8f7edfbe520e4e0ededfbe5, 'Y', '2004-01-28 20:05:43'),
(188, 16, 0xd0e5e4e0eaf2e8f0eee2e0f2fc20efe0f0eeebfc, 'Y', '2004-01-28 20:05:43'),
(189, 16, 0xcff0e5e6ede8e920efe0f0eeebfc, 'Y', '2004-01-28 20:05:43'),
(190, 16, 0xcdeee2fbe920efe0f0eeebfc, 'Y', '2004-01-28 20:05:43'),
(192, 16, 0xd1ece5ede8f2fc20efe0f0eeebfc, 'Y', '2004-01-28 20:05:43'),
(195, 16, 0xd5eee4fb20e820f1eeeee1f9e5ede8ff, 'Y', '2004-01-28 20:05:43'),
(196, 16, 0xc4eef1eae020e820f1eeeee1f9e5ede8ff, 'Y', '2004-01-28 20:05:43'),
(199, 16, 0xd0e5e4e0eaf2e8f0eee2e0f2fc20eff0eef4e8ebfc, 'Y', '2004-01-28 20:05:43'),
(200, 16, 0xcbe8f7edfbe520ede0f1f2f0eee9eae8, 'Y', '2004-01-28 20:05:43');
INSERT INTO `Translations` (`Original_ID`, `Language_ID`, `Text`, `Translated`, `Updated`) VALUES
(207, 16, 0xcde0f1f2f0eee9eae820e1f0eef3e7e5f0e0, 'Y', '2004-01-28 20:05:43'),
(208, 16, 0xdfe7fbea, 'Y', '2004-01-28 20:05:43'),
(209, 16, 0xc7eeede020e2f0e5ece5ede8, 'Y', '2004-01-28 20:05:43'),
(210, 16, 0xcdeef7edeee520e2f0e5ecff, 'Y', '2004-01-28 20:05:43'),
(211, 16, 0xc8e7eee1f0e0e6e5ede8e520e4eef1eae8, 'Y', '2004-01-28 20:05:43'),
(212, 16, 0xd0e0e7ece5f020eae0ecede5e9, 'Y', '2004-01-28 20:05:43'),
(213, 16, 0xd6e2e5f220e4eef1eae8, 'Y', '2004-01-28 20:05:43'),
(214, 16, 0xcaeeeef0e4e8ede0f2ede0ff20f0e0eceae0, 'Y', '2004-01-28 20:05:43'),
(439, 16, 0x2c, 'Y', '2012-07-14 16:18:35'),
(416, 16, 0xc2fbf5eee4edfbe520f3f7e8f2fbe2e0fef2f1ff, 'Y', '2004-01-31 01:21:12'),
(136, 16, 0xd4eef0f3ec, 'Y', '2004-01-31 01:30:10'),
(159, 16, 0xc4eeeaf3ece5edf2e0f6e8ff, 'Y', '2004-01-31 01:30:10'),
(161, 16, 0xd7e0f1f2ee20e7e0e4e0e2e0e5ecfbe520e2eeeff0eef1fb, 'Y', '2004-01-31 01:30:10'),
(165, 16, 0xd1f1fbebeae8, 'Y', '2004-01-31 01:30:10'),
(168, 16, 0xc8edf1f2f0f3eaf6e8e820efee20f3f1f2e0edeee2eae5, 'Y', '2004-01-31 01:30:10'),
(169, 16, 0xe5f1ebe820e2e0ec20edf3e6e5ed20f1eee1f1f2e2e5ededfbe920c4f0e0e3eeed, 'Y', '2004-01-31 01:30:10'),
(170, 16, 0xc7e0e3f0f3e7e8f2fc20e8f1f5eee4edfbe520f2e5eaf1f2fb20c4f0e0e3eeede0, 'Y', '2004-01-31 01:30:10'),
(256, 16, 0xcee1f9e0ff20e8edf4eef0ece0f6e8ff, 'Y', '2004-01-31 01:30:10'),
(258, 16, 0xcce0f1f1e020e8edf4eef0ece0f6e8e820efee20c3ee, 'Y', '2004-01-31 01:30:10'),
(259, 16, 0xd7e0c2ee20efee20c3ee, 'Y', '2004-01-31 01:30:10'),
(260, 16, 0xd7e0c2ee20e3f0f3efeffb20edeee2eef1f2e5e9203c7265632e67616d65732e676f3e, 'Y', '2004-01-31 01:30:10'),
(80, 19, 0x5a75726520697a656e61, 'Y', '2004-02-02 00:39:11'),
(81, 19, 0x457a2064757a75207361696f612068617369, 'Y', '2004-02-02 00:39:11'),
(82, 19, 0x45676f657261, 'Y', '2004-02-02 00:39:11'),
(83, 19, 0x49747861726f6e2067656c61, 'Y', '2004-02-02 00:39:11'),
(84, 19, 0x4e69726520696e666f726d617a696f61, 'Y', '2006-05-09 23:46:34'),
(85, 19, 0x4d657a75616b, 'Y', '2004-02-02 00:39:11'),
(86, 19, 0x4d657a752062617420626964616c69, 'Y', '2004-02-02 00:39:11'),
(87, 19, 0x476f6e626964617475, 'Y', '2004-02-02 00:39:11'),
(88, 19, 0x45726162696c747a61696c65616b, 'Y', '2004-02-02 00:39:11'),
(89, 19, 0x506172746964616b, 'Y', '2006-04-07 14:57:49'),
(90, 19, 0x49747a756c69, 'Y', '2004-02-02 00:39:11'),
(91, 19, 0x466f726f616b, 'Y', '2004-02-02 00:39:11'),
(92, 19, '', 'Y', '2006-12-29 00:39:59'),
(93, 19, 0x47756e65206d617061, 'Y', '2004-02-02 00:39:11'),
(94, 19, 0x446f6b756d656e746f616b, 'Y', '2004-02-02 00:39:11'),
(95, 19, 0x4f7272696172656e20736f72726572612064617461, 'Y', '2004-02-02 00:39:11'),
(96, 19, '', 'Y', '2006-12-29 00:39:59'),
(97, 19, 0x497274656e, 'Y', '2004-02-02 00:39:11'),
(98, 19, 0x6567756e, 'Y', '2004-02-02 00:39:11'),
(99, 19, 0x6567756e, 'Y', '2004-02-02 00:39:11'),
(100, 19, 0x657461, 'Y', '2004-02-02 00:39:11'),
(101, 19, 0x6f726475, 'Y', '2004-02-02 00:39:11'),
(102, 19, 0x6f726475, 'Y', '2004-02-02 00:39:11'),
(103, 19, 0x62796f796f6d692067616265, 'Y', '2004-02-02 00:39:11'),
(104, 19, 0x2573206765686961676f206d7567696d656e64756b6f, 'Y', '2004-02-02 00:39:11'),
(106, 19, 0x62796f796f6d69206a61706f6e6961727261, 'Y', '2004-02-02 00:39:11'),
(107, 19, 0x6861727269, 'Y', '2006-04-07 06:00:34'),
(108, 19, 0x62796f796f6d69206b616e61646961727261, 'Y', '2004-02-02 00:39:11'),
(132, 19, '', 'Y', '2006-12-29 00:39:59'),
(134, 19, 0x497a656e61, 'Y', '2004-02-02 00:39:11'),
(201, 19, 0x45726162696c747a61696c6520494461, 'Y', '2004-02-02 00:39:11'),
(204, 19, 0x4d61696c61206f6861727261, 'Y', '2004-02-02 01:15:47'),
(205, 19, 0x4d61696c61, 'Y', '2004-02-02 01:15:47'),
(309, 19, 0x42616e646572616b, 'Y', '2004-02-02 00:39:11'),
(310, 19, 0x4e6f726b, 'Y', '2004-02-02 00:39:11'),
(311, 19, 0x47616961, 'Y', '2004-02-02 00:39:11'),
(312, 19, 0x44617461, 'Y', '2004-02-02 00:39:11'),
(314, 19, 0x4265727269616b, 'Y', '2004-02-02 01:38:08'),
(316, 19, 0x4572616e747a756e21, 'Y', '2004-02-02 01:38:08'),
(330, 19, 0x5a75726961, 'Y', '2004-02-02 00:39:11'),
(331, 19, 0x42656c747a61, 'Y', '2004-02-02 00:39:11'),
(352, 19, '', 'Y', '2006-12-29 00:39:59'),
(359, 19, 0x4175726b616b6f61, 'Y', '2004-02-02 00:39:11'),
(360, 19, 0x4b6f6c6f726561, 'Y', '2004-02-02 00:39:11'),
(361, 19, 0x54616d61696e61, 'Y', '2004-02-02 00:39:11'),
(362, 19, '', 'Y', '2006-12-29 00:39:59'),
(363, 19, '', 'Y', '2006-12-29 00:39:59'),
(364, 19, 0x4d7567696d656e6475616b, 'Y', '2004-02-02 00:39:11'),
(368, 19, 0x417a6b656e206d7567696d656e647561, 'N', '2004-02-02 00:42:46'),
(374, 19, 0x4d61727478616e2064617564656e20706172746964616b, 'Y', '2006-04-07 14:53:23'),
(375, 19, 0x42756b61747574616b6f20706172746964616b, 'Y', '2006-04-07 14:53:23'),
(388, 19, 0x4a6f6c617374656b6f2070726573743f, 'Y', '2004-02-02 00:42:46'),
(389, 19, 0x4d657a75206265727269616b, 'Y', '2004-02-02 00:42:46'),
(390, 19, 0x48757272656e676f206a6f6b6f6574616e207a757265207478616e64612064613a, 'Y', '2004-02-02 00:42:46'),
(391, 19, 0x457a206461206a6f6b6f72696b206175726b697475, 'Y', '2004-02-02 00:42:46'),
(460, 19, 0x68757272656e676f206f72726961, 'Y', '2004-02-02 00:42:46'),
(461, 19, 0x61757272656b6f206f72726961, 'Y', '2004-02-02 00:42:46'),
(462, 19, 0x476568697475207a757461626561, 'Y', '2004-02-02 00:42:46'),
(715, 19, 0x4f72647561, 'Y', '2006-04-22 18:17:43'),
(561, 40, 0x436f6d6f20617061676f20756d206a6f676f20656d2070726f67726573736f3f, 'Y', '2014-04-13 18:43:57'),
(3048, 36, 0xc3b6726dc3a96e79, 'Y', '2015-09-19 12:54:09'),
(719, 19, 0x25736b2069726162617a692c20252e3166, 'Y', '2004-02-02 00:45:33'),
(722, 19, 0x4b617270657461, 'Y', '2004-02-02 00:45:33'),
(732, 19, 0x4f706f72206567756e206c69627265616b, 'Y', '2004-02-03 00:02:13'),
(733, 19, 0x4f706f72726574616e, 'Y', '2004-02-02 00:45:33'),
(747, 19, 0x5a75746162652067757a7469616b, 'Y', '2004-02-02 00:45:33'),
(755, 19, 0x5a65726269747a617269206d657a7561, 'Y', '2004-02-02 00:45:33'),
(160, 19, 0x447261676f6e20476f2053617272657261, 'Y', '2006-04-07 05:57:43'),
(191, 19, 0x426572726574736920706173616869747a61, 'Y', '2004-02-02 00:53:55'),
(202, 19, 0x497a656e206f736f61, 'Y', '2004-02-02 00:53:55'),
(223, 19, 0x506173616869747a61206168617a74752064757a753f, 'Y', '2004-02-02 00:53:55'),
(240, 19, 0x48617369657261, 'Y', '2004-02-02 00:53:55'),
(242, 19, 0x497a656e6120656d616e2065746120626f7461207061727469646174786f72656e206261742c206c6962726561206461, 'Y', '2004-02-02 00:53:55'),
(243, 19, 0x5361696f6120686173692e, 'Y', '2006-08-29 04:21:26'),
(244, 19, 0x42656769726164612062617420626f7461747a656b6f2025732065726162696c69, 'Y', '2004-02-02 23:43:00'),
(245, 19, 0x506173616869747a61, 'Y', '2004-02-02 00:53:55'),
(246, 19, 0x5361696f612068617369, 'Y', '2004-02-02 00:53:55'),
(247, 19, 0x497a656e6120656d616e, 'Y', '2004-02-02 00:53:55'),
(248, 19, 0x53617272657261, 'Y', '2004-02-02 00:53:55'),
(252, 19, 0x4f6e67692065746f727269206265727269726f2c2065746120676f7a617475207a75726520626973697461, 'Y', '2004-02-02 00:53:55'),
(344, 19, 0x497a656e6120656d616e, 'Y', '2004-02-02 00:53:55'),
(345, 19, 0x4d65736564657a2064617475616b207361727475, 'Y', '2004-02-02 00:53:55'),
(478, 19, 0x496e666f726d617a696f206765686961676f206175726b6974752064657a616b657a753c6120687265663d226661712e706870223e46415120666f726f616e3c2f613e207a7572652067616c646572616b20657265206265727461726120626f7461747a65726120616e696d6174752e, 'Y', '2004-02-02 00:53:55'),
(109, 19, 0x506172746964612067656869747520646121, 'Y', '2004-02-12 22:40:42'),
(225, 19, 0x45747369, 'Y', '2004-02-02 01:12:04'),
(226, 19, 0x506173617475, 'Y', '2004-02-02 01:12:04'),
(227, 19, 0x5061727469646120657a61626174757a, 'Y', '2004-02-12 22:40:42'),
(229, 19, 0x50756e7475617a696f61, 'Y', '2004-02-02 01:12:04'),
(230, 19, 0x50617274696461, 'Y', '2004-02-12 22:40:42'),
(231, 19, 0x506173617475, 'Y', '2004-02-02 01:12:04'),
(232, 19, 0x457a61626174752070617274696461, 'Y', '2004-02-12 22:40:42'),
(233, 19, 0x4567696e6461, 'Y', '2004-02-02 01:12:04'),
(234, 19, 0x4a617272616974752070617274696461, 'Y', '2004-02-12 22:40:42'),
(235, 19, 0x45747369, 'Y', '2004-02-02 01:12:04'),
(236, 19, 0x4465736b6172676174752073676620666f726d617475616e, 'Y', '2004-02-02 01:12:04'),
(237, 19, 0x48757272656e676f2070617274696461726120706173617475, 'Y', '2004-02-12 22:40:42'),
(238, 19, 0x42656861747574616b6f2070617274696465746174696b206b656e6475, 'Y', '2006-05-09 23:38:19'),
(239, 19, 0x426568617475207061727469646120686175, 'Y', '2006-05-09 23:38:19'),
(253, 19, 0x5061727469646120657a616261747520646121, 'Y', '2004-02-12 22:40:42'),
(254, 19, 0x5061727469646120676568697475746121, 'Y', '2004-02-12 22:40:42'),
(308, 19, 0x4e6f7269, 'Y', '2004-02-02 01:12:04'),
(324, 19, 0x4572616e747a756e, 'Y', '2004-02-02 01:12:04'),
(325, 19, 0x4d657a7561, 'Y', '2004-02-02 01:12:04'),
(342, 19, 0x4d61696c612067726166696b6f613a, 'Y', '2004-02-02 01:12:04'),
(343, 19, 0x506172746964612070756e74756167617272692067757478696567692067726166696b6f612065676974656b6f, 'Y', '2006-04-10 18:10:31'),
(348, 19, 0x42756b61747574616b6f20706172746964616b, 'Y', '2004-02-12 22:40:42'),
(349, 19, 0x506172746964616b206d61727478616e, 'Y', '2004-02-12 22:40:42'),
(350, 19, 0x2573287229656e2062756b61747574616b6f20706172746964616b, 'Y', '2004-02-12 22:40:42'),
(351, 19, 0x2573287229656e20706172746964616b206d61727478616e, 'Y', '2004-02-12 22:40:42'),
(366, 19, 0x50756e747561676172726961, 'Y', '2006-04-10 18:11:16'),
(370, 19, 0x426169, 'Y', '2004-02-02 01:12:04'),
(371, 19, 0x457a, 'Y', '2004-02-02 01:12:04'),
(372, 19, '', 'N', '2006-12-29 00:39:59'),
(373, 19, 0x476f6e6269646174752065726162696c747a61696c6520686175, 'Y', '2004-02-02 01:12:04'),
(406, 19, 0x4f68696b6f61, 'Y', '2004-02-02 01:12:04'),
(407, 19, 0x45676f6b6961, 'Y', '2004-02-02 01:12:04'),
(409, 19, 0x506172746964612062696b6f69747a61, 'Y', '2006-04-07 14:59:43'),
(411, 19, '', 'Y', '2006-12-29 00:39:59'),
(412, 19, 0x4972757a6b696e61, 'Y', '2004-02-02 01:12:04'),
(414, 19, 0x44656e626f7261206d756761, 'Y', '2004-02-02 01:12:04'),
(416, 19, 0x41737465627572752065726c6f6a7561, 'Y', '2006-08-31 16:22:16'),
(417, 19, 0x4261646972756469206f7261696e676f7a2068757473696b206461676f656c61, 'Y', '2004-02-02 01:12:04'),
(419, 19, 0x736f696c696b202573, 'Y', '2004-02-02 01:12:04'),
(420, 19, 0x47656869747520626568617272656b6f2070617274696461206b6f7075727561, 'Y', '2004-02-12 22:40:42'),
(421, 19, '', 'Y', '2006-12-29 00:39:59'),
(422, 19, '', 'Y', '2006-12-29 00:39:59'),
(423, 19, 0x4d61696c6164756e206175726b616b6f612065736b617475, 'Y', '2004-02-02 01:12:04'),
(424, 19, 0x486f7272656c6120626164612c206d61696c6120746172746561, 'Y', '2004-02-02 01:12:04'),
(425, 19, 0x4765686974752070617274696461, 'Y', '2004-02-12 22:40:42'),
(426, 19, 0x4a6f6b616c61726961, 'Y', '2004-02-02 01:12:04'),
(427, 19, 0x50617274696461206b6f7075727561, 'Y', '2004-02-12 22:40:42'),
(428, 19, 0x45726c6f6a756120617374656275727574616e20646172726169, 'Y', '2004-02-02 01:12:04'),
(429, 19, 0x457a6162617475, 'Y', '2004-02-02 01:12:04'),
(430, 19, 0x4a6f6c61737475, 'Y', '2004-02-02 01:12:04'),
(437, 19, 0x44656e626f7261206e616775736961, 'Y', '2004-02-02 01:12:04'),
(454, 19, 0x4a61727269207a7572652068616e6469636170206861727269616b, 'Y', '2004-02-02 01:12:04'),
(455, 19, 0x426964616c69206574612068757272656e676f2070617274696461726120706173617475, 'Y', '2004-02-12 22:40:42'),
(456, 19, 0x426964616c69206574612065676f6572617261206a6f616e, 'Y', '2004-02-06 02:39:35'),
(457, 19, 0x41747a657261, 'Y', '2004-02-02 01:12:04'),
(458, 19, 0x476174696275616b, 'Y', '2004-02-02 01:12:04'),
(484, 19, 0x557274, 'Y', '2004-02-02 01:12:04'),
(485, 19, 0x4f7473, 'Y', '2004-02-02 01:12:04'),
(486, 19, 0x417069, 'Y', '2004-02-02 23:46:53'),
(487, 19, 0x4d6169, 'Y', '2004-02-02 01:12:04'),
(488, 19, 0x456b61, 'Y', '2004-02-02 01:12:04'),
(489, 19, 0x416275, 'Y', '2004-02-02 01:12:04'),
(490, 19, 0x497261, 'Y', '2004-02-02 01:12:04'),
(491, 19, 0x557272, 'Y', '2004-02-02 01:12:04'),
(492, 19, 0x416265, 'Y', '2004-02-02 01:12:04'),
(3235, 7, 0x526f7a6573746176656eed, 'Y', '2016-07-20 18:40:06'),
(495, 19, '', 'Y', '2006-12-29 00:39:59'),
(496, 19, 0x557a74, 'Y', '2004-02-02 01:12:04'),
(497, 19, 0x417a61, 'Y', '2004-02-02 01:12:04'),
(498, 19, 0x233274696b, 'Y', '2004-02-02 01:12:04'),
(499, 19, 0x23327261, 'Y', '2004-02-02 01:12:04'),
(618, 19, 0x48617369657261206d61696c61, 'Y', '2004-02-02 01:12:04'),
(619, 19, 0x42756b61657261206d61696c61, 'Y', '2004-02-02 01:12:04'),
(620, 19, 0x4d61696c6120657a62657264696e746173756e61, 'Y', '2004-02-02 01:12:04'),
(307, 19, 0x4d657a75207a657272656e6461, 'Y', '2004-02-02 01:21:15'),
(315, 19, 0x4572616e747a756e6461, 'Y', '2004-02-02 01:21:15'),
(326, 19, 0x4572616e747a756e6120626964616c69, 'Y', '2004-02-02 01:21:15'),
(327, 19, 0x4d657a7520626572726961, 'Y', '2004-02-02 01:21:15'),
(328, 19, 0x4e6f7269202865726162696c747a61696c652049446129, 'Y', '2004-02-02 01:21:15'),
(329, 19, 0x4d657a756120626964616c69, 'Y', '2004-02-02 01:21:15'),
(333, 19, 0x4f6e61727475, 'Y', '2004-02-02 01:21:15'),
(334, 19, 0x556b6f206567696e, 'Y', '2004-02-02 01:21:15'),
(335, 19, 0x476f6e62697465206d657a7561, 'Y', '2004-02-02 01:21:15'),
(336, 19, 0x426964616c6920676f6e6269746561, 'Y', '2004-02-02 01:21:15'),
(346, 19, 0x4d657a756120626964616c69206461, 'Y', '2004-02-02 01:21:15'),
(431, 19, 0x5461756c6172656e2074616d61696e61, 'N', '2004-02-02 01:21:15'),
(1879, 17, 0x4b6c696b6e69ea636965206e6120bff3b374792070727a796369736b20706f6e69bf656a2070727a656e6965736965206369ea20646f2050617950616c, 'Y', '2013-08-20 23:01:30'),
(436, 19, 0x68696c6162657465, 'Y', '2004-02-02 01:21:15'),
(446, 19, 0x4b6f6c6f7265616b, 'Y', '2004-02-02 01:21:15'),
(447, 19, '', 'Y', '2006-12-29 00:39:59'),
(449, 19, 0x4a61706f6e6961727261, 'Y', '2004-02-02 01:21:15'),
(451, 19, 0x4b616e61646961727261, 'Y', '2004-02-02 01:21:15'),
(724, 19, 0x44657573657a7475206d61726b61747574616b6f206d657a75616b, 'Y', '2004-02-02 01:21:15'),
(726, 19, 0x416c64617475206b6172706574616b, 'Y', '2004-02-02 01:26:37'),
(740, 19, 0x4a61736f74616b6f2067757a7469616b, 'Y', '2004-02-02 01:38:08'),
(741, 19, 0x4e616775736961, 'Y', '2004-02-02 23:52:34'),
(742, 19, 0x50617065726f6e747a6961, 'Y', '2004-02-02 01:26:37'),
(743, 19, 0x426964616c697461, 'Y', '2004-02-02 01:26:37'),
(744, 19, 0x4572616d616e206b61727065746120686f6e6574617261206572616e747a757465616e, 'Y', '2004-02-02 01:26:37'),
(745, 19, 0x4572616d616e206b61727065746120686f6e6574617261, 'Y', '2004-02-02 01:26:37'),
(746, 19, 0x4b61727065746120697a656e61, 'Y', '2004-02-02 01:26:37'),
(156, 19, 0x42696f206567756e6572617475746121, 'Y', '2004-02-02 01:26:37'),
(157, 19, 0x506173616869747a6120616c64617475746121, 'Y', '2004-02-02 01:26:37'),
(158, 19, 0x50726f66696c61206567756e6572617475746121, 'Y', '2004-02-02 01:26:37'),
(175, 19, 0x42657374656c616b6f616b, 'Y', '2004-02-02 01:26:37'),
(176, 19, 0x48657269616c646561, 'Y', '2004-02-02 01:26:37'),
(177, 19, 0x486572726961, 'Y', '2004-02-02 01:26:37'),
(178, 19, 0x45737461747561, 'Y', '2004-02-02 01:26:37'),
(179, 19, 0x54616c646561, 'Y', '2004-02-02 01:26:37'),
(180, 19, 0x57656267756e6561, 'Y', '2004-02-02 01:26:37'),
(181, 19, 0x65506f737461, 'Y', '2004-02-02 01:26:37'),
(182, 19, 0x494351205a656e62616b6961, 'Y', '2004-02-02 01:26:37'),
(183, 19, 0x4e6f6c61206a6f6c617374656120677573746f6b6f, 'Y', '2004-02-02 01:26:37'),
(184, 19, 0x5a616c65746173756e616b, 'Y', '2004-02-02 01:26:37'),
(185, 19, 0x4f67696269646561, 'Y', '2004-02-02 01:26:37'),
(187, 19, 0x416c646174752062696f, 'Y', '2004-02-02 01:26:37'),
(188, 19, 0x416c6461747520706173616869747a61, 'Y', '2004-02-02 01:26:37'),
(189, 19, 0x506173616869747a207a616861727261, 'Y', '2004-02-02 01:26:37'),
(332, 19, 0x4e65676f7a6961747520657a617270656e616b, 'Y', '2004-02-02 01:30:36'),
(190, 19, 0x506173616869747a20626572726961, 'Y', '2004-02-02 01:30:36'),
(192, 19, 0x416c6461747520706173616869747a61, 'Y', '2004-02-02 01:30:36'),
(194, 19, 0x536f696c696b2061626973617475, 'Y', '2004-02-02 01:30:36'),
(195, 19, 0x4d7567696d656e647520657461206d657a75616b, 'Y', '2004-02-02 01:30:36'),
(196, 19, 0x5461756c61206f736f6120657461206d657a75616b, 'Y', '2004-02-02 01:30:36'),
(197, 19, 0x42657274696b616c61, 'Y', '2004-02-02 01:30:36'),
(198, 19, 0x486f72697a6f6e74616c61, 'Y', '2004-02-02 01:30:36'),
(199, 19, 0x416c646174752070726f66696c61, 'Y', '2004-02-02 01:30:36'),
(200, 19, 0x457a617270656e2070657274736f6e616c616b, 'Y', '2004-02-02 01:30:36'),
(206, 19, 0x65506f7374617a2061626973617475, 'Y', '2004-02-02 01:30:36'),
(207, 19, 0x45726162696c69206e6162696761747a61696c6520657a617270656e616b, 'Y', '2004-02-02 01:30:36'),
(208, 19, 0x48697a6b756e747a61, 'Y', '2004-02-02 01:30:36'),
(209, 19, 0x4f726475205a6f6e61, 'Y', '2004-02-02 01:30:36'),
(210, 19, 0x476175206f7264757465676961, 'Y', '2004-02-02 01:30:36'),
(211, 19, 0x5461756c612067726166696b6f616b, 'Y', '2004-02-02 01:30:36'),
(212, 19, 0x48617272692074616d61696e61, 'Y', '2004-02-02 01:30:36'),
(213, 19, 0x45677572206b6f6c6f726561, 'Y', '2004-02-02 01:30:36'),
(214, 19, 0x4b6f6f7264656e61646164756e206572747a616b, 'Y', '2004-02-02 01:30:36'),
(215, 19, 0x457a6b65727261, 'Y', '2004-02-02 01:30:36'),
(216, 19, 0x476f6961, 'Y', '2004-02-02 01:30:36'),
(217, 19, 0x45736b756d61, 'Y', '2004-02-02 01:30:36'),
(218, 19, 0x4265686561, 'Y', '2004-02-02 01:30:36'),
(219, 19, 0x5461756c61206572747a20737561626561, 'Y', '2004-02-02 01:30:36'),
(220, 19, 0x4d656e75206e6f72616269646561, 'Y', '2004-02-02 01:30:36'),
(156, 16, 0xc1e8eee3f0e0f4e8ff20eee1edeee2ebe5ede021, 'Y', '2004-02-02 01:41:53'),
(222, 16, 0xd1ece5ede8f2fc20eff0eef4e8ebfc, 'Y', '2004-02-02 01:41:53'),
(378, 16, 0xcceeff20e0edeae5f2e0, 'Y', '2004-02-02 01:41:53'),
(379, 16, 0xcee1edeee2e8f2fc20e1e8eee3f0e0f4e8fe, 'Y', '2004-02-02 01:41:53'),
(393, 16, 0xc4e0f2e020f0e5e3e8f1f2f0e0f6e8e8, 'Y', '2004-02-02 01:41:53'),
(394, 16, 0xcfeef1ebe5e4ede8e920e7e0f5eee4, 'Y', '2004-04-09 14:35:19'),
(395, 16, 0xc1e8eee3f0e0f4e8ff, 'Y', '2004-02-02 01:41:53'),
(396, 16, 0xcfeef1ebe0f2fc20f1eeeee1f9e5ede8e520e8e3f0eeeaf3, 'Y', '2004-02-02 01:41:53'),
(397, 16, 0xc8e4f3f9e8e5, 'Y', '2004-04-09 14:28:44'),
(398, 16, 0xc7e0eaeeedf7e5ededfbe5, 'Y', '2004-02-02 01:41:53'),
(399, 16, 0xc2fbe8e3f0e0ededfbe5, 'Y', '2004-02-02 01:41:53'),
(400, 16, 0xcff0eee8e3f0e0ededfbe5, 'Y', '2004-02-02 01:41:53'),
(5789, 40, 0x234a6f676f732053656d2d526573756c7461646f, 'Y', '2014-07-30 14:28:34'),
(402, 16, 0xc0eaf2e8e2edeef1f2fc, 'Y', '2004-02-02 01:41:53'),
(494, 16, 0xc0edeae5f2e0202573, 'Y', '2004-02-02 01:41:53'),
(736, 16, 0xc2fbe8e3f0e0ededfbe520efe0f0f2e8e8, 'Y', '2004-02-02 01:47:55'),
(737, 16, 0xcff0eee8e3f0e0ededfbe520efe0f0f2e8e8, 'Y', '2004-02-02 01:47:55'),
(738, 16, 0xc8e7ece5ede8f2fc20e4ebe8f2e5ebfcedeef1f2fc20eef2eff3f1eae0, 'Y', '2004-02-02 01:47:55'),
(739, 16, 0xcde0f7e0ebee20eef2eff3f1eae0, 'Y', '2004-02-02 01:47:55'),
(956, 16, 0xc8e7e2e8ede8f2e52c20f1e5e9f7e0f120ede5ebfce7ff20e8e7ece5ede8f2fc20e4ebe8f2e5ebfcedeef1f2fc20eef2eff3f1eae0, 'Y', '2004-02-02 01:47:55'),
(957, 16, 0xc4ebe8f2e5ebfcedeef1f2fc20eef2eff3f1eae020e8e7ece5ede5ede021, 'Y', '2004-02-02 01:47:55'),
(958, 16, 0xc4eee1e0e2e8f2fc, 'Y', '2004-02-02 01:47:55'),
(959, 16, 0xd3e4e0ebe8f2fc, 'Y', '2004-02-02 01:47:55'),
(960, 16, 0xc2fbe1f0e0f2fc20e4ebe8f2e5ebfcedeef1f2fc20eef2eff3f1eae0, 'Y', '2004-02-02 01:47:55'),
(962, 16, 0xd1f7e0f1f2ebe8e2eee3ee20eef2eff3f1eae021, 'Y', '2004-02-02 01:47:55'),
(408, 19, 0x4e696769726964756e207061727469646120706172656b6174756120284b6f6c6f72652061756b6572616b65746120617573617a6b6f6129, 'Y', '2005-02-20 13:00:58'),
(415, 19, 0x506172746964616b, 'Y', '2006-04-07 05:55:33'),
(322, 19, 0x257367616d6525206a6f6b6f20676f6e6269746520686175206f6e617274756120697a616e206461206461676f656e656b6f2e, 'Y', '2004-02-02 23:52:34'),
(323, 19, 0x476f6e6269746520686f6e6920756b6f206567696e2064696f74652065646f206a6f6b6f6120657a6162617475206461, 'Y', '2004-02-02 23:52:34'),
(432, 19, 0x4f68696b6f2048616e64696361702d6120284b6f6d6920302e352c206d61696c612062657265616e20657a20626164612065746120362e35206d61696c612062657265616e206261646129, 'Y', '2005-02-20 13:00:58'),
(433, 19, 0x48616e64696361702065676f6b696120284b6f6d6920616c64616b6f72726120302e35656b6f2074617274656574616e29, 'Y', '2005-02-20 13:00:58'),
(443, 19, 0x466973636865722064656e626f7261, 'Y', '2004-02-02 23:52:34'),
(445, 19, 0x4a6f6b6f20494461, 'Y', '2004-02-02 23:52:34'),
(450, 19, 0x2573206d7567696d656e64756b6f2065746120257320746172746520676568696761727269, 'Y', '2004-02-02 23:52:34'),
(452, 19, 0x25732025732068617272696b6f, 'Y', '2004-02-02 23:52:34'),
(453, 19, 0x6765686961676f206d7567696d656e64756b6f, 'Y', '2004-02-02 23:52:34'),
(193, 19, 0x446573616b7469626174757461, 'Y', '2004-02-03 00:02:13'),
(222, 19, 0x416c646174752070726f66696c61, 'Y', '2004-02-03 00:02:13'),
(378, 19, 0x4e6972652065726162696c747a61696c6520696e666f726d617a696f61, 'Y', '2004-02-03 00:02:13'),
(379, 19, 0x416c646174752042696f, 'Y', '2004-02-03 00:02:13'),
(393, 19, 0x497a656e20656d6174652064617461, 'Y', '2004-02-03 00:02:13'),
(394, 19, 0x417a6b656e2073617272657261, 'Y', '2004-02-03 00:02:13'),
(395, 19, 0x496e666f726d617a696f2062696f67726166696b6f61, 'Y', '2004-02-03 00:02:13'),
(396, 19, 0x426964616c69206d657a75612065726162696c747a61696c6520686f6e69, 'Y', '2004-02-03 00:02:13'),
(397, 19, 0x4d61727478616e, 'Y', '2004-02-03 00:02:13'),
(398, 19, 0x42756b6174757461, 'Y', '2004-02-03 00:02:13'),
(399, 19, 0x49726162617a6c65, 'Y', '2004-02-03 00:02:13'),
(400, 19, 0x47616c747a61696c65, 'Y', '2004-02-03 00:02:13'),
(402, 19, 0x416b746962697461746561, 'Y', '2004-02-03 00:02:13'),
(463, 19, 0x537565646961727261, 'Y', '2004-02-03 00:02:13'),
(464, 19, 0x4e6f726265676961727261, 'Y', '2004-02-03 00:02:13'),
(465, 19, 0x496e67656c657361, 'Y', '2004-02-03 00:02:13'),
(466, 19, 0x416c656d616e657261, 'Y', '2004-02-03 00:02:13'),
(467, 19, 0x4672616e747a657361, 'Y', '2004-02-03 00:02:13'),
(468, 19, 0x47617a74656c657261, 'Y', '2004-02-03 00:02:13'),
(469, 19, 0x5478656b69657261, 'Y', '2004-02-03 00:02:13'),
(470, 19, 0x5478696e617461722054726164697a696f6e616c61, 'Y', '2004-02-03 00:02:13'),
(3339, 17, '', 'Y', '2013-08-21 00:43:28'),
(472, 19, 0x5478696e617461722053696e706c6966696b61747561, 'Y', '2004-02-03 00:02:13'),
(473, 19, 0x486f6c616e64657261, 'Y', '2004-02-03 00:02:13'),
(479, 19, '', 'Y', '2006-12-29 00:39:59'),
(494, 19, 0x2573287229656e2065726162696c747a61696c6520696e666f726d617a696f61, 'Y', '2004-02-03 00:02:13'),
(500, 19, 0x46696e6c616e64657261, 'Y', '2004-02-03 00:02:13'),
(731, 19, 0x416c64617475206d657a75206b6172706574616b, 'Y', '2004-02-03 00:02:13'),
(736, 19, 0x49726162617a6974616b6f20706172746964616b, 'Y', '2006-04-07 14:57:49'),
(737, 19, 0x47616c647574616b6f20706172746964616b, 'Y', '2006-04-07 14:57:49'),
(738, 19, 0x416c64617475206f706f7272656e206972617570656e61, 'Y', '2004-02-03 00:02:13'),
(739, 19, 0x48617369206f706f72726574616e, 'Y', '2004-02-03 00:02:13'),
(750, 19, 0x4b6f726561727261, 'Y', '2004-02-03 00:02:13'),
(954, 19, 0x457272757369657261, 'Y', '2004-02-03 00:02:13'),
(955, 19, 0x4f706f7272616b, 'Y', '2004-02-03 00:02:13'),
(956, 19, 0x4f7261696e20657a696e2064757a75206f706f7272656e206972617570656e6120616c64617475, 'Y', '2004-02-03 00:02:13'),
(957, 19, 0x4f706f7272656e206972617570656e6120616c6461747520646121, 'Y', '2004-02-03 00:02:13'),
(958, 19, 0x476568697475, 'Y', '2004-02-03 00:02:13'),
(959, 19, 0x4b656e6475, 'Y', '2004-02-03 00:02:13'),
(960, 19, 0x41756b6572617475206f706f7272656e206972617570656e61, 'Y', '2004-02-03 00:02:13'),
(962, 19, 0x4f6e646f2070617361206f706f72726574616e21, 'Y', '2004-02-03 00:02:13'),
(997, 19, 0x506f6c616b657261, 'Y', '2004-02-03 00:02:13'),
(998, 19, 0x4974616c69657261, 'Y', '2004-02-03 00:02:13'),
(1003, 19, 0x4575736b617261, 'Y', '2004-02-03 00:02:13'),
(136, 19, 0x466f726f61, 'Y', '2004-02-03 00:10:20'),
(159, 19, 0x446f6b756d656e74617a696f61, 'Y', '2004-02-03 00:10:20'),
(161, 19, 0x4641513a20536172726974616e206567696e64616b6f2067616c646572616b, 'Y', '2004-02-03 00:10:20'),
(163, 19, 0x4a656e646561, 'Y', '2004-02-03 00:10:20'),
(165, 19, 0x457374656b616b, 'Y', '2004-02-03 00:10:20'),
(168, 19, 0x496e7374616c617a696f206172676962696465616b, 'Y', '2004-02-03 00:10:20'),
(169, 19, 0x5a75726520447261676f692070726f70696f61206e61686920626164757a75, 'Y', '2004-02-03 00:10:20'),
(170, 19, 0x4465736b61726761747520447261676f6e20697475726b6f646561, 'Y', '2004-02-03 00:10:20'),
(2667, 17, 0x5779736f6b6fb6e62070727a657379b3616e656a2067726166696b69205b25735d2070727a656b726f637a79b361206c696d6974206f205b257320706978656c735d2e, 'Y', '2013-08-21 00:05:19'),
(2146, 17, 0x426f74, 'Y', '2013-08-20 23:51:45'),
(173, 19, 0x447261676f6e2070726f69656b74756172656e206f7272696120536f75726365666f7267656e, 'Y', '2004-02-03 00:10:20'),
(256, 19, 0x496e666f726d617a696f206f726f6b6f727261, 'Y', '2004-02-03 00:10:20'),
(258, 19, 0x496e666f726d617a696f206d6f72646f6120476f206a6f6b6f6172656e20696e67757275616e, 'Y', '2004-02-03 00:10:20'),
(259, 19, '', 'Y', '2006-12-29 00:39:59'),
(265, 19, '', 'Y', '2006-12-29 00:39:59'),
(267, 19, 0x476f204265727269616b, 'Y', '2004-02-03 00:10:20'),
(271, 19, '', 'Y', '2006-12-29 00:39:59'),
(273, 19, 0x41726175616b, 'Y', '2004-02-03 00:10:20'),
(305, 19, 0x5a65726269747a617269207a657272656e6461, 'Y', '2004-02-03 00:10:20'),
(306, 19, 0x5a65726269747a617269656e207a657272656e6461206f7361747561676f61, 'Y', '2004-02-03 00:10:20'),
(337, 19, 0x447261676f6e206c6167756e747a61696c65616b, 'Y', '2004-02-03 00:10:20'),
(6087, 36, 0x486f7a7ac3a16164c3a173, 'Y', '2015-07-23 12:16:04'),
(340, 19, 0x46415120656469746f726561, 'Y', '2004-02-03 00:10:20'),
(377, 19, 0x4f6e67692045746f727269206f72726961, 'Y', '2004-02-03 00:10:20'),
(380, 19, 0x4572616b75747369206d657a7561, 'Y', '2004-02-03 00:10:20'),
(383, 19, 0x48617269656e207a657272656e6461, 'Y', '2004-02-03 00:10:20'),
(384, 19, 0x4972616b7572726920666f726f61, 'Y', '2004-02-03 00:10:20'),
(385, 19, 0x47616920626572726961, 'N', '2004-02-03 00:10:20'),
(730, 19, 0x416c64617475206f706f7272616b, 'Y', '2004-02-03 00:10:20'),
(122, 19, 0x4572616e747a756e61, 'Y', '2004-02-05 00:52:48'),
(127, 19, 0x416c64617475, 'N', '2004-02-05 00:52:48'),
(128, 19, 0x476f7261, 'Y', '2004-02-05 00:52:48'),
(129, 19, 0x426568657261, 'Y', '2004-02-05 00:52:48'),
(135, 19, 0x49747a756c747a61696c65616b, 'Y', '2004-02-05 00:52:48'),
(1, 19, 0x4261726b6174752c20657a696e2064757a75207061736f206567696e2068616e64696361702068617272692067757a7469616b206a617272692061727465, 'Y', '2006-08-29 23:57:45'),
(2, 19, 0x4261726b6174752c206a6f6b6f612062756b617475206461206a616461, 'Y', '2004-02-05 01:10:50'),
(3, 19, 0x4261726b6174752c206a6f6b6f6120657a206461206f7261696e64696b2068617369, 'Y', '2004-02-05 01:10:50'),
(7, 19, 0x4261726b6174752c20657a696e2064757a75207a75726520627572756120676f6e626964617475, 'Y', '2004-02-05 01:10:50'),
(8, 19, 0x4261726b6174752c20657a696e2064757420676f6e626974656172656e206a6f6b6f61206175726b6974752e20556b6f206567696e20616c2064696f7a753f, 'Y', '2004-02-05 01:10:50'),
(9, 19, 0x4261726b6174752c20657a696e2064757a7520686172726920626174206a616e206265727269206475656e20686172726961206861727475207461756c616e2061757272656b6f2065676f6572612062657262657261206572726570696b61747a656e2064656c616b6f2e20417261756574616e204b4f2d61726920627572757a6b6f20696e666f726d617a696f612064757a752e, 'Y', '2004-02-05 01:10:50'),
(12, 19, 0x457a696e20697a616e2064612064617475626173656172656b696e206b6f6e656b746174752e2049747861726f6e206d696e757475206261747a756b20657461206265727269726f207361696174752e, 'Y', '2004-02-05 01:10:50'),
(13, 19, 0x457a696e20697a616e206461206a6f6b6f6120657a61626174752e2048617520657a206475207a657274616e206172617a6f2062617420697a616e2e, 'Y', '2004-02-05 01:10:50'),
(14, 19, 0x4261726b6174752c206261646972756469206d657a756120657a696e20697a616e2064656c612064617475626173657261206765686974752e, 'Y', '2004-02-05 01:10:50'),
(15, 19, 0x4261726b6174752c206261646972756469206a6f6b6f6120657a696e20697a616e2064656c612064617475626173657261206765686974752e, 'Y', '2004-02-05 01:10:50'),
(16, 19, 0x4261726b6174752c206261646972756469206d7567696d656e64756120657a696e20697a616e2064656c612064617475626173657261206765686974752e204d65736564657a2c206a6f616e2062657272697a2070617274696461726120657461206d7567696d656e64756120676f726465206f74652064656e20656769617a746174752e, 'Y', '2006-08-29 23:57:45'),
(17, 19, 0x4261726b6174752c206261646972756469207a75726520696e666f726d617a696f6120657a696e20697a616e2064656c612064617475626173657261206765686974752e20457a696e20626164757a75207361696f6120686173692c206265727269726f207361696174752c206574612062657265616e2062616461727261692061646d696e6973747261747a61696c656172656b696e206b6f6e74616b7475616e206a617272692e, 'Y', '2004-02-05 01:10:50'),
(18, 19, 0x446174756261736574696b20696e666f726d617a696f6120686172747a65616b2068757473206567696e2064752e204d65736564657a2069747861726f6e206d696e757475206261747a756b20657461206265727269726f207361696174752e, 'Y', '2004-02-05 01:10:50'),
(19, 19, 0x457a696e20697a616e206461206461747562617365612061756b65726174752e204d65736564657a2069747861726f6e206d696e757475206261747a756b20657461206265727269726f207361696174752e, 'Y', '2004-02-05 01:10:50'),
(20, 19, 0x4261726b6174752c20657a696e20697a616e206461206a6f6b6f6120686173692e204d65736564657a2069747861726f6e206d696e757475206261747a756b20657461206265727269726f207361696174752e, 'Y', '2004-02-05 01:10:50'),
(22, 19, 0x497a656e612073617274752062656861722064757a75, 'Y', '2004-02-05 01:10:50'),
(755, 11, 0x426572696368742076616e20646520736572766572, 'Y', '2004-02-07 17:09:55'),
(954, 11, 0x5275737369736368, 'Y', '2004-02-07 17:09:55'),
(955, 11, 0x56616b616e746965, 'Y', '2004-02-07 17:09:55'),
(956, 11, 0x536f7272792c206a65206b756e7420646520647575722076616e2064652076616b616e746965206f702020646974206d6f6d656e74206e69657420766572616e646572656e2e, 'Y', '2016-07-29 15:16:27'),
(957, 11, 0x446520647575722076616e2064652076616b616e74696520697320766572616e6465726421, 'Y', '2016-07-29 15:16:27'),
(958, 11, 0x546f65766f6567656e, 'Y', '2004-02-07 17:09:55'),
(959, 11, 0x56657277696a646572656e, 'Y', '2004-02-07 17:09:55'),
(960, 11, 0x4b69657320646520647575722076616e2064652076616b616e746965, 'Y', '2016-07-29 15:16:27'),
(962, 11, 0x50726574746967652076616b616e74696521, 'Y', '2004-02-07 17:09:55'),
(997, 11, 0x506f6f6c73, 'Y', '2004-02-07 17:09:55'),
(998, 11, 0x4974616c6961616e73, 'Y', '2004-02-07 17:09:55'),
(1003, 11, 0x4261736b69736368, 'Y', '2004-02-07 17:09:55'),
(552, 11, 0x45656e206765627275696b65727320656967656e20737461747573706167696e612076616e20616c6c65656e2062656b656b656e20776f7264656e20646f6f72206465206765627275696b6572207a656c662e0d0a0d0a446520626f76656e6b616e742076616e206465203c686f6d65207374617475732e7068703e737461747573706167696e613c2f686f6d653e20746f6f6e74206465206765627275696b65727369642c206e61616d20656e20726174696e672076616e2064652068756964696765206765627275696b65722e20416c73206465206765627275696b6572206f7020646974206d6f6d656e74206f702076616b616e7469652069732c2065787472612076616b616e7469652d696e666f726d61746965206f702065656e206d616e6965722076657267656c696a6b62616172206d6574206465203c686f6d65206661712e7068703f726561643d74266361743d313223456e7472793230333e6765627275696b6572732d696e666f20706167696e613c2f686f6d653e2e0d0a0d0a4461617220646972656374206f6e64657220776f7264656e206465206565727374652064726965206f6e67656c657a656e203c686f6d65206661712e7068703f726561643d74266361743d313726653d33343323456e7472793334333e62756c6c6574696e733c2f686f6d653e206765746f6f6e642028616c73207a65206572207a696a6e292e0d0a0d0a48657420766f6c67656e64652067656465656c746520746f6f6e74206e696575776520656e206f6e6265616e74776f6f726465203c686f6d65206661712e7068703f726561643d74266361743d33363023456e7472793133363e62657269636874656e3c2f686f6d653e2076616e206465206765627275696b6572207a6f616c7320696e206465203c686f6d6520656469745f666f6c646572732e7068703e57696a7a6967206d617070656e20706167696e613c2f686f6d653e20697320696e67657374656c642e0d0a0d0a4865742067656465656c746520646161726e6120626576617420656e206c696a73742076616e20616c6c65207370656c6c656e2077616172206a652061616e2064652062657572742062656e742e204869657220766f6c67742065656e206b6f727465207569746c65672076616e206465206b6f6c6f6d6d656e20696e206520746162656c3a0d0a3c756c3e0d0a3c6c693e3c623e49443a3c2f623e2044652069642076616e2064652070617274696a2e0d0a3c6c693e3c623e7367663a3c2f623e2045656e206c696e6b206f6d2064652070617274696a20646520646f776e6c6f6164656e20287a6f6e64657220616c6c65206f706d65726b696e67656e292e0d0a3c6c693e3c623e4e6f7469746965733a3c2f623e204865742073746172746465656c2076616e206a65203c686f6d65206661712e7068703f726561643d74266361743d33363526653d32323923456e7472793232393e70726976266561637574653b206e6f7469746965733c2f686f6d653e206f7074696d61616c206f706765736c6167656e2076616e2065656e2070617274696a2e0d0a3c6c693e3c623e546567656e7374616e6465723a3c2f623e204a6520746567656e7374616e6465727320766f6c6c6564696765206563687465206e61616d2e0d0a3c6c693e3c623e4765627275696b65727369643a3c2f623e204a6520746567656e7374616e64657273206765627275696b65727369642e0d0a3c6c693e3c623e526174696e673a3c2f623e204a6520746567656e7374616e64657273206875696469676520726174696e672e0d0a3c6c693e3c623e4b6c6575723a3c2f623e204a65206b6c65757220696e2064652070617274696a2e0d0a3c6c693e3c623e50617274696a547970653a3c2f623e20486574203c686f6d65206661712e7068703f726561643d74266361743d33353726653d33383723456e7472793338373e70617274696a2d747970653c2f686f6d653e2e0d0a3c6c693e3c623e47726f6f7474653a3c2f623e2044652067726f6f7474652076616e20646520676f62616e2076616e2064652070617274696a2e0d0a3c6c693e3c623e48616e64696361703a3c2f623e204865742061616e74616c2068616e64696361707374656e656e2076616e2064652070617274696a2e0d0a3c6c693e3c623e4b6f6d693a3c2f623e204465206b6f6d692076616e2064652070617274696a2e0d0a3c6c693e3c623e5a657474656e3a3c2f623e204865742061616e74616c2067656d61616b7465207a657474656e20746f74207a6f7665722076616e2064652070617274696a2e0d0a3c6c693e3c623e54656c74206d65653a3c2f623e20476565662061616e206f662064652070617274696a2077656c206f66206e696574206d65652074656c742e0d0a3c6c693e3c623e3c696d616765206f6e6c696e652e6769663e20284765627275696b6572206f6e6c696e65293a3c2f623e2044652061616e77657a6967686569642076616e206469742069636f6f6e20626574656b656e643a203c686f6d65206661712e7068703f726561643d74266361743d33353826653d32333223456e7472793233323e6765627275696b657220776173206f6e6c696e653c2f686f6d653e20696e206465206c616174737465203130206d696e7574656e2e20416c73206a65206572206f7665726865656e2062657765656774206c616174206865742065656e20746f6f6c746970207a69656e206d6574206465207072656369657a65206c61617473746520746f6567616e6720696e206d696e7574656e2e0d0a3c6c693e3c623e4c616174737465207a65743a3c2f623e20446174756d2076616e206465206c616174737465207a65742076616e206a6520746567656e7374616e6465722e3c2f6c693e0d0a3c6c693e3c623e5072696f3a3c2f623e20746f6f6e74206f7074696f6e656c65203c686f6d65206661712e7068703f726561643d74266361743d313826653d33363423456e7472793336343e70617274696a207072696f7269746569743c2f686f6d653e206469652065656e206765627275696b6572206b616e20696e7374656c6c656e20766f6f72207a696a6e20656967656e206c6f70656e64652070617274696a656e2e0d0a3c6c693e3c623e4f7665726765626c6576656e2074696a643a3c2f623e2047656566742061616e20686f657665656c20737065656c74696a64206a65206f766572206865627420696e2064652070617274696a2e2048657420666f726d61742069732076657267656c696a6b62616172206d65742064696520696e2064652077616368746b616d657220287a696520223c693e54696a64736c696d6965743c2f693e2220696e203c686f6d65206661712e7068703f726561643d74266361743d33353723456e7472793231313e6f6d73636872696a76696e67656e2076616e2064696e67656e20696e2064652077616368746b616d65723c2f686f6d653e292e2048657420766572736368696c2069732064617420616c6c65656e20646520686f6f666474696a64206765746f6f6e6420776f726474206f7020646520737461747573706167696e612e205a6f64726120646520686f6f666474696a64206f7020697320776f7264742064652065787472612074696a6420776565726765676576656e207a6f616c7320696e206465206f6d73636872696a76696e672076616e2064696e67656e20696e2064652077616368746b616d65722e3c2f6c693e0d0a3c2f756c3e0d0a0d0a48657420697320686574207665726d656c64656e2077616172642064617420686574203c623e736f72746572656e2076616e2064652070617274696a6c696a73743c2f623e206f7020646974206d6f6d656e74206e696574206d6f67656c696a6b2069732c206f6d64617420646520766f6c676f7264652076617374206d6f6574207a697474656e2061616e2022476120646f6f72206e61617220766f6c67656e64652070617274696a22206f702064652062696a6265686f72656e64652070617274696a2d706167696e6127732c20776174206e6965742065636874206d616b6b656c696a6b206973206f6d20746520646f656e20656e2062696a6e6120616c74696a64206e69657420657267206566666963692665756d6c3b6e742062696a20686574206765627275696b2076616e2065656e20616e6465726520736f72746572696e672e, 'Y', '2016-07-30 11:32:43'),
(630, 11, 0x5370656c6572732077696e73742f7665726c69657320726174696f206b616e20657874726120696e666f726d6174696520676576656e206f766572206465206875696469676520726174696e672e0d0a0d0a57616e6e6565722065656e207370656c657220616c20656e6b656c65207370656c6c656e2068656566742067657065656c642064696520766f6f7220646520726174696e67206d656574656c6c656e2c2064616e2067656566742065656e207761617264652076616e20726f6e6420646520353020252061616e20646174207a696a6e20726174696e67207374616269656c2069732e2045656e207761617264652067726f7465722064616e20373520252069732065656e20696e6469636174696520646174206465206875696469676520726174696e67207465207a77616b2069732c206b6c65696e65722064616e20323520252064756964742065726f7020646174206465206875696469676520726174696e672077616172736368696a6e6c696a6b2065656e20746520686f676520737065656c737465726b74652061616e67656566742e0d0a0d0a42657365662065636874657220646174206469742070657263656e74616765206b616e206d69736c656964656e2e2045656e20766f6f726265656c643a205374656c2c2065656e207370656c6572207072657374656572646520676f656420696e207665656c20397839207370656c6c656e2c206d616172207665726c6f6f72206465206d65657374652031397831392070617274696a656e2e204f66206572207a696a6e206e6f67206e696574207665656c206d656574656c6c656e64652070617274696a656e206d6161722077656c207665656c20646965206e69657420766f6f7220646520726174696e67206d656574656c6c656e2e204f6d2065656e20676f65646520696e6472756b207465206b72696a67656e206d6f6574206a65206465206c696a73742076616e2075697467657065656c64652070617274696a656e2062656b696a6b656e2e, 'Y', '2004-02-07 17:09:55'),
(633, 11, 0x5761742069732065656e2028226576656e22292070617274696a206d6574206e69676972693f, 'Y', '2004-02-07 17:40:34'),
(635, 11, 0x576161726f6d20737461616e20736f6d6d696765206765627275696b657273206e69657420696e206465206765627275696b6572736c696a73743f, 'Y', '2004-02-07 17:09:55'),
(692, 11, '', 'N', '2004-02-07 17:09:55'),
(694, 11, 0x576174207a696a6e2062656b656b656e2f6f706765766f6c676465207370656c6c656e3f, 'Y', '2013-01-11 22:35:35'),
(696, 11, '', 'Y', '2004-02-07 17:09:55'),
(697, 11, 0x4e65757472616c65206b7275697370756e74656e206f702068657420626f72642e2044697420226e69656d616e64736c616e64222074656c74206e69657420616c732065656e2070756e7420766f6f722065656e2076616e206465207370656c6572732e, 'Y', '2004-02-07 17:09:55'),
(698, 11, 0x5672696a68656964, 'Y', '2004-02-07 17:09:55'),
(699, 11, 0x45656e206c656567206b7275697370756e7420646174206772656e73742061616e2065656e20737465656e206f66206b657474696e672e, 'Y', '2004-02-07 17:09:55'),
(703, 11, 0x45656e207a6574206469652065656e20737465656e206f66207374656e656e2076616e677420696e2065656e20736f6f7274206e65742e, 'N', '2004-02-07 17:09:55'),
(705, 11, 0x45656e207665656c20766f6f726b6f6d656e6465206f70656e696e67207761617262696a2065656e207370656c65722064726965207374657270756e74656e206f702065656e2072696a202861616e2065656e206b616e74292062657a65742e, 'N', '2004-02-07 17:09:55'),
(710, 11, 0x57616172206b616e20696b20476f206c6572656e3f, 'Y', '2004-02-07 17:09:55'),
(712, 11, 0x486f65207765726b7420447261676f6e277320726174696e67207379737465656d3f, 'N', '2004-02-07 17:09:55'),
(748, 11, 0x4b616e20696b206869657220746f726e6f6f69656e206f7267616e69736572656e3f, 'Y', '2004-11-23 09:39:11'),
(963, 11, 0x57617420626574656b656e742065656e20726f64652061636874657267726f6e6420696e2064652077616368746b616d65723f, 'Y', '2004-02-07 17:09:55'),
(964, 11, 0x45656e20726f64652061636874657267726f6e6420696e206465206b6f6c6f6d2022726174696e672072616e67652220626574656b656e7420646174206a65206875696469676520726174696e67206e6965742062696e6e656e2068657420676577656e7374652062657265696b2076616c742e204a65206b756e7420646974207370656c61616e626f64206e6965742061616e6e656d656e2e, 'N', '2004-02-07 17:09:55'),
(967, 11, 0x486f65206b616e20696b206c696420776f7264656e2076616e2065656e207465616d206d65742065656e2067656465656c64206163636f756e743f, 'Y', '2004-11-23 09:39:11'),
(634, 11, 0x223c693e4576656e3c2f693e2220626574656b656e74207a6f6e646572203c6120687265663d222f6661712e7068703f726561643d74266361743d33353723456e7472793937223e68616e64696361703c2f613e2e203c693e4e69676972693c2f693e20626574656b656e7420646174206a65206c6f6f74206f6d206465206b6c6575722e, 'Y', '2004-02-07 17:40:34'),
(636, 11, 0x4e6f726d616c6974657220737461616e20657220616c6c65656e2061637469657665207370656c657273206f70206465206c696a73742e204f6e64657261616e206465203c6120687265663d222f75736572732e70687022207461726765743d225f626c616e6b223e6765627275696b6572733c2f613e20706167696e612c2073746161742065656e203c6120687265663d222f75736572732e7068703f73686f77616c6c3d3122207461726765743d225f626c616e6b223e6c61617420616c6c65206765627275696b657273207a69656e3c2f613e206c696e6b2e, 'N', '2004-02-07 17:40:34'),
(662, 11, 0x57616e6e6565722074776565207370656c65727320696e20737065656c737465726b746520766572736368696c6c656e2c2064616e206b756e6e656e207a696a202d2020656e207a6f20686f6f727420686574202d206166737072656b656e20646174206465207a77616b6b657265207370656c65722065656e20766f6f72676966742076616e2068616e6469636170207374656e656e206b72696a67742e2044657a65207a7761727465207374656e656e20636f6d70656e736572656e2068657420766572736368696c20696e20476f2076616172646967686569642e204d657420646520676f6564652068616e646963617020697320686574207370656c20696e746572657373616e7465722e204265696465207370656c6572732068656262656e2065656e2067656c696a6b65206b616e73206f6d2074652077696e6e656e2e0d0a0d0a4f702031397831392069732064652068616e64696361702067656c696a6b2061616e2068657420766572736368696c20696e2072616e672e20566f726f7220616e6465726520626f72642d67726f6f747465732068616e746565727420447261676f6e2065656e2061616e6765706173746520746162656c2e0d0a0d0a547261646974696f6e65656c20706c6161747374206d656e2064652068616e6469636170207374656e656e206f70206465203c4120485245463d222f6661712e7068703f726561643d74266361743d3323456e7472793839223e686f7368693c2f413e20766f6c67656e732065656e207661737420706174726f6f6e20766f6f722069656465722061616e74616c2e204f7020447261676f6e206d6167207a77617274206465207374656e656e206e6161722062656c696576656e20706c61617473656e2e, 'Y', '2004-02-07 17:40:34'),
(664, 11, 0x3c693e436f6e76656e74696f6e656c652068616e64696361703c2f693e206765627275696b742068657420766572736368696c20696e2072616e672028656e20646520626f726467726f6f74746529206f6d206865742061616e74616c2068616e64696361707374656e656e20746520626570616c656e2e204465203c6120687265663d222f6661712e7068703f726561643d74266361743d3323456e74727939223e4b6f6d693c2f613e20697320302e3520666f72207370656c6c656e206d65742068616e64696361702c20656e20362e3520766f6f72207370656c6c656e207a6f6e6465722068616e64696361702e0d0a0d0a3c693e4a75697374652068616e64696361703c2f693e206765627275696b742065656e2066696a6e65726520696e64656c696e6720766f6f7220646520626570616c696e672076616e206465206b6f6d6920282e2e2e2c20312e352c20322e302c20322e352c202e2e2e29206f6d207a6f206469636874206d6f67656c696a6b2062696a2065656e2035303a35302077696e73746b616e73207465206b6f6d656e2e, 'Y', '2004-02-07 17:40:34'),
(707, 11, 0x53686963686f206973206465204a6170616e65736520476f207465726d20766f6f72203c6120687265663d222f70686f72756d2f726561642e7068703f663d3326693d31393626743d313936223e6c61646465723c2f613e2e, 'N', '2004-02-07 17:40:34'),
(973, 11, 0x486f65206b616e20696b206d65742065656e2062657061616c64206163636f756e7420696e6c6f6767656e3f, 'Y', '2004-02-07 17:40:34'),
(981, 11, 0x576174207a696a6e20447261676f6e2062657269636874656e3f, 'N', '2004-02-07 17:40:34'),
(983, 11, 0x576174207a696a6e20626572696368746d617070656e3f, 'Y', '2004-02-14 11:49:38'),
(985, 11, 0x486f65206b616e20696b20447261676f6e2061616e70617373656e2061616e206d696a6e2077656e73656e3f, 'Y', '2004-02-07 17:40:34'),
(987, 11, 0x496b2062656e206e69657577206f7020447261676f6e2e2057656c6b652072616e672076756c20696b20696e3f, 'Y', '2004-11-23 09:39:11'),
(989, 11, 0x4d61616b74206865742075697420616c7320696b206d65742065656e20227665726b6565726465222072616e6720626567696e3f, 'Y', '2004-02-07 17:40:34'),
(995, 11, 0x57617420697320447261676f6e2773207765656b656e64206b6c6f6b3f, 'Y', '2004-02-07 17:40:34'),
(1001, 11, 0x486f65206d65657420447261676f6e2064652074696a643f, 'Y', '2004-02-07 17:40:34'),
(687, 11, 0x486574207370656c656e2076616e20646520766f6c67656e6465207a6574203c623e6e6965743c2f623e20616c732065656e206c6f6b61616c20616e74776f6f7264206f70206465206c616174737465207a65742076616e20646520746567656e7374616e6465722e, 'N', '2004-11-23 09:39:11'),
(971, 11, 0x57656c6b65207465616d206163636f756e7473207a696a6e2065723f, 'N', '2004-02-07 18:04:28'),
(972, 11, 0x3c756c3e3c6c693e436f6e74726f6c656572206f6620657220616c20696e666f726d61746965206f766572206465206765766f6e64656e2070726f6772616d6d656572666f757420286275672920696e2064652046415120656e20666f72756d732073746161742e0d0a4865742069732061616e20746520726164656e206f6d20696e20646520666f72756d73207465207a6f656b656e2c206565726465722064616e207a6520616c6c656d61616c207465206f7665726c6f70656e2e20457220776f726474206e616d656c696a6b20766565206765706f737420656e20736f6d7320696e2068657420666f75746520666f72756d2e0d0a3c6c693e4c6567206a652070726f626c65656d2c20696e2064657461696c20656e206c696566737420696e2068657420456e67656c732c2075697420696e20686574203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f70686f72756d2f6c6973742e7068703f663d32223e537570706f727420666f72756d3c2f613e2c206f660d0a3c6c693e5374757572206465207569746c65672076616e206a652070726f626c65656d2c20696e2068657420456e67656c73206e61617220e9e96e2076616e206465203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f6661712e7068703f726561643d74266361743d313923456e7472793836223e206f6e7477696b6b656c616172733c2f613e2076616e20646520447261676f6e2e3c2f756c3e, 'N', '2005-07-19 16:26:10'),
(975, 11, 0x486f65206c6f6720696b20696e206d6574206d696a6e206163636f756e743f, 'Y', '2004-02-07 18:04:28'),
(979, 11, 0x486f65207765726b7420646520636f6d6d756e696361746965206d65742065656e207465616d202867656465656c6465206163636f756e74293f, 'Y', '2004-11-23 09:39:11'),
(980, 11, 0x4465206d6565737465207465616d206163636f756e74732068656262656e2065656e2022726563656e742064697363757373696f6e222062657269636874666f6c646572206f702068756e20737461747573706167696e612e, 'Y', '2004-11-23 09:39:11'),
(986, 11, 0x4f6e64657261616e206465206d656573746520706167696e6127732069732065656e20666f726d756c6965722c2077616172206a65206578747261206765676576656e73206d6565206b756e7420746f6e656e2e20536f72746572656e206b616e20646f6f72206465206b6f6c6f6d746974656c2061616e207465206b6c696b6b656e2e204f6e676577656e737465206b6f6c6f6d6d656e207665726477696a6e656e20646f6f72206465206b6c65696e6520726f646520227822206e61617374206465206b6f6c6f6d746974656c2061616e207465206b6c696b6b656e2e, 'N', '2004-02-07 18:04:28'),
(756, 11, 0x416667616e697374616e, 'Y', '2004-02-07 18:04:28'),
(757, 11, 0x416c62616e69eb, 'Y', '2004-02-07 18:04:28'),
(758, 11, 0x416c676572696a65, 'Y', '2004-02-07 18:04:28'),
(759, 11, '', 'Y', '2007-06-04 15:49:02'),
(761, 11, '', 'Y', '2007-06-04 15:49:02'),
(762, 11, 0x416e746967756120656e2042617262756461, 'N', '2004-02-07 18:04:28'),
(763, 11, 0x417267656e74696e69eb, 'Y', '2004-02-07 18:04:28'),
(764, 11, 0x41726d656e69eb, 'Y', '2004-02-07 18:04:28'),
(765, 11, 0x4175737472616c69eb, 'Y', '2004-02-07 18:04:28'),
(766, 11, 0x4f6f7374656e72696a6b, 'Y', '2004-02-07 18:04:28'),
(767, 11, 0x417a6572626569647a6a616e, 'Y', '2004-02-08 00:17:07'),
(769, 11, 0x4261687265696e, 'Y', '2004-02-08 00:17:07'),
(768, 11, 0x426168616d612773, 'Y', '2004-02-13 14:36:30'),
(770, 11, '', 'Y', '2007-06-04 15:49:02'),
(771, 11, '', 'Y', '2007-06-04 15:49:02'),
(772, 11, 0x5769742d5275736c616e64, 'Y', '2004-02-07 18:04:28'),
(760, 11, '', 'Y', '2007-06-04 15:49:02'),
(773, 11, 0x42656c6769eb, 'Y', '2004-02-07 18:06:59'),
(774, 11, '', 'Y', '2007-06-04 15:49:02'),
(775, 11, '', 'Y', '2007-06-04 15:49:02'),
(777, 11, 0x426f6c697669eb, 'Y', '2004-02-07 18:06:59'),
(779, 11, '', 'Y', '2007-06-04 15:49:02'),
(780, 11, 0x4272617a696c69eb, 'Y', '2004-02-07 18:06:59'),
(782, 11, 0x42756c676172696a65, 'Y', '2004-02-07 18:06:59'),
(783, 11, '', 'Y', '2007-06-04 15:49:02'),
(784, 11, '', 'Y', '2007-06-04 15:49:02'),
(787, 11, '', 'Y', '2007-06-04 15:49:02'),
(791, 11, 0x4368696c69, 'Y', '2004-02-07 18:06:59'),
(792, 11, '', 'Y', '2007-06-04 15:49:02'),
(793, 11, '', 'Y', '2007-06-04 15:49:02'),
(988, 11, 0x42696a2061616e6d656c64696e672076726161677420447261676f6e202844475329206a65206f66206a6520656c6465727320286a6520636c75622c2065656e20616e646572207365727665722c20746f75726e6f6f69656e2c2065656e20676f20626f6e64292065656e2072616e6720686562742e20416c73206a652064696520696e76756c742c207665727461616c7420447261676f6e2064617420696e2065656e20737461727477616172646520766f6f72206465204447532072616e672e, 'N', '2004-02-07 19:33:59'),
(990, 11, 0x486574206973206e696574207a6f206865656c2062656c616e6772696a6b2e20447261676f6e2070617374206865742061616e207a6f647261206a65207370656c6c656e20756974737065656c742e204e61206f6e6765766565722076696a66207370656c6c656e20286f6e67657665657229207a6974206a65206f70206a6520226563687465222072616e672e0d0a0d0a416c73206a6520656368746572203c693e6d6574206f707a65743c2f693e2065656e207665726b65657264652072616e67206f7067656566742c2064616e207a756c206a65206a6520746567656e7374616e64657220656e20616e64657265207370656c657273206572676572656e2c2074657277696a6c206a65206c6174657220746f6368206d6574207a65207a756c742077696c6c656e207370656c656e2e0d0a0d0a447261676f6e20676565667420627275696b626172652072616e67656e2c206d6161722068656566742064616172766f6f72206a6f7577206d6564657765726b696e67206e6f6469672e2047656c696576652065656e20726564656c696a6b6520737461727477616172646520696e2074652076756c6c656e2e2044616e6b2062696a20766f6f72626161742e, 'N', '2004-11-23 09:39:11'),
(991, 11, 0x4c6f6f7074206465206b6c6f6b2076616e20646520746567656e7374616e6465722077616e6e656572206465206d696a6e6520697320676573746f70743f, 'Y', '2004-02-07 18:25:24'),
(992, 11, 0x416c73206a696a2061616e207a65742062656e743a204e65652e0d0a0d0a57616e6e656572206a6520746567656e7374616e6465722061616e2064652062657572742069733a204a612c20766f6f726f7067657374656c642064617420686574206e696574207a696a6e20736c61617074696a642c207765656b656e6474696a642028696e2065656e207370656c2077616172696e2064652074696a64206e69657420696e20686574207765656b656e6420646f6f7274656c7429206f662076616b616e74696574696a642069732e, 'Y', '2004-02-07 18:25:24'),
(993, 11, 0x4b616e20696b207a657474656e2074657277696a6c206d696a6e206b6c6f6b207374696c73746161743f, 'Y', '2004-02-07 18:25:24'),
(994, 11, 0x4a65206b616e203c693e616c74696a643c2f693e2065656e207a657420646f656e202d206f6f6b206765647572656e6465206a6520736c61617074696a642c206a652076616b616e7469657320656e20696e20686574207765656b656e642e, 'Y', '2004-02-07 19:25:09');
INSERT INTO `Translations` (`Original_ID`, `Language_ID`, `Text`, `Translated`, `Updated`) VALUES
(996, 11, 0x416c73206a652065656e207370656c2073746172742c20686562206a65206465206d6f67656c696a6b68656964206f6d206465206b6c6f6b206f70207a61746572646167656e20656e207a6f6e646167656e203c693e6e6965743c2f693e20646f6f72207465206c6174656e206c6f70656e2e, 'N', '2004-11-23 09:39:11'),
(999, 11, 0x4d61616b742068657420756974206f6620696b206d657420302c352070756e74656e2077696e2c206d6574203130302c20646f6f722074696a64206f66206f6d646174206d696a6e20746567656e7374616e646572206f7067656566743f, 'Y', '2004-02-07 18:25:24'),
(1000, 11, 0x566f6f7220447261676f6e732720726174696e677379737465656d206d61616b7420686574206e696574207569742e2045656e206765776f6e6e656e2070617274696a2069732065656e206765776f6e6e656e2070617274696a2c207665726c6f72656e206973207665726c6f72656e2e, 'Y', '2004-02-07 18:25:24'),
(1002, 11, 0x4465206b6c65696e73742067653c693e746f6f6e64653c2f693e2065656e686569642076616e2074696a642069732065656e207575722e203c693e496e7465726e3c2f693e20776f7264656e206465206c6f70656e6465207370656c6b6c6f6b6b656e206965646572652076696a66206d696e7574656e2062696a67657765726b742e, 'Y', '2004-02-07 18:25:24'),
(797, 11, '', 'Y', '2007-06-04 15:49:02'),
(800, 11, '', 'Y', '2007-06-04 15:49:02'),
(801, 11, '', 'Y', '2007-06-04 15:49:02'),
(802, 11, 0x54736a65636869eb, 'Y', '2004-02-07 18:25:24'),
(803, 11, 0x44656e656d61726b656e, 'Y', '2004-02-07 18:25:24'),
(808, 11, '', 'Y', '2007-06-04 15:49:02'),
(809, 11, 0x456779707465, 'Y', '2004-02-07 18:25:24'),
(810, 11, '', 'Y', '2007-06-04 15:49:02'),
(812, 11, '', 'Y', '2007-06-04 15:49:02'),
(813, 11, 0x4573746c616e64, 'Y', '2004-02-07 18:26:54'),
(815, 11, '', 'Y', '2007-06-04 15:49:02'),
(816, 11, '', 'Y', '2007-06-04 15:49:02'),
(817, 11, 0x4672616e6b72696a6b, 'Y', '2004-02-07 18:26:54'),
(818, 11, '', 'Y', '2007-06-04 15:49:02'),
(819, 11, '', 'Y', '2007-06-04 15:49:02'),
(822, 11, '', 'Y', '2007-06-04 15:49:02'),
(823, 11, 0x477269656b656e6c616e64, 'Y', '2004-02-07 18:26:54'),
(824, 11, '', 'Y', '2007-06-04 15:49:02'),
(825, 11, '', 'Y', '2007-06-04 15:49:02'),
(826, 11, '', 'Y', '2007-06-04 15:49:02'),
(820, 11, 0x47656f726769eb, 'Y', '2004-02-07 18:29:13'),
(821, 11, 0x44756974736c616e64, 'Y', '2004-02-07 18:29:13'),
(827, 11, 0x4775696e65652d426973736175, 'Y', '2004-02-07 18:29:13'),
(828, 11, '', 'Y', '2007-06-04 15:49:02'),
(829, 11, 0x4861ef7469, 'Y', '2004-02-07 18:29:13'),
(830, 11, '', 'Y', '2007-06-04 15:49:02'),
(831, 11, '', 'Y', '2007-06-04 15:49:02'),
(832, 11, 0x486f6e676172696a65, 'Y', '2004-02-07 18:29:13'),
(833, 11, 0x494a736c616e64, 'Y', '2004-02-07 18:29:13'),
(834, 11, 0x496e6469eb, 'Y', '2004-02-13 14:36:30'),
(835, 11, 0x496e646f6e6573ef65, 'Y', '2004-02-07 18:29:13'),
(836, 11, '', 'Y', '2007-06-04 15:49:02'),
(837, 11, 0x4972616b, 'Y', '2004-02-07 18:29:13'),
(838, 11, 0x4965726c616e64, 'Y', '2004-02-07 18:29:13'),
(839, 11, '', 'Y', '2007-06-04 15:49:02'),
(798, 11, 0x49766f6f726b757374, 'Y', '2004-02-07 18:32:03'),
(799, 11, 0x4b726f6174ef65, 'Y', '2004-02-07 18:32:03'),
(806, 11, 0x446f6d696e696361616e73652052657075626c69656b, 'Y', '2004-02-07 18:32:03'),
(811, 11, 0x45717561746f726961616c204775696e6561, 'Y', '2004-02-07 18:32:03'),
(814, 11, 0x457468696f70ef65, 'Y', '2004-02-07 18:32:03'),
(840, 11, 0x4974616cef65, 'Y', '2004-02-07 18:32:03'),
(841, 11, '', 'Y', '2007-06-04 15:49:02'),
(843, 11, 0x4a6f7264616eef65, 'Y', '2004-02-07 18:32:03'),
(845, 11, 0x4b656e6961, 'Y', '2004-02-13 14:36:30'),
(849, 11, 0x4b6f6577656974, 'Y', '2004-02-07 18:32:03'),
(851, 11, '', 'Y', '2007-06-04 15:49:02'),
(852, 11, 0x4c65746c616e64, 'Y', '2013-01-11 17:00:03'),
(853, 11, 0x4c6962616e6f6e, 'Y', '2004-02-07 18:32:03'),
(854, 11, '', 'Y', '2007-06-04 15:49:02'),
(842, 11, '', 'Y', '2007-06-04 15:49:02'),
(855, 11, '', 'Y', '2007-06-04 15:49:02'),
(857, 11, '', 'Y', '2007-06-04 15:49:02'),
(859, 11, 0x4c7578656d62757267, 'Y', '2004-02-07 18:34:35'),
(861, 11, 0x4d616365646f6eef65, 'Y', '2004-02-07 18:34:35'),
(862, 11, '', 'Y', '2007-06-04 15:49:02'),
(863, 11, '', 'Y', '2007-06-04 15:49:02'),
(864, 11, 0x4d616c656973ef65, 'Y', '2004-02-07 18:34:35'),
(865, 11, 0x4d616c65646976656e, 'Y', '2004-02-07 18:34:35'),
(866, 11, '', 'Y', '2007-06-04 15:49:02'),
(867, 11, '', 'Y', '2007-06-04 15:49:02'),
(868, 11, 0x4d61727368616c6c2065696c616e64656e, 'Y', '2004-02-13 14:36:30'),
(869, 11, 0x4d6175726574616eef65, 'Y', '2004-02-07 18:34:35'),
(870, 11, '', 'Y', '2007-06-04 15:49:02'),
(871, 11, '', 'Y', '2007-06-04 15:49:02'),
(872, 11, 0x4d6963726f6e6573ef65, 'Y', '2004-02-07 18:34:35'),
(876, 11, 0x4d61726f6b6b6f, 'Y', '2004-02-07 18:37:42'),
(877, 11, '', 'Y', '2007-06-04 15:49:02'),
(879, 11, 0x4e616d6962ef65, 'Y', '2004-02-07 18:37:42'),
(881, 11, '', 'Y', '2007-06-04 15:49:02'),
(882, 11, 0x4e656465726c616e64, 'Y', '2004-02-07 18:37:42'),
(883, 11, 0x4e696575772d5a65656c616e64, 'Y', '2004-02-13 14:36:30'),
(884, 11, '', 'Y', '2007-06-04 15:49:02'),
(887, 11, 0x4e6f6f72776567656e, 'Y', '2004-02-07 18:37:42'),
(888, 11, '', 'Y', '2007-06-04 15:49:02'),
(874, 11, '', 'Y', '2007-06-04 15:49:02'),
(875, 11, 0x4d6f6e676f6cef65, 'Y', '2004-02-07 18:38:58'),
(889, 11, '', 'Y', '2007-06-04 15:49:02'),
(892, 11, '', 'Y', '2007-06-04 15:49:02'),
(893, 11, 0x5061706f65612d4e696575772d4775696e6561, 'Y', '2013-01-11 17:15:37'),
(894, 11, '', 'Y', '2007-06-04 15:49:02'),
(895, 11, '', 'Y', '2007-06-04 15:49:02'),
(896, 11, 0x46696c6c697070696a6e656e, 'Y', '2004-02-07 18:38:58'),
(897, 11, 0x506f6c656e, 'Y', '2004-02-07 18:38:58'),
(898, 11, '', 'Y', '2007-06-04 15:49:02'),
(899, 11, '', 'Y', '2007-06-04 15:49:02'),
(901, 11, 0x526f656d656eef65, 'Y', '2004-02-07 18:40:33'),
(902, 11, 0x5275736c616e64, 'Y', '2004-02-07 18:40:33'),
(905, 11, 0x53616e7461204c75636961, 'Y', '2004-02-07 18:40:33'),
(907, 11, '', 'Y', '2007-06-04 15:49:02'),
(908, 11, '', 'Y', '2007-06-04 15:49:02'),
(910, 11, 0x53616f6564692d41726162ef65, 'Y', '2004-02-07 18:41:24'),
(911, 11, '', 'Y', '2007-06-04 15:49:02'),
(913, 11, 0x5365796368656c6c656e, 'Y', '2004-02-07 18:41:24'),
(914, 11, '', 'Y', '2007-06-04 15:49:02'),
(900, 11, '', 'Y', '2007-06-04 15:49:02'),
(915, 11, '', 'Y', '2007-06-04 15:49:02'),
(916, 11, 0x536c6f76616b696a65, 'Y', '2004-02-13 14:36:30'),
(917, 11, 0x536c6f76656eef65, 'Y', '2004-02-07 18:42:19'),
(918, 11, 0x536f6c6f6d6f6e2065696c616e64656e, 'Y', '2004-02-07 18:42:19'),
(919, 11, 0x536f6d616cef65, 'Y', '2004-02-07 18:42:19'),
(920, 11, 0x5a7569642d416672696b61, 'Y', '2004-02-07 18:42:54'),
(921, 11, 0x5370616e6a65, 'Y', '2004-02-07 18:42:54'),
(922, 11, '', 'Y', '2007-06-04 15:49:02'),
(923, 11, 0x536f6564616e, 'Y', '2004-02-07 18:42:54'),
(924, 11, '', 'Y', '2007-06-04 15:49:02'),
(925, 11, '', 'Y', '2007-06-04 15:49:02'),
(926, 11, 0x5a776564656e, 'Y', '2004-02-07 18:43:26'),
(927, 11, 0x5a7769747365726c616e64, 'Y', '2004-02-07 18:43:26'),
(928, 11, 0x537972ef65, 'Y', '2004-02-07 18:43:26'),
(929, 11, '', 'Y', '2007-06-04 15:49:02'),
(931, 11, '', 'Y', '2007-06-04 15:49:02'),
(932, 11, '', 'Y', '2007-06-04 15:49:02'),
(933, 11, '', 'Y', '2007-06-04 15:49:02'),
(934, 11, '', 'Y', '2007-06-04 15:49:02'),
(935, 11, 0x5472696e6964616420656e20546f6261676f, 'Y', '2004-02-07 18:43:56'),
(936, 11, 0x54756e6573ef65, 'Y', '2004-02-07 18:43:56'),
(937, 11, 0x5475726b696a65, 'Y', '2004-02-07 18:44:34'),
(938, 11, '', 'Y', '2007-06-04 15:49:02'),
(940, 11, 0x4f6567616e6461, 'Y', '2004-02-07 18:44:34'),
(941, 11, 0x4f656b7261ef6e65, 'Y', '2004-02-07 18:44:34'),
(942, 11, 0x566572656e696764652041726162697363686520456d69726174656e, 'Y', '2004-02-07 18:45:26'),
(943, 11, 0x566572656e696764204b6f6e696e6b72696a6b, 'Y', '2004-02-07 18:45:26'),
(944, 11, 0x566572656e696764652053746174656e, 'Y', '2004-02-07 18:45:26'),
(945, 11, '', 'Y', '2007-06-04 15:49:02'),
(946, 11, 0x4f657a62656b697374616e, 'Y', '2004-02-07 18:46:02'),
(948, 11, 0x566174696361616e73746164, 'Y', '2013-01-11 17:01:13'),
(949, 11, '', 'Y', '2007-06-04 15:49:02'),
(951, 11, 0x4a656d656e, 'Y', '2004-02-07 18:46:35'),
(952, 11, '', 'Y', '2007-06-04 15:49:02'),
(953, 11, '', 'Y', '2007-06-04 15:49:02'),
(786, 11, 0x4b616d65726f656e, 'Y', '2004-02-07 18:48:26'),
(788, 11, 0x4b616170205665726465, 'Y', '2004-02-07 18:48:26'),
(789, 11, 0x43656e747261616c2d416672696b61616e73652052657075626c69656b, 'Y', '2004-02-07 18:48:26'),
(790, 11, 0x54736a616164, 'Y', '2004-02-07 18:48:26'),
(795, 11, '', 'Y', '2007-06-04 15:49:02'),
(796, 11, '', 'Y', '2007-06-04 15:49:02'),
(968, 11, 0x4c6565732068756e206765627275696b6572732070726f6669656c20656e207374757572207a652065656e20626572696368742e204a65206b72696a677420686574207761636874776f6f726420616c730d0a3c756c3e0d0a0d0a3c6c693e6a65206875696469676520726174696e672062696e6e656e206865742062657265696b2076616e20686574207465616d2076616c742c0d0a3c6c693e6a6520616c20656e6b656c652028766f6f7220646520726174696e672074656c6c656e6465292070617274696a656e20616620686562742c0d0a3c6c693e68756e2065746971756574746520287a696520686574206765627275696b65727370726f6669656c29206163636570746565727420656e2072657370656374656572742c0d0a3c6c693e6a652062656c6f6f667420686574206e696574207465206d6973627275696b656e2e3c2f756c3e, 'N', '2004-02-07 19:22:56'),
(689, 11, 0x4d65742065656e203c693e64756262656c652070617274696a3c2f693e20626567696e206a65203c623e747765653c2f623e2070617274696a656e2c207a6f6e646572203c6120687265663d222f6661712e7068703f726561643d74266361743d33353723456e7472793937223e68616e64696361703c2f613e2c20746567656e2064657a656c66646520746567656e7374616e6465722e204a6520686562742077697420696e20646520656e6520656e207a7761727420696e20646520616e646572652e, 'N', '2004-02-07 19:55:47'),
(691, 11, 0x45656e2073656e74652d7a65742069732065656e2061616e76616c2c2065656e2062656472656967696e672c2076726167656e64206f6d2065656e206f6e6d696464656c696a6b20616e74776f6f72642e204865742070616b7420696e697469617469656620656e20686574207265636874206f6d207465206b69657a656e207761617220646520766f6c67656e6465207a6574206b6f6d742e0d0a53656e74652069732068657420746567656e6f76657267657374656c64652076616e203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f6661712e7068703f726561643d74266361743d3323456e747279313133223e0d0a676f74650d0a3c2f613e2e0d0a4465207370656c6572206d657420766f6f7268616e64206b616e207a696368207665726f6f726c6f76656e203c6120687265663d222f6661712e7068703f726561643d74266361743d3323456e747279313130223e74656e756b690d0a3c2f613e2028657267656e7320616e6465727329207465207370656c656e2e0d0a4c65747465726c696a6b20626574656b656e74202273656e7465223a2022456572737465202f206c656964656e6465207a6574222e, 'N', '2004-11-23 09:39:11'),
(693, 11, 0x45656e20676f74652d7a65742069732065656e207665726465646967656e6465207a65742065656e20616e74776f6f7264206f702065656e2062656472656967696e672e205a6f276e207a65742070616b74206765656e20696e697469617469656620656e206c61617420646520746567656e7374616e646572206465206b65757a65206f6d20746520626570616c656e207761617220646520766f6c67656e6465207a6574206b6f6d742e20476f74652069732068657420746567656e6f76657267657374656c64652076616e203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f6661712e7068703f726561643d74266361743d3323456e747279313132223e0d0a73656e74650d0a3c2f613e3b206c65747465726c696a6b20626574656b656e742068657420646520226c61676572652068616e64222e, 'N', '2004-11-23 09:39:11'),
(695, 11, 0x486965726d6565206b756e206a652067656d616b6b656c696a6b2070617274696a656e2076616e203c623e616e646572653c2f623e207370656c65727320766f6c67656e2e0d0a0d0a42696a206865742062656b696a6b656e2076616e2065656e207370656c2076616e20616e64657265207370656c657273206b756e206a65206f6e64657261616e202250617274696a206f70766f6c67656e222061616e6b6c696b6b656e206f6d20646174207370656c2061616e206465206c696a737420746f6520746520766f6567656e2e0d0a0d0a4465206c696a7374206b756e206a652062656b696a6b656e20646f6f7220696e206a65203c686f6d65207374617475732e706870223e7374617475733c2f686f6d653e20706167696e61206465206c696e6b2022746f6f6e2062656b656b656e207370656c6c656e2220746520766f6c67656e2e0d0a0d0a45656e732065656e206f706765766f6c6764652070617274696a206265eb696e646967642069732c20737475757220444753206a652065656e2062657269636874206d65742064652065696e6473636f72652e, 'Y', '2013-01-11 22:35:35'),
(711, 11, 0x4e65656d2065656e732065656e206b696a6b6a652062696a203c6120687265663d22687474703a2f2f7777772e63732e6b756c657576656e2e61632e62652f7e6a616e722f676f2f696e7465726163746976652f696e6465782d642e68746d6c22207461726765743d6e65773e4f702065656e20696e74657261637469657665206d616e69657220676f206c6572656e3c2f613e20656e206465204272697469736820476f204173736f63696174696f6e2773203c6120687265663d22687474703a2f2f7777772e62726974676f2e6f72672f696e74726f2f696e74726f2e68746d6c22207461726765743d6e65773e496e74726f64756374696f6e20746f207468652067616d65206f6620476f3c2f613e2e, 'Y', '2004-02-07 19:55:47'),
(785, 11, 0x43616d626f646a61, 'Y', '2013-01-11 16:54:35'),
(2725, 11, 0x566572656e69676465204665646572617469652076616e20506c616e6574656e, 'Y', '2013-01-11 17:03:10'),
(950, 11, '', 'Y', '2007-06-04 15:49:02'),
(984, 11, 0x4d657420646520626572696368746d617070656e206b756e206a652064652062657269636874656e206e6161722077656e73206f7267616e69736572656e2e204a65206b756e742062657269636874656e2076616e206d6170206e616172206d617020766572706c61617473656e2e0d0a0d0a447261676f6e206765656674206f6d20746520626567696e6e656e2064657a65206d617070656e3a200d0a3c756c3e0d0a3c6c693e3c623e416c6c65206f6e7476616e67656e3c2f623e0d0a3c6c693e3c623e486f6f66643c2f623e204f6e7476616e67656e2c2067656c657a656e2062657269636874656e2e0d0a3c6c693e3c623e4e696575773c2f623e204f6e67656c657a656e2062657269636874656e2e0d0a3c6c693e3c623e416e74776f6f7264656e213c2f623e0d0a3c6c693e3c623e5072756c6c656e62616b3c2f623e0d0a3c6c693e3c623e5665727a6f6e64656e3c2f623e0d0a3c2f756c3e0d0a0d0a4a65206b616e206578747261206d617070656e206d616b656e20766961206465202262657765726b206d617070656e22206c696e6b206f6e64657261616e206465203c6120687265663d222f6c6973745f6d657373616765732e70687022207461726765743d225f626c616e6b223e62657269636874656e3c2f613e20706167696e612e, 'Y', '2013-08-27 19:10:40'),
(776, 11, '', 'Y', '2007-06-04 15:49:02'),
(794, 11, 0x436f6d6f72656e, 'Y', '2004-02-08 00:17:07'),
(804, 11, '', 'Y', '2007-06-04 15:49:02'),
(805, 11, '', 'Y', '2007-06-04 15:49:02'),
(846, 11, '', 'Y', '2007-06-04 15:49:02'),
(850, 11, 0x4b697267697aef65, 'Y', '2004-02-08 00:17:07'),
(856, 11, 0x4c6962ef65, 'Y', '2004-02-08 00:17:07'),
(858, 11, 0x4c6974746f7577656e, 'Y', '2004-02-08 00:17:07'),
(873, 11, 0x4d6f6c646176ef65, 'Y', '2004-02-08 00:17:07'),
(878, 11, '', 'Y', '2007-06-04 15:49:02'),
(880, 11, '', 'Y', '2007-06-04 15:49:02'),
(885, 11, '', 'Y', '2007-06-04 15:49:02'),
(886, 11, '', 'Y', '2007-06-04 15:49:02'),
(890, 11, '', 'Y', '2007-06-04 15:49:02'),
(903, 11, '', 'Y', '2007-06-04 15:49:02'),
(904, 11, 0x5361696e74204b6974747320656e204e65766973, 'Y', '2004-02-08 00:17:07'),
(906, 11, 0x5361696e742056696e63656e7420656e206465204772656e6164696e6573, 'Y', '2004-02-08 00:17:07'),
(909, 11, 0x53e36f20546f6de920656e205072696e63697065, 'Y', '2004-02-08 00:17:07'),
(930, 11, 0x5461647a6a696b697374616e, 'Y', '2004-02-08 00:17:07'),
(939, 11, '', 'Y', '2007-06-04 15:49:02'),
(947, 11, '', 'Y', '2007-06-04 15:49:02'),
(982, 11, 0x4465207370656c657273206b756e6e656e206f702064697665727365206d616e696572656e206d657420656c6b61617220636f6d6d756e69636572656e2e0d0a3c756c3e0d0a3c6c693e6865742076657273747572656e2076616e2065656e203c686f6d65206d6573736167652e7068703f6d6f64653d4e65774d6573736167653e626572696368743c2f686f6d653e6e6161722065656e2062657061616c6465206765627275696b657220646f6f72206765627275696b207465206d616b656e2076616e20447261676f6e277320203c686f6d65206661712e7068703f726561643d74266361743d33363023456e7472793336303e62657269636874656e7379737465656d3c2f686f6d653e2c0d0a3c6c693e65656e206265726963687420696e20e9e96e2076616e20447261676f6e2773203c6120687265663d222f70686f72756d2f22207461726765743d225f626c616e6b223e666f72756d733c2f613e20706c61617473656e2c0d0a3c6c693e3c686f6d65206661712e7068703f726561643d74266361743d33363523456e74727937353e636f6d6d656e746161723c2f686f6d653e20676576656e2062696a2068657420646f656e2076616e2065656e207a65740d0a3c2f756c3e0d0a0d0a3c623e4c6574206f703a3c2f623e20616c6c652062657269636874656e20626c696a76656e207065726d616e656e74206265737461616e206f70206465207365727665722c207a656c6620616c73207a65207569742062657269636874656e6c696a7374656e20776f7264656e2076657277696a646572642e, 'Y', '2013-01-14 11:43:09'),
(974, 11, 0x4a65206b756e742065656e20616c696173206d616b656e20766f6f7220447261676f6e2773203c6120687265663d222f7374617475732e70687022207461726765743d225f626c616e6b223e2f7374617475732e7068703c2f613e206d6574203c753e2f6c6f67696e2e7068703f7573657269643d3c623e6a6f75772d67656275696b6572732d49443c2f623e267061737377643d3c623e6a652d7761636874776f6f72643c2f623e0d0a3c2f753e2e0d0a0d0a42657365662064617420686574206f70736c61616e2076616e2065656e207761636874776f6f726420696e206b6c617265207461616c2065656e207665696c6967686569647372697369636f20696e686f7564742e20536c612064657a652075726c2d616c69617320647573206e696574206f7020696e2065656e20686f6d652d706167652c206f702065656e206f70656e6261726520636f6d70757465722c20656e7a2e, 'Y', '2004-02-08 12:46:07'),
(976, 11, 0x3c693e4e6f67206765656e2075697467657765726b742046415120616e74776f6f72642c202d736f7272792d2c2077656c2065656e207061617220737465656b776f6f7264656e3a3c2f693e0d0a0d0a4c6f67696e20766961203c6120687265663d222f22207461726765743d225f626c616e6b223e447261676f6e277320686f6f666420706167696e613c2f613e3b20657220776f7264742065656e20636f6f6b6965206f70206a65207379737465656d2067657a6574202864617420626c696a667420333020646167656e2067656c646967293b2076756c206a6520656d61696c20616472657320696e20766f6f722068657420676576616c206a65206a65207761636874776f6f726420766572676565743b20626f6f6b6d61726b206465203c6120687265663d222f7374617475732e70687022207461726765743d225f626c616e6b223e2f7374617475732e7068703c2f613e20706167696e613b20766f6f72206465207665696c6967686569643a20446520226c6f676f7574206c696e6b222076657277696a646572742068657420636f6f6b69652e, 'Y', '2004-11-23 09:39:11'),
(685, 11, 0x48657420746f6f6e7420686f652064696368742064652072616e672076616e206465206765627275696b65722069732062696a20646520646566696e697469652076616e2072616e6720656e2073636f726520697320766f6c67656e7320447261676f6e2e0d0a0d0a57616e6e6565722065656e206e6965757765207370656c6572207a696a6e20696e697469eb6c6520476f2d72616e6720696e6765656674207765657420447261676f6e206e6f67206e696574206f6620646974206f76657265656e6b6f6d74206d657420646520447261676f6e2d676f2d72616e672e204572206973206e696574207a6f6965747320616c732065656e20776572656c6477696a646520476f2d72616e672e20447261676f6e2070726f6265657274202d7a6f20676f65642068657420676161742d206f6d2065656e20626574726f75776261617220656e2076657267656c696a6b626172652072616e672061616e2074652062696564656e2e20446520627265656474652076616e20646520626c617577652062616e64206475696474206e6965747320616e646572732061616e2064616e20686f6520626574726f75776261617220447261676f6e2064656e6b74206461742064652072616e672069732e, 'N', '2004-02-13 14:26:21'),
(749, 11, 0x4f7267616e6973656572206765727573742065656e20656967656e20746f726e6f6f692e204f6d2065656e20746f75726e6f6f692061616e207465206b6f6e646967656e206765627275696b20732e762e702e20686574203c6120687265663d222f70686f72756d2f6c6973742e7068703f663d34223e447261676f6e2064697363757373696f6e20666f72756d3c2f613e2e0d0a447261676f6e207a616c206a652068656c70656e20646f6f722072656c6576616e7465206c696e6b732061616e2064652046415120746f6520746520766f6567656e2e, 'Y', '2004-11-23 09:39:11'),
(713, 11, 0x44652072616e672076616e2065656e207370656c657220656e20646520696e7374656c6c696e67656e2076616e2065656e207370656c20626570616c656e203c623e696e207072696e636970653c2f623e2077696520686574207370656c207a616c2077696e6e656e2e205a6f2068656262656e207370656c657273206d6574206465207a656c6664652072616e672065656e206576656e2067726f7465206b616e73206f6d2065656e207370656c2074652077696e6e656e2c2074657277696a6c2065656e2032306b79752d7370656c657220736c6563687473207a656c64656e2065656e206e6965742d68616e6469636170207370656c207a616c2077696e6e656e20746567656e2065656e20737465726b657265207370656c657220286c6167657265206b7975206f662064616e2d7370656c6572292e0d0a0d0a48657420616c676f7269746d65206f6d2064652072616e672061616e2074652070617373656e20686f75647420686965722072656b656e696e67206d65652e204865742076657267656c696a6b74206865742076657277616368746520726573756c74616174206d65742068657420656368746520726573756c746161742e20416c7320686574207370656c2027766f6f727370656c62616172272065696e64696774207a616c20657220736c65636874732065656e206b6c65696e652061616e70617373696e6720676562657572656e2061616e2064652073636f72652e204f6d67656b65657264207a616c2065656e206f6e766572776163687465206f76657277696e6e696e67207665656c20696e766c6f65642068656262656e206f702064652073636f72652076616e206265696465207370656c6572732e, 'N', '2004-02-13 14:30:51'),
(1003, 4, 0x4261736b69736368, 'Y', '2004-02-14 19:38:51'),
(741, 4, 0x416c6c67656d65696e, 'Y', '2004-02-14 19:50:28'),
(246, 18, '', 'Y', '2012-08-22 20:48:45'),
(370, 18, 0x53ec, 'Y', '2004-02-18 01:18:18'),
(371, 18, 0x4e6f, 'Y', '2004-02-18 01:18:18'),
(372, 18, '', 'N', '2012-08-22 20:48:45'),
(373, 18, 0x496e76697461206c277574656e7465, 'Y', '2004-02-18 01:18:18'),
(406, 18, 0x436f6e76656e7a696f6e616c65, 'Y', '2004-02-18 01:18:18'),
(407, 18, 0x436f72726574746f, 'Y', '2004-02-18 01:18:18'),
(408, 18, 0x50617274697461207061726920636f6e206e6967697269, 'Y', '2004-02-18 01:18:18'),
(409, 18, 0x446f707069612070617274697461, 'Y', '2004-02-18 01:18:18'),
(411, 18, 0x496e666f, 'Y', '2004-02-18 01:18:18'),
(412, 18, 0x436f6d6d656e746f, 'Y', '2004-02-18 01:18:18'),
(421, 18, '', 'Y', '2012-08-22 20:48:45'),
(422, 18, '', 'Y', '2012-08-22 20:48:45'),
(425, 18, 0x41676769756e67692050617274697461, 'Y', '2004-02-18 01:18:18'),
(426, 18, 0x47696f6361746f7265, 'Y', '2004-02-18 01:18:18'),
(427, 18, 0x4e756d65726f2064692070617274697465, 'Y', '2004-02-18 01:18:18'),
(429, 18, 0x43616e63656c6c61, 'Y', '2004-02-18 01:18:18'),
(976, 4, 0x4d656c64656e20536965207369636820617566203c6120687265663d222f22207461726765743d225f626c616e6b223e447261676f6e7320486175707473656974653c2f613e206d6974204968726572204e75747a65722d494420756e6420496872656d2050617373776f727420616e2e2045696e652050726f66696c64617465692c20696e2064656e206d65697374656e2042726f777365726e20436f6f6b69652067656e616e6e742c20776972642066fc722033302054616765206c6f6b616c206175662064656d20526563686e65722067657370656963686572742c20736f64617373205369652066fc722033302054616765206175746f6d61746973636820616e67656d656c6465742077657264656e2e, 'Y', '2007-12-06 23:52:48'),
(1003, 7, 0x4261736b69636b79, 'Y', '2004-02-20 18:10:03'),
(1004, 4, 0x5769652076657268616c746520696368206d69636820696e2064656e20466f72656e3f, 'Y', '2007-12-06 23:52:48'),
(1005, 4, 0x4a656465722068696572206df663687465206765726e652065696e6520677574652050617274696520476f20737069656c656e2e2020457320676962742065696e207061617220526567656c6e2c2077656c63686520696e2064656e203c686f6d6520706f6c6963792e7068703e447261676f6e20476f20536572766572204772756e6473e4747a656e3c2f686f6d653e20676573636872696562656e2073696e642e2020416c6c652042656e75747a65722064fc7266656e20657277617274656e2c206d69742064656d20616e67656d657373656e656e2052657370656b7420756e746572204765676e65726e20626568616e64656c74207a752077657264656e2e202042656c6569646967656e6465206f64657220616e6772656966656e646520416e736167656e2077657264656e20736f776f686c20696e20707269766174656e20616c73206175636820f66666656e746c696368656e204e6163687269636874656e20696e2064657220447261676f6e2d47656d65696e736368616674206e6963687420746f6c6572696572742e0d0a0d0a45696e656e20756d66616e677265696368656e204c656974666164656e2061756620456e676c697363682066696e64656e2053696520686965723a203c6120687265663d22687474703a2f2f7777772e666171732e6f72672f726663732f726663313835352e68746d6c223e4e6574697175657474652047756964656c696e65733c2f613e2e, 'Y', '2010-04-02 21:39:24'),
(291, 19, 0x486973746f726961, 'Y', '2004-02-29 14:18:39'),
(292, 19, 0x486973746f726961206c616275727261, 'Y', '2004-02-29 14:18:39'),
(294, 19, 0x486973746f726961206c757a6561, 'Y', '2004-02-29 14:18:39'),
(300, 19, 0x426573746520476f207a65726269747a617269206261747a756b, 'Y', '2004-02-29 14:18:39'),
(29, 19, 0x4269736974617269656b20657a206475746520686f727265746172616b6f206261696d656e696b2c20697a656e6120656d616e2e, 'Y', '2004-02-29 14:32:45'),
(32, 19, 0x457a206461207a757265207478616e6461, 'Y', '2004-02-29 14:36:23'),
(33, 19, 0x506173616869747a616b206b6172616b746572652062616c696f67616265616b20646974752e20536f6c696b20612d7a2c20412d5a2c20302d3920657461202d5f2b2e2c3a3b3f21252a206f6e6172747a656e20646972612e, 'Y', '2004-02-29 14:36:23'),
(35, 19, 0x506173616869747a616b20657a206461746f7a206261742c206d65736564657a206265727269726f207361696174752e, 'Y', '2004-02-29 14:36:23'),
(1006, 4, 0x49737420447261676f6e73205175656c6c746578742076657266fc676261723f, 'Y', '2007-12-06 23:52:48'),
(1007, 4, 0x446572205175656c6c746578742069737420756e7465722064656e20426564696e67756e67656e206465722026616d703b6c743b686f6d65206c6963656e63652e70687026616d703b67743b474e55205075626c6963204c6963656e6365202847504c2926616d703b6c743b2f686f6d6526616d703b67743b207065722043565320756e7465722026616d703b6c743b6120687265663d26616d703b71756f743b687474703a2f2f736f75726365666f7267652e6e65742f70726f6a656374732f647261676f6e676f7365727665722f26616d703b71756f743b207461726765743d26616d703b71756f743b5f626c616e6b26616d703b71756f743b26616d703b67743b447261676f6e732050726f6a656b74736569746526616d703b6c743b2f6126616d703b67743b202061756620536f75726365666f7267652076657266fc676261722e, 'N', '2007-12-31 19:26:47'),
(1008, 4, 0x576f207769726420fc6265722064696520456e747769636b6c756e6720766f6e20447261676f6e206469736b7574696572743f, 'Y', '2007-12-07 02:11:21'),
(1009, 4, 0x41756620646572203c6120687265663d22687474703a2f2f6c697374732e736f75726365666f7267652e6e65742f6c697374732f6c697374696e666f2f647261676f6e676f7365727665722d646576656c22207461726765743d225f626c616e6b223e4d61696c696e672d4c6973746520647261676f6e676f7365727665722d646576656c3c2f613e20776972642064696520456e747769636b6c756e672062657370726f6368656e2e205369652073696e64206765726e652065696e67656c6164656e206265697a7574726574656e20756e64206d69747a757769726b656e2e, 'N', '2009-07-04 09:46:34'),
(1004, 5, 0x436f6d6d656e7420736520636f6d706f727465722064616e7320756e20666f72756d266e6273703b3f, 'N', '2005-09-20 16:01:54'),
(19, 18, 0x496d706f73736962696c652073656c657a696f6e61726520696c2064617461626173652e204173706574746120616c63756e69206d696e757469206520726970726f76612e, 'Y', '2011-09-29 16:02:30'),
(1005, 5, 0x4c657320626f6e73207072696e636970657320736f6e7420e96e6f6e63e97320696369266e6273703b3a203c6120687265663d22687474703a2f2f7777772e666171732e6f72672f726663732f726663313835352e68746d6c223e4e6574697175657474652047756964656c696e65733c2f613e2e0d0a4d616973206365747465206c6563747572652c20656e20616e676c6169732c207065757420ea7472652066617374696469657573652e20566f757320706f7576657a20656e206c69726520756e652076657273696f6e20636f757274652064616e73203c6120687265663d222f666f72756d2f726561642e7068703f663d3426616d703b693d3339323626616d703b743d33393236223e636520666f72756d3c2f613e2c206d61697320746f756a6f75727320656e20616e676c6169732e0d0a0d0a506f75722072e973756d65722c20696c20792061207175656c717565732072e8676c657320696d706f7274616e7465733a0d0a3c756c3e3c6c693e4e652070617320706f73657220756e65207175657374696f6e2064616e7320756e20666f72756d2073616e732061766f6972206c75206c6120462e412e512e206176616e742e0d0a3c6c693e456e73756974652c20666169726520756e65207265636865726368652064616e73206c657320666f72756d7320706f757220766f6972207369206c652073756a6574206e27657374207061732064e96ae0207472616974e92e205369206327657374206c65206361732c207327696e73e97265722064616e73206c612064697363757373696f6e206578697374616e74652e0d0a3c6c693e4e652070617320706f6c6c756572206c65732064697363757373696f6e732e20456e2064276175747265207465726d65732c20e97669746572206427e9637269726520736920766f7573206e276176657a20706173206c75206c612064697363757373696f6e20636f6d706ce874656d656e742e2e2e206f7520736920766f7573206e276176657a20706c7573206c27696e74656e74696f6e206465206c61206c6972652e0d0a3c2f756c3e, 'N', '2006-10-25 04:54:15'),
(592, 25, 0x4e752e, 'N', '2005-06-24 19:46:50'),
(593, 25, 0x506f742073c48320c3ae69206d616920646175206164766572736172756c75692074696d702064652067c3a26e646972653f, 'Y', '2005-06-24 19:46:50'),
(594, 25, '', 'N', '2005-06-24 19:46:50'),
(1006, 5, 0x4573742d636520717565206c6520636f646520736f7572636520646520447261676f6e2065737420646973706f6e69626c65266e6273703b3f, 'Y', '2004-03-02 02:35:45'),
(1007, 5, 0x4c6520636f646520736f757263652065737420646973706f6e69626c652c20736f7573206c6963656e636520ab266e6273703b474e55205075626c6963204c6963656e6365266e6273703bbb202847504c292c207061722074e96ce96368617267656d656e74204356532064616e73206c612070616765203c4120485245463d22687474703a2f2f736f75726365666f7267652e6e65742f70726f6a656374732f647261676f6e676f7365727665722f22205441524745543d5f626c616e6b3e447261676f6e277320646576656c6f706d656e742070726f6a6563743c2f413e20646520536f75726365466f7267652e, 'N', '2004-03-02 02:35:45'),
(1008, 5, 0x4ff920706575742d6f6e20646973637574657220647520636f646520736f7572636520646520447261676f6e266e6273703b3f, 'Y', '2004-03-02 02:35:45'),
(1009, 5, 0x44616e73206c6120226d61696c696e67206c69737422203c4120485245463d22687474703a2f2f6c697374732e736f75726365666f7267652e6e65742f6c697374732f6c697374696e666f2f647261676f6e676f7365727665722d646576656c22205441524745543d225f626c616e6b223e647261676f6e676f7365727665722d646576656c3c2f413e2e0d0a4e6f757320766f757320696e7669746f6e7320e020766f7573207920696e73637269726520657420e0207920706172746963697065722e, 'N', '2004-03-02 02:35:45'),
(595, 25, 0x43652072657072657a696e74c483207a696c656c6520646520766163616ec5a3c4833f, 'Y', '2005-06-24 20:03:20'),
(1010, 4, 0x57656c636865205061727469656e20626565696e666c757373656e206d65696e6520426577657274756e673f, 'Y', '2004-03-03 14:21:32'),
(1011, 4, 0x447261676f6e7320426577657274756e677373797374656d20626572fc636b7369636874696774206e7572205061727469656e2c0d0a3c756c3e0d0a3c6c693e696e2064656e656e20626569646520537069656c657220fc62657265696e67656b6f6d6d656e2073696e642c2064617373206573207369636820756d2065696e206265776572746574657320537069656c2068616e64656c7420756e640d0a3c6c693e696e2077656c6368656e20576569df206d696e64657374656e732066fc6e66205afc67652067656d61636874206861742e0d0a3c2f756c3e, 'Y', '2007-12-07 02:09:42'),
(1012, 4, 0x4b616e6e206963682062656920447261676f6e20dc6265727365747a65722077657264656e3f, 'Y', '2004-03-03 14:21:32'),
(1013, 4, 0x4a612e20426974746520676567656e205369652049687220496e7465726573736520696d203c686f6d6520666f72756d2f6c6973742e7068703f666f72756d3d373edc6265727365747a756e6773666f72756d3c2f686f6d653e2062656b616e6e742e204469652041646d696e6973747261746f72656e2077657264656e2064696520dc6265727365747a756e677366756e6b74696f6e656e2066fc72205369652066726569736368616c74656e2e, 'Y', '2009-07-04 10:13:28'),
(1004, 11, 0x486f65206b616e20696b2065656e20627567202870726f6772616d6d612d666f757429206d656c64656e3f, 'N', '2004-03-03 16:16:37'),
(1005, 11, 0x47656c696576652065656e20666f75746d656c64696e6720696e20686574203c4120485245463d222f70686f72756d2f6c6973742e7068703f663d3422205441524745543d225f626c616e6b223e64697363757373696520666f72756d3c2f413e20746520706f7374656e2e20200d0a416c73206a65207477696a66656c7420697320686574206563687465722062657465722068657420746520706f7374656e206f7020686574203c4120485245463d222f70686f72756d2f6c6973742e7068703f663d3222205441524745543d225f626c616e6b223e737570706f727420666f72756d3c2f413e2e, 'N', '2004-03-03 16:16:37'),
(1010, 11, 0x57656c6b65207370656c656e2068656262656e20696e766c6f6564206f70206d696a6e2073636f726520286772616164293f, 'Y', '2004-03-03 16:21:05'),
(1011, 11, 0x4865742073636f72696e67207379737465656d2076616e20447261676f6e20686f75647420656e6b656c2072656b656e696e67206d6574207370656c656e0d0a2a2077616172766f6f72206265696465207370656c65727320616b6b6f6f726420776172656e20646174206865742065656e206d656574656c7420766f6f7220646520677261616420656e0d0a2a20776974206d696e7374656e732035207a657474656e2068656566742067656461616e2e, 'N', '2004-11-23 09:39:11'),
(1012, 11, 0x4b616e20696b20766f6f7220447261676f6e2076657274616c656e3f, 'Y', '2004-03-03 16:21:05'),
(1013, 11, 0x4a612e20416c73206a65206765ef6e746572657373656572642062656e74207a6574206a65206a65206e61616d206f7020686574203c4120485245463d222f70686f72756d2f6c6973742e7068703f663d3722205441524745543d5f626c616e6b3e7472616e736c6174696f6e20666f72756d3c2f413e2e20496e2062696a6e6120656c6b20676576616c207a616c206d656e206a6520746f657374656d6d696e67207665726c656e656e206f6d2074652068656c70656e2076657274616c656e2e, 'Y', '2004-03-03 16:21:05'),
(1010, 5, 0x5175656c6c657320736f6e74206c657320706172746965732071756920766f6e74206d6f646966696572206d6f6e206e6976656175266e6273703b3f, 'Y', '2004-03-05 03:02:03'),
(1011, 5, 0x4c6573206e69766561757820736f6e74206d6f64696669c3a97320c320206c612066696e206465732070617274696573266e6273703b3a0d0a3c554c3e3c4c493e616363657074c3a96573207061722064657578206a6f7565757273206179616e7420756e206e69766561750d0a3c4c493e64656d616e64c3a9657320c32020c3aa74726520636c617373c3a965730d0a3c4c493e6574206fc3b920426c616e632061206a6f75c3a9206175206d6f696e73203520636f7570732e0d0a3c2f554c3e, 'N', '2007-07-03 18:17:59'),
(1012, 5, 0x4573742d636520717565206a65207065757820646576656e697220756e207472616475637465757220706f757220447261676f6e266e6273703b3f, 'Y', '2004-03-05 03:02:03'),
(1013, 5, 0x4f75692e20536f756d657474657a20766f7472652072657175ea74652064616e73206c6520666f72756d203c4120485245463d222f666f72756d2f6c6973742e7068703f663d3722205441524745543d225f626c616e6b223eab266e6273703b5472616e736c6174696f6e266e6273703b666f72756d266e6273703bbb3c2f413e2e204c65732061646d696e6973747261746575727320766f757320646f6e6e65726f6e74206c657320706f75766f6972732064652074726164756374696f6e20706f7572206c65206c616e676167652064e9736972e92e, 'Y', '2006-08-19 16:46:11'),
(80, 20, 0x5265676973747261746520636f6d6f, 'Y', '2004-03-22 11:03:03'),
(81, 20, 0x4e6f6e2072656769737472617465, 'Y', '2004-03-22 11:03:03'),
(82, 20, 0x537461746f, 'Y', '2004-03-22 11:03:03'),
(83, 20, 0x416e746563616d657261, 'Y', '2004-03-22 11:03:03'),
(84, 20, 0x496e666f20646520757361746f72, 'Y', '2009-08-17 21:47:13'),
(85, 20, '', 'Y', '2011-03-15 21:53:48'),
(86, 20, 0x496e7669617220756e206d657373616765, 'Y', '2009-08-18 01:03:29'),
(87, 20, 0x496e7669746172, 'Y', '2009-08-18 01:03:50'),
(88, 20, 0x557361746f726573, 'Y', '2004-03-22 11:03:03'),
(89, 20, 0x4d617463686573, 'Y', '2013-08-13 22:24:05'),
(90, 20, 0x5472616475636572, 'Y', '2004-03-22 11:03:03'),
(91, 20, 0x466f726f73, 'Y', '2004-03-22 11:09:23'),
(96, 20, '', 'Y', '2011-03-15 21:53:48'),
(98, 20, 0x646965, 'Y', '2004-03-22 11:09:23'),
(99, 20, 0x64696573, 'Y', '2004-03-22 11:09:23'),
(100, 20, 0x65, 'Y', '2004-03-22 11:09:23'),
(101, 20, 0x686f7261, 'Y', '2004-03-22 11:09:23'),
(102, 20, 0x686f726173, 'Y', '2004-03-22 11:09:23'),
(107, 20, 0x706563696173, 'Y', '2013-08-13 22:35:53'),
(132, 20, '', 'Y', '2011-03-15 21:53:48'),
(134, 20, 0x4e6f6d696e65, 'Y', '2004-03-22 11:35:07'),
(205, 20, 0x477261646f, 'Y', '2009-08-17 21:23:35'),
(310, 20, 0x4465, 'Y', '2004-03-22 11:35:07'),
(314, 20, 0x4e6f7665, 'Y', '2004-03-22 11:35:07'),
(330, 20, 0x426c616e63, 'Y', '2004-03-22 11:35:07'),
(331, 20, 0x4e69677265, 'Y', '2004-03-22 11:35:07'),
(352, 20, '', 'Y', '2011-03-15 21:53:48'),
(360, 20, '', 'Y', '2011-03-15 21:53:48'),
(361, 20, 0x44696d656e73696f6e, 'Y', '2004-03-22 11:35:07'),
(363, 20, '', 'Y', '2011-03-15 21:53:48'),
(364, 20, 0x4d6f76696d656e746f73, 'Y', '2004-03-22 11:35:07'),
(389, 20, 0x4d65737361676573206e6f7665, 'Y', '2004-03-22 11:35:07'),
(460, 20, 0x70726f78696d6520706167696e61, 'Y', '2004-03-22 11:35:07'),
(461, 20, 0x70726576696520706167696e61, 'Y', '2004-03-22 11:35:07'),
(722, 20, 0x43616d697361, 'Y', '2004-03-22 11:35:41'),
(312, 20, 0x44617461, 'Y', '2004-03-22 11:50:44'),
(316, 20, 0x526573706f6e736121, 'Y', '2004-03-22 11:50:44'),
(240, 20, 0x506167696e6120696e697469616c, 'Y', '2004-03-22 11:50:44'),
(92, 20, '', 'Y', '2011-03-15 21:53:48'),
(93, 20, 0x4d6170706120646520706167696e6173, 'Y', '2009-08-17 18:11:50'),
(94, 20, 0x446f63756d656e746174696f6e, 'Y', '2009-08-17 23:07:36'),
(103, 20, 0x73696e2062796f796f6d69, 'Y', '2004-03-22 12:01:28'),
(106, 20, 0x42796f796f6d69206a61706f6e657365, 'Y', '2004-03-22 12:01:28'),
(108, 20, 0x42796f796f6d692063616e616469616e, 'Y', '2009-08-17 18:11:50'),
(204, 20, 0x496e666f2064652072616e676f, 'Y', '2009-08-17 21:25:22'),
(311, 20, 0x5375626a6563746f, 'Y', '2004-03-22 12:01:28'),
(359, 20, 0x4f70706f6e656e7465, 'Y', '2004-03-22 12:01:28'),
(362, 20, '', 'Y', '2011-03-15 21:53:48'),
(374, 20, 0x4d6f6e73747261722070617274697461732061637475616c, 'Y', '2009-08-20 03:23:19'),
(375, 20, 0x4d6f6e73747261722070617274697461732066696e697465, 'Y', '2009-08-20 03:23:19'),
(248, 20, '', 'Y', '2011-03-15 21:53:48'),
(95, 20, 0x506167696e612063726561766120616c, 'Y', '2013-08-13 22:29:40'),
(97, 20, 0x506172746972, 'Y', '2009-08-17 18:11:50'),
(104, 20, 0x636f6e20257320657874726120706572206d6f76696d656e746f, 'Y', '2004-03-22 12:41:41'),
(368, 20, 0x556c74696d65206d6f76696d656e746f, 'N', '2009-08-18 17:05:59'),
(388, 20, 0x4170657274652070726f206d6174636865733f, 'Y', '2011-03-15 21:51:20'),
(715, 20, 0x54656d706f72652064656c20706167696e61, 'Y', '2004-03-22 12:41:41'),
(559, 40, 0x436f6d6f206661e76f20707261206a6f6761723f, 'Y', '2014-04-13 18:43:57'),
(229, 20, 0x50756e63746f73, 'Y', '2004-03-22 12:54:52'),
(230, 20, 0x50617274697461, 'Y', '2004-03-22 12:54:52'),
(231, 20, 0x4f6d6974746572, 'Y', '2004-03-22 12:54:52'),
(232, 20, 0x44656c6572206d61746368, 'Y', '2013-08-13 23:07:08'),
(233, 20, 0x466163697465, 'Y', '2004-03-22 12:54:52'),
(235, 20, 0x52657369676e6172, 'Y', '2004-03-22 12:54:52'),
(732, 20, 0x4469657320646520766163616e746961732072657374616e7465, 'Y', '2004-03-22 13:04:57'),
(308, 20, 0x41, 'Y', '2004-03-22 13:04:57'),
(390, 20, 0x547520746f726e6f2061206d6f76657220696e20697374652070617274697461733a, 'Y', '2009-08-17 19:35:13'),
(160, 20, 0x496e74726f64756374696f6e20616c20447261676f6e, 'Y', '2004-03-22 13:31:06'),
(325, 20, '', 'Y', '2011-03-15 21:53:48'),
(254, 20, 0x506172746963697061746520696e207061727469746121, 'Y', '2004-03-22 13:32:59'),
(733, 20, 0x496e20766163616e74696173, 'Y', '2004-03-22 13:38:42'),
(191, 20, 0x436f6e6669726d6120636f6e7472617369676e6f, 'Y', '2013-08-13 22:38:19'),
(245, 20, 0x436f6e7472617369676e6f, 'Y', '2004-03-22 14:22:40'),
(201, 20, 0x557361746f724944, 'Y', '2004-03-22 14:40:17'),
(391, 20, 0x4e6f6e2070617274697461732074726f76617465, 'Y', '2004-03-22 14:40:17'),
(462, 20, 0x416464657220636f6c6f6e6e61, 'Y', '2004-03-22 14:40:17'),
(6200, 36, 0x756b72c3a16e, 'Y', '2015-09-19 12:55:02'),
(719, 20, 0x25732067616e69612070657220252e3166, 'Y', '2004-03-22 14:40:17'),
(747, 20, 0x4f6d6e6520636f6c6f6e6e61, 'Y', '2004-03-22 14:40:17'),
(366, 20, 0x526174617465, 'Y', '2004-03-22 14:42:12'),
(370, 20, 0x5369, 'Y', '2004-03-22 14:42:12'),
(371, 20, 0x4e6f, 'Y', '2004-03-22 14:42:12'),
(372, 20, '', 'N', '2011-03-15 21:53:48'),
(324, 20, 0x526573706f6e736172, 'Y', '2004-03-22 14:45:03'),
(348, 20, 0x50617274697461732066696e697465, 'Y', '2004-03-22 14:45:03'),
(349, 20, 0x50617274697461732061637475616c, 'Y', '2004-03-22 14:45:03'),
(411, 20, 0x496e666f, 'Y', '2009-08-18 01:09:40'),
(412, 20, 0x436f6d6d656e746f, 'Y', '2004-03-22 14:45:45'),
(406, 20, '', 'Y', '2011-03-15 21:53:48'),
(407, 20, 0x50726f70726965, 'Y', '2004-03-22 14:51:15'),
(415, 20, 0x235061727469746173, 'Y', '2004-03-22 14:51:15'),
(416, 20, 0x5765656b2d656e6420686f726c6f67696f, 'Y', '2004-03-22 14:51:15'),
(419, 20, 0x257320736f6c6d656e7465, 'Y', '2004-03-22 14:51:15'),
(421, 20, '', 'Y', '2011-03-15 21:53:48'),
(422, 20, '', 'Y', '2011-03-15 21:53:48'),
(458, 20, 0x50726973696f6e65726f73, 'Y', '2004-03-22 14:51:15'),
(307, 20, 0x4c69737461206465206d65737361676573, 'Y', '2004-03-22 15:02:18'),
(327, 20, 0x4d657373616765206e6f7665, 'Y', '2004-03-22 15:02:18'),
(409, 20, 0x50617274697461206475706c65, 'Y', '2004-03-22 15:02:18'),
(436, 20, 0x6d656e736573, 'Y', '2004-03-22 15:02:18'),
(439, 20, 0x636f6e, 'Y', '2004-03-22 15:02:18'),
(446, 20, 0x436f6c6f726573, 'Y', '2004-03-22 15:02:18'),
(447, 20, '', 'Y', '2011-03-15 21:53:48'),
(449, 20, 0x4a61706f6e657365, 'Y', '2004-03-22 15:02:18'),
(414, 20, 0x4c696d69746174696f6e2064652074656d706f7265, 'Y', '2004-03-22 15:03:38'),
(408, 20, 0x5061727469746120657175616c20636f6e206e6967697269, 'Y', '2004-03-22 15:04:30'),
(202, 20, 0x4e6f6d696e6520636f6d706c657465, 'Y', '2004-03-22 16:44:46'),
(223, 20, 0x4f626c696461766120636f6e7472617369676e6f3f, 'Y', '2004-03-22 16:44:46'),
(425, 20, 0x416464657220706172746961, 'Y', '2004-03-22 16:46:07'),
(426, 20, 0x4a6f6361746f72, 'Y', '2004-03-22 16:46:07'),
(427, 20, 0x4e756d65726f732064656c2070617274696173, 'Y', '2004-03-22 16:46:07'),
(429, 20, 0x44656c6572, 'Y', '2004-03-22 16:48:47'),
(430, 20, 0x50617274696369706172, 'Y', '2004-03-22 16:48:47'),
(253, 20, 0x506172746974612064656c69746521, 'Y', '2004-03-22 17:46:40'),
(437, 20, 0x54656d706f7265207072696e636970616c, 'Y', '2004-03-22 17:47:07'),
(109, 20, 0x4d617463682061646469746121, 'Y', '2013-08-13 22:36:20'),
(344, 20, 0x5265676973747261, 'Y', '2004-03-23 01:21:10'),
(484, 20, '', 'Y', '2011-03-15 21:53:48'),
(485, 20, '', 'Y', '2011-03-15 21:53:48'),
(486, 20, '', 'Y', '2011-03-15 21:53:48'),
(488, 20, '', 'Y', '2011-03-15 21:53:48'),
(489, 20, '', 'Y', '2011-03-15 21:53:48'),
(227, 20, 0x44656c6572206d61746368, 'Y', '2013-08-13 22:40:23'),
(487, 20, 0x4d616a, 'Y', '2004-03-24 13:45:58'),
(490, 20, '', 'Y', '2011-03-15 21:53:48'),
(491, 20, '', 'Y', '2011-03-15 21:53:48'),
(492, 20, '', 'Y', '2011-03-15 21:53:48'),
(495, 20, '', 'Y', '2011-03-15 21:53:48'),
(496, 20, '', 'Y', '2011-03-15 21:53:48'),
(497, 20, '', 'Y', '2011-03-15 21:53:48'),
(373, 20, 0x496e76697461206973746f20757361746f72, 'Y', '2009-08-18 00:52:01'),
(345, 20, 0x496e736372696265206461746f7320706572206661766f72, 'Y', '2004-03-24 16:40:36'),
(498, 20, 0x4465, 'Y', '2004-04-03 01:13:20'),
(499, 20, 0x41, 'Y', '2004-04-03 01:13:20'),
(1014, 5, '', 'Y', '2011-10-26 12:06:49'),
(1014, 6, '', 'Y', '2007-11-03 16:08:38'),
(1004, 6, 0x43f36d6f20707565646f207265706f7274617220756e206572726f723f, 'N', '2004-03-30 04:06:29'),
(1005, 6, 0x506f72206661766f72207265706f72746120656c206572726f7220656e20656c203c4120485245463d222f70686f72756d2f6c6973742e7068703f663d34225441524745543d225f626c616e6b223e666f726f2064652064697363757369f36e3c2f413e2e205369207469656e65732064756461732c20726570f37274616c6f20656e20656c203c4120485245463d222f70686f72756d2f6c6973742e7068703f663d3222205441524745543d225f626c616e6b223e666f726f20646520736f706f7274653c2f413e2e, 'N', '2004-03-30 04:06:29'),
(1006, 6, 0x457374e120646973706f6e69626c6520656c2063f36469676f206675656e746520646520447261676f6e3f, 'Y', '2004-03-30 04:06:29'),
(1007, 6, 0x42616a6f206c6f732074e9726d696e6f73206c6567616c6573206465206c61204c6963656e6369612050fa626c69636120646520474e55202847504c292c20656c2063f36469676f206675656e746520657374e120646973706f6e69626c6520612074726176e9732064652043565320656e203c4120485245463d22687474703a2f2f736f75726365666f7267652e6e65742f70726f6a656374732f647261676f6e676f7365727665722f22205441524745543d5f626c616e6b3e6c612070e167696e61206465206465736172726f6c6c6f20646520447261676f6e20656e20536f75726365466f7267653c2f413e2e, 'N', '2004-03-30 04:06:29'),
(1008, 6, 0x44f36e64652073652064697363757465206163657263612064656c206465736172726f6c6c6f2064656c2063f36469676f206675656e746520646520447261676f6e3f, 'Y', '2004-03-30 04:06:29'),
(1009, 6, 0x456e206c61206c6973746120646520636f7272656f206465203c4120485245463d22687474703a2f2f6c697374732e736f75726365666f7267652e6e65742f6c697374732f6c697374696e666f2f647261676f6e676f7365727665722d646576656c22205441524745543d225f626c616e6b223e647261676f6e676f7365727665722d646576656c3c2f413e2e20457374e17320696e76697461646f2061207375627363726962697274652079207265616c697a617220747520636f6e74726962756369f36e2e, 'N', '2004-03-30 04:06:29'),
(1010, 6, 0x5175e92070617274696461732076616e20612061666563746172206d6920726174696e673f, 'Y', '2004-03-30 04:06:29'),
(1011, 6, 0x456c2073697374656d6120646520726174696e6720646520447261676f6e20636f6e7369646572612073f36c6f207061727469646173200d0a0d0a2a20656e206c61732071756520616d626f73206a756761646f7265732061636f726461726f6e2071756520736572e120756e6120706172746964612063616c696669636164612c20790d0a2a20656e206c61732071756520426c616e636f206861796120656e766961646f20616c206d656e6f732035206d6f76696461732e, 'Y', '2004-03-30 04:06:29'),
(1012, 6, 0x507565646f2073657220756e20747261647563746f7220646520447261676f6e3f, 'Y', '2004-03-30 04:06:29'),
(1013, 6, 0x53ed2e20506f72206661766f72206e6f74696669636120747520696e746572e97320616c203c4120485245463d222f70686f72756d2f6c6973742e7068703f663d3722205441524745543d5f626c616e6b3e666f726f206465207472616475636369f36e3c2f413e2e204c6f732061646d696e6973747261646f7265732063617369207369656d70726520746520646172e16e207065726d69736f73206465207472616475636369f36e2e, 'Y', '2004-03-30 04:06:29'),
(243, 20, 0x4170657269722073657373696f6e20706572206661766f722e, 'Y', '2004-04-01 17:20:35'),
(246, 20, 0x4170657269722073657373696f6e, 'Y', '2004-04-01 17:20:35'),
(161, 20, 0x5175657374696f6e6573206672657175656e7465, 'Y', '2004-04-01 17:22:49'),
(457, 20, 0x72657665727365, 'Y', '2004-04-03 01:01:41'),
(177, 20, 0x55726265, 'Y', '2013-08-13 22:37:03'),
(208, 20, 0x4c696e677561, 'Y', '2004-04-03 01:08:29'),
(1014, 20, '', 'Y', '2011-03-15 21:53:48'),
(225, 20, 0x52657369676e6172, 'Y', '2004-04-03 01:13:20'),
(215, 20, 0x526573746172, 'Y', '2013-08-13 22:40:23'),
(755, 20, 0x4d6573736167652064656c20736572766572, 'Y', '2004-04-04 03:55:16'),
(237, 20, 0x4f6d6974746520616c206d617463682073657175656e7465, 'Y', '2013-08-13 23:07:08'),
(1014, 7, '', 'Y', '2008-01-08 15:28:39'),
(1006, 11, 0x497320447261676f6e27732062726f6e636f6465206265736368696b626161723f, 'Y', '2004-04-07 18:21:36'),
(1008, 11, 0x5761617220776f726474206465206f6e7477696b6b656c696e672076616e20447261676f6e27732062726f6e636f64652062657370726f6b656e3f, 'Y', '2004-04-07 18:21:36'),
(1007, 11, 0x4f6e646572206465206c6567616c6520636f6e6469746965732076616e20646520474e55205075626c69656b65204c6963656e746965202847504c292069732064652062726f6e636f6465206265736368696b6261617220766f6f7220646f776e6c6f61642076616e20435653206f70203c4120485245463d22687474703a2f2f736f75726365666f7267652e6e65742f70726f6a656374732f647261676f6e676f7365727665722f22205441524745543d5f626c616e6b3e447261676f6e2773206f6e7477696b6b656c706167696e61206f7020536f75726365466f7267653c2f413e2e, 'N', '2004-04-07 18:26:21'),
(1009, 11, 0x4f70206465203c4120485245463d2022687474703a2f2f6c697374732e736f75726365666f7267652e6e65742f6c697374732f6c697374696e666f2f647261676f6e676f7365727665722d646576656c22205441524745543d225f626c616e6b223e647261676f6e676f7365727665722d646576656c3c2f413e206d61696c696e67206c696a73742e200d0a552062656e742075697467656e6f64696764206f6d20696e2074652073636872696a76656e20656e206d6565207465207765726b656e2e, 'N', '2004-11-23 09:39:11'),
(1014, 11, '', 'Y', '2007-06-04 15:49:02'),
(83, 21, 0x4174656e64656a6f, 'Y', '2004-04-17 04:07:40'),
(100, 21, 0x6b616a, 'Y', '2004-04-17 04:07:40'),
(134, 21, 0x4e6f6d6f, 'Y', '2004-04-17 04:07:40'),
(230, 21, 0x4c75646f, 'Y', '2004-04-17 04:07:40'),
(308, 21, 0x416c, 'Y', '2004-04-17 04:07:40'),
(310, 21, 0x4465, 'Y', '2004-04-17 04:07:40'),
(325, 21, 0x4d657361f86f, 'Y', '2004-04-17 04:07:40'),
(330, 21, 0x426c616e6b6f, 'Y', '2004-04-17 04:07:40'),
(331, 21, 0x4e6967726f, 'Y', '2004-04-17 04:07:40'),
(349, 21, 0x416b7475616c616a206c75646f6a, 'Y', '2007-05-14 21:07:23'),
(360, 21, 0x4b6f6c6f726f, 'Y', '2004-04-17 04:07:40'),
(363, 21, '', 'Y', '2011-03-29 20:29:29'),
(370, 21, 0x4a6573, 'Y', '2004-04-17 04:07:40'),
(371, 21, 0x4e65, 'Y', '2004-04-17 04:07:40'),
(372, 21, '', 'N', '2011-03-29 20:29:29'),
(374, 21, 0x4d6f6e74726920616b7475616c616a6e206c75646f6a6e, 'Y', '2007-05-14 21:07:23'),
(160, 21, 0x456e6b6f6e64756b6f20656e20447261676f6e, 'Y', '2007-05-14 20:44:39'),
(191, 21, 0x4b6f6e6669726d7520706173766f72746f6e, 'Y', '2007-05-24 22:41:25'),
(201, 21, 0x557a616e746e6f6d6f, 'Y', '2007-05-24 22:35:44'),
(223, 21, 0x466f72676573697320706173766f72746f6e3f, 'Y', '2004-04-17 07:41:51'),
(240, 21, 0x48656a6d6f, 'Y', '2004-04-17 07:41:51'),
(243, 21, 0x426f6e766f6c7520656e73616c7574692e, 'Y', '2004-04-17 07:41:51'),
(245, 21, 0x506173766f72746f, 'Y', '2004-04-17 07:41:51'),
(246, 21, 0x456e73616c757469, 'Y', '2004-04-17 07:41:51'),
(248, 21, 0x456e6b6f6e64756b6f, 'Y', '2004-04-17 07:41:51'),
(247, 21, 0x4b726569206e6f76616e206b6f6e746f6e, 'Y', '2007-05-14 20:44:39'),
(252, 21, 0x44656e6f766520626f6e76656e6f6e2c206b616a2026233238353b756a75207669616e2076697a69746f6e2026233236353b692074696521, 'Y', '2007-05-14 20:44:39'),
(344, 21, 0x526567697374726926233238353b69, 'Y', '2004-04-17 20:49:19'),
(345, 21, 0x426f766f6c7520656e69676920696e666f726d6f6a6e2e, 'Y', '2007-05-24 22:41:25'),
(80, 21, 0x456e73616c7574696e7461206b69656c, 'Y', '2004-04-17 08:03:07'),
(81, 21, 0x4e6520656e73616c7574696e7461, 'Y', '2004-04-17 08:03:07'),
(82, 21, 0x537461746f, 'Y', '2004-04-17 08:03:07'),
(84, 21, 0x557a616e74696e666f726d6f, 'Y', '2007-05-24 22:50:30'),
(85, 21, 0x4d65736126233238353b6f6a, 'Y', '2004-04-17 20:41:48'),
(86, 21, 0x53656e6469206d65736126233238353b6f6e, 'Y', '2004-04-17 20:41:48'),
(87, 21, 0x496e76697469, 'Y', '2004-04-17 08:03:07'),
(88, 21, 0x557a616e746f6a, 'Y', '2004-04-17 08:03:07'),
(89, 21, 0x4c75646f6a, 'Y', '2004-04-17 08:03:07'),
(90, 21, 0x54726164756b69, 'Y', '2004-04-17 08:03:07'),
(91, 21, 0x466f72756d6f6a, 'Y', '2007-05-24 22:35:44'),
(92, 21, 0x526573706f6e6461726f, 'Y', '2007-05-24 22:35:44'),
(97, 21, 0x456c73616c757469, 'Y', '2007-05-14 19:51:34'),
(98, 21, 0x7461676f, 'Y', '2004-04-17 08:03:07'),
(99, 21, 0x7461676f6a, 'Y', '2004-04-17 08:03:07'),
(101, 21, 0x686f726f, 'Y', '2004-04-17 08:03:07'),
(102, 21, 0x686f726f6a, 'Y', '2004-04-17 08:03:07'),
(103, 21, 0x73656e2062796f796f6d69, 'Y', '2007-05-24 22:35:44'),
(104, 21, 0x6b756e20257320656b7374726520706f72206d65746f, 'Y', '2007-05-24 22:35:44'),
(106, 21, 0x4a6170616e612062796f796f6d69, 'Y', '2004-04-17 08:03:07'),
(107, 21, 0x26233334393b746f6e6f6a, 'Y', '2004-04-17 20:43:46'),
(108, 21, 0x4b616e6164612062796f796f6d69, 'Y', '2004-04-17 08:03:07'),
(132, 21, 0x6964656e746967696c6f, 'Y', '2007-05-24 22:35:44'),
(311, 21, 0x54656d6f, 'Y', '2004-04-17 08:03:07'),
(312, 21, 0x4461746f, 'Y', '2004-04-17 08:03:07'),
(314, 21, 0x4e6f7661, 'Y', '2004-04-17 08:03:07'),
(316, 21, 0x526573706f6e646921, 'Y', '2004-04-17 08:03:07'),
(352, 21, '', 'Y', '2011-03-29 20:29:29'),
(359, 21, 0x4b6f6e747261fd756c6f, 'Y', '2007-05-14 21:07:23'),
(361, 21, 0x4772616e6465636f, 'Y', '2007-05-24 22:50:30'),
(362, 21, 0x48616e64696b61706f, 'Y', '2007-05-24 22:50:30'),
(364, 21, 0x4d65746f6a, 'Y', '2007-05-24 22:35:44'),
(368, 21, 0x4c61737461206d65746f, 'N', '2007-05-14 20:31:10'),
(375, 21, 0x4d6f6e7472692066696e6974616a6e206c75646f6a6e, 'Y', '2004-04-17 08:03:07'),
(389, 21, 0x4e6f76616a206d65736126233238353b6f6a, 'Y', '2004-04-17 20:43:46'),
(391, 21, 0x4e656e6975206c75646f2074726f76697461, 'Y', '2007-05-24 22:35:44'),
(460, 21, 0x73656b76616e746120706126233238353b6f, 'Y', '2004-04-17 20:43:46');
INSERT INTO `Translations` (`Original_ID`, `Language_ID`, `Text`, `Translated`, `Updated`) VALUES
(461, 21, 0x6c6173746120706126233238353b6f, 'Y', '2004-04-17 20:43:46'),
(755, 21, 0x5365727661206d65736126233238353b6f, 'Y', '2004-04-17 20:43:46'),
(1015, 4, '', 'Y', '2012-07-29 12:52:42'),
(443, 21, 0x466973636865722d74656d706f73697374656d6f, 'Y', '2007-05-14 20:31:10'),
(94, 21, 0x446f6b756d656e746f6a, 'Y', '2004-04-17 20:57:52'),
(136, 21, 0x466f72756d6f, 'Y', '2007-05-24 23:12:40'),
(159, 21, 0x446f6b756d656e7461726f, 'Y', '2004-04-17 20:57:52'),
(161, 21, 0x4f6674616a2044656d616e646f6a, 'Y', '2007-05-24 23:34:50'),
(163, 21, 0x506572736f6e6f6a, 'Y', '2004-04-17 20:57:52'),
(164, 21, 0x6b697520616c646f6e617320616c20447261676f6e, 'Y', '2004-04-17 20:57:52'),
(257, 21, '', 'Y', '2004-04-17 20:57:52'),
(259, 21, '', 'Y', '2004-04-17 20:57:52'),
(260, 21, 0x4f6674616a2064656d616e646f6a2070726920676f6f206465206c61206e6f766126233330393b677275706f207265632e67616d65732e676f, 'Y', '2007-05-24 23:34:06'),
(265, 21, '', 'Y', '2011-03-29 20:29:29'),
(267, 21, '', 'Y', '2004-04-17 20:57:52'),
(271, 21, '', 'Y', '2011-03-29 20:29:29'),
(273, 21, 0x526567756c61726f, 'Y', '2004-04-17 20:57:52'),
(283, 21, 0x476f616a2050726f626c656d6f6a, 'Y', '2007-05-24 23:34:06'),
(384, 21, 0x4c65676920666f72756d6f6e, 'Y', '2007-05-24 23:34:06'),
(731, 21, 0x526564616b7469206d65736126233238353b61726f6a6e, 'Y', '2007-05-24 23:34:06'),
(205, 21, 0x477261646f, 'Y', '2004-04-17 23:19:04'),
(388, 21, 0x566f6c6173206c7564693f, 'Y', '2007-05-24 22:35:44'),
(204, 21, 0x477261646120696e666f726d6f, 'Y', '2004-04-17 23:24:59'),
(732, 21, 0x52657374616e74616a206c696265727461676f6a, 'Y', '2004-04-17 23:24:59'),
(93, 21, 0x506126233238353b617261206d61706f, 'Y', '2004-04-17 23:35:34'),
(95, 21, 0x506126233238353b6f206b726569746120656e, 'Y', '2004-04-17 23:35:34'),
(96, 21, 0x41646d696e697374726f, 'Y', '2004-04-17 23:35:34'),
(309, 21, 0x466c61676f6a, 'Y', '2004-04-17 23:35:34'),
(390, 21, 0x566961207669636f20656e206c612073656b76616e74616a206c75646f6a3a, 'Y', '2004-04-17 23:35:34'),
(462, 21, 0x416c646f6e69206b6f6c756d6e6f6e, 'Y', '2004-04-17 23:35:34'),
(715, 21, 0x506126233238353b612074656d706f, 'Y', '2004-04-17 23:35:34'),
(5771, 40, 0x54616d616e686f206461206d696e696174757261, 'Y', '2014-04-13 18:11:10'),
(5791, 36, 0x6e696e637320657265646dc3a96e79, 'Y', '2015-09-19 16:07:18'),
(719, 21, 0x25732067616a6e61732070657220252e3166, 'Y', '2004-04-17 23:35:34'),
(722, 21, 0x4d65736126233238353b756a6f, 'Y', '2004-04-17 23:35:34'),
(733, 21, 0x466572696173, 'Y', '2007-05-24 22:50:30'),
(747, 21, 0x26233236343b69756a206b6f6c756d6e6f6a, 'Y', '2004-04-17 23:35:34'),
(307, 21, 0x4d65736126233238353b6c6973746f, 'Y', '2004-04-17 23:39:47'),
(315, 21, 0x526573706f6e646974616a, 'Y', '2004-04-17 23:39:47'),
(743, 21, 0x53656e646974616a, 'Y', '2004-04-17 23:39:47'),
(744, 21, 0x526573706f6e6465206d6f766920616c206d65736126233238353b756a6f, 'Y', '2004-04-17 23:39:47'),
(745, 21, 0x4d6f766920616c206d65736126233238353b756a6f, 'Y', '2004-04-17 23:39:47'),
(746, 21, 0x4d65736126233238353b756a61206e6f6d6f, 'Y', '2004-04-17 23:39:47'),
(1015, 5, 0x4573706572616e746f, 'Y', '2013-02-04 16:57:34'),
(1014, 4, '', 'Y', '2012-07-29 12:52:42'),
(1015, 11, '', 'Y', '2007-06-04 15:49:02'),
(722, 9, 0x5061737461, 'Y', '2004-04-30 02:14:04'),
(732, 9, 0x446961732064652066266561637574653b726961732072657374616e746573, 'Y', '2004-04-30 02:14:04'),
(733, 9, 0x456d2066266561637574653b72696173, 'Y', '2004-04-30 02:14:04'),
(747, 9, 0x546f64617320636f6c756e6173, 'Y', '2004-04-30 02:14:04'),
(755, 9, 0x4d656e736167656d20646f207365727669646f72, 'Y', '2004-04-30 02:14:04'),
(724, 9, 0x417061676172206d656e736167656e732073656c6563696f6e61646173, 'Y', '2004-04-30 02:14:04'),
(726, 9, 0x45646974617220706173746173, 'Y', '2004-04-30 02:14:04'),
(740, 9, 0x546f64617320617320726563656269646173, 'Y', '2004-04-30 02:14:04'),
(741, 9, 0x5072696e636970616c, 'Y', '2004-04-30 02:14:04'),
(742, 9, 0x4c617461206465206c69786f, 'Y', '2004-04-30 02:14:04'),
(743, 9, 0x456e766961646173, 'Y', '2004-04-30 02:14:04'),
(744, 9, 0x4d6f76657220706172612061207061737461207175616e646f20726573706f6e646572, 'Y', '2004-04-30 02:14:04'),
(745, 9, 0x4d6f76657220706172612061207061737461, 'Y', '2004-04-30 02:14:04'),
(746, 9, 0x4e6f6d65206461207061737461, 'Y', '2004-04-30 02:14:04'),
(731, 9, 0x45646974617220706173746173206465206d656e736167656e73, 'Y', '2004-04-30 02:14:04'),
(736, 9, 0x4a6f676f732076656e6369646f73, 'Y', '2004-04-30 02:14:04'),
(737, 9, 0x4a6f676f73207065726469646f73, 'Y', '2004-04-30 02:14:04'),
(738, 9, 0x4d6f6469666963617220647572612663636564696c3b266174696c64653b6f206461732066266561637574653b72696173, 'Y', '2004-04-30 02:14:04'),
(739, 9, 0x436f6d65e761722066266561637574653b72696173, 'Y', '2004-04-30 02:14:04'),
(750, 9, 0x436f7265616e6f, 'Y', '2004-04-30 02:14:04'),
(954, 9, 0x527573736f, 'Y', '2004-04-30 02:14:04'),
(955, 9, 0x46266561637574653b72696173, 'Y', '2004-04-30 02:14:04'),
(956, 9, 0x44657363756c70652c20766f632665636972633b206e266174696c64653b6f20706f6465206d6f64696669636172206120647572612663636564696c3b266174696c64653b6f206461732066266561637574653b72696173206e65737465206d6f6d656e746f2e, 'Y', '2004-04-30 02:14:04'),
(957, 9, 0x447572612663636564696c3b266174696c64653b6f206461732066266561637574653b72696173206d6f646966696361646121, 'Y', '2004-04-30 02:14:04'),
(958, 9, 0x41646963696f6e6172, 'Y', '2004-04-30 02:14:04'),
(959, 9, 0x52656d6f766572, 'Y', '2004-04-30 02:14:04'),
(960, 9, 0x53656c6563696f6e65206120647572612663636564696c3b266174696c64653b6f206461732066266561637574653b72696173, 'Y', '2004-04-30 02:14:04'),
(962, 9, 0x54656e686120626f61732066266561637574653b7269617321, 'Y', '2004-04-30 02:14:04'),
(997, 9, 0x506f6c6f6e2665636972633b73, 'Y', '2004-04-30 02:14:04'),
(998, 9, 0x4974616c69616e6f, 'Y', '2004-04-30 02:14:04'),
(1003, 9, 0x426173636f, 'Y', '2004-04-30 02:14:04'),
(1014, 9, 0x496e7465726c266961637574653b6e677561, 'Y', '2004-04-30 02:14:04'),
(1015, 9, 0x4573706572616e746f, 'Y', '2004-04-30 02:14:04'),
(627, 9, 0x4f20717565207369676e6966696361206120226174697669646164652220646520756d20757375266161637574653b72696f3f, 'Y', '2004-04-30 02:19:22'),
(629, 9, 0x4f20717565207369676e6966696361206f202270657263656e7475616c2220646520756d20757375266161637574653b72696f3f, 'Y', '2004-04-30 02:19:22'),
(631, 9, 0x436f6d6f20657520706f73736f20617061676172206d696e6861206f6665727461206465206a6f676f2064612073616c61206465206573706572613f, 'Y', '2004-04-30 02:19:22'),
(635, 9, 0x506f7271756520616c67756e7320757375266161637574653b72696f73206e266174696c64653b6f2073266174696c64653b6f206c69737461646f73206e61206c6973746120646520757375266161637574653b72696f733f, 'Y', '2006-08-05 19:57:32'),
(1015, 7, '', 'Y', '2008-01-08 15:28:39'),
(458, 27, 0x507269736f6e6f726573, 'Y', '2005-02-01 11:56:56'),
(3370, 18, 0x5475747465206c652070617274697465206f7373657276617465, 'Y', '2012-08-27 16:22:35'),
(80, 23, 0xe383ade382b0e382a4e383b3e5908d, 'Y', '2004-08-05 08:37:54'),
(1015, 6, '', 'Y', '2007-11-03 16:08:38'),
(81, 23, 0xe383ade382b0e382a4e383b3e38197e381a6e38184e381bee3819be38293e38082, 'Y', '2004-08-04 19:27:27'),
(82, 23, 0xe382b9e38386e383bce382bfe382b9, 'Y', '2004-08-04 19:27:27'),
(83, 23, 0xe5afbee5b180e794b3e8bebce8a1a8, 'Y', '2004-08-04 19:27:27'),
(84, 23, 0xe5808be4babae383a6e383bce382b6e383bce68385e5a0b1, 'Y', '2004-10-26 04:56:06'),
(85, 23, 0xe383a1e383bce383ab, 'Y', '2004-08-05 01:14:06'),
(86, 23, 0xe696b0e8a68fe383a1e383bce383abe98081e4bfa1, 'Y', '2004-08-05 01:14:06'),
(87, 23, 0xe68b9be5be85, 'Y', '2004-08-05 01:14:06'),
(88, 23, 0xe383a6e383bce382b6e383bc, 'Y', '2004-08-05 01:14:06'),
(89, 23, 0xe5afbee5b180, 'Y', '2004-08-05 01:14:06'),
(90, 23, 0xe7bfbbe8a8b3, 'Y', '2004-08-05 01:14:06'),
(91, 23, 0xe38395e382a9e383bce383a9e383a0, 'Y', '2004-08-05 01:14:06'),
(92, 23, '', 'Y', '2007-10-11 04:58:08'),
(93, 23, 0xe382b5e382a4e38388e3839ee38383e38397, 'Y', '2004-08-05 01:14:06'),
(94, 23, 0xe38398e383abe38397, 'Y', '2004-08-05 01:14:06'),
(95, 23, 0xe3839ae383bce382b8e9968be799bae8a880e8aa9e, 'Y', '2004-08-05 01:14:06'),
(96, 23, 0xe382a2e38389e3839f, 'Y', '2004-08-05 01:14:06'),
(97, 23, 0xe383ade382b0e382a2e382a6e38388, 'Y', '2004-08-05 01:14:06'),
(98, 23, 0xe697a5, 'Y', '2004-08-05 01:14:06'),
(99, 23, 0xe697a5e99693, 'Y', '2004-08-05 01:14:06'),
(100, 23, 0xe381a8, 'Y', '2004-08-05 01:14:06'),
(101, 23, 0xe69982e99693, 'Y', '2004-08-05 01:14:06'),
(102, 23, 0xe69982e99693, 'Y', '2004-08-05 01:14:06'),
(103, 23, 0xe7a792e8aaade381bfe784a1e38197, 'Y', '2004-08-05 01:14:06'),
(104, 23, 0xe68c81e381a1e69982e99693e381a7e38081e4b880e6898be381ab2573e8bfbde58aa0e69982e99693, 'Y', '2004-08-06 17:20:15'),
(106, 23, 0xe697a5e69cace5bc8fe7a792e8aaade381bf, 'Y', '2004-08-05 01:14:06'),
(107, 23, 0xe5ad90, 'Y', '2004-08-05 01:14:06'),
(108, 23, 0xe382abe3838ae38380e5bc8fe7a792e8aaade381bf, 'Y', '2004-08-05 01:14:06'),
(132, 23, '', 'Y', '2007-10-11 04:58:08'),
(134, 23, 0xe5908de5898d, 'Y', '2004-08-05 01:14:06'),
(201, 23, 0xe383a6e383bce382b6e383bc4944, 'Y', '2004-08-05 01:14:06'),
(204, 23, 0xe6a38be58a9be68385e5a0b1, 'Y', '2004-08-05 01:14:06'),
(205, 23, 0xe6a38be58a9b, 'Y', '2004-08-05 01:14:06'),
(309, 23, 0xe38395e383a9e382b0, 'Y', '2004-08-05 01:14:06'),
(310, 23, 0xe5b7aee587bae4baba, 'Y', '2004-08-05 01:14:06'),
(311, 23, 0xe4bbb6e5908d, 'Y', '2004-08-05 01:14:06'),
(312, 23, 0xe697a5e69982, 'Y', '2004-08-05 01:14:06'),
(314, 23, 0xe696b0e8a68f, 'Y', '2004-08-05 01:14:06'),
(316, 23, 0xe8bf94e4bfa1, 'Y', '2004-08-05 01:14:06'),
(330, 23, 0xe799bd, 'Y', '2004-08-05 01:14:06'),
(331, 23, 0xe9bb92, 'Y', '2004-08-05 01:14:06'),
(352, 23, '', 'Y', '2007-10-11 04:58:08'),
(359, 23, 0xe79bb8e6898b, 'Y', '2004-08-05 01:14:06'),
(360, 23, 0xe889b2, 'Y', '2004-08-05 01:14:06'),
(361, 23, 0xe382b5e382a4e382ba, 'Y', '2004-08-05 01:14:06'),
(362, 23, 0xe7bdaee79fb3, 'Y', '2004-08-05 01:14:06'),
(363, 23, 0xe382b3e3839f, 'Y', '2004-08-05 01:14:06'),
(364, 23, 0xe6898be795aa, 'Y', '2004-08-05 01:14:06'),
(368, 23, 0xe69c80e5be8ce381aee6898be795aa, 'N', '2004-08-05 01:14:06'),
(374, 23, 0xe68993e381a1e68e9be38191e5afbee5b180e38292e8a1a8e7a4ba, 'Y', '2004-08-05 01:14:06'),
(375, 23, 0xe5ae8ce4ba86e5afbee5b180e38292e8a1a8e7a4ba, 'Y', '2004-08-05 01:14:06'),
(388, 23, 0xe68b9be5be85e38292e58f97e38191e3828befbc9f, 'Y', '2005-09-27 00:13:50'),
(389, 23, 0xe69caae8aaade383a1e38383e382bbe383bce382b8, 'Y', '2004-08-05 01:14:06'),
(390, 23, 0xe4b88be8a898e5afbee5b180e381afe38182e381aae3819fe381aee795aae381a7e38199efbc9a, 'Y', '2004-08-07 01:54:21'),
(391, 23, 0xe5afbee5b180e3818ce4b880e381a4e38282e69c89e3828ae381bee3819be38293e38082, 'Y', '2004-08-07 01:54:21'),
(460, 23, 0xe6aca1e381aee3839ae383bce382b8e381b8, 'Y', '2004-08-05 01:14:06'),
(461, 23, 0xe5898de381aee3839ae383bce382b8e381b8, 'Y', '2004-08-05 01:14:06'),
(462, 23, 0xe58897e38292e8bfbde58aa0e38199e3828b, 'Y', '2004-08-05 01:14:06'),
(715, 23, 0xe3839ae383bce382b8e69982e588bb, 'Y', '2004-08-05 01:14:06'),
(4667, 40, 0x4f70e7f565732d64652d5065737175697361, 'Y', '2014-04-13 18:10:38'),
(4675, 36, 0x416c616b7a6174206d656e74c3a97365, 'Y', '2015-09-19 16:42:25'),
(719, 23, 0x2573e381ae252e3166e79baee58b9de381a1e381a7e38199e38082, 'Y', '2004-08-10 12:52:33'),
(722, 23, 0xe38395e382a9e383abe38380, 'Y', '2004-08-05 01:14:06'),
(732, 23, 0xe4bc91e686a9e6ae8be697a5e695b0, 'Y', '2004-08-05 01:14:06'),
(733, 23, 0xe4bc91e686a9e4b8ad, 'Y', '2004-08-05 01:14:06'),
(747, 23, 0xe585a8e58897, 'Y', '2004-08-05 01:14:06'),
(755, 23, 0xe382b5e383bce38390e383bce383a1e38383e382bbe383bce382b8, 'Y', '2004-08-05 01:14:06'),
(160, 23, 0xe38389e383a9e382b4e383b3e381abe381aee7b4b9e4bb8b, 'Y', '2005-09-13 20:16:57'),
(191, 23, 0xe38391e382b9e383afe383bce38389e381aee7a2bae8aa8d, 'Y', '2004-08-05 08:16:29'),
(202, 23, 0xe38395e383abe3838de383bce383a0, 'Y', '2004-08-05 08:16:29'),
(223, 23, 0xe38391e382b9e383afe383bce38389, 'Y', '2004-08-05 08:16:29'),
(240, 23, 0xe3839be383bce383a0, 'Y', '2004-08-05 08:16:29'),
(242, 23, 0xe381a9e38186e3819ee38081e799bbe98cb2e38197e38081e38194e887aae794b1e381abe5afbee5b180e38292e38082e38082e38082, 'Y', '2004-08-05 08:16:29'),
(243, 23, 0xe383ade382b0e382a4e383b3e38197e381a6e4b88be38195e38184e38082, 'Y', '2004-08-05 08:16:29'),
(244, 23, 0xe799bbe98cb2e3819be3819ae381abe3808c2573e3808de381a7e382b5e382a4e38388e38292e6a49ce8a88ee587bae69da5e381bee38199e38082, 'Y', '2004-08-05 08:16:29'),
(245, 23, 0xe38391e382b9e383afe383bce38389, 'Y', '2004-08-05 08:16:29'),
(246, 23, 0xe383ade382b0e382a4e383b3, 'Y', '2004-08-05 08:16:29'),
(247, 23, 0xe696b0e38197e38184e382a2e382abe382a6e383b3e38388e38292e799bbe98cb2, 'Y', '2004-08-05 08:16:29'),
(248, 23, 0xe7b4b9e4bb8b, 'Y', '2004-08-05 08:16:29'),
(252, 23, 0xe38389e383a9e382b4e383b3e7a281e381a7e6a5bde38197e38293e381a7e4b88be38195e38184e38082, 'Y', '2005-09-13 20:16:57'),
(344, 23, 0xe799bbe98cb2, 'Y', '2004-08-05 08:16:29'),
(345, 23, 0xe38387e383bce382bfe38292e585a5e58a9be38197e381a6e3818fe381a0e38195e38184e38082, 'Y', '2004-08-05 08:16:29'),
(478, 23, 0xe38282e381a3e381a8e8a9b3e38197e3818fe381af3c6120687265663d226661712e706870223e46415120666f72756d3c2f613ee381abe58f82e785a7e38197e381a6e4b88be38195e38184e38082, 'Y', '2004-08-05 08:16:29'),
(109, 23, 0xe382b2e383bce383a0e8bfbde58aa0e38197e381bee38197e3819fe38082, 'Y', '2004-08-05 08:25:43'),
(225, 23, 0xe68a95e4ba86e38197e381bee38199e38082, 'Y', '2004-08-05 08:25:43'),
(226, 23, 0xe38391e382b9e38197e381bee38199e38082, 'Y', '2004-08-05 08:25:43'),
(227, 23, 0xe382b2e383bce383a0e38292e5898ae999a4e38197e381bee38199e38082, 'Y', '2004-08-05 08:25:43'),
(229, 23, 0xe7b590e69e9c, 'Y', '2004-08-10 12:53:19'),
(230, 23, 0xe5afbee5b180, 'Y', '2004-08-05 08:25:43'),
(231, 23, 0xe38391e382b9, 'Y', '2004-08-05 08:25:43'),
(232, 23, 0xe382b2e383bce383a0e5898ae999a4, 'Y', '2004-08-05 08:25:43'),
(233, 23, 0xe5afbee5b180e7b582e4ba86, 'Y', '2004-08-10 12:57:36'),
(234, 23, 0xe5afbee5b180e5868de9968b, 'Y', '2004-08-05 08:25:43'),
(235, 23, 0xe68a95e4ba86, 'Y', '2004-08-05 08:25:43'),
(236, 23, 0x534746e38380e382a6e383b3e383ade383bce38389, 'Y', '2004-08-05 08:25:43'),
(237, 23, 0xe6aca1e381aee5afbee5b180e381b8, 'Y', '2004-08-16 10:05:44'),
(238, 23, 0xe79ba3e8a696e383aae382b9e38388e3818be38289e5a496e38197e381bee38199, 'Y', '2004-08-05 08:25:43'),
(239, 23, 0xe79ba3e8a696e383aae382b9e38388e381abe8bfbde58aa0, 'Y', '2004-08-05 08:25:43'),
(253, 23, 0xe382b2e383bce383a0e38292e5898ae999a4e38197e381bee38197e3819fe38082, 'Y', '2004-08-05 08:25:43'),
(254, 23, 0xe5afbee5b180e381abe58f82e58aa0e38197e381a6e38184e381bee38199e38082, 'Y', '2004-08-05 08:25:43'),
(308, 23, 0xe5ae9be58588, 'Y', '2004-08-05 08:25:43'),
(324, 23, 0xe8bf94e4bfa1, 'Y', '2004-08-05 08:25:43'),
(325, 23, 0xe383a1e38383e382bbe383bce382b8, 'Y', '2004-08-05 08:25:43'),
(342, 23, 0xe6a38be58a9be382b0e383a9e383953a, 'Y', '2004-08-05 08:25:43'),
(343, 23, 0xe5ae8ce4ba86e5afbee5b180e3818ce5b091e381aae9818ee3818ee381bee38199e381aee381a7e38081e382b0e383a9e38395e38292e8a1a8e7a4bae587bae69da5e381bee3819be38293e38082, 'Y', '2004-08-05 08:25:43'),
(348, 23, 0xe5ae8ce4ba86e5afbee5b180e695b0, 'Y', '2004-10-26 04:54:22'),
(349, 23, 0xe68993e381a1e68e9be38191e5afbee5b180e695b0, 'Y', '2005-09-26 20:26:04'),
(350, 23, 0x2573e381aee5ae8ce4ba86e5afbee5b1803a, 'Y', '2004-08-05 08:25:43'),
(351, 23, 0x2573e381aee68993e381a1e68e9be38191e5afbee5b1803a, 'Y', '2004-08-05 08:25:43'),
(366, 23, 0xe6a38be58a9be381abe5bdb1e99fbfe38199e3828b, 'Y', '2005-01-22 11:52:26'),
(370, 23, 0xe381afe38184, 'Y', '2004-08-05 08:25:43'),
(371, 23, 0xe38184e38184e38188, 'Y', '2004-08-05 08:25:43'),
(372, 23, 0xe68c81e7a281, 'N', '2004-08-05 08:25:43'),
(373, 23, 0xe38193e381aee383a6e383bce382b6e383bce38292e68b9be5be85e38197e381bee38199, 'Y', '2004-08-05 08:25:43'),
(406, 23, 0xe6a899e6ba96, 'Y', '2004-08-05 08:25:43'),
(407, 23, 0xe6ada3e38197e38184, 'Y', '2004-08-05 08:25:43'),
(408, 23, 0xe4ba92e38184e58588, 'Y', '2004-08-05 08:25:43'),
(409, 23, 0xe38380e38396e383abe5afbee5b180, 'Y', '2004-08-05 08:25:43'),
(411, 23, 0xe68385e5a0b1, 'Y', '2004-08-05 08:25:43'),
(412, 23, 0xe58299e88083, 'Y', '2004-08-05 08:25:43'),
(414, 23, 0xe69982e99693e588b6e99990, 'Y', '2004-08-05 08:25:43'),
(415, 23, 0xe5afbee5b180e695b0, 'Y', '2004-08-05 08:25:43'),
(416, 23, 0xe980b1e69cabe69982e8a888e8a8ade5ae9a, 'Y', '2004-08-05 08:25:43'),
(417, 23, 0xe78fbee59ca8e7a9bae381a3e381bde381a7e38199e38082, 'Y', '2004-08-05 08:25:43'),
(419, 23, 0x257320e381aee381bf, 'Y', '2004-08-05 08:25:43'),
(420, 23, 0xe8bfbde58aa0e38199e3828be5afbee5b180e794b3e8bebce695b0, 'Y', '2004-08-05 08:25:43'),
(421, 23, 0xe6aeb5, 'Y', '2004-08-05 08:25:43'),
(422, 23, 0xe7b49a, 'Y', '2004-08-05 08:25:43'),
(423, 23, 0xe6a38be58a9be68c81e381a1e79bb8e6898be381aee381bf, 'Y', '2004-08-05 08:25:43'),
(424, 23, 0xe69c89e58ab9e381aee5a0b4e59088e38081e6a38be58a9be381aee7af84e59bb2e38292e8a8ade5ae9ae38197e381a6e4b88be38195e38184efbc9a, 'Y', '2004-08-05 08:25:43'),
(425, 23, 0xe5afbee5b180e8bfbde58aa0, 'Y', '2004-08-05 08:25:43'),
(426, 23, 0xe383a6e383bce382b6e383bc, 'Y', '2004-08-05 08:25:43'),
(427, 23, 0xe5afbee5b180e695b0, 'Y', '2004-08-05 08:25:43'),
(428, 23, 0xe980b1e69cabe381abe69982e8a888e3818ce980b2e38280, 'Y', '2004-08-05 08:25:43'),
(429, 23, 0xe5898ae999a4, 'Y', '2004-08-05 08:25:43'),
(430, 23, 0xe58f82e58aa0, 'Y', '2004-08-05 08:25:43'),
(437, 23, 0xe68c81e381a1e69982e99693, 'Y', '2004-08-05 08:25:43'),
(454, 23, 0xe7bdaee79fb3e38292e7bdaee38184e381a6e3818fe381a0e38195e38184e38082, 'Y', '2004-08-05 08:25:43'),
(455, 23, 0xe68f90e587bae38197e38081e6aca1e381aee5afbee5b180e381b8, 'Y', '2004-08-05 08:25:43'),
(456, 23, 0xe68f90e587bae38197e38081e382b9e38386e383bce382bfe382b9e3839ae383bce382b8e381b8, 'Y', '2004-08-05 08:25:43'),
(457, 23, 0xe58583e381abe688bbe38199, 'Y', '2004-08-05 08:25:43'),
(458, 23, 0xe382a2e382b2e3838fe3839e, 'Y', '2004-08-05 08:25:43'),
(484, 23, 0xefbc91e69c88, 'Y', '2004-08-05 08:25:43'),
(485, 23, 0xefbc92e69c88, 'Y', '2005-10-18 18:34:38'),
(486, 23, 0xefbc94e69c88, 'Y', '2004-08-05 08:25:43'),
(487, 23, 0xefbc95e69c88, 'Y', '2004-08-05 08:25:43'),
(488, 23, 0xefbc96e69c88, 'Y', '2004-08-05 08:25:43'),
(489, 23, 0xefbc98e69c88, 'Y', '2004-08-05 08:25:43'),
(490, 23, 0xefbc99e69c88, 'Y', '2004-08-05 08:25:43'),
(491, 23, 0xefbc91efbc90e69c88, 'Y', '2004-08-05 08:25:43'),
(492, 23, 0xefbc91efbc92e69c88, 'Y', '2004-08-05 08:25:43'),
(3141, 7, 0x5665f8656a6ee9, 'Y', '2016-07-20 16:22:45'),
(495, 23, 0xefbc93e69c88, 'Y', '2004-08-05 08:25:43'),
(496, 23, 0xefbc97e69c88, 'Y', '2004-08-05 08:25:43'),
(497, 23, 0xefbc91efbc91e69c88, 'Y', '2004-08-05 08:25:43'),
(498, 23, 0xe3818be38289, 'Y', '2004-08-05 08:25:43'),
(499, 23, 0xe381bee381a7, 'Y', '2004-08-05 08:25:43'),
(618, 23, 0xe9968be5a78be6a38be58a9b, 'Y', '2004-08-05 08:25:43'),
(619, 23, 0xe7b582e4ba86e6a38be58a9b, 'Y', '2004-08-05 08:25:43'),
(620, 23, 0xe6a38be58a9be5b7ae, 'Y', '2004-08-05 08:25:43'),
(307, 23, 0xe383a1e38383e382bbe383bce382b8e8a1a8, 'Y', '2004-08-05 08:32:09'),
(315, 23, 0xe8bf94e4bfa1e6b888, 'Y', '2004-08-05 08:32:09'),
(322, 23, 0xe38193e381aee68b9be5be85e381afe697a2e381abe689bfe8abbee38195e3828ce381bee38197e3819fe38082, 'Y', '2004-08-11 04:28:02'),
(323, 23, 0xe68b9be5be85e3818ce8be9ee98080e38195e3828ce3819fe3818be38081e5afbee5b180e3818ce5898ae999a4e38195e3828ce381bee38197e3819fe38082, 'Y', '2004-08-05 08:32:09'),
(326, 23, 0xe8bf94e4bfa1e799bae4bfa1, 'Y', '2004-08-05 08:32:09'),
(327, 23, 0xe696b0e8a68fe383a1e383bce383ab, 'Y', '2004-08-05 08:32:09'),
(328, 23, 0xe5ae9be5858828e383a6e383bce382b6e383bce5908d29, 'Y', '2004-08-05 08:32:09'),
(329, 23, 0xe98081e4bfa1, 'Y', '2004-08-05 08:32:09'),
(332, 23, 0xe8a8ade5ae9ae4b88de5908ce6848f, 'Y', '2004-08-05 08:32:09'),
(333, 23, 0xe58f82e58aa0, 'Y', '2004-08-11 04:28:02'),
(334, 23, 0xe8be9ee98080, 'Y', '2004-08-05 08:32:09'),
(335, 23, 0xe68b9be5be85e383a1e383bce383ab, 'Y', '2004-08-05 08:32:09'),
(336, 23, 0xe68b9be5be85e98081e4bfa1, 'Y', '2005-02-17 03:50:57'),
(346, 23, 0xe383a1e383bce383abe98081e4bfa1e38197e381bee38197e3819fe38082, 'Y', '2004-08-05 08:32:09'),
(431, 23, 0xe7a281e79ba4e382b5e382a4e382ba, 'N', '2004-08-05 08:32:09'),
(432, 23, 0xe6a899e6ba96e7bdaee79fb3efbc88e4ba92e38184e58588e4bba5e5a496e381aee5a0b4e59088e381afe382b3e3839f302e35efbc89, 'Y', '2004-08-05 08:32:09'),
(433, 23, 0xe6ada3e38197e38184e3838fe383b3e38387, 'Y', '2004-08-05 08:32:09'),
(436, 23, 0xe383b6e69c88, 'Y', '2004-08-05 08:32:09'),
(439, 23, 0xe381a7, 'Y', '2004-08-05 08:32:09'),
(442, 23, 0xe381a7, 'Y', '2004-08-05 08:32:09'),
(443, 23, 0xe38395e382a3e38383e382b7e383a3e383bce5bc8fe7a792e8aaade381bf, 'Y', '2004-08-05 08:32:09'),
(445, 23, 0xe5afbee5b1804944, 'Y', '2004-08-05 08:32:09'),
(446, 23, 0xe889b2, 'Y', '2004-08-05 08:32:09'),
(447, 23, 0xe68fa1e3828a, 'Y', '2004-08-05 08:32:09'),
(449, 23, 0xe697a5e69cace5bc8f, 'Y', '2004-08-05 08:32:09'),
(450, 23, 0xe4b880e6898be381ab253173e381a7e38080253273e59b9e, 'Y', '2004-08-05 08:32:09'),
(451, 23, 0xe382abe3838ae38380e5bc8f, 'Y', '2004-08-05 08:32:09'),
(452, 23, 0x253173e381ab253273e5ad90e38292, 'Y', '2004-08-05 08:32:09'),
(453, 23, 0xe4b880e6898be381abe8bfbde58aa0, 'Y', '2004-08-05 08:32:09'),
(724, 23, 0xe58db0e3818ce4bb98e38184e381a6e38184e3828be383a1e383bce383abe38292e5898ae999a4, 'Y', '2004-08-05 08:32:09'),
(726, 23, 0xe38395e382a9e383abe38380e7b7a8e99b86, 'Y', '2004-08-05 08:32:09'),
(727, 23, 0xe5afbee5b180e381aee8a8ade5ae9ae3818c, 'Y', '2004-08-05 08:32:09'),
(740, 23, 0xe58f97e4bfa1e7aeb1, 'Y', '2005-12-20 19:58:36'),
(741, 23, 0xe4b880e888ac, 'Y', '2004-08-11 04:34:44'),
(742, 23, 0xe382b4e3839fe7aeb1, 'Y', '2004-08-05 08:32:09'),
(743, 23, 0xe98081e4bfa1e6b888e381bf, 'Y', '2004-08-05 08:32:09'),
(744, 23, 0xe8bf94e4bfa1e38199e3828be69982e38081e6aca1e381aee38395e382a9e383abe38380e381b8e7a7bbe58b95, 'Y', '2004-08-05 08:32:09'),
(745, 23, 0xe6aca1e381aee38395e382a9e383abe38380e381b8e7a7bbe58b95, 'Y', '2004-08-05 08:32:09'),
(746, 23, 0xe38395e382a9e383abe38380e5908d, 'Y', '2004-08-05 08:32:09'),
(156, 23, 0xe5808be4babae68385e5a0b1e38292e69bb4e696b0e38197e381bee38197e3819fe38082, 'Y', '2004-08-05 08:45:14'),
(157, 23, 0xe38391e382b9e383afe383bce38389e38292e69bb4e696b0e38197e381bee38197e3819fe38082, 'Y', '2004-08-05 08:45:14'),
(158, 23, 0xe38397e383ade38395e382a3e383abe38292e69bb4e696b0e38197e381bee38197e3819fe38082, 'Y', '2004-08-05 08:45:14'),
(175, 23, 0xe4bb963a, 'Y', '2004-08-05 08:45:14'),
(176, 23, 0xe59bbde7b18d, 'Y', '2004-08-05 08:45:14'),
(177, 23, 0xe5b882e58cbae794bae69d91, 'Y', '2004-08-05 08:45:14'),
(178, 23, 0xe983bde98193e5ba9ce79c8ce383bbe5b79e, 'Y', '2004-08-05 08:45:14'),
(179, 23, 0xe382afe383a9e38396, 'Y', '2004-08-05 08:45:14'),
(180, 23, 0xe3839be383bce383a0e3839ae383bce382b8, 'Y', '2004-08-05 08:45:14'),
(181, 23, 0xe383a1e383bce383abe382a2e38389e383ace382b9, 'Y', '2004-08-05 08:45:14'),
(182, 23, 0x49435123, 'Y', '2004-08-05 08:45:14'),
(183, 23, 0xe5afbee5b180e381aee5a5bde381bf, 'Y', '2004-08-05 08:45:14'),
(184, 23, 0xe8b6a3e591b3, 'Y', '2004-08-05 08:45:14'),
(185, 23, 0xe881b7e6a5ad, 'Y', '2004-08-05 08:45:14'),
(187, 23, 0xe5808be4babae68385e5a0b1e69bb4e696b0, 'Y', '2004-08-05 08:45:14'),
(188, 23, 0xe38391e382b9e383afe383bce38389e5a489e69bb4, 'Y', '2004-08-05 08:45:14'),
(189, 23, 0xe58fa4e38184e38391e382b9e383afe383bce38389, 'Y', '2004-08-05 08:45:14'),
(190, 23, 0xe696b0e38197e38184e38391e382b9e383afe383bce38389, 'Y', '2004-08-05 08:45:14'),
(192, 23, 0xe38391e382b9e383afe383bce38389e38292e5a489e69bb4e38199e3828b, 'Y', '2004-08-05 08:45:14'),
(193, 23, 0xe5819ce6ada2, 'Y', '2004-08-05 08:45:14'),
(194, 23, 0xe79fa5e38289e3819be381aee381bf, 'Y', '2004-08-05 08:45:14'),
(195, 23, 0xe6898be795aae381a8e383a1e383bce383ab, 'Y', '2004-08-05 08:45:14'),
(196, 23, 0xe79ba4e4b88ae381a8e383a1e383bce383ab, 'Y', '2004-08-05 08:45:14'),
(197, 23, 0xe7b8a6, 'Y', '2004-08-05 08:45:14'),
(198, 23, 0xe6a8aa, 'Y', '2004-08-05 08:45:14'),
(199, 23, 0xe38397e383ade38395e382a3e383abe7b7a8e99b86, 'Y', '2004-08-05 08:45:14'),
(200, 23, 0xe5808be4babae8a8ade5ae9a, 'Y', '2004-08-05 08:45:14'),
(206, 23, 0xe383a1e383bce383abe79fa5e38289e3819b, 'Y', '2004-08-05 08:45:14'),
(207, 23, 0xe38396e383a9e382a6e382b6e383bce8a8ade5ae9ae38292e588a9e794a8, 'Y', '2004-08-05 08:45:14'),
(208, 23, 0xe8a880e8aa9e, 'Y', '2004-08-05 08:45:14'),
(209, 23, 0xe69982e99693e5b8af, 'Y', '2004-08-05 08:45:14'),
(210, 23, 0xe5a49ce381aee8a8ade5ae9a, 'Y', '2004-08-05 08:45:14'),
(211, 23, 0xe7a281e79ba4e381aee382b0e383a9e38395e382a3e38383e382afe382b9, 'Y', '2004-08-05 08:45:14'),
(212, 23, 0xe79fb3e381aee382b5e382a4e382ba, 'Y', '2004-08-05 08:45:14'),
(213, 23, 0xe7a281e79ba4e381aee889b2, 'Y', '2004-08-05 08:45:14'),
(214, 23, 0xe7abafe38292e59088e3828fe3819be3828b, 'Y', '2004-08-05 08:45:14'),
(215, 23, 0xe5b7a6, 'Y', '2004-08-05 08:45:14'),
(216, 23, 0xe4b88a, 'Y', '2004-08-05 08:45:14'),
(217, 23, 0xe58fb3, 'Y', '2004-08-05 08:45:14'),
(218, 23, 0xe4b88b, 'Y', '2004-08-05 08:45:14'),
(219, 23, 0xe7a281e79ba4e381aee5a2a8e38292e4b8b8e38281e3828b, 'Y', '2004-08-05 08:45:14'),
(220, 23, 0xe383a1e3838be383a5e383bce381aee696b9e59091, 'Y', '2004-08-05 08:45:14'),
(222, 23, 0xe38397e383ade38395e382a3e383abe5a489e69bb4, 'Y', '2004-08-05 08:45:14'),
(378, 23, 0xe887aae58886e381aee5808be4babae68385e5a0b1, 'Y', '2004-08-05 08:45:14'),
(379, 23, 0xe5808be4babae68385e5a0b1e7b7a8e99b86, 'Y', '2004-08-05 08:45:14'),
(393, 23, 0xe799bbe98cb2e697a5e4bb98, 'Y', '2004-08-05 08:45:14'),
(394, 23, 0xe69c80e5be8ce381aee382a2e382afe382bbe382b9, 'Y', '2004-08-05 08:45:14'),
(395, 23, 0xe5808be4babae68385e5a0b1, 'Y', '2004-08-05 08:45:14'),
(396, 23, 0xe383a6e383bce382b6e383bce381abe383a1e383bce383abe98081e4bfa1, 'Y', '2004-08-05 08:45:14'),
(397, 23, 0xe68993e381a1e68e9be38191, 'Y', '2004-08-05 08:45:14'),
(398, 23, 0xe5ae8ce4ba86, 'Y', '2004-08-05 08:45:14'),
(399, 23, 0xe58b9de588a9, 'Y', '2004-08-05 08:45:14'),
(400, 23, 0xe69597e58c97, 'Y', '2005-09-27 00:13:50'),
(402, 23, 0xe6b4bbe58b95, 'Y', '2004-08-05 08:45:14'),
(463, 23, 0xe382b9e382a6e382a7e383bce38387e383b3e8aa9e, 'Y', '2004-08-05 08:45:14'),
(464, 23, 0xe3838ee383bce383abe382a6e382a7e383bce8aa9e, 'Y', '2004-08-05 08:45:14'),
(465, 23, 0xe88bb1e8aa9e, 'Y', '2004-08-05 08:45:14'),
(466, 23, 0xe38389e382a4e38384e8aa9e, 'Y', '2004-08-05 08:45:14'),
(467, 23, 0xe38395e383a9e383b3e382b9e8aa9e, 'Y', '2004-08-05 08:45:14'),
(468, 23, 0xe382b9e3839ae382a4e383b3e8aa9e, 'Y', '2004-08-05 08:45:14'),
(469, 23, 0xe38381e382a7e382b3e8aa9e, 'Y', '2004-08-05 08:45:14'),
(470, 23, 0xe4b8ade59bbde8aa9e28e7b0a1e4bd93e5ad9729, 'Y', '2004-08-05 08:45:14'),
(3338, 17, '', 'Y', '2013-08-21 00:43:28'),
(472, 23, 0xe4b8ade59bbde8aa9e28e7b981e4bd93e5ad9729, 'Y', '2004-08-05 08:45:14'),
(473, 23, 0xe382aae383a9e383b3e38380e8aa9e, 'Y', '2004-08-05 08:45:14'),
(479, 23, 0xe382bfe382a4e8aa9e, 'Y', '2004-08-05 08:45:14'),
(494, 23, 0xe3808c2573e3808de381aee5808be4babae8a8ade5ae9a, 'Y', '2004-08-05 08:45:14'),
(500, 23, 0xe38395e382a3e383b3e383a9e383b3e38389e8aa9e, 'Y', '2004-08-05 08:45:14'),
(731, 23, 0xe383a1e383bce383abe38395e382a9e383abe38380e38292e7b7a8e99b86, 'Y', '2004-08-05 08:45:14'),
(736, 23, 0xe58b9de588a9e5afbee5b180e695b0, 'Y', '2004-08-05 08:45:14'),
(737, 23, 0xe69597e58c97e5afbee5b180e695b0, 'Y', '2004-08-05 08:45:14'),
(738, 23, 0xe4bc91e686a9e697a5e695b0e5a489e69bb4, 'Y', '2004-08-05 08:45:14'),
(739, 23, 0xe4bc91e686a9e9968be5a78b, 'Y', '2004-08-05 08:45:14'),
(750, 23, 0xe99f93e59bbde8aa9e, 'Y', '2004-08-05 08:45:14'),
(954, 23, 0xe383ade382b7e382a2e8aa9e, 'Y', '2004-08-05 08:45:14'),
(955, 23, 0xe4bc91e686a9, 'Y', '2004-08-05 08:45:14'),
(956, 23, 0xe78fbee59ca8e38081e4bc91e686a9e381aee697a5e695b0e381afe5a489e69bb4e587bae69da5e381bee3819be38293e38082, 'Y', '2004-08-05 08:45:14'),
(957, 23, 0xe4bc91e686a9e381aee697a5e695b0e381afe5a489e69bb4e38197e381bee38197e3819fe38082, 'Y', '2004-08-05 08:45:14'),
(958, 23, 0xe8bfbde58aa0, 'Y', '2004-08-05 08:45:14'),
(959, 23, 0xe5898ae999a4, 'Y', '2004-08-05 08:45:14'),
(960, 23, 0xe4bc91e686a9e381aee697a5e695b0e38292e981b8e38293e381a7e4b88be38195e38184e38082, 'Y', '2004-08-05 08:45:14'),
(962, 23, 0xe4bc91e686a9e38292e6a5bde38197e38293e381a7e4b88be38195e38184e38082, 'Y', '2004-08-05 08:45:14'),
(997, 23, 0xe3839de383bce383a9e383b3e38389e8aa9e, 'Y', '2004-08-05 08:45:14'),
(998, 23, 0xe382a4e382bfe383aae382a2e8aa9e, 'Y', '2004-08-05 08:45:14'),
(1003, 23, 0xe38390e382b9e382afe8aa9e, 'Y', '2004-08-05 08:45:14'),
(1014, 23, 0xe382a4e383b3e382bfe383bce383aae383b3e382b0e383afe383bce8aa9e, 'Y', '2004-08-05 08:45:14'),
(1015, 23, 0xe382a8e382b9e3839ae383a9e383b3e38388e8aa9e, 'Y', '2004-08-05 08:45:14'),
(136, 23, 0xe38395e382a9e383bce383a9e383a0, 'Y', '2004-08-05 08:46:40'),
(159, 23, 0xe8aaace6988e, 'Y', '2004-08-05 08:46:40'),
(161, 23, 0xe38288e3818fe8819ee3818fe8b3aae5958f, 'Y', '2004-08-05 08:46:40'),
(163, 23, 0xe4baba, 'Y', '2004-08-09 08:57:27'),
(164, 23, 0xe38389e383a9e382b4e383b3e381abe68f90e4be9be38197e381a6e38184e381bee38199, 'Y', '2005-09-13 20:21:06'),
(165, 23, 0xe383aae383b3e382af, 'Y', '2004-08-09 08:57:27'),
(168, 23, 0xe382a4e383b3e382b9e38388e383bce383abe381aee8aaace6988e, 'Y', '2004-08-09 08:57:27'),
(169, 23, 0xe38282e38197e38081e38389e383a9e382b4e383b3e7a281e382b5e383bce38390e383bce381aee382b3e38394e383bce38292e6acb2e38197e3818ce381a3e3819fe38289, 'Y', '2005-09-13 20:21:06'),
(170, 23, 0xe38389e383a9e382b4e383b3e7a281e382b5e383bce38390e383bce381aee38380e382a6e383b3e383ade383bce38389e383aae383b3e382af, 'Y', '2005-09-13 20:21:06'),
(2145, 17, 0x50726f, 'Y', '2013-08-20 23:51:45'),
(173, 23, 0x736f75726365666f726765e381a7e381aee38389e383a9e382b4e383b3e38397e383ade382b8e382a7e382afe38388, 'Y', '2005-09-13 20:21:06'),
(256, 23, 0xe4b880e888ace68385e5a0b1, 'Y', '2004-08-09 08:57:27'),
(257, 23, 0x4a616e2076616e2064657220537465656e73e381aee3839ae383bce382b8, 'Y', '2004-08-09 08:57:27'),
(258, 23, 0xe59bb2e7a281e381abe381a4e38184e381a6e6b2a2e5b1b1e381aee68385e5a0b1, 'Y', '2004-08-09 08:57:27'),
(259, 23, 0xe59bb2e7a281e381ae464151, 'Y', '2004-08-09 08:57:27'),
(260, 23, 0x7265632e67616d65732e676f206e65777367726f7570e381aee59bb2e7a281e381abe381a4e38184e381a6e381ae464151, 'Y', '2004-08-09 08:57:27'),
(266, 23, 0xe382b3e383a9e3839ce383ace383bce382b7e383a7e383b3e382b5e382a4e38388e38082e8aaade38293e381a7e38282e38184e38184e38197e38081e68385e5a0b1e38292e8bfbde58aa0e38199e3828be4ba8be38282e587bae69da5e381bee38199e38082, 'Y', '2004-08-09 08:57:27'),
(267, 23, 0xe59bb2e7a281e3838be383a5e383bce382b9, 'Y', '2004-08-09 08:57:27'),
(271, 23, 0xe38392e382abe383abe381aee7a281, 'Y', '2004-08-09 08:57:27'),
(272, 23, 0xe59bb2e7a281e381abe381a4e38184e381a6e381aee6bcabe794bbe38082e58ba7e38281e381a7e38199e38082, 'Y', '2004-08-09 08:57:27'),
(273, 23, 0xe383abe383bce383ab, 'Y', '2004-08-09 08:57:27'),
(274, 23, 0xe59bb2e7a281e381aee5afbee8a9b1e79a84e381aee7b4b9e4bb8b, 'Y', '2004-08-09 08:57:27'),
(275, 23, 0xe5889de38281e381abe381afe38184e38184e382b5e382a4e38388, 'Y', '2004-08-09 08:57:27'),
(276, 23, 0xe382a4e382aee383aae382b9e381aee59bb2e7a281e4bc9ae381aee59bb2e7a281e381aee7b4b9e4bb8b, 'Y', '2004-08-09 08:57:27'),
(281, 23, 0xe4bd9ce688a6e381a8e794a8e8aa9e, 'Y', '2004-08-09 08:57:27'),
(283, 23, 0xe8a9b0e7a281, 'Y', '2004-08-09 08:57:27'),
(284, 23, 0xe6b2a2e5b1b1e38199e3828ce381b0e38081e58a9be3818ce8baabe381abe4bb98e3818fe38082, 'Y', '2004-08-09 08:57:27'),
(286, 23, 0xe887aae58886e381aee5afbee5b180e381aee6a38be8ad9ce38292e68f90e587bae38197e38081e38282e381a3e381a8e5bcb7e38184e4babae381abe8a7a3e8aaace38197e381a6e8b2b0e38184e381bee38199e38082, 'Y', '2004-08-09 08:57:27'),
(287, 23, 0xe38288e3818fe4bdbfe3828fe3828ce3828be59bb2e7a281e381aee794a8e8aa9e, 'Y', '2004-08-09 08:57:27'),
(288, 23, 0xe4bb96e381aee5afbee5b180e88085e381aee8a880e381a3e381a6e38184e3828be4ba8be38292e58886e3818be3828be5bf85e8a681e3818ce69c89e3828ae381bee38199e38082, 'Y', '2004-08-09 08:57:27'),
(291, 23, 0xe6adb4e58fb2, 'Y', '2004-08-09 08:57:27'),
(292, 23, 0xe6adb4e58fb2e6a682e795a5, 'Y', '2004-08-09 08:57:27'),
(293, 23, 0xe99b86e4b8ade58a9be3818ce8b6b3e3828ae381aae38184e696b9e782ba, 'Y', '2004-08-09 08:57:27'),
(294, 23, 0xe7b4b0e3818be38184e6adb4e58fb2, 'Y', '2004-08-09 08:57:27'),
(295, 23, 0xe585a8e983a8e79fa5e3828ae3819fe3818ce3828be696b9e381aee782ba, 'Y', '2004-08-09 08:57:27'),
(296, 23, 0xe59bb2e7a281e381aee69cace38081e382bde38395e38388e38081e6a38be585b7, 'Y', '2004-08-09 08:57:27'),
(300, 23, 0xe4bb96e381aee59bb2e7a281e382b5e383bce38390e383bc, 'Y', '2004-08-09 08:57:27'),
(305, 23, 0xe382b5e383bce38390e383bce383aae382b9e38388, 'Y', '2004-08-09 08:57:27'),
(337, 23, 0xe38389e383a9e382b4e383b3e381aee5af84e4bb98e88085, 'Y', '2005-09-13 20:21:06'),
(6086, 36, 0x537a65726b65737a74c3a973, 'Y', '2015-07-23 12:16:04'),
(6322, 36, 0x68c3ad72656b2c2070726976c3a17420c3bc7a656e6574656b2c206cc3a970c3a97372652076c3a172c3b3206ac3a174737a6dc3a16b20c3a973206265c3a16c6cc3ad74c3a17372612076c3a172c3b32074c3b66262737a656dc3a96c796573206ac3a174737a6dc3a16b206d75746174c3a17361, 'Y', '2015-07-23 11:52:07'),
(340, 23, 0x464151e7b7a8e99b86e88085, 'Y', '2004-08-09 08:57:27'),
(377, 23, 0xe7b4b9e4bb8be3839ae383bce382b8, 'Y', '2004-08-09 08:57:27'),
(380, 23, 0xe383a1e38383e382bbe383bce382b8e8a1a8e7a4ba, 'Y', '2004-08-09 08:57:27'),
(383, 23, 0xe382b9e383ace38383e38389e8a1a8, 'Y', '2004-08-09 08:57:27'),
(384, 23, 0xe38395e382a9e383bce383a9e383a0e8aaade38280, 'Y', '2004-08-09 08:57:27'),
(385, 23, 0xe696b0e8a68fe383a1e38383e382bbe383bce382b8, 'N', '2004-08-09 08:57:27'),
(730, 23, 0xe4bc91e686a9e5a489e69bb4, 'Y', '2004-08-09 08:57:27'),
(265, 23, '', 'Y', '2007-10-11 04:58:08'),
(285, 23, '', 'Y', '2007-10-11 04:58:08'),
(374, 26, 0xd794d7a8d790d79420d79ed7a9d797d7a7d799d79d20d7a9d79ed7a9d795d797d7a7d799d79d20d79bd7a2d7aa, 'Y', '2005-01-16 22:00:19'),
(327, 27, 0x4d6573616a65206e6f7661, 'Y', '2005-02-01 04:53:11'),
(329, 27, 0x456e766961206d6573616a65, 'Y', '2005-02-01 04:53:11'),
(375, 26, 0xd794d7a8d791d79420d79ed7a9d797d7a7d799d79d20d79ed7a1d795d799d79ed799d79d, 'Y', '2005-01-16 22:00:19'),
(315, 27, 0x526573706f6e64656461, 'Y', '2005-02-01 04:53:11'),
(307, 27, 0x4c69737461206465206d6573616a6573, 'Y', '2005-02-01 04:53:11'),
(388, 26, 0xd79ed795d79bd79f20d79cd79ed7a9d797d7a73f, 'Y', '2005-01-16 22:00:19'),
(424, 27, 0x45732063652073692c2076616c756120656e747261, 'Y', '2005-02-01 04:24:18'),
(389, 26, 0xd794d795d793d7a2d795d7aa20d797d793d7a9d795d7aa, 'Y', '2005-01-16 22:00:19'),
(419, 27, 0x257320736f6c61, 'Y', '2005-02-01 04:24:18'),
(390, 26, 0xd794d7aad795d7a820d7a9d79cd79a20d79cd7a9d797d7a720d791d79ed7a9d797d7a7d799d79d20d794d791d790d799d79d3a, 'Y', '2005-01-16 22:00:19'),
(349, 27, 0x4a75617320612065737461206f7261, 'Y', '2005-02-17 13:20:31'),
(243, 27, 0x456e74726120706572206661766f72652e, 'Y', '2005-02-01 04:24:18'),
(391, 26, 0xd79cd79020d7a0d79ed7a6d790d79520d79ed7a9d797d7a7d799d79d, 'Y', '2005-01-16 22:00:19'),
(620, 27, 0x56616c756120646966, 'Y', '2005-02-01 03:11:23'),
(457, 27, 0x4120706f73, 'Y', '2005-02-01 03:11:23'),
(499, 27, 0x41, 'Y', '2005-02-01 11:56:56'),
(460, 26, 0xd793d7a320d794d791d790, 'Y', '2005-01-16 22:00:19'),
(461, 26, 0xd793d7a320d7a7d795d793d79d, 'Y', '2005-01-16 22:00:19'),
(462, 26, 0xd794d795d7a1d7a320d7a2d79ed795d793d794, 'Y', '2005-01-16 22:00:19'),
(715, 26, 0xd794d7aad790d7a8d799d79a2028d79cd7a4d79920d794d7a9d7a8d7aa293a, 'Y', '2005-01-16 22:00:19'),
(437, 27, 0x54656d706f20786566, 'Y', '2005-02-01 03:11:23'),
(372, 26, '', 'N', '2005-01-17 07:05:36'),
(4513, 40, 0x45646974207065737175697361, 'Y', '2014-04-13 18:10:38'),
(429, 27, 0x537574726165, 'Y', '2005-02-01 03:11:23'),
(430, 27, 0x4a756e7461, 'Y', '2005-02-01 03:11:23'),
(4677, 36, 0x416c616b7a6174206d656774656b696e74c3a97365, 'Y', '2015-09-19 16:42:25'),
(426, 27, 0x4a756f72, 'Y', '2005-02-01 03:11:23'),
(427, 27, 0x4e756d65726f206465206a756173, 'Y', '2005-02-17 13:20:31'),
(719, 26, 0x257320d7a0d7a6d797d795d7a0d795d7aa20d7a2d79c20d799d793d79920252e3166, 'Y', '2005-01-16 22:00:19'),
(342, 27, 0x4772616669636f2064652076616c756120706572, 'Y', '2005-02-01 03:13:59'),
(732, 26, 0xd799d79ed79920d797d795d7a4d7a9d79420d7a0d795d7aad7a8d799d79d, 'Y', '2005-01-16 22:00:19'),
(422, 27, 0x6b7975, 'Y', '2008-01-21 19:22:30'),
(425, 27, 0x4a756e7461206a7561, 'Y', '2005-02-17 13:20:31'),
(733, 26, 0xd791d797d795d7a4d7a9d794, 'Y', '2005-01-16 22:00:19'),
(215, 26, 0xd7a0d795d7aad7a8, 'Y', '2005-01-16 22:00:19'),
(747, 26, 0xd794d795d7a1d7a320d7a2d79ed795d793d795d7aa, 'Y', '2005-01-16 22:00:19'),
(160, 26, 0xd794d7a7d793d79ed79420d79cd793d7a8d792d795d79f, 'Y', '2005-01-16 22:03:47'),
(191, 26, 0xd790d7a9d7a820d7a1d799d7a1d79ed790, 'Y', '2005-01-16 22:03:47'),
(202, 26, 0xd7a9d79d20d79ed79cd790, 'Y', '2005-01-16 22:03:47'),
(223, 26, 0xd7a9d797d79bd7aa20d7a1d799d7a1d79ed7903f, 'Y', '2005-01-16 22:03:47'),
(240, 26, 0xd791d799d7aa, 'Y', '2005-01-16 22:03:47'),
(242, 26, 0xd791d791d7a7d7a9d7942c20d794d7a8d792d7a920d797d795d7a4d7a9d79920d79cd794d7a8d7a9d79d20d795d79cd7a9d797d7a720d79bd79ed79420d79ed7a9d797d7a7d799d79d2e, 'Y', '2005-01-16 22:03:47'),
(243, 26, 0xd791d791d7a7d7a9d79420d794d7aad797d791d7a82e, 'Y', '2005-01-16 22:03:47'),
(244, 26, 0xd79bd793d79920d79cd794d7aad791d795d7a0d79f20d791d79ed7a2d7a8d79bd7aa2c20d794d7a9d7aad79ed7a920d791202573, 'Y', '2005-01-16 22:03:47'),
(245, 26, 0xd7a1d799d7a1d79ed790, 'Y', '2005-01-16 22:03:47'),
(246, 26, 0xd794d7aad797d791d7a8, 'Y', '2005-01-16 22:03:47'),
(247, 26, 0xd7a6d795d7a820d797d7a9d791d795d79f20d797d793d7a9, 'Y', '2005-01-16 22:03:47'),
(248, 26, 0xd794d7a7d793d79ed794, 'Y', '2005-01-16 22:03:47'),
(252, 26, 0xd7a9d795d7912c20d791d7a8d795d79a20d794d791d7902c20d795d7aad794d7a0d79420d79ed7a9d794d795d7aad79a20d79bd790d79f21, 'Y', '2005-01-16 22:03:47'),
(344, 26, 0xd794d7a8d7a9d79d, 'Y', '2005-01-16 22:03:47'),
(345, 26, 0xd791d791d7a7d7a9d79420d794d79bd7a0d7a120d79ed799d793d7a2, 'Y', '2005-01-16 22:03:47'),
(478, 26, 0xd79ed799d793d7a220d7a0d795d7a1d7a320d799d79bd795d79c20d79cd794d79ed7a6d79020d791203c6120687265663d226661712e706870223ed7a4d795d7a8d795d79d20d7a9d790d79cd795d7aa20d795d7aad7a9d795d791d795d7aa3c2f613e2c20d794d79ed7a7d795d79d20d7a9d791d79520d7aad795d79bd79cd79520d79cd7a9d79cd795d79720d7a9d790d79cd795d7aa20d795d79cd7a7d791d79c20d7aad7a9d795d791d795d7aa20d79cd79bd79c20d7a9d790d79cd795d7aad799d799d79bd79d2e, 'Y', '2005-01-16 22:03:47'),
(366, 26, 0xd79ed793d795d7a8d792, 'Y', '2005-01-16 22:06:51'),
(370, 26, 0xd79bd79f, 'Y', '2005-01-16 22:06:51'),
(371, 26, 0xd79cd790, 'Y', '2005-01-16 22:06:51'),
(1028, 5, 0x48e962726575, 'Y', '2005-01-16 22:13:49'),
(722, 26, 0xd7aad799d7a7d799d794, 'Y', '2005-01-17 07:05:36'),
(755, 26, 0xd794d795d793d7a2d7aa20d79ed7a2d7a8d79bd7aa, 'Y', '2005-01-17 07:05:36'),
(1028, 4, 0x48656272e469736368, 'Y', '2005-01-19 20:43:00'),
(565, 30, 0xce95ceb9cf83ceb1ceb3cf89ceb3ceae20cf83cf84cebfcebd20447261676f6e, 'Y', '2005-10-10 21:10:38'),
(297, 23, 0xe8aaace6988ee4bb98e3818de59bb2e7a281e69cace58f82e88083e8a1a8, 'Y', '2005-01-22 11:32:25'),
(40, 23, 0xe38193e381aee6898be381afe887aae6aebae98195e58f8de381a7e38199e38082, 'Y', '2005-01-22 11:32:25'),
(57, 23, 0xe5a78be38281e381aee6a38be58a9be381afefbc93efbc90e7b49ae3818be38289efbc96e6aeb5e381bee381a7e381aee7af84e59bb2e381abe99990e38289e3828ce381a6e38184e381bee38199e38082, 'Y', '2005-01-22 11:32:25'),
(59, 23, 0xe7bfbbe8a8b3e88085e6a8a9e99990e38292e68c81e381a3e381a6e38184e381bee3819be38293e38082, 'Y', '2005-01-22 11:32:25'),
(512, 23, 0xe38389e383a9e382b4e383b3e381aee382b2e383bce383a0, 'Y', '2005-01-22 11:32:25'),
(513, 23, 0xe38389e383a9e382b4e383b3e381aee9968be799ba, 'Y', '2005-01-22 11:32:25'),
(518, 23, 0xe68fa1e3828a, 'N', '2005-01-22 11:32:25'),
(35, 23, 0xe38391e382b9e383afe383bce38389e381a8e7a2bae8aa8de38391e382b9e383afe383bce38389e381afe4b880e887b4e38197e381bee3819be38293e38082e38194e7a2bae8aa8de4b88be38195e38184e38082, 'Y', '2005-01-29 01:32:04'),
(535, 23, 0xe383a8e382bb, 'Y', '2005-01-29 01:32:04'),
(1029, 5, '', 'Y', '2011-10-26 12:06:49'),
(81, 27, 0x4e6f20656e7472616461, 'Y', '2008-01-20 12:02:25'),
(82, 27, 0x5374617465, 'Y', '2005-02-01 01:21:51'),
(83, 27, 0x53616c6120646520657370657461, 'Y', '2005-02-01 01:21:51'),
(84, 27, 0x496e666f726d61207375707261207573616e7465, 'Y', '2008-01-20 20:45:21'),
(85, 27, 0x4d6573616a6573, 'Y', '2005-02-01 01:21:51'),
(86, 27, 0x456e76696120756e206d6573616a65, 'Y', '2005-02-18 12:13:01'),
(87, 27, 0x496e76697461, 'Y', '2005-02-01 01:21:51'),
(88, 27, 0x5573616e746573, 'Y', '2005-02-01 01:21:51'),
(89, 27, 0x4a756173, 'Y', '2005-02-17 13:17:25'),
(90, 27, 0x547261647569, 'Y', '2005-02-01 01:21:51'),
(91, 27, 0x466f726f73, 'Y', '2005-02-01 01:21:51'),
(92, 27, '', 'Y', '2008-01-21 19:27:11'),
(98, 27, 0x646961, 'Y', '2005-02-01 01:21:51'),
(99, 27, 0x64696173, 'Y', '2005-02-01 01:21:51'),
(100, 27, 0x65, 'Y', '2005-02-01 01:21:51'),
(101, 27, 0x6f7261, 'Y', '2005-02-01 01:21:51'),
(103, 27, 0x73696e2062796f796f6d69, 'Y', '2008-01-20 20:48:01'),
(134, 27, 0x4e6f6d, 'Y', '2005-02-01 01:21:51'),
(311, 27, 0x54656d6f, 'Y', '2005-02-01 01:21:51'),
(314, 27, 0x4e6f7661, 'Y', '2005-02-01 01:21:51'),
(331, 27, 0x4e65677261, 'Y', '2005-02-01 01:21:51'),
(352, 27, '', 'Y', '2008-01-21 19:27:11'),
(360, 27, '', 'Y', '2008-01-21 19:27:11'),
(363, 27, 0x4b6f6d69, 'Y', '2008-01-20 20:59:16'),
(389, 27, 0x4d6573616a6573206e6f7661, 'Y', '2005-02-01 01:21:51'),
(102, 27, 0x6f726173, 'Y', '2005-02-01 01:30:32'),
(107, 27, 0x706574726173, 'Y', '2005-02-01 01:30:32'),
(132, 27, '', 'Y', '2008-01-21 19:27:11'),
(201, 27, 0x4944206465207573616e7465, 'Y', '2005-02-01 01:30:32'),
(310, 27, 0x4461, 'Y', '2005-02-01 01:30:32'),
(312, 27, 0x44617461, 'Y', '2005-02-01 01:30:32'),
(316, 27, 0x526573706f6e646521, 'Y', '2005-02-01 01:30:32'),
(330, 27, 0x426c616e6361, 'Y', '2005-02-01 01:30:32'),
(722, 27, 0x41726369766f73, 'Y', '2005-05-26 03:07:30'),
(732, 27, 0x4469617320646520766163616e73652072657374616e7465, 'Y', '2005-02-01 01:30:32'),
(733, 27, 0x4120766163616e7365, 'Y', '2005-02-01 01:30:32'),
(747, 27, 0x4361646120636f6c6f6e6173, 'Y', '2005-02-01 01:30:32'),
(755, 27, 0x4d6573616a65206465207365727661646f72, 'Y', '2005-02-01 01:30:32'),
(80, 27, 0x456e747261646120636f6d6f, 'Y', '2005-02-01 01:37:49'),
(93, 27, 0x4d6170612064652070616a6573, 'Y', '2005-02-01 01:37:49'),
(94, 27, 0x416964616e746573, 'Y', '2005-05-26 03:07:30'),
(96, 27, '', 'Y', '2008-01-21 19:27:11'),
(97, 27, 0x536f727469, 'Y', '2008-01-20 20:48:01'),
(204, 27, 0x496e666f2076616c7561, 'Y', '2005-02-01 01:37:49'),
(205, 27, 0x56616c7561, 'Y', '2005-02-01 01:37:49'),
(359, 27, 0x4a756f7220636f6e747261, 'Y', '2005-02-01 01:37:49'),
(361, 27, 0x4772616e646961, 'Y', '2005-02-01 01:37:49'),
(364, 27, 0x4d6f766573, 'Y', '2005-02-01 01:37:49'),
(368, 27, 0x556c74696d61206d6f7665, 'N', '2005-02-01 01:37:49'),
(375, 27, 0x4d6f73747261206a7561732066696e696461, 'Y', '2005-02-17 13:17:25'),
(388, 27, 0x50726570617265646120706572206a75613f, 'Y', '2005-05-26 03:07:30'),
(715, 27, 0x54656d706f2064652070616a65, 'Y', '2005-02-01 02:03:07'),
(374, 27, 0x4d6f73747261206a75617320612065737461206f7261, 'Y', '2005-02-17 13:17:25'),
(460, 27, 0x70616a652073656775656e7465, 'Y', '2005-02-01 01:47:36'),
(461, 27, 0x70616a6520616e7465, 'Y', '2005-02-01 01:47:36'),
(462, 27, 0x4a756e746120636f6c6f6e61, 'Y', '2005-02-01 01:47:36'),
(4512, 40, 0x56657220506573717569736120232564, 'Y', '2014-04-13 18:10:38'),
(95, 27, 0x50616a652063726561646120656e, 'Y', '2005-02-01 01:59:38'),
(104, 27, 0x636f6e20257320706c7520706572206d6f7665, 'Y', '2005-02-01 01:59:38'),
(106, 27, 0x42796f796f6d69206a6170616e6573, 'Y', '2008-01-20 20:48:01'),
(108, 27, 0x42796f796f6d692063616e616469616e, 'Y', '2008-01-20 20:48:01'),
(309, 27, 0x4d61726361, 'Y', '2005-02-01 01:59:38'),
(362, 27, 0x4469736176616e74616a65, 'Y', '2005-02-04 15:42:27'),
(390, 27, 0x547520706f7465206d6f766520656e2065737461206a7561733a, 'Y', '2005-02-17 13:17:25'),
(391, 27, 0x4e6f206a75612074726f76616461, 'Y', '2005-02-17 13:17:25'),
(4679, 36, 0x417a20616c616b7a6174206e6576652074c3ba6c2072c3b67669642076616779206869c3a16e797a696b2e, 'Y', '2015-09-19 16:42:25'),
(719, 27, 0x25732067616e69612076696120252e3166, 'Y', '2005-02-01 01:59:38'),
(160, 27, 0x496e74726f647569206120447261676f6e, 'Y', '2005-02-01 02:01:57'),
(202, 27, 0x4e6f6d20636f6d706c657461, 'Y', '2005-02-01 02:01:57'),
(248, 27, 0x496e74726f647569, 'Y', '2005-02-01 02:01:57'),
(223, 27, 0x4f626c69646164612073696e696120736563726574613f, 'Y', '2005-02-01 02:33:11'),
(240, 27, 0x50616a65207072696d61, 'Y', '2005-02-01 02:33:11'),
(245, 27, 0x53696e69612073656372657461, 'Y', '2005-02-01 02:33:11'),
(246, 27, 0x456e747261, 'Y', '2008-01-20 20:55:43'),
(109, 27, 0x4a7561206a756e74616461, 'Y', '2005-02-17 13:20:31'),
(225, 27, 0x526573696e6961, 'Y', '2005-02-01 02:33:11'),
(226, 27, 0x50617361, 'Y', '2005-02-01 02:33:11'),
(227, 27, 0x537574726165206a7561, 'Y', '2005-02-17 13:20:31'),
(229, 27, 0x50756e746173, 'Y', '2005-02-01 02:33:11'),
(230, 27, 0x4a7561, 'Y', '2005-02-17 13:20:31'),
(231, 27, 0x50617361, 'Y', '2005-02-01 02:33:11'),
(232, 27, 0x537574726165206a7561, 'Y', '2005-02-17 13:20:31'),
(233, 27, 0x46616461, 'Y', '2005-02-04 12:01:29'),
(235, 27, 0x526573696e6961, 'Y', '2005-02-01 02:33:11'),
(308, 27, 0x41, 'Y', '2005-02-01 02:33:11'),
(324, 27, 0x526573706f6e6465, 'Y', '2005-02-01 02:33:11'),
(325, 27, 0x4d6573616a65, 'Y', '2005-02-01 02:33:11'),
(370, 27, 0x5369, 'Y', '2005-02-01 02:41:20'),
(371, 27, '', 'Y', '2008-01-21 19:27:11'),
(372, 27, '', 'N', '2008-01-21 19:27:11'),
(411, 27, 0x496e666f726d61, 'Y', '2005-02-01 02:41:20'),
(412, 27, 0x436f6d656e7461, 'Y', '2005-02-01 02:41:20'),
(414, 27, 0x4c696d6974612064652074656d706f, 'Y', '2005-02-01 02:41:20'),
(415, 27, 0x234a756173, 'Y', '2005-02-17 13:20:31'),
(175, 27, 0x4f7472613a, 'Y', '2005-02-01 02:52:36'),
(176, 27, 0x50616973, 'Y', '2005-02-01 02:52:36'),
(177, 27, 0x53697465, 'Y', '2005-02-01 02:52:36'),
(180, 27, 0x50616a652064652072656465, 'Y', '2005-02-01 02:52:36'),
(208, 27, 0x4c696e677561, 'Y', '2005-02-01 02:52:36'),
(215, 27, 0x53696e6973747261, 'Y', '2005-02-01 02:52:36'),
(216, 27, 0x41207375707261, 'Y', '2005-02-01 02:52:36'),
(217, 27, 0x446573747261, 'Y', '2005-02-01 02:52:36'),
(218, 27, 0x41207375, 'Y', '2005-02-01 02:52:36'),
(465, 27, 0x456e67656c73, 'Y', '2005-02-01 02:52:36'),
(466, 27, 0x4465757478, 'Y', '2005-02-01 02:52:36'),
(467, 27, 0x4672616e736573, 'Y', '2005-02-01 02:52:36'),
(1029, 27, '', 'Y', '2008-01-21 19:27:11'),
(136, 27, 0x466f726f, 'Y', '2005-02-01 02:55:55'),
(161, 27, 0x44656d616e646164612061206d756c7465207665736573, 'Y', '2005-02-01 02:55:55'),
(163, 27, 0x506572736f6e6573, 'Y', '2005-02-01 02:55:55'),
(165, 27, 0x4c696173, 'Y', '2005-02-01 02:55:55'),
(271, 27, '', 'Y', '2008-01-21 19:27:11'),
(821, 27, 0x44657574786c616e64, 'Y', '2005-02-01 02:58:27'),
(191, 27, 0x5265706574652073696e69612073656372657461, 'Y', '2005-02-01 02:59:55'),
(348, 27, 0x4a7561732066696e696461, 'Y', '2005-02-17 13:20:31'),
(366, 27, 0x56616c75616461, 'Y', '2005-02-01 03:02:43'),
(373, 27, 0x496e766974612065737461207573616e7465, 'Y', '2005-02-01 03:02:43'),
(406, 27, 0x557375616c, 'Y', '2005-02-01 03:02:43'),
(407, 27, 0x50726f707265, 'Y', '2005-02-01 03:02:43'),
(421, 27, '', 'Y', '2008-01-21 19:27:11'),
(1016, 4, 0x57656c63686520476f2d526567656c6e2077657264656e2062656920447261676f6e2076657277656e6465743f, 'Y', '2007-12-07 02:09:42'),
(1017, 4, 0x447261676f6e7320526567656c6e20626173696572656e206175662064656e206a6170616e69736368656e20526567656c6e206d6974204175736e61686d65206465732066726569656e205365747a656e732064657220566f7267616265737465696e652c20646572207661726961626c656e2042726574746772f6df6520756e642064656e205a65697465696e7374656c6c756e67656e2e204469657365205374616e64617264776572746520656e74737072656368656e207a776172206e696368742064656e206f6666697a69656c6c656e206a6170616e69736368656e20526567656c6e2c2073636865696e656e20616265722066fc7220447261676f6e2d5061727469656e207a7765636b6de4df6967207a75207365696e2e0d0a0d0a44726167656e2076657277656e6465743a0d0a3c756c3e3c6c693e476562696574737ae4686c756e672c3c2f6c693e0d0a3c6c693e6b65696e2053757065726b6f2c3c2f6c693e0d0a3c6c693e7665726269657465742053656c6273746d6f72643c2f6c693e0d0a3c6c693e65726c617562742064617320667265696520506c61747a696572656e2064657220566f7267616265737465696e652e3c2f6c693e3c2f756c3e, 'N', '2007-12-07 02:09:42'),
(1017, 5, 0x41206c6120626173652c20636520736f6e74206c65732072e8676c657320646974657320226a61706f6e6169736573222e204d61697320447261676f6e206f66667265206465206e6f6d62726575736573206f7074696f6e7320717569206e6520666f6e7420706c757320706172746965206465732072e8676c6573206f6666696369656c6c65732e20506172206578656d706c65266e6273703b3a3c756c3e3c6c693e6c6520706c6163656d656e74206c696272652064657320706965727265732064652068616e64696361700d0a3c6c693e6c6573207461696c6c657320646520706c61746561750d0a3c6c693e6c6573206c696d697465732064652074656d70730d0a3c6c693e6574630d0a3c2f756c3e0d0a0d0a456e20627265662c20447261676f6e266e6273703b3a3c756c3e3c6c693e63616c63756c65206c652073636f726520656e20636f6d7074616e74206c6573207465727269746f6972657320636f6e666f726de96d656e742061757820696e6469636174696f6e732066696e616c657320646573206a6f75657572730d0a3c6c693e696e746572646974206c657320737569636964657320657420636f6e74726f6c65206c6573204b6f0d0a3c6c693e6e277574696c697365207061732064652072e8676c65732064652073757065722d4b6f206f752064652072e970e9746974696f6e20646520706f736974696f6e730d0a3c2f756c3e, 'N', '2004-08-12 11:58:48'),
(997, 2, 0x506f6c736b, 'Y', '2004-08-12 16:25:31'),
(998, 2, 0x4974616c69656e736b, 'Y', '2004-08-12 16:25:31'),
(1003, 2, 0x4261736b69736b, 'Y', '2004-08-12 16:25:31'),
(1014, 2, '', 'Y', '2008-07-26 20:40:42'),
(1015, 2, '', 'Y', '2008-07-26 20:40:42'),
(541, 2, 0x4b616e206574207370696c6c20736f6d20686172206cf870742075742070e5207469642073746172746573206f70702069676a656e3f, 'Y', '2004-08-12 16:32:09'),
(542, 2, 0x4e65692e20203c693e56e6722073e520736e696c6c206f67207374617274206e7965207370696c6c206d6564203c6120687265663d222f6661712e7068703f726561643d74266361743d3536223e74696c737472656b6b656c696765207469647372616d6d65723c2f613e213c2f693e, 'Y', '2004-08-12 16:32:09'),
(601, 2, '', 'Y', '2008-07-26 20:40:42'),
(602, 2, 0x53474620657220656e20666f726b6f7274656c736520666f722022536d6172742047616d6520466f726d6174222028736d617274207370696c6c2d666f726d6174292e20205347462065722065742066696c666f726d617420666f7220e5206c6167726520676f2d706172746965722e2020284f6720616e647265207370696c6c2e292020466f72206d657220646574616c6a65727420696e666f207365206465203c6120687265663d22687474703a2f2f7777772e7265642d6265616e2e636f6d2f7367662f22207461726765743d6e65773e6f6666657369656c6c6520737065736966696b61736a6f6e656e653c2f613e206176205347462046465b345d207374616e64617264656e2e, 'Y', '2004-08-12 16:37:11'),
(530, 2, 0x536b72697620657420696e6e6c6567672069204f535320656c6c657220476f2d666f72756d6574206f6720666f726b6c617220666f72657370f87273656c656e2064696e2e202044657420657220656e20666f7264656c206f6d20647520666f7274656c6c65722062e56465206876696c6b656e20726567656c2064752076696c2076697465206d6572206f6d206f67206876696c6b656e207369747561736a6f6e2069207370696c6c65742064657420676a656c6465722e, 'Y', '2004-08-12 16:43:43'),
(87, 24, 0x56797a7661c5a5, 'Y', '2004-08-17 14:39:51'),
(88, 24, 0x55c5bec3ad766174656c6961, 'Y', '2004-08-13 12:34:40'),
(89, 24, 0x506172746965, 'Y', '2004-08-13 12:34:40'),
(90, 24, 0x5072656b6c616461c5a5, 'Y', '2004-08-17 14:39:51'),
(91, 24, 0x46c3b37261, 'Y', '2004-08-13 12:34:40'),
(92, 24, 0x4fc48c4b4f202846415129, 'Y', '2005-07-29 13:55:55'),
(93, 24, 0x5370726965766f646361207365727665726f6d, 'Y', '2004-08-13 12:37:20');
INSERT INTO `Translations` (`Original_ID`, `Language_ID`, `Text`, `Translated`, `Updated`) VALUES
(94, 24, 0x446f6b756d656e7479, 'Y', '2004-08-13 12:37:20'),
(95, 24, 0x567974766f72656ec3a92076, 'Y', '2004-08-13 12:37:20'),
(96, 24, '', 'Y', '2009-06-22 11:09:03'),
(97, 24, 0x4f64686cc3a173656e6965, 'Y', '2004-08-13 12:37:20'),
(98, 24, 0x6465c588, 'Y', '2004-08-13 12:37:20'),
(99, 24, 0x646ec3ad, 'Y', '2004-09-01 17:21:11'),
(100, 24, 0x61, 'Y', '2004-08-13 12:39:18'),
(101, 24, 0x686f64696e61, 'Y', '2004-08-13 12:39:18'),
(102, 24, 0x686f64c3ad6e, 'Y', '2004-09-01 17:21:11'),
(103, 24, 0x62657a20626a6f6a6f6d69, 'Y', '2004-08-13 12:39:18'),
(104, 24, 0x73202573206e6176696163207a6120c5a56168, 'Y', '2004-08-13 12:39:18'),
(106, 24, 0x6a61706f6e736bc3a920626a6f6a6f6d69, 'Y', '2004-08-13 12:39:18'),
(107, 24, 0x6b616d65c5886f76, 'Y', '2004-08-13 20:17:10'),
(108, 24, 0x6b616e6164736bc3a920626a6f6a6f6d69, 'Y', '2004-08-13 12:39:18'),
(132, 24, '', 'Y', '2009-06-22 11:09:03'),
(134, 24, 0x4d656e6f, 'Y', '2004-08-13 12:39:18'),
(205, 24, 0x547269656461, 'Y', '2004-08-17 14:15:16'),
(309, 24, 0x5ac3a17374617679, 'Y', '2004-08-13 12:39:18'),
(310, 24, 0x4f64, 'Y', '2004-08-13 12:39:18'),
(84, 24, 0x496e666f206f2075c5bec3ad76617465c4be6f7669, 'Y', '2004-08-13 13:00:47'),
(204, 24, 0x496e666f206f20747269656465, 'Y', '2004-08-17 14:32:02'),
(311, 24, 0x507265646d6574, 'Y', '2004-08-13 13:00:08'),
(312, 24, 0x44c3a174756d, 'Y', '2004-08-13 13:00:08'),
(314, 24, 0x4e6f76c3a1, 'Y', '2004-08-13 13:00:08'),
(316, 24, 0x4f64706f7665647a21, 'Y', '2004-08-13 13:00:08'),
(330, 24, 0x4269656c79, 'Y', '2004-08-13 13:00:08'),
(331, 24, 0xc48c6965726e79, 'Y', '2004-08-13 13:00:08'),
(352, 24, '', 'Y', '2009-06-22 11:09:03'),
(359, 24, 0x53c3ba706572, 'Y', '2004-08-13 13:00:08'),
(360, 24, 0x4661726261, 'Y', '2004-08-13 13:00:08'),
(361, 24, 0x5665c4be6b6f73c5a5, 'Y', '2004-08-13 13:00:08'),
(362, 24, 0x48656e64696b6570, 'Y', '2004-08-13 13:00:08'),
(363, 24, 0x4b6f6d69, 'Y', '2004-08-13 13:00:08'),
(364, 24, 0xc5a4616879, 'Y', '2004-08-13 13:00:08'),
(368, 24, 0x506f736c65646ec3bd20c5a56168, 'N', '2004-08-13 13:00:08'),
(374, 24, 0x526f7a6f6872616ec3a920706172746965, 'Y', '2004-08-19 15:16:59'),
(375, 24, 0x556b6f6ec48d656ec3a920706172746965, 'Y', '2004-08-19 15:16:59'),
(388, 24, 0x5072696ac3ad6d61c5a52076c3bd7a76793f, 'Y', '2004-08-13 16:11:57'),
(389, 24, 0x4e6f76c3a920737072c3a17679, 'Y', '2004-08-13 13:00:08'),
(390, 24, 0x5369206e6120c5a56168752076206e61736c6564756ac3ba63696368207061727469c3a163683a, 'Y', '2004-08-13 13:00:08'),
(391, 24, 0x4e656e61c5a16c6120736120c5be6961646e6120706172746961, 'Y', '2004-08-13 13:00:08'),
(460, 24, 0xc48f616cc5a1696120737472616e61, 'Y', '2004-08-13 13:00:08'),
(461, 24, 0x707265646368c3a1647a616ac3ba636120737472616e61, 'Y', '2004-08-13 13:00:08'),
(462, 24, 0x50726964616a207374c4ba706563, 'Y', '2004-08-13 13:00:08'),
(4511, 40, 0x566f746f2073616c766f21, 'Y', '2014-04-13 18:10:38'),
(719, 24, 0x25732076796872616c206f20252e3166, 'Y', '2004-08-13 13:00:08'),
(722, 24, 0x50726965c48d696e6f6b, 'Y', '2004-08-13 13:00:08'),
(732, 24, 0x5a7679c5a16f6b207072c3a17a646e696e2028762064c5886f636829, 'Y', '2004-08-13 13:00:08'),
(733, 24, 0x5072c3a17a646e696e756a65, 'Y', '2004-08-13 13:00:08'),
(747, 24, 0x56c5a165746b79207374c4ba706365, 'Y', '2004-08-13 13:00:08'),
(755, 24, 0x537072c3a176612073657276657261, 'Y', '2004-08-13 13:00:08'),
(160, 24, 0xc39a766f6420646f20447261676f6e2073657276657261, 'Y', '2004-08-13 13:00:08'),
(191, 24, 0x506f7476726469c5a5206865736c6f, 'Y', '2004-08-13 15:54:20'),
(201, 24, 0x55c5bec3ad76617465c4be736bc3a9204944, 'Y', '2004-08-13 13:04:25'),
(202, 24, 0x43656cc3a9206d656e6f, 'Y', '2004-08-13 13:10:24'),
(223, 24, 0x5a616275646e7574c3a9206865736c6f3f, 'Y', '2004-08-13 13:10:24'),
(240, 24, 0x446f6d6f76, 'Y', '2004-08-13 13:10:24'),
(242, 24, 0x416b206dc3a17465207ac3a1756a656d2c207a6172656769737472756a74652073612061207a616872616a7465207369207a6f70c3a172207061727469c3ad2e, 'Y', '2004-08-13 13:10:24'),
(243, 24, 0x50726f73c3ad6d20707269686cc3a17374652073612e, 'Y', '2004-08-13 13:10:24'),
(244, 24, 0x526f7a686c6961646e69746520736120747520706f6d6f636f752025732e, 'Y', '2004-08-13 13:10:24'),
(245, 24, 0x4865736c6f, 'Y', '2004-08-13 13:10:24'),
(246, 24, 0x507269686cc3a173656e6965, 'Y', '2004-08-13 13:10:24'),
(247, 24, 0x52656769737472c3a1636961206e6f76c3a9686f206b6f6e7461, 'Y', '2004-08-13 13:10:24'),
(248, 24, 0xc39a766f64, 'Y', '2004-08-13 13:10:24'),
(252, 24, 0x45c5a174652072617a2076c3ad74616a206120737472c3a17620746f207072c3ad6a656d6ec3a920636876c3ad6c6521, 'Y', '2004-08-13 13:27:36'),
(344, 24, 0x52656769737472c3a1636961, 'Y', '2004-08-13 13:27:36'),
(345, 24, 0x566c6fc5be2073766f6a6520c3ba64616a65, 'Y', '2004-08-13 13:27:36'),
(478, 24, 0x5669616320696e666f726dc3a16369c3ad206ec3a16a6465c5a12076203c6120687265663d226661712e706870223e4641512066c3b372756d3c2f613e2061206e6576c3a168616a207a61736c61c5a52054766f6a6520766c6173746ec3a9206f74c3a17a6b79, 'Y', '2004-08-13 13:27:36'),
(109, 24, 0x5061727469612070726964616ec3a121, 'Y', '2004-08-13 14:44:33'),
(225, 24, 0x567a6461c5a5, 'Y', '2004-08-13 14:44:33'),
(226, 24, 0x50617373, 'Y', '2004-08-13 14:44:33'),
(227, 24, 0x5a6d61c5be20706172746975, 'Y', '2004-08-13 14:44:33'),
(229, 24, 0x536bc3b37265, 'Y', '2004-08-13 14:44:33'),
(230, 24, 0x506172746961, 'Y', '2004-08-13 14:44:33'),
(231, 24, 0x50617373, 'Y', '2004-08-13 14:44:33'),
(232, 24, 0x5a6d61c5be20706172746975, 'Y', '2004-08-13 14:44:33'),
(233, 24, 0x556b6f6ec48d69c5a5, 'Y', '2004-08-13 14:44:33'),
(234, 24, 0x506f6b7261c48d6f7661c5a5207620687265, 'Y', '2004-08-18 13:26:35'),
(235, 24, 0x567a6461c5a5, 'Y', '2004-08-13 14:44:33'),
(236, 24, 0x53746961686e75c5a520736766, 'Y', '2004-08-13 14:44:33'),
(237, 24, 0x4e61736c6564756ac3ba636120706172746961, 'Y', '2004-08-17 14:31:10'),
(238, 24, 0x4f64737472c3a16e69c5a5207a6f20736c65646f76616ec3bd63682068696572, 'Y', '2004-08-20 16:30:27'),
(239, 24, 0x5072696461c5a5206b20736c65646f76616ec3bd6d206872c3a16d, 'Y', '2004-08-20 14:50:49'),
(253, 24, 0x506172746961206f64737472c3a16e656ec3a121, 'Y', '2004-08-13 14:44:33'),
(254, 24, 0x506172746961207072696a6174c3a121, 'Y', '2004-08-13 14:44:33'),
(308, 24, 0x4b6f6d75, 'Y', '2004-10-15 15:28:12'),
(324, 24, 0x4f64706f7665c48f, 'Y', '2004-08-13 14:44:33'),
(325, 24, 0x537072c3a17661, 'Y', '2004-08-13 14:44:33'),
(342, 24, 0x477261662074726965647920707265, 'Y', '2004-08-17 14:18:57'),
(343, 24, 0x50726570c3a1c48d2c206dc3a1c5a1207072696dc3a16c6f206f686f646e6f74656ec3bd6368207061727469c3ad206e612076796b7265736c656e6965206772616675, 'Y', '2004-08-13 14:44:33'),
(348, 24, 0x556b6f6ec48d656ec3a920706172746965, 'Y', '2004-08-13 14:44:33'),
(349, 24, 0x526f7a6f6872616ec3a920706172746965, 'Y', '2004-08-18 19:56:22'),
(350, 24, 0x556b6f6ec48d656ec3a92070617274696520707265202573, 'Y', '2004-08-13 14:44:33'),
(351, 24, 0x526f7a6f6872616ec3a92070617274696520707265202573, 'Y', '2004-08-18 19:56:22'),
(366, 24, 0x486f646e6f74656ec3a1, 'Y', '2004-08-13 14:44:33'),
(370, 24, 0xc3816e6f, 'Y', '2004-08-13 14:44:33'),
(371, 24, 0x4e6965, 'Y', '2004-08-13 14:44:33'),
(372, 24, 0x6a69676f202872656dc3ad7a6129, 'N', '2004-08-13 14:44:33'),
(373, 24, 0x56797a7661c5a520746f686f746f2075c5bec3ad76617465c4be61, 'Y', '2004-08-16 12:41:16'),
(406, 24, 0x4b6f6e76656ec48d6ec3bd, 'Y', '2004-08-13 14:44:33'),
(407, 24, 0x507265736ec3bd, 'Y', '2004-08-13 19:55:36'),
(408, 24, 0x42657a2068616e64696b6570752073206e6967697269, 'Y', '2004-08-13 14:44:33'),
(409, 24, 0x44766f6a706172746961, 'Y', '2004-08-13 14:44:33'),
(411, 24, '', 'Y', '2009-06-22 11:09:03'),
(412, 24, 0x506f7a6ec3a16d6b61, 'Y', '2004-08-13 14:44:33'),
(414, 24, 0xc48c61736f76c3bd206c696d6974, 'Y', '2004-08-13 14:44:33'),
(415, 24, 0x506fc48d6574207061727469c3ad, 'Y', '2004-08-13 14:44:33'),
(416, 24, 0x486f64696e7920706fc48d61732076c3ad6b656e6475, 'Y', '2004-08-13 14:44:33'),
(417, 24, 0x4e61746572617a207072c3a17a646e652e, 'Y', '2004-08-13 14:44:33'),
(419, 24, 0x696261202573, 'Y', '2004-08-13 14:44:33'),
(420, 24, 0x4b6fc4be6b6f207061727469c3ad207072696461c5a53f, 'Y', '2004-08-13 14:44:33'),
(421, 24, '', 'Y', '2009-06-22 11:09:03'),
(422, 24, '', 'Y', '2009-06-22 11:09:03'),
(423, 24, 0x506fc5be61646f7661c5a52073c3ba7065726120732074726965646f75, 'Y', '2004-08-18 18:18:21'),
(424, 24, 0x416b20c3a16e6f2c20747269656461207620726f7a6d65647ac3ad, 'Y', '2004-08-17 14:18:57'),
(425, 24, 0x50726964616a20706172746975, 'Y', '2004-08-13 14:44:33'),
(426, 24, 0x4872c3a1c48d, 'Y', '2004-08-13 14:44:33'),
(427, 24, 0x506fc48d6574207061727469c3ad, 'Y', '2004-08-13 14:44:33'),
(428, 24, 0x486f64696e79206265c5be696120706fc48d61732076c3ad6b656e6475, 'Y', '2004-08-13 14:44:33'),
(429, 24, 0x4f64737472c3a1c588, 'Y', '2004-08-13 14:44:33'),
(430, 24, 0x50726964616a, 'Y', '2004-08-13 14:44:33'),
(437, 24, 0x486c61766ec3bd20c48d6173, 'Y', '2004-08-13 14:44:33'),
(454, 24, 0x556d696573746e692073766f6a652068616e64696b65706f76c3a9206b616d656e652070726f73c3ad6d21, 'Y', '2004-08-13 14:44:33'),
(455, 24, 0x506fc5a16c69206120c48f616cc5a16961207061727469612e, 'Y', '2004-08-17 15:11:20'),
(456, 24, 0x506fc5a16c692061205374617475732e, 'Y', '2004-08-17 15:11:20'),
(457, 24, 0x4e617370c3a4c5a5, 'Y', '2004-08-17 14:28:52'),
(458, 24, 0x5a616a61746369, 'Y', '2004-08-13 14:44:33'),
(484, 24, 0x4a616e, 'Y', '2004-08-13 14:44:33'),
(485, 24, 0x466562, 'Y', '2004-08-13 14:44:33'),
(486, 24, 0x417072, 'Y', '2004-08-13 14:44:33'),
(487, 24, 0x4dc3a16a, 'Y', '2004-08-13 14:44:33'),
(488, 24, 0x4ac3ba6e, 'Y', '2004-08-13 14:44:33'),
(489, 24, 0x417567, 'Y', '2004-08-13 14:44:33'),
(490, 24, 0x536570, 'Y', '2004-08-13 14:44:33'),
(491, 24, 0x4f6b74, 'Y', '2004-08-13 14:44:33'),
(492, 24, 0x446563, 'Y', '2004-08-13 14:44:33'),
(3140, 7, 0x572d5072766eed, 'Y', '2016-07-20 16:22:45'),
(495, 24, 0x4d6172, 'Y', '2004-08-13 14:44:33'),
(496, 24, 0x4ac3ba6c, 'Y', '2004-08-13 14:44:33'),
(497, 24, 0x4e6f76, 'Y', '2004-08-13 14:44:33'),
(498, 24, 0x4f642332, 'Y', '2004-08-13 14:44:33'),
(499, 24, 0x446f2332, 'Y', '2004-08-13 14:44:33'),
(618, 24, 0x506fc48d6961746fc48d6ec3a120747269656461, 'Y', '2004-08-17 14:18:57'),
(619, 24, 0x4b6f6e636f76c3a120747269656461, 'Y', '2004-08-17 14:18:57'),
(620, 24, 0x5a6d656e6120747269656479, 'Y', '2004-08-30 12:00:43'),
(307, 24, 0x5a6f7a6e616d20737072c3a176, 'Y', '2004-08-13 15:17:06'),
(315, 24, 0x5a6f64706f766564616ec3a9, 'Y', '2004-08-13 15:17:06'),
(322, 24, 0x54c3a1746f20257376c3bd7a766125732075c5be20626f6c6120616b636570746f76616ec3a1, 'Y', '2004-08-13 15:17:06'),
(323, 24, 0x54c3a1746f2076c3bd7a766120626f6c61206f646d6965746e7574c3a120616c65626f20706172746961207a6d617a616ec3a1, 'Y', '2004-08-13 15:17:06'),
(326, 24, 0x506f736c61c5a5206f64706f7665c48f, 'Y', '2004-08-13 15:17:06'),
(327, 24, 0x4e6f76c3a120737072c3a17661, 'Y', '2004-08-13 15:17:06'),
(328, 24, 0x507265202875c5bec3ad76617465c4be736bc3a920494429, 'Y', '2004-08-13 15:17:06'),
(329, 24, 0x506f736c61c5a520737072c3a17675, 'Y', '2004-09-04 01:17:17'),
(332, 24, 0x5a6a65646e61c5a520706f646d69656e6b79, 'Y', '2004-08-13 15:17:06'),
(333, 24, 0x5072c3ad6a61c5a5, 'Y', '2004-08-13 15:17:06'),
(334, 24, 0x4f646d6965746e75c5a5, 'Y', '2004-08-13 15:17:06'),
(431, 24, 0x5665c4be6b6f73c5a520646f736b79, 'N', '2004-08-13 15:17:06'),
(432, 24, 0x4b6f6e76656ec48d6ec3bd2068656e64696b657020286b6f6d6920302e3520616b2073c3ba20686f646e6f7374692072c3b47a6e6529, 'Y', '2004-08-13 15:17:06'),
(436, 24, 0x6d657369616365, 'Y', '2004-08-13 15:17:06'),
(439, 24, 0x73, 'Y', '2004-08-13 15:17:06'),
(442, 24, 0x6e61, 'Y', '2004-08-16 13:15:11'),
(443, 24, 0x466973636865726f7620c48d6173, 'Y', '2004-08-13 15:17:06'),
(445, 24, 0x494420706172746965, 'Y', '2004-08-13 15:17:06'),
(446, 24, 0x4661726279, 'Y', '2004-08-13 15:17:06'),
(447, 24, '', 'Y', '2009-06-22 11:09:03'),
(449, 24, 0x6a61706f6e736bc3a9, 'Y', '2004-08-13 15:17:06'),
(450, 24, 0x2573207a6120c5a561682061202573206bc3b46c206e6176696163, 'Y', '2004-08-13 15:17:06'),
(451, 24, 0x6b616e6164736bc3a9, 'Y', '2004-08-13 15:17:06'),
(452, 24, 0x2573206e6120257320c5a561686f76, 'Y', '2004-08-13 15:17:06'),
(453, 24, 0x6e6176696163207a6120c5a56168, 'Y', '2004-08-13 15:17:06'),
(724, 24, 0x5a6d617a61c5a5206f7a6e61c48d656ec3a920737072c3a17679, 'Y', '2004-08-13 15:17:06'),
(726, 24, 0x456469746f7661c5a52070726965c48d696e6b79, 'Y', '2004-08-13 15:17:06'),
(727, 24, 0x4e6173746176656e6961207072652074c3ba746f206872752073612025737a6a65646ec3a176616ac3ba2573, 'Y', '2004-08-13 15:17:06'),
(740, 24, 0x56c5a165746b6f207072696a6174c3a9, 'Y', '2004-08-13 15:17:06'),
(741, 24, 0x486c61766ec3bd, 'Y', '2004-08-13 15:17:06'),
(742, 24, 0x4f64706164, 'Y', '2004-08-13 15:17:06'),
(743, 24, 0x4f646f736c616ec3a9, 'Y', '2004-08-13 15:17:06'),
(744, 24, 0x5072656d696573746e69c5a520646f2070726965c48d696e6b7520707269206f64706f76656469, 'Y', '2004-08-13 15:17:06'),
(745, 24, 0x5072656d696573746e69c5a520646f2070726965c48d696e6b75, 'Y', '2004-08-13 15:17:06'),
(746, 24, 0x4d656e6f2070726965c48d696e6b61, 'Y', '2004-08-13 15:17:06'),
(82, 24, '', 'Y', '2009-06-22 11:09:03'),
(156, 24, 0xc5bd69766f746f70697320616b7475616c697a6f76616ec3bd21, 'Y', '2004-08-13 15:54:20'),
(157, 24, 0x4865736c6f207a6d656e656ec3a921, 'Y', '2004-08-13 15:54:20'),
(158, 24, 0x50726f66696c20616b7475616c697a6f76616ec3bd21, 'Y', '2004-08-13 15:54:20'),
(175, 24, 0x496ec3bd3a, 'Y', '2004-08-13 15:54:20'),
(176, 24, 0x4b72616a696e61, 'Y', '2004-08-13 15:54:20'),
(177, 24, 0x4d6573746f, 'Y', '2004-08-13 15:54:20'),
(178, 24, 0xc5a174c3a174, 'Y', '2004-08-13 15:54:20'),
(179, 24, 0x4b6c7562, 'Y', '2004-08-13 15:54:20'),
(180, 24, 0x446f6d6f76736bc3a120737472c3a16e6b61, 'Y', '2004-08-13 15:54:20'),
(181, 24, '', 'Y', '2009-06-22 11:09:03'),
(182, 24, 0x4943512dc48dc3ad736c6f, 'Y', '2004-08-13 15:54:20'),
(183, 24, 0x4f62c4bec3ba62656ec3bd2074797020706172746965, 'Y', '2004-08-13 15:54:20'),
(184, 24, 0x5ac3a1c4be756279, 'Y', '2004-08-13 15:54:20'),
(185, 24, 0x506f766f6c616e6965, 'Y', '2004-08-13 15:54:20'),
(187, 24, 0x5a6d656e69c5a5206f736f626ec3a920c3ba64616a65, 'Y', '2004-08-13 15:54:20'),
(188, 24, 0x456469746f7661c5a5206865736c6f, 'Y', '2004-08-13 15:54:20'),
(189, 24, 0x53746172c3a9206865736c6f, 'Y', '2004-08-13 15:54:20'),
(190, 24, 0x4e6f76c3a9206865736c6f, 'Y', '2004-08-13 15:54:20'),
(192, 24, 0x5a6d656e69c5a5206865736c6f, 'Y', '2004-08-13 15:54:20'),
(193, 24, 0x5679706ec3bac5a5, 'Y', '2004-08-13 15:54:20'),
(194, 24, 0x496261206f7a6ec3a16d69c5a5, 'Y', '2004-08-13 15:54:20'),
(195, 24, 0xc5a4616879206120737072c3a17679, 'Y', '2004-08-13 15:54:20'),
(196, 24, 0x43656cc3a120646f736b61206120737072c3a17679, 'Y', '2004-08-13 15:54:20'),
(197, 24, 0x56657274696bc3a16c6e65, 'Y', '2004-08-13 15:54:20'),
(198, 24, 0x486f72697a6f6e74c3a16c6e65, 'Y', '2004-08-13 15:54:20'),
(199, 24, 0x45646974756a2070726f66696c, 'Y', '2004-08-13 15:54:20'),
(200, 24, 0x4f736f626ec3a9206e6173746176656e6961, 'Y', '2004-08-13 15:54:20'),
(206, 24, 0x55706f7a6f726e656e696520652d6d61696c6f6d, 'Y', '2004-08-13 15:54:20'),
(207, 24, 0x506f75c5be69c5a5206e6173746176656e696520707265686c69616461c48d61, 'Y', '2004-08-13 15:54:20'),
(208, 24, 0x4a617a796b, 'Y', '2004-08-13 15:54:20'),
(209, 24, 0xc48c61736f76c3a92070c3a1736d6f, 'Y', '2004-08-13 15:54:20'),
(210, 24, 0x4e6fc48d6ec3bd206bc4be7564, 'Y', '2004-08-13 15:54:20'),
(211, 24, 0x47726166696b6120646f736b79, 'Y', '2004-08-13 15:54:20'),
(212, 24, 0x5665c4be6b6f73c5a5206b616d65c5886f76, 'Y', '2004-08-13 15:54:20'),
(213, 24, 0x4661726261206472657661, 'Y', '2004-08-13 15:54:20'),
(214, 24, 0x506f6c6f68612073c3ba7261646ec3ad63, 'Y', '2004-08-13 15:54:20'),
(215, 24, 0x56c4be61766f, 'Y', '2004-08-13 15:54:20'),
(216, 24, 0x486f7265, 'Y', '2004-08-13 15:54:20'),
(217, 24, 0x56707261766f, 'Y', '2004-08-13 15:54:20'),
(218, 24, 0x446f6c75, 'Y', '2004-08-13 15:54:20'),
(219, 24, 0x506c796e756cc3bd206f6b72616a20646f736b79, 'Y', '2004-08-13 15:54:20'),
(220, 24, 0x536d6572206d656e75, 'Y', '2004-08-13 15:54:20'),
(222, 24, 0x5a6d656e69c5a52070726f66696c, 'Y', '2004-08-13 15:54:20'),
(378, 24, 0x4d6f6a652075c5bec3ad76617465c4be736bc3a920696e666f726dc3a1636965, 'Y', '2004-08-13 15:54:20'),
(379, 24, 0x456469746f7661c5a5206f736f626ec3a920c3ba64616a65, 'Y', '2004-08-13 15:54:20'),
(393, 24, 0x44c3a174756d2072656769737472c3a1636965, 'Y', '2004-08-13 15:54:20'),
(394, 24, 0x506f736c65646ec3bd207072c3ad73747570, 'Y', '2004-08-13 15:54:20'),
(395, 24, 0x4f736f626ec3a920c3ba64616a65, 'Y', '2004-08-13 15:54:20'),
(396, 24, 0x506f736c61c5a520737072c3a176752075c5bec3ad76617465c4be6f7669, 'Y', '2004-08-13 15:54:20'),
(397, 24, 0x526f7a6f6872616ec3a9, 'Y', '2004-11-02 12:46:03'),
(398, 24, 0x556b6f6ec48d656ec3a9, 'Y', '2004-11-02 12:46:03'),
(399, 24, 0x56796872616ec3a9, 'Y', '2004-11-02 12:47:48'),
(400, 24, 0x5072656872616ec3a9, 'Y', '2004-11-02 12:47:48'),
(5788, 40, 0x234a6f676f732067616e686f73203a207065726469646f7320636f6d20496e74657276656ee7e36f, 'Y', '2014-07-30 14:28:34'),
(402, 24, 0x416b746976697461, 'Y', '2004-09-20 18:54:56'),
(463, 24, 0xc5a176c3a964736b79, 'Y', '2004-08-13 15:56:27'),
(464, 24, 0x6ec3b372736b79, 'Y', '2004-08-13 15:54:20'),
(465, 24, 0x616e676c69636bc3bd, 'Y', '2004-08-13 15:56:27'),
(466, 24, 0x6e656d65636bc3bd, 'Y', '2004-08-13 15:56:27'),
(467, 24, 0x6672616e63c3ba7a736b79, 'Y', '2004-08-13 15:54:20'),
(468, 24, 0xc5a170616e69656c736b79, 'Y', '2004-08-13 15:54:20'),
(469, 24, 0xc48d65736bc3bd, 'Y', '2004-08-13 15:56:27'),
(470, 24, 0xc48dc3ad6e736b7920287472616469c48d6e6529, 'Y', '2004-08-13 15:54:20'),
(3251, 17, '', 'Y', '2013-08-21 00:43:28'),
(472, 24, 0xc48dc3ad6e736b7920287a6a65646e6f6475c5a1656e6529, 'Y', '2004-08-13 15:54:20'),
(473, 24, 0x686f6c616e64736bc3bd, 'Y', '2004-08-13 15:56:27'),
(479, 24, 0x7468616a736bc3bd, 'Y', '2004-08-13 15:56:27'),
(494, 24, 0x55c5bec3ad76617465c4be736bc3a920696e666f20707265202573, 'Y', '2004-08-13 15:54:20'),
(500, 24, 0x66c3ad6e736b79, 'Y', '2005-09-01 01:29:53'),
(731, 24, 0x456469746f7661c5a52070726965c48d696e6b7920737072c3a176, 'Y', '2004-08-13 15:54:20'),
(736, 24, 0x567968726174c3a920706172746965, 'Y', '2004-08-13 15:54:20'),
(737, 24, 0x50726568726174c3a920706172746965, 'Y', '2004-08-13 15:54:20'),
(738, 24, 0x5a6d65c5882064c4bac5be6b75207072c3a17a646e696e, 'Y', '2004-08-13 15:54:20'),
(739, 24, 0x5a61c48d61c5a5207072c3a17a646e696e79, 'Y', '2004-08-13 15:54:20'),
(750, 24, 0x6bc3b372656a736bc3bd, 'Y', '2005-09-01 01:29:53'),
(954, 24, 0x7275736bc3bd, 'Y', '2004-08-13 15:56:27'),
(955, 24, 0x5072c3a17a646e696e79, 'Y', '2004-08-13 15:54:20'),
(956, 24, 0x50726570c3a1c48d2c20746572617a206e656d6fc5be6e6f207a6d656e69c5a52064c4bac5be6b75207072c3a17a646e696e2e, 'Y', '2004-08-13 15:54:20'),
(957, 24, 0x44c4bac5be6b61207072c3a17a646e696e207a6d656e656ec3a121, 'Y', '2004-08-13 15:54:20'),
(958, 24, 0x50726964616a, 'Y', '2004-08-13 15:54:20'),
(959, 24, 0x4f64737472c3a1c588, 'Y', '2004-08-13 15:54:20'),
(960, 24, 0x5a766f6c69c5a52064c4bac5be6b75207072c3a17a646e696e, 'Y', '2004-08-13 15:54:20'),
(962, 24, 0x50656b6ec3a9207072c3a17a646e696e7921, 'Y', '2004-08-13 15:54:20'),
(997, 24, 0x706fc4be736bc3bd, 'Y', '2004-08-13 15:54:20'),
(998, 24, 0x74616c69616e736bc3bd, 'Y', '2004-08-13 15:54:20'),
(1003, 24, 0x6261736b69636bc3bd, 'Y', '2004-08-13 15:54:20'),
(1014, 24, 0x696e7465726c696e677561, 'Y', '2005-09-01 01:29:53'),
(1015, 24, 0x6573706572616e74736bc3bd, 'Y', '2004-08-13 15:54:20'),
(1018, 24, 0x736c6f76656e736bc3bd, 'Y', '2004-08-13 15:54:20'),
(715, 24, 0xc48c617320737472c3a16e6b79, 'Y', '2004-08-13 17:03:03'),
(335, 24, 0x56797a76616e6965206b20706172746969, 'Y', '2004-08-19 19:18:36'),
(336, 24, 0x506f736c61c5a52076c3bd7a7675, 'Y', '2004-08-13 17:03:03'),
(346, 24, 0x537072c3a17661206f646f736c616ec3a121, 'Y', '2004-08-13 17:03:03'),
(433, 24, 0x507265736ec3bd2068656e64696b6570, 'Y', '2004-08-13 17:03:03'),
(136, 24, 0x46c3b372756d, 'Y', '2004-08-13 17:03:03'),
(159, 24, 0x446f6b756d656e74c3a1636961, 'Y', '2004-08-13 17:03:03'),
(161, 24, 0x4f64706f7665646520c48d6173746f206b6c6164656ec3bd6368206f74c3a17a6f6b, 'Y', '2005-07-29 13:55:55'),
(163, 24, 0xc4bd75646961, 'Y', '2004-08-13 17:03:03'),
(164, 24, 0x7072697370696576616ac3ba636920646f20447261676f6e61, 'Y', '2004-08-13 17:03:03'),
(165, 24, 0x4c696e6b79, 'Y', '2004-08-13 17:03:03'),
(168, 24, 0x4ec3a1766f64206e6120696ec5a174616cc3a1636975, 'Y', '2004-08-13 17:03:03'),
(169, 24, 0x616b206368636574652073766f6a686f20766c6173746ec3a9686f20647261676f6e61, 'Y', '2004-08-13 17:03:03'),
(170, 24, 0x53746961686e75c5a5207a64726f6a6f76c3bd206bc3b36420647261676f6e61, 'Y', '2004-08-13 17:03:03'),
(2666, 17, 0x537a65726f6b6fb6e62070727a657379b3616e656a2067726166696b69205b25735d2070727a656b726f637a79b361206c696d6974206f205b257320706978656c735d2e, 'Y', '2013-08-21 00:05:19'),
(1944, 17, 0x5a6e616a64756a65207369ea20747520706172ea2062b3ea64f377, 'Y', '2013-08-20 23:51:45'),
(173, 24, 0x50726f6a656b746f76c3a120737472c3a16e6b6120447261676f6e61206e6120736f75726365666f726765, 'Y', '2004-08-13 17:03:03'),
(256, 24, 0x56c5a1656f6265636ec3a920696e666f, 'Y', '2004-08-13 17:03:03'),
(257, 24, 0x537472c3a16e6b79204a616e2076616e2064657220537465656e73, 'Y', '2004-08-13 17:03:03'),
(258, 24, 0x5665c4be6120696e666f726dc3a16369c3ad206f20676f, 'Y', '2004-08-13 17:03:03'),
(259, 24, 0x476f204641512028c48c617374c3a9206f74c3a17a6b7929, 'Y', '2004-08-13 17:03:03'),
(303, 24, 0x5665c4be6bc3bd20736572766572206e61206f6e2d6c696e6520706172746965, 'Y', '2004-08-13 17:05:09'),
(305, 24, 0x5a6f7a6e616d207365727665726f76, 'Y', '2004-08-13 17:05:09'),
(306, 24, 0x4b6f6d706c65746e656ac5a1c3ad207a6f7a6e616d207365727665726f76, 'Y', '2004-08-13 17:05:09'),
(337, 24, 0x507269737065766174656c696120646f20447261676f6e61, 'Y', '2004-08-13 17:05:09'),
(6085, 36, 0x4d75746174, 'Y', '2015-07-23 12:16:04'),
(769, 36, '', 'Y', '2015-09-18 21:08:14'),
(265, 24, '', 'Y', '2009-06-22 11:09:03'),
(267, 24, 0x476f206e6f76696e79, 'Y', '2004-08-13 17:16:45'),
(271, 24, '', 'Y', '2009-06-22 11:09:03'),
(273, 24, 0x5072617669646cc3a1, 'Y', '2004-08-13 17:16:45'),
(274, 24, 0x496e746572616b74c3ad766e7920c3ba766f64, 'Y', '2004-08-13 17:16:45'),
(275, 24, 0x546f746f206a65207665c4be6d692070656b6ec3a120737472c3a16e6b61206e61207a61c48d6961746f6b2e, 'Y', '2004-08-13 17:16:45'),
(276, 24, 0x5665c4be6d6920646f627265206e6170c3ad73616ec3bd20c3ba766f642042726974736b6f752061736f6369c3a163696f7520676f2e, 'Y', '2004-08-13 17:16:45'),
(281, 24, 0x5374726174c3a96769612061207465726dc3ad6e79, 'Y', '2004-08-13 17:16:45'),
(283, 24, 0x476f2070726f626cc3a96d79, 'Y', '2004-08-13 17:16:45'),
(284, 24, 0x53707261636f76616e69652074c3bd6368746f20706f6dc3b4c5be652054766f6a656a20687265, 'Y', '2004-08-13 17:16:45'),
(285, 24, '', 'Y', '2009-06-22 11:09:03'),
(286, 24, 0x5a61c5a16c692054766f6a6520706172746965206e61206b6f6d656e74c3a172206b64652073612064616c6f20687261c5a5206c6570c5a169652e, 'Y', '2004-08-13 17:16:45'),
(287, 24, 0x5a6175c5bec3ad76616ec3a1206a61706f6e736bc3a120676f207465726d696e6f6cc3b3676961, 'Y', '2004-08-13 17:16:45'),
(288, 24, 0x4d7573c3adc5a1207665646965c5a5206f20c48d6f6d207361206f737461746ec3ad206872c3a1c48d69206261766961, 'Y', '2004-08-13 17:16:45'),
(291, 24, 0x48697374c3b3726961, 'Y', '2004-08-13 17:16:45'),
(292, 24, 0x53747275c48d6ec3a12068697374c3b3726961, 'Y', '2004-08-13 17:16:45'),
(294, 24, 0x526f7ac5a1c3ad72656ec3a12068697374c3b3726961, 'Y', '2004-08-13 17:16:45'),
(260, 24, 0xc48c617374c3a9206f74c3a17a6b79206f20676f207a206e65777367726f7570207265632e67616d65732e676f, 'Y', '2004-08-13 17:31:01'),
(266, 24, 0x53706f6c7570726163756ac3ba636520737472c3a16e6b792e20c48cc3ad74616a746520612070726973706576616a746521, 'Y', '2004-08-13 17:34:14'),
(296, 24, 0x6b6e696879206f20676f2c207679626176656e6965206120736f667477617265, 'Y', '2004-08-13 17:34:14'),
(297, 24, 0x4b6f6d656e746f76616ec3a1206269626c696f677261666961206f20676f, 'Y', '2004-08-13 17:34:14'),
(298, 24, 0x4f62726f76736bc3a1207a626965726b6120726563656e7a69c3ad206b6ec3ad68206f20676f, 'Y', '2004-08-13 17:34:14'),
(299, 24, 0x657572c3b370736b79206f6263686f64, 'Y', '2004-08-13 17:34:14'),
(300, 24, 0x496ec3a920676f2073657276657279, 'Y', '2004-08-13 17:34:14'),
(340, 24, 0x46415120656469746f72, 'Y', '2004-08-13 17:39:07'),
(377, 24, 0xc39a766f646ec3a120737472c3a16e6b61, 'Y', '2004-08-13 17:39:07'),
(380, 24, 0x5a6f6272617a20737072c3a17675, 'Y', '2004-08-13 17:39:07'),
(383, 24, 0x5a6f7a6e616d20766cc3a16b69656e, 'Y', '2004-08-13 17:39:07'),
(384, 24, 0xc48cc3ad74616a2066c3b372756d, 'Y', '2004-08-13 17:39:07'),
(385, 24, 0x4e6f76c3a12074c3a96d61, 'N', '2004-08-13 17:39:07'),
(1, 24, 0x50726570c3a1c48d2c206e656d6fc5be6e6f20687261c5a52070617373207072656420706f6c6fc5be656ec3ad6d2076c5a165746bc3bd63682068656e64696b65706f76c3bd6368206b616d65c5886f762e, 'Y', '2004-08-13 17:54:23'),
(2, 24, 0x50726570c3a1c48d2c2070617274696120736120736b6f6ec48d696c612e, 'Y', '2004-08-13 17:54:23'),
(3, 24, 0x50726570c3a1c48d2c207061727469612065c5a17465206e657a61c48d616c612e, 'Y', '2004-08-13 17:54:23'),
(7, 24, 0x50726570c3a1c48d2c206e656dc3b4c5be65c5a12076797a7661c5a52073c3a16d20736562612e, 'Y', '2004-08-13 17:54:23'),
(8, 24, 0x50726570c3a1c48d2c206e656dc3b4c5be6e6f206ec3a16a73c5a5207061727469752c206e61206b746f72c3ba2073692076797a76616ec3bd2e204a652075c5be206f646d6965746e7574c3a13f, 'Y', '2004-08-13 17:54:23'),
(9, 24, 0x50726570c3a1c48d2c206e656d6fc5be6e6f20767a6961c5a5206b616d65c5882c206b746f72c3bd207072c3a17665207a616a616c206b616d65c5882c20616b207361207a6f70616b756a6520707265646368c3a1647a616ac3ba636120706f7ac3ad6369612e20567968c4be6164616a207072617669646cc3a1206f20276b6f272e, 'Y', '2004-08-13 18:00:31'),
(12, 24, 0x53706f6a656e69652073206461746162c3a17a6f75206e65c3ba737065c5a16ec3a92e20506fc48d6b616a206e69656b6fc4be6b6f206d696ec3ba742061207679736bc3bac5a1616a207a6e6f76612e, 'Y', '2004-08-13 18:00:31'),
(13, 24, 0x5a6d617a616e696520706172746965206e6575737065c5a16ec3a92e20546f746f20617369206e6965206a652070726f626cc3a96d2e, 'Y', '2004-08-13 18:00:31'),
(14, 24, 0x50726570c3a1c48d2c2070726964616e696520737072c3a1767920646f206461746162c3a17a79207a6c7968616c6f2e, 'Y', '2004-08-13 18:00:31'),
(15, 24, 0x50726570c3a1c48d2c2070726964616e69652070617274696520646f206461746162c3a17a79207a6c7968616c6f2e, 'Y', '2004-08-13 18:00:31'),
(16, 24, 0x566c6fc5be656e696520c5a561687520646f206461746162c3a17a79207a6c7968616c6f2e20546f746f206dc3b4c5be6520616c65206e656d7573c3ad206279c5a52070726f626cc3a96d2c207672c3a1c5a5746520736120646f20706172746965206120736b6f6e74726f6c756a74652c20c48d6920626f6c20c5a5616820726567697374726f76616ec3bd2e, 'Y', '2004-08-13 18:00:31'),
(17, 24, 0x566c6fc5be656e69652054766f6a69636820c3ba64616a6f7620646f206461746162c3a17a79207a6c7968616c6f2e20416b207361206e656dc3b4c5be65c5a120707269686cc3a17369c5a52c20736bc3ba7320746f2065c5a174652072617a206120616b20746f207a6c7968c3a12c206b6f6e74616b74756a20706f6d6f632e, 'Y', '2004-08-13 18:21:12'),
(18, 24, 0x4461746162c3a17a6f76c3bd20646f74617a207a6c7968616c2e20506fc48d6b616a206e69656b6fc4be6b6f206d696ec3ba74206120736bc3ba7320746f2065c5a174652072617a2e, 'Y', '2004-08-13 18:21:12'),
(19, 24, 0x4461746162c3a17a61207361206e6564c3a1207679627261c5a52e20506fc48d6b616a206e69656b6fc4be6b6f206d696ec3ba74206120736bc3ba7320746f2065c5a174652072617a2e, 'Y', '2004-08-13 18:21:12'),
(20, 24, 0x50726570c3a1c48d2c20706172746961207361206e6564c3a1207a61c48d61c5a52e20506fc48d6b616a206e69656b6fc4be6b6f206d696ec3ba74206120736bc3ba7320746f2065c5a174652072617a2e, 'Y', '2004-08-13 18:21:12'),
(22, 24, 0x50726570c3a1c48d2c206d7573c3adc5a120706f736b79746ec3bac5a5206d656e6f2e, 'Y', '2004-08-13 18:21:12'),
(27, 24, 0x50726570c3a1c48d2c20547920612054766f6a2073c3ba70657220706f74726562756a657465206e617374617669c5a520706fc48d6961746fc48d6ec3a9207472696564792c20696e616b206e656dc3b4c5be656d206ec3a16a73c5a52076686f646ec3bd2068656e64696b65702e, 'Y', '2004-08-17 14:27:05'),
(29, 24, 0x50726570c3a1c48d2c20746f746f206e6965206a6520686f73c5a56f6d20646f766f6c656ec3a92e2050726f73696d206e616a736bc3b4722073692072656769737472756a206f736f626ec3a9206b6f6e746f2e, 'Y', '2004-08-13 18:39:54'),
(272, 24, 0x4d616e676120286a61706f6e736bc3bd206b6f6d696b7329206f20676f2e204f64706f72c3bac48d616ec3a921, 'Y', '2004-08-13 19:00:13'),
(295, 24, 0x56207072c3ad706164652c20c5be652073692061c5a1706972756ac3ba63692076c5a1657665646b6f2e, 'Y', '2004-08-13 19:00:13'),
(301, 24, 0x4b726f6b6f76c3bd207365727665722e204f62736168756a652061206e69656b6fc4be6b6f20c48f616cc5a1c3ad636820686965722e, 'Y', '2004-08-13 19:00:13'),
(730, 24, 0x45646974756a207072617a646e696e79, 'Y', '2004-08-13 19:00:13'),
(122, 24, 0x4f64706f7665c48f, 'Y', '2004-08-13 19:00:13'),
(127, 24, 0x456469746f7661c5a5, 'N', '2004-08-13 19:00:13'),
(128, 24, 0x5072656d696573746e69206e61686f72, 'Y', '2004-08-13 19:00:13'),
(129, 24, 0x5072656d696573746e69206e61646f6c, 'Y', '2004-08-13 19:00:13'),
(135, 24, 0x5072656b6c61646174656c6961, 'Y', '2004-08-13 19:00:13'),
(32, 24, 0x50726570c3a1c48d2c206e6965207369206e6120c5a56168752e, 'Y', '2004-08-13 19:00:13'),
(33, 24, 0x4865736c6f206f627361686f76616c6f206e65646f766f6c656ec3a9207a6e616b792e20446f766f6c656ec3a92073c3ba206c656e20612d7a2c20412d5a2c20302d392061202d5f2b2e2c3a3b3f21252a2e, 'Y', '2004-08-13 19:00:13'),
(35, 24, 0x506f74767264656ec3a9206865736c6f206e6573c3ba686c6173c3ad2073206865736c6f6d2c2070726f73696d2063686fc48f206e617073c3a4c5a5206120736bc3ba732065c5a174652072617a2e, 'Y', '2004-08-13 19:00:13'),
(477, 24, 0x4e65737072c3a1766e7920706fc48d65742068616e64696b65706f76c3bd6368206b616d65c5886f76, 'Y', '2004-08-13 19:01:53'),
(714, 24, 0x50726570c3a1c48d2c206e656dc3b4c5be656d206ec3a16a73c5a520706fc5be61646f76616ec3ba207ac3a16c6fc5be6b7520736f20737072c3a176616d692e, 'Y', '2004-08-13 19:03:29'),
(501, 24, 0x55c5bec3ad766174656c696120447261676f6e6120612075c5bec3ad76617465c4be736bc3a92070726f66696c79, 'N', '2004-08-13 19:03:29'),
(502, 24, 0x5465726dc3ad6e79207620476f, 'Y', '2004-08-16 19:30:42'),
(38, 24, 0x50726570c3a1c48d2c206dc3a16d207072656f626cc3a96d7920732074726965646f752c20c5a17065636966696b6f76616c20736920276b79752720616c65626f202764616e273f, 'Y', '2004-08-17 14:27:05'),
(39, 24, 0x50726570c3a1c48d2c206dc3a16d207072656f626cc3a96d7920732074726965646f752c206e656d616c20736920706f75c5be69c5a520276b79752720616c65626f202764616e277072652074656e746f20747970207472696564792e, 'Y', '2004-08-17 14:27:05'),
(40, 24, 0x50726570c3a1c48d2c2074656e746f206b616d65c5882062792073612073c3a16d207a6162696c2c20616c652073616d6f767261c5be6461206e6965206a6520646f766f6c656ec3a120706f64c4be612074c3bd63682070726176696469656c2e, 'Y', '2004-08-13 19:15:44'),
(41, 24, 0x50726570c3a1c48d2c206e656dc3b4c5be656d206ec3a16a73c5a52074c3ba206872752e, 'Y', '2004-08-13 19:15:44'),
(42, 24, 0x50726570c3a1c48d2c206e65c3b4c5be656d206ec3a16a73c5a52066c3b372756d2c206b746f72c3a920736920636863656c207a6f6272617a69c5a52e, 'Y', '2004-08-13 19:15:44'),
(43, 24, 0x486d6d2c2074c3a1746f20737072c3a17661206a65206f64706f7665c48f6f75206e61206e656578697374756ac3ba637520737072c3a176752e, 'Y', '2004-08-13 19:15:44'),
(44, 24, 0x50726570c3a1c48d2c206e65c3b4c5be656d206ec3a16a73c5a520737072c3a176752c206b746f72c3ba20736920636863656c207a6f6272617a69c5a52e, 'Y', '2004-08-13 19:15:44'),
(45, 24, 0x50726570c3a1c48d2c206e65c3b4c5be656d206ec3a16a73c5a520746f686f746f2075c5bec3ad76617465c4be612e, 'Y', '2004-08-13 19:15:44'),
(46, 24, 0x50726570c3a1c48d2c20746f746f2075c5bec3ad76617465c4be736bc3a9204944206a652075c5be20706f75c5be6974c3a92c2070726f73c3ad6d20706f6bc3ba73207361206ec3a16a73c5a5206a6564696e65c48d6ec3a92075c5bec3ad76617465c4be736bc3a92049442e, 'Y', '2004-08-13 19:15:44'),
(293, 24, 0x5072652076c3a1732073206b72c3a1746b6f7520646f626f7520706f7a6f726e6f7374692e, 'Y', '2004-08-13 19:21:42'),
(54, 24, 0x50726570c3a1c48d2c2054766f6a65206865736c6f206a65206e65737072c3a1766e652e, 'Y', '2004-08-13 19:21:42'),
(55, 24, 0x4e657a6ec3a16d792074797020686f646e6f737469, 'Y', '2004-08-13 19:21:42'),
(48, 24, 0x4e656d6fc5be6e6f206578747261706f6c6f7661c5a520686f646e6f747520766f2066756e6b63696920696e746572706f6c6f76616e69612e, 'Y', '2004-08-13 19:26:15'),
(49, 24, 0x50726570c3a1c48d2c206d6fc5be65c5a1207a6d617a61c5a5206c656e2073766f6a6520766c6173746ec3a9207061727469652e, 'Y', '2004-08-13 19:26:15'),
(50, 24, 0x50726570c3a1c48d2c206e656dc3b4c5be656d206ec3a16a73c5a52074c3ba746f20687275207620c48d616bc3a1726e692c20707261766465706f646f626e65206a752075c5be206e69656b746f206f62736164696c2e, 'Y', '2004-08-13 19:26:15'),
(51, 24, 0x50726570c3a1c48d2c206e656dc3b4c5be65c5a1206279c5a52073c3a16d20736562652073c3ba7065726f6d2e, 'Y', '2004-08-13 19:26:15'),
(52, 24, 0x50726570c3a1c48d2c206e6965207369207620c5a17065636966696b6f76616e6f6d20726f7a736168752074726965642e, 'Y', '2004-08-17 14:27:05'),
(56, 24, 0x50726570c3a1c5a12c206e65706f7a6ec3a16d206e696b6f686f20732074616bc3bd6d2075c5bec3ad76617465c4be736bc3bd6d2049442e, 'Y', '2004-08-13 19:32:04'),
(57, 24, 0x50726570c3a1c48d2c207ac3a16b6c61646ec3a120747269656461206d7573c3ad206279c5a5207620726f7a6d65647ac3ad203330206b7975206120362064616e2e, 'Y', '2004-08-17 14:27:05'),
(58, 24, 0x50726570c3a1c48d2c207a6170c3ad73616c207369206e656e756d657269636bc3ba20686f646e6f7475206e61206e756d657269636bc3a920706f6cc3adc48d6b6f2e, 'Y', '2004-08-13 19:32:04'),
(59, 24, 0x50726570c3a1c48d2c206c656e207072656b6c61646174656c69612073c3ba206f707261766e656ec3ad207072656b6c616461c5a52e, 'Y', '2004-08-13 19:32:04'),
(60, 24, 0x416b2063686365c5a120706f6dc3b463c5a5207072656b6c616461c5a520447261676f6e612c20706fc5a16c692070726f73c3ad6d20737072c3a1767520646f2066c3b3726120277472616e736c6174696f6e272e, 'Y', '2004-08-13 19:32:04'),
(61, 24, 0x50726570c3a1c48d2c206e6965207369206f7072c3a1766e656ec3bd207072656b6c616461c5a520c5a17065636966696b6f76616ec3bd206a617a796b2e, 'Y', '2004-08-13 19:32:04'),
(63, 24, 0x50726570c3a1c48d2c206e6965c48d6f207a6c7968616c6f2070726920706f6b757365206f20766c6fc5be656e6965206e6f76c3a9686f207072656b6c61647520646f206461746162c3a17a792e, 'Y', '2004-08-13 19:32:04'),
(66, 24, 0x50726570c3a1c48d2c2074c3a1746f20737472c3a16e6b61206a65206c656e207072652075c5bec3ad76617465c4be6f7620736f20737072c3a176636f76736bc3bd6d6920c3ba6c6f68616d692e, 'Y', '2004-08-13 19:40:54'),
(69, 24, 0x50726570c3a1c48d2c206e656dc3b4c5be656d206ec3a16a73c5a52074c3ba20706f6c6fc5be6b752e, 'Y', '2004-08-13 19:40:54'),
(2839, 17, '', 'Y', '2013-08-21 00:36:57'),
(2840, 17, '', 'Y', '2013-08-21 00:36:57'),
(2906, 17, '', 'Y', '2013-08-21 00:36:57'),
(474, 24, 0x54656e746f20747970207564616c6f737469206a65206275c48f206e657a6ec3a16d7920616c65626f206e656dc3b4c5be65206279c5a520706f75c5be6974c3bd207620746f6d746f20c5a174c3a1646975207061727469652e, 'Y', '2004-08-13 19:40:54'),
(475, 24, 0x4b6f6d69206a65206d696d6f20726f7a736168752c2070726f73c3ad6d207679626572207369207a6d79736c75706c6e656ac5a1697520686f646e6f74752e, 'Y', '2004-08-13 19:40:54'),
(476, 24, 0x4368796261207361207679736b79746c612070726920746f6d746f20c5a56168752e204f6279c48d616a6e6520746f206964652c20616b20746f20736b757369c5a1207a6e6f76752c20696e616b2070726f73c3ad6d206b6f6e74616b74756a20706f64706f72752e, 'Y', '2004-08-13 19:40:54'),
(75, 24, 0x50726570c3a1c48d2c206e656dc3b4c5be656d206ec3a16a73c5a52064616ec3bd207475726e616a2e, 'Y', '2004-08-13 19:45:39'),
(503, 24, 0x537472c3a16e6b79206f20676f, 'Y', '2004-08-13 20:04:48'),
(504, 24, 0x5072617669646cc3a120676f, 'Y', '2004-08-13 20:04:48'),
(505, 24, '', 'Y', '2009-06-22 11:09:03'),
(506, 24, 0x546f20697374c3a920616b6f20626f642e204a65646e6120736c6f626f6461206e6120646f736b652e, 'N', '2004-08-13 20:04:48'),
(507, 24, '', 'Y', '2009-06-22 11:09:03'),
(508, 24, 0xc5a070656369c3a16c6e6520706fc48d6574203c6120687265663d222f6661712e7068703f726561643d74266361743d3323456e74727938223e6d6f6b753c2f613e20707265206269656c65686f206872c3a1c48d612e20496465206f206b6f6d70656e7ac3a163697520c3ba64616a6e656a2076c3bd686f647920707276c3a9686f20c5a561687520c48d6965726e65686f206872c3a1c48d612e, 'N', '2004-08-13 20:04:48'),
(509, 24, 0x4574696b657461206e6120447261676f6e65, 'Y', '2004-08-13 20:04:48'),
(510, 24, 0x50726f626cc3a96d792061206e65646f737461746b7920447261676f6e612e, 'Y', '2009-06-22 10:58:49'),
(511, 24, 0x4d656e75206120766fc4be6279206e6120447261676f6e65, 'Y', '2004-08-13 20:04:48'),
(512, 24, 0x506172746965206e6120447261676f6e65, 'Y', '2004-08-13 20:04:48'),
(513, 24, 0x56c3bd766f6a20447261676f6e61, 'Y', '2004-08-13 20:04:48'),
(514, 24, 0x2d, 'Y', '2005-01-05 21:53:41'),
(515, 24, 0x2d, 'Y', '2005-01-05 21:53:41'),
(579, 25, 0x43756d2066756e63c5a3696f6e657ac4832073697374656d756c2064652074696d70202262796f2d796f6d692043616e616469616e223f, 'Y', '2005-01-06 16:22:28'),
(580, 25, 0x447570c48320636520756e206a7563c483746f7220c59f692d6120657075697a61742074696d70756c207072696e636970616c206465206a6f632c20617265206c6120646973706f7a69c5a3696520756e2074696d702066697861742070656e74727520612066616365203c623e756e20616e756d6974206e756dc483723c2f623e206465206d7574c48372692e0d0a0d0a4465206578656d706c753a203130206d7574c483726920c3ae6e203135207a696c653a0d0a446163c483206a7563c483746f72756c20c59f692d61207472696d6973206365612064652d61207a65636561206d7574617265206c612074696d702c20617265206c6120646973706f7a69c5a369652064696e206e6f75203135207a696c652070656e7472752075726dc483746f6172656c65203130206d7574c48372692e0d0a0d0a446163c483206a7563c483746f72756c206e75206d7574c483206c612074696d702c2070696572646520706172746964612e, 'N', '2005-01-06 16:22:28'),
(518, 24, '', 'N', '2009-06-22 11:09:03'),
(519, 24, 0x4e6967697269206a65207370c3b4736f6220726f686f646e757469612c206b746f72c3bd207a206872c3a1c48d6f7620646f7374616e6520c48d6965726e65206b616d656e652e4e61207a61c48d6961746b75206a6564656e206872c3a1c48d2076796265726965206e69656b6fc4be6b6f206269656c796368206b616d65c5886f762e2044727568c3bd206872c3a1c48d20706f6c6fc5be656ec3ad6d206a65646ec3a9686f20616c65626f2064766f636820c48d6965726e796368206b616d65c5886f76206e6120676f62616e2068c3a164612c20c48d69206dc3a1206a65686f2073c3ba70657220762072756b65206e6570c3a1726e7920616c65626f2070c3a1726e7920706fc48d6574206269656c796368206b616d65c5886f762e20416b207568c3a1646f6c2c20646f7374616e6520c48d6965726e65206b616d656e652c20696e616b20646f7374616e65206269656c65206b616d656e652e20507269726f647a656e652c207475206e6120447261676f6e65206a652063656cc3bd2070726f63657320762072c3a9c5be696920736572766572612e204e61206b6f6e696563206872c3a1c48d2073206269656c796d69206b616d65c5886d6920646f7374616e6520362e35206b6f6d692e204e6967697269206279207361206d616c6f20706f75c5be69c5a520707265646f76c5a165746bc3bd6d20707265206872c3a1c48d6f7620726f766e616b656a2073696c792e, 'N', '2004-08-13 22:45:23'),
(522, 24, 0x4a65207620706f726961646b7520c5be656c61c5a5206e69656b6f6d7520227665c4be6120c5a1c5a5617374696122206e61207a61c48d6961746b75207061727469653f, 'Y', '2004-08-13 23:24:17'),
(523, 24, 0xc3816e6f2e20546f746f20626f6c6f20266c743b6120687265663d2671756f743b687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f70686f72756d2f726561642e7068703f663d3526616d703b693d31343126616d703b743d3134312671756f743b2667743b6469736b75746f76616ec3a920266c743b2f612667743b20646f2068c4ba626b792e204e69656b746f72c3ad206872c3a1c48d692075707265646e6f7374c588756ac3ba202671756f743b6f6e656761697368696d6173752671756f743b2e, 'Y', '2008-02-04 00:11:30'),
(525, 24, 0x416b6f206dc3b4c5be656d206e617672686ec3bac5a5206e6f76c3ba20c48d7274753f, 'Y', '2004-08-13 23:24:17'),
(526, 24, 0x50726f73c3ad6d20706fc5a16c692054766f6a206ec3a176726820646f20266c743b4120485245463d2671756f743b2f70686f72756d2f6c6973742e7068703f663d342671756f743b2667743b6469736b75736ec3a9686f2066c3b37261266c743b2f412667743b2e, 'N', '2008-02-04 00:11:30'),
(529, 24, 0x4b6465207361206dc3b4c5be656d20646f7a7665646965c5a52076696163206f206e656a616b6f6d207072617669646c653f, 'Y', '2004-08-13 23:24:17'),
(530, 24, 0x5679737665746c692073766f6a20646f74617a20762046415120616c65626f20476f2066c3b372756d2e204a6520646f6272c3a92073706f6d656ec3bac5a5206a65646e616b206f20616bc3a9207072617669646c6f207361207a61756ac3ad6d61c5a1206120616a207620616b656a2073697475c3a163696920706fc48d61732068727920686f2063686365c5a12075706c61746e69c5a52e, 'Y', '2004-08-13 23:24:17'),
(1023, 24, 0x72756d756e736bc3bd, 'Y', '2004-08-13 23:33:20'),
(531, 24, 0x416bc3a92073c3ba207ac3a16b6c61646ec3a9207072617669646cc3a120476f3f, 'Y', '2004-08-13 23:42:36'),
(532, 24, 0x4476616a61206872c3a1c48d692073c3ba70657269612076206f626bc4be75c48d6f76616ec3ad207465726974c3b3726961206e6120c5a174766f72636f76656a20646f736b652e20446f736b61206dc3a120313978313920626f646f762c20616c652073c3ba206265c5be6ec3a920616a2076617269616e74792039783920612031337831332e20537472696564616ac3ba6320756b6c6164616ac3ba206e6120646f736b75206b616d656e65206b61c5be64c3bd2073766f6a656a206661726279206e61207072c3a17a646e6520707269657365c48d6ec3ad6b792e20c48c6965726e7920c5a56168c3a120707276c3bd2c20706f746f6d206269656c792e0d0a0d0a416b2c20706f20c5a56168752c20c4be75626f766f6c6ec3a1207a6f2073c3ba7065726f76c3bd636820736b7570c3ad6e206b616d65c5886f76206dc3a1206e756c6120736c6f62c3b4642c206b616d656e652074656a746f20736b7570696e79207361206f64737472c3a16e6961207a20646f736b7920287a616a61746369292e20c5a46168206a65206e657072c3ad707573746ec3bd2c20616b20706f20c4be75626f766f6c6e6f6d207a616a6174c3ad206e656dc3a1206e656a616bc3a12020766c6173746ec3a120736b7570696e61206173706fc588206a65646e7520736c6f626f64752e0d0a0d0a4b65c48f207361206f62616a612073c3ba7065726920706f207365626520767a64616ac3ba20706f6c6fc5be656e6961206b616d65c58861206e6120646f736b75202870617373292c20687261206a6520756b6f6ec48d656ec3a1206120706fc48dc3ad746120736120736bc3b372652e204e65757472616c6e6520626f6479202864616d6529207361207679706c6e696120646f6461746fc48d6ec3bd6d69206b616d65c5886d692061206dc595747665206b616d656e65207361206f64737472c3a16e69612e205465726974c3b37269756d20c48d6965726e65686f2061206269656c65686f20736120706fc48dc3ad746120616b6f20706fc48d6574206f626b6f6c6573656ec3bd636820626f646f76206dc3ad6e757320706fc48d657420626f646f76207a616a6174c3bd63682073c3ba7065726f6d2e0d0a0d0a56696163203c6120687265663d22687474703a2f2f706c6179676f2e746f2f696e7465726163746976652f696e6465782e68746d6c22207461726765743d6e65773e54686520496e7465726163746976652057617920546f20476f3c2f613e2e, 'Y', '2004-08-13 23:42:36'),
(533, 24, 0x4b6465206dc3b4c5be656d206ec3a16a73c5a5207669616320737472c3a16e6f6b206f20476f3f, 'Y', '2004-08-18 15:42:40'),
(534, 24, 0x4e6120447261676f6e65206a6520737472c3a16e6b612073203c6120687265663d222f6c696e6b732e706870223e6c696e6b616d693c2f613e2e, 'Y', '2004-08-13 23:49:22'),
(535, 24, '', 'Y', '2009-06-22 11:09:03'),
(536, 24, 0x4b6f6e636f766b612e20506f736c65646ec3a12066c3a17a61206872792c206b6465207361206e656872616ac3ba207374726174656769636bc3a920c3ba746fc48d6ec3a920c5a56168792c20616c652073612068c4be6164616ac3ba20c5a56168792c206b746f72c3a9206e616a76c3a4c48dc5a16d6920726f7ac5a16972756ac3ba206578697374756ac3ba636520c3ba7a656d69612e, 'Y', '2004-08-16 16:45:26'),
(537, 24, '', 'N', '2009-06-22 11:09:03'),
(538, 24, 0x4174617269206a652062657a70726f73747265646ec3a12068726f7a6261207a616a61746961206b616d65c5886120616c65626f20736b7570696e79206b616d65c5886f762e2054656e746f206b616d65c58820616c65626f20736b7570696e61206dc3a1206d6f6d656e74c3a16c6e65206a6564696ec3ba20736c6f626f64752e205679736c6f76656e696520736c6f766120224174617269222070726920687265206a65206e69656b656479206f6276796b6cc3a92061206973746520736c75c5a16ec3a92c20616c65206e657679c5be6164756a652073612e, 'N', '2004-08-13 23:49:22'),
(539, 24, '', 'Y', '2009-06-22 11:09:03'),
(540, 24, 0x4b6f206a652073697475c3a1636961206e6120646f736b652073206f70616b6f76616ec3bd6d207a616a6174c3ad6d206a65646ec3a9686f206b616d65c588612e20446f736c6f766e65206b6f207a6e616d656ec3a120227665c48d6e6f73c5a5222e, 'Y', '2004-08-13 23:49:22'),
(541, 24, 0x44616ac3ba207361206fc5be697669c5a5206872792c206b64652076797072c5a1616c20c48d61733f, 'Y', '2004-08-14 00:01:20'),
(542, 24, 0x4e69652e203c693e50726f73c3ad6d207a61c48d6e697465206e6f76c3ba206872752073203c6120687265663d222f6661712e7068703f726561643d74266361743d3536223e76686f646ec3bd6d6920c48d61736f76c3bd6d69206c696d69746d693c2f613e213c2f693e, 'Y', '2004-08-14 00:01:20'),
(545, 24, '', 'Y', '2009-06-22 11:09:03'),
(1019, 5, 0x546f7572266e6273703b706172266e6273703b746f7572, 'Y', '2004-08-14 00:18:01'),
(1020, 5, 0x4c6573207061727469657320617520ab266e6273703b746f7572266e6273703b706172266e6273703b746f7572266e6273703bbb206e276f626c6967656e7420706173206c657320616476657273616972657320e020ea747265207072e973656e747320656e206dea6d652074656d70732e20417520636f6e7472616972652c20696c73206a6f75656e74206c65757220636f7570207175616e6420696c7320656e206f6e74206c6120706f73736962696c6974e92e20496c73206a6f75656e7420646f6e6320706c7574f47420636f6d6d652064616e7320756e65207061727469652070617220636f72726573706f6e64616e6365206f752070617220452d6d61696c2e20556e6520706172746965207065757420647572657220706c75736965757273206d6f69732e0d0a566f6972206175737369203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f6661712e7068703f726561643d7426616d703b6361743d3323456e747279313533223e74656d7073266e6273703b72e9656c3c2f613e, 'Y', '2005-09-20 18:05:29'),
(1021, 5, 0x54656d70732072e9656c, 'Y', '2004-08-14 00:18:01'),
(1022, 5, 0x4c6573207061727469657320656e20ab266e6273703b74656d7073266e6273703b72e9656c266e6273703bbb20737570706f73656e7420717565206c657320616476657273616972657320736f6e74207072e973656e747320656e206dea6d652074656d70732e20456c6c657320736f6e742c20656e2067e96ee972616c2c206427756e207365756c2074656e616e74206574206e6520647572656e7420717565207175656c71756573206865757265732e20436520736f6e74206c65732070617274696573206661636520e02066616365206175746f7572206427756e207672616920706c6174656175206f752076696120756e207365727665757220656e2074656d7073266e6273703b72e9656c2e0d0a566f6972206175737369203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f6661712e7068703f726561643d7426616d703b6361743d3323456e747279313532223e746f7572266e6273703b706172266e6273703b746f75723c2f613e2e, 'Y', '2005-09-20 18:05:29'),
(546, 24, 0x4b7975207a6e616d656ec3a120227a61c48d6961746fc48d6ec3ad636b6120616c65626f2075c48dc5886f76736bc3a120686f646e6f73c5a5222e204b7975206dc3a120726f7a736168206f6420333020706f20312c20707269c48d6f6d2031206a65206e616a73696c6e65c5a169612e20446566696ec3ad636975203330206b7975207370c4bac58861206e69656b746f2c206b746f207361206e6175c48d696c206120706f726f7a756d656c207072617669646cc3a12c20616c65206e656f646f6872616c20616e69206a6564696ec3ba207061727469752e204b797520686f646e6f737469206e69652073c3ba2073706fc4be61686c6976c3a920646f203130206b79752c206b6465206872c3a1c48d206dc3b4c5be65206279c5a52075c5be2073c3ba7065726f6d206872c3a1c48d6120686f646e6f7374692031203c6120687265663d222f6661712e7068703f726561643d74266361743d3323456e7472793339223e64616e3c2f613e2076203c6120687265663d222f6661712e7068703f726561643d74266361743d33353723456e7472793937223e68656e64696b65706f76656a203c2f613e2070617274696920732039206b616d65c5886d692e, 'Y', '2004-08-14 00:20:58'),
(1018, 5, 0x536c6f7661717565, 'Y', '2004-08-14 00:22:01'),
(1023, 5, 0x526f756d61696e, 'Y', '2004-08-14 00:22:01'),
(547, 24, '', 'Y', '2009-06-22 11:09:03'),
(548, 24, 0x44616e207a6e616d656ec3a12022686f646e6f73c5a5206d616a73747261222e2044616e6f76c3a920686f646e6f7374692073696168616ac3ba206f642031207679c5a1c5a169652e20c48cc3ad6d2076c3a4c48dc5a1696520c48dc3ad736c6f2c2074c3bd6d2073696c6e656ac5a1c3ad206872c3a1c48d2e20486f766f72c3ad2073612c20c5be6520616d6174c3a972736b7920352064616e206a652073696c6ec3bd207a687275626120616b6f20312064616e2070726f202850726f666573696f6ec3a16c79206e656d616ac3ba20686f646e6f737469203c6120687265663d222f6661712e7068703f726561643d74266361743d3323456e7472793338223e6b79753c2f613e2e29, 'Y', '2004-08-14 01:32:36'),
(549, 24, 0x4b6fc4be6b6f20646ec3ad207072c3a17a646e696e206dc3a16d206e6120447261676f6e653f, 'Y', '2004-08-14 01:34:46'),
(550, 24, 0x4e616a7669616320333020286d6178696d756d207a6120726f6b292e204b61c5be64c3bd206d657369616320736120707269706fc48dc3ad746120322e352064c58861207072617a646e696e206e612054766f6a65206b6f6e746f2e20416b207369206e6f76c3bd206e6120447261676f6e652c2074616b207a61c48dc3ad6e61c5a120736f2031342064c588616d69207072c3a17a646e696e2e, 'Y', '2004-08-14 01:34:46'),
(551, 24, 0xc48c6f207a6e616d656e616ac3ba20706f6c6fc5be6b79206e6120737472616e6b652022537461747573223f, 'N', '2004-08-14 02:57:36'),
(552, 24, 0x5475206a652073747275c48d6ec3a9207679737665746c656e696520706f6c6fc5be69656b20762074616275c4be6b65206e617672636875203c6120687265663d222f7374617475732e706870223e737472616e6b79205374617475733c2f613e2e0d0a3c756c3e0d0a3c6c693e3c623e4d656e6f3c2f623e20536b75746fc48d6ec3a9206d656e6f2075c5bec3ad76617465c4be612061706f642e20c4bd75626f766f6c6ec3bd20746578742e0d0a3c6c693e3c623e55c5bec3ad76617465c4be736bc3a92049443c2f623e20416bc3a96b6fc4be76656b20707269686c61736f76616369652049442c206b746f72c3a92073692075c5bec3ad76617465c4be20767974766f72696c2e204e65656469746f76617465c4be6ec3a92e0d0a3c6c693e3c623e5072696a61c5a52076c3bd7a76793f3c2f623e20496e666f206d6fc5be6ec3bd6d2073c3ba7065726f6d2e20c4bd75626f766f6c6ec3bd20746578742e0d0a3c6c693e3c623e5472696564613c2f623e2055c5be6976617465c4be6f76612076c3bd6b6f6e6e6f73746ec3a120747269656461206e61200d0a447261676f6e20736572766572692e2047656e65726f76616ec3a9207365727665726f6d2e0d0a3c6c693e3c623e496e666f206f207472696564653c2f623e20446f6461746fc48d6ec3a920696e666f726dc3a16369652c206e6170722e2076c3bd6b6f6e6e6f73746ec3a120747269656461207a206b6c7562752e20c4bd75626f766f6c6ec3bd20746578742e0d0a3c2f756c3e, 'N', '2004-08-17 14:25:42'),
(1003, 14, 0x6261736b69, 'Y', '2004-08-15 19:42:45'),
(1014, 14, '', 'Y', '2006-11-14 11:49:44'),
(975, 14, 0x4b75696e6b61206b69726a617564756e20736973e4e46e2074756e6e756b73656c6c616e693f, 'Y', '2004-08-15 19:42:45'),
(1015, 14, 0x6573706572616e746f, 'Y', '2004-08-15 19:43:06'),
(1018, 14, 0x736c6f76616b6961, 'Y', '2004-08-15 19:43:06'),
(1023, 14, 0x726f6d616e6961, 'Y', '2004-08-15 19:43:06'),
(972, 14, 0x4a6f756b6b756574756e6e756b736961206f6e20657269206c756f6b6974756b73696c6c653a203c6120687265663d222f75736572696e666f2e7068703f7569643d3433373022207461726765743d225f626c616e6b223e316b3c2f613e2c203c6120687265663d222f75736572696e666f2e7068703f7569643d3436373122207461726765743d225f626c616e6b223e346b3c2f613e2c203c6120687265663d222f75736572696e666f2e7068703f7569643d3431343822207461726765743d225f626c616e6b223e376b3c2f613e2c203c6120687265663d222f75736572696e666f2e7068703f7569643d3432383322207461726765743d225f626c616e6b223e31316b3c2f613e2c203c6120687265663d222f75736572696e666f2e7068703f7569643d3433343022207461726765743d225f626c616e6b223e31346b3c2f613e2c203c6120687265663d222f75736572696e666f2e7068703f7569643d3338363422207461726765743d225f626c616e6b223e31366b3c2f613e2c203c6120687265663d222f75736572696e666f2e7068703f7569643d3339373422207461726765743d225f626c616e6b223e31396b3c2f613e2c203c6120687265663d222f75736572696e666f2e7068703f7569643d3431353322207461726765743d225f626c616e6b223e32326b3c2f613e2c206a61203c6120687265663d222f75736572696e666f2e7068703f7569643d3435323422207461726765743d225f626c616e6b223e32366b3c2f613e2e, 'N', '2004-08-15 19:45:28'),
(973, 14, 0x4b75696e6b61206b69726a617564756e20736973e4e46e2074696574796c6ce4206be4797474e46ae474756e6e756b73656c6c613f, 'Y', '2004-08-15 19:45:28');
INSERT INTO `Translations` (`Original_ID`, `Language_ID`, `Text`, `Translated`, `Updated`) VALUES
(974, 14, 0x566169686461206f736f697465726976696c74e4203c6120687265663d222f7374617475732e70687022207461726765743d225f626c616e6b223e2f7374617475732e7068703c2f613e206d756f746f6f6e203c753e2f6c6f67696e2e7068703f7573657269643d3c623e6be4797474e46ae474756e6e75733c2f623e267061737377643d3c623e73616c6173616e613c2f623e3c2f753e2e0d0a0d0a4f7461206b756974656e6b696e2068756f6d696f6f6e2c20657474e42073616c6173616e616e2073e4696cf66d696e656e2070656c6b6be46ee42074656b7374696ee4206f6e2074757276616c6c69737575737269736b692e20c46ce42073e4696c7974e420746169206a616b656c652074e46c6c6169737461206f736f697465747461206b6f7469736976756c6c61736920746169206a756c6b6973656e206b6f6e65656e2073656c61696d656e206b69726a616e6d65726b65697373e42e, 'Y', '2004-08-15 19:45:28'),
(976, 14, 0x3c693e456920796b7369747969736b6f6874616973746120766173746175737461207669656ce4202d207061686f697474656c656d6d65202d206d75747461206a6f7461696e206b756974656e6b696e3a3c2f693e0d0a0d0a4b69726a6175647520736973e4e46e203c6120687265663d222f22207461726765743d225f626c616e6b223e447261676f6e696e20657475736976756c6c613c2f613e3b2033302070e46976e46e2070e4e47374e4206572e4e46e747976e420636f6f6b69652074616c6c656e6e657461616e206b6f6e65656c6c6573692e20436f6f6b69656e20766f6920706f6973746161206b69726a617574756d616c6c6120756c6f7320447261676f6e697374612e2053e4686bf6706f7374696f736f69747465657369206b6572746f6d616c6c6120766f69742073616164612073616c6173616e616d756973747574756b73656e2c206a6f7320756e6f686461742073616c6173616e6173692e, 'Y', '2004-08-15 19:50:23'),
(122, 23, 0xe7ad94e38188, 'Y', '2004-08-16 06:21:54'),
(127, 23, 0xe7b7a8e99b86, 'N', '2004-08-16 06:21:54'),
(128, 23, 0xe4b88ae381abe7a7bbe58b95, 'Y', '2004-08-16 06:21:54'),
(129, 23, 0xe4b88be381abe7a7bbe58b95, 'Y', '2004-08-16 06:21:54'),
(135, 23, 0xe7bfbbe8a8b3e88085, 'Y', '2004-08-16 06:21:54'),
(1, 23, 0xe6ae8be3828ae7bdaee79fb3e381afe381bee381a0e69c89e3828ae381bee38199e381aee381a7e38081e38391e382b9e381afe587bae69da5e381bee3819be38293e38082, 'Y', '2004-08-16 06:44:33'),
(2, 23, 0xe38193e381aee5afbee5b180e381afe697a2e381abe7b582e4ba86e38197e381a6e38184e381bee38199e38082, 'Y', '2004-08-16 06:44:33'),
(3, 23, 0xe38193e381aee5afbee5b180e381afe381bee381a0e9968be5a78be38195e3828ce381a6e38184e381bee3819be38293e38082, 'Y', '2004-08-16 06:44:33'),
(7, 23, 0xe887aae58886e381abe68b9be5be85e587bae3819be381bee3819be38293e38082, 'Y', '2004-08-16 06:44:33'),
(8, 23, 0xe68b9be5be85e38195e3828ce3819fe382b2e383bce383a0e381afe8a68be381a4e3818be3828ae381bee3819be38293e38082e38282e38186e8be9ee98080e38197e3819fe58fafe883bde680a7e3818ce69c89e3828ae381bee38199e38082, 'Y', '2004-08-16 06:44:33'),
(9, 23, 0xe58aabe58f8de58987e381a7e38199e38082e5908ce38198e79ba4e99da2e381afe4ba8ce5baa6e381a8e3818ae38193e3828be381aee381a7e38081e79fb3e38292e4b880e5808be58f96e381a3e3819fe79fb3e381aee4b880e5808be381afe38199e38190e58f96e3828ae8bf94e38199e4ba8be381afe587bae69da5e381bee3819be38293e38082e38282e381a3e381a8e8a9b3e38197e3818fe381afe383abe383bce383abe381a7e3808ce382b3e382a6efbc88e58aabefbc89e3808de38292e58f82e785a7e38197e381a6e4b88be38195e38184e38082, 'Y', '2004-08-16 06:44:33'),
(12, 23, 0xe38387e383bce382bfe38399e383bce382b9e381abe382a2e382afe382bbe382b9e587bae69da5e381bee3819be38293e38082e69aabe3818fe5be85e381a3e381a6e3818be38289e5868de8a9a6e38197e38197e381a6e4b88be38195e38184e38082, 'Y', '2004-08-16 06:44:33'),
(13, 23, 0xe5afbee5b180e5898ae999a4e381afe5a4b1e69597e38197e3819fe58fafe883bde680a7e3818ce69c89e3828ae381bee38199e38082e68190e38289e3818fe5958fe9a18ce3818ce799bae7949fe38197e381a6e38184e381bee3819be38293e38082, 'Y', '2004-08-16 06:44:33'),
(14, 23, 0xe383a1e38383e382bbe383bce382b8e38292e38387e383bce382bfe38399e383bce382b9e381abe381aee68f90e587bae38199e3828be381afe5a4b1e69597e38197e3819fe58fafe883bde680a7e3818ce69c89e3828ae381bee38199e38082, 'Y', '2004-08-16 06:44:33'),
(15, 23, 0xe5afbee5b180e8bfbde58aa0e381abe38387e383bce382bfe38399e383bce382b9e381abe381aee68f90e587bae381afe5a4b1e69597e38197e3819fe58fafe883bde680a7e3818ce69c89e3828ae381bee38199e38082, 'Y', '2004-08-16 06:44:33'),
(16, 23, 0xe6898be795aae38292e38387e383bce382bfe38399e383bce382b9e381abe381aee68f90e587bae381afe5a4b1e69597e38197e3819fe58fafe883bde680a7e3818ce69c89e3828ae381bee38199e38082, 'Y', '2004-08-16 06:44:33'),
(17, 23, 0xe38387e383bce382bfe38292e38387e383bce382bfe38399e383bce382b9e381abe381aee68f90e587bae381afe5a4b1e69597e38197e3819fe58fafe883bde680a7e3818ce69c89e3828ae381bee38199e38082e383ade382b0e382a4e383b3e587bae69da5e381aae38184e5a0b4e59088e381afe38282e38186e4b880e59b9ee8a9a6e38197e381a6e4b88be38195e38184e38082e381bee381a0e9a784e79baee381aee5a0b4e59088e381afe382b5e3839de383bce38388e381abe980a3e7b5a1e38197e381a6e4b88be38195e38184e38082, 'Y', '2004-08-16 06:44:33'),
(18, 23, 0xe38387e383bce382bfe38399e383bce382b9e382afe382a8e383aae383bce3818ce5a4b1e69597e38197e381bee38197e3819fe38082e69aabe3818fe5be85e381a3e381a6e3818be38289e5868de8a9a6e38197e38197e381a6e4b88be38195e38184e38082, 'Y', '2004-08-16 06:44:33'),
(75, 23, 0xe68c87e5ae9ae38197e3819fe38388e383bce3838ae383a1e383b3e38388e38292e8a68be381a4e3818be3828ae381bee3819be38293e38082, 'Y', '2004-08-16 06:44:33'),
(2835, 17, '', 'Y', '2013-08-21 00:35:49'),
(2836, 17, '', 'Y', '2013-08-21 00:36:57'),
(2837, 17, '', 'Y', '2013-08-21 00:36:57'),
(474, 23, 0xe68c87e5ae9ae38197e3819fe6938de4bd9ce3818ce4b88de6988ee3818be5afbee5b180e381aee78fbee59ca8e381aee78ab6e6858be381a7e588a9e794a8e587bae69da5e381bee3819be38293e38082, 'Y', '2004-08-16 06:44:33'),
(475, 23, 0xe382b3e3839fe381afe7af84e59bb2e5a496e381a7e38199e38082e7af84e59bb2e58685e580a4e38292e981b8e38293e381a7e4b88be38195e38184e38082, 'Y', '2004-08-16 06:44:33'),
(476, 23, 0xe382a8e383a9e383bce3818ce799bae7949fe38197e381bee38197e3819fe38082e38282e38186e4b880e59b9ee8a9a6e38197e381a6e4b88be38195e38184e38082e381bee381a0e9a784e79baee381aee5a0b4e59088e381afe382b5e3839de383bce38388e381abe980a3e7b5a1e38197e381a6e4b88be38195e38184e38082, 'Y', '2004-08-16 06:44:33'),
(477, 23, 0xe7bdaee79fb3e381aee695b0e3818ce6ada3e38197e3818fe69c89e3828ae381bee3819be38293e38082, 'Y', '2004-08-16 06:44:33'),
(714, 23, 0xe68c87e5ae9ae38197e3819fe383a1e383bce383abe38395e382a9e383abe38380e38292e8a68be381a4e3818be3828ae381bee3819be38293e38082, 'Y', '2004-08-16 06:44:33'),
(22, 23, 0xe5908de5898de38292e585a5e58a9be38197e381a6e4b88be38195e38184e38082, 'Y', '2004-08-16 06:49:21'),
(32, 23, 0xe38182e381aae3819fe381aee6898be795aae381a7e381afe69c89e3828ae381bee3819be38293e38082, 'Y', '2004-08-16 06:49:21'),
(38, 23, 0xe6a38be58a9be381afe6ada3e38197e3818fe69c89e3828ae381bee3819be38293e38082e3808ce7b49ae3808de3818be3808ce6aeb5e3808de38292e5bf98e3828ce381bee38197e3819fe3818befbc9f, 'Y', '2004-08-16 06:49:21'),
(553, 24, 0x4b656479206d6920706c796e696520c48d6173206e6120c48d61736f6d69657265206b207061727469693f, 'Y', '2004-08-16 16:47:45'),
(554, 24, 0xc48c6173206b752068726520546920706c796e6965203c623e6c656e3c2f623e2076746564792c206b65c48f207369206e6120c5a56168750d0a0d0a4e65706fc48dc3ad74612073610d0a3c756c3e0d0a3c6c693e20616b206a65206e6120c5a56168752054766f6a2073c3ba706572203c2f6c693e0d0a3c6c693e20706fc48d61732054766f6a686f203c6120687265663d222f6661712e7068703f726561643d74266361743d353623456e7472793631223e6e6fc48d6ec3a9686f206bc4be7564753c2f613e3c2f6c693e0d0a3c6c693e706fc48d61732054766f6a696368203c6120687265663d222f6661712e7068703f726561643d74266361743d353623456e7472793636223e7072c3a17a646e696e3c2f613e3c2f6c693e0d0a3c6c693e706fc48d61732076c3ad6b656e646f762028616b2073692073692076796272616c2074c3ba746f206d6fc5be6e6f73c5a52076203c6120687265663d222f6661712e7068703f726561643d74266361743d33353723456e7472793434223e76c3bd7a7665206e61207061727469753c2f613e293c2f6c693e0d0a3c2f756c3e, 'N', '2004-08-16 11:47:35'),
(555, 24, 0x416b6f207369206dc3b4c5be656d20706f7a726965c5a5205347462073c3ba626f723f, 'N', '2004-08-16 11:56:55'),
(556, 24, 0x4a65207665c4be612070726f6772616d6f762c206b746f72c3a92056c3a16d20756d6fc5be6e6961207072657a657261c5a5206120656469746f7661c5a5205347462073c3ba626f72792e20446f6272c3bd20746970206a65203c6120687265663d22687474703a2f2f7777772e72656e652d67726f74686d616e6e2e64652f6a61676f2f223e4a61676f3c2f613e2c204a61766120476f206b6c69656e742e0d0a0d0a42726974736bc3a12061736f6369c3a163696120676f206dc3a120646c68c3bd203c6120687265663d22687474703a2f2f7777772e62726974676f2e6f72672f676f70637265732f676f7063726573312e68746d6c23732d76696577223e7a6f7a6e616d20736f667476c3a972753c2f613e206e612073707261636f76616e6965205347462073c3ba626f726f762e0d0a0d0a4b65c48f206dc3a1c5a12073766f206a205347462d7072657a657261c48d2c206dc3b4c5be65c5a1207369206e617374617669c5a520646f2073766f6a686f20696e7465726e65746f76c3a9686f20707265686c69616461c48d61206d696d652d74797020276170706c69636174696f6e2f782d676f2d736766272061206e65636861c5a5206a65646ec3bd6d206b6c696b6e7574c3ad6d207679766f6c61c5a52074656e746f2070726f6772616d2e, 'N', '2004-08-16 11:56:55'),
(557, 24, 0x416b6f207a61c48d6e656d207061727469753f, 'Y', '2004-08-16 12:13:08'),
(558, 24, 0x4a65206e69656b6fc4be6b6f206d6fc5be6e6f7374c3ad20616b6f207a61c48d61c5a5206e6f76c3ba207061727469753a0d0a3c554c3e0d0a3c4c493e5679626572207369206e69656b746f72c3ba2070617274697520706f6ec3ba6b616ec3ba2076203c4120485245463d222f77616974696e675f726f6f6d2e70687022205441524745543d5f626c616e6b3ec48d616bc3a1726e693c2f413e2e0d0a0d0a54656e746f207370c3b4736f6220706f75c5be692c20616b2068c4be6164c3a1c5a1206e6f76c3bd63682073c3ba7065726f762e204e616a707276206b6c696b6e6920206e61206c696e6b75203c6120687265663d222f77616974696e675f726f6f6d2e70687022207461726765743d225f626c616e6b223e22c48c616bc3a17265c588223c2f613e2076206d656e752e204ec3a16a6469207369207061727469752c206b746f72c3a1205469207679686f76756a652061206b6c696b6e69206e61206d6f6472c3a92022696e666f2220746c61c48dc3ad746b6f2076c4be61766f206f64206e656a2e204e6173706f647520737472c3a16e6b79206279206d616c206279c5a520706f64726f626ec3bd20706f70697320706f646d69656e6f6b207061727469652e20416b2063686365c5a120687261c5a52074c3ba746f207061727469752c2073746c61c48d20746c61c48dc3ad746b6f202250726964616a222e204a6520746f206a65646e6f64756368c3a92e0d0a3c4c493e506f6ec3ba6b6e692070617274697520736f2073766f6a696d6920766c6173746ec3bd6d6920706f646d69656e6b616d692076203c4120485245463d222f77616974696e675f726f6f6d2e70687022205441524745543d5f626c616e6b3ec48d616bc3a1726e693c2f413e2e0d0a0d0a416b20546920c5be6961646e61207a20686965722076203c4120485245463d222f77616974696e675f726f6f6d2e70687022205441524745543d5f626c616e6b3ec48d616bc3a1726e693c2f413e206e657679686f76756a652c20756d696573746e692074616d2073766f6a7520706f6e756b752e20526f62c3ad20736120746f207679706c6e656ec3ad6d20666f726d756cc3a17261206e612073706f647520737472616e792c206b65c48f207369207620c48d616bc3a1726e692e2053746c61c48d20746c61c48dc3ad746b6f202250726964616a2070617274697522206120c48d616b616a2e2056207072696562656875206e69656b6fc4be6bc3bd636820646ec3ad206279207369206d616c2f6120687261c5a52e0d0a0d0a3c4c493e56797a76692073766f6a69636820707269617465c4be6f762e203c42523e0d0a416b20706f7a6ec3a1c5a12075c5bec3ad76617465c4be736bc3a92049442073766f6a686f2073c3ba706572612c206dc3b4c5be65c5a1206d7520706f736c61c5a52076c3bd7a76752063657a206c696e6b75203c6120687265663d222f6d6573736167652e7068703f6d6f64653d496e7669746522207461726765743d225f626c616e6b223e2256797a76616e696522206c696e6b3c2f613e2076206d656e752e204e61737461762073766f6a6520c5be656c616ec3a920766fc4be6279206120706f746f6d20706fc5a16c692e2054766f6a2073c3ba706572206dc3b4c5be65207a6a65646ec3a17661c5a520766fc4be62792c20706f6b6961c4be20636863652e0d0a0d0a4c696e6b61202256797a7661c5a520746f686f746f2075c5bec3ad76617465c4be6122206a65206e612073706f647520737472c3a16e6b79206b61c5be64c3a9686f2075c5bec3ad76617465c4be612e20506f75c5be6974c3ad6d2074656a746f206c696e6b79206dc3b4c5be65746520646f736961686e75c5a520746f20697374c3a92c20616c652072c3bd63686c656ac5a169652e0d0a3c2f554c3e, 'N', '2004-08-16 16:50:13'),
(559, 24, 0x416b6f20c5a56168c3a16d2076207061727469693f, 'Y', '2004-08-16 13:28:35'),
(560, 24, 0x4e6120737472c3a16e6b65203c6120687265663d222f7374617475732e706870223e737461747573203c2f613e206a65207a6f7a6e616d207061727469c3ad2c2076206b746f72c3bd6368207369206e6120c5a56168752e204b6c696b6e7574c3ad6d206e6120c48dc3ad736c6f20687279207361205469207a6f6272617ac3ad2e0d0a0d0a54616d206dc3b4c5be65c5a120756d696573746e69c5a5206b616d65c58820287465646120c5a5616861c5a529206b6c696b6e7574c3ad6d206e61207072c3ad7a646e7920707269657365c48d6ec3ad6b2e20416b2074656e746f20c5a56168207a616a6d652073c3ba7065726f7665206b616d656e652c2073657276657220696368206175746f6d617469636b79206f64737472c3a16e692e20416b2063686365c5a1207a61687261c5a5207061737320616c65626f20767a6461c5a5207061727469752c206b6c696b6e69206e61206c696e6b7920706f6420646f736b6f752e0d0a0d0a4b65c48f206a652070617274696120616b7475616c697a6f76616ec3a1206e6f76c3bd6d20c5a561686f6d2f706173736f6d2f767a64616ec3ad6d2073612c2073746c61c48d206a6564656e6f207a20746c61c48d696469656c206120706f747672c48f2054766f6a2076c3bd6265722e20416b20736920746f20726f7a6d79736cc3adc5a12c2073746c61c48d20746c61c48dc3ad646c6f20224e617370c3a4c5a5222e, 'Y', '2004-08-17 15:52:52'),
(561, 24, 0x416b6f207a6d61c5be656d20726f7a6f6872616ec3ba207061727469753f, 'Y', '2004-08-18 20:00:31'),
(562, 24, 0x446f2064657369617465686f20c5a5616875206a6520706f6420646f736b6f75206c696e6b61202671756f743b5a6d61c5be2671756f743b2e20416b207a7275c5a1c3adc5a1207061727469752c206e656f76706c69766ec3ad20746f2054766f6a75207472696564752e0d0a0d0a506f206465736961746f6d20c5a561687520736120706172746961206e6564c3a1207a7275c5a169c5a52e, 'N', '2008-02-04 00:11:30'),
(563, 24, 0x416b6f20756b6f6ec48dc3ad6d207061727469753f, 'Y', '2004-08-16 14:40:33'),
(564, 24, 0x546f746f2073612064c3a12075726f6269c5a520616b207369206e61203c623ec5a56168753c2f623e2e0d0a3c554c3e0d0a3c4c493e2044766120706f2073656265206964c3ba6365207061737379206f64205465626120612073c3ba706572612e20546f746f206a65206e6f726dc3a16c6e6520756b6f6ec48d656e6965207061727469652e204ec3a1736c65646e6520627564657465206f62616a6120706fc5be696164616ec3ad206f7a6e61c48d69c5a5207a616a6174c3a9206b616d656e652e20506f746f6d20447261676f6e207679706fc48dc3ad746120736bc3b3726520687279206120726f7a686f646e65206f2076c3adc5a5617a6f76692e0d0a3c4c493e20506f75c5be6974696520746c61c48dc3ad746b612022567a6461c5a5207361222e20416b2070617274697520767a64c3a1c5a12c207072656872616c2073692061206f6472617ac3ad20736120746f206e612054766f6a656a207472696564652e200d0a0d0a3c4c493e2056797072c5a1616e696520c48d617375207061727469652e203c693e2850726f73c3ad6d2120567962657220736920696ec3bd207370c3b4736f6221293c2f693e20416b2054692076797072c5a1616c20c48d61732076207061727469692c207072656872616c20736920612061206f6472617ac3ad20736120746f206e612054766f6a656a20686f646e6f7374692e200d0a0d0a3c2f554c3e, 'N', '2004-08-17 14:25:42'),
(565, 24, 0xc39a766f6420646f20447261676f6e61, 'Y', '2004-08-16 14:40:50'),
(566, 24, 0xc48c6f207475206dc3b4c5be656d206ec3a16a73c5a53f, 'Y', '2004-08-16 14:49:26'),
(567, 24, 0x447261676f6e20476f20536572766572202844475329206a65206d696573746f2c206b6465206d6fc5be65c5a120687261c5a5203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f6661712e7068703f726561643d74266361743d3323456e747279313532223e6b726f6b6f76c3a9203c2f613e2070617274696520476f206e6120696e7465726e6574652e2046756e67756a6520746f20766961632d6d656e656a20616b6f206b6f7265c5a1706f6e64656ec48d6ec3a92070617274696520652d6d61696c6f6d2e0d0a0d0a56c3a4c48dc5a1696e61206872c3a1c48d6f76207a617369656c61206f6b6f6c6f203520c5a561686f76207a612074c3bdc5be6465c5882e2054616bc5be6520706172746965207a61626572c3ba206e69656b6fc4be6b6f2074c3bdc5be64c5886f762061204447532073612073746172c3a1206f206e657072c3ad6a656d6ec3a9207665636920616b6f20646f686c696164616e6965206e6120c48d61736f6d69657275206120706f6b79746f76616e6965207472696564792e0d0a0d0a4872616e696520476f2076203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f6661712e7068703f726561643d74266361743d3323456e747279313533223e7265c3a16c6e6f6d20c48d6173653c2f613e20747520736b75746fc48d6e65206e6965206a65206d6fc5be6ec3a92e204872616e69652076207265c3a16c6e6f6d20c48d617365207a6e616d656ec3a12c20c5be6520756b6f6ec48dc3adc5a1207a61c48d6174c3ba20687275207a6872756261207620707269656265687520686f64696e792e20416b206872c3a1c5a120726164c5a1656a20476f2076207265c3a16c6e6f6d20c48d6173652c206d616c20627920736920736bc3ba7369c5a5203c6120687265663d22687474703a2f2f73656e736569732e786d702e6e65742f3f476f53657276657222207461726765743d225f626c616e6b223e696ec3a9203c2f613e207365727665727920706f736b7974756ac3ba6365207061727469652076207265c3a16c6e6f6d20c48d61736520616b6f206e6170722e203c6120687265663d22687474703a2f2f6b67732e6b69736569646f2e636f6d2f22207461726765743d225f626c616e6b223e4b47533c2f613e20616c65626f203c6120687265663d22687474703a2f2f70616e64612d6967732e6a6f796a6f792e6e65742f22207461726765743d225f626c616e6b223e4947533c2f613e2e0d0a0d0a4e61766961632c20444753206dc3a1206e69656b6fc4be6b6f203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f70686f72756d2f696e6465782e706870223e6469736b75736ec3bd63682066c3b372203c2f613e207a616d6572616ec3bd6368206e6120476f20612073616d6f746ec3bd204447532e, 'N', '2004-08-17 15:41:05'),
(568, 24, 0x5374c3a16c65206e656dc3a16d20706f7475636879206f206d6f6a656a20706fc48d6961746fc48d6e656a20686f646e6f7374692e2e2e, 'Y', '2004-08-16 16:50:24'),
(569, 24, 0x416b207369206e6f76c3a1c48d696b207620476f2c2074616b20736920707261766465706f646f626e650d0a3c756c3e0d0a3c6c693e3330206b79753a20616b20706f7a6ec3a1c5a1207072617669646cc3a120476f0d0a3c6c693e32392d3238206b79753a20616b2073692075c5be206f646f6872616c2f61206e69656b6fc4be6b6f207061727469c3ad0d0a3c6c693e32372d3236206b79753a20616b2073692075c5be2076796872616c2f61206e69656b6fc4be6b6f206869657220736f207a61c48d6961746fc48d6ec3ad6b6d690d0a3c6c693e32352d3232206b79753a20616b2073752075c5be2076796872616c2f61206e69656b6fc4be6b6f20686965722073206872c3a1c48d6d692c206b746f72c3ad206e69652073c3ba207a61c48d6961746fc48d6ec3ad6b6d690d0a3c2f756c3e0d0a0d0a416c7465726e6174c3ad766f75207072652022706f6b726fc48d696c656ac5a1c3ad6368207a61c48d6961746fc48d6ec3ad6b6f7622206a6520737472c3a17669c5a520617369203130206d696ec3ba74206e61203c4120485245463d687474703a2f2f7777772e6d6f746f7273636f70652e636f6d2f646f6a6f2f74657374732f205441524745543d5f626c616e6b3e746f6d746f2074657374653c2f413e206120706f75c5be69c5a52076c3bd736c65646f6b20616b6f20706fc48d6961746fc48d6ec3ba20686f646e6f73c5a5206e6120447261676f6e652e0d0a0d0a50726f73c3ad6d20737472c3a1c588746520736120706f75c5bec3ad76616e6961207679736f6b656a20686f646e6f7374692c206e6170722e2027362064616e272e20506f20696e696369616c697ac3a16369692073612075c5be2072616e6b203c623e6e6564c3a13c2f623e207a6d656e69c5a52e205679626572207369206a65646e75207a207679c5a1c5a169652075766564656ec3bd636820616c65626f20736b75746fc48d6ec3ba20686f646e6f73c5a52c206a7520766965c5a12e0d0a0d0a4966207369207369207374c3a16c65206e696520697374c3bd2c206b746f72c3ba20686f646e6f73c5a520736920767a6961c5a52c20736bc3ba73207361207370c3bd7461c5a52076203c686f6d6520666f72756d2f6c6973742e7068703f666f72756d3d323e537570706f727420666f72756d3c2f686f6d653e2e, 'N', '2009-01-05 21:16:32'),
(570, 24, 0xc48c61736f6d69657261206e6120447261676f6e65, 'Y', '2004-08-16 17:07:57'),
(571, 24, 0x507265c48d6f206a6520706f75c5be69746965207072617a646e696e6f76616e6961206f626d65647a656ec3a93f, 'Y', '2004-08-16 17:07:57'),
(572, 24, 0x4b656279206e65626f6c69206c696d697479206e61207072617a646e696e6f76616e69652c206d6f686f6c2062792073692073692054792028616c65626f2054766f6a2073c3ba70657229206f70616b6f76616e6520767a6961c5a5206a6564656e206465c588207072c3a17a646e696e2061207679686ec3bac5a52073612074616b2076797072c5a1616e697520c48d6173752076207061727469692e20546f746f2062792075726f62696c6f207a20646f686f646e7574c3a9686f20c48d617375206e6120706172746975206e657a6d7973656c6ec3ba20c48d696e6e6f73c5a52e20507265746f206872616e696365206e61207072617a646e696e6f76616e69652073c3ba206e6120447261676f6e65206e61736c65646f766ec3a93a0d0a20266c743b756c2667743b0d0a266c743b6c692667743b207072617a646e696e792073c3ba206d696e696dc3a16c6e65203720646ec3ad20646c68c3a9206120266c743b2f6c692667743b0d0a266c743b6c692667743b207a61c48d6174c3a9207072c3a17a646e696e792073612075c5be20266c743b622667743b6e6564616ac3ba266c743b2f622667743b207072657275c5a169c5a528266c743b622667743b21266c743b2f622667743b29266c743b2f6c692667743b0d0a266c743b2f756c2667743b, 'Y', '2008-02-04 00:11:30'),
(573, 24, 0x4b746f72c3a92073c3ba206e6564c3a1766e65207a6d656e7920762072c3a16d636920746f686f746f204641513f, 'Y', '2005-01-05 21:53:12'),
(574, 24, 0x3c623e323030352d30382d31313a3c2f623e0d0a0d0a50726964616ec3a9203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f6661712e7068703f726561643d74266361743d313523456e747279313436223e416b6f20736120737072c3a17661c5a520762072c3a16d63692066c3b372613f3c2f613e0d0a0d0a3c623e323030352d30382d30393a3c2f623e0d0a0d0a50726964616ec3a9203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f6661712e7068703f726561643d74266361743d33353723456e747279313239223e4b616d20756d69657374c5886f7661c5a52068656e64696b65706f76c3a9206b616d656e653f3c2f613e0d0a0d0a3c623e323030352d30362d32333a3c2f623e0d0a0d0a50726964616ec3a120c48d6173c5a5203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f6661712e7068703f726561643d74266361743d3136223e447261676f6e20627567733c2f613e2e, 'Y', '2005-08-16 19:21:41'),
(581, 25, 0x43756d2066756e63c5a3696f6e65617ac4832073697374656d756c2064652074696d70202246697363686572223f, 'Y', '2005-01-06 16:31:47'),
(643, 24, 0x4b746f72c3a92048544d4c207a6e61c48d6b79206dc3b4c5be656d20706f75c5be69c5a5206e6120447261676f6e653f, 'Y', '2009-01-05 21:26:32'),
(575, 24, 0x507265c48d6f206368636520447261676f6e206f646f206dc58861206d6f6a7520652d6d61696c6f76c3ba206164726573753f, 'Y', '2004-08-16 17:52:54'),
(576, 24, 0x4e6120706f736c616e6965206e6f76c3a9686f206865736c612028616b206fc58820706fc5be69616461c5a1292e0d0a0d0a506f7369656c616e6965206e6f76c3a9686f206865736c61206e6120652d6d61696c6f76c3ba20616472657375203c693e20756c6fc5be656ec3ba20762070726f66696c652075c5bec3ad76617465c4be613c2f693e206a65206a65646e6f64756368c3a1206d6574c3b3646120617574656e746966696bc3a16369652075c5bec3ad76617465c4be612e20447261676f6e20746f206e65636863652075726f6269c5a5207a6c6fc5be6974656ac5a1c3ad6d20616b6f2074726562612e0d0a0d0a447261676f6e207265c5a170656b74756a652073c3ba6b726f6d69653a204e65646f7374616e65c5a1206e65c5be696164616ec3ba20706fc5a174752e2054766f6a6120652d6d61696c6f76c3a120616472657361206e656275646520766964697465c4be6ec3a120707265206e696b6f686f2e204e656275646520616e69206e696b6f6d752070726564616ec3a12e0d0a0d0a447261676f6e20706f766fc4be756a65203c693e706f6e65636861c5a53c2f693e20652d6d61696c6f76c3ba20616472657375203c693e7072c3a17a646e753c2f693e2e205620746f6d207072c3ad7061646520616c65203c693e206e657a616275646e693c2f693e2073766f6a65206865736c6f21, 'Y', '2004-08-17 15:38:42'),
(577, 24, 0x416b6f2066756e67756a65206a61706f6e736bc3bd20c48d61736f6d65726ec3bd2073797374c3a96d20626a6f6a6f6d693f, 'Y', '2004-08-16 18:14:01'),
(578, 24, 0x4b65c48f2073612075c5be206d696e756c206872c3a1c48d6f7620686c61766ec3bd20c48d6173206e61207061727469752c206dc3a12065c5a1746520c48d61736f76c3bd206c696d6974206e61206b61c5be64c3bd203c623e6a6564656e3c2f623e20c5a561682e204e6176696163206dc3a1206e69656b6fc4be6b6f2063796b6c6f763a0d0a3c554c3e0d0a3c4c493e204b65c48f206872c3a1c48d2076796b6f6ec3a120c5a5616820762072c3a16d636920c48d6173752c20c48d61736f7661c48d20736b6fc48dc3ad206e6120706fc48d6961746fc48d6ec3ba20686f646e6f7475206120706fc48d65742063796b6c6f76207361206e657a6d656ec3ad203c2f4c493e0d0a3c4c493e416b206e65706f746961686e6520762072c3a16d6369206a65646ec3a9686f2063796b6c752c20706fc48d65742063796b6c6f76207361207a6d656ec48dc3ad206f206a65646e61206120c48d61736f7661c48d207a61c48d6e65206f647a6e6f76612e3c2f4c493e0d0a3c2f554c3e0d0a0d0a416b206872c3a1c48d206e656dc3a120c5be696164656e20c48d6173206120706fc48d65742063796b6c6f76206a65206e756c612c207072656872c3a17661206e6120c48d61732e, 'N', '2004-08-16 18:19:05'),
(579, 24, 0x416b6f2066756e67756a65206b616e6164736bc3bd20626a6f6a6f6d692073797374c3a96d3f, 'Y', '2004-08-16 19:08:55'),
(580, 24, 0x4b65c48f207361206d696e6965206872c3a1c48d6f766920686c61766ec3bd20c48d61732c206dc3a120c48d61736f76c3bd206c696d6974206e61203c623e6e69656b6fc4be6b6f3c2f623e206b616d65c5886f762e0d0a0d0a5072c3ad6b6c61643a203130206b616d65c5886f76206e6120313520646ec3ad3a0d0a416b206872c3a1c48d207a61736c616c206a65686f2064657369617479206b616d65c588206e61c48d61732c206a65686f20c48d61736f6d69657261207a61c48d6e6520706fc48dc3ad7461c5a5207a6e6f76752028742e6a2e206dc3a120313520646ec3ad206e6120c48f616cc5a1c3ad6368203130206b616d65c5886f76292e2e0d0a0d0a416b206872c3a1c48d206e65706f746961686e6520762072c3a16d636920746f686f746f206c696d69752c207072656872c3a1766120706172746975206e6120c48d61732e, 'N', '2004-08-16 19:08:55'),
(581, 24, 0x416b6f2066756e67756a6520466973636865726f766120c48d61736f6d696572613f, 'Y', '2004-08-16 19:29:47'),
(582, 24, 0x506f206f646f68726174c3ad20c5a56168752c207361206872c3a1c48d6f766920707269706fc48dc3ad7461206b206a65686f2063656c6b6f76c3a96d7520c48d61737520697374c3a9206d6e6fc5be7374766f20c48d617375202874616b2c206162792063656c6b6f76c3bd20c48d6173206e657072656b726fc48d696c206d6178696dc3a16c6e7920c48d6173292e0d0a0d0a4b65c48f206872c3a1c48d206e656dc3a120c5be696164656e20c48d61732c207072656872c3a17661206872752e, 'N', '2004-08-16 19:29:47'),
(583, 24, 0x416b6f20c48d6173206e6fc48d6ec3a9686f206bc4be756475206f76706c7976c588756a65204669736865726f7620c48d61733f, 'Y', '2004-08-16 19:36:11'),
(584, 24, 0x5679737665746cc3ad6d65206e61207072c3ad6b6c6164653a0d0a0d0a43686365c5a120707269656d65726e65203320c5a5616879207479c5be64656e6e652061206e6563686365c5a12c2061627920736120546920c48d6173206d696e756c20706fc48d617320736f62c3b47420616c65626f206e656469656c2e0d0a0d0a546f206a652028372d322920646ec3ad202a2028323468202d203968206e6fc48d6ec3a9686f206bc4be756475292f3320c5a5616879203d20323520686f64c3ad6e207a61206b61c5be64c3bd20c5a561682070726920466973636865726f766f6d20c48d6173652073706f6c7520736f207ac3a16b617a6f6d206265687520686f64c3ad6e2063657a2076c3ad6b656e642e, 'Y', '2004-08-16 19:36:11'),
(585, 24, 0xc48c6f206a6520c48d6173206e6fc48d6ec3a9686f206bc4be7564753f, 'N', '2004-08-16 19:36:11'),
(586, 24, 0x506fc48d617320686f64c3ad6e20c5a17065636966696b6f76616ec3bd636820616b6f20226e6fc48d6ec3bd206bc4be75642220736120686f64696e792074656a746f20706172746965207a6173746176696120612054766f6a207a6f7374c3a176616ac3ba636920c48d6173207361206e65736b726163756a652e, 'N', '2004-08-16 19:36:11'),
(645, 24, '', 'Y', '2009-06-22 11:09:03'),
(646, 24, 0x486f736869207a6e616d656ec3a120706f206a61706f6e736b792022687669657a6461222061206dc3a1206476612076c3bd7a6e616d792e20566f2076c5a1656f6265636e6f73746920696465206f20646576c3a4c5a52068656e64696b65706f76c3bd63682022626f646f762d687669657a6422206e6120646f736b652e20c5a070656369c3a16c6e652c206a6520746f20626f6420736f2073c3ba7261646e6963616d6920342d34207620726f68752e, 'Y', '2004-08-16 19:39:26'),
(587, 24, 0x507265c48d6f206d6f6a6520686f64696e7920736b6fc48d696c69206f20646576c3a4c5a520686f64c3ad6e20646f6c752076207072696562656875203130206d696ec3ba743f, 'Y', '2004-08-16 19:48:43'),
(588, 24, 0x416b20766964c3adc5a120736bc3a1c48dc3ba636520686f64696e792c206d616c20627920736920736920646fc5be69c48d69c5a52074726f636875207370c3a16e6b752e203a2d290d0a0d0a4b65c48f2073746f6ac3ad206e6120686f64696ec3a163682c20c5be65206dc3a1c5a12065c5a17465203320646e6920c48d6173752c2074616b20746f207a6e616d656ec3a13a0d0a3c6e6f77723e204dc3a1c5a1203c2f6e6f77723e203c6e6f77723e33202a202832342d39293c2f6e6f77723e203d203c6e6f77723e343520686f64c3ad6e3c2f6e6f77723e20c48d697374c3a9686f20c48d6173752062657a207370c3a16e6b752e0d0a0d0a4b65c48f2073746f6ac3ad206e6120686f64696ec3a163682c20c5be65206dc3a1c5a1203220646e69206120313420686f64c3ad6e2c20746f207a6e616d656ec3a13a203c6e6f77723e4dc3a1c5a1203c2f6e6f77723e203c6e6f77723e32202a202832342d3929202b2031343c2f6e6f77723e203d203c6e6f77723e343420686f64c3ad6e3c2f6e6f77723e20c48d697374c3a9686f20c48d6173752062657a207370c3a16e6b752e, 'Y', '2004-08-16 19:48:43'),
(589, 24, 0x507265c48d6f206e656dc3b4c5be656d20656469746f7661c5a5206e6fc48d6ec3bd206bc4be75642076206d6f6a6f6d2075c5bec3ad76617465c4be736b6f6d2070726f66696c653f, 'Y', '2004-08-16 20:12:39'),
(590, 24, 0x507265746fc5be6520656469746f76616e69652054766f6a686f206e6fc48d6ec3a9686f206bc4be756475207472696b72c3a17420646f2064c5886120627920756d6fc5bec5886f76616c6f207a617374617669c5a520c48d61736f6d6965727520762054766f6a656a207061727469692e204dc3b4c5be65c5a120746f206d656e69c5a52c2069626120616b20736920746f206e656d656e696c2076206e6564c3a1766e656a206d696e756c6f7374692e, 'Y', '2004-08-16 20:12:39'),
(591, 24, 0x4dc3b4c5be656d207072696461c5a520c48d6173206e61206d6f6a656a20c48d61736f6d696572653f, 'Y', '2004-08-16 20:12:39'),
(592, 24, 0x4e69652c206e656dc3b4c5be65c5a12c20616c652073c3ba706572207361206dc3b4c5be6520726f7a686f646ec3bac5a5205469207564656c69c5a520c48f616cc5a1c3ad20c48d61732e0d0a0d0a4a65206e657a76796b6cc3a92061206e65736c75c5a16ec3a92070726f7369c5a5206f207669616320c48d617375206e6120726f7a6dc3bdc5a1c4be616e69652e204e656275c48f206e61686e6576616ec3bd2c20616b20746f2073c3ba706572206f646d6965746e652e, 'Y', '2008-02-04 00:14:20'),
(593, 24, 0x4dc3b4c5be656d207072696461c5a520c48d6173206e6120c48d61736f6d69657265206dc3b46a686f2073c3ba706572613f, 'Y', '2004-08-16 20:12:39'),
(594, 24, 0x4e69652e20416c6520746f746f206a6520c48d727461207620266c743b6120687265663d2671756f743b687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f746f646f2e7068702671756f743b2667743b706cc3a16e65207072c3a16365266c743b2f612667743b2e, 'N', '2008-02-04 00:11:30'),
(595, 24, 0xc48c6f2073c3ba207072c3a17a646e696e6f76c3a920646e693f, 'Y', '2004-08-16 20:12:39'),
(596, 24, 0x4dc3b4c5be65c5a1207a617374617669c5a520c48d61736f6d696572752c206b65c48f2073692075c5bec3ad7661c5a120646f766f6c656e6b7520616c65626f20286e656fc48d616bc3a176616ec3bd2920707261636f766ec3bd2076c3bd6a617a64206b6f6c6964756a6520732054766f6a696d6920726f7a6f6872616ec3bd6d69207061727469616d692e0d0a0d0a50726f73c3ad6d2c206e61736c6564756a20266c743b4120485245463d2671756f743b687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f656469745f7661636174696f6e2e7068702671756f743b2667743b7072617a646e696e6f76c3ba206c696e6b75266c743b2f612667743b206e6120737472c3a16e6b6520266c743b4120485245463d2671756f743b687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f75736572696e666f2e7068702671756f743b2667743b696e666f206f2075c5bec3ad76617465c4be6f7669266c743b2f612667743b2070726920706cc3a16e6f76616ec3ad2061207370757374656ec3ad207072c3a17a646e696e2e2054766f6a2073746176202671756f743b5072617a646e696e756a652671756f743b206a652076797a6e61c48d656ec3bd206e6120737472c3a16e6b652054766f6a686f207374617675206120496e666f206f2075c5bec3ad76617465c4be6f76692e, 'Y', '2008-02-04 00:11:30'),
(597, 24, 0x426a6f6a6f6d69, 'Y', '2004-08-16 20:12:39'),
(598, 24, 0x5072617669646cc3a1206265687520c48d61736f6d6965727920706f2075706c796e7574c3ad20686c61766ec3a9686f20c48d6173752e, 'Y', '2004-08-16 20:12:39'),
(599, 24, 0x4b746f72c3a920c48d61736f76c3a92070c3a1736d6f20736120706f75c5bec3ad766120707265206dc3b46a206e6fc48d6ec3bd206bc4be75643f, 'Y', '2004-08-16 20:50:11'),
(600, 24, 0x447261676f6e20706f75c5bec3ad76612054766f6a206c6f6bc3a16c6e7920c48d6173202861207072c3ad7061646e6520616a206c65746ec3bd20c48d6173292c206b746f72c3bd207369206e6173746176c3adc5a120766f2073766f6a6f6d2075c5bec3ad76617465c4be736b6f6d2070726f66696c652e, 'Y', '2004-08-16 20:50:11'),
(601, 24, '', 'Y', '2009-06-22 11:09:03'),
(602, 24, 0x534746206a6520736b7261746b612070726520536d6172742047616d6520466f726d61742c20666f726dc3a1742073c3ba626f7275207072652068727520476f20286120696ec3a920687279292e2044657461696c792073c3ba206e6170722e206e61206120687265663d22687474703a2f2f7777772e7265642d6265616e2e636f6d2f7367662f22207461726765743d6e65773e6f66696369c3a16c6e6120c5a17065636966696bc3a16369613c2f613e205347462046465b345d20c5a174616e64617264752e, 'Y', '2004-08-16 20:50:11'),
(665, 24, '', 'N', '2009-06-22 11:09:03'),
(666, 24, 0x487261207620726f68752e20557374c3a16c656ec3a920767a6f727920707265206872752076206c6f6bc3a16c6e656a2073697475c3a16369692e204f6279c48d616a6e65206c6f6bc3a16c6e65206e616a6c6570c5a1696120706f737475706e6f73c5a520c5a561686f7620707265206f626520737472616e792c20616c65206e656d7573c3ad206279c5a5206e616a6c6570c5a1696120676c6f62c3a16c6e652e204a6f73656b69206a652074616b7469636bc3bd207465726dc3ad6e2c206e6965207374726174656769736bc3bd2e, 'N', '2004-08-16 20:55:40'),
(667, 24, '', 'N', '2009-06-22 11:09:03'),
(668, 24, 0x4f74766f72656e69652e20557374c3a16c656ec3a920767a6f727920707265206872752076206f74766f72656ec3ad207061727469652e20467573656b69207a6168c595c5886120676c6f62c3a16c6e65207374726174656769636bc3a920c3ba7661687920767a68c4be61646f6d206e612063656c7920676f62616e2e, 'N', '2004-08-16 20:55:40'),
(669, 24, '', 'Y', '2009-06-22 11:09:03'),
(670, 24, 0x53656b69207a6e616d656ec3a120767ac3a16a6f6d6ec3bd20c5be69766f742e2053656b69206a65206c6f6bc3a16c6e79206dc59574767920626f642c2076206b746f726f6d20736920647665206772757079207a646965c4be616ac3ba20736c6f626f6479206120c5be6961646e6120737472616e61206e656dc3b4c5be65207a616a61c5a52074c3ba2064727568c3ba2e, 'Y', '2004-08-16 20:55:40'),
(1019, 4, 0x52756e64656e62617369657274, 'Y', '2004-08-16 21:26:44'),
(1020, 4, 0x52756e64656e62617369657274657320537069656c656e206973742065696e65206e6963687420676c656963687a656974696765204172742064657320537069656c656e732c20736f6461737320626569646520537069656c6572206e69636874207a75722073656c62656e205a65697420616e776573656e64207365696e206dfc7373656e3b20737461747464657373656e206b616e6e206a6564657220537069656c65722065696e656e205a7567206d616368656e2c2077656e6e20657220646166fc72205a656974206861742e20426569737069656c652066fc722072756e64656e62617369657274657320476f2073696e64205061727469656e2070657220506f73742c20452d4d61696c206f64657220537069656c652062656920447261676f6e2e0d0a0d0a53696568652061756368203c686f6d65206661712e7068703f726561643d74266361743d3323456e7472793135333e456368747a6569743c2f686f6d653e2e, 'Y', '2009-07-04 10:05:29'),
(1021, 4, 0x456368747a656974, 'Y', '2004-08-16 21:26:44'),
(1022, 4, 0x456368747a656974206d65696e742064696520676c656963687a65697469676520416e776573656e686569742062656964657220537069656c65722c20776f6265692065696e652067616e7a65205061727469652064757263686765737069656c7420776972642e20426569737069656c652066fc7220456368747a6569747061727469656e2077e472656e20736f6c636865206175662065696e656d2065636874656e20476f62616e206f64657220fc6265722065696e656e20646572207a61686c7265696368656e20476f2d5365727665722e0d0a0d0a53696568652061756368203c686f6d65206661712e7068703f726561643d74266361743d3323456e7472793135323e52756e64656e626173696572743c2f686f6d653e2e, 'Y', '2009-07-04 09:57:35'),
(603, 24, 0x507265c48d6f206d6920447261676f6e206e65706f76696520652d6d61696c6f76c3ba20616472657375206dc3b46a686f2073c3ba706572613f, 'Y', '2004-08-16 21:44:07'),
(604, 24, 0x4a6520746f20707265746f2c20c5be6520447261676f6e20636872c3a16e692073c3ba6b726f6d69652054766f6a686f2073c3ba7065726120286120616a2054766f6a65292e0d0a0d0a416b2063686365c5a1207665646965c5a520766961632c20616b6f2054766f6a2073c3ba70657220706f736b7974756a6520766f2073766f6a6f6d2075c5bec3ad76617465c4be736b6f6d2070726f66696c652c206d7573c3adc5a120736120686f207370c3bd7461c5a52e, 'Y', '2004-08-16 21:44:07'),
(605, 24, 0x416b6f207369206dc3b4c5be656d20756c6fc5be69c5a520746578742076205347463f, 'Y', '2004-08-16 22:02:27'),
(606, 24, 0x557a617672692054766f6a2074657874206d65647a69206bc4bec3bac48d6f76c3a920736c6f76c3a12026616d703b6c743b636f6d6d656e7426616d703b67743b20612026616d703b6c743b2f636f6d6d656e7426616d703b67743b2e200d0a0d0a5072c3ad6b6c61643a2056206a65646e656a20732054766f6a69636820726f7a6f6872616ec3bd6368207065727469c3ad3a0d0a0d0a312e20566c6fc5be20646f20706fc4be612070726520737072c3a17675202671756f743b706fc5a16c6920c5a561682055524c2671756f743b3a0d0a0d0a6c656e20746573742c2070726f73c3ad6d2069676e6f72756a0d0a26616d703b6c743b636f6d6d656e7426616d703b67743b0d0a746573746f766163c3ad206b6f6d656e74c3a172206279207361206d616c206f626a617669c5a52076207367660d0a26616d703b6c743b2f636f6d6d656e7426616d703b67743b0d0a746573746f766163c3ad206b6f6d656e74c3a172206279207361206e656d616c206f626a617669c5a52076207367660d0a0d0a322e20506fc5a16c692073766f6a20c5a561680d0a332e2053746961686e69205347462073c3ba626f722e0d0a342e204f74766f72205347462073c3ba626f72202873206e656a616bc3bd6d20476f206b6c69656e746f6d20616c65626f20746578746f76c3bd6d20656469746f726f6d292e0d0a0d0a352e204b6f6d656e74c3a172206b20c5a5616875206a653a0d0a26616d703b6c743b54766f6a65206d656e6f206e6120447261676f6e6526616d703b67743b3a20746573746f766163c3ad206b6f6d656e74c3a172206279207361206d616c206f626a617669c5a52076207367660d0a0d0a362e20416b2063686365c5a12c206162792054766f6a206b6f6d656e74c3a17220626f6c20c48d6974617465c4be6ec3bd2061c5be20706f20646f6b6f6ec48d656ec3ad20206872792c20706f75c5be692026616d703b6c743b68696464656e26616d703b67743b2026616d703b6c743b2f68696464656e26616d703b67743b206e616d696573746f2026616d703b6c743b636f6d6d656e7426616d703b67743b2026616d703b6c743b2f636f6d6d656e7426616d703b67743b0d0a0d0a4bc4bec3bac48d6f76c3a920736c6f76c3a12026616d703b6c743b636f6d6d656e7426616d703b67743b2026616d703b6c743b2f636f6d6d656e7426616d703b67743b20612026616d703b6c743b68696464656e26616d703b67743b2026616d703b6c743b2f68696464656e26616d703b67743b2073612064616ac3ba20736b72c3a17469c5a5206e612026616d703b6c743b6326616d703b67743b2026616d703b6c743b2f6326616d703b67743b20612026616d703b6c743b6826616d703b67743b2026616d703b6c743b2f6826616d703b67743b2e0d0a0d0a4e6f726dc3a16c6e792074657874202874657874204e45757a6176726574c3bd20762026616d703b6c743b636f6d6d656e7426616d703b67743b20612026616d703b6c743b2f636f6d6d656e7426616d703b67743b29206a6520766964697465c4be6ec3bd206c656e2064766f6d206872c3a1c48d6f6d207072c3ad736c75c5a16e656a206872792e2054657874206e6965206a6520766964697465c4be6ec3bd206e696b6f6d7520696ec3a96d752061206e6965206a6520766c6fc5be656ec3bd20646f205347462e20546f746f206a65206e61206f636872616e752054766f6a686f2073c3ba6b726f6d69612e, 'N', '2008-02-04 00:11:30'),
(607, 24, 0x4dc3b4c5be656d20736120737461c5a52076c3bd766f6ac3a1726f6d20447261676f6e613f, 'Y', '2004-08-16 22:07:34'),
(608, 24, 0xc3816e6f2c206a6520746f206d6fc5be6ec3a92e204d616c206279207369206f766cc3a16461c5a5207072617669646cc3a120476f2c205048502061204d7953514c2e0d0a0d0a50726f73c3ad6d20706f7a7269207361206e61203c4120485245463d22687474703a2f2f736f75726365666f7267652e6e65742f70726f6a656374732f647261676f6e676f73657276657222205441524745543d225f626c616e6b223e447261676f6e277320646576656c6f706d656e74207061676520617420536f75726365466f726765202876c3bd766f6ac3a172736b6120737472c3a16e6b6120447261676f6e61293c2f413e20612070726f73c3ad6d207a6170c3adc5a120736120646f203c4120485245463d22687474703a2f2f6c697374732e736f75726365666f7267652e6e65742f6c697374732f6c697374696e666f2f647261676f6e676f7365727665722d646576656c22205441524745543d225f626c616e6b223e647261676f6e676f7365727665722d646576656c206d61696c696e67206c6973742028c3a92d6d61696c207a6f7a6e616d2076c3bd766f6ac3a1726f7620447261676f6e61293c2f413e2e, 'N', '2004-08-16 22:07:34'),
(621, 24, 0x5a6f6272617a2076c5a165746b7920c48d617374c3a9206f74c3a17a6b79202846415129206e61206a65646e656a20737472c3a16e6b652e, 'Y', '2004-08-16 22:07:34'),
(622, 24, 0x5475726e616a65206e6120447261676f6e65, 'Y', '2004-08-16 22:07:34'),
(623, 24, 0x4dc3b4c5be656d20687261c5a5206e6120447261676f6e65207475726e616a653f, 'N', '2004-08-16 23:07:19'),
(624, 24, 0x5475726e2d626173656420476f204775696c6420285442474729206f7267616e697a756a65203c6120687265663d22687474703a2f2f627573696e6573732e6261796c6f722e6564752f73746576655f726963682f676f2f72756c65732e68746d6c22207461726765743d225f626c616e6b223e6e69656b6fc4be6b6f207475726e616a6f763c2f613e2e205475726e616a6f76c3a920737072c3a176792073c3ba206f7a6e616d6f76616ec3a9203c6120687265663d2220687474703a2f2f7777772e667265656c697374732e6f72672f6367692d62696e2f6c6973743f6c6973745f69643d676f6775696c6422207461726765743d225f626c616e6b223e652d6d61696c6f76c3bd6d207a6f7a6e616d6f6d3c2f613e2e, 'N', '2004-08-16 23:07:19'),
(625, 24, 0x53c3ba206e656a616bc3a9207475726e616a652073707261766f76616ec3a920707269616d6f206e6120447261676f6e653f, 'Y', '2004-08-16 23:07:19'),
(626, 24, 0x4e69652c2065c5a17465206e69652e, 'Y', '2004-08-16 23:07:19'),
(627, 24, 0xc48c6f207a6e616d656ec3a12022616b746976697461222075c5bec3ad76617465c4be613f, 'Y', '2004-08-16 23:07:19'),
(628, 24, 0x4e617a6e61c48d756a722c206b6fc4be6b6f20c5a561686f7620626f6c6f207a61736c616ec3bd63682076206e656461766e656a20646f6272652e0d0a0d0a32207a656c656ec3a920687669657a6469c48d6b793a207665c4be6120c5a561686f7620287669616320616b6f203730206d657361c48d6e65290d0a31206f72616ec5be6f76c3a120687669657a6469c48d6b613a206e656a616bc3a920c5a56168792028352d3730206d657361c48d6e65290d0a3020687669657a6469c48d69656b3a207a6f70c3a17220c5a561686f7620286d656e656a20616b6f2035206d657361c48d6e65290d0a0d0a44657461696c792073c3ba2076797665746c656ec3a9206e61203c6120687265663d222f70686f72756d2f726561642e7068703f663d3426693d3134323526743d3134323522207461726765743d225f626c616e6b223e746f6d746f20766cc3a16b6e653c2f613e2e, 'Y', '2004-08-16 23:07:19'),
(629, 24, 0xc48c6f207a6e616d656ec3a12022c3ba737065c5a16e6f73c5a5222075c5bec3ad76617465c4be613f, 'Y', '2004-08-19 15:47:04'),
(630, 24, 0x4a6520746f20706f6469656c206872c3a1c48d6f6d2076796872616ec3bd6368207061727469c3ad206e612063656c6b6f766f6d20706fc48d7465207061727469c3ad2c206b746f72c3a9206dc3b4c5be6520706f6461c5a520c48f616cc5a1697520696e666f726dc3a1636975206f2073c3bac48d61736e656a207472696564652e0d0a0d0a4b65c48f206872c3a1c48d20756b6f6ec48d696c206e656a616bc3a920686f646e6f74656ec3a9207061727469652c20686f646e6f7461206f6b6f6c6f20353025207a6e61c48dc3ad2c20c5be65206dc3a120707269626c69c5be6e6520757374c3a16c656ec3ba20686f646e6f73c5a52e20486f646e6f74612076c3a4c48dc5a1696120616b6f20373525207a6e61c48dc3ad2c20c5be6520686f646e6f73c5a5206a6520617369207072c3ad6c69c5be206ec3ad7a6b612c207a61746961c4bec48d6f20706f6420323525207a6e616d656ec3a12c20c5be65206a6520707261766465706f646f626e65207072697679736f6bc3a12e0d0a0d0a50726f73c3ad6d2c20757665646f6d2073692c20c5be6520746f746f2070657263656e746f206dc3b4c5be65206279c5a5207a6176c3a1647a616ac3ba63652e204e617072c3ad6b6c61642c2075c5bec3ad76617465c4be206872616c207665c4be6d6920646f627265207665c4be6120397839207061727469c3ad2c20616c65207072656872616c2076c3a4c48dc5a1696e75203139783139207061727469c3ad2e20416c65626f20756b6f6ec48d696c206e69656b6fc4be6b6f2076c3a1c5be6e7963682028686f646e6f74656ec3bd636829207061727469c3ad2c20616c65207665c4be61206578706572696d656e74c3a16c6e79636820286e65686f646e6f74656ec3bd636829207061727469c3ad2e20506f64726f626e656ac5a1697520696e666f726dc3a1636975206d6fc5be6e6f207ac3ad736b61c5a5207072657a726574c3ad6d207a6f7a6e616d7520756b6f6ec48d656ec3bd6368207061727469c3ad2e, 'Y', '2004-08-19 15:47:04'),
(631, 24, 0x416b6f206dc3b4c5be656d207a7275c5a169c5a520706f6ec3ba6b6e7574c3ba20687275207620c48d616bc3a1726e693f, 'Y', '2004-08-17 01:04:11'),
(632, 24, 0x4b6c696b6e69206e6120696e666f20746c61c48dc3ad746b6f203c693e54766f6a656a203c2f693e20706f6e756b792e204e6173706f6475206e61736c6564756ac3ba63656a20737472c3a16e6b79206a6520746c61c48d69646c6f206e61206a656a207a7275c5a1656e69652e20416b20c5be696164656e206872c3a1c48d206e65616b63657074756a652054766f6a7520706f6e756b7520706fc48d6173206e69656b6fc4be6bc3bd6368207479c5be64c5886f762c206a6520706f6e756b61206175746f6d617469636b79206f64737472c3a16e656ec3a12e, 'Y', '2004-08-17 15:38:42'),
(633, 24, 0xc48c6f206a6520726f766ec3a1207061727469612073206e69676972693f, 'Y', '2004-08-17 13:09:57'),
(634, 24, 0x3c6120687265663d226661712e7068703f726561643d74266361743d3323456e747279313534223e526f766ec3a1207061727469613c2f613e207a6e616d656ec3a12c20c5be6520706f6ec3ba6b6e65c5a1207061727469752062657a203c6120687265663d222f6661712e7068703f726561643d74266361743d33353723456e7472793937223e68616e64696b65706f76c3bd63683c2f613e206b616d65c5886f762e203c6120687265663d226661712e7068703f726561643d74266361743d3323456e7472793231223e4e69676972693c2f613e207a6e616d656ec3a12c20c5be652054766f6a612066617262612073612076796265726965206ec3a1686f646e652e, 'Y', '2004-08-17 15:37:02'),
(635, 24, 0x507265c48d6f206e69652073c3ba206e69656b746f72c3ad2075c5bec3ad766174656c6961207a6170c3ad73616ec3ad2076207a6f7a6e616d652075c5bec3ad76617465c4be6f763f, 'Y', '2004-08-17 13:27:16'),
(636, 24, 0x447261676f6e206e657a617261c48f756a6520646f207a6f7a6e616d75206e65616b74c3ad766e7963682075c5bec3ad76617465c4be6f76206175746f6d617469636b792e204e6173706f647520266c743b6120687265663d2671756f743b687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f75736572732e7068702671756f743b207461726765743d2671756f743b5f626c616e6b2671756f743b2667743b7a6f7a6e616d752075c5bec3ad76617465c4be6f76266c743b2f612667743b206a6520646f737475706ec3a1206c696e6b6120266c743b6120687265663d2671756f743b687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f75736572732e7068703f73686f77616c6c3d312671756f743b2671756f743b2f75736572732e7068703f73686f77616c6c3d312671756f743b207461726765743d2671756f743b5f626c616e6b2671756f743b2667743b7a6f62727a20266c743b622667743b76c5a165746bc3bd6368266c743b2f622667743b2075c5bec3ad76617465c4be6f76266c743b2f612667743b2e2e2e, 'Y', '2008-02-04 00:11:30'),
(637, 24, 0xc48c6f207a6e616d656ec3a120686c61766ec3bd20c48d61733f, 'Y', '2004-08-17 13:27:16'),
(638, 24, 0x3c693e486c61766ec3bd20c48d61733c2f693e206a6520c48d61736f76c3bd206c696d697420706f736b79746e7574c3bd206b61c5be64c3a96d75206872c3a1c48d6f7669206e61207a61c48d6961746b75207061727469652e0d0a0d0a416b20686c61766ec3bd20c48d61732076797072c5a1c3ad2c20706172746961207361203c623e6e65736b6f6ec48dc3ad3c2f623e2e2050617274696120706f6b7261c48d756a65206e616473746176656ec3bd6d20c48d61736f6d2028706f7a7269206e69c5bec5a16965292e, 'Y', '2004-08-17 13:27:16'),
(639, 24, 0x4b746f2073c3ba20c4be75646961207a6120447261676f6e6f6d3f, 'Y', '2004-08-17 15:24:19'),
(640, 24, 0x447261676f6e20476f20536572766572202844475329206a65206e656b6f6d6572c48d6ec3bd206120766fc4be6e6520646f737475706ec3bd2074c3ad6d6f76c3bd2070726f6a656b74206f6420612070726520c4be7564c3ad2c206b746f72c3ad2072616469206872616ac3ba206b726f6b6f76c3a920476f2e0d0a0d0a44475320626f6c20767974766f72656ec3bd20266c743b6120687265663d2671756f743b2f75736572696e666f2e7068703f7569643d322671756f743b207461726765743d2671756f743b5f626c616e6b2671756f743b2667743b4572696b6f6d266c743b2f612667743b206120266c743b6120687265663d2671756f743b687474703a2f2f736f75726365666f7267652e6e65742f70726f6a6563742f6d656d6265726c6973742e7068703f67726f75705f69643d32393933332671756f743b207461726765743d2671756f743b5f626c616e6b2671756f743b2667743b6a652073707261766f76616ec3bd266c743b2f612667743b20266c743b6120687265663d2671756f743b2f75736572696e666f2e7068703f7569643d322671756f743b207461726765743d2671756f743b5f626c616e6b2671756f743b2667743b4572696b6f6d202f612667743b2061206120687265663d2671756f743b2f75736572696e666f2e7068703f7569643d313035362671756f743b207461726765743d2671756f743b5f626c616e6b2671756f743b2667743b526f646f6d266c743b2f612667743b2e204641512028c48c617374c3a9206f74c3a17a6b7929206a65207a616c6fc5be656ec3a9206e6120266c743b422667743b5661c5a1656a266c743b2f422667743b207370c3ba746e656a2076c3a47a6265206a652073707261766f76616ec3a920266c743b6120687265663d2671756f743b2f75736572696e666f2e7068703f7569643d313730302671756f743b207461726765743d5f626c616e6b2667743b4672616e6b6f6d266c743b2f612667743b2061207072656b6c6164617465c4be6d69206a617a796b6f762e205072656b6c61646174656c69612073c3ba20266c743b6120687265663d2671756f743b266c743b4120485245463d2671756f743b2f70686f72756d2f6c6973742e7068703f663d372671756f743b2667743b7472616e736c6174696f6e20666f72756d266c743b2f412667743b2e2f70656f706c652e7068702671756f743b207461726765743d2671756f743b5f626c616e6b2671756f743b2667743b7072656b6c6164617465c4be736b6f6d2066c3b37265266c743b2f612667743b2061206e61, 'Y', '2008-02-04 00:11:30'),
(704, 24, '', 'N', '2009-06-22 11:09:03'),
(705, 24, 0x4f74766f72656e69652c206b6465, 'N', '2004-08-17 15:50:17'),
(706, 24, '', 'N', '2009-06-22 11:09:03'),
(708, 24, 0x4f76706c7976c588756a65207665c4be6b6f73c5a520646f736b79207472696564753f, 'Y', '2004-08-17 15:56:43'),
(709, 24, 0xc3816e6f2e0d0a0d0a506172746965206e6120646f736b65203139783139206d616ac3ba206e616a76c3a4c48dc5a1c3ad20646f736168206e6120747269656479206120736cc3bac5be696120616b6f206d6572c3ad746b6f2076706c797675206e61207472696564752e2056706cc3bd76616a75203130302520266c743b686f6d65206661712e7068703f726561643d7426616d703b6361743d31303523456e7472793132332667743b726f7a6469656c207472696564266c743b2f686f6d652667743b2c206b65c48f20736120706fc48dc3ad7461206e6f76c3bd2072616e6b2e0d0a0d0a506172746965206e612076c5a1c3ad636820646f736bc3a16368206d616ac3ba206d656ec5a1c3ad20646f73616820616b6f206e6120646f736bc3a16368207665c4be6b6f7374692031397831392c206b65c48fc5be6520746f746f206a6520c5a561c5be69736b6f2e20446f736b61207665c4be6b6f737469203235783235206dc3a1206c656e2034372520646f736168206e612076c3bd736c65646f6b2e0d0a200d0a4476652070617274696520313378313320736120706fc48dc3ad74616ac3ba20616b6f206a65646e612031397831392e20507265736ec3a120686f646e6f7461206a6520343725206e61207061727469752e200d0a0d0a447665207061727469652039783920736120706fc48dc3ad74616ac3ba20616b6f206a65646e612031337831332e20507265736ec3a120686f646e6f7461206a65203232252e0d0a0d0a567a6f7265632070657263656e746120646f7361687520736120706fc48dc3ad74613a20266c743b74742667743b28203139202d20287665c4be6b6f73c5a52d3139295e322029202f2031395e32266c743b2f74742667743b, 'Y', '2008-08-27 15:33:03'),
(710, 24, 0x4b6465207361206dc3b4c5be656d206e6175c48d69c5a520687261c5a520476f3f, 'Y', '2004-08-17 15:56:43');
INSERT INTO `Translations` (`Original_ID`, `Language_ID`, `Text`, `Translated`, `Updated`) VALUES
(644, 24, 0xc3816e6f2c206dc3b4c5be65c5a120706f75c5be69c5a52048544d4c20766f2073766f6a696368206f736f626ec3bd636820c3ba64616a6f63682c207620737072c3a176616368206120766f2066c3b3726163682e20416b20766c6fc5bec3adc5a1206bc4bec3bac48d6f76c3a920736c6f76c3a1207a2048544d4c2c206d75736961206279c5a52076207a6d79736c652073796e74616b7469636bc3bd63682070726176696469656c2048544d4c2e2056c3a4c48dc5a1696e6f7520746f207a6e616d656ec3a120766c6fc5be656e696520616a20756b6f6ec48d6f7661636965686f206bc4bec3bac48d6f76c3a9686f20736c6f7661206e6120737072c3a1766e65206d696573746f2e20506f766f6c656e65206bc4bec3bac48d6f76c3a920736c6f76c3a12048544d4c206a617a796b612073c3ba3a0d0a266c743b756c2667743b0d0a266c743b6c692667743b7a6f7a6e616d79200d0a266c743b6c692667743b266c743b622667743b7475c48d6ec3bd2072657a266c743b2f622667743b0d0a266c743b6c692667743b266c743b692667743bc5a1696b6dc3bd2072657a266c743b2f692667743b0d0a266c743b6c692667743b266c743b752667743b706f64c48d6961726b6e75746965266c743b2f752667743b0d0a266c743b6c692667743b266c743b666f6e7420636f6c6f723d7265642667743b666f6e74266c743b2f666f6e742667743b0d0a266c743b6c692667743b7ac3a174766f726b793a2026616d703b6c743b2026616d703b67743b0d0a266c743b6c692667743b266c743b6120687265663d2671756f743b687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742671756f743b2667743b6c696e6b79266c743b2f612667743b0d0a266c743b6c692667743b6a65646e6f64756368c3a9206c696e6b793a20266c743b6120687265663d2671756f743b687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742671756f743b2667743b687474703a2f2f7777772e647261676f6e676f7365727665722e6e6574266c743b2f612667743b0d0a266c743b2f756c2667743b0d0a0d0a4bc3b3647920756d6fc5bec588756ac3ba63652c206162792074656e746f207a6f6e616d2076797a6572616c2074616b746f3a0d0a26616d703b6c743b756c26616d703b67743b0d0a26616d703b6c743b6c6926616d703b67743b7a6f7a6e616d790d0a26616d703b6c743b6c6926616d703b67743b26616d703b6c743b6226616d703b67743b7475c48d6ec3bd2072657a26616d703b6c743b2f6226616d703b67743b0d0a26616d703b6c743b6c6926616d703b67743b26616d703b6c743b6926616d703b67743bc5a1696b6dc3bd2072657a26616d703b6c743b2f6926616d703b67743b0d0a26616d703b6c743b6c6926616d703b67743b26616d703b6c743b7526616d703b67743b706f64c48d6961726b6e7574696526616d703b6c743b2f7526616d703b67743b0d0a26616d703b6c743b6c6926616d703b67743b26616d703b6c743b666f6e7420636f6c6f723d72656426616d703b67743b666f6e7426616d703b6c743b2f666f6e7426616d703b67743b0d0a26616d703b6c743b6c6926616d703b67743b7ac3a174766f726b793a2026616d703b616d703b6c743b2026616d703b616d703b67743b0d0a26616d703b6c743b6c6926616d703b67743b26616d703b6c743b6120687265663d26616d703b71756f743b687474703a2f2f7777772e647261676f6e676f7365727665722e6e657426616d703b71756f743b26616d703b67743b6c696e6b7926616d703b6c743b2f6126616d703b67743b0d0a26616d703b6c743b6c6926616d703b67743b6a65646e6f64756368c3a9206c696e6b793a2026616d703b6c743b687474703a2f2f7777772e647261676f6e676f7365727665722e6e657426616d703b67743b0d0a26616d703b6c743b2f756c26616d703b67743b, 'N', '2008-02-04 00:11:30'),
(655, 24, '', 'N', '2009-06-22 11:09:03'),
(656, 24, 0x53747265646f76c3bd20626f642068726163656a20646f736b792e20426f64203130783130206e6120646f736b652031397831392e2054656e67656e206a6520706f206a61706f6e736b792022706fc48d6961746f6b206e6562696573222e, 'N', '2004-08-17 16:17:29'),
(657, 24, '', 'Y', '2009-06-22 11:09:03'),
(658, 24, 0x5265c3a16c6e6120616c65626f207669727475c3a16c6e652068726163696120646f736b61206e6120476f2e, 'Y', '2004-08-17 16:17:29'),
(661, 24, 0xc48c6f207a6e616d656ec3a12068656e64696b65703f, 'Y', '2004-08-17 17:04:51'),
(971, 24, 0x416b652074c3a96d6f76c3a9206b6f6e74c3a1206578697374756ac3ba3f, 'N', '2004-08-17 17:08:02'),
(972, 24, 0x4dc3a16d652074c3a96d6f76c3a9206b6f6e74c3a1207072652074726965647920266c743b6120687265663d2671756f743b2f75736572696e666f2e7068703f7569643d343337302671756f743b207461726765743d2671756f743b5f626c616e6b2671756f743b2667743b316b266c743b2f612667743b2c20266c743b6120687265663d2671756f743b2f75736572696e666f2e7068703f7569643d343637312671756f743b207461726765743d2671756f743b5f626c616e6b2671756f743b2667743b346b266c743b2f612667743b2c20266c743b6120687265663d2671756f743b2f75736572696e666f2e7068703f7569643d343134382671756f743b207461726765743d2671756f743b5f626c616e6b2671756f743b2667743b376b266c743b2f612667743b2c20266c743b6120687265663d2671756f743b2f75736572696e666f2e7068703f7569643d343336322671756f743b207461726765743d2671756f743b5f626c616e6b2671756f743b2667743b31306b266c743b2f612667743b2c20266c743b6120687265663d2671756f743b2f75736572696e666f2e7068703f7569643d343238332671756f743b207461726765743d2671756f743b5f626c616e6b2671756f743b2667743b31316b266c743b2f612667743b2c20266c743b6120687265663d2671756f743b2f75736572696e666f2e7068703f7569643d343334302671756f743b207461726765743d2671756f743b5f626c616e6b2671756f743b2667743b31346b266c743b2f612667743b2c20266c743b6120687265663d2671756f743b2f75736572696e666f2e7068703f7569643d333836342671756f743b207461726765743d2671756f743b5f626c616e6b2671756f743b2667743b31366b266c743b2f612667743b2c20266c743b6120687265663d2671756f743b2f75736572696e666f2e7068703f7569643d333937342671756f743b207461726765743d2671756f743b5f626c616e6b2671756f743b2667743b31396b266c743b2f612667743b2c20266c743b6120687265663d2671756f743b2f75736572696e666f2e7068703f7569643d343135332671756f743b207461726765743d2671756f743b5f626c616e6b2671756f743b2667743b32326b266c743b2f612667743b2c206120266c743b6120687265663d2671756f743b2f75736572696e666f2e7068703f7569643d343532342671756f743b207461726765743d2671756f743b5f626c616e6b2671756f743b2667743b32366b266c743b2f612667743b2e204578697374756a6520616a2074696d6f76c3a9206b6f6e746f20266c743b6120687265663d2671756f743b2f75736572696e666f2e7068703f7569643d393238342671756f743b207461726765743d2671756f743b5f626c616e6b2671756f743b2667743b476f20746561636865722028476f2075c48d697465c4be29266c743b2f612667743b2e, 'N', '2008-02-04 00:11:30'),
(973, 24, 0x416b6f20736120707269686cc3a173696d206e61206d6f6a65206b6f6e746f3f, 'Y', '2006-07-18 14:51:30'),
(974, 24, 0x4dc3b4c5be65c5a120736920767974766f7269c5a520616c696173207a203c6120687265663d222f7374617475732e70687022207461726765743d225f626c616e6b223e2f7374617475732e7068703c2f613e2073203c753e2f6c6f67696e2e7068703f7573657269643d3c623e75c5bec3ad76617465c4be736bc3a92d69643c2f623e267061737377643d3c623e6865736c6f3c2f623e3c2f753e2e0d0a0d0a416c652070726f73c3ad6d20757665646f6d73692c20c5be6520756c6fc5be656e6965206865736c612076207465787465207a6e616d656ec3a12072697a696b6f20762062657a7065c48d6e6f7374692e2050726f73c3ad6d206e65756b6c6164616a20616c65626f206e656469737472696275756a2074656e746f20616c6961732020206e612054766f6a656a20646f6d6f76736b656a20737472c3a16e6b652c20616b6f207ac3a16c6fc5be6b75206e6120766572656a6e6f6d20706fc48dc3ad7461c48d692c206174c48f2e, 'Y', '2004-08-17 17:27:19'),
(975, 24, 0x416b6f20736120707269686cc3a173696d206e61206d6f6a65206b6f6e746f3f, 'Y', '2006-07-18 14:51:30'),
(662, 24, 0x416b207361206476616a61206872c3a1c48d69206cc3adc5a1696120762073696c65206872792c206dc3b4c5be75202861206d616c692062792920736120646f686f646ec3bac5a520c5be652069636820706172746961207a61c48d6e65207320c48f616cc5a1c3ad6d69202268656e64696b65706f76c3bd6d6922206b616d65c5886d692070726520736c6162c5a16965686f207a206e6963682e2048656e64696b65706f76c3a9206b616d656e652073612076c5be64792064c3a176616ac3ba20c48d6965726e656d7520612c20616b207361207a766f6c696120646f6272652c206b6f6d70656e7a756ac3ba20726f7a6469656c2076206865726ec3bd6368207363686f706e6f737469616368206872c3a1c48d6f762e20532068656e64696b65706f76c3bd6d69206b616d65c5886d6920736120687261207374c3a17661207a61756ac3ad6d6176656ac5a16f752061206b61c5be64c3bd207a206872c3a1c48d6f76206dc3a120726f766e616bc3ba20c5a1616e6375207679687261c5a52e0d0a0d0a4e6120676f62616e65203139783139206a652068656e64696b657020726f766ec3bd20726f7a6469656c7520762074726965646163682e20507265206f737461746ec3a9207665c4be6b6f73746920646f736b7920746f20447261676f6e2076686f646e65207a6fc5a16bc3a16c756a652e0d0a0d0a5472616469c48d6e652073612068656e64696b65706f76c3a9206b616d656e6520756b6c6164616ac3ba206e61203c4120485245463d226661712e7068703f726561643d74266361743d3323456e7472793839223e687669657a64793c2f413e20646f20767a6f7275207572c48d656ec3a9686f2069636820706fc48d746f6d2e204e6120447261676f6e65206a6520646f766f6c656ec3a920756c6fc5be69c5a52073692068656e64696b65706f76c3a9206b616d656e6520c4be75626f766f6c6e652e0d0a0d0a506f7a6e616d656e616a6d652c20c5be65207665c4be61206872c3a1c48d6f762075707265646e6f7374c588756a6520756c6fc5be656e69652068656e64696b65706f76c3bd6368206b616d65c5886f76206e6120687669657a64792e2054616bc5be652061207374652074656e2c206b746f20646f7374c3a176612068656e64696b65706f76c3a9206b616d656e652c206a6520736c75c5a16ec3a920646f686f646ec3bac5a52073612073c3ba7065726f6d2c20c48d6920706f75c5be69c5a5207472616469c48d6ec3a920616c65626f20766fc4be6ec3a920756d696573746e656e69652e, 'Y', '2004-08-17 18:06:27'),
(663, 24, 0x416bc3bd206a6520726f7a6469656c206d65647a69206b6f6e76656ec48d6ec3bd6d206120707265736ec3bd6d2068656e64696b65706f6d3f, 'Y', '2004-08-17 18:35:55'),
(664, 24, 0x3c693e6b6f6e76656ec48d6ec3bd2068656e64696b65703c2f693e20706f75c5bec3ad766120726f7a6469656c207472696564202861207665c4be6b6f73c5a520646f736b7929206e61207572c48d656e69652068656e64696b6570752e203c6120687265663d226661712e7068703f726561643d74266361743d3323456e74727939223e4b6f6d693c2f613e206a6520302e3520707265206e65726f766ec3a920706172746965206120362e352070726520726f766ec3a9207061727469652e0d0a0d0a3c693e507265736ec3bd2068656e64696b65703c2f693e20706f75c5bec3ad766120696e74657276616c7920707265206b6f6d6920282e2e2e2c20312e352c20322e302c20322e352c202e2e2e292c20616279207679726f766e616c20726f7a6469656c7920747269656420612069636820c5a1616e6365207679687261c5a520626f6c692035303a35302e, 'Y', '2004-08-17 18:35:55'),
(671, 24, 0x4dc3b4c5be656d207a61736c61c5a520c5a561687920652d6d61696c6f6d3f, 'Y', '2004-08-17 18:47:32'),
(672, 24, 0x4e69652c206e6965206a6520746f206d6fc5be6ec3a92e204d7573c3adc5a120736120707269686cc3a17369c5a5203c6120687265663d222f223e447261676f6e6f767520646f6d6f76736bc3ba20737472c3a16e6b753c2f613e206120706f736c61c5a520c5a561682e, 'Y', '2004-08-17 18:47:32'),
(673, 24, 0x4f7a6ec3a16d69206d6920447261676f6e2c206b65c48f20627564656d206e6120c5a56168753f, 'Y', '2004-08-17 18:47:32'),
(674, 24, 0xc3816e6f2c207a612070726564706f6b6c6164752c20c5be6520736920736920706f766f6c696c202255706f7a6f726e656e696520652d6d61696c6f6d2220766f2073766f6a6f6d2075c5bec3ad76617465c4be736b6f6d2070726f66696c652e, 'Y', '2004-08-17 18:47:32'),
(675, 24, 0x4dc3b4c5be656d207a61c48d61c5a520687275206e6168726174c3ad6d205347462073c3ba626f72753f, 'Y', '2004-08-17 18:47:32'),
(676, 24, 0x4e69652e20416c652074c3a1746f20c48d727461203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f70686f72756d2f726561642e7068703f663d3426693d3132363126743d31323631223e73612070726964c3a13c2f613e20646f20706cc3a16e75207072c3a163652e, 'N', '2004-08-17 18:47:32'),
(677, 24, 0x547269656479206120686f646e6f737469206e6120447261676f6e652e, 'Y', '2004-08-17 18:47:32'),
(678, 24, 0xc48c6f207a6e616d656ec3a1207374c4ba70656320732074726965646f752076207a6f7a6e616d652075c5bec3ad76617465c4be6f763f, 'Y', '2004-08-17 18:47:32'),
(679, 24, 0x507276c3a120c48d6173c5a52054766f6a656a20686f646e6f737469206a652073c3bac48d6173746ec3a120747269656461203c6120687265663d222f6661712e7068703f726561643d74266361743d3323456e7472793339223e64616e3c2f613e20616c65626f203c6120687265663d222f6661712e7068703f726561643d74266361743d3323456e7472793338223e6b79753c2f613e2e2044727568c3a120c48d6173c5a5202876207ac3a174766f726bc3a1636829206e617a6e61c48d756a6520616b6f2073696c6ec3bd2fc3a120616c65626f20736c6162c3bd2fc3a120736920762072c3ad6d63692074656a746f207472696564792e0d0a0d0a4e6170722e202231206b7975282b3430252922206a652073696c6ec3a120686f646e6f73c5a52031206b7975202874616b6d65722074616b2073696c6ec3a120616b6f20736c6162c3a120686f646e6f73c5a520312064616e292e, 'N', '2004-08-17 18:47:32'),
(680, 24, 0xc48c6f207a6e616d656ec3a1202b20616c65626f202d207a612074726965646f753f, 'Y', '2004-08-17 18:47:32'),
(681, 24, 0x447261676f6e20766ec3ba746f726e6520706f75c5bec3ad766173797374c3a96d2c206b646520726f7a6469656c206a65646e656a20476f20747269656479206a65202072657072657a656e746f76616ec3bd20726f7a6469656c752031303020626f646f762e204e617072c3ad6b6c61643a0d0a0d0a36206b797520282020302529203d203135303020626f646f760d0a36206b797520282d34382529203d203134353220626f646f760d0a37206b797520282b33302529203d203134333020626f646f760d0a37206b797520282020302529203d203134303020626f646f76, 'N', '2008-02-04 00:17:46'),
(684, 24, 0xc48c6f207a6e616d656ec3a1206d6f6472c3a1206f626c6173c5a52076206772616665207472696564793f, 'Y', '2004-08-17 19:01:12'),
(685, 24, 0x5564c3a176612c20616b6f20c48f616c656b6f206a652075c5bec3ad76617465c4be6f766120747269656461206b20447261676f6e6f76656a20646566696ec3ad6369692020686f646e6f7374692c207472696564792061206865726ec3bd6d207363686f706e6f737469616d2e0d0a0d0a4b65c48f206e6f76c3bd2075c5bec3ad76617465c4be20706f736b79746e65206a65686f2076737475706ec3ba207472696564752c20447261676f6e206e657669652c20c48d692074c3a1746f20686f646e6f746f207a6f64706f766564c3a120646566696ec3ad63696920447261676f6e612e204e656578697374756a65206a65646e6f746e6520706c61746ec3a120646566696ec3ad63696120476f2074726965642e20447261676f6e20736120736e61c5bec3ad20706f736b79746ec3bac5a520c48d6f206e616a73706fc4be61686c6976656ac5a16965206120706f726f766e617465c4be6ec3a920476f207472696564792e20416c6520c5a1c3ad726b61206d6f6472c3a9686f20706f7a616469612067726166752075c5bec3ad76617465c4be6f76656a20747269656479206e65706f7669652076696163206e65c5be20746f2c20616b6f20626cc3ad7a6b6f206a65206e6f76c3a12075c5bec3ad76617465c4be6f766120747269656461206b207a6175c5be6976616e656a20646566696ec3ad63696920476f207472696564206e6120447261676f6e652e, 'N', '2004-08-17 19:01:12'),
(686, 24, '', 'N', '2009-06-22 11:09:03'),
(687, 24, 0xc5a461682c206b746f72c3bd203c623e6e69653c2f623e206a65206c6f6bc3a16c6e65206f64706f7665c48f6f75206e612073c3ba7065726f7620706f736c65646ec3bd20c5a56168, 'N', '2004-08-17 19:04:18'),
(688, 24, 0xc48c6f206a652064766f6a6872613f, 'Y', '2004-08-17 19:04:18'),
(689, 24, 0x506f6d6f636f75203c693e64766f6a6872793c2f693e207a61c48d6e65c5a1203c693e6476653c2f693e206e6f76c3a9206872792070726f746920746f6d7520697374c3a96d752073c3ba7065726f76692e2056206a6564656e656a206872c3a1c5a12073206269656c796d6920612076206a65646e656a207320c48d6965726e796d692e204f6265206872792073c3ba2062657a203c6120687265663d226661712e7068703f726561643d74266361743d33353723456e7472793937223e68656e64696b6570753c2f613e2e, 'N', '2004-08-17 19:04:18'),
(999, 24, 0x5ac3a16c65c5bec3ad206e6120746f6d2c20c48d692076796872c3a16d206f20302e3520626f64612c2031303020626f646f762c20767a64616ec3ad6d20736120616c65626f2076797072c5a1616ec3ad6d20c48d6173753f, 'Y', '2004-08-17 19:06:21'),
(1000, 24, 0x56207a6d79736c65207472696564206e6120447261676f6e6520746f206a652076207375c48d61736e6f737469206a65646e6f2c2056c3bd687261206a65206c656e2076c3bd687261206120707265687261206a65206c656e207072656872612e, 'Y', '2004-08-17 19:06:21'),
(690, 24, '', 'N', '2009-06-22 11:09:03'),
(691, 24, 0xc39a6465726ec3bd20c5a561682c2068726f7a62612c206e6965c48d6f2c20c48d6f207679c5be6164756a65206f6b616dc5be6974c3ba206f64706f7665c48f2e205ac3ad736b61766120696e6963696174c3ad7675206120706f736b7974756a65207072c3a1766f2076c3bd626572752c206b646520687261c5a520c48f616c656a2e2053656e7465206a65206f70616b6f6d203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f6661712e7068703f726561643d74266361743d3323456e747279313133223e676f74653c2f613e2e20487261c48d20736f2073656e7465207369206dc3b4c5be65207679627261c5a520687261c5a5203c6120687265663d222f6661712e7068703f726561643d74266361743d3323456e747279313130223e74656e756b693c2f613e2c20616b20746f20706f7661c5be756a65207a61206c6570c5a16975206d6fc5be6e6f73c5a52e, 'N', '2004-08-17 19:12:57'),
(692, 24, '', 'N', '2009-06-22 11:09:03'),
(693, 24, 0x4f6272616e6ec3a1206872612c206f64706f7665c48f206e612068726f7a62752e20537472c3a1636120696e6963696174c3ad7675206120706f6e656368c3a176612073c3ba7065726f76692076c3bd6265722c206b646520687261c5a520c48f616c656a2e20476f7465206a65206ec3a170726f7469766b6f6d203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f6661712e7068703f726561643d74266361743d3323456e747279313132223e73656e74653c2f613e2e, 'N', '2004-08-17 19:12:57'),
(694, 24, 0xc48c6f2073c3ba20736c65646f76616ec3a9207061727469653f, 'Y', '2004-08-17 19:21:54'),
(695, 24, 0x54c3a1746f20c48d72746120646f766fc4be756a65207a6f7374617669c5a5207a6f7a6e616d207ac3a16c6fc5be69656b207061727469c3ad203c623e696ec3bd63683c2f623e206872c3a1c48d6f762e0d0a0d0a5061727469612073612070726964c3a12074616b2c20c5be6520736920767968c4be6164c3a1c5a120616b74c3ad766e75207061727469612061206b6c696b6e65c5a1206e61206c696e6b75202250726964616a20646f207a6f7a6e616d7520736c65646f76616ec3bd6368207061727469c3ad222e205072657a6572616e696520736c65646f76616ec3bd6368207061727469c3ad206d6fc5be6e6f2075736b75746fc48d6e69c5a5206b6c696b6e7574c3ad6d206e61206c696e6b7520225a6f6272617a20736c65646f76616ec3a92070617274696522206e6120737472c3a16e6b65203c6120687265663d222f7374617475732e706870223e7374617475733c2f613e2e0d0a0d0a4b65c48f20736120736c65646f76616ec3a12068726120736b6f6ec48dc3ad2c20447261676f6e20546920706fc5a16c6520737072c3a176752073206f7a6e616d6f6d206f2076c3bd736c65646e6f6d20736bc3b372652e, 'N', '2004-08-17 19:21:54'),
(697, 24, 0x4e65757472c3a16c6e7920707269657365c48d6ec3ad6b206e6120676f62616e652e20546f746f20226e69c48d696520c3ba7a656d696522207361206e6572c3a1746120616e69206a65646ec3a96d752073206872c3a1c48d6f762e, 'Y', '2004-08-17 19:21:54'),
(698, 24, 0x4c6962657274792028736c6f626f646129, 'Y', '2004-08-17 19:46:49'),
(699, 24, 0x507269657365c48d6ec3ad6b2073757365646ec3bd206b616d65c5887520616c65626f207265c5a5617a6375206b616d65c5886f762e, 'Y', '2004-08-17 19:21:54'),
(700, 24, '', 'N', '2009-06-22 11:09:03'),
(701, 24, 0x446961676f6ec3a16c6e7920c5a56168206e61206b6f6e63692073c3ba7065726f76686f206b616d65c5886120616c65626f207265c5a5617a6361206b616d65c5886f762e, 'N', '2004-08-17 19:21:54'),
(702, 24, '', 'N', '2009-06-22 11:09:03'),
(703, 24, 0xc5a461682c206b746f72c3bd207a616a6d6520706f6d6f636f752073696574652e, 'N', '2004-08-17 19:21:54'),
(707, 24, 0x5363686963686f206a65206a61706f6e736bc3bd207465726dc3ad6e20707265203c6120687265663d222f70686f72756d2f726561642e7068703f663d3326693d31393626743d313936223e7363686f64793c2f613e2e, 'N', '2004-08-17 19:21:54'),
(696, 24, '', 'Y', '2009-06-22 11:09:03'),
(711, 24, 0x506f7a7269207361206e61203c6120687265663d22687474703a2f2f706c6179676f2e746f2f696e7465726163746976652f696e6465782e68746d6c22207461726765743d6e65773e54686520496e7465726163746976652057617920546f20476f3c2f613e2061206e6120737472c3a16e6b752042726974736b656a2041736f6369c3a163696520476f20203c6120687265663d22687474703a2f2f7777772e62726974676f2e6f72672f696e74726f2f696e74726f2e68746d6c22207461726765743d6e65773e496e74726f64756374696f6e20746f207468652067616d65206f6620476f3c2f613e2e, 'Y', '2004-08-17 19:30:54'),
(712, 24, 0x416b6f2066756e67756a652073797374c3a96d207472696564206e6120447261676f6e20736572766572693f, 'N', '2005-04-06 16:30:43'),
(1012, 24, 0x4dc3b4c5be656d20736120737461c5a5207072656b6c6164617465c4be6f6d20447261676f6e613f, 'Y', '2004-08-17 19:32:56'),
(1013, 24, 0xc3816e6f2e2050726f73c3ad6d20706fc5a16c6920737072c3a17675206f2073766f6a6f6d207ac3a1756a6d6520646f203c4120485245463d222f70686f72756d2f6c6973742e7068703f663d3722205441524745543d5f626c616e6b3e7072656b6c6164617465c4be736bc3a9686f2066c3b372613c2f413e2e20537072c3a176636f7669612054692064616ac3ba207072c3a17661206e61207072656b6c6164616e69652074616b6d65722076c5be64792e, 'Y', '2004-08-17 19:32:56'),
(1016, 24, 0x4b746f72c3ba20736164612070726176696469656c20736120706f75c5be697661206e6120447261676f6e653f, 'Y', '2004-08-17 19:32:56'),
(1024, 24, 0x4576656e2067616d652028726f766ec3a12070617274696129, 'Y', '2004-08-17 19:46:49'),
(1025, 24, 0x5061727469612062657a203c6120687265663d226661712e7068703f726561643d74266361743d33353723456e7472793937223e68656e64696b6570753c2f613e2e203c6120687265663d226661712e7068703f726561643d74266361743d3323456e74727939223e4b6f6d693c2f613e206e6173746176756a6520706f7ac3bd76616ac3ba6369206872c3a1c48d2e, 'Y', '2004-08-17 19:34:07'),
(756, 24, 0x416667616e697374616e, 'Y', '2004-08-17 19:35:20'),
(757, 24, 0x416c62c3a16e736b6f, 'Y', '2004-08-17 19:35:20'),
(1021, 24, 0x5265616c2d74696d6520287620736b75746fc48d6e6f6d20c48d61736529, 'Y', '2004-08-17 19:47:41'),
(1022, 24, 0x5061727469612076207265c3a16c6e6f6d20c48d617365206a652073796e6368726f6e6ec3bd207370c3b4736f62206872792e204f62616a61206872c3a1c48d69206d75736961206279c5a5207072c3ad746f6d6ec3ad20616c65626f20687261c5a5207620726f766e616b6f6d20c48d6173652e2043656cc3a120706172746961206a6520756b6f6ec48d656ec3a120762072c3a16d6369206a65646ec3a9686f20736564656e69612e205072c3ad6b6c616479206872616e696120476f2076207265c3a16c6e6f6d20c48d6173652073c3ba20706172746965206e6120736b75746fc48d6e656a20646f736b6520616c65626f2070726f73747265646ec3ad6374766f6d2072c3b47a6e796368207365727665726f762e20506f7a72692020746965c5be203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f6661712e7068703f726561643d74266361743d3323456e747279313532223e4b726f6b6f76c3bd3c2f613e2e, 'Y', '2004-08-17 19:39:21'),
(758, 24, 0x416cc5bec3ad72736b6f, 'Y', '2004-08-17 19:39:21'),
(759, 24, 0x416e646f7261, 'Y', '2004-08-17 19:39:21'),
(760, 24, 0x416e676f6c61, 'Y', '2004-08-17 19:39:21'),
(761, 24, 0x416e7461726b74c3ad6461, 'Y', '2004-08-17 19:39:21'),
(1019, 24, 0x5475726e2d626173656420286b726f6b6f76c3bd29, 'Y', '2004-08-17 19:46:49'),
(1020, 24, 0x4b726f6b6f76c3a9206872616e6965206a65206173796e636872c3b36e6e79207370c3b4736f62206872616e6961207061727469c3ad2e204f62616a61206872c3a1c48d69206e656d75736961206279c5a5207072c3ad746f6d6ec3ad20616c65626f20687261c5a52073c3bac48d61736e652e204e616d696573746f20746f686f2c206b61c5be64c3bd206872c3a1c48d20c5a56168c3a1206b65c48f206dc3a1206e6120746f20c48d61732e205072c3ad6b6c616479206b726f6b6f76c3bd6368206869657273c3ba206b6f7265c5a1706f6e64656ec48d6ec3a9207061727469652c20652d6d61696c6f76c3a92070617274696520616c6520706172746965207475206e6120447261676f6e652e20506f7a726920746965c5be203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f6661712e7068703f726561643d74266361743d3323456e747279313533223e5620736b75746fc48d6e6f6d20c48d6173653c2f613e2e, 'Y', '2004-08-17 19:43:10'),
(763, 24, 0x417267656e74c3ad6e61, 'Y', '2004-08-17 19:43:10'),
(764, 24, 0x41726dc3a96e736b6f, 'Y', '2004-08-17 19:43:10'),
(765, 24, 0x4175737472c3a16c6961, 'Y', '2004-08-17 19:43:10'),
(766, 24, 0x52616bc3ba736b6f, 'Y', '2004-08-17 19:43:10'),
(767, 24, 0x417a657262616a64c5be616e, 'Y', '2004-08-17 19:43:10'),
(1004, 24, 0x416b6f20736120737072c3a17661c5a520762072c3a16d63692066c3b372613f, 'N', '2005-08-16 19:21:41'),
(1006, 24, 0x4a65207a64726f6a6f76c3bd206bc3b36420447261676f6e6120646f737475706ec3bd3f, 'Y', '2004-08-17 19:50:55'),
(1007, 24, 0x5a64726f6a6f76c3bd206bc3b364206a6520646f737475706e792070726f73747265646ec3ad6374766f6d20435653207a61207072c3a1766e79636820706f646d69656e6f6b207620474e55205075626c6963204c6963656e6365202847504c29206e61203c4120485245463d22687474703a2f2f736f75726365666f7267652e6e65742f70726f6a656374732f647261676f6e676f7365727665722f22205441524745543d5f626c616e6b3e447261676f6e277320646576656c6f706d656e74207061676520617420536f75726365466f7267653c2f413e2e, 'N', '2004-08-17 19:50:55'),
(768, 24, 0x426168616d79, 'Y', '2004-08-17 19:50:55'),
(769, 24, 0x4261687261696e, 'Y', '2004-08-17 19:50:55'),
(770, 24, 0x4261726261646f73, 'Y', '2004-08-17 19:50:55'),
(771, 24, 0x42616e676c6164c3a9c5a1, 'Y', '2004-08-17 19:50:55'),
(772, 24, 0x4269656c6f7275736b6f, 'Y', '2004-08-17 19:50:55'),
(773, 24, 0x42656c6769636b6f, 'Y', '2004-08-17 19:50:55'),
(1010, 24, 0x4b746f72c3a920706172746965206f76706c79766e6961206d6f6a75207472696564753f, 'Y', '2004-08-17 19:52:55'),
(1011, 24, 0x53797374c3a96d207472696564206e6120647261676f6e6520706fc48dc3ad7461206c656e2073207061727469616d690d0a0d0a2a206b6465206f62616a61206872c3a1c48d69206d616ac3ba20686f646e6f73c5a50d0a2a206b6465206f62616a61206872c3a1c48d692073c3ba686c6173696c692c20c5be6520696465206f20686f646e6f74656ec3ba2068727520610d0a2a2076206b746f72656a206269656c79206872c3a1c48d207a61736c616c206173706fc588203520c5a561686f7620286b6c6164656e69652068616e64696b657076c3bd6368206b616d65c5886f7620736120646f20746f686f206e6572c3a1746129, 'Y', '2008-02-04 00:17:46'),
(748, 24, 0x4dc3b4c5be656d207a61c48d61c5a5206f7267616e697a6f7661c5a5207475726e616a3f, 'Y', '2004-08-17 19:58:19'),
(749, 24, 0x4f7267616e697ac3a1636961207475726e616a61206a652076c3ad74616ec3a12e204e61206f7a6ec3a16d656e6965207475726e616a6120706f75c5be692028616c65626f20706f7a7269292070726f73c3ad6d20203c6120687265663d222f70686f72756d2f6c6973742e7068703f663d34223e4469736b75736ec3a92066c3b372756d206e6120447261676f6e653c2f613e2e20447261676f6e20546920706f6dc3b4c5be6520732075766564656ec3ad6d2070726964616ec3ad6d2072656c6576616e746ec3bd6368206c696e69656b20646f204641512e, 'Y', '2004-08-17 19:58:19'),
(1001, 24, 0x416b6f20447261676f6e20706fc48dc3ad746120c48d61733f, 'Y', '2004-08-17 20:00:06'),
(1002, 24, 0x4e616a6d656ec5a16961203c693e7a6f6272617a6f76616ec3a13c2f693e20c48d61736f76c3a1206a65646e6f746b61206a65206a65646e6120686f64696e612e203c693e566ec3ba746f726e653c2f693e206265c5be6961636520686f64696e79206b2070617274696920736120616b7475616c697a756ac3ba206b61c5be64c3bd63682035206d696ec3ba742e, 'Y', '2004-08-17 20:00:06'),
(1018, 4, 0x536c6f77616b69736368, 'Y', '2004-08-18 00:25:03'),
(1023, 4, 0x52756de46e69736368, 'Y', '2004-08-18 00:25:03'),
(1024, 4, 0x476c65696368617566, 'Y', '2007-12-09 03:18:29'),
(1025, 4, 0x45696e6520506172746965206f686e65203c686f6d65206661712e7068703f726561643d74266361743d33353723456e74727939373e566f72676162653c2f686f6d653e2e20446173203c686f6d65206661712e7068703f726561643d74266361743d3323456e747279393e4b6f6d693c2f686f6d653e207769726420766f6d2065696e6c6164656e64656e20537069656c65722067657365747a742e, 'Y', '2009-07-04 10:22:57'),
(396, 30, 0xcea3cf84ceb5ceafcebbceb520cebcceaecebdcf85cebcceb120cf83cf84cebf20cf87cf81ceaecf83cf84ceb720ceb1cf85cf84cf8c, 'Y', '2005-10-28 16:34:09'),
(2244, 7, 0x50726f686fef206261727679, 'Y', '2016-07-20 16:22:45'),
(1024, 5, 0x4a657520e020e967616c6974e9, 'Y', '2004-08-18 00:27:08'),
(1025, 5, 0x556e65207061727469652073616e73203c6120687265663d226661712e7068703f726561643d7426616d703b6361743d33353723456e7472793937223e68616e64696361703c2f613e2e204c612076616c657572206475203c6120687265663d226661712e7068703f726561643d7426616d703b6361743d3323456e74727939223e4b6f6d693c2f613e206573742063686f6973696520706172206c65206a6f7565757220696e766974616e742e, 'Y', '2005-09-20 18:05:29'),
(713, 24, 0x56206b61c5be64656a20706172746969207572c48d756ac3ba20747269656479206872c3a1c48d6f76206120706f646d69656e6b7920706172746965203c623e707261766465706f646f626ec3a9686f2076c3adc5a5617a613c2f623e2e204872c3a1c48d69207320726f766e616bc3bd6d69207472696564616d69206d616ac3ba20726f766e616bc3ba20c5a1616e6375207679687261c5a52e20416c6520736c6162c3bd206872c3a1c48d2076796872c3a120707261766465706f646f626e65206c656e206dc3a16c6f206e6568656e64696b65706f76c3bd636820686965722070726f74692073696c6ec3a96d752073c3ba7065726f76692e0d0a0d0a53797374c3a96d20686f646e6f74656e6961206dc3a12064766520c3ba6c6f68792e20506fc48dc3ad7461207a61c48d6961746fc48d6ec3a920706172616d657472652070726520687279207320203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f6661712e7068703f726561643d74266361743d33353723456e7472793938223e4b6f6e76656ec48d6ec3bd6d202068656e64696b65706f6d3c2f613e2061203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f6661712e7068703f726561643d74266361743d33353723456e7472793938223e536b75746fc48d6ec3bd6d2068656e64696b65706f6d3c2f613e2e20506f20756b6f6ec48d656ec3ad207061727469652073706fc48dc3ad7461207a6d656e79207620686f646e6f74656ec3ad206f626f63682073c3ba7065726f762e0d0a0d0a4e61203c693e7a61c48d6961746b75207061727469653c2f693e207361207572c48d6961203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f6661712e7068703f726561643d74266361743d33353723456e7472793937223e68656e64696b65703c2f613e0d0a61203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f6661712e7068703f726561643d74266361743d3323456e74727939223e6b6f6d693c2f613e0d0a706f64c4be61206d6f6d656e74c3a16c6e796368207472696564206872c3a1c48d6f762e0d0a4e6120693e6b6f6e6369207061727469653c2f693e2073797374c3a96d2073706fc48dc3ad7461207a6d656e792076207472696564616368206e61207ac3a16b6c6164652068656e64696b6570752061206b6f6d6920706f75c5be6974c3bd636820762070617274696920612074616b6973746f20706f64c4be61207472696564206872c3a1c48d6f76206e61206b6f6e6369207061727469652e200d0a0d0a416b206a652076c3bd736c65646f6b2070617274696520706f646f626ec3bd206fc48d616bc3a176616ec3a96d752076c3bd736c65646b752073797374c3a96d752c207a6d656e612076207472696564652062756465206d696e696dc3a16c6e612e2056206f7061c48d6e6f6d207072c3ad706164652062756465207a6d656e61207665c4be6bc3a12e, 'N', '2006-07-18 14:51:30'),
(776, 24, 0x42687574c3a16e, 'Y', '2004-08-18 10:51:39'),
(777, 24, 0x426f6cc3ad766961, 'Y', '2004-08-18 10:51:39'),
(779, 24, 0x426f747377616e61, 'Y', '2004-08-18 10:51:39'),
(780, 24, 0x4272617ac3ad6c6961, 'Y', '2004-08-18 10:51:39'),
(782, 24, 0x42756c686172736b6f, 'Y', '2004-08-18 10:51:39'),
(783, 24, '', 'Y', '2009-06-22 11:09:03'),
(784, 24, 0x427572756e6469, 'Y', '2004-08-18 15:16:25'),
(785, 24, 0x4b616d626f64c5be61, 'Y', '2004-08-18 10:51:39'),
(786, 24, 0x4b616d6572c3ba6e, 'Y', '2004-08-18 10:51:39'),
(787, 24, 0x4b616e616461, 'Y', '2004-08-18 10:51:39'),
(789, 24, 0x53747265646f61667269636bc3a12052657075626c696b61, 'Y', '2004-08-18 10:51:39'),
(751, 24, 0x416b6f206dc3b4c5be656d206f64737472c3a16e69c5a5207a616a6174c3a9206b616d656e65206e61206b6f6e6369207061727469653f, 'Y', '2004-08-18 10:53:41'),
(790, 24, 0xc48c6164, 'Y', '2004-08-18 10:53:41'),
(791, 24, 0xc48c696c65, 'Y', '2004-08-18 10:53:41'),
(792, 24, 0xc48cc3ad6e61, 'Y', '2004-08-18 10:53:41'),
(793, 24, 0x4b6f6c756d626961, 'Y', '2004-08-18 10:53:41'),
(797, 24, 0x4b6f73746172696b61, 'Y', '2004-08-18 10:53:41'),
(798, 24, 0x506f627265c5be696520536c6f6e6f76696e79, 'Y', '2004-08-18 10:53:41'),
(799, 24, 0x43686f7276c3a174736b6f, 'Y', '2004-08-18 10:53:41'),
(800, 24, 0x4b756261, 'Y', '2004-08-18 10:53:41'),
(801, 24, 0x437970727573, 'Y', '2004-08-18 10:53:41'),
(802, 24, 0xc48c65736b6f, 'Y', '2004-08-18 15:16:25'),
(752, 24, 0x506f746f6d20616b6f206f62616a61206872c3a1c48d69206872616ac3ba20706173732c207a616a6174c3a9206b616d656e65207472656261206f64737472c3a16e69c5a5206d616e75c3a16c6e652e204b6c696b6e7574c3ad6d206e61206b616d65c5882073612070726570c3ad6e61206a65686f2073746176207a206dc595747665686f206e6120c5be6976c3bd2e20c48d6965726e652061206269656c6520c5a174766f72c48d656b792076697a75616c697a756ac3ba2c206b746f206a6520766c6173746ec3ad6b6f6d207465726974c3b37269612e0d0a0d0a4f62616a61206872c3a1c48d69207361206d7573696120646f686f646ec3bac5a52c206b746f72c3a9206b616d656e652073c3ba206dc5957476652061206b746f20766c6173746ec3ad20746f2d6b746f72c3a920c3ba7a656d69652e204e612073c3ba686c6173206b6c696b6e697465206c696e6b752022557a6176726965c5a52220706f6420646f736b6f752e0d0a0d0a416b206e69656b746f72c3bd207a206872c3a1c48d6f76206e6573c3ba686c6173c3ad2c206dc3b4c5be6520706f6b7261c48d6f7661c5a520706f6d6f636f75206c696e6b79202022446f6b6f6ec48d69c5a5222c20616279207361206e656a61736ec3a12073697475c3a163696120726f7a686f646c6120706f6c6fc5be656ec3ad6d206e69656b6fc4be6bc3bd6368206b616d65c5886f762e20416c7465726e6174c3ad766f75206a65206469736b7573696120706f6d6f636f7520737072c3a1767920706f736c616e656a2073c3ba7065726f766920616c65626f20646f203c6120687265663d2270686f72756d2f6c6973742e7068703f663d35223e4469736b75736ec3a9686f2066c3b37261206f20476f3c2f613e2e, 'Y', '2004-08-18 12:41:07'),
(753, 24, 0xc48c6f207a6e616d656e616ac3ba20c48d657276656ec3a920c5a174766f72c48d656b79206e61206b6f6e6369207061727469653f, 'N', '2004-08-18 12:41:07'),
(754, 24, 0xc48c657276656ec3a920c5a174766f72c48d656b79206f7a6e61c48d756ac3ba2c20c5be6520447261676f6e206e656dc3b4c5be6520726f7a686f646ec3bac5a52c20c48d6920707269657365c48d6ec3ad6b2070617472c3ad206269656c656d7520616c65626f20c48d6965726e656d752e204d6fc5be6ec3a92064c3b4766f64792073c3ba3a0d0a266c743b756c2667743b0d0a266c743b6c692667743b20566ec3ba74726920c3ba7a656d69612073c3ba207374c3a16c65206375647a6965206b616d656e652c206b746f72c3a92065c5a17465206e65626f6c69206f7a6e61c48d656ec3a920616b6f207a616a6174c3a92e2050726f73696d2c206b6c696b6e697465206e6120746965746f206b616d656e652061207a6d65c5887465206963682073746176206e61206dc5957476652e266c743b2f6c692667743b0d0a0d0a266c743b6c692667743b204872616e69636120c3ba7a656d6961206269656c65686f20616c65626f20c48d6965726e65686f206e6965206a6520757a6176726574c3a12e2050726520c48d6c6f76656b61206a6520746f206a61736ec3a92c20616c652070726520447261676f6e61206a6520c5a561c5be6bc3a920726f7a686f646ec3bac5a52c206b746f206a6520766c6173746ec3ad6b6f6d20c3ba7a656d69612e2050726f73c3ad6d206b6c696b6e697465206e61206c696e6b75202671756f743b446f6b6f6ec48d69c5a52671756f743b20706f6420646f736b6f752061207a616872616a746520c5a561687520757a617476c3a172616ac3ba6365206872616e6963752e20266c743b2f6c692667743b0d0a266c743b6c692667743b496465206f20266c743b6120687265663d2671756f743b6661712e7068703f726561643d7426616d703b6361743d3323456e7472793130312671756f743b2667743b73656b69266c743b2f612667743b2e2050726f73c3ad6d206b6c696b6e697465206e6120c48d657276656ec3a920c5a174766f72c48d656b792061207a6d65c588746520696368206e6120266c743b6120687265663d2671756f743b6661712e7068703f726561643d7426616d703b6361743d3323456e7472793131352671756f743b2667743b64616d65266c743b2f612667743b2e20447261676f6e20746f2076697a75616c697a756a65207a656c656ec3bd6d6920c5a174766f72c48d656b616d692e2054c3a1746f20c48d72746120756d6fc5bec588756a6520726f7a686f646ec3bac5a5206e656a61736ec3a92073656b69206e6120737072c3a1766e792076c3bd736c65646f6b207061727469652e20506f64726f626e6f7374692073c3ba207679737665746c656ec3a9207620266c743b6120687265663d2671756f743b70686f72756d2f726561642e7068703f663d3226616d703b693d38343326616d703b743d3834332671756f743b2667743b746f6d746f20766cc3a16b6e65266c743b2f612667743b2e20266c743b2f6c692667743b0d0a266c743b2f756c2667743b, 'N', '2008-02-04 00:11:30'),
(803, 24, 0x44c3a16e736b6f, 'Y', '2004-08-18 12:41:07'),
(805, 24, 0x446f6d696e696b61, 'Y', '2004-08-18 12:41:07'),
(806, 24, 0x446f6d696e696bc3a16e736b612052657075626c696b61, 'Y', '2004-08-18 12:41:07'),
(808, 24, 0x456b76c3a1646f72, 'Y', '2004-08-18 12:41:07'),
(809, 24, 0x4567797074, 'Y', '2004-08-18 12:41:07'),
(810, 24, 0x53616c76c3a1646f72, 'Y', '2004-08-18 12:41:07'),
(811, 24, 0x526f766ec3ad6b6f76c3a1204775696e6561, 'Y', '2004-08-18 12:41:07'),
(812, 24, 0x45726974726561, 'Y', '2004-08-18 12:41:07'),
(813, 24, 0x457374c3b36e736b6f, 'Y', '2004-08-18 12:41:07'),
(963, 24, 0xc48c6f207a6e616d656ec3a120c48d657276656ec3a920706f7a61646965207620c48d616bc3a1726e693f, 'Y', '2004-08-18 12:48:46'),
(964, 24, 0x426c65646fc48d657276656ec3a920706f7a616469652076207374c4ba7063692022526f7a73616820747269656422207a6e616d656ec3a12c20c5be652054766f6a612073c3bac48d61736ec3a120747269656461206e6570617472c3ad20646f20706fc5be61646f76616ec3a9686f20696e74657276616c752e2054616bc3ba746f20706172746975206e656dc3b4c5be65c5a120726f7a6f687261c5a52e, 'N', '2004-08-18 12:48:46'),
(967, 24, 0x416b6f207361206dc3b4c5be656d207072696461c5a520646f20766572656a6ec3a9686f2074c3ad6d6f76c3a9686f206b6f6e74613f, 'Y', '2004-08-18 12:48:46'),
(968, 24, 0x507265c48dc3ad74616a2073692070726f73c3ad6d2075c5bec3ad76617465c4be736bc3bd2070726f66696c20746f686f206b6f6e746120706fc5a16c6920696d20737072c3a176752e204f626472c5bec3adc5a1206865736c6f0d0a26616d703b6c743b756c26616d703b67743b0d0a26616d703b6c743b6c6926616d703b67743b20616b2054766f6a612073c3bac48d61736ec3a120747269656461206a6520626cc3ad7a6b6f2074726965647920766572656a6ec3a9686f206b6f6e74612c0d0a26616d703b6c743b6c6926616d703b67743b20616b2073692075c5be20756b6f6ec48d696c206e69656b6fc4be6b6f20686f646e6f74656ec3bd6368207061727469c3ad0d0a26616d703b6c743b6c6926616d703b67743b20616b20616b636570756a65c5a12061207265c5a170656b74756a65c5a120696368206574696b6574752028616b6f206a652075766564656ec3a92076206963682075c5bec3ad76617465c4be736b6f6d2070726f66696c65290d0a26616d703b6c743b6c6926616d703b67743b20616b2073c4bec3ba6269c5a12c20c5be65206b6f6e746f206e657a6e6575c5be696a65c5a12e0d0a26616d703b6c743b2f756c26616d703b67743b, 'Y', '2008-08-27 15:33:03'),
(814, 24, 0x457469c3b3706961, 'Y', '2004-08-18 12:48:46'),
(815, 24, 0x466964c5be69, 'Y', '2004-08-18 12:48:46'),
(816, 24, 0x46c3ad6e736b6f, 'Y', '2004-08-18 12:48:46'),
(817, 24, 0x4672616e63c3ba7a736b6f, 'Y', '2004-08-18 12:48:46'),
(818, 24, 0x4761626f6e, 'Y', '2004-08-18 12:48:46'),
(820, 24, 0x4772757ac3ad6e736b6f, 'Y', '2004-08-18 12:48:46'),
(821, 24, 0x53706f6c6b6f76c3a12052657075626c696b61204e656d65636b6f, 'Y', '2004-08-18 12:48:46'),
(822, 24, 0x4768616e61, 'Y', '2004-08-18 12:48:46'),
(823, 24, 0x4772c3a9636b6f, 'Y', '2004-08-18 12:48:46'),
(824, 24, 0x4772656e616461, 'Y', '2004-08-18 12:48:46'),
(825, 24, 0x47756174656d616c61, 'Y', '2004-08-18 12:48:46'),
(826, 24, 0x4775696e6561, 'Y', '2004-08-18 12:48:46'),
(979, 24, 0x416b6f2066756e67756a65206b6f6d756e696bc3a163696120766f20766ec3ba74726920766572656a6ec3ad686f2074c3ad6d753f, 'Y', '2004-08-18 12:55:40'),
(980, 24, 0x56c3a4c48dc5a1696e6120766572656a6ec3bd6368206b6f6e74207a61766965646c612070726965c48d696e6f6b20737072c3a1762022726563656e742064697363757373696f6e2220286e6564c3a1766e61206469736b75736961292c206b746f72c3a1207361206f626a6176756a65206e612069636820737472c3a16e6b65206f2073746174652e, 'Y', '2004-08-18 12:55:40'),
(981, 24, 0xc48c6f2073c3ba20737072c3a1767920447261676f6e613f, 'N', '2004-08-18 12:55:40'),
(828, 24, 0x47756179616e61, 'Y', '2004-08-18 15:16:25'),
(829, 24, 0x4861697469, 'Y', '2004-08-18 12:55:40'),
(830, 24, 0x486f6e6475726173, 'Y', '2004-08-18 12:55:40'),
(831, 24, 0x486f6e6b6f6e67, 'Y', '2004-08-18 12:55:40'),
(832, 24, 0x4d61c48f6172736b6f, 'Y', '2004-08-18 12:55:40'),
(833, 24, 0x49736c616e64, 'Y', '2004-08-18 12:55:40'),
(834, 24, 0x496e646961, 'Y', '2004-08-18 12:55:40'),
(835, 24, 0x496e646f6ec3a97a6961, 'Y', '2004-08-18 12:55:40'),
(836, 24, 0x4972c3a16e, 'Y', '2004-08-18 12:55:40'),
(837, 24, 0x4972616b, 'Y', '2004-08-18 12:55:40'),
(838, 24, 0xc38d72736b6f, 'Y', '2004-08-18 12:55:40'),
(839, 24, 0x497a7261656c, 'Y', '2004-08-18 12:55:40'),
(840, 24, 0x54616c69616e736b6f, 'Y', '2004-08-18 12:55:40'),
(841, 24, 0x4a616d616a6b61, 'Y', '2004-08-18 12:55:40'),
(842, 24, 0x4a61706f6e736b6f, 'Y', '2004-08-18 12:55:40'),
(976, 24, 0x507269686cc3a1732073612063657a203c6120687265663d222f22207461726765743d225f626c616e6b223e486c61766ec3ba20737472c3a16e6b7520447261676f6e613c2f613e20766c6fc5be656ec3ad6d2055c5bec3ad76617465c4be736bc3a9686f2049442061206f736f626ec3a9686f206865736c612e20436f6f6b696520736120756c6fc5bec3ad206e612054766f6a206c6f6bc3a16c6e7920706fc48dc3ad7461c48d2e20556d6fc5be6ec3ad205469207a6f737461c5a5207072c3ad686c6173656ec3bd20706fc48d617320333020646ec3ad2e, 'Y', '2006-07-18 14:51:30'),
(982, 24, 0x4872c3a1c48d69206dc3b4c5be75206e61767ac3a16a6f6d206b6f6d756e696b6f7661c5a520766961636572c3bd6d69207370c3b4736f626d692c206e6170722e200d0a3c554c3e0d0a3c6c693e706f736c616ec3ad6d2073c3ba6b726f6d6e656a20737072c3a1767920696ec3a16d752075c5bec3ad76617465c4be6f76693c2f6c693e0d0a3c6c693e7072697370656ec3ad6d20646f203c6120687265663d222f70686f72756d2f22207461726765743d225f626c616e6b223e66c3b3723c2f613e206e6120447261676f6e652c20616b207472656261206f736c6f7669c5a5207665c4be612075c5bec3ad76617465c4be6f763c2f6c693e0d0a3c6c693e70726964616ec3ad6d20286e69656b6fc4be6bc3bd636820647275686f7629203c4120485245463d222f6661712e7068703f726561643d74266361743d33363523456e7472793735223e706f7a6ec3a16d6f6b3c2f413e206b20726f7a6f6872616ec3bd6d206872c3a16d2e3c2f6c693e0d0a3c2f554c3e0d0ac5bd6961646e6120737072c3a17661206e6965206a65207a6f2073797374c3a96d75206f64737472c3a16e656ec3a12e2053c3ba6b726f6d6ec3a920737072c3a176792073c3ba20206f64737472c3a16e656ec3a920696261207a2054766f6a686f207a6f7a6e616d7520737072c3a1762c207a6f7374c3a176616ac3ba2076c5a1616b2076206461746162c3a17a652e20526f766e616b6f20737072c3a17679207a2068696572206120737072c3a17679207a2066c3b3722e204e6f726dc3a16c6e6520737072c3a1767920706fc48d617320687279207361206e65766b6c6164616ac3ba206470205347462073c3ba626f72752c207a6f7374c3a176616ac3ba2076c5a1616b206e6120736572766572692061206476616a61206872c3a1c48d69207072c3ad736c75c5a16e656a2068727920736920696368206dc3b4c5be7520c48dc3ad7461c5a52e, 'N', '2006-07-18 14:51:30'),
(983, 24, 0xc48c6f2073c3ba2070726965c48d696e6b7920737072c3a1763f, 'Y', '2004-08-18 13:24:31'),
(984, 24, 0x50726965c48d696e6b7920737072c3a17620546920756d6fc5bec588756ac3ba207573706f7269616461c5a520737072c3a1767920706f64c4be612054766f6a686f20c5be656c616e69612e20537072c3a17679206dc3b4c5be65c5a12070726573c3ba7661c5a5206d65647a692070726965c48d696e6b6120616b6f20706f74726562756a65c5a12e0d0a0d0a447261676f6e20706f736b7974756a65206e61207a61c48d6961746b7520746965746f2070726965c48d696e6b793a0d0a3c756c3e0d0a3c6c693e3c623e56c5a165746b79207072696a6174c3a93c2f623e3a205a6f7a6e616d2076c5a165746bc3bd6368207072696a6174c3bd636820737072c3a1762e0d0a3c6c693e3c623e486c61766ec3bd3c2f623e3a205a6f7a6e616d2076c5a165746bc3bd6368207072696a61c3bd636820707265c48dc3ad74616ec3bd636820737072c3a1762e0d0a3c6c693e3c623e4e6f76c3a13c2f623e3a205a6f7a6e616d2076c5a165746bc3bd6368207072696a61c3bd6368206e65707265c48dc3ad74616ec3bd636820737072c3a1762e0d0a3c6c693e3c623e4f64706f7665647a213c2f623e3a205a6f7a6e616d2076c5a165746bc3bd6368207072696a6174c3bd636820737072c3a176207679c5be6164756ac3ba63696368206f64706f7665c48f2e0d0a3c6c693e3c623e4f647061643c2f623e3a205a6f7a6e616d2076c5a165746bc3bd636820737072c3a176206f7a6e61c48d656ec3bd6368206e61207a6d617a616e69652e0d0a3c6c693e3c623e4f646f736c616ec3a93c2f623e3a205a6f7a6e616d2076c5a165746bc3bd6368206f646f736c616ec3bd636820737072c3a1762e0d0a3c2f756c3e0d0a0d0a4dc3b4c5be65c5a120767974766f7269c5a520c48f616cc5a169652070726965c48d696e6b7920706f6d6f636f75206c696e6b79202245646974756a2070726965c48d696e6b7922206e6173706f6475203c6120687265663d222f6c6973745f6d657373616765732e70687022207461726765743d225f626c616e6b223e737472c3a16e6b7920736f20737072c3a176616d693c2f613e2e, 'Y', '2006-07-18 14:51:30'),
(985, 24, 0x416b6f207369206d6fc5be6e6f207072697370c3b4736f6269c5a520447261676f6e613f, 'Y', '2004-08-18 13:24:31'),
(843, 24, 0x4a6f7264c3a16e736b6f, 'Y', '2004-08-18 13:24:31'),
(845, 24, 0x4b65c58861, 'Y', '2004-08-18 13:24:31'),
(849, 24, 0x4b7576616a74, 'Y', '2004-08-18 13:24:31'),
(850, 24, 0x4b697267697a7374616e, 'Y', '2004-08-18 13:24:31'),
(851, 24, 0x4c616f73, 'Y', '2004-08-18 13:24:31'),
(852, 24, 0x4c69747661, 'Y', '2004-08-18 13:24:31'),
(853, 24, 0x4c6962616e6f6e, 'Y', '2004-08-18 13:24:31'),
(854, 24, 0x4c65736f74686f, 'Y', '2004-08-18 13:24:31'),
(855, 24, 0x4c6962c3a9726961, 'Y', '2004-08-18 13:24:31'),
(856, 24, 0x4cc3ad626961, 'Y', '2004-08-18 13:24:31'),
(857, 24, 0x4c69636874656ec5a174616a6e736b6f, 'Y', '2004-08-18 13:24:31'),
(858, 24, 0x4c6f7479c5a1736b6f, 'Y', '2004-08-18 13:24:31'),
(859, 24, 0x4c7578656d627572736b6f, 'Y', '2004-08-18 13:24:31'),
(861, 24, 0x4d61636564c3b36e736b6f, 'Y', '2004-08-18 13:24:31'),
(986, 24, 0x4e6173706f73752076c3a4c48dc5a1696e7920737472c3a16e6f6b206a6520666f726d756cc3a1722c206b746f72c3bd20756d6fc5bec588756a65207a6f6272617a656e69652020c48f616cc5a1c3ad63682064c3a1742e204dc3b3c5be65c5a120696368207573706f7269616461c5a5206b6c696b6e7574c3ad6d206e61207ac3a1686c61766965207374c4ba7063612e204dc3b4c5be65c5a1206f64737472c3a16e69c5a5206e65c5be656c616ec3a9207374c4ba706365206b6c696b6e7574c3ad6d206e61206d616cc3a920c48d657276656ec3a9202671756f743b782671756f743b20626c697a6b6f207ac3a1686c61766961207374c4ba7063612e, 'N', '2008-02-04 00:11:30'),
(987, 24, 0x536f6d206e6f76c3bd206e6120447261676f6e652e20416bc3ba2074726965647520627920736f6d206d616c207576696573c5a53f, 'Y', '2004-08-18 13:53:17'),
(988, 24, 0x4b65c48f2073692072656769737472756a65c5a1206e6f76c3a9206b6f6e746f2c204447532073612070c3bd74612c20c48d692075c5be206dc3a1c5a120476f20747269656479206f6e20696e616b6961c4be2e20284dc3b4c5be6520746f206279c5a5207a20696ec3a9686f20476f20736572766572612c207a2054766f6a686f206c6f6bc3a16c6e65686f20476f206b6c75627520616c65626f207a20476f2061736f6369c3a163696520762054766f6a656a206b72616a696e652e2920557665c48f206a65646e6f647563686f2074c3ba746f20747269656475206120444753207369206a75207072656c6fc5bec3ad20646f207a6f64706f766564616ac3ba63656a20706fc48d6961746fc48d6e656a20444753207472696564792e, 'N', '2004-08-18 13:53:17'),
(989, 24, 0x5ac3a16c65c5bec3ad206e6120746f6d2c20c48d69207a61c48d6e656d2073206e65737072c3a1766e6f7520706fc48d6961746fc48d6e6f752074726965646f753f, 'Y', '2004-08-18 13:53:17'),
(990, 24, 0x5665c4be6120746f206e657a6176c3a1c5be692e203c693e28416c65206e69656b746f72c3ad206872c3a1c48d6920627564c3ba207476726469c5a52c20c5be65207ac3a1766973c3ad20646f73c5a53b20696ec3ad20706f76656469612c20c5be65206a6520746f206e6564c3b46c65c5be6974c3a92e293c2f693e20447261676f6e207570726176c3ad2074726965647520736b6f726f202d20706f64c4be612076c3bd736c65646b6f7620756b6f6ec48d656ec3bd6368207061727469c3ad2e20506f20707269626c69c5be6e652070696174696368207061727469c3a1636820736120646f7374616e65c5a120646f2022736b75746fc48d6e656a22207472696564792e200d0a0d0a416b203c693e7ac3a16d65726e653c2f693e207a61c48d6e65c5a1206872752073206e65737072c3a1766e6f7520706fc48d6961746fc48d6e6f752074726965646f752c206e61686e6576c3a1c5a1206f737461746ec3bd63682075c5bec3ad76617465c4be6f762061207370c3b4736f62c3adc5a120696d206e65737072c3a1766e792f6e65c5be656c616ec3bd2f7a6176c3a1647a616ac3ba636920706f6b6c65732076203c693e6963683c2f693e207472696564652e2050616dc3a474616a2c206d6fc5be6e6f2073206e696d69207620627564c3ba636e6f7374692062756465c5a1206368636965c5a5207a6e6f767520687261c5a52e2e2e0d0a0d0a447261676f6e20736120736e61c5bec3ad20706f736b79746ec3bac5a52075c5be69746fc48d6ec3a9207472696564792c20616c65207ac3a1766973c3ad20746f20616a206e612054766f6a656a2073706f6c757072c3a163692e2050726f73c3ad6d206e656e6173746176756a2073692073766f6a7520706fc48d6961746fc48d6ec3ba20747269656475206e61206e6f766f6d206b6f6e7465206e6120686f646e6f74752c206b746f72c3a1206a6520c48f616c656b6f206f642054766f6a69636820736b75746fc48d6ec3bd6368206865726ec3bd6368207363686f706e6f7374c3ad207620476f2e2056c48f616b6121, 'N', '2004-08-18 13:53:17'),
(862, 24, 0x4d6164616761736b6172, 'Y', '2004-08-18 13:53:17'),
(863, 24, 0x4d616c617769, 'Y', '2004-08-18 15:16:25'),
(864, 24, 0x4d616c616a7a6961, 'Y', '2004-08-18 13:53:17'),
(865, 24, 0x4d616c64697679, 'Y', '2004-08-18 15:16:25'),
(866, 24, 0x4d616c69, 'Y', '2004-08-18 13:53:17'),
(867, 24, 0x4d616c7461, 'Y', '2004-08-18 13:53:17'),
(870, 24, 0x4d617572c3ad63697573, 'Y', '2004-08-18 13:53:17'),
(871, 24, 0x4d6578696b6f, 'Y', '2004-08-18 13:53:17'),
(872, 24, 0x4d696b726f6ec3a97a6961, 'Y', '2004-08-18 13:53:17'),
(873, 24, 0x4d6f6c646176736b6f, 'Y', '2004-08-18 13:53:17'),
(874, 24, 0x4d6f6e616b6f, 'Y', '2004-08-18 13:53:17'),
(875, 24, 0x4d6f6e676f6c736b6f, 'Y', '2004-08-18 13:53:17'),
(876, 24, 0x4d61726f6b6f, 'Y', '2004-08-18 13:53:17'),
(877, 24, 0x4d6f7a616d62696b, 'Y', '2004-08-18 13:53:17'),
(879, 24, 0x4e616dc3ad626961, 'Y', '2004-08-18 13:53:17'),
(881, 24, 0x4e6570c3a16c, 'Y', '2004-08-18 13:53:17'),
(882, 24, 0x486f6c616e64736b6f, 'Y', '2004-08-18 13:53:17'),
(883, 24, 0x4e6f76c3bd205ac3a96c616e64, 'Y', '2004-08-18 15:16:25'),
(884, 24, 0x4e696b617261677561, 'Y', '2004-08-18 13:53:17'),
(991, 24, 0x506fc48dc3ad74612073612073c3ba7065726f766920c48d61732c206b65c48f206d6f6a6520686f64696e792073746f6a613f, 'Y', '2004-08-18 14:13:24'),
(992, 24, 0x416b207369206e6120c5a56168753a204e69652e0d0a0d0a416b206a65206e6120c5a56168752073c3ba7065723a20c3816e6f2c20616b206e6965206a65206a65686f206e6fc48d6ec3bd206bc4be75642c206e6965206a652076c3ad6b656e64202876207061727469692073207072657275c5a1656ec3ad6d20706fc48d61732076c3ad6b656e647529206120616b2073c3a16d2073c3ba706572206e657072c3a17a646e696e756a652e, 'Y', '2004-08-18 14:13:24'),
(993, 24, 0x4dc3b4c5be656d20706f746961686e75c5a52c206b65c48f206d6f6a6520686f64696e792073746f6a613f, 'Y', '2004-08-18 14:13:24'),
(994, 24, 0x506f746961686e75c5a5206d6fc5be65c5a1203c693e76c5be64793c2f693e202d20646f6b6f6e636120616a20706fc48d61732054766f6a686f206e6fc48d6ec3a9686f206bc4be7564752c207072c3a17a646e696e20616c65626f2076c3ad6b656e646f762e, 'Y', '2004-08-18 14:13:24'),
(995, 24, 0xc48c6f207a6e616d656ec3a12c20c5be6520686f64696e79206265c5be696120706fc48d61732076c3ad6b656e64753f, 'Y', '2004-08-18 14:13:24'),
(996, 24, 0x4b65c48f20706f6ec3ba6b61c5a1206e6f76c3ba207061727469752c206dc3a1c5a1206d6fc5be6e6f73c5a5207369207a766f6c69c5a52c20c5be6520c48d61732070617274696520203c623e6e65627564653c2f623e206265c5be61c5a520706fc48d617320736f62c3b4742061206e65646965c4be2e, 'N', '2004-08-18 14:13:24'),
(1005, 24, 0x5665c4be6120c4be7564c3ad2073612063686365207465c5a169c5a5207475207a2068696572206ec3a1646865726e656a20687279207a76616e656a20474f2e205ac3a16b6c61646ec3a120736164612070726176696469656c20737072c3a176616e6961206e612073657276657265206a6520747520766f20666f726d65203c686f6d6520706f6c6963792e7068703e5072617669646cc3a120447261676f6e20476f20536572766572613c2f686f6d653e2e2056c5a1657463692075c5bec3ad766174656c6961206d6fc5be75206fc48d616bc3a17661c5a520726f766e616bc3bd2064727568207265c5a170656b7475206120737072c3a176616e696120616b6f20706fc48d6173207265c3a16c6e65686f206872616e696120686965722e205572c3a1c5be616ac3ba63652061206e6576686f646ec3a920706f7a6ec3a16d6b79206e69652073c3ba206e616d696573746520616e6920762073c3ba6b726f6d6e656a20616e6920766f20766572656a6e656a20706fc5a174652c20616b207361207072656b726fc48dc3ad206872616e6963612061206e65627564c3ba20746f6c65726f76616ec3a92c20616b207361206f20746f6d20646f7a76696520c5a16972c5a1c3ad206f6b72756820c48d6c656e6f7620447261676f6e612e0d0a0d0a446f6272c3bd207370726965766f646361206a65203c6120687265663d22687474703a2f2f7777772e666171732e6f72672f726663732f726663313835352e68746d6c223e4e6574697175657474652047756964656c696e65733c2f613e2e204a6520746f2074726f63687520646c68c3a920c48dc3ad74616e69652e204b726174c5a16975207665727a697520612076c5a1656f6265636ec3bd207ac3a16d6572206d6fc5be6e6f207ac3ad736b61c5a520c48dc3ad74616ec3ad6d20203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f70686f72756d2f726561642e7068703f663d3426693d3339323626743d33393236223e20746f686f746f20766cc3a16b6e6120766f2066c3b372653c2f613e2e0d0a0d0a3c6e6f74653e20322e206c696e6b61206e6965206a65206b6f72656b746ec3a12028706f20617567757374652032303036207361207a6d656e696c6120c5a17472756b74c3ba72612066c3b37261292c206d6fc5be6e6f206a6520746f20746572617a206c696e6b612028616a206b65c48f206e657669656d2c20c48d6920737072c3a1766e612920687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f666f72756d2f726561642e7068703f666f72756d3d34267468726561643d37353939266d61726b7465726d733d6e65746971756574746523373630340d0a3c2f6e6f74653e, 'N', '2009-06-22 11:09:03');
INSERT INTO `Translations` (`Original_ID`, `Language_ID`, `Text`, `Translated`, `Updated`) VALUES
(1008, 24, 0x4b6465207361206469736b7574756a65206f207a64726f6a6f766f6d206bc3b3646520447261676f6e613f, 'Y', '2004-08-18 14:13:24'),
(1009, 24, 0x4e61206d61696c6f766f6d207a6f7a6e616d65203c4120485245463d22687474703a2f2f6c697374732e736f75726365666f7267652e6e65742f6c697374732f6c697374696e666f2f647261676f6e676f7365727665722d646576656c22205441524745543d225f626c616e6b223e647261676f6e676f7365727665722d646576656c3c2f413e2e2053692076c3ad74616ec3bd207a6170c3ad7361c5a5207361206120707269737069657661c5a520646f206e65686f2e, 'N', '2004-08-18 14:13:24'),
(1017, 24, 0x447261676f6e206a652076207ac3a17361646520706f73746176656ec3bd206e61206a61706f6e736bc3bd6368207072617669646cc3a1636820476f2e20532076c3bd6e696d6b6f7520707265647572c48d656ec3a9686f20706f73746176656e69612068656e64696b65706f76c3bd6368206b616d65c5886f762c207665c4be6b6f73746920646f736b79206120c48d61736f76c3bd6368206c696d69746f762e20546965746f20447261676f6e6f6d206e617672686e7574c3a920686f646e6f7479206e69652073c3ba207572c48d656ec3a920706f64c4be61206f66696369c3a16c6e796368206a61706f6e736bc3bd63682070726176696469656c2c20616c65207361207a64616ac3ba206279c5a52075c5be69746fc48d6ec3a920686f646e6f747920707265206b726f6b6f76c3a920476f2e2e0d0a0d0a5620736b7261746b652c20447261676f6e200d0a3c756c3e0d0a3c6c693e20706f75c5bec3ad766120736bc3b3726f76616e6965207465726974c3b372696120706f64c4be6120726f7a686f646e75746961206872c3a1c48d6f760d0a3c6c693e206e656dc3a1207072617669646c6f206f2073757065726b6f200d0a3c6c693e207a616b617a756a652073616d6f767261c5be6475206b616d65c5886f7620610d0a3c6c693e20706f766fc4be756a6520766fc4be6ec3a920756d696573746e656e69652068656e64696b65706f76c3bd6368206b616d65c5886f762e0d0a3c2f756c3e, 'N', '2004-08-18 14:13:24'),
(819, 24, 0x47616d626961, 'Y', '2004-08-18 14:13:24'),
(868, 24, 0x4d61727368616c6c6f7665206f7374726f7679, 'Y', '2004-08-18 15:16:25'),
(885, 24, 0x4e69676572, 'Y', '2004-08-18 14:13:24'),
(886, 24, 0x4e6967c3a9726961, 'Y', '2004-08-18 14:13:24'),
(887, 24, 0x4ec3b372736b6f, 'Y', '2004-08-18 14:13:24'),
(888, 24, 0x4f6dc3a16e, 'Y', '2004-08-18 14:13:24'),
(889, 24, 0x50616b697374616e, 'Y', '2004-08-18 14:13:24'),
(892, 24, 0x50616e616d61, 'Y', '2004-08-18 14:13:24'),
(893, 24, 0x50617075612d4e6f76c3a1204775696e6561, 'Y', '2004-08-18 15:16:25'),
(894, 24, 0x506172616775616a, 'Y', '2004-08-18 15:16:25'),
(895, 24, 0x50657275, 'Y', '2004-08-18 14:13:24'),
(896, 24, 0x46696c6970c3ad6e79, 'Y', '2004-08-18 14:13:24'),
(897, 24, 0x506fc4be736b6f, 'Y', '2004-08-18 14:13:24'),
(898, 24, 0x506f72747567616c736b6f, 'Y', '2004-08-18 14:13:24'),
(899, 24, 0x506f72746f72696b6f, 'Y', '2004-08-18 14:13:24'),
(901, 24, 0x52756d756e736b6f, 'Y', '2004-08-18 14:13:24'),
(902, 24, 0x5275736b6f, 'Y', '2004-08-18 14:13:24'),
(903, 24, 0x5277616e6461, 'Y', '2004-08-18 15:16:25'),
(905, 24, 0x5376c3a474c3a1204c75636961, 'Y', '2004-08-18 14:13:24'),
(907, 24, 0x53616d6f61, 'Y', '2004-08-18 14:13:24'),
(908, 24, 0x53616e204d6172c3ad6e6f, 'Y', '2004-08-18 14:13:24'),
(910, 24, 0x53617564736bc3a1204172c3a1626961, 'Y', '2004-08-18 14:16:57'),
(911, 24, 0x53656e6567616c, 'Y', '2004-08-18 14:16:57'),
(913, 24, 0x5365796368656c79, 'Y', '2004-08-18 15:16:25'),
(914, 24, 0x536965727261204c656f6e65, 'Y', '2004-08-18 14:16:57'),
(915, 24, 0x53696e6761707572, 'Y', '2004-08-18 14:16:57'),
(916, 24, 0x536c6f76656e736b6f, 'Y', '2004-08-18 14:16:57'),
(917, 24, 0x536c6f76696e736b6f, 'Y', '2004-08-18 14:16:57'),
(918, 24, 0xc5a0616c616dc3ba6e6f7665206f7374726f7679, 'Y', '2004-08-18 15:16:25'),
(919, 24, 0x536f6dc3a16c736b6f, 'Y', '2004-08-18 14:16:57'),
(920, 24, 0x4a75c5be6ec3a120416672696b61, 'Y', '2004-08-18 14:16:57'),
(921, 24, 0xc5a070616e69656c736b6f, 'Y', '2004-08-18 14:16:57'),
(922, 24, 0x5372c3ad204c616e6b61, 'Y', '2004-08-18 14:16:57'),
(923, 24, 0x537564c3a16e, 'Y', '2004-08-18 14:16:57'),
(926, 24, 0xc5a076c3a964736b6f, 'Y', '2004-08-18 14:16:57'),
(927, 24, 0xc5a076616ac48d696172736b6f, 'Y', '2004-08-18 14:16:57'),
(928, 24, 0x53c3bd726961, 'Y', '2004-08-18 14:16:57'),
(929, 24, 0x54616977616e, 'Y', '2004-08-18 15:16:25'),
(930, 24, 0x546164c5be696b697374616e, 'Y', '2004-08-18 14:16:57'),
(931, 24, 0x54616e7ac3a16e6961, 'Y', '2004-08-18 14:16:57'),
(932, 24, 0x5468616a736b6f, 'Y', '2004-08-18 14:16:57'),
(933, 24, 0x546f676f, 'Y', '2004-08-18 14:16:57'),
(935, 24, 0x5472696e69646164206120546f6261676f, 'Y', '2004-08-18 14:16:57'),
(936, 24, 0x54756e6973, 'Y', '2004-08-18 14:16:57'),
(937, 24, 0x54757265636b6f, 'Y', '2004-08-18 14:16:57'),
(938, 24, 0x5475726b6dc3a96e736b6f, 'Y', '2004-08-18 14:16:57'),
(940, 24, 0x5567616e6461, 'Y', '2004-08-18 14:16:57'),
(941, 24, 0x556b72616a696e61, 'Y', '2004-08-18 14:18:49'),
(942, 24, 0x53706f6a656ec3a92061726162736bc3a920656d6972c3a17479, 'Y', '2004-08-18 15:16:25'),
(943, 24, 0x5665c4be6bc3a12042726974c3a16e6961, 'Y', '2004-08-18 15:16:25'),
(944, 24, 0x53706f6a656ec3a920c5a174c3a1747920616d657269636bc3a9, 'Y', '2004-08-18 15:16:25'),
(945, 24, 0x5572756775616a, 'Y', '2004-08-18 14:18:49'),
(946, 24, 0x557a62656b697374616e, 'Y', '2004-08-18 14:18:49'),
(948, 24, 0x566174696bc3a16e736b79204d657374736bc3bd20c5a074c3a174, 'Y', '2004-08-18 14:18:49'),
(949, 24, 0x56656e657a75656c61, 'Y', '2004-08-18 14:18:49'),
(950, 24, 0x566965746e616d, 'Y', '2004-08-18 14:18:49'),
(951, 24, 0x4a656d656e, 'Y', '2004-08-18 14:18:49'),
(952, 24, 0x5a616d626961, 'Y', '2004-08-18 14:18:49'),
(953, 24, 0x5a696d6261627765, 'Y', '2004-08-18 14:18:49'),
(762, 24, 0x416e746967756120612042617262756461, 'N', '2004-08-18 15:05:36'),
(774, 24, 0x42656c697a65, 'Y', '2004-08-18 15:05:36'),
(775, 24, 0x42656e696e, 'Y', '2004-08-18 15:05:36'),
(788, 24, 0x4b61707665726479, 'Y', '2004-08-18 15:05:36'),
(794, 24, 0x4b6f6d6f7279, 'Y', '2004-08-18 15:05:36'),
(795, 24, 0x4b6f6e676f2028224272617a7a6176696c6c652229, 'Y', '2004-08-18 15:05:36'),
(796, 24, 0x4b6f6e676f, 'Y', '2004-08-18 15:05:36'),
(804, 24, 0x44c5be69627574736b6f, 'Y', '2004-08-18 15:05:36'),
(827, 24, 0x4775696e65612d426973736175, 'Y', '2004-08-18 15:05:36'),
(846, 24, 0x4b69726962617469, 'Y', '2004-08-18 15:05:36'),
(869, 24, 0x4d6175726974c3a16e6961, 'Y', '2004-08-18 15:05:36'),
(878, 24, 0x4d6a616e6d6172736b6f, 'Y', '2004-08-18 15:05:36'),
(880, 24, 0x4e61757275, 'Y', '2004-08-18 15:05:36'),
(890, 24, 0x50616c6175, 'Y', '2004-08-18 15:05:36'),
(900, 24, 0x4b61746172, 'Y', '2004-08-18 15:05:36'),
(904, 24, 0x5376c3a474c3bd204b7269c5a1746f662061204e65766973, 'Y', '2004-08-18 15:05:36'),
(906, 24, 0x53762e2056696e63656e742061204772656e6164c3ad6e79, 'Y', '2004-08-18 15:05:36'),
(909, 24, 0x53762e20546f6dc3a1c5a12061205072696e636f76204f7374726f76, 'Y', '2004-08-18 15:05:36'),
(924, 24, 0x537572696e616d, 'Y', '2004-08-18 15:05:36'),
(925, 24, 0x5376617a696a736b6f, 'Y', '2004-08-18 15:05:36'),
(934, 24, 0x546f6e6761, 'Y', '2004-08-18 15:05:36'),
(939, 24, 0x547576616c75, 'Y', '2004-08-18 15:05:36'),
(947, 24, 0x56616e75617475, 'Y', '2004-08-18 15:05:36'),
(80, 25, 0x436f6e6563746174206361, 'Y', '2004-08-23 13:12:14'),
(81, 25, 0x4e65636f6e6563746174, 'Y', '2004-08-23 13:12:14'),
(82, 25, '', 'Y', '2012-08-17 10:38:03'),
(83, 25, 0x43616d6572c4832064652061c59f74657074617265, 'Y', '2004-08-23 13:12:14'),
(84, 25, 0x496e666f726d61c5a36969207574696c697a61746f72, 'Y', '2004-08-23 13:12:14'),
(85, 25, 0x4d6573616a65, 'Y', '2004-08-23 13:12:14'),
(86, 25, 0x5472696d69746520756e206d6573616a, 'Y', '2004-08-23 13:12:14'),
(87, 25, 0x496e766974c483, 'Y', '2004-08-23 13:12:14'),
(88, 25, 0x5574696c697a61746f7269, 'Y', '2004-08-23 13:12:14'),
(89, 25, 0x50617274696465, 'Y', '2004-08-23 13:12:14'),
(90, 25, 0x547261647563657265, 'Y', '2004-08-23 13:12:14'),
(91, 25, 0x466f72756d2d757269, 'Y', '2004-08-23 13:12:14'),
(92, 25, '', 'Y', '2012-08-17 10:38:03'),
(93, 25, 0x48617274c4832073697465, 'Y', '2004-08-23 13:12:14'),
(94, 25, 0x446f63756d656e7461c5a36965, 'Y', '2004-08-23 13:12:14'),
(95, 25, 0x506167696ec483206372656174c48320c3ae6e, 'Y', '2004-08-23 13:12:14'),
(96, 25, '', 'Y', '2012-08-17 10:38:03'),
(97, 25, 0x4465636f6e656374617265, 'Y', '2004-08-23 13:12:14'),
(98, 25, 0x7a69, 'Y', '2004-08-23 13:12:14'),
(99, 25, 0x7a696c65, 'Y', '2004-08-23 13:12:14'),
(100, 25, 0xc59f69, 'Y', '2004-08-23 13:12:14'),
(101, 25, 0x6f72c483, 'Y', '2004-08-23 13:12:14'),
(102, 25, 0x6f7265, 'Y', '2004-08-23 13:12:14'),
(103, 25, 0x66c48372c4832062796f796f6d69, 'Y', '2004-08-23 13:12:14'),
(104, 25, 0x637520257320c3ae6e20706c75732070656e747275206f206d7574617265, 'Y', '2004-08-23 13:12:14'),
(106, 25, 0x42796f796f6d69206a61706f6e657a, 'Y', '2010-06-29 12:34:29'),
(107, 25, 0x6d7574c4837269, 'Y', '2005-01-06 16:24:07'),
(108, 25, 0x42796f796f6d692063616e616469616e, 'Y', '2010-06-29 12:34:29'),
(132, 25, '', 'Y', '2012-08-17 10:38:03'),
(134, 25, 0x4e756d65, 'Y', '2004-08-23 13:12:14'),
(201, 25, 0x436f6e74, 'Y', '2004-08-23 13:12:14'),
(204, 25, 0x496e666f726d61c5a3696920636f74617265, 'Y', '2010-06-29 19:45:47'),
(205, 25, 0x436f74617265, 'Y', '2004-08-23 13:12:14'),
(309, 25, '', 'Y', '2012-08-17 10:38:03'),
(310, 25, 0x4465206c61, 'Y', '2004-08-23 13:12:14'),
(311, 25, 0x53756269656374, 'Y', '2004-08-23 13:12:14'),
(312, 25, 0x446174c483, 'Y', '2004-08-23 13:12:14'),
(314, 25, 0x4e6f69, 'Y', '2004-08-23 13:12:14'),
(316, 25, 0x52c4837370756e646521, 'Y', '2004-08-23 13:12:14'),
(330, 25, 0x416c62756c, 'Y', '2014-03-31 12:17:30'),
(331, 25, 0x4e656772756c, 'Y', '2014-03-31 12:17:44'),
(352, 25, '', 'Y', '2012-08-17 10:38:03'),
(359, 25, 0x4164766572736172, 'Y', '2004-08-23 13:12:14'),
(360, 25, 0x43756c6f617265, 'Y', '2004-08-23 13:12:14'),
(361, 25, 0x44696d656e7369756e65, 'Y', '2004-08-23 13:12:14'),
(362, 25, '', 'Y', '2012-08-17 10:38:03'),
(363, 25, '', 'Y', '2012-08-17 10:38:03'),
(364, 25, 0x4d7574c4837269, 'Y', '2004-08-23 13:12:14'),
(368, 25, 0x556c74696d61206d7574617265, 'N', '2004-08-23 14:27:37'),
(374, 25, 0x5061727469646520c3ae6e2064657366c483c59f7572617265, 'Y', '2010-06-26 22:50:15'),
(375, 25, 0x50617274696465207465726d696e617465, 'Y', '2010-06-26 22:50:15'),
(388, 25, 0x446973706f6e6962696c2070656e74727520706172746964653f, 'Y', '2004-08-23 14:27:37'),
(389, 25, 0x4d6573616a65206e6f69, 'Y', '2004-08-23 14:27:37'),
(390, 25, 0x457374652072c3a26e64756c2074c483752073c483206d75c5a36920c3ae6e2075726dc483746f6172656c6520706172746964653a, 'Y', '2004-08-27 17:24:29'),
(391, 25, 0x4e696369206f20706172746964c4832067c483736974c483, 'Y', '2004-08-23 14:27:37'),
(460, 25, 0x706167696e612075726dc483746f617265, 'Y', '2004-08-23 14:27:37'),
(461, 25, 0x706167696e6120616e746572696f6172c483, 'Y', '2004-08-23 14:27:37'),
(462, 25, 0x4164617567c48320636f6c6f616ec483, 'Y', '2011-06-23 17:56:43'),
(715, 25, 0x4461746120706167696e6969, 'Y', '2004-08-23 14:27:37'),
(2480, 40, 0x4c696d706172205065647261, 'Y', '2014-04-13 17:51:01'),
(719, 25, 0x25732063c3a2c59f746967c48320637520252e3166, 'Y', '2004-08-23 14:27:37'),
(722, 25, 0x446f736172, 'Y', '2004-08-23 14:27:37'),
(732, 25, 0x5a696c6520646520766163616ec5a3c4832072c4836d617365, 'Y', '2004-08-23 14:27:37'),
(733, 25, 0xc38e6e20766163616ec5a3c483, 'Y', '2004-08-23 14:27:37'),
(747, 25, 0x546f61746520636f6c6f616e656c65, 'Y', '2004-08-23 14:27:37'),
(755, 25, 0x4d6573616a206465206c6120736572766572, 'Y', '2004-08-23 14:27:37'),
(160, 25, 0x496e74726f647563657265206c6120447261676f6e, 'Y', '2004-08-23 14:27:37'),
(191, 25, 0x436f6e6669726d617265207061726f6cc483, 'Y', '2004-08-23 14:27:37'),
(202, 25, 0x4e756d6520636f6d706c6574, 'Y', '2004-08-23 14:27:37'),
(223, 25, 0x4169207569746174207061726f6c613f, 'Y', '2004-08-23 14:27:37'),
(240, 25, 0x506167696e61207072696e636970616cc483, 'Y', '2004-08-23 14:27:37'),
(242, 25, 0x546520696e766974c4836d2073c48320746520c3ae6e72656769737472657a6920c59f692073c483206a6f63692063c3a27465766120706172746964652e, 'Y', '2004-08-23 14:27:37'),
(243, 25, 0x546520696e766974c4836d2073c48320746520617574656e7469666963692e, 'Y', '2013-02-07 10:55:24'),
(244, 25, 0x43612073c483206172756e6369206f20707269766972652c20666f6c6f7365c59f74652025732e, 'Y', '2004-08-23 14:27:37'),
(245, 25, 0x5061726f6cc483, 'Y', '2004-08-23 14:27:37'),
(246, 25, 0x436f6e656374617265, 'Y', '2004-08-23 14:27:37'),
(247, 25, 0x43726565617ac48320756e20636f6e74206e6f75, 'Y', '2004-08-23 14:27:37'),
(248, 25, 0x496e74726f647563657265, 'Y', '2004-08-23 14:27:37'),
(252, 25, 0xc38e6e63c483206f20646174c4832c2062756e2076656e69742c20c59f692073706572c4836d2073c4832074652073696dc5a3692062696e6520616963692e, 'Y', '2004-08-23 14:27:37'),
(344, 25, 0xc38e6e72656769737472617265, 'Y', '2004-08-23 14:27:37'),
(345, 25, 0x546520727567c4836d2073c48320696e74726f647563692075726dc483746f6172656c652064617465, 'Y', '2004-08-23 14:27:37'),
(478, 25, 0x4d6169206d756c746520696e666f726d61c5a3696920706f742066692067c4837369746520c3ae6e203c6120687265663d226661712e706870223e666f72756d2d756c204641513c2f613e20756e64652c206465206173656d656e65612c2065c59f746920c3ae6e637572616a61742073c48320c3aec5a369207472696d69c5a3692070726f707269696c6520c3ae6e74726562c48372692e, 'Y', '2004-08-23 14:27:37'),
(109, 25, 0x506172746964c483206164c48375676174c48321, 'Y', '2004-08-23 14:27:37'),
(229, 25, 0x53636f72, 'Y', '2004-08-23 14:27:37'),
(230, 25, 0x506172746964c483, 'Y', '2004-08-23 14:27:37'),
(231, 25, 0x506173, 'Y', '2004-08-23 14:49:34'),
(232, 25, 0x416e756c61726520706172746964c483, 'Y', '2004-10-14 13:57:13'),
(233, 25, 0x47617461, 'Y', '2004-08-23 14:49:34'),
(234, 25, 0x436f6e74696e75c483206a6f63756c, 'Y', '2004-08-23 14:49:34'),
(235, 25, 0x4162616e646f6e65617ac483, 'Y', '2004-08-23 14:49:34'),
(236, 25, 0x44657363617263c48320736766, 'Y', '2004-08-23 14:49:34'),
(237, 25, 0x4d65726769206c6120706172746964612075726dc483746f617265, 'Y', '2004-10-14 13:58:18'),
(238, 25, 0xc59e746572676572652064696e206c69737461206465206f627365727661746f7269, 'Y', '2004-08-27 16:30:55'),
(239, 25, 0x4164617567c48320c3ae6e206c69737461206465206f627365727661746f7269, 'Y', '2004-08-23 14:49:34'),
(253, 25, 0x506172746964c48320c59f7465617273c48321, 'Y', '2004-08-23 14:49:34'),
(254, 25, 0x50617274696461206120c3ae6e636570757421, 'Y', '2004-08-23 14:49:34'),
(308, 25, 0x43c483747265, 'Y', '2004-08-27 16:30:55'),
(324, 25, 0x52c4837370756e6465, 'Y', '2004-08-23 14:49:34'),
(325, 25, 0x4d6573616a, 'Y', '2004-08-23 14:49:34'),
(342, 25, 0x477261666963756c20636f74c4837269692070656e747275, 'Y', '2004-08-23 14:49:34'),
(343, 25, 0x4e6520636572656d207363757a652c2073756e742070726561207075c5a3696e65207061727469646520636f746174652070656e747275206120646573656e6120756e20677261666963, 'Y', '2010-07-02 11:50:41'),
(348, 25, 0x50617274696465207465726d696e617465, 'Y', '2004-08-23 14:49:34'),
(349, 25, 0x5061727469646520c3ae6e2064657366c483c59f7572617265, 'Y', '2004-08-23 14:49:34'),
(350, 25, 0x50617274696465207465726d696e6174652070656e747275202573, 'Y', '2004-08-23 14:49:34'),
(351, 25, 0x5061727469646520c3ae6e2064657366c483c59f75726172652070656e747275202573, 'Y', '2004-08-23 14:49:34'),
(366, 25, 0x436f746174c483, 'Y', '2004-08-23 14:49:34'),
(370, 25, 0x4461, 'Y', '2004-08-23 14:49:34'),
(371, 25, 0x4e75, 'Y', '2004-08-23 14:49:34'),
(372, 25, 0x6567616c6974617465, 'N', '2004-08-23 14:49:34'),
(373, 25, 0x496e766974c483206163657374207574696c697a61746f72, 'Y', '2004-08-23 14:49:34'),
(406, 25, '', 'Y', '2012-08-17 10:38:03'),
(407, 25, 0x41646563766174, 'Y', '2004-08-23 14:49:34'),
(408, 25, 0x4a6f63206c61207061726974617465206375206e6967697269, 'Y', '2004-08-23 14:49:34'),
(409, 25, 0x4a6f63206475626c75, 'Y', '2004-08-23 14:49:34'),
(411, 25, 0x496e666f726d61c5a36969, 'Y', '2004-08-23 14:49:34'),
(412, 25, 0x4e6f746520616469c5a3696f6e616c65, 'Y', '2007-12-02 22:51:34'),
(414, 25, 0x4c696d6974c4832064652074696d70, 'Y', '2004-08-23 14:49:34'),
(415, 25, 0x4e756dc483722064652070617274696465, 'Y', '2011-06-23 12:03:25'),
(416, 25, 0x4365617320c3ae6e207765656b656e64, 'Y', '2004-08-23 14:49:34'),
(419, 25, 0x446f6172202573, 'Y', '2004-08-23 17:24:10'),
(420, 25, 0x4e756dc48372756c206465206a6f6375726920636172652073c48320666965206164c4837567617465, 'Y', '2004-08-23 17:24:10'),
(421, 25, '', 'Y', '2012-08-17 10:38:03'),
(422, 25, '', 'Y', '2012-08-17 10:38:03'),
(423, 25, 0x446f61722061647665727361726920636f7461c5a369, 'Y', '2004-08-23 17:24:10'),
(424, 25, 0x446163c4832064612c2072616e67756c2073c4832066696520c3ae6e747265, 'Y', '2004-08-23 17:24:10'),
(425, 25, 0x4164617567c48320706172746964c483, 'Y', '2004-08-23 17:24:10'),
(426, 25, 0x4a7563c483746f72, 'Y', '2004-08-23 17:24:10'),
(427, 25, 0x4e756dc483722064652070617274696465, 'Y', '2004-08-23 17:24:10'),
(428, 25, 0x43656173756c206d6572676520c3ae6e207765656b656e64, 'Y', '2004-08-23 17:24:10'),
(429, 25, 0x537465726765, 'Y', '2004-08-23 17:24:10'),
(430, 25, 0xc38e6e63657065, 'Y', '2004-08-23 17:24:10'),
(437, 25, 0x54696d70207072696e636970616c, 'Y', '2004-08-23 17:24:10'),
(454, 25, 0x41c59f617ac4832dc5a369207069657472656c652068616e646963617021, 'Y', '2004-08-23 17:24:10'),
(455, 25, 0x5472696d69746520c59f69206d65726769206c6120706172746964612075726dc483746f617265, 'Y', '2007-12-02 23:03:15'),
(456, 25, 0x5472696d69746520c59f69206d65726769206c6120737461747573, 'Y', '2007-12-02 23:03:15'),
(457, 25, 0xc38e6e61706f69, 'Y', '2006-08-23 20:42:41'),
(458, 25, 0x5072697a6f6e69657269, 'Y', '2004-08-23 17:24:10'),
(484, 25, 0x49616e, 'Y', '2004-08-23 17:24:10'),
(485, 25, 0x466562, 'Y', '2004-08-23 17:24:10'),
(486, 25, 0x417072, 'Y', '2004-08-23 17:24:10'),
(487, 25, 0x4d6169, 'Y', '2004-08-23 17:24:10'),
(488, 25, 0x49756e, 'Y', '2004-08-23 17:24:10'),
(489, 25, 0x417567, 'Y', '2004-08-23 17:24:10'),
(490, 25, 0x536570, 'Y', '2004-08-23 17:24:10'),
(491, 25, 0x4f6374, 'Y', '2004-08-23 17:24:10'),
(492, 25, 0x446563, 'Y', '2004-08-23 17:24:10'),
(495, 25, 0x4d6172, 'Y', '2004-08-23 17:24:10'),
(496, 25, 0x49756c, 'Y', '2004-08-23 17:24:10'),
(497, 25, 0x4e6f76, 'Y', '2004-08-23 17:24:10'),
(618, 25, 0x436f7461726520696e69c5a369616cc483, 'Y', '2010-06-29 12:22:11'),
(619, 25, 0x436f746172652066696e616cc483, 'Y', '2010-07-02 11:58:31'),
(620, 25, 0x4469666572656ec5a3c48320636f74617265, 'Y', '2004-08-23 17:24:10'),
(307, 25, 0x4c69737461206465206d6573616a65, 'Y', '2004-08-23 17:24:10'),
(315, 25, 0x52c4837370756e73, 'Y', '2004-08-23 17:43:02'),
(322, 25, 0x416365617374c48320696e76697461c5a36965206c61206f202573706172746964612573206120666f7374206163636570746174c4832e, 'Y', '2004-08-23 17:43:02'),
(323, 25, 0x416365617374c48320696e76697461c5a36965206120666f737420726566757a6174c483207361752070617274696461206120666f737420c59f7465617273c483, 'Y', '2004-08-23 17:43:02'),
(326, 25, 0x5472696d6974652072c4837370756e73, 'Y', '2004-08-23 17:43:02'),
(327, 25, 0x4d6573616a206e6f75, 'Y', '2004-08-23 17:43:02'),
(328, 25, 0x43c4837472652028636f6e7429, 'Y', '2004-08-23 17:43:02'),
(329, 25, 0x5472696d697465206d6573616a, 'Y', '2004-08-23 17:43:02'),
(332, 25, 0x536368696d62c48320736574c48372696c65, 'Y', '2004-08-23 17:43:02'),
(333, 25, 0x416363657074c483, 'Y', '2004-08-23 17:43:02'),
(334, 25, 0x526566757ac483, 'Y', '2004-08-23 17:43:02'),
(335, 25, 0x4d6573616a2064652074697020696e76697461c5a36965, 'Y', '2004-08-23 17:43:02'),
(336, 25, 0x5472696d69746520696e76697461c5a36965, 'Y', '2004-08-23 17:43:02'),
(346, 25, 0x4d6573616a207472696d697321, 'Y', '2004-08-23 17:43:02'),
(431, 25, 0x44696d656e7369756e65207461626cc483, 'N', '2004-08-23 17:43:02'),
(432, 25, 0x48616e646963617020636f6e76656ec5a3696f6e616c20286b6f6d6920302e3520646163c483206e752065206c6120706172697461746529, 'Y', '2004-08-23 17:43:02'),
(433, 25, 0x48616e64696361702061646563766174, 'Y', '2004-08-23 17:43:02'),
(436, 25, 0x6c756e69, 'Y', '2004-08-23 17:43:02'),
(439, 25, 0x6375, 'Y', '2004-08-23 17:43:02'),
(442, 25, 0x6c61, 'Y', '2004-08-23 17:43:02'),
(443, 25, 0x54696d702046697363686572, 'Y', '2004-08-23 17:43:02'),
(445, 25, 0x494420706172746964c483, 'Y', '2004-08-23 17:43:02'),
(446, 25, 0x43756c6f7269, 'Y', '2004-08-23 17:43:02'),
(447, 25, '', 'Y', '2012-08-17 10:38:03'),
(449, 25, 0x4a61706f6e657a, 'Y', '2004-08-23 17:43:02'),
(450, 25, 0x2573207065206d757461726520c59f6920257320706572696f61646520c3ae6e20706c7573, 'Y', '2004-08-23 17:43:02'),
(451, 25, '', 'Y', '2012-08-17 10:38:03'),
(452, 25, 0x25732070656e74727520257320706965747265, 'Y', '2004-08-23 17:43:02'),
(453, 25, 0xc3ae6e20706c7573207065206d7574617265, 'Y', '2004-08-23 17:43:02'),
(724, 25, 0x4469737472756765206d6573616a656c65206d617263617465, 'Y', '2004-08-23 17:52:08'),
(726, 25, 0x4564697465617ac48320646f736172656c65, 'Y', '2011-06-23 17:21:08'),
(727, 25, 0x536574c48372696c652070656e74727520616365617374c48320706172746964c48320617520666f73742025736469737075746174652573, 'Y', '2012-08-17 10:21:45'),
(740, 25, 0x546f617465207072696d697465, 'Y', '2004-08-23 17:52:08'),
(741, 25, 0x5072696e636970616c, 'Y', '2004-08-23 17:52:08'),
(742, 25, 0x4c6164c4832067756e6f69, 'Y', '2004-08-23 17:52:08'),
(743, 25, 0x5472696d697365, 'Y', '2004-08-23 17:52:08'),
(745, 25, 0x4d7574c48320c3ae6e20646f736172756c, 'Y', '2004-08-23 17:52:08'),
(746, 25, 0x4e756d6520646f736172, 'Y', '2004-08-23 17:52:08'),
(744, 25, 0x4d7574c48320647570c4832063652072c4837370756e6420c3ae6e20646f736172756c, 'Y', '2004-08-24 12:08:16'),
(156, 25, 0x496e666f726d61c5a3696920706572736f6e616c6520736368696d6261746521, 'Y', '2004-08-24 12:08:16'),
(157, 25, 0x5061726f6cc48320736368696d626174c48321, 'Y', '2004-08-24 12:08:16'),
(158, 25, 0x496e666f726d61c5a3696920636f6e7420736368696d6261746521, 'Y', '2004-08-24 12:08:16'),
(175, 25, 0x416c74656c653a, 'Y', '2004-08-24 12:08:16'),
(176, 25, 0xc5a26172c483, 'Y', '2004-08-24 12:08:16'),
(177, 25, 0x4c6f63616c6974617465, 'Y', '2004-08-24 12:08:16'),
(178, 25, 0x4a756465c5a3, 'Y', '2004-08-24 12:08:16'),
(179, 25, 0x436c7562, 'Y', '2004-08-24 12:08:16'),
(180, 25, 0x506167696ec48320706572736f6e616cc483, 'Y', '2004-08-24 12:08:16'),
(181, 25, '', 'Y', '2012-08-17 10:38:03'),
(182, 25, 0x4e756dc4837220494351, 'Y', '2004-08-24 12:08:16'),
(183, 25, 0x507265666572696ec5a365206a6f63, 'Y', '2004-08-24 12:08:16'),
(184, 25, 0x486f626279, 'Y', '2004-08-24 12:08:16'),
(185, 25, 0x4f63757061c5a36965, 'Y', '2004-08-24 12:08:16'),
(187, 25, 0x536368696d62c48320696e666f726d61c5a3696920706572736f6e616c65, 'Y', '2004-11-18 10:37:10'),
(188, 25, 0x4564697465617ac483207061726f6c61, 'Y', '2004-08-24 12:08:16'),
(189, 25, 0x5061726f6c6120637572656e74c483, 'Y', '2004-08-24 12:08:16'),
(190, 25, 0x5061726f6c61206e6f75c483, 'Y', '2004-08-24 12:08:16'),
(192, 25, 0x536368696d62c483207061726f6c61, 'Y', '2004-08-24 12:08:16'),
(193, 25, 0x46c48372c483, 'Y', '2004-08-24 12:08:16'),
(194, 25, 0x446f6172206174656ec5a3696f6ec4837269, 'Y', '2004-08-24 12:08:16'),
(195, 25, 0x4d7574c483726920c59f69206d6573616a65, 'Y', '2004-08-24 12:08:16'),
(196, 25, 0xc38e6e747265616761207461626cc483206465206a6f6320c59f69206d6573616a65, 'Y', '2004-08-24 12:08:16'),
(197, 25, 0x566572746963616c, 'Y', '2004-08-24 12:08:16'),
(198, 25, 0x4f72697a6f6e74616c, 'Y', '2004-08-24 12:08:16'),
(199, 25, 0x4564697465617ac48320636f6e74, 'Y', '2004-08-24 12:08:16'),
(200, 25, 0x496e666f726d61c5a3696920636f6e74, 'Y', '2004-08-24 12:08:16'),
(206, 25, 0x4174656ec5a3696f6ec4837269207072696e20656d61696c, 'Y', '2004-11-18 10:37:10'),
(207, 25, 0x466f6c6f7365c59f746520736574c48372696c652064696e2062726f77736572, 'Y', '2004-11-18 10:37:10'),
(208, 25, 0x4c696d62c483, 'Y', '2004-08-24 12:08:16'),
(209, 25, 0x467573206f726172, 'Y', '2004-08-24 12:08:16'),
(210, 25, 0x4e6f61707465, 'Y', '2004-08-24 12:08:16'),
(211, 25, 0x4f70c5a369756e69207461626cc483206465206a6f63, 'Y', '2004-08-24 12:08:16'),
(212, 25, 0x44696d656e7369756e65207069617472c483, 'Y', '2004-08-24 12:08:16'),
(213, 25, 0x43756c6f617265206c656d6e, 'Y', '2004-08-24 12:08:16'),
(214, 25, 0x416669c59f61726520636f6f72646f6e617465, 'Y', '2004-08-24 12:08:16'),
(215, 25, 0x5374c3a26e6761, 'Y', '2004-08-24 12:08:16'),
(216, 25, 0x537573, 'Y', '2004-08-24 12:08:16'),
(217, 25, 0x44726561707461, 'Y', '2004-08-24 12:08:16'),
(218, 25, 0x4a6f73, 'Y', '2004-08-24 12:08:16'),
(219, 25, 0x4d617267696e65207461626cc48320726f74756e6a6974c483, 'Y', '2004-08-24 12:13:23'),
(220, 25, 0x4469726563c5a36965206d656e6975, 'Y', '2004-08-24 12:13:23'),
(222, 25, 0x536368696d62c48320696e666f726d61c5a3696920636f6e74, 'Y', '2004-08-24 12:13:23'),
(1018, 2, 0x536c6f76616b69736b, 'Y', '2004-08-25 18:41:45'),
(1023, 2, 0x526f6d616e736b, 'Y', '2004-08-25 18:41:45'),
(378, 25, 0x496e666f726d61c5a369692064657370726520636f6e74756c206d6575, 'Y', '2004-08-27 13:55:07'),
(379, 25, 0x4564697461726520696e666f726d61c5a3696920706572736f6e616c65, 'Y', '2004-08-27 13:55:07'),
(394, 25, 0x556c74696d61206163636573617265, 'Y', '2004-08-27 13:55:07'),
(395, 25, 0x496e666f726d61c5a3696920706572736f6e616c65, 'Y', '2004-08-27 13:55:07'),
(396, 25, 0x5472696d697465206d6573616a2063c483747265207574696c697a61746f72, 'Y', '2004-08-27 13:55:07'),
(397, 25, 0xc38e6e2064657366c483c59f7572617265, 'Y', '2004-08-27 13:55:07'),
(398, 25, 0x5465726d696e617465, 'Y', '2004-08-27 13:55:07'),
(399, 25, 0x43c3a2c59f746967617465, 'Y', '2004-08-27 13:55:07'),
(400, 25, 0x5069657264757465, 'Y', '2004-08-27 13:55:07'),
(402, 25, 0x41637469766974617465, 'Y', '2004-08-27 13:55:07'),
(463, 25, 0x53756564657ac483, 'Y', '2004-08-27 13:55:07'),
(464, 25, 0x4e6f7276656769616ec483, 'Y', '2004-08-27 13:55:07'),
(465, 25, 0x456e676c657ac483, 'Y', '2004-08-27 13:55:07'),
(466, 25, 0x4765726d616ec483, 'Y', '2004-08-27 13:55:07'),
(467, 25, 0x4672616e63657ac483, 'Y', '2004-08-27 13:55:07'),
(468, 25, 0x5370616e696f6cc483, 'Y', '2004-08-27 13:55:07'),
(469, 25, 0x436568c483, 'Y', '2004-08-27 13:55:07'),
(470, 25, 0x4368696e657ac48320287472616469c5a3696f6e616cc48329, 'Y', '2004-08-27 13:55:07'),
(3227, 17, '', 'Y', '2013-08-21 00:43:28'),
(472, 25, 0x4368696e657ac483202873696d706c696669636174c48329, 'Y', '2004-08-27 13:55:07'),
(473, 25, 0x44616e657ac483, 'Y', '2004-08-27 13:55:07'),
(479, 25, 0x546861696c616e64657ac483, 'Y', '2004-08-27 17:50:05'),
(494, 25, 0x496e666f726d61c5a3696920636f6e742070656e747275202573, 'Y', '2004-08-27 13:55:07'),
(500, 25, 0x46696e6c616e64657ac483, 'Y', '2004-08-27 13:55:07'),
(731, 25, 0x4564697461726520646f73617265206375206d6573616a65, 'Y', '2004-08-27 13:55:07'),
(736, 25, 0x506172746964652063c3a2c59f746967617465, 'Y', '2004-08-27 13:55:07'),
(737, 25, 0x50617274696465207069657264757465, 'Y', '2004-08-27 13:55:07'),
(738, 25, 0x536368696d62c4832064757261746120766163616ec5a36569, 'Y', '2004-08-27 13:55:07'),
(739, 25, 0xc38e6e6365706520766163616ec5a361, 'Y', '2004-08-27 13:55:07'),
(750, 25, 0x436f7265616ec483, 'Y', '2004-08-27 13:55:07'),
(954, 25, 0x527573c483, 'Y', '2004-08-27 13:55:07'),
(955, 25, 0x566163616ec5a3c483, 'Y', '2004-08-27 13:55:07'),
(956, 25, 0x4e6520636572656d2073637579652c20646172206e7520706fc5a36920736368696d62612064757261746120766163616ec5a36569206163756d2e, 'Y', '2004-08-27 13:55:07'),
(957, 25, 0x44757261746120766163616ec5a36569206120666f737420736368696d626174c483, 'Y', '2004-08-27 13:55:07'),
(958, 25, 0x4164617567c483, 'Y', '2004-08-27 13:55:07'),
(960, 25, 0x416c6567652064757261746120766163616ec5a36569, 'Y', '2004-08-27 13:55:07'),
(962, 25, 0x56616361c5a3c48320706cc483637574c48321, 'Y', '2004-08-27 15:47:36'),
(997, 25, 0x506f6c6f6e657ac483, 'Y', '2004-08-27 15:47:36'),
(998, 25, 0x4974616c69616ec483, 'Y', '2004-08-27 15:47:36'),
(1003, 25, 0x42617363c483, 'Y', '2004-08-27 15:47:36'),
(1014, 25, '', 'Y', '2012-08-17 10:38:03'),
(1015, 25, '', 'Y', '2012-08-17 10:38:03'),
(1018, 25, 0x536c6f766163c483, 'Y', '2004-08-27 15:47:36'),
(1023, 25, 0x526f6dc3a26ec483, 'Y', '2004-08-27 15:47:36'),
(136, 25, '', 'Y', '2012-08-17 10:38:03'),
(159, 25, 0x446f63756d656e7461c5a36965, 'Y', '2004-08-27 15:47:36'),
(161, 25, 0xc38e6e74726562c4837269206672656376656e7465, 'Y', '2004-08-27 15:47:36'),
(163, 25, 0x506572736f616e65, 'Y', '2004-08-27 15:47:36'),
(164, 25, 0x63696e6520636f6e74726962756965206c612064657a766f6c746172656120736974652d756c756920447261676f6e, 'Y', '2004-08-27 15:47:36'),
(165, 25, 0x4c6567c48374757269, 'Y', '2004-08-27 15:47:36'),
(168, 25, 0x496e7374727563c5a369756e6920646520696e7374616c617265, 'Y', '2004-08-27 15:47:36'),
(169, 25, 0x646163c48320767265692073c48320616920447261676f6e756c2074c4837520706572736f6e616c, 'Y', '2004-08-27 15:47:36'),
(170, 25, 0x44657363617263c4832073757273656c6520447261676f6e756c7569, 'Y', '2004-08-27 15:47:36'),
(173, 25, 0x506167696e612070726f69656374756c756920447261676f6e206c6120736f75726365666f726765, 'Y', '2004-08-27 15:47:36'),
(256, 25, 0x496e666f726d61c5a369692067656e6572616c65, 'Y', '2004-08-27 15:47:36'),
(257, 25, 0x506167696e696c65206c7569204a616e2076616e2064657220537465656e73, 'Y', '2004-08-27 15:47:36'),
(258, 25, 0x4f206d756cc5a3696d6520646520696e666f726d61c5a369692064657370726520676f, 'Y', '2004-08-27 15:47:36'),
(259, 25, 0x46415120476f, 'Y', '2004-08-27 15:47:36'),
(260, 25, 0xc38e6e74726562c4837269206672656376656e74652064657370726520676f207065206e65777367726f75702d756c207265632e67616d65732e676f, 'Y', '2004-08-27 16:04:19'),
(265, 25, '', 'Y', '2012-08-17 10:38:03'),
(266, 25, 0x556e20736974652077656220636f6c61626f72617469762e2043697465c59f74652d6c20c59f6920636f6e7472696275696521, 'Y', '2004-08-27 16:26:55'),
(267, 25, '', 'Y', '2012-08-17 10:38:03'),
(271, 25, '', 'Y', '2012-08-17 10:38:03'),
(272, 25, 0x4d616e67612064657370726520676f2e205265636f6d616e64617421, 'Y', '2004-08-27 16:26:55'),
(273, 25, 0x526567756c69, 'Y', '2004-08-27 16:03:21'),
(274, 25, 0x4f20696e74726f64756365726520696e7465726163746976c483, 'Y', '2004-08-27 16:03:21'),
(275, 25, 0x556e2073697465207072696574656e6f732070656e747275206120c3ae6e76c483c5a3612e, 'Y', '2004-08-27 16:03:21'),
(276, 25, 0x4f20696e74726f6475636572652062696e65207363726973c483206465204272697469736820476f204173736f63696174696f6e2e, 'Y', '2004-08-27 16:26:55'),
(281, 25, 0x53747261746567696520c59f69207465726d656e69, 'Y', '2004-08-27 16:26:55'),
(283, 25, 0x50726f626c656d6520646520676f, 'Y', '2004-08-27 16:26:55'),
(284, 25, 0x4c756372c3a26e64206c6120656c6520c3aec5a36920706fc5a36920c3ae6d62756ec48374c483c5a369206a6f63756c2e, 'Y', '2004-08-27 16:26:55'),
(756, 25, 0x416667616e697374616e, 'Y', '2004-08-27 16:44:46'),
(757, 25, '', 'Y', '2012-08-17 10:38:03'),
(758, 25, '', 'Y', '2012-08-17 10:38:03'),
(759, 25, 0x416e646f7261, 'Y', '2004-08-27 16:44:46'),
(760, 25, '', 'Y', '2012-08-17 10:38:03'),
(761, 25, '', 'Y', '2012-08-17 10:38:03'),
(763, 25, '', 'Y', '2012-08-17 10:38:03'),
(764, 25, '', 'Y', '2012-08-17 10:38:03'),
(765, 25, '', 'Y', '2012-08-17 10:38:03'),
(766, 25, '', 'Y', '2012-08-17 10:38:03'),
(767, 25, '', 'Y', '2012-08-17 10:38:03'),
(768, 25, '', 'Y', '2012-08-17 10:38:03'),
(769, 25, '', 'Y', '2012-08-17 10:38:03'),
(770, 25, '', 'Y', '2012-08-17 10:38:03'),
(771, 25, '', 'Y', '2012-08-17 10:38:03'),
(773, 25, 0x42656c676961, 'Y', '2004-08-27 16:44:46'),
(774, 25, '', 'Y', '2012-08-17 10:38:03'),
(775, 25, '', 'Y', '2012-08-17 10:38:03'),
(776, 25, '', 'Y', '2012-08-17 10:38:03'),
(777, 25, '', 'Y', '2012-08-17 10:38:03'),
(779, 25, '', 'Y', '2012-08-17 10:38:03'),
(780, 25, 0x4272617a696c6961, 'Y', '2004-08-27 16:44:46'),
(782, 25, '', 'Y', '2012-08-17 10:38:03'),
(783, 25, '', 'Y', '2012-08-17 10:38:03'),
(784, 25, '', 'Y', '2012-08-17 10:38:03'),
(786, 25, 0x43616d6572756e, 'Y', '2004-08-27 16:44:46'),
(787, 25, '', 'Y', '2012-08-17 10:38:03'),
(788, 25, 0x436170756c205665726465, 'Y', '2004-08-27 16:44:46'),
(901, 25, 0x526f6dc3a26e6961, 'Y', '2004-08-27 16:44:46'),
(789, 25, 0x52657075626c6963612043656e7472616c204166726963616ec483, 'Y', '2004-08-27 17:19:17'),
(791, 25, '', 'Y', '2012-08-17 10:38:03'),
(792, 25, '', 'Y', '2012-08-17 10:38:03'),
(793, 25, 0x436f6c756d626961, 'Y', '2004-08-27 17:19:17'),
(797, 25, '', 'Y', '2012-08-17 10:38:03'),
(798, 25, 0x436f617374612064652046696c6465c59f, 'Y', '2004-08-27 17:19:17'),
(799, 25, 0x43726f61c5a36961, 'Y', '2004-08-27 17:19:17'),
(800, 25, '', 'Y', '2012-08-17 10:38:03'),
(801, 25, 0x4369707275, 'Y', '2004-08-27 17:19:17'),
(802, 25, 0x52657075626c69636120436568c483, 'Y', '2004-08-27 17:19:17'),
(803, 25, 0x44616e656d61726361, 'Y', '2004-08-27 17:19:17'),
(806, 25, 0x446f6d696e6963616ec4832c2052657075626c696361, 'Y', '2004-08-27 17:38:17'),
(808, 25, '', 'Y', '2012-08-17 10:38:03'),
(809, 25, 0x4567697074, 'Y', '2004-08-27 17:19:17'),
(810, 25, '', 'Y', '2012-08-17 10:38:03'),
(813, 25, '', 'Y', '2012-08-17 10:38:03'),
(814, 25, 0x4574696f706961, 'Y', '2004-08-27 17:19:17'),
(815, 25, '', 'Y', '2012-08-17 10:38:03'),
(816, 25, 0x46696e6c616e6461, 'Y', '2004-08-27 17:19:17'),
(817, 25, 0x4672616ec5a361, 'Y', '2004-08-27 17:19:17'),
(820, 25, '', 'Y', '2012-08-17 10:38:03'),
(821, 25, 0x4765726d616e6961, 'Y', '2004-08-27 17:19:17'),
(823, 25, 0x477265636961, 'Y', '2004-08-27 17:19:17'),
(825, 25, '', 'Y', '2012-08-17 10:38:03'),
(828, 25, '', 'Y', '2012-08-17 10:38:03'),
(829, 25, '', 'Y', '2012-08-17 10:38:03'),
(830, 25, '', 'Y', '2012-08-17 10:38:03'),
(831, 25, '', 'Y', '2012-08-17 10:38:03'),
(832, 25, 0x556e6761726961, 'Y', '2004-08-27 17:19:17'),
(833, 25, 0x49736c616e6461, 'Y', '2004-08-27 17:19:17'),
(834, 25, '', 'Y', '2012-08-17 10:38:03'),
(835, 25, 0x496e646f6e657a6961, 'Y', '2004-08-27 17:19:17'),
(836, 25, '', 'Y', '2012-08-17 10:38:03'),
(837, 25, 0x4972616b, 'Y', '2004-08-27 17:19:17'),
(838, 25, 0x49726c616e6461, 'Y', '2004-08-27 17:19:17'),
(839, 25, '', 'Y', '2012-08-17 10:38:03'),
(840, 25, 0x4974616c6961, 'Y', '2004-08-27 17:19:17'),
(842, 25, 0x4a61706f6e6961, 'Y', '2004-08-27 17:19:17'),
(843, 25, 0x496f7264616e6961, 'Y', '2004-08-27 17:19:17'),
(845, 25, '', 'Y', '2012-08-17 10:38:03'),
(849, 25, 0x4b7577656974, 'Y', '2004-08-27 17:38:17'),
(851, 25, '', 'Y', '2012-08-17 10:38:03'),
(853, 25, 0x4c6962616e, 'Y', '2004-08-27 17:19:17'),
(856, 25, 0x4c69626961, 'Y', '2004-08-27 17:19:17'),
(857, 25, '', 'Y', '2012-08-17 10:38:03'),
(858, 25, 0x4c697475616e6961, 'Y', '2004-08-27 17:19:17'),
(859, 25, 0x4c7578656d62757267, 'Y', '2004-08-27 17:19:17'),
(861, 25, '', 'Y', '2012-08-17 10:38:03'),
(862, 25, '', 'Y', '2012-08-17 10:38:03'),
(864, 25, 0x4d616c61657a6961, 'Y', '2004-08-27 17:19:17'),
(865, 25, 0x4d616c64697665, 'Y', '2004-08-27 17:19:17'),
(867, 25, '', 'Y', '2012-08-17 10:38:03'),
(868, 25, 0x496e73756c656c65204d61727368616c6c, 'Y', '2004-08-27 17:19:17'),
(869, 25, '', 'Y', '2012-08-17 10:38:03'),
(871, 25, 0x4d65786963, 'Y', '2004-08-27 17:19:17'),
(872, 25, 0x4d6963726f6e657a6961, 'Y', '2004-08-27 17:19:17'),
(873, 25, 0x4d6f6c646f7661, 'Y', '2004-08-27 17:19:17'),
(874, 25, '', 'Y', '2012-08-17 10:38:03'),
(875, 25, '', 'Y', '2012-08-17 10:38:03'),
(876, 25, 0x4d61726f63, 'Y', '2004-08-27 17:19:17'),
(877, 25, 0x4d6f7a616d626963, 'Y', '2004-08-27 17:19:17'),
(881, 25, '', 'Y', '2012-08-17 10:38:03'),
(882, 25, 0x4f6c616e6461, 'Y', '2004-08-27 17:19:17'),
(883, 25, 0x4e6f7561205a65656c616e64c483, 'Y', '2004-08-27 17:19:17'),
(884, 25, '', 'Y', '2012-08-17 10:38:03'),
(885, 25, '', 'Y', '2012-08-17 10:38:03'),
(886, 25, '', 'Y', '2012-08-17 10:38:03'),
(887, 25, 0x4e6f727665676961, 'Y', '2004-08-27 17:19:17'),
(889, 25, '', 'Y', '2012-08-17 10:38:03'),
(892, 25, 0x50616e616d61, 'Y', '2004-08-27 17:19:17'),
(893, 25, 0x5061707561204e6f7561204775696e6565, 'Y', '2004-08-27 17:19:17'),
(894, 25, 0x5061726167756169, 'Y', '2004-08-27 17:19:17'),
(895, 25, '', 'Y', '2012-08-17 10:38:03'),
(896, 25, 0x46696c6970696e65, 'Y', '2004-08-27 17:19:17'),
(897, 25, 0x506f6c6f6e6961, 'Y', '2004-08-27 17:19:17'),
(898, 25, 0x506f72747567616c6961, 'Y', '2004-08-27 17:19:17'),
(899, 25, '', 'Y', '2012-08-17 10:38:03'),
(900, 25, '', 'Y', '2012-08-17 10:38:03'),
(902, 25, 0x5275736961, 'Y', '2004-08-27 17:19:17'),
(903, 25, '', 'Y', '2012-08-17 10:38:03'),
(908, 25, '', 'Y', '2012-08-17 10:38:03'),
(910, 25, 0x41726162696120536175646974c483, 'Y', '2004-08-27 17:19:17'),
(911, 25, '', 'Y', '2012-08-17 10:38:03'),
(914, 25, '', 'Y', '2012-08-17 10:38:03'),
(915, 25, '', 'Y', '2012-08-17 10:38:03'),
(916, 25, 0x536c6f7661636961, 'Y', '2004-08-27 17:19:17'),
(917, 25, 0x536c6f76656e6961, 'Y', '2004-08-27 17:19:17'),
(918, 25, 0x496e73756c656c6520536f6c6f6d6f6e, 'Y', '2004-08-27 17:19:17'),
(919, 25, '', 'Y', '2012-08-17 10:38:03'),
(920, 25, 0x41667269636120646520537564, 'Y', '2004-08-27 17:19:17'),
(921, 25, 0x5370616e6961, 'Y', '2004-08-27 17:19:17'),
(922, 25, '', 'Y', '2012-08-17 10:38:03'),
(923, 25, '', 'Y', '2012-08-17 10:38:03'),
(926, 25, 0x537565646961, 'Y', '2004-08-27 17:19:17'),
(927, 25, 0x456c7665c5a36961, 'Y', '2004-08-27 17:19:17'),
(928, 25, 0x5369726961, 'Y', '2004-08-27 17:19:17'),
(929, 25, '', 'Y', '2012-08-17 10:38:03'),
(931, 25, '', 'Y', '2012-08-17 10:38:03'),
(932, 25, 0x546861696c616e6461, 'Y', '2004-08-27 17:51:43'),
(933, 25, '', 'Y', '2012-08-17 10:38:03'),
(934, 25, '', 'Y', '2012-08-17 10:38:03'),
(935, 25, '', 'Y', '2012-08-17 10:38:03'),
(936, 25, '', 'Y', '2012-08-17 10:38:03'),
(937, 25, 0x547572636961, 'Y', '2004-08-27 17:19:17'),
(938, 25, '', 'Y', '2012-08-17 10:38:03'),
(939, 25, '', 'Y', '2012-08-17 10:38:03'),
(940, 25, '', 'Y', '2012-08-17 10:38:03'),
(941, 25, 0x55637261696e61, 'Y', '2004-08-27 17:19:17'),
(942, 25, 0x456d69726174656c6520417261626520556e697465, 'Y', '2004-08-27 17:19:17'),
(943, 25, 0x4d617265612042726974616e6965, 'Y', '2004-08-27 17:19:17'),
(944, 25, 0x53746174656c6520556e69746520616c6520416d657269636969, 'Y', '2004-08-27 17:19:17'),
(945, 25, 0x55727567756169, 'Y', '2004-08-27 17:19:17'),
(946, 25, '', 'Y', '2012-08-17 10:38:03'),
(947, 25, '', 'Y', '2012-08-17 10:38:03'),
(948, 25, 0x5661746963616e, 'Y', '2004-08-27 17:19:17'),
(949, 25, '', 'Y', '2012-08-17 10:38:03'),
(950, 25, '', 'Y', '2012-08-17 10:38:03'),
(951, 25, '', 'Y', '2012-08-17 10:38:03'),
(952, 25, '', 'Y', '2012-08-17 10:38:03'),
(953, 25, '', 'Y', '2012-08-17 10:38:03'),
(762, 25, 0x416e746967756120c59f692042617262756461, 'N', '2004-08-27 17:38:17'),
(790, 25, 0x43696164, 'Y', '2004-08-27 17:38:17'),
(794, 25, 0x436f6d6f7265, 'Y', '2004-08-27 17:38:17'),
(804, 25, '', 'Y', '2012-08-17 10:38:03'),
(805, 25, '', 'Y', '2012-08-17 10:38:03'),
(811, 25, 0x4775696e6565612065637561746f7269616c61, 'Y', '2004-08-27 17:38:17'),
(812, 25, '', 'Y', '2012-08-17 10:38:03'),
(818, 25, '', 'Y', '2012-08-17 10:38:03'),
(819, 25, '', 'Y', '2012-08-17 10:38:03'),
(822, 25, '', 'Y', '2012-08-17 10:38:03'),
(824, 25, '', 'Y', '2012-08-17 10:38:03'),
(826, 25, 0x4775696e656561, 'Y', '2004-08-27 17:38:17'),
(827, 25, 0x4775696e65656120426973736175, 'Y', '2004-08-27 17:38:17'),
(841, 25, '', 'Y', '2012-08-17 10:38:03'),
(850, 25, 0x4b69726768697a6961, 'Y', '2004-08-27 17:38:17'),
(854, 25, '', 'Y', '2012-08-17 10:38:03'),
(855, 25, '', 'Y', '2012-08-17 10:38:03'),
(863, 25, '', 'Y', '2012-08-17 10:38:03'),
(866, 25, '', 'Y', '2012-08-17 10:38:03'),
(870, 25, 0x4d6175726974616e6961, 'Y', '2004-08-27 17:38:17'),
(879, 25, '', 'Y', '2012-08-17 10:38:03'),
(888, 25, '', 'Y', '2012-08-17 10:38:03'),
(904, 25, 0x5361696e74204b6974747320c59f69204e65766973, 'Y', '2004-08-27 17:38:17'),
(905, 25, '', 'Y', '2012-08-17 10:38:03'),
(906, 25, 0x5361696e742056696e63656e7420c59f69204772656e6164696e65, 'Y', '2004-08-27 17:38:17'),
(909, 25, 0x53616f20546f6d6520c59f69205072696e63697065, 'Y', '2004-08-27 17:38:17'),
(913, 25, '', 'Y', '2012-08-17 10:38:03'),
(924, 25, 0x537572696e616d, 'Y', '2004-08-27 17:38:17'),
(925, 25, '', 'Y', '2012-08-17 10:38:03'),
(930, 25, 0x5461646a696b697374616e, 'Y', '2004-08-27 17:38:17'),
(393, 25, 0x446174c48320c3ae6e72656769737472617265, 'Y', '2004-08-27 17:50:05'),
(1018, 23, 0xe382b9e383ade38390e382ade382a2e8aa9e, 'Y', '2004-08-30 08:30:29'),
(1023, 23, 0xe383abe383bce3839ee3838be382a2e8aa9e, 'Y', '2004-08-30 08:30:29'),
(298, 23, 0xe59bb2e7a281e69cace383ace38393e383a5e383bce381aee99b86e381bee3828a, 'Y', '2004-08-30 08:30:29'),
(299, 23, 0xe383a8e383bce383ade38383e38391e5ba97, 'Y', '2004-08-30 08:30:29'),
(301, 23, 0xe382bfe383bce383b3e38399e383bce382b9e38082e4bb96e381aee382b2e383bce383a0e38282e5b9bee381a4e3818be69c89e3828ae381bee38199e38082, 'Y', '2004-08-30 08:30:29'),
(303, 23, 0xe5a4a7e3818de38184e5ae9fe69982e99693e587a6e79086e59bb2e7a281e382b5e383bce38390e383bc, 'Y', '2004-08-30 08:30:29'),
(306, 23, 0xe38282e381a3e381a8e995b7e38184e59bb2e7a281e382b5e383bce38390e383bce383aae382b9e38388, 'Y', '2004-08-30 08:30:29'),
(19, 23, 0xe38387e383bce382bfe38399e383bce382b9e38292e981b8e381b9e381bee3819be38293e381a7e38197e3819fe38082e69aabe3818fe5be85e381a3e381a6e3818be38289e5868de8a9a6e38197e381a6e4b88be38195e38184e38082, 'Y', '2004-08-30 08:30:29'),
(20, 23, 0xe5afbee5b180e38292e9968be5a78be587bae69da5e381bee3819be38293e381a7e38197e3819fe38082e69aabe3818fe5be85e381a3e381a6e3818be38289e5868de8a9a6e38197e381a6e4b88be38195e38184e38082, 'Y', '2004-08-30 08:30:29'),
(27, 23, 0xe981a9e58887e381aae3838fe383b3e38387e38292e58585e381a6e3828be782bae38081e38182e381aae3819fe381a8e38182e381aae3819fe381aee79bb8e6898be381afe5889de69c9fe6a38be58a9be38292e8a8ade5ae9ae38199e3828be5bf85e8a681e3818ce69c89e3828ae381bee38199e38082, 'Y', '2004-08-30 08:30:29'),
(29, 23, 0xe38193e381aee6938de4bd9ce381afe382b2e382b9e38388e3818ce588a9e794a8e587bae69da5e381bee3819be38293e38082e5808be4babae382a2e382abe382a6e383b3e38388e38292e799bbe98cb2e38197e381a6e3818be38289e38081e5868de8a9a6e38197e381a6e4b88be38195e38184e38082, 'Y', '2004-08-30 08:30:29'),
(501, 23, 0xe38389e383a9e382b4e383b3e383a6e383bce382b6e383bce381a8e383a6e383bce382b6e383bce381aee38397e383ade38395e382a3e383ab, 'N', '2004-08-30 08:33:42'),
(502, 23, 0xe59bb2e7a281e794a8e8aa9e, 'Y', '2004-08-30 08:33:42'),
(504, 23, 0xe59bb2e7a281e381aee383abe383bce383ab, 'Y', '2004-08-30 08:33:42'),
(505, 23, 0xe79bae, 'Y', '2004-08-30 08:33:42'),
(507, 23, 0xe382b3e3839f, 'Y', '2004-08-30 08:33:42'),
(509, 23, 0xe38389e383a9e382b4e383b3e382a8e38381e382b1e38383e38388, 'Y', '2004-08-30 08:33:42'),
(510, 23, 0xe38389e383a9e382b4e383b3e38395e382a9e383bce383a9e383a0, 'N', '2004-08-30 08:33:42'),
(511, 23, 0xe38389e383a9e382b4e383b3e383a1e3838be383a5e383bce381a8e382aae38397e382b7e383a7e383b3, 'Y', '2004-08-30 08:33:42'),
(286, 25, 0x5472696d6974652dc5a36920706172746964656c652070656e747275206120666920636f6d656e746174652c2063612073c4832076657a6920756e646520707574656169206a756361206d61692062696e652e, 'Y', '2004-08-30 15:46:01'),
(287, 25, 0x5465726d656e69206a61706f6e657a6920646520676f206672656376656ec5a369, 'Y', '2004-08-30 15:46:01'),
(288, 25, 0x50656e747275206120c59f746920636520766f7262657363206365696c616cc5a369206a7563c483746f72692e, 'Y', '2004-08-30 15:46:01'),
(291, 25, 0x4973746f726965, 'Y', '2004-08-30 15:46:01'),
(292, 25, 0x4f206973746f726965207065207363757274, 'Y', '2004-08-30 15:46:01'),
(293, 25, 0x50656e74727520766f692c20636569206772c4836269c5a3692e, 'Y', '2004-08-30 15:46:01'),
(294, 25, 0x4973746f726961207065206c617267, 'Y', '2004-08-30 15:46:01'),
(295, 25, 0x446163c48320646f7265c59f74692073c4832064657669692061746f617465c59f746975746f722e, 'Y', '2004-08-30 15:47:46'),
(296, 25, 0x43c48372c5a3692064657370726520476f2c207363686970616d656e7420c59f6920736f667477617265, 'Y', '2004-08-30 15:46:01'),
(297, 25, 0x4269626c696f67726166696520636f6d656e746174c4832064657370726520476f, 'Y', '2004-08-30 15:46:01'),
(298, 25, 0x4f20636f6c6563c5a3696520616d706cc48320646520726563656e7a696920616c652063c48372c5a3696c6f7220646520676f, 'Y', '2004-08-30 15:50:20'),
(299, 25, 0x4d6167617a696e206575726f7065616e, 'Y', '2004-08-30 15:46:01'),
(300, 25, 0x416c7465207365727665726520646520676f, 'Y', '2004-08-30 15:46:01'),
(301, 25, 0x4465206173656d656e65612c207072696e20636f726573706f6e64656ec5a3c4832e204d61692061726520c59f6920616c7465206a6f637572692e, 'Y', '2004-08-30 15:46:01'),
(303, 25, 0x556e20736572766572206d6172652070656e747275206a6f63756c2022c3ae6e2064697265637422, 'Y', '2004-08-30 15:50:20'),
(305, 25, 0x4c697374c4832064652073657276657265, 'Y', '2004-08-30 15:46:01'),
(306, 25, 0x4f206c697374c483206d6169206d617265206465207365727665726520646520676f, 'Y', '2004-08-30 15:46:01'),
(337, 25, 0x44657a766f6c7461746f726920616920736974652d756c756920447261676f6e, 'Y', '2004-09-02 13:05:56'),
(6084, 36, 0x46656c74c3a974656c6573206cc3a970c3a973656b, 'Y', '2015-07-23 12:16:04'),
(774, 36, '', 'Y', '2015-09-18 21:08:14'),
(340, 25, 0x456469746f7220464151, 'Y', '2004-09-02 13:05:56'),
(385, 25, 0x53756269656374206e6f75, 'N', '2004-09-02 13:05:56'),
(501, 25, 0x5574696c697a61746f726920447261676f6e20c59f6920696e666f726d61c5a369696c6520646573707265207574696c697a61746f7269, 'N', '2004-09-02 13:58:19'),
(502, 25, 0x5465726d656e692064696e20476f, 'Y', '2004-09-02 13:58:19'),
(503, 25, 0x536974652d7572692064657370726520476f, 'Y', '2004-09-02 13:58:19'),
(504, 25, 0x526567756c696c65206a6f63756c756920476f, 'Y', '2004-09-02 13:58:19'),
(505, 25, '', 'Y', '2012-08-17 10:38:03'),
(506, 25, 0xc38e6e7365616d6ec4832070756e63742e204f206c6962657274617465207065207461626c61206465206a6f632e, 'N', '2004-09-02 13:58:19'),
(507, 25, '', 'Y', '2012-08-17 10:38:03'),
(508, 25, 0x556e206e756dc48372206465203c6120687265663d222f6661712e7068703f726561643d74266361743d3323456e74727938223e6d6f6b753c2f613e206461c5a36920c3ae6e20706c757320616c62756c75692070656e747275206120636f6d70656e7361206176616e74616a756c207065206361726520736520707265737570756e652063c48320c3ae6c20617265206e656772756c2064656f6172656365206d7574c483207072696d756c2e, 'N', '2004-09-02 13:58:19'),
(510, 25, 0x4275672d7572696c6520447261676f6e, 'N', '2005-06-24 20:43:54'),
(511, 25, 0x4d656e697572696c6520c59f69206f70c5a369756e696c6520447261676f6e, 'Y', '2004-09-02 13:58:19'),
(512, 25, 0x506172746964656c6520447261676f6e, 'Y', '2004-09-02 13:58:19'),
(513, 25, 0x44657a766f6c746172656120736974652d756c756920447261676f6e, 'Y', '2004-09-02 13:58:19'),
(514, 25, 0x43756d2066756e63c5a3696f6e65617ac48320616365737420464151, 'Y', '2004-09-02 13:58:19'),
(515, 25, 0x4641512d756c20447261676f6e20646570696e64652064652072656163c5a369696c65203c423e74616c653c2f423e20c59f6920616c652063656c6f726c616cc5a369207574696c697a61746f72693a20446163c4832067c4837365c59f7469206f20c3ae6e74726562617265206672656376656e74c48320c59f6920756e2072c4837370756e7320616465637661742c20746520696e766974c4836d2073c48320c3ae6c2065646974657a692e204f20616c7465726e61746976c4832061722066692073c4832072657a756d6920756e2073756269656374206361726520746520696e746572657365617ac4832073637269696e642070726f707269756c2074c483752046415120637520c3ae6e74726562c483726920c59f692072c4837370756e737572692e20546520727567c4836d2073c483207472696d69c5a3692073756765737469696c652c20c3ae6e74726562c48372696c6520c59f6920616c746520636f6e7472696275c5a36969206c61203c6120687265663d222f70686f72756d2f6c6973742e7068703f663d3322205441524745543d225f626c616e6b223e666f72756d2d756c204641513c2f613e2e20447570c4832063c3a274657661207a696c6520646520636f6d656e74617269692c207661206170c4837265612064657374756c2064652072657065646520c59f6920c3ae6e206163657374204641512e, 'Y', '2004-09-02 13:58:19'),
(518, 25, '', 'N', '2012-08-17 10:38:03'),
(519, 25, 0x4e6967697269206573746520756e206d6f642064652061206465636964652063617265206a7563c483746f72207661206a7563612063752070696573656c65206e656772652e20556e756c2064696e747265206a7563c483746f726920696120c3ae6e206dc3a26ec48320756e206e756dc48372206f6172656361726520646520706965736520616c62652e20416c20646f696c6561206a7563c483746f722070756e65207065207461626c61206465206a6f6320756e612073617520646f75c483207069657365206e656772652070656e747275206120696e6469636120646163c48320656c2063726564652063c483206164766572736172756c2061726520c3ae6e206dc3a26ec48320756e206e756dc48372207061722073617520696d70617220646520706965736520616c62652e20446163c4832067686963657374652c206a6f6163c483206375206e656772656c652c2064616361206e752c20637520616c62656c652e0d0a45766964656e742c20706520447261676f6e206163657374206c7563727520652064657465726d696e6174206465207365727665722e2043696e65206a6f6163c4832063752070696573656c6520616c62652c207072696d65c59f746520362e35206b6f6d692e0d0a45206465207072656665726174206361206e69676972692073c4832066696520666f6c6f73697420c3ae6e747265206a7563c483746f7269206465206163656c61c59f69206e6976656c2e, 'N', '2004-09-02 13:58:19'),
(1018, 7, 0x536c6f76656e736b79, 'Y', '2004-09-02 16:11:01'),
(1023, 7, 0x52756d756e736b79, 'Y', '2004-09-02 16:11:01'),
(287, 7, '', 'Y', '2004-09-02 16:23:40'),
(288, 7, 0x4dec6c692062797374652076ec64ec742c206f20e8656d206d6c7576ed206a696eed206872e1e8692e, 'Y', '2004-09-02 16:23:40'),
(291, 7, 0x486973746f726965, 'Y', '2004-09-02 16:23:40'),
(292, 7, '', 'Y', '2004-09-02 16:23:40'),
(294, 7, '', 'Y', '2004-09-02 16:23:40'),
(296, 7, 0x4b6e696879206f20676f2c207679626176656eed206120736f667477617265, 'Y', '2004-09-02 16:23:40'),
(298, 7, 0x526f7a73e1686ce1207362ed726b6120726563656e7aed206b6e6968206f20676f, 'Y', '2004-09-02 16:23:40'),
(299, 7, 0x4576726f70736bfd206f6263686f64, 'Y', '2004-09-02 16:23:40'),
(300, 7, 0x4a696ee92073657276657279207a6162fd76616aed63ed20736520676f, 'Y', '2004-09-02 16:23:40'),
(306, 7, 0xda706c6eec6ab9ed2073657a6e616d20736572766572f9, 'Y', '2004-09-02 16:23:40'),
(284, 7, 0x5472e96e696e6b207a6465206df9be6520706f6d6f6369207a6c6570b96974207661b965206872616eed2e, 'Y', '2004-09-08 17:31:41'),
(286, 7, 0x4e6563687465207369206f6b6f6d656e746f766174207661b965206872792c2061627973746520766964ec6c692c206a616b207365206a65b974ec206df9be657465207a6c6570b969742e, 'Y', '2004-09-08 17:31:41'),
(293, 7, 0x50726f2074792c206b646f2073652076796472beed20736f757374f865646974206a656e206b72e17463652e, 'Y', '2004-09-08 17:31:41'),
(295, 7, 0x50726f2070f8ed7061642c20be652062797374652072e16469207a6e616c692076b9652e, 'Y', '2004-09-08 17:31:41'),
(297, 7, '', 'Y', '2008-01-08 15:28:39'),
(301, 7, 0x54616be9207461686f76fd2e204a736f75206e61206eec6d20692064616cb9ed206872792e, 'Y', '2004-09-08 17:31:41'),
(303, 7, 0x56656c6bfd207365727665722070726f207265616c74696d6520687275, 'Y', '2004-09-08 17:31:41'),
(122, 7, '', 'Y', '2008-01-08 15:28:39'),
(127, 7, '', 'N', '2008-01-08 15:28:39'),
(128, 7, '', 'Y', '2008-01-08 15:28:39'),
(129, 7, '', 'Y', '2008-01-08 15:28:39'),
(5790, 40, 0x4e756c6f, 'Y', '2014-04-13 17:48:31'),
(719, 9, 0x25732076656e636520706f7220252e3166, 'Y', '2004-09-13 04:19:34'),
(1018, 9, 0x45736c6f7661636f, 'Y', '2004-09-13 04:19:34'),
(1023, 9, 0x526f6d656e6f, 'Y', '2004-09-13 04:19:34'),
(730, 9, 0x4564697461722066266561637574653b72696173, 'Y', '2004-09-13 04:19:34'),
(714, 9, 0x44657363756c70652c206e266174696c64653b6f20666f6920706f7373266961637574653b76656c20656e636f6e747261722061207061737461206465206d656e736167656e73206573706563696669636164612e, 'Y', '2004-09-13 04:19:34'),
(549, 9, 0x5175616e746f7320646961732064652066266561637574653b726961732065752074656e686f206e6f20447261676f6e3f, 'Y', '2004-09-13 04:19:34'),
(550, 9, 0x4174266561637574653b20333020286d266161637574653b78696d6f20706f7220616e6f292e20412063616461206d2665636972633b732c20322c3520646961732064652066266561637574653b726961732073266174696c64653b6f2061646963696f6e61646f7320266167726176653b2073756120636f6e74612e20536520766f632665636972633b20266561637574653b206e6f766f206e6f20447261676f6e2c20656e74266174696c64653b6f20766f632665636972633b20636f6d652663636564696c3b6120636f6d20313420646961732064652066266561637574653b726961732e, 'Y', '2004-09-13 04:19:34'),
(727, 9, 0x417320636f6e6669677572612663636564696c3b266f74696c64653b657320646573746520636f6e766974652070617261206a6f676f20666f72616d202573636f6e74657374616461732573, 'Y', '2004-09-13 04:24:01'),
(1018, 11, 0x536c6f7661616b73, 'Y', '2004-09-15 11:35:32'),
(1023, 11, 0x526f656d65656e73, 'Y', '2004-09-15 11:35:32'),
(1016, 11, 0x57656c6b6520726567656c7320776f7264656e206f7020447261676f6e206765627275696b743f, 'Y', '2004-09-15 11:35:32');
INSERT INTO `Translations` (`Original_ID`, `Language_ID`, `Text`, `Translated`, `Updated`) VALUES
(1017, 11, 0x496e20657373656e746965206765627275696b7420447261676f6e206465204a6170616e736520476f20726567656c732e20486965726f70207a696a6e20656e6b656c65207569747a6f6e646572696e67656e3a2074696a646c696d6965742c20706c61617473696e672068616e64696361707374656e656e2c20656e20646520626f726467726f6f7474652e2044657a6520766f6c67656e20647573206e696574206465204a6170616e736520726567656c732c206d616172206c696a6b656e206e75747469676520696e7374656c6c696e67656e20766f6f72206265757274656c696e6773207370656c656e2e0d0a0d0a4b6f72746f6d20447261676f6e3c756c3e3c6c693e6765627275696b742070756e74656e74656c6c696e672076696120676562696564656e2c206f702062617369732076616e20686574206f6f726465656c2076616e206465207370656c6572732c0d0a3c6c693e6865656674206765656e2073757065726b6f20726567656c2c0d0a3c6c693e76657262696564207a656c666d6f6f72642c20656e0d0a3c6c693e737461617420746f65206f6d207a656c662064652068616e64696361707374656e656e20746520706c61617473656e2e3c2f756c3e, 'N', '2004-09-15 11:35:32'),
(1019, 11, 0x4265757274656c696e677320287475726e2d626173656429, 'Y', '2004-09-15 11:35:32'),
(1020, 11, 0x4265757274656c696e677320287475726e2d626173656429207370656c656e2069732065656e206e6965742073696d756c7461616e207370656c656e2076616e207370656c6c656e2e20447573206465207370656c65727320686f6576656e206e6965742073616d656e206f6e6c696e65207465207a696a6e2e20456c6b65207370656c6572206b616e207a696a6e207a657474656e20646f656e2077616e6e6565722068696a2f7a696a2074696a642068656566742e20566f6f726265656c64656e2076616e207475726e2d626173656420676f207a696a6e20736e61696c2d6d61696c2c2076696120656d61696c2c206f662068696572206f7020646520447261676f6e676f7365727665722e205a6965206f6f6b203c6120687265663d2022687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f6661712e7068703f726561643d74266361743d3323456e74727931353322203e45636874652d74696a643c2f613e2e, 'Y', '2004-11-23 09:39:11'),
(1021, 11, 0x45636874652d74696a6420287265616c2d74696d6529, 'Y', '2004-09-15 11:35:32'),
(1022, 11, 0x45636874652d74696a6420287265616c2d74696d6529207370656c656e2069732073696d756c7461616e207370656c656e2e204265696465207370656c657273206d6f6574656e206f7020686574207a656c666465206d6f6d656e74206f6e6c696e65207a696a6e2e2048657420766f6c6c65646967207370656c206d6f6574206265eb696e6469676420776f7264656e20696e20e9e96e207365737369652e20566f6f726265656c64656e2076616e2065636874652d74696a64207370656c656e207a696a6e207370656c656e2061616e2065656e206563687420626f72642c206f662076696120e9e96e2076616e2064652076656c652065636874652d74696a6420736572766572732e205a6965206f6f6b203c6120687265663d2022687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f6661712e7068703f726561643d74266361743d3323456e74727931353222203e4265757274656c696e67733c2f613e2e, 'Y', '2004-09-15 11:35:32'),
(1024, 11, 0x47656c696a6b6f706761616e64207370656c, 'Y', '2004-09-15 11:39:59'),
(1025, 11, 0x45656e207370656c207a6f6e6465723c6120687265663d20226661712e7068703f726561643d74266361743d33353723456e747279393722203e68616e64696361703c2f613e2e203c6120687265663d20226661712e7068703f726561643d74266361743d3323456e7472793922203e4b6f6d693c2f613e20776f7264742062696a206465207569746e6f646967696e672062657061616c742e, 'Y', '2004-09-15 11:39:59'),
(522, 25, 0x45737465206e6f726d616c2073c483207572657a69206375697661202262616674c48322202822676f6f64206c75636b22292063c3a26e6420736520c3ae6e63657065206f20706172746964c4833f, 'Y', '2004-09-15 17:48:09'),
(523, 25, 0x44612e204163657374206c75637275206120666f7374203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f70686f72756d2f726561642e7068703f663d3526693d31343126743d313431223e64697363757461743c2f613e20c3ae6e20646574616c69752e20556e6969206a7563c483746f726920707265666572c48320226f6e656761697368696d617375222e, 'N', '2004-09-15 17:48:09'),
(525, 25, 0x43756d20706f7420737567657261206f20c3ae6d62756ec48374c483c5a3697265206120736974652d756c75693f, 'Y', '2004-09-15 17:48:09'),
(526, 25, 0x546520727567c4836d2073c48320c3aec5a369207472696d69c5a369207375676573746961206c61203c4120485245463d222f70686f72756d2f6c6973742e7068703f663d34223e666f72756d2d756c2070656e747275206469736375c5a369693c2f413e2e0d0a0d0a4f2072657a756d617265206120c3ae6d62756ec48374c483c5a36972696c6f7220636520617520666f73742064656a61206365727574652073756e7420646973706f6e6962696c65207072696e202243c483757461726520c3ae6e20666f72756d2d7572696c6520447261676f6e222c207072696e203c4120485245463d22687474703a2f2f73656e736569732e786d702e6e65742f3f444753576973686c69737422205441524745543d225f626c616e6b223e2244475320776973686c697374206c612053656e7365692773204c696272617279223c2f413e20c59f69207072696e2022706167696e6120435653206368616e67656c6f672070656e7472752070726f69656374756c20447261676f6e206c6120536f75726365666f726765222e, 'N', '2004-09-15 17:50:54'),
(529, 25, 0x556e646520706f742061666c61206d6169206d756c746520696e666f726d61c5a3696920646573707265206f20616e756d6974c48320726567756cc4833f, 'Y', '2004-09-15 17:50:54'),
(530, 25, 0x457870756e652dc5a369206e6564756d65726972656120c3ae6e20666f72756d2d756c204641512073617520666f726d2d756c2064657370726520476f2e20416a7574c48320646163c483206d656ec5a3696f6e657a692070656e7472752063652074697020646520726567756cc4832076726569206d6169206d756c746520696e666f726d61c5a3696920c59f6920c3ae6e206365207369747561c5a369692064696e2074696d70756c20756e6569207061727469646520732d61722061706c6963612e, 'Y', '2004-09-15 17:50:54'),
(1018, 6, 0x45736c6f7661636f, 'Y', '2004-09-17 02:00:53'),
(1023, 6, 0x52756d616e6f, 'Y', '2004-09-17 02:00:53'),
(1016, 6, 0xbf5175e920636f6e6a756e746f206465207265676c61732073652075736120656e20447261676f6e3f, 'Y', '2004-09-17 02:00:53'),
(1017, 6, 0x42e1736963616d656e74652c20447261676f6e207365206261736120656e206c6173207265676c61732064656c20476f206a61706f6ee9732e20436f6e206c612065786365706369f36e206465206c612070726564657465726d696e616369f36e206465206c617320706965647261732064652068e16e64696361702c20656c2074616d61f16f2064656c207461626c65726f2079206c6f73206ced6d69746573206465207469656d706f2e204c6f732076616c6f72657320706f72206465666563746f20737567657269646f7320706f7220447261676f6e206e6f2073696775656e206c6173207265676c6173206a61706f6e65736173206f66696369616c65732c207065726f207061726563656e2073657220fa74696c65732070617261207061727469646173206261736164617320656e207475726e6f732e2e2e0d0a0d0a456e2062726576652c20447261676f6e3c756c3e3c6c693e6261736120656c20636f6e74656f206465207465727269746f72696f20656e206c61206576616c75616369f36e2064656c207461626c65726f20706f72207061727465206465206c6f73206a756761646f7265732c0d0a3c6c693e6e6f207469656e65207265676c612064652073757065726b6f2c0d0a3c6c693e70726f6869626520656c20737569636964696f20790d0a3c6c693e7065726d69746520656c206c6962726520706f736963696f6e616d69656e746f206465206c617320706965647261732064652068e16e64696361702e3c2f756c3e, 'N', '2004-09-17 02:00:53'),
(1019, 6, 0x42617361646f20656e207475726e6f73, 'Y', '2004-09-17 02:00:53'),
(1021, 6, 0x5469656d706f207265616c, 'Y', '2004-09-17 02:00:53'),
(1024, 6, 0x5061727469646120706172656a61, 'Y', '2004-09-17 02:00:53'),
(1025, 6, 0x556e6120706172746964612073696e203c6120687265663d226661712e7068703f726561643d74266361743d33353723456e7472793937223e68e16e64696361703c2f613e2e20456c203c6120687265663d226661712e7068703f726561643d74266361743d3323456e74727939223e4b6f6d693c2f613e2065732064657465726d696e61646f20706f7220656c206a756761646f722071756520696e766974612e, 'Y', '2004-09-17 02:00:53'),
(1020, 6, 0x456c206a7565676f2062617361646f20656e207475726e6f7320657320756e6120666f726d61206173696e6372f36e696361206465206a756761722e20416d626f73206a756761646f726573206e6f206e656365736974616e2065737461722070726573656e746573206f206a7567617220616c206d69736d6f207469656d706f2e20456e2063616d62696f2c2063616461206a756761646f7220707565646520686163657220737573206d6f7669646173206375616e646f207469656e65207469656d706f207061726120656c6c6f2e20456a656d706c6f73206465206a7565676f2062617361646f20656e207475726e6f7320736f6e206a7567617220616c20476f2076696120736e61696c2d6d61696c2c2076696120656d61696c2c206f20617175ed20656e20447261676f6e7365727665722e204c65652074616d6269e96e203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f6661712e7068703f726561643d74266361743d3323456e747279313533223e5469656d706f207265616c3c2f613e2e, 'Y', '2004-09-17 02:04:57'),
(1022, 6, 0x456c206a7565676f20656e207469656d706f207265616c20657320756e6120666f726d612073696e6372f36e696361206465206a756761722e20416d626f73206a756761646f72657320646562656e2065737461722070726573656e746573206f206a7567617220616c206d69736d6f207469656d706f2e20556e61207061727469646120656e74657261207365207465726d696e6120656e20756e612073657369f36e2e20456a656d706c6f73206465206a7565676f20656e207469656d706f207265616c20736f6e20656e20756e207461626c65726f207265616c2c206f2076696120756e6f206465206c6f732074616e746f73207365727669646f726573206465207469656d706f207265616c2e204c65652074616d6269e96e206120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f6661712e7068703f726561643d74266361743d3323456e747279313532223e42617361646f20656e207475726e6f733c2f613e2e, 'Y', '2004-09-17 02:04:57'),
(377, 25, 0x506167696e6120646520c3ae6e74c3a26d70696e617265, 'Y', '2004-09-30 12:29:30'),
(380, 25, 0x416669c59f65617ac483206d6573616a, 'Y', '2004-09-30 12:29:30'),
(383, 25, 0x4c697374612073756269656374656c6f72, 'Y', '2004-09-30 12:29:30'),
(384, 25, 0x43697465c59f746520666f72756d2d756c, 'Y', '2004-09-30 12:29:30'),
(730, 25, 0x536368696d62c48320766163616ec5a361, 'Y', '2004-09-30 12:29:30'),
(509, 25, 0x526567756c6920646520706f6c697465c5a365, 'Y', '2004-09-30 13:09:06'),
(531, 25, 0x436172652073756e7420726567756c696c652064652062617ac48320616c65206a6f63756c756920646520476f3f, 'Y', '2004-09-30 13:15:58'),
(532, 25, 0x446f69206a7563c483746f726920c3ae6e6365617263c4832073c48320c3ae6e636f6e6a6f6172652074657269746f726975207065206f207461626cc483206465206a6f632070c48374726174c4832e205461626c61206465206a6f63206172652031397831392070756e6374652c20646172207365206a6f6163c4832061646573656f726920c59f6920706520397839207361752031337831332e2050652072c3a26e642c206669656361726520706c617365617ac4832070696573652064652063756c6f617265612070726f7072696520706520696e746572736563c5a369696c65206e656f6375706174652e205072696d756c206d7574c483206e656772756c2c2061706f6920616c62756c2e0d0a0d0a446163c4832028c3ae6e2075726d6120756e6569206d7574c48372692920756e756c2064696e20677275707572696c65206164766572736172756c75692072c4836dc3a26e652066c48372c483206e696369206f206c69626572746174652c2070696573656c6520636520636f6d70756e20616365737420677275702073756e74207269646963617465206465207065207461626c61206465206a6f63202873756e74207072697a6f6e69657269292e204f206d7574617265206573746520696e7465727a6973c48320646163c4832c20647570c4832063652073756e74207269646963617465206465207065207461626c61206465206a6f63206576656e7475616c656c652063617074757269207265616c697a6174652064652065612c20756e20677275702070726f707269752072c4836dc3a26e652066c48372c483206c6962657274c483c5a3692e0d0a0d0a447570c48320636520616d626969206a7563c483746f72692070617365617ac483207061727469646120732d61207465726d696e617420c59f692073652063616c63756c65617ac4832073636f72756c3a2070756e6374656c65206e6575747265202864616d65292073756e7420636f6d706c6574617465206961722070696573656c65206d6f617274652073756e74207269646963617465206465207065207461626cc4832e2050756e6374656c6520c3ae6e636f6e6a7572617465206365206661632070617274652064696e2074657269746f7269696c6520616c62756c756920c59f69206e656772756c7569202073756e74206164756e617465206c612070756e6374616a2c2064696e206361726520736520736361642070696573656c65206361707475726174652064652061647665727361722e0d0a0d0a4d6169206d756c746520706f742066692061666c617465206c61203c6120687265663d22687474703a2f2f706c6179676f2e746f2f696e7465726163746976652f696e6465782e68746d6c22207461726765743d6e65773ec38e6e76c483c5a361c5a36920476f20696e74657261637469763c2f613e2e, 'Y', '2004-09-30 13:15:58'),
(533, 25, 0x556e646520706f742067c4837369206d6169206d756c746520706167696e692064657370726520476f3f, 'Y', '2004-10-11 12:58:55'),
(534, 25, 0x4c61203c6120687265663d222f6c696e6b732e706870223e706167696e61206375206c6567c483747572693c2f613e206120736974652d756c756920447261676f6e2e, 'Y', '2004-09-30 13:41:33'),
(535, 25, '', 'Y', '2012-08-17 10:38:03'),
(536, 25, 0x5366c3a272c59f6974756c2070617274696465692e20556c74696d612066617ac48320612070617274696465692c206e75207365206d616920666163206d7574c483726920737472617465676963652c20636172652061746163c48320677275707572692c20636920646f6172206d7574c483726920636520657874696e642074657269746f7269696c65206578697374656e74652e, 'Y', '2004-09-30 13:41:33'),
(537, 25, '', 'N', '2012-08-17 10:38:03'),
(538, 25, 0x41746172692065737465206f20616d656e696ec5a361726520696d696e656e74c48320646520612063617074757261206f2070696573c4832073617520756e20677275702c2063c3a26e64206163657374612072c4836dc3a26e6520646f6172206375206f2073696e677572c483206c69626572746174652e20556e656f7269207365206f6269c59f6e756965c59f746520c59f69206520706f6c697469636f732073c48320616e756ec5a36920224174617269222063c3a26e6420736520616a756e676520c3ae6e74722d6f2061737466656c206465207369747561c5a369652c20646172206e752065737465206f626c696761746f7269752e, 'N', '2004-09-30 13:41:33'),
(539, 25, '', 'Y', '2012-08-17 10:38:03'),
(540, 25, 0x4b6f2065737465206f207369747561c5a36965206170c483727574c483207065207461626c61206465206a6f632063c3a26e64207365207265706574c483206361707475726172656120756e65692073696e677572652070696573652e20c38e6e2074726164756365726520646972656374c483204b6f20c3ae6e7365616d6ec4832022657465726e6974617465222e, 'Y', '2004-09-30 13:41:33'),
(541, 25, 0x4f20706172746964c483207465726d696e6174c4832064696e206361757a6120646570c483c59f697269692074696d70756c7569206465206a6f6320706f61746520666920636f6e74696e756174c4833f, 'Y', '2004-09-30 13:41:33'),
(542, 25, 0x4e752e203c693e56c48320727567c4836d2073c48320c3ae6e63657065c5a36920706172746964656c652075726dc483746f617265206375203c6120687265663d222f6661712e7068703f726561643d74266361743d3536223e736574c483726920706f747269766974652070656e7472752074696d703c2f613e213c2f693e, 'Y', '2004-09-30 13:41:33'),
(545, 25, '', 'Y', '2012-08-17 10:38:03'),
(546, 25, 0x4b797520c3ae6e7365616d6ec483202272616e67756c20756e756920c3ae6e636570c483746f722073617520616c20756e7569612063617265206e752065206d616573747275222e2052616e677572696c65206b79752073756e74206465206c61203330206c6120312c2031206669696e642063656c206d61692070757465726e69632e20446566696e69c5a369612072616e67756c7569206465203330206b79752065737465202263696e6576612063617265206120c3ae6e76c483c5a3617420c59f6920c3ae6ec5a3656c657320726567756c696c652c206461722063617265206e752061206a7563617420c3ae6e63c483206e696369206f20706172746964c483222e0d0a52616e677572696c65206b79752073756e742064657374756c20646520696d707265636973652070c3a26ec483207065206c61203130206b79752c206d6f6d656e7420c3ae6e206361726520736520706f617465206a756361206c612070617269746174652063752031203c6120687265663d222f6661712e7068703f726561643d74266361743d3323456e7472793339223e64616e3c2f613e20c3ae6e74722d6f20706172746964c4832063752039207069657365203c6120687265663d222f6661712e7068703f726561643d74266361743d33353723456e7472793937223e68616e64696361703c2f613e2e, 'Y', '2004-09-30 14:20:18'),
(547, 25, '', 'Y', '2012-08-17 10:38:03'),
(548, 25, 0x44616e20c3ae6e7365616d6ec483202272616e67756c20756e7569206d616573747275222e2052616e677572696c65206465207469702064616e207365206e756d65726f7465617ac483206465206c61203120c3ae6e207375732e20c38e6e207072696e636970697520756e206a7563c483746f7220616d61746f7220646520352064616e20657374652063616d206465206163656c61c59f69206e6976656c20637520756e206a7563c483746f7220646520312064616e2070726f666573696f6e6973742e202850726f666573696f6e69c59f746969206e752061752072616e6775726920646520746970203c6120687265663d222f6661712e7068703f726561643d74266361743d3323456e7472793338223e6b79753c2f613e2e29, 'Y', '2004-10-05 15:53:25'),
(549, 25, 0x43c3a27465207a696c6520646520766163616ec5a3c48320616d20706520736974652d756c20447261676f6e3f, 'Y', '2004-10-05 16:02:15'),
(550, 25, 0x4d6178696d20333020706520616e2e20c38e6e2066696563617265206c756ec48320c5a369207365206164617567c48320322c35207a696c6520646520766163616ec5a3c4832e204c6120c3ae6e736372696572656120706520736974652d756c20447261676f6e206169203134207a696c6520646520766163616ec5a3c48320646973706f6e6962696c652e, 'Y', '2004-10-05 20:34:48'),
(551, 25, 0x436520c3ae6e7365616d6ec48320646976657273656c6520696e666f726d61c5a36969206365206170617220706520706167696e61206465207374617475733f, 'N', '2004-10-05 20:34:48'),
(552, 25, '', 'Y', '2014-12-03 11:56:42'),
(1934, 25, 0x416e756ec5a32073616c76617421, 'Y', '2014-12-03 11:57:46'),
(1935, 25, 0x416e756ec5a32061646d696e6973747261746f72, 'Y', '2014-12-03 11:57:46'),
(1936, 25, 0x494420416e756ec5a3, 'Y', '2014-12-03 11:57:46'),
(1938, 25, 0x4175746f7220616e756ec5a3, 'Y', '2014-12-03 11:57:46'),
(3157, 25, 0x416e756ec5a3757269, 'Y', '2014-12-03 11:58:40'),
(5744, 25, 0x4c756e69, 'Y', '2014-12-03 12:02:04'),
(5745, 25, 0x4d6172c5a369, 'Y', '2014-12-03 12:02:18'),
(5746, 25, 0x4d69657263757269, 'Y', '2014-12-03 12:02:41'),
(5747, 25, 0x4a6f69, 'Y', '2014-12-03 12:02:54'),
(5748, 25, 0x56696e657269, 'Y', '2014-12-03 12:03:07'),
(5749, 25, 0x53c3a26d62c48374c483, 'Y', '2014-12-03 12:03:24'),
(582, 9, 0x4170266f61637574653b73206f206a6f6761646f722074657220656e766961646f20737561206a6f676164612c20616c67756d202274656d706f2065787472612220266561637574653b2061646963696f6e61646f20616f207365752072656c266f61637574653b67696f20286174266561637574653b206f206d266161637574653b78696d6f2065737065636966696361646f2070656c6f202274656d706f207072696e636970616c22292e0d0a0d0a5175616e646f20756d206a6f6761646f72206e266174696c64653b6f2074656d206d6169732074656d706f2072657374616e74652c20656c65207065726465206f206a6f676f2e, 'N', '2004-10-10 05:42:42'),
(595, 9, 0x4f207175652073266174696c64653b6f20646961732064652066266561637574653b726961733f, 'Y', '2004-10-10 05:42:42'),
(645, 9, '', 'Y', '2006-08-05 19:57:32'),
(655, 9, '', 'N', '2006-08-05 19:57:32'),
(657, 9, '', 'Y', '2006-08-05 19:57:32'),
(658, 9, 0x4f20746162756c6569726f20646520476f20287265616c206f75207669727475616c292e, 'Y', '2004-10-10 05:42:42'),
(661, 9, 0x4f20717565207369676e69666963612068616e64696361703f, 'Y', '2004-10-10 05:50:18'),
(665, 9, '', 'N', '2006-08-05 19:57:32'),
(666, 9, 0x4a6f676172206e6f2063616e746f2e20556d2070616472266174696c64653b6f206573746162656c656369646f2070617261206a6f67617220656d20756d612073697475612663636564696c3b266174696c64653b6f206c6f63616c2e20476572616c6d656e74652061206d656c686f7220736571752665636972633b6e636961206465206d6f76696d656e746f73206c6f63616973207061726120616d626f73206a6f6761646f7265732c206d6173206e266174696c64653b6f206e6563657373617269616d656e7465207175616e646f20616e616c697361646f20646520666f726d6120676c6f62616c2e204a6f73656b6920266561637574653b20756d207465726d6f2074266161637574653b7469636f2c206e266174696c64653b6f20756d207465726d6f20657374726174266561637574653b6769636f2e, 'N', '2004-10-10 05:50:18'),
(667, 9, '', 'N', '2006-08-05 19:57:32'),
(553, 25, 0x43c3a26e6420c3ae6d692073636164652074696d70756c2070656e747275206f20706172746964c4833f, 'Y', '2004-10-11 12:09:02'),
(554, 25, 0x54696d70756c2070656e747275206f20706172746964c48320c3aec5a369207363616465203c623e646f61723c2f623e206174756e63692063c3a26e642065c59f7469206c61206d75746172652e0d0a0d0a4e75207363616465206174756e63692063c3a26e640d0a3c756c3e0d0a3c6c693e6164766572736172756c20c3ae6e63c483206e752061207472696d6973206d7574617265612073613c2f6c693e0d0a3c6c693ec3ae6e2074696d70756c203c6120687265663d222f6661712e7068703f726561643d74266361743d353623456e7472793631223e6f72656c6f722074616c6520646520736f6d6e3c2f613e3c2f6c693e0d0a3c6c693ec3ae6e2074696d70756c203c6120687265663d222f6661712e7068703f726561643d74266361743d353623456e7472793636223e766163616ec5a365693c2f613e2074616c653c2f6c693e0d0a3c6c693e6c61207366c3a272c59f69742064652073c4837074c4836dc3a26ec4832028646163c4832061692073656c6563746174206f70c5a369756e656120726573706563746976c48320c3ae6e203c6120687265663d222f6661712e7068703f726561643d74266361743d33353723456e7472793434223e696e76697461c5a36961206c6120706172746964c4833c2f613e293c2f6c693e0d0a3c2f756c3e, 'N', '2004-10-11 12:10:48'),
(555, 25, 0x43756d20706f7420766564656120706172746964656c652073616c76617465206361205347463f, 'N', '2004-10-11 12:58:55'),
(556, 25, 0x4578697374c483206d6169206d756c74652070726f6772616d65206375206361726520706fc5a3692076697a75616c697a6120c59f69206564697461206669c59f696572656c65205347462e204f20616c65676572652062756ec4832065737465203c6120687265663d22687474703a2f2f7777772e72656e652d67726f74686d616e6e2e64652f6a61676f2f223e4a61676f3c2f613e2c20756e20636c69656e7420646520476f20736372697320c3ae6e204a6176612e0d0a0d0a4272697469736820476f204173736f63696174696f6e20617265206f203c6120687265663d22687474703a2f2f7777772e62726974676f2e6f72672f676f70637265732f676f7063726573312e68746d6c23732d76696577223e6c697374c48320616d706cc48320646520736f6674776172653c2f613e2070656e7472752076697a75616c697a617265612061636573746f72206669c59f696572652e0d0a0d0a447570c483206365206169206f62c5a3696e757420756e2061737466656c2064652070726f6772616d20706fc5a36920736574612062726f77736572756c2073c483206c65676520746970756c206d696d6520276170706c69636174696f6e2f782d676f2d7367662720646520656c2e204163657374206c7563727520c3aec5a369207661207065726d6974652073c483206465736368697a69206669c59f696572656c6520637520756e2073696e67757220636c69636b2e, 'N', '2004-10-11 13:27:26'),
(557, 25, 0x43756d20c3ae6e636570206f20706172746964c4833f, 'Y', '2004-10-11 14:40:52'),
(558, 25, 0x4578697374c483206d6169206d756c7465206d6f64757269206465206120c3ae6e63657065206f20706172746964c4833a3c554c3e0d0a0d0a3c4c493e416c656765206f20706172746964c4832064696e203c4120485245463d2277616974696e675f726f6f6d2e706870223e63616d6572612064652061c59f746570746172653c2f413e2e0d0a0d0a466f6c6f7365c59f746520616365617374c483206d65746f64c483206174756e63692063c3a26e6420636175c5a36920756e206164766572736172206e6f752e20c38e6e63657065207072696e206120646120636c69636b207065206c696e6b2d756c20223c6120687265663d222f77616974696e675f726f6f6d2e706870223e43616d6572c4832064652061c59f746570746172653c2f613e222064696e206d656e69752e2047c4837365c59f7465206f20706172746964c48320c3ae6e206361726520767265692073c483206a6f636920c59f692061706173c483207065206275746f6e756c20616c6261737472752022496e666f726d61c5a36969222061666c617420c3ae6e207374c3a26e67612065692e20c38e6e206a6f73756c20706167696e6969207665692067c483736920646574616c69692064657370726520616365617374612e20446163c48320c3aec5a36920636f6e76696e2c2061706173c483206275746f6e756c2022c38e6e63657065222e2041737461206520746f742e0d0a0d0a3c4c493e4164617567c4832070726f7072696120746120706172746964c48320c3ae6e203c4120485245463d2277616974696e675f726f6f6d2e706870223e63616d6572612064652061c59f746570746172653c2f413e2e0d0a0d0a446163c483206e696369206f20706172746964c4832064696e203c6120687265663d2277616974696e675f726f6f6d2e706870223e63616d6572612064652061c59f746570746172653c2f613e206e7520c3aec5a36920636f6e76696e652c20706fc5a3692073c4832061646175676920747520756e612e2050656e7472752061636561737461207472656275696520646f61722073c48320746520647563692061636f6c6f20c59f692073c48320636f6d706c6574657a6920666f726d756c6172756c2064696e206a6f73756c20706167696e69692e2041706173c483206275746f6e756c20224164617567c48320706172746964c4832220c59f692061c59f7465617074c4832e2050726f626162696c2063c483207061727469646120766120c3ae6e6365706520c3ae6e2063c3a274657661207a696c652e0d0a0d0a3c4c493e496e766974c4832dc5a369207072696574656e69692e3c42523e0d0a446163c48320c59f746969206e756d656c6520646520636f6e7420616c20756e756920616476657273617220706fc5a3692073c48320c3ae6c20696e7669c5a369206c61206f20706172746964c48320637520616a75746f72756c206c696e6b2d756c756920223c6120687265663d222f6d6573736167652e7068703f6d6f64653d496e76697465223e496e766974c4833c2f613e222064696e206d656e69752e20436f6d706c657465617ac483206f70c5a369756e696c6520646f7269746520c59f6920696e766974c4832d6c2e204164766572736172756c20706f6174652073c483206e65676f6369657a6520736574c48372696c6520706172746964656920646163c48320646f7265c59f74652e0d0a4465206173656d656e65612c2065786973746120756e206c696e6b2022496e766974c483206163657374207574696c697a61746f722220c3ae6e206a6f73756c20706167696e69692066696563c483727569207574696c697a61746f722e20437520616a75746f72756c206c756920736520706f6174652066616365206163656c61c59f69206c75637275206361206d6169207375732c20646172206d61692072617069642e0d0a3c2f554c3e, 'N', '2004-10-11 15:05:24'),
(559, 25, 0x43756d206d757420c3ae6e74722d6f20706172746964c4833f, 'Y', '2004-10-11 16:11:18'),
(560, 25, 0x5065203c6120687265663d222f7374617475732e706870223e706167696e61206465207374617475733c2f613e2073652061666cc483206f206c697374c483206120706172746964656c6f7220c3ae6e206361726520652072c3a26e64756c2074c483752073c483206d75c5a3692e20446163c48320617065c59f69207065206275746f6e756c206375206e756dc48372756c2070617274696465692c206163656173746120766120666920616669c59f6174c4832e0d0a0d0a43c3a26e64206169206a6f63756c20616669c59f617420706fc5a36920706c617361206f2070696573c483202873c4832066616369206f206d7574617265292064c3a26e6420636c69636b207065206f20696e746572736563c5a36965206e656f6375706174c4832e20446163c48320616365617374c483206d7574617265206f6d6f6172c48320706965736520616476657273652c20616365737465612073756e7420726964696361746520c3ae6e206d6f64206175746f6d6174206465207065207461626c61206465206a6f632064652063c483747265207365727665722e2050656e74727520612070617361207361752061206162616e646f6e612067c4837365c59f7469206c696e6b2d75726920c3ae6e206a6f73756c20706167696e69692e0d0a0d0a447570c4832063652070617274696461206520616669c59f6174c483206375206e6f7561206d757461726520282070696573612061c59f657a6174c483202f20706173202f206162616e646f6e20292c2061706173c48320756e756c2064696e206275746f616e656c6520646520636f6e6669726d6172652061206d7574c4837269692e20446163c4832074652072c4837a67c3a26e6465c59f74692c2061706173c483206275746f6e756c2022416e756c617265206d7574617265222e, 'Y', '2004-10-11 16:26:05'),
(561, 25, 0x43756d20706f7420616e756c61206f20706172746964c48320c3ae6e2064657366c483c59f75726172653f, 'Y', '2004-10-14 11:43:16'),
(562, 25, 0x50c3a26ec483206c612061207a65636561206d75746172652c2063c3a26e6420657374652072c3a26e64756c2074c483752c206cc3a26e67c483207461626c61206465206a6f63206170617265206c696e6b2d756c2022416e756c65617ac48322202870617274696461292e2050696573656c652068616e6469636170206e752073756e7420696e636c75736520c3ae6e2063656c65207a656365206d7574c48372692e0d0a0d0a446163c48320616e756c657a69206f20706172746964c48320c3ae6e206163657374206d6f642c20636f7461726561207461206e7520736520736368696d62c4832e20447570c483206d7574617265612061207a65636561206f20706172746964c483206e75206d616920706f61746520666920616e756c6174c4832e20436120c59f692070656e7472752063656c656c616c746520636f6d656e7a692064696e2074696d70756c2070617274696465692c20616e756c617265612061726520646f69207061c59f693a20747265627569652073c4832076616c6964657a6920616c6567657265612066c483637574c4832e, 'N', '2007-10-20 13:42:14'),
(563, 25, 0x43756d20706f7420c3ae6e6368656961206f20706172746964c4833f, 'Y', '2004-10-14 14:17:01'),
(564, 25, 0x506fc5a3692066616365206163657374206c7563727520646f6172206174756e63692063c3a26e6420652072c3a26e64756c203c693e74c483753c2f693e2073c483206d75c5a3692e0d0a3c554c3e0d0a3c4c493e547520c59f69206164766572736172756c2061c5a369206a7563617420225061732220636f6e736563757469762e20416365617374612065737465206d65746f6461206e6f726d616cc483206465206120c3ae6e6368656961206f20706172746964c4832e20c38e6e20636f6e74696e7561726520616dc3a26e646f69207665c5a36920666920696e76697461c5a3692073c483206d61726361c5a3692070696573656c65206d6f617274652e2041706f6920736572766572756c2076612063616c63756c612073636f72756c20c59f692076612073746162696c692063c3a2c59f746967c483746f72756c2e0d0a0d0a3c4c493e466f6c6f73696e64206275746f6e756c20224162616e646f6e222e20446163c483206162616e646f6e657a692c206169207069657264757420706172746964612c206365656120636520c3aec5a3692076612061666563746120636f74617265612e0d0a0d0a3c4c493e4cc48373c3a26e642073c483207365207465726d696e652074696d70756c2e203c693e2844617220746520727567c4836d2073c48320616c65676920756e612064696e7472652063656c656c616c74652076617269616e746521293c2f693e20446163c483206169207465726d696e61742074696d70756c20c3ae6e7365616d6ec4832063c483206169207069657264757420706172746964612c20636565612063652c206465206173656d656e65612c20c3aec5a3692076612061666563746120636f74617265612e0d0a3c2f554c3e, 'N', '2004-10-14 14:17:01'),
(225, 25, 0x4162616e646f6e, 'Y', '2004-10-14 13:57:13'),
(226, 25, 0x506173, 'Y', '2004-10-14 13:57:13'),
(227, 25, 0x537465726765726520706172746964c483, 'Y', '2004-10-14 13:57:13'),
(565, 25, 0x496e74726f647563657265206c6120447261676f6e, 'Y', '2004-10-18 16:22:01'),
(566, 25, 0x4365206573746520616365737420736974653f, 'Y', '2004-10-18 16:22:01'),
(567, 25, 0x447261676f6e20476f20536572766572202844475329206573746520756e207369746520756e646520706fc5a369206a75636120476f203c6120687265663d226661712e7068703f726561643d74266361743d3323456e747279313532223e7072696e20636f726573706f6e64656ec5a3c4833c2f613e20706520696e7465726e65742e2045737465206170726f78696d61746976206c612066656c2063752061206a75636120476f207072696e20652d6d61696c2e0d0a0d0a4465206f6269636569206a7563c483746f726969206d7574c4832063616d2064652035206f72692070652073c4837074c4836dc3a26ec4832e2043612075726d61726520706172746964656c652064757265617ac4832063c3a2746576612073c4837074c4836dc3a26e692c206961722044475320617265206772696ac48320646520646574616c69696c65206e65706cc483637574652063756d206172206669207665726966696361726561206c696d6974656c6f722064652074696d7020c59f6920636f7461726561206a7563c483746f72696c6f722e0d0a0d0a4a6f63756c20646520676f20223c6120687265663d226661712e7068703f726561643d74266361743d3323456e747279313533223ec3ae6e206469726563743c2f613e22206e75206573746520706f736962696c20616963692c2064656f61726563652061636573746120707265737570756e652063c483206f20706172746964c483207365207465726d696ec48320c3ae6e206170726f78696d61746976206f206f72c4832e20446163c48320646f7265c59f74692073c483206a6f636920476f20c3ae6e2064697265637420706fc5a36920c3ae6e6365726361203c6120687265663d22687474703a2f2f73656e736569732e786d702e6e65742f3f476f53657276657222207461726765743d225f626c616e6b223e616c74653c2f613e207365727665726520646520476f2c2063756d206172206669203c6120687265663d22687474703a2f2f6b67732e6b69736569646f2e636f6d2f22207461726765743d225f626c616e6b223e4b47533c2f613e20736175203c6120687265663d22687474703a2f2f70616e64612d6967732e6a6f796a6f792e6e65742f22207461726765743d225f626c616e6b223e4947533c2f613e2e0d0a0d0ac38e6e20706c75732c2044475320617265206f207365726965206465203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f70686f72756d2f696e6465782e706870223e666f72756d2d7572693c2f613e20756e646520736520646973637574c4832064657370726520476f20c59f69204447532e, 'N', '2004-10-29 12:12:55'),
(135, 7, 0x50f8656b6c61646174656ce9, 'Y', '2004-10-19 18:50:22'),
(22, 18, 0x5370696163656e74652c20e8206e65636573736172696f20666f726e69726520756e206e6f6d652e, 'Y', '2006-05-25 21:48:43'),
(767, 2, '', 'Y', '2008-07-26 20:40:42'),
(794, 2, 0x4b6f6d6f72656e65, 'Y', '2004-10-21 18:11:50'),
(568, 25, 0x546f74206e7520c59f7469752063652072616e672073c48320696e74726f6475632e2e2e, 'Y', '2004-10-29 12:26:15'),
(569, 25, 0x446163c483206a6f6369206465207075c5a3696e2074696d7020676f2c206174756e63692070726f626162696c2063c483206169203c756c3e0d0a0d0a3c6c693e3330206b79753a20646163c48320c59f74696920726567756c696c650d0a3c6c693e32392d3238206b79753a20646163c483206169206a756361742064656a612063c3a27465766120706172746964650d0a3c6c693e32372d3236206b79753a20646163c4832061692063c3a2c59f74696761742063c3a274657661207061727469646520c3ae6e206661c5a36120756e6f7220c3ae6e636570c483746f72690d0a3c6c693e32352d3232206b79753a20646163c4832061692063c3a2c59f74696761742063c3a274657661207061727469646520c3ae6e206661c5a36120756e6f72206a7563c483746f72692063617265206e752073756e7420c3ae6e636570c483746f72690d0a3c2f756c3e0d0a0d0a4f20616c7465726e61746976c4832070656e7472752022c3ae6e636570c483746f726969206176616e7361c5a3692220657374652073c48320666163c483203c4120485245463d687474703a2f2f7777772e6d6f746f7273636f70652e636f6d2f646f6a6f2f74657374732f205441524745543d5f626c616e6b3e616365737420746573743c2f413e2c20636172652064757265617ac4832063616d203130206d696e7574652c2063612061706f692073c48320666f6c6f7365617363c4832072657a756c746174756c2070656e747275206120c3aec59f6920736574612072616e67756c2e, 'N', '2004-10-29 12:26:15'),
(498, 27, 0x4461, 'Y', '2005-02-01 11:56:56'),
(368, 26, 0xd79ed794d79cd79a20d790d797d7a8d795d79f, 'N', '2005-01-16 22:00:19'),
(364, 26, 0xd79ed794d79cd79bd799d79d, 'Y', '2005-01-16 22:00:19'),
(363, 26, 0xd7a7d795d79ed799, 'Y', '2005-01-16 22:00:19'),
(741, 27, 0x586566, 'Y', '2005-02-01 04:53:11'),
(362, 26, 0xd794d7a0d793d799d7a7d790d7a4, 'Y', '2005-01-16 22:00:19'),
(361, 26, 0xd792d795d793d79c, 'Y', '2005-01-16 22:00:19'),
(360, 26, 0xd7a6d791d7a2, 'Y', '2005-01-16 22:00:19'),
(359, 26, 0xd799d7a8d799d791, 'Y', '2005-01-16 22:00:19'),
(352, 26, '', 'Y', '2005-01-17 07:05:36'),
(331, 26, 0xd7a9d797d795d7a8, 'Y', '2005-01-16 22:00:19'),
(330, 26, 0xd79cd791d79f, 'Y', '2005-01-16 22:00:19'),
(316, 26, 0xd794d792d79121, 'Y', '2005-01-16 22:00:19'),
(314, 26, 0xd797d793d7a9, 'Y', '2005-01-16 22:00:19'),
(312, 26, 0xd7aad790d7a8d799d79a, 'Y', '2005-01-16 22:00:19'),
(242, 27, 0x547520706f746520656e7363726976652065206a756120616c6761206a7561732c20706572206661766f72652e, 'Y', '2005-02-17 13:17:49'),
(311, 26, 0xd7a0d795d7a9d790, 'Y', '2005-01-16 22:00:19'),
(310, 26, 0xd79e, 'Y', '2005-01-16 22:00:19'),
(309, 26, 0xd793d792d79cd799d79d, 'Y', '2005-01-16 22:00:19'),
(244, 27, 0x526567617264652073697263612c207573612025732e, 'Y', '2005-02-01 10:48:43'),
(205, 26, 0xd793d7a8d792d794, 'Y', '2005-01-16 22:00:19'),
(344, 27, 0x456e736372697665, 'Y', '2005-02-04 11:59:55'),
(484, 27, '', 'Y', '2008-01-21 19:27:11'),
(204, 26, 0xd79ed799d793d7a220d7a2d79c20d794d793d7a8d792d794, 'Y', '2005-01-16 22:00:19'),
(485, 27, '', 'Y', '2008-01-21 19:27:11'),
(201, 26, 0xd7a9d79d20d79ed7a9d7aad79ed7a9, 'Y', '2005-01-16 22:00:19'),
(134, 26, 0xd7a9d79d, 'Y', '2005-01-16 22:00:19'),
(486, 27, '', 'Y', '2008-01-21 19:27:11'),
(487, 27, 0x4d6169, 'Y', '2005-02-01 10:48:43'),
(132, 26, '', 'Y', '2005-01-17 07:05:36'),
(488, 27, '', 'Y', '2008-01-21 19:27:11'),
(108, 26, 0xd791d799d795d79ed79920d7a7d7a0d793d799, 'Y', '2005-01-16 22:00:19'),
(489, 27, 0x41676f, 'Y', '2005-02-01 10:48:43'),
(107, 26, 0xd790d791d7a0d799d79d, 'Y', '2005-01-16 22:00:19'),
(490, 27, '', 'Y', '2008-01-21 19:27:11'),
(491, 27, '', 'Y', '2008-01-21 19:27:11'),
(492, 27, 0x446573, 'Y', '2005-02-01 10:48:43'),
(106, 26, 0xd791d799d795d79ed79920d799d7a4d7a0d799, 'Y', '2005-01-16 22:00:19'),
(104, 26, 0xd7a2d79d20257320d7aad795d7a1d7a4d7aa20d79cd79ed794d79cd79a, 'Y', '2005-01-16 22:00:19'),
(495, 27, '', 'Y', '2008-01-21 19:27:11'),
(103, 26, 0xd791d79cd79920d791d799d795d79ed799, 'Y', '2005-01-16 22:00:19'),
(102, 26, 0xd7a9d7a2d795d7aa, 'Y', '2005-01-16 22:00:19'),
(81, 26, 0xd79cd79020d79ed797d795d791d7a820d791d7aad795d79a, 'Y', '2005-01-16 21:50:16'),
(80, 26, 0xd79ed797d795d791d7a820d79b, 'Y', '2005-01-16 21:50:16'),
(1092, 11, 0x4d656574656c6c656e64652070617274696a, 'Y', '2016-07-29 14:58:03'),
(578, 25, 0x447570c483207465726d696e617265612074696d70756c7569207072696e636970616c206465206a6f632c20756e206a7563c483746f722061726520756e2074696d702066697861742070656e747275203c623e666965636172653c2f623e206d75746172652e20c38e6e20706c75732c20656c20617265206d6169206d756c74652061737466656c20646520706572696f6164652064652074696d703a0d0a3c554c3e0d0a3c4c493e446163c483206a7563c483746f72756c206d7574c48320c3ae6e2074696d70756c2066697861742c206e756dc48372756c20646520706572696f616465206e75207365206d6f6469666963c48320c59f69206172652064696e206e6f75206163656c61c59f692074696d702070656e747275206d7574617265612075726dc483746f6172652e3c2f4c493e0d0a0d0a3c4c493e446163c483206a7563c483746f72756c206e75206d7574c483206c612074696d702c206174756e6369206e756dc48372756c20646520706572696f61646520736361646520637520756e7520c59f692069207365206f666572c4832064696e206e6f752074696d70756c2073746162696c69742070656e74727520612073652067c3a26e64692e3c2f4c493e0d0a3c2f554c3e0d0a43c3a26e6420756e206a7563c483746f72206e75206d616920617265206e6963692074696d702c206e69636920706572696f6164652072c4836d6173652c2070696572646520706172746964612e, 'N', '2004-12-20 17:58:09'),
(577, 25, 0x43756d2066756e63c5a3696f6e65617ac4832073697374656d756c2064652074696d70202262796f2d796f6d69206a61706f6e657a223f, 'Y', '2004-12-20 17:26:51'),
(576, 25, 0x50656e7472752061207472696d697465206f206e6f7561207061726f6cc4832028646163c4832063657269206163657374206c75637275292e205472696d69746572656120756e6569207061726f6c65206e6f69206c612061647265736120646520656d61696c203c693e73746f636174c48320c3ae6e20636f6e74756c2074c483753c2f693e2065737465206f206d65746f64c4832075c59f6f6172c4832064652061206173696775726120617574656e746966696361726561207574696c697a61746f72696c6f722e0d0a0d0a447261676f6e2072657370656374c48320696e74696d6974617465613a20444753206e75207472696d697465206d6573616a65206e65736f6c696369746174652e204164726573656c65206465206d61696c206e7520706f742066692076617a757465206465206e696d656e6920c59f69206e696369206e7520766f722066692076c3a26e647574652063c48374726520616c7463696e6576612e0d0a0d0a447261676f6e207065726d697465207574696c697a61746f72696c6f722073c483203c693e6e753c2f693e20c3aec59f692073746f6368657a652061647265736120646520656d61696c20c3ae6e20636f6e742e20c38e6e2061636573742063617a20746520727567c4836d203c693e73c48320746520617369677572693c2f693e2063c483206e75207665692075697461207061726f6c6121, 'Y', '2004-12-20 17:02:36'),
(575, 25, 0x446520636520736974652d756c20447261676f6e20c3ae6d6920636572652061647265736120646520656d61696c3f, 'Y', '2004-12-20 17:00:07'),
(1031, 11, 0x5365727669736368, 'Y', '2005-07-05 13:31:05'),
(7, 18, 0x5370696163656e74652c206e6f6e20e820706f73736962696c6520696e766974617265207365207374657373692e, 'Y', '2005-07-06 19:52:59'),
(8, 18, 0x5370696163656e74652c20e820696d706f73736962696c6520696e646976696475617265206c61207061727469746120616c6c61207175616c652073656920696e76697461746f2e20486169206769e0206465636c696e61746f206c27696e7669746f3f, 'Y', '2006-05-25 21:48:43'),
(574, 25, 0x32332069756e696520323030350d0a0d0a5365637469756e6561203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f70686f72756d2f726561642e7068703f663d3326693d38323226743d383232223e4275672d7572696c6520447261676f6e3c2f613e206120666f7374206164c48375676174c4832e, 'Y', '2005-06-24 20:43:54'),
(573, 25, 0x436172652073756e742063656c65206d616920726563656e7465206d6f6469666963c483726920616c652061636573747569204641513f, 'Y', '2004-12-20 16:34:49'),
(570, 25, 0x54696d70756c20706520736974652d756c20447261676f6e, 'Y', '2004-12-20 15:41:43'),
(416, 27, 0x4f726f6c6f6a6f2066696e69206465206c612073656d616e61, 'Y', '2005-02-01 11:56:56'),
(408, 27, 0x4a7561206567616c20636f6e206e6967697269, 'Y', '2005-02-17 13:20:31'),
(335, 27, 0x4d6573616a6520696e76697461, 'Y', '2005-02-01 11:51:04'),
(334, 27, 0x4e656761, 'Y', '2005-02-01 11:51:04'),
(333, 27, 0x4173657461, 'Y', '2005-02-01 11:51:04'),
(409, 27, 0x4a7561206475706c65, 'Y', '2005-02-17 13:20:31'),
(252, 27, 0x416e6365206f72612073616c7574652c206520706c6173652074752076697369746120612065737461206c6f636f21, 'Y', '2005-02-01 11:51:04'),
(326, 27, 0x456e76696120726573706f6e6465, 'Y', '2005-02-01 12:53:51'),
(328, 27, 0x4120284944206465207573616e746529, 'Y', '2005-02-01 12:53:51'),
(336, 27, 0x456e76696120696e76697461, 'Y', '2005-02-01 12:53:51'),
(346, 27, 0x4d6573616a6520656e7669646121, 'Y', '2005-02-01 12:53:51'),
(431, 27, 0x506c616e6361206772616e646961, 'N', '2005-02-01 12:53:51'),
(436, 27, 0x6d656e736173, 'Y', '2005-02-01 12:53:51'),
(439, 27, 0x636f6e, 'Y', '2005-02-01 12:53:51'),
(442, 27, 0x706572, 'Y', '2005-02-01 12:53:51'),
(443, 27, 0x74656d706f2046697363686572, 'Y', '2008-01-21 19:26:37'),
(502, 27, 0x5465726d617320646520474f, 'Y', '2005-02-01 12:57:52'),
(503, 27, '', 'Y', '2008-01-21 19:27:11'),
(504, 27, 0x526567756c617320646520474f, 'Y', '2005-02-01 12:57:52'),
(505, 27, 0x4d6f6375, 'Y', '2005-02-01 12:57:52'),
(507, 27, 0x436f6d69, 'Y', '2005-02-01 12:57:52'),
(518, 27, '', 'N', '2008-01-21 19:27:11'),
(531, 27, 0x4365206573206c6120726567756c6173206261736520646520476f3f, 'Y', '2005-02-01 13:03:28'),
(511, 27, 0x4c6973746173206520706f7361626c6573206120447261676f6e, 'Y', '2005-02-01 13:03:28'),
(512, 27, 0x4d6178657320646520447261676f6e2e, 'Y', '2005-02-01 13:03:28'),
(513, 27, 0x446576656c6f706120646520447261676f6e, 'Y', '2005-02-01 13:03:28'),
(514, 27, '', 'Y', '2008-01-21 19:27:11'),
(515, 27, '', 'Y', '2008-01-21 19:27:11'),
(525, 27, 0x436f6d65206d6520706f74652073756a65737465206e6f7661206375616c69613f, 'Y', '2005-02-01 13:03:28'),
(529, 27, 0x446f206d6520706f746520617072656e646520706c7520736972636120756e20726567756c6172207370657369666164613f, 'Y', '2005-02-01 13:03:28'),
(445, 27, 0x4d6178204944, 'Y', '2005-02-01 21:27:39'),
(446, 27, 0x436f6c6f726573, 'Y', '2005-02-01 21:27:39'),
(447, 27, '', 'Y', '2008-01-21 19:27:11'),
(743, 27, 0x456e7669616461, 'Y', '2005-02-01 21:27:57'),
(350, 27, 0x4a7561732066696e696461206465202573, 'Y', '2005-02-17 13:20:31'),
(351, 27, 0x4a75617320612065737461206f7261206465202573, 'Y', '2005-02-17 13:20:31'),
(237, 27, 0x53616c74612061206a75612073656775656e7465, 'Y', '2005-02-17 13:20:31'),
(238, 27, 0x457374726165206461206c69737461206f6273657276616e7465, 'Y', '2005-05-26 03:12:17'),
(417, 27, 0x5061726520766163756120612065737461206f7261, 'Y', '2005-02-02 03:12:35'),
(420, 27, 0x4e756d65726f73206465206c61206d617865732063652064656265206a756e74616461, 'Y', '2005-02-02 03:12:35'),
(423, 27, 0x4e6573657361206f706f6e656e74652076616c75616461, 'Y', '2005-02-02 03:12:35'),
(247, 27, 0x456e736372697665206e6f7661, 'Y', '2005-02-02 10:59:00'),
(345, 27, 0x456e74726520646174617320706572206661766f7265, 'Y', '2005-02-02 10:59:00'),
(343, 27, 0x506172646f6e612c2074726f20706f6361206a7561732076616c756164612070657220646573696e6961206772616669636f, 'Y', '2005-05-26 03:12:17'),
(428, 27, 0x4f726f6c6f6a6f206f7065726120656e747261206c612066696e6573206465732073656d616e612e, 'Y', '2005-02-02 11:04:39'),
(454, 27, 0x4c6f63612074752070657472617320616964616e74652c20706572206661766f726521, 'Y', '2005-02-02 11:04:39'),
(1029, 4, '', 'Y', '2012-07-29 12:52:42'),
(156, 27, 0x42696f2073726976656461206e6f7661, 'Y', '2005-02-17 13:27:39'),
(322, 27, 0x457374612025736a7561257320696e76697461206a6120657320617365746164612e, 'Y', '2005-02-17 13:21:18'),
(323, 27, 0x4573746120696e76697461206573206e6567616461206f206c61206d6178206573207375747261656461, 'Y', '2005-02-04 12:11:47'),
(478, 27, 0x506c7520696e666f726d617320747520706f74652074726f766520656e206c6120203c6120687265663d226661712e706870223e46415120666f726f733c2f613e2e20416c6120747520706f74652064656d616e646120616e63652074752064656d616e64612e, 'Y', '2005-02-04 15:59:49'),
(585, 25, 0x436520c3ae6e7365616d6ec483202274696d702070656e74727520736f6d6e223f, 'N', '2005-02-05 00:00:34'),
(586, 25, 0xc38e6e202274696d70756c2070656e74727520736f6d6e222063656173756c2074c483752070656e747275206669656361726520706172746964c4832065737465206f707269742c206961722074696d70756c2072c4836d6173206e7520c3aec5a369206d61692073636164652e, 'N', '2005-02-05 00:02:30'),
(1028, 11, 0x486562726565757773, 'Y', '2005-02-10 14:09:10'),
(746, 27, 0x4e6f6d206465206c6f636f207065722061726369766f73, 'Y', '2005-02-10 14:41:19'),
(181, 27, 0x45706f737461, 'Y', '2005-02-10 14:41:19'),
(195, 27, 0x4d6f7665732065206d6573616a6573, 'Y', '2005-02-10 14:41:19'),
(1029, 11, '', 'Y', '2007-06-04 15:49:02'),
(157, 27, 0x53696e696120736563726574612063616d6269616461, 'Y', '2005-02-17 13:27:39'),
(178, 27, 0x537461746f, 'Y', '2005-02-17 13:27:39'),
(179, 27, 0x4f7267616e697a61, 'Y', '2005-02-17 13:27:39'),
(182, 27, 0x4e756d65726f20494351, 'Y', '2005-02-17 13:27:39'),
(185, 27, 0x4c61626f7261, 'Y', '2005-02-17 13:27:39'),
(193, 27, 0x4465, 'Y', '2008-01-20 20:53:26'),
(197, 27, '', 'Y', '2008-01-21 19:27:11'),
(198, 27, 0x4f7269736f6e616c, 'Y', '2005-02-17 13:27:39'),
(209, 27, 0x5a6f6e612064652074656d706f, 'Y', '2005-02-17 13:27:39'),
(210, 27, 0x54656d706f206e6f7465, 'Y', '2005-02-17 13:27:39'),
(212, 27, 0x4772616e646520646520706574726173, 'Y', '2005-02-17 13:27:39'),
(397, 27, 0x412065737461206f7261, 'Y', '2005-02-17 13:27:39'),
(398, 27, 0x46696e696461, 'Y', '2005-02-17 13:27:39'),
(399, 27, 0x47616e69616461, 'Y', '2005-02-17 13:27:39'),
(400, 27, 0x50657264656461, 'Y', '2005-02-17 13:27:39'),
(1028, 23, 0xe382a4e382bae383a9e382a8e383abe8aa9e, 'Y', '2005-02-18 06:27:29'),
(1029, 23, 0xe383aae383b3e382b0e382a2e38395e383a9e383b3e382abe3838ee383bce383b4e382a1, 'Y', '2005-02-18 06:27:29'),
(756, 23, 0xe382a2e38395e382ace3838be382b9e382bfe383b3, 'Y', '2005-02-18 06:40:13'),
(757, 23, 0xe382a2e383abe38390e3838be382a2, 'Y', '2005-02-18 06:40:13'),
(758, 23, 0xe382a2e383abe382b8e382a7e383aae382a2, 'Y', '2005-02-18 06:40:13'),
(759, 23, 0xe382a2e383b3e38389e383a9, 'Y', '2005-02-18 06:40:13'),
(760, 23, 0xe382a2e383b3e382b4e383a9, 'Y', '2005-02-18 06:40:13'),
(761, 23, 0xe58d97e6a5b5, 'Y', '2005-02-18 06:40:13'),
(763, 23, 0xe382a2e383abe382bce383b3e38381e383b3, 'Y', '2005-02-18 06:40:13'),
(764, 23, 0xe382a2e383abe383a1e3838be382a2, 'Y', '2005-02-18 06:40:13'),
(765, 23, 0xe382aae383bce382b9e38388e383a9e383aae382a2, 'Y', '2005-02-18 06:40:13'),
(766, 23, 0xe382aae383bce382b9e38388e383aae382a2, 'Y', '2005-02-18 06:40:13'),
(768, 23, 0xe38390e3838fe3839e, 'Y', '2005-02-18 06:40:13'),
(769, 23, 0xe38390e383bce383ace383bce383b3, 'Y', '2005-02-18 06:40:13'),
(773, 23, 0xe38399e383abe382aee383bc, 'Y', '2005-02-18 06:40:13'),
(777, 23, 0xe3839ce383aae38393e382a2, 'Y', '2005-02-18 06:40:13'),
(779, 23, 0xe3839ce38384e383afe3838a, 'Y', '2005-02-18 06:40:13'),
(780, 23, 0xe38396e383a9e382b8e383ab, 'Y', '2005-02-18 06:40:13'),
(782, 23, 0xe38396e383abe382ace383aae382a2, 'Y', '2005-02-18 06:40:13'),
(785, 23, 0xe382abe383b3e3839ce382b8e382a2, 'Y', '2005-02-18 06:40:13'),
(786, 23, 0xe382abe383a1e383abe383bce383b3, 'Y', '2005-02-18 06:40:13'),
(787, 23, 0xe382abe3838ae38380, 'Y', '2005-02-18 06:40:13'),
(790, 23, 0xe38381e383a3e38389, 'Y', '2005-02-18 06:40:13'),
(791, 23, 0xe38381e383aa, 'Y', '2005-02-18 06:40:13'),
(792, 23, 0xe4b8ade59bbd, 'Y', '2005-02-18 06:40:13'),
(793, 23, 0xe382b3e383ade383b3e38393e382a2, 'Y', '2005-02-18 06:40:13'),
(797, 23, 0xe382b3e382b9e382bfe383aae382ab, 'Y', '2005-02-18 06:40:13'),
(799, 23, 0xe382afe383ade382a2e38381e382a2, 'Y', '2005-02-18 06:40:13'),
(800, 23, 0xe382ade383a5e383bce38390, 'Y', '2005-02-18 06:40:13'),
(802, 23, 0xe38381e382a7e382b3, 'Y', '2005-02-18 06:40:13'),
(803, 23, 0xe38387e383b3e3839ee383bce382af, 'Y', '2005-02-18 06:40:13'),
(805, 23, 0xe38389e3839fe3838be382ab, 'Y', '2005-02-18 06:40:13'),
(809, 23, 0xe382a8e382b8e38397e38388, 'Y', '2005-02-18 06:40:13'),
(813, 23, 0xe382a8e382b9e38388e3838be382a2, 'Y', '2005-02-18 06:40:13'),
(814, 23, 0xe382a8e38381e382aae38394e382a2, 'Y', '2005-02-18 06:40:13'),
(816, 23, 0xe38395e382a3e383b3e383a9e383b3e38389, 'Y', '2005-02-18 06:40:13'),
(817, 23, 0xe38395e383a9e383b3e382b9, 'Y', '2005-02-18 06:40:13'),
(819, 23, 0xe382ace383b3e38393e382a2, 'Y', '2005-02-18 06:40:13'),
(820, 23, 0xe382b8e383a7e383bce382b8e382a2, 'Y', '2005-02-18 06:40:13'),
(821, 23, 0xe38389e382a4e38384, 'Y', '2005-02-18 06:40:13'),
(822, 23, 0xe382ace383bce3838a, 'Y', '2005-02-18 06:40:13'),
(823, 23, 0xe382aee383aae382b7e382a2, 'Y', '2005-02-18 06:40:13'),
(828, 23, 0xe382ace382a4e382a2e3838a, 'Y', '2005-02-18 06:40:13'),
(829, 23, 0xe3838fe382a4e38381, 'Y', '2005-02-18 06:40:13'),
(831, 23, 0xe9a699e6b8af, 'Y', '2005-02-18 06:40:13'),
(832, 23, 0xe3838fe383b3e382ace383aae383bc, 'Y', '2005-02-18 06:40:13'),
(833, 23, 0xe382a2e382a4e382b9e383a9e383b3e38389, 'Y', '2005-02-18 06:40:13'),
(834, 23, 0xe382a4e383b3e38389, 'Y', '2005-02-18 06:40:13'),
(835, 23, 0xe382a4e383b3e38389e3838de382b7e382a2, 'Y', '2005-02-18 06:40:13'),
(836, 23, 0xe382a4e383a9e383b3, 'Y', '2005-02-18 06:40:13'),
(837, 23, 0xe382a4e383a9e382af, 'Y', '2005-02-18 06:40:13'),
(838, 23, 0xe382a2e382a4e383abe383a9e383b3e38389, 'Y', '2005-02-18 06:40:13'),
(839, 23, 0xe382a4e382bae383a9e382a8e383ab, 'Y', '2005-02-18 06:40:13'),
(840, 23, 0xe382a4e382bfe383aae382a2, 'Y', '2005-02-18 06:40:13'),
(841, 23, 0xe382b8e383a3e3839ee382a4e382ab, 'Y', '2005-02-18 06:40:13'),
(842, 23, 0xe697a5e69cac, 'Y', '2005-02-18 06:40:13'),
(845, 23, 0xe382b1e3838be383a4, 'Y', '2005-02-18 06:54:55'),
(849, 23, 0xe382afe382a6e382a7e383bce38388, 'Y', '2005-02-18 06:54:55'),
(851, 23, 0xe383a9e382aae382b9, 'Y', '2005-02-18 06:54:55'),
(852, 23, 0xe383a9e38388e38393e382a2, 'Y', '2005-02-18 06:54:55'),
(853, 23, 0xe383ace38390e3838ee383b3, 'Y', '2005-02-18 06:54:55'),
(855, 23, 0xe383aae38399e383aae382a2, 'Y', '2005-02-18 06:54:55'),
(856, 23, 0xe383aae38393e382a2, 'Y', '2005-02-18 06:54:55'),
(864, 23, 0xe3839ee383ace383bce382b7e382a2, 'Y', '2005-02-18 06:54:55'),
(867, 23, 0xe3839ee383abe382bf, 'Y', '2005-02-18 06:54:55'),
(871, 23, 0xe383a1e382ade382b7e382b3, 'Y', '2005-02-18 06:54:55'),
(874, 23, 0xe383a2e3838ae382b3, 'Y', '2005-02-18 06:54:55'),
(875, 23, 0xe383a2e383b3e382b4e383ab, 'Y', '2005-02-18 06:54:55'),
(876, 23, 0xe383a2e383ade38383e382b3, 'Y', '2005-02-18 06:54:55'),
(878, 23, 0xe3839fe383a3e383b3e3839ee383bc, 'Y', '2005-02-18 06:54:55'),
(879, 23, 0xe3838ae3839fe38393e382a2, 'Y', '2005-02-18 06:54:55'),
(881, 23, 0xe3838de38391e383bce383ab, 'Y', '2005-02-18 06:54:55'),
(882, 23, 0xe382aae383a9e383b3e38380, 'Y', '2005-02-18 06:54:55'),
(883, 23, 0xe3838be383a5e383bce382b8e383bce383a9e383b3e38389, 'Y', '2005-02-18 06:54:55'),
(886, 23, 0xe3838ae382a4e382b8e382a7e383aae382a2, 'Y', '2005-02-18 06:54:55'),
(887, 23, 0xe3838ee383abe382a6e382a7e383bc, 'Y', '2005-02-18 06:54:55'),
(889, 23, 0xe38391e382ade382b9e382bfe383b3, 'Y', '2005-02-18 06:54:55'),
(892, 23, 0xe38391e3838ae3839e, 'Y', '2005-02-18 06:54:55'),
(895, 23, 0xe3839ae383abe383bc, 'Y', '2005-02-18 06:54:55'),
(896, 23, 0xe38395e382a3e383aae38394e383b3, 'Y', '2005-02-18 06:54:55'),
(897, 23, 0xe3839de383bce383a9e383b3e38389, 'Y', '2005-02-18 06:54:55'),
(898, 23, 0xe3839de383abe38388e382ace383ab, 'Y', '2005-02-18 06:54:55'),
(901, 23, 0xe383abe383bce3839ee3838be382a2, 'Y', '2005-02-18 06:54:55'),
(902, 23, 0xe383ade382b7e382a2, 'Y', '2005-02-18 06:54:55'),
(903, 23, 0xe383abe383afe383b3e38380, 'Y', '2005-02-18 06:54:55'),
(907, 23, 0xe382b5e383a2e382a2, 'Y', '2005-02-18 06:54:55'),
(911, 23, 0xe382bbe3838de382ace383ab, 'Y', '2005-02-18 06:54:55'),
(915, 23, 0xe382b7e383b3e382ace3839de383bce383ab, 'Y', '2005-02-18 06:54:55'),
(916, 23, 0xe382b9e383ade38390e382ade382a2, 'Y', '2005-02-18 06:54:55'),
(917, 23, 0xe382b9e383ade38399e3838be382a2, 'Y', '2005-02-18 06:54:55'),
(919, 23, 0xe382bde3839ee383aae382a2, 'Y', '2005-02-18 06:54:55'),
(920, 23, 0xe58d97e382a2e38395e383aae382ab, 'Y', '2005-02-18 06:54:55'),
(921, 23, 0xe382b9e3839ae382a4e383b3, 'Y', '2005-02-18 06:54:55'),
(922, 23, 0xe382b9e383aae383bce383a9e383b3e3818b, 'Y', '2005-02-18 06:54:55'),
(923, 23, 0xe382b9e383bce38380e383b3, 'Y', '2005-02-18 06:54:55');
INSERT INTO `Translations` (`Original_ID`, `Language_ID`, `Text`, `Translated`, `Updated`) VALUES
(926, 23, 0xe382b9e382a6e382a7e383bce38387e383b3, 'Y', '2005-02-18 06:54:55'),
(927, 23, 0xe382b9e382a4e382b9, 'Y', '2005-02-18 06:54:55'),
(928, 23, 0xe382b7e383aae382a2, 'Y', '2005-02-18 06:54:55'),
(929, 23, 0xe58fb0e6b9be, 'Y', '2005-02-18 06:54:55'),
(930, 23, 0xe382bfe382b8e382ade382b9e382bfe383b3, 'Y', '2005-02-18 06:54:55'),
(931, 23, 0xe382bfe383b3e382b6e3838be382a2, 'Y', '2005-02-18 06:54:55'),
(932, 23, 0xe382bfe382a4e59bbd, 'Y', '2005-02-18 06:54:55'),
(933, 23, 0xe38388e383bce382b4, 'Y', '2005-02-18 06:54:55'),
(934, 23, 0xe38388e383b3e382ac, 'Y', '2005-02-18 06:54:55'),
(936, 23, 0xe38381e383a5e3838be382b8e382a2, 'Y', '2005-02-18 06:54:55'),
(937, 23, 0xe38388e383abe382b3, 'Y', '2005-02-18 06:54:55'),
(940, 23, 0xe382a6e382ace383b3e38380, 'Y', '2005-02-18 06:54:55'),
(941, 23, 0xe382a6e382afe383a9e382a4e3838a, 'Y', '2005-02-18 06:54:55'),
(944, 23, 0xe7b1b3e59bbd, 'Y', '2005-02-18 06:54:55'),
(949, 23, 0xe38399e3838de382bae382a8e383a9, 'Y', '2005-02-18 06:54:55'),
(950, 23, 0xe38399e38388e3838ae383a0, 'Y', '2005-02-18 06:54:55'),
(951, 23, 0xe382a4e382a8e383a1e383b3, 'Y', '2005-02-18 06:54:55'),
(952, 23, 0xe382b6e383b3e38393e382a2, 'Y', '2005-02-18 06:54:55'),
(953, 23, 0xe382b8e383b3e38390e38396e382a8, 'Y', '2005-02-18 06:54:55'),
(618, 27, 0x56616c756120636f6d656e7365, 'Y', '2005-02-18 12:05:07'),
(619, 27, 0x56616c75612066696e69, 'Y', '2005-02-18 12:05:07'),
(188, 27, 0x45646974612073696e69612073656372657461, 'Y', '2005-02-18 12:09:20'),
(189, 27, 0x53696e6961207365637265746120766561, 'Y', '2005-02-18 12:09:20'),
(190, 27, 0x53696e69612073656372657461206e6f7661, 'Y', '2005-02-18 12:09:20'),
(192, 27, 0x43616d6269612073696e69612073656372657461, 'Y', '2005-02-18 12:09:20'),
(194, 27, 0x41766973616e746520736f6c61, 'Y', '2005-02-18 12:09:20'),
(206, 27, 0x41766973616e746573207065722065706f737461, 'Y', '2005-02-18 12:09:20'),
(213, 27, 0x436f6c6f72206465206c656e696f, 'Y', '2005-02-18 12:09:20'),
(402, 27, 0x417469766961, 'Y', '2005-02-18 12:09:20'),
(955, 27, 0x566163616e7365, 'Y', '2005-02-18 12:09:20'),
(164, 27, 0x63692061696461206120447261676f6e, 'Y', '2005-02-18 12:13:01'),
(259, 27, '', 'Y', '2008-01-21 19:27:11'),
(265, 27, '', 'Y', '2008-01-21 19:27:11'),
(267, 27, 0x474f206e6f766173, 'Y', '2005-02-18 12:13:01'),
(273, 27, 0x526567756c6173, 'Y', '2005-02-18 12:13:01'),
(291, 27, 0x4973746f726961, 'Y', '2005-02-18 12:13:01'),
(292, 27, 0x556e206973746f72696120636f727461, 'Y', '2005-02-18 12:13:01'),
(32, 27, 0x506172646f6e612c206e6f206573207475206d6f76652e, 'Y', '2005-02-18 12:13:42'),
(1014, 27, '', 'Y', '2008-01-21 19:27:11'),
(449, 27, 0x4a6170616e6573, 'Y', '2008-01-21 19:26:37'),
(450, 27, 0x257320706572206d6f7665206520257320706c7520706572696f646f732e, 'Y', '2005-02-18 12:34:51'),
(451, 27, 0x43616e616469616e, 'Y', '2005-02-18 12:34:51'),
(1014, 19, '', 'Y', '2006-12-29 00:39:59'),
(1015, 19, '', 'Y', '2006-12-29 00:39:59'),
(1028, 24, 0x68656272656a736bc3bd, 'Y', '2005-09-01 01:27:19'),
(958, 27, 0x4a756e7461, 'Y', '2005-02-26 00:35:54'),
(959, 27, 0x53757374726165, 'Y', '2005-02-26 00:35:54'),
(962, 27, 0x41766520626f6e20766163616e736521, 'Y', '2005-02-26 00:35:54'),
(1015, 27, '', 'Y', '2008-01-21 19:27:11'),
(530, 27, 0x4573706c6963612074752064656d616e646120656e206c6120464151206f20656e206c6120474f20666f726f2e204573746120657320626f6e2c206365207475206d656e73696f6e6120616d626f732c20736972636120636520726567756c61207475206d616e636120696e666f726d612065207369726361206c61207369747561206465206c61206a756120657374612061706c69636164612e, 'Y', '2005-03-08 17:37:49'),
(332, 27, 0x44697370757465206d6f646f206465206c61206a7561, 'Y', '2005-03-08 23:37:49'),
(432, 27, 0x4465736176616e74616a65206e6f726d616c20286b6f6d6920302e35207369206e6f206567616c29, 'Y', '2008-01-21 19:22:30'),
(433, 27, 0x4465736176616e74616a6520616a757374616e7465, 'Y', '2005-03-08 23:37:49'),
(452, 27, 0x25732070657220257320706574726173, 'Y', '2005-03-08 23:37:49'),
(1029, 24, '', 'Y', '2009-06-22 11:09:03'),
(281, 18, 0x5374726174656769612065207465726d696e69, 'Y', '2005-04-25 17:30:47'),
(531, 17, 0x4a616b69652073b120706f64737461776f7765207a617361647920476f3f, 'Y', '2005-03-15 22:36:05'),
(545, 17, '', 'Y', '2010-12-26 18:49:10'),
(555, 17, 0x57206a616b692073706f73f362206d6f67ea2070727a65676cb16461e620706c696b69202e7367663f, 'Y', '2013-08-26 22:03:07'),
(557, 17, 0x4a616b20726f7a706f637ab1e6206e6f77b1206772ea3f, 'Y', '2005-03-15 22:36:05'),
(559, 17, 0x4a616b2077796b6f6e797761e620727563687920772067727a653f, 'Y', '2005-03-15 22:36:05'),
(573, 17, 0x4a616b6965206279b379206f737461746e6965207a6d69616e792077204641513f, 'Y', '2005-03-15 22:36:05'),
(591, 17, 0x437a79206d6f67ea207a7769ea6b737a79e620637a6173206e612073776f696d207a656761727a653f, 'Y', '2005-03-15 22:36:05'),
(593, 17, 0x437a79206d6f67ea20646f6461e620637a61732073776f6a656d752070727a656369776e696b6f77693f, 'Y', '2005-03-15 22:36:05'),
(1346, 5, '', 'N', '2011-01-07 15:16:19'),
(595, 17, 0x437a796d2073b12077616b61636a653f, 'Y', '2005-03-15 22:36:05'),
(601, 17, '', 'Y', '2010-12-26 18:49:10'),
(1015, 17, 0x6573706572616e746f, 'Y', '2013-08-21 00:28:46'),
(1028, 17, 0x68656272616a736b69, 'Y', '2005-03-24 23:04:07'),
(1030, 5, 0x566965746e616d69656e, 'Y', '2005-03-26 20:29:37'),
(80, 28, 0x4368c3a06f2062e1baa16e, 'Y', '2005-04-03 09:27:44'),
(84, 28, 0x482623373839313b205326233431373b, 'Y', '2005-03-27 01:21:58'),
(85, 28, 0x546826233433323b, 'Y', '2005-03-27 01:21:58'),
(86, 28, 0x56692623373837313b7420546826233433323b, 'Y', '2005-03-27 01:21:58'),
(87, 28, 0x4d2623373930313b69, 'Y', '2005-03-27 01:21:58'),
(90, 28, 0x442623373838333b6368, 'Y', '2005-03-27 01:21:58'),
(1028, 7, 0x48656272656a736b79, 'Y', '2005-03-29 13:40:13'),
(1029, 7, '', 'Y', '2008-01-08 15:28:39'),
(1030, 7, 0x566965746e616d736b79, 'Y', '2005-03-29 13:40:13'),
(501, 7, 0x4e6173746176656eed2075be69766174656c6520447261676f6e75, 'Y', '2016-07-20 17:29:42'),
(503, 7, 0x52f97a6ee9, 'Y', '2005-03-29 13:40:13'),
(515, 7, '', 'Y', '2008-01-08 15:28:39'),
(967, 7, '', 'Y', '2008-01-08 15:28:39'),
(968, 7, '', 'N', '2008-01-08 15:28:39'),
(971, 7, '', 'N', '2008-01-08 15:28:39'),
(972, 7, '', 'N', '2008-01-08 15:28:39'),
(979, 7, '', 'Y', '2008-01-08 15:28:39'),
(980, 7, '', 'Y', '2008-01-08 15:28:39'),
(1028, 2, 0x486562726169736b, 'Y', '2005-03-30 14:31:13'),
(1029, 2, '', 'Y', '2008-07-26 20:40:42'),
(1030, 2, 0x566965746e616d657369736b, 'Y', '2005-03-30 14:31:13'),
(593, 2, 0x4b616e206d616e206769206d6f747374616e646572656e206c656e677265207370696c6c2d7469643f, 'Y', '2005-03-30 15:28:04'),
(594, 2, 0x4e65692e, 'N', '2005-03-30 15:28:04'),
(635, 2, 0x48766f72666f72206572206e6f656e206272756b65726520696b6b65206d65642069206272756b65722d6c697374656e3f, 'Y', '2005-03-30 15:28:04'),
(453, 27, 0x706c7520706572206d6f7665, 'Y', '2005-04-02 21:01:00'),
(724, 27, 0x537574726165206d6573616a6573206d616369616461, 'Y', '2005-04-02 21:01:00'),
(83, 28, 0x5068c3b26e6720c490e1bba369, 'Y', '2005-04-03 08:59:21'),
(98, 28, 0x4e67c3a079, 'Y', '2005-04-03 08:59:21'),
(99, 28, 0x4e67c3a079, 'Y', '2005-04-03 08:59:21'),
(100, 28, 0x56c3a0, 'Y', '2005-04-03 08:59:21'),
(101, 28, 0x5469e1babf6e67, 'Y', '2005-04-03 09:50:39'),
(102, 28, 0x5469e1babf6e67, 'Y', '2005-04-03 09:50:39'),
(134, 28, 0x44616e68, 'Y', '2005-04-03 08:59:21'),
(314, 28, 0x4de1bb9b69, 'Y', '2005-04-03 08:59:21'),
(330, 28, 0x5472e1baaf6e67, 'Y', '2005-04-03 08:59:21'),
(331, 28, 0xc490656e, 'Y', '2005-04-03 08:59:21'),
(360, 28, 0x4dc3a075, 'Y', '2005-04-03 08:59:21'),
(5198, 40, 0x566f746f20417475616c, 'Y', '2014-04-13 17:47:52'),
(95, 28, 0x5472616e672074e1baa16f2072612074e1baa169, 'Y', '2005-04-03 09:05:40'),
(202, 28, 0x54c3aa6e2063e1bba7612062e1baa16e, 'Y', '2005-04-03 09:28:20'),
(247, 28, 0xc490c4836e67206bc3bd2068e1bb932073c6a1206de1bb9b69, 'Y', '2005-04-03 09:15:39'),
(344, 28, 0xc490c4836e67206bc3bd, 'Y', '2005-04-03 09:15:39'),
(944, 28, 0x486f61206be1bbb3, 'Y', '2005-04-03 09:17:38'),
(950, 28, 0x5669e1bb8774204e616d, 'Y', '2005-04-03 09:17:38'),
(176, 28, 0xc490e1baa574204ec6b0e1bb9b63, 'Y', '2005-04-03 09:32:43'),
(177, 28, 0x5468c3a06e68205068e1bb91, 'Y', '2005-04-03 09:32:43'),
(178, 28, 0x5469e1bb83752042616e67, 'Y', '2005-04-03 09:32:43'),
(181, 28, 0xc490e1bb8b61204368e1bb8920456d61696c, 'Y', '2005-04-03 09:32:43'),
(185, 28, 0x4e6768e1bb81204e676869e1bb8770, 'Y', '2005-04-03 09:32:43'),
(215, 28, 0x5472c3a169, 'Y', '2005-04-03 09:32:43'),
(217, 28, 0x5068e1baa369, 'Y', '2005-04-03 09:32:43'),
(1030, 28, 0x5469e1babf6e67205669e1bb8774, 'Y', '2005-04-03 09:32:43'),
(362, 28, 0x4368e1baa570, 'Y', '2005-04-06 03:07:57'),
(1030, 24, 0x766965746e616d736bc3bd, 'Y', '2005-09-01 01:27:19'),
(315, 17, 0x4f64706f77696564bc, 'Y', '2005-04-07 00:58:27'),
(335, 17, 0x576961646f6d6fb6e6207a6170726f737a656e6961, 'Y', '2005-04-07 00:58:27'),
(211, 17, 0x4f6272617a20706c616e737a79, 'Y', '2005-04-07 00:58:27'),
(377, 17, 0x5374726f6e6120706f776974616c6e61, 'Y', '2005-04-07 00:58:27'),
(509, 17, 0x4574796b69657461206e6120447261676f6e6965, 'Y', '2005-04-07 01:05:36'),
(511, 17, 0x4d656e752069206f70636a65206e6120447261676f6e6965, 'Y', '2005-04-07 01:05:36'),
(1028, 6, 0x48656272656f, 'Y', '2005-04-15 19:33:09'),
(1030, 6, 0x566965746e616d697461, 'Y', '2005-04-15 19:33:09'),
(225, 18, 0x417272656e6465727369, 'Y', '2005-04-19 11:56:55'),
(226, 18, 0x5061737361726520696c207475726e6f, 'Y', '2005-04-19 11:56:55'),
(227, 18, 0x43616e63656c6c617265206c612070617274697461, 'Y', '2006-08-15 14:41:31'),
(234, 18, 0x52697072656e646920696c2067696f636f, 'Y', '2005-04-19 11:56:55'),
(415, 18, '', 'Y', '2005-04-19 11:56:55'),
(417, 18, 0x526973756c74612076756f746f20696e2071756573746f206d6f6d656e746f, 'Y', '2006-05-25 20:53:34'),
(419, 18, 0x736f6c6f202573, 'Y', '2005-04-19 11:56:55'),
(420, 18, 0x4e756d65726f20646920706172746974652064612061676769756e67657265, 'Y', '2005-04-19 11:56:55'),
(457, 18, 0x546f726e6120696e64696574726f, 'Y', '2006-05-25 20:53:34'),
(458, 18, 0x507269676f6e69657269, 'Y', '2005-04-19 11:56:55'),
(484, 18, 0x47656e, 'Y', '2005-04-19 11:56:55'),
(485, 18, '', 'Y', '2012-08-22 20:48:45'),
(486, 18, '', 'Y', '2012-08-22 20:48:45'),
(487, 18, 0x4d6167, 'Y', '2005-04-19 11:56:55'),
(488, 18, '', 'Y', '2012-08-22 20:48:45'),
(489, 18, 0x41676f, 'Y', '2005-04-19 11:56:55'),
(490, 18, 0x536574, 'Y', '2005-04-19 11:56:55'),
(491, 18, 0x4f7474, 'Y', '2005-04-19 11:56:55'),
(492, 18, 0x446963, 'Y', '2005-04-19 11:56:55'),
(2242, 7, 0x4872616a207a61e8ed6e616aed63ed206261727675, 'Y', '2016-07-20 16:22:45'),
(495, 18, '', 'Y', '2012-08-22 20:48:45'),
(496, 18, 0x4c7567, 'Y', '2005-04-19 11:56:55'),
(497, 18, '', 'Y', '2005-04-19 11:56:55'),
(498, 18, 0x4461, 'Y', '2006-05-25 21:01:26'),
(345, 18, 0x496e73657269726520692064617469, 'Y', '2006-05-25 20:42:46'),
(423, 18, 0x4c276176766572736172696f206465766520617665726520756e20677261646f, 'Y', '2010-03-04 01:17:32'),
(424, 18, 0x53652073ec2c20677261646f20636f6d707265736f20747261, 'Y', '2010-03-04 01:17:32'),
(322, 18, 0x51756573746f20696e7669746f20616c6c6120257370617274697461257320e8206769612073746174612061636365747461746f2e, 'Y', '2006-05-25 20:59:49'),
(323, 18, 0x4c27696e7669746f20e820737461746f206465636c696e61746f206f206c61207061727469746120e82073746174612063616e63656c6c6174612e, 'Y', '2006-05-25 20:59:49'),
(326, 18, 0x496e76696120726973706f737461, 'Y', '2005-04-19 13:01:35'),
(327, 18, 0x4e756f766f206d657373616767696f, 'Y', '2005-04-19 13:01:35'),
(328, 18, 0x4120286964207574656e746529, 'Y', '2005-04-19 13:01:35'),
(329, 18, 0x496e766961206d657373616767696f, 'Y', '2005-04-19 13:01:35'),
(333, 18, 0x41636365747461, 'Y', '2005-04-19 13:01:35'),
(334, 18, 0x4465636c696e61, 'Y', '2005-04-19 13:01:35'),
(335, 18, 0x4d657373616767696f206427696e7669746f, 'Y', '2005-04-19 13:01:35'),
(336, 18, 0x496e76696120756e20696e7669746f, 'Y', '2005-04-19 13:04:08'),
(346, 18, 0x4d657373616767696f20696e766961746f, 'Y', '2006-05-25 20:59:49'),
(431, 18, 0x4772616e64657a7a612064656c207461766f6c6f2064692067696f636f, 'N', '2006-05-25 20:59:49'),
(432, 18, 0x48616e646963617020636f6e76656e7a696f6e616c652028496c206b6f6d69207361726120302e3520736520692067696f6361746f7269206e6f6e20736f6e6f20616c6c6f2073746573736f206c6976656c6c6f29, 'Y', '2005-04-19 13:04:08'),
(436, 18, 0x6d657369, 'Y', '2005-04-19 13:04:08'),
(439, 18, 0x636f6e, 'Y', '2005-04-19 13:04:08'),
(442, 18, 0x706572, 'Y', '2005-04-19 13:04:08'),
(443, 18, 0x54656d706f20274669736368657227, 'Y', '2010-03-04 01:52:56'),
(445, 18, 0x49442070617274697461, 'Y', '2005-04-19 13:04:08'),
(446, 18, 0x436f6c6f7269, 'Y', '2005-04-19 13:06:58'),
(447, 18, '', 'Y', '2005-04-19 13:06:58'),
(449, 18, 0x47696170706f6e657365, 'Y', '2005-04-19 13:06:58'),
(450, 18, 0x257320706572206f676e69207475726e6f20636f6e20257320706572696f6469206578747261, 'Y', '2005-04-19 13:06:58'),
(451, 18, 0x43616e6164657365, 'Y', '2010-03-04 01:16:50'),
(452, 18, 0x257320706572206f676e6920257320706965747265, 'Y', '2005-04-19 13:06:58'),
(453, 18, 0x657874726120706572206f676e69206d6f737361, 'Y', '2006-05-25 20:59:49'),
(724, 18, 0x43616e63656c6c612069206d657373616767692073656c657a696f6e617469, 'Y', '2006-05-25 20:59:49'),
(726, 18, 0x4d6f646966696361206c612063617274656c6c61, 'Y', '2006-05-25 20:59:49'),
(741, 18, 0x5072696e636970616c65, 'Y', '2005-04-19 13:08:18'),
(742, 18, 0x43657374696e6f, 'Y', '2005-04-19 13:08:18'),
(743, 18, 0x496e766961746f, 'Y', '2005-04-19 13:08:18'),
(744, 18, 0x53706f737461206e656c6c612063617274656c6c61207175616e646f20726973706f6e6469, 'Y', '2006-05-25 20:59:49'),
(745, 18, 0x53706f737461206e656c6c612063617274656c6c61, 'Y', '2006-05-25 20:59:49'),
(746, 18, 0x4e6f6d652063617274656c6c61, 'Y', '2005-04-19 13:08:18'),
(156, 18, 0x4c612062696f67726166696120e820737461746120616767696f726e617461, 'Y', '2006-05-25 21:10:10'),
(157, 18, 0x4c612070617373776f726420e8207374617461206d6f6469666963617461, 'Y', '2006-05-25 21:10:10'),
(158, 18, 0x496c2070726f66696c6f20e820737461746f20616767696f726e61746f, 'Y', '2006-05-25 21:10:10'),
(175, 18, 0x416c74726f3a, 'Y', '2005-04-19 13:08:18'),
(176, 18, 0x5061657365, 'Y', '2005-04-19 13:08:18'),
(177, 18, 0x43697474e0, 'Y', '2005-04-19 15:13:49'),
(178, 18, 0x526567696f6e65, 'Y', '2005-04-19 15:13:49'),
(179, 18, '', 'Y', '2012-08-22 20:48:45'),
(180, 18, '', 'Y', '2012-08-22 20:48:45'),
(181, 18, '', 'Y', '2012-08-22 20:48:45'),
(182, 18, 0x4e756d65726f20494351, 'Y', '2005-04-19 15:13:49'),
(183, 18, 0x507265666572656e7a652064692067696f636f, 'Y', '2005-04-19 15:13:49'),
(184, 18, 0x486f626279, 'Y', '2006-05-25 21:10:10'),
(187, 18, 0x4d6f646966696361206c612062696f677261666961, 'Y', '2006-05-25 21:10:10'),
(188, 18, 0x4d6f646966696361206c612070617373776f7264, 'Y', '2006-05-25 21:10:10'),
(189, 18, 0x50617373776f726420707265636564656e7465, 'Y', '2006-05-25 21:10:10'),
(190, 18, 0x4e756f76612070617373776f7264, 'Y', '2006-05-25 21:10:10'),
(192, 18, 0x4d6f6469666963612070617373776f7264, 'Y', '2006-05-25 21:10:10'),
(193, 18, 0x7370656e746f, 'Y', '2005-04-19 19:49:21'),
(194, 18, 0x536f6c6f206e6f746966696361, 'Y', '2005-04-19 19:49:21'),
(195, 18, 0x4d6f7373652065206d65737361676769, 'Y', '2005-04-19 19:49:21'),
(196, 18, 0x496e7465726f207461766f6c6f2064692067696f636f2065206d65737361676769, 'Y', '2005-04-19 19:49:21'),
(197, 18, 0x566572746963616c65, 'Y', '2005-04-19 19:49:21'),
(198, 18, 0x4f72697a7a6f6e74616c65, 'Y', '2005-04-19 19:49:21'),
(199, 18, 0x4d6f64696669636120696c2070726f66696c6f, 'Y', '2006-05-25 21:10:10'),
(185, 18, 0x4c61766f726f, 'Y', '2005-04-20 11:16:41'),
(200, 18, 0x507265666572656e7a6520706572736f6e616c69, 'Y', '2005-04-20 11:16:41'),
(206, 18, 0x4e6f746966696368652070657220656d61696c, 'Y', '2011-09-29 15:50:00'),
(207, 18, 0x5574696c697a7a61206c6520696d706f7374617a696f6e692064656c2062726f77736572, 'Y', '2006-05-25 21:10:10'),
(208, 18, 0x4c696e677561, 'Y', '2005-04-20 11:16:41'),
(211, 18, 0x477261666963612064656c207461766f6c6f2064612067696f636f, 'Y', '2006-05-25 21:10:10'),
(212, 18, 0x4772616e64657a7a612064656c6c6520706965747265, 'Y', '2006-05-25 21:10:10'),
(213, 18, 0x436f6c6f72652064656c206c65676e6f, 'Y', '2005-04-20 11:16:41'),
(215, 18, 0x53696e6973747261, 'Y', '2005-04-20 17:01:44'),
(216, 18, 0x5375, 'Y', '2005-04-20 17:01:44'),
(217, 18, 0x446573747261, 'Y', '2005-04-20 17:01:44'),
(218, 18, 0x4769f9, 'Y', '2006-05-25 21:10:10'),
(428, 18, 0x4c276f726f6c6f67696f2073636f72726520647572616e74652069207765656b656e64, 'Y', '2006-05-25 20:53:34'),
(618, 18, 0x4c6976656c6c6f20696e697a69616c65, 'Y', '2005-04-20 20:04:36'),
(619, 18, 0x4c6976656c6c6f2066696e616c65, 'Y', '2005-04-20 20:04:36'),
(620, 18, 0x446966666572656e7a61206c6976656c6c6f, 'Y', '2006-05-25 20:53:34'),
(307, 18, 0x456c656e636f20646569206d65737361676769, 'Y', '2006-05-25 20:59:49'),
(379, 18, 0x4d6f646966696361206c612062696f677261666961, 'Y', '2006-05-25 21:26:32'),
(393, 18, 0x446174612064692072656769737472617a696f6e65, 'Y', '2005-04-20 20:04:36'),
(394, 18, 0x556c74696d6f206163636573736f, 'Y', '2005-04-20 20:04:36'),
(395, 18, 0x496e666f726d617a696f6e692062696f6772616669636865, 'Y', '2005-04-20 20:04:36'),
(463, 18, 0x53766564657365, 'Y', '2006-05-25 21:10:10'),
(464, 18, 0x4e6f72766567657365, 'Y', '2006-05-25 21:10:10'),
(465, 18, 0x496e676c657365, 'Y', '2005-04-20 20:05:18'),
(466, 18, 0x5465646573636f, 'Y', '2005-04-20 20:05:18'),
(467, 18, 0x4672616e63657365, 'Y', '2005-04-20 20:05:18'),
(468, 18, 0x537061676e6f6c6f, 'Y', '2005-04-20 20:05:18'),
(469, 18, 0x4365636f, 'Y', '2006-05-25 21:10:10'),
(470, 18, 0x43696e657365202874726164697a696f6e616c6529, 'Y', '2006-05-25 21:10:10'),
(3226, 17, '', 'Y', '2013-08-21 00:43:28'),
(472, 18, 0x43696e657365202873656d706c6966696361746f29, 'Y', '2006-05-25 21:10:10'),
(473, 18, 0x4f6c616e64657365, 'Y', '2005-04-20 20:06:27'),
(479, 18, 0x546861696c616e64657365, 'Y', '2005-04-20 20:06:27'),
(494, 18, 0x496e666f726d617a696f6e692073756c6c277574656e7465202573, 'Y', '2006-10-12 12:53:46'),
(220, 18, 0x446972657a696f6e65206d656e75, 'Y', '2005-04-20 20:09:03'),
(222, 18, 0x4d6f64696669636120696c2070726f66696c6f, 'Y', '2006-05-25 21:10:10'),
(378, 18, 0x496e666f726d617a696f6e6920706572736f6e616c69, 'Y', '2006-05-25 21:10:10'),
(396, 18, 0x496e76696120756e206d657373616767696f20616c6c277574656e7465, 'Y', '2006-10-12 12:54:58'),
(397, 18, 0x496e20636f72736f, 'Y', '2005-04-20 20:09:03'),
(398, 18, 0x46696e69746f, 'Y', '2005-04-20 20:09:03'),
(399, 18, 0x56696e746f, 'Y', '2005-04-20 20:09:03'),
(400, 18, 0x506572736f, 'Y', '2005-04-20 20:09:03'),
(402, 18, 0x41747469766974e0, 'Y', '2010-10-18 16:18:54'),
(500, 18, 0x46696e6c616e64657365, 'Y', '2005-04-20 20:09:03'),
(731, 18, 0x4d6f646966696361206c652063617274656c6c6520646569206d65737361676769, 'Y', '2006-05-25 21:10:10'),
(736, 18, 0x506172746974652076696e7465, 'Y', '2005-04-20 20:09:03'),
(737, 18, 0x50617274697465207065727365, 'Y', '2005-04-20 20:09:03'),
(738, 18, 0x43616d626961206c61206475726174612064656c6c6120766163616e7a61, 'Y', '2006-05-25 21:10:10'),
(739, 18, 0x496e697a696120756e6120766163616e7a61, 'Y', '2010-03-19 10:22:08'),
(962, 18, 0x42756f6e6120766163616e7a6121, 'Y', '2006-05-25 21:10:10'),
(997, 18, 0x506f6c6163636f, 'Y', '2005-04-20 20:10:04'),
(998, 18, 0x4974616c69616e6f, 'Y', '2005-04-20 20:10:04'),
(1003, 18, 0x426173636f, 'Y', '2005-04-20 20:10:04'),
(1014, 18, '', 'Y', '2012-08-22 20:48:45'),
(1015, 18, '', 'Y', '2012-08-22 20:48:45'),
(1018, 18, 0x536c6f766163636f, 'Y', '2005-04-20 20:10:04'),
(1023, 18, 0x52756d656e6f, 'Y', '2005-04-20 20:10:04'),
(1028, 18, 0x456272656f, 'Y', '2005-04-20 20:10:04'),
(1029, 18, '', 'Y', '2012-08-22 20:48:45'),
(1030, 18, 0x566965746e616d697461, 'Y', '2005-04-20 20:10:04'),
(750, 18, 0x436f7265616e6f, 'Y', '2006-05-25 21:10:10'),
(954, 18, 0x527573736f, 'Y', '2005-04-20 20:23:48'),
(955, 18, 0x566163616e7a61, 'Y', '2005-04-20 20:23:48'),
(956, 18, 0x5370696163656e74652c206e6f6e20e820706f73736962696c65206d6f6469666963617265206c61206475726174612064656c6c612074756120766163616e7a6120696e2071756573746f206d6f6d656e746f, 'Y', '2006-05-25 21:10:10'),
(957, 18, 0x4c61206475726174612064656c6c6120766163616e7a612065207374617461206d6f6469666963617461, 'Y', '2006-05-25 21:10:10'),
(958, 18, 0x41676769756e6769, 'Y', '2005-04-20 20:23:48'),
(959, 18, 0x52696d6f757669, 'Y', '2005-04-20 20:23:48'),
(960, 18, 0x536365676c69206c61206475726174612064656c6c6120766163616e7a61, 'Y', '2005-04-20 20:23:48'),
(163, 18, 0x4c6120636f6d756e6974e0, 'Y', '2006-05-27 02:17:47'),
(165, 18, 0x4c696e6b, 'Y', '2006-05-25 21:26:32'),
(256, 18, 0x496e666f726d617a696f6e692067656e6572616c69, 'Y', '2005-04-21 11:35:07'),
(726, 27, 0x4564697461206c6f63612064652061726369766f73, 'Y', '2005-04-21 13:44:40'),
(164, 18, 0x636f6c6f726f2063686520636f6e74726962756973636f6e6f206120447261676f6e, 'Y', '2006-05-27 02:18:54'),
(168, 18, 0x49737472757a696f6e6920706572206c27696e7374616c6c617a696f6e65, 'Y', '2006-05-27 02:18:54'),
(169, 18, 0x73652076756f6920756e20447261676f6e20747574746f2074756f, 'Y', '2006-05-27 02:18:54'),
(170, 18, 0x53636172696361206920736f7267656e746920646920447261676f6e, 'Y', '2006-05-25 21:26:32'),
(265, 18, 0x4269626c696f746563612053656e736569, 'Y', '2006-05-25 21:26:32'),
(266, 18, 0x556e207369746f2077656220696e20636f6c6c61626f72617a696f6e652e204c65676769206520636f6e74726962756973636921, 'Y', '2006-05-25 21:26:32'),
(437, 18, 0x54656d706f207072696e636970616c65, 'Y', '2005-04-22 18:52:34'),
(267, 18, 0x4e6f766974e02073756c20476f, 'Y', '2006-05-25 21:26:32'),
(272, 18, 0x556e206d616e6761206368652074726174746120646920476f2e20526163636f6d616e6461746f21, 'Y', '2006-05-25 21:26:32'),
(273, 18, 0x5265676f6c65, 'Y', '2005-04-22 18:52:34'),
(274, 18, 0x556e6120696e74726f64757a696f6e6520696e746572617474697661, 'Y', '2006-05-25 21:26:32'),
(276, 18, 0x556e276f7474696d6120696e74726f64757a696f6e6520736372697474612064612070617274652064656c6c61204272697469736820476f204173736f63696174696f6e2e, 'Y', '2006-05-25 21:26:32'),
(283, 18, 0x50726f626c656d6920646920476f, 'Y', '2006-05-25 21:26:32'),
(285, 18, '', 'Y', '2012-08-22 20:48:45'),
(287, 18, 0x5465726d696e6920476f2067696170706f6e65736920636f6d756e692e, 'Y', '2006-05-25 21:26:32'),
(288, 18, 0x446576692073617065726520646920636f7361207374616e6e6f207061726c616e646f20676c6920616c7472692067696f6361746f72692e, 'Y', '2006-05-25 21:26:32'),
(284, 18, 0x5269736f6c76657265207175657374692070726f626c656d692070756f2061697574617274692061206d69676c696f72617265206e656c2067696f636f2e, 'Y', '2006-05-25 21:26:32'),
(291, 18, 0x53746f726961, 'Y', '2005-04-25 17:30:47'),
(275, 18, 0x51756573746f20e820756e206f7474696d6f207369746f2070657220696d70617261726520612067696f636172652e, 'Y', '2006-05-25 21:26:32'),
(300, 18, 0x416c7472692073657276657220646920476f, 'Y', '2006-05-25 21:26:32'),
(303, 18, 0x556e2067726f73736f207365727665722070657220696c2067696f636f20696e2074656d706f207265616c65, 'Y', '2006-05-25 21:26:32'),
(1030, 11, 0x566965746e616d656573, 'Y', '2005-04-26 21:47:40'),
(292, 18, 0x556e612073746f726961207269646f747461, 'Y', '2005-04-28 20:53:00'),
(293, 18, 0x5065722063686520736920616e6e6f69612076656c6f63656d656e74652e, 'Y', '2006-05-25 21:26:32'),
(295, 18, 0x5065722063686920646573696465726120636f6e6f736365726520747574746f2e, 'Y', '2006-05-25 21:26:32'),
(296, 18, 0x4c696272692073756c20476f2c206d6174657269616c652064692067696f636f206520736f667477617265, 'Y', '2006-05-25 21:26:32'),
(299, 18, 0x4e65676f7a696f206575726f70656f, 'Y', '2005-04-28 20:53:00'),
(305, 18, 0x456c656e636f2064656920736572766572, 'Y', '2006-05-25 21:26:32'),
(306, 18, 0x556e20656c656e636f20646920736572766572207069f920636f6d706c65746f, 'Y', '2006-05-25 21:26:32'),
(271, 18, '', 'Y', '2012-08-22 20:48:45'),
(377, 18, 0x506167696e612064692062656e76656e75746f, 'Y', '2006-05-25 21:26:32'),
(380, 18, 0x4d6f73747261206d657373616767696f, 'Y', '2006-05-25 21:26:32'),
(414, 18, 0x54656d706f206c696d697465, 'Y', '2010-04-02 15:53:59'),
(430, 18, 0x506172746563697061, 'Y', '2005-04-28 20:56:07'),
(454, 18, 0x506f73697a696f6e61206c6520747565207069657472652064692068616e6469636170, 'Y', '2007-08-23 18:56:32'),
(455, 18, 0x496e76696120652076616920616c6c612070726f7373696d612070617274697461, 'Y', '2010-03-04 01:16:20'),
(456, 18, 0x496e76696120652076616920616c6c6f20537461746f, 'Y', '2010-03-04 01:15:13'),
(1030, 4, 0x566965746e616d657369736368, 'Y', '2005-04-29 20:04:38'),
(337, 18, 0x436f6e7472696275746f7269206120447261676f6e, 'Y', '2005-05-01 01:37:37'),
(6156, 36, 0x46656b657465, 'Y', '2015-07-23 11:52:07'),
(384, 18, 0x4c6567676920666f72756d, 'Y', '2006-05-25 21:26:32'),
(730, 18, 0x4d6f646966696361206c6120766163616e7a61, 'Y', '2006-05-25 21:26:32'),
(1030, 23, 0xe38399e38388e3838ae383a0e8aa9e, 'Y', '2005-05-05 21:32:26'),
(39, 23, 0xe8a898e585a5e38197e3819fe6b097e58a9be381afe981a9e58887e381a7e381afe69c89e3828ae381bee3819be38293e38082e3808ce7b49ae3808de381a8e3808ce6aeb5e3808de38292e8a898e585a5e38197e381aae38184e381a7e4b88be38195e38184e38082, 'Y', '2005-05-05 21:32:26'),
(41, 23, 0xe3819de381aee5afbee5b180e3818ce5ad98e59ca8e38197e381a6e38184e381bee3819be38293e38082, 'Y', '2005-05-05 21:32:26'),
(42, 23, 0xe3819de381aee38395e382a9e383bce383a9e383a0e3818ce5ad98e59ca8e38197e381a6e38184e381bee3819be38293e38082, 'Y', '2005-05-05 21:32:26'),
(43, 23, 0xe38193e381aee383a1e383bce383abe381afe5ad98e59ca8e38197e381a6e38184e381aae38184e383a1e383bce383abe381aee8bf94e4bfa1e381bfe3819fe38184e381a7e38199e38082, 'Y', '2005-05-05 21:32:26'),
(44, 23, 0xe3819de381aee383a1e383bce383abe3818ce5ad98e59ca8e38197e381a6e38184e381bee3819be38293e38082, 'Y', '2005-05-05 21:32:26'),
(45, 23, 0xe3819de381aee383a6e383bce382b6e383bce3818ce5ad98e59ca8e38197e381a6e38184e381bee3819be38293e38082, 'Y', '2005-05-05 21:32:26'),
(46, 23, 0xe8a898e585a5e38197e3819fe383a6e383bce382b6e383bc4944e381afe697a2e381abe588a9e794a8e38195e3828ce381a6e38184e381bee38199e381aee381a7e38081e4bb96e381ae4944e38292e3818ae981b8e381b3e4b88be38195e38184e38082, 'Y', '2005-05-05 21:32:26'),
(49, 23, 0xe887aae58886e381aee5afbee5b180e38197e3818be5898ae999a4e587bae69da5e381bee3819be38293e38082, 'Y', '2005-05-05 21:32:26'),
(50, 23, 0xe3819de381aee5afbee5b180e381afe5a4a7e6848fe5b180e5be85e381a1e8a1a8e381abe5ad98e59ca8e38197e381a6e38184e381bee3819be38293e38082e68190e38289e3818fe38081e4bb96e381aee383a6e383bce382b6e383bce3818ce58f82e58aa0e38197e381bee38197e3819fe38082, 'Y', '2005-05-05 21:32:26'),
(51, 23, 0xe887aae58886e381aee5afbee5b180e38292e981b8e381b9e381bee3819be38293e38082, 'Y', '2005-05-05 21:32:26'),
(52, 23, 0xe981a9e58887e381aae7af84e59bb2e381abe585a5e381a3e381a6e38184e381bee3819be38293e381aee381a7e38081e38193e381aee5afbee5b180e381abe58f82e58aa0e587bae69da5e381bee3819be38293e38082, 'Y', '2005-05-05 21:32:26'),
(54, 23, 0xe38391e382b9e383afe383bce38389e381afe981a9e58887e381a7e381afe69c89e3828ae381bee3819be38293e38082, 'Y', '2005-05-05 21:32:26'),
(55, 23, 0xe6b097e58a9be381aee7a8aee9a19ee381afe4b88de6988ee381a7e38199e38082, 'Y', '2005-05-05 21:32:26'),
(56, 23, 0xe3819de381aee383a6e383bce382b6e383bc4944e381afe5ad98e59ca8e38197e381a6e38184e381bee3819be38293e38082, 'Y', '2005-05-05 21:32:26'),
(58, 23, 0xe695b0e5ad97e381aee9a085e79baee381a7e695b0e5ad97e38198e38283e381aae38184e38387e383bce382bfe38292e585a5e58a9be38197e381bee38197e3819fe38082, 'Y', '2005-05-05 21:32:26'),
(537, 23, 0xe5bd93e3819fe3828a, 'N', '2005-05-05 21:34:38'),
(539, 23, 0xe58aab, 'Y', '2005-05-05 21:34:38'),
(545, 23, 0xe7b49a, 'Y', '2005-05-05 21:34:38'),
(547, 23, 0xe6aeb5, 'Y', '2005-05-05 21:34:38'),
(555, 23, 0x534746e38395e382a1e382a4e383abe381afe381a9e38186e38284e381a3e381a6e8a1a8e7a4bae38197e381bee38199e3818befbc9f, 'N', '2005-05-05 21:34:38'),
(557, 23, 0xe381a9e38186e38284e381a3e381a6e696b0e38197e38184e5afbee5b180e38292e5a78be38281e381bee38199e3818befbc9f, 'Y', '2005-05-05 21:34:38'),
(559, 23, 0xe381a9e38186e38284e381a3e381a6e5afbee5b180e381aee4b880e6898be38292e68993e381a1e381bee38199e3818befbc9f, 'Y', '2005-05-05 21:37:34'),
(561, 23, 0xe381a9e38186e38284e381a3e381a6e68993e381a1e68e9be38191e381aee5afbee5b180e38292e5898ae999a4e38197e381bee38199e3818befbc9f, 'Y', '2005-05-05 21:37:34'),
(562, 23, 0xe58d81e6898be79baee381bee381a7e5898ae999a4e381aee383aae383b3e382afe381afe7a281e79ba4e381aee38197e3819fe381abe8a1a8e7a4bae38195e3828ce381bee38199e38082e38193e381aee696b9e6b395e381a7e5afbee5b180e38292e5898ae999a4e38199e3828ce381b0e38081e6b097e58a9be381afe58f8de698a0e38195e3828ce381bee3819be38293e38082e58d81e4b880e6898be79baee3818be38289e5afbee5b180e38292e5898ae999a4e587bae69da5e381bee3819be38293e38082, 'N', '2005-05-05 21:37:34'),
(563, 23, 0xe381a9e38186e38284e381a3e381a6e5afbee5b180e38292e7b582e3828fe3828ae381bee38199e3818befbc9f, 'Y', '2005-05-05 21:37:34'),
(603, 9, 0x506f72717565206f20447261676f6e206ee36f206d6520666f726e656365206f20652d6d61696c20646f206d6575206f706f6e656e74653f, 'Y', '2005-05-10 17:19:51'),
(605, 9, 0x436f6d6f20706f73736f2061726d617a656e617220746578746f206e6f205347463f, 'Y', '2005-05-10 17:19:51'),
(80, 29, 0x5072696a61766c6a656e206b616f, 'Y', '2005-05-13 07:17:35'),
(81, 29, 0x4e657072696a61766c6a656e, 'Y', '2005-05-13 07:17:35'),
(82, 29, '', 'Y', '2005-05-16 06:55:56'),
(83, 29, 0x26233236383b656b616f6e696361, 'Y', '2005-05-13 07:17:35'),
(84, 29, 0x506f64616369206f206b6f7269736e696b75, 'Y', '2005-05-13 07:17:35'),
(85, 29, 0x506f72756b65, 'Y', '2005-05-13 07:17:35'),
(86, 29, 0x506f26233335333b616c6a6920706f72756b75, 'Y', '2005-05-13 07:17:35'),
(87, 29, 0x506f7a6f7669, 'Y', '2005-05-13 07:17:35'),
(88, 29, 0x4b6f7269736e696369, 'Y', '2005-05-13 07:17:35'),
(89, 29, 0x50617274696a65, 'Y', '2005-05-13 07:17:35'),
(90, 29, 0x50726576656469, 'Y', '2005-05-13 07:17:35'),
(91, 29, 0x4469736b7573696a65, 'Y', '2005-05-13 07:17:35'),
(92, 29, '', 'Y', '2005-05-16 06:55:56'),
(93, 29, 0x4d6170612073616a7461, 'Y', '2005-05-13 07:17:35'),
(94, 29, 0x446f6b756d656e746163696a61, 'Y', '2005-05-13 07:17:35'),
(95, 29, 0x537472616e696361206b72656972616e612075, 'Y', '2005-05-13 07:17:35'),
(96, 29, '', 'Y', '2005-05-16 06:55:56'),
(97, 29, 0x4f646a617661, 'Y', '2005-05-13 07:17:35'),
(98, 29, 0x64616e, 'Y', '2005-05-13 07:17:35'),
(99, 29, 0x64616e61, 'Y', '2005-05-13 07:17:35'),
(100, 29, 0x69, 'Y', '2005-05-13 07:17:35'),
(101, 29, 0x736174, 'Y', '2005-05-13 07:17:35'),
(102, 29, 0x73617469, 'Y', '2005-05-13 07:17:35'),
(103, 29, 0x62657a2062796f796f6d692d6a61, 'Y', '2005-05-13 07:17:35'),
(104, 29, 0x736120257320646f6461746e6f20706f20706f74657a75, 'Y', '2005-05-13 07:17:35'),
(106, 29, 0x4a6170616e736b692062796f796f6d69, 'Y', '2005-05-13 07:17:35'),
(107, 29, 0x6b616d656e6f7669, 'Y', '2005-05-13 07:17:35'),
(108, 29, 0x4b616e6164736b692062796f796f6d69, 'Y', '2005-05-13 07:17:35'),
(132, 29, '', 'Y', '2005-05-16 06:55:56'),
(134, 29, 0x496d65, 'Y', '2005-05-13 07:17:35'),
(201, 29, 0x4b6f7269736e6926233236393b6b6f20696d65, 'Y', '2005-05-13 07:17:35'),
(204, 29, 0x506f64616369206f2072616e6775, 'Y', '2005-05-13 07:17:35'),
(205, 29, 0x52656a74696e67, 'Y', '2005-05-13 07:17:35'),
(310, 29, 0x4f64, 'Y', '2005-05-13 07:17:35'),
(311, 29, 0x54656d61, 'Y', '2005-05-13 07:17:35'),
(312, 29, 0x446174756d, 'Y', '2005-05-13 07:17:35'),
(314, 29, 0x4e6f766f, 'Y', '2005-05-13 07:17:35'),
(316, 29, 0x4f64676f766f726921, 'Y', '2005-05-13 07:17:35'),
(330, 29, 0x42656c69, 'Y', '2005-05-13 07:17:35'),
(331, 29, 0x43726e69, 'Y', '2005-05-13 07:17:35'),
(352, 29, '', 'Y', '2005-05-16 06:55:56'),
(359, 29, 0x50726f7469766e696b, 'Y', '2005-05-13 07:17:35'),
(360, 29, 0x426f6a61, 'Y', '2005-05-13 07:17:35'),
(361, 29, 0x56656c6926233236393b696e61, 'Y', '2005-05-13 07:17:35'),
(362, 29, 0x48656e64696b6570, 'Y', '2005-05-13 07:17:35'),
(363, 29, '', 'Y', '2005-05-16 06:55:56'),
(364, 29, 0x506f74657a69, 'Y', '2005-05-13 07:17:35'),
(368, 29, 0x506f736c65646e6a6920706f74657a, 'N', '2005-05-13 07:17:35'),
(374, 29, 0x5072696b6126233338323b69206e657a61767226233335333b656e652070617274696a65, 'Y', '2005-05-13 07:17:35'),
(375, 29, 0x5072696b6126233338323b69207a61767226233335333b656e652070617274696a65, 'Y', '2005-05-13 07:17:35'),
(388, 29, 0x536c6f626f64616e207a612070617274696a75, 'Y', '2005-05-13 07:17:35'),
(389, 29, 0x4e6f766520706f72756b65, 'Y', '2005-05-13 07:17:35'),
(390, 29, 0x566920737465206e6120706f74657a75207520736c65646526233236333b696d2070617274696a616d613a, 'Y', '2005-05-13 07:19:45'),
(391, 29, 0x4e656d612070617274696a61, 'Y', '2005-05-13 07:17:35'),
(460, 29, 0x736c65646526233236333b6120737472616e61, 'Y', '2005-05-13 07:17:35'),
(461, 29, 0x70726574686f646e6120737472616e61, 'Y', '2005-05-13 07:17:35'),
(462, 29, 0x446f64616a206b6f6c6f6e75, 'Y', '2005-05-13 07:17:35'),
(715, 29, 0x5672656d65206e6120737472616e696369, 'Y', '2005-05-13 07:17:35'),
(5799, 40, 0x4361726761206de9646961, 'Y', '2014-04-13 17:47:19'),
(4687, 36, 0x4ac3a174c3a96b6f7320737ac3ad6e65, 'Y', '2015-09-19 16:49:20'),
(719, 29, 0x506f6265646e696b202573207a6120252e3166, 'Y', '2005-05-13 07:17:35'),
(722, 29, 0x496d656e696b28666f6c64657229, 'Y', '2005-05-13 07:17:35'),
(732, 29, 0x446f7a766f6c6a656e6f206f646d6f72612864616e6129, 'Y', '2005-05-13 07:17:35'),
(733, 29, 0x4e61206f646d6f7275, 'Y', '2005-05-13 07:17:35'),
(747, 29, 0x537665206b6f6c6f6e65, 'Y', '2005-05-13 07:17:35'),
(755, 29, 0x536572766572736b6120706f72756b61, 'Y', '2005-05-13 07:17:35'),
(160, 29, 0x55766f64207520447261676f6e, 'Y', '2005-05-13 07:36:49'),
(191, 29, 0x506f7476726461206c6f7a696e6b65, 'Y', '2005-05-13 07:36:49'),
(202, 29, 0x496d652069207072657a696d65, 'Y', '2005-05-13 07:36:49'),
(223, 29, 0x5a61626f726176696c6920737465206c6f7a696e6b753f, 'Y', '2005-05-13 07:36:49'),
(240, 29, 0x506fc48d65746e6120737472616e61, 'Y', '2005-05-13 07:36:49'),
(242, 29, 0x536c6f626f646e6f2073652072656769737472756a7465206920696772616a74652e, 'Y', '2005-05-13 07:36:49'),
(243, 29, 0x5072696a61766974652073652e, 'Y', '2005-05-13 07:36:49'),
(244, 29, 0x4461206d616c6f2072617a676c6564617465206d6fc5be657465206b6f726973746974692025732e, 'Y', '2005-05-13 07:36:49'),
(245, 29, 0x4c6f7a696e6b61, 'Y', '2005-05-13 07:36:49'),
(246, 29, 0x5072696a617661, 'Y', '2005-05-13 07:36:49'),
(247, 29, 0x526567697374726163696a61206e6f766f67206e616c6f6761, 'Y', '2005-05-13 07:36:49'),
(248, 29, 0x55766f64, 'Y', '2005-05-13 07:36:49'),
(252, 29, 0x4a6fc5a1206a656e646f6d20646f62726f646fc5a16c692c20692075c5be6976616a7465207520706f7365746921, 'Y', '2005-05-13 07:36:49'),
(344, 29, 0x526567697374726163696a61, 'Y', '2005-05-13 07:36:49'),
(345, 29, 0x4d6f6c696d6f20756e657369746520706f6461746b65, 'Y', '2005-05-13 07:36:49'),
(478, 29, 0x5669c5a16520706f646174616b61206d6fc5be657465206e61c48769206e61203c6120687265663d226661712e706870223e464151206469736b7573696a616d613c2f613e2067646a652074616b6fc49165206d6fc5be65746520706f737461766974692069206e6f766120706974616e6a612e, 'Y', '2005-05-13 07:36:49'),
(109, 29, 0x50617274696a6120646f6461746121, 'Y', '2005-05-13 07:53:44'),
(225, 29, 0x507265646176616e6a65, 'Y', '2005-05-13 07:53:44'),
(226, 29, 0x5061736972616e6a65, 'Y', '2005-05-13 07:53:44'),
(227, 29, 0x42726973616e6a652070617274696a65, 'Y', '2005-05-13 07:53:44'),
(229, 29, 0x52657a756c746174, 'Y', '2005-05-13 07:53:44'),
(230, 29, 0x50617274696a61, 'Y', '2005-05-13 07:53:44'),
(231, 29, '', 'Y', '2005-05-16 06:55:56'),
(232, 29, 0x4f627269c5a1692070617274696a75, 'Y', '2005-05-13 07:53:44'),
(233, 29, 0x476f746f766f, 'Y', '2005-05-13 07:53:44'),
(234, 29, 0x4e617374617669207361206967726f6d, 'Y', '2005-05-13 07:53:44'),
(235, 29, 0x50726564616a, 'Y', '2005-05-13 07:53:44'),
(236, 29, '', 'Y', '2005-05-16 06:55:56'),
(237, 29, 0x507265736b6fc48d69206e6120736c656465c487752070617274696a75, 'Y', '2005-05-13 07:53:44'),
(238, 29, 0x4f627269c5a16920697a206c6973746520706f736d617472616e69682070617274696a61, 'Y', '2005-05-13 07:53:44'),
(239, 29, 0x446f64616a206e61206c6973747520706f736d617472616e69682070617274696a61, 'Y', '2005-05-13 07:53:44'),
(253, 29, 0x50617274696a61206f62726973616e6121, 'Y', '2005-05-13 07:53:44'),
(308, 29, 0x5a61, 'Y', '2005-05-13 07:53:44'),
(324, 29, 0x4f64676f766f72, 'Y', '2005-05-13 07:53:44'),
(325, 29, 0x506f72756b61, 'Y', '2005-05-13 07:53:44'),
(342, 29, 0x477261662072656a74696e6761207a61, 'Y', '2005-05-13 07:53:44'),
(343, 29, 0x4e61c5be616c6f73742c207072656d616c6f2070617274696a61207a6120666f726d6972616e6a65206772616661, 'Y', '2005-05-13 07:53:44'),
(348, 29, 0x5a617672c5a1656e652070617274696a65, 'Y', '2005-05-13 07:53:44'),
(349, 29, 0x5472656e75746e652070617274696a65, 'Y', '2005-05-13 07:53:44'),
(350, 29, 0x5a617672c5a1656e652070617274696a65207a61202573, 'Y', '2005-05-13 07:53:44'),
(351, 29, 0x5472656e75746e652070617274696a65207a61202573, 'Y', '2005-05-13 07:53:44'),
(366, 29, '', 'Y', '2005-05-16 06:55:56'),
(370, 29, 0x4461, 'Y', '2005-05-13 07:53:44'),
(371, 29, 0x4e65, 'Y', '2005-05-13 07:53:44'),
(372, 29, '', 'N', '2005-05-16 06:55:56'),
(373, 29, 0x506f7a6f7669206f766f67206b6f7269736e696b61, 'Y', '2005-05-13 07:53:44'),
(406, 29, 0x4b6f6e76656e636f6e616c6e6f, 'Y', '2005-05-13 07:53:44'),
(408, 29, 0x497a6a65646e61c48d656e612070617274696a61207361206e69676972692d656d, 'Y', '2005-05-13 07:53:44'),
(409, 29, 0x44766f737472756b612070617274696a61, 'Y', '2005-05-13 07:53:44'),
(411, 29, 0x506f64616369, 'Y', '2005-05-13 07:53:44'),
(412, 29, 0x4b6f6d656e746172, 'Y', '2005-05-13 07:53:44'),
(414, 29, 0x5672656d656e736b6f206f6772616e69c48d656e6a65, 'Y', '2005-05-13 07:53:44'),
(415, 29, 0x42726f6a2070617274696a61, 'Y', '2005-05-13 07:53:44'),
(416, 29, 0x5672656d652076696b656e646f6d, 'Y', '2005-05-13 07:53:44'),
(417, 29, 0x497a676c656461206461206a65207472656e75746e6f207072617a6e6f, 'Y', '2005-05-13 07:53:44'),
(419, 29, 0x73616d6f202573, 'Y', '2005-05-13 07:53:44'),
(420, 29, 0x42726f6a2070617274696a61207a6120646f646176616e6a65, 'Y', '2005-05-13 07:53:44'),
(421, 29, '', 'Y', '2005-05-16 06:55:56'),
(422, 29, '', 'Y', '2005-05-16 06:55:56'),
(423, 29, 0x5a6168746576616a20227261746564222070726f7469766e696b61, 'Y', '2005-05-13 07:53:44'),
(424, 29, 0x416b6f2064612c206f707365672072656a74696e6761, 'Y', '2005-05-13 07:53:44'),
(425, 29, 0x446f64616a2070617274696a75, 'Y', '2005-05-13 07:53:44'),
(426, 29, 0x49677261c48d, 'Y', '2005-05-13 07:53:44'),
(427, 29, 0x42726f6a2070617274696a61, 'Y', '2005-05-13 07:53:44'),
(428, 29, 0x5672656d65207465c48d652076696b656e646f6d, 'Y', '2005-05-13 07:53:44'),
(429, 29, 0x4f627269c5a169, 'Y', '2005-05-13 07:53:44'),
(430, 29, 0x507269647275c5be69207365, 'Y', '2005-05-13 07:53:44'),
(437, 29, 0x476c61766e6f207672656d65, 'Y', '2005-05-13 07:53:44'),
(454, 29, 0x4d6f6c696d6f2c20706f737461766974652068656e64696b6570206b616d656e6f766521, 'Y', '2005-05-13 07:53:44'),
(455, 29, 0x507269687661746920692070726f6475c5be69206e6120736c656465c487752070617274696a75, 'Y', '2005-05-13 07:53:44'),
(456, 29, 0x507269687661746920692070726f6475c5be69206e6120737461747573, 'Y', '2005-05-13 07:53:44'),
(457, 29, 0x4e617a6164, 'Y', '2005-05-13 07:53:44'),
(458, 29, 0x5a61726f626c6a656e696369, 'Y', '2005-05-13 07:53:44'),
(484, 29, '', 'Y', '2005-05-16 06:55:56'),
(485, 29, '', 'Y', '2005-05-16 06:55:56'),
(486, 29, '', 'Y', '2005-05-16 06:55:56'),
(487, 29, 0x4d616a, 'Y', '2005-05-13 07:53:44'),
(488, 29, '', 'Y', '2005-05-16 06:55:56'),
(489, 29, 0x417667, 'Y', '2005-05-13 07:53:44'),
(490, 29, '', 'Y', '2005-05-16 06:55:56'),
(491, 29, 0x4f6b74, 'Y', '2005-05-13 07:53:44'),
(492, 29, '', 'Y', '2005-05-16 06:55:56'),
(2241, 7, 0x5665f8656a6ee9, 'Y', '2016-07-20 16:22:45'),
(495, 29, '', 'Y', '2005-05-16 06:55:56'),
(496, 29, '', 'Y', '2005-05-16 06:55:56'),
(497, 29, '', 'Y', '2005-05-16 06:55:56'),
(498, 29, 0x4f64, 'Y', '2005-05-13 07:53:44'),
(499, 29, 0x5a61, 'Y', '2005-05-13 07:53:44'),
(618, 29, 0x506fc48d65746e692072656a74696e67, 'Y', '2005-05-13 07:53:44'),
(619, 29, 0x4b72616a6e6a692072656a74696e67, 'Y', '2005-05-13 07:53:44'),
(620, 29, 0x52617a6c696b612072656a74696e6761, 'Y', '2005-05-13 07:53:44'),
(254, 29, 0x507269647275c5be656e2070617269746a6921, 'Y', '2005-05-13 07:55:37'),
(407, 29, '', 'Y', '2005-05-16 06:55:56'),
(307, 29, 0x4c6973746120706f72756b61, 'Y', '2005-05-13 08:09:42'),
(309, 29, '', 'Y', '2005-05-16 06:55:56'),
(315, 29, 0x4f64676f766f72656e6f, 'Y', '2005-05-13 08:09:42'),
(322, 29, 0x506f7a6976207a61206f767520257370617274696a752573206a65207665c48720707269687661c487656e2e, 'Y', '2005-05-13 08:09:42'),
(323, 29, 0x506f7a6976206a65206f6462696a656e20696c69206a652070617274696a61206f62726973616e61, 'Y', '2005-05-13 08:09:42'),
(326, 29, 0x506fc5a1616c6a69206f64676f766f72, 'Y', '2005-05-13 08:09:42'),
(327, 29, 0x4e6f766120706f72756b61, 'Y', '2005-05-13 08:09:42'),
(328, 29, 0x5a6120286b6f7269736e69c48d6b6f20696d6529, 'Y', '2005-05-13 08:09:42'),
(329, 29, 0x506fc5a1616c6a6920706f72756b75, 'Y', '2005-05-13 08:09:42'),
(332, 29, 0x507265646c6fc5be6920697a6d656e7520706f6465c5a16176616e6a61, 'Y', '2005-05-13 08:09:42'),
(333, 29, 0x5072696876617469, 'Y', '2005-05-13 08:09:42'),
(334, 29, 0x4f6462696a, 'Y', '2005-05-13 08:09:42'),
(335, 29, 0x506f72756b6120706f7a697661, 'Y', '2005-05-13 08:09:42'),
(336, 29, 0x506fc5a1616c6a6920706f7a6976, 'Y', '2005-05-13 08:09:42'),
(346, 29, 0x506f72756b6120706f736c61746121, 'Y', '2005-05-13 08:09:42'),
(431, 29, 0x56656c69c48d696e61207461626c65, 'N', '2005-05-13 08:09:42'),
(432, 29, 0x4b6f6e76656e63696f6e616c6e692068656e64696b657020286b6f6d6920302e3520616b6f206e696a6520697a6a65646e61c48d656e6129, 'Y', '2005-05-13 08:09:42'),
(433, 29, '', 'Y', '2005-05-16 06:55:56'),
(436, 29, 0x6d6573656369, 'Y', '2005-05-13 08:09:42'),
(439, 29, 0x7361, 'Y', '2005-05-13 08:09:42'),
(442, 29, 0x7a61, 'Y', '2005-05-13 08:09:42'),
(443, 29, 0x4669c5a16572, 'Y', '2005-05-13 08:09:42'),
(445, 29, 0x49442050617274696a65, 'Y', '2005-05-13 08:09:42'),
(446, 29, 0x426f6a65, 'Y', '2005-05-13 08:09:42'),
(447, 29, '', 'Y', '2005-05-16 06:55:56'),
(449, 29, 0x4a6170616e736b69, 'Y', '2005-05-13 08:09:42'),
(450, 29, 0x257320706f20706f74657a75206920257320646f6461746e696820706572696f6461, 'Y', '2005-05-13 08:09:42'),
(451, 29, 0x4b616e6164736b69, 'Y', '2005-05-13 08:09:42'),
(452, 29, 0x2573207a61202573206b616d656e6f7661, 'Y', '2005-05-13 08:09:42'),
(453, 29, 0x646f6461746e6f20706f20706f74657a75, 'Y', '2005-05-13 08:09:42'),
(724, 29, 0x556e69c5a17469206d61726b6972616e6520706f72756b65, 'Y', '2005-05-13 08:09:42'),
(726, 29, 0x497a6d656e6920696d656e696b6528666f6c6465726529, 'Y', '2005-05-13 08:09:42'),
(727, 29, 0x506f6465c5a16176616e6a61207a61206f76752070617274696a75207375202573697a6d656e6a656e612573, 'Y', '2005-05-13 08:09:42'),
(740, 29, 0x537665207072696d6c6a656e65, 'Y', '2005-05-13 08:09:42'),
(741, 29, 0x476c61766e69, 'Y', '2005-05-13 08:09:42'),
(742, 29, 0x536d65c48765, 'Y', '2005-05-13 08:09:42'),
(743, 29, 0x506f736c617465, 'Y', '2005-05-13 08:09:42'),
(744, 29, 0x5072656d65737469207520696d656e696b28666f6c6465722920706f736c65206f64676f766f7261, 'Y', '2005-05-13 08:09:42'),
(745, 29, 0x5072656d65737469207520696d656e696b28666f6c64657229, 'Y', '2005-05-13 08:09:42'),
(746, 29, 0x4e617a697620696d656e696b6128666f6c6465726129, 'Y', '2005-05-13 08:09:42'),
(156, 29, 0x42696f67726166696a6120697a6d656e6a656e6121, 'Y', '2005-05-13 08:28:15'),
(157, 29, 0x4c6f7a696e6b612070726f6d656e6a656e6121, 'Y', '2005-05-13 08:28:15'),
(158, 29, 0x50726f66696c20697a6d656e6a656e21, 'Y', '2005-05-13 08:28:15'),
(175, 29, 0x4f7374616c6f3a, 'Y', '2005-05-13 08:28:15'),
(176, 29, 0x5a656d6c6a61, 'Y', '2005-05-13 08:28:15'),
(177, 29, 0x47726164, 'Y', '2005-05-13 08:28:15'),
(178, 29, 0x4472c5be617661, 'Y', '2005-05-13 08:28:15'),
(179, 29, 0x4b6c7562, 'Y', '2005-05-13 08:28:15'),
(180, 29, 0x496e7465726e657420737472616e696361, 'Y', '2005-05-13 08:28:15'),
(181, 29, 0x41647265736120652d706fc5a17465, 'Y', '2005-05-13 08:28:15'),
(182, 29, 0x4943512d62726f6a, 'Y', '2005-05-13 08:28:15'),
(183, 29, 0x506f6465c5a16176616e6a61207a612070617274696a75, 'Y', '2005-05-13 08:28:15'),
(184, 29, 0x486f62696a69, 'Y', '2005-05-13 08:28:15'),
(185, 29, 0x5a616e696d616e6a65, 'Y', '2005-05-13 08:28:15'),
(187, 29, 0x497a6d656e692062696f67726166696a75, 'Y', '2005-05-13 08:28:15'),
(188, 29, 0x497a6d656e69206c6f7a696e6b75, 'Y', '2005-05-13 08:28:15'),
(189, 29, 0x5374617261206c6f7a696e6b61, 'Y', '2005-05-13 08:28:15'),
(190, 29, 0x4e6f7661206c6f7a696e6b61, 'Y', '2005-05-13 08:28:15'),
(192, 29, 0x497a6d656e69206c6f7a696e6b75, 'Y', '2005-05-13 08:28:15'),
(193, 29, 0x49736b6c6a75c48d656e6f, 'Y', '2005-05-13 08:28:15'),
(194, 29, 0x53616d6f206f62617665c5a174656e6a65, 'Y', '2005-05-13 08:28:15'),
(195, 29, 0x506f74657a69206920706f72756b65, 'Y', '2005-05-13 08:28:15'),
(196, 29, 0x506f7470756e61207461626c61206920706f72756b65, 'Y', '2005-05-13 08:28:15'),
(197, 29, 0x56657274696b616c6e6f, 'Y', '2005-05-13 08:28:15'),
(198, 29, 0x486f72697a6f6e74616c6e6f, 'Y', '2005-05-13 08:28:15'),
(199, 29, 0x497a6d656e692070726f66696c, 'Y', '2005-05-13 08:28:15'),
(200, 29, 0x4c69c48d6e6120706f6465c5a16176616e6a61, 'Y', '2005-05-13 08:28:15'),
(206, 29, 0x4f62617665c5a174656e6a61207072656b6f20652d706fc5a17465, 'Y', '2005-05-13 08:28:15'),
(207, 29, 0x4b6f726973746920706f6465c5a16176616e6a612062726f777365722d61, 'Y', '2005-05-13 08:28:15'),
(208, 29, 0x4a657a696b, 'Y', '2005-05-13 08:28:15'),
(209, 29, 0x5672656d656e736b61207a6f6e61, 'Y', '2005-05-13 08:28:15'),
(210, 29, 0x4e6fc4876e6f207672656d65, 'Y', '2005-05-13 08:28:15'),
(211, 29, 0x497a676c6564207461626c65, 'Y', '2005-05-13 08:28:15'),
(212, 29, 0x56656c69c48d696e61206b616d656e6f7661, 'Y', '2005-05-13 08:28:15'),
(213, 29, 0x426f6a6120647276657461, 'Y', '2005-05-13 08:28:15'),
(214, 29, 0x537472616e65207361206b6f6f7264696e6174616d61, 'Y', '2005-05-13 08:28:15'),
(215, 29, 0x4c65766f, 'Y', '2005-05-13 08:28:15'),
(216, 29, 0x476f7265, 'Y', '2005-05-13 08:28:15'),
(217, 29, 0x4465736e6f, 'Y', '2005-05-13 08:28:15'),
(218, 29, 0x446f6c65, 'Y', '2005-05-13 08:28:15'),
(219, 29, 0x426c616761206976696361207461626c65, 'Y', '2005-05-13 08:28:15'),
(220, 29, 0x4f726a656e746163696a61206d656e696a61, 'Y', '2005-05-13 08:28:15'),
(222, 29, 0x497a6d656e692070726f66696c, 'Y', '2005-05-13 08:28:15'),
(378, 29, 0x4d6f6a69206b6f7269736e69c48d6b6920706f64616369, 'Y', '2005-05-13 08:28:15'),
(379, 29, 0x497a6d656e692062696f67726166696a75, 'Y', '2005-05-13 08:28:15'),
(393, 29, 0x446174756d20726567697374726163696a65, 'Y', '2005-05-13 08:28:15'),
(394, 29, 0x506f736c65646e6a692070726973747570, 'Y', '2005-05-13 08:28:15'),
(395, 29, 0x42696f67726166736b6920706f64616369, 'Y', '2005-05-13 08:28:15'),
(396, 29, 0x506fc5a1616c6a6920706f72756b75206b6f7269736e696b75, 'Y', '2005-05-13 08:28:15'),
(397, 29, 0x5472656e75746e65, 'Y', '2005-05-13 08:28:15'),
(398, 29, 0x5a617672c5a1656e65, 'Y', '2005-05-13 08:28:15'),
(399, 29, 0x506f62656465, 'Y', '2005-05-13 08:28:15'),
(400, 29, 0x506f72617a69, 'Y', '2005-05-13 08:28:15'),
(5772, 40, 0x54616d616e686f205b25735d20696e76e16c69646f206465206d696e6961747572612028636f7272696769646f2070617261206f2070616472e36f292e, 'Y', '2014-07-30 14:28:34'),
(402, 29, 0x416b7469766e6f7374, 'Y', '2005-05-13 08:28:15'),
(463, 29, 0xc5a0766564736b69, 'Y', '2005-05-13 08:28:15'),
(464, 29, 0x4e6f727665c5a16b69, 'Y', '2005-05-13 08:28:15'),
(465, 29, 0x456e676c65736b69, 'Y', '2005-05-13 08:28:15'),
(466, 29, 0x4e656d61c48d6b69, 'Y', '2005-05-13 08:28:15'),
(467, 29, 0x4672616e6375736b69, 'Y', '2005-05-13 08:28:15'),
(468, 29, 0xc5a070616e736b69, 'Y', '2005-05-13 08:28:15'),
(469, 29, 0xc48c65c5a16b69, 'Y', '2005-05-13 08:28:15'),
(470, 29, 0x4b696e65736b6928547261646963696f6e616c6e6929, 'Y', '2005-05-13 08:28:15'),
(3208, 17, '', 'Y', '2013-08-21 00:43:28'),
(472, 29, 0x4b696e65736b6928506f6a65646e6f737461766c6a656e6929, 'Y', '2005-05-13 08:28:15'),
(473, 29, 0x44616e736b69, 'Y', '2005-05-13 08:28:15'),
(479, 29, '', 'Y', '2005-05-16 06:55:56'),
(494, 29, 0x4b6f7269736e69c48d6b6920706f64616369207a61202573, 'Y', '2005-05-13 08:28:15'),
(500, 29, 0x46696e736b69, 'Y', '2005-05-14 05:27:56'),
(731, 29, 0x497a6d656e6920696d656e696b6528666f6c646572652920706f72756b61, 'Y', '2005-05-13 08:28:15'),
(736, 29, 0x506f626564696f2070617274696a61, 'Y', '2005-05-13 08:28:15'),
(737, 29, 0x497a677562696f2070617274696a61, 'Y', '2005-05-13 08:28:15'),
(738, 29, 0x497a6d656e69207472616a616e6a65206f646d6f7261, 'Y', '2005-05-13 08:28:15'),
(739, 29, 0x5a61706fc48d6e69206f646d6f72, 'Y', '2005-05-13 08:28:15'),
(750, 29, 0x4b6f72656a736b69, 'Y', '2005-05-13 08:28:15'),
(954, 29, 0x5275736b69, 'Y', '2005-05-13 08:28:15'),
(955, 29, 0x4f646d6f72, 'Y', '2005-05-13 08:28:15'),
(956, 29, 0x4e61c5be616c6f73742c207472656e75746e6f206e65206d6fc5be6574652070726f6d656e697469207472616a616e6a65206f646d6f72612e, 'Y', '2005-05-13 08:28:15'),
(957, 29, 0x5472616a616e6a65206f646d6f72612070726f6d656e6a656e6f21, 'Y', '2005-05-13 08:28:15'),
(958, 29, 0x446f64616a, 'Y', '2005-05-13 08:28:15'),
(959, 29, 0x4f64737472616e69, 'Y', '2005-05-13 08:28:15'),
(960, 29, 0x4f6461626572697465207472616a616e6a65206f646d6f7261, 'Y', '2005-05-13 08:28:15'),
(962, 29, 0x4c65706f2073652070726f766564697465206e61206f646d6f727521, 'Y', '2005-05-13 08:28:15'),
(997, 29, 0x506f6c6a736b69, 'Y', '2005-05-13 08:28:15'),
(998, 29, 0x4974616c696a616e736b69, 'Y', '2005-05-13 08:28:15'),
(1003, 29, '', 'Y', '2005-05-16 06:55:56'),
(1014, 29, '', 'Y', '2005-05-16 06:55:56'),
(1015, 29, '', 'Y', '2005-05-16 06:55:56'),
(1018, 29, 0x536c6f7661c48d6b69, 'Y', '2005-05-13 08:28:15'),
(1023, 29, 0x52756d756e736b69, 'Y', '2005-05-13 08:28:15'),
(1028, 29, 0x48656272656a736b69, 'Y', '2005-05-13 08:28:15'),
(1029, 29, '', 'Y', '2005-05-16 06:55:56'),
(1030, 29, 0x56696a65746e616d736b69, 'Y', '2005-05-13 08:28:15'),
(1031, 29, 0x537270736b69, 'Y', '2005-05-13 08:28:15'),
(136, 29, 0x4469736b7573696a65, 'Y', '2005-05-13 08:35:55'),
(159, 29, 0x446f6b756d656e746163696a61, 'Y', '2005-05-13 08:35:55'),
(161, 29, 0xc48c6573746f20706f737461766c6a616e6120706974616e6a61, 'Y', '2005-05-13 08:35:55'),
(163, 29, 0x4c6a756469, 'Y', '2005-05-13 08:35:55'),
(164, 29, 0x6b6f6a6920646f7072696e6f736520447261676f6e2d75, 'Y', '2005-05-13 08:35:55'),
(165, 29, 0x4c696e6b6f7669, 'Y', '2005-05-13 08:35:55'),
(168, 29, 0x496e737472756b63696a65207a6120696e7374616c6163696a75, 'Y', '2005-05-13 08:35:55'),
(169, 29, 0x616b6f20c491656c6974652073766f6a20447261676f6e, 'Y', '2005-05-13 08:35:55'),
(170, 29, 0x507265757a6d6920697a766f726e69206b6f6420447261676f6e2d61, 'Y', '2005-05-13 08:35:55'),
(173, 29, 0x50726f6a656b617420447261676f6e206e6120736f75726365666f7267652d75, 'Y', '2005-05-13 08:35:55'),
(256, 29, 0x4f70c5a1746920706f64616369, 'Y', '2005-05-13 08:35:55'),
(337, 29, 0x447261676f6e2d7520646f7072696e6f7365, 'Y', '2005-05-13 08:35:55'),
(6083, 36, 0x534746206c6574c3b66c74c3a973652066656c74c3a974656c6573206cc3a970c3a973656b6b656c, 'Y', '2015-07-23 12:16:04'),
(6155, 36, 0x466568c3a972, 'Y', '2015-07-23 11:52:07'),
(340, 29, 0x464151206f6472c5be617661, 'Y', '2005-05-13 08:35:55'),
(377, 29, 0x537472616e69636120646f62726f646fc5a16c696365, 'Y', '2005-05-13 08:35:55'),
(380, 29, 0x5072696b61c5be6920706f72756b75, 'Y', '2005-05-13 08:35:55'),
(383, 29, 0x4c69737461206e697469, 'Y', '2005-05-13 08:35:55'),
(384, 29, 0x50726fc48d6974616a206469736b7573696a65, 'Y', '2005-05-13 08:35:55'),
(385, 29, 0x4e6f76612074656d61, 'N', '2005-05-13 08:35:55'),
(730, 29, 0x497a6d656e61206f646d6f7261, 'Y', '2005-05-13 08:35:55'),
(501, 29, 0x447261676f6e206b6f7269736e6963692069206e6a69686f76692070726f66696c69, 'N', '2005-05-13 08:41:44'),
(502, 29, 0x476f207465726d696e69, 'Y', '2005-05-13 08:41:44'),
(503, 29, 0x52617a6e6f, 'Y', '2005-05-13 08:41:44'),
(504, 29, 0x50726176696c6120476f2d61, 'Y', '2005-05-13 08:41:44'),
(505, 29, '', 'Y', '2005-05-16 06:55:56');
INSERT INTO `Translations` (`Original_ID`, `Language_ID`, `Text`, `Translated`, `Updated`) VALUES
(506, 29, 0x4973746f20c5a1746f206920706f656e2e204a65646e6120736c6f626f64612e, 'N', '2005-05-13 08:41:44'),
(507, 29, '', 'Y', '2005-05-16 06:55:56'),
(508, 29, 0x446f6461746e6920706f656e692c203c6120687265663d222f6661712e7068703f726561643d74266361743d3323456e74727938223e226d6f6b75223c2f613e6b6f6a6520646f62696a612062656c692e20536c75c5be69206461206269207365206e61646f6b6e6164696c6120707265646e6f7374206b6f6a7520696d612063726e69206b6164206f6469677261207072766920706f74657a2e, 'N', '2005-05-13 08:41:44'),
(509, 29, '', 'Y', '2005-05-16 06:55:56'),
(511, 29, 0x4d656e696a692069206f7063696a6520447261676f6e2d61, 'Y', '2005-05-13 08:41:44'),
(512, 29, 0x50617274696a65206e6120447261676f6e2d75, 'Y', '2005-05-13 08:41:44'),
(513, 29, 0x52617a766f6a20447261676f6e2d61, 'Y', '2005-05-13 08:41:44'),
(518, 29, '', 'N', '2005-05-16 06:55:56'),
(519, 29, 0x4e6967697269206a65206e61c48d696e206461207365206f6472656469206b6f6a692069677261c48d20646f62696a612063726e65206b616d656e6f76652e204a6564616e206f642069677261c48d6120757a696d61206e656b6f6c696b6f2062656c6968206b616d656e6f766120752072756b752e2044727567692069677261c48d20737461766c6a61206a6564616e20696c69206476612063726e61206b616d656e61206e61207461626c752c2075207a617669736e6f737469206461206c69206d69736c6920646120696d61206e65706172616e20696c6920706172616e2062726f6a206b616d656e6f7661206b6f642070726f7469766e696b612e20416b6f20706f676f64692c20646f62696a612063726e652c207520737570726f746e6f6d2062656c65206b616d656e6f76652e0d0a4e6120447261676f6e20736572766572752c206f76616a2070726f636573206a65206175746f6d6174697a6f76616e2e204e61206b72616a752c2062656c6920646f62696a612069206b6f6d69206f6420362e3520706f656e612e0d0a4e6967697269207365206b6f7269737469206b61642073752069677261c48d69206f747072696c696b65206973746520736e6167652e, 'N', '2005-05-13 08:41:44'),
(1031, 24, 0x737262736bc3bd, 'Y', '2005-05-15 09:30:36'),
(1, 29, 0x4e65206d6fc5be65746520706173697261746920707265206e65676f20736520706f7374617665207376692068656e64696b6570206b616d656e6f76692e, 'Y', '2005-05-16 06:55:56'),
(2, 29, 0x50617274696a61206a65207665c487207a617672c5a1656e612e, 'Y', '2005-05-16 06:55:56'),
(3, 29, 0x50617274696a61206a6fc5a1206e696a6520706fc48d656c612e, 'Y', '2005-05-16 06:55:56'),
(7, 29, 0x4e65206d6fc5be65746520706f7a7661746920736562652e, 'Y', '2005-05-16 06:55:56'),
(8, 29, 0x4e61c5be616c6f73742c2070617274696a61206e61206b6f6a752073746520706f7a76616e69206e696a652070726f6e61c491656e612e0d0a4461206c6920737465207665c487206f6462696c6920706f7a69763f, 'Y', '2005-05-16 06:55:56'),
(9, 29, 0x4e65206d6fc5be657465207a61726f62697469206b616d656e206b6f6a69206a652074656b207a61726f62696f206b616d656e20706fc5a1746f20626920746f20646f76656c6f20646f2070726574686f646e6520706f7a6963696a652e20506f676c6564616a74652070726176696c6f20226b6f2220752070726176696c696d612e, 'Y', '2005-05-16 06:55:56'),
(12, 29, 0x506f76657a6976616e6a652073612062617a6f6d206e6575737065c5a16e6f2e204d6f6c696d6f207361c48d656b616a746520706172206d696e757461206920706f6b75c5a1616a746520706f6e6f766f2e, 'Y', '2005-05-16 06:55:56'),
(13, 29, 0x42726973616e6a652070617274696a65206e6575737065c5a16e6f2e204f766f207665726f7661746e6f2069206e696a652070726f626c656d2e, 'Y', '2005-05-16 06:55:56'),
(14, 29, 0x446f646176616e6a6520706f72756b6520752062617a75206e696a6520757370656c6f2e, 'Y', '2005-05-16 06:55:56'),
(15, 29, 0x446f646176616e6a652070617274696a6520752062617a75206e696a6520757370656c6f2e, 'Y', '2005-05-16 06:55:56'),
(16, 29, 0x446f646176616e6a6520706f74657a6120752062617a75206e696a6520757370656c6f2e204f766f206d6fc5be6461206e696a652070726f626c656d2c2070726f7665726974652070617274696a75206a6fc5a1206a65646e6f6d20646120766964697465206461206c69206a6520706f74657a207a61706973616e2e, 'Y', '2005-05-16 06:55:56'),
(17, 29, 0x446f646176616e6a65207661c5a1696820706f646174616b6120752062617a75206e696a6520757370656c6f2e20416b6f206e65206d6fc5be657465206461207365207072696a61766974652c20706f6b75c5a1616a746520706f6e6f766f2c206120616b6f206e6520757370657465206b6f6e74616b746972616a746520706f6472c5a16b752e, 'Y', '2005-05-16 06:55:56'),
(18, 29, 0x557069742062617a65206e6575737065c5a1616e2e204d6f6c696d6f207361c48d656b616a746520706172206d696e757461206920706f6b75c5a1616a746520706f6e6f766f2e, 'Y', '2005-05-16 06:55:56'),
(19, 29, 0x53656c656b63696a612062617a65206e696a6520757370656c612e204d6f6c696d6f207361c48d656b616a746520706172206d696e757461206920706f6b75c5a1616a746520706f6e6f766f2e, 'Y', '2005-05-16 06:55:56'),
(20, 29, 0x53746172746f76616e6a652070617274696a65206e696a6520757370656c6f2e204d6f6c696d6f207361c48d656b616a746520706172206d696e757461206920706f6b75c5a1616a746520706f6e6f766f2e, 'Y', '2005-05-16 06:55:56'),
(22, 29, 0x4d6f72617465206461206e6176656465746520696d652e, 'Y', '2005-05-16 06:55:56'),
(27, 29, 0x56692069207661c5a12070726f7469766e696b206d6f7261746520756e6574692073746172746e692072656a74696e672c20696e61c48d65206e65206d6f6775206461206f64726564696d206f64676f766172616a75c487692068656e64696b65702e, 'Y', '2005-05-16 06:55:56'),
(32, 29, 0x4e696a65207661c5a120706f74657a2e, 'Y', '2005-05-16 06:55:56'),
(33, 29, 0x4c6f7a696e6b61206a652073616472c5be616c61206e6576616c69646e65207a6e616b6f76652c20646f7a766f6c6a656e692073752073616d6f2020612d7a2c20412d5a2c20302d3920616e64202d5f2b2e2c3a3b3f21252a2e, 'Y', '2005-05-16 06:55:56'),
(35, 29, 0x506f7476726461206c6f7a696e6b65207365206e6520736c61c5be65207361206e6f766f6d206c6f7a696e6b6f6d2c20767261746974652073652069206f746b7563616a746520706f6e6f766f2e, 'Y', '2005-05-16 06:55:56'),
(38, 29, 0x496d616d2070726f626c656d612073612072656a74696e676f6d2c206461206c692073746520697a6f73746176696c6920226b79752220696c69202264616e223f, 'Y', '2005-05-16 06:55:56'),
(39, 29, 0x496d616d2070726f626c656d612073612072656a74696e676f6d2c206e652062692074726562616c6f206461206b6f7269737469746520226b79752220696c69202264616e22207a61206f76616a207469702072656a74696e6761, 'Y', '2005-05-16 06:55:56'),
(40, 29, 0x4f76616a206b616d656e2062692073652073616d207a61726f62696f2c20616c692073616d6f7562697374766f206e696a6520646f7a6f6c6a656e6f206f76696d2070726176696c696d612e, 'Y', '2005-05-16 06:55:56'),
(41, 29, 0x54612070617274696a61206e696a652070726f6e61c491656e612e, 'Y', '2005-05-16 06:55:56'),
(42, 29, 0x4469736b7573696a61206b6f6a7520747261c5be697465206e696a652070726f6e61c491656e612e, 'Y', '2005-05-16 06:55:56'),
(43, 29, 0x486d6d2c206f766120706f72756b61206a6520697a676c656461206f64676f766f72206e61206e65706f73746f6a65c4877520706f72756b752e, 'Y', '2005-05-16 06:55:56'),
(44, 29, 0x506f72756b61206b6f6a7520747261c5be697465206e696a652070726f6e61c491656e612e, 'Y', '2005-05-16 06:55:56'),
(45, 29, 0x4b6f7269736e696b206e696a652070726f6e61c491656e2e, 'Y', '2005-05-16 06:55:56'),
(1031, 7, 0x537262736b79, 'Y', '2005-05-17 15:42:33'),
(1031, 4, 0x5365726269736368, 'Y', '2005-05-19 22:24:51'),
(1029, 6, '', 'Y', '2007-11-03 16:08:38'),
(1031, 6, 0x53657262696f, 'Y', '2005-05-20 01:24:09'),
(109, 21, 0x4c75646f20657374697320616c646f6e69746121, 'Y', '2007-05-14 21:07:23'),
(225, 21, 0x52657a69676e616e7461, 'Y', '2007-05-14 21:07:23'),
(226, 21, 0x506173616e7461, 'Y', '2007-05-14 21:07:23'),
(227, 21, 0x466f726967616e7461206c75646f6e, 'Y', '2007-05-14 21:07:23'),
(231, 21, 0x50617369, 'Y', '2005-05-22 03:51:28'),
(232, 21, 0x466f72696769206c75646f6e, 'Y', '2007-05-14 21:07:23'),
(235, 21, 0x52657a69676e69, 'Y', '2005-05-22 03:51:28'),
(253, 21, 0x4c75646f20666f72696769746121, 'Y', '2007-05-14 21:07:23'),
(324, 21, 0x526573706f6e6469, 'Y', '2005-05-22 03:51:28'),
(415, 21, 0x234c75646f6a, 'Y', '2005-05-22 03:51:28'),
(202, 21, 0x506c656e61206e6f6d6f, 'Y', '2005-05-22 03:51:45'),
(229, 21, 0x506f656e7461726f, 'Y', '2005-05-22 03:52:37'),
(233, 21, 0x46696e697461, 'Y', '2005-05-22 03:52:37'),
(430, 21, 0x416c69f869, 'Y', '2007-05-14 21:07:23'),
(411, 21, 0x496e666f726d6f, 'Y', '2005-05-22 03:54:42'),
(419, 21, 0x4e7572202573, 'Y', '2007-05-24 22:50:30'),
(421, 21, '', 'Y', '2011-03-29 20:29:29'),
(422, 21, '', 'Y', '2011-03-29 20:29:29'),
(425, 21, 0x416c646f6e69206c75646f6e, 'Y', '2005-05-22 03:54:42'),
(426, 21, 0x4c7564616e746f, 'Y', '2005-05-22 03:54:42'),
(427, 21, 0x4e6f6d62726f206465206c75646f6a, 'Y', '2005-05-22 03:54:42'),
(429, 21, 0x466f72696769, 'Y', '2007-05-14 21:07:23'),
(366, 21, 0x54616b73697461, 'Y', '2005-05-22 03:57:46'),
(484, 21, 0x4a616e, 'Y', '2005-05-22 04:00:08'),
(485, 21, '', 'Y', '2011-03-29 20:29:29'),
(486, 21, '', 'Y', '2011-03-29 20:29:29'),
(487, 21, 0x4d616a, 'Y', '2005-05-22 04:00:08'),
(488, 21, '', 'Y', '2011-03-29 20:29:29'),
(489, 21, 0x4126233336353b67, 'Y', '2005-05-22 04:00:08'),
(490, 21, '', 'Y', '2011-03-29 20:29:29'),
(491, 21, 0x4f6b74, 'Y', '2005-05-22 04:00:08'),
(492, 21, '', 'Y', '2011-03-29 20:29:29'),
(499, 21, 0x416c2332, 'Y', '2005-05-22 04:00:44'),
(495, 21, '', 'Y', '2011-03-29 20:29:29'),
(496, 21, '', 'Y', '2011-03-29 20:29:29'),
(497, 21, '', 'Y', '2011-03-29 20:29:29'),
(498, 21, 0x44652332, 'Y', '2005-05-22 04:01:18'),
(373, 21, 0x496e76697469207469756e20757a616e746f6e, 'Y', '2005-05-22 04:01:38'),
(244, 18, 0x55736120257320706572206461726520756e276f6363686961746120696e746f726e6f2e, 'Y', '2010-03-19 09:54:30'),
(247, 18, 0x4372656120756e206e756f766f206163636f756e742e, 'Y', '2005-05-25 15:52:38'),
(332, 18, 0x446973637574692064656920706172616d657472692064692067696f636f, 'Y', '2005-05-25 15:52:38'),
(209, 18, 0x4675736f206f726172696f, 'Y', '2006-05-25 21:10:10'),
(1031, 18, 0x536572626f, 'Y', '2005-05-25 15:52:38'),
(136, 18, '', 'Y', '2012-08-22 20:48:45'),
(161, 18, 0x446f6d616e6465207269636f7272656e7469202846415129, 'Y', '2006-05-25 21:26:32'),
(258, 18, 0x496e666f726d617a696f6e6920737520476f, 'Y', '2006-05-25 21:26:32'),
(259, 18, 0x4641512073756c20476f, 'Y', '2010-03-29 18:59:20'),
(286, 18, 0x496e766961206c652074756520706172746974652070657220756e20636f6d6d656e746f2c207065722076656465726520646f7665206176726573746920706f7475746f2067696f63617265206d65676c696f2e, 'Y', '2006-05-25 21:26:32'),
(128, 18, 0x53706f73746120696e20616c746f, 'Y', '2005-05-25 15:53:05'),
(129, 18, 0x53706f73746120696e20626173736f, 'Y', '2005-05-25 15:53:05'),
(135, 18, 0x547261647574746f7269, 'Y', '2006-05-25 21:34:09'),
(127, 18, 0x4d6f646966696361, 'N', '2005-05-25 15:53:29'),
(1031, 5, 0x5365726265, 'Y', '2005-06-03 02:50:23'),
(742, 27, 0x5265667573616461, 'Y', '2005-06-10 16:32:38'),
(745, 27, 0x4d6f766520612061726369766f, 'Y', '2005-06-10 16:32:38'),
(187, 27, 0x43616d6269612062696f, 'Y', '2005-06-10 16:32:38'),
(207, 27, 0x5573612070726570617265646173206465206c612070726f6772616d612064652072656465, 'Y', '2005-06-10 16:32:38'),
(463, 27, 0x5376656e736365, 'Y', '2005-06-10 16:32:38'),
(464, 27, 0x4e6f72736365, 'Y', '2005-06-10 16:32:38'),
(468, 27, 0x457370616e696f6c, 'Y', '2005-06-10 16:32:38'),
(469, 27, 0x5865736365, 'Y', '2005-06-10 16:32:38'),
(473, 27, 0x4e656465726c616e646573, 'Y', '2005-06-10 16:32:38'),
(479, 27, 0x546169, 'Y', '2005-06-10 16:32:38'),
(500, 27, 0x53756f6d69616e, 'Y', '2005-06-10 16:32:38'),
(731, 27, 0x45646974612061726369766f73206465206d6573616a6573, 'Y', '2005-06-10 16:32:38'),
(750, 27, 0x436f7265616e, 'Y', '2005-06-10 16:32:38'),
(954, 27, 0x5275736365, 'Y', '2005-06-10 16:32:38'),
(254, 18, 0x5061727469746120696e697a6961746121, 'Y', '2006-05-25 20:53:34'),
(416, 18, 0x4f726f6c6f67696f206e656c2066696e652073657474696d616e61, 'Y', '2006-05-25 20:53:34'),
(727, 18, 0x452720737461746f2072696368696573746f20696c20257363616d6269616d656e746f25732064656920706172616d657472692064692071756573746f20696e7669746f2e, 'Y', '2006-05-25 20:59:49'),
(210, 18, 0x4f7265206e6f747475726e65, 'Y', '2011-09-29 15:54:07'),
(173, 18, 0x506167696e612064656c2070726f676574746f20447261676f6e206120536f75726365666f726765, 'Y', '2006-05-25 21:26:32'),
(257, 18, 0x506167696e65206469204a616e2076616e2064657220537465656e, 'Y', '2005-06-13 17:45:02'),
(301, 18, 0x416e6368276573736f2062617361746f207375207475726e692e20436f6e7469656e65206469766572736920616c7472692067696f6368692e, 'Y', '2006-05-25 21:26:32'),
(122, 18, 0x526973706f6e6469, 'Y', '2005-06-13 17:45:02'),
(727, 27, 0x4c61206d6f646f207065722065737461206a75612069612065732025736469736375746164612573, 'Y', '2005-06-14 12:01:48'),
(740, 27, 0x43616461207265636574616461, 'Y', '2005-06-14 12:01:48'),
(744, 27, 0x4d6f766520612061726369766f206375616e646f20726573706f6e64656e7465, 'Y', '2005-06-14 12:01:48'),
(184, 27, 0x4f6375706120616d616461, 'Y', '2005-06-14 12:01:48'),
(522, 27, 0x4573206365206573206f6b6520626f6e20766f6c65206120756e20706572736f6e2022626f6e666f7274756e612220736920636f6d656e73616e746520756e206a7561206e6f76613f, 'Y', '2005-06-14 18:52:07'),
(523, 27, 0x53692c206e61747572616c2e20416c6761206a75616e74657320677573746120616e6365206c61206d6f646f20766561203c6120687265663d222f6661712e7068703f726561643d74266361743d3323456e7472793738223e6f6e656761697368696d6173753c2f613e2e, 'N', '2005-06-14 18:52:07'),
(533, 27, 0x446f206d6520706f74652074726f766120706c752070616a65207265646520737570726120474f3f, 'Y', '2005-06-14 18:52:07'),
(534, 27, 0x41206c61203c6120687265663d222f6c696e6b732e706870223e70616a65206465206c6961733c2f613e20646520447261676f6e2e, 'Y', '2005-06-14 18:52:07'),
(535, 27, 0x4a6f7365, 'Y', '2005-06-14 18:52:07'),
(537, 27, '', 'N', '2008-01-21 19:27:11'),
(539, 27, 0x436f, 'Y', '2005-06-14 18:52:07'),
(545, 27, 0x436975, 'Y', '2005-06-14 18:52:07'),
(547, 27, '', 'Y', '2008-01-21 19:27:11'),
(549, 27, 0x4375616e646f2064696173206465207661636173696f6e206d6520617665206120447261676f6e3f, 'Y', '2005-06-14 18:52:07'),
(1024, 27, 0x4a7561206567616c, 'Y', '2005-06-14 18:52:07'),
(756, 27, 0x416667616e657374616e, 'Y', '2005-06-15 13:22:44'),
(757, 27, 0x5863697065726961, 'Y', '2005-06-15 13:22:44'),
(758, 27, 0x4a617a616972, 'Y', '2005-06-15 13:22:44'),
(759, 27, 0x416e646f7261, 'Y', '2005-06-15 13:22:44'),
(760, 27, 0x416e676f6c61, 'Y', '2005-06-15 13:22:44'),
(761, 27, '', 'Y', '2008-01-21 19:27:11'),
(762, 27, 0x416e746967756120652042617262756461, 'N', '2005-06-15 13:22:44'),
(763, 27, 0x417267656e74696e61, 'Y', '2005-06-15 13:22:44'),
(764, 27, 0x4169617374616e, 'Y', '2005-06-15 13:22:44'),
(765, 27, 0x4175737472616c6961, 'Y', '2005-06-15 13:22:44'),
(766, 27, 0x4f73746572616963, 'Y', '2005-06-15 13:22:44'),
(767, 27, 0x417a65726261696a616e, 'Y', '2005-06-15 13:22:44'),
(768, 27, 0x4261616d6173, 'Y', '2005-06-15 13:22:44'),
(769, 27, 0x42617261696e, 'Y', '2005-06-15 13:22:44'),
(770, 27, 0x4261726261646f73, 'Y', '2005-06-15 13:22:44'),
(771, 27, 0x42616e676c61646578, 'Y', '2005-06-15 13:22:44'),
(772, 27, 0x4269656c61727573, 'Y', '2005-06-15 13:22:44'),
(773, 27, 0x42656c6a6961, 'Y', '2005-06-15 13:22:44'),
(774, 27, 0x42656c697a, 'Y', '2005-06-15 13:22:44'),
(775, 27, 0x42656e696e, 'Y', '2005-06-15 13:22:44'),
(776, 27, 0x4472756369756c, 'Y', '2005-06-15 13:22:44'),
(777, 27, 0x426f6c69766961, 'Y', '2005-06-15 13:22:44'),
(779, 27, 0x426f7375616e61, 'Y', '2005-06-15 13:22:44'),
(780, 27, 0x42726173696c, 'Y', '2005-06-15 13:22:44'),
(782, 27, 0x42616c6761726961, 'Y', '2005-06-15 13:22:44'),
(783, 27, 0x42757263696e61204661736f, 'Y', '2005-06-15 13:22:44'),
(784, 27, 0x42757269756e6469, 'Y', '2005-06-15 13:22:44'),
(785, 27, 0x43616d7075786961, 'Y', '2005-06-15 13:22:44'),
(786, 27, 0x43616d6572756e, 'Y', '2005-06-15 13:22:44'),
(787, 27, 0x43616e616461, 'Y', '2005-06-15 13:22:44'),
(788, 27, 0x4361706f205665726465, 'Y', '2005-06-15 13:22:44'),
(789, 27, 0x4166726963612053656e747261, 'Y', '2005-06-15 13:22:44'),
(790, 27, 0x586164, 'Y', '2005-06-15 13:22:44'),
(791, 27, 0x58696c65, 'Y', '2005-06-15 13:22:44'),
(792, 27, 0x4a6f6e67756f, 'Y', '2005-06-15 13:22:44'),
(793, 27, 0x436f6c6f6d626961, 'Y', '2005-06-15 13:22:44'),
(794, 27, 0x436f6d6f726573, 'Y', '2005-06-15 13:22:44'),
(795, 27, 0x436f6e676f2d4272617a6176696c, 'Y', '2005-06-15 13:22:44'),
(796, 27, 0x436f6e676f2d43696e78617361, 'Y', '2005-06-15 13:22:44'),
(797, 27, 0x436f7374612052696361, 'Y', '2005-06-15 13:22:44'),
(798, 27, 0x436f7374612049766f72, 'Y', '2005-06-15 13:22:44'),
(799, 27, 0x4372617661736361, 'Y', '2005-06-15 13:22:44'),
(800, 27, 0x43756261, 'Y', '2005-06-15 13:22:44'),
(801, 27, 0x436970726f73, 'Y', '2005-06-15 13:22:44'),
(802, 27, 0x52657075626c6963612058657363616e, 'Y', '2005-06-15 13:22:44'),
(803, 27, 0x44616e6d617263, 'Y', '2005-06-15 13:22:44'),
(804, 27, 0x4a6962757469, 'Y', '2005-06-15 13:22:44'),
(805, 27, 0x446f6d696e696361, 'Y', '2005-06-15 13:22:44'),
(806, 27, 0x52657075626c69636120446f6d696e6963616e, 'Y', '2005-06-15 13:22:44'),
(808, 27, 0x45637561646f72, 'Y', '2005-06-15 13:22:44'),
(809, 27, 0x456769707465, 'Y', '2005-06-15 13:22:44'),
(810, 27, 0x53616c7661646f72, 'Y', '2005-06-15 13:22:44'),
(811, 27, 0x47696e65612045637561746f72616c, 'Y', '2005-06-15 13:22:44'),
(812, 27, '', 'Y', '2008-01-21 19:27:11'),
(813, 27, 0x45737469, 'Y', '2005-06-15 13:22:44'),
(814, 27, 0x4974696f706961, 'Y', '2005-06-15 13:22:44'),
(815, 27, 0x56697469, 'Y', '2005-06-15 13:22:44'),
(816, 27, 0x53756f6d69, 'Y', '2005-06-15 13:22:44'),
(817, 27, 0x4672616e73, 'Y', '2005-06-15 13:22:44'),
(818, 27, 0x4761626f6e, 'Y', '2005-06-15 13:22:44'),
(819, 27, 0x47616d626961, 'Y', '2005-06-15 13:22:44'),
(820, 27, 0x53616361727476656c6f, 'Y', '2005-06-15 13:22:44'),
(822, 27, 0x47616e61, 'Y', '2005-06-15 13:22:44'),
(823, 27, 0x456c6173, 'Y', '2005-06-15 13:22:44'),
(824, 27, 0x4772616e616461, 'Y', '2005-06-15 13:22:44'),
(825, 27, 0x47756174656d616c61, 'Y', '2005-06-15 13:22:44'),
(826, 27, 0x47696e65, 'Y', '2005-06-15 13:22:44'),
(827, 27, 0x47696e652d4269736175, 'Y', '2005-06-15 13:22:44'),
(828, 27, 0x477569616e61, 'Y', '2005-06-15 13:22:44'),
(829, 27, 0x41697469, 'Y', '2005-06-15 13:22:44'),
(830, 27, 0x4f6e6475726173, 'Y', '2005-06-15 13:22:44'),
(831, 27, 0x58616e67616e67, 'Y', '2005-06-15 13:22:44'),
(832, 27, 0x4d616a6172, 'Y', '2005-06-15 13:22:44'),
(833, 27, 0x49736c616e64, 'Y', '2005-06-15 13:22:44'),
(834, 27, 0x496e646961, 'Y', '2005-06-15 13:22:44'),
(835, 27, 0x496e646f6e65736961, 'Y', '2005-06-15 13:22:44'),
(836, 27, 0x4972616e, 'Y', '2005-06-15 13:22:44'),
(837, 27, 0x49726163, 'Y', '2005-06-15 13:22:44'),
(838, 27, 0x4572, 'Y', '2005-06-15 13:22:44'),
(839, 27, '', 'Y', '2008-01-21 19:27:11'),
(840, 27, 0x4974616c6961, 'Y', '2005-06-15 13:22:44'),
(841, 27, 0x4a616d61696361, 'Y', '2005-06-15 13:22:44'),
(842, 27, 0x4e696f6e, 'Y', '2005-06-15 13:22:44'),
(843, 27, 0x557264756e, 'Y', '2005-06-15 13:22:44'),
(845, 27, 0x43656e6961, 'Y', '2005-06-15 13:22:44'),
(846, 27, 0x4369726962617469, 'Y', '2005-06-15 13:22:44'),
(849, 27, 0x4375616974, 'Y', '2005-06-15 13:22:44'),
(850, 27, 0x43697267697374616e, 'Y', '2005-06-15 13:22:44'),
(851, 27, 0x4c6175, 'Y', '2005-06-15 13:22:44'),
(852, 27, 0x4c6174766961, 'Y', '2005-06-15 13:22:44'),
(853, 27, 0x4c75626e616e, 'Y', '2005-06-15 13:22:44'),
(854, 27, 0x4c65736f746f, 'Y', '2005-06-15 13:22:44'),
(855, 27, 0x4c696265726961, 'Y', '2005-06-15 13:22:44'),
(856, 27, 0x4c69626961, 'Y', '2005-06-15 13:22:44'),
(857, 27, 0x4c696374656e737461696e, 'Y', '2005-06-15 13:22:44'),
(858, 27, 0x4c696574757661, 'Y', '2005-06-15 13:22:44'),
(859, 27, 0x4c657a6562757267, 'Y', '2005-06-15 13:22:44'),
(861, 27, 0x4d61636175, 'Y', '2005-06-15 13:22:44'),
(862, 27, 0x4d6164616761736963617261, 'Y', '2005-06-15 13:22:44'),
(863, 27, 0x4d616c617569, 'Y', '2005-06-15 13:22:44'),
(864, 27, 0x4d616c6169736961, 'Y', '2005-06-15 13:22:44'),
(865, 27, 0x4d616c6469766573, 'Y', '2005-06-15 13:22:44'),
(866, 27, 0x4d616c69, 'Y', '2005-06-15 13:22:44'),
(867, 27, 0x4d616c7461, 'Y', '2005-06-15 13:22:44'),
(868, 27, 0x49736f6c6173204d617278616c, 'Y', '2005-06-15 13:22:44'),
(869, 27, 0x4d75726974616e6961, 'Y', '2005-06-15 13:22:44'),
(870, 27, 0x4d6175726974697573, 'Y', '2005-06-15 13:22:44'),
(871, 27, 0x4d657869636f, 'Y', '2005-06-15 13:22:44'),
(872, 27, 0x4d6963726f6e65736961, 'Y', '2005-06-15 13:22:44'),
(873, 27, 0x4d6f6c646f7661, 'Y', '2005-06-15 13:22:44'),
(874, 27, 0x4d6f6e61636f, 'Y', '2005-06-15 13:22:44'),
(875, 27, 0x4d6f6e676f6c, 'Y', '2005-06-15 13:22:44'),
(876, 27, 0x4d6167726962, 'Y', '2005-06-15 13:22:44'),
(877, 27, 0x4d6f73616d626963, 'Y', '2005-06-15 13:22:44'),
(878, 27, 0x4d69616d6172, 'Y', '2005-06-15 13:22:44'),
(879, 27, 0x4e616d69626961, 'Y', '2005-06-15 13:22:44'),
(880, 27, 0x4e617565726f, 'Y', '2005-06-15 13:22:44'),
(881, 27, 0x4e6570616c, 'Y', '2005-06-15 13:22:44'),
(882, 27, 0x4e656465726c616e64, 'Y', '2005-06-15 13:22:44'),
(883, 27, 0x5a696c616e64204e6f7661, 'Y', '2005-06-15 13:22:44'),
(884, 27, 0x4e6963617261677561, 'Y', '2005-06-15 13:22:44'),
(885, 27, 0x4e696a6572, 'Y', '2005-06-15 13:22:44'),
(886, 27, 0x4e696a65726961, 'Y', '2005-06-15 13:22:44'),
(887, 27, 0x4e6f726961, 'Y', '2005-06-15 13:22:44'),
(888, 27, 0x556d616e, 'Y', '2005-06-15 13:22:44'),
(889, 27, 0x506163697374616e, 'Y', '2005-06-15 13:22:44'),
(890, 27, '', 'Y', '2008-01-21 19:27:11'),
(892, 27, 0x50616e616d61, 'Y', '2005-06-15 13:22:44'),
(893, 27, 0x506170756120652047696e65204e6f7661, 'Y', '2005-06-15 13:22:44'),
(894, 27, 0x5061726167756169, 'Y', '2005-06-15 13:22:44'),
(895, 27, 0x50657275, 'Y', '2005-06-15 13:22:44'),
(896, 27, 0x50696c6970696e6173, 'Y', '2005-06-15 13:22:44'),
(897, 27, 0x506f6c736361, 'Y', '2005-06-15 13:22:44'),
(898, 27, 0x506f72747567616c, 'Y', '2005-06-15 13:22:44'),
(899, 27, 0x506f72746f2052696361, 'Y', '2005-06-15 13:22:44'),
(900, 27, 0x4361746172, 'Y', '2005-06-15 13:22:44'),
(901, 27, 0x526f6d616e6961, 'Y', '2005-06-15 13:22:44'),
(902, 27, 0x5275736961, 'Y', '2005-06-15 13:22:44'),
(903, 27, 0x5275616e6461, 'Y', '2005-06-15 13:22:44'),
(904, 27, 0x53616e20436974732065204e65766973, 'Y', '2005-06-15 13:22:44'),
(905, 27, 0x53616e204c75736961, 'Y', '2005-06-15 13:22:44'),
(906, 27, 0x53616e2056696e73656e742065206c61204772656e6164696e6573, 'Y', '2005-06-15 13:22:44'),
(907, 27, '', 'Y', '2008-01-21 19:27:11'),
(908, 27, '', 'Y', '2008-01-21 19:27:11'),
(909, 27, 0x53616e20546f6d652065205072696e73697065, 'Y', '2005-06-15 13:22:44'),
(910, 27, 0x417261626961205375646961, 'Y', '2005-06-15 13:22:44'),
(911, 27, '', 'Y', '2008-01-21 19:27:11'),
(913, 27, 0x536578656c6573, 'Y', '2005-06-15 13:22:44'),
(914, 27, 0x5369657261204c656f6e, 'Y', '2005-06-15 13:22:44'),
(915, 27, 0x53696e6761706f72, 'Y', '2005-06-15 13:22:44'),
(916, 27, 0x536c6f7661636961, 'Y', '2005-06-15 13:22:44'),
(917, 27, '', 'Y', '2008-01-21 19:27:11'),
(918, 27, 0x49736f6c617320536f6c6f6d6f6e, 'Y', '2005-06-15 13:22:44'),
(919, 27, 0x536f6d616c6961, 'Y', '2005-06-15 13:22:44'),
(920, 27, 0x4166726963612053756465, 'Y', '2005-06-15 13:22:44'),
(921, 27, 0x457370616e6961, 'Y', '2005-06-15 13:22:44'),
(922, 27, 0x5372696c616e6361, 'Y', '2005-06-15 13:22:44'),
(923, 27, 0x537564616e, 'Y', '2005-06-15 13:22:44'),
(924, 27, 0x537572696e616d65, 'Y', '2005-06-15 13:22:44'),
(925, 27, 0x5375617a696c616e64, 'Y', '2005-06-15 13:22:44'),
(926, 27, 0x537665726961, 'Y', '2005-06-15 13:22:44'),
(927, 27, 0x5375697a, 'Y', '2005-06-15 13:22:44'),
(928, 27, 0x5375726961, 'Y', '2005-06-15 13:22:44'),
(929, 27, 0x54616975616e, 'Y', '2005-06-15 13:22:44'),
(930, 27, 0x54616a69637374616e, 'Y', '2005-06-15 13:22:44'),
(931, 27, 0x54616e7a616e6961, 'Y', '2005-06-15 13:22:44'),
(932, 27, 0x546169, 'Y', '2005-06-15 13:22:44'),
(933, 27, '', 'Y', '2008-01-21 19:27:11'),
(934, 27, '', 'Y', '2008-01-21 19:27:11'),
(935, 27, 0x5472696e69646164206520546f6261676f, 'Y', '2005-06-15 13:22:44'),
(936, 27, 0x54756e6973, 'Y', '2005-06-15 13:22:44'),
(937, 27, 0x547572636961, 'Y', '2005-06-15 13:22:44'),
(938, 27, 0x547572636d656e697374616e, 'Y', '2005-06-15 13:22:44'),
(939, 27, '', 'Y', '2008-01-21 19:27:11'),
(940, 27, '', 'Y', '2008-01-21 19:27:11'),
(941, 27, 0x55637261696e61, 'Y', '2005-06-15 13:22:44'),
(942, 27, 0x496d6172696173204172616269616e20556e696461, 'Y', '2005-06-15 13:22:44'),
(943, 27, 0x52656e6120556e696461, 'Y', '2005-06-15 13:22:44'),
(944, 27, 0x537461746f7320556e696461, 'Y', '2005-06-15 13:22:44'),
(945, 27, 0x55727567756169, 'Y', '2005-06-15 13:22:44'),
(946, 27, 0x557a626563697374616e, 'Y', '2005-06-15 13:22:44'),
(947, 27, '', 'Y', '2008-01-21 19:27:11'),
(948, 27, 0x53697465205661746963616e6f, 'Y', '2005-06-15 13:22:44'),
(949, 27, 0x56656e657a75656c61, 'Y', '2005-06-15 13:22:44'),
(950, 27, 0x566965746e616d, 'Y', '2005-06-15 13:22:44'),
(951, 27, 0x49616d616e, 'Y', '2005-06-15 13:22:44'),
(952, 27, 0x5a616d626961, 'Y', '2005-06-15 13:22:44'),
(953, 27, 0x5a696d6261627565, 'Y', '2005-06-15 13:22:44'),
(1, 18, 0x5370696163656e74652c206e6f6e2070756f692070617373617265207072696d612064692061766572207069617a7a61746f207475747465206c6520747565207069657472652064692068616e64696361702e, 'Y', '2006-05-25 21:48:43'),
(2, 18, 0x5370696163656e74652c206c61207061727469746120e8206769612066696e6974612e, 'Y', '2005-06-16 20:05:27'),
(3, 18, 0x5370696163656e74652c206c612070617274697461206e6f6e20e820616e636f726120696e697a696174612e, 'Y', '2011-09-29 16:02:30'),
(598, 25, 0x526567756c696c652063652073652061706c6963c483206c61207465726d696e617265612074696d70756c7569207072696e636970616c206465206a6f632e, 'Y', '2005-06-24 20:08:29'),
(599, 25, 0x436520667573206f726172206573746520666f6c6f7369742070656e74727520612064657465726d696e61202274696d70756c2070656e74727520736f6d6e22202874696d70756c206e6f70c5a36969293f, 'Y', '2005-06-24 20:15:33'),
(600, 25, 0x447261676f6e20666f6c6f7365c59f746520667573756c206f7261722073657461742064652074696e65206c612022496e666f726d61c5a36969207574696c697a61746f72222c20c5a3696ec3a26e6420636f6e74206465206f726120646520766172c4832e, 'Y', '2005-06-24 20:15:33'),
(601, 25, '', 'Y', '2012-08-17 10:38:03'),
(602, 25, 0x534746206573746520707265736375727461726561206465206c612022536d6172742047616d6520466f726d6174222c20756e20746970206465206669c59f6965726520666f6c6f7369742070656e747275207061727469646520646520476f2028c59f69206e75206e756d6169292e2050656e747275206d6169206d756c746520696e666f726d61c5a369692c20706fc5a36920636f6e73756c7461203c6120687265663d22687474703a2f2f7777772e7265642d6265616e2e636f6d2f7367662f22207461726765743d6e65773e7370656966696361c5a369696c65206f66696369616c653c2f613e20616c65207374616e64617264756c7569205347462046465b345d2e, 'Y', '2005-06-24 20:27:01'),
(9, 18, 0x5370696163656e74652c206e6f6e2070756f6920726963617474757261726520756e61207069657472612063686520686120617070656e612063617474757261746f20756e27616c747261207069657472612c20706f696368e82071756573746f20726970657465726562626520756e6120706f73697a696f6e6520707265636564656e74652e20436f6e74726f6c6c6120276b6f27206e656c6c65207265676f6c652e, 'Y', '2006-05-25 21:48:43'),
(29, 18, 0x5370696163656e74652c2071756573746120617a696f6e65206e6f6e20e8207065726d657373612061676c69206f73706974692c20e8206e65636573736172696f20657373657265207574656e746920726567697374726174692e, 'Y', '2006-05-25 21:48:43'),
(32, 18, 0x5370696163656e74652c206e6f6e20e820696c2074756f207475726e6f2e, 'Y', '2006-05-25 21:48:43'),
(33, 18, 0x4c612070617373776f726420636f6e7469656e65206465692073696d626f6c69206e6f6e207065726d657373693a2070756f6920757361726520736f6c74616e746f20612d7a2c20412d5a2c20302d392065202d5f2b2e2c3a3b3f21252a206e656c6c61207475612070617373776f72642e, 'Y', '2005-07-06 19:57:57'),
(1031, 2, 0x5365726269736b, 'Y', '2005-07-15 16:44:57'),
(625, 2, 0x46696e6e657320646574207475726e6572696e67657220736f6d2061646d696e697374726572657320646972656b74652070e520447261676f6e3f, 'Y', '2005-07-15 16:44:57'),
(626, 2, 0x4e65692c20696b6b6520656e6ee52e, 'Y', '2005-07-15 16:44:57'),
(82, 30, 0xce93ceb5cebdceb9cebaceae20ceb5ceb9cebacf8ccebdceb1, 'Y', '2005-10-04 18:54:24'),
(80, 30, 0x26233933323b26233934353b26233936353b26233936343b26233935393b26233936303b26233935393b26233935333b26233935313b26233935363b26233934313b26233935373b26233935393b26233936323b2026233936393b26233936323b, 'Y', '2005-08-31 12:58:47'),
(81, 30, 0x26233932343b26233935313b2026233936343b26233934353b26233936353b26233936343b26233935393b26233936303b26233935393b26233935333b26233935313b26233935363b26233934313b26233935373b26233935393b26233936323b, 'Y', '2005-08-31 12:58:47'),
(83, 30, 0x26233931363b26233936393b26233935363b26233934303b26233936343b26233935333b26233935393b2026233934353b26233935373b26233934353b26233935363b26233935393b26233935373b26233934323b26233936323b, 'Y', '2005-08-31 12:58:47'),
(84, 30, 0x26233933313b26233936343b26233935393b26233935333b26233936373b26233934393b26233934333b26233934353b2026233936373b26233936313b26233934323b26233936333b26233936343b26233935313b, 'Y', '2005-08-31 12:58:47'),
(85, 30, 0xce9cceb7cebdcf8dcebcceb1cf84ceb1, 'Y', '2005-10-04 18:59:41'),
(86, 30, 0xce91cf80cebfcf83cf84cebfcebbceae20cebcceb7cebdcf8dcebcceb1cf84cebfcf82, 'Y', '2005-10-04 18:59:41'),
(87, 30, 0x26233932383b26233936313b26233937323b26233936333b26233935343b26233935353b26233935313b26233936333b26233935313b, 'Y', '2005-08-31 12:58:47'),
(88, 30, 0x26233933353b26233936313b26233934323b26233936333b26233936343b26233934393b26233936323b, 'Y', '2005-08-31 12:58:47'),
(89, 30, 0x26233932383b26233934353b26233935333b26233936373b26233935373b26233934333b26233934383b26233935333b26233934353b, 'Y', '2005-08-31 12:58:47'),
(90, 30, 0x26233932343b26233934393b26233936343b26233934303b26233936363b26233936313b26233934353b26233936333b26233935313b, 'Y', '2005-08-31 12:58:47'),
(91, 30, '', 'Y', '2005-12-28 16:20:02'),
(92, 30, 0x26233933313b26233936353b26233936373b26233935373b26233934313b26233936323b2026233934393b26233936313b26233936393b26233936343b26233934323b26233936333b26233934393b26233935333b26233936323b, 'Y', '2005-08-31 12:58:47'),
(93, 30, '', 'Y', '2005-12-28 16:20:02'),
(94, 30, 0x26233932323b26233934393b26233934333b26233935363b26233934393b26233935373b26233934353b, 'Y', '2005-08-31 12:58:47'),
(95, 30, 0x26233931393b2026233936333b26233934393b26233935353b26233934333b26233934383b26233934353b2026233934383b26233935313b26233935363b26233935333b26233935393b26233936353b26233936313b26233934373b26233934323b26233935323b26233935313b26233935343b26233934393b2026233936333b26233936343b26233935333b26233936323b, 'Y', '2005-08-31 12:58:47'),
(96, 30, 0x26233931363b26233935333b26233934353b26233936373b26233934393b26233934333b26233936313b26233935313b26233936333b26233935313b, 'Y', '2005-08-31 12:58:47'),
(97, 30, 0x26233930343b26233935383b26233935393b26233934383b26233935393b26233936323b, 'Y', '2005-08-31 12:58:47'),
(98, 30, 0x26233935313b26233935363b26233934313b26233936313b26233934353b, 'Y', '2005-08-31 12:58:47'),
(99, 30, 0x26233935313b26233935363b26233934313b26233936313b26233934393b26233936323b, 'Y', '2005-08-31 12:58:47'),
(100, 30, 0x26233935343b26233934353b26233935333b, 'Y', '2005-08-31 12:58:47'),
(101, 30, 0x26233937343b26233936313b26233934353b, 'Y', '2005-08-31 12:58:47'),
(102, 30, 0x26233937343b26233936313b26233934393b26233936323b, 'Y', '2005-08-31 12:58:47'),
(103, 30, 0x26233936373b26233936393b26233936313b26233934333b26233936323b2062796f796f6d69, 'Y', '2005-08-31 12:58:47'),
(104, 30, 0x26233935363b26233934393b2025732026233936303b26233934353b26233936313b26233934353b26233936303b26233934303b26233935373b26233936393b2026233934353b26233935373b26233934303b2026233935343b26233934333b26233935373b26233935313b26233936333b26233935313b, 'Y', '2005-08-31 12:58:47'),
(106, 30, 0x26233931353b26233935333b26233934353b26233936303b26233936393b26233935373b26233934313b26233935303b26233935333b26233935343b26233935393b2062796f796f6d69, 'Y', '2005-08-31 12:58:47'),
(107, 30, 0x26233936303b26233934313b26233936343b26233936313b26233934393b26233936323b, 'Y', '2005-08-31 12:58:47'),
(108, 30, 0x26233932323b26233934353b26233935373b26233934353b26233934383b26233934313b26233935303b26233935333b26233935343b26233935393b2062796f796f6d69, 'Y', '2005-08-31 12:58:47'),
(132, 30, '', 'Y', '2005-12-28 16:20:02'),
(134, 30, 0x26233930383b26233935373b26233935393b26233935363b26233934353b, 'Y', '2005-08-31 12:58:47'),
(201, 30, 0x26233933323b26233934353b26233936353b26233936343b26233937323b26233936343b26233935313b26233936343b26233934353b2026233936373b26233936313b26233934323b26233936333b26233936343b26233935313b, 'Y', '2005-08-31 12:58:47'),
(204, 30, 0x26233932383b26233935353b26233935313b26233936313b26233935393b26233936363b26233935393b26233936313b26233934333b26233934393b26233936323b2026233935343b26233934353b26233936343b26233934303b26233936343b26233934353b26233935383b26233935313b26233936323b, 'Y', '2005-08-31 12:58:47'),
(205, 30, 0x26233932323b26233934353b26233936343b26233934303b26233936343b26233934353b26233935383b26233935313b, 'Y', '2005-08-31 12:58:47'),
(309, 30, 0x26233933313b26233935313b26233935363b26233934353b26233934333b26233934393b26233936323b, 'Y', '2005-08-31 12:58:47'),
(310, 30, 0x26233931333b26233936303b26233937323b, 'Y', '2005-08-31 12:58:47'),
(311, 30, 0x26233932303b26233934313b26233935363b26233934353b, 'Y', '2005-08-31 12:58:47'),
(312, 30, 0x26233931393b26233935363b26233934393b26233936313b26233935393b26233935363b26233935313b26233935373b26233934333b26233934353b, 'Y', '2005-08-31 12:58:47'),
(314, 30, 0x26233932353b26233934313b26233935393b, 'Y', '2005-08-31 12:58:47'),
(316, 30, 0x26233931333b26233936303b26233934303b26233935373b26233936343b26233935313b26233936333b26233935313b21, 'Y', '2005-08-31 12:58:47'),
(330, 30, 0x26233930323b26233936333b26233936303b26233936313b26233935393b26233936323b, 'Y', '2005-08-31 12:58:47'),
(331, 30, 0x26233932343b26233934353b26233937333b26233936313b26233935393b26233936323b, 'Y', '2005-08-31 12:58:47'),
(352, 30, '', 'Y', '2005-12-28 16:20:02'),
(359, 30, 0x26233931333b26233935373b26233936343b26233934333b26233936303b26233934353b26233935353b26233935393b26233936323b, 'Y', '2005-08-31 12:58:47'),
(360, 30, 0x26233933353b26233936313b26233937343b26233935363b26233934353b, 'Y', '2005-08-31 12:58:47'),
(361, 30, 0x26233932343b26233934313b26233934373b26233934393b26233935323b26233935393b26233936323b, 'Y', '2005-08-31 12:58:47'),
(362, 30, 0x26233932383b26233935353b26233934393b26233935393b26233935373b26233934313b26233935343b26233936343b26233935313b26233935363b26233934353b, 'Y', '2005-08-31 12:58:47'),
(363, 30, '', 'Y', '2005-12-28 16:20:02'),
(364, 30, 0x26233932323b26233935333b26233935373b26233934323b26233936333b26233934393b26233935333b26233936323b, 'Y', '2005-08-31 12:58:47'),
(368, 30, 0x26233933323b26233934393b26233935353b26233934393b26233936353b26233936343b26233934353b26233934333b26233934353b2026233935343b26233934333b26233935373b26233935313b26233936333b26233935313b, 'N', '2005-08-31 12:58:47'),
(374, 30, 0xcea4cf81ceadcf87cebfcebdcf84ceb120cf80ceb1ceb9cf87cebdceafceb4ceb9ceb1, 'Y', '2005-08-31 13:07:29'),
(375, 30, 0xcea4ceb5cebbceb5ceb9cf89cebcceadcebdceb120cf80ceb1ceb9cf87cebdceafceb4ceb9ceb1, 'Y', '2005-08-31 13:07:29'),
(388, 30, 0xce94ceb9ceb1ceb8ceadcf83ceb9cebccebfcf8220ceb3ceb9ceb120cf80ceb1ceb9cf87cebdceafceb4ceb9ceb13b, 'Y', '2005-10-04 18:51:44'),
(389, 30, 0xce9dceadceb120cebcceb7cebdcf8dcebcceb1cf84ceb1, 'Y', '2005-10-04 18:54:24'),
(390, 30, 0xce9720cf83ceb5ceb9cf81ceac20cf83cebfcf8520cebdceb120cf80ceb1ceafcebeceb5ceb9cf8220cf83cf84ceb120cf80ceb1cf81ceb1cebaceaccf84cf8920cf80ceb1ceb9cf87cebdceafceb4ceb9ceb13a, 'Y', '2005-08-31 13:07:29'),
(391, 30, 0xce94ceb5cebd20ceb2cf81ceadceb8ceb7cebaceb1cebd20cf80ceb1ceb9cf87cebdceafceb4ceb9ceb1, 'Y', '2005-08-31 13:07:29'),
(460, 30, 0xceb5cf80cf8ccebcceb5cebdceb720cf83ceb5cebbceafceb4ceb1, 'Y', '2005-08-31 13:07:29'),
(461, 30, 0xcf80cf81cebfceb7ceb3cebfcf8dcebcceb5cebdceb720cf83ceb5cebbceafceb4ceb1, 'Y', '2005-08-31 13:07:29'),
(462, 30, 0xcea0cf81cebfcf83ceb8ceaecebaceb720cf83cf84ceaecebbceb7cf82, 'Y', '2005-10-04 18:54:24'),
(715, 30, 0xce8fcf81ceb120cf83ceb5cebbceafceb4ceb1cf82, 'Y', '2005-08-31 13:07:29'),
(5798, 40, 0x417469766964616465, 'Y', '2014-04-13 17:47:19'),
(3242, 40, 0x456469746172205065737175697361, 'Y', '2014-04-11 14:09:38'),
(719, 30, 0x257320cebdceb9cebaceacceb5ceb920cebaceb1cf84ceac20252e3166, 'Y', '2005-08-31 13:07:29'),
(722, 30, 0xcea6ceaccebaceb5cebbcebfcf82, 'Y', '2005-08-31 13:07:29'),
(732, 30, 0xce95cebdceb1cf80cebfcebcceadcebdcebfcf85cf83ceb5cf8220cebcceadcf81ceb5cf8220ceb4ceb9ceb1cebacebfcf80cf8ecebd, 'Y', '2005-11-01 18:20:07'),
(733, 30, 0xcea3ceb520ceb4ceb9ceb1cebacebfcf80ceadcf82, 'Y', '2005-08-31 13:07:29'),
(215, 30, 0xcebcceadcebdcebfcf85cebd, 'Y', '2005-08-31 13:07:29'),
(747, 30, 0xce8ccebbceb5cf8220cebfceb920cf83cf84ceaecebbceb5cf82, 'Y', '2005-10-04 18:54:24'),
(755, 30, 0xce9cceaecebdcf85cebcceb120736572766572, 'Y', '2005-10-04 18:39:25'),
(160, 30, 0xce95ceb9cf83ceb1ceb3cf89ceb3ceae20cf83cf84cebfcebd20447261676f6e, 'Y', '2005-08-31 13:24:11'),
(191, 30, 0xce95cf80ceb9ceb2ceb5ceb2ceb1ceafcf89cf83ceb720cebacf89ceb4ceb9cebacebfcf8d, 'Y', '2005-10-04 18:31:05'),
(202, 30, 0xce9fcebdcebfcebcceb1cf84ceb5cf80cf8ecebdcf85cebccebf, 'Y', '2005-08-31 13:24:11'),
(223, 30, 0xce9eceb5cf87ceaccf83ceb1cf84ceb520cf84cebfcebd20cebacf89ceb4ceb9cebacf8c20cf83ceb1cf823b, 'Y', '2005-08-31 13:24:11'),
(240, 30, 0xce9aceb5cebdcf84cf81ceb9cebaceae20cf83ceb5cebbceafceb4ceb1, 'Y', '2005-08-31 13:24:11'),
(1032, 24, 0x6772c3a9636b79, 'Y', '2005-09-01 01:27:19'),
(242, 30, 0xcea0ceb1cf81ceb1cebaceb1cebbcebfcf8dcebcceb52c20ceb5ceb3ceb3cf81ceb1cf86ceb5ceafcf84ceb520cebaceb1ceb920cf80ceb1ceafcebecf84ceb520cebcceb5cf81ceb9cebaceac20cf80ceb1ceb9cf87cebdceafceb4ceb9ceb1, 'Y', '2005-09-01 12:41:15'),
(243, 30, 0xcea0ceb1cf81ceb1cebaceb1cebbcebfcf8dcebcceb520cf84ceb1cf85cf84cebfcf80cebfceb9ceb7ceb8ceb5ceafcf84ceb52e, 'Y', '2005-09-01 12:41:15'),
(244, 30, 0xce93ceb9ceb120cebdceb120cf81ceafcebeceb5cf84ceb520cebcceb9ceb120cebcceb1cf84ceb9ceac2c20cf87cf81ceb7cf83ceb9cebccebfcf80cebfceb9ceaecf83cf84ceb5202573, 'Y', '2005-09-01 12:41:15'),
(245, 30, 0xce9acf89ceb4ceb9cebacf8ccf82, 'Y', '2005-09-01 12:41:15'),
(246, 30, 0xcea4ceb1cf85cf84cebfcf80cebfceafceb7cf83ceb7, 'Y', '2005-09-01 12:41:15'),
(247, 30, 0xce9dceadcebfcf8220cebbcebfceb3ceb1cf81ceb9ceb1cf83cebccf8ccf8220cf87cf81ceaecf83cf84ceb7, 'Y', '2005-09-01 12:41:15'),
(248, 30, 0xce95ceb9cf83ceb1ceb3cf89ceb3ceae, 'Y', '2005-09-01 12:41:15'),
(252, 30, 0xce9aceb1cebbcf89cf83ceaecf81ceb8ceb1cf84ceb520cf80ceaccebbceb920cebaceb1ceb920cebaceb1cebbceae20ceb4ceb9ceb1cf83cebaceadceb4ceb1cf83ceb721, 'Y', '2005-09-01 12:41:15'),
(345, 30, 0xce9aceb1cf84ceb1cf87cf89cf81ceafcf83cf84ceb520cf84ceb120ceb4ceb5ceb4cebfcebcceadcebdceb1, 'Y', '2005-09-01 12:41:15'),
(478, 30, 0xcea0ceb5cf81ceb9cf83cf83cf8ccf84ceb5cf81ceb5cf8220cf80cebbceb7cf81cebfcf86cebfcf81ceafceb5cf8220cebccf80cebfcf81cebfcf8dcebd20cebdceb120ceb2cf81ceb5ceb8cebfcf8dcebd20cf83cf84cebf20666f72756d203c6120687265663d226661712e706870223ecea3cf85cf87cebdceadcf8220ceb5cf81cf89cf84ceaecf83ceb5ceb9cf823c2f613e20cf8ccf80cebfcf8520cebccf80cebfcf81ceb5ceafcf84ceb520cebdceb120ceb8ceadcf83ceb5cf84ceb520cebaceb1ceb920cf84ceb120ceb4ceb9cebaceac20cf83ceb1cf8220ceb5cf81cf89cf84ceaecebcceb1cf84ceb12e, 'Y', '2005-10-04 18:39:55'),
(109, 30, 0xcea4cebf20cf80ceb1ceb9cf87cebdceafceb4ceb920cf80cf81cebfcf83cf84ceadceb8ceb7cebaceb521, 'Y', '2005-09-01 12:41:15'),
(225, 30, 0xcea0ceb1cf81ceb1ceafcf84ceb7cf83ceb7, 'Y', '2005-09-01 12:41:15'),
(226, 30, 0xcea0ceaccf83cebf, 'Y', '2005-10-04 18:44:51'),
(227, 30, 0xcea3ceb2ceaecebdceb5cf84ceb1ceb920cf84cebf20cf80ceb1ceb9cf87cebdceafceb4ceb9, 'Y', '2005-09-01 12:41:15'),
(229, 30, 0xcea3cebacebfcf81, 'Y', '2005-09-01 12:41:15'),
(230, 30, 0xcea0ceb1ceb9cf87cebdceafceb4ceb9, 'Y', '2005-09-01 12:41:15'),
(231, 30, 0xcea0ceaccf83cebf, 'Y', '2005-10-04 18:44:51'),
(232, 30, 0xce94ceb9ceb1ceb3cf81ceb1cf86ceae20cf80ceb1ceb9cf87cebdceb9ceb4ceb9cebfcf8d, 'Y', '2005-09-01 12:41:15'),
(233, 30, 0xce95cebdcf84ceaccebeceb5ceb9, 'Y', '2005-09-01 12:41:15'),
(234, 30, 0xcea3cf85cebdceadcf87ceb9cf83ceb720cf80ceb1ceb9cf87cebdceb9ceb4ceb9cebfcf8d, 'Y', '2005-09-01 12:41:15'),
(235, 30, 0xcea0ceb1cf81ceb1ceafcf84ceb7cf83ceb7, 'Y', '2005-09-01 12:41:15'),
(236, 30, 0xce9aceb1cf84ceb5ceb2ceaccf83cebcceb120ceb1cf81cf87ceb5ceafcebfcf8520736766, 'Y', '2005-10-04 18:44:51'),
(237, 30, 0xce95cf80cf8ccebcceb5cebdcebf20cf80ceb1ceb9cf87cebdceafceb4ceb9, 'Y', '2005-09-01 12:41:15'),
(238, 30, 0xce91cf86ceb1ceafcf81ceb5cf83ceb720ceb1cf80cf8c20cf84ceb720cebbceafcf83cf84ceb120cf80ceb1cf81ceb1cf84ceb7cf81cebfcf8dcebcceb5cebdcf89cebd20cf80ceb1ceb9cf87cebdceb9ceb4ceb9cf8ecebd, 'Y', '2005-09-01 12:41:15'),
(239, 30, 0xcea0cf81cf8ccf83ceb8ceb5cf83ceb720cf83cf84ceb720cebbceafcf83cf84ceb120cf80ceb1cf81ceb1cf84ceb7cf81cebfcf8dcebcceb5cebdcf89cebd20cf80ceb1ceb9cf87cebdceb9ceb4ceb9cf8ecebd, 'Y', '2005-09-01 12:41:15'),
(253, 30, 0xcea4cebf20cf80ceb1ceb9cf87cebdceafceb4ceb920cf83ceb2ceaecf83cf84ceb7cebaceb521, 'Y', '2005-09-01 12:41:15'),
(254, 30, 0xce9ccf80ceaecebaceb1cf84ceb520cf83cf84cebf20cf80ceb1ceb9cf87cebdceafceb4ceb9, 'Y', '2005-09-01 12:41:15'),
(308, 30, 0xcea0cf81cebfcf82, 'Y', '2005-10-04 18:39:25'),
(324, 30, 0xce91cf80ceaccebdcf84ceb7cf83ceb7, 'Y', '2005-09-01 12:41:15'),
(325, 30, 0xce9cceaecebdcf85cebcceb1, 'Y', '2005-10-04 18:39:25'),
(1031, 23, 0xe382bbe383abe38393e382a2e8aa9e, 'Y', '2005-09-02 20:00:42'),
(1032, 23, 0xe382aee383aae382b7e382a2e8aa9e, 'Y', '2005-09-02 20:00:42'),
(48, 23, 0xe996a2e695b0e580a4e381afe5a496e68cbfe587bae69da5e381bee3819be38293e38082, 'Y', '2005-09-02 20:00:42'),
(60, 23, 0x447261676f6ee381aee7bfbbe8a8b3e381abe58aa9e38191e3819fe38184e4babae381afe3808c5472616e736c6174696f6ee3808de381aee38395e382a9e383bce383a9e383a0e381abe383a1e38383e382bbe383bce382b8, 'Y', '2005-09-02 20:00:42'),
(61, 23, 0xe68c87e5ae9ae38197e3819fe8a880e89189e381aee7bfbbe8a8b3e38199e3828be6a8a9e99990e3818ce69c89e3828ae381bee3819be38293e38082, 'Y', '2005-09-02 20:00:42'),
(1032, 5, 0x47726563, 'Y', '2005-09-02 21:07:31'),
(63, 23, 0xe696b0e38197e38184e7bfbbe8a8b3e38292e38387e383bce382bfe38399e383bce382b9e381abe8bfbde58aa0e38199e3828be69982e381abe5a4b1e69597e3818ce799bae7949fe38197e381bee38197e3819fe38082, 'Y', '2005-09-03 00:00:27'),
(66, 23, 0xe38193e381aee3839ae383bce382b8e381afe382b5e382a4e38388e7aea1e79086e382b9e382bfe38383e38395e5b082e794a8e381a7e38199e38082, 'Y', '2005-09-03 00:00:27'),
(69, 23, 0xe8a898e98cb2e38292e381bfe381a4e3818be3828ae381bee3819be38293e381a7e38197e3819fe38082, 'Y', '2005-09-03 00:00:27'),
(503, 23, 0xe4bb96, 'Y', '2005-09-03 00:50:58'),
(506, 23, 0xe4b880e782b9e38082e79ba4e4b88ae381abe38182e3828be4b880e79baee38082, 'N', '2005-09-03 00:50:58'),
(508, 23, 0xe9bb92e3818ce5889de6898be381abe58588e6898be381abe68993e381a4e4bba3e3828fe3828ae381abe799bde381abe4b88ee38188e3828b3c6120687265663d222f6661712e7068703f726561643d74266361743d3323456e74727938223ee79bae3c2f613ee38082, 'N', '2005-09-03 00:50:58'),
(514, 23, 0xe7a781e381afe38184e381a3e381b1e38184e38184e381a3e381b1e38184e381a7e38199e38082e38390e382b0e381afe5a49ae9818ee3818ee381bee38199e38082, 'Y', '2005-09-03 00:50:58'),
(515, 23, 0xe38391e382bde382b3e383b3e381aee5898de381abe5baa7e381a3e381a6e38081447261676f6ee381a7e59bb2e7a281e38292e38284e3828ae9818ee3818ee381a6e38184e381bee38199e38288e38082, 'Y', '2005-09-03 00:50:58'),
(549, 23, 0x447261676f6ee381a7e4bc91e69a87e381aee695b0e381afe381a9e381aee38190e38289e38184e69c89e3828ae381bee38199e3818befbc9f, 'Y', '2005-09-03 00:50:58'),
(550, 23, 0xe4b880e5b9b4e381abefbc93efbc90e697a5e99693e381bee381a7e69c89e3828ae381bee38199e38082e4b880e383b6e69c88e381abefbc92e697a5e58d8ae381afe382a2e382abe382a6e383b3e38388e381abe8bfbde58aa0e38195e3828ce381bee38199e38082e696b0e38197e38184e383a6e383bce382b6e383bce38195e38293e381afefbc91efbc94e697a5e99693e8b2b0e38184e381bee38199e38082, 'Y', '2005-09-03 00:50:58'),
(551, 23, 0xe382b9e38386e383bce382bfe382b9e3839ae383bce382b8e381abe38182e3828be9a085e79baee4bd95e381a7e38197e38287e381863f, 'N', '2005-09-03 00:50:58'),
(565, 23, 0x447261676f6ee381aee38194e7b4b9e4bb8b, 'Y', '2005-09-03 00:50:58'),
(566, 23, 0x447261676f6ee381a3e381a6e4bd95efbc9f, 'Y', '2005-09-03 00:50:58'),
(568, 23, 0xe7a781e381aee9968be5a78be383a9e383b3e382afe381afe381bee381a0e58886e3818be3828ae381bee3819be38293e38082e38082e38082, 'Y', '2005-09-03 00:50:58'),
(577, 23, 0xe697a5e69cace381aee7a792e8aaade381bfe381afe381a9e38186e38184e38186e4bd93e588b6e381a7e38199e3818befbc9f, 'Y', '2005-09-03 00:50:58'),
(519, 23, 0xe68fa1e3828ae381afe889b2e38292e6b1bae38281e3828be38284e3828ae696b9e381a7e38199e38082e381afe38198e38281e381abe38081e981b8e6898be3818ce4b880e4babae5b9bee381a4e3818be381aee799bde38184e79fb3e38292e68c81e381a1e4b88ae38192e381bee38199e38082e79bb8e6898be3818ce9bb92e38184e79fb3e38292e4b880e5808be3818be4ba8ce5808be79ba4e4b88ae381abe7bdaee3818de381bee38199e38082e79bb8e6898be3818ce799bde38184e79fb3e381aee695b0e3818ce5a587e695b0e381a0e381a8e6809de381a3e381a6e38184e3828be5a0b4e59088e381afe4b880e5808be7bdaee3818de381bee38199e38082e581b6e695b0e381aee5a0b4e59088e381afe4ba8ce5808be7bdaee3818de381bee38199e38082e79bb8e6898be3818ce6ada3e38197e38191e3828ce381b0e38081e79bb8e6898be3818ce9bb92e381abe381aae3828ae381bee38199e38082e99693e98195e381a3e381a6e38184e3828ce381b0e38081e79bb8e6898be3818ce799bde381a7e68993e381a1e381bee38199e38082e799bde381a7e68993e381a4e4babae381af362e35e382b3e3839fe8b2b0e38184e381bee38199e38082, 'N', '2005-09-03 01:44:23'),
(541, 23, 0xe69982e99693e3818ce58887e3828ce3819fe5afbee5b180e381afe5868de9968be587bae69da5e381bee38199e3818b3f, 'Y', '2005-09-06 21:00:49'),
(553, 23, 0xe5afbee5b180e381aee69982e8a888e381aee6ae8be3828ae69982e99693e381afe381a9e38186e38184e38186e9a2a8e6b89be3828ae381bee38199e3818b3f, 'Y', '2005-09-06 21:00:49'),
(570, 23, 0x447261676f6ee381aee69982e8a888e381aee6a99fe883bd, 'Y', '2005-09-06 21:00:49'),
(571, 23, 0xe381aae3819ce4bc91e69a87e381aee4bdbfe794a8e381afe99990e5ae9ae38195e3828ce381a6e38184e381bee38199e3818befbc9f, 'Y', '2005-09-06 21:00:49'),
(573, 23, 0xe38193e381ae464151e381aee69c80e8bf91e381aee5a489e69bb4e381afe4bd95e381a7e38197e38287e38186e3818b3f, 'Y', '2005-09-06 21:00:49'),
(575, 23, 0xe381aae3819c447261676f6ee381afe7a781e381aee383a1e383bce383abe382a2e38389e383ace382b9e38292e5b08be381ade381bee38199e3818b3f, 'Y', '2005-09-06 21:00:49'),
(579, 23, 0xe382abe3838ae38380e7a792e8aaade381bfe381aee38284e3828ae3818be3819fe381afefbc9f, 'Y', '2005-09-06 21:00:49'),
(585, 23, 0xe5af9de3828be69982e99693e381a8e381afe4bd95e381a7e38197e38287e38186e3818b3f, 'N', '2005-09-06 21:00:49'),
(586, 23, 0xe5af9de3828be69982e99693e381a8e68c87e5ae9ae38197e3819fe69982e99693e381abe5afbee5b180e381aee69982e8a888e381afe980b2e381bfe381bee3819be38293e381aee381a7e38081e6ae8be3828ae69982e99693e381afe6b89be3828ae381bee3819be38293e38082, 'N', '2005-09-06 21:00:49'),
(589, 23, 0xe381aae3819ce887aae58886e381aee38397e383ade38395e382a3e383abe381a7e5af9de3828be69982e99693e381aee8a8ade5ae9ae38292e5a489e69bb4e587bae69da5e381bee3819be38293e3818b3f, 'Y', '2005-09-06 21:00:49'),
(590, 23, 0xe4b880e697a5e381abefbc93e59b9ee5af9de3828be69982e99693e381aee8a8ade5ae9ae38292e5a489e69bb4e38199e3828ce381b0e38081e5afbee5b180e69982e8a888e38292e6ada2e38281e3828be4ba8be381afe587bae69da5e381bee38199e381aee381a7e38081e69c80e8bf91e381abe5a489e69bb4e38197e381a6e38184e381aae38191e3828ce381b0e38081e5a489e69bb4e587bae69da5e381bee38199e38082, 'Y', '2005-09-06 21:00:49'),
(591, 23, 0xe887aae58886e381aee69982e8a888e381abe69982e99693e38292e8bfbde58aa0e587bae69da5e381bee38199e3818befbc9f, 'Y', '2005-09-06 21:00:49'),
(592, 23, 0xe38184e38184e38188e38082, 'N', '2005-09-06 21:00:49'),
(593, 23, 0xe79bb8e6898be381aee69982e8a888e381abe69982e99693e38292e8bfbde58aa0e587bae69da5e381bee38199e3818b3f, 'Y', '2005-09-06 21:03:29'),
(594, 23, 0xe38184e38184e38188e38082, 'N', '2005-09-06 21:03:29'),
(595, 23, 0xe4bc91e69a87e381aee697a5e99693e381a8e381afefbc9f, 'Y', '2005-09-06 21:03:29'),
(597, 23, 0xe7a792e8aaade381bf, 'Y', '2005-09-06 21:03:29'),
(599, 23, 0xe7a781e381aee5af9de3828be69982e99693e38292e8a888e7ae97e38199e3828be381abe381afe381a9e381aee69982e99693e5b8afe3818ce4bdbfe794a8e38195e3828ce381bee38199e3818befbc9f, 'Y', '2005-09-06 21:03:29'),
(600, 23, 0xe38397e383ade38395e382a3e383abe381a7e8a8ade5ae9ae38197e381a6e38182e3828be69982e99693e5b8afe381afe4bdbfe794a8e38195e3828ce381bee38199e38082, 'Y', '2005-09-06 21:03:29'),
(601, 23, '', 'Y', '2007-10-11 04:58:08'),
(622, 23, 0xe38389e383a9e382b4e383b3e381aee38388e383bce3838ae383a1e383b3e38388, 'Y', '2005-09-06 21:08:34'),
(623, 23, 0xe3818ae9a198e38184e38197e381bee38199e38082, 'N', '2005-09-06 21:08:34'),
(522, 23, 0xe5afbee5b180e9968be5a78be69982e381abe3808ce382b0e38383e38389e383a9e38383e382afe3808de381afe8a880e381a3e381a6e38282e38184e38184e381a7e38199e3818befbc9f, 'Y', '2005-09-07 18:30:35'),
(523, 23, 0xe58bbfe8ab96e381a7e38199e38082e3808ce3818ae9a198e38184e38197e381bee38199e3808de38282e38288e3818fe69c89e3828ae381bee38199e38082, 'N', '2005-09-07 18:30:35'),
(525, 23, 0xe696b0e38197e38184e6a99fe883bde381afe383aae382afe382a8e382b9e38388e587bae69da5e381bee38199e3818b3f, 'Y', '2005-09-07 18:30:35'),
(526, 23, 0xe381afe38184e38082e383aae382afe382a8e382b9e38388e381af3c4120485245463d222f70686f72756d2f6c6973742e7068703f663d34223e64697363757373696f6e20666f72756d3c2f413ee381abe69bb8e38184e381a6e4b88be38195e38184e380820d0a0d0ae697a2e381abe383aae382afe382a8e382b9e38388e38195e3828ce381a6e38184e3828be6a99fe883bde381afe4bba5e4b88be381aee696b9e6b395e381a7e38194e8a6a7e381abe381aae3828ce381bee38199e380820d0aefbc91efbc89e38389e383a9e382b4e383b3e38395e382a9e383bce383a9e383a0e381aee6a49ce7b4a2e6a99fe883bd0d0aefbc92efbc893c4120485245463d22687474703a2f2f73656e736569732e786d702e6e65742f3f444753576973686c69737422205441524745543d225f626c616e6b223e2244475320776973686c6973742061742053656e7365692773204c696272617279223c2f413e0d0aefbc93efbc89536f75726365666f726765e381aee38389e383a9e382b4e383b3e38397e383ade382b8e382a7e382afe38388e381ae435653206368616e67656c6f67, 'N', '2005-09-07 18:30:35'),
(529, 23, 0xe383abe383bce383abe38292e8a9b3e38197e3818fe5ada6e381b6e696b9e6b395e381afe69c89e3828ae381bee38199e3818b3f, 'Y', '2005-09-07 20:36:30'),
(530, 23, 0x464151e3818b474fe381aee38395e382a9e383bce383a9e383a0e381a7e8b3aae5958fe38292e8819ee38184e381a6e381bfe381a6e4b88be38195e38184e38082e789b9e381abe381a9e381aee383abe383bce383abe381abe381a4e38184e381a6e381aee68385e5a0b1e38292e79fa5e3828ae3819fe38184e38197e38081e5afbee5b180e381aee381a9e381aee78ab6e6b381e381a7e3819de381aee383abe383bce383abe3818ce5bdb1e99fbfe38199e3828be381aee38292e383a1e38383e382bbe383bce382b8e381abe590abe38281e3819fe696b9e3818ce38184e38184e381a7e38199e38082, 'Y', '2005-09-07 20:36:30'),
(531, 23, 0xe59bb2e7a281e381aee59fbae69cace383abe383bce383abe381afe4bd95e381a7e38197e38287e38186e3818b3f, 'Y', '2005-09-07 20:36:30'),
(533, 23, 0xe59bb2e7a281e381abe381a4e38184e381a6e381aee382a6e382a7e38396e3839ae383bce382b8e381afe69c89e3828ae381bee38199e3818b3f, 'Y', '2005-09-07 20:36:30'),
(534, 23, 0xe38389e383a9e382b4e383b3e381ae3c6120687265663d222f6c696e6b732e706870223ee383aae383b3e382afe3839ae383bce382b83c2f613ee381a7e5b9bee381a4e3818be3818ce8a898e38195e3828ce381a6e38184e381bee38199e38082, 'Y', '2005-09-07 20:36:30'),
(536, 23, 0xe7b582e79ba4e38082e5afbee5b180e381aee69c80e5be8ce381aee6aeb5e99a8ee381a7e38199e38082e7b582e79ba4e381a7e694bbe38281e59088e38184e38284e79fb3e381aee6adbbe6b4bbe381afe38282e38186e6b1bae381bee381a3e381a6e38184e381bee38199e38082e38282e38186e59bb2e381bee3828ce381a6e38184e3828be59cb0e38292e5ba83e38192e3828be6898be38292e68993e381a1e381bee38199e38082, 'Y', '2005-09-07 20:36:30');
INSERT INTO `Translations` (`Original_ID`, `Language_ID`, `Text`, `Translated`, `Updated`) VALUES
(538, 23, 0xe5bd93e3819fe3828ae381afe9a784e79baee3818ce4b880e381a4e38197e3818be6ae8be381a3e381a6e38184e381aae38184e782bae381abe79fb3e381aee382b0e383abe383bce38397e3818be4b880e5808be381aee79fb3e3818ce4b880e6898be381a7e58f96e38289e3828ce3828be4ba8be3818ce587bae69da5e3828be78ab6e6858be381a7e38199e38082e4babae381abe38288e381a3e381a6e38081e3808ce5bd93e3819fe3828ae3808de381a8e79bb8e6898be381abe8a880e38186e381aee381afe38199e3828be381b9e3818de3818be38081e4b881e5afa7e381a0e381a8e6809de3828fe3828ce381a6e38184e3828be5a0b4e59088e38282e69c89e3828ae381bee38199e3818ce38081e7bea9e58b99e381a7e381afe69c89e3828ae381bee3819be38293e38082, 'N', '2005-09-07 20:36:30'),
(540, 23, 0xe382b3e382a6e381afe4b880e5808be381aee79fb3e3818ce58f8de5bea9e381abe58f96e38289e3828ce3828be78ab6e6858be381a7e38199e38082e382b3e382a6efbc88e58aabefbc89e381aee6848fe591b3e381afe3808ce6b0b8e981a0e3808de381a7e38199e38082, 'Y', '2005-09-07 20:36:30'),
(542, 23, 0xe38184e38184e38188e38082e696b0e38197e38184e5afbee5b180e382923c6120687265663d222f6661712e7068703f726561643d74266361743d3536223ee981a9e58887e381aae69982e99693e588b6e999903c2f613ee381a7e5a78be38281e381a6e4b88be38195e38184e38082, 'Y', '2005-09-07 20:36:30'),
(581, 23, 0xe38395e382a3e38383e382b7e383a3e383bce69982e99693e588b6e381afe381a9e38293e381aae381a7e38199e3818befbc9f, 'Y', '2005-09-07 20:36:30'),
(583, 23, 0xe38395e382a3e38383e382b7e383a3e383bce69982e99693e588b6e381abe5af9de3828be69982e99693e381afe381a9e38186e38184e38186e5bdb1e99fbfe38197e381bee38199e3818befbc9f, 'Y', '2005-09-07 20:36:30'),
(587, 23, 0xe7a781e381aee6ae8be3828ae69982e99693e381afe381aae3819cefbc91efbc90e58886e381aee99693e381abefbc99e69982e99693e6b89be3828ae381bee38197e3819fe3818b3f, 'Y', '2005-09-07 23:24:14'),
(598, 23, 0xe5889de69c9fe69982e99693e3818ce58887e3828ce3828be69982e381abe69c89e58ab9e381abe381aae3828be69982e99693e588b6e381a7e38199e38082, 'Y', '2005-09-07 23:24:14'),
(603, 23, 0xe38389e383a9e382b4e383b3e381afe381aae3819ce79bb8e6898be381aee383a1e383bce383abe382a2e38389e383ace382b9e38292e69599e38188e381bee3819be382933f, 'Y', '2005-09-07 23:24:14'),
(605, 23, 0xe381a9e38186e38284e381a3e381a6e38386e382afe382b9e38388e38292534746e38395e382a1e382a4e383abe381abe4bf9de5ad98e587bae69da5e381bee38199e3818b3f, 'Y', '2005-09-07 23:24:14'),
(607, 23, 0xe7a781e381afe38389e383a9e382b4e383b3e381aee9968be799bae88085e381abe381aae3828ce381bee38199e3818befbc9f, 'Y', '2005-09-07 23:24:14'),
(621, 23, 0x464151e381aee585a8e381a6e38292e4b880e3839ae383bce382b8e381a7e8a1a8e7a4bae38197e381bee38199e38082, 'Y', '2005-09-07 23:24:14'),
(624, 23, 0xe38082e38082e38082e381afe59bb2e7a281e794a8e8aa9ee381a8e38197e381a6e38081e3808ce794b3e38197e8bebce381bfe38292e69c89e99ba3e38186e38194e38196e38184e381bee38197e3819fe38082e889afe38184e5afbee5b180e38197e381bee38197e38287e38186e3808de381a8e38184e38186e6848fe591b3e381abe381aae3828ae381bee38199e38082, 'N', '2005-09-07 23:24:14'),
(625, 23, 0xe38389e383a9e382b4e383b3e381a7e58f82e58aa0e587bae69da5e3828be38388e383bce3838ae383a1e383b3e38388e381afe69c89e3828ae381bee38199e3818b3f, 'Y', '2005-09-07 23:24:14'),
(626, 23, 0xe38184e38188e38188e38082e381bee381a0e381a7e38199e38082, 'Y', '2005-09-07 23:24:14'),
(627, 23, 0xe383a6e383bce382b6e383bce381aee6b4bbe58b95e381afe381a9e38186e38184e38186e6848fe591b3e381a7e38199e3818befbc9f, 'Y', '2005-09-07 23:24:14'),
(629, 23, 0xe383a6e383bce382b6e383bce381aee58b9de588a9e78e87e381afe4bd95e381a7e38199e3818b3f, 'Y', '2005-09-07 23:24:14'),
(631, 23, 0xe887aae58886e381a7e4bd9ce381a3e3819fe5afbee5b180e381aee794b3e38197e8bebce381bfe38292e5afbee5b180e794b3e38197e8bebce381bfe8a1a8e3818be38289e5898ae999a4e587bae69da5e381bee38199e3818b3f, 'Y', '2005-09-07 23:24:14'),
(633, 23, 0xe68fa1e3828ae381aee4ba92e38184e58588e381afe4bd95e381a7e38199e3818b3f, 'Y', '2005-09-07 23:24:14'),
(635, 23, 0xe381aae3819ce383a6e383bce382b6e383bce383aae382b9e38388e381abe8a1a8e7a4bae38195e3828ce381a6e38184e381aae38184e383a6e383bce382b6e383bce3818ce5b185e381bee38199e3818b3f, 'Y', '2005-09-07 23:24:14'),
(637, 23, 0xe5889de69c9fe69982e99693e381afe4bd95e381a7e38199e3818b3f, 'Y', '2005-09-07 23:24:14'),
(638, 23, 0xe5889de69c9fe69982e99693e381afe5afbee5b180e381aee9968be5a78be381abe4b8a1e696b9e381aee5afbee5b180e88085e381aee69982e8a888e381abe8bfbde58aa0e38195e3828ce3828be69982e99693e381a7e38199e38082e5889de69c9fe69982e99693e3818ce58887e3828ce3819fe38289e38081e5afbee5b180e381afe381bee381a0e7b582e3828fe38289e381aae3818fe381a6e38081e69982e99693e5a496e381abe585a5e3828ae381bee3819be38293e38082e8a9b3e38197e3818fe381afe4b88be38292e38194e58f82e785a7e4b88be38195e38184e38082, 'Y', '2005-09-07 23:24:14'),
(639, 23, 0xe38389e383a9e382b4e383b3e381aee382b9e382bfe38383e38395e381afe8aab0e381a7e38199e3818b3f, 'Y', '2005-09-07 23:24:14'),
(643, 23, 0xe38389e383a9e382b4e383b3e381a748544d4ce381afe4bdbfe38188e381bee38199e3818b3f, 'N', '2005-09-07 23:24:14'),
(645, 23, 0xe6989f, 'Y', '2005-09-07 23:31:16'),
(655, 23, 0xe5a4a9e58583, 'N', '2005-09-07 23:31:16'),
(657, 23, 0xe7a281e79ba4, 'Y', '2005-09-07 23:31:16'),
(658, 23, 0xe789a9e79086e79a84e3818be4bbaee683b3e79a84e381aae59bb2e7a281e381aee69dbf, 'Y', '2005-09-07 23:31:16'),
(661, 23, 0xe3838fe383b3e38387e381afe4bd95e381a7e38199e3818b3f, 'Y', '2005-09-07 23:31:16'),
(663, 23, 0xe6a899e6ba96e3838fe383b3e38387e381a8e6ada3e38197e38184e3838fe383b3e38387e381aee98195e38184e381afe4bd95e381a7e38199e3818b3f, 'Y', '2005-09-07 23:35:35'),
(665, 23, 0xe5ae9ae79fb3, 'N', '2005-09-07 23:35:35'),
(667, 23, 0xe5b883e79fb3, 'N', '2005-09-07 23:35:35'),
(669, 23, 0xe3819be3818d, 'Y', '2005-09-07 23:35:35'),
(671, 23, 0xe383a1e383bce383abe381a7e6898be795aae38292e68f90e587bae587bae69da5e381bee38199e3818b3f, 'Y', '2005-09-07 23:35:35'),
(673, 23, 0xe7a781e381aee795aae381abe381aae381a3e3819fe38289e38081e38389e383a9e382b4e383b3e3818be38289e79fa5e38289e3819be38292e8b2b0e38188e381bee38199e3818b3f, 'Y', '2005-09-07 23:35:35'),
(675, 23, 0xe38389e383a9e382b4e383b3e381a7e382a2e38383e38397e383ade383bce38389e38197e3819f534746e38395e382a1e382a4e383abe3818be38289e5afbee5b180e38292e5868de9968be587bae69da5e381bee38199e3818befbc9f, 'Y', '2005-09-07 23:35:35'),
(676, 23, 0xe38184e38184e38188e38082e381bee381a0e381a7e38199e38082, 'N', '2005-09-07 23:35:35'),
(677, 23, 0xe38389e383a9e382b4e383b3e381aee383a9e383b3e382afe381a8e6aeb5e7b49ae4bd8d, 'Y', '2005-09-07 23:38:19'),
(678, 23, 0xe383a6e383bce382b6e383bce8a1a8e381aee383a9e383b3e382afe381aee58897e381afe381a9e38186e38184e38186e6848fe591b3e381a7e38199e3818b3f, 'Y', '2005-09-07 23:38:19'),
(680, 23, 0xe6aeb5e7b49ae4bd8de381aee5be8ce381aee3808c2be3808de3818be3808c2de3808de3839ee383bce382afe381afe381a9e38186e38184e38186e6848fe591b3e381a7e38199e3818befbc9f, 'Y', '2005-09-07 23:38:19'),
(684, 23, 0xe382b0e383a9e38395e381aee99d92e38184e68980e381afe381a9e38186e38184e38186e6848fe591b3e381a7e38199e3818b3f, 'Y', '2005-09-07 23:38:19'),
(686, 23, 0xe6898be68a9ce3818d, 'N', '2005-09-07 23:38:19'),
(687, 23, 0xe79bb8e6898be3818ce68993e381a3e3819fe6898be38292e7ad94e38188e3819ae381abe79bb4e68ea5e381abe996a2e4bf82e784a1e38184e6898be38292e68993e381a4e4ba8be381a7e38199e38082, 'N', '2005-09-07 23:40:26'),
(688, 23, 0xe38380e38396e383abe5afbee5b180e381afe4bd95e381a7e38199e3818b3f, 'Y', '2005-09-07 23:40:26'),
(690, 23, 0xe58588e6898b, 'N', '2005-09-07 23:40:26'),
(692, 23, 0xe5be8ce6898b, 'N', '2005-09-07 23:41:15'),
(694, 23, 0xe79ba3e8a696e38197e381a6e38184e3828be5afbee5b180e381afe4bd95e381a7e38199e3818b3f, 'Y', '2005-09-07 23:41:15'),
(696, 23, 0xe9a784e79bae, 'Y', '2005-09-07 23:41:31'),
(697, 23, 0xe381a9e381a1e38289e381aee5afbee5b180e88085e381a7e38282e381aee59cb0e381a7e695b0e38188e38289e3828ce381aae38184e782b9e381a7e38199e38082, 'Y', '2005-09-07 23:43:21'),
(698, 23, 0xe9a784e79bae, 'Y', '2005-09-07 23:43:31'),
(699, 23, 0xe79fb3e3818be79fb3e381aee382b0e383abe383bce38397e381aee99aa3e381abe69c89e3828be7a9bae38184e381a6e38184e3828be782b9e381a7e38199e38082, 'Y', '2005-09-07 23:44:06'),
(762, 23, 0xe382a2e383b3e38386e382a3e382b0e382a2e381a8e38390e383bce38396e383bce38380, 'N', '2005-09-07 23:55:32'),
(767, 23, 0xe382a2e382bce383abe38390e382a4e382b8e383a3e383b3, 'Y', '2005-09-07 23:55:32'),
(770, 23, 0xe38390e383abe38390e38389e382b9, 'Y', '2005-09-07 23:55:32'),
(771, 23, 0xe38390e383b3e382b0e383a9e38387e382b7e383a5, 'Y', '2005-09-07 23:55:32'),
(772, 23, 0xe38399e383a9e383abe383bce382b7, 'Y', '2005-09-07 23:55:32'),
(774, 23, 0xe38399e383aae383bce382ba, 'Y', '2005-09-07 23:55:32'),
(775, 23, 0xe38399e3838be383b3, 'Y', '2005-09-07 23:55:32'),
(776, 23, 0xe38396e383bce382bfe383b3, 'Y', '2005-09-07 23:55:32'),
(783, 23, 0xe38396e383abe382ade3838ae38395e382a1e382bd, 'Y', '2005-09-08 00:28:19'),
(784, 23, 0xe38396e383abe383b3e38387e382a3, 'Y', '2005-09-08 00:28:19'),
(788, 23, 0xe382abe3839ce38399e383abe38387, 'Y', '2005-09-08 00:28:19'),
(789, 23, 0xe4b8ade983a8e382a2e38395e383aae382ab, 'Y', '2005-09-08 00:28:19'),
(794, 23, 0xe382b3e383a2e383ade382b9, 'Y', '2005-09-08 00:28:19'),
(795, 23, 0xe382b3e383b3e382b4e383bbe38396e383a9e382b6e38393e383ab, 'Y', '2005-09-08 00:28:19'),
(796, 23, 0xe382b3e383b3e382b4e383bbe382ade383b3e382b7e383a3e382b5, 'Y', '2005-09-08 00:28:19'),
(798, 23, 0xe8b1a1e78999e6b5b7e5b2b8, 'Y', '2005-09-08 00:28:19'),
(801, 23, 0xe382ade38397e383ade382b9, 'Y', '2005-09-08 00:28:19'),
(804, 23, 0xe382b8e38396e38381, 'Y', '2005-09-08 00:28:19'),
(806, 23, 0xe38389e3839fe3838be382ab, 'Y', '2005-09-08 00:28:19'),
(808, 23, 0xe382a8e382afe382a2e38389e383ab, 'Y', '2005-09-08 00:28:19'),
(810, 23, 0xe382a8e383abe382b5e383abe38390e38389e383ab, 'Y', '2005-09-08 00:28:19'),
(811, 23, 0xe8b5a4e98193e38393e382b5e382a6, 'Y', '2005-09-09 00:22:01'),
(812, 23, 0xe382a8e383aae38388e383aae382a2, 'Y', '2005-09-09 00:22:01'),
(815, 23, 0xe38395e382a3e382b8e383bc, 'Y', '2005-09-09 00:22:01'),
(818, 23, 0xe382ace3839ce383b3, 'Y', '2005-09-09 00:22:01'),
(824, 23, 0xe382b0e383ace3838ae38380, 'Y', '2005-09-09 00:22:01'),
(825, 23, 0xe382b0e382a2e38386e3839ee383a9, 'Y', '2005-09-09 00:22:01'),
(826, 23, 0xe382aee3838be382a2, 'Y', '2005-09-09 00:22:01'),
(827, 23, 0xe382aee3838be382a2e38393e382b5e382a6, 'Y', '2005-09-09 00:22:01'),
(830, 23, 0xe3839be383b3e382b8e382a7e383a9e382b9, 'Y', '2005-09-09 00:22:01'),
(843, 23, 0xe383a8e383abe38380e383b3, 'Y', '2005-09-09 00:22:01'),
(846, 23, 0xe382ade383aae38390e38386e382a3, 'Y', '2005-09-09 00:22:01'),
(850, 23, 0xe382ade383abe382aee382b9e382bfe383b3, 'Y', '2005-09-09 00:22:01'),
(854, 23, 0xe383ace382bde38388, 'Y', '2005-09-09 00:22:01'),
(857, 23, 0xe383aae38392e38386e383b3e382b7e383a5e382bfe382a4e383b3, 'Y', '2005-09-09 00:22:01'),
(858, 23, 0xe383aae38388e382a2e3838be382a2, 'Y', '2005-09-09 23:18:42'),
(859, 23, 0xe383abe382afe382bbe383b3e38396e383abe382af, 'Y', '2005-09-09 23:18:42'),
(861, 23, 0xe3839ee382b1e38389e3838be382a2, 'Y', '2005-09-09 23:18:42'),
(862, 23, 0xe3839ee38380e382ace382b9e382abe383ab, 'Y', '2005-09-09 23:18:42'),
(863, 23, 0xe3839ee383a9e382a6e382a4, 'Y', '2005-09-09 23:18:42'),
(865, 23, 0xe383a2e383abe38387e382a3e38396, 'Y', '2005-09-09 23:18:42'),
(866, 23, 0xe3839ee383aa, 'Y', '2005-09-09 23:18:42'),
(868, 23, 0xe3839ee383bce382b7e383a3e383abe5b3b6, 'Y', '2005-09-10 00:04:33'),
(869, 23, 0xe383a2e383aae382bfe3838be382a2, 'Y', '2005-09-10 00:04:33'),
(870, 23, 0xe3839ee382a6e383aae38381e382a6e382b9, 'Y', '2005-09-10 00:04:33'),
(872, 23, 0xe3839fe382afe383ade3838de382b7e382a2, 'Y', '2005-09-10 00:04:33'),
(873, 23, 0xe383a2e383abe38389e38390, 'Y', '2005-09-10 00:04:33'),
(877, 23, 0xe383a2e382b6e383b3e38393e383bce382af, 'Y', '2005-09-10 00:04:33'),
(880, 23, 0xe3838ae382a6e383ab, 'Y', '2005-09-10 00:04:33'),
(884, 23, 0xe3838be382abe383a9e382b0e382a2, 'Y', '2005-09-10 00:04:33'),
(885, 23, 0xe3838ae382a4e382b8e383a3, 'Y', '2005-09-10 00:04:33'),
(888, 23, 0xe382aae383bce3839ee383b3, 'Y', '2005-09-10 00:04:33'),
(890, 23, 0xe38391e383a9e382aa, 'Y', '2005-09-10 00:04:33'),
(893, 23, 0xe38391e38397e382a2e3838be383a5e383bce382aee3838be382a2, 'Y', '2005-09-10 00:04:33'),
(894, 23, 0xe38391e383a9e382b0e382a2e382a4, 'Y', '2005-09-10 00:04:33'),
(899, 23, 0xe38397e382a8e383abe38388e383aae382b3, 'Y', '2005-09-10 00:04:33'),
(900, 23, 0xe382abe382bfe383ab, 'Y', '2005-09-10 00:04:33'),
(904, 23, 0xe382bbe383b3e38388e382ade38383e38384e381a8e3838de38393e382b9e5b3b6, 'Y', '2005-09-10 00:04:33'),
(905, 23, 0xe382bbe383b3e38388e383abe382b7e382a2, 'Y', '2005-09-10 00:04:33'),
(908, 23, 0xe382b5e383b3e3839ee383aae3838e, 'Y', '2005-09-10 00:04:33'),
(910, 23, 0xe382b5e382a6e38387e382a3e382a2e383a9e38393e382a2, 'Y', '2005-09-10 00:04:33'),
(918, 23, 0xe382bde383ade383a2e383b3e5b3b6, 'Y', '2005-09-10 00:04:33'),
(924, 23, 0xe382b9e383aae3838ae383a0, 'Y', '2005-09-10 00:04:33'),
(943, 23, 0xe980a3e59088e78e8be59bbdefbc88e382a4e382aee383aae382b9efbc89, 'Y', '2005-09-10 00:12:30'),
(945, 23, 0xe382a6e383abe382b0e382a2e382a4, 'Y', '2005-09-10 00:04:33'),
(906, 23, 0xe382bbe383b3e38388e38393e383b3e38381e382a7e383b3e38388e381a8e382b0e383ace3838ae38387e382a3e383bce383b3, 'Y', '2005-09-10 00:11:33'),
(909, 23, 0xe382b5e382aae38388e383bce383a0e381a8e38397e383aae383b3e382b7e383bce38397, 'Y', '2005-09-10 00:11:33'),
(913, 23, 0xe382bbe38381e382a7e383abe382b9, 'Y', '2005-09-10 00:11:33'),
(914, 23, 0xe382b7e382a8e383a9e383ace382aae3838d, 'Y', '2005-09-10 00:11:33'),
(925, 23, 0xe382b9e383afe382b8e383a9e383b3e38389, 'Y', '2005-09-10 00:11:33'),
(935, 23, 0xe38388e383aae3838be38380e38389e381a8e38388e38399e383bce382b4, 'Y', '2005-09-10 00:11:33'),
(938, 23, 0xe38388e383abe382afe383a1e3838be382b9e382bfe383b3, 'Y', '2005-09-10 00:11:33'),
(939, 23, 0xe38388e382a5e383b4e382a1e383abe383bc, 'Y', '2005-09-10 00:11:33'),
(942, 23, 0xe382a2e383a9e38396e9a696e995b7e59bbde980a3e982a6, 'Y', '2005-09-10 00:11:33'),
(946, 23, 0xe382a6e382bae38399e382ade382b9e382bfe383b3, 'Y', '2005-09-10 00:11:33'),
(947, 23, 0xe383b4e382a1e3838ce382a2e38388e382a5e383bc, 'Y', '2005-09-10 00:11:33'),
(948, 23, 0xe383b4e382a1e38381e382abe383b3e5b882e59bbd, 'Y', '2005-09-10 00:11:33'),
(1024, 23, 0xe4ba92e38184e58588, 'Y', '2005-09-10 00:15:52'),
(1025, 23, 0x3c6120687265663d226661712e7068703f726561643d74266361743d33353723456e7472793937223ee3838fe383b3e383873c2f613ee3818ce784a1e38184e5afbee5b180e381a7e38199e38082e5afbee5b180e68b9be5be85e88085e3818c3c6120687265663d226661712e7068703f726561643d74266361743d3323456e74727939223ee382b3e3839f3c2f613ee38292e981b8e381b3e381bee38199e38082, 'Y', '2005-09-10 00:15:52'),
(1032, 11, 0x477269656b73, 'Y', '2005-09-19 11:10:22'),
(792, 30, 0xce9aceafcebdceb1, 'Y', '2005-10-04 18:29:44'),
(801, 30, 0xce9acf8dcf80cf81cebfcf82, 'Y', '2005-10-04 18:29:44'),
(823, 30, 0xce95cebbcebbceacceb4ceb1, 'Y', '2005-10-04 18:29:44'),
(842, 30, 0xce99ceb1cf80cf89cebdceafceb1, 'Y', '2005-10-04 18:29:44'),
(326, 30, 0xcea3cf84ceb5ceafcebbceb520ce91cf80ceaccebdcf84ceb7cf83ceb7, 'Y', '2005-10-04 18:39:25'),
(327, 30, 0xce9dceadcebf20cebcceaecebdcf85cebcceb1, 'Y', '2005-10-04 18:39:25'),
(328, 30, 0xcea0cf81cebfcf822028cf84ceb1cf85cf84cf8ccf84ceb7cf84ceb120cf87cf81ceaecf83cf84ceb729, 'Y', '2005-10-04 18:39:25'),
(329, 30, 0xce91cf80cebfcf83cf84cebfcebbceae20ce9cceb7cebdcf8dcebcceb1cf84cebfcf82, 'Y', '2005-10-04 18:39:25'),
(333, 30, 0xce91cf80cebfceb4cebfcf87ceae, 'Y', '2005-10-04 18:39:25'),
(334, 30, 0xce91cf80cf8ccf81cf81ceb9cf88ceb7, 'Y', '2005-10-04 18:39:25'),
(335, 30, 0xce9aceb5ceafcebcceb5cebdcebf20cf80cf81cf8ccf83cebacebbceb7cf83ceb7cf82, 'Y', '2005-10-04 18:39:25'),
(336, 30, 0xcea0cf81cf8ccf83cebacebbceb7cf83ceb7, 'Y', '2005-10-04 18:39:25'),
(346, 30, 0xcea4cebf20cebcceaecebdcf85cebcceb120cf83cf84ceaccebbceb7cebaceb521, 'Y', '2005-10-11 23:13:06'),
(370, 30, 0xce9dceb1ceb9, 'Y', '2005-10-04 18:39:25'),
(371, 30, 0xce8ccf87ceb9, 'Y', '2005-10-04 18:39:25'),
(431, 30, 0xce9cceadceb3ceb5ceb8cebfcf8220ceb3cebacf8ccebccf80ceb1cebd, 'N', '2005-10-04 18:39:25'),
(433, 30, 0xce9aceb1cebdcebfcebdceb9cebacf8c20cf80cebbceb5cebfcebdceadcebacf84ceb7cebcceb1, 'Y', '2005-10-04 18:39:25'),
(446, 30, 0xcea7cf81cf8ecebcceb1cf84ceb1, 'Y', '2005-10-04 18:39:25'),
(484, 30, 0xce99ceb1cebd, 'Y', '2005-10-29 17:34:00'),
(485, 30, 0xcea6ceb5ceb2, 'Y', '2005-10-04 18:44:51'),
(486, 30, 0xce91cf80cf81, 'Y', '2005-10-04 18:44:51'),
(487, 30, 0xce9cceb1ceb9, 'Y', '2005-10-04 18:44:51'),
(488, 30, 0xce99cebfcf85cebd, 'Y', '2005-10-04 18:44:51'),
(489, 30, 0xce91cf85ceb3, 'Y', '2005-10-04 18:44:51'),
(490, 30, 0xcea3ceb5cf80, 'Y', '2005-10-04 18:44:51'),
(491, 30, 0xce9fcebacf84, 'Y', '2005-10-04 18:44:51'),
(492, 30, 0xce94ceb5ceba, 'Y', '2005-10-04 18:44:51'),
(495, 30, 0xce9cceb1cf81, 'Y', '2005-10-04 18:44:51'),
(496, 30, 0xce99cebfcf85cebb, 'Y', '2005-10-04 18:44:51'),
(497, 30, 0xce9dcebfceb5, 'Y', '2005-10-04 18:44:51'),
(157, 30, 0xce9f20cebacf89ceb4ceb9cebacf8ccf8220ceadcf87ceb5ceb920ceb1cebbcebbceb1cf87cf84ceb5ceaf21, 'Y', '2005-10-14 14:55:42'),
(176, 30, 0xcea7cf8ecf81ceb1, 'Y', '2005-10-04 18:51:44'),
(177, 30, 0xcea0cf8ccebbceb7, 'Y', '2005-10-04 18:51:44'),
(179, 30, 0xce8ccebcceb9cebbcebfcf82, 'Y', '2005-10-04 18:51:44'),
(180, 30, 0xce99cf83cf84cebfcf83ceb5cebbceafceb4ceb1, 'Y', '2005-10-04 18:51:44'),
(181, 30, '', 'Y', '2005-12-28 16:20:02'),
(184, 30, 0xcea7cf8ccebccf80cf85, 'Y', '2005-10-04 18:51:44'),
(185, 30, 0xce95cf80ceacceb3ceb3ceb5cebbcebcceb1, 'Y', '2005-10-04 18:51:44'),
(189, 30, 0xcea0ceb1cebbceb9cf8ccf8220cebacf89ceb4ceb9cebacf8ccf82, 'Y', '2005-10-04 18:51:44'),
(190, 30, 0xce9dceadcebfcf8220cebacf89ceb4ceb9cebacf8ccf82, 'Y', '2005-10-04 18:51:44'),
(192, 30, 0xce91cebbcebbceb1ceb3ceae20cebacf89ceb4ceb9cebacebfcf8d, 'Y', '2005-10-04 18:51:44'),
(195, 30, 0xce9aceb9cebdceaecf83ceb5cf8220cebaceb1ceb920cebcceb7cebdcf8dcebcceb1cf84ceb1, 'Y', '2005-10-04 18:51:44'),
(197, 30, 0xce9aceacceb8ceb5cf84ceb1, 'Y', '2005-10-04 18:51:44'),
(198, 30, 0xce9fcf81ceb9ceb6cf8ccebdcf84ceb9ceb1, 'Y', '2005-10-04 18:51:44'),
(208, 30, 0xce93cebbcf8ecf83cf83ceb1, 'Y', '2005-10-04 18:51:44'),
(212, 30, 0xce9cceadceb3ceb5ceb8cebfcf8220cf80ceb5cf84cf81cf8ecebd, 'Y', '2005-10-04 18:51:44'),
(213, 30, 0xcea7cf81cf8ecebcceb120cebecf8dcebbcebfcf85, 'Y', '2005-10-04 18:51:44'),
(348, 30, 0xcea4ceb5cebbceb5ceb9cf89cebcceadcebdceb120cf80ceb1ceb9cf87cebdceafceb4ceb9ceb1, 'Y', '2005-10-04 18:51:44'),
(349, 30, 0xcea4cf81ceadcf87cebfcebdcf84ceb120cf80ceb1ceb9cf87cebdceafceb4ceb9ceb1, 'Y', '2005-10-04 18:51:44'),
(373, 30, 0xcea0cf81cf8ccf83cebacebbceb7cf83ceb720cf83cf84cebf20cf87cf81ceaecf83cf84ceb720ceb1cf85cf84cf8c, 'Y', '2005-10-04 18:51:44'),
(393, 30, 0xce97cebcceb5cf81cebfcebcceb7cebdceafceb120ceb5ceb3ceb3cf81ceb1cf86ceaecf82, 'Y', '2005-10-04 18:51:44'),
(395, 30, 0xce92ceb9cebfceb3cf81ceb1cf86ceb9cebacf8c, 'Y', '2005-10-04 18:51:44'),
(736, 30, 0xce9aceb5cf81ceb4ceb9cf83cebcceadcebdceb120cf80ceb1ceb9cf87cebdceafceb4ceb9ceb1, 'Y', '2005-10-04 18:51:44'),
(737, 30, 0xcea7ceb1cebcceadcebdceb120cf80ceb1ceb9cf87cebdceafceb4ceb9ceb1, 'Y', '2005-10-04 18:51:44'),
(1032, 30, 0xce95cebbcebbceb7cebdceb9cebaceac, 'Y', '2005-10-04 18:51:44'),
(394, 30, 0xcea4ceb5cebbceb5cf85cf84ceb1ceafceb120cf83cf8dcebdceb4ceb5cf83ceb7, 'Y', '2005-10-06 17:15:15'),
(955, 30, 0xce94ceb9ceb1cebacebfcf80ceadcf82, 'Y', '2005-10-06 17:16:13'),
(378, 30, 0xcea4ceb120cf83cf84cebfceb9cf87ceb5ceafceb120cebccebfcf85, 'Y', '2005-10-07 15:55:56'),
(468, 30, 0xce99cf83cf80ceb1cebdceb9cebaceac, 'Y', '2005-10-07 15:55:56'),
(472, 30, 0xce9aceb9cebdceadceb6ceb9cebaceb128ce91cf80cebbcebfcf80cebfceb9ceb7cebcceadcebdceb129, 'Y', '2005-10-07 15:55:56'),
(473, 30, 0xce9fcebbcebbceb1cebdceb4ceb9cebaceac, 'Y', '2005-10-07 15:55:56'),
(750, 30, 0xce9acebfcf81ceb5ceaccf84ceb9cebaceb1, 'Y', '2005-10-07 15:55:56'),
(954, 30, 0xcea1cf89cf83ceb9cebaceac, 'Y', '2005-10-07 15:55:56'),
(958, 30, 0xcea0cf81cf8ccf83ceb8ceb5cf83ceb7, 'Y', '2005-10-07 15:55:56'),
(959, 30, 0xce91cf86ceb1ceafcf81ceb5cf83ceb7, 'Y', '2005-10-07 15:55:56'),
(962, 30, 0xce9aceaccebbceadcf8220ceb4ceb9ceb1cebacebfcf80ceadcf8221, 'Y', '2005-10-07 15:55:56'),
(997, 30, 0xcea0cebfcebbcf89cebdceb9cebaceac, 'Y', '2005-10-07 15:55:56'),
(998, 30, 0xce99cf84ceb1cebbceb9cebaceac, 'Y', '2005-10-07 15:55:56'),
(1015, 30, 0xce95cf83cf80ceb5cf81ceaccebdcf84cebf, 'Y', '2005-10-07 15:55:56'),
(161, 30, 0xcea3cf85cf87cebdceadcf8220ce95cf81cf89cf84ceaecf83ceb5ceb9cf82, 'Y', '2005-10-07 16:04:44'),
(502, 30, 0xce8ccf81cebfceb920cf84cebfcf8520ce93cebacebf, 'Y', '2005-10-07 16:04:44'),
(503, 30, 0xce94ceb9ceaccf86cebfcf81ceb1, 'Y', '2005-10-07 16:04:44'),
(504, 30, 0xce9fceb920cebaceb1cebdcf8ccebdceb5cf8220cf84cebfcf8520ce93cebacebf, 'Y', '2005-10-07 16:04:44'),
(522, 30, 0xce9ccf80cebfcf81cf8e20cebdceb120ceb5cf85cf87ceb7ceb8cf8e20cf83cf84cebfcebd20ceb1cebdcf84ceafcf80ceb1cebbcebf20cebccebfcf852022cebaceb1cebbceae20cf84cf8dcf87ceb72220cf83cf84ceb7cebd20ceb1cf81cf87ceae20cebcceb9ceb1cf8220cebaceb1ceb9cebdcebfcf8dcf81ceb9ceb1cf8220cf80ceb1cf81cf84ceafceb4ceb1cf823b, 'Y', '2005-10-07 16:04:44'),
(523, 30, 0xcea6cf85cf83ceb9cebaceac2e20ce9cceaccebbceb9cf83cf84ceb12c20cebcceb5cf81ceb9cebacebfceaf20cf80ceb1ceafcebacf84ceb5cf8220ceb5cebacf84ceb9cebccebfcf8dcebd20cf84cebfcebd20cf80ceb1cf81ceb1ceb4cebfcf83ceb9ceb1cebacf8c20ce99ceb1cf80cf89cebdceb9cebacf8c20cf8ccf81cebf203c6120687265663d222f6661712e7068703f726561643d74266361743d3323456e7472793738223e6f6e656761697368696d6173753c2f613e2e, 'N', '2005-10-07 16:04:44'),
(257, 30, 0xcea3ceb5cebbceafceb4ceb5cf8220cf84cebfcf85204a616e2076616e2064657220537465656e, 'Y', '2005-10-31 22:28:35'),
(273, 30, 0xce9aceb1cebdcf8ccebdceb5cf82, 'Y', '2005-10-07 16:11:32'),
(291, 30, 0xce99cf83cf84cebfcf81ceafceb1, 'Y', '2005-10-07 16:11:32'),
(292, 30, 0xcea3cf8dcebdcf84cebfcebcceb720ce99cf83cf84cebfcf81ceafceb1, 'Y', '2005-10-07 16:11:32'),
(296, 30, 0xce92ceb9ceb2cebbceafceb12c20ceb5cebecebfcf80cebbceb9cf83cebccf8ccf8220cebaceb1ceb920cebbcebfceb3ceb9cf83cebcceb9cebacf8c20ceb3ceb9ceb120ce93cebacebf, 'Y', '2005-10-07 16:11:32'),
(300, 30, 0xce86cebbcebbcebfceb9207365727665727320ceb3ceb9ceb120ce93cebacebf, 'Y', '2005-10-07 16:11:32'),
(498, 30, 0xce91cf80cf8c2332, 'Y', '2005-10-07 16:12:35'),
(499, 30, 0xcea0cf81cebfcf822332, 'Y', '2005-10-07 16:12:35'),
(136, 30, '', 'Y', '2005-10-07 16:14:25'),
(159, 30, 0xce9aceb5ceafcebcceb5cebdceb1, 'Y', '2005-10-07 16:14:25'),
(156, 30, 0xcea4cebf20ceb2ceb9cebfceb3cf81ceb1cf86ceb9cebacf8c20ceadcf87ceb5ceb920ceb1cebdceb1cebdceb5cf89ceb8ceb5ceaf21, 'Y', '2005-10-14 14:55:42'),
(566, 30, 0xcea4ceaf20ceb5ceafcebdceb1ceb920cebf20447261676f6e3b, 'Y', '2005-10-10 21:10:38'),
(568, 30, 0xce94ceb5cebd20ceadcf87cf8920ceb9ceb4ceadceb120cf84ceb920ceb5ceafcebdceb1ceb920ceb720cebaceb1cf84ceaccf84ceb1cebeceae20cebccebfcf852e2e2e, 'Y', '2005-10-10 21:10:38'),
(571, 30, 0xce93ceb9ceb1cf84ceaf20ceb5ceafcebdceb1ceb920cf80ceb5cf81ceb9cebfcf81ceb9cf83cebcceadcebdceb5cf8220cebfceb920cebcceadcf81ceb5cf8220ceb4ceb9ceb1cebacebfcf80cf8ecebd3b, 'Y', '2005-10-10 21:10:38'),
(575, 30, 0xce93ceb9ceb1cf84ceaf20cf87cf81ceb5ceb9ceacceb6ceb5cf84ceb1ceb920cebdceb120ceb4cf8ecf83cf8920cf84cebf20656d61696c20cebccebfcf8520cf83cf84cebfcebd20447261676f6e3b, 'Y', '2005-10-10 21:10:38'),
(577, 30, 0xcea0cf8ecf8220cebbceb5ceb9cf84cebfcf85cf81ceb3ceb5ceaf20cf84cebf20ce99ceb1cf80cf89cebdceb9cebacf8c20cf83cf8dcf83cf84ceb7cebcceb12062796f2d796f6d693b, 'Y', '2005-10-10 21:10:38'),
(579, 30, 0xcea0cf8ecf8220cebbceb5ceb9cf84cebfcf85cf81ceb3ceb5ceaf20cf84cebf20ce9aceb1cebdceb1ceb4ceb9cebacf8c20cf83cf8dcf83cf84ceb7cebcceb12062796f2d796f6d693b, 'Y', '2005-10-10 21:10:38'),
(581, 30, 0xcea0cf8ecf8220cebbceb5ceb9cf84cebfcf85cf81ceb3ceb5ceaf20cf84cebf20cf83cf8dcf83cf84ceb7cebcceb120466973636865723b, 'Y', '2005-10-10 21:10:38'),
(591, 30, 0xce9ccf80cebfcf81cf8e20cebdceb120cf80cf81cebfcf83ceb8ceadcf83cf8920cf83cf84cebf20cf87cf81cf8ccebdcebf20cebccebfcf853b, 'Y', '2005-10-10 21:10:38'),
(592, 30, 0xce8ccf87ceb92e, 'N', '2005-10-10 21:10:38'),
(593, 30, 0xce9ccf80cebfcf81cf8e20cebdceb120cf80cf81cebfcf83ceb8ceadcf83cf8920cf83cf84cebf20cf87cf81cf8ccebdcebf20cf84cebfcf8520ceb1cebdcf84ceb9cf80ceaccebbcebfcf8520cebccebfcf853b, 'Y', '2005-10-10 21:10:38'),
(594, 30, 0xce8ccf87ceb92e, 'N', '2005-10-10 21:10:38'),
(595, 30, 0xcea4ceaf20ceb5ceafcebdceb1ceb920cebfceb920ceb4ceb9ceb1cebacebfcf80ceadcf823b, 'Y', '2005-10-10 21:10:38'),
(597, 30, '', 'Y', '2005-12-28 16:20:02'),
(601, 30, '', 'Y', '2005-12-28 16:20:02'),
(605, 30, 0xcea0cf8ecf8220cebccf80cebfcf81cf8e20cebdceb120cf80cf81cebfcf83ceb8ceadcf83cf8920cf83cf87cf8ccebbceb9ceb120cf83cf84cebf20ceb1cf81cf87ceb5ceafcebf205347463b, 'Y', '2005-10-10 21:10:38'),
(623, 30, '', 'N', '2005-12-28 16:20:02'),
(629, 30, 0xcea4ceaf20cf83ceb7cebcceb1ceafcebdceb5ceb920cf84cebf2022cf80cebfcf83cebfcf83cf84cf8c20ceb5cf80ceb9cf84cf85cf87ceafceb1cf822220cebaceaccf80cebfceb9cebfcf8520cf87cf81ceaecf83cf84ceb73b, 'Y', '2005-10-10 21:10:38'),
(643, 30, 0xce9ccf80cebfcf81cf8e20cebdceb120cf87cf81ceb7cf83ceb9cebccebfcf80cebfceb9cf8e2048544d4c20cf83cf84cebfcebd20447261676f6e3b, 'N', '2005-10-10 21:10:38'),
(645, 30, '', 'Y', '2005-12-28 16:20:02'),
(655, 30, '', 'N', '2005-12-28 16:20:02'),
(657, 30, 0xce93cebacf8ccebccf80ceb1cebd, 'Y', '2005-10-10 21:10:38'),
(661, 30, 0xcea4ceaf20ceb5ceafcebdceb1ceb920cf84cebf20cf80cebbceb5cebfcebdceadcebacf84ceb7cebcceb13b, 'Y', '2005-10-10 21:10:38'),
(665, 30, '', 'N', '2005-12-28 16:20:02'),
(667, 30, '', 'N', '2005-12-28 16:20:02'),
(675, 30, 0xce9ccf80cebfcf81cf8e20cebdceb120cebeceb5cebaceb9cebdceaecf83cf8920cebcceb9ceb120cf80ceb1cf81cf84ceafceb4ceb120cf86cebfcf81cf84cf8ecebdcebfcebdcf84ceb1cf8220ceadcebdceb120ceb1cf81cf87ceb5ceafcebf205347463b, 'Y', '2005-10-10 21:10:38'),
(676, 30, 0xcea0cf81cebfcf8220cf84cebf20cf80ceb1cf81cf8ccebd20cf8ccf87ceb92e, 'N', '2005-10-10 21:10:38'),
(688, 30, 0xcea4ceaf20ceb5ceafcebdceb1ceb920cebcceb9ceb120ceb4ceb9cf80cebbceae20cf80ceb1cf81cf84ceafceb4ceb13b, 'Y', '2005-10-10 21:10:38'),
(710, 30, 0xcea0cf8ecf8220cebccf80cebfcf81cf8e20cebdceb120cebcceacceb8cf8920ce93cebacebf3b, 'Y', '2005-10-10 21:10:38'),
(748, 30, 0xce9ccf80cebfcf81cf8e20cebdceb120ceb4ceb9cebfcf81ceb3ceb1cebdcf8ecf83cf8920cebaceaccf80cebfceb9cebf20cf84cebfcf85cf81cebdcebfcf85ceac3b, 'Y', '2005-10-10 21:10:38'),
(967, 30, 0xcea0cebfcf8d20cf84cebfcf80cebfceb8ceb5cf84cebfcf8dcebdcf84ceb1ceb920cebfceb920cf80ceadcf84cf81ceb5cf8220cf80cebbceb5cebfcebdceb5cebacf84ceaecebcceb1cf84cebfcf823b, 'Y', '2005-10-10 21:10:38'),
(987, 30, 0xce95ceafcebcceb1ceb920cebaceb1ceb9cebdcebfcf8dcf81ceb9cebfcf8220cf83cf84cebfcebd20447261676f6e2e20cea4ceaf20ceb1cf81cf87ceb9cebaceae20cebaceb1cf84ceaccf84ceb1cebeceb720cebdceb120ceb4ceb7cebbcf8ecf83cf893b, 'Y', '2005-10-10 21:10:38'),
(989, 30, 0xcea0ceb5ceb9cf81ceacceb6ceb5ceb920ceb1cebd20ceb1cf81cf87ceafcf83cf8920cebcceb520cebbceb1cebdceb8ceb1cf83cebcceadcebdceb720cebaceb1cf84ceaccf84ceb1cebeceb73b, 'Y', '2005-10-10 21:10:38'),
(1006, 30, 0xce95ceafcebdceb1ceb920ceb4ceb9ceb1ceb8ceadcf83ceb9cebccebfcf8220cebf20cebacf8eceb4ceb9cebaceb1cf8220cf84cebfcf8520447261676f6e3b, 'Y', '2005-10-10 21:10:38'),
(1010, 30, 0xcea0cebfceb9ceadcf8220cf80ceb1cf81cf84ceafceb4ceb5cf8220ceb5cf80ceb7cf81ceb5ceacceb6cebfcf85cebd20cf84ceb7cebd20cebaceb1cf84ceaccf84ceb1cebeceae20cebccebfcf853b, 'Y', '2005-10-10 21:10:38'),
(1012, 30, 0xce9ccf80cebfcf81cf8e20cebdceb120ceb3ceafcebdcf8920cebcceb5cf84ceb1cf86cf81ceb1cf83cf84ceaecf8220ceb3ceb9ceb120cf84cebfcebd20447261676f6e3b, 'Y', '2005-10-10 21:10:38'),
(621, 30, 0xce94ceb5ceafcebeceb520cf8ccebbceb5cf8220cf84ceb9cf8220cea3cf85cf87cebdceadcf8220ce95cf81cf89cf84ceaecf83ceb5ceb9cf8220cf83ceb520cebcceb9ceb120cf83ceb5cebbceafceb4ceb1, 'Y', '2005-10-10 21:13:20'),
(178, 30, 0xcea0cebfcebbceb9cf84ceb5ceafceb1, 'Y', '2005-10-14 14:55:42'),
(494, 30, 0xcea3cf84cebfceb9cf87ceb5ceafceb120cf87cf81ceaecf83cf84ceb7, 'Y', '2005-10-14 14:55:42'),
(344, 30, 0xce95ceb3ceb3cf81ceb1cf86ceae, 'Y', '2005-10-14 19:47:23'),
(342, 30, 0xce92ceb1ceb8cebccebfcebbcebfceb3ceb9cebacf8c20ceb4ceb9ceacceb3cf81ceb1cebccebcceb120ceb3ceb9ceb1, 'Y', '2005-10-14 19:47:23'),
(343, 30, 0xcea3cf85ceb3ceb3cebdcf8ecebcceb72c20cf80cebfcebbcf8d20cebbceafceb3ceb120ceb2ceb1ceb8cebccebfcebbcebfceb3ceb7cebcceadcebdceb120cf80ceb1ceb9cf87cebdceafceb4ceb9ceb120ceb3ceb9ceb120ceb4ceb7cebcceb9cebfcf85cf81ceb3ceafceb120ceb4ceb9ceb1ceb3cf81ceaccebccebcceb1cf84cebfcf82, 'Y', '2005-10-14 19:47:23'),
(350, 30, 0xcea4ceb5cebbceb5ceb9cf89cebcceadcebdceb120cf80ceb1ceb9cf87cebdceafceb4ceb9ceb120ceb3ceb9ceb120cf84cebfcebd202573, 'Y', '2005-11-04 20:33:39'),
(351, 30, 0xcea4cf81ceadcf87cebfcebdcf84ceb120cf80ceb1ceb9cf87cebdceafceb4ceb9ceb120ceb3ceb9ceb120cf84cebfcebd202573, 'Y', '2005-11-04 20:33:39'),
(372, 30, '', 'N', '2005-12-28 16:20:02'),
(408, 30, 0xce8acf83cebf20cf80ceb1ceb9cf87cebdceafceb4ceb920cebcceb5206e6967697269, 'Y', '2005-10-14 19:47:23'),
(409, 30, 0xce94ceb9cf80cebbcf8c20cf80ceb1ceb9cf87cebdceafceb4ceb9, 'Y', '2005-10-14 19:47:23'),
(411, 30, 0xcea0cebbceb7cf81cebfcf86cebfcf81ceafceb5cf82, 'Y', '2005-10-14 19:47:23'),
(412, 30, 0xcea3cf87cf8ccebbceb9cebf, 'Y', '2005-10-14 19:47:23'),
(414, 30, 0xcea7cf81cebfcebdceb9cebacf8c20cf8ccf81ceb9cebf, 'Y', '2005-10-14 19:47:23'),
(415, 30, 0x23cea0ceb1ceb9cf87cebdceb9ceb4ceb9cf8ecebd, 'Y', '2005-10-14 19:47:23'),
(421, 30, '', 'Y', '2005-12-28 16:20:02'),
(422, 30, '', 'Y', '2005-12-28 16:20:02'),
(426, 30, 0xcea0ceb1ceafcebacf84ceb7cf82, 'Y', '2005-10-14 19:47:23'),
(427, 30, 0xce91cf81ceb9ceb8cebccf8ccf8220cf80ceb1ceb9cf87cebdceb9ceb4ceb9cf8ecebd, 'Y', '2005-10-14 19:47:23'),
(458, 30, 0xce91ceb9cf87cebcceaccebbcf89cf84cebfceb9, 'Y', '2005-10-14 19:47:23'),
(1032, 4, 0x47726965636869736368, 'Y', '2005-10-19 19:21:10'),
(557, 30, 0xcea0cf89cf8220cebccf80cebfcf81cf8e20cebdceb120cebeceb5cebaceb9cebdceaecf83cf8920cebcceb9ceb120cebdceadceb120cf80ceb1cf81cf84ceafceb4ceb13b, 'Y', '2005-10-31 22:19:39'),
(559, 30, 0xcea0cf89cf8220cf84cebfcf80cebfceb8ceb5cf84cf8e20cf84ceb9cf8220cf80ceadcf84cf81ceb5cf8220cebccebfcf853b, 'Y', '2005-10-31 22:19:39'),
(561, 30, 0xcea0cf89cf8220cebccf80cebfcf81cf8e20cebdceb120ceb4ceb9ceb1ceb3cf81ceaccf88cf8920cebcceb9ceb120cf84cf81ceadcf87cebfcf85cf83ceb120cf80ceb1cf81cf84ceafceb4ceb13b, 'Y', '2005-10-31 22:19:39'),
(563, 30, 0xcea0cf89cf8220cf84ceb5cebbceb5ceb9cf8ecebdcf8920cebcceb9ceb120cf80ceb1cf81cf84ceafceb4ceb13b, 'Y', '2005-10-31 22:19:39'),
(671, 30, 0xce9ccf80cebfcf81cf8e20cebdceb120cf80ceb1ceafcebecf8920cebcceadcf83cf8920656d61696c3b, 'Y', '2005-10-31 22:22:38'),
(673, 30, 0xce9ccf80cebfcf81ceb5ceaf20cebf20447261676f6e20cebdceb120cebcceb520ceb5ceb9ceb4cebfcf80cebfceb9ceaecf83ceb5ceb920cf8ccf84ceb1cebd20ceb5ceafcebdceb1ceb920ceb720cf83ceb5ceb9cf81ceac20cebccebfcf8520cebdceb120cf80ceb1ceafcebecf893b, 'Y', '2005-10-31 22:22:38'),
(625, 30, 0xce94ceb9cebfcf81ceb3ceb1cebdcf8ecebdcebfcebdcf84ceb1ceb920cf84cebfcf85cf81cebdcebfcf85ceac20cf83cf84cebfcebd20447261676f6e3b, 'Y', '2005-10-31 22:26:36'),
(626, 30, 0xcea0cf81cebfcf8220cf84cebf20cf80ceb1cf81cf8ccebd20cf8ccf87ceb92e, 'Y', '2005-10-31 22:26:36'),
(631, 30, 0xcea0cf89cf8220cebccf80cebfcf81cf8e20cebdceb120ceb4ceb9ceb1ceb3cf81ceaccf88cf8920cf84ceb7cebd20cf80ceb1cf81cf84ceafceb4ceb120cebccebfcf8520ceb1cf80cf8c20cf84cebf20ceb4cf89cebcceaccf84ceb9cebf20ceb1cebdceb1cebccebfcebdceaecf823b, 'Y', '2005-10-31 22:26:36'),
(639, 30, 0xcea0cebfceb9cebfcf8220ceb4ceb7cebcceb9cebfcf8dcf81ceb3ceb7cf83ceb520cf84cebfcebd20447261676f6e3b, 'Y', '2005-10-31 22:26:36'),
(529, 30, 0xcea0cebfcf8520cebccf80cebfcf81cf8e20cebdceb120cebcceacceb8cf8920cf80ceb5cf81ceb9cf83cf83cf8ccf84ceb5cf81ceb120ceb3ceb9ceb120cebaceaccf80cebfceb9cebf20cebaceb1cebdcf8ccebdceb13b, 'Y', '2005-10-31 22:32:09'),
(531, 30, 0xcea0cebfceb9cebfceaf20ceb5ceafcebdceb1ceb920cebfceb920ceb2ceb1cf83ceb9cebacebfceaf20cebaceb1cebdcf8ccebdceb5cf8220cf84cebfcf8520ce93cebacebf3b, 'Y', '2005-10-31 22:32:09'),
(533, 30, 0xcea0cebfcf8520cebccf80cebfcf81cf8e20cebdceb120ceb2cf81cf8920ceaccebbcebbceb5cf8220ceb9cf83cf84cebfcf83ceb5cebbceafceb4ceb5cf8220ceb3ceb9ceb120cf84cebf20ce93cebacebf3b, 'Y', '2005-10-31 22:32:09'),
(1016, 30, 0xcea0cebfceb9cebfceaf20cebaceb1cebdcf8ccebdceb5cf8220cf87cf81ceb7cf83ceb9cebccebfcf80cebfceb9cebfcf8dcebdcf84ceb1ceb920cf83cf84cebfcebd20447261676f6e3b, 'Y', '2005-10-31 22:32:09'),
(457, 30, 0xcea0ceafcf83cf89, 'Y', '2005-11-01 18:17:31'),
(315, 30, 0xce91cf80ceaccebdcf84ceb7cf83ceb7, 'Y', '2005-11-02 17:12:37'),
(756, 30, 0xce91cf86ceb3ceb1cebdceb9cf83cf84ceaccebd, 'Y', '2005-11-03 20:15:01'),
(757, 30, 0xce91cebbceb2ceb1cebdceafceb1, 'Y', '2005-11-03 20:15:01'),
(758, 30, 0xce91cebbceb3ceb5cf81ceafceb1, 'Y', '2005-11-03 20:15:01'),
(761, 30, 0xce91cebdcf84ceb1cf81cebacf84ceb9cebaceae, 'Y', '2005-11-03 20:15:01'),
(763, 30, 0xce91cf81ceb3ceb5cebdcf84ceb9cebdceae, 'Y', '2005-11-03 20:15:01'),
(764, 30, 0xce91cf81cebcceb5cebdceafceb1, 'Y', '2005-11-03 20:15:01'),
(765, 30, 0xce91cf85cf83cf84cf81ceb1cebbceafceb1, 'Y', '2005-11-03 20:15:01'),
(766, 30, 0xce91cf85cf83cf84cf81ceafceb1, 'Y', '2005-11-03 20:15:01'),
(772, 30, 0xce9bceb5cf85cebacebfcf81cf89cf83ceafceb1, 'Y', '2005-11-03 20:15:01'),
(773, 30, 0xce92ceadcebbceb3ceb9cebf, 'Y', '2005-11-03 20:15:01'),
(777, 30, 0xce92cebfcebbceb9ceb2ceafceb1, 'Y', '2005-11-03 20:15:01'),
(780, 30, 0xce92cf81ceb1ceb6ceb9cebbceafceb1, 'Y', '2005-11-03 20:15:01'),
(782, 30, 0xce92cebfcf85cebbceb3ceb1cf81ceafceb1, 'Y', '2005-11-03 20:15:01'),
(786, 30, 0xce9aceb1cebcceb5cf81cebfcf8dcebd, 'Y', '2005-11-03 20:15:01'),
(787, 30, 0xce9aceb1cebdceb1ceb4ceaccf82, 'Y', '2005-11-03 20:15:01'),
(791, 30, 0xcea7ceb9cebbceae, 'Y', '2005-11-03 20:15:01'),
(793, 30, 0xce9acebfcebbcebfcebcceb2ceafceb1, 'Y', '2005-11-03 20:15:01'),
(799, 30, 0xce9acf81cebfceb1cf84ceafceb1, 'Y', '2005-11-03 20:15:01'),
(800, 30, 0xce9acebfcf8dceb2ceb1, 'Y', '2005-11-03 20:15:01'),
(802, 30, 0xcea4cf83ceb5cf87ceafceb1, 'Y', '2005-11-03 20:15:01'),
(803, 30, 0xce94ceb1cebdceafceb1, 'Y', '2005-11-03 20:15:01'),
(809, 30, 0xce91ceafceb3cf85cf80cf84cebfcf82, 'Y', '2005-11-03 20:15:01'),
(812, 30, 0xce95cf81cf85ceb8cf81ceadceb1, 'Y', '2005-11-03 20:15:01'),
(813, 30, 0xce95cf83ceb8cebfcebdceafceb1, 'Y', '2005-11-03 20:15:01'),
(814, 30, 0xce91ceb9ceb8ceb9cebfcf80ceafceb1, 'Y', '2005-11-03 20:15:01'),
(816, 30, 0xcea6ceb9cebdcebbceb1cebdceb4ceafceb1, 'Y', '2005-11-03 20:15:01'),
(817, 30, 0xce93ceb1cebbcebbceafceb1, 'Y', '2005-11-03 20:15:01'),
(821, 30, 0xce93ceb5cf81cebcceb1cebdceafceb1, 'Y', '2005-11-03 20:15:01'),
(832, 30, 0xce9fcf85ceb3ceb3ceb1cf81ceafceb1, 'Y', '2005-11-03 20:15:01'),
(834, 30, 0xce99cebdceb4ceafceb1, 'Y', '2005-11-03 20:15:01'),
(835, 30, 0xce99cebdceb4cebfcebdceb7cf83ceafceb1, 'Y', '2005-11-03 20:15:01'),
(836, 30, 0xce99cf81ceaccebd, 'Y', '2005-11-03 20:15:01'),
(837, 30, 0xce99cf81ceacceba, 'Y', '2005-11-03 20:15:01'),
(838, 30, 0xce99cf81cebbceb1cebdceb4ceafceb1, 'Y', '2005-11-03 20:15:01'),
(839, 30, 0xce99cf83cf81ceb1ceaecebb, 'Y', '2005-11-03 20:15:01'),
(840, 30, 0xce99cf84ceb1cebbceafceb1, 'Y', '2005-11-03 20:15:01'),
(843, 30, 0xce99cebfcf81ceb4ceb1cebdceafceb1, 'Y', '2005-11-03 20:15:01'),
(845, 30, 0xce9aceadcebdcf85ceb1, 'Y', '2005-11-03 20:15:01'),
(852, 30, 0xce9bceb5cf84cebfcebdceafceb1, 'Y', '2005-11-03 20:15:01'),
(853, 30, 0xce9bceafceb2ceb1cebdcebfcf82, 'Y', '2005-11-03 20:15:01'),
(858, 30, 0xce9bceb9ceb8cebfcf85ceb1cebdceafceb1, 'Y', '2005-11-03 20:15:01'),
(859, 30, 0xce9bcebfcf85cebeceb5cebcceb2cebfcf8dcf81ceb3cebf, 'Y', '2005-11-03 20:15:01'),
(861, 30, 0xcea0cf81cf8eceb7cebd20ce93ceb9cebfcf85ceb3cebacebfcf83cebbceb1ceb2ceb9cebaceae20ce94ceb7cebccebfcebacf81ceb1cf84ceafceb120cf84ceb7cf8220ce9cceb1cebaceb5ceb4cebfcebdceafceb1cf82, 'Y', '2005-11-03 20:15:01'),
(864, 30, 0xce9cceb1cebbceb1ceb9cf83ceafceb1, 'Y', '2005-11-03 20:15:01'),
(867, 30, 0xce9cceaccebbcf84ceb1, 'Y', '2005-11-03 20:15:01'),
(871, 30, 0xce9cceb5cebeceb9cebacf8c, 'Y', '2005-11-03 20:15:01'),
(882, 30, 0xce9fcebbcebbceb1cebdceb4ceafceb1, 'Y', '2005-11-03 20:15:01'),
(883, 30, 0xce9dceadceb120ce96ceb7cebbceb1cebdceb4ceafceb1, 'Y', '2005-11-03 20:15:01'),
(886, 30, 0xce9dceb9ceb3ceb7cf81ceafceb1, 'Y', '2005-11-03 20:15:01'),
(887, 30, 0xce9dcebfcf81ceb2ceb7ceb3ceafceb1, 'Y', '2005-11-03 20:15:01'),
(889, 30, 0xcea0ceb1cebaceb9cf83cf84ceaccebd, 'Y', '2005-11-03 20:15:01'),
(895, 30, 0xcea0ceb5cf81cebfcf8d, 'Y', '2005-11-03 20:15:01'),
(896, 30, 0xcea6ceb9cebbceb9cf80cf80ceafcebdceb5cf82, 'Y', '2005-11-03 20:15:01'),
(897, 30, 0xcea0cebfcebbcf89cebdceafceb1, 'Y', '2005-11-03 20:15:01'),
(901, 30, 0xcea1cebfcf85cebcceb1cebdceafceb1, 'Y', '2005-11-03 20:15:01'),
(902, 30, 0xcea1cf89cf83ceafceb1, 'Y', '2005-11-03 20:15:01'),
(916, 30, 0xcea3cebbcebfceb2ceb1cebaceafceb1, 'Y', '2005-11-03 20:15:01'),
(917, 30, 0xcea3cebbcebfceb2ceb5cebdceafceb1, 'Y', '2005-11-03 20:15:01'),
(921, 30, 0xce99cf83cf80ceb1cebdceafceb1, 'Y', '2005-11-03 20:15:01'),
(926, 30, 0xcea3cebfcf85ceb7ceb4ceafceb1, 'Y', '2005-11-03 20:15:01'),
(928, 30, 0xcea3cf85cf81ceafceb1, 'Y', '2005-11-03 20:15:01'),
(950, 30, 0xce92ceb9ceb5cf84cebdceaccebc, 'Y', '2005-11-03 20:15:01'),
(739, 30, 0xce88cebdceb1cf81cebeceb720ceb4ceb9ceb1cebacebfcf80cf8ecebd, 'Y', '2005-11-04 19:03:23'),
(960, 30, 0xce95cf80ceb9cebbceadcebecf84ceb520ceb4ceb9ceaccf81cebaceb5ceb9ceb120ceb4ceb9ceb1cebacebfcf80cf8ecebd, 'Y', '2005-11-04 19:03:23'),
(406, 30, 0xcea4cf85cf80ceb9cebacf8c, 'Y', '2005-11-25 18:01:51'),
(407, 30, 0xce91cf81cebccf8cceb6cf89cebd, 'Y', '2005-11-25 18:01:51'),
(416, 30, 0xcea1cebfcebbcf8cceb920cea3ceb1ceb2ceb2ceb1cf84cebfcebacf8dcf81ceb9ceb1cebacebfcf85, 'Y', '2005-11-25 18:01:51'),
(417, 30, 0xcea6ceb1ceafcebdceb5cf84ceb1ceb920ceacceb4ceb5ceb9cebf20ceb3ceb9ceb120cf84ceb7cebd20cf8ecf81ceb12e, 'Y', '2005-11-25 18:01:51'),
(419, 30, 0x257320cebccf8ccebdcebf, 'Y', '2005-11-25 18:01:51'),
(420, 30, 0xce91cf81ceb9ceb8cebccf8ccf8220cf80ceb1ceb9cf87cebdceb9ceb4ceb9cf8ecebd20cf80cf81cebfcf8220cf80cf81cf8ccf83ceb8ceb5cf83ceb7, 'Y', '2005-11-25 18:01:51'),
(424, 30, 0xce91cebd20cebdceb1ceb92c20cebaceb1cf84ceaccf84ceb1cebeceb720cebcceb5cf84ceb1cebecf8d, 'Y', '2005-11-25 18:01:51'),
(425, 30, 0xcea0cf81cf8ccf83ceb8ceb5cf83ceb520cf80ceb1ceb9cf87cebdceafceb4ceb9, 'Y', '2005-11-25 18:01:51'),
(429, 30, 0xcea3ceb2ceaecf83ceb5, 'Y', '2005-11-25 18:01:51'),
(437, 30, 0xce9acf8dcf81ceb9cebfcf8220cf87cf81cf8ccebdcebfcf82, 'Y', '2005-11-25 18:01:51'),
(454, 30, 0xcea4cebfcf80cebfceb8ceb5cf84ceaecf83cf84ceb520cf84ceb9cf8220cf80ceadcf84cf81ceb5cf8220cf80cebbceb5cebfcebdceb5cebacf84ceaecebcceb1cf84cebfcf8221, 'Y', '2005-11-25 18:01:51'),
(455, 30, 0xce95cf80ceb9ceb2ceb5ceb2ceb1ceafcf89cf83ceb720cebaceb1ceb920ceb5cf80cf8ccebcceb5cebdcebf20cf80ceb1ceb9cf87cebdceafceb4ceb9, 'Y', '2005-11-25 18:01:51'),
(456, 30, 0xce95cf80ceb9ceb2ceb5ceb2ceb1ceafcf89cf83ceb720cebaceb1ceb920ceb5cf80ceb9cf83cf84cf81cebfcf86ceae20cf83cf84ceb7cebd20cebacf8dcf81ceb9ceb120cebfceb8cf8ccebdceb7, 'Y', '2005-11-25 18:01:51'),
(1033, 5, 0x556b7261696e69656e, 'Y', '2005-12-18 04:46:27'),
(1033, 4, 0x556b7261696e69736368, 'Y', '2005-12-18 14:46:53'),
(80, 31, 0xd09bd0bed0b3d196d0bd, 'Y', '2005-12-21 23:44:49'),
(81, 31, 0xd09dd0b5d0b2d196d0b4d0bed0bcd0b8d0b9, 'Y', '2005-12-21 23:44:49'),
(82, 31, 0xd0a1d182d0b0d182d183d181, 'Y', '2005-12-20 00:18:50'),
(83, 31, 0xd09ad196d0bcd0bdd0b0d182d0b020d0bed187d196d0bad183d0b2d0b0d0bdd0bdd18f, 'Y', '2005-12-21 23:47:02'),
(84, 31, 0xd086d0bdd184d0bed180d0bcd0b0d186d196d18f20d0bad0bed180d0b8d181d182d183d0b2d0b0d187d0b0, 'Y', '2005-12-21 23:47:02'),
(85, 31, 0xd09fd0bed0b2d196d0b4d0bed0bcd0bbd0b5d0bdd0bdd18f, 'Y', '2005-12-21 23:47:02'),
(86, 31, 0xd09dd0b0d0b4d196d181d0bbd0b0d182d0b820d0bfd0bed0b2d196d0b4d0bed0bcd0bbd0b5d0bdd0bdd18f, 'Y', '2005-12-21 23:47:02'),
(87, 31, 0xd097d0b0d0bfd180d0bed181d0b8d182d0b8, 'Y', '2005-12-21 23:47:02'),
(88, 31, 0xd09ad0bed180d0b8d181d182d183d0b2d0b0d187d196, 'Y', '2005-12-21 23:47:02'),
(89, 31, 0xd086d0b3d180d0b8, 'Y', '2005-12-21 23:47:02'),
(90, 31, 0xd09fd0b5d180d0b5d0bad0bbd0b0d0b4, 'Y', '2005-12-21 23:47:02'),
(91, 31, 0xd0a4d0bed180d183d0bcd0b8, 'Y', '2005-12-21 23:47:02'),
(92, 31, 0xd0a7d0b0d09fd0b8, 'Y', '2005-12-21 23:47:02'),
(93, 31, 0xd09cd0b0d0bfd0b020d181d0b0d0b9d182d183, 'Y', '2005-12-21 23:47:02'),
(94, 31, 0xd094d0bed0bad183d0bcd0b5d0bdd182d0b0d186d196d18f, 'Y', '2005-12-21 23:47:02'),
(95, 31, 0xd0a1d182d0bed180d196d0bdd0bad0b020d181d182d0b2d0bed180d0b5d0bdd0b020d183, 'Y', '2005-12-21 23:47:02'),
(96, 31, 0xd090d0b4d0bcd196d0bd, 'Y', '2005-12-21 23:47:02'),
(97, 31, 0xd092d0b8d185d196d0b4, 'Y', '2005-12-21 23:47:02'),
(98, 31, 0xd0b4d0b5d0bdd18c, 'Y', '2005-12-21 23:47:02'),
(99, 31, 0xd0b4d0bdd196d0b2, 'Y', '2005-12-21 23:47:02'),
(100, 31, 0xd182d0b0, 'Y', '2005-12-21 23:47:02'),
(101, 31, 0xd0b3d0bed0b4d0b8d0bdd0b0, 'Y', '2005-12-21 23:47:02'),
(102, 31, 0xd0b3d0bed0b4d0b8d0bd, 'Y', '2005-12-21 23:47:02'),
(103, 31, 0xd0b1d0b5d0b720d0b1d0bed0b9d0bed0bcd196, 'Y', '2005-12-21 23:48:22'),
(104, 31, 0xd0b7202531247320d0b4d0bed0b4d0b0d182d0bad0bed0b2d0b8d0bcd0b8202532247320d0b7d0b020d185d196d0b4, 'Y', '2005-12-21 23:48:22'),
(106, 31, 0xd0afd0bfd0bed0bdd181d18cd0bad0b520d0b1d0bed0b9d0bed0bcd196, 'Y', '2005-12-21 23:48:22'),
(107, 31, 0xd0bad0b0d0bcd0bdd196, 'Y', '2005-12-21 23:48:22'),
(108, 31, 0xd09ad0b0d0bdd0b0d0b4d181d18cd0bad0b520d0b1d0bed0b9d0bed0bcd196, 'Y', '2005-12-21 23:48:22'),
(132, 31, '', 'Y', '2005-12-19 11:08:28'),
(134, 31, 0xd086d0bc27d18f, 'Y', '2005-12-21 23:48:22'),
(204, 31, 0xd0a0d0b0d0bdd0b3, 'Y', '2006-08-26 14:44:59'),
(205, 31, 0xd0a0d0b5d0b9d182d0b8d0bdd0b3, 'Y', '2006-08-26 14:44:59'),
(309, 31, 0xd09fd180d0b0d0bfd0bed180d0b8, 'Y', '2006-11-28 18:25:14'),
(310, 31, 0xd092d196d0b4, 'Y', '2006-08-26 14:44:59'),
(311, 31, 0xd0a2d0b5d0bcd0b0, 'Y', '2006-08-26 14:44:59'),
(312, 31, 0xd094d0b0d182d0b0, 'Y', '2006-08-26 14:44:59'),
(314, 31, 0xd09dd0bed0b2d0b5, 'Y', '2006-08-26 14:44:59'),
(316, 31, 0xd092d196d0b4d0bfd0bed0b2d196d0b4d18c21, 'Y', '2006-08-26 14:44:59'),
(330, 31, 0xd091d196d0bbd196, 'Y', '2006-08-26 14:44:59'),
(331, 31, 0xd0a7d0bed180d0bdd196, 'Y', '2006-08-26 14:44:59'),
(201, 31, '', 'Y', '2006-11-28 18:25:14'),
(352, 31, '', 'Y', '2006-11-28 18:25:14'),
(359, 31, 0xd09ed0bfd0bed0bdd0b5d0bdd182, 'Y', '2006-08-26 14:44:59'),
(360, 31, 0xd09ad0bed0bbd196d180, 'Y', '2006-08-26 14:44:59'),
(361, 31, 0xd094d0bed188d0bad0b0, 'Y', '2006-08-26 14:44:59'),
(362, 31, 0xd093d0b0d0bdd0b4d196d0bad0b0d0bf, 'Y', '2006-08-26 14:44:59'),
(363, 31, 0xd09ad0bed0bcd196, 'Y', '2006-08-26 14:44:59'),
(364, 31, 0xd0a5d0bed0b4d0b8, 'Y', '2006-08-26 14:44:59'),
(368, 31, 0xd09ed181d182d0b0d0bdd0bdd196d0b920d185d196d0b4, 'N', '2006-08-26 14:44:59'),
(374, 31, 0xd094d196d18ed187d19620d196d0b3d180d0b8, 'Y', '2006-08-26 14:44:59'),
(375, 31, 0xd097d0b0d0bad196d0bdd187d0b5d0bdd0bdd19620d196d0b3d180d0b8, 'Y', '2006-08-26 14:44:59'),
(388, 31, 0xd092d196d0b4d0bad180d0b8d182d0b8d0b920d0b4d0bbd18f20d0bcd0b0d182d187d1833f, 'Y', '2006-08-26 14:44:59'),
(389, 31, 0xd09dd0bed0b2d19620d0bfd0bed0b2d196d0b4d0bed0bcd0bbd0b5d0bdd0bdd18f, 'Y', '2006-08-26 14:44:59'),
(390, 31, 0xd092d0b0d18820d185d196d0b420d0b220d0bdd0b0d181d182d183d0bfd0bdd196d18520d196d0b3d180d0b0d1853a, 'Y', '2006-08-26 14:44:59'),
(391, 31, 0xd09dd0b520d0b7d0bdd0b0d0b9d0b4d0b5d0bdd0be20d196d0b3d0bed180, 'Y', '2006-08-26 14:44:59'),
(460, 31, 0xd0bdd0b0d181d182d183d0bfd0bdd0b020d181d182d0bed180d196d0bdd0bad0b0, 'Y', '2006-08-26 14:44:59'),
(461, 31, 0xd0bfd0bed0bfd0b5d180d0b5d0b4d0bdd18f20d181d182d0bed180d196d0bdd0bad0b0, 'Y', '2006-08-26 14:44:59'),
(462, 31, 0xd094d0bed0b4d0b0d182d0b820d0bad0bed0bbd0bed0bdd0bad183, 'Y', '2006-08-26 14:44:59'),
(715, 31, 0xd0a1d182d0b2d0bed180d0b5d0bdd0be20d0b7d0b0, 'Y', '2006-08-26 14:44:59'),
(5796, 40, 0x4a6f6761646173, 'Y', '2014-04-13 17:47:19'),
(3240, 40, 0x5469706f, 'Y', '2014-04-11 14:09:38'),
(719, 31, 0x257320d0b2d0b8d0b3d180d0b0d0b220d0b7d0b020252e3166, 'Y', '2006-08-26 14:44:59'),
(722, 31, 0xd09fd0b0d0bfd0bad0b0, 'Y', '2006-08-26 14:44:59'),
(732, 31, 0xd097d0b0d0bbd0b8d188d0b8d0bbd0bed181d18c20d0b2d196d0b4d0bfd183d181d182d0bad0b8, 'Y', '2006-08-26 14:44:59'),
(733, 31, 0xd0a320d0b2d196d0b4d0bfd183d181d182d186d196, 'Y', '2006-08-26 14:44:59'),
(215, 31, 0xd0b7d0b0d0bbd0b8d188d0b8d0bbd0bed181d18c, 'Y', '2006-08-26 14:44:59'),
(747, 31, 0xd092d181d19620d0bad0bed0bbd0bed0bdd0bad0b8, 'Y', '2006-08-26 14:44:59'),
(755, 31, 0xd09fd0bed0b2d196d0b4d0bed0bcd0bbd0b5d0bdd0bdd18f20d181d0b5d180d0b2d0b5d180d183, 'Y', '2006-08-26 14:44:59'),
(160, 31, 0xd092d181d182d183d0bf20d0b4d0be20d094d180d0b0d0bad0bed0bdd183, 'Y', '2005-12-27 10:04:34'),
(191, 31, 0xd09fd196d0b4d182d0b2d0b5d180d0b4d196d182d18c20d0bfd0b0d180d0bed0bbd18c, 'Y', '2006-01-26 17:02:13'),
(202, 31, 0xd09fd0bed0b2d0bdd0b520d196d0bce28099d18f, 'Y', '2006-01-27 10:55:17'),
(223, 31, 0xd097d0b0d0b1d183d0bbd0b820d0bfd0b0d180d0bed0bbd18c3f, 'Y', '2006-01-27 10:55:17'),
(240, 31, 0xd094d0bed0bcd196d0b2d0bad0b0, 'Y', '2006-01-27 10:55:17'),
(242, 31, 0xd091d183d0b4d18c2dd0bbd0b0d181d0bad0b02c20d0b7d0b0d180d0b5d194d181d182d180d183d0b9d182d0b5d181d18c20d182d0b020d0b7d196d0b3d180d0b0d0b9d182d0b520d0b4d0b5d0bad196d0bbd18cd0bad0b020d196d0b3d0bed1802e, 'Y', '2006-01-27 10:55:17'),
(243, 31, 0xd0a1d0bfd0bed187d0b0d182d0bad18320d183d0b2d196d0b9d0b4d196d182d18c2e, 'Y', '2006-01-27 10:56:47'),
(244, 31, 0xd094d0bbd18f20d0bed0b3d0bbd18fd0b4d0b8d0bd20d0b2d0b8d0bad0bed180d0b8d181d182d0b0d0b9d182d0b52025732e, 'Y', '2006-01-27 10:56:47'),
(245, 31, 0xd09fd0b0d180d0bed0bbd18c, 'Y', '2006-01-27 10:56:47'),
(246, 31, 0xd09bd0bed0b3d196d0bd, 'Y', '2006-01-27 10:56:47'),
(247, 31, 0xd0a0d0b5d194d181d182d180d0b0d186d196d18f20d0bdd0bed0b2d0bed0b3d0be20d0b0d0bad0b0d183d0bdd182d183, 'Y', '2006-01-27 10:56:47'),
(248, 31, 0xd092d181d182d183d0bf, 'Y', '2006-01-27 10:56:47'),
(252, 31, 0xefbfbdefbfbdefbfbdefbfbdefbfbd20efbfbdefbfbdefbfbdefbfbdefbfbd20efbfbd20efbfbdefbfbdefbfbdefbfbdefbfbdefbfbdefbfbdefbfbdefbfbd20efbfbdefbfbdefbfbdefbfbdefbfbdefbfbdefbfbdefbfbdefbfbdefbfbdefbfbdefbfbdefbfbdefbfbdefbfbdefbfbdefbfbdefbfbdefbfbdefbfbd20efbfbdefbfbdefbfbdefbfbdefbfbdefbfbd20efbfbdefbfbdefbfbdefbfbd21, 'Y', '2005-12-27 10:04:34'),
(344, 31, 0xefbfbdefbfbdefbfbdefbfbdefbfbdefbfbdefbfbdefbfbd, 'Y', '2005-12-27 10:04:34'),
(345, 31, 0xefbfbdefbfbdefbfbdefbfbdefbfbdefbfbd20efbfbdefbfbdefbfbd, 'Y', '2005-12-27 10:04:34'),
(478, 31, 0xefbfbdefbfbdefbfbdefbfbdefbfbd20efbfbdefbfbdefbfbdefbfbdefbfbdefbfbdefbfbdefbfbdefbfbd20efbfbdefbfbdefbfbdefbfbdefbfbd20efbfbdefbfbdefbfbdefbfbdefbfbdefbfbd20efbfbdefbfbd203c6120687265663d226661712e706870223e3c2f613e2c20efbfbdefbfbd20efbfbdefbfbd20efbfbdefbfbdefbfbdefbfbdefbfbd20efbfbdefbfbdefbfbdefbfbd20efbfbdefbfbdefbfbdefbfbdefbfbdefbfbdefbfbdefbfbdefbfbd20efbfbdefbfbdefbfbdefbfbdefbfbdefbfbdefbfbdefbfbd20efbfbdefbfbdefbfbdefbfbdefbfbd20efbfbdefbfbdefbfbdefbfbdefbfbdefbfbdefbfbd2e, 'Y', '2005-12-27 10:04:34'),
(109, 31, 0xc3f0e020e4eee4e0ede021, 'Y', '2005-12-19 12:13:20'),
(225, 31, 0xc2b3e4eceee2e8f2e8f1fc, 'Y', '2005-12-19 12:15:58'),
(226, 31, 0xcff0eeeff3f1f2e8f2e8, 'Y', '2005-12-19 12:16:04'),
(227, 31, 0xc2e8e4e0ebe8f2e820e3f0f3, 'Y', '2005-12-19 12:16:11'),
(229, 31, 0xd0e0f5f3edeeea, 'Y', '2005-12-19 12:18:39'),
(230, 31, 0xc3f0e0, 'Y', '2005-12-19 12:18:44'),
(231, 31, 0xcff0eeeff3f1ea, 'Y', '2005-12-19 12:21:26'),
(232, 31, 0xc2e8e4e0ebe8f2e820e3f0f3, 'Y', '2005-12-19 12:21:32'),
(233, 31, 0xc7f0eee1ebe5edee, 'Y', '2005-12-19 12:29:33'),
(234, 31, 0xc2b3e4edeee2e8f2e820e3f0f3, 'Y', '2005-12-19 12:29:46'),
(235, 31, 0xc7e4e0f7e0, 'Y', '2005-12-19 12:29:57'),
(236, 31, 0xd1eae0f7e0f2fc20736766, 'Y', '2005-12-19 12:30:23'),
(237, 31, 0xcff0eeeff3f1f2e8f2e820e4ebff20ede0f1f2f3efedeebf20e3f0e8, 'Y', '2005-12-19 12:30:47'),
(238, 31, 0xc2e8e4e0ebe8f2e820e7b320f1efe8f1eaf320f1efeef1f2e5f0e5e6e5edfc, 'Y', '2005-12-19 12:30:59'),
(239, 31, 0xc4eee4e0f2e820e4ee20f1efe8f1eaf320f1efeef1f2e5f0e5e6e5edfc, 'Y', '2005-12-19 12:31:10'),
(253, 31, 0xc3f0e020e2e8e4e0ebe5ede021, 'Y', '2005-12-19 12:31:18'),
(254, 31, 0xc3f0e020efeef7e8ede0baf2fcf1ff21, 'Y', '2005-12-19 12:31:37'),
(308, 31, 0xc4ee, 'Y', '2005-12-19 12:31:43'),
(324, 31, 0xc2b3e4efeee2b3f1f2e8, 'Y', '2005-12-19 12:31:52'),
(325, 31, 0xcfeee2b3e4eeecebe5ededff, 'Y', '2005-12-19 12:31:58'),
(342, 31, 0xc3f0e0f4b3ea20f0e5e9f2e8ede3f320e4ebff, 'Y', '2005-12-19 12:32:08'),
(343, 31, 0xc2e8e1e0f7f2e52c20e0ebe520e4f3e6e520ece0ebee20e7b3e3f0e0ede8f520efe0f0f2b3e920e4ebff20efeee1f3e4eee2e820e3f0e0f4b3eaf3, 'Y', '2005-12-19 12:32:30'),
(348, 31, 0xc7e0eab3edf7e5ededb3, 'Y', '2005-12-19 12:33:03'),
(349, 31, 0xd2f0e8e2e0fef7b3, 'Y', '2005-12-19 12:33:12'),
(350, 31, 0xc7e0eab3edf7e5edb320efe0f0f2b3bf202573, 'Y', '2005-12-19 12:33:30'),
(351, 31, 0xd2f0e8e2e0fef7b320efe0f0f2b3bf202573, 'Y', '2005-12-19 12:33:41'),
(366, 31, 0xd0a0d0b5d0b9d182d0b8d0bdd0b3d0bed0b2d0b0d0bdd0be, 'Y', '2006-11-28 18:25:14'),
(370, 31, 0xd0a2d0b0d0ba, 'Y', '2006-08-26 14:44:59'),
(371, 31, 0xd09dd196, 'Y', '2006-08-26 14:44:59'),
(372, 31, '', 'N', '2006-11-28 18:25:14'),
(373, 31, 0xc7e0eff0eef1e8f2e820f6fceee3ee20eaeef0e8f1f2f3e2e0f7e0, 'Y', '2005-12-19 12:37:02'),
(406, 31, 0xd2f0e0e4e8f6b3e9ede8e9, 'Y', '2005-12-19 12:37:47'),
(407, 31, 0xc2ebe0f1ede8e9, 'Y', '2005-12-19 12:39:27'),
(408, 31, 0xcaeee6ede020e3f0e020e720edb3b4b3f0b3, 'Y', '2005-12-19 12:39:50'),
(409, 31, 0xcfeee4e2b3e9ede020e3f0e0, 'Y', '2005-12-19 12:39:57'),
(411, 31, 0xb2edf4eef0ece0f6b3ff, 'Y', '2005-12-19 12:40:23'),
(412, 31, 0xcaeeece5edf2e0f0b3e9, 'Y', '2005-12-19 12:40:29'),
(414, 31, 0xcbb3ecb3f220f7e0f1f3, 'Y', '2005-12-19 12:43:17'),
(415, 31, 0x23cfe0f0f2b3bf, 'Y', '2005-12-19 12:43:58'),
(416, 31, 0xd7e0f120efee20e2e8f5b3e4ede8ec, 'Y', '2005-12-19 13:28:14'),
(417, 31, 0xc7e4e0baf2fcf1ff2c20e7e2b3ebfcede8f2f1ff20f7e5f0e5e720eceeece5edf22e, 'Y', '2005-12-19 13:28:59'),
(419, 31, 0xd2b3ebfceae8202573, 'Y', '2005-12-19 13:29:16'),
(420, 31, 0xcab3ebfceab3f1f2fc20e4eee4e0e2e0baece8f520b3e3eef0, 'Y', '2005-12-19 13:29:29'),
(421, 31, 0xe4e0ed, 'Y', '2005-12-19 13:29:40'),
(422, 31, 0xeafe, 'Y', '2005-12-19 13:29:40'),
(423, 31, 0xceefeeede5edf220e720f0e5e9f2e8ede3eeec, 'Y', '2005-12-19 13:30:09'),
(424, 31, 0xdfeaf9ee20f2e0ea2c20f2ee20f0e5e9f2e8ede320e220ece5e6e0f5, 'Y', '2005-12-19 13:30:23'),
(425, 31, 0xc4eee4e0f2e820c3f0f3, 'Y', '2005-12-19 13:30:30'),
(426, 31, 0xc3f0e0e2e5f6fc, 'Y', '2005-12-19 13:30:37'),
(427, 31, 0xcab3ebfceab3f1f2fc20b3e3eef0, 'Y', '2005-12-19 13:30:48'),
(428, 31, 0xd7e0f1e820e9e4f3f2fc20efee20e2e8f5b3e4ede8ec, 'Y', '2005-12-19 13:31:00'),
(429, 31, 0xc2e8e4e0ebe8f2e8, 'Y', '2005-12-19 13:31:06'),
(430, 31, 0xcff0e8bae4ede0f2e8f1fc, 'Y', '2005-12-19 13:31:15'),
(437, 31, 0xc3eeebeee2ede8e920f7e0f1, 'Y', '2005-12-19 13:31:21'),
(454, 31, 0xd0eee7ecb3f1f2e8f2fc20f1e2eebf20e3e0ede4e8eae0efedb320eae0ecedb321, 'Y', '2005-12-19 14:12:20'),
(455, 31, 0xcfeef5eee4e8f2e820f2e020efe5f0e5e9f2e820e4ee20ede0f1f2f3efedeebf20efe0f0f2b3bf, 'Y', '2005-12-19 14:14:38'),
(456, 31, 0xcfeef5eee4e8f2e820f2e020efe5f0e5e9f2e820e4ee20e2b3eaede020f1f2e0f2f3f1f3, 'Y', '2005-12-19 14:14:38'),
(457, 31, 0xcfe5f0e5f5eee4e8f2e8, 'Y', '2005-12-19 14:26:38'),
(458, 31, 0xc227ffe7edb3, 'Y', '2005-12-19 14:33:00'),
(484, 31, 0xd1b3f7, 'Y', '2005-12-19 14:40:03'),
(485, 31, 0xcbfef2, 'Y', '2005-12-19 14:40:03'),
(486, 31, 0xcae2b3, 'Y', '2005-12-19 14:40:03'),
(487, 31, 0xd2f0e0, 'Y', '2005-12-19 14:40:03'),
(488, 31, 0xd7e5f0, 'Y', '2005-12-19 14:40:03'),
(489, 31, 0xd1e5f0, 'Y', '2005-12-19 14:40:03'),
(490, 31, 0xc2e5f0, 'Y', '2005-12-19 14:40:03');
INSERT INTO `Translations` (`Original_ID`, `Language_ID`, `Text`, `Translated`, `Updated`) VALUES
(491, 31, 0xc6eee2, 'Y', '2005-12-19 14:40:03'),
(492, 31, 0xc3f0f3, 'Y', '2005-12-19 14:40:03'),
(2234, 7, 0x4e4f56c9, 'Y', '2016-07-20 16:22:45'),
(495, 31, 0xc1e5f0, 'Y', '2005-12-19 14:40:38'),
(496, 31, 0xcbe8ef, 'Y', '2005-12-19 14:40:38'),
(497, 31, 0xcbe8f1, 'Y', '2005-12-19 14:40:38'),
(498, 31, 0xc2b3e4, 'Y', '2005-12-19 14:46:25'),
(499, 31, 0xc4ee, 'Y', '2005-12-19 14:46:25'),
(997, 10, '', 'Y', '2005-12-20 11:07:01'),
(998, 10, '', 'Y', '2005-12-20 11:07:01'),
(1003, 10, '', 'Y', '2005-12-20 11:07:01'),
(1015, 10, '', 'Y', '2005-12-20 11:07:01'),
(1018, 10, '', 'Y', '2005-12-20 11:07:01'),
(1023, 10, '', 'Y', '2005-12-20 11:07:01'),
(1028, 10, '', 'Y', '2005-12-20 11:07:01'),
(5795, 40, 0x4a6f676f73, 'Y', '2014-04-13 17:47:19'),
(3185, 40, 0x53657520766f746f, 'Y', '2014-04-11 14:09:38'),
(719, 10, 0x257320252e316620c4bfcaa4, 'Y', '2007-02-25 08:18:27'),
(722, 10, 0xd7cac1cfbcd0, 'Y', '2007-02-25 08:18:27'),
(732, 10, 0xbcd9c6da, 'Y', '2007-02-25 08:10:42'),
(733, 10, 0xd0ddbcd9, 'Y', '2009-05-25 05:55:00'),
(755, 10, 0xcfb5cdb3, 'Y', '2007-02-25 08:10:42'),
(724, 10, 0xc9beb3fdb1eacabed0c5bcfe, 'Y', '2007-05-30 12:08:05'),
(740, 10, 0xc8abcad5b5bd, 'Y', '2007-05-30 12:08:05'),
(726, 10, 0xb1e0bcadd0c5cfe4, 'Y', '2007-05-30 12:08:05'),
(743, 10, 0xd2d1bcc4b3f6, 'Y', '2007-05-30 12:08:05'),
(745, 10, 0xd2c6d6c1d7cac1cfbcd0, 'Y', '2007-05-30 12:08:05'),
(746, 10, 0xd7cac1cfbcd0c3fbb3c6, 'Y', '2007-05-30 12:08:05'),
(731, 10, 0xb1e0bcadd0c5cfe4, 'Y', '2007-05-30 12:22:26'),
(750, 10, '', 'Y', '2005-12-20 11:15:53'),
(954, 10, '', 'Y', '2005-12-20 11:15:53'),
(955, 10, 0xbcd9c6da, 'Y', '2007-05-30 12:22:26'),
(958, 10, 0xd4f6bcd3, 'Y', '2007-05-30 12:22:26'),
(959, 10, 0xc9beb3fd, 'Y', '2012-01-08 23:39:30'),
(960, 10, 0xd1a1d4f1bcd9c6dacab1bce4, 'Y', '2007-05-30 12:22:26'),
(1014, 10, '', 'Y', '2007-05-30 12:22:26'),
(1029, 10, '', 'Y', '2007-05-30 12:22:26'),
(962, 10, 0xbcd9c6dad3e4bfeca3a1, 'Y', '2007-05-30 12:22:26'),
(1030, 10, '', 'Y', '2005-12-20 11:15:53'),
(1031, 10, '', 'Y', '2005-12-20 11:15:53'),
(1032, 10, '', 'Y', '2005-12-20 11:15:53'),
(1033, 10, '', 'Y', '2005-12-20 11:15:53'),
(727, 10, 0xb6d4bed6c9e8b6a82573c1edd2e92573, 'Y', '2007-05-30 12:08:05'),
(956, 10, 0xb1a7c7b8a3acc4bfc7b0c4e3b2bbc4dcb8c4b1e4bcd9c6dacab1bce4, 'Y', '2007-05-30 12:22:26'),
(1067, 10, 0xc4b8d3ef, 'Y', '2007-05-30 12:22:26'),
(957, 10, 0xbcd9c6dacab1bce4b8c4b1e4c1cba3a1, 'Y', '2007-05-30 12:22:26'),
(1035, 10, 0xd6d0cec428bcf2cce529287574662d3829, 'Y', '2007-05-30 12:22:26'),
(705, 10, 0x53616e72656e736569a3bab3a3bcfbb5c4bfaabed6a3acc6e5cad6d5bcbeddd2bbb1dfb5c4c8fdb8f6d0c7cebba1a3, 'N', '2007-05-30 11:27:37'),
(706, 10, 0xd5f7d7d3, 'N', '2007-05-30 11:27:37'),
(707, 10, 0x53686963686fa3bac8d5b1becea7c6e5caf5d3ef203c6120687265663d222f70686f72756d2f726561642e7068703f663d3326693d31393626743d313936223ed5f7d7d33c2f613ea1a3, 'N', '2007-05-30 11:27:37'),
(708, 10, 0xc6e5c5ccb4f3d0a1cac7b7f1bbe1d3b0cfecc6c0b5c8a3bf, 'Y', '2007-05-30 11:27:37'),
(709, 10, 0x313920c2b7c6e5bed6b6d4c6c0b5c8d3b0cfecd7eeb4f3a1a30d0ab6fec5cc20313320c2b7b6d4bed6b5c8d3dad2bbc5cc20313920c2b7b6d4bed6a1a30d0ab6fec5cc203920c2b7b6d4bed6b5c8d3dad2bbc5cc20313320c2b7b6d4bed6a1a3, 'N', '2007-05-30 11:27:37'),
(711, 10, 0xc7ebb2ceb9db203c6120687265663d22687474703a2f2f706c6179676f2e746f2f696e7465726163746976652f696e6465782e68746d6c22207461726765743d6e65773ebdbbbba5cabdd1a7cea7c6e53c2f613e20d2d4bcb0d3a2b9facea7c6e5d0adbbe1b5c4203c6120687265663d22687474703a2f2f7777772e62726974676f2e6f72672f696e74726f2f696e74726f2e68746d6c22207461726765743d6e65773ecea7c6e5bde9c9dc3c2f613ea1a3, 'Y', '2007-05-30 11:27:37'),
(710, 10, 0xced2bfc9d2d4d4dac4c4c0efd1a7cea7c6e5a3bf, 'Y', '2007-05-30 11:27:37'),
(712, 10, 0xc1fad6aeb39eb5c4c6c0b5c8cfb5cdb3c8e7baced4cbd7f7a3bf, 'N', '2007-05-30 11:27:37'),
(713, 10, 0x3c493ed3d0bcb8cebbd7e3d6c7b6e0c4b1b5c4c8cbd7d4d4b8d6d8d0b4d5e2b6cececab4f0a1a3d5e2b6d4d3da203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f75736572696e666f2e7068703f7569643d3933223eb1becec4d7f7d5df3c2f613e20cac7d2bbb4f3b0efd6faa3acd2f2ceaaa3a8d3d0c8cbd4f8beadd6b8b3f6a3a9cbfbb5c4c4b8d3efb2bbcac7d3a2d3efa3accfc8c7b0cbfbcad4cdbccbb5c3f7c1fad6aeb39ec6c0b5c8cfb5cdb3a3acbde1b9fbb6bcb2d2b2bbc8ccb6c3a1a30d0a0d0abadcbfecbecdd3d0c1cba3a1d6bbd2aab5c8cbfbc3c7d0b4bac32e2e2e3c2f493e, 'N', '2007-05-30 11:27:37'),
(748, 10, 0xced2c4dcb2bbc4dcd6f7b0eccea7c6e5b1c8c8fca3bf, 'Y', '2007-05-30 11:27:37'),
(749, 10, 0xbadcbbb6d3adc4fac0b4d6f7b0eccea7c6e5b1c8c8fca1a3d2aad0fbb2bcb1c8c8fccfb8bddaa3acc7ebcab9d3c3a3a8bbf2b9dbbfb4a3a93c6120687265663d222f70686f72756d2f6c6973742e7068703f663d34223ec1fad6aeb39ec2dbccb33c2f613ea1a3c1fad6aeb39ebbe1b0efd6fac4fad0fbb4abb1c8c8fca3acd4dab3a3bcfbcecacce2d6d0d4f6bcd3cfe0b9d8c1acbde1a1a3, 'Y', '2007-10-01 09:24:54'),
(751, 10, 0xc8e7baced4dab1c8c8fcbde1caf8cab1d2c6b3fdcbc0d7d3a3bf, 'Y', '2007-05-30 11:27:37'),
(752, 10, 0xcbabb7bdb6bcd0e9cad6baf3a3acb5e3d1a1c6e5d7d3c0b4b8c4b1e4cbc0bbeea3acd2d4b4cbd2c6b3fdcbc0d7d3a1a3badac9abd3ebb0d7c9abd0a1b7bdbfe9cfd4cabecbabb7bdb5c4d5bcb5d8a1a30d0a0d0acbabb7bdb1d8d0ebb6bccdacd2e2cbc0d7d3d3ebd5bcb5d8a1a3cdacd2e2baf3a3acb5e3d1a1c6e5c5cccfc2b7bdb5c422cdeab3c922a1a30d0a0d0ac8e7b9fbd3d0d2bbb7bdb2bbcdacd2e2a3acbecdb5e3d1a122bcccd0f8b6d4bed622a3acb6e0cfc2bcb8cad6c0b4bde2bef6d2c9cecaa1a3c1edd2bbd6d6b7bdcabdcac7bcc4d0c5b8f8b6d4cad6c0b4ccd6c2dba3acbbf2b5bd203c6120687265663d2270686f72756d2f6c6973742e7068703f663d35223ecea7c6e5c2dbccb33c2f613ea1a3, 'Y', '2007-05-30 11:27:37'),
(753, 10, 0xb6d4bed6bde1caf8cab1b5c4baecc9abd0a1b7bdbfe9cac7cab2e7dba3bf, 'N', '2007-05-30 11:27:37'),
(754, 10, 0xbaecc9abd0a1b7bdbfe9cac7c1fad6aeb39ecedeb7a8c5d0b6cfb8c3bfd5cac7badab7bdbbf2b0d7b7bdb5c4b5d8a1a3bfc9c4dcb5c4d4add2f2d3d0a3ba0d0a3c756c3e0d0a3c6c693ec6e4d6d0bbb9d3d0b6d4cad6b5c4d7d3c9d0ceb4b1bbb1eacabe22cbc0d7d322a1a3c7ebb5e3d1a1b1eacabec4c7d0a9d7d3ceaa22cbc0d7d322a1a33c2f6c693e0d0a0d0a3c6c693eb0d7b7bdbbf2badab7bdb5c4b1dfbde7c9d0ceb4c8b7b6a8a1a3d4dac8cbc0e0c6e5cad6d1dbd6d0d2b2d0edbadcc3f7c8b7a3acb5abcac7c1fad6aeb39ebfc9c4dcc4d1d2d4c5d0b6cfcac7cbadb5c4d5bcb5d8a1a3c7ebb5e3d1a1c6e5c5cccfc2b7bdb5c422bcccd0f8b6d4bed622a3acb6e0cfc2bcb8cad6c0b4c8b7b6a8b1dfbde7a1a33c2f6c693e0d0a0d0a3c6c693ed5e2cac7203c6120687265663d226661712e7068703f726561643d74266361743d3323456e747279313031223eb9b2bbee3c2f613e20b5c4d7b4ccaca1a3c7ebb5e3d1a1c8c3b9b2bbeed6d0b5c4baecc9abb7bdbfe9b1e4b3c9203c6120687265663d226661712e7068703f726561643d74266361743d3323456e747279313135223eb5a5b9d93c2f613ea1a3c1fad6aeb39ebbe1d2d4c2ccc9abd0a1b7bdbfe9c0b4b1edcabea1a3b4cbb9a6c4dcbfc9d2d4bde2bef6b9b2bbeeb5c4cecacce2a3acb5c3b5bdd5fdc8b7b5c4b6d4bed6bde1b9fba1a3cfeac7e9c7ebbfb4203c6120687265663d2270686f72756d2f726561642e7068703f663d3226693d38343326743d383433223eb4cbd6f7cce23c2f613e2e3c2f6c693e0d0a3c2f756c3e, 'N', '2007-05-30 11:27:37'),
(963, 10, 0xb4fdbed6cad2b5c4baecc9abb1b3beb0cac7cab2e7dba3bf, 'Y', '2007-05-30 11:27:37'),
(964, 10, 0xd4da22b6d4cad6b5c8bcb622c0b8b5c4b5adbaecc9abb1b3beb0cac7d6b8c4fac4bfc7b0b5c4b5c8bcb6b2bbbacfb8c3b6d4bed6a1a3c4facedeb7a8bcd3c8ebb8c3b6d4bed6a1a3, 'N', '2007-05-30 11:27:37'),
(967, 10, 0xc8c3d7d3d2aab7c5d4dacab2e7dbb5d8b7bda3bf, 'Y', '2007-05-30 11:27:37'),
(971, 10, 0xc8e7baceb1a8b8e6b3ccd0f2d0a1c3abb2a1a3bf, 'N', '2007-05-30 11:27:37'),
(973, 10, 0xc8e7baceb5c7c8ebb1c8bdcfbfeccbd9a3bf, 'Y', '2007-05-30 11:27:37'),
(974, 10, 0xc4fabfc9d2d4b2bbd3c3c3bfb4ceb6bccae4c8ebd5cabac5d3ebc3dcc2eba3acb0d1d5cabac5d3ebc3dcc2ebb7c5d4da55524cb1bec9eda1a3d2b2becdcac7cbb5a3acbdabe4afc0c0c6f7d6b8cff2203c753e687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f6c6f67696e2e7068703f7573657269643d3c623e7468652d757365722d69643c2f623e267061737377643d3c623e7468652d70617373776f72643c2f623e3c2f753ea1a30d0a0d0ac7ebd0a1d0c4a3acc3dcc2ebd2d4cec4d7d6b7bdcabdb4a2b4e6d3d0b0b2c8abb7e7cfd5a1a3c7ebb1f0b7a2cbcdc4fab5c4b5c7c8eb55524cbbf2d4dab9abd3c3bcc6cbe3bbfab4a2b4e6ceaacae9c7a9a1a3, 'Y', '2007-05-30 11:27:37'),
(975, 10, 0xc8e7baceb5c7c8ebced2b5c4d5cabac5a3bf, 'Y', '2007-05-30 11:27:37'),
(976, 10, 0xb5c7c8eb203c6120687265663d222f22207461726765743d225f626c616e6b223ec1fad6aeb39ed6f7d2b33c2f613ea3accae4c8ebc4fab5c4d5cabac5d3ebc3dcc2eba1a344475320bbe1b4b4d4ecd2bbb8f620636f6f6b696520b4e6d4dac4fab5c4bcc6cbe3bbfaa1a3d5e2b8f620636f6f6b696520bfc9d2d4c8c3c4fab1a3b3d6b5c7c8eb20333020cceca1a3, 'Y', '2007-05-30 11:27:37'),
(983, 10, 0xd0c5cfe4d7cac1cfbcd0cac7cab2e7dba3bf, 'Y', '2007-05-30 11:27:37'),
(984, 10, 0xd0c5cfe4d7cac1cfbcd0bfc9d2d4b8f9beddc4fab5c4d0e8d2aac0b4d7e9d6afd1b6cfa2a1a3c4fabfc9d2d4cbe6d2e2d2c6b6afd1b6cfa2b5bdb2bbcdacd7cac1cfbcd0a1a30d0a0d0ac1fad6aeb39ecce1b9a9d2d4cfc2b5c4c4dabda8d7cac1cfbcd0a3ba3c756c3e0d0a3c6c693e3c623ec8abcad5b5bd3c2f623ea3bacbf9d3d0d2d1bdd3cad5d1b6cfa2a1a30d0a3c6c693e3c623ed6f7d0c5cfe43c2f623ea3bad2d1d4c4b6c1b5c4d2d1bdd3cad5d1b6cfa2a1a30d0a3c6c693e3c623ed0c23c2f623ea3baceb4b6c1b5c4d2d1bdd3cad5d1b6cfa2a1a30d0a3c6c693e3c623ebbd8b8b4a3a13c2f623ea3bad0e8d2aabbd8b8b4b5c4d1b6cfa2a1a30d0a3c6c693e3c623ec0acbbf8cdb03c2f623ea3bab1bbb1eacabec9beb3fdb5c4d1b6cfa2a1a30d0a3c6c693e3c623ed2d1bcc4b3f63c2f623ea3bad2d1cbcdb3f6b5c4d1b6cfa2a1a30d0a3c2f756c3e, 'Y', '2007-05-30 11:27:37'),
(985, 10, 0xc8e7baced4f6bcd3bbf2d2c6b3fdcfeec4bfa3bf, 'Y', '2007-05-30 11:27:37'),
(986, 10, 0xd5e2cac7b9d8d3da22c4bfc7b0b6d4bed622a3ac22d2d1bde1caf8b6d4bed622d3eb22bdf8d0d0d6d0b6d4bed622b5c4c6e5bed6cfd4cabecfeec4bfa1a30d0a0d0ad2aad4f6bcd3cfeec4bfa3acb4d3b8c3d2b3cfc2b7bdb5c4c0adc8a1cabdc7e5b5a5d1a1c8a1c4facfebd2aab5c4cfeec4bfa3acc8bbbaf3b5e3d1a1c5d4b1dfb5c422d4f6bcd3cfeec4bf22b0b4c5a5a1a30d0a0d0ad2aad2c6b3fdcfeec4bfa3acb5e3d1a1cfeec4bfb1eacce2c5d4b1dfb5c4baecc9ab78a1a3, 'N', '2007-05-30 11:27:37'),
(715, 10, 0xcdf8d2b3cab1bce4, 'Y', '2007-02-25 08:18:27'),
(747, 10, 0xcbf9d3d0cfeec4bf, 'Y', '2007-02-25 08:18:27'),
(730, 10, 0xb1e0bcadbcd9c6da, 'Y', '2007-05-30 14:11:50'),
(714, 10, 0xb1a7c7b8a3acd5d2b2bbb5bdb8c3d1b6cfa2d7cac1cfbcd0a1a3, 'Y', '2012-03-11 05:57:32'),
(1923, 8, 0xb56ea44ab074c342, 'Y', '2012-05-08 19:13:58'),
(701, 10, 0x48616e65a3bac2e4d7d3d0b1d1b9b9fdb6d4cad6b5c4d2bbbfc5d7d3bbf2d2bbb4aed7d3a1a3, 'N', '2007-05-30 11:27:37'),
(702, 10, 0xc3c5b3d4, 'N', '2007-05-30 11:27:37'),
(968, 10, 0xb8f9beddd6d0b9facea7c6e5b9e6d4f2a3acc8c3d7d3cebbd6c3bfc9d2d4d7d4d3c9bef6b6a8a1a30d0ab8f9beddc8d5b1becea7c6e5b9e6d4f2a3acc8c3d7d3cebbd6c3d3d0bcc8b6a8b7bdcabda3a8d0c7cebbc8c3d7d3a3a9a1a3c8e7b9fbc3bbd3d0cac2cfc8cdacd2e2a3acb4f3b6e0cafdc6e5cad6c6dab4fdbadad7d3b2c9c8a1c8d5b1becabdb9e6d4f2a1a30d0a3c756c3e0d0a3c6c693ec8c3203120d7d3a3babdcfc8f5b5c4d2bbb7bdb3d6badaa3a8b7d6cfc8a3a9a3accedeccf9c4bfa1a30d0a3c6c693ec8c3203220d7d3a3ba4434202b205131360d0a3c6c693ec8c3203320d7d3a3ba4434202b205134202b205131360d0a3c6c693ec8c3203420d7d3a3ba4434202b205134202b20443136202b205131360d0a3c6c693ec8c3203520d7d3a3ba4434202b205134202b204b3130202b20443136202b205131360d0a3c6c693ec8c3203620d7d3a3ba4434202b205134202b20443130202b20513130202b20443136202b205131360d0a3c6c693ec8c3203720d7d3a3ba4434202b205134202b20443130202b204b3130202b20513130202b20443136202b205131360d0a3c6c693ec8c3203820d7d3a3ba4434202b204b34202b205134202b20443130202b20513130202b20443136202b204b3136202b205131360d0a3c6c693ec8c3203920d7d3a3ba4434202b204b34202b205134202b20443130202b204b3130202b20513130202b20443136202b204b3136202b20513136203c2f756c3e, 'N', '2007-05-30 11:27:37'),
(702, 23, 0xe38192e3819f, 'N', '2006-03-08 03:36:09'),
(428, 30, 0xce9f20cf87cf81cf8ccebdcebfcf822022cf84cf81ceadcf87ceb5ceb92220cebaceb1ceb920cf84ceb120cf83ceb1ceb2ceb2ceb1cf84cebfcebacf8dcf81ceb9ceb1cebaceb1, 'Y', '2005-12-28 16:13:21'),
(436, 30, 0xcebcceaecebdceb5cf82, 'Y', '2005-12-28 16:13:21'),
(439, 30, 0xcebcceb5, 'Y', '2005-12-28 16:13:21'),
(442, 30, 0xceb3ceb9ceb1, 'Y', '2005-12-28 16:13:21'),
(443, 30, 0xcf87cf81cf8ccebdcebfcf822046697363686572, 'Y', '2005-12-28 16:13:21'),
(447, 30, '', 'Y', '2005-12-28 16:20:02'),
(449, 30, 0xce93ceb9ceb1cf80cf89cebdceadceb6ceb9cebacebf, 'Y', '2005-12-28 16:13:21'),
(451, 30, 0xce9aceb1cebdceb1ceb4ceadceb6ceb9cebacebf, 'Y', '2005-12-28 16:13:21'),
(452, 30, 0x257320ceb1cebdceac20257320cf80ceadcf84cf81ceb5cf82, 'Y', '2005-12-28 16:13:21'),
(453, 30, 0xceadcebecf84cf81ceb120ceb1cebdceac20cebaceafcebdceb7cf83ceb7, 'Y', '2005-12-28 16:13:21'),
(726, 30, 0xce91cebbcebbceb1ceb3ceae20cf86ceb1cebaceadcebbcf89cebd, 'Y', '2005-12-28 16:13:21'),
(423, 30, 0xce91cf80ceb1ceb9cf84ceb5ceafcf84ceb1ceb920ceb2ceb1ceb8cebccebfcebbcebfceb3ceb7cebcceadcebdcebfcf8220ceb1cebdcf84ceafcf80ceb1cebbcebfcf82, 'Y', '2005-12-28 16:16:22'),
(618, 30, 0xce95cebbceaccf87ceb9cf83cf84ceb720ceb2ceb1ceb8cebccebfcebbcebfceb3ceafceb1, 'Y', '2005-12-28 16:16:22'),
(619, 30, 0xce9cceadceb3ceb9cf83cf84ceb720ceb2ceb1ceb8cebccebfcebbcebfceb3ceafceb1, 'Y', '2005-12-28 16:16:22'),
(620, 30, 0xce92ceb1ceb8cebccebfcebbcebfceb3ceb9cebaceae20ceb4ceb9ceb1cf86cebfcf81ceac, 'Y', '2005-12-28 16:16:22'),
(307, 30, 0xce9bceafcf83cf84ceb120cebccf85cebdceb7cebcceaccf84cf89cebd, 'Y', '2005-12-28 16:16:22'),
(366, 30, 0xce92ceb1ceb8cebccebfcebbcebfceb3ceb7cebcceadcebdcebf, 'Y', '2005-12-28 16:18:32'),
(741, 30, 0xce9aceb5cebdcf84cf81ceb9cebacf8ccf82, 'Y', '2005-12-28 16:20:02'),
(742, 30, 0xcea3cebacebfcf85cf80ceafceb4ceb9ceb1, 'Y', '2005-12-28 16:18:32'),
(745, 30, 0xce9cceb5cf84ceb1cebaceafcebdceb7cf83ceb720cf83ceb520cf86ceaccebaceb5cebbcebf, 'Y', '2005-12-28 16:18:32'),
(1033, 23, 0xe382a6e382afe383a9e382a4e3838ae8aa9e, 'Y', '2006-01-05 20:49:55'),
(700, 23, 0xe381afe381ad, 'N', '2006-01-05 22:08:18'),
(1033, 24, 0x556b72616a696e736bc3bd, 'Y', '2006-01-16 22:31:43'),
(701, 23, 0xe79bb8e6898be381aee4b8a6e38293e381a7e38182e3828be79fb3e381aee9a0ade381abe381aee6969ce38281e381abe68993e381a4e4ba8be381a7e38199e38082, 'N', '2006-01-23 06:28:14'),
(1032, 2, 0x477265736b, 'Y', '2006-03-08 23:16:15'),
(1033, 2, 0x556b7261696e736b, 'Y', '2006-03-08 23:16:15'),
(80, 32, 0x436f6e6e656374617420636f6d2061, 'Y', '2006-03-15 11:17:54'),
(81, 32, 0x4e6f20636f6e6e6563746174, 'Y', '2006-03-15 11:17:54'),
(83, 32, 0x53616c61206427657370657261, 'Y', '2006-03-14 19:52:37'),
(84, 32, 0x496e666f726d616369c3b3206427757375617269, 'Y', '2006-03-14 19:52:37'),
(85, 32, 0x4d6973736174676573, 'Y', '2006-03-15 11:09:24'),
(86, 32, 0x456e76696120756e206d69737361746765, 'Y', '2006-03-14 20:10:36'),
(87, 32, 0x436f6e76696461, 'Y', '2006-03-15 11:09:24'),
(88, 32, 0x55737561726973, 'Y', '2006-03-15 10:49:39'),
(89, 32, 0x5061727469646573, 'Y', '2006-03-15 10:49:39'),
(90, 32, 0x5472616475656978, 'Y', '2006-03-15 11:09:24'),
(91, 32, 0x46c3b272756d73, 'Y', '2006-03-15 11:17:54'),
(92, 32, 0x464151, 'Y', '2006-03-15 11:17:54'),
(93, 32, 0x4d6170612064656c206c6c6f63, 'Y', '2006-03-15 11:09:24'),
(94, 32, 0x446f63756d656e7473, 'Y', '2006-03-15 11:09:24'),
(97, 32, 0x446573636f6e6e6563746172, 'Y', '2006-03-15 11:17:54'),
(134, 32, 0x4e6f6d, 'Y', '2006-03-14 19:52:37'),
(201, 32, 0x4944757375617269, 'Y', '2006-03-15 17:40:58'),
(95, 32, 0x50c3a067696e612063726561646120656c, 'Y', '2006-03-15 11:17:54'),
(96, 32, 0x41646d696e6973747261646f72, 'Y', '2006-03-15 11:17:54'),
(98, 32, 0x646961, 'Y', '2006-03-13 16:29:46'),
(99, 32, 0x64696573, 'Y', '2006-03-13 16:29:46'),
(100, 32, 0x69, 'Y', '2006-03-13 16:29:46'),
(101, 32, 0x686f7261, 'Y', '2006-03-13 16:29:46'),
(102, 32, 0x686f726573, 'Y', '2006-03-13 16:29:46'),
(103, 32, 0x73656e73652062796f796f6d69, 'Y', '2006-03-13 16:29:46'),
(104, 32, 0x616d622025206465206dc3a97320706572206a7567616461, 'Y', '2006-03-13 16:29:46'),
(106, 32, 0x62796f796f6d69206a61706f6ec3a873, 'Y', '2006-03-13 16:29:46'),
(107, 32, 0x706564726573, 'Y', '2006-03-13 16:29:46'),
(108, 32, 0x62796f796f6d692063616e6164656e63, 'Y', '2006-03-13 16:29:46'),
(310, 32, 0x4465, 'Y', '2006-03-14 19:52:37'),
(311, 32, 0x54656d61, 'Y', '2006-03-14 20:10:36'),
(316, 32, 0x526573706f6e21, 'Y', '2006-03-14 20:10:36'),
(330, 32, 0x426c616e63, 'Y', '2006-03-14 19:52:37'),
(331, 32, 0x4e65677265, 'Y', '2006-03-14 19:52:37'),
(352, 32, '', 'Y', '2006-09-19 11:08:19'),
(359, 32, 0x436f6e7472696e63616e74, 'Y', '2006-03-14 19:52:37'),
(360, 32, '', 'Y', '2006-03-14 16:27:58'),
(361, 32, 0x4d696461, 'Y', '2006-03-14 19:52:37'),
(362, 32, 0x48c3a06e6469636170, 'Y', '2006-03-14 19:52:37'),
(363, 32, '', 'Y', '2006-03-14 16:27:58'),
(364, 32, 0x4a756761646573, 'Y', '2006-03-14 19:52:37'),
(374, 32, 0x4d6f73747261206c657320706172746964657320656e206d61727861, 'Y', '2006-03-14 19:52:37'),
(375, 32, 0x4d6f73747261206c6573207061727469646573206163616261646573, 'Y', '2006-03-14 19:52:37'),
(388, 32, 0x416363657074612070617274696465733f, 'Y', '2006-03-15 16:31:18'),
(389, 32, 0x4d6973736174676573206e6f7573, 'Y', '2006-03-15 11:17:54'),
(390, 32, 0x457420746f6361206a7567617220656e206171756573746573207061727469646573, 'Y', '2006-03-15 11:17:54'),
(391, 32, 0x436170, 'Y', '2006-03-15 11:17:54'),
(132, 32, '', 'Y', '2006-09-19 11:08:19'),
(312, 32, 0x44617461, 'Y', '2006-03-14 20:10:36'),
(368, 32, 0xc39a6c74696d61206a7567616461, 'N', '2006-03-14 19:52:37'),
(204, 32, 0x496e666f726d616369c3b32064652063617465676f726961, 'Y', '2006-03-14 19:52:37'),
(205, 32, 0x43617465676f726961, 'Y', '2006-03-14 19:52:37'),
(314, 32, 0x4e6f7573, 'Y', '2006-03-20 16:30:52'),
(5794, 40, 0x5369747561e7e36f, 'Y', '2014-04-13 17:47:19'),
(3184, 40, 0x4e6f7461732025732c202573, 'Y', '2014-04-11 14:09:38'),
(719, 32, 0x2573206775616e796120646520252e3166, 'Y', '2006-03-13 16:33:18'),
(722, 32, 0x43617270657461, 'Y', '2006-03-14 20:10:36'),
(732, 32, 0x4469657320646520766163616e636573, 'Y', '2006-03-15 10:49:39'),
(733, 32, 0x446520766163616e636573, 'Y', '2006-03-15 10:49:39'),
(747, 32, 0x546f746573206c657320636f6c756d6e6573, 'Y', '2006-03-15 11:17:54'),
(755, 32, 0x4d697373617467652064656c207365727669646f72, 'Y', '2006-03-14 20:10:36'),
(1034, 5, 0x436174616c616e, 'Y', '2006-03-13 23:10:12'),
(202, 32, 0x4e6f6d20636f6d706c6574, 'Y', '2006-03-14 16:38:23'),
(223, 32, 0x486173206f626c69646174206c6120636f6e74726173656e79613f, 'Y', '2006-03-14 16:38:23'),
(240, 32, 0x496e696369, 'Y', '2006-03-14 16:38:23'),
(242, 32, 0x536920766f6c732c207427686920706f7473207265676973747261722069206a756761722e, 'Y', '2006-03-14 16:38:23'),
(243, 32, 0x456e7472612c20736973706c61752e, 'Y', '2006-03-15 16:33:41'),
(244, 32, 0x50657220646f6e617220756e20636f70206427756c6c2c20656d7072612025732e, 'Y', '2006-03-15 16:33:41'),
(245, 32, 0x436f6e74726173656e7961, 'Y', '2006-03-14 16:38:23'),
(246, 32, 0x456e747261, 'Y', '2006-03-14 16:38:23'),
(247, 32, 0x526567697374726120756e206e6f7520636f6d707465, 'Y', '2006-03-14 16:38:23'),
(248, 32, 0x496e74726f6475636369c3b3, 'Y', '2006-03-14 16:38:23'),
(344, 32, 0x52656769737472612774, 'Y', '2006-03-14 16:38:23'),
(109, 32, 0x50617274696461206166656769646121, 'Y', '2006-03-14 19:52:37'),
(225, 32, 0x4162616e646f6e616e74, 'Y', '2006-03-14 19:52:37'),
(226, 32, 0x50617373616e74, 'Y', '2006-03-14 19:52:37'),
(227, 32, 0x4573626f7272616e742070617274696461, 'Y', '2006-03-14 19:52:37'),
(229, 32, 0x50756e7475616369c3b3, 'Y', '2006-03-14 19:52:37'),
(230, 32, 0x50617274696461, 'Y', '2006-03-14 19:52:37'),
(231, 32, 0x5061737361, 'Y', '2006-03-14 19:52:37'),
(232, 32, 0x4573626f7272612070617274696461, 'Y', '2006-03-14 19:52:37'),
(233, 32, 0x466574, 'Y', '2006-03-14 19:52:37'),
(234, 32, 0x436f6e74696e7561206a7567616e74, 'Y', '2006-03-14 19:52:37'),
(235, 32, 0x4162616e646f6e61, 'Y', '2006-03-14 19:52:37'),
(236, 32, 0x426169786120736766, 'Y', '2006-03-14 19:52:37'),
(237, 32, 0x416e61722061206c61207061727469646120736567c3bc656e74, 'Y', '2006-03-14 19:52:37'),
(238, 32, 0x4573626f72726172206465206c61206c6c697374612064276f627365727661646573, 'Y', '2006-03-14 19:52:37'),
(308, 32, 0x5065722061, 'Y', '2006-03-14 19:52:37'),
(324, 32, 0x526573706f6e, 'Y', '2006-03-14 19:52:37'),
(325, 32, 0x4d69737361746765, 'Y', '2006-03-14 19:52:37'),
(342, 32, 0x436f726261206465206e6976656c6c206465, 'Y', '2006-03-14 19:52:37'),
(343, 32, 0x486f2073656e746f2c206d6173736120706f717565732070617274696465732070657220646962756978617220756e206772c3a0666963, 'Y', '2006-03-14 19:52:37'),
(715, 32, 0x4d6f6d656e74206465206c612070c3a067696e61, 'Y', '2006-03-15 11:17:54'),
(160, 32, 0x496e74726f6475636369c3b320616c20447261676f6e, 'Y', '2006-03-14 16:38:23'),
(191, 32, 0x436f6e6669726d61206c6120636f6e74726173656e7961, 'Y', '2006-03-14 16:38:23'),
(252, 32, 0x42656e76696e6775742f6461206465206e6f752c2067617564656978206465206c612076697369746121, 'Y', '2006-03-14 16:38:23'),
(345, 32, 0x496e74726f647565697820696e666f726d616369c3b32c20736973706c6175, 'Y', '2006-03-15 16:33:41'),
(478, 32, 0x506f74732074726f6261722d6e65206dc3a97320696e666f726d616369c3b320616c203c6120687265663d226661712e706870223e4641512066c3b272756d3c2f613e2c206f6e2074616d62c3a920706f6472c3a073206166656769722d686920656c732074657573206475627465732e, 'Y', '2006-03-14 16:38:23'),
(239, 32, 0x4166656769722061206c61206c6c697374612064276f627365727661646573, 'Y', '2006-03-14 19:52:37'),
(253, 32, 0x50617274696461206573626f727261646121, 'Y', '2006-03-14 19:52:37'),
(254, 32, 0x50617274696461206e6f766121, 'Y', '2006-03-14 19:52:37'),
(348, 32, 0x5061727469646573206163616261646573, 'Y', '2006-03-14 19:52:37'),
(349, 32, 0x506172746964657320656e206d61727861, 'Y', '2006-03-14 19:52:37'),
(350, 32, 0x50617274696465732061636162616465732064652025, 'Y', '2006-03-14 19:52:37'),
(351, 32, 0x506172746964657320656e206d617278612064652025, 'Y', '2006-03-14 19:52:37'),
(366, 32, 0x50756e747561626c65, 'Y', '2006-03-14 19:52:37'),
(370, 32, 0x53c3ad, 'Y', '2006-03-14 19:52:37'),
(371, 32, '', 'Y', '2006-09-19 11:08:19'),
(372, 32, '', 'N', '2006-09-19 11:08:19'),
(373, 32, 0x436f6e766964612061717565737420757375617269, 'Y', '2006-03-14 19:52:37'),
(406, 32, 0x436f6e76656e63696f6e616c, 'Y', '2006-03-14 19:52:37'),
(407, 32, 0x4170726f70696174, 'Y', '2006-03-14 19:52:37'),
(408, 32, 0x50617274696461206120696775616c74617420616d62206e6967697269, 'Y', '2006-08-30 12:41:05'),
(409, 32, 0x446f626c652070617274696461, 'Y', '2006-03-14 19:52:37'),
(411, 32, '', 'Y', '2006-09-19 11:08:19'),
(412, 32, 0x436f6d656e74617269, 'Y', '2006-03-14 19:52:37'),
(414, 32, 0x4cc3ad6d69742064652074656d7073, 'Y', '2006-03-14 19:52:37'),
(415, 32, 0x23206465207061727469646573, 'Y', '2006-03-14 19:52:37'),
(416, 32, 0x52656c6c6f74676520656c732063617073206465207365746d616e61, 'Y', '2006-03-14 19:52:37'),
(417, 32, 0x53656d626c61207175652061726120657374c3a02062756974, 'Y', '2006-03-14 19:52:37'),
(419, 32, 0x4e6f6dc3a973202573, 'Y', '2006-03-14 19:52:37'),
(420, 32, 0x4ec3ba6d65726f2064652070617274696465732070657220616665676972, 'Y', '2006-03-14 19:52:37'),
(421, 32, '', 'Y', '2006-09-19 11:08:19'),
(422, 32, '', 'Y', '2006-09-19 11:08:19'),
(423, 32, 0x457869676569782063617465676f726965732064656c20636f6e7472696e63616e74, 'Y', '2006-03-14 19:52:37'),
(424, 32, 0x456e2063617320646520766f6c65722d6e652c2063617465676f7269657320656e747265, 'Y', '2006-03-14 19:52:37'),
(425, 32, 0x416665676569782070617274696461, 'Y', '2006-03-14 19:52:37'),
(426, 32, 0x4a756761646f72, 'Y', '2006-03-14 19:52:37'),
(427, 32, 0x4ec3ba6d65726f206465207061727469646573, 'Y', '2006-03-14 19:52:37'),
(428, 32, 0x456c2072656c6c6f74676520636f72726520656c732063617073206465207365746d616e61, 'Y', '2006-03-14 19:52:37'),
(429, 32, 0x4573626f727261, 'Y', '2006-03-14 19:52:37'),
(430, 32, 0x4a7567612d6c61, 'Y', '2006-03-14 19:52:37'),
(437, 32, 0x54656d7073207072696e636970616c, 'Y', '2006-03-14 19:52:37'),
(454, 32, 0x436f6cc2b76c6f6361206c6573207465766573207065647265732064652068c3a06e64696361702c20736973706c617521, 'Y', '2006-03-14 19:52:37'),
(455, 32, 0x456e76696120692076c3a9732061206c6120736567c3bc656e742070617274696461, 'Y', '2006-03-14 19:52:37'),
(456, 32, 0x456e76696120692076c3a9732061206c274573746174, 'Y', '2006-03-14 19:52:37'),
(457, 32, 0x56c3a97320656e72657261, 'Y', '2006-03-14 19:52:37'),
(458, 32, 0x43617074757261646573, 'Y', '2006-03-14 19:52:37'),
(484, 32, 0x47656e, 'Y', '2006-03-14 19:52:37'),
(485, 32, 0x466562, 'Y', '2006-03-14 19:52:37'),
(486, 32, 0x416272, 'Y', '2006-03-14 19:52:37'),
(487, 32, 0x4d6169, 'Y', '2006-03-14 19:52:37'),
(488, 32, '', 'Y', '2006-09-19 11:08:19'),
(489, 32, 0x41676f, 'Y', '2006-03-14 19:52:37'),
(490, 32, 0x536574, 'Y', '2006-03-14 19:52:37'),
(491, 32, '', 'Y', '2006-09-19 11:08:19'),
(492, 32, 0x446573, 'Y', '2006-03-14 19:52:37'),
(2183, 7, 0x4368796279, 'Y', '2016-07-20 16:22:45'),
(495, 32, '', 'Y', '2006-09-19 11:08:19'),
(496, 32, '', 'Y', '2006-09-19 11:08:19'),
(497, 32, '', 'Y', '2006-09-19 11:08:19'),
(498, 32, 0x4465732064652332, 'Y', '2006-03-14 19:52:37'),
(499, 32, 0x412332, 'Y', '2006-03-14 19:52:37'),
(618, 32, 0x43617465676f72696120696e696369616c, 'Y', '2006-03-14 19:52:37'),
(619, 32, 0x43617465676f7269612066696e616c, 'Y', '2006-03-14 19:52:37'),
(620, 32, 0x4469666572c3a86e6369612064652063617465676f726961, 'Y', '2006-03-14 19:52:37'),
(307, 32, 0x4c6c69737461206465206d6973736174676573, 'Y', '2006-03-14 20:10:36'),
(309, 32, 0x4d61726361646f7273, 'Y', '2006-03-14 20:10:36'),
(315, 32, 0x526573706f7374, 'Y', '2006-03-14 20:10:36'),
(322, 32, 0x4171756573746120696e766974616369c3b320646520257061727469646125206a612073276861206163636570746174, 'Y', '2006-03-14 20:10:36'),
(323, 32, 0x4171756573746120696e766974616369c3b320732768612072656275746a6174206f2073276861206573626f72726174206c612070617274696461, 'Y', '2006-03-14 20:10:36'),
(326, 32, 0x456e76696120726573706f737461, 'Y', '2006-03-14 20:10:36'),
(327, 32, 0x4e6f75206d69737361746765, 'Y', '2006-03-14 20:10:36'),
(328, 32, 0x41202875736572696429, 'Y', '2006-03-15 16:39:52'),
(329, 32, 0x456e766961206d69737361746765, 'Y', '2006-03-14 20:10:36'),
(332, 32, 0x4469736375746569782d6e65206c657320636f6e646963696f6e73, 'Y', '2006-03-14 20:10:36'),
(333, 32, 0x41636365707461, 'Y', '2006-03-14 20:10:36'),
(334, 32, 0x52656275746a61, 'Y', '2006-03-14 20:10:36'),
(335, 32, 0x4d69737361746765206427696e766974616369c3b3, 'Y', '2006-03-14 20:10:36'),
(336, 32, 0x456e76696120696e766974616369c3b3, 'Y', '2006-03-14 20:10:36'),
(346, 32, 0x4d6973736174676520656e76696174, 'Y', '2006-03-14 20:10:36'),
(431, 32, 0x4d6964612064656c207461756c6572, 'N', '2006-03-14 20:10:36'),
(432, 32, 0x48c3a06e646963617020636f6e76656e63696f6e616c20286b6f6d6920302e35207369206e6f20c3a973206120696775616c74617429, 'Y', '2006-03-14 20:10:36'),
(433, 32, 0x48c3a06e6469636170206170726f70696174, 'Y', '2006-03-14 20:10:36'),
(436, 32, 0x6d65736f73, 'Y', '2006-03-14 20:10:36'),
(439, 32, 0x616d62, 'Y', '2006-03-14 20:10:36'),
(442, 32, 0x7065722061, 'Y', '2006-03-14 20:10:36'),
(443, 32, 0x54656d70732046697363686572, 'Y', '2006-03-14 20:10:36'),
(445, 32, 0x4944206465206c612070617274696461, 'Y', '2006-03-14 20:10:36'),
(446, 32, '', 'Y', '2006-09-19 11:08:19'),
(447, 32, '', 'Y', '2006-09-19 11:08:19'),
(449, 32, 0x4a61706f6ec3a873, 'Y', '2006-03-14 20:10:36'),
(450, 32, 0x257320706572206a7567616461206920257320706572c3ad6f646573206465206dc3a973, 'Y', '2006-03-15 16:39:52'),
(451, 32, 0x43616e6164656e63, 'Y', '2006-03-14 20:10:36'),
(452, 32, 0x25732070657220257320706564726573, 'Y', '2006-03-14 20:10:36'),
(453, 32, 0x6465206dc3a97320706572206a7567616461, 'Y', '2006-03-15 16:39:52'),
(724, 32, 0x44657374727565697820656c73206d6973736174676573206d617263617473, 'Y', '2006-03-14 20:10:36'),
(726, 32, 0x4564697461206c6573206361727065746573, 'Y', '2006-03-14 20:10:36'),
(727, 32, 0x4c657320636f6e646963696f6e7320642761717565737461207061727469646120732768616e202564697370757461742573, 'Y', '2006-03-14 20:10:36'),
(740, 32, 0x546f747320656c7320726562757473, 'Y', '2006-03-14 20:10:36'),
(741, 32, 0x5072696e636970616c, 'Y', '2006-03-14 20:10:36'),
(742, 32, 0x5061706572657261, 'Y', '2006-03-14 20:10:36'),
(743, 32, 0x456e7669617473, 'Y', '2006-03-14 20:10:36'),
(744, 32, 0x4d6f752061206c612063617270657461207175616e20657320726573706f6e677569, 'Y', '2006-03-14 20:10:36'),
(745, 32, 0x4d6f752061206c612063617270657461, 'Y', '2006-03-14 20:10:36'),
(746, 32, 0x4e6f6d206465206c612063617270657461, 'Y', '2006-03-14 20:10:36'),
(80, 33, 0xe799bbe585a5e4b8ba, 'Y', '2007-02-15 04:38:07'),
(81, 33, 0xe69caae799bbe585a5, 'Y', '2007-02-15 05:10:41'),
(82, 33, 0xe79baee5898de5afb9e5b180, 'Y', '2007-02-15 05:10:41'),
(83, 33, 0xe5be85e5b180e5aea4, 'Y', '2007-02-15 05:10:41'),
(84, 33, 0xe4bdbfe794a8e88085, 'Y', '2007-02-16 13:24:15'),
(85, 33, 0xe4bfa1e7aeb1, 'Y', '2007-02-16 13:24:15'),
(86, 33, 0xe58699e4bfa1, 'Y', '2009-10-12 16:17:46'),
(87, 33, 0xe98280e8afb7, 'Y', '2007-02-15 05:10:41'),
(88, 33, 0xe6a38be6898b, 'Y', '2007-10-01 06:21:16'),
(90, 33, 0xe7bfbbe8af91, 'Y', '2007-02-15 05:10:41'),
(91, 33, 0xe8aebae59d9b, 'Y', '2007-02-15 05:10:41'),
(92, 33, 0xe5b8b8e8a781e997aee9a298, 'Y', '2007-10-01 09:14:20'),
(93, 33, 0xe7bd91e7ab99e59cb0e59bbe, 'Y', '2007-02-15 05:10:41'),
(96, 33, 0xe7aea1e79086e59198, 'Y', '2007-02-16 13:08:49'),
(97, 33, 0xe799bbe587ba, 'Y', '2007-02-17 07:55:56'),
(98, 33, 0xe697a5, 'Y', '2007-02-16 13:24:15'),
(99, 33, 0xe697a5, 'Y', '2007-02-16 13:24:15'),
(100, 33, 0x2d, 'Y', '2007-02-15 05:39:46'),
(101, 33, 0xe5b08fe697b6, 'Y', '2007-02-16 13:24:15'),
(102, 33, 0xe5b08fe697b6, 'Y', '2007-02-16 13:24:15'),
(103, 33, 0xe697a0e58092e695b0e8aea1e697b6, 'Y', '2007-06-06 20:11:14'),
(104, 33, 0xe6af8fe6898be58aa0202573, 'Y', '2007-02-15 05:39:46'),
(106, 33, 0xe697a5e69cace5bc8fe58092e695b0e8aea1e697b6, 'Y', '2007-06-06 20:11:14'),
(107, 33, 0xe5ad90, 'Y', '2007-02-15 05:40:19'),
(108, 33, 0xe58aa0e68bbfe5a4a7e5bc8fe58092e695b0e8aea1e697b6, 'Y', '2007-06-06 20:11:14'),
(132, 33, 0xe7bc96e58fb7, 'Y', '2007-02-16 13:08:49'),
(134, 33, 0xe5a793e5908d, 'Y', '2007-02-16 13:08:49'),
(201, 33, 0xe5b890e58fb7, 'Y', '2007-02-15 05:46:25'),
(204, 33, 0xe58f82e88083e7ad89e7baa7, 'Y', '2007-02-23 14:12:07'),
(205, 33, 0x444753e7ad89e7baa7, 'Y', '2007-02-15 05:46:25'),
(89, 33, 0xe6a38be5b180, 'Y', '2007-02-15 05:10:41'),
(94, 33, 0xe69687e4bbb6, 'Y', '2007-02-15 05:10:41'),
(95, 33, 0xe6ada4e9a1b5e5bbbae4ba8e, 'Y', '2007-02-17 11:24:02'),
(309, 33, 0xe58db7e6a087, 'Y', '2007-02-16 13:24:15'),
(310, 33, 0xe5af84e4bbb6e4baba, 'Y', '2007-02-16 13:24:15'),
(311, 33, 0xe4b8bbe697a8, 'Y', '2007-02-16 13:24:15'),
(312, 33, 0xe697a5e69c9f, 'Y', '2007-02-16 13:24:15'),
(314, 33, 0xe696b0, 'Y', '2007-02-16 13:24:15'),
(316, 33, 0xe8afb7e59b9ee5a48defbc81, 'Y', '2008-04-29 07:39:31'),
(330, 33, 0xe799bde696b9, 'Y', '2007-02-16 13:24:15'),
(331, 33, 0xe9bb91e696b9, 'Y', '2007-02-16 13:24:15'),
(359, 33, 0xe5afb9e6898be5a793e5908d, 'Y', '2007-06-06 14:04:57'),
(360, 33, 0xe7a281e889b2, 'Y', '2007-02-16 13:24:15'),
(361, 33, 0xe6a38be79b98, 'Y', '2007-06-01 08:00:49'),
(364, 33, 0xe6898be695b0, 'Y', '2007-02-16 13:24:15'),
(368, 33, 0xe69c80e5908ee4b880e6898b, 'N', '2007-02-16 13:24:15'),
(374, 33, 0xe8bf9be8a18ce4b8ade6a38be5b180, 'Y', '2007-02-16 13:24:15'),
(452, 33, 0x257320e4b88b20257320e6898b, 'Y', '2007-02-16 13:24:15'),
(375, 33, 0xe5b7b2e7bb93e69d9fe6a38be5b180, 'Y', '2007-02-16 13:24:15'),
(450, 33, 0x2573203120e6898b20257320e6aca1, 'Y', '2007-02-16 13:24:15'),
(388, 33, 0xe5bc80e694bee5afb9e5b180, 'Y', '2007-02-15 05:50:56'),
(389, 33, 0xe696b0e4bfa1e4bbb6, 'Y', '2007-02-16 13:24:15'),
(443, 33, 0xe8b4b9e99baae5bc8fe8aea1e697b6, 'Y', '2007-06-06 20:11:14'),
(460, 33, 0xe4b88be4b880e9a1b5, 'Y', '2007-02-16 13:24:15'),
(461, 33, 0xe5898de4b880e9a1b5, 'Y', '2007-02-16 13:24:15'),
(462, 33, 0xe5a29ee58aa0e9a1b9e79bae, 'Y', '2007-02-16 13:24:15'),
(715, 33, 0xe7bd91e9a1b5e697b6e997b4, 'Y', '2007-02-16 13:24:15'),
(722, 33, 0xe8b584e69699e5a4b9, 'Y', '2007-02-16 13:24:15'),
(732, 33, 0xe58187e69c9f, 'Y', '2007-02-16 13:24:15'),
(733, 33, 0xe4bc91e58187, 'Y', '2009-05-25 05:55:16'),
(363, 33, 0xe8b4b4e79bae, 'Y', '2007-02-16 13:24:15'),
(399, 33, 0xe8839c, 'Y', '2007-02-15 05:50:56'),
(747, 33, 0xe68980e69c89e9a1b9e79bae, 'Y', '2007-02-16 13:24:15'),
(755, 33, 0xe7b3bbe7bb9f, 'Y', '2007-02-16 13:24:15'),
(160, 33, 0xe9be99e4b98be7a281e4bb8be7bb8d, 'Y', '2007-02-16 13:33:21'),
(191, 33, 0xe7a1aee8aea4e5af86e7a081, 'Y', '2007-02-16 13:33:21'),
(202, 33, 0xe585a8e5908d, 'Y', '2007-02-15 05:46:25'),
(223, 33, 0xe5bf98e8aeb0e5af86e7a081efbc9f, 'Y', '2007-02-16 13:33:21'),
(240, 33, 0xe9a696e9a1b5, 'Y', '2007-02-16 13:33:21'),
(243, 33, 0xe8afb7e799bbe585a5e38082, 'Y', '2007-02-16 13:33:21'),
(27, 19, 0x4261726b6174752c207a7520657461207a757265206175726b616b6f616b207a75656e206d61696c61207a6568617a74752062656861722064757a75652c2062657374656c6120657a696e206475742068616e64696361702065676f6b6961206b616c6b756c6174752e, 'Y', '2006-04-07 05:20:41'),
(156, 32, 0x42696f6772616669612061637475616c69747a61646121, 'Y', '2006-03-15 10:49:39'),
(157, 32, 0x436f6e74726173656e79612063616e766961646121, 'Y', '2006-03-15 10:49:39'),
(158, 32, 0x50657266696c2061637475616c69747a617421, 'Y', '2006-03-15 10:49:39'),
(175, 32, 0x416c747265733a, 'Y', '2006-03-15 10:49:39'),
(176, 32, 0x5061c3ad73, 'Y', '2006-03-15 10:49:39'),
(177, 32, 0x436975746174, 'Y', '2006-03-15 10:49:39'),
(178, 32, 0x4573746174, 'Y', '2006-03-15 10:49:39'),
(179, 32, '', 'Y', '2006-09-19 11:08:19'),
(180, 32, 0x50c3a067696e61206427696e696369, 'Y', '2006-03-15 10:49:39'),
(181, 32, 0x436f7272657520656c65637472c3b26e6963, 'Y', '2006-03-15 10:49:39'),
(182, 32, 0x4ec3ba6d65726f2d494351, 'Y', '2006-03-15 10:49:39'),
(183, 32, 0x507265666572c3a86e63696573206465206a6f63, 'Y', '2006-03-15 10:49:39'),
(184, 32, 0x41666963696f6e73, 'Y', '2006-03-15 10:49:39'),
(185, 32, 0x4f637570616369c3b3, 'Y', '2006-03-15 10:49:39'),
(187, 32, 0x43616e766961206c612062696f677261666961, 'Y', '2006-03-15 10:49:39'),
(188, 32, 0x4564697461206c6120636f6e74726173656e7961, 'Y', '2006-03-15 10:49:39'),
(189, 32, 0x436f6e74726173656e796120616e74696761, 'Y', '2006-03-15 10:49:39'),
(190, 32, 0x4e6f766120636f6e74726173656e7961, 'Y', '2006-03-15 10:49:39'),
(192, 32, 0x43616e766961206c6120636f6e74726173656e7961, 'Y', '2006-03-15 10:49:39'),
(193, 32, 0x446573636f6e6e6563746174, 'Y', '2006-03-15 10:49:39'),
(194, 32, 0x4e6f6dc3a973206e6f74696669636172, 'Y', '2006-03-15 10:49:39'),
(195, 32, 0x4a7567616465732069206d6973736174676573, 'Y', '2006-03-15 10:49:39'),
(196, 32, 0x5461756c657220636f6d706c65742069206d6973736174676573, 'Y', '2006-03-15 10:49:39'),
(197, 32, '', 'Y', '2006-09-19 11:08:19'),
(198, 32, 0x486f7269747a6f6e74616c, 'Y', '2006-03-15 10:49:39'),
(199, 32, 0x456469746120656c2070657266696c, 'Y', '2006-03-15 10:49:39'),
(200, 32, 0x436f6e646963696f6e7320706572736f6e616c73, 'Y', '2006-03-15 10:49:39'),
(206, 32, 0x4e6f74696669636163696f6e732070657220636f7272657520656c65637472c3b26e6963, 'Y', '2006-03-15 10:49:39'),
(207, 32, 0x456d707261206c657320636f6e646963696f6e732064656c206e6176656761646f72, 'Y', '2006-03-15 10:49:39'),
(208, 32, 0x4c6c656e677561, 'Y', '2006-03-15 10:49:39'),
(209, 32, 0x5a6f6e6120686f72c3a0726961, 'Y', '2006-03-15 10:49:39'),
(210, 32, 0x486f72617269206e6f637475726e, 'Y', '2006-03-15 10:49:39'),
(211, 32, 0x4772c3a0666963732064656c207461756c6572, 'Y', '2006-03-15 10:49:39'),
(212, 32, 0x4d696461206465206c657320706564726573, 'Y', '2006-03-15 10:49:39'),
(213, 32, 0x436f6c6f72206465206c61206675737461, 'Y', '2006-03-15 10:49:39'),
(214, 32, 0x436f6f7264656e616465732061206c657320766f726573, 'Y', '2006-03-15 10:49:39'),
(215, 32, 0x4573717565727261, 'Y', '2006-03-15 10:49:39'),
(216, 32, 0x44616c74, 'Y', '2006-03-15 10:49:39'),
(217, 32, 0x4472657461, 'Y', '2006-03-15 10:49:39'),
(218, 32, 0x536f7461, 'Y', '2006-03-15 10:49:39'),
(219, 32, 0x416c6c697361206c657320766f7265732064656c207461756c6572, 'Y', '2006-08-30 12:59:26'),
(220, 32, 0x44697265636369c3b32064656c206d656ec3ba, 'Y', '2006-03-15 10:49:39'),
(222, 32, 0x43616e76696120656c2070657266696c, 'Y', '2006-03-15 10:49:39'),
(378, 32, 0x4c61206d65766120696e666f726d616369c3b3206427757375617269, 'Y', '2006-03-15 10:49:39'),
(379, 32, 0x4564697461206c612062696f677261666961, 'Y', '2006-03-15 10:49:39'),
(393, 32, 0x44617461206465207265676973747265, 'Y', '2006-03-15 10:49:39'),
(394, 32, 0x44617272657220616363c3a973, 'Y', '2006-03-15 10:49:39'),
(395, 32, 0x496e666f726d616369c3b32062696f6772c3a066696361, 'Y', '2006-03-15 10:49:39'),
(396, 32, 0x456e766961206d697373617467652061206c27757375617269, 'Y', '2006-03-15 10:49:39'),
(397, 32, 0x456e206d61727861, 'Y', '2006-03-15 10:49:39'),
(398, 32, 0x4163616261646573, 'Y', '2006-03-15 10:49:39'),
(399, 32, 0x4775616e7961646573, 'Y', '2006-03-15 10:49:39'),
(400, 32, 0x5065726475646573, 'Y', '2006-03-15 10:49:39'),
(6177, 40, 0x4170726f76656974616d656e746f20282529, 'Y', '2014-07-30 11:13:12'),
(402, 32, 0x416374697669746174, 'Y', '2006-03-15 10:49:39'),
(463, 32, 0x53756563, 'Y', '2006-03-15 10:49:39'),
(464, 32, 0x4e6f72756563, 'Y', '2006-03-15 10:49:39'),
(465, 32, 0x416e676cc3a873, 'Y', '2006-03-15 10:49:39'),
(466, 32, 0x416c656d616e79, 'Y', '2006-03-15 10:49:39'),
(467, 32, 0x4672616e63c3a873, 'Y', '2006-03-15 10:49:39'),
(468, 32, 0x457370616e796f6c, 'Y', '2006-03-15 10:49:39'),
(469, 32, 0x54786563, 'Y', '2006-03-15 10:49:39'),
(470, 32, 0x58696ec3a8732028547261646963696f6e616c29, 'Y', '2006-03-15 10:49:39'),
(3192, 17, 0x6f737461746e6961207374726f6e61, 'Y', '2013-08-21 00:42:54'),
(472, 32, 0x58696ec3a873202853696d706c69666963617429, 'Y', '2006-03-15 10:49:39'),
(473, 32, 0x486f6c616e64c3a873, 'Y', '2006-03-15 10:49:39'),
(479, 32, 0x546169, 'Y', '2006-03-15 10:49:39'),
(494, 32, 0x496e666f726d616369c3b3206465206c27757375617269202573, 'Y', '2006-03-15 10:49:39'),
(500, 32, 0x46696ec3a873, 'Y', '2006-03-15 10:49:39'),
(731, 32, 0x4564697461206c6573206361727065746573206465206d6973736174676573, 'Y', '2006-03-15 10:49:39'),
(736, 32, 0x5061727469646573206775616e7961646573, 'Y', '2006-03-15 10:49:39'),
(737, 32, 0x5061727469646573207065726475646573, 'Y', '2006-03-15 10:49:39'),
(738, 32, 0x43616e766961206c6120647572616461206465206c657320766163616e636573, 'Y', '2006-03-15 10:49:39'),
(739, 32, 0x436f6d656ec3a761206c657320766163616e636573, 'Y', '2006-03-15 10:49:39'),
(750, 32, 0x436f7265c3a0, 'Y', '2006-03-15 10:49:39'),
(954, 32, 0x527573, 'Y', '2006-03-15 10:49:39'),
(955, 32, 0x566163616e636573, 'Y', '2006-03-15 10:49:39'),
(956, 32, 0x486f2073656e746f2c20617261206e6f20706f74732063616e76696172206c6120647572616461206465206c657320766163616e636573, 'Y', '2006-03-15 10:49:39'),
(957, 32, 0x447572616461206465206c657320766163616e6365732063616e766961646121, 'Y', '2006-03-15 10:49:39'),
(958, 32, 0x41666567656978, 'Y', '2006-03-15 10:49:39'),
(959, 32, 0x54726575, 'Y', '2006-03-15 10:49:39'),
(960, 32, 0x457363756c6c206c6120647572616461206465206c657320766163616e636573, 'Y', '2006-03-15 10:49:39'),
(962, 32, 0x50617373612d7427686f2062c3a921, 'Y', '2006-03-15 10:49:39'),
(997, 32, 0x506f6c6f6ec3a873, 'Y', '2006-03-15 10:49:39'),
(998, 32, 0x4974616c69c3a0, 'Y', '2006-03-15 10:49:39'),
(1003, 32, 0x42617363, 'Y', '2006-03-15 10:49:39'),
(1014, 32, '', 'Y', '2006-09-19 11:08:19'),
(1015, 32, '', 'Y', '2006-09-19 11:08:19'),
(1018, 32, 0x45736c6f766163, 'Y', '2006-03-15 10:49:39'),
(1023, 32, 0x526f6d616ec3a873, 'Y', '2006-03-15 10:49:39'),
(1028, 32, 0x486562726575, 'Y', '2006-03-15 10:49:39'),
(1029, 32, '', 'Y', '2006-09-19 11:08:19'),
(1030, 32, 0x566965746e616d697461, 'Y', '2006-03-15 10:49:39'),
(1031, 32, 0x5365726269, 'Y', '2006-03-15 10:49:39'),
(1032, 32, 0x47726563, 'Y', '2006-03-15 10:49:39'),
(1033, 32, 0x55637261696ec3a873, 'Y', '2006-03-15 10:49:39'),
(1034, 32, 0x436174616cc3a0, 'Y', '2006-03-15 10:49:39'),
(1035, 32, 0x58696ec3a873202853696d706c6966696361742920287574662d3829, 'Y', '2006-03-15 10:49:39'),
(82, 32, 0x4573746174, 'Y', '2006-03-15 16:58:14'),
(136, 32, 0x46c3b272756d, 'Y', '2006-03-15 11:09:24'),
(159, 32, 0x446f63756d656e74616369c3b3, 'Y', '2006-03-15 11:09:24'),
(161, 32, '', 'Y', '2006-09-19 11:08:19'),
(163, 32, 0x47656e74, 'Y', '2006-03-15 11:09:24'),
(164, 32, 0x71756920636f6e747269627565697820616c20447261676f6e, 'Y', '2006-03-15 11:09:24'),
(165, 32, 0x456e6c6c61c3a76f73, 'Y', '2006-03-15 11:09:24'),
(168, 32, 0x496e737472756363696f6e73206427696e737461c2b76c616369c3b3, 'Y', '2006-03-15 11:09:24'),
(169, 32, 0x736920766f6c7320656c207465752070726f706920447261676f6e, 'Y', '2006-03-15 11:09:24'),
(170, 32, 0x42616978612774206c657320666f6e74732064656c20447261676f6e, 'Y', '2006-03-15 11:09:24'),
(2665, 17, 0x466f726d6174205b25732c25735d2070727a657379b3616e65676f20706c696b75205b25735d206a657374206e6965646f7075737a637a616c6e792e, 'Y', '2013-08-21 00:01:06'),
(173, 32, 0x50c3a067696e612064656c2070726f6a6563746520447261676f6e206120536f75726365666f726765, 'Y', '2006-03-15 11:09:24'),
(256, 32, 0x496e666f726d616369c3b32067656e6572616c, 'Y', '2006-03-15 11:09:24'),
(257, 32, 0x50c3a067696e6573206465204a616e2076616e2064657220537465656e73, 'Y', '2006-03-15 11:09:24'),
(258, 32, 0x4d6f6c746120696e666f726d616369c3b320736f62726520656c20676f, 'Y', '2006-03-15 11:09:24'),
(259, 32, 0x56c3a9732061206c657320464151, 'Y', '2006-03-15 11:09:24'),
(260, 32, 0x4672657175656e746c792061736b6564207175657374696f6e7320736f62726520676f20616c2067727570206465206e6f74c3ad63696573207265632e67616d65732e676f, 'Y', '2006-03-15 11:09:24'),
(265, 32, '', 'Y', '2006-09-19 11:08:19'),
(266, 32, 0x556e206c6c6f632077656220636f6cc2b76c61626f72617469752e204c4c65676569782d6c6f206920636f6e74726962756965782d6e6521, 'Y', '2006-03-15 11:09:24'),
(267, 32, '', 'Y', '2006-09-19 11:08:19'),
(271, 32, '', 'Y', '2006-09-19 11:08:19'),
(272, 32, 0x556e61206d616e676120736f62726520656c20676f2e205265636f6d616e617421, 'Y', '2006-03-15 11:09:24'),
(273, 32, 0x5265676c6573, 'Y', '2006-03-15 11:09:24'),
(274, 32, 0x556e6120696e74726f6475636369c3b320696e746572616374697661, 'Y', '2006-03-15 11:09:24'),
(275, 32, 0x41717565737420c3a97320756e206c6c6f632070657266656374652070657220617072656e6472652d68692e, 'Y', '2006-03-15 11:09:24'),
(276, 32, 0x556e6120696e74726f6475636369c3b3206d6f6c742062656e2065736372697461206465206c274173736f6369616369c3b32062726974c3a06e69636120646520676f, 'Y', '2006-03-15 11:09:24'),
(281, 32, 0x457374726174c3a86769612069207465726d6573, 'Y', '2006-03-15 11:09:24'),
(283, 32, '', 'Y', '2006-09-19 11:08:19'),
(284, 32, 0x54726562616c6c61722d6869206920726570617361722d6c657320657420706f7420616a7564617220656e206c6573207061727469646573, 'Y', '2006-03-15 11:09:24'),
(285, 32, '', 'Y', '2006-09-19 11:08:19'),
(286, 32, 0x456e7669612d6869206c657320746576657320706172746964657320706572207175c3a820636f6d656e74696e20636f6d206861757269657320706f677574206a75676172206d696c6c6f722e, 'Y', '2006-03-15 11:09:24'),
(287, 32, '', 'Y', '2006-09-19 11:08:19'),
(288, 32, 0x486173206465207361626572206465207175c3a820657374c3a0207061726c616e7420746f74686f6d, 'Y', '2006-03-15 11:09:24'),
(291, 32, 0x48697374c3b2726961, 'Y', '2006-03-15 11:09:24'),
(292, 32, 0x556e6120627265752068697374c3b2726961, 'Y', '2006-03-15 11:09:24'),
(293, 32, 0x506572206120766f73616c74726573207175652074656e697520756e61206174656e6369c3b3206375727461, 'Y', '2006-03-15 11:09:24'),
(294, 32, 0x556e6120657874656e73612068697374c3b2726961, 'Y', '2006-03-15 11:09:24'),
(295, 32, 0x456e206361732071756520686f2076756c6775697320736162657220746f74, 'Y', '2006-03-15 11:09:24'),
(296, 32, 0x4c6c696272657320646520676f2c206571756970616d656e7420692070726f6772616d617269, 'Y', '2006-03-15 11:09:24'),
(297, 32, 0x4269626c696f6772616669657320646520676f20616e6f7461646573, 'Y', '2006-03-15 11:09:24'),
(298, 32, 0x556e61206772616e20636f6cc2b76c65636369c3b3206465206372c3ad746971756573206465206c6c696272657320646520676f, 'Y', '2006-03-15 11:09:24'),
(299, 32, 0x556e6120626f74696761206575726f706561, 'Y', '2006-03-15 11:09:24'),
(300, 32, 0x416c74726573207365727669646f727320646520676f, 'Y', '2006-03-15 11:09:24'),
(301, 32, 0x54616d62c3a920626173617420656e20746f726e732e2054c3a9206d6f6c7473206427616c74726573206a6f63732e, 'Y', '2006-03-15 11:09:24'),
(303, 32, 0x556e206772616e207365727669646f72207065722061206a7567617220656e2074656d7073207265616c, 'Y', '2006-03-15 11:09:24'),
(305, 32, 0x4c6c697374612064652073727669646f7273, 'Y', '2006-03-15 11:09:24'),
(306, 32, 0x556e61206c6c69737461206dc3a97320636f6d706c657461206465207365727669646f727320646520676f, 'Y', '2006-03-15 11:09:24'),
(337, 32, 0x436f6e7472696275656e747320616c20447261676f6e, 'Y', '2006-03-15 11:09:24'),
(5777, 36, 0x466f676c796f6b, 'Y', '2015-07-23 12:12:41'),
(340, 32, 0x456469746f72206465206c657320464151, 'Y', '2006-03-15 11:09:24'),
(377, 32, 0x50c3a067696e612064652062656e76696e67756461, 'Y', '2006-03-15 11:09:24'),
(380, 32, 0x4d6f7374726120656c206d69737361746765, 'Y', '2006-03-15 11:09:24'),
(383, 32, 0x4c6c697374612064652066696c73, 'Y', '2006-03-15 11:09:24'),
(384, 32, 0x4c6c6567697220656c2066c3b272756d, 'Y', '2006-03-15 11:09:24'),
(385, 32, 0x4e6f752074c3b2706963, 'N', '2006-03-15 11:09:24'),
(730, 32, 0x4564697461206c657320766163616e636573, 'Y', '2006-03-15 11:09:24'),
(460, 32, 0x70c3a067696e6120736567c3bc656e74, 'Y', '2006-03-15 11:17:54'),
(461, 32, 0x70c3a067696e6120616e746572696f72, 'Y', '2006-03-15 11:17:54'),
(462, 32, 0x4166656765697820636f6c756d6e61, 'Y', '2006-03-15 11:17:54'),
(122, 32, 0x526573706f737461, 'Y', '2006-03-15 11:29:11'),
(127, 32, 0x4564697461, 'N', '2006-03-15 11:29:11'),
(128, 32, 0x4d6f7520616d756e74, 'Y', '2006-03-15 11:29:11'),
(129, 32, 0x4d6f75206176616c6c, 'Y', '2006-03-15 11:29:11'),
(135, 32, 0x547261647563746f7273, 'Y', '2006-03-15 11:29:11'),
(1, 32, 0x486f2073656e746f2c206e6f20706f747320706173736172206162616e7320646520636f6cc2b76c6f63617220746f746573206c6573207065647265732064652068c3a06e64696361702e, 'Y', '2006-03-15 11:55:50'),
(2, 32, 0x486f2073656e746f2c206c612070617274696461206a612073276861206163616261742e, 'Y', '2006-03-15 11:55:50'),
(3, 32, 0x486f2073656e746f2c206c61207061727469646120656e63617261206e6f20686120636f6d656ec3a761742e, 'Y', '2006-03-15 11:55:50'),
(7, 32, 0x486f2073656e746f2c206e6f20706f747320636f6e76696461722d74652061207475206d61746569782f612e, 'Y', '2006-03-15 11:55:50'),
(8, 32, 0x486f2073656e746f2c206e6f207075632074726f626172206c6120706172746964612061207175c3a820742768616e20636f6e76696461742e20506f7473657220732768612072656275746a61742e, 'Y', '2006-03-15 11:55:50'),
(9, 32, 0x486f2073656e746f2c206e6f20706f747320636170747572617220756e612070656472612071756520616361626120646520736572206361707475726164612c2063617220616978c3b220666172696120717565206573207265706574c3ad7320756e612073697475616369c3b320616e746572696f7220616c207461756c65722e205265706173612774206c6573207265676c657320736f62726520656c20276b6f272e, 'Y', '2006-03-15 11:55:50'),
(12, 32, 0x48612066616c6c6174206c6120636f6e6e657869c3b32061206c6120626173652064652064616465732e20536973706c61752c2065737065726120756e73206d696e757473206920746f726e612d686f20612070726f7661722e, 'Y', '2006-03-15 11:55:50'),
(13, 32, 0x48612066616c6c6174206c27656c696d696e616369c3b3206465206c6120706172746964612e20506f737369626c656d656e742c20616978c3b2206e6f20c3a973206361702070726f626c656d612e, 'Y', '2006-03-15 11:55:50'),
(14, 32, 0x486f2073656e746f2c2073656d626c61207175652068612066616c6c6174206c27616665676964612064656c206d697373617467652061206c6120626173652064652064616465732e, 'Y', '2006-03-15 11:55:50'),
(15, 32, 0x486f2073656e746f2c2073656d626c61207175652068612066616c6c6174206c2761666567696461206465206c6120706172746964612061206c6120626173652064652064616465732e, 'Y', '2006-03-15 11:55:50'),
(16, 32, 0x53656d626c61207175652068612066616c6174206c6120696e7365726369c3b3206465206c61206a75676164612061206c6120626173652064652064616465732e20416978c3b220706f64726961206e6f20736572206361702070726f626c656d612c20736973706c617520746f726e612061206c61207061727469646120706572207665757265207369206c61206a75676164612073276869206861206166656769742e, 'Y', '2006-03-15 11:55:50'),
(17, 32, 0x53656d626c61207175652066616c6c6174206c6120696e7365726369c3b3206465206c61207465766120696e666f726d616369c3b32061206c6120626173652064652064616465732e205369206e6f207427686920706f747320636f6e6e65637461722c20746f726e612d686f20612070726f7661722c20736973706c61752c206920736920616978c3b22066616c6c612c20636f6e746163746120616d62206e6f73616c747265732e, 'Y', '2006-03-15 11:55:50'),
(18, 32, 0x48612066616c6c6174206c612064656d616e6164612061206c6120626173652064652064616465732e20536973706c61752c2065737065726120756e73206d696e757473206920746f726e612d686f20612070726f7661722e, 'Y', '2006-03-15 11:55:50'),
(19, 32, 0x4e6f20686520706f6775742073656c656363696f6e6172206c6120626173652064652064616465732e20536973706c61752c2065737065726120756e73206d696e757473206920746f726e612d686f20612070726f7661722e, 'Y', '2006-03-15 11:55:50'),
(20, 32, 0x486f2073656e746f2c206e6f20686520706f67757420636f6d656ec3a76172206c6120706172746964612e20536973706c61752c2065737065726120756e73206d696e757473206920746f726e612d686f20612070726f7661722e, 'Y', '2006-03-15 11:55:50'),
(22, 32, 0x486f2073656e746f2c2068617320646520646f6e61722d686920756e206e6f6d2e, 'Y', '2006-03-15 11:55:50'),
(27, 32, 0x486f2073656e746f2c20656c2074657520636f6e7472696e63616e7420692074752068657520646520646f6e617220756e612063617465676f72696120696e696369616c2c207369206e6f2c206e6f207075632065737461626c697220656c2068c3a06e64696361702e, 'Y', '2006-03-15 11:55:50'),
(29, 32, 0x486f2073656e746f2c20616978c3b2206e6f20c3a973207065726dc3a87320616c7320636f6e7669646174732c207072696d6572206861732064652072656769737472617220756e20636f6d70746520706572736f6e616c2e, 'Y', '2006-03-15 11:55:50'),
(32, 32, 0x486f2073656e746f2c206e6f20c3a97320656c2074657520746f726e2e, 'Y', '2006-03-15 11:55:50'),
(33, 32, 0x4c6120636f6e74726173656e796120636f6e74c3a920636172616374657273206e6f207065726d65736f732c206e6f6dc3a973206573207065726d6574656e20612d7a2c20412d5a2c20302d3920616e64202d5f2b2e2c3a3b3f21252a2e, 'Y', '2006-03-15 11:55:50'),
(35, 32, 0x4c6120636f6e74726173656e796120646f6e616461206e6f20636f696e63696465697820616d62206c6120636f6e74726173656e79612c20736973706c61752076c3a97320656e72657261206920746f726e612d686f20612070726f7661722e, 'Y', '2006-03-15 11:55:50'),
(38, 32, 0x486f2073656e746f2c2074696e6320756e2070726f626c656d6120616d62206c612063617465676f7269612c20686173206f626c6964617420657370656369666963617220276b797527206f202764616e273f, 'Y', '2006-03-15 11:55:50'),
(39, 32, 0x486f2073656e746f2c2074696e6320756e2070726f626c656d6120616d62206c612063617465676f7269612c206e6f2068617572696573206427656d7072617220276b797527206f202764616e2720706572206120617175657374612063617465676f7269612e, 'Y', '2006-03-15 11:55:50'),
(40, 32, 0x486f2073656e746f2c206171756573746120706564726120732768616775c3a973206d6174612061207369206d6174656978612c20706572c3b220656c207375c3af63696469206e6f20c3a973207065726dc3a87320616d62206171756573746573207265676c65732e, 'Y', '2006-03-15 11:55:50'),
(41, 32, 0x486f2073656e746f2c206e6f207075632074726f626172206171756573746120706172746964612e, 'Y', '2006-03-15 11:55:50'),
(42, 32, 0x486f2073656e746f2c206e6f207075632074726f62617220656c2066c3b272756d2071756520766f6c73206c6c656769722e, 'Y', '2006-03-15 11:55:50'),
(43, 32, 0x486d6d2c2073656d626c612071756520617175657374206d697373617467652074c3a920756e6120726573706f737461206120756e206c6c6f6320717565206e6f2065786973746569782e, 'Y', '2006-03-15 11:55:50'),
(44, 32, 0x486f2073656e746f2c206e6f207075632074726f62617220656c206d697373617467652071756520766f6c696573206c6c656769722e, 'Y', '2006-03-15 11:55:50'),
(45, 32, 0x486f2073656e746f2c206e6f207075632074726f62617220617175657374207573756172692e, 'Y', '2006-03-15 11:55:50');
INSERT INTO `Translations` (`Original_ID`, `Language_ID`, `Text`, `Translated`, `Updated`) VALUES
(46, 32, 0x486f2073656e746f2c2061717565737420757365726964206a6120c3a97320656d707261742c20736973706c61752070726f76612064652074726f62617220756e612075736572696420c3ba6e6963612e, 'Y', '2006-03-15 11:55:50'),
(48, 32, 0x4e6f20707563206578747261706f6c617220656c2076616c6f7220656e206c612066756e6369c3b320696e747261706f6c6172, 'Y', '2006-03-15 11:55:50'),
(49, 32, 0x486f2073656e746f2c207475206e6f6dc3a97320706f7473206573626f72726172206c65732074657665732070617274696465732e, 'Y', '2006-03-15 11:55:50'),
(756, 32, 0x416667616e697374616e, 'Y', '2006-03-15 12:27:13'),
(757, 32, 0x416c62c3a06e6961, 'Y', '2006-03-15 12:27:13'),
(758, 32, 0x416c67c3a8726961, 'Y', '2006-03-15 12:27:13'),
(759, 32, '', 'Y', '2006-09-19 11:08:19'),
(760, 32, '', 'Y', '2006-09-19 11:08:19'),
(761, 32, 0x416e74c3a07274696461, 'Y', '2006-03-15 12:27:13'),
(762, 32, 0x416e746967756120692042617262756461, 'N', '2006-03-15 12:27:13'),
(763, 32, '', 'Y', '2006-09-19 11:08:19'),
(764, 32, 0x41726dc3a86e6961, 'Y', '2006-03-15 12:27:13'),
(765, 32, 0x4175737472c3a06c6961, 'Y', '2006-03-15 12:27:13'),
(766, 32, 0xc380757374726961, 'Y', '2006-03-15 12:27:13'),
(767, 32, 0x417a6572626169646a616e, 'Y', '2006-03-15 12:27:13'),
(768, 32, 0x426168616d6573, 'Y', '2006-03-15 12:27:13'),
(769, 32, '', 'Y', '2006-09-19 11:08:19'),
(770, 32, '', 'Y', '2006-09-19 11:08:19'),
(771, 32, '', 'Y', '2006-09-19 11:08:19'),
(772, 32, 0x4269656c6f72c3ba73736961, 'Y', '2006-03-15 12:27:13'),
(773, 32, 0x42c3a86c67696361, 'Y', '2006-03-15 12:27:13'),
(774, 32, '', 'Y', '2006-09-19 11:08:19'),
(775, 32, 0x42656ec3ad6e, 'Y', '2006-03-15 12:27:13'),
(776, 32, '', 'Y', '2006-09-19 11:08:19'),
(777, 32, 0x426f6cc3ad766961, 'Y', '2006-03-15 12:27:13'),
(779, 32, '', 'Y', '2006-09-19 11:08:19'),
(780, 32, 0x42726173696c, 'Y', '2006-03-15 12:27:13'),
(782, 32, 0x42756c67c3a0726961, 'Y', '2006-03-15 12:27:13'),
(783, 32, '', 'Y', '2006-09-19 11:08:19'),
(784, 32, '', 'Y', '2006-09-19 11:08:19'),
(785, 32, 0x43616d626f646a61, 'Y', '2006-03-15 12:27:13'),
(786, 32, 0x43616d6572756e, 'Y', '2006-03-15 12:27:13'),
(787, 32, 0x43616e6164c3a0, 'Y', '2006-03-15 12:27:13'),
(788, 32, 0x4361702056657264, 'Y', '2006-03-15 12:27:13'),
(789, 32, 0x526570c3ba626c6963612063656e7472656166726963616e61, 'Y', '2006-03-15 12:27:13'),
(790, 32, 0x54786164, 'Y', '2006-03-15 12:27:13'),
(791, 32, 0x58696c65, 'Y', '2006-03-15 12:27:13'),
(792, 32, 0x58696e61, 'Y', '2006-03-15 12:27:13'),
(793, 32, 0x436f6cc3b26d626961, 'Y', '2006-03-15 12:27:13'),
(794, 32, 0x436f6d6f726573, 'Y', '2006-03-15 12:27:13'),
(795, 32, 0x436f6e676f20284272617a7a6176696c6c6529, 'Y', '2006-03-15 12:27:13'),
(796, 32, 0x436f6e676f20284b696e736861736129, 'Y', '2006-03-15 12:27:13'),
(797, 32, 0x436f7374612052696361, 'Y', '2006-03-15 12:27:13'),
(798, 32, 0x436f737461206427c38d766f7269, 'Y', '2006-03-15 12:27:13'),
(799, 32, 0x43726fc3a0636961, 'Y', '2006-03-15 12:27:13'),
(800, 32, 0x43756261, 'Y', '2006-03-15 12:27:13'),
(801, 32, 0x5869707265, 'Y', '2006-03-15 12:27:13'),
(802, 32, 0x526570c3ba626c696361205478656361, 'Y', '2006-03-15 12:27:13'),
(803, 32, 0x44696e616d61726361, 'Y', '2006-03-15 12:27:13'),
(804, 32, 0x446a69626f757469, 'Y', '2006-03-15 12:27:13'),
(805, 32, 0x446f6d696e696361, 'Y', '2006-03-15 12:27:13'),
(806, 32, 0x526570c3ba626c69636120446f6d696e6963616e61, 'Y', '2006-03-15 12:27:13'),
(808, 32, 0x45717561646f72, 'Y', '2006-03-15 12:27:13'),
(809, 32, 0x456769707465, 'Y', '2006-03-15 12:27:13'),
(810, 32, '', 'Y', '2006-09-19 11:08:19'),
(811, 32, 0x4775696e65612045717561746f7269616c, 'Y', '2006-03-15 12:27:13'),
(812, 32, 0x45726974726561, 'Y', '2006-03-15 12:27:13'),
(813, 32, 0x457374c3b26e6961, 'Y', '2006-03-15 12:27:13'),
(814, 32, 0x457469c3b2706961, 'Y', '2006-03-15 12:27:13'),
(815, 32, 0x46696a69, 'Y', '2006-03-15 12:27:13'),
(816, 32, 0x46696e6cc3a06e646961, 'Y', '2006-03-15 12:27:13'),
(817, 32, 0x4672616ec3a761, 'Y', '2006-03-15 12:27:13'),
(818, 32, '', 'Y', '2006-09-19 11:08:19'),
(819, 32, 0x47c3a06d626961, 'Y', '2006-03-15 12:27:13'),
(820, 32, 0x4765c3b272676961, 'Y', '2006-03-15 12:27:13'),
(821, 32, 0x416c656d616e7961, 'Y', '2006-03-15 12:27:13'),
(822, 32, 0x4768616e61, 'Y', '2006-03-15 12:27:13'),
(823, 32, 0x4772c3a8636961, 'Y', '2006-03-15 12:27:13'),
(824, 32, 0x4772656e616461, 'Y', '2006-03-15 12:27:13'),
(825, 32, '', 'Y', '2006-09-19 11:08:19'),
(826, 32, '', 'Y', '2006-09-19 11:08:19'),
(827, 32, '', 'Y', '2006-09-19 11:08:19'),
(828, 32, 0x47756169616e61, 'Y', '2006-08-30 13:09:38'),
(829, 32, 0x48616974c3ad, 'Y', '2006-03-15 12:27:13'),
(830, 32, 0x486f6e6475726573, 'Y', '2006-03-15 12:27:13'),
(831, 32, '', 'Y', '2006-09-19 11:08:19'),
(832, 32, 0x486f6e67726961, 'Y', '2006-08-30 13:10:41'),
(833, 32, 0x49736cc3a06e646961, 'Y', '2006-03-15 12:27:13'),
(834, 32, 0xc38d6e646961, 'Y', '2006-03-15 12:27:13'),
(835, 32, 0x496e646f6ec3a8736961, 'Y', '2006-03-15 12:27:13'),
(836, 32, '', 'Y', '2006-09-19 11:08:19'),
(837, 32, '', 'Y', '2006-09-19 11:08:19'),
(838, 32, 0x49726c616e6461, 'Y', '2006-03-15 12:27:13'),
(839, 32, '', 'Y', '2006-09-19 11:08:19'),
(840, 32, 0x4974c3a06c6961, 'Y', '2006-03-15 12:27:13'),
(841, 32, 0x4a616dc3a0696361, 'Y', '2006-03-15 12:27:13'),
(842, 32, 0x4a6170c3b3, 'Y', '2006-03-15 12:27:13'),
(843, 32, 0x4a6f7264c3a06e6961, 'Y', '2006-03-15 12:27:13'),
(845, 32, '', 'Y', '2006-09-19 11:08:19'),
(846, 32, '', 'Y', '2006-09-19 11:08:19'),
(849, 32, '', 'Y', '2006-09-19 11:08:19'),
(850, 32, 0x4b69726775697a697374616e, 'Y', '2006-03-15 12:27:13'),
(851, 32, '', 'Y', '2006-09-19 11:08:19'),
(852, 32, 0x4c6574c3b26e6961, 'Y', '2006-03-15 12:27:13'),
(853, 32, 0x4cc3ad62616e, 'Y', '2006-03-15 12:27:13'),
(854, 32, 0x4c65736f74686f, 'Y', '2006-03-15 12:27:13'),
(855, 32, 0x4c6962c3a8726961, 'Y', '2006-03-15 12:27:13'),
(856, 32, 0x4cc3ad626961, 'Y', '2006-03-15 12:27:13'),
(857, 32, '', 'Y', '2006-09-19 11:08:19'),
(858, 32, 0x4c697475c3a06e6961, 'Y', '2006-03-15 12:27:13'),
(859, 32, 0x4c7578656d62757267, 'Y', '2006-03-15 12:27:13'),
(861, 32, 0x4d61636564c3b26e6961, 'Y', '2006-03-15 12:27:13'),
(862, 32, '', 'Y', '2006-09-19 11:08:19'),
(863, 32, '', 'Y', '2006-09-19 11:08:19'),
(864, 32, 0x4d616cc3a069736961, 'Y', '2006-03-15 12:27:13'),
(865, 32, 0x4d616c6469766573, 'Y', '2006-03-15 12:27:13'),
(866, 32, '', 'Y', '2006-09-19 11:08:19'),
(867, 32, '', 'Y', '2006-09-19 11:08:19'),
(868, 32, 0x496c6c6573204d61727368616c6c, 'Y', '2006-03-15 12:27:13'),
(869, 32, 0x4d6175726974c3a06e6961, 'Y', '2006-03-15 12:27:13'),
(870, 32, 0x4d617572696369, 'Y', '2006-03-15 12:27:13'),
(871, 32, 0x4dc3a8786963, 'Y', '2006-03-15 12:27:13'),
(872, 32, 0x4d6963726f6ec3a8736961, 'Y', '2006-03-15 12:27:13'),
(873, 32, 0x4d6f6c64c3a0766961, 'Y', '2006-03-15 12:27:13'),
(874, 32, 0x4dc3b26e61636f, 'Y', '2006-03-15 12:27:13'),
(875, 32, 0x4d6f6e67c3b26c6961, 'Y', '2006-03-15 12:27:13'),
(876, 32, 0x4d6172726f63, 'Y', '2006-03-15 12:27:13'),
(877, 32, 0x4d6fc3a7616d626963, 'Y', '2006-03-15 12:27:13'),
(878, 32, '', 'Y', '2006-09-19 11:08:19'),
(879, 32, 0x4e616dc3ad626961, 'Y', '2006-03-15 12:27:13'),
(880, 32, '', 'Y', '2006-09-19 11:08:19'),
(881, 32, '', 'Y', '2006-09-19 11:08:19'),
(882, 32, 0x5061c3af736f7320426169786f73, 'Y', '2006-03-15 12:27:13'),
(883, 32, 0x4e6f7661205a656c616e6461, 'Y', '2006-03-15 12:27:13'),
(884, 32, '', 'Y', '2006-09-19 11:08:19'),
(885, 32, 0x4ec3ad676572, 'Y', '2006-03-15 12:27:13'),
(886, 32, 0x4e6967c3a8726961, 'Y', '2006-03-15 12:27:13'),
(887, 32, 0x4e6f7275656761, 'Y', '2006-03-15 12:27:13'),
(888, 32, '', 'Y', '2006-09-19 11:08:19'),
(889, 32, '', 'Y', '2006-09-19 11:08:19'),
(890, 32, '', 'Y', '2006-09-19 11:08:19'),
(892, 32, 0x50616e616dc3a0, 'Y', '2006-03-15 12:27:13'),
(893, 32, 0x5061707561204e6f7661204775696e6561, 'Y', '2006-03-15 12:27:13'),
(894, 32, 0x5061726167756169, 'Y', '2006-03-15 12:27:13'),
(895, 32, 0x506572c3ba, 'Y', '2006-03-15 12:27:13'),
(896, 32, 0x46696c6970696e6573, 'Y', '2006-03-15 12:27:13'),
(897, 32, 0x506f6cc3b26e6961, 'Y', '2006-03-15 12:27:13'),
(898, 32, '', 'Y', '2006-09-19 11:08:19'),
(899, 32, '', 'Y', '2006-09-19 11:08:19'),
(900, 32, '', 'Y', '2006-09-19 11:08:19'),
(901, 32, 0x52756d616e6961, 'Y', '2006-03-15 12:27:13'),
(902, 32, 0x52c3ba73736961, 'Y', '2006-03-15 12:27:13'),
(903, 32, '', 'Y', '2006-09-19 11:08:19'),
(904, 32, 0x5361696e74204b6973732069204e65766973, 'Y', '2006-03-15 12:27:13'),
(905, 32, '', 'Y', '2006-09-19 11:08:19'),
(906, 32, 0x5361696e7420566963656e742069206c6573204772656e6164696e6573, 'Y', '2006-03-15 12:27:13'),
(907, 32, '', 'Y', '2006-09-19 11:08:19'),
(908, 32, '', 'Y', '2006-09-19 11:08:19'),
(909, 32, 0x53c3a36f20546f6dc3a92069205072c3ad6e63697065, 'Y', '2006-03-15 12:27:13'),
(910, 32, 0x4172c3a06269612053617564c3ad, 'Y', '2006-03-15 12:27:13'),
(911, 32, '', 'Y', '2006-09-19 11:08:19'),
(913, 32, '', 'Y', '2006-09-19 11:08:19'),
(914, 32, '', 'Y', '2006-09-19 11:08:19'),
(915, 32, 0x53696e6761707572, 'Y', '2006-03-15 12:27:13'),
(916, 32, 0x45736c6f76c3a071756961, 'Y', '2006-03-15 12:27:13'),
(917, 32, 0x45736c6f76c3a86e6961, 'Y', '2006-03-15 12:27:13'),
(918, 32, 0x496c6c65732053616c6f6dc3b3, 'Y', '2006-03-15 12:27:13'),
(919, 32, 0x536f6dc3a06c6961, 'Y', '2006-03-15 12:27:13'),
(920, 32, 0x5375642dc3a06672696361, 'Y', '2006-03-15 12:27:13'),
(921, 32, 0x457370616e7961, 'Y', '2006-03-15 12:27:13'),
(922, 32, '', 'Y', '2006-09-19 11:08:19'),
(923, 32, '', 'Y', '2006-09-19 11:08:19'),
(924, 32, 0x537572696e616d, 'Y', '2006-03-15 12:27:13'),
(925, 32, 0x5377617a696cc3a06e646961, 'Y', '2006-03-15 12:27:13'),
(926, 32, 0x5375c3a8636961, 'Y', '2006-03-15 12:27:13'),
(927, 32, 0x5375c3af737361, 'Y', '2006-03-15 12:27:13'),
(928, 32, 0x53c3ad726961, 'Y', '2006-03-15 12:27:13'),
(929, 32, '', 'Y', '2006-09-19 11:08:19'),
(930, 32, 0x5461646a696b697374616e, 'Y', '2006-03-15 12:27:13'),
(931, 32, 0x54616e7ac3a06e6961, 'Y', '2006-03-15 12:27:13'),
(932, 32, 0x5461696cc3a06e646961, 'Y', '2006-03-15 12:27:13'),
(933, 32, '', 'Y', '2006-09-19 11:08:19'),
(934, 32, '', 'Y', '2006-09-19 11:08:19'),
(935, 32, 0x5472696e69746174206920546f6261676f, 'Y', '2006-03-15 12:27:13'),
(936, 32, 0x54756ec3ad736961, 'Y', '2006-03-15 12:27:13'),
(937, 32, 0x54757271756961, 'Y', '2006-03-15 12:27:13'),
(938, 32, '', 'Y', '2006-09-19 11:08:19'),
(939, 32, '', 'Y', '2006-09-19 11:08:19'),
(940, 32, '', 'Y', '2006-09-19 11:08:19'),
(941, 32, 0x55637261c3af6e61, 'Y', '2006-03-15 12:27:13'),
(942, 32, 0x456d697261747320c3807261627320556e697473, 'Y', '2006-03-15 12:27:13'),
(943, 32, 0x5265676e6520556e6974, 'Y', '2006-03-15 12:27:13'),
(944, 32, 0x45737461747320556e697473, 'Y', '2006-03-15 12:27:13'),
(945, 32, '', 'Y', '2006-09-19 11:08:19'),
(946, 32, '', 'Y', '2006-09-19 11:08:19'),
(947, 32, '', 'Y', '2006-09-19 11:08:19'),
(948, 32, 0x43697574612d45737461742064656c205661746963c3a0, 'Y', '2006-03-15 12:27:13'),
(949, 32, 0x56656e65c3a775656c61, 'Y', '2006-03-15 12:27:13'),
(950, 32, '', 'Y', '2006-09-19 11:08:19'),
(951, 32, 0x49c3a86d656e, 'Y', '2006-03-15 12:27:13'),
(952, 32, 0x5ac3a06d626961, 'Y', '2006-03-15 12:27:13'),
(953, 32, '', 'Y', '2006-09-19 11:08:19'),
(50, 32, 0x486f2073656e746f2c206e6f20686520706f6775742074726f626172206171756573746120706172746964612061206c612053616c612064276573706572612e20506f7473657220616c67c3ba20616c747265206a6120686920657374c3a0206a7567616e742e, 'Y', '2006-03-15 16:28:10'),
(51, 32, 0x486f2073656e746f2c206e6f20706f7473206a7567617220636f6e747261207475206d6174656978612f612e, 'Y', '2006-03-15 16:28:10'),
(52, 32, 0x486f2073656e746f2c206e6f2074656e7320756e612063617465676f72696120656e20656c206d617267652064656d616e61742e, 'Y', '2006-03-15 16:28:10'),
(54, 32, 0x486f2073656e746f2c206e6f2068617320657363726974206c6120636f6e74726173656e796120636f7272656374616d656e742e, 'Y', '2006-03-15 16:28:10'),
(55, 32, 0x4d656e612064652063617465676f72696120646573636f6e6567756461, 'Y', '2006-03-15 16:28:10'),
(56, 32, 0x486f2073656e746f2c206e6f20636f6e6563206e696e67c3ba20616d6220617175656978207573657269642e, 'Y', '2006-03-15 16:28:10'),
(57, 32, 0x486f2073656e746f2c206c612063617465676f72696120696e696369616c206861206427657374617220656e747265203330206b7975206920362064616e2e, 'Y', '2006-03-15 16:28:10'),
(58, 32, 0x486f2073656e746f2c206861732065736372697420756e2076616c6f72206e6f2d6e756dc3a872696320656e20756e2063616d70206e756dc3a87269632e, 'Y', '2006-03-15 16:28:10'),
(59, 32, 0x486f2073656e746f2c206e6f6dc3a97320656c7320747261647563746f72732074656e656e207065726dc3ad732070657220747261647569722e, 'Y', '2006-09-06 13:01:08'),
(60, 32, 0x536920766f6c7320616a756461722061207472616475697220656c20447261676f6e2c20736973706c617520656e76696120756e206d6973736174676520616c2066c3b272756d206465202774726164756363696f6e73272e, 'Y', '2006-03-15 16:28:10'),
(61, 32, 0x486f2073656e746f2c206e6f2074656e73207065726dc3ad732070657220612074726164756972206c61206c6c656e677561206573706563696669636164612e, 'Y', '2006-03-15 16:28:10'),
(63, 32, 0x486f2073656e746f2c20616c67756e6120636f7361206e6f206861207275746c6c6174207175616e20696e74656e7461766120696e7365726972206c6573206e6f7665732074726164756363696f6e732061206c6120626173652064652064616465732e, 'Y', '2006-03-15 16:28:10'),
(66, 32, 0x486f2073656e746f2c20617175657374612070c3a067696e6120c3a973206e6f6dc3a973207065722061207573756172697320616d6220746173717565732061646d696e697374726174697665732e, 'Y', '2006-03-15 16:28:10'),
(69, 32, 0x486f2073656e746f2c206e6f20686520706f6775742074726f626172206171756573746120656e74726164612e, 'Y', '2006-03-15 16:28:10'),
(75, 32, 0x486f2073656e746f2c206e6f20686520706f6775742074726f62617220656c20746f726e6569672065736d656e7461742e, 'Y', '2006-03-15 16:28:10'),
(1930, 17, '', 'Y', '2013-08-21 00:34:51'),
(1932, 17, '', 'Y', '2013-08-21 00:34:51'),
(2833, 17, '', 'Y', '2013-08-21 00:35:49'),
(2834, 17, '', 'Y', '2013-08-21 00:35:49'),
(474, 32, 0x41717565737461206d656e61206427616363696f6e7320c3a97320646573636f6e6567756461206f206e6f20706f742073657220757361646120656e20617175657374206d6f6d656e74206465206c6120706172746964612e, 'Y', '2006-03-15 16:28:10'),
(475, 32, 0x456c206b6f6d6920c3a97320666f726d61206465206d617267652c20736973706c617520657363756c6c20756e2076616c6f72206dc3a9732072616f6e61626c652e, 'Y', '2006-03-15 16:28:10'),
(476, 32, 0x4861206f636f72726567757420756e206572726f7220616d622061717565737461206a75676164612e20486175726961206465207275746c6c617220736920686f20746f726e657220612070726f7661722c207369206e6f20c3a97320616978c3ad2c20706f7361277420656e20636f6e746163746520616d62206e6f73616c747265732e, 'Y', '2006-03-15 16:28:10'),
(477, 32, 0x4ec3ba6d65726f20696e636f727265637465206465207065647265732064652068616e64696361702e, 'Y', '2006-03-15 16:28:10'),
(714, 32, 0x486f2073656e746f2c206e6f20686520706f6775742074726f626172206c612063617270657461206465206d6973736174676573206573706563696669636164612e, 'Y', '2006-03-15 16:28:10'),
(244, 33, 0xe58f82e8a782e8afb7e794a8202573e38082, 'Y', '2007-02-16 13:33:21'),
(245, 33, 0xe5af86e7a081, 'Y', '2007-02-16 13:33:21'),
(246, 33, 0xe799bbe585a5, 'Y', '2007-02-16 13:33:21'),
(247, 33, 0xe6b3a8e5868ce696b0e5b890e58fb7, 'Y', '2007-02-16 13:33:21'),
(248, 33, 0xe59bb4e6a38be4bb8be7bb8d, 'Y', '2007-02-16 13:33:21'),
(252, 33, 0xe6aca2e8bf8ee5868de5baa6e58589e4b8b4efbc8ce8afb7e5a5bde5a5bde4baabe58f97efbc81, 'Y', '2007-02-16 13:33:21'),
(478, 33, 0xe69bb4e5a49ae8b584e69699e8afb7e79c8b203c6120687265663d226661712e706870223ee5b8b8e8a781e997aee9a2983c2f613eefbc8ce682a8e4b99fe58fafe4bba5e59ca8e8aebae59d9be68f90e587bae887aae5b7b1e79a84e997aee9a298e38082, 'Y', '2007-10-01 09:15:05'),
(344, 33, 0xe6b3a8e5868c, 'Y', '2007-02-16 13:33:21'),
(345, 33, 0xe8afb7e8be93e585a5e8b584e69699, 'Y', '2007-02-16 13:33:21'),
(109, 33, 0xe6a38be5b180e58aa0e585a5efbc81, 'Y', '2007-02-16 13:55:10'),
(225, 33, 0xe8aea4e8be93, 'Y', '2007-05-30 12:31:26'),
(227, 33, 0xe588a0e999a4e6a38be5b180, 'Y', '2007-02-16 13:55:10'),
(233, 33, 0xe5ae8ce68890, 'Y', '2007-02-16 13:55:10'),
(390, 33, 0xe8bdaee588b0e682a8e4b88be79a84e5afb9e5b180efbc9a, 'Y', '2007-06-22 20:09:30'),
(231, 33, 0xe8999ae6898b, 'Y', '2007-02-16 13:55:10'),
(235, 33, 0xe8aea4e8be93, 'Y', '2007-05-30 12:31:26'),
(237, 33, 0xe8b7b3e588b0e4b88be4b880e5b180, 'Y', '2007-02-16 13:55:10'),
(254, 33, 0xe58aa0e585a5e5afb9e5b180efbc81, 'Y', '2007-02-16 13:55:10'),
(324, 33, 0xe59b9ee5a48d, 'Y', '2007-02-16 13:55:10'),
(230, 33, 0xe6a38be5b180, 'Y', '2007-02-16 13:55:10'),
(232, 33, 0xe588a0e999a4e6a38be5b180, 'Y', '2007-02-16 13:55:10'),
(234, 33, 0xe7bba7e7bbade5afb9e5b180, 'Y', '2007-02-16 13:55:10'),
(352, 33, 0xe6a38be8b0b1, 'Y', '2007-02-25 08:25:10'),
(325, 33, 0xe8aeafe681af, 'Y', '2007-02-17 16:32:43'),
(362, 33, 0xe8aea9e5ad90, 'Y', '2007-02-16 13:24:15'),
(348, 33, 0xe7bb93e69d9fe6a38be5b180, 'Y', '2007-02-19 10:28:44'),
(349, 33, 0xe8bf9be8a18ce6a38be5b180, 'Y', '2007-02-19 10:28:44'),
(350, 33, 0x257320e5b7b2e7bb93e69d9fe6a38be5b180, 'Y', '2007-02-16 13:55:10'),
(351, 33, 0x257320e8bf9be8a18ce4b8ade6a38be5b180, 'Y', '2007-02-16 13:55:10'),
(370, 33, 0xe698af, 'Y', '2007-06-01 08:01:35'),
(371, 33, 0xe590a6, 'Y', '2007-02-16 13:24:15'),
(236, 33, 0xe4b88be8bdbde6a38be8b0b1, 'Y', '2007-02-25 08:26:20'),
(253, 33, 0xe6a38be5b180e588a0e999a4efbc81, 'Y', '2007-02-16 13:55:10'),
(373, 33, 0xe98280e8afb7e5afb9e5b180, 'Y', '2007-05-29 13:15:54'),
(406, 33, 0xe4bca0e7bb9fe8aea9e5ad90, 'Y', '2007-02-16 13:55:10'),
(407, 33, 0xe98082e5bd93e8aea9e5ad90, 'Y', '2007-02-16 13:55:10'),
(409, 33, 0xe58f8ce889b2e5afb9e5b180, 'Y', '2007-02-16 13:55:10'),
(411, 33, 0xe8b584e69699, 'Y', '2007-02-16 13:55:10'),
(412, 33, 0xe5a487e6b3a8, 'Y', '2007-02-16 13:55:10'),
(414, 33, 0xe697b6e99990, 'Y', '2007-02-16 13:55:10'),
(415, 33, 0xe5b180e695b0, 'Y', '2007-02-16 13:55:10'),
(416, 33, 0xe591a8e69cab, 'Y', '2007-04-29 21:04:59'),
(425, 33, 0xe5a29ee58aa0e6a38be5b180, 'Y', '2007-02-16 13:55:10'),
(429, 33, 0xe588a0e999a4, 'Y', '2007-02-16 13:55:10'),
(430, 33, 0xe58aa0e585a5, 'Y', '2007-02-16 13:55:10'),
(455, 33, 0xe98081e587baefbc8ce5b9b6e588b0e4b88be4b880e5b180, 'Y', '2007-02-16 13:55:10'),
(456, 33, 0xe98081e587baefbc8ce59b9ee588b0e5afb9e5b180e9a1b5, 'Y', '2007-06-17 18:46:25'),
(457, 33, 0xe59b9ee4b88ae4b880e9a1b5, 'Y', '2007-07-03 12:30:03'),
(458, 33, 0xe68f90e5ad90, 'Y', '2007-02-16 13:55:10'),
(484, 33, 0x31e69c88, 'Y', '2007-02-24 16:19:45'),
(485, 33, 0x32e69c88, 'Y', '2007-02-24 16:19:45'),
(486, 33, 0x34e69c88, 'Y', '2007-02-24 16:19:45'),
(454, 33, 0xe8afb7e4b88be5a5bde8aea9e5ad90efbc81, 'Y', '2007-02-16 13:55:10'),
(498, 33, 0xe887aa, 'Y', '2007-02-24 12:04:10'),
(487, 33, 0x35e69c88, 'Y', '2007-02-24 16:19:45'),
(488, 33, 0x36e69c88, 'Y', '2007-02-24 16:19:45'),
(489, 33, 0x38e69c88, 'Y', '2007-02-24 16:19:45'),
(490, 33, 0x39e69c88, 'Y', '2007-02-24 16:19:45'),
(491, 33, 0x3130e69c88, 'Y', '2007-02-24 16:19:45'),
(492, 33, 0x3132e69c88, 'Y', '2007-02-24 16:19:45'),
(2093, 7, 0x567974766ff8656e6f, 'Y', '2016-07-20 16:22:45'),
(495, 33, 0x33e69c88, 'Y', '2007-02-24 16:19:45'),
(496, 33, 0x37e69c88, 'Y', '2007-02-24 16:19:45'),
(497, 33, 0x3131e69c88, 'Y', '2007-02-24 16:19:45'),
(1034, 4, 0x4b6174616c616e69736368, 'Y', '2006-03-23 20:07:01'),
(1035, 4, 0x4368696e657369736368202876657265696e66616368742c205554462d3829, 'Y', '2007-12-07 15:47:08'),
(1032, 7, 0xd865636b79, 'Y', '2006-03-31 17:04:32'),
(1033, 7, 0x556b72616a696e736b79, 'Y', '2006-03-31 17:04:32'),
(1034, 7, 0x4b6174616ce16e736b79, 'Y', '2006-03-31 17:04:32'),
(1035, 7, 0xc8ed6e736b7920287a6a65646e6f6475b9656eec2920285554462d3829, 'Y', '2006-03-31 17:04:32'),
(506, 7, 0x426f6420fa7a656ded2e, 'Y', '2016-07-20 17:29:42'),
(511, 7, 0x4d656e752061206d6fbe6e6f73746920447261676f6e75, 'Y', '2006-03-31 17:04:32'),
(512, 7, 0x487279206e6120447261676f6e75, 'Y', '2006-03-31 17:04:32'),
(535, 7, 0x4a6f7365, 'Y', '2006-03-31 17:04:32'),
(38, 19, 0x4261726b6174752c206172617a6f2062617420647574207a757265206d61696c6172656b696e2c20276b7975272065646f202764616e27206964617a746561206168617a74752064757a753f, 'Y', '2006-04-07 05:20:41'),
(39, 19, 0x4261726b6174752c206172617a6f2062617420647574207a757265206d61696c6172656b696e2c206d61696c61206d6f746120686f6e6574616e20657a2064757a7520276b7975272065646f202764616e2720696461747a692062656861722e, 'Y', '2006-04-07 05:20:41'),
(40, 19, 0x4261726b6174752c2068617272692068617520626572652062757275617a206265737465206567696e676f206c756b652c206261696e6120617261757465676920686f6e656b20657a20647520686f7269206261696d656e747a656e2e, 'Y', '2006-04-07 05:20:41'),
(41, 19, 0x4261726b6174752c20657a696e20647574207061727469646120686f7269206175726b6974752e, 'Y', '2006-04-07 05:20:41'),
(42, 19, 0x4261726b6174752c20657a696e2064757420666f726f20686f7269206175726b6974752e, 'Y', '2006-04-07 05:20:41'),
(43, 19, 0x456e6520626164612c206d657a752068617520657a206461676f656e2062657a7465206d657a752062617469206572616e747a756e612064656c61206469727564692e, 'Y', '2006-04-07 05:20:41'),
(44, 19, 0x4261726b6174752c20657a696e20647574206d657a7520686f7269206175726b6974752e, 'Y', '2006-04-07 05:20:41'),
(45, 19, 0x4261726b6174752c20657a696e206475742065726162696c747a61696c6520686f7269206175726b6974752e, 'Y', '2006-04-07 05:20:41'),
(46, 19, 0x4261726b6174752c2065726162696c747a61696c6520697a656e20686f72692068617274757461206461676f206a6164612c206d65736564657a207361696174752065726162696c747a61696c6520697a656e20657a62657264696e20626174656b696e2e, 'Y', '2006-04-07 05:20:41'),
(49, 19, 0x4261726b6174752c20736f696c696b207a75726561206261646120657a61626174752064657a616b657a7520706172746964612e, 'Y', '2006-04-07 05:27:29'),
(50, 19, 0x6261726b61747520657a696e20697a616e206475742069747861726f6e2067656c616b6f207061727469646120686175206175726b6974752e204c6974656b65656e61206461206a61646120626573746572656e20626174656b20686172747520697a616e612e, 'Y', '2006-04-07 05:27:29'),
(51, 19, 0x4261726b61747520657a696e2064757a75207a756b20736f72747574616b6f20706172746964612062617465616e206a6f6c617374752e, 'Y', '2006-04-07 05:27:29'),
(52, 19, 0x4261726b6174752c20657a207a61756465207a6568617a747574616b6f206d61696c61207461727465616e2e, 'Y', '2006-04-07 05:27:29'),
(54, 19, 0x4261726b6174752c20657a2064757a75207a757265206f7261696e676f20706173616869747a61206f6e646f20696461747a692e, 'Y', '2006-04-07 05:27:29'),
(55, 19, 0x4d61696c61206d6f746120657a657a6167756e61, 'Y', '2006-04-07 05:27:29'),
(56, 19, 0x4261726b6174752c20657a206475742065726162696c747a61696c6520697a656e20686f7269206475656e696b20657a616775747a656e2e, 'Y', '2006-04-07 05:27:29'),
(57, 19, 0x4261726b6174752c207a75726520686173696572616b6f206d61696c61203330206b79752065746120362064616e2062697461727465616e2065676f6e206265686172206475, 'Y', '2006-04-07 05:27:29'),
(58, 19, 0x4261726b6174752c207a656e62616b696120657a2064656e207a65726261697420696461747a692064757a75207a656e62616b69206572656d752062617465616e2e, 'Y', '2006-04-07 05:27:29'),
(59, 19, 0x4261726b6174752c20736f696c696b2069747a756c747a61696c65656b2064757465206261696d656e612069747a756c747a656b6f2e, 'Y', '2006-04-07 05:27:29'),
(60, 19, 0x447261676f6e2069747a756c747a656e206c6167756e6475206e61686920626164757a7520626964616c69206d657a752062617420277472616e736c6174696f6e2720666f726f7261, 'Y', '2006-04-07 05:27:29'),
(61, 19, 0x4261726b6174752c20657a2064757a752068697a6b756e747a6120686f72726574616e2069747a756c70656e65616e20706172746520686172747a656b6f206261696d656e696b2e, 'Y', '2006-04-07 05:27:29'),
(63, 19, 0x4261726b6174752c206172617a6f72656e2062617420676572746174752064612069747a756c70656e206265727269616b206461747562617365616e20736172747a656e20736169617475206e61697a656e65616e2e, 'Y', '2006-04-07 05:27:29'),
(66, 19, 0x4261726b6174752c206f72726920686175206b75646561747a65206c616e65616e206469686172647574656e2065726162696c747a61696c65656e747a617420646120736f696c696b2e, 'Y', '2006-04-07 05:32:58'),
(69, 19, 0x4261726b61747520657a696e20697a616e20647574207361727265726120686f7269206175726b6974752e, 'Y', '2006-04-07 05:32:58'),
(75, 19, 0x4261726b6174752c20657a206475742074786170656c6b65746120686f7269206175726b6974752e, 'Y', '2006-04-07 05:32:58'),
(1650, 17, 0x42b3ea646e7920584d4c2d656e642d746167, 'Y', '2013-08-21 01:17:20'),
(1651, 17, 0x42b3ea646e7920584d4c2d656e642d617474726962757465, 'Y', '2013-08-21 01:17:20'),
(1923, 17, '', 'Y', '2013-08-21 00:34:51'),
(1929, 17, '', 'Y', '2013-08-21 00:34:51'),
(474, 19, 0x456b696e747a6120686f726920657a657a6167756e612064612065646f20657a696e206461206a6f6b6f6172656e2065676f65726120686f6e6574616e2065726162696c692e, 'Y', '2006-04-07 05:38:23'),
(475, 19, 0x6b6f6d6961206d756765746174696b206b616e706f206461676f2c206d65736564657a207a656e747a7564756e2062616c696f206261742061756b65726174752e, 'Y', '2006-04-07 05:38:23'),
(476, 19, 0x4572726f726520626174207375657274617475206461206d7567696d656e647520686f6e656b696e2e204265727269726f207361696174752c206f726f6b6f727265616e206e6168696b6f612064612c20686f7272656c612065726520657a206261646162696c206d6573656465737a206b75646561747a61696c65656b696e206b6f6e74616b7475616e206a617272692e, 'Y', '2006-04-07 05:38:23'),
(477, 19, 0x48616e6469636170206861727269206b6f70757275206f6b65727261, 'Y', '2006-04-07 05:38:23'),
(714, 19, 0x4261726b6174752c20657a696e20697a616e20647574206d657a75206b61727065746120686f7269206175726b6974752e, 'Y', '2006-04-07 05:38:23'),
(439, 19, 0x657461, 'Y', '2006-04-07 05:59:05'),
(442, 19, 0x6a6172747a656b6f, 'Y', '2006-04-07 05:59:05'),
(1034, 2, 0x4b6174616c616e736b, 'Y', '2006-04-18 14:36:08'),
(1035, 2, 0x4b696e657369736b2028466f72656e6b6c65742920287574662d3829, 'Y', '2006-04-18 14:40:38'),
(532, 2, 0x546f207370696c6c657265206b6a656d706572206f6d20e5206b6f6e74726f6c6c657265207465727269746f7269652070e520627265747465742e20427265747465742065722031397831392070756e6b7465722c206d656e2062e5646520397839206f67203133783133206572206f6773e52076616e6c6967652e20205370696c6c65726e65206c65676765722065747465722074757220737465696e65722070e5206c6564696765206b7279736e696e677370756e6b7465722070e520627265747465742e20205376617274207370696c6c65722066f87273742c2073e520687669742e0d0a0d0a48766973206d6f747374616e646572656e7320737465696e20656c6c657220677275707065206d697374657220616c6c6520667269686574657220736f6d2066f86c6765206176206574207472656b6b2064f8722064656e2c206f6720737465696e656e28652920666a65726e65732066726120627265747465742e20204574207472656b6b20657220756c6f766c69672068766973206465742066f87265722074696c20617420656e206567656e20737465696e20656c6c65722067727570706520656e646572206f7070207574656e2066726968657465722c206f6720696e67656e206176206d6f747374616e646572656e7320737465696e65722064f8722e0d0a0d0a5370696c6c6574206572206f766572206ee572206265676765207370696c6c65726e65207061737365722e202044612062657265676e6572206d616e20726573756c74617465742e20204ef8797472616c652070756e6b746572202864616d65292066796c6c65732c206f672064f8646520737465696e65722074617320617620627265747465742e2020506f656e67656e65207574676af8726573206176207465727269746f72696574206d616e20686172206f6d72696e6765742c206d696e75732066616e676572206d6f747374616e646572656e2068617220746174742e0d0a0d0a4c6573206d65722070e5203c6120687265663d22687474703a2f2f706c6179676f2e746f2f696e7465726163746976652f696e6465782e68746d6c22207461726765743d6e65773e54686520496e7465726163746976652057617920546f20476f3c2f613e2e, 'Y', '2006-04-19 01:52:17'),
(556, 2, 0x4465742066696e6e6573206d616e67652070726f6772616d6d6572206475206b616e206272756b652074696c20e52073652070e5206f67207265646967657265205347462d66696c65722e2020457420676f647420616c7465726e61746976206572203c6120687265663d22687474703a2f2f7777772e72656e652d67726f74686d616e6e2e64652f6a61676f2f223e4a61676f3c2f613e2c20746865204a61766120476f20636c69656e742e0d0a0d0a44656e204272697469736b6520476f2d666f72656e696e67656e2068617220656e206c616e67203c6120687265663d22687474703a2f2f7777772e62726974676f2e6f72672f676f70637265732f676f7063726573312e68746d6c23732d76696577223e6c69737465206f7665722070726f6772616d6d65723c2f613e20666f7220e520626568616e646c65205347462d66696c65722e0d0a0d0a4ee572206475206861722065742070726f6772616d20736f6d206b616e2076697365205347462d66696c6572206b616e206475207365747465206d696d652d747970656e20276170706c69636174696f6e2f782d676f2d736766272069207765622d62726f77736572656e2064696e2074696c20e52070656b652070e52064657474652070726f6772616d6d65742e202044612076696c20657420656e6b656c74206b6c696b6b2070e5205347462d66696c656e2069207765622d62726f77736572656e20e5706e652066696c656e2069205347462d70726f6772616d6d657420646974742e, 'N', '2006-04-19 02:00:55'),
(164, 19, 0x4e6f726b206c6167756e647520647520447261676f6e2065676974656e, 'Y', '2006-04-24 00:51:56'),
(48, 19, 0x457a696e20697a616e2064612062616c696f61206578747261706f6c61747520696e746572706f6c6174752066756e747a696f616e, 'Y', '2006-04-24 00:52:53'),
(501, 19, 0x447261676f6e2065726162696c747a61696c65616b206574612065726162696c747a61696c6520736f736c6169616b, 'N', '2006-04-25 02:07:03'),
(502, 19, 0x476f206869747a616b, 'Y', '2006-04-25 02:07:03'),
(503, 19, 0x44656e65746172696b, 'Y', '2006-04-25 02:07:03'),
(504, 19, 0x476f2061726175616b, 'Y', '2006-04-25 02:07:03'),
(505, 19, '', 'Y', '2006-12-29 00:39:59'),
(506, 19, 0x50756e747520626174656e2062657264696e612c2061736b61746173756e20626174207461756c6172656e206761696e65616e, 'N', '2006-04-25 02:07:03'),
(507, 19, '', 'Y', '2006-12-29 00:39:59'),
(509, 19, 0x447261676f6e206574696b657461, 'Y', '2006-04-25 02:07:03'),
(510, 19, 0x447261676f6e206172617a6f616b20286275672d616b29, 'N', '2006-04-25 02:07:03'),
(511, 19, 0x447261676f6e206d656e75206574612061756b6572616b, 'Y', '2006-04-25 02:07:03'),
(512, 19, 0x447261676f6e20706172746964616b, 'Y', '2006-04-25 02:07:03'),
(513, 19, 0x447261676f6e206761726170656e61, 'Y', '2006-04-25 02:07:03'),
(515, 19, 0x44656e626f726120676568696567697a2065676f6e207a617261206f7264656e616761696c756172656e206175727265616e204447532d616e206a6f6c617374656e2e2068617274752064757478612062617420657461206a61727269206172726f7061206761726269616b203a2d29, 'Y', '2006-04-25 02:11:30'),
(518, 19, '', 'N', '2006-12-29 00:39:59'),
(519, 19, 0x4e69676972692062656c747a6172656b696e206e6f726b206a6f6c617374756b6f206475656e2065726162616b69747a656b6f2073697374656d61206261742064612e2048617374656b6f2c206a6f6b616c61726920626174656b206861727269207a757269206b6f707572752062617420686172747a656e2064752e204f726475616e206265737465206a6f6b616c617269616b207461756c616e2068617272692062656c747a2062617420616c61206269206a6172747a656e20646974752c206265737465616b2065736b75616e2064697475656e206861727269206b6f70757275612062616b6f6974696120616c612062696b6f697469612064656c612075737465206475656e2065736174656b6f2e2041736d61747520626164752c2062656c747a6172656b696e206a6f6c617374756b6f2064752c2062657374656c61207a7572696172656b696e2e0d0a4e6f736b692c2068656d656e2070726f7a65737561207a65726269747a617269616b20626572616b2065676974656e2064752e20417a6b656e65616e207a75726961206a61736f747a656e206475656e616b20362e35206b6f6d6920657265206a61736f747a656e2064752e0d0a4e6967697269206d61696c6120626572656b6f206a6f6b616c617269656e2061727465616e2065726162696c692062656861726b6f206c69747a6174656b652e, 'N', '2006-04-25 02:07:03'),
(522, 19, 0x4f6e6769206461676f20626573746561726920227a6f727465206f6e6122206f7061747a6561207061727469646172656e20686173696572616e3f, 'Y', '2006-04-25 02:07:03'),
(523, 19, 0x4261692c206e6f736b692e204a6f6b616c617269206261747a756b20677573746f6b6f2064757465203c6120687265663d222f6661712e7068703f726561643d74266361743d3323456e7472793738223e6f6e656761697368696d6173753c2f613e2074726164697a696f6e616c61206572652e, 'N', '2006-04-25 02:07:03'),
(565, 19, 0x447261676f6e2073617272657261, 'Y', '2006-04-25 02:07:34'),
(566, 19, 0x5a6572206461206c656b75206861753f, 'Y', '2006-04-25 02:07:34'),
(508, 19, 0x5a75726961726920656d616e64616b6f203c6120687265663d222f6661712e7068703f726561643d74266361743d3323456e74727938223e6d6f6b753c2f613e206b6f7075727520676568696761727269206261742e2042656c747a616b206c6568656e2068617272696172656b696e206a6f6c6173746561676174696b206475656e206162616e7461696c6120706172656b61747a656b6f2e, 'N', '2006-04-25 02:11:30'),
(514, 19, 0x486172726974757461206e61676f21204172617a6f616b2064617564652065646f6e6f6e21, 'Y', '2006-04-25 02:11:30'),
(525, 19, 0x486f62656b756e747a61206261742070726f706f736174752064657a616b65743f, 'Y', '2006-04-25 02:11:30'),
(526, 19, 0x426169206e6f736b6921204d65736564657a20626964616c69207a7572652070726f706f73616d656e61203c6120687265663d222f70686f72756d2f6c6973742e7068703f663d34223e447261676f6e2064697363757373696f6e3c2f413e20666f726f72612e, 'N', '2006-04-25 02:11:30'),
(529, 19, 0x5a656c616e206a616b696e2064657a616b6574206765686961676f2061726175207a656861747a206261746920627572757a3f, 'Y', '2006-04-25 02:11:30'),
(530, 19, 0x417a616c6475207a7572652067616c64657261204641512065646f20476f20666f726f6574616e2e20486f6265746f20617267697475206e6168692064757a756e206172617561207a65696e2064656e20617a616c747a656e20626164757a752c20657461206a6f6b6f6172656e207a65696e2065676f65726174616e20736f727475207a61697a756e207a616c616e747a612e, 'Y', '2006-04-25 02:13:12'),
(531, 19, 0x5a65696e747a75206469726120474f2d6172656e206f696e617272697a6b6f2061726175616b3f, 'Y', '2006-04-25 02:13:12'),
(532, 19, 0x4269206a6f6b616c617269207461756c61206b6172726174752062617465616e207465727269746f72696f6120696e67757261747a656b6f206c65686961747a656e20646972612e205461756c612031397831396b6f6120697a6174656e2064612c206261696e6120313378313320657461203978396b6f207461756c616b20657265206f68696b6f616b20646972612e205478616e64616b612c206e6f726b2062657265206b6f6c6f72656b6f206861727269616b206b6f6b61747a656e20646974752068757473696b2064617564656e2067757275747a656574616e2e2042656c747a616b206a6f6c617374656e206475206c6568656e20657461206765726f207a757269616b2e0d0a0d0a4a6f6b616c64692062617420657461206765726f20696e6f72656e206861727269656b2061736b61746173756e696b20657a206261647574652068617272692074616c646520686175207461756c6174696b206b656e747a656e2064612028707265736f2065676974656e2064697261292e204a6f6b616c646920626174206c6567657a206b616e706f6b6f612064612061726572696f6172656e206861727269616b206b656e6475746120657265206e6f72626572652074616c6465612061736b61746173756e696b20676162652067657261747a656e20626164612e0d0a0d0a4a6f6b616c617269206269656b20626174612062657374656172656e206f737465616e207061736f2065676974656e20626164757465206a6f6b6f612062756b6174752064612065746120656d6169747a61207a656e6261747a656e2064613a2050756e7475206e65757472616c616b202844616d652920626574652065676974656e20646972612c206574612068696c64616b6f206861727269616b206b656e64752028707265736f206567696e292e205465727269746f72696f2062656c747a6120657461207a75726961207a656e6261747a656e2064612c206b6f6c6f726520686f7272656b696e20696e67757261747574616b6f2070756e74752068757473616b206b656e206265737465616b20707265736f206567696e64616b6f206861727269616b2c20616c656769612e0d0a0d0a4765686961676f206a616b6974656b6f203c6120687265663d22687474703a2f2f7777772e676f7a6f726f2e6f72672f696b6173692f6575736b6172617a2f22207461726765743d226e6577223e476f20696b617374656b6f206269646520696e746572616b7469626f613c2f613e, 'Y', '2006-08-15 16:47:03'),
(533, 19, 0x4e6f6e206175726b697475206469747a617a6b656e20476f2077656267756e65206765686961676f3f, 'Y', '2006-04-25 02:21:55'),
(534, 19, 0x447261676f6e203c6120687265663d222f6c696e6b732e706870223e6c6f747572616b3c2f613e206f727269616e, 'Y', '2006-04-25 02:21:55'),
(535, 19, '', 'Y', '2006-12-29 00:39:59'),
(536, 19, 0x4a6f6b6f20616d61696572612e204a6f6b6f6172656e20617a6b656e2066617365612c2074616c6465616b20657261736f747a656b6f206d7567696d656e6475206765686961676f2065676974656e20657a20646972656e65616e2c20736f696c696b206a616461206461676f656e207465727269746f72696f612068616e6469747a656b6f206d7567696d656e647572696b206f6e656e616b2e, 'Y', '2006-05-13 01:10:26'),
(537, 19, '', 'N', '2006-12-29 00:39:59'),
(1035, 5, 0x4368696e6f6973202873696d706c696669e92920287574662d3829, 'Y', '2006-04-29 04:31:14'),
(727, 19, 0x4a6f6b6f20686f6e656e20657a617270656e616b202573657a746162616964616e2573206a617272692064697261, 'Y', '2006-04-30 19:30:15'),
(1029, 19, '', 'Y', '2006-12-29 00:39:59'),
(1034, 19, 0x4b6174616c756e69657261, 'Y', '2006-04-30 19:30:37'),
(539, 19, '', 'Y', '2006-12-29 00:39:59'),
(541, 19, 0x44656e626f72612061676f72747520657461206765726f2c206a6f6b6f206261742062657270697a746561206461676f3f, 'Y', '2006-04-30 19:32:32'),
(542, 19, 0x457a2e203c693e4d65736564657a2068617369207a757265206a6f6b6f616b3c6120687265663d222f6661712e7068703f726561643d74266361743d3536223e64656e626f7261206d7567612065676f6b69656b696e3c2f613e213c2f693e, 'Y', '2006-04-30 19:32:32'),
(545, 19, '', 'Y', '2006-12-29 00:39:59'),
(1018, 19, 0x45736c6f62616b69657261, 'Y', '2006-04-30 19:37:02'),
(1023, 19, 0x52756d616e69657261, 'Y', '2006-04-30 19:37:02'),
(1028, 19, 0x48656272656f61, 'Y', '2006-04-30 19:37:02'),
(1030, 19, 0x426965746e616d657261, 'Y', '2006-04-30 19:37:02'),
(1031, 19, 0x5365726269657261, 'Y', '2006-04-30 19:37:02'),
(1032, 19, 0x4772656b657261, 'Y', '2006-04-30 19:37:02'),
(1033, 19, 0x556b72616e69657261, 'Y', '2006-04-30 19:37:02'),
(1035, 19, 0x5478696e617461727261202873696e706c6966696b617475612920287574662d3829, 'Y', '2006-04-30 19:37:02'),
(538, 19, 0x4174617269206861727269206261742065646f2074616c6465206261742068696c747a656b6f206d656861747375612064612e2048617272692065646f2074616c646520686f6e656b2061736b61746173756e2062616b617272612064752e2048617272692065646f2074616c646520686f726920224174617269616e22206461676f656c612065736174656e2064612e0d0a41757272657a2061757272656b6f206a6f6c617365616e20224174617269222065736174656120696e6f697a2065676974656e2064656e207a65726261697420657461206564756b617a696f206f6e656b6f612064612c206261696e6120657a20646120626568617272657a6b6f612e204e6f726d616c65616e206a6f6b616c617269656b206573616e20616c6120657a2065726162616b69747a656e2064757465206a6f6b6f6172656e20686173696572616e2e204972616b6173746572616b6f616e2065646f2068616e64696361702068616e646964756e206a6f6b6f6574616e207a656e747a757a6b6f6120646972756469207a757269616b2062656c747a617269206c6167756e747a6561206174617269616b20616269736174757a2e0d0a53617265616e206a6f6c617374656e20617269207a6172656c6120226174617269222065736174656120676568696567697a6b6f61206469727564692e, 'N', '2006-04-30 19:44:48'),
(540, 19, 0x4b6f20626174206574656e67616265206572726570696b61747a656e2064656e2068617272692062616b617272656b6f2068617272617061747a65612064612e204869747a657a206869747a2022657465726e697461746561222e, 'Y', '2006-05-03 23:26:30'),
(546, 19, 0x4b79753a206861736962657272692064656e2065646f206d6169737520657a2064656e2065646f6e6f72656e206d61696c612e204b7975206d61696c616b20333074696b203165726120646f617a2c20696e646172747375656e6120312064656c6172696b2e203330206b79752064697475656e206e6f726e61697420617261756b6120696b6173692065746120756c657274752064697475656e206e6f72626169742064612c206261696e6120657a206475206f7261696e64696b207061727469646172696b206a6f6c617374752e204b7975206d61696c616b20657a2064697261206f736f20666964616761727269616b203130206b797572617274652c206f726475616e206a6f6b616c617269616b203c6120687265663d222f6661712e7068703f726561643d74266361743d3323456e7472793339223e64616e3c2f613e206a6f6b616c61726920626174656b696e206a6f6c617374752064657a616b6520392068617272696b6f203c6120687265663d222f6661712e7068703f726561643d74266361743d33353723456e7472793937223e68616e64696361703c2f613e2062617420657a617272697a2e, 'Y', '2006-05-13 00:53:50'),
(547, 19, '', 'Y', '2006-12-29 00:39:59'),
(548, 19, 0x44616e3a20226d61697375206d61696c61222e2044616e206d61696c616b20316574696b2039726120646f617a2c207a656e62616b696120676f7261206a6f616e206168616c61206a6f6b616c6172696120696e64617274737561676f612064612e20352044616e20616d61746575722064656e206a6f6b616c6172692062617420312044616e2070726f666573696f6e616c206a6f6b616c61726920626174656e20696461727261206475656c612065736174656e2064612e202850726f666573696f6e616c656b20657a20646974757a7465203c6120687265663d222f6661712e7068703f726561643d74266361743d3323456e7472793338223e6b79753c2f613e206d61696c616b29, 'Y', '2006-05-03 23:26:30'),
(549, 19, 0x5a656e626174206f706f72206567756e20646974757420447261676f6e207a65726269747a617269616e3f, 'Y', '2006-05-03 23:26:30'),
(550, 19, 0x47656869656e657a20333020757274656b6f2e2048696c6162657465726f20322e35206567756e2067656869747a656e207a61697a6b696f207a757265206b6f6e74756172692e20447261676f6e207a656269747a617269616e206265727269612062617a617261203134206567756e656b696e20686173696b6f207a6172612e, 'Y', '2006-05-03 23:33:34'),
(551, 19, 0x5a6572206573616e206e61686920647574652065676f657261206f7272696b6f20656c656d656e7475656b3f, 'N', '2006-05-03 23:33:34'),
(552, 19, 0x486f6e61203c6120687265663d222f7374617475732e706870223e65676f657261206f7272696b6f3c2f613e20676f696b6f207461756c616b6f20656c656d656e7475656e20617a616c70656e206c61627572206261743a3c756c3e0d0a3c6c693e3c623e497a656e613c2f623e2045726162696c747a61696c656172656e202262656e6574617a6b6f2220697a656e612c206572656d75206c69627265612064612e0d0a3c6c693e3c623e45726162696c747a61696c65204944613c2f623e2045726162696c747a61696c65616b2061756b657261747574616b6f207361696f20697a656e612e20457a206461676f20616c6461747a6572696b2e0d0a3c6c693e3c623e4a6f6c617374656b6f2070726573743f3c2f623e2042616c697a6b6f206175726b617269656e747a617420696e666f726d617a696f612e204572656d75206c69627265612e0d0a3c6c693e3c623e4d61696c613c2f623e205a65726269747a617269616e206c6f72747574616b6f206d61696c612e205a65726269747a617269616b20657a61727269612e0d0a3c6c693e3c623e4d61696c61206f68617272613c2f623e20496e666f726d617a696f20676568696761727269612c20616469626964657a204e6f726b2062657265206b6c7562656162206c6f72747574616b6f206d61696c612e204572656d75206c69627265612e0d0a3c2f756c3e, 'N', '2006-05-09 23:36:36'),
(553, 19, 0x4e6f697a2065676974656e20647520626568657261206e6972652065726c6f6a75616b3f, 'Y', '2006-05-03 23:33:34'),
(554, 19, 0x5a7572652065726c6f6a75616b203c623e736f696c696b3c2f623e207a757265207478616e64612064656e65616e2065676974656e206475206265686572612e0d0a0d0a457a206461206d75676974756b6f3a0d0a3c756c3e3c6c693e7a757265206175726b6172696172656e207478616e64612064656e65616e3c2f6c693e3c6c693e7a757265203c6120687265663d222f6661712e7068703f726561643d74266361743d353623456e7472793631223e6c6f2065676974656b6f2064656e626f72616e203c2f613e3c2f6c693e3c6c693e7a757265203c6120687265663d222f6661712e7068703f726561643d74266361743d353623456e7472793636223e6f706f72726574616e3c2f613e3c2f6c693e3c6c693e61737465627572756574616e2028686f727265616c612061756b657261747520626164757a7565203c6120687265663d222f6661712e7068703f726561643d74266361743d33353723456e7472793434223e6a6f6b6f20676f6e62697465616e3c2f613e293c2f6c693e3c2f756c3e, 'N', '2006-05-09 23:12:04'),
(555, 19, 0x4e6f6c6120696b757369206469747a617a6b65742053474620666974786174656769616b3f, 'N', '2006-05-03 23:33:34'),
(556, 19, 0x4861696e6261742070726f6772616d612064617564652065736b75726167617272692053474620666974786174656769616b20696b757369206168616c20697a6174656b6f2e2041756b657261206f6e20626174203c6120687265663d22687474703a2f2f7777772e72656e652d67726f74686d616e6e2e64652f6a61676f2f223e4a61676f3c2f613e204a61766120476f2062657a65726f612064612e0d0a0d0a4272697469736820476f204173736f63696174696f6e2064656c616b6f616b2062616475203c6120687265663d22687474703a2f2f7777772e62726974676f2e6f72672f676f70637265732f676f7063726573312e68746d6c23732d76696577223e736f667477617265207a657272656e64613c2f613e20696e74657265736761727269206261742e0d0a0d0a534746616b20696b757374656b6f2070726f6772616d61206261742064757a756e65616e2c207a757265206e6162696761747a61696c6561206b6f6e66696775726174752064657a616b657a7520276170706c69636174696f6e2f782d676f2d73676627206d696d65206d6f74612070726f6772616d6120686f7272656b696e206972656b692064657a616e2c20657461206b6c696b2062616b617220626174657a206972656b696b6f207a61697a752e, 'N', '2006-05-03 23:36:37'),
(557, 19, 0x4e6f6c6120686173692064657a616b65742070617274696461206265727269206261743f, 'Y', '2006-05-03 23:36:37'),
(558, 19, 0x4861696e626174206d6f64752064617564652070617274696461206261742068617374656b6f3a0d0a3c756c3e3c6c693e4f6e61727475203c6120687265663d2277616974696e675f726f6f6d2e706870223e69747861726f6e2067656c616e3c2f613e2065736b7572616761727269206461676f656e207061727469646172656e206261742e0d0a0d0a45726162696c69206d65746f646f20686175206175726b61726920626572726920626174656e2062696c612062617a6162696c747a612e204c6568656e62697a692c206567696e206b6c696b206d656e756b6f203c6120687265663d222f77616974696e675f726f6f6d2e706870223e69747861726f6e2067656c613c2f613e206c6f747572616e2e2042696c617475207a75726520677573746f6b6f612064656e207061727469646172656e206261742c206567696e206b6c696b20657a6b657272657261206461756b616e2022696e666f2220626f746f69616e2e204f7272696172656e20626568656b616c6465616e20706172746964616e20686f7272656e2078656865746173756e616b20696b7573696b6f20646974757a752e205061727469646120686f7269206a6f6c61737475206e61686920626164757a752c207a6170616c647520226a6f6c617374752220626f746f69612e3c2f6c693e3c6c693e45736b65696e69207061727469646120626174203c6120687265663d2277616974696e675f726f6f6d2e706870223e49747861726f6e2067656c616e3c2f613e2e0d0a0d0a3c6120687265663d2277616974696e675f726f6f6d2e706870223e69747861726f6e2067656c616e3c2f613e20657a2062616461676f207a75726520677573746f6b6f207061727469646172696b2c207a756b207a65756b206a617272692064657a616b657a752065736b61696e747a61206261742e20486f727265746172616b6f206f7272696172656e20626568656b616c6465616e206461676f656e20666f726d756c6172696f6120626574652c20207a6170616c6475202267656869747520706172746964612220626f746f6961206574612069747861726f6e2e204567756e206261747a756b2062617275206a6f6c617365616e2061726974756b6f207a6172612e0d0a0d0a3c6c693e476f6e626964617475207a757265206c6167756e616b2e0d0a42657374652065726162696c747a61696c6520626174656e2065726162696c747a61696c652049442d6120626164616b697a75206d656e756b6f203c6120687265663d222f6d6573736167652e7068703f6d6f64653d496e76697465223e676f6e6269646174753c2f613e206c6f747572612065726162696c697a20676f6e6269646174752064657a616b657a752e2042657465207a75726520677573746f6b6f2061756b6572616b2065746120626964616c692e205a757265206175726b617269616b206a6f6b6f2061756b6572616b20616c64617475206469747a617a6b6520686f7272656c61206e61686920626164752e0d0a0d0a42616461676f20657265202265726162696c747a61696c652068617520676f6e62696461747522206c6f74757261206261742065726162696c747a61696c652067757a7469656e2066697478616e2e204c6f7475726120686f6e656b2061757272656b6f6172656e2062657264696e612065676974656e2064752c206261696e6120617a6b617272616b6f203c2f6c693e0d0a3c2f756c3e, 'N', '2006-05-09 23:13:18'),
(559, 19, 0x4e6f6c612065676974656e206469747574206d7567696d656e6475616b20706172746964616e3f, 'Y', '2006-05-04 00:46:11'),
(560, 19, 0x3c6120687265663d222f7374617475732e706870223e45676f6572613c2f613e206f727269616e20626164612070617274696461207a657272656e6461206261742c207a757265207478616e64612064612070617274696461206861756574616e2e205061727469646172656e207a656e62616b69616e206b6c696b206567696e6461207061727469646120696b7573696b6f2064757a752e0d0a0d0a506172746964612062617420696b757374656e207a617564656c612c20686172726920626174206a617272692064657a616b657a752068757473696b206461676f656e206c656b752062617465616e206b6c696b206567696e64612e205a757265206a6f6b616c6469616b206175726b6172696172656e206861727269616b2068696c747a656e20626164697475207a65726269747a617269616b206b656e64756b6f2064697475206175746f6d6174696b6f6b692e2050617361747a656b6f2065646f2045747369747a656b6f207461756c6172656e20626568656b616c6465616e2064617564656e206c6f747572616b2065726162696c692e0d0a0d0a506172746964612062657272697a74656e20646120686172726961206a6172747a6572616b6f616e2c2070617361747a6572616b6f616e2065646f2065747369206567697465616e2c207a6170616c647520626964616c6920626f746f696574616b6f20626174207a7572652061756b6572612062657272657374656b6f2065646f207a6170616c64752061747a65726120626f746f696120657269747a697a20616c6461747520626164757a752e, 'Y', '2006-05-04 00:46:11'),
(561, 19, 0x5a656c616e20657a61626174752064657a616b6574206861736974616b6f2070617274696461206261743f, 'Y', '2006-05-04 00:46:11'),
(562, 19, 0x48616d617267617272656e206d7567696d656e647572617274652022657a616261747522206c6f7475726120626174206167657274756b6f206461207461756c6172656e20617a7069616e2e20506172746964612062617420686f6e656c6120657a616261747a656e20626164757a7520657a206475207a757265206d61696c616e2065726167696e696b20697a616e676f2e2048616d617267617272656e206d7567696d656e64756120657461206765726f20657a206461676f207061727469646120657a616261747a6572696b2e, 'N', '2006-05-04 01:04:16'),
(563, 19, 0x5a656c616e2062756b61747a656e206475742070617274696461206261743f, 'Y', '2006-05-04 01:04:16'),
(564, 19, 0x3c656d3e5a7572653c2f656d3e207478616e64612064656e65616e206567696e2064657a616b657a7520736f696c696b0d0a3c756c3e0d0a3c6c693e5a75726520657461207a757265206175726b6172696172656e2062692070617361747a65206a6172726169616e2e20686175206461206a6f6b6f206261742062756b61747a656b6f206d6f647520617272756e74612e20486f7272656e206f737465616e2068696c64616b6f206861727269616b206d61726b61747a65612065736b6174756b6f207a61697a752e20486f726920657461206765726f2c20447261676f6e207a65726269747a617269616b207061727469646172656e20656d6169747a61206b616c6b756c6174756b6f206475206574612069726162617a6c6561206e6f7220697a616e2064656e2065726162616b692e3c2f6c693e0d0a3c6c693e2045726162696c692022457473692220626f746f69612e20457473692065676974656e20626164757a7520706172746964612067616c64752064757a752c20657461207a757265206d61696c616e2065726162696e6120697a616e676f2064752e3c2f6c693e0d0a3c6c693e55747a692064656e626f72612061676f72747a656e2e203c656d3e284261696e6120657272756b697a212061756b65726174752061757272656b6f2062696574616b6f20626174293c2f656d3e205a7572652064656e626f72612061676f72747a656e20626164612c20706172746964612067616c64752064757a752c20657461207a757265206d61696c616e2065726167696e6120697a616e676f2064752e2f6c693e0d0a3c2f756c3e, 'N', '2006-05-04 01:04:16');
INSERT INTO `Translations` (`Original_ID`, `Language_ID`, `Text`, `Translated`, `Updated`) VALUES
(567, 19, 0x447261676f6e20476f20536572766572202844475329203c6120687265663d226661712e7068703f726561643d74266361743d3323456e747279313532223e7475726e6f6b613c2f613e20476f20706172746964616b206a6f6c6173746561206261696d656e747a656e206475656e2074786f6b6f206261742064612e20476f2065506f7374617a206a6f6c61737465612062657a616c6120646162696c2e0d0a0d0a4a6f6b616c617269656b206e6f726d616c65616e20626f7374206d7567696d656e647520696e677572752065676974656e20646974757a746520617374656b6f2e204f6e646f72696f7a2c20706172746964616b206861696e626174206173746520697261756e2064657a616b6574653b2065746120447261676f6e20476f2053657276657272656b206c616e20617374756e612062657265206761696e20686172747a656e2064752c206265737465616b2062657374652c2064656e626f726172656e206b6f6e74726f6c61206572616d617465612c20657461206d61696c6120696e666f726d617a696f2065726162696c676172726920626174206b616c6b756c61747a65612e0d0a0d0a476f203c6120687265663d226661712e7068703f726561643d74266361743d3323456e747279313533223e64656e626f72612065727265616c65616e3c2f613e206a6f6c6173746561203c7374726f6e673e657a3c2f7374726f6e673e20646120706f7369626c65612068656d656e2e2044656e626f72612065727265616c65616e206a6f6c61737465616b206573616e206e616869206475207a7572652070617274696461206f726475206265746520696e67757275616e2062756b6174756b6f2064757a756c612e2044656e626f72612065727265616c65616e206a6f6c6173746561206e61686961676f20626164757a752c203c6120687265663d22687474703a2f2f73656e736569732e786d702e6e65742f3f476f53657276657222207461726765743d225f626c616e6b223e6265737465207a65726269747a617269206261747a756b3c2f613e20646974757a752065736b7572612e20416469626964657a203c6120687265663d22687474703a2f2f6b67732e6b69736569646f2e636f6d2f22207461726765743d225f626c616e6b223e4b47533c2f613e2065646f203c6120687265663d22687474703a2f2f70616e64612d6967732e6a6f796a6f792e6e65742f22207461726765743d225f626c616e6b223e4947533c2f613e2e0d0a0d0a486f7274617a206761696e2c204447532d6b2062616469747520476f61726920657461207a65726269747a6172696172692062657261726920627572757a6b6f3c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f70686f72756d2f223e657a7461626169646120666f726f616b3c2f613e2e, 'N', '2006-05-04 01:04:16'),
(568, 19, 0x4f7261696e64696b20657a2064616b6974207a65696e2064656e206e6972652068617369657261206d61696c612e2e2e, 'Y', '2006-05-04 01:04:16'),
(569, 19, 0x476f206d756e6475616e206265727269612062617a617261206c6974656b65656e61206461207a757265206d61696c612068617520697a617465610d0a3c756c3e0d0a0d0a3c6c693e203330206b79753a2061726175616b20626164616b697a6b697a753c2f6c693e0d0a3c6c693e2032392d3238206b79753a2070617274696461206261747a756b206a6f6c61737475206261646974757a753c2f6c693e0d0a3c6c693e32372d3236206b79753a20686173696265727269656e206175726b612070617274696461206261747a756b2069726162617a69206261646974757a753c2f6c693e0d0a3c6c693e32352d3232206b79753a20686173696265727269616b20657a20646972656e206a6f6b616c617269656e206175726b612070617274696461206261747a756b2069726162617a69206261646974757a753c2f6c693e0d0a3c2f756c3e0d0a0d0a2248617369626572726920617572726572617475656e747a6174222062657374652061756b65726120626174203c6120687265663d687474703a2f2f7777772e6d6f746f7273636f70652e636f6d2f646f6a6f2f74657374732f207461726765743d5f626c616e6b3e617a7465726b65746174786f206861753c2f613e206567697465612064612c206574612062657274616e206c6f72747574616b6f20656d6169747a61206a6172747a65612e, 'N', '2006-05-14 15:57:06'),
(570, 19, 0x447261676f6e2064656e626f72612061756b6572616b, 'Y', '2006-05-04 01:04:16'),
(571, 19, 0x5a6567616974696b206461676f206f706f72206567756e206b6f70757275616e206d756761206261743f, 'Y', '2006-05-04 01:04:16'),
(572, 19, 0x4d75676172696b20657a2062616c65676f2c207a756b2065646f207a7572652061756b617269616b206574656e67616265206861727475207a656e657a616b657465206f706f72206567756e20626174207061727469646172656e2064656e626f7261206d75676120656b696469747a656b6f2c20616c64657a20617572726574696b206e65676f7a6961747574616b6f2064656e626f726120657a617270656e616b207a656e747a756761626520626968757274757a2e20486f727265676174696b20447261676f6e206f706f7272616b20686f6e656c61206b75646561747a656e20646974753a0d0a3c756c3e0d0a3c6c693e4f706f7272616e206775747869656e657a2037206567756e656b6f616b20697a616e676f20646972613c2f6c693e0d0a3c6c693e4a616461206861736974616b6f206f706f727265616b203c7374726f6e673e657a696e3c2f7374726f6e673e2064697261206574656e213c2f6c693e0d0a3c2f756c3e, 'N', '2006-05-09 23:16:00'),
(573, 19, 0x5a65696e747a756b20646972612046415120686f6e69206567696e64616b6f20617a6b656e20616c64616b6574616b3f, 'Y', '2006-05-04 01:09:43'),
(575, 19, 0x5a6572676174696b20626568617220647520447261676f6e207a65726269747a617269616b206e6972652065506f7374612068656c62696465613f, 'Y', '2006-05-04 01:09:43'),
(576, 19, 0x506173616869747a2062657272692062617420626964616c69206168616c20697a6174656b6f20287a756b2065736b6174757461292e2047616c64752064757a756e65616e20706173616869747a612065736b61747a656e20626164757a75203c656d3e45726162696c747a61696c652070657266696c65616e20676f72646574616b6f3c2f656d3e2065506f7374612068656c62696465726120706173616869747a20626572726920686f726920626964616c747a65612065726162696c747a61696c6520617574656e74696b617a696f2073697374656d6120657272617a206261742064612e0d0a0d0a447261676f6e207a7572652070726962617475746173756e617269206265676972756e65612064696f3a20457a207a61697a752065736b61747520676162656b6f206d657a7572696b20626964616c696b6f2e20506f7374612068656c62696465616b20657a20646175646520696b757367616920696e6f72656e747a61742c2065746120657a207a61697a6b696f20696e6f72692073616c64756b6f2e0d0a0d0a447261676f6e207a65726269747a617269616b2065506f7374612068656c6269646561203c656d3e657a3c2f656d3e20736172747a6561206261696d656e747a656e2064752e206b61737520686f6e6574616e2c206d65736564657a203c656d3e657a206168617a7475207a75726520706173616869747a613c2f656d3e21, 'Y', '2006-05-04 01:09:43'),
(577, 19, 0x5a656c616e20646162696c2042796f2d796f6d69206a61706f6e69617272612064656e626f72612073697374656d613f, 'Y', '2006-05-04 01:32:44'),
(578, 19, 0x4a6f6b616c61726920626174656e2064656e626f7261206e6167757369612061676f72747a656e2064656e65616e2c2064656e626f7261206d756761747520626174206475206d7567696d656e6475203c7374726f6e673e62616b6f69747a656b6f3c2f7374726f6e673e2e20486f7274617a206761696e20626164697475206861696e6261742074617274653a0d0a3c756c3e0d0a3c6c693e44656e626f7261206261727275616e206a6f6c617374656e20626164752c20646f6e626f7261206b6f6e74616b657461206265726520686173696572617261206275656c7461747a656e2064612c20657461207461727465206b6f707572756120657a20646120616c6461747a656e3c2f6c693e0d0a3c6c693e44656e626f72617a206b616e706f206d756769747a656e20626164752c207461727465206b6f7075727520626174206775747a6961676f20697a616e676f2064752c206574612064656e626f7261206b6f6e74616b657461206265727269726f20686173696b6f2064613c2f6c693e0d0a3c2f756c3e0d0a5461727465616b20657472612064656e626f72612061676f72747a656e207a61696f6e65616e2c206a6f6b616c617269616b20706172746964612067616c64752064752e, 'N', '2006-05-04 01:32:44'),
(579, 19, 0x5a656c616e20646162696c2042796f2d796f6d69206b616e616469617272612064656e626f72612073697374656d613f, 'Y', '2006-05-04 01:32:44'),
(580, 19, 0x4a6f6b616c61726920626174656e2064656e626f7261206e6167757369612061676f7274752064656e65616e2c2064656e626f7261207a656861747a6120626174206475203c7374726f6e673e6861696e6261742068617272693c2f7374726f6e673e206a6f6c617374656b6f2e0d0a0d0a416469626964657a3a203130206861727269203135206567756e656b6f20657065616e3a0d0a4a6f6b616c617269616b20626572652068616d617267617272656e2068617272692064656e626f72616e206a6172747a656e20626164752c2064656e626f7261206b6f6e74616b657461206265727269726f20686173696b6f20646120286265737465203135206567756e203130206861727269206a6172747a656b6f292e0d0a0d0a4a6f6b616c617269616b20657a20626164752064656e626f72616e206a6f6c617374656e2c20706172746964612067616c64752064752e, 'N', '2006-05-04 01:32:44'),
(581, 19, 0x5a656c616e20646162696c204669736865722064656e626f72612073697374656d613f, 'Y', '2006-05-04 01:32:44'),
(582, 19, 0x4a6f6b616c61726920626174656b206d7567696d656e647520626174206567696e20657461206765726f202264656e626f726120676568696761727269222062617420676568697475207a61696f2064656e626f7261206e6167757369617269202867656869656e657a6b6f202264656e626f7261206e61677573692220626174207a6568617a74656e20646120657265292e0d0a0d0a44656e626f72612061676f72747a656e207a6169756f6e65616e2c20706172746964612067616c64752064752e, 'N', '2006-05-04 01:32:44'),
(583, 19, 0x5a65696e20646120226c6f2064656e626f72612220657461204669736865722064656e626f726172656e20617274656b6f2065726c617a696f613f, 'Y', '2006-05-04 01:32:44'),
(584, 19, 0x4164696269646520626174656b696e20617a616c647574613a0d0a0d0a417374656b6f2033206d7567696d656e64752062617461736265737465206e61686920646974757a752c2065746120657a2064757a752070617274696461206c6172756e626174612065646f206967616e64656574616e2061676f72747520646164696e2e0d0a0d0a28372d32296567756e206461756465202a20283234206f726475202d2039206f726475206c6f746172616b6f29202f2033206d7567696d656e6475203d203235206f72647520676568696761727269206d7567696d656e64756b6f206574612065726c6f6a75612061737465627572756574616e2064657367616974757461, 'Y', '2006-05-04 01:32:44'),
(585, 19, 0x5a6572206461206c6f746172616b6f2064656e626f72613f, 'N', '2006-05-04 01:32:44'),
(586, 19, 0x224c6f746172616b6f2064656e626f7261222067697361207a656861747a7574616b6f207461727465616e207a757265206a6f6b6f6574616b6f2065726c6f6a75616b2067656c64692064617564652c206574612067657261747a656e207a61697a756e2064656e626f726120657a20646f61206265686572612e, 'N', '2006-05-04 01:32:44'),
(587, 19, 0x5a6572676174696b206567696e206475206e6972652065726c6f6a75616b2039206f7264756574616b6f2073616c746f61203130206d696e75747574616e3f, 'Y', '2006-05-04 01:32:44'),
(588, 19, 0x45726c6f6a75616b2073616c746f6b6120696b737574656e206261646974757a752c20686f62652064757a75206c6f20617075722062617420656769746561203b2d290d0a0d0a45726c6f6a75616b2033206567756e656b6f2064656e626f72612064757a756c612065736174656e206475656e65616e20686175206573616e206e6168692064753a204261646974757a7520332a2832342d39293d3435206f726475206c6f746172616b6f20657a2064656e2064656e626f72616e2e0d0a0d0a45726c6f6a75616b6f2032206567756e20657461203134206f72647520646974757a756c612065736174656e206475656e65616e20686175206573616e206e6168692064753a204261646974757a7520322a2832342d39292b31343d3434206f726475206c6f746172616b6f20657a2064656e2064656e626f72616e2e, 'Y', '2006-05-04 01:32:44'),
(589, 19, 0x5a6572676174696b20657a696e2064757420616c64617475206e697265206c6f746172616b6f2064656e626f7261206e6972652065726162696c747a61696c652070657266696c65616e3f, 'Y', '2006-05-04 01:32:44'),
(590, 19, 0x5a757265206c6f746172616b6f2064656e626f7261206567756e65616e20686972747520616c64697a20616c6461747a65616b207a757265206a6f6b6f6574616b6f2065726c6f6a75616b2067757a74697a2067656c6469747a6561206261696d656e64756b6f2064697a756c616b6f2e204f7261696e2064656c6120677574786920616c6461747520657a20626164757a7520616c646174752064657a616b657a7520736f696c696b2e, 'Y', '2006-05-04 01:32:44'),
(591, 19, 0x4e6972652065726c6f6a75616e2064656e626f7261206765686974752064657a616b65743f, 'Y', '2006-05-09 23:15:27'),
(592, 19, 0x457a, 'N', '2006-05-04 01:32:44'),
(593, 19, 0x4e697265206175726b6172656e2065726c6f6a75616e2064656e626f7261206765686974752064657a616b65743f, 'Y', '2006-05-04 01:32:44'),
(594, 19, 0x457a, 'N', '2006-05-04 01:32:44'),
(595, 19, 0x5a65722064697261206f706f72206567756e616b3f, 'Y', '2006-05-04 01:32:44'),
(596, 19, 0x5a7572652065726c6f6a75616b2067656c64697475206469747a617a6b657a75206f706f72726574616e207a617564656c612065646f2069747861726f74656e20657a207a656e75656e20626964616c6972656e20626174207a757265206a6f6b6f656b696e206a6172726169747a656120657a20626164697a75206261696d656e747a656e2e0d0a0d0a4d65736564657a203c6120687265663d222f656469745f7661636174696f6e2e706870223e48617369206f706f7272616b3c2f613e206c6f74757261206a61727261697475207a757265203c6120687265663d222f75736572696e666f2e706870223e65726162696c747a61696c6520696e666f726d617a696f3c2f613e206f727269616e207a757265206f706f7272616c64696120697261676172747a656b6f2e, 'N', '2006-05-04 01:32:44'),
(597, 19, '', 'Y', '2006-12-29 00:39:59'),
(598, 19, 0x44656e626f7261206e6167757369612061676f7274752064656e65616e20657a6172747a656e20646972656e2064656e626f7261206d7567616b2e, 'Y', '2006-05-04 01:32:44'),
(599, 19, 0x5a65696e206f726475207a6f6e616c64652065726162696c747a656e206461206e697265206c6f2064656e626f726172616b6f3f, 'Y', '2006-05-04 01:32:44'),
(600, 19, 0x447261676f6e656b207a757265206f726475206c6f6b616c612028657461206e6567752f7564616b6f206f7264757465676920616c64616b657461292065726162696c747a656e2064752c207a756b207a65756b207a7572652065726162696c747a61696c652070657266696c65616e20657a617272692064757a756e612e, 'Y', '2006-05-04 01:32:44'),
(601, 19, '', 'Y', '2006-12-29 00:39:59'),
(602, 19, 0x53474620536d6172742047616d6520466f726d742064656c616b6f6172656e206c61627572647572612064612c20474f20286574612062657374656c616b6f2920706172746964616b20676f726465747a656b6f2066697478617465676920666f726d61727475612e2058656865746173756e206765686169676f72616b6f20696b75736920534746204646205b345d20657374616e646172726172656e203c6120687265663d22687474703a2f2f7777772e7265642d6265616e2e636f6d2f7367662f22207461726765743d6e65773e657370657a6966696b617a696f206f66697a69616c613c2f613e, 'Y', '2006-05-13 01:06:10'),
(603, 19, 0x5a6572676174696b20657a2064697420447261676f6e2065736174656e206e697265206175726b6172696172656e2065506f7374612068656c62696465613f, 'Y', '2006-05-04 01:42:15'),
(604, 19, 0x447261676f6e207a757265206175726b6172696172656e2028657461207a757265292070726962617475746173756e6120626162657374656e206475656c616b6f2e0d0a0d0a45726162696c747a61696c65616b20626572652066697478616e206a6172726974616b6f61206261696e6f206765686961676f206a616b696e206e61686920626164757a75206265726172692067616c646574752062656861726b6f2064696f7a752e, 'Y', '2006-05-04 01:42:15'),
(605, 19, 0x5a656c616e2073617274752064657a616b6574207465737475612053474620666974786174656769616e3f, 'Y', '2006-05-04 01:42:15'),
(987, 19, 0x447261676f6e207a65726269747a617269616e20626572726961206e61697a2c207a65696e206461206a6172726920626568617220647564616e2068617369657261206d61696c613f3f, 'Y', '2006-05-04 01:44:41'),
(988, 19, 0x4b6f6e74752062657272692062617420736f72747a6572616b6f616e202c204447532d6b2062657374652065646f6e6f6e64696b206c6f72747574616b6f206d61696c6172696b2064757a756e2067616c646574756b6f2064697a752e2028426573746520476f207a65726269747a61726920626174656b6f612c207a7572652074616c6465616e206c6f72747574616b6f612065646f207a757265206865727269616c64656b6f20476f20656c6b61727465616b206a617272692064697a756e612920736172747520626573746572696b206761626520657461204447532d6b20444753206d61696c6172612069747a756c696b6f2064752e, 'N', '2006-05-04 01:44:41'),
(989, 19, 0x4761727261747a6972696b20616c206475206d61696c612064657365676f6b6920626174656b696e2068617374656e2062616e61697a3f, 'Y', '2006-05-04 01:44:41'),
(990, 19, 0x457a206475206761727261747a6920676568696567692e203c656d3e2845726162696c747a61696c65206261747a75656e747a61742062616475206761727261747a6920697a756761727269612c206265737465206261747a75656e747a617420657a20647520696e6f6c616b6f2067617272616e747a6972696b293c2f656d3e205a757265206d61696c61206265726568616c612065676f6b6974756b6f206461207a75726520706172746964612070756e7475616761727269656e20656d6169747a656e20617261626572612e20426f7374207061727469646120657461206765726f207a757265206d61696c612065676f6b6972612061736b6f2068757262696c64756b6f207a6172612e0d0a0d0a3c656d3e4e61686974613c2f656d3e207361727520626164757a75206d61696c612062617875656769206261742062657374652065726162696c747a61696c65616b20697a6f72726174756b6f20646974757a752c20657461206d6572657a6920657a20647574656e206265686572616b6164612062617420737566726974756b6f20647574652062657265206d61696c6b6574616e2e20676f676f72617475206265726169656b696e206265727269726f206a6f6c617374656b6f20676f676f6120697a616e207a656e657a616b656c612e2e2e0d0a0d0a447261676f6e206d61696c612065726162696c6761727269616b206b616c6b756c61747a656e2073616961747a656e2064612c206261696e61207a756b20657265206c6167756e64752062656861722064757a753a204d65736564657a20657a206a61727269207a75726520686173696572616b6f206d61696c61207a7572652062656e6574616b6f206d61696c6174696b206f736f20757272756e2e2045736b657272696b2061736b6f21, 'N', '2006-05-14 15:58:23'),
(991, 19, 0x6e697265206175726b6172696172656e2065726c6f6a7561206175727265726120646172726169206e697265612067656c6469206461676f656e65616e3f, 'Y', '2006-05-04 02:00:54'),
(992, 19, 0x5a757265207478616e646120626164613a20457a2e0d0a0d0a42657265207478616e646120626164613a204261692c20657a20626164612062657265206c6f746172616b6f2064656e626f72612c20657a20626164612061737465627572756120286173746562757275616e2065726c6f6a75616b206175727265726120657a206567697465612061756b657261747520626164757a7565292065746120657a2062616461676f206f706f72726574616e2e, 'Y', '2006-05-04 02:00:54'),
(993, 19, 0x4d7567696d656e647520626174206567696e2064657a616b6574206e6972652065726c6f6a75612067656c6469206461676f656c613f, 'Y', '2006-05-04 02:00:54'),
(994, 19, 0x3c656d3e426574693c2f656d3e206567696e2064657a616b657a75206d7567696d656e6475206261742c206261697461207a757265206c6f746172616b6f2064656e626f72612064656e65616e2c207a757265206f706f72726574616e206574612061737465627572756574616e2e, 'Y', '2006-05-04 02:00:54'),
(995, 19, 0x5a657220646120447261676f6e207a65726269747a6172696b6f2061737465627572756574616b6f2065726c6f6a75613f, 'Y', '2006-05-04 02:00:54'),
(996, 19, 0x506172746964612062617420736f72747a656e2064757a756e65616e2c2061756b657261206261742064757a752c206c6172756e6261746120657461206967616e64656574616e2065726c6f6a75616b2061757272657261203c7374726f6e673e657a3c2f7374726f6e673e206567697465612e, 'N', '2006-05-04 02:00:54'),
(999, 19, 0x457a62657264696e746173756e696b20616c206461676f20302e352070756e7475676174696b203130302070756e7475676174696b2c206574736970656e61676174696b2065646f2065726c6f6a75612061676f72747a6561676174696b20706172746964616b2069726162617a7465616e3f, 'Y', '2006-05-04 02:00:54'),
(1000, 19, 0x447261676f6e206d61696c617269206461676f6b696f6c6120657a206461676f20657a62657264696e746173756e696b2e2069726162617a6974616b6f2070617274696461206261742069726162617a6974616b6f2070617274696461206261742064612c206574612067616c647574616b6f2070617274696461206261742c2067616c647574616b6f2070617274696461206261742e, 'Y', '2006-05-04 02:00:54'),
(1001, 19, 0x5a656c6b616e206b616c6b756c61747a656e20647520447261676f6e207a65726269747a617269616b2064656e626f72613f, 'Y', '2006-05-04 02:00:54'),
(1002, 19, 0x3c656d3e42697374617261747a656e3c2f656d3e2064656e2064656e626f726120756e6974617465207478696b69656e61206f726475612064612e203c656d3e4261726e656b693c2f656d3e2065726c6f6a75616b2035206d696e75747565726f206567756e657261747a656e20646972612e, 'Y', '2006-05-04 02:00:54'),
(1004, 19, 0x5a656c616e206a617264756e20626568617220647520666f726f616e3f, 'N', '2006-05-04 02:00:54'),
(1005, 19, 0x3c6120687265663d22687474703a2f2f7777772e666171732e6f72672f726663732f726663313835352e68746d6c223e4e6574696b65746120676964613c2f613e206972616b7572747a65612061686f6c6b61747a656e2064697a7567752e204769646120686175206170757220626174206c757a65612064612e206261696e61206964656961206861727261706174752064657a616b657a7520666f726f6b6f203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f70686f72756d2f726561642e7068703f663d3426693d3339323626743d33393236223e2068617269206861753c2f613e206972616b757272697a2e, 'N', '2006-05-04 02:00:54'),
(1006, 19, 0x447261676f6e20697475726b6f6465612065736b7572616761727269206461676f3f, 'Y', '2006-05-04 02:00:54'),
(1007, 19, 0x474e55205075626c6963204c6963656e6365202847504c29206c697a656e747a69617065616e2065736b75726174752064657a616b657a75206b6f6465612043565320626964657a203c6120687265663d22687474703a2f2f736f75726365666f7267652e6e65742f70726f6a656374732f647261676f6e676f7365727665722f22207461726765743d5f626c616e6b3e536f75726365666f7267656b6f20447261676f6e206761726170656e2067756e65616e3c2f613e, 'N', '2006-05-04 02:00:54'),
(1008, 19, 0x4e6f6e20657a74616261696461747a656e20646120447261676f6e206b6f64656172656e206761726170656e613f, 'Y', '2006-05-04 02:00:54'),
(963, 19, 0x5a6572206573616e206e6168692064752061747a65616c646520676f727269616b2069747861726f6e2067656c616e3f, 'Y', '2006-05-04 02:03:18'),
(964, 19, 0x226d61696c6120746172746522207a7574616265616e2061676572747a656e2064656e2061747a65616c646520676f72726920686f7272656b206573616e206e616869206475207a757265206d61696c6120657a206461676f656c612065736b61747a656e2064656e206d61696c61207461727465616e2e20457a696e2064757a75207061727469646120686f7269206a6f6c617374752e, 'N', '2006-05-04 02:03:18'),
(631, 19, 0x5a656c616e20657a61626174752064657a616b6574206e69726520706172746964612065736b65696e747a612069747861726f6e2067656c6174696b3f, 'Y', '2006-05-04 02:05:09'),
(632, 19, 0x4567696e206b6c696b203c656d3e7a7572653c2f656d3e20706172746964612065736b65696e747a6172656e2022696e666f2220626f746f69616e2e2041676572747a656e2064656e206f7272696172656e20626568656b616c6465616e2062616461676f207061727469646120657a616261747a656b6f20626f746f69206261742e20496e6f726b20657a20626164752065736b65696e747a61206f6e6172747a656e2061737465206261747a75656e2062757275616e206175746f6d6174696b6f6b6920657a61626174756b6f2064612e, 'Y', '2006-05-04 02:05:09'),
(633, 19, 0x5a6572206461204e696769726964756e207061727469646120706172656b617475613f, 'Y', '2006-05-04 02:06:40'),
(634, 19, 0x3c6120687265663d226661712e7068703f726561643d74266361743d3323456e747279313534223e5061727469646120706172656b617475616b3c2f613e206573616e206e616869206475203c6120687265663d226661712e7068703f726561643d74266361743d33353723456e7472793937223e68616e64696361703c2f613e20676162656b6f2070617274696461206261742065736b61696e692064757a756c612e203c6120687265663d226661712e7068703f726561643d74266361743d3323456e7472793231223e4e69676972693c2f613e206573616e206e616869206475206b6f6c6f72656120617573617a2061756b65726174756b6f2064656c612e, 'Y', '2006-05-04 02:06:40'),
(621, 19, 0x42697374617261747520464151206f736f61206f7272692062616b61727265616e, 'Y', '2006-05-04 15:14:59'),
(622, 19, 0x447261676f6e2074786170656c6b6574616b, 'Y', '2006-05-04 15:14:59'),
(623, 19, '', 'N', '2006-12-29 00:39:59'),
(624, 19, 0x2e2e2e20476f206869747a2074726164697a696f6e616c206261742064612c206a61706f6e696572617a202245736b657272696b2061736b6f20676f6e6269746561676174696b2c20697a616e20736f727465206f6e612122206573616e206e61686920647520677574786920676f7261206265686572612e, 'N', '2006-05-04 15:14:59'),
(625, 19, 0x54786170656c6b6574616b20447261676f6e207a65726269747a617269616e2062657274616e206b7564656174752064616974657a6b653f, 'Y', '2006-05-04 15:14:59'),
(626, 19, 0x457a2c206f7261696e64696b20657a2e, 'Y', '2006-05-04 15:14:59'),
(627, 19, 0x5a6572206573616e206e6168692064752065726162696c747a61696c656172656e2022616b746962697461746561222d6b3f, 'Y', '2006-05-04 15:14:59'),
(628, 19, 0x417a6b656e20626f6c6164616e206a617272692064697475656e206861727269206b6f707572756172656e206572616b75736761727269612064612e0d0a0d0a3220697a61722062657264653a2068617272692061736b6f202868696c65616e203730206261696e6f206765686961676f290d0a497a6172206c6172616e6a6120313a206861727269206261747a756b2028352d37302062697461727465616e2068696c65616e290d0a497a617272696b20657a3a204f736f206861727269206775747869202868696c65616e2035206261696e6f20677574786961676f29, 'Y', '2006-05-04 15:14:59'),
(688, 19, 0x5a6572206461206a6f6b6f2062696b6f69747a613f, 'Y', '2006-05-04 18:49:09'),
(689, 19, 0x4a6f6b6f2062696b6f69747a6172656b696e203c656d3e62693c2f656d3e207061727469646120686173696b6f20646974757a75206175726b6172692062657264696e6172656e206b6f6e7472612e2042617465616e207a75726961207a61726120657461206265737465616e2062656c747a612e2050617274696461206269616b203c6120687265663d226661712e7068703f726561643d74266361743d33353723456e7472793937223e68616e64696361703c2f613e20676162656b6f616b20646972612e, 'N', '2006-05-04 18:49:09'),
(690, 19, '', 'N', '2006-12-29 00:39:59'),
(675, 19, 0x506172746964612062617420686173692064657a616b65742053474620666974786174656769206261742069676f74613f, 'Y', '2006-05-04 18:49:51'),
(676, 19, 0x457a2c206f7261696e64696b20657a2e, 'N', '2006-05-04 18:49:51'),
(671, 19, 0x4d7567696d656e6475616b2065506f7374617a20626964616c747a656b6f2061756b65726172696b20616c206461676f3f, 'Y', '2006-05-04 18:51:37'),
(672, 19, 0x457a2c20657a696e20646974757a75206d7567696d656e6475616b2065506f7374617a20626964616c692e0d0a3c6120687265663d222f223e447261676f6e207765622067756e65616e3c2f613e207361696f6120686173692062656861722064757a75206a6f6c617374656b6f2e, 'Y', '2006-05-04 18:51:37'),
(673, 19, 0x447261676f6e207a65726269747a617269616b2c20616269736174756b6f20616c20646974206e697265207478616e64612064656e65616e3f, 'Y', '2006-05-09 05:27:26'),
(674, 19, 0x4261692c207a757265203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f656469745f70726f66696c652e706870223e65726162696c747a61696c652070726f66696c65616e3c2f613e202265506f7374617a20616269736174752220616b74696261747a656e20626164757a752e, 'Y', '2006-05-09 05:27:26'),
(661, 19, 0x5a6572206573616e206e6168692064752068616e64696361702064656c616b6f616b3f, 'Y', '2006-05-09 05:36:55'),
(662, 19, 0x4d61696c6120657a62657264696e656b6f206175726b617269656b2061646f7374752064657a616b657465202862656861726b6f206c756b657465292c206175726b617269206168756c656e616b202268616e64696361702220686172726920676568696761727269656b696e206861732064657a616c6120706172746964612e2048616e6469636170206861727269616b2c20626572617a2c20626574692062656c747a61726920656d6174656e207a61697a6b696f2c20657461206b6f7075727561206f6e646f2061756b65726174752062616461206a6f6b616c617269656e20617274656b6f206d61696c6120657a62657264696e746173756e6120706172656b6174756b6f2064752e2048616e6469636170206861727269656b696e206a6f6b6f6120696e7465726573676172726961676f6120697a616e676f206461206269656e747a6174206574612069726162617a74656b6f2061756b6572612062657264696e616b20697a616e676f20646974757a74652e0d0a0d0a31397831396b6f207461756c612062617465616e2c2068616e6469636170206861727269206b6f707572752065676f6b6961206d61696c656e2020617274656b6f20657a62657264696e617473756e6172656e2062657264696e612064612e204265737465206e657572726965746172616b6f20447261676f6e207a65726269747a617269616b206b6f707572752065676f6b6961206b616c6b756c6174756b6f2064752e0d0a0d0a54726164697a696f6e616c6b692c2068616e6469636170206861727269616b203c6120687265663d226661712e7068703f726561643d74266361743d3323456e7472793839223e686f7368693c2f613e2070756e74756574616e206b6f6b61747a656e2064697261206b6f707572756172656e20617261626572616b6f20706174726f69207a656861747a616b206a617272616974757a2e20447261676f6e207a65726269747a617269616b206861727269616b206e6f6e616869206a6172747a6561206261696d656e747a656e2064697a752068616c61206572652e0d0a0d0a4b6f6e747574616e20697a616e206a6f6b616c6172692061736b6f6b2068616e6469636170206861727269616b206f68696b6f2070756e74756574616e206a6172747a6561206e61686961676f20647574656c612e2048616e6469636170206861727269616b20656d616e2062617a61697a6b697a752061646f737475206175726b6172696172656b696e206f68696b6f2070756e74756574616e206a617272696b6f20646974757a756e2065646f2065646f7a65696e20746f6b6974616e206a6172747a6561206261696d656e747a656e2064697a756e2e, 'Y', '2006-05-09 05:36:17'),
(663, 19, 0x5a65696e206461206f68696b6f2068616e6469636170206574612068616e64696361702065676f6b696172656e20617274656b6f20657a62657264696e746173756e613f, 'Y', '2006-05-09 05:41:07'),
(664, 19, 0x3c656d3e4f68696b6f2068616e64696361703c2f656d3e2064656c616b6f616b206d61696c6120657a62657264696e746173756e61206475206b6f6e747574616e2028657461207461756c6172656e2074616d61696e6129206861727269206b6f7075727561206b616c6b756c61747a656b6f2e203c6120687265663d226661712e7068703f726561643d74266361743d3323456e74727939223e4b6f6d693c2f613e2d6120302e3520646120706172656b61747520676162656b6f206a6f6b6f6574616e2065746120362e3520706172656b61747574616b6f6574616e2e0d0a0d0a3c656d3e48616e64696361702065676f6b69613c2f656d3e204b6f6d69207461727465207478696b6961676f616b2065726162696c747a656e206469747520282e2e2e2c20312e352c20322e302c20322e352c202e2e2e29206d61696c6120657a62657264696e617473756e207478696b69656b20736f72747574616b6f2069726162617a74656b6f2061756b65726120657a62657264696e746173756e61207a656861747a61676f20706172656b61747a656b6f2e, 'Y', '2006-05-09 05:41:07'),
(665, 19, '', 'N', '2006-12-29 00:39:59'),
(967, 19, 0x4e6f6e206b6f6b61747a656e20646972612068616e6469636170206861727269616b3f, 'Y', '2006-05-09 05:44:42'),
(968, 19, 0x41726175207478696e6174617272656e20617261626572612068616e6469636170206861727269616e206e6f6e616869206a617272692064616974657a6b652e204a61706f6e6961722061726175656e2061726162657261207a6568617a747574616b6f206c656b756574616e206a6172726920626568617220646972612e20426573746572696b206573616e20657a20626164612c206a6f6b616c6172692067656869656e656b206a61706f6e6961722061726175656e2061726162657261206b6f6b61747a65612065737065726f20647574653a0d0a3c756c3e0d0a3c6c693e48617272692062616b617272613a204a6f6b616c617269206168756c656e616b206a6f6c617374656e2064752065746120657a206461204b6f6d6972696b20657a6172747a656e2e3c2f6c693e0d0a3c6c693e322068617272693a204434202b205131363c2f6c693e0d0a3c6c693e332068617272693a204434202b205134202b205131363c2f6c693e0d0a3c6c693e342068617272693a204434202b205134202b20443136202b205131363c2f6c693e0d0a3c6c693e352068617272693a204434202b205134202b204b3130202b20443136202b205131363c2f6c693e0d0a3c6c693e362068617272693a204434202b205134202b20443130202b20513130202b20443136202b205131363c2f6c693e0d0a3c6c693e372068617272693a204434202b205134202b20443130202b204b3130202b20513130202b20443136202b205131363c2f6c693e0d0a3c6c693e382068617272693a204434202b204b34202b205134202b20443130202b20513130202b20443136202b204b3136202b205131363c2f6c693e0d0a3c6c693e392068617272693a204434202b204b34202b205134202b20443130202b204b3130202b20513130202b20443136202b204b3136202b20513136203c2f6c693e0d0a3c2f756c3e, 'N', '2006-05-09 05:44:42'),
(751, 19, 0x5a656c616e206b656e747a656e2064697475742068696c64616b6f206861727269616b207461756c6174696b3f, 'Y', '2006-05-09 05:57:48'),
(752, 19, 0x4269206a6f6b616c617269656b207061736f206567696e20657461206765726f2c2068696c64616b6f206861727269616b206b656e647520626568617220646972612065736b757a2e2048617272692062617465616e206b6c696b206567697465616e20626572652065676f6572612062697a6974696b2068696c64616b6f7261207061736174756b6f2064612e206c61756b69207a757269206574612062656c747a616b206167657274756b6f2064697261206a6f6b616c6172692062616b6f69747a6172656e207465727269746f72696f61206164696572617a697a2e0d0a0d0a4a6f6b616c617269206269656b2061646f73747520626568617220647574652068696c64616b6f206861727269616b206574612062697a6972696b2064617564656e616b207a65696e747a7520646972656e2c20657461207465727269746f72696f61206e6f7269206461676f6b696f6e2e205461756c616e206d61726b61747574616b6f6172656b696e2061646f73207a617564656e65616e206567696e206b6c696b207461756c6172656e20617a7069616e206461676f656e20226567696e64612220626f746f69616e2e0d0a0d0a4a6f6b616c61726972656e20626174656b20657a2062616475206172676920696b757374656e20226a6f6c617374656e206a617272616974752220626f746f6961207a6170616c64752064657a616b652c207a616c616e747a617a6b6f2065676f657261206261742061726769747a656b6f206d7567696d656e64752061707572206261747a75656b696e2e204265736174652061756b657261206261742065676f65726120657a74616261696461747a65612064612c206175726b617269617269206d657a752062617420626964616c697a2e203c6120687265663d2270686f72756d2f6c6973742e7068703f663d35223e476f2064697363757373696f6e3c2f613e20666f726f616e2067616c6465747a6561206461676f206572652e, 'Y', '2006-05-09 05:57:48'),
(753, 19, 0x5a6572206573616e206e6168692064757465206c61756b6974786f20676f727269656b207061727469646172656e2062756b616572616e3f, 'N', '2006-05-09 05:57:48'),
(754, 19, 0x6c61756b6974786f20676f727269656b206573616e206e616869206475746520447261676f6e207a65726269747a617269616b20657a696e206475656c612065726162616b69206e6f72656e207465727269746f72696f612064656e2c20686f7272656e207a657267617469612068757272656e676f20626174656e62617420697a616e2064616974656b653a0d0a0d0a3c756c3e0d0a3c6c693e5465727269726f72696f206261727275616e2062616461756465206f7261696e64696b206175726b6172696172656e206861727269616b2065746120657a20646972612068696c64616b6f2067697361206d61726b6174752e204567696e206b6c696b206861727269206861756574616e2068696c64616b6f2067697361206d61726b61747a656b6f3c2f6c693e0d0a3c6c693e5a757269206574612062656c747a6172656e207465727269746f72696f206d7567616b20657a20646972612067757a74697a20697478692e2047697a616b696f6e747a6174206e6162617269612064612c206261696e6120447261676f6e207a65726269747a6172696172656e747a6174207a61696c61206461207465727269746f72696f61206e6f7269206461676f6b696f6e2065726162616b69747a65612e204d65736564657a206567696e206b6c696b207461756c6172656e20617a70696b6f20226a6f6c617374656e206a617272616974752220626f746f69616e20657461206d75676120697a74656e206475656e20686172726920626174206a617272692e3c2f6c693e0d0a3c6c693e3c6120687265663d226661712e7068703f726561643d74266361743d3323456e747279313031223e73656b693c2f613e2065676f657261206261742064612e204567696e206b6c696b206c61756b6920676f72726920686f72726574616e2073656b69206d6f6b752065676f6572616e206461676f656e203c6120687265663d226661712e7068703f726561643d74266361743d3323456e747279313135223e64616d653c2f613e2070756e747520626174206269687572747a656b6f2e20447261676f6e206c61756b6974786f20626572646520626174206269737461726174756b6f2064752e20486f6e656e20626964657a207a616c616e747a617a6b6f2073656b692062617420656d6169747a61206669646167617272692062617465616e206269687572747a6561206261696d656e747a656e2064697a752e2058656865746173756e206765686961676f20666f726f6b6f203c6120687265663d2270686f72756d2f726561642e7068703f663d3226693d38343326743d383433223e6861726920686f6e6574616e3c2f613e3c2f6c693e0d0a3c2f756c3e, 'N', '2006-05-09 05:57:48'),
(606, 19, 0x5361727475207a7572652074657374756120266c743b636f6d6d656e742667743b2065746120266c743b2f636f6d6d656e742667743b206574696b6574656e207461727465616e2e0d0a0d0a416469626964657a3a206d61727478616e2064757a75206a6f6b6f2062617465616e3a0d0a0d0a312e205361727475207a616974657a20686172726961206a6172726920657461206765726f207461756c6172656e20617a7069616e2061676572747a656e2064656e206d657a75206572656d75616e2065746120696461747a693a0d0a0d0a48617520736169616b657261206261742064612c2068617520657a206461206167657274756b6f0d0a266c743b636f6d6d656e742667743b0d0a486175206972757a6b696e2062617420646120657461205347462d616e20676f7264656b6f2064612e0d0a266c743b2f636f6d6d656e742667743b0d0a546573747520617272756e74612c20657a206461206167657274756b6f2e0d0a0d0a322e20426964616c69207a757265206d7567696d656e6475612e0d0a332e204465736b6172676174752053474620666974786174656769612e0d0a342e204972656b692053474620666974786174656769612028476f2062657a65726f20626174656b696e2065646f20746573747520656469746f726520626174656b696e292e0d0a0d0a352e204d7567696d656e647520686f7272656e206972757a6b696e61206861752064613a0d0a266c743b796f757220447261676f6e206e616d652667743b3a486175206972757a6b696e2062617420646120657461205347462d616e20676f7264656b6f2064612e0d0a0d0a362e205a757265206972757a6b696e6120706172746964612062756b61747520657461206765726f2062616b617272696b206972616b75727269206168616c20697a61746561206e61686920626164757a752c2065726162696c6920266c743b68696464656e2667743b20266c743b2f68696464656e2667743b2065746120657a20266c743b636f6d6d656e742667743b20266c743b2f636f6d6d656e742667743b20457a6b7574756b6f206d657a75616b203c656d3e736f696c696b3c2f656d3e2053474620666974786174656769616e206167657274756b6f20646972612e0d0a0d0a266c743b636f6d6d656e742667743b20266c743b2f636f6d6d656e742667743b2065746120266c743b68696464656e2667743b20266c743b2f68696464656e2667743b206574696b6574616b206c61627572747a65612062616461676f3a20266c743b632667743b20266c743b2f632667743b2065746120266c743b682667743b20266c743b2f682667743b206469726120666f726d61206c616275727475616b2e0d0a0d0a546573747520617272756e746120286574696b6574656e206261727275616e20657a206461676f656e6129206a6f6b6f20686f72726574616b6f20706172746520686172747a61696c65656e747a617420736f696c696b206461676f20696b75736761692e20457a696e20647520626573746520696e6f726b20696b7573692c2065746120657a2064612053474620666974786174656769616e20676f726465747a656e2e20486175207a7572652070726962617475746173756e6120626162657374656b6f2065676974656e2064612e, 'N', '2006-05-09 23:27:26'),
(637, 19, 0x5a65722064612064656e626f7261206e6167757369613f, 'Y', '2006-05-09 23:29:56'),
(638, 19, 0x486173696572612062617465616e203c656d3e64656e626f7261206e6167757369616e3c2f656d3e207a6568617a747574616b6f2064656e626f726120656d6174656e207a616965206175726b61726965692e0d0a0d0a44656e626f7261206e6167757369612061676f7274752064656e65616e2c2070617274696461203c656d3e657a3c2f656d3e2064612062756b6174752e2044656e626f726120676568696761727269616e20736172747a656e206461206a6f6b6f612028696b75736920626568657261676f29, 'Y', '2006-05-09 23:29:56'),
(694, 19, 0x5a657220646972612062656861747574616b6f20706172746964616b3f, 'Y', '2006-05-09 23:36:36'),
(695, 19, 0x486f6e692065736b6572203c656d3e62657374653c2f656d3e2065726162696c747a61696c65206261747a75656e20706172746964656e206c61737465726d61726b616b206567696e206469747a617a6b657a752e0d0a0d0a50617274696461206261742067656869747a656b6f207a7572652062656861747574616b6f2070617274696465746172612c206c6568656e62697a69206175726b697475206d61727478616e206461676f656e207061727469646120686f726920657461206567696e206b6c696b202242656861747520706172746964612220626f746f69616e2e2042656861747574616b6f20706172746964616b20696b757374656b6f2c207a6f617a203c6120687265663d222f7374617475732e706870223e65676f6572613c2f613e206f727269726120657461206a617272616974752022696b7573692062656861747574616b6f20706172746964616b22206c6f747572612e0d0a0d0a42656861747574616b6f2070617274696461206261742062756b61747a656e2064656e65616e207a657272656e646174696b206175746f6d6174696b6f6b6920657a61626174756b6f2064612065746120447261676f6e207a65726269747a617269616b20656d6169747a61206d657a752062617465616e20626964616c696b6f2064697a752e0d0a0d0a4d61727478616e2064617564656e20706172746964616b20626573746572696b20657a696e20646974757a75206265686174752c20626568696e20706172746964612062756b61747a656e2064656c612062656861747574616b6f20706172746964656e207a657272656e646174696b206465736167657274756b6f2064612e20447261676f6e205a65726269747a617269616b206d657a752062617420626964616c696b6f2064697a752062756b616572612070756e7475617a696f6172656e20626572726920656d616e657a2e, 'N', '2006-08-13 18:15:30'),
(981, 19, 0x5a6572206469726120447261676f6e207a65726269747a6172696b6f206d657a75616b3f, 'N', '2006-05-12 03:40:56'),
(982, 19, 0x45726162696c747a61696c65616b206d7564752061736b6f74616e206b6f6d756e696b6174752064616974657a6b652c20616469626964657a3a3c756c3e0d0a3c6c693e4d657a7520707269626174752062617420626964616c697a2065726162696c747a61696c65207a656861747a20626174693c2f6c693e0d0a3c6c693e447261676f6e203c6120687265663d222f70686f72756d2f22207461726765743d225f626c616e6b223e666f726f6574616e3c2f613e2065726162696c747a61696c652061736b6f7269207a757a6e65747a656b6f3c2f6c693e0d0a3c6c693e7061727469646574616e206d6f746120657a62657264696e6574616b6f203c6120687265663d222f6661712e7068703f726561643d74266361743d33363523456e7472793735223e6972757a6b696e616b2073617274757a3c2f613e3c2f6c693e3c2f756c3e, 'N', '2006-05-12 03:40:56'),
(983, 19, 0x5a65722064697261206d657a75206b6172706574616b3f, 'Y', '2006-05-12 03:40:56'),
(984, 19, 0x4d657a75206b6172706574616b206d657a75616b207a75726520626568617272656e206172616265726120616e746f6c61747a6561206261696d656e747a656e2064697a7574652e204d657a75616b206b61727065746174696b206b6172706574617261206d7567697475206469747a617a6b657a75206e6f6c616e6168692e0d0a0d0a447261676f6e206b61727065746120686175656b2064697475206c6568656e6574736974613a3c756c3e0d0a3c6c693e3c7374726f6e673e4a61736f74616b6f2067757a7469616b3c2f7374726f6e673e3a204a61736f20646974757a75206d657a752067757a7469656e207a657272656e64612e3c2f6c693e0d0a3c6c693e3c7374726f6e673e4e6167757369613c2f7374726f6e673e3a4a61736f74616b6f20657461206972616b7572726974616b6f206d657a75616b2e3c2f6c693e0d0a3c6c693e3c7374726f6e673e4265727269616b3c2f7374726f6e673e3a204a61736f20657461206972616b7572726920676162656b6f206d657a75616b3c2f6c693e0d0a3c6c693e3c7374726f6e673e4572616e747a756e213c2f7374726f6e673e3a204572616e747a756e74656b65206a6172726920646974757a756e206d657a75616b2e3c2f6c693e0d0a3c6c693e3c7374726f6e673e70617065726f6e747a69613c2f7374726f6e673e3a20457a616261747a656b65206a6172726920646974757a756e206d657a75616b2e3c2f6c693e0d0a3c6c693e3c7374726f6e673e426964616c6974613c2f7374726f6e673e3a20426964616c6920646974757a75206d657a75656e207a657272656e64612e3c2f6c693e0d0a3c2f756c3e0d0a0d0a4d657a75206b617270657461206765686961676f20736f727475206469747a617a6b657a75203c6120687265663d222f6c6973745f6d657373616765732e70687022207461726765743d225f626c616e6b223e6d657a75616b3c2f613e206f7272696b6f20626568656b616c6465616e206461676f656e2022416c64617475206b6172706574616b22206c6f7475726172656e20626964657a, 'Y', '2006-05-12 03:55:27'),
(985, 19, 0x5a656c616e206765686974752065646f206b656e6475206469747a617a6b656e207a7574616265616b3f, 'Y', '2006-05-12 03:58:27'),
(986, 19, 0x4861752065676f657261206f7272696b6f2070617274696461207a657272656e646172692c2062756b61747574616b6f20706172746964616b20657461206d61727478616e2064617564656e207061727469646569206461676f6b696f2e0d0a5a7574616265206261742067656869747a656b6f2c20676568697475206e6168692064757a756e20686f72692061756b6572617475206f7272692062756b616572616b6f207a657272656e646120646573706c656761626c65616e2c20657461206567696e206b6c696b206f6e646f6b6f20225a757461626561206765686974752220626f746f69616e2e205a757461626520626174206b656e747a656b6f206567696e206b6c696b207a75746162656172656e20676f69627572756b6f2022582220676f727269616e2e, 'N', '2006-05-12 03:58:27'),
(643, 19, 0x48544d4c2d612065726162696c692064657a616b656e20447261676f6e207a65726269747a617269616e3f, 'N', '2006-05-12 04:03:15'),
(644, 19, 0x4261692048544d4c2061707572206261742065726162696c692064657a616b657a75207a7572652062696f2c207a757265206d657a756574616e2c2065746120666f726f6574616e2e2048544d4c206574696b6574616b2065726162696c747a65612065726162616b69747a656e20626164757a75206d65736564657a206a617272616974752048544d4c2068697a6b756e747a6172656e2073696e74617869612e20486f6e656b206e61677573696b69206573616e206e616869206475206574696b6574616b206972656b69747a65617a206761696e206974786920657265206567696e20626568617220646972656c612e0d0a3c756c3e0d0a3c6c693e6c697374733c2f6c693e0d0a3c6c693e3c623e626f6c643c2f623e3c2f6c693e0d0a3c6c693e3c693e6974616c69633c2f693e3c2f6c693e0d0a3c6c693e3c753e756e6465726c696e653c2f753e3c2f6c693e0d0a3c6c693e3c666f6e7420636f6c6f723d7265643e666f6e743c2f666f6e743e3c2f6c693e0d0a3c6c693e627261636b6574733a20266c743b202667743b3c2f6c693e0d0a3c6c693e3c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e6574223e6c696e6b733c2f613e3c2f6c693e0d0a3c6c693e73696d706c65206c696e6b733a203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e6574223e687474703a2f2f7777772e647261676f6e676f7365727665722e6e65743c2f613e3c2f6c693e0d0a3c2f756c3e0d0a476f696b6f61206c6f72747a656b6f206b6f646561206861752064613a0d0a266c743b756c2667743b0d0a266c743b6c692667743b6c69737473266c743b2f6c692667743b0d0a266c743b6c692667743b266c743b622667743b626f6c64266c743b2f622667743b266c743b2f6c692667743b0d0a266c743b6c692667743b266c743b692667743b6974616c6963266c743b2f692667743b266c743b2f6c692667743b0d0a266c743b6c692667743b266c743b752667743b756e6465726c696e65266c743b2f752667743b266c743b2f6c692667743b0d0a266c743b6c692667743b266c743b666f6e7420636f6c6f723d7265642667743b666f6e74266c743b2f666f6e742667743b266c743b2f6c692667743b0d0a266c743b6c692667743b627261636b6574733a2026616d703b6c743b2026616d703b67743b266c743b2f6c692667743b0d0a266c743b6c692667743b266c743b6120687265663d2671756f743b687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742671756f743b2667743b6c696e6b73266c743b2f6c692667743b0d0a266c743b2f612667743b0d0a266c743b6c692667743b73696d706c65206c696e6b733a20266c743b687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742667743b266c743b2f6c692667743b0d0a266c743b2f756c2667743b, 'N', '2006-05-12 04:05:40'),
(975, 19, 0x5a656c616e20686173692064657a616b6574207361696f61206e697265206b6f6e74756172656b696e3f, 'Y', '2006-05-12 23:48:53'),
(976, 19, 0x3c6120687265663d222f22207461726765743d225f626c616e6b223e447261676f6e2068617369657261206f727269613c2f613e72656e20626964657a20686173692064657a616b657a75207361696f613b205a757265206e6162696761747a61696c65616e20636f6f6b69652062617420676f7264656b6f20646120283330206567756e657461726120697261756e6769747a656e206475293b20536172747520657a617a75207a7572652065506f7374612070726f66696c65616e20706173616869747a61206265727265736b757261747a656b6f2061756b65726120697a616e206e61686920626164757a75206168617a74656b6f74616e3b2041686f6c6b75206261743a20676f726465207a757265206c61737465726d61726b6574616e207374617475732e706870206f727269612e, 'Y', '2006-05-12 23:48:53'),
(973, 19, 0x5a656c616e20686173692064657a616b6574207361696f61206b6f6e7475207a656861747a20626174656b696e3f, 'Y', '2006-05-12 23:52:18'),
(974, 19, 0x3c6120687265663d222f7374617475732e70687022207461726765743d225f626c616e6b223e2f7374617475732e7068703c2f613e206f7264657a74752064657a616b657a75203c753e2f6c6f67696e2e7068703f7573657269643d3c623e65726162696c747a61696c654944613c2f623e267061737377643d3c623e706173616869747a613c2f623e3c2f753e0d0a0d0a497a616e206b6f6e747574616e20706173616869747a6120746573747520736f696c65616e20676f726465747a6561207365677572746173756e206172617a6f20626174207375706f7361747a656e206475656c612e20657a2062616e617475206c6f747572612068617520657a746120676f726465206c61737465726d61726b612067697361207a65726269747a617269207075626c696b6f6574616e2c2065746120616261722e2e2e, 'Y', '2006-05-12 23:52:18'),
(629, 19, 0x5a6572206573616e206e6168692064752065726162696c747a61696c6520626174656e20226568756e656b6f61226b3f, 'Y', '2006-05-13 00:01:01'),
(630, 19, 0x45726162696c747a616c696520686f7272656b2069726162617a69206574612067616c64752064697475656e20706172746964656e2062616e616b6574612064612c206f7261696e206475656e206d61696c6172656e20696e667572756b6f20696e666f726d617a696f206765686967617272696120656d616e206168616c2064697a752e0d0a0d0a45726162696c747a61696c6520626174656b20706172746964612070756e7475616761727269206261747a756b2062756b61747520657461206765726f2c2025353020696e677572756b6f207a656e62616b692062617420626164752c2062657265206d61696c61206f6e6769206b616c6b756c6174757461206461676f2e202537356574696b20676f72616b6f206568756e656b6f20626174656b206573616e206e61686920647520626572652070726f66696c656b6f206d61696c61207a6975722061736b692062656e6574616e206475656e61206261696e6f206261787561676f612064656c612c206574612025323520706574696b206461676f656e206568756e656b6f20626174656b206573616e206e6168692064752062657265206d61696c61207a6975722061736b692061676572747a656e2064656e61206261696e6f2078756d6561676f612064656c612e, 'Y', '2006-05-13 00:01:01'),
(635, 19, 0x5a6572676174696b20657a20646972612065726162696c747a61696c652067757a7469616b2061676572747a656e2065726162696c747a61696c65207a657272656e64616e3f, 'Y', '2006-05-13 00:06:29'),
(636, 19, 0x6c6568656e65747369746120447261676f6e207a65726269747a617269616b20657a206469747520616b746962697461746572696b20676162656b6f2065726162696c747a61696c65616b206572616b757374656e2e203c6120687265663d222f75736572732e70687022207461726765743d225f626c616e6b223e45726162696c747a61696c65616b3c2f613e206f7272696172656e2062756b616572616e20626164757a75203c6120687265663d222f75736572732e7068703f73686f77616c6c3d3122207461726765743d225f626c616e6b223e45726162696c747a61696c65203c623e67757a7469616b3c2f623e20696b757374656b6f2061756b6572613c2f613e, 'N', '2006-05-13 00:06:29'),
(748, 19, 0x54786170656c6b6574612062617420686173692065646f20616e746f6c6174752064657a616b65743f, 'Y', '2006-05-13 00:13:10'),
(749, 19, 0x54786170656c6b6574616b20616e746f6c61747a65726120616e696d61747a656e207a6169747567752e2054786170656c6b657461206972616761726b69656e747a61742c206d65736564657a2065726162696c69202865646f20626567697261747529203c6120687265663d222f70686f72756d2f6c6973742e7068703f663d34223e447261676f6e2064697363757373696f6e20666f72756d3c2f613e20666f726f612e20447261676f6e207a65726269747a617269616b204641512d6574616e2073617274757a206c6167756e64756b6f2064697a7520686f6e656e20626572726920656d617465612e, 'Y', '2006-05-13 00:13:10'),
(1012, 19, 0x447261676f6e2069747a756c747a61696c656120697a616e206e616974656b653f, 'Y', '2006-05-13 00:15:03'),
(1013, 19, 0x4261692c20456d616967757a75207a75726520696e74657265736172656e206265727269203c6120687265663d222f70686f72756d2f6c6973742e7068703f663d3722205441524745543d5f626c616e6b3e7472616e736c6174696f6e20666f72756d3c2f413e20666f726f616e2e2041646d696e6973747261747a61696c65656b2069747a756c70656e2065736b75626964656120656d616e676f2064697a7574652069612062657469, 'Y', '2006-05-13 00:15:03'),
(607, 19, 0x447261676f6e2067617261747a61696c656120697a616e206e616974656b653f, 'Y', '2006-05-13 00:17:33'),
(608, 19, 0x4261692c2061756b657261206461676f2e20476f2061726175616b2050485020657461204d5953514c206a616b696e2062656861726b6f207a656e6974757a6b652e0d0a0d0a4265676972617475203c6120687265663d22687474703a2f2f736f75726365666f7267652e6e65742f70726f6a656374732f647261676f6e676f73657276657222207461726765743d225f626c616e6b223e536f75726365466f7267652d6e206461676f656e20447261676f6e206761726170656e206f727269613c2f613e2065746120686172706964657475203c6120687265663d22687474703a2f2f6c697374732e736f75726365666f7267652e6e65742f6c697374732f6c697374696e666f2f647261676f6e676f7365727665722d646576656c22207461726765743d225f626c616e6b223e647261676f6e676f7365727665722d646576656c206d61696c696e67206c6973743c2f613e20706f737461207a657272656e646172612e, 'N', '2006-05-13 00:17:33'),
(639, 19, 0x4e6f72747a756b2065676974656e206475746520447261676f6e3f, 'Y', '2006-05-13 00:25:30');
INSERT INTO `Translations` (`Original_ID`, `Language_ID`, `Text`, `Translated`, `Updated`) VALUES
(640, 19, 0x447261676f6e20476f205365727665722028444753292074616c6465206c616e65616e206567696e64616b6f20736f667477617265206c696272652070726f69656b7475206261742064612c20476f207478616e64616b6f206a6f6c617374656120677573746f6b6f206475656e206a656e6465616b20657461206a656e64656172656e747a6174206567696e612e20444753203c6120687265663d222f75736572696e666f2e7068703f7569643d3222207461726765743d225f626c616e6b223e4572696b3c2f613e20676172617475207a75656e20686173696572612062617465616e20657461206f7261696e203c6120687265663d222f75736572696e666f2e7068703f7569643d3130353622207461726765743d225f626c616e6b223e526f643c2f613e20657461203c6120687265663d222f75736572696e666f2e7068703f7569643d3222207461726765743d225f626c616e6b223e4572696b3c2f613e203c6120687265663d22687474703a2f2f736f75726365666f7267652e6e65742f70726f6a6563742f6d656d6265726c6973742e7068703f67726f75705f69643d323939333322207461726765743d225f626c616e6b223e6d616e74656e747a656e3c2f613e20647574652e204641512064656c616b6f61203c7374726f6e673e7a756b3c2f7374726f6e673e206573616e64616b6f656b696e20656c696b61747a656e20646120657461203c6120687265663d222f75736572696e666f2e7068703f7569643d393322207461726765743d5f626c616e6b3e426af8726e3c2f613e656b206d616e74656e747a656e2064752e20444753206861696e6261742068697a6b756e747a65746172612069747a756c697461206461676f2e20496b757369203c6120687265663d222f70656f706c652e70687022207461726765743d225f626c616e6b223e69747a756c747a61696c65656e207a657272656e64613c2f613e20657461203c6120687265663d222f70686f72756d2f6c6973742e7068703f663d37223e69747a756c70656e20666f726f613c2f613e2e, 'N', '2006-05-13 00:25:30'),
(697, 19, 0x5461756c616b6f2070756e7475206e657574726f616b2e20496e6f72656e206c757272616c646520657a20646972656e2070756e747520686175656b20657a2064696f74652070756e747572696b20656d6174656e206a6f6b616c61726965692e, 'Y', '2006-05-13 00:30:51'),
(698, 19, 0x41736b61746173756e61, 'Y', '2006-05-13 00:30:51'),
(699, 19, 0x486172726920626174656e2065646f2068617272692074616c646520626174656e206f6e646f616e206461676f656e206265746520676162656b6f2068757473756e65612e, 'Y', '2006-05-13 00:30:51'),
(1024, 19, 0x5061727469646120706172656b61747561, 'Y', '2006-05-13 00:32:17'),
(1025, 19, 0x3c6120687265663d226661712e7068703f726561643d74266361743d33353723456e7472793937223e48616e64696361703c2f613e20676162656b6f20706172746964612e203c6120687265663d226661712e7068703f726561643d74266361743d3323456e74727939223e4b6f6d693c2f613e2d6120676f6e6269646170656e61206567696e206475656e2065726162696c747a61696c65616b20657a6172747a656e2064752e, 'Y', '2006-05-13 00:32:17'),
(667, 19, '', 'N', '2006-12-29 00:39:59'),
(668, 19, 0x486173696572616b6f206a6f6b616c6469616b2065646f20486173696572616b6f206a6f6b616c646965746172616b6f207a6568617a747574616b6f20706174726f69616b2e20467573656b69616b2065737472617465676961206f726f6b6f727261206b6f6e747574616e20697a616e2062656861722064752c207461756c61206f736f61726920626567697261747a65612e, 'N', '2006-05-13 00:34:25'),
(702, 19, '', 'N', '2006-12-29 00:39:59'),
(703, 19, 0x53617265612e204861727269616b2073617265206d6f64756b6f2062617465616e20696e6775726174757a20686172726170616b657461206261696d656e747a656e206475656e206d7567696d656e6475612e, 'N', '2006-05-13 00:37:21'),
(657, 19, '', 'Y', '2006-12-29 00:39:59'),
(658, 19, 0x476f207461756c6120286269727475616c61207a65696e2062656e6574617a6b6f6129, 'Y', '2006-05-13 00:38:06'),
(692, 19, '', 'N', '2006-12-29 00:39:59'),
(693, 19, 0x4a6f6b616c646920646566656e747369626f612c206d6568617473752062617469206572616e747a756e612e20496e697a6961746962612067616c747a65612064616b617220657461206175726b6172696172692068757272656e676f206a6f6b616c646961206e6f6e206567696e2065726162616b69747a6561206261696d656e747a656e2064696f2e20476f746572656e206175726b616b6f61203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f6661712e7068703f726561643d74266361743d3323456e747279313132223e73656e74653c2f613e2064612e, 'N', '2006-05-13 00:40:29'),
(700, 19, '', 'N', '2006-12-29 00:39:59'),
(701, 19, 0x4a6f6b616c646920646961676f6e616c61206175726b6172696172656e2068617272692065646f2068617272692074616c64656172656e2062756b616572616e2e, 'N', '2006-05-13 00:41:56'),
(645, 19, '', 'Y', '2006-12-29 00:39:59'),
(646, 19, 0x486f736869206a61706f6e696572617a2022697a617272612220646120657461206269206573616e61686920646974752e204f726f6b6f727265616e2c20626564657261747a69202268616e646963617022206861727269616b206b6f6b61747a656e20646972656e207461756c616b6f2022697a6172222070756e7475616b20646972612e205a656861747a61676f2c206572747a656b6f20342d34206572747a612e, 'Y', '2006-05-13 00:45:02'),
(666, 19, 0x4572747a65616e206567696e64616b6f206a6f6b616c6469612e205a6568617a747574616b6f20706174726f69206261742065676f657261206c6f6b616c2062617465616e206a6f6c617374656b6f2e204f726f6b6f727265616e206a6f6b616c617269206269656b206567696e206c657a616b6574656e206a6f6b616c64692073656b75656e747a6961206c6f6b616c206f6e656e612c206261696e6120657a20657a696e6265737465616e20676c6f62616c65616e2e204a6f64656b69206869747a2074616b74696b6f612064612c20657a206573747261746567696b6f612e, 'N', '2006-05-13 00:47:38'),
(1021, 19, 0x44656e626f72612065727265616c61, 'Y', '2006-05-13 00:58:06'),
(1022, 19, 0x44656e626f72612065727265616c656b6f206a6f6b6f2062617420706172746964616b206a6f6c617374656b6f206d6f64752073696e6b726f6e6f612064612e206a6f6b616c617269206269616b2062657274616e2065676f6e20626568617220646972612065746120616c646920626572616e206a6f6c617374656e2e2050617274696461206f736f6120756e652062617465616e2062756b61747a656e2064612e2044656e626f72612065727265616c6172656e2061646962696465616b20646972612061757272657a2061757272656b6f2070617274696461206261742062656e6574617a6b6f207461756c6120626174656e206175727265616e2c2065646f2065736b75726167617272692064617564656e2064656e626f72612065727265616c656b6f20476f207a65726269747a6172696574616b6f2062617465616e2e20496b75736920657265203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f6661712e7068703f726561643d74266361743d3323456e747279313532223e5475726e6f6b613c2f613e, 'Y', '2006-05-13 00:58:06'),
(704, 19, '', 'N', '2006-12-29 00:39:59'),
(705, 19, 0x4f68696b6f206972656b6965726120206261742c206e6f6e206a6f6b616c617269616b20616c646520626174656b6f206869727520697a617272616b2068617274752064697475656e2e, 'N', '2006-05-13 00:59:38'),
(706, 19, '', 'N', '2006-12-29 00:39:59'),
(707, 19, 0x6a61706f6e696572617a203c6120687265663d222f70686f72756d2f726561642e7068703f663d3326693d31393626743d313936223e65736b61696c6572613c2f613e, 'N', '2006-05-13 00:59:38'),
(669, 19, '', 'Y', '2006-12-29 00:39:59'),
(670, 19, 0x53656b6920226269656e2062697a69747a6122206573616e206e6168692064752e2053656b692065676f65726120626572657a69206c6f6b616c206261742064612c206e6f6e206175726b61726965656e2062692074616c64656b2061736b61746173756e206b6f6d756e616b20646974757a74656e2c2065746120657a696e20647574656e20656c6b61722068696c2e20457261736f747a656e206475656e206c6568656e616b2067616c64756b6f206c756b65656c616b6f2d, 'Y', '2006-05-13 01:02:08'),
(691, 19, 0x4a6f6b616c646920657261736f6b6f7272612c206265726568616c617a6b6f206572616e747a756e61206265686172206475656e206a6f6b616c6469206261742e20496e697a69617469626120736f72747a656e206475206574612068757272656e676f206a6e6f6b616c646961206e6f6e206567696e2061756b657261747a656b6f20676169746173756e6120656d6174656e2064752e2053656e746572656e206175726b616b6f61203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f6661712e7068703f726561643d74266361743d3323456e747279313133223e676f74653c2f613e2064612e2053656e746564756e206a6f6b616c617269616b203c6120687265663d222f6661712e7068703f726561643d74266361743d3323456e747279313130223e74656e756b693c2f613e206a6f6c617374752064657a616b6520686f6265746f206461746f726b696f6c61207573746520626164752e, 'N', '2006-05-13 01:04:13'),
(655, 19, '', 'N', '2006-12-29 00:39:59'),
(656, 19, 0x5461756c6172656e20657264696b6f2070756e7475612e2031307831396b6f207461756c612062617465616e2031302d31302070756e7475612e2054656e67656e206a61706f6e696572617a2022756e6962657274736f6172656e206861736965726122206573616e206e6168692064752e, 'N', '2006-05-13 01:05:30'),
(686, 19, '', 'N', '2006-12-29 00:39:59'),
(687, 19, 0x48757272656e676f206a6f6b616c646961203c7374726f6e673e657a3c2f7374726f6e673e206a6f6c6173746561206175726b6172696172656e20617a6b656e206d7567696d656e64756172656e206572616e747a756e206c6f6b616c20676973612c206261697a696b20657461207461756c6172656e206265737465206c656b7572656e2062617465616e2e, 'N', '2006-05-13 01:07:33'),
(1019, 19, 0x5475726e6f6b61, 'Y', '2006-05-13 01:10:01'),
(1020, 19, 0x5475726e6f6b61206a6f6c617374656120706172746964616b206a6f6c617374656b6f206d6f6475206173696e6b726f6e6f612064612e204a6f6b616c617269206269656b20657a2064757465207a657274616e2062657274616e2061646c692062657265616e2065676f6e2065646f20616c64692062657265616e206a6f6c617374752e20486f7272656e206f7264657a206a6f6b616c6172692062616b6f69747a616b206a6f6b616c6469616b2064656e626f726120647574656e65616e206567696e20646974617a6b6574652e205475726e6f6b61206a6f6c617374656b6f2061646962696465616b20706f73746120617272756e746120626964657a206a6f6c61737465612c2065506f7374617a206a6f6c61737465612065646f2062657274616e20447261676f6e20476f2053657276657220686f6e6574616e206a6f6c617374656120646972612e20496b75736920657265203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f6661712e7068703f726561643d74266361743d3323456e747279313533223e64656e626f72612065727265616c613c2f613e, 'Y', '2006-05-13 01:10:01'),
(257, 19, '', 'Y', '2006-12-29 00:39:59'),
(677, 19, 0x447261676f6e206d61696c6120657461206d61696c61206f6861727261, 'Y', '2006-05-17 06:02:46'),
(678, 19, 0x5a6572206573616e206e6168692064752065726162696c747a61696c6520696e666f726d617a696f6b6f204d61696c61207a7574616265616b3f, 'Y', '2006-05-17 06:02:46'),
(712, 19, 0x5a656c616e20646162696c20447261676f6e206d61696c612073697374656d613f, 'N', '2006-05-17 06:03:15'),
(708, 19, 0x5461756c6172656e2074616d61696e616b2065726167696e696b20616c206475206d61696c61206b616c6b756c6f616e3f, 'Y', '2006-05-17 06:04:37'),
(709, 19, 0x31397831396b6f20706172746964656b206461756b6174652065726167696e2068616e6469656e61206d61696c617269206461676f6b696f6c612e0d0a31337831336b6f20626920706172746964656b2031397831396b6f206261742062657374652065726167696e20647574652e0d0a3978396b6f206c617520706172746964656b203139783139206261742062657374652065726167696e2064757465, 'N', '2006-05-17 06:06:56'),
(1010, 19, 0x5a65696e747a75206a6f6b6f6b20697a616e676f20647574652065726167696e61206e697261206d61696c616e3f, 'Y', '2006-05-17 06:12:50'),
(1011, 19, 0x447261676f6e206d61696c612073697374656d616b2062616b617272696b2064697475206b6f6e747574616e2062692062616c64696e747a612062657465747a656e20646974757a74656e20706172746964616b3a0d0a0d0a2a4a6f6b616c617269206269656b20706172746964612070756e74756167617272696120697a616e676f2064656c612065726162616b6920647574652c0d0a4554410d0a2a5a757269616b2035206861727269206a617272692064697475206775747869656e657a2e, 'N', '2006-05-17 06:12:50'),
(679, 19, 0x4d61696c6172656e206c656e20706172746561207a757265203c6120687265663d222f6661712e7068703f726561643d74266361743d3323456e7472793339223e64616e3c2f613e2065646f203c6120687265663d222f6661712e7068703f726561643d74266361743d3323456e7472793338223e6b79753c2f613e206d61696c612064612e20426967617272656e207061727465612c2028706172656e7465736920617274656b6f6129206d61696c6120686f6e6574616e207a65696e20696e6461727473752065646f206168756c207a6172656e206164696572617a74656e2064752e0d0a0d0a416469626964657a202231206b797520282b34302529222031206b7975206d61696c6120696e64617274737561206164696572617a74656e2064752028696120312064616e20697a6174656b6f206265737465292e, 'N', '2006-05-17 06:17:26'),
(680, 19, 0x5a6572206573616e206e616869206475206d61696c61206f7374656b6f202b2065646f202d20686f7272656b3f, 'Y', '2006-05-17 06:17:26'),
(681, 19, 0x4261726e656b6920447261676f6e2065726162696c747a656e206475656e2073697374656d6172656e747a6174203130302070756e74756574616b6f207461727465616b206461756465206d61696c6174696b206d61696c6172612e20416469626964657a3a0d0a0d0a36206b7975202820302529203d20313530302070756e74750d0a36206b797520282d34382529203d20313435322070756e74750d0a37206b797520282b33302529203d20313433302070756e74750d0a37206b7975202820302529203d20313430302070756e7475, 'N', '2006-05-17 06:17:26'),
(684, 19, 0x5a6572206573616e206e616869206475206d61696c612067726166696b6f6172656e207a6f6e616c646520757264696e616b3f, 'Y', '2006-05-17 06:26:17'),
(685, 19, 0x45726162696c747a61696c652062617420447261676f6e207a65726269747a6172696172656e20476f206d61696c61206b616c6b756c756172656e207a65696e2068757262696c206461676f656e206164696572617a74656e2064752e0d0a0d0a45726162696c747a61696c6520626174656b206d6572652068617369657261206d61696c6120736172747a656e206475656e65616e2c20447261676f6e207a65726269747a617269616b20657a2064616b69206265726520646566696e697a696f6172656b696e20626174206461746f7272656e2e20457a206461676f206d756e6475206d61696c616e206164696572617a6761727269612064656e206d61696c6172696b2e20447261676f6e206168616c6567696e2068616e6469612065676974656e2064752062657265206d61696c61206b616c6b756c6f612065726162696c67617272696120657461206265737465206261747a75656b696e206b6f6e7061726167617272696120697a616e20646164696e2e0d0a0d0a5a6f6e616c646520757264696e6172656e207a6162616c6572616b206164696572617a74656e2064752065726162696c747a696c6520626174656e206b616c6b756c6f61207a65696e2068757262696c206461676f656e20447261676f6e206d61696c6172656e206b616c6b756c6f207a656861747a6574696b2e, 'N', '2006-05-17 06:26:17'),
(501, 32, 0x557375617269732064656c20447261676f6e206920656c732070657266696c73206427757375617269, 'N', '2006-05-19 11:56:05'),
(502, 32, 0x5465726d657320646520476f, 'Y', '2006-05-19 11:56:05'),
(503, 32, 0x4d697363656cc2b76cc3a06e6961, 'Y', '2006-05-19 11:56:05'),
(504, 32, 0x5265676c657320646520476f, 'Y', '2006-05-19 11:56:05'),
(505, 32, '', 'Y', '2006-09-19 11:08:19'),
(506, 32, 0x456c206d61746569782071756520756e2070756e742e20556e61206c6c6962657274617420616c207461756c65722e, 'N', '2006-05-19 11:56:05'),
(507, 32, '', 'Y', '2006-09-19 11:08:19'),
(508, 32, 0x556e61207175616e74697461742061666567696461206465203c6120687265663d222f6661712e7068703f726561643d74266361743d3323456e74727938223e6d6f6b753c2f613e20646f6e61646120616c20426c616e632070657220636f6d70656e73617220656c207375706f736174206176616e7461746765207175652074c3a920656c204e65677265207175616e206a756761206c61207072696d6572612070656472612e, 'N', '2006-05-19 11:56:05'),
(509, 32, 0x436f7274657369612064656c20447261676f6e, 'Y', '2006-05-19 11:56:05'),
(510, 32, 0x4572726f72732064656c20447261676f6e, 'N', '2006-05-19 11:56:05'),
(511, 32, 0x4d656ec3ba732069206f7063696f6e732064656c20447261676f6e, 'Y', '2006-05-19 11:56:05'),
(512, 32, 0x50617274696465732064656c20447261676f6e, 'Y', '2006-05-19 11:56:05'),
(513, 32, 0x446573656e766f6c7570616d656e742064656c20447261676f6e, 'Y', '2006-05-19 11:56:05'),
(514, 32, 0x45737469632061746162616c617421204869206861206572726f72732070657220746f7420617272657521, 'Y', '2006-05-19 11:56:05'),
(515, 32, 0x486173206573746174206a7567616e74206120476f20656e20444753206d617373612074656d70732e2056c3a9732061207072656e647265277420756e61206475747861206920706f7361722d746520726f6261206e6574612e203a2d29, 'Y', '2006-05-19 11:56:05'),
(518, 32, '', 'N', '2006-09-19 11:08:19'),
(519, 32, 0x4e696769726920c3a97320756e61206d616e6572612064652064656369646972207175696e206a756761646f7220647575206c6573206e65677265732e2050657220636f6d656ec3a761722c20756e206a756761646f7220616761666120756e61207175616e74697461742064652070656472657320626c616e717565732e20416c6573686f726573206c27616c747265206a756761646f7220636f6cc2b76c6f636120756e61206f206475657320706564726573206e656772657320736f62726520656c20676f62616e2070657220696e64696361722073692063726575207175652061206c61206dc3a02064656c20736575206f706f6e656e7420686920686120756e6120786966726120706172656c6c61206f2073656e61722064652070656472657320626c616e717565732e20536920686f20686120656e646576696e61742c20647575206c6573206e65677265733b207369206e6f2c206a75676120616d62206c657320626c616e717565732e0d0a4e61747572616c6d656e742c20617175c3ad20616c20447261676f6e2c206171756573742070726f63c3a97320c3a973206d656e61742070656c207365727669646f722e20456e20646172726572207465726d652071756920647575206c657320626c616e717565732072657020756e206b6f6d6920646520362e352070756e74732e0d0a456c204e6967697269207327686175726961206427656d7072617220736920656c73206a756761646f72732073c3b36e2064656c206d6174656978206e6976656c6c2e, 'N', '2006-05-19 11:56:05'),
(522, 32, 0xc3897320636f7272656374652064657369746a61722022626f6e6120736f727422206120616c67c3ba207175616e20636f6d656e63656d20756e612070617274696461206e6f76613f, 'Y', '2006-05-19 11:56:05'),
(523, 32, 0x53c3ad2c206573636c61722e20416c67756e73206a756761646f727320707265666572656978656e2074616d62c3a920656c207465726d6520747261646963696f6e616c203c6120687265663d222f6661712e7068703f726561643d74266361743d3323456e7472793738223e6f6e656761697368696d6173753c2f613e2e, 'N', '2006-05-19 11:56:05'),
(525, 32, 0x50756320737567676572697220756e61206e6f7661206361726163746572c3ad73746963613f, 'Y', '2006-05-19 11:56:05'),
(526, 32, 0x492074616e742120536973706c617520656e76696120656c2074657520737567676572696d656e7420616c203c4120485245463d222f70686f72756d2f6c6973742e7068703f663d34223e66c3b272756d206465206469736375737369c3b33c2f413e2e0d0a0d0a4a61206869206861206c6c6973746573206465206361726163746572c3ad73746971756573207375676765726964657320656e206c61202242c3ba737175656461206465206361726163746572c3ad737469717565732064656c20447261676f6e222c20656e206c61203c4120485245463d22687474703a2f2f73656e736569732e786d702e6e65742f3f444753576973686c69737422205441524745543d225f626c616e6b223e2244475320776973686c6973742061742053656e7365692773204c696272617279223c2f413e206920656e206c61202250c3a067696e612064652063616e766973204356532064656c2070726f6a656374652064656c20447261676f6e20656e20536f75726365666f72676522, 'N', '2006-05-19 11:56:05'),
(529, 32, 0x4f6e2070756320617072656e647265206dc3a97320736f62726520756e61207265676c61206573706563c3ad666963613f, 'Y', '2006-05-19 11:56:05'),
(530, 32, 0x4578706c69636120656c2074657520647562746520616c732066c3b272756d7320646520464151206f20646520476f2e20c38973207265636f6d616e61626c6520717565206578706c69717569732074616e7420736f627265207175696e61206d656e61206465207265676c6120766f6c7320696e666f726d616369c3b320636f6d20656e207175696e612073697475616369c3b32073756363656972696120656c20717565206e6f20656e74656e732e, 'Y', '2006-05-19 11:56:05'),
(531, 32, 0x5175696e65732073c3b36e206c6573207265676c65732062c3a07369717565732064656c20476f3f, 'Y', '2006-05-19 11:56:05'),
(1036, 5, 0x4573742d636520717565206c657320636f6d7074657320646573207574696c697361746575727320696e61637469667320736f6e74207265746972e973266e6273703b3f, 'N', '2006-05-22 00:57:19'),
(1037, 5, 0x4e6f6e2e20496c7320736f6e742073696d706c656d656e74206d61727175e97320636f6d6d6520696e6163746966732065742064697370617261697373656e74206465206c61206c69737465206e6f726d616c6520646573207574696c69736174657572732e204d61697320696c732072657374656e742064616e73206c61206c6973746520636f6d706ce8746520646573207574696c69736174657572732028766f6972206c65206c69656e20656e20646573736f7573206465206c61206c6973746529, 'N', '2006-05-22 00:57:19'),
(1038, 5, 0x507569732d6a65206d6520666169726520616964657220706f757220646576656e697220706c757320666f7274266e6273703b3f, 'Y', '2006-05-22 00:57:19'),
(1039, 5, 0x4269656e2073fb72266e6273703b21204c69726520646573206c69767265732c2072e9736f75647265206465732070726f626ce86d65732c206a6f75657220636f6e74726520756e206f7264696e61746575722c2064697363757465722061766563206427617574726573206a6f75657572732e2e2e206c65732064697363757373696f6e732064616e73206e6f7320666f72756d73206d6f6e7472656e74207175652062656175636f7570202d20706575742dea74726520746f7573202d207574696c6973656e74206c27756e65206f75206c2761757472652064652063657320706f73736962696c6974e9732e, 'N', '2006-05-22 00:57:19'),
(260, 19, '', 'Y', '2006-12-29 00:39:59'),
(266, 19, '', 'Y', '2006-12-29 00:39:59'),
(272, 19, '', 'Y', '2006-12-29 00:39:59'),
(1038, 19, 0x4c6167756e747a616b2065726162696c69206469747a617a6b65742073656e646f61676f6120697a6174656b6f3f, 'Y', '2006-05-22 22:38:48'),
(1039, 19, 0x4e6f736b692c206972616b75727269206c6962757275616b2c206567696e20676f206172696b6574616b2c206a6f6c61737475206f7264656e616761696c756172656e206175726b612c206869747a6567696e2062657374652065726162696c747a61696c65656b696e2c206574616261722e0d0a466f726f6574616b6f20657a746162616964656b206172676920757a72656e2064757465206a6f6b616c6172692067656869656e656b2c2061676965616e2067757a7469656b2c2068756574616b6f206d65746f646f72656e206261742065726162696c747a656e20647574656c612e, 'N', '2006-05-22 22:38:48'),
(715, 18, 0x4f6767692c, 'Y', '2006-05-25 18:24:24'),
(242, 18, 0x4c612072656769737472617a696f6e6520e8206c69626572612065207469207065726d6574746572e02064692067696f636172652064612073756269746f2e, 'Y', '2006-05-25 18:24:24'),
(243, 18, 0x506572206661766f72652066616920696c206c6f67696e2e, 'Y', '2010-04-02 15:40:11'),
(252, 18, 0x416e636f726120756e6120766f6c74612062656e76656e75746f2c20652062756f6e20646976657274696d656e746f21, 'Y', '2006-05-25 20:42:46'),
(478, 18, 0x452720706f73736962696c6520726570657269726520756c746572696f726920696e666f726d617a696f6e69206e656c203c6120687265663d226661712e706870223e46415120666f72756d3c2f613e20646f766520736172e020616e63686520706f73736962696c6520736f74746f706f727265206c652070726f7072696520646f6d616e646520737065636966696368652e, 'Y', '2006-05-25 18:24:24'),
(315, 18, 0x526973706f737461, 'Y', '2006-05-25 18:49:58'),
(433, 18, 0x48616e646963617020636f72726574746f, 'Y', '2006-05-25 18:49:58'),
(740, 18, 0x5269636576757469, 'Y', '2006-05-25 18:49:58'),
(214, 18, 0x436f6f7264696e617465206c61746572616c69, 'Y', '2006-05-25 18:49:58'),
(219, 18, 0x426f72646920736d757373617469, 'Y', '2006-05-25 18:49:58'),
(1032, 18, 0x477265636f, 'Y', '2006-05-25 18:49:58'),
(1033, 18, 0x55637261696e6f, 'Y', '2006-05-25 18:49:58'),
(1034, 18, 0x436174616c616e6f, 'Y', '2006-05-25 18:49:58'),
(1035, 18, 0x43696e657365202873656d706c6966696361746f2920287574662d3829, 'Y', '2006-05-25 18:49:58'),
(260, 18, 0x446f6d616e6465207269636f7272656e74692028464151292073756c20676f2070657220696c206e65777367726f7570207265632e67616d65732e676f, 'Y', '2006-05-25 19:00:29'),
(298, 18, 0x416d70696f20636174616c6f676f20646920707562626c6963617a696f6e692073756c20676f, 'Y', '2006-05-25 19:00:29'),
(5776, 36, 0x456cc5917ac591206cc3a970c3a973206d75746174c3a17361, 'Y', '2015-07-23 12:12:41'),
(340, 18, 0x476573746f72652064656c6c6520464151, 'Y', '2006-05-25 19:00:29'),
(385, 18, 0x4e756f766f206172676f6d656e746f, 'N', '2006-05-25 19:00:29'),
(12, 18, 0x436f6e6e657373696f6e6520616c2064617461626173652066616c6c6974612e204173706574746120616c63756e69206d696e757469206520726970726f76612e, 'Y', '2011-09-29 16:02:30'),
(13, 18, 0x496d706f73736962696c6520656c696d696e617265206c6120706172746974612e2051756573746f2070726f626162696c6d656e7465206e6f6e20e820756e206d616c66756e7a696f6e616d656e746f2064656c20736f6674776172652e, 'Y', '2010-12-02 16:10:31'),
(14, 18, 0x5370696163656e74652c206d61206e6f6e20e820737461746f20706f73736962696c6520696e73657269726520696c206d657373616767696f206e656c2064617461626173652e, 'Y', '2006-05-25 19:00:29'),
(15, 18, 0x5370696163656e74652c206d61206e6f6e20e820737461746f20706f73736962696c6520696e736572697265206c612070617274697461206e656c2064617461626173652e, 'Y', '2006-05-25 19:00:29'),
(16, 18, 0x5370696163656e74652c206d61206e6f6e20e820737461746f20706f73736962696c6520696e736572697265206c61206d6f737361206e656c2064617461626173652e20506f696368e92071756573746f20706f7472656262652061636865206e6f6e2065737365726520756e206d616c66756e7a696f6e616d656e746f2064656c20736f6674776172652c207269746f726e61726520616c6c6120706172746974612070657220636f6e74726f6c6c617265207365206c61206d6f73736120e820737461746120636f7272657474616d656e746520696e7365726974612e, 'Y', '2006-05-25 19:00:29'),
(17, 18, 0x5370696163656e74652c206d61206e6f6e20e820737461746f20706f73736962696c6520696e73657269726520692064617469206e656c2064617461626173652e20536520e820696d706f73736962696c65206566666574747561726520696c206c6f67696e2c20726970726f766172652e20536520696c2070726f626c656d612070657273697374652c20636f6e7461747461726520696c20737570706f72746f207465636e69636f2e, 'Y', '2006-05-25 19:00:29'),
(18, 18, 0x5269636869657374612066616c6c6974612e204173706574746120616c63756e69206d696e757469206520726970726f76612e, 'Y', '2011-09-29 16:02:30'),
(27, 18, 0x5370696163656e74652c206d6120e8206e65636573736172696f2063686520656e7472616d626920676c69206176766572736172692061626269616e6f20696d706f737461746f20756e206c6976656c6c6f20696e697a69616c652c20696e20617373656e7a612064656c207175616c6520736172e020696d706f73736962696c652070657220696c20736f6674776172652073746162696c697265206c2768616e646963617020617070726f70726961746f2e, 'Y', '2010-04-02 17:06:59'),
(1266, 18, 0xc820636f6d652067696f636172652076696120656d61696c20636f6e20756e20696e74657266616363696120776562207065722072656e64657265206c6520636f736520706975206174747261656e74692e2050657220636f6d696e636961726520612067696f636172652c207072696d6120726567697374726120756e206e756f766f203c6120687265663d2272656769737465722e706870223e6163636f756e743c2f613e2c207365206e6f6e206e6520686169206769e020756e6f2e20446f706f64696368e920706f747265737469203c6120687265663d22656469745f70726f66696c652e706870223e6d6f646966696361726520696c2074756f2070726f66696c6f3c2f613e2065203c6120687265663d22656469745f62696f2e706870223e696d6d65747465726520756e2070f220646920696e666f726d617a696f6e692062696f67726166696368653c2f613e2c206c6520636173656c6c6520274c6976656c6c6f272c2027496e666f726d617a696f6e692073756c20677261646f2720652027446973706f6e6962696c65207065722067696f636172652720696e207061727469636f6c61726520736f6e6f207574696c69207065722074726f76617265206465676c69206176766572736172692e20556e6120766f6c746120666174746f2071756573746f2070756f69206775617264617265206e656c6c273c6120687265663d2275736572732e706870223e656c656e636f206465676c69207574656e74693c2f613e2065207574696c697a7a6172652069203c6120687265663d2270686f72756d2f696e6465782e706870223e666f72756d3c2f613e207065722074726f7661726520756e206176766572736172696f2061646174746f20616420657373657265203c6120687265663d226d6573736167652e7068703f6d6f64653d496e76697465223e696e76697461746f3c2f613e20616420756e612070617274697461, 'Y', '2010-04-02 17:08:37'),
(35, 18, 0x4c612070617373776f726420646920636f6e6665726d61206e6f6e20636f72726973706f6e646520616c6c612070617373776f726420646967697461746120696e20707265636564656e7a612e20526970726f7661726520616420696e73657269726c6520656e7472616d62652e, 'Y', '2006-05-25 21:48:43'),
(38, 18, 0x5370696163656e74652c206d61206e656c206c6976656c6c6f20696e64696361746f20666f72736520e820737461746f206f6d6573736f20646920737065636966696361726520226b797522206f202264616e222e, 'Y', '2006-05-25 19:13:25'),
(39, 18, 0x5370696163656e74652c206d61206e6f6e20e820706f73736962696c65207574696c697a7a61726520226b797522206f202264616e22207065722071756573746f207469706f206469206c6976656c6c6f2e, 'Y', '2006-05-25 19:13:25'),
(40, 18, 0x5370696163656e74652c206d612071756573746120706965747261206e6f6e207075f2206573736572652067696f6361746120696e2071756573746120706f73697a696f6e65207065726368e920737569636964612e, 'Y', '2006-05-25 19:13:25'),
(41, 18, 0x5370696163656e74652c20e820696d706f73736962696c6520696e646976696475617265206c6120706172746974612e, 'Y', '2006-05-25 19:13:25'),
(42, 18, 0x5370696163656e74652c20e820696d706f73736962696c6520696e64697669647561726520696c20666f72756d2072696368696573746f2e, 'Y', '2006-05-25 19:13:25'),
(43, 18, 0x51756573746f206d657373616767696f2073656d6272612065737365726520756e6120726973706f73746120616420756e206d657373616767696f20696e6573697374656e74652e, 'Y', '2006-05-25 19:18:48'),
(44, 18, 0x5370696163656e74652c20e820696d706f73736962696c6520696e64697669647561726520696c206d657373616767696f2072696368696573746f2e, 'Y', '2006-05-25 19:18:48'),
(45, 18, 0x5370696163656e74652c20e820696d706f73736962696c6520696e646976696475617265206c277574656e74652072696368696573746f2e, 'Y', '2006-05-25 19:18:48'),
(46, 18, 0x5370696163656e74652c207175657374612075736572696420e8206769e0207574696c697a7a6174612c20e8206e65636573736172696f20736365676c6965726e6520756e27616c7472612e, 'Y', '2006-05-25 19:18:48'),
(49, 18, 0x5370696163656e74652c20e820706f73736962696c652063616e63656c6c61726520736f6c74616e746f20756e612064656c6c652070726f7072696520706172746974652e, 'Y', '2006-05-25 19:18:48'),
(50, 18, 0x5370696163656e74652c20e820696d706f73736962696c6520696e64697669647561726520717565737461207061727469746120696e206174746573612e2050726f626162696c6d656e746520756e20616c74726f207574656e7465206861206769e0207363656c746f2064692061646572697276692e, 'Y', '2006-05-25 19:18:48'),
(51, 18, 0x5370696163656e74652c20e820696d706f73736962696c65206164657269726520616420756e612070726f7072696120706172746974612e, 'Y', '2006-05-25 19:18:48'),
(52, 18, 0x5370696163656e74652c20696c2074756f206c6976656c6c6f206e6f6e20e820636f6d707265736f206e656c6c27696e74657276616c6c6f2072696368696573746f2e, 'Y', '2006-05-25 19:18:48'),
(54, 18, 0x5370696163656e74652c206c612070617373776f7264206e6f6e20e820737461746120646967697461746120636f7272657474616d656e74652e, 'Y', '2006-05-25 19:18:48'),
(55, 18, 0x477261646f2073636f6e6f73636975746f, 'Y', '2006-05-25 23:32:57'),
(56, 18, 0x5370696163656e74652c20e820696d706f73736962696c6520696e64697669647561726520717565737461207573657269642e, 'Y', '2006-05-25 19:18:48'),
(57, 18, 0x5370696163656e74652c20696c206c6976656c6c6f20696e7a69616c65206465762765737365726520636f6d707265736f20747261203330206b7975206520362064616e2e, 'Y', '2006-05-25 19:34:14'),
(58, 18, 0x5370696163656e74652c20e820737461746f20696e73657269746f20756e2076616c6f7265206e6f6e206e756d657269636f20696e20756e2063616d706f206e756d657269636f2e, 'Y', '2006-05-25 19:34:14'),
(59, 18, 0x5370696163656e74652c206c612074726164757a696f6e6520e820636f6e73656e7469746120736f6c6f20616920747261647574746f72692e, 'Y', '2006-05-25 19:34:14'),
(60, 18, 0x536520646573696465726920636f6e7472696275697265206120747261647572726520447261676f6e2c206c617363696120756e206d657373616767696f206e656c20666f72756d2054726164757a696f6e692e, 'Y', '2006-05-25 19:34:14'),
(61, 18, 0x5370696163656e74652c206e6f6e20746920e820636f6e73656e7469746f207472616475727265206e656c6c61206c696e6775612073706563696669636174612e, 'Y', '2006-05-25 21:48:43'),
(63, 18, 0x5370696163656e74652c206d6120696c2074656e74617469766f20646920696e736572697265206c612074726164757a696f6e65206e656c20646174616261736520e82066616c6c69746f2e, 'Y', '2006-05-25 19:34:14'),
(66, 18, 0x5370696163656e74652c2071756573746120706167696e6120e8207269736572766174612061676c69207574656e7469206368652073766f6c676f6e6f20636f6d7069746920646920616d6d696e69737472617a696f6e652e, 'Y', '2006-05-25 19:34:14'),
(69, 18, 0x5370696163656e74652c20e820696d706f73736962696c6520696e64697669647561726520692064617469207269636869657374692e, 'Y', '2006-05-25 19:34:14'),
(75, 18, 0x5370696163656e74652c20e820696d706f73736962696c6520696e64697669647561726520696c20746f726e656f20737065636966696361746f2e, 'Y', '2006-05-25 19:34:14'),
(1627, 17, '', 'Y', '2013-08-21 00:32:26'),
(1629, 17, '', 'Y', '2013-08-21 00:32:26'),
(1641, 17, '', 'Y', '2013-08-21 00:32:52'),
(1646, 17, 0x4e6965706f707261776e652075bf7963696520637974617475, 'Y', '2013-08-21 01:17:20'),
(474, 18, 0x4c27617a696f6e652072696368696573746120e82073636f6e6f7363697574612c206f206e6f6e20e820616d6d6973736962696c6520696e2071756573746f20636f6e746573746f2e, 'Y', '2006-05-25 19:39:48'),
(475, 18, 0x496c206b6f6d6920e820696d706f737461746f20616c2064692066756f726920646569206c696d69746920636f6e73656e746974692c20736365676c6965726520756e2076616c6f7265207069f920616465677561746f2e, 'Y', '2006-05-25 19:39:48'),
(476, 18, 0x536920e8207665726966696361746f20756e206572726f726520696e207365677569746f206120717565737461206d6f7373612e20526970726f766172652e20536520696c2070726f626c656d612070657273697374652c20636f6e7461747461726520696c20737570706f72746f207465636e69636f2e, 'Y', '2006-05-25 19:39:48'),
(477, 18, 0x496c206e756d65726f2064656c6c65207069657472652064692068616e646963617020e82065727261746f, 'Y', '2006-05-25 19:39:48'),
(714, 18, 0x5370696163656e74652c206e6f6e20e820737461746f20706f73736962696c6520696e646976696475617265206c612063617274656c6c6120646569206d657373616767696f2073706563696669636174612e, 'Y', '2006-05-25 19:39:48'),
(501, 18, 0x5574656e746920652050726f66696c69207574656e746520646920447261676f6e, 'N', '2006-05-25 19:51:11'),
(502, 18, 0x5465726d696e692064656c20676f, 'Y', '2006-05-25 19:51:11'),
(504, 18, 0x5265676f6c652064656c20676f, 'Y', '2006-05-25 19:51:11'),
(506, 18, 0x556e2070756e746f206469207465727269746f72696f, 'Y', '2010-10-26 15:58:33'),
(507, 18, '', 'Y', '2012-08-22 20:48:45'),
(509, 18, 0x4c6f207374696c6520646920447261676f6e, 'Y', '2006-05-25 19:51:11'),
(510, 18, 0x42756720652070726f626c656d6920646920447261676f6e, 'Y', '2009-11-15 13:57:48'),
(511, 18, 0x4d656e75206564206f707a696f6e6920646920447261676f6e, 'Y', '2006-05-25 19:51:11'),
(512, 18, 0x5061727469746520646920447261676f6e, 'Y', '2006-05-25 19:51:11'),
(513, 18, 0x5376696c7570706f20646920447261676f6e, 'Y', '2006-05-25 19:51:11'),
(514, 18, 0x536f6e6f20746572726f72697a7a61746f2120436920736f6e6f2062756720646170706572747574746f21, 'Y', '2006-05-25 19:51:11'),
(515, 18, 0x53656920737461746f20636f6e6e6573736f206120447261676f6e2074726f70706f2061206c756e676f2e2045272074656d706f20646920696e646f737361726520756e612063616d696369612070756c6974612e, 'Y', '2006-05-25 21:28:53'),
(518, 18, '', 'N', '2012-08-22 20:48:45'),
(519, 18, 0x496c204e696769726920e820756e206d6f646f2070657220736365676c696572652061206361736f20636869206465692067696f6361746f7269207072656e646572e0696c206e65726f2e20556e6f2064656920647565207072656e646520756e61206d616e636961746120646920706965747265206269616e6368652c20646f706f64696368e9206c27616c74726f207069617a7a6120756e61206f2064756520706965747265206e6572652073756c20676f62616e2c2070657220696e6469636172652063686520637265646520636865206c276176766572736172696f20616262696120707265736f20756e206e756d65726f2064697370617269206f207061726920646920706965747265206269616e6368652e20536520696e646f76696e612c207072656e646520696c206e65726f2c20616c7472696d656e746920696c206269616e636f2e0d0a4f767669616d656e746520737520447261676f6e2071756573746f206d656363616e69736d6f207669656e65206566666574747561746f206175746f6d61746963616d656e74652064616c207365727665722e20416c206269616e636f207370657474612073656d70726520756e206b6f6d692070617269206120362e352e206c61206d6f64616c6974e0204e696769726920616e647265626265207574696c697a7a61746120646920707265666572656e7a61207472612067696f6361746f72692064656c6c612073746573736120666f727a612e, 'N', '2006-05-25 19:51:11'),
(522, 18, 0x452720636f72726574746f20617567757261726520616c6c276176766572736172696f202262756f6e6120666f7274756e612220616c6c27696e697a696f20646920756e6120706172746974613f, 'Y', '2006-05-25 20:20:38'),
(523, 18, 0x43657274616d656e74652e20416c63756e692067696f6361746f726920677261646973636f6e6f20616e63686520696c207465726d696e652074726164697a696f6e616c65203c6120687265663d22687474703a2f2f73656e736569732e786d702e6e65742f3f4f6e656761697368696d61737522207461726765743d225f626c616e6b223e6f6e656761697368696d6173753c2f613e2e, 'Y', '2007-11-28 17:36:34'),
(525, 18, 0x506f73736f20737567676572697265206c27696e74726f64757a696f6e6520646920756e61206e756f76612063617261747465726973746963613f, 'Y', '2006-05-25 20:20:38'),
(526, 18, 0x4d6120636572746f2120496e766961206c61207475612070726f706f73746120616c203c686f6d6520666f72756d2f6c6973742e7068703f666f72756d3d343e666f72756d2064692064697363757373696f6e653c2f686f6d653e2e0d0a0d0a4c27656c656e636f2064656c6c6520636172617474657269737469636865206769e02072696368696573746520e820646973706f6e6962696c65207472616d69746520223c693e466f72756d20646920726963657263612064656c6c65206361726174746572697374696368653c2f693e222c207472616d697465203c4120485245463d22687474703a2f2f73656e736569732e786d702e6e65742f3f444753576973686c69737422205441524745543d225f626c616e6b223e226c61206c697374612064656c6c652072696368696573746520616c6c61206c696272657269612053656e736569223c2f413e2065207472616d697465206c61203c6120687265663d22687474703a2f2f647261676f6e676f7365727665722e6376732e736f75726365666f7267652e6e65742f647261676f6e676f7365727665722f447261676f6e476f5365727665722f736372697074732f4368616e67654c6f673f766965773d6d61726b7570223e2220435653204c69737461206465692063616d6269616d656e74692064656c6c6120706167696e612064656c2070726f676574746f20447261676f6e20737520536f75726365666f726765223c2f613e2e0d0a0d0a0d0a22435653206368616e67656c6f67206f6620447261676f6e27732070726f6a656374207061676520617420536f75726365666f726765222e, 'N', '2010-04-03 14:51:58'),
(529, 18, 0x446f766520706f73736f20617070726f666f6e6469726520756e61207061727469636f6c617265207265676f6c613f, 'Y', '2006-05-25 20:20:38'),
(530, 18, 0x45737072696d69206c612074756120726963686965737461206e656c20666f72756d20464151206f707075726520476f2e204527206f70706f7274756e6f2063686520737065636966696368652061207175616c65207265676f6c61207469207269666572697363692c20656420616e6368652061207175616c652073697475617a696f6e652064656c6c61207061727469746120636f72726973706f6e64652e, 'Y', '2006-05-25 20:20:38'),
(531, 18, 0x5175616c6920736f6e6f206c65207265676f6c6520646920626173652064656c20476f3f, 'Y', '2006-05-25 20:20:38'),
(532, 18, 0x4475652067696f6361746f72692063657263616e6f206469207261636368697564657265207465727269746f726920737520646920756e61207461766f6c612071756164726174612e204c652064696d656e73696f6e692064656c6c61207461766f6c6120736f6e6f20736f6c6974616d656e74652064692031397831392070756e74692c206d6120616e63686520397839206520313378313320736f6e6f20646966667573652e2041207475726e6f2c207069617a7a616e6f207069657472652064656c2070726f7072696f20636f6c6f72652073756c6c6520696e74657273657a696f6e692076756f74652e20436f6d696e63696120696c206e65726f2e0d0a5365202d20696e207365677569746f20616420756e61206d6f7373612064656c6c276176766572736172696f202d20756e6f206465692067727570706920736920726974726f76612073656e7a61206c6962657274e0202863696fe82073656e7a61206e65616e63686520756e6120696e74657273657a696f6e652076756f7461206164206573736f206164696163656e74652c20696e206f72697a7a6f6e74616c65206f20696e20766572746963616c65292c206c6520706965747265206469207175656c2067727570706f2076656e676f6e6f2072696d6f7373652064616c6c61207461766f6c612028736920646963652063686520696c2067727570706f20e820737461746f2063617474757261746f292e20556e61206d6f7373612063686520706f727469206120726964757272652061207a65726f206c65206c6962657274e020646920756e2070726f7072696f2067727570706f202861692066696e692064656c6c61207665726966696361206469207175657374612073697475617a696f6e652c2076616e6e6f207072696d612072696d6f7373652064616c6c61207461766f6c61206c65207069657472652061767665727361726965206576656e7475616c6d656e7465206361747475726174652920e820696c6c6567616c652e0d0a0d0a4e6f6e20e8206e65636573736172696f207069617a7a61726520756e612070696574726120616c2070726f7072696f207475726e6f2c207369207075f2206163686520706173736172652e205175616e646f20656e7472616d626920692067696f6361746f72692c20756e6f20646f706f206c27616c74726f2c2070617373616e6f20696c207475726e6f2c206c61207061727469746120e82066696e6974612c206520736920696e697a696120696c20636f6e74656767696f206465692070756e74692c20646f706f20617665722072696d6f73736f206c6520706965747265206d6f7274652e204369617363756e6f20636f6e7461206c6520696e74657273657a696f6e69206c696265726520696e7465726e65206169207465727269746f72692063686520e820726975736369746f20612072616363686975646572652c206520616420657373692061676769756e676520696c206e756d65726f206469207069657472652061767665727361726965206361747475726174652e20496c206269616e636f2061676769756e67652061206369f220616e63686520696c206b6f6d692e2056696e636520696c2067696f6361746f72652064616c2070756e74656767696f20636f6d706c65737369766f207069f920616c746f2e0d0a0d0a50657220756e20617070726f666f6e64696d656e746f20e820706f73736962696c6520636f6e73756c74617265206c6120706167696e61207765622064656c6c61204665646572617a696f6e65206974616c69616e612067696f636f20476f2c20636f6e74656e656e7465206c65207370696567617a696f6e69206465747461676c696174652064656c6c65207265676f6c652c20636f6e206573656d70692c20756e20636f72736f20696e74657261747469766f2c20756e20207265766520676c6f73736172696f20656420756e27616d706961207175616e746974e0206469206d6174657269616c65206120646973706f73697a696f6e6520646569207072696e63697069616e74692c20616c6c27696e646972697a7a6f207777772e666967672e6f72673b20696e20616c7465726e61746976612c20e820706f73736962696c6520636f6e74617474617265206c276173736f6369617a696f6e6520676f697374696361206974616c69616e6120616c6c27696e646972697a7a6f20776562207777772e6167692e676f2e69742e, 'Y', '2006-05-25 20:20:38'),
(533, 18, 0x446f766520706f73736f2074726f7661726520616c74726520706167696e652077656220646564696361746520616c20476f3f, 'Y', '2006-05-25 20:20:38'),
(534, 18, 0x416c6c61203c6120687265663d222f6c696e6b732e706870223e706167696e6120646569206c696e6b3c2f613e20646920447261676f6e2e, 'Y', '2006-05-25 20:20:38'),
(535, 18, '', 'Y', '2012-08-22 20:48:45'),
(536, 18, 0x496c2066696e616c652c206c27756c74696d6120666173652064656c6c6120706172746974612c20646f7665206e6f6e2076656e676f6e6f207069f92065666665747475617465206d6f737365206469206174746163636f2061692067727570706920617676657273617269206d6120736f6c6f206d6f73736520646920726966696e697475726120766f6c7465206120636f6e736f6c6964617265206520616420616d706c6961726520692070726f707269207465727269746f72692e, 'Y', '2006-05-25 20:36:10'),
(537, 18, 0x4174617269, 'Y', '2010-07-14 23:56:27'),
(538, 18, 0x4c27617461726920e820756e612073697475617a696f6e65206e656c6c61207175616c6520e820696d6d6564696174616d656e746520706f73736962696c652063617474757261726520756e2067727570706f2c207065726368e9206164206573736f2072696d616e6520756e6120736f6c61206c6962657274e02028696e2071756573746520636f6e64697a696f6e6920736920646963652063686520696c2067727570706f20e82022696e20617461726922292e0d0a446972652022617461726922206e656c20636f72736f20646920756e61207061727469746120e820636f72726574746f2c206d61206e6f6e206f62626c696761746f72696f2e2047656e6572616c6d656e746520692067696f6361746f7269207369206163636f7264616e6f20616c6c27696e697a696f2064656c6c61207061727469746120636972636120717565737461206d6f64616c6974e02e20496e20756e612070617274697461206469646174746963612c206f20696e20756e6120706172746974612067696f6361746120636f6e206d6f6c74692068616e64696361702c207075f220657373657265206d6f6c746f207574696c652070657220696c206e65726f2063686520696c206269616e636f206c6f207370656369666963686920646920766f6c746120696e20766f6c74612e0d0a4e656c6c6120707261746963612064656c2067696f636f206f6e6c696e652c20e820636f6e736964657261746f2065636365737369766f2e, 'Y', '2006-05-25 20:36:10'),
(539, 18, '', 'Y', '2012-08-22 20:48:45'),
(540, 18, 0x496c206b6f20e820756e612073697475617a696f6e652064692063617474757261207269706574697469766120646920756e612073696e676f6c61207069657472612e204c6574746572616c6d656e74652c20696c207465726d696e6520226b6f222076756f6c20646972652022657465726e6974e0222e, 'Y', '2006-05-25 20:36:10'),
(541, 18, 0x452720706f73736962696c652072697072697374696e61726520756e6120706172746974612066696e697461207065722074696d656f75743f, 'Y', '2006-05-25 20:36:10'),
(542, 18, 0x4e6f2e203c693e4527206e65636573736172696f20696e697a6961726520756e6120756f7661207061727469746120636f6e203c6120687265663d222f6661712e7068703f726561643d74266361743d3536223e756e27616465677561746120696d706f7374617a696f6e6520646569206c696d6974692064692074656d706f3c2f613e213c2f693e, 'Y', '2006-05-25 20:36:10'),
(545, 18, '', 'Y', '2012-08-22 20:48:45'),
(499, 18, 0x41, 'Y', '2006-05-25 20:53:34'),
(159, 18, 0x446f63756d656e74617a696f6e65, 'Y', '2006-05-25 21:26:32'),
(294, 18, 0x4c612073746f7269612070657220696e7465726f, 'Y', '2006-05-25 21:26:32'),
(297, 18, 0x4269626c696f67726166696120726167696f6e617461, 'Y', '2006-05-25 21:26:32'),
(756, 18, '', 'Y', '2012-08-22 20:48:45'),
(757, 18, '', 'Y', '2012-08-22 20:48:45'),
(758, 18, '', 'Y', '2012-08-22 20:48:45'),
(759, 18, '', 'Y', '2012-08-22 20:48:45'),
(760, 18, '', 'Y', '2012-08-22 20:48:45'),
(761, 18, 0x416e74617274696465, 'Y', '2006-05-25 22:24:23'),
(763, 18, '', 'Y', '2012-08-22 20:48:45'),
(764, 18, '', 'Y', '2012-08-22 20:48:45'),
(765, 18, '', 'Y', '2012-08-22 20:48:45'),
(766, 18, '', 'Y', '2012-08-22 20:48:45'),
(768, 18, '', 'Y', '2012-08-22 20:48:45'),
(770, 18, '', 'Y', '2012-08-22 20:48:45'),
(771, 18, '', 'Y', '2012-08-22 20:48:45'),
(772, 18, 0x4269656c6f727573736961, 'Y', '2006-05-25 22:24:23'),
(773, 18, 0x42656c67696f, 'Y', '2006-05-25 22:24:23'),
(775, 18, '', 'Y', '2012-08-22 20:48:45'),
(776, 18, '', 'Y', '2012-08-22 20:48:45'),
(777, 18, '', 'Y', '2012-08-22 20:48:45'),
(779, 18, '', 'Y', '2012-08-22 20:48:45'),
(780, 18, 0x42726173696c65, 'Y', '2006-05-25 22:24:23'),
(782, 18, '', 'Y', '2012-08-22 20:48:45'),
(783, 18, '', 'Y', '2012-08-22 20:48:45'),
(784, 18, '', 'Y', '2012-08-22 20:48:45'),
(786, 18, 0x43616d6572756e, 'Y', '2006-05-25 22:24:23'),
(787, 18, '', 'Y', '2012-08-22 20:48:45'),
(788, 18, 0x4361706f205665726465, 'Y', '2006-05-25 22:24:23'),
(790, 18, 0x43696164, 'Y', '2006-05-25 22:24:23'),
(791, 18, 0x43696c65, 'Y', '2006-05-25 22:24:23'),
(792, 18, 0x43696e61, 'Y', '2006-05-25 22:24:23'),
(793, 18, '', 'Y', '2012-08-22 20:48:45'),
(797, 18, '', 'Y', '2012-08-22 20:48:45'),
(798, 18, 0x436f73746120642741766f72696f, 'Y', '2006-05-25 22:24:23'),
(799, 18, 0x43726f617a6961, 'Y', '2006-05-25 22:24:23'),
(800, 18, '', 'Y', '2012-08-22 20:48:45'),
(801, 18, 0x436970726f, 'Y', '2006-05-25 22:24:23'),
(802, 18, 0x5265707562626c6963612043656361, 'Y', '2006-05-25 22:24:23'),
(803, 18, 0x44616e696d61726361, 'Y', '2006-05-25 22:24:23'),
(806, 18, 0x5265707562626c69636120446f6d696e6963616e61, 'Y', '2006-05-25 22:24:23'),
(808, 18, '', 'Y', '2012-08-22 20:48:45'),
(809, 18, 0x45676974746f, 'Y', '2006-05-25 22:24:23'),
(810, 18, '', 'Y', '2012-08-22 20:48:45'),
(811, 18, 0x4775696e65612065717561746f7269616c65, 'Y', '2006-05-25 22:24:23'),
(812, 18, '', 'Y', '2012-08-22 20:48:45'),
(813, 18, '', 'Y', '2012-08-22 20:48:45'),
(814, 18, 0x4574696f706961, 'Y', '2006-05-25 22:24:23'),
(816, 18, 0x46696e6c616e646961, 'Y', '2006-05-25 22:24:23'),
(817, 18, 0x4672616e636961, 'Y', '2006-05-25 22:24:23'),
(818, 18, '', 'Y', '2012-08-22 20:48:45'),
(820, 18, '', 'Y', '2012-08-22 20:48:45'),
(821, 18, 0x4765726d616e6961, 'Y', '2006-05-25 22:24:23'),
(822, 18, '', 'Y', '2012-08-22 20:48:45'),
(823, 18, 0x477265636961, 'Y', '2006-05-25 22:24:23'),
(825, 18, '', 'Y', '2012-08-22 20:48:45'),
(826, 18, '', 'Y', '2012-08-22 20:48:45'),
(827, 18, '', 'Y', '2012-08-22 20:48:45'),
(828, 18, '', 'Y', '2012-08-22 20:48:45'),
(829, 18, '', 'Y', '2012-08-22 20:48:45'),
(830, 18, '', 'Y', '2012-08-22 20:48:45'),
(831, 18, '', 'Y', '2012-08-22 20:48:45'),
(832, 18, 0x556e676865726961, 'Y', '2006-05-25 22:24:23'),
(833, 18, 0x49736c616e6461, 'Y', '2006-05-25 22:24:23'),
(834, 18, '', 'Y', '2012-08-22 20:48:45'),
(835, 18, '', 'Y', '2012-08-22 20:48:45'),
(836, 18, '', 'Y', '2012-08-22 20:48:45'),
(837, 18, '', 'Y', '2012-08-22 20:48:45'),
(838, 18, 0x49726c616e6461, 'Y', '2006-05-25 22:24:23'),
(839, 18, 0x49737261656c65, 'Y', '2006-05-25 22:24:23'),
(840, 18, 0x4974616c6961, 'Y', '2006-05-25 22:24:23'),
(841, 18, 0x4769616d61696361, 'Y', '2006-05-25 22:24:23'),
(842, 18, 0x47696170706f6e65, 'Y', '2006-05-25 22:24:23'),
(843, 18, 0x47696f7264616e6961, 'Y', '2006-05-25 22:24:23'),
(845, 18, '', 'Y', '2012-08-22 20:48:45'),
(849, 18, '', 'Y', '2012-08-22 20:48:45'),
(851, 18, '', 'Y', '2012-08-22 20:48:45'),
(854, 18, '', 'Y', '2012-08-22 20:48:45'),
(855, 18, '', 'Y', '2012-08-22 20:48:45'),
(856, 18, 0x4c69626961, 'Y', '2006-05-25 22:24:23'),
(857, 18, '', 'Y', '2012-08-22 20:48:45'),
(858, 18, 0x4c697475616e6961, 'Y', '2006-05-25 22:24:23'),
(859, 18, 0x4c757373656d627572676f, 'Y', '2006-05-25 22:24:23'),
(862, 18, '', 'Y', '2012-08-22 20:48:45'),
(863, 18, '', 'Y', '2012-08-22 20:48:45'),
(864, 18, 0x4d616c65736961, 'Y', '2006-05-25 22:24:23'),
(865, 18, 0x4d616c64697665, 'Y', '2006-05-25 22:24:23'),
(866, 18, '', 'Y', '2012-08-22 20:48:45'),
(867, 18, '', 'Y', '2012-08-22 20:48:45'),
(869, 18, '', 'Y', '2012-08-22 20:48:45'),
(870, 18, '', 'Y', '2012-08-22 20:48:45'),
(871, 18, 0x4d65737369636f, 'Y', '2006-05-25 22:24:23'),
(872, 18, '', 'Y', '2012-08-22 20:48:45'),
(873, 18, '', 'Y', '2012-08-22 20:48:45'),
(874, 18, '', 'Y', '2012-08-22 20:48:45'),
(875, 18, '', 'Y', '2012-08-22 20:48:45'),
(877, 18, 0x4d6f7a616d6269636f, 'Y', '2006-05-25 22:24:23'),
(879, 18, '', 'Y', '2012-08-22 20:48:45'),
(881, 18, '', 'Y', '2012-08-22 20:48:45'),
(882, 18, 0x4f6c616e6461, 'Y', '2006-05-25 22:24:23'),
(883, 18, 0x4e756f7661205a656c616e6461, 'Y', '2006-05-25 22:24:23'),
(884, 18, '', 'Y', '2012-08-22 20:48:45'),
(885, 18, '', 'Y', '2012-08-22 20:48:45'),
(886, 18, '', 'Y', '2012-08-22 20:48:45'),
(887, 18, 0x4e6f727665676961, 'Y', '2006-05-25 22:24:23'),
(888, 18, '', 'Y', '2012-08-22 20:48:45'),
(889, 18, '', 'Y', '2012-08-22 20:48:45'),
(890, 18, '', 'Y', '2012-08-22 20:48:45'),
(892, 18, '', 'Y', '2012-08-22 20:48:45'),
(893, 18, 0x5061707561204e756f7661204775696e6561, 'Y', '2006-05-25 22:24:23'),
(894, 18, '', 'Y', '2012-08-22 20:48:45'),
(895, 18, 0x506572f9, 'Y', '2007-05-01 07:23:11'),
(896, 18, 0x46696c697070696e65, 'Y', '2006-05-25 22:24:23'),
(897, 18, 0x506f6c6f6e6961, 'Y', '2006-05-25 22:24:23'),
(898, 18, 0x506f72746f67616c6c6f, 'Y', '2006-05-25 22:24:23'),
(899, 18, 0x506f72746f7269636f, 'Y', '2006-05-25 22:24:23'),
(900, 18, '', 'Y', '2012-08-22 20:48:45'),
(901, 18, '', 'Y', '2012-08-22 20:48:45'),
(902, 18, '', 'Y', '2012-08-22 20:48:45'),
(903, 18, 0x5275616e6461, 'Y', '2007-05-01 07:23:11'),
(907, 18, '', 'Y', '2012-08-22 20:48:45'),
(910, 18, 0x4172616269612053617564697461, 'Y', '2006-05-25 22:24:23'),
(911, 18, '', 'Y', '2012-08-22 20:48:45'),
(913, 18, '', 'Y', '2012-08-22 20:48:45'),
(914, 18, '', 'Y', '2012-08-22 20:48:45'),
(915, 18, '', 'Y', '2012-08-22 20:48:45'),
(916, 18, 0x536c6f76616363686961, 'Y', '2006-05-25 22:24:23'),
(917, 18, '', 'Y', '2012-08-22 20:48:45'),
(919, 18, '', 'Y', '2012-08-22 20:48:45'),
(921, 18, 0x537061676e61, 'Y', '2006-05-25 22:24:23'),
(922, 18, '', 'Y', '2012-08-22 20:48:45'),
(923, 18, '', 'Y', '2012-08-22 20:48:45'),
(924, 18, '', 'Y', '2012-08-22 20:48:45'),
(925, 18, '', 'Y', '2012-08-22 20:48:45'),
(926, 18, 0x5376657a6961, 'Y', '2006-05-25 22:24:23'),
(927, 18, 0x5376697a7a657261, 'Y', '2006-05-25 22:24:23'),
(928, 18, 0x5369726961, 'Y', '2006-05-25 22:24:23'),
(929, 18, '', 'Y', '2012-08-22 20:48:45'),
(931, 18, '', 'Y', '2012-08-22 20:48:45'),
(932, 18, 0x546861696c616e646961, 'Y', '2006-05-25 22:24:23'),
(933, 18, '', 'Y', '2012-08-22 20:48:45'),
(935, 18, 0x5472696e69646164206520546f6261676f, 'Y', '2006-05-25 22:24:23'),
(936, 18, '', 'Y', '2012-08-22 20:48:45'),
(937, 18, 0x54757263686961, 'Y', '2006-05-25 22:24:23'),
(938, 18, '', 'Y', '2012-08-22 20:48:45'),
(940, 18, '', 'Y', '2012-08-22 20:48:45'),
(941, 18, 0x55637261696e61, 'Y', '2006-05-25 22:24:23'),
(942, 18, 0x456d697261746920417261626920556e697469, 'Y', '2006-05-25 22:24:23'),
(943, 18, 0x5265676e6f20556e69746f, 'Y', '2007-05-01 07:23:11'),
(944, 18, 0x537461746920756e697469206427416d6572696361, 'Y', '2006-05-25 22:24:23');
INSERT INTO `Translations` (`Original_ID`, `Language_ID`, `Text`, `Translated`, `Updated`) VALUES
(945, 18, '', 'Y', '2012-08-22 20:48:45'),
(946, 18, '', 'Y', '2012-08-22 20:48:45'),
(948, 18, 0x43697474e02064656c205661746963616e6f, 'Y', '2006-05-25 22:24:23'),
(949, 18, '', 'Y', '2012-08-22 20:48:45'),
(950, 18, '', 'Y', '2012-08-22 20:48:45'),
(951, 18, '', 'Y', '2012-08-22 20:48:45'),
(952, 18, '', 'Y', '2012-08-22 20:48:45'),
(953, 18, '', 'Y', '2012-08-22 20:48:45'),
(383, 18, 0x656c656e636f2022616420616c6265726f22, 'Y', '2006-05-25 22:44:55'),
(48, 18, 0x4e6f6e20e820706f73736962696c652073747261706f6c6172652076616c6f726920646120756e612066756e7a696f6e6520696e746572706f6c617461, 'Y', '2006-05-25 22:44:55'),
(546, 18, 0x4b797520696e6469636120756e20677261646f206461207072696e63697069616e74652c206f20636f6d756e717565206e6f6e206461206d61657374726f2e2049206772616469206b79752076616e6e6f206461203330206120312c20646f7665203120e8207175656c6c6f207069f920666f7274652e204c6120646566696e697a696f6e65206469203330206b797520e8207175656c6c6120646920756e2067696f6361746f72652063686520686120617070656e6120696d70617261746f206c65207265676f6c652c206d61206e6f6e20686120616e636f72612067696f6361746f20756e6120706172746974612e0d0a49206772616469206b79752072616e6b73206e6f6e20736f6e6f2063657274692066696e6f2061206369726361203130206b79752c2061207061727469726520646169207175616c6920696c2067696f6361746f7265207075f220636f6d70657465726520636f6e20756e2031203c6120687265663d222f6661712e7068703f726561643d74266361743d3323456e7472793339223e64616e3c2f613e20636f6e2039207069657472652064693c6120687265663d222f6661712e7068703f726561643d74266361743d33353723456e7472793937223e68616e64696361703c2f613e2e, 'Y', '2006-05-25 23:15:31'),
(547, 18, '', 'Y', '2012-08-22 20:48:45'),
(548, 18, 0x44616e20696e6469636120756e2022677261646f206461206d61657374726f222e20492067726164692064616e2076616e6e6f206461203120696e2073752c206520616c6c2761756d656e746172652064656c20677261646f2061756d656e7461206c6120666f727a612064656c2067696f6361746f72652e20556e20352064616e206e6f6e2070726f66657373696f6e69737461207669656e6520736f6c6974616d656e74652070617261676f6e61746f20616420756e20312064616e2070726f66657373696f6e697374612e2028492070726f66657373696f6e69737469206e6f6e2068616e6e6f206772616469203c6120687265663d222f6661712e7068703f726561643d74266361743d3323456e7472793338223e6b79753c2f613e292e, 'Y', '2006-05-25 23:15:31'),
(549, 18, 0x5175616e74692067696f726e6920646920766163616e7a6120686f20696e20447261676f6e3f, 'Y', '2006-05-25 23:15:31'),
(550, 18, 0x46696e6f20616420756e206d617373696d6f20646920333020616c6c27616e6e6f2e204f676e69206d6573652076656e676f6e6f2061676769756e746920322067696f726e6920646920766163616e7a612e2053652074692073656920617070656e61207265676973747261746f2c20692074756f692067696f726920696e697a69616c6920646920766163616e7a6120736f6e6f2031342e, 'Y', '2006-05-25 23:15:31'),
(551, 18, 0x436f736120736f6e6f20676c6920656c656d656e74692070726573656e7469206e656c6c6120706167696e612064656c6c6f20537461746f3f, 'N', '2006-05-25 23:15:31'),
(552, 18, 0x4563636f20756e61206272657665207370696567617a696f6e65206465676c6920656c656d656e74692070726573657469206e656c6c6120746162656c6c612064656c6c61203c6120687265663d222f7374617475732e706870223e506167696e612064656c6c6f20537461746f3c2f613e2e0d0a3c756c3e0d0a3c6c693e3c623e4e6f6d653c2f623e20496c207665726f206e6f6d652064656c6c277574656e74652c206f20616c74726f2e20546573746f206c696265726f2e0d0a3c6c693e3c623e5573657269643c2f623e204c61204c6f67696e2d4944206372656174612064616c6c277574656e74652e204e6f6e206d6f64696669636162696c652e0d0a3c6c693e3c623e446973706f6e6962696c6520612067696f636172653f3c2f623e20496e666f726d617a696f6e692061642075736f2064656920706f74656e7a69616c69206176766572736172692e20546573746f206c696265726f2e0d0a3c6c693e3c623e4c6976656c6c6f3c2f623e20496c206c6976656c6c6f2061747475616c6d656e7465206174747269627569746f20646120647261676f6e20616c6c277574656e74652e2047656e657261746f2064616c207365727665722e0d0a3c6c693e3c623e496e666f2073756c20677261646f3c2f623e20556c746572696f726920696e666f726d617a696f6e692c206164206573656d70696f20696c206c6976656c6c6f207261676769756e746f20696e20756e20636572746f20636c75622c206f20737520756e20616c74726f207365727665722e20546573746f206c696265726f2e3c2f756c3e, 'N', '2006-05-25 23:15:31'),
(553, 18, 0x5175616e6427e820636865206c276f726f6c6f67696f2064656c6c65206d6965207061727469746520636f6d696d63696120612073636f72726572653f, 'Y', '2006-05-25 23:15:31'),
(554, 18, 0x4c276f726f6c6f67696f2064656c6c65207475652070617274697465207072656e646520612073636f7272657265203c623e736f6c74616e746f3c2f623e207175616e646f20e820696c2074756f207475726e6f2064692067696f636172652e0d0a0d0a5468657920646f206e6f7420636f756e7420646f776e0d0a3c756c3e0d0a3c6c693e7768656e20796f7572206f70706f6e656e742068617320746f207375626d697420746865206e657874206d6f76653c2f6c693e0d0a3c6c693e647572696e6720796f7572203c6120687265663d222f6661712e7068703f726561643d74266361743d353623456e7472793631223e736c656570696e672074696d653c2f613e3c2f6c693e0d0a3c6c693e647572696e6720796f7572203c6120687265663d222f6661712e7068703f726561643d74266361743d353623456e7472793636223e7661636174696f6e3c2f613e3c2f6c693e0d0a3c6c693e6f6e207765656b656e64732028696620796f7520686176652073656c65637465642074686973206f7074696f6e20696e20746865203c6120687265663d222f6661712e7068703f726561643d74266361743d33353723456e7472793434223e67616d6520696e7669746174696f6e3c2f613e293c2f6c693e0d0a3c2f756c3e, 'N', '2006-05-25 23:15:31'),
(555, 18, 0x436f6d6520706f73736f2076697375616c697a7a61726520692066696c65205347463f, 'Y', '2011-09-28 12:18:42'),
(556, 18, 0x45736973746f6e6f20646976657273692070726f6772616d6d692063686520636f6e73656e746f6e6f2064692076697375616c697a7a6172652065206d6f64696669636172652066696c65207367662e20556e6f20646569206d69676c696f726920e8203c6120687265663d22687474703a2f2f7777772e72656e652d67726f74686d616e6e2e64652f6a61676f2f223e4a61676f3c2f613e2c20696c20636c69656e74204a6176612070657220696c20476f2e0d0a0d0a4c61204272697469736820476f204173736f63696174696f6e20646973706f6e6520646920756e206c756e676f203c6120687265663d22687474703a2f2f7777772e62726974676f2e6f72672f676f70637265732f676f7063726573312e68746d6c23732d76696577223e656c656e636f20646920736f6674776172653c2f613e20706572206c612076697375616c697a7a617a696f6e652064692066696c65207367662e0d0a0d0a5768656e20796f75206861766520616e207367662d76696577696e672070726f6772616d2c20796f752063616e2073657420796f75722062726f7773657220746f20636f6e6e65637420746865206d696d652d7479706520276170706c69636174696f6e2f782d676f2d736766272077697468207468652070726f6772616d2c20736f2069742063616e206265206c61756e63686564207769746820612073696e676c6520636c69636b2e, 'N', '2006-05-25 23:24:24'),
(557, 18, 0x436f6d6520706f73736f20696e697a6961726520756e61206e756f766120706172746974613f, 'Y', '2006-05-25 23:50:13'),
(558, 18, 0x45736973746f6e6f2064697665727369206d6f646920646920696e697a6961726520756e61206e756f766120706172746974613a3c554c3e0d0a0d0a3c4c493e5061727465636970616e646f20616420756e612070617274697461206d6573736120696e2061747465736120747261206c653c4120485245463d2277616974696e675f726f6f6d2e706870223e7061727469746520696e206174746573613c2f413e2e0d0a0d0a496c206d65746f646f2064657363726974746f206469207365677569746f207075f220657373657265207574696c697a7a61746f2070657220696e64697669647561726520756e206176766572736172696f2e20506572207072696d6120636f73612c206661726520636c69632073756c206c696e6b203c6120687265663d222f77616974696e675f726f6f6d2e706870223e7061727469746520696e206174746573613c2f613e206e656c206d656e752e20496e64697669647561726520756e612070617274697461206368652073692064657369646572612067696f636172652c207175696e6469206661726520636c69632073756c2070756c73616e74652022696e666f2220616c6c61207375612073696e69737472612e20496e20666f6e646f20616c6c6120706167696e6120636f6d7061726972e020756e61206465736372697a696f6e65206465747461676c696174612064656c6c6520636f6e64697a696f6e692064656c6c6120706172746974612e20536520736920646573696465726120616e636f7261207061727465636970617276692c207065726d65726520696c20756c73616e74652022506172746563697061222e204e69656e7465206469207069f92073656d706c6963652e0d0a0d0a3c4c493e4f66667269726520756e61206e756f766120706172746974612c20616c6c652070726f7072696520636f6e64697a696f6e692c20747261206c65203c4120485245463d2277616974696e675f726f6f6d2e706870223e7061727469746520696e206174746573613c2f413e2e0d0a0d0a5365206e657373756e612064656c6c65203c6120687265663d2277616974696e675f726f6f6d2e706870223e7061727469746520696e206174746573613c2f613e20666120616c206361736f2074756f2c206c6173636961206c61207269636869657374612064692067696f63617265207365636f6e646f206c652074756520636f6e64697a696f6e692e20412074616c2066696e652c20626173746120636f6d70696c617265206c6120736368656461207369747561746120696e20666f6e646f20616c6c6120706167696e612064656c6c65207061727469746520696e2061747465736165207072656d65726520696c2070756c73616e7465202241676769756e67692070617274697461222e20506f692c206173706574746172653b2070726f626162696c6d656e74652c206e656c6c276172636f20646920706f6368692067696f726e69207175616c63756e6f20726973706f6e646572e020616c6c27696e7669746f2e0d0a0d0a3c4c493e496e7669746120756e2074756f20616d69636f2e3c42523e0d0a536520636f6e6f736369206c612075736572696420646920756e20616c74726f2067696f6361746f7265207075f2206d616e646172676c6920756e20696e7669746f207472616d69746520696c206c696e6b203c6120687265663d222f6d6573736167652e7068703f6d6f64653d496e76697465223e696e766974613c2f613e206e656c206d656e752e20696e73657269736369206c652074756520696d706f7374617a696f6e692c20656420696e7669612e204c276176766572736172696f20706f7472e02c2073652064657369646572612c20636f6e636f726461726520636f6e20746520696d706f7374617a696f6e6920646976657273652e0d0a4327e820616e63686520756e206c696e6b2022496e76697461206c277574656e74652220696e20666f6e646f206164206f676e6920706167696e61207574656e74652e2053656775656e646f2071756573746f206c696e6b207369206f7474696e656e65206c6f2073746573736f206566666574746f2064657363726974746f20696e20707265636564656e7a612c206d61207069f92076656c6f63656d656e74652e0d0a3c2f554c3e, 'N', '2006-05-25 23:50:13'),
(559, 18, 0x436f6d652066616363696f2061206d756f7665726520696e20756e6120706172746974613f, 'Y', '2006-05-26 00:19:22'),
(560, 18, 0x4e656c6c6120706167696e612064656c6c6f203c6120687265663d222f7374617475732e706870223e537461746f3c2f613e20636f6d70617265206c27656c656e636f2064656c6c652070617274697465206e656c6c65207175616c6920e820696c2074756f207475726e6f206469206d756f766572652e20556e20636c69632073756c206e756d65726f206964656e7469666963617469766f206d6f7374726572e0206c6120706172746974612e0d0a5175616e646f2073692076697375616c697a7a6120756e6120706172746974612c207369207075f2207069617a7a61726520756e61207069657472612028696c2063686520636f72726973706f6e646520616c206661726520756e61206d6f7373612920666163656e646f20636c696320737520646920756e6120696e74657273657a696f6e652076756f74612e20536520717565737461206d6f737361206361747475726120756e61206f207069f920706965747265206e656d696368652c20657373652076657272616e6e6f206175746f6d61746963616d656e74652072696d6f7373652064616c6c61207461766f6c612e20706572207061737361726520696c207475726e6f2c206f20616262616e646f6e617265206c6120706172746974612c20626173746120736567756972652069206c696e6b207369747561746920616c20646920736f74746f2064656c6c61207461766f6c612e0d0a0d0a446f706f206176657220616767696f726e61746f206c612070617274697461207472616d69746520756e61206d6f7373612c20756e2070617373616767696f206469207475726e6f206f206c27616262616e646f6e6f2c207072656d65726520756e6f206465692070756c73616e746920646920696e76696f2028496e766961206520706173736120616c6c6f20537461746f2c206f707075726520496e766961206520706173736120616c6c612070726f73696d612070617274697461292070657220636f6e6665726d617265206c61207363656c746120656666657474756174612e2053652073692063616d62696120696465612c207072656d65726520696c2070756c73616e746520546f726e6120696e64696574726f2e, 'Y', '2006-06-02 20:11:55'),
(561, 18, 0x436f6d6520706f73736f2063616e63656c6c61726520756e61207061727469746120696e20636f72736f3f, 'Y', '2006-05-26 00:19:22'),
(562, 18, 0x46696e6f20616c6c6120646563696d61206d6f73736120636f6d706172652c20616c20646920736f74746f2064656c6c61207461766f6c612c20756e206c696e6b202243616e63656c6c61222e2043616e63656c6c616e646f20756e61207061727469746120696e2071756573746f206d6f646f2c20696c206c6976656c6c6f206e6f6e206e652076657272e020696e666c75656e7a61746f2e20446f706f206c6120646563696d61206d6f7373612c206e6f6e20e8207069f920706f73736962696c652063616e63656c6c61726520756e6120706172746974612e204c65206d6f737365206469207069617a7a616d656e746f202068616e6469636170206e6f2076656e676f6e6f20636f6e74656767696174652e0d0a0d0a53652063616e63656c6c69206c61207061727469746120696e2071756573746f206d6f646f2c206e6f6e20636920736172616e6e6f20656666657474692070657220696c2074756f20677261646f2e20446f706f206c6120646563696d61206d6f737361206c612070617274697461206e6f6e207075f2206573736572652063616e63656c6c6174612e20436f6d6520616c74726520617a696f6e692064656c6c6120706172746974612c206c612063616e63656c6c617a696f6e65206861206475652070617373693a20e8206e656365737361726961206c612076616c6964617a696f6e652064656c6c61207363656c74612e, 'N', '2009-11-15 13:57:48'),
(563, 18, 0x436f6d6520706f73736f207465726d696e61726520756e6120706172746974613f, 'Y', '2006-05-26 00:19:22'),
(564, 18, 0x4369f2207075f22065737365726520666174746f20736f6c6f20647572616e746520696c203c693e74756f3c2f693e207475726e6f2e0d0a3c554c3e0d0a3c4c493e4475652022706173736f2220636f6e736563757469766920747261207465206520696c2074756f206176766572736172696f2e2051756573746f20e820696c206e6f726d616c65206d6f646f206469207465726d696e61726520756e6120706172746974612e20446f706f2076657272e0206368696573746f20616420656e7472616d6269206469207365676e617265206c6520706965747265206d6f7274652e20506f692c20447261676f6e2063616c636f6c6572e020692070756e746920652070726f636c616d6572e020696c2076696e6369746f72652e0d0a0d0a3c4c493e5574696c697a7a616e646f20696c2070756c73616e74652022416262616e646f6e61222e20536520616262616e646f6e692c206c61207061727469746120e82070657273612c20656420696c2074756f206c6976656c6c6f206e652076657272e020696e666c75656e7a61746f2e0d0a0d0a3c4c493e4c61736369616e646f207363616465726520696c2074656d706f2e203c693e284d6120756e61207175616c756e7175652064656c6c6520616c74726520647565206f707a696f6e6920e8207072656665726962696c6520612071756573746121293c2f693e20536520696c2074756f2074656d706f2073636164652074752068616920706572736f2c20656420696c2074756f206c6976656c6c6f206e652076657272e020696e666c75656e7a61746f2e3c2f554c3e, 'N', '2006-05-26 00:19:22'),
(565, 18, 0x496e74726f64757a696f6e65206120447261676f6e, 'Y', '2006-05-26 00:19:22'),
(566, 18, 0x43686520636f7327e82071756573746f207369746f3f, 'Y', '2006-05-26 00:19:22'),
(567, 18, 0x447261676f6e20476f2053657276657220284447532920e820756e207369746f206772617a696520616c207175616c6520e820706f73736962696c652067696f63617265203c6120687265663d226661712e7068703f726561643d74266361743d3323456e747279313532223e61207475726e6f3c2f613e207061727469746520646920476f2e204573736f2066756e7a696f6e61207069f9206f206d656e6f20636f6d65206920736f667477617265207065722067696f63617265206120476f2076696120656d61696c2e0d0a0d0a492067696f6361746f7269207469706963616d656e746520696e7669616e6f2063697263612035206d6f73736520616c6c612073657474696d616e612e20436f73ec206c65207061727469746520647572616e6f207061726563636869652073657474696d616e653b206520447261676f6e20476f20536572766572207369207072656e6465206375726120646920747574746920676c692061737065747469206e6563657373617269206120706f7274617265206176616e746920696c2067696f636f2c20636f6d65206164206573656d70696f20696c20636f6e74726f6c6c6f2064656c2074656d706f206368652073636f7272652e0d0a0d0a47696f63617265206120476f20696e206d6f64616c6974e0203c6120687265663d226661712e7068703f726561643d74266361743d3323456e747279313533223e7265616c2d74696d653c2f613e203c623e6e6f6e3c2f623e20e820706f73736962696c65207175692e2047696f6361726520696e2074656d706f207265616c652076756f6c20646972652063686520756e612070617274697461206475726120636972636120756e276f72612e20536520707265666572697363692067696f63617265206120476f20696e207265616c2d74696d652c2070726f76612061676c6920696e646972697a7a69203c6120687265663d22687474703a2f2f73656e736569732e786d702e6e65742f3f476f53657276657222207461726765743d225f626c616e6b223e6f746865723c2f613e207265616c2d74696d6520476f2073657276657273206c696b65203c6120687265663d22687474703a2f2f6b67732e6b69736569646f2e636f6d2f22207461726765743d225f626c616e6b223e4b47533c2f613e206f72203c6120687265663d22687474703a2f2f70616e64612d6967732e6a6f796a6f792e6e65742f22207461726765743d225f626c616e6b223e4947533c2f613e2e0d0a0d0a496e6f6c7472652c2044475320666f726e69736365203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f70686f72756d2f223e666f72756d2064692064697363757373696f6e653c2f613e2073756c20476f2065207375204447532073746573736f2e, 'N', '2006-05-26 00:19:22'),
(568, 18, 0x416e636f7261206e6f6e20636f6e6f73636f20696c206d696f20677261646f20696e697a69616c652e2e2e, 'Y', '2006-05-26 01:37:43'),
(569, 18, 0x53652068616920636f6d696e636961746f20612067696f63617265206120476f20646120706f636f2c20616c6c6f7261207365692070726f626162696c6d656e74650d0a3c756c3e0d0a20203c6c693e61203330206b79753a20736520636f6e6f736369206c65207265676f6c653c2f6c693e0d0a20203c6c693e612032392d3238206b79753a20736520686169206769e02067696f6361746f207175616c63686520706172746974613c2f6c693e0d0a20203c6c693e612032372d3236206b79753a20736520686169206769e02076696e746f207175616c636865207061727469746120636f6e74726f20646569207072696e63697069616e74693c2f6c693e0d0a20203c6c693e612032352d3232206b79753a207365206861692076696e746f207175616c636865207061727469746120636f6e74726f2061767665727361726920636865206e6f6e206572616e6f207072696e63697069616e74693c2f6c693e3c2f756c3e0d0a53652070656e736920646920657373657265207069f920666f7274652064692032326b2c206d61206e6f6e207365692073696375726f2064656c2074756f20677261646f2c2070756f69207072656e64657265207065722062756f6e6120677569646120616c2074756f20677261646f207265616c65202071756573746f203c4120485245463d687474703a2f2f706c61792e626164756b2e6f726722205441524745543d225f626c616e6b223e746573743c2f413e2e0d0a0d0a536920707265676120646920617374656e657273692064616c6c2775736f20646920756e20677261646f20656c657661746f2c20706572206573656d70696f2027362064616e272e20446f706f206c27696e697a69616c697a7a617a696f6e652c20696c2074756f20677261646f20696e697a69616c65203c623e6e6f6e3c2f623e207075f220657373657265207069f92063616d626961746f2e20536365676c6920756e6f2064656920677261646920736f707261206f206c612074756120706f73697a696f6e65207265616c652c207365206c6120636f6e6f7363692e0d0a53652073656920616e636f726120696e73696375726f207375207175616c6520677261646f20736365676c696572652c2070756f69206368696564657265206e656c203c686f6d6520666f72756d2f6c6973742e7068703f666f72756d3d323e466f72756d20646920737570706f72746f3c2f686f6d653e2070657220616975746f2e, 'N', '2010-10-26 16:33:42'),
(570, 18, 0x4c65206361726174746572697374696368652064656c2074656d706f206d6973757261746f20646120447261676f6e, 'Y', '2006-05-26 00:34:24'),
(571, 18, 0x5065726368e9206c277574696c697a7a6f206465692067696f726e6920646920766163616e7a6120e8206c696d697461746f3f, 'Y', '2006-05-26 00:34:24'),
(572, 18, 0x496e20617373656e7a61206469206c696d6974617a696f6e692c20756e6f20646569206475652061767665727361726920706f747265626265207072656e6465726520756e2067696f726e6f20646920766163616e7a6120706572206576697461726520756e2074696d656f75742e204369f22072656e646572656262652069206c696d6974692064692074656d706f20636f6e636f726461746920616c6c27696e697a696f2064656c6c612070617274697461207072697669206469207369676e6966696361746f2e204563636f207065726368e920447261676f6e206c696d697461206c277574696c697a7a6f206465692067696f726e6920646920766163616e7a61206e656c206d6f646f642073656775656e74653a0d0a3c756c3e0d0a3c6c693e6c6520766163616e7a652c20756e6120766f6c746120696e697a696174652c203c623e6e6f6e3c2f623e20706f73736f6e6f206573736572652063616e63656c6c6174652e3c2f6c693e0d0a3c6c693e73652068616920696e697a6961746f20756e6120766163616e7a61206c6120726964757a696f6e65206d696e696d612064656920676f726e692064692076616e63616e7a61206368652070756f69207072656e6465726520e8206469206d696e696d6f20322067696f726e692e3c2f6c693e0d0a3c2f756c3e, 'Y', '2010-03-12 18:15:17'),
(573, 18, 0x5175616c6920736f6e6f206c6520756c74696d65206d6f64696669636865206170706f7274617465206120717565737465204641513f, 'Y', '2006-05-26 00:34:24'),
(575, 18, 0x5065726368e920447261676f6e2076756f6c6520636f6e6f736365726520696c206d696f20696e646972697a7a6f20656d61696c3f, 'Y', '2006-05-26 00:46:58'),
(576, 18, 0x50657220696e76696172746920756e61206e756f76612070617373776f726420286f766520726963686965737461292e204c612073706564697a696f6e6520646920756e61206e756f76612070617373776f726420616c6c27696e646972697a7a6f20656d61696c203c693e6d656d6f72697a7a61746f206e656c2070726f66696c6f207574656e74653c2f693e20636f73746974756973636520756e206d65746f646f2073696375726f20652073656d706c6963652070657220617574656e746963617265206c277574656e74652e0d0a0d0a447261676f6e207269737065747461206c6120707269766163793a20444753206e6f6e207370656469736365206d61696c20696e646573696465726174652e20476c6920696e646972697a7a69206d61696c206e6f6e20736f6e6f207669736962696c69206120636869756e7175652c206ee92076656e676f6e6f2076656e6475746920616420616c63756e6f2e0d0a0d0a447261676f6e20636f6e73656e74652061676c69207574656e7469206469203c693e6e6f6e3c2f693e206d656d6f72697a7a61726520696c2070726f7072696f20696e646972697a7a6f20656d61696c2e20496e2074616c206361736f2c203c693e61737369637572617273693c2f693e206469206e6f6e2064696d656e746963617265206c612070617373776f72642e, 'Y', '2006-05-26 00:46:58'),
(577, 18, 0x436f6d652066756e7a696f6e6120696c2073697374656d612074656d706f2062796f796f6d692067696170706f6e6573653f, 'Y', '2006-05-26 00:46:58'),
(578, 18, 0x5175616e646f20696c2074656d706f207072696e636970616c6520646920756e2067696f6361746f72652066696e697363652c2065676c6920686120616e636f7261206120646973706f73697a696f6e6520756e2074656d706f206669737361746f20706572203c623e6369617363756e613c2f623e206d6f7373612e20496e207069f92c206861206120646973706f73697a696f6e65206469766572736920706572696f64693a0d0a3c554c3e0d0a3c4c493e5175616e646f20696c2067696f6361746f7265206d756f7665207065722074656d706f2c20696c20636f6e746f20616c6c6120726f766573636961207269746f726e6120616c2073756f2076616c6f726520696e697a69616c652c20656420696c206e756d65726f20646920706572696f646920726573746120696e7661726961746f2e3c2f4c493e0d0a0d0a3c4c493e5175616e646f206e6f6e206d756f766520656e74726f20696c2074656d706f206669737361746f2c20696c206e756d65726f20646920706572696f6469206120646973706f73697a696f6e65207669656e652064656372656d656e7461746f20646920312c20652073756269746f207269636f6d696e63696120696c20636f6e746f20616c6c6120726f7665736369612e3c2f4c493e0d0a3c2f554c3e0d0a5175616e646f20756e2067696f6361746f72652065736175726973636520736961206920706572696f64692073696120696c2074656d706f206120646973706f73697a696f6e652c207065726465206c6120706172746974612e, 'N', '2006-05-26 00:46:58'),
(579, 18, 0x436f6d652066756e7a696f6e6120696c2073697374656d612074656d706f2062796f796f6d692063616e61646573653f, 'Y', '2006-05-26 01:20:49'),
(580, 18, 0x5175616e646f20696c2074656d706f207072696e636970616c6520646920756e2067696f6361746f72652066696e697363652c2065676c6920686120616e636f726120756e20636572746f2074656d706f206120646973706f73697a696f6e65207065722067696f63617265203c623e756e20636572746f206e756d65726f3c2f623e206469207069657472652e0d0a0d0a4573656d70696f3a2031302070696574726520656e74726f2031352067696f726e693a0d0a536520696c2067696f6361746f726520696e766961206c612073756120646563696d61206d6f73736120656e74726f20696c207175696e6469636573696d6f2067696f726e6f2c20616c6c6f726120696c20636f6e746f20616c6c6120726f7665736369612072697072656e64652028636f6e20616c7472692031352067696f726e69207065722067696f6361726520616c747265203130206d6f737365292e0d0a0d0a496e206361736f20636f6e74726172696f2c207065726465206c6120706172746974612e, 'N', '2006-05-26 01:20:49'),
(581, 18, 0x436f6d652066756e7a696f6e6120696c2073697374656d612074656d706f20466973636865723f, 'Y', '2006-05-26 01:20:49'),
(582, 18, 0x446f706f2063686520756e2067696f6361746f726520686120696e766961746f206c6120737561206d6f7373612c20616c2073756f206f726f6c6f67696f207669656e652061676769756e746f20756e202274656d706f20657874726122202866696e6f20616420756e206d617373696d6f20737065636966696361746f292e0d0a0d0a5175616e646f20756e2067696f6361746f72652065736175726973636520696c2073756f2074656d706f2c207065726465206c612070617274697461, 'N', '2006-05-26 01:20:49'),
(585, 18, 0x43686520636f736120736f6e6f206c6520226f7265206469207269706f736f223f, 'N', '2006-05-26 01:20:49'),
(586, 18, 0x447572616e7465206c65206f726520737065636966696361746520636f6d6520226f7265206469207269706f736f22206c276f726f6c6f67696f207669656e65206665726d61746f2e, 'N', '2006-05-26 01:20:49'),
(587, 18, 0x5065726368e920696c206d696f206f726f6c6f67696f20e8206272757363616d656e74652073616c7461746f2064612039206f72652061203130206d696e7574693f, 'Y', '2006-05-26 01:20:49'),
(589, 18, 0x5065726368e9206e6f6e20706f73736f206d6f646966696361726520696c20706572696f646f206469207269706f736f20616c6c27696e7465726e6f2064656c206d696f2070726f66696c6f207574656e74653f, 'Y', '2006-05-26 01:20:49'),
(590, 18, 0x5065726368e92066617265207175657374276f706572617a696f6e652074726520766f6c746520616c2067696f726e6f2065717569766172726562626520616420617272657374617265206c276f726f6c6f67696f206469207475747465206c6520706172746974652e20452720706f73736962696c65206d6f646966696361726c6f20736f6c6f207365206369f2206e6f6e20e820737461746f20666174746f20646920726563656e74652e, 'Y', '2006-05-26 01:20:49'),
(591, 18, 0x506f73736f2061676769756e676572652064656c2074656d706f2061207175656c6c6f2061206d696120646973706f73697a696f6e653f, 'Y', '2006-05-26 01:20:49'),
(592, 18, 0x4e6f2c206e6f6e2070756f692c206d6120696c2074756f206176766572736172696f20706f74726562626520766f6c657274692061676769756e67657274692064656c2074656d706f2e0d0a0d0a452720706f636f20636f6d756e65206564206564756361746f20636869656465726520706975272074656d706f20736f6c6f2070657220617665726520706975272074656d706f207065722070656e736172652c207175696e6469206e6f6e2069727269746172746920736520696c2074756f206176766572736172696f2072696669757461206c6120747561207269636869657374612e, 'Y', '2007-11-28 17:36:34'),
(593, 18, 0x506f73736f2061676769756e676572652064656c2074656d706f2061207175656c6c6f206120646973706f73697a696f6e652064656c206d696f206176766572736172696f3f, 'Y', '2006-05-26 01:20:49'),
(594, 18, 0x5369272c2070756f692061676769756e676572652074656d706f20616c2074756f206176766572736172696f20696e207175616c7369617369206d6f6d656e746f2e20536567756920696c206c696e6b20616c20666f6e646f2064656c6c6120706167696e612064656c6c6120706172746974612e20496d706f73746120696c2074656d706f20616464697a696f6e616c652064612061676769756e6765726520616c2074756f206176766572736172696f20736f74746f20616c20676f62616e2e2050756f692061676769756e676572652067696f726e6920616c2074656d706f207072696e636970616c6520652f6f20726573657474617265206920706572696f64692064692062796f2d796f6d69207365206365206e6520736f6e6f20286e6f6e2066756e7a696f6e612070657220696c20466973636865722d74696d65292e20496c2074656d706f2061676769756e746f206527206d6f73747261746f206e656c6c6520696e666f726d617a696f6e692064692067696f636f206e656c6c6120706167696e612064656c6c6120706172746974652e, 'N', '2010-04-03 14:51:58'),
(595, 18, 0x436f736120736f6e6f20692067696f726e6920646920766163616e7a613f, 'Y', '2006-05-26 01:20:49'),
(596, 18, 0x452720706f73736962696c65206d65747465726520696e207061757361206c276f726f6c6f67696f2064656c6c652070726f707269652070617274697465206d656e74726520746920676f6469206c6520766163616e7a65206f2070657220756e207669616767696f206469206c61766f726f2028696e61747465736f292e0d0a0d0a506572206661766f72652075736120696c206c696e6b203c686f6d6520656469745f7661636174696f6e2e7068703e496e697a696120756e6120766163616e7a613c2f686f6d653e2073756c6c6120747561203c686f6d652075736572696e666f2e7068703e706167696e612064656c6c6520696e666f726d617a696f6e693c2f686f6d653e7065722070726f6772616d6d617265206520696e697a69617265206c6120766f7374726120766163616e7a612e204c6f20737461746f2022696e20766163616e7a612220736172e020616e6e756e636961746f2073756c6c6120706167696e612064656c6c6f20737461746f20652073756c6c6120706167696e612064656c6c6520696e666f726d617a696f6e692c20706572206573656d70696f3a203c74743e342067696f726e6920652033206f72652072696d616e656e74693c2f74743e2e, 'Y', '2010-04-03 14:51:58'),
(597, 18, 0x42796f796f6d69, 'Y', '2006-05-26 01:26:07'),
(598, 18, 0x5265676f6c61206368652073746162696c69736365206920706572696f64692064692074656d706f206461206170706c696361726520616c6c6f20736361646572652064656c2074656d706f207072696e636970616c652e, 'Y', '2006-05-26 01:26:07'),
(599, 18, 0x5175616c65206675736f206f726172696f207669656e65207574696c697a7a61746f207065722063616c636f6c617265206c65206d696520226f7265206469207269706f736f223f, 'Y', '2006-05-26 01:26:07'),
(600, 18, 0x447261676f6e207574696c697a7a61206c6520696d706f7374617a696f6e69206c6f63616c692064656c6c6120747561207a6f6e61202865206c276576656e7475616c65206f7261206c6567616c65292c2064612074652073746573736f20696d706f7374617465206e656c2070726f66696c6f207574656e74652e, 'Y', '2006-05-26 01:26:07'),
(601, 18, '', 'Y', '2012-08-22 20:48:45'),
(602, 18, 0x53474620e8206c276163726f6e696d6f20646920536d6172742047616d6520466f726d61742c20756e20666f726d61746f207574696c697a7a61746f20706572206d656d6f72697a7a617265207061727469746520646920476f202865206e6f6e20736f6c6f292e2050657220756c746572696f7269206465747461676c692c20636f6e73756c74617265206c6520203c6120687265663d22687474703a2f2f7777772e7265642d6265616e2e636f6d2f7367662f22207461726765743d6e65773e7370656369666963686520756666696369616c693c2f613e2064656c6c6f207374616e64617264205347462046465b345d2e, 'Y', '2006-05-26 01:26:07'),
(603, 18, 0x5065726368e920447261676f6e206e6f6e206d6920636f6d756e696361206c27696e646972697a7a6f20656d61696c2064656c206d696f206176766572736172696f3f, 'Y', '2006-05-26 01:29:08'),
(604, 18, 0x5065726368e920447261676f6e20747574656c61206c6120707269766163792064656c2074756f206176766572736172696f202865206c6120747561292e0d0a0d0a53652076756f6920636f6e6f736365726520636972636120696c2074756f206176766572736172696f207069f920636f7365206469207175616e7465206c7569206e6520686120696d6d65737365206e656c2073756f2070726f66696c6f207574656e74652c206368696564696c6520646972657474616d656e74652061206c75692e, 'Y', '2006-05-26 01:29:08'),
(605, 18, 0x436f6d6520706f73736f20666172652061206d656d6f72697a7a6172652064656c20746573746f206e656c2066696c65205347463f, 'Y', '2006-05-26 01:29:08'),
(503, 18, 0x5661726965, 'Y', '2006-05-27 17:18:58'),
(505, 18, '', 'Y', '2012-08-22 20:48:45'),
(508, 18, 0x556e206e756d65726f2065787472612064692070756e746920283c686f6d65206661712e7068703f726561643d74266361743d3323456e747279383e6d6f6b753c2f686f6d653e29206461746920616c204269616e636f2c2063686520706f73736f6e6f20657373657265207574696c697a7a61746920696e2076617269206d6f64693a0d0a3c6f6c3e0d0a3c6c693e50657220636f6d70656e7361726520696c2070726573756e746f2076616e74616767696f20636865204e65726f206861207175616e646f2067696f6361206c61207072696d61207069657472612e0d0a3c6c693e506572206576697461726520756e20706172656767696f20283c686f6d65200d0a6661712e7068703f726561643d74266361743d3323456e7472793234303e6a69676f3c2f686f6d653e2920636f6d6520726973756c7461746f2064692067696f636f20636f6e20756e206e756d65726f206672617a696f6e6172696f20286164206573656d70696f20362c35204b6f6d69292e0d0a3c6c693e50657220616769726520636f6d6520756e6120666f726d6120646920636f6d70656e73617a696f6e652074726120692067696f6361746f726920646920677261646f206469766572736f2e0d0a50657220756c746572696f7269207370696567617a696f6e69206775617264613a203c686f6d65206661712e7068703f726561643d74266361743d33353723456e74727939383e5175616c20e8206c6120646966666572656e7a61207472612068616e646963617020636f6e76656e7a696f6e616c69206520636f72726574746f3f3c2f686f6d653e0d0a3c2f6f6c3e, 'Y', '2010-04-19 11:30:56'),
(574, 18, 0x3c623e323030362d30342d32303a3c2f623e0d0a0d0a4c6120766f6365203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f6661712e7068703f726561643d74266361743d313623456e747279313535223e4d6f737361206475706c6963617461206e656c6c27656c656e636f2064656c6c65206d6f7373653c2f613e2061676769756e746120616c6c612073657a696f6e65203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f6661712e7068703f726561643d74266361743d3136223e447261676f6e20627567733c2f613e2e, 'Y', '2006-05-27 18:10:15'),
(621, 18, 0x4d6f73747261207475747465206c652046415120696e20756e6120736f6c6120706167696e61, 'Y', '2006-05-27 22:51:42'),
(622, 18, 0x546f726e656920737520447261676f6e, 'Y', '2006-05-27 22:51:42'),
(623, 18, '', 'Y', '2012-08-22 20:48:45'),
(624, 18, 0x452720756e207465726d696e652074726164697a696f6e616c652064656c20476f2c20636865207369676e6966696361207069f9206f206d656e6f3a20224772617a696520706572206c27696e7669746f2e2042756f6e61207061727469746122, 'Y', '2010-10-26 15:58:33'),
(625, 18, 0x45736973746f6e6f20746f726e656920646972657474616d656e7465206765737469746920737520447261676f6e3f, 'Y', '2006-05-28 10:28:48'),
(626, 18, 0x4e6f2c206e6f6e20616e636f72612e, 'Y', '2006-05-28 10:28:48'),
(631, 18, 0x436f6d6520706f73736f20656c696d696e61726520756e6120706172746974612063686520617665766f20696e73657269746f20747261207175656c6c6520696e206174746573613f, 'Y', '2006-05-28 10:31:22'),
(632, 18, 0x46616920636c69632073756c2070756c73616e746520696e666f2064656c6c61203c693e7475613c2f693e207061727469746120696e206174746573612e20416c6c612066696e652064656c6c6120706167696e612076657272e02076697375616c697a7a61746f20756e2070756c73616e74652070657220656c696d696e617265206c6120706172746974612e20496e206f676e69206361736f2c207365206e657373756e2067696f6361746f726520616465726973636520616420756e61207061727469746120696e20617474657361206e656c206769726f206469207175616c6368652073657474696d616e612c2065737361207669656e6520656c696d696e617461206175746f6d61746963616d656e74652064616c207365727665722e, 'Y', '2006-05-28 10:31:22'),
(673, 18, 0x447261676f6e206d692061767665727465207175616e646f20e820696c206d696f207475726e6f3f, 'Y', '2006-05-28 10:33:05'),
(674, 18, 0x53ec2c206d6120736f6c74616e746f2073652068616920707265636564656e74656d656e7465206162696c697461746f206c612066756e7a696f6e6520226e6f7469666963612076696120656d61696c22206e656c2074756f2070726f66696c6f207574656e74652e, 'Y', '2006-05-28 10:33:05'),
(675, 18, 0x506f73736f20696e697a6961726520756e612070617274697461206361726963616e646f20756e2066696c65205347463f, 'Y', '2006-05-28 10:33:33'),
(676, 18, 0x4e6f2c206e6f6e20616e636f72612e, 'N', '2006-05-28 10:33:33'),
(677, 18, 0x4c6976656c6c69206520677261646920646920447261676f6e, 'Y', '2006-05-28 10:34:16'),
(678, 18, 0x436f736120696e64696361206c6120636f6c6f6e6e612064656c206c6976656c6c6f206e656c6c27656c656e636f206465676c69207574656e74693f, 'Y', '2006-05-28 10:34:16'),
(680, 18, 0x436f736120696e6469636120756e207365676e6f202b206f202d2063686520736567756520696c206c6976656c6c6f2064656c2067696f6361746f72653f, 'Y', '2006-05-28 10:35:33'),
(681, 18, 0x496e7465726e616d656e746520447261676f6e207574696c697a7a6120756e2073697374656d612064692070756e74656767696f203c686f6d65206661712e7068703f726561643d74266361743d31303523456e7472793132333e2070657220696c207175616c65206c6120646966666572656e7a6120646920756e20677261646f20636f72726973706f6e6465206120756e6120646966666572656e7a61206469203130302070756e74692e0d0a0d0a4164206573656d70696f3a0d0a36206b7975202820302529203d20313530302070756e74690d0a36206b797520282d34382529203d20313435322070756e74690d0a37206b797520282b33302529203d20313433302070756e74690d0a37206b7975202820302529203d20313430302070756e7469, 'N', '2010-03-12 18:15:17'),
(684, 18, 0x436f736120696e64696361206c276172656120626c75207669736962696c6520616c6c27696e7465726e6f2064656c206772616669636f2064656c206c6976656c6c6f3f, 'Y', '2006-05-28 10:37:49'),
(671, 18, 0x506f73736f20696e7669617265206d6f737365207472616d69746520656d61696c3f, 'Y', '2006-05-28 10:41:45'),
(672, 18, 0x4e6f2c206e6f6e20e820706f73736962696c652e0d0a45272073656d707265206e65636573736172696f206566666574747561726520696c206c6f67696e206469203c6120687265663d222f223e447261676f6e3c2f613e2070657220706f74657220696e766961726520756e61206d6f7373612e, 'Y', '2006-05-28 10:41:45'),
(669, 18, '', 'Y', '2012-08-22 20:48:45'),
(670, 18, 0x53656b692076756f6c206469726520227669746120737520656e7472616d62692069206c617469222e2053692074726174746120646920756e612073697475617a696f6e65206e656c6c61207175616c6520647565206772757070692061767665727361726920636f6e64697669646f6e6f2064656c6c65206c6962657274e02c206520646f7665206e657373756e6f20e820696e20677261646f20646920636174747572617265206c27616c74726f2e, 'Y', '2006-05-28 10:43:48'),
(665, 18, '', 'Y', '2012-08-22 20:48:45'),
(666, 18, 0x47696f636f206e656c6c27616e676f6c6f2e2053657175656e7a612064692067696f636f2070726563616c636f6c6174612070657220756e6120646174612073697475617a696f6e65206c6f63616c652e20446920736f6c69746f207369207472617474612064656c6c61206d69676c696f722073657175656e7a6120696e6469766964756174612070657220656e7472616d626920692067696f6361746f726920696e20756e6120636572746120706f727a696f6e652064656c6c61207461766f6c612c20636865206e6f6e206e6563657373617269616d656e7465207269666c65747465206c6120737465737361207574696c6974e0206e656c6c27616d6269746f20636f6d706c65737369766f2064656c6c6120706172746974612e204a6f73656b6920e820756e207465726d696e65207461747469636f2c206e6f6e207374726174656769636f2e, 'Y', '2006-05-28 10:46:16'),
(686, 18, '', 'Y', '2012-08-22 20:48:45'),
(687, 18, 0x556e61206d6f7373612067696f6361746120616c74726f76652e204e65726f2067696f6361203c623e6e6f6e3c2f623e20696e20726973706f7374612061207175656c6c612064656c6c276176766572736172696f20286e6f6e206e656c6c6f2073746573736f206c756f676f292e, 'Y', '2010-10-26 16:33:42'),
(692, 18, '', 'Y', '2012-08-22 20:48:45'),
(693, 18, 0x556e61206d6f73736120676f7465207065726465206c27696e697a6961746976612e204c6f20737461746f206469206176657220706572736f206c27696e697a6961746976612e20496e2067656e65726520756e61206d6f737361206120637569206c276176766572736172696f206e6f6e206465766520726973706f6e646572652c2064616e646f20636f73ec20616c6c276176766572736172696f203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f6661712e7068703f726561643d74266361743d3323456e747279313132223e2053656e7465203c2f20613e2028696c20636f6e74726172696f2064656c6c6520676f7465292e, 'N', '2011-02-10 17:11:57'),
(690, 18, '', 'Y', '2012-08-22 20:48:45'),
(691, 18, 0x4d6f737361206f6666656e736976612063686520636f737472696e6765206c276176766572736172696f20616420756e6120726973706f73746120696d6d6564696174612065206d616e7469656e65206c27696e697a6961746976612e2053656e746520e820696c207465726d696e65206f70706f73746f2061203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f6661712e7068703f726561643d74266361743d3323456e747279313133223e676f74653c2f613e2e0d0a496c2067696f6361746f72652063686520686120696c2073656e7465207075f220736365676c696572652064692067696f63617265203c6120687265663d222f6661712e7068703f726561643d74266361743d3323456e747279313130223e74656e756b693c2f613e2c207365206c6f2072697469656e65206f70706f7274756e6f2e, 'N', '2006-05-28 10:51:05'),
(696, 18, '', 'Y', '2012-08-22 20:48:45'),
(697, 18, 0x496e74657273657a696f6e69206e65757472652073756c20676f62616e2c20636865206e6f6e20617070617274656e676f6e6f2061206e657373756e2067696f6361746f72652065206e6f6e2064616e6e6f207175696e64692070756e74692061206e657373756e6f20646569206475652e, 'Y', '2006-05-28 10:52:09'),
(698, 18, 0x4c6962657274e0, 'Y', '2006-05-28 10:52:51'),
(699, 18, 0x556e6120696e74657273657a696f6e652076756f7461206164696163656e74652028696e206f72697a7a6f6e74616c65206f20696e20766572746963616c652c204e4f4e20696e20646961676f6e616c652920616420756e6120706965747261206f20616420756e2067727570706f206469207069657472652e, 'Y', '2006-05-28 10:52:51'),
(667, 18, '', 'Y', '2012-08-22 20:48:45'),
(668, 18, 0x4c6120666173652064692061706572747572612064656c6c6120706172746974612e205369207472617474612064692073657175656e7a652070726563616c636f6c6174652028756e20706f2720636f6d65206c65206170657274757265206465676c69207363616363686929207574696c697a7a617465206e656c6c61206661736520696e697a69616c652064656c6c6120706172746974612e20496c20667573656b6920696e636c75646520636f6e7369646572617a696f6e6920737472617465676963686520636f6d706c6573736976652c206e656c6c612070726f73706574746976612064656c6c27696e7465726f20676f62616e2e, 'Y', '2006-05-28 10:55:10'),
(694, 18, 0x436f736120736f6e6f206c652070617274697465206f73736572766174653f, 'Y', '2006-05-28 11:00:45'),
(695, 18, 0x51756573746120636172617474657269737469636120636f6e73656e746520646920636f6d70696c61726520756e20656c656e636f2064692070617274697465206469203c623e616c7472693c2f623e2067696f6361746f72692e0d0a0d0a5065722061676769756e6765726520756e61207061727469746120616c6c27656c656e636f2c20e8206e65636573736172696f206461707072696d6120696e64697669647561726520756e61207061727469746120696e20636f72736f2c207175696e6469206661726520636c69632073756c206c696e6b202241676769756e676920616c6c27656c656e636f2064656c6c652070617274697465206f7373657276617465222e205065722076697375616c697a7a61726520696c2070726f7072696f20656c656e636f64692070617274697465206f73736572766174652c206661726520636c69632073756c206c696e6b203c6120687265663d222f7374617475732e706870223e537461746f3c2f613e2c207175696e6469207365677569726520696c206c696e6b20224d6f737472612070617274697465206f7373657276617465222e200d0a0d0a5065722072696d756f7665726520756e6120706172746974612064616c6c27656c656e636f2c2076697375616c697a7a61726c612065206661726520636c69632073756c206c696e6b202252696d756f76692064616c6c27656c656e636f2064656c6c652070617274697465206f7373657276617465222e0d0a0d0a452720706f73736962696c65206f737365727661726520736f6c74616e746f207061727469746520696e20636f72736f3b207175616e646f20756e6120706172746974612066696e69736365207669656e652072696d6f737361206175746f6d61746963616d656e74652064616c6c27656c656e636f206469207175656c6c65206f73736572766174652e205175616e646f20756e6120706172747461206f7373657276617461207465726d696e612c20447261676f6e20696e76696120616c6c276f737365727661746f726520756e206d657373616767696f2070657220636f6d756e696361726e65206c27657369746f2e, 'N', '2006-05-28 11:00:45'),
(607, 18, 0x452720706f73736962696c6520646976656e7461726520756e6f207376696c75707061746f726520646920447261676f6e3f, 'Y', '2006-05-28 11:03:21'),
(608, 18, 0x53ec2c20e820706f73736962696c652c206120706174746f20646920636f6e6f7363657265206c65207265676f6c652064656c20476f2c20696c205048502065204d7953514c2e0d0a0d0a50657220636f6d696e63696172652c207669736974617265206c6120706167696e61203c4120485245463d22687474703a2f2f736f75726365666f7267652e6e65742f70726f6a656374732f647261676f6e676f73657276657222205441524745543d225f626c616e6b223e7376696c7570706f20646920447261676f6e20737520536f75726365466f7267653c2f413e206564206973637269766572736920616c6c61203c4120485245463d22687474703a2f2f6c697374732e736f75726365666f7267652e6e65742f6c697374732f6c697374696e666f2f647261676f6e676f7365727665722d646576656c22205441524745543d225f626c616e6b223e647261676f6e676f7365727665722d646576656c206d61696c696e67206c6973743c2f413e2e, 'N', '2006-05-28 11:03:21'),
(633, 18, 0x436f7327e820756e612070617274697461207061726920636f6e206e69676972693f, 'Y', '2006-05-28 11:05:19'),
(634, 18, 0x556e61203c6120687265663d226661712e7068703f726561643d74266361743d3323456e747279313534223e7061727469746120706172693c2f613e20e820756e6120706172746974612067696f636174612073656e7a6120706965747265206469203c6120687265663d226661712e7068703f726561643d74266361743d33353723456e7472793937223e68616e64696361703c2f613e2c20696e646970656e64656e74656d656e74652064616c6c6120646966666572656e7a61207472612069206c6976656c6c692064656920647565206176766572736172692e203c6120687265663d226661712e7068703f726561643d74266361743d3323456e7472793231223e4e69676972693c2f613e207369676e69666963612063686520696c20636f6c6f7265207669656e65206174747269627569746f2063617375616c6d656e74652e, 'Y', '2006-05-28 11:05:19'),
(657, 18, '', 'Y', '2012-08-22 20:48:45'),
(658, 18, 0x496c207069616e6f2064692067696f636f20287265616c65206f207669727475616c65292e, 'Y', '2006-05-28 11:05:58'),
(710, 18, 0x446f766520706f73736f20696d70617261726520612067696f63617265206120476f3f, 'Y', '2006-05-28 11:08:30'),
(711, 18, 0x50657220756e61207072696d61206f636368696174612c203c6120687265663d22687474703a2f2f706c6179676f2e746f2f696e7465726163746976652f696e6465782e68746d6c22207461726765743d6e65773e54686520496e7465726163746976652057617920546f20476f3c2f613e2065206c61203c6120687265663d22687474703a2f2f7777772e62726974676f2e6f72672f696e74726f2f696e74726f2e68746d6c22207461726765743d6e65773e496e74726f64756374696f6e20746f207468652067616d65206f6620476f3c2f613e2064656c6c61204272697469736820476f204173736f63696174696f6e2e20496e206974616c69616e6f2c2065736973746f6e6f206920736974692064656c6c61206665646572617a696f6e65206974616c69616e612067696f636f20676f20287777772e666967672e6f72672920652064656c6c276173736f6369617a696f6e6520676f697374696361206974616c69616e6120287777772e6167692e676f2e6974292e, 'Y', '2006-05-28 11:08:30'),
(702, 18, '', 'Y', '2012-08-22 20:48:45'),
(703, 18, 0x556e61206d6f7373612074697069636120696e20756e6120636572746120706f73697a696f6e652c2063686520636f6e73656e7465206c6120636174747572612064656c6c276176766572736172696f20696e20756e612073706563696520646920726574652e, 'Y', '2010-10-26 16:05:24'),
(704, 18, '', 'Y', '2012-08-22 20:48:45'),
(705, 18, 0x4170657274757261207469706963612c206e656c6c61207175616c6520756e2067696f6361746f7265206f6363757061207472652070756e7469207374656c6c617269206c756e676f20756e206c61746f2e20537520756e612031397831392071756573746f20736172616e6e6f20692070756e746920342d342064656c6c6f2073746573736120726967612c207069f920696c2070756e746f206e656c206d657a7a6f207472612069206475652e, 'Y', '2010-10-26 16:33:42'),
(706, 18, '', 'Y', '2012-08-22 20:48:45'),
(707, 18, 0x53686963686f20e820756e207465726d696e652067696170706f6e65736520636865207369676e6966696361203c6120687265663d22666f72756d2f726561642e7068703f666f72756d3d33267468726561643d32383931223e5363616c613c2f613e2e, 'Y', '2010-10-26 16:05:24'),
(708, 18, 0x4c61206772616e64657a7a612064656c6c61207461766f6c612064612067696f636f20696e666c75697363652073756c206c6976656c6c6f3f, 'Y', '2006-05-30 19:41:47'),
(709, 18, 0x53ec2e0d0a0d0a4c6520706172746974652073756c6c61207461766f6c6120313978313920736f6e6f207175656c6c65206368652068616e6e6f20696c206d616767696f7220696d706174746f2073756c20677261646f2e204c6120676f62616e20313978313920736572766520646120616e636f726120706572206c27696d706174746f2073756c20677261646f2e205175616e646f207669656e652063616c636f6c61746f20696c206e756f766f20726174696e672c206861207175696e646920756e20696d706174746f2064656c20313030252073756c6c61203c686f6d65206661712e7068703f726561643d74266361743d31303523456e7472793132333e646966666572656e7a6120646920677261646f3c2f686f6d653e2e0d0a0d0a5061727469746520737520676f62616e206d616767696f72692068616e6e6f20756e20696d706174746f206d696e6f72652e20556e2067696f636f206469203235783235207574696c697a7a61207175696e646920756e20666174746f72652064692064696d656e73696f6e692064656c203437252073756c6c61207069656e7120646966666572656e7a6120646920677261646f2e0d0a0d0a44756520706172746974652073756c6c61207461766f6c6120313378313320696e666c75656e7a616e6f20696c206c6976656c6c6f20616c6c27696e636972636120636f6d6520756e6120736f6c6120706172746974612073756c6c612031397831392e20496c2076616c6f72652065736174746f207574696c697a7a6120636972636120756e20666174746f72652064692064696d656e73696f6e692064656c203437252e0d0a0d0a44756520706172746974652073756c6c61207461766f6c612039783920696e666c75656e7a616e6f20696c206c6976656c6c6f20616c6c27696e636972636120636f6d6520756e6120736f6c6120706172746974612073756c6c612031337831332e20496c2076616c6f72652065736174746f207574696c697a7a6120636972636120756e20666174746f72652064692064696d656e73696f6e692064656c203232252e0d0a0d0a4c6120666f726d756c6120657361747461207065722063616c636f6c61726520696c20666174746f726520646920696d706174746f20e83a203c74743e283139202d207c2073697a652d3139207c29205e2032202f203139205e20323c2f74743e, 'Y', '2010-03-13 12:54:35'),
(627, 18, 0x436f73612073746120616420696e646963617265696c206c6976656c6c6f206469202261747469766974e02220646920756e207574656e74653f, 'Y', '2006-05-30 19:52:07'),
(628, 18, 0x496e64696361207175616e7465206d6f73736520686120696e766961746f206e65676c6920756c74696d692074656d70692e0d0a32207374656c6c652076657264693a206d6f6c7465206d6f73736520287069f920646920373020616c206d657365290d0a31207374656c6c61206172616e63696f6e653a206e6f6e206d6f6c7465206d6f737365202835202d20373020616c206d657365290d0a6e657373756e61207374656c6c613a20706f636865206d6f73736520286d656e6f206469203520616c206d65736529, 'Y', '2006-05-30 19:52:07'),
(645, 18, '', 'Y', '2012-08-22 20:48:45'),
(646, 18, 0x486f73686920e820756e207465726d696e652067696170706f6e65736520636865207369676e696669636120227374656c6c612220656420686120647565207369676e696669636174692e20496e2067656e6572616c652c206573736f20696e64697669647561206c65203920706f73697a696f6e692064692068616e64696361702073756c6c61207461766f6c612064612067696f636f2e20496e207061727469636f6c6172652c20696e6469766964756120696c2070756e746f20342d34206e656c6c27616e676f6c6f2e, 'Y', '2006-05-30 19:52:07'),
(1034, 24, 0x4b6174616cc3a16ec48d696e61, 'Y', '2006-06-09 13:27:05'),
(1035, 24, 0xc48cc3ad6e736b7920287a6a65646e6f6475c5a1656ec3a929, 'Y', '2006-06-09 13:27:05'),
(1036, 24, 0x4b6564792073c3ba206f64737472c3a16e656ec3a9206e65616b74c3ad766e652075c5bec3ad76617465c4be736bc3a92070726f66696c793f, 'N', '2006-06-09 13:27:05'),
(1037, 24, 0x4e696b64792e204f7a6e61c48d696120736120616b6f206e65616b74c3ad766e6520612073747261746961207361207a6f207a6f7a6e616d75206e6f726dc3a16c6e79636820706f75c5bec3ad76617465c4be6f762e, 'N', '2006-06-09 13:27:05'),
(1038, 24, 0x4dc3b4c5be656d20706f75c5bec3ad7661c5a520706f6dc3b4636b79206b206872653f, 'Y', '2006-06-09 13:27:05'),
(1039, 24, 0x53616d6f7a72656a6d652e20c48cc3ad74616a206b6e6968792c20726965c5a120474f2070726f626cc3a96d792c206872616a2070726f746920706fc48dc3ad7461c48d6f6d2c206469736b7574756a207320696ec3bd6d69206872c3a1c48d6d692e204469736b75736ec3a92066c3b3726120756bc3a17a616c692c20c5be65207665c4be6120286d6fc5be6e6f2076c5a16574636929206872c3a1c48d69207475206e61204447532073612075c48d6961206173706fc588206a65646ec3bd6d207a2074c3bd6368746f207370c3b4736f626f762e, 'N', '2006-06-09 13:27:05'),
(1036, 4, 0x4b616e6e20696368206d65696e2042656e75747a65726b6f6e746f206cf6736368656e20756e642077657264656e20756e67656e75747a7465204b6f6e74656e20656e746665726e743f, 'Y', '2012-07-01 20:01:48');
INSERT INTO `Translations` (`Original_ID`, `Language_ID`, `Text`, `Translated`, `Updated`) VALUES
(1037, 4, 0x42656e75747a65726b6f6e74656e2077657264656e206e69652067656cf6736368742c20736f6e6465726e20616c7320696e616b746976206d61726b6965727420756e6420736f6d6974206e69636874206d65687220696e2064657220fc626c696368656e2042656e75747a65726c697374652061756667656c69737465742e20446166fc7220676962742065732065696e6520526569686520766f6e204772fc6e64656e3a0d0a0d0a57656e6e206a656d616e642067657765727465746520537069656c65206765737069656c74206861742c2077fc7264652065696e65204cf6736368756e67207365696e6573204163636f756e747320626564657574656e2c206461737320646965204175667a656963686e756e67656e20616c6c657220537069656c652c2064696520616e64657265204447532d42656e75747a657220676567656e2069686e206765737069656c7420686162656e2c206562656e66616c6c732067656cf6736368742077fc7264656e2e20496872652052e46e6765206dfc737374656e20656e74737072656368656e6420616e676570617373742077657264656e2c206562656e736f20776965206469652052e46e67652064657220537069656c65722c20676567656e2064696520736965206e6163682064656d2067656cf673636874656e20537069656c6572206765737069656c7420686162656e2e0d0a0d0a4562656e736f206dfc737374656e20616c6c6520466f72656e65696e7472e46765206465732062657472656666656e64656e20537069656c6572732067656cf6736368742077657264656e20756e64206a656d616e64206dfc7373746520616c6c652045696e7472e4676520616e70617373656e2c206469652073696368206461726175662062657a696568656e2e, 'Y', '2012-07-19 16:42:29'),
(391, 33, 0xe697a0e6a38be5b180, 'Y', '2007-06-22 20:09:30'),
(3182, 40, 0x4d657520766f746f, 'Y', '2014-04-11 14:09:38'),
(719, 33, 0x257320252e316620e79baee8839c, 'Y', '2007-02-17 16:22:19'),
(372, 33, 0xe5928ce6a38b, 'N', '2007-05-29 13:15:54'),
(242, 33, 0xe8afb7e6b3a8e5868cefbc8ce69da5e4b88be587a0e79b98e59bb4e6a38be38082, 'Y', '2007-02-16 13:33:21'),
(308, 33, 0xe694b6e4bbb6e4baba, 'Y', '2007-02-16 13:55:10'),
(229, 33, 0xe8aea1e58886, 'Y', '2007-02-16 13:55:10'),
(238, 33, 0xe588a0e999a4e8a782e79c8b, 'Y', '2007-05-31 13:36:54'),
(273, 33, 0xe8a784e58899, 'Y', '2007-02-16 13:55:10'),
(239, 33, 0xe58aa0e585a5e8a782e79c8b, 'Y', '2007-02-16 13:55:10'),
(366, 33, 0xe8af84e7ad89, 'Y', '2007-02-16 13:24:15'),
(419, 33, 0xe99990202573, 'Y', '2007-02-16 13:55:10'),
(420, 33, 0xe5b180e695b0, 'Y', '2007-02-15 05:17:50'),
(421, 33, 0xe6aeb5, 'Y', '2007-02-16 13:55:10'),
(423, 33, 0xe5afb9e6898be5bf85e9a1bbe69c89e7ad89e7baa7, 'Y', '2007-02-16 13:55:10'),
(1028, 9, 0x486562726169636f, 'Y', '2006-08-05 19:57:32'),
(1030, 9, 0x566965746e616d697461, 'Y', '2006-08-05 19:57:32'),
(1031, 9, 0x53266561637574653b76696f, 'Y', '2006-08-05 19:57:32'),
(1032, 9, 0x477265676f, 'Y', '2006-08-05 19:57:32'),
(1033, 9, 0x556372616e69616e6f, 'Y', '2006-08-05 19:57:32'),
(1034, 9, 0x436174616c266174696c64653b6f, 'Y', '2006-08-05 19:57:32'),
(1035, 9, 0x4368696e2665636972633b6573202853696d706c6966696361646f2920285554462d3829, 'Y', '2006-08-05 19:57:32'),
(624, 9, 0x2e2e2e20266561637574653b20756d207465726d6f20747261646963696f6e616c20646520476f2c20717565207369676e69666963613a20224f6272696761646f2070656c6f20636f6e766974652070617261206a6f6761722c20626f6120736f7274652122, 'N', '2006-08-05 19:57:32'),
(656, 9, 0x4f20706f6e746f2063656e7472616c20646f20746162756c6569726f2e204f20706f6e746f2031302d313020656d20756d20746162756c6569726f2064652031397831392e2054656e67656e20656d204a61706f6e2665636972633b73207369676e696669636120226f726967656d20646f2063266561637574653b75222e, 'N', '2006-08-05 19:57:32'),
(663, 9, 0x5175616c20266561637574653b2061206469666572656e2663636564696c3b6120656e7472652068616e646963617020636f6e76656e63696f6e616c2065207072266f61637574653b7072696f3a, 'Y', '2006-08-05 19:57:32'),
(1, 1, 0x547976e472722c2064752066e57220696e746520706173736120696e6e616e20616c6c612068616e64696b6170707374656e61726e6120e472206c616764612e, 'Y', '2006-08-12 21:01:10'),
(1085, 24, 0x4f7a6e61c48d2070726f73c3ad6d206dc595747665206b616d656e65206120706f20756b6f6ec48d656ec3ad2073746c61c48d20257327646f6e652725732e, 'Y', '2006-08-13 11:47:58'),
(1086, 24, 0x5a616a61746369, 'Y', '2006-08-13 11:47:58'),
(1084, 24, 0xc5a074616e646172646ec3a920756d696573746e656e6965, 'Y', '2006-08-13 11:49:39'),
(1087, 24, 0x506f7a6ec3a16d6b79, 'Y', '2006-08-13 11:49:39'),
(1088, 24, 0x53746961686e692073676620736f2076c5a165746bc3bd6d69206b6f6d656e74c3a1726d692e, 'Y', '2006-08-13 11:49:39'),
(1059, 24, 0x536b7269, 'Y', '2006-08-13 11:52:33'),
(1060, 24, 0x556bc3a1c5be, 'Y', '2006-08-13 11:52:33'),
(1079, 24, 0x506f7ac3ad636961, 'Y', '2006-08-13 11:52:33'),
(1080, 24, 0x56c3bdc5a16b61, 'Y', '2006-08-13 11:52:33'),
(1081, 24, 0xc5a0c3ad726b61, 'Y', '2006-08-13 11:52:33'),
(1082, 24, 0x506fc5a16c69206865736c6f, 'Y', '2006-08-13 11:52:33'),
(1089, 24, 0x536bc3b3726f76616e6965, 'Y', '2006-08-13 11:52:33'),
(1090, 24, 0x5a6f6272617a20c5a56168, 'Y', '2006-08-13 11:52:33'),
(1091, 24, 0x5a6f7374c3a176616ac3ba636920c48d6173, 'Y', '2006-08-13 11:52:33'),
(1092, 24, 0x486f646e6f74656ec3a120687261, 'Y', '2006-08-13 11:52:33'),
(1093, 24, 0x556bc3a1c5be20706f7a6ec3a16d6b79, 'Y', '2006-08-13 11:52:33'),
(1044, 24, 0x54656e746f20c5a56168207665646965206b206e65646f766f6c656e656a206865726e656a20706f7ac3ad6369692e, 'Y', '2006-08-13 11:55:33'),
(1045, 24, 0xc48c61736f76c3bd206c696d6974206a65207072c3ad6c69c5a1206d616cc3bd2c207a766fc4be206173706fc588206a65646e7520686f64696e752e, 'Y', '2006-08-13 11:55:33'),
(1046, 24, 0x5072657061c48d2c206e65706f766f6c696c2073692027636f6f6b6965732720766f2073766f6a6f6d20707265686c69616461c48d692e, 'Y', '2006-08-13 11:55:33'),
(1047, 24, 0x50726570c3a1c48d2c2075c5be20736920c5a56168616c2e, 'Y', '2006-08-13 11:55:33'),
(1073, 24, 0xc48cc3ad736c6f76616e696520c5a561686f76, 'Y', '2006-08-13 12:00:32'),
(1074, 24, 0x506f75c5be6920c48dc3ad736c61206c656e20646f20313030, 'Y', '2006-08-13 12:00:32'),
(1077, 24, 0x4d616cc3a920646f736b79, 'Y', '2006-08-13 12:00:32'),
(1078, 24, 0x5665c4be6bc3a920646f736b79206f64, 'Y', '2006-08-13 12:00:32'),
(1083, 24, 0x506fc5be6164756a6520736120c5a174616e646172646ec3a920726f7a6d696573746e656e69652068656e64696b65706f76c3bd6368206b616d65c5886f762e, 'Y', '2006-08-13 12:00:32'),
(1094, 24, 0x556c6fc5be20706f7a6ec3a16d6b79, 'Y', '2006-08-13 12:00:32'),
(1095, 24, 0x536b727920706f7a6ec3a16d6b79, 'Y', '2008-09-16 23:04:44'),
(1103, 24, 0x5665c4be6bc3a1206461746162c3a17a612070726f666573696f6ec3a16c6e7963682068696572, 'Y', '2006-08-13 12:00:32'),
(1109, 24, 0x4ec3a168c4be6164, 'Y', '2006-08-13 12:00:32'),
(1121, 24, 0x507265646368c3a1647a616ac3ba636120737072c3a17661, 'Y', '2006-08-13 12:02:09'),
(1102, 24, 0x4461746162c3a17a61206120656e63796b6c6f70c3a964696120476f476f44, 'Y', '2006-08-13 12:03:13'),
(1122, 24, 0xc48e616cc5a1696120737072c3a17661, 'Y', '2006-08-13 12:03:13'),
(1126, 24, 0x4b6f7265612c2053657665726ec3a1, 'Y', '2006-08-13 12:03:40'),
(1050, 24, 0x50726570c3a1c48d2c206e656dc792c5be656d206ec3a16a73c5a520706fc5a174752c206b746f72c3ba20706fc5be6164756a65c5a1207a6f6272617a69c5a52e, 'Y', '2006-08-13 12:15:41'),
(1051, 24, 0x50726570c3a1c48d2c206e656dc3b4c5be656d206ec3a16a73c5a5206a617a796b20616c65626f20736b7570696e75206e61207072656b6c61642e2050726f73c3ad6d206b6f6e74616b74756a20706f64706f72752e, 'Y', '2006-08-13 12:15:41'),
(1053, 24, 0x55c5bec3ad76617465c4be206a652075c5be2061646d696e2e, 'Y', '2006-08-13 12:15:41'),
(1076, 24, 0x53c3ba6b726f6d6ec3a920706f7a6ec3a16d6b79206b7520687265, 'Y', '2006-08-13 12:15:41'),
(1096, 24, 0x56c3ad74616a20766f2076c3bd766f6a6f76656a207665727a696920447261676f6e20476f205365727665726121, 'N', '2006-08-13 12:15:41'),
(1113, 24, 0x486f646e6f74656ec3a920687279, 'Y', '2006-08-13 12:15:41'),
(1440, 17, 0x52756368, 'Y', '2013-08-21 01:01:00'),
(1067, 5, 0x4c616e677565206de87265, 'Y', '2006-08-13 12:26:16'),
(1068, 5, 0x4c616e6761676573206d61ee74726973e973, 'Y', '2006-08-13 12:26:16'),
(1069, 5, 0x456e20646573736f7573, 'Y', '2006-08-13 12:26:16'),
(1073, 5, 0x4e756de9726f7461696f6e206465732070696572726573, 'Y', '2006-08-13 12:26:16'),
(1074, 5, 0x4379636c652073757220313030, 'Y', '2006-08-15 12:39:25'),
(1076, 5, 0x4e6f74657320706572736f6e6e656c6c6573, 'Y', '2006-08-13 12:26:16'),
(1077, 5, 0x50657469747320706c617465617578, 'Y', '2006-08-13 12:26:16'),
(1078, 5, 0x4772616e647320706c61746561757820e020706172746972206465, 'Y', '2007-02-27 22:20:20'),
(1079, 5, 0x506f736974696f6e, 'Y', '2006-08-13 12:26:16'),
(1080, 5, 0x48617574657572, 'Y', '2006-08-13 12:26:16'),
(1081, 5, 0x4c617267657572, 'Y', '2006-08-13 12:26:16'),
(1113, 5, 0x5061727469657320636c617373e96573, 'Y', '2006-08-13 12:26:16'),
(1131, 5, 0x566f757320646576657a2061766f6972206175206d6f696e73202564206a6f75727320646520766163616e63657320e0207072656e64726520706f757220706f75766f69722070617274697220656e20766163616e6365732e, 'Y', '2006-08-13 12:26:16'),
(1067, 24, 0x4d61746572696e736bc3bd206a617a796b, 'Y', '2006-08-13 12:30:10'),
(1068, 24, 0x4a617a796b6f76c3a1206f64626f726e6f73c5a5, 'Y', '2006-08-13 12:30:10'),
(1069, 24, 0x446f6c75, 'Y', '2006-08-13 12:30:10'),
(1106, 24, 0x5a6f7a6e616d206f64706f766564c3ad, 'Y', '2006-08-13 12:30:10'),
(1108, 24, 0x4e617370c3a4c5a5206b7520737072c3a17665, 'Y', '2006-08-13 12:30:10'),
(1110, 24, 0x5072696ac3ad6d617465c4be206e65626f6c206ec3a16a64656ec3bd, 'Y', '2006-08-13 12:30:10'),
(1111, 24, 0x477261662072656a74696e6775, 'Y', '2006-08-13 12:30:10'),
(1112, 24, 0x506f7a6ec3a16d6b6120707265207a61c48d6961746fc48d6ec3ad6b6f763a20707265c48dc3ad74616a7465207369204fc48c4b4f2c20c5a170656369c3a16c6e65206b206e6173746176656e697520706fc48d6961746fc48d6ec3a9686f2072616e6b7520762054766f6a6f6d2070726f66696c652e, 'Y', '2006-08-13 12:30:10'),
(1099, 24, 0x5669616320696e666f726dc3a16369c3ad20686c6164616a2076204fc48c4b4f2e, 'Y', '2006-08-13 12:30:46'),
(1104, 24, '', 'Y', '2009-06-22 11:09:03'),
(1105, 24, 0x54c3bdc5be64656e6ec3bd207374c4ba70c48d656b206f20474f20526f62657274612076616e205a65696a737461, 'Y', '2006-08-13 12:32:58'),
(1125, 24, 0x5472696564656e6965, 'Y', '2006-08-13 12:32:58'),
(1127, 24, 0x4b6f7265612c204a75c5be6ec3a1, 'Y', '2006-08-13 12:32:58'),
(1128, 24, 0xc48c6965726e6120486f7261, 'Y', '2006-08-13 12:32:58'),
(1129, 24, 0x537262736b6f, 'Y', '2006-08-13 12:32:58'),
(1130, 24, 0x5a656d, 'Y', '2006-08-13 12:32:58'),
(1124, 24, 0x4a61, 'Y', '2006-08-13 12:33:54'),
(1131, 24, 0x50726570c3a1c48d2c20706f74726562756a65c5a1206173706fc58820256420646ec3ad207072c3a17a646e696e206e61207961c48d61746965207072c3a17a646e696e6f76616e69612e, 'Y', '2006-08-13 12:33:54'),
(2905, 11, 0x536a61626c6f6e656e206d6574206765627275696b6572736e61616d205b25735d, 'Y', '2016-07-27 19:34:00'),
(1120, 24, 0x63796b6c79206e6176696163, 'Y', '2006-08-13 12:40:49'),
(1044, 5, 0x436520636f757020636f6e6475697420e020756e6520706f736974696f6e20696c6ce967616c652e, 'Y', '2006-08-13 12:44:11'),
(1045, 5, 0x4c61206c696d6974652064652074656d7073206573742074726f7020636f757274652e2043686f6973697373657a206175206d6f696e7320312068657572652e, 'Y', '2006-08-13 12:44:11'),
(1046, 5, 0x44e9736f6ce92c20696c2073656d626c652071756520766f7573206e276179657a20706173206175746f726973e9206c657320636f6f6b69657320706f757220636520736974652064616e7320766f747265206e6176696761746575722e, 'Y', '2006-08-13 12:44:11'),
(1047, 5, 0x44e9736f6ce92c20636520746f757220612064e96ae020e974e9206a6f75e92e, 'Y', '2006-08-13 12:44:11'),
(1048, 5, 0x4c6120706167652064656d616e64e9652065737420696e74726f757661626c652e205327696c20766f757320706c6169742c20636f6e74616374657a206c65732061646d696e69737472617465757273206475207369746520706f7572206c657320696e666f726d6572206465206c612064617465206574206c276865757265206465206c276572726575722c20657420646520746f75742063652071756520766f7573206176657a2070752066616972652071756920617572616974207075206c61206361757365722e, 'Y', '2006-08-13 12:44:11'),
(1049, 5, 0x566f7472652070736575646f6e796d6520636f6e7469656e7420756e20636172616374e8726520696e7465726469742e205365756c73206c657320636172616374e87265732027612720e020277a272c2027412720e020275a272c2027302720e0202739272c20272d272c20275f2720657420272b2720736f6e74206175746f726973e9732e204c65207072656d69657220646f697420ea74726520756e65206c65747472652e, 'Y', '2006-08-13 12:44:11'),
(1055, 19, 0x45676f65726172656e205253532069747572726961, 'Y', '2006-08-13 17:36:26'),
(1060, 19, 0x457a6b7574617475, 'Y', '2006-08-13 17:36:26'),
(1125, 19, 0x4f7264656e617475, 'Y', '2006-08-13 17:36:26'),
(1082, 19, 0x426964616c6920706173616869747a61, 'Y', '2006-08-13 17:44:12'),
(1096, 19, 0x4f6e67692065746f72726920447261676f6e20476f20736572766572206761726170656e207a65726269747a617269726121, 'N', '2006-08-13 17:44:12'),
(1097, 19, 0x42656e6574616b6f207a65726269747a617269616e206a6f6c61737475206e61686920626164757a752c206d65736564657a206a6f616e203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e6574223e687474703a2f2f7777772e647261676f6e676f7365727665722e6e65743c2f613e2068656c6269646572612e, 'Y', '2006-08-13 17:44:12'),
(1878, 17, 0x446c617465676f2070726f737aea206f2070727a6573b3616e69652063686f636961bf6279206d61b3656a2073756d79207069656e69ea647a79202d2031302c206c7562203230206575726f2c206d6e69656a737a6520696c6fb663692074616bbf652073b120626172647a6f206d696c65207769647a69616e652e0d0a0d0a447a69ea6b692074656d752062ea647a69656d79206d6f676c69206b6f6e74796e756f7761e62070726f7761647a656e696520736572776572612062657a206f736f62697374796368206b6f737a74f3772e0d0a0d0a4e61737a796d2063656c656d206a65737420757a62696572616e696520777973746172637a616ab163656a20696c6fb66369207069656e69ea647a792c20616279206f70b3616369e620736572776572207a2067f37279206e612074727a79206c6174612e0d0a0d0a0d0a3c703e0d0a5a20706f7761bf616e69656d2c0d0a41646d696e6973747261746f727a7920444753, 'Y', '2013-08-20 23:26:02'),
(1099, 19, 0x426567697261747520464151206174616c6120696e666f726d617a696f206765686961676f72616b6f2e, 'Y', '2006-08-13 17:46:18'),
(1112, 19, 0x486173696265727269656e747a6174206f68617272613a204972616b7572726920464151206174616c612c20626572657a696b69207a757265206d61696c6120657a6172747a65617269206461676f6b696f6e612e, 'Y', '2006-08-13 17:46:18'),
(1076, 19, 0x4a6f6b6f206f6861722070726962617475616b2e, 'Y', '2006-08-13 17:50:57'),
(1083, 19, 0x48616e6469636170206861727269656e206b6f6b6170656e20657374616e64617272612065736b6174752064612e, 'Y', '2006-08-13 17:50:57'),
(1084, 19, 0x4b6f6b6170656e20657374616e6461727261, 'Y', '2006-08-13 17:50:57'),
(1085, 19, 0x4d65736564657a2c206d61726b6174752068696c64616b6f206861727269616b20657461202573274567696e6461272573207a6170616c64752062756b61747574616b6f616e2e, 'Y', '2006-12-16 21:50:58'),
(1086, 19, 0x486172726170616b6574616b, 'Y', '2006-08-13 17:50:57'),
(1087, 19, 0x4972757a6b696e616b, 'Y', '2006-08-13 17:50:57'),
(1088, 19, 0x4465736b617267617475207367662d61206972757a6b696e656b696e, 'Y', '2006-08-13 17:50:57'),
(1089, 19, 0x50756e7475617a696f61, 'Y', '2006-08-13 17:50:57'),
(1090, 19, 0x496b757369206d7567696d656e647561, 'Y', '2006-08-13 17:50:57'),
(1091, 19, 0x47657261747a656e2064656e2064656e626f7261, 'Y', '2006-08-13 17:50:57'),
(1092, 19, 0x506172746964612070756e747561676172726961, 'Y', '2006-08-13 17:50:57'),
(1093, 19, 0x426973746172617a69206f68617272616b, 'Y', '2006-08-13 17:50:57'),
(1094, 19, 0x476f726465206f68617272616b, 'Y', '2006-08-13 17:50:57'),
(1095, 19, 0x457a6b7574617475206f68617272616b, 'Y', '2006-08-13 17:50:57'),
(1111, 19, 0x4d61696c6172656e2067726166696b6f61, 'Y', '2006-08-13 17:50:57'),
(1443, 17, 0x52616e6b696e676f7761, 'Y', '2013-08-20 23:08:31'),
(1106, 19, 0x4572616e747a756e207a657272656e6461, 'Y', '2006-08-13 17:54:17'),
(1108, 19, 0x4275656c74617475206d657a757261, 'Y', '2006-08-13 17:54:17'),
(1109, 19, 0x4175727265696b757369, 'Y', '2006-08-13 17:54:17'),
(1110, 19, 0x486172747a61696c656120657a206461206175726b697475, 'Y', '2006-08-13 17:54:17'),
(1030, 17, 0x776965746e616d736b69, 'Y', '2013-08-20 22:11:05'),
(1120, 19, 0x746172746520676568696761727269616b, 'Y', '2006-08-13 17:54:17'),
(1121, 19, 0x41757272656b6f206d657a7561, 'Y', '2006-08-13 17:54:17'),
(1122, 19, 0x48757272656e676f206d657a75616b, 'Y', '2006-08-13 17:54:17'),
(1124, 19, 0x4e69206e6575, 'Y', '2006-08-13 17:54:17'),
(1067, 19, 0x416d612068697a6b756e747a61, 'Y', '2006-08-13 17:57:25'),
(1068, 19, 0x48697a6b756e747a6120676169746173756e61, 'Y', '2006-08-13 17:57:25'),
(1069, 19, 0x417a706974696b, 'Y', '2006-08-13 17:57:25'),
(1073, 19, 0x4d7567696d656e6475207a656e62616b69747a6561, 'Y', '2006-08-13 17:57:25'),
(1074, 19, 0x457a2065726162696c6920313030206761696e656b6f207a656e62616b6972696b, 'Y', '2006-08-13 17:57:25'),
(1077, 19, 0x5461756c61207478696b69616b, 'Y', '2006-08-13 17:57:25'),
(1078, 19, 0x5461756c612068616e6469616b2068656d656e20686173697461, 'Y', '2006-08-13 17:57:25'),
(1079, 19, 0x4b6f6b6170656e61, 'Y', '2006-08-13 17:57:25'),
(1080, 19, 0x416c7475657261, 'Y', '2006-08-13 17:57:25'),
(1081, 19, 0x5a6162616c657261, 'Y', '2006-08-13 17:57:25'),
(1113, 19, 0x506172746964612070756e7475616761727269616b, 'Y', '2006-08-13 17:57:25'),
(1131, 19, 0x4261726b6174752c206775747869656e657a202564206f706f72206567756e20626568617220646974757a75206f706f7272616c6469612068617374656b6f2e, 'Y', '2006-08-13 17:57:25'),
(1102, 19, '', 'Y', '2006-12-29 00:39:59'),
(1103, 19, '', 'Y', '2006-12-29 00:39:59'),
(1104, 19, '', 'Y', '2006-12-29 00:39:59'),
(1105, 19, '', 'Y', '2006-12-29 00:39:59'),
(1059, 19, 0x426973746172617475, 'Y', '2006-08-13 18:03:05'),
(1044, 19, 0x4d7567696d656e647520686f6e656b207461756c616e206c6567657a206b616e706f6b6f20706f73697a696f6120736f7274756b6f206c756b652e, 'Y', '2006-08-13 18:07:51'),
(1045, 19, 0x44656e626f7261206d756761207478696b69656769612064612c206d65736564657a206775747869656e657a206f726475626574652061756b65726174752e, 'Y', '2006-08-13 18:07:51'),
(1046, 19, 0x4261726b6174752c20657a20646974757a7520636f6f6b69652d616b206761697475207a757265206e6162696761747a61696c65616e2e, 'Y', '2006-08-13 18:07:51'),
(1047, 19, 0x4261726b6174752c207478616e646120686175206a6f6c61737475206461206a6164612e, 'Y', '2006-08-13 18:07:51'),
(1048, 19, 0x4f7272696120657a206461206175726b6974752e4d65736564657a206a617272692061646d696e6973747261747a61696c656172656b696e206b6f6e74616b7475616e2065746120676572746174752064656e206572726f72656172656e20626572726920656d616e2c20657461206572726f72656120676572746174752061727465207a756b206567696e64616b6f61206572652e, 'Y', '2006-08-13 18:07:51'),
(1049, 19, 0x45726162696c747a61696c6520697a656e616b206c6567657a206b616e706f6b6f206b6172616b74657265616b20646974752c20736f696c696b20612d7a2c20412d5a2c20302d392074617274656574616b6f20657461202b5f2d206b6172616b74657265616b206f6e6172747a656e20646972612c206c6568656e62697a696b6f6120612d7a2c412d5a2074617274656574616b6f6120697a616e2062656861722064752e, 'Y', '2006-08-13 18:07:51'),
(1050, 19, 0x4261726b6174752c20657a696e20697a616e2064757420626973746172617475206e616869207a656e75656e206d657a7561206175726b6974752e, 'Y', '2006-08-13 18:09:55'),
(1051, 19, 0x4261726b6174752c20457a696e20697a616e206475742069747a756c69206e6168692064757a756e2068697a6b756e747a612065646f2074616c646561206175726b6974752e204d65736564657a2061646d696e6973747261747a61696c65656b696e206b6f6e74616b7475616e6d206a617272692e, 'Y', '2006-08-13 18:09:55'),
(1053, 19, 0x45726162696c747a61696c652068617520626164612061646d696e6973747261747a61696c6561, 'Y', '2006-08-13 18:09:55'),
(773, 19, 0x42656c67696b61, 'Y', '2006-08-13 18:10:49'),
(757, 19, '', 'Y', '2006-12-29 00:39:59'),
(758, 19, '', 'Y', '2006-12-29 00:39:59'),
(759, 19, '', 'Y', '2006-12-29 00:39:59'),
(760, 19, '', 'Y', '2006-12-29 00:39:59'),
(763, 19, '', 'Y', '2006-12-29 00:39:59'),
(764, 19, '', 'Y', '2006-12-29 00:39:59'),
(765, 19, '', 'Y', '2006-12-29 00:39:59'),
(766, 19, '', 'Y', '2006-12-29 00:39:59'),
(771, 19, '', 'Y', '2006-12-29 00:39:59'),
(777, 19, '', 'Y', '2006-12-29 00:39:59'),
(782, 19, '', 'Y', '2006-12-29 00:39:59'),
(783, 19, '', 'Y', '2006-12-29 00:39:59'),
(786, 19, 0x4b616d6572756e, 'Y', '2006-08-13 18:12:06'),
(787, 19, 0x4b616e616461, 'Y', '2006-08-13 18:12:16'),
(780, 19, 0x42726173696c, 'Y', '2006-08-13 18:12:50'),
(784, 19, '', 'Y', '2006-12-29 00:39:59'),
(696, 19, '', 'Y', '2006-12-29 00:39:59'),
(792, 19, 0x5478696e61, 'Y', '2006-08-13 18:27:08'),
(793, 19, 0x4b6f6c6f6e626961, 'Y', '2006-08-13 18:27:08'),
(785, 19, 0x4b616e626f6961, 'Y', '2006-08-13 18:27:35'),
(791, 19, 0x5478696c65, 'Y', '2006-08-13 18:27:48'),
(790, 19, 0x54786164, 'Y', '2006-08-13 18:27:58'),
(768, 19, 0x426168616d616b, 'Y', '2006-08-13 18:28:08'),
(799, 19, 0x4b726f617a6961, 'Y', '2006-08-13 18:28:22'),
(800, 19, 0x4b756261, 'Y', '2006-08-13 18:28:29'),
(801, 19, 0x5a69707265, 'Y', '2006-08-13 18:41:03'),
(802, 19, 0x5478656b69617220657272657075626c696b61, 'Y', '2006-08-13 18:28:50'),
(803, 19, 0x44616e696d61726b61, 'Y', '2006-08-13 18:28:59'),
(756, 19, 0x416667616e697374616e, 'Y', '2006-08-13 18:30:01'),
(761, 19, 0x416e74617274696461, 'Y', '2006-08-13 18:30:01'),
(762, 19, 0x416e7469677561206574612042617262756461, 'N', '2006-08-13 18:30:01'),
(767, 19, 0x417a657262616a616e, 'Y', '2006-08-13 18:30:01'),
(770, 19, 0x4261726261646f616b, 'Y', '2006-08-13 18:30:01'),
(772, 19, 0x4269656c6f65727275736961, 'Y', '2006-08-13 18:30:01'),
(775, 19, '', 'Y', '2006-12-29 00:39:59'),
(788, 19, 0x4b61626f204265726465, 'Y', '2006-08-13 18:41:03'),
(789, 19, 0x416672696b6120457264696b6f20457272657075626c696b61, 'Y', '2006-08-13 18:41:03'),
(794, 19, 0x4b6f6d6f7265616b, 'Y', '2006-08-13 18:41:03'),
(795, 19, 0x4b6f6e676f6b6f20457272657075626c696b61, 'Y', '2006-08-13 18:41:03'),
(796, 19, 0x4b6f6e676f6b6f20457272657075626c696b612044656d6f6b726174696b6f61, 'Y', '2006-08-13 18:41:03'),
(797, 19, 0x4b6f7374612052696b61, 'Y', '2006-08-13 18:41:03'),
(804, 19, 0x446a6962757469, 'Y', '2006-08-13 18:52:42'),
(805, 19, 0x446f6d696e696b61, 'Y', '2006-08-13 18:52:42'),
(806, 19, 0x446f6d696e696b617220457272657075626c696b61, 'Y', '2006-08-13 18:52:42'),
(808, 19, 0x456b7561646f72, 'Y', '2006-08-13 18:52:42'),
(809, 19, 0x45676970746f, 'Y', '2006-08-13 18:52:42'),
(810, 19, 0x53616c6261646f72, 'Y', '2006-08-13 18:52:42'),
(811, 19, 0x456b7561746f72652047696e6561, 'Y', '2006-08-13 18:52:42'),
(812, 19, '', 'Y', '2006-12-29 00:39:59'),
(813, 19, '', 'Y', '2006-12-29 00:39:59'),
(814, 19, 0x4574696f706961, 'Y', '2006-08-13 18:52:42'),
(815, 19, '', 'Y', '2006-12-29 00:39:59'),
(816, 19, 0x46696e6c616e646961, 'Y', '2006-08-13 18:52:42'),
(817, 19, 0x4672616e747a6961, 'Y', '2006-08-13 18:52:42'),
(818, 19, '', 'Y', '2006-12-29 00:39:59'),
(819, 19, '', 'Y', '2006-12-29 00:39:59'),
(820, 19, '', 'Y', '2006-12-29 00:39:59'),
(821, 19, 0x416c656d616e6961, 'Y', '2006-08-13 18:52:42'),
(822, 19, '', 'Y', '2006-12-29 00:39:59'),
(823, 19, 0x4772657a6961, 'Y', '2006-08-13 18:52:42'),
(824, 19, 0x4772616e616461, 'Y', '2006-08-13 18:52:42'),
(825, 19, '', 'Y', '2006-12-29 00:39:59'),
(826, 19, 0x47696e6561, 'Y', '2006-08-13 18:52:42'),
(827, 19, 0x47696e656120426973736175, 'Y', '2006-08-13 18:52:42'),
(828, 19, 0x477569616e61, 'Y', '2006-08-13 18:52:42'),
(829, 19, '', 'Y', '2006-12-29 00:39:59'),
(830, 19, '', 'Y', '2006-12-29 00:39:59'),
(831, 19, '', 'Y', '2006-12-29 00:39:59'),
(832, 19, 0x48756e6761726961, 'Y', '2006-08-13 18:52:42'),
(833, 19, 0x49736c616e646961, 'Y', '2006-08-13 18:52:42'),
(834, 19, '', 'Y', '2006-12-29 00:39:59'),
(835, 19, '', 'Y', '2006-12-29 00:39:59'),
(836, 19, '', 'Y', '2006-12-29 00:39:59'),
(837, 19, 0x4972616b, 'Y', '2006-08-13 18:52:42'),
(838, 19, 0x49726c616e6461, 'Y', '2006-08-13 18:52:42'),
(839, 19, '', 'Y', '2006-12-29 00:39:59'),
(840, 19, 0x4974616c6961, 'Y', '2006-08-13 18:52:42'),
(841, 19, 0x4a616d61696b61, 'Y', '2006-08-13 18:52:42'),
(842, 19, 0x4a61706f6e6961, 'Y', '2006-08-13 18:52:42'),
(843, 19, 0x4a6f7264616e6961, 'Y', '2006-08-13 18:52:42'),
(845, 19, 0x4b656e6961, 'Y', '2006-08-13 18:52:42'),
(846, 19, '', 'Y', '2006-12-29 00:39:59'),
(849, 19, '', 'Y', '2006-12-29 00:39:59'),
(850, 19, 0x4b697267697a697374616e, 'Y', '2006-08-13 18:52:42'),
(851, 19, '', 'Y', '2006-12-29 00:39:59'),
(852, 19, 0x4c65746f6e6961, 'Y', '2006-08-13 18:52:42'),
(853, 19, 0x4c6962616e6f, 'Y', '2006-08-13 18:52:42'),
(854, 19, 0x4c65736f746f, 'Y', '2006-08-13 18:52:42'),
(855, 19, '', 'Y', '2006-12-29 00:39:59'),
(856, 19, 0x4c69626961, 'Y', '2006-08-13 18:52:42'),
(857, 19, 0x4c696563687465737465696e, 'Y', '2006-08-13 18:52:42'),
(858, 19, 0x4c697475616e6961, 'Y', '2006-08-13 18:52:42'),
(859, 19, 0x4c7578656e627572676f, 'Y', '2006-08-13 18:52:42'),
(861, 19, 0x4d617a65646f6e69616b6f20457272657075626c696b61, 'Y', '2006-08-13 18:52:42'),
(862, 19, 0x4d6164616761736b6172, 'Y', '2006-08-13 18:52:42'),
(863, 19, 0x4d616c617569, 'Y', '2006-08-13 18:54:14'),
(864, 19, 0x4d616c61736961, 'Y', '2006-08-13 18:54:14'),
(865, 19, 0x4d616c646962616b, 'Y', '2006-08-13 18:54:14'),
(866, 19, '', 'Y', '2006-12-29 00:39:59'),
(867, 19, '', 'Y', '2006-12-29 00:39:59'),
(416, 17, 0x5a6567617220647a6961b3612077207765656b656e6479, 'Y', '2006-08-13 19:04:51'),
(1024, 17, 0x52f3776e6120677261, 'Y', '2006-08-13 19:04:51'),
(1076, 17, 0x5072797761746e65206b6f6d656e7461727a, 'Y', '2006-08-13 19:04:51'),
(1083, 17, 0x5374616e646172646f776520726f7a6d6965737a637a656e6965206b616d69656e692068616e6469636170752e, 'Y', '2013-08-22 05:25:53'),
(1084, 17, 0x5374616e646172646f776520726f7a6d6965737a637a656e6965, 'Y', '2006-08-13 19:04:51'),
(1086, 17, 0x4a65f16379, 'Y', '2006-08-13 19:04:51'),
(1087, 17, 0x4b6f6d656e7461727a65, 'Y', '2006-08-13 19:04:51'),
(1088, 17, 0x506f626965727a20706c696b202e736766207a2077737a7973746b696d69206b6f6d656e7461727a616d69, 'Y', '2013-08-22 04:05:32'),
(1089, 17, 0x4c69637a656e69652077796e696b75, 'Y', '2006-08-13 19:04:51'),
(1090, 17, 0x506f6b61bf2072756368, 'Y', '2006-08-13 19:04:51'),
(1091, 17, 0x506f7a6f737461b37920637a6173, 'Y', '2006-08-13 19:04:51'),
(1092, 17, 0x4772612072616e6b696e676f7761, 'Y', '2006-08-13 19:04:51'),
(1093, 17, 0x506f6b61bf206b6f6d656e7461727a65, 'Y', '2006-08-13 19:04:51'),
(1094, 17, 0x5a617069737a206b6f6d656e7461727a65, 'Y', '2006-08-13 19:04:51'),
(1095, 17, 0x556b72796a206b6f6d656e7461727a65, 'Y', '2006-08-13 19:04:51'),
(1111, 17, 0x57796b72657320726174696e6775, 'Y', '2006-08-13 19:04:51'),
(1438, 17, 0x48616e6469636170, 'Y', '2013-08-20 23:08:31'),
(3450, 11, 0x536a61626c6f6e656e20282573206f7020257320696e206765627275696b29, 'Y', '2013-01-11 16:20:05'),
(1097, 24, 0x416b2063686365c5a12020687261c5a5206e61207265c3a16c6e6f6d20736572766572692c206e6176c5a174c3ad76203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e6574223e687474703a2f2f7777772e647261676f6e676f7365727665722e6e65743c2f613e202e, 'Y', '2006-08-14 13:01:21'),
(1877, 17, 0x4e69657374657479206f642035206c757465676f2032303039207365727765722070726163756a65206369b1676c65206e612074656a2073616d656a2c2073746172656a20776572736a692c20706f74727a65626f77616c69b66d79207769ea63206e6f77737a79636820726f7a7769b17a61f12e2041627920746f20756d6fbf6c697769e6206d757369656c69b66d79207369ea207a676f647a69e6206e612070b36163656e6965206e69657769656c6b69656a206f70b3617479286d69657369ea637a6e696520323030206b6f726f6e20737a7765647a6b696368202d20746f20772070727a79626c69bf656e6975203230206575726f206e61206d69657369b163292e, 'Y', '2013-08-20 22:47:12'),
(1048, 24, 0x537472c3a16e6b61207361206e656e61c5a16c612e204b6f6e74616b74756a74652070726f73c3ad6d2061646d696e69737472c3a1746f726f762073657276657261206120696e666f726d756a746520696368206f20c48d6173652c206b65647920736120636879626120756469616c612061206f2076c5a165746b6f6d2c20c48d6f2073746520726f62696c692c206b65c48f20736120636879626120756469616c612e, 'Y', '2006-08-14 13:11:27'),
(1049, 24, 0x55c5bec3ad76617465c4be736bc3a9204944206f62736168756a65206e65706f766f6c656ec3a9207a6e616b792e20446f766f6c656ec3a92073c3ba206c656e207a6e616b7920612d7a2c20412d5a2c20302d392061202d5f2b206120707276c3bd207a6e616b206d7573c3ad206279c5a52073706f6d65647a6920612d7a2c20412d5a2e, 'Y', '2006-08-14 13:11:27'),
(1055, 24, 0x5374617620525353204bc5956d6e696b61, 'Y', '2006-08-14 13:13:58'),
(868, 19, 0x4d61727368616c6c20756861727465616b, 'Y', '2006-08-15 00:01:04'),
(869, 19, '', 'Y', '2006-12-29 00:39:59'),
(871, 19, 0x4d6578696b6f, 'Y', '2006-08-15 00:01:04'),
(872, 19, 0x4d696b726f6e657369616b6f20457374617475204665646572617475616b, 'Y', '2006-08-15 00:01:04'),
(873, 19, 0x4d6f6c6461766961, 'Y', '2006-08-15 00:01:04'),
(874, 19, 0x4d6f6e616b6f, 'Y', '2006-08-15 00:01:04'),
(875, 19, '', 'Y', '2006-12-29 00:39:59'),
(876, 19, 0x4d61726f6b6f, 'Y', '2006-08-15 00:01:04'),
(877, 19, 0x4d6f7a616d62696b65, 'Y', '2006-08-15 00:01:04'),
(878, 19, 0x4269726d616e6961, 'Y', '2006-08-15 00:01:04'),
(879, 19, '', 'Y', '2006-12-29 00:39:59'),
(880, 19, '', 'Y', '2006-12-29 00:39:59'),
(881, 19, '', 'Y', '2006-12-29 00:39:59'),
(882, 19, 0x486572626568657265616b, 'Y', '2006-08-15 00:01:04'),
(883, 19, 0x5a65656c616e646120426572726961, 'Y', '2006-08-15 00:01:04'),
(884, 19, 0x4e696b617261677561, 'Y', '2006-08-15 00:01:04'),
(885, 19, '', 'Y', '2006-12-29 00:39:59'),
(886, 19, '', 'Y', '2006-12-29 00:39:59'),
(887, 19, 0x4e6f727665676961, 'Y', '2006-08-15 00:01:04'),
(888, 19, '', 'Y', '2006-12-29 00:39:59'),
(889, 19, '', 'Y', '2006-12-29 00:39:59'),
(890, 19, '', 'Y', '2006-12-29 00:39:59'),
(892, 19, '', 'Y', '2006-12-29 00:39:59'),
(893, 19, 0x50617075612047696e656120426572726961, 'Y', '2006-08-15 00:09:08'),
(894, 19, 0x5061726167756169, 'Y', '2006-08-15 00:09:08'),
(895, 19, '', 'Y', '2006-12-29 00:39:59'),
(896, 19, 0x46696c6970696e616b, 'Y', '2006-08-15 00:09:08'),
(897, 19, 0x506f6c6f6e6961, 'Y', '2006-08-15 00:09:08'),
(898, 19, '', 'Y', '2006-12-29 00:39:59'),
(899, 19, '', 'Y', '2006-12-29 00:39:59'),
(900, 19, '', 'Y', '2006-12-29 00:39:59'),
(901, 19, 0x457272756d616e6961, 'Y', '2006-08-15 00:09:08'),
(902, 19, 0x45727275736961, 'Y', '2006-08-15 00:09:08'),
(903, 19, 0x5275616e6461, 'Y', '2006-08-15 00:09:08'),
(904, 19, 0x53616e204b726973746f62616c20657461204e65766973, 'Y', '2006-08-15 00:09:08'),
(905, 19, 0x53616e7461204c757a6961, 'Y', '2006-08-15 00:09:08'),
(906, 19, 0x53616e20566963656e746520657461204772656e6164696e616b, 'Y', '2006-08-15 00:09:08'),
(907, 19, '', 'Y', '2006-12-29 00:39:59'),
(908, 19, '', 'Y', '2006-12-29 00:39:59'),
(909, 19, 0x53616e746f20546f6d6520657461205072696e63697065, 'Y', '2006-08-15 00:09:08'),
(910, 19, '', 'Y', '2006-12-29 00:39:59'),
(911, 19, '', 'Y', '2006-12-29 00:39:59'),
(913, 19, 0x5365796368656c6c65616b, 'Y', '2006-08-15 00:09:08'),
(914, 19, 0x536965727261204c656f6e61, 'Y', '2006-08-15 00:09:08'),
(915, 19, 0x53696e6761707572, 'Y', '2006-08-15 00:09:08'),
(916, 19, 0x45736c6f76616b6961, 'Y', '2006-08-15 00:09:08'),
(917, 19, 0x45736c6f76656e6961, 'Y', '2006-08-15 00:09:08'),
(918, 19, 0x53616c6f6d6f6e20556861727465616b, 'Y', '2006-08-15 00:09:08'),
(919, 19, '', 'Y', '2006-12-29 00:39:59'),
(920, 19, 0x4865676f616672696b617220457272657075626c696b61, 'Y', '2006-08-15 00:09:08'),
(921, 19, 0x45737061696e6961, 'Y', '2006-08-15 00:09:08'),
(922, 19, '', 'Y', '2006-12-29 00:39:59'),
(923, 19, '', 'Y', '2006-12-29 00:39:59'),
(924, 19, 0x537572696e616d, 'Y', '2006-08-15 00:09:08'),
(925, 19, 0x5377617a696c616e646961, 'Y', '2006-08-15 00:09:08'),
(926, 19, 0x537565646961, 'Y', '2006-08-15 00:09:08'),
(927, 19, 0x537569747a61, 'Y', '2006-08-15 00:09:08'),
(928, 19, 0x5369726961, 'Y', '2006-08-15 00:09:08'),
(929, 19, '', 'Y', '2006-12-29 00:39:59'),
(930, 19, '', 'Y', '2006-12-29 00:39:59'),
(931, 19, '', 'Y', '2006-12-29 00:39:59'),
(932, 19, 0x5461696c616e646961, 'Y', '2006-08-15 00:14:12'),
(933, 19, '', 'Y', '2006-12-29 00:39:59'),
(934, 19, '', 'Y', '2006-12-29 00:39:59'),
(935, 19, 0x5472696e696461642065746120546f6261676f, 'Y', '2006-08-15 00:14:12'),
(936, 19, '', 'Y', '2006-12-29 00:39:59'),
(937, 19, 0x5475726b6961, 'Y', '2006-08-15 00:14:12'),
(938, 19, '', 'Y', '2006-12-29 00:39:59'),
(939, 19, '', 'Y', '2006-12-29 00:39:59'),
(940, 19, '', 'Y', '2006-12-29 00:39:59'),
(941, 19, 0x556b7261696e61, 'Y', '2006-08-15 00:14:12'),
(942, 19, 0x4172616269617220456d6972657272692042617475616b, 'Y', '2006-08-15 00:14:12'),
(943, 19, 0x4572726573756d61204261747561, 'Y', '2006-08-15 00:14:12'),
(944, 19, 0x4573746174752042617475616b, 'Y', '2006-08-15 00:14:12'),
(945, 19, 0x55727567756169, 'Y', '2006-08-15 00:14:12'),
(946, 19, '', 'Y', '2006-12-29 00:39:59'),
(947, 19, '', 'Y', '2006-12-29 00:39:59'),
(948, 19, 0x566174696b616e6f206869726961, 'Y', '2006-08-15 00:14:12'),
(949, 19, '', 'Y', '2006-12-29 00:39:59'),
(950, 19, '', 'Y', '2006-12-29 00:39:59'),
(951, 19, '', 'Y', '2006-12-29 00:39:59'),
(952, 19, '', 'Y', '2006-12-29 00:39:59'),
(953, 19, '', 'Y', '2006-12-29 00:39:59'),
(1126, 19, 0x49706172204b6f726561, 'Y', '2006-08-15 00:14:12'),
(1127, 19, 0x4865676f204b6f726561, 'Y', '2006-08-15 00:14:12'),
(1128, 19, '', 'Y', '2006-12-29 00:39:59'),
(1129, 19, '', 'Y', '2006-12-29 00:39:59'),
(1130, 19, 0x4c75727261, 'Y', '2006-08-15 00:14:12'),
(769, 19, 0x42617265696e, 'Y', '2006-08-15 00:16:05'),
(774, 19, '', 'Y', '2006-12-29 00:39:59'),
(776, 19, 0x427574616e, 'Y', '2006-08-15 00:16:05'),
(779, 19, 0x426f747375616e61, 'Y', '2006-08-15 00:16:05'),
(274, 19, '', 'Y', '2006-12-29 00:39:59'),
(275, 19, '', 'Y', '2006-12-29 00:39:59'),
(276, 19, '', 'Y', '2006-12-29 00:39:59'),
(281, 19, '', 'Y', '2006-12-29 00:39:59'),
(283, 19, '', 'Y', '2006-12-29 00:39:59'),
(284, 19, '', 'Y', '2006-12-29 00:39:59'),
(285, 19, '', 'Y', '2006-12-29 00:39:59'),
(286, 19, '', 'Y', '2006-12-29 00:39:59'),
(1036, 19, 0x4e6f697a20657a616261747a656e20646972612065726162696c747a61696c6520736f736c6169616b3f, 'N', '2006-08-15 00:18:56'),
(1037, 19, 0x496e6f697a20657a2e20416b746962697461746520676162656b6f616b2067697361206d61726b61747a656e2064697261206574612065726162696c747a61696c65207a657272656e646120617272756e746574696b20657a6b75746174752e, 'N', '2006-08-15 00:18:56'),
(287, 19, '', 'Y', '2006-12-29 00:39:59'),
(288, 19, '', 'Y', '2006-12-29 00:39:59'),
(293, 19, '', 'Y', '2006-12-29 00:39:59'),
(295, 19, '', 'Y', '2006-12-29 00:39:59'),
(296, 19, '', 'Y', '2006-12-29 00:39:59'),
(297, 19, '', 'Y', '2006-12-29 00:39:59'),
(298, 19, '', 'Y', '2006-12-29 00:39:59'),
(299, 19, '', 'Y', '2006-12-29 00:39:59'),
(301, 19, '', 'Y', '2006-12-29 00:39:59'),
(303, 19, '', 'Y', '2006-12-29 00:39:59'),
(710, 19, 0x4e6f6e20696b6173692064657a616b657420474f7261206a6f6c617374656e3f, 'Y', '2006-08-15 00:21:55'),
(711, 19, 0x456d61696f7a7520626567697261646120626174203c6120687265663d22687474703a2f2f7777772e676f7a6f726f2e6f72672f696b6173692f6575736b6172617a2f223e474f20696b617374656b6f206269646520696e746572616b7469626f613c2f613e726920657461203c6120687265663d22687474703a2f2f7777772e676f7a6f726f2e6f72672f676f2d65736b756c696275727561342e706466223e7361727265726174786f3c2f613e20686f6e69, 'Y', '2006-08-15 00:21:55'),
(870, 19, 0x4d617572697a696f, 'Y', '2006-08-15 00:22:27'),
(574, 19, '', 'Y', '2006-12-29 00:39:59'),
(713, 19, '', 'N', '2006-12-29 00:39:59'),
(1055, 5, 0x46696c20525353, 'Y', '2006-08-18 14:15:53'),
(1060, 5, 0x436163686572, 'Y', '2006-08-15 01:09:36'),
(1125, 5, 0x5472696572, 'Y', '2006-08-18 14:14:37'),
(1083, 5, 0x506c6163656d656e74207374616e646172642064657320706965727265732064652068616e64696361702e, 'Y', '2013-03-13 09:24:16'),
(1084, 5, 0x506c6163656d656e74207374616e64617264207365756c656d656e74, 'Y', '2013-03-13 09:23:33'),
(1085, 5, 0x566575696c6c657a206d617271756572206c65732070696572726573206d6f727465732c207075697320636c697175657220737572202573ab266e6273703b56616c69646572266e6273703bbb25732e, 'Y', '2013-03-11 14:43:03'),
(1086, 5, 0x4361707475726573, 'Y', '2006-08-15 00:25:04'),
(1087, 5, 0x436f6d6d656e746169726573, 'Y', '2006-08-15 00:25:04'),
(1088, 5, 0x46696368696572205347462061766563206c657320636f6d6d656e746169726573, 'Y', '2006-08-15 00:25:04'),
(1089, 5, 0x53636f7265, 'Y', '2006-08-15 00:25:04'),
(1090, 5, 0x566f6972206c6520636f7570, 'Y', '2006-08-15 00:25:04'),
(1091, 5, 0x54656d70732072657374616e74, 'Y', '2006-08-15 00:25:04'),
(1092, 5, 0x50617274696520636c617373e965, 'Y', '2006-08-15 00:25:04'),
(1093, 5, 0x566f6972206c6573206e6f746573, 'Y', '2006-08-15 00:25:04'),
(1094, 5, 0x536175766572206c6573206e6f746573, 'Y', '2006-08-15 00:25:04'),
(1095, 5, 0x436163686572206c6573206e6f746573, 'Y', '2006-08-15 00:25:04'),
(1111, 5, 0x436f75726265206465206e697665617578, 'Y', '2006-08-15 00:25:04'),
(1437, 17, 0x526f7a6d696172, 'Y', '2013-08-20 23:08:31'),
(2906, 11, 0x536a61626c6f6e656e, 'Y', '2013-01-11 16:20:05'),
(1082, 5, 0x456e766f796572206c65206d6f74206465207061737365, 'Y', '2006-08-15 00:25:20'),
(1096, 5, 0x4269656e76656e756520737572206c6520736974652064652064e976656c6f7070656d656e7420706f757220447261676f6e20476f20536572766572266e6273703b21, 'N', '2006-08-15 00:25:20'),
(1097, 5, 0x536920766f757320766f756c657a20767261696d656e74206a6f7565722c20616c6c657a20706c75732074f47420737572203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e6574223e6c65207369746520666f6e6374696f6e6e656c20447261676f6e20476f205365727665723c2f613e2e, 'Y', '2006-08-15 00:25:20'),
(1871, 17, 0x50727a656c6577, 'Y', '2013-08-20 22:41:25'),
(1872, 17, 0x5773706f6df3bf204447532066696e616e736f776f, 'Y', '2013-08-20 22:41:25'),
(1873, 17, 0x50727a656c6577, 'Y', '2013-08-20 22:41:25'),
(1875, 17, 0x50727a656c657779, 'Y', '2013-08-20 22:41:25'),
(1099, 5, 0x50617373657a20706172206c6120462e412e512e20706f757220656e207361766f697220706c75732e, 'Y', '2006-08-15 00:25:20'),
(1112, 5, 0x4e6f746520706f7572206c65732064e9627574616e7473266e6273703b3a206c6973657a206c6120462e412e512e20737572746f75742063652071756920636f6e6365726e65206c65206e69766561752064652064e96d61727261676520e02064e966696e69722064616e7320766f7472652070726f66696c2e, 'Y', '2006-08-15 00:48:34'),
(971, 19, '', 'N', '2006-12-29 00:39:59'),
(972, 19, '', 'N', '2006-12-29 00:39:59'),
(979, 19, '', 'Y', '2006-12-29 00:39:59'),
(980, 19, '', 'Y', '2006-12-29 00:39:59'),
(1009, 19, 0x3c6120687265663d22687474703a2f2f6c697374732e736f75726365666f7267652e6e65742f6c697374732f6c697374696e666f2f647261676f6e676f7365727665722d646576656c22207461726765743d225f626c616e6b223e647261676f6e676f7365727665722d646576656c20706f737461207a657272656e64616e3c2f613e202e204861727069646574752065746120706172746520686172747a65726120676f6e6269646174757461207a617564652e, 'N', '2006-08-15 00:44:37'),
(1016, 19, 0x5a65696e206172617520736f7274612065726162696c747a656e20646120447261676f6e207a65726269747a617269616e3f, 'Y', '2006-08-15 00:44:37'),
(1017, 19, 0x447261676f6e206e61677573696b69204a61706f6e69617220617261756574616e206f696e61727269747a656e2064612e2048616e6469636170206861727269656e206b6f6b61747a65612c207461756c6172656e2074616d61696e61206574612064656e626f7261206d7567616b20657a696b2e2048656d656e206c6568656e6574736974616b6f2061756b6572616b20657a206461746f7a20626174204a61706f6e6961722061726175206f66697a69616c656b696e2c206261696e61207478616e64616b61206a6f6c617374656b6f2065676f6b69616b20646972612e0d0a0d0a4c6162757262696c64757a2c20447261676f6e207a65726269747a617269616b0d0a3c756c3e3c6c693e5465727269746f72696f207a656e62616b6574612065726162696c747a656e2064752c2065726162696c747a61696c65656e206972697a70696465656e20617261626572616b6f613c2f6c693e0d0a3c6c693e457a2064752073757065726b6f206172617572696b3c2f6c693e0d0a3c6c693e42757275617a2062657374652065676974656120646562656b61747a656e2064752c206574613c2f6c693e0d0a3c6c693e48616e6469636170206861727269616e206e6f6e616869206a6172747a6561206261696d656e747a656e2064752e3c2f6c693e0d0a3c2f756c3e, 'N', '2006-08-15 00:44:37'),
(1106, 5, 0x4c69737465206465732072e9706f6e736573, 'Y', '2006-08-15 00:57:18'),
(1108, 5, 0x5265746f7572206175206d657373616765, 'Y', '2006-08-15 00:57:18'),
(1109, 5, 0x41706572e775, 'Y', '2013-02-04 16:52:57'),
(1110, 5, 0x436f72726573706f6e64616e74206e6f6e2074726f7576e9, 'Y', '2006-08-15 00:57:18'),
(1023, 17, 0x72756d75f1736b69, 'Y', '2013-08-20 22:11:05'),
(1120, 5, 0x70e972696f64657320737570706ce96d656e746169726573, 'Y', '2006-08-15 00:57:18'),
(1121, 5, 0x4d657373616765207072e963e964656e74, 'Y', '2006-08-15 00:57:18'),
(1122, 5, 0x4d657373616765732073756976616e7473, 'Y', '2006-08-15 00:57:18'),
(1124, 5, 0x4d6f692d6dea6d65, 'Y', '2006-08-15 00:57:27'),
(1102, 5, '', 'Y', '2011-10-26 12:06:49'),
(1103, 5, 0x556e6520626f6e6e65206261736520646520646f6e6ee96573206465207061727469652064652070726f66657373696f6e6e656c73, 'Y', '2006-08-15 01:02:26'),
(1104, 5, '', 'Y', '2011-10-26 12:06:49'),
(1105, 5, 0x556e2061727469636c6520686562646f6d6164616972652070617220526f622056616e205a65696a7374, 'Y', '2006-08-15 01:02:26'),
(1059, 5, 0x4d6f6e74726572, 'Y', '2006-08-15 01:09:36'),
(1126, 5, 0x436f72e965206475206e6f7264, 'Y', '2006-08-15 01:33:37'),
(1127, 5, 0x436f72e96520647520737564, 'Y', '2006-08-15 01:33:37'),
(1128, 5, 0x4d6f6e74e96ee967726f, 'Y', '2006-08-15 01:33:37'),
(1129, 5, 0x536572626965, 'Y', '2006-08-15 01:33:37'),
(1130, 5, 0x5465727265, 'Y', '2006-08-15 01:33:37'),
(635, 18, 0x5065726368e920616c63756e69207574656e7469206e6f6e20736f6e6f2070726573656e7469206e656c6c61204c69737461206465676c69207574656e74693f, 'Y', '2006-08-15 14:31:40'),
(636, 18, 0x5065722064656661756c7420447261676f6e206e6f6e206d6f7374726120676c69207574656e746920696e6174746976692e204327e8200d0a3c686f6d65206661712e7068703f726561643d74266361743d32303023456e7472793234363e66696c74726f3c2f686f6d653e20636865636b626f78206e656c6c27696e74657374617a696f6e652064656c6c6120746162656c6c612064656c6c6120636f6c6f6e6e61202241747469766974e022207065722063616d626961726520747261206d6f737472616c6520736f6c6f20676c69207574656e746920617474697669206f20747574746920676c69207574656e7469202865732e207574656e74692061747469766920656420696e617474697669292e, 'Y', '2010-04-03 15:07:42'),
(1060, 18, 0x4e6173636f6e6469, 'Y', '2006-08-15 14:32:55'),
(1125, 18, 0x4f7264696e61, 'Y', '2006-08-15 14:32:55'),
(1082, 18, 0x53706564697a696f6e652064656c6c612070617373776f7264, 'Y', '2006-08-15 14:36:51'),
(1096, 18, 0x42656e76656e75746f206e656c6c612076657273696f6e6520226469207376696c7570706f2220646920447261676f6e20676f20736572766572, 'N', '2006-08-15 14:36:51'),
(1099, 18, 0x50657220756c746572696f726920696e666f726d617a696f6e692c20636f6e73756c74617265206c65204641512028446f6d616e6465207269636f7272656e7469292e, 'Y', '2006-08-15 14:36:51'),
(1112, 18, 0x4e6f7461207065722069207072696e63697069616e74693a20636f6e73756c74617265206c65204641512028446f6d616e6465207269636f7272656e746929207075f220657373657265207574696c6520736f70726174747574746f20616c2066696e6520646920696d706f737461726520696c20677261646f20696e697a69616c65206e656c6c612070726f7072696120706167696e61207574656e7465, 'Y', '2006-08-15 14:36:51'),
(1024, 18, 0x506172746974612070617269, 'Y', '2006-08-15 14:41:31'),
(1076, 18, 0x4e6f74652070726976617465, 'Y', '2006-08-15 14:41:31'),
(1083, 18, 0x452720737461746f2072696368696573746f20696c20706f73697a696f6e616d656e746f207374616e646172642064656c6c65207069657472652064692068616e64696361702e, 'Y', '2006-08-15 14:41:31'),
(1084, 18, 0x506f73697a696f6e616d656e746f207374616e64617264, 'Y', '2006-08-15 14:41:31'),
(1085, 18, 0x5365676e61206c6520706965747265206d6f727465206520636c696363612022466174746f2220616c207465726d696e652064656c6c276f706572617a696f6e652e, 'Y', '2006-08-15 14:41:31'),
(1086, 18, 0x436174747572617465, 'Y', '2006-08-15 14:41:31'),
(1087, 18, 0x436f6d6d656e7469, 'Y', '2006-08-15 14:41:31'),
(1088, 18, 0x5363617269636120696c2066696c652073676620636f6d706c65746f206469207475747469206920636f6d6d656e7469, 'Y', '2006-08-15 14:41:31'),
(1089, 18, 0x50756e74656767696f, 'Y', '2006-08-15 14:41:31'),
(1090, 18, 0x56697375616c697a7a61206c61206d6f737361, 'Y', '2006-08-15 14:41:31'),
(1091, 18, 0x54656d706f207265736964756f, 'Y', '2006-08-15 14:41:31'),
(1092, 18, 0x5061727469746120756666696369616c65, 'Y', '2006-08-15 14:41:31'),
(1093, 18, 0x4d6f73747261206c65206e6f7465, 'Y', '2006-08-15 14:41:31'),
(1094, 18, 0x53616c7661206c65206e6f7465, 'Y', '2006-08-15 14:41:31'),
(1095, 18, 0x4e6173636f6e6469206c65206e6f7465, 'Y', '2006-08-15 14:41:31'),
(1111, 18, 0x4772616669636f2064656c206c6976656c6c6f, 'Y', '2006-08-15 14:41:31'),
(1435, 17, 0x4b6f6c6f72, 'Y', '2013-08-20 23:08:31'),
(3448, 11, 0x536a61626c6f6f6e206265776161726421, 'Y', '2013-01-11 16:20:05'),
(1106, 18, 0x456c656e636f2064656c6c6520726973706f737465, 'Y', '2006-08-15 14:44:58'),
(1108, 18, 0x546f726e6120616c206d657373616767696f, 'Y', '2006-08-15 14:44:58'),
(1109, 18, 0x416e74657072696d61, 'Y', '2006-08-15 14:44:58'),
(1110, 18, 0x44657374696e61746172696f206e6f6e20696e64697669647561746f, 'Y', '2006-08-15 14:44:58'),
(1018, 17, 0x73b36f7761636b69, 'Y', '2013-08-21 00:28:46'),
(1120, 18, 0x706572696f6469206578747261, 'Y', '2006-08-15 14:44:58'),
(1121, 18, 0x4d657373616767696f20707265636564656e7465, 'Y', '2006-08-15 14:44:58'),
(1122, 18, 0x4d657373616767692073756363657373697669, 'Y', '2006-08-15 14:44:58'),
(1124, 18, 0x4d652073746573736f, 'Y', '2006-08-15 14:44:58'),
(1067, 18, 0x4c696e677561206d61647265, 'Y', '2006-08-15 14:48:10'),
(1068, 18, 0x436f6d706574656e7a61206c696775697374696361, 'Y', '2006-08-15 14:48:10'),
(1069, 18, 0x416c20646920736f74746f, 'Y', '2006-08-15 14:48:10'),
(1073, 18, 0x4e756d6572617a696f6e652064656c6c65206d6f737365, 'Y', '2006-08-15 14:48:10'),
(1074, 18, 0x4e6f6e20e820706f73736962696c65207574696c697a7a6172652076616c6f726920616c20646920736f70726120646920313030, 'Y', '2006-08-15 14:48:10'),
(1077, 18, 0x5461766f6c6520706963636f6c65, 'Y', '2006-08-15 14:48:10'),
(1078, 18, 0x5461766f6c65206772616e6469206461, 'Y', '2006-08-15 14:48:10'),
(1079, 18, 0x506f73697a696f6e65, 'Y', '2006-08-15 14:48:10'),
(1080, 18, 0x416c74657a7a61, 'Y', '2006-08-15 14:48:10'),
(1081, 18, 0x4c61726768657a7a61, 'Y', '2006-08-15 14:48:10'),
(1113, 18, 0x5061727469746520756666696369616c69, 'Y', '2006-08-15 14:48:10'),
(1131, 18, 0x5370696163656e74652c20e8206e656365736172696f20646973706f72726520646920616c6d656e6f2025642067696f726e6920646920766163616e7a612070657220696e697a6961726520756e20706572696f646f20646920766163616e7a61, 'Y', '2006-08-15 14:48:10'),
(1103, 18, 0x556e20616d70696f2064617461626173652064692070617274697465207472612070726f66657373696f6e69737469, 'Y', '2006-08-15 14:49:34'),
(1104, 18, 0x496c2066617363696e6f2064656c20476f, 'Y', '2006-08-16 12:50:20'),
(1105, 18, 0x556e2061727469636f6c6f2073657474696d616e616c6520646920526f622056616e205a65696a73742e, 'Y', '2006-08-15 14:49:34'),
(1059, 18, 0x4d6f73747261, 'Y', '2006-08-15 14:52:19'),
(1044, 18, 0x517565737461206d6f73736120636f6e6475636520616420756e6120706f73697a696f6e652069727265676f6c6172652073756c6c61207461766f6c612e, 'Y', '2006-08-15 14:57:42'),
(1045, 18, 0x496c206c696d6974652064692074656d706f20e82074726f70706f20626173736f2c20696d706f737461726520616c6d656e6f2031206f72612e, 'Y', '2006-08-15 14:57:42'),
(1046, 18, 0x5370696163656e74652c206920636f6f6b69652064656c2062726f777365722063686520736920737461207574696c697a7a616e646f20736f6e6f206469736162696c69746174692e, 'Y', '2006-08-15 14:57:42'),
(1047, 18, 0x5370696163656e74652c2071756573746f207475726e6f20e8207061737361746f2e, 'Y', '2006-08-15 14:57:42'),
(1048, 18, 0x506167696e61206e6f6e2074726f766174612e20436f6e74617474617265206c27616d6d696e6973747261746f72652064692073697374656d6120656420696e666f726d61726c6f2064656c6c276f7261206e656c6c61207175616c65206c276572726f726520736920e8207665726966696361746f2c2061676769756e67656e646f206f676e6920616c74726120696e666f726d617a696f6e652063686520706f73736120657373657265206576656e7475616c6d656e7465207574696c65206164206964656e74696669636172652065207269736f6c7665726520696c2070726f626c656d612e, 'Y', '2006-08-15 14:57:42'),
(1049, 18, 0x4c612075736572696420636f6e7469656e652063617261747465726920696c6c65636974693a20736f6e6f207065726d6573736920736f6c6f20692063617261747465726920612d7a2c20412d5a2c20302d392065202d5f2b2c20656420696c207072696d6f2063617261747465726520646576652065737365726520756e61206c6574746572612e, 'Y', '2006-08-15 14:57:42'),
(1051, 18, 0x5370696163656e74652c20e820696d706f73736962696c6520696e646976696475617265206c61206c696e677561206f20696c2067727570706f206368652073692064657369646572612074726164757272652e20436f6e7461747461726520696c20737570706f72746f207465636e69636f2e, 'Y', '2006-08-15 14:57:42'),
(1053, 18, 0x51756573746f207574656e746520e8206769e020756e20616d6d696e6973747261746f72652e, 'Y', '2006-08-15 14:57:42'),
(767, 18, '', 'Y', '2012-08-22 20:48:45'),
(1126, 18, 0x436f7265612064656c206e6f7264, 'Y', '2007-05-01 07:23:11'),
(1127, 18, 0x436f7265612064656c20737564, 'Y', '2006-08-15 14:58:46'),
(1128, 18, '', 'Y', '2012-08-22 20:48:45'),
(1129, 18, '', 'Y', '2012-08-22 20:48:45'),
(1130, 18, 0x5465727261, 'Y', '2007-05-01 07:21:04'),
(1042, 19, 0x5a656c616e2062756b6174752064657a616b6574207361696f613f, 'Y', '2006-08-15 23:14:49'),
(1043, 19, 0x22497274656e22206c6f747572616e206567697a75206b6c696b2c2070616e7461696c6172656e20626568656b616c6465206574612065736b756d616e206461676f2e203330206567756e657a20657a20626164757a7520616b746962697461746572696b2c207a65726269747a617269616b206e6162696761747a61696c65616e20657a617272692064697a756e20636f6f6b69652d6120697261756e6769206567696e676f20647520657461207072616b74696b616e207a757265207361696f612062756b6174756b6f206461206572652e, 'Y', '2006-08-15 23:14:49'),
(1644, 17, 0x42b3ea646e612064617461, 'Y', '2013-08-20 22:36:25'),
(1737, 17, 0x6d696e7574, 'Y', '2013-08-20 23:23:04'),
(1842, 17, 0x506f6c6974796b61207072797761746e6fb6e6, 'Y', '2013-08-20 22:41:25'),
(1102, 18, 0x446174616261736520656420656e6369636c6f706564696120476f476f44, 'Y', '2006-08-16 12:50:02'),
(1050, 18, 0x5370696163656e74652c206e6f6e20e820737461746f20706f73736962696c6520696e646976696475617265207175616e746f2072696368696573746f2e, 'Y', '2006-08-16 12:51:30'),
(583, 18, 0x496e20636865206d6f646f20696c20636f6e74656767696f2064656c2074656d706f2046697363686572207669656e6520696e666c75656e7a61746f2064616c2074656d706f206469207269706f736f206e6f747475726e6f3f, 'Y', '2006-08-16 13:09:18'),
(584, 18, 0x536920636f6e73696465726920696c2073656775656e7465206573656d70696f3a0d0a536920646573696465726120656666657474756172652033206d6f73736520616c6c612073657474696d616e612c20656420616c20636f6e74656d706f2073692064657369646572612063686520696c2074656d706f206e6f6e2073636f727261206e65692066696e652073657474696d616e612e0d0a4369f22064e0206c756f676f20616c2073656775656e74652063616c636f6c6f3a202837202d2032292067696f726e69202a20283234202d2039206469207269706f736f206e6f747475726e6529206f7265202f2033206d6f737365203d203235206f726520657874726120706572206d6f7373612e, 'Y', '2006-08-16 13:09:18'),
(588, 18, 0x5175616e646f20696c20636f6e7461746f726520646920756e61207061727469746120696e646963612063686520696c2074656d706f207265736964756f20e820646920332067696f726e692c206369f2207369676e69666963612063686520696c2074656d706f203c6e6f77723e7265616c6d656e7465206120646973706f73697a696f6e6520e8203c2f6e6f77723e203c6e6f77723e33202a202832342d39293c2f6e6f77723e203d203c6e6f77723e3435206f72653c2f6e6f77723e20287175656c6c652064656c207269706f736f206e6f747475726e6f20736f6e6f206769e0207374617465206573636c757365292e0d0a0d0a5175616e646f20696c20636f6e7461746f726520646920756e61207061727469746120696e646963612063686520696c2074656d706f207265736964756f20e82070617269206120322067696f726e692065203134206f72652c206369f2207369676e69666963612063686520203c6e6f77723e696c2074656d706f207265616c6d656e7465206120646973706f73697a696f6e6520e8203c2f6e6f77723e203c6e6f77723e32202a202832342d3929202b2031343c2f6e6f77723e203d203c6e6f77723e3434206f72653c2f6e6f77723e20287175656c6c652064656c207269706f736f206e6f747475726e6f20736f6e6f206769e0207374617465206573636c757365292e, 'Y', '2006-08-16 13:09:18');
INSERT INTO `Translations` (`Original_ID`, `Language_ID`, `Text`, `Translated`, `Updated`) VALUES
(606, 18, 0x5261636368697564656e646f20696c20746573746f20747261206d61726361746f726920266c743b636f6d6d656e742667743b206520266c743b2f636f6d6d656e742667743b202e200d0a0d0a3c693e4573656d70696f3a3c2f693e0d0a496e20756e612064656c6c65207475652070617274697465206174746976653a200d0a0d0a312e20496e736572697265206e656c2070726f7072696f2063616d706f206d657373616767696f20227375626d6974206d6f76652055524c223a200d0a0d0a736f6c6f20746573746f2c207065726661766f72652069676e6f72610d0a266c743b636f6d6d656e742667743b0d0a696c20746573746f2061707061726972e0206e656c2066696c65207367660d0a266c743b2f636f6d6d656e742667743b0d0a696c20746573746f206e6f6e2061707061726972e0206e656c2066696c65207367660d0a0d0a322e20496e7669617265206c61206d6f7373612e200d0a33612e2053636172696361726520696c2066696c65205347462e0d0a33622e2053636172696361726520696c2066696c652053474620636f6e207475747469206920636f6d6d656e74692e200d0a342e2041707269726520696c2066696c652053474620287472616d69746520756e20636c69656e7420476f206f20756e20656469746f7220646920746573746f292e200d0a0d0a352e20496c20636f6d6d656e746f2064656c6c61206d6f737361202833612920736172e03a200d0a266c743b6e6f6d6520737520447261676f6e2667743b3a20696c20746573746f2061707061726972e0206e656c2066696c65207367660d0a0d0a496c20636f6d6d656e746f2064656c6c61206d6f737361202833622920636f6e7465727261e020747574746f20696c20746573746f2c20636f6d65202253636172696361726520696c2066696c652053474620636f6e207475747469206920636f6d6d656e74692220696e636c75736f206c27696e7465726f206d657373616767696f20646920746573746f206e656c205347462e0d0a0d0a362e2053652073692064657369646572612063686520696c20636f6d6d656e746f20736961206c6567676962696c6520736f6c6f20616c207465726d696e652064656c6c6120706172746974612c207574696c697a7a61726520266c743b68696464656e2667743b20266c743b2f68696464656e2667743b20696e766563652063686520266c743b636f6d6d656e742667743b20266c743b2f636f6d6d656e742667743b204e6f74612062656e653a206920636f6d6d656e7469206e6173636f73746920696e2074616c206d6f646f20736172616e6e6f207669736962696c69203c753e736f6c6f3c2f753e2064612074652e0d0a0d0a49206d61726361746f726920266c743b636f6d6d656e742667743b20266c743b2f636f6d6d656e742667743b206520266c743b68696464656e2667743b20266c743b2f68696464656e2667743b20706f73736f6e6f20657373657265206162627261766961746920696e20266c743b632667743b20266c743b2f632667743b206520266c743b682667743b20266c743b2f682667743b2e0d0a0d0a496c20746573746f204e4f524d414c45202863696fe8206e6f6e2072616363686975736f20747261206d61726361746f726920266c743b636f6d6d656e742667743b206520266c743b2f636f6d6d656e742667743b2920646920756e612064657465726d696e617461207061727469746120e8207669736962696c6520736f6c74616e746f2061692072656c61746976692067696f6361746f72692e20496c20746573746f206e6f6e20e8207669736962696c652061206e657373756e20616c74726f2e2051756573746f2070726f7465676765206c612074756120707269766163792065206e6f6e207669656e6520696e73657269746f206e656c2066696c65205347462e20416e6e6f746174692063686520696c20746573746f206e6f6e20696e636c75736f206e6569206d61726361746f726920266c743b636f6d6d656e742667743b206520266c743b2f636f6d6d656e742667743b20e820616e636865207669736962696c652061676c69206f737365727661746f72692064656c6c612074756120706172746974612e, 'N', '2010-10-26 16:51:23'),
(629, 18, 0x436f73612073746120616420696e646963617265206c61202270657263656e7475616c652220646920756e207574656e74653f, 'Y', '2006-08-16 13:14:59'),
(630, 18, 0x496e6469636120696c20726170706f72746f20747261206c6520766974746f7269652065206c652073636f6e66697474652064656c2067696f6361746f72652c20696e666f726d617a696f6e65207574696c652077686963682063616e2070726f7669646520736f6d65206164646974696f6e616c20696e666f726d6174696f6e2061626f7574206869732063757272656e7420726174696e672e0d0a0d0a5768656e206120706c617965722068617320736f6d652066696e69736865642072617465642067616d65732c20612076616c7565206f662061726f756e64203530202520696e6469636174657320746861742069742069732070726f6261626c7920616e2065737461626c697368656420726174696e672e20412076616c75652067726561746572207468616e203735202520696e646963617465732c2074686174207468697320726174696e672069732070726f6261626c7920746f6f206c6f772c207768696c652062656c6f772032352025206d65616e732c20746861742069742069732070726f6261626c7920746f6f20686967682e, 'Y', '2006-08-16 13:14:59'),
(637, 18, 0x43686520636f7327e820696c2074656d706f207072696e636970616c653f, 'Y', '2006-08-16 13:25:46'),
(638, 18, 0x556e206c696d69746520696e697a69616c652064692074656d706f20676172616e7469746f20706572206369617363756e6f2067696f6361746f72652e200d0a0d0a4c612070617274697461203c623e6e6f6e3c2f623e2066696e6973636520616c207465726d696e652064656c2074656d706f207072696e636970616c652c206d6120636f6e74696e7561206e656c2074656d706f20737570706c656d656e746172652028766564657265206e656c207365677569746f292e, 'Y', '2006-08-16 13:25:46'),
(639, 18, 0x43686920636f737469747569736365206c6120636f6d756e6974e0206368652063757261206c612067657374696f6e6520646920447261676f6e3f, 'Y', '2006-08-16 13:30:02'),
(640, 18, 0x447261676f6e20476f2053657276657220284447532920e820756e2070726f676574746f20636f6c6c65747469766f206e6f6e20636f6d6d65726369616c65206564206f70656e20736f757263652c2070656e7361746f20646120636f6c6f726f20652070657220636f6c6f726f2061206375692070696163652067696f63617265206120476f20696e206d6f64616c6974e020626173617461207375207475726e692e2044475320e820737461746f207265616c697a7a61746f206461203c6120687265663d222f75736572696e666f2e7068703f7569643d3222207461726765743d225f626c616e6b223e4572696b3c2f613e2065207669656e65203c6120687265663d22687474703a2f2f736f75726365666f7267652e6e65742f70726f6a6563742f6d656d6265726c6973742e7068703f67726f75705f69643d323939333322207461726765743d225f626c616e6b223e6d616e7574656e75746f3c2f613e206461203c6120687265663d222f75736572696e666f2e7068703f7569643d3222207461726765743d225f626c616e6b223e4572696b3c2f613e2065203c6120687265663d222f75736572696e666f2e7068703f7569643d3130353622207461726765743d225f626c616e6b223e526f643c2f613e2e204c6520646f6d616e6465207269636f7272656e746920284641512920736f6e6f206261736174652073756c20636f6e7472696275746f206465676c69207574656e746920652076656e676f6e6f20637572617465206461203c6120687265663d222f75736572696e666f2e7068703f7569643d393322207461726765743d5f626c616e6b3e426af8726e3c2f613e2e2044475320e820747261646f74746f20696e2064697665727365206c696e6775652e204c27656c656e636f2064656920747261647574746f726920e82070726573656e746520616c6c61203c6120687265663d222f70656f706c652e70687022207461726765743d225f626c616e6b223e706167696e61203c2f613e2065206e656c203c4120485245463d222f70686f72756d2f6c6973742e7068703f663d37223e666f72756d2064656c6c652074726164757a696f6e693c2f413e2e, 'N', '2006-08-16 13:30:02'),
(643, 18, 0x5175616c69207461672048544d4c20e820706f73736962696c65207574696c697a7a61726520737520447261676f6e3f, 'Y', '2010-03-12 18:15:17'),
(644, 18, 0x3c656d3e51756573746120e820756e61206c69737461206469207461672048544d4c2063686520706f73736f6e6f2065737365726520757361746920737520447261676f6e2c20636f6e20676c69206573656d70692e204461726520756e61206465736372697a696f6e6520636f6d706c657461206465692076617269207461672048544d4c206e6f6e207269656e747261206e656c2063616d706f206469206170706c6963617a696f6e652064656c6c65204641512e20506572207265666572656e7a652073756c6c2748544d4c2c2076697369746120696c203c6120687265663d22687474703a2f2f7777772e77332e6f72672f223e436f6e736f727a696f20576f726c642057696465205765623c2f613e2e3c2f656d3e0d0a0d0a3c636f64653e3c623e51756573746f20e820756e20746573746f20696e2067726173736574746f3c2f623e3c2f636f64653e0d0a3c623e51756573746f20e820756e20746573746f20696e2067726173736574746f3c2f623e0d0a0d0a3c636f64653e3c753e51756573746f20e820756e20746573746f20736f74746f6c696e6561746f3c2f753e3c2f636f64653e0d0a3c753e51756573746f20e820756e20746573746f20736f74746f6c696e6561746f3c2f753e0d0a0d0a3c636f64653e3c693e51756573746f20e820756e20746573746f20696e20636f727369766f3c2f693e3c2f636f64653e0d0a3c693e51756573746f20e820756e20746573746f20696e20636f727369766f3c2f693e0d0a0d0a3c636f64653e3c656d3e5468697320697320656d70686173697a656420746578743c2f656d3e3c2f636f64653e0d0a3c656d3e5468697320697320656d70686173697a656420746578743c2f656d3e0d0a0d0a3c636f64653e3c7374726f6e673e51756573746f20e820756e20746573746f206d61726361746f3c2f7374726f6e673e3c2f636f64653e0d0a3c7374726f6e673e51756573746f20e820756e20746573746f206d61726361746f3c2f7374726f6e673e0d0a0d0a3c636f64653e3c74743e51756573746120e820756e612073696e676f6c61207269676120646920746573746f20696e206361726174746572692061206c61726768657a7a612066697373613c2f74743e3c2f636f64653e0d0a3c74743e51756573746120e820756e612073696e676f6c61207269676120646920746573746f20696e206361726174746572692061206c61726768657a7a612066697373613c2f74743e0d0a0d0a3c636f64653e3c7072653e51756573746520736f6e6f207069f92072696768650d0a646920746573746f20707265666f726d6174746174650d0a696e206361726174746572692061206c61726768657a7a612066697373612e3c2f7072653e3c2f636f64653e0d0a3c7072653e51756573746520736f6e6f207069f92072696768650d0a646920746573746f20707265666f726d6174746174650d0a696e206361726174746572692061206c61726768657a7a612066697373612e3c2f7072653e0d0a0d0a3c636f64653e0d0a3c666f6e7420636f6c6f723d22726564223e51756573746f20e820756e20746573746f20726f73736f3c2f666f6e743e0d0a3c666f6e7420636f6c6f723d226f72616e6765223e51756573746f20e820756e20746573746f206172616e63696f6e653c2f666f6e743e0d0a3c666f6e7420636f6c6f723d2279656c6c6f77223e51756573746f20e820756e20746573746f206769616c6c6f3c2f666f6e743e0d0a3c666f6e7420636f6c6f723d22677265656e223e51756573746f20e820756e20746573746f2076657264653c2f666f6e743e0d0a3c666f6e7420636f6c6f723d22626c7565223e51756573746f20e820756e20746573746f20626c753c2f666f6e743e0d0a3c666f6e7420636f6c6f723d22696e6469676f223e51756573746f20e820756e20746573746f20696e6461636f3c2f666f6e743e0d0a3c666f6e7420636f6c6f723d2276696f6c6574223e51756573746f20e820756e20746573746f2076696f6c613c2f666f6e743e0d0a3c666f6e7420636f6c6f723d227768697465223e51756573746f20e820756e20746573746f206269616e636f3c2f666f6e743e0d0a3c666f6e7420636f6c6f723d22626c61636b223e51756573746f20e820756e20746573746f206e65726f3c2f666f6e743e0d0a3c2f636f64653e0d0a3c666f6e7420636f6c6f723d22726564223e51756573746f20e820756e20746573746f20726f73736f3c2f666f6e743e0d0a3c666f6e7420636f6c6f723d226f72616e6765223e51756573746f20e820756e20746573746f206172616e63696f6e653c2f666f6e743e0d0a3c666f6e7420636f6c6f723d2279656c6c6f77223e51756573746f20e820756e20746573746f206769616c6c6f3c2f666f6e743e0d0a3c666f6e7420636f6c6f723d22677265656e223e51756573746f20e820756e20746573746f2076657264653c2f666f6e743e0d0a3c666f6e7420636f6c6f723d22626c7565223e51756573746f20e820756e20746573746f20626c753c2f666f6e743e0d0a3c666f6e7420636f6c6f723d22696e6469676f223e51756573746f20e820756e20746573746f20696e6461636f3c2f666f6e743e0d0a3c666f6e7420636f6c6f723d2276696f6c6574223e51756573746f20e820756e20746573746f2076696f6c613c2f666f6e743e0d0a3c666f6e7420636f6c6f723d227768697465223e51756573746f20e820756e20746573746f206269616e636f3c2f666f6e743e0d0a3c666f6e7420636f6c6f723d22626c61636b223e51756573746f20e820756e20746573746f206e65726f3c2f666f6e743e0d0a0d0a3c636f64653e506172656e746573693a20266c743b202667743b3c2f636f64653e0d0a506172656e746573693a20266c743b202667743b0d0a0d0a3c636f64653e50657263656e74756c653a2026616d703b3c2f636f64653e0d0a50657263656e74756c653a2026616d703b0d0a0d0a3c636f64653e5370617a696f206e6f6e2d696e746572726f74746f3a203e266e6273703b3c3c2f636f64653e0d0a5370617a696f206e6f6e2d696e746572726f74746f3a202667743b266e6273703b266c743b0d0a0d0a3c636f64653e0d0a3c756c3e0d0a3c6c693e51756573746120e820756e61206c69737461206e6f6e206f7264696e6174613c2f6c693e0d0a3c6c693e51756573746120e820756e61206c69737461206e6f6e206f7264696e6174613c2f6c693e0d0a3c6c693e51756573746120e820756e61206c69737461206e6f6e206f7264696e6174613c2f6c693e0d0a3c6c693e51756573746120e820756e61206c69737461206e6f6e206f7264696e6174613c2f6c693e0d0a3c6c693e51756573746120e820756e61206c69737461206e6f6e206f7264696e6174613c2f6c693e0d0a3c2f756c3e0d0a3c2f636f64653e0d0a3c756c3e0d0a3c6c693e51756573746120e820756e61206c69737461206e6f6e206f7264696e6174613c2f6c693e0d0a3c6c693e51756573746120e820756e61206c69737461206e6f6e206f7264696e6174613c2f6c693e0d0a3c6c693e51756573746120e820756e61206c69737461206e6f6e206f7264696e6174613c2f6c693e0d0a3c6c693e51756573746120e820756e61206c69737461206e6f6e206f7264696e6174613c2f6c693e0d0a3c6c693e51756573746120e820756e61206c69737461206e6f6e206f7264696e6174613c2f6c693e0d0a3c2f756c3e0d0a0d0a3c636f64653e0d0a3c6f6c3e0d0a3c6c693e51756573746120e820756e61206c69737461206f7264696e6174613c2f6c693e0d0a3c6c693e51756573746120e820756e61206c69737461206f7264696e6174613c2f6c693e0d0a3c6c693e51756573746120e820756e61206c69737461206f7264696e6174613c2f6c693e0d0a3c6c693e51756573746120e820756e61206c69737461206f7264696e6174613c2f6c693e0d0a3c6c693e51756573746120e820756e61206c69737461206f7264696e6174613c2f6c693e0d0a3c2f6f6c3e0d0a3c2f636f64653e0d0a3c6f6c3e0d0a3c6c693e51756573746120e820756e61206c69737461206f7264696e6174613c2f6c693e0d0a3c6c693e51756573746120e820756e61206c69737461206f7264696e6174613c2f6c693e0d0a3c6c693e51756573746120e820756e61206c69737461206f7264696e6174613c2f6c693e0d0a3c6c693e51756573746120e820756e61206c69737461206f7264696e6174613c2f6c693e0d0a3c6c693e51756573746120e820756e61206c69737461206f7264696e6174613c2f6c693e0d0a3c2f6f6c3e0d0a0d0a3c636f64653e51756573746f20e820756e206c696e6b206f7264696e6172696f3a203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e6574223e447261676f6e20476f205365727665723c2f613e3c2f636f64653e0d0a51756573746f20e820756e206c696e6b206f7264696e6172696f3a203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e6574223e447261676f6e20476f205365727665723c2f613e, 'N', '2010-03-25 00:16:58'),
(655, 18, '', 'Y', '2012-08-22 20:48:45'),
(656, 18, 0x496c2070756e746f2063656e7472616c652064656c6c61207461766f6c612e20537520756e61207461766f6c612031397831392c20e820696c2070756e746f2031302d31302e2054656e67656e20696e2067696170706f6e657365207369676e696669636120226f726967696e652064656c20706172616469736f222e, 'Y', '2006-08-16 13:36:16'),
(661, 18, 0x43686520736920696e74656e6465207065722068616e64696361703f, 'Y', '2006-08-16 13:43:02'),
(662, 18, 0x4475652067696f6361746f7269206176656e7469206c6976656c6c6f20646966666572656e746520706f73736f6e6f20286469206e6f726d6120646f767265626265726f29206163636f7264617273692070657220636f6e63656465726520616c2067696f6361746f7265207069f9206465626f6c65206469202268616e6469636170222061747465206120636f6d70656e73617265206c6120646966666572656e7a612e2054616c69207069657472652064692068616e64696361702c20636f6e636573736520616c206e65726f2c2072656e646f6e6f206c612070617274697461207069f920696e746572657373616e746520652c20736f70726174747574746f2c2064616e6e6f20616420656e7472616d626920692067696f6361746f726920756775616c6920706f73736962696c6974e02064692076696e636572652e20496e2071756573746f206d6f646f2c206c6120706172746974612076657272f22076696e746120646120636869206c27617672e02067696f63617461206d65676c696f2c2065206e6f6e2064612063686920657261207069f920666f72746520696e2070617274656e7a612e0d0a0d0a537520646920756e20676f62616e20313978313920696c206e756d65726f206469207069657472652064692068616e646963617020636f72726973706e646520616c6c6120646966666572656e7a61207472612069206c6976656c6c692064656920ec6475652067696f6361746f72692e205375207461766f6c652064692064696d656e73696f6e6920646976657273652c20447261676f6e20726970726f706f727a696f6e61206c2768616e6469636170206175746f6d61746963616d656e74652e0d0a0d0a5065722074726164697a696f6e652c206c65207069657472652064692068616e64696361702076656e676f6e6f207069617a7a617465207375692070756e7469206469203c4120485245463d226661712e7068703f726561643d74266361743d3323456e7472793839223e686f7368693c2f413e2c20696e20666f726d6520766172696162696c692061207365636f6e64612064656c206e756d65726f206469207069657472652e2054757474617669612c20447261676f6e20636f6e73656e746520646920706f73697a696f6e61726c65206c69626572616d656e74652e0d0a0d0a5369206e6f74692063686520736f6e6f206d6f6c746920692067696f6361746f7269206368652064657369646572616e6f20636865206c65207069657472652064692068616e64696361702076656e67616e6f207069617a7a617465207365636f6e646f20692064657474616d692064656c6c612074726164697a696f6e652e205065722071756573746f206d6f7469766f2c20636f6e7669656e65206163636f72646172736920696e206d657269746f20636f6e206c276176766572736172696f207072696d6120646920696e697a6961726520696c20706f73697a696f6e616d656e746f2e, 'Y', '2006-08-16 13:43:02'),
(663, 18, 0x5175616c20e8206c6120646966666572656e7a61207472612068616e646963617020636f6e76656e7a696f6e616c652065642068616e646963617020636f72726574746f3f, 'Y', '2006-08-16 13:46:25'),
(664, 18, 0x4c273c693e68616e646963617020636f6e76656e7a696f6e616c653c2f693e207574696c697a7a61206c6120646966666572656e7a61206469206c6976656c6c6f202865206c61206d69737572612064656c6c61207461766f6c612064692067696f636f292070657220696d706f7374617265206c2768616e64696361702e20496c203c6120687265663d226661712e7068703f726561643d74266361743d3323456e74727939223e6b6f6d693c2f613e207669656e65206175746f6d61746963616d656e746520696d706f737461746f206120302e352070657220706172746974652061642068616e64696361702065206120362e3520706572207061727469746520706172692e200d0a0d0a4c273c693e68616e646963617020636f72726574746f3c2f693e207574696c697a7a6120696e766563652070657220696c206b6f6d6920756e20696e74657276616c6c6f207069f9207365676e6d656e7461746f20282e2e2e2c20312e352c20322e302c20322e352c202e2e2e292c207065722062696c616e6369617265206e656c6c61206d616e69657261206d69676c696f7265206c6120646966666572656e7a61207472612069206c6976656c6c69206465692067696f6361746f72692e, 'Y', '2006-08-16 13:46:25'),
(679, 18, 0x4c612072696d612070617274652064656c2070726f7072696f206c6976656c6c6f20696e64696361206c2761747475616c6520677261646f203c6120687265663d222f6661712e7068703f726561643d74266361743d3323456e7472793339223e64616e3c2f613e206f203c6120687265663d222f6661712e7068703f726561643d74266361743d3323456e7472793338223e6b79753c2f613e2e204c61207365636f6e6461207061727465202874726120706172656e746573692920696e64696361206c6120666f727a612072656c61746976612064692074616c6520677261646f2e0d0a0d0a506572206573656d70696f2c202231206b797520282b343025292220636f727269706f6e64652061642031206b797520666f7274652028666f727465207175617369207175616e746f20756e206465626f6c6520312064616e292e, 'N', '2006-08-16 13:49:45'),
(685, 18, 0x496e64696361206c6120766963696e616e7a612064656c206c6976656c6c206f64656c6c277574656e746520616c6c6120646566696e697a696f6e6520646569206772616469206520646569206c6976656c6c6920646920447261676f6e2e200d0a0d0a5175616e646f20756e206e756f766f207574656e746520696d706f73746120696c2070726f7072696f20677261646f20696e697a69616c652c20447261676f6e206e6f6e20e820616e636f726120696e20677261646f2064692073746162696c69726520736520696c2076616c6f726520696e697a69616c6520636f6d626163696120636f6e206c6520646566696e697a696f6e6920646920447261676f6e2e205661207072656d6573736f2063686520756e6120646566696e697a696f6e6520756e6976657273616c6d656e74652076616c696461206465692067726164692064656c20476f206e6f6e206573697374652e20447261676f6e2063657263612064692073746162696c697265206e656c206d69676c696f726520646569206d6f6469206465692076616c6f72692061666669646162696c69206520636f6e66726f6e746162696c69207065722069206c6976656c6c692e204c6f2073666f6e646f20626c75206e656c206772616669636f2064656c206c6976656c6c6f206465676c69207574656e7469206e6f6e2065737072696d6520616c74726f206368652071756573746120696e63657274657a7a612e, 'N', '2006-08-16 13:54:34'),
(688, 18, 0x436f7327e820756e6120646f7070696120706172746974613f, 'Y', '2006-08-16 13:56:47'),
(689, 18, 0x436f6e203c693e646f7070696120706172746974613c2f693e20e820706f73736962696c6520696e697a69617265203c693e6475653c2f693e206e756f7665207061727469746520636f6e74726f206c6f2073746573736f206176766572736172696f2e204369617363756e6f2067696f63686572e020636f6e20696c206e65726f20696e20756e612070617274697461206520636f6e20696c206269616e636f206e656c6c27616c7472612e20456e7472616d6265206c65207061727469746520736172616e6e6f2067696f636174652073656e7a6120616c63756e203c6120687265663d226661712e7068703f726561643d74266361743d33353723456e7472793937223e68616e64696361703c2f613e2e, 'N', '2006-08-16 13:56:47'),
(700, 18, '', 'Y', '2012-08-22 20:48:45'),
(701, 18, 0x556e61206d6f7373612067696f6361746120696e20646961676f6e616c6520616c207465726d696e6520646920756e6120706965747261206f20646920756e6120636174656e6120646920706965747265206176657273617269612e, 'Y', '2010-10-26 16:05:24'),
(712, 18, 0x436f6d652066756e7a696f6e6120696c2073697374656d6120636f6e20696c207175616c6520447261676f6e20617474726962756973636520696c20677261646f3f, 'Y', '2010-05-21 20:00:56'),
(713, 18, 0x3c493e4d6f6c746520706572736f6e6520636f6d706574656e746920736920736f6e6f2063696d656e74617465206e656c2072697363726976657265207069f920766f6c7465206c6120726973706f7374612061207175657374612064696f6d656e6461207269636f7272656e74652e2051756573746f20e8206f767669616d656e746520756e2067726f73736f2076616e74616767696f20696e207175616e746f203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f75736572696e666f2e7068703f7569643d3933223e71756573746f206175746f72653c2f613e2028636f6d6520676c6920e820737461746f20666174746f206e6f7461726529206e6f6e207061726c6120696e676c65736520636f6d65206c696e677561206d616472652c206520747574746920692073756f6920707265636564656e74692074656e74617469766920646920636f6d70696c617265206c6120726973706f73746120736f6e6f2073746174692073697374656d61746963616d656e7465206166666f73736174692e0d0a0d0a536920726573746120696e2061747465736120646920756e6120726973706f73746120646566696e69746976612e2e2e3c2f493e, 'N', '2006-08-16 14:01:24'),
(748, 18, 0xc820706f73736962696c65206f7267616e697a7a6172652064656920746f726e65693f, 'Y', '2006-08-16 14:03:17'),
(749, 18, 0x43657274616d656e74652e20506572206c6120707562626c69636974e02064656920746f726e65692c207574696c697a7a61726520286f20636f6e73756c746172652920696c203c6120687265663d222f70686f72756d2f6c6973742e7068703f663d34223e666f72756d2064692064697363757373696f6e6520646920447261676f6e3c2f613e2e20447261676f6e20737570706f7274612071756573746520696e697a69617469766520696e736572656e646f20636f6c6c6567616d656e746920616c6c6520646f6d616e6465207269636f7272656e74692028464151292e, 'Y', '2006-08-16 14:03:17'),
(751, 18, 0x436f6d652073692072696d756f766f6e6f206c6520706965747265206d6f72746520616c207465726d696e6520646920756e6120706172746974613f, 'Y', '2006-08-16 14:08:31'),
(752, 18, 0x446f706f2063686520656e7274616d626920692067696f6361746f72692068616e6e6f207061737361746f2c206c6520706965747265206d6f7274652076616e6e6f2072696d6f737365206d616e75616c6d656e74652e20556e20636c696320737520756e6120706965747261206e652063616d626961206c6f20737461746f20646120766976612061206d6f7274612e204c27617070617274656e656e7a6120646920756e207465727269746f72696f20616420756e2064657465726d696e61746f2067696f6361746f7265207669656e652076697375616c697a7a617461207472616d697465206465692071756164726174696e69206269616e636869206f206e6572692e0d0a0d0a456e7472616d626920692067696f6361746f7269206465766f6e6f2074726f76617273692064276163636f72646f207375207175616c6920706965747265207369616e6f206d6f72746520652073756c6c27617070617274656e656e7a6120646920756e20636572746f207465727269746f72696f206120756e6f20646569206475652e205175616e646f20736920e82064276163636f72646f2c206661726520636c69632073756c20636f6c6c6567616d656e746f2022466174746f222070726573656e746520616c20646920736f74746f2064656c6c61207461766f6c612e0d0a0d0a536520756e2067696f6361746f7265206e6f6e20e82064276163636f72646f2c207075f2206661726520636c69632073756c20636f6c6c6567616d656e746f202252697072656e646920696c2067696f636f2220616c2066696e6520646920646563696465726520696e206d657269746f20616420756e6120706f73697a696f6e65206475626269612c2067696f63616e646f20756e61206f207069f9206d6f7373652e20696e20616c7465726e61746976612c206c612064697363757373696f656e2074726120692067696f6361746f7269207075f22065737365726520616666726f6e74617461207472616d697465206c27696e76696f206469206d65737361676769206f206e656c203c6120687265663d2270686f72756d2f6c6973742e7068703f663d35223e666f72756d2064692064697363757373696f6e653c2f613e2e, 'Y', '2006-08-16 14:08:31'),
(753, 18, 0x436f736120696e646963616e6f20692071756164726174696e6920726f73736920616c207465726d696e652064656c6c6120706172746974613f, 'Y', '2006-08-16 14:14:32'),
(754, 18, 0x492071756164726174696e6920726f73736920696e646963616e6f207370617a696f2063697263612069207175616c6920447261676f6e206e6f6e20e820696e20677261646f2064692073746162696c69726520736520617070617274656e67616e6f20616c6c27756e6f206f20616c6c27616c74726f206465692067696f6361746f726920286f2061206e657373756e6f292e2049206d6f7469766920706f73736f6e6f206573736572653a0d0a3c756c3e0d0a3c6c693e416c6c27696e7465726e6f20646920756e207465727269746f72696f20736f6e6f2070726573656e74692070696574726520617676657273617269206d6f72746520636865206e6f6e20736f6e6f20737461746520616e636f7261206d61726361746520636f6d652074616c692e20496e2074616c206361736f2c206d617263617265206c6520706965747265206d6f7274652e3c2f6c693e0d0a0d0a3c6c693e4920626f7264692064656c206269616e636f206f2064656c206e65726f206e6f6e20736f6e6f207374617469206368697573692e20506572206465676c6920756d616e6920e8206f7676696f2c206d612070657220447261676f6e20e8206469666669636f6c6520646563696465726520696e206d657269746f2e20496e2074616c206361736f2c206661726520636c69632073756c20636f6c6c6567616d656e746f202252697072656e646920696c2067696f636f2220616c20646920736f74746f2064656c6c61207461766f6c612065642065666665747475617265206c65206d6f7373652064692063686975737572612e3c2f6c693e0d0a0d0a3c6c693e53692074726174746120646920706f73697a696f6e69206469203c6120687265663d226661712e7068703f726561643d74266361743d3323456e747279313031223e73656b693c2f613e2e204661726520636c69632073752071756573746520636173656c6c65207065722072656e6465726c65203c6120687265663d226661712e7068703f726561643d74266361743d3323456e747279313135223e64616d653c2f613e20696e2073656b69206d6f6b752e20447261676f6e2076697375616c697a7a6572e020616c6c6f7261206465692071756164726174696e692076657264692e205175657374612063617261747465726973746963207065726d6574746520646920636f6e7665727469726520756e2064756262696f2073656b69206e656c20726973756c7461746f20636f72726574746f2e2049206465747461676c6920736f6e6f20737069656761746920696e203c6120687265663d2270686f72756d2f726561642e7068703f663d3226693d38343326743d383433223e71756573746120706167696e613c2f613e2e3c2f6c693e0d0a3c2f756c3e, 'N', '2006-08-16 14:14:32'),
(785, 18, 0x43616d626f676961, 'Y', '2006-08-16 14:16:16'),
(789, 18, 0x5265707562626c6963612043656e74726166726963616e61, 'Y', '2006-08-16 14:16:16'),
(804, 18, 0x476962757469, 'Y', '2006-08-16 14:16:16'),
(805, 18, '', 'Y', '2012-08-22 20:48:45'),
(815, 18, '', 'Y', '2012-08-22 20:48:45'),
(853, 18, 0x4c6962616e6f, 'Y', '2006-08-16 14:16:16'),
(861, 18, '', 'Y', '2012-08-22 20:48:45'),
(868, 18, 0x49736f6c65204d61727368616c6c, 'Y', '2006-08-16 14:16:16'),
(876, 18, 0x4d61726f63636f, 'Y', '2006-08-16 14:16:16'),
(905, 18, 0x53616e7461204c75636961, 'Y', '2006-08-16 14:16:16'),
(908, 18, '', 'Y', '2012-08-22 20:48:45'),
(918, 18, 0x49736f6c652053616c6f6d6f6e65, 'Y', '2006-08-16 14:16:16'),
(920, 18, 0x53756420416672696361, 'Y', '2006-08-16 14:16:16'),
(762, 18, '', 'N', '2012-08-22 20:48:45'),
(769, 18, '', 'Y', '2012-08-22 20:48:45'),
(774, 18, '', 'Y', '2012-08-22 20:48:45'),
(794, 18, '', 'Y', '2012-08-22 20:48:45'),
(795, 18, '', 'Y', '2012-08-22 20:48:45'),
(796, 18, '', 'Y', '2012-08-22 20:48:45'),
(819, 18, '', 'Y', '2012-08-22 20:48:45'),
(824, 18, '', 'Y', '2012-08-22 20:48:45'),
(846, 18, '', 'Y', '2012-08-22 20:48:45'),
(850, 18, '', 'Y', '2012-08-22 20:48:45'),
(852, 18, '', 'Y', '2012-08-22 20:48:45'),
(878, 18, '', 'Y', '2012-08-22 20:48:45'),
(880, 18, '', 'Y', '2012-08-22 20:48:45'),
(904, 18, 0x5361696e74204b697474732065204e65766973, 'Y', '2007-05-01 07:23:11'),
(906, 18, 0x5361696e742056696e63656e742065204772656e6164696e65, 'Y', '2007-05-01 07:23:11'),
(909, 18, '', 'Y', '2012-08-22 20:48:45'),
(930, 18, '', 'Y', '2012-08-22 20:48:45'),
(934, 18, '', 'Y', '2012-08-22 20:48:45'),
(939, 18, '', 'Y', '2012-08-22 20:48:45'),
(947, 18, '', 'Y', '2012-08-22 20:48:45'),
(963, 18, 0x436f736120696e6469636120756e6f2073666f6e646f20726f73736f206e656c6c6120706167696e612064656c6c65207061727469746520696e206174746573613f, 'Y', '2006-08-16 14:30:07'),
(964, 18, 0x556e6f2073666f6e646f20726f73736f206e656c6c6120636f6c6f6e6e6120224c6976656c6c6f20636f6d707265736f207472612220696e646963612063686520696c2070726f7072696f206c6976656c6c6f206e6f6e20e820636f6d707265736f20747261207175656c6c6920616d6d657373692e204e6f6e20e82064756e71756520706f73736962696c6520756e697273692061207175656c6c6120706172746974612e, 'N', '2006-08-16 14:32:49'),
(967, 18, 0x446f76652076656e676f6e6f207069617a7a617465206c65207069657472652064692068616e64696361703f, 'Y', '2006-08-16 14:33:27'),
(968, 18, 0x5365636f6e646f206c652065676f6c652063696e657369206c65207069657472652064692068616e646963617020706f73736f6e6f20657373657265207069617a7a617465206f76756e7175652c206c69626572616d656e74652e205365636f6e646f206c65207265676f6c652067696170706f6e6573692c20657373652076616e6e6f20696e76656365207069617a7a61746520696e20756e206d6f646f2062656e207072656369736f2e20496e20617373656e7a6120646920756e206469766572736f206163636f72646f2c206c61206d616767696f72207061727465206465692067696f6361746f72692073692061737065747461206368652070657220696c207069617a7a616d656e746f2076656e67616e6f2073656775697465206c65207265676f6c652067696170706f6e6573692e0d0a3c756c3e0d0a3c6c693e31207069657472613a20616c2067696f6361746f7265207069f9206465626f6c6520766120696c206e65726f2c2073656e7a61206b6f6d692e0d0a3c6c693e32207069657472653a204434202b205131360d0a3c6c693e33207069657472653a204434202b205134202b205131360d0a3c6c693e34207069657472653a204434202b205134202b20443136202b205131360d0a3c6c693e35207069657472653a204434202b205134202b204b3130202b20443136202b205131360d0a3c6c693e36207069657472653a204434202b205134202b20443130202b20513130202b20443136202b205131360d0a3c6c693e37207069657472653a204434202b205134202b20443130202b204b3130202b20513130202b20443136202b205131360d0a3c6c693e38207069657472653a204434202b204b34202b205134202b20443130202b20513130202b20443136202b204b3136202b205131360d0a3c6c693e39207069657472653a204434202b204b34202b205134202b20443130202b204b3130202b20513130202b20443136202b204b3136202b20513136203c2f756c3e, 'Y', '2009-11-15 13:57:48'),
(1042, 24, 0x416b6f207361206f64686cc3a173696d207a206dc3b46a686f206b6f6e74613f, 'Y', '2006-08-16 22:06:18'),
(1043, 24, 0x4a65646e6f647563686f206b6c696b6e69206e61206c696e6b7520224f64686c6173656e696522206e612073706f647520737472c3a16e6b792e20416b206e6965206a65206e61204447532076796b6f6e616ec3a120c5be6961646e6120616b74697669746120333020646ec3ad2c20636f6f6b6965732076797072c5a1696120206120762064c3b4736c65646b752062756465c5a1206f64686cc3a173656ec3bd2e, 'Y', '2006-08-16 22:06:18'),
(1, 25, 0x4e7520706fc5a369206a7563612050617320c3ae6e61696e74652073c48320c3aec5a3692061c59f657a6920746f6174652070696573656c652068616e64696361702e, 'Y', '2006-08-17 17:44:55'),
(2, 25, 0x4e6520706172652072c483752c20646172207061727469646120732d61207465726d696e61742e, 'Y', '2006-08-17 17:44:55'),
(3, 25, 0x4e6520706172652072c483752c20646172207061727469646120c3ae6e63c483206e75206120c3ae6e63657075742e, 'Y', '2006-08-17 17:44:55'),
(7, 25, 0x4e6520706172652072c483752c206e7520746520706fc5a36920696e766974612070652074696e652e, 'Y', '2006-08-17 17:44:55'),
(8, 25, 0x4e6520706172652072c483752c206e7520707574656d2067c48373692070617274696461206c6120636172652065c59f746920696e76697461742e20416920726566757a61742d6f206d61692064657672656d653f, 'Y', '2006-08-17 17:44:55'),
(9, 25, 0x4e6520706172652072c483752c20646172206e7520706fc5a3692063617074757261206f2070696573c483206361726520746f636d61692061206361707475726174206f20616c74c4832070696573c4832c2064656f617265636520732d61722072657065746120706f7a69c5a3696120616e746572696f6172c4832e2050656e747275206d6169206d756c746520696e666f726d61c5a369692c20706fc5a3692063c48375746120276b6f2720c3ae6e20726567756c696c65206a6f63756c75692e, 'Y', '2006-08-17 17:44:55'),
(12, 25, 0x436f6e657869756e6561206c612062617a61206465206461746520612065c59f7561742e2056c48320727567c4836d2073c4832061c59f7465707461c5a3692063c3a274657661206d696e75746520c59f692073c48320c3ae6e6365726361c5a3692064696e206e6f752e, 'Y', '2006-08-17 17:44:55'),
(14, 25, 0x4e6520706172652072c483752c20736520706172652063c483206164c483756761726561206d6573616a756c756920c3ae6e2062617a61206465206461746520612065c59f7561742e, 'Y', '2006-08-17 17:44:55'),
(15, 25, 0x4e6520706172652072c483752c20736520706172652063c483206164c48375676172656120706172746964656920c3ae6e2062617a61206465206461746520612065c59f7561742e, 'Y', '2006-08-17 17:44:55'),
(16, 25, 0x41706172656e74206164c483756761726561206d7574c48372696920c3ae6e2062617a61206465206461746520612065c59f7561742e204163656173746120706f61746520736175206e752073c48320666965206f2070726f626c656dc4832c2076c48320727567c4836d2073c4832076c48320c3ae6e746f61726365c5a369206c6120706172746964c4832070656e747275206120766564656120646163c483206d757461726561206120666f737420c3ae6e726567697374726174c4832e, 'Y', '2006-08-17 17:44:55'),
(18, 25, 0x436175746172656120696e2062617a61206465206461746520612065c59f7561742e2056c48320727567c4836d2073c4832061c59f7465707461c5a3692063c3a274657661206d696e75746520c59f692073c48320c3ae6e6365726361c5a3692064696e206e6f752e, 'Y', '2006-08-18 21:02:17'),
(19, 25, 0x4e7520616d2070757475742073656c656374612062617a6120646520646174652e2056c48320727567c4836d2073c4832061c59f7465707461c5a3692063c3a274657661206d696e75746520c59f692073c48320c3ae6e6365726361c5a3692064696e206e6f752e, 'Y', '2006-08-17 17:44:55'),
(20, 25, 0x4e6520706172652072c483752c206e7520616d20707574757420c3ae6e6365706520706172746964612e2056c48320727567c4836d2073c4832061c59f7465707461c5a3692063c3a274657661206d696e75746520c59f692073c48320c3ae6e6365726361c5a3692064696e206e6f752e, 'Y', '2006-08-17 17:44:55'),
(1055, 25, 0x46656564205253532070656e74727520737461747573, 'Y', '2006-08-17 17:57:26'),
(1060, 25, 0x417363756e6465, 'Y', '2006-08-17 17:57:26'),
(1125, 25, 0x536f727465617ac483, 'Y', '2006-08-17 17:57:26'),
(1082, 25, 0x5472696d697465207061726f6c61, 'Y', '2006-08-17 18:11:51'),
(2, 33, 0xe68ab1e6ad89efbc8ce6a38be5b180e5b7b2e7bb93e69d9fe38082, 'Y', '2007-05-17 16:03:42'),
(3, 33, 0xe68ab1e6ad89efbc8ce6a38be5b180e5b09ae69caae5bc80e5a78be38082, 'Y', '2007-05-17 16:03:42'),
(7, 33, 0xe68ab1e6ad89efbc8ce4b88de883bde98280e8afb7e887aae5b7b1e5afb9e5b180e38082, 'Y', '2007-05-17 16:03:42'),
(41, 33, 0xe68ab1e6ad89efbc8ce689bee4b88de588b0e8afa5e6a38be5b180e38082, 'Y', '2007-02-16 16:09:56'),
(45, 33, 0xe68ab1e6ad89efbc8ce689bee4b88de588b0e8afa5e794a8e688b7e38082, 'Y', '2007-02-16 13:08:49'),
(49, 33, 0xe68ab1e6ad89efbc8ce58faae883bde588a0e999a4e887aae5b7b1e79a84e6a38be5b180e38082, 'Y', '2007-02-16 16:09:56'),
(51, 33, 0xe68ab1e6ad89efbc8ce682a8e697a0e6b395e58aa0e585a5e887aae5b7b1e79a84e6a38be5b180e38082, 'Y', '2007-02-16 16:09:56'),
(1050, 5, 0x44e9736f6ce92c206c65206d6573736167652064656d616e64e9206e6520706575742070617320ea7472652074726f7576e92064616e73206c657320666f72756d732e, 'Y', '2006-08-18 14:43:00'),
(1051, 5, 0x4c61206c616e677565206f75206c652067726f7570652064656d616e64e920706f75722074726164756374696f6e206e6520706575742070617320ea7472652074726f7576e92e20436f6e74616374657a206c6520737570706f727420746563686e69717565207327696c20766f757320706c6169742e, 'Y', '2006-08-18 14:43:00'),
(1053, 5, 0x436574207574696c69736174657572206573742064e96ae020756e2061646d696e6973747261746575722e, 'Y', '2006-08-18 14:43:00'),
(1042, 5, 0x436f6d6d656e742064e9636f6e6e6563746572206d6f6e20636f6d707465266e6273703b3f, 'Y', '2006-08-18 14:43:10'),
(1043, 5, 0x5574696c6973657a2073696d706c656d656e74206c65206c69656e20ab266e6273703b44e9636f6e6e6563746572266e6273703bbb20656e2062617320e02064726f697465206465732070616765732e2053616e732063656c612c206c6520636f6f6b6965207065726d657474616e7420646520766f7573206964656e74696669657220736572612064e9747275697420617520626f7574206465203330206a6f7572732e, 'Y', '2006-08-18 14:43:10'),
(13, 25, 0x5374657267657469206a6f63756c2065737561742e204e752065737465206e696369206f2070726f626c656d612e, 'Y', '2006-08-18 20:49:17'),
(17, 25, 0x496e74726f6475636572656120646174656c6f722074616c6520696e2062617a61206465206461746520706172652061206176656120696e7375636365732e2044616361206e752076612070757465746920636f6e656374612c20766120727567616d206d616920696e6365726361746920696e6361206f20646174612073692064616361206e75207265757369746920636f6e746163746174692061646d696e6973747261746f72756c2e, 'Y', '2006-08-18 20:49:17'),
(22, 25, 0x4e652070617265207261752c2074726562756965207361206e65206675726e697a617469206e756d656c652e, 'Y', '2006-08-18 20:49:17'),
(27, 25, 0x4e652070617265207261752c204476732e207369206f706f6e656e74756c204476732e20747265627569652073612076612073746162696c69746920636f746172656120696e697469616c612c20616c7466656c206e7520766120707574656d2063616c63756c612068616e6469636170756c20706f7472697669742e, 'Y', '2006-08-18 20:49:17'),
(29, 25, 0x4e652070617265207261752c206e752065737465207065726d6973612061636561737461206f706572617469652070656e7472752067617a64652c20696e74696920766120727567616d20736120766120696e7265676973747261746920696e74722d756e20636f6e7420706572736f6e616c2e, 'Y', '2006-08-18 20:49:17'),
(32, 25, 0x4e6520706172652072c483752c206e7520657374652072c3a26e64756c204476732e, 'Y', '2006-08-23 20:46:42'),
(33, 25, 0x5061726f6c6120636f6ec5a3696e652063617261637465726520696d70726f707269692c2073756e74207065726d69736520646f6172206361726163746572656c6520612d7a2c20412d5a2c20302d3920c59f69202d5f2b2e2c3a3b3f21252a202e, 'Y', '2010-12-13 23:48:43'),
(35, 25, 0x5061726f6c6120636f6e6669726d6174c483206e7520736520706f7472697665c59f7465206375207061726f6c61204476732e2c2076c48320727567c4836d2073c4832076c48320c3ae6e746f61726365c5a36920c59f692073c48320c3ae6e6365726361c5a3692064696e206e6f752e, 'Y', '2006-08-23 20:46:42'),
(38, 25, 0x4e652070617265207261752c206176656d2070726f626c656d6520637520636f74617265612c206e752063756d766120612d746920756974617420736120737065636966696361746920226b79752220736175202264616e222e, 'Y', '2006-08-18 20:59:02'),
(1210, 5, 0x4d6f64696669657220766f7320696e666f732062696f67726170686971756573, 'Y', '2006-08-19 15:02:46'),
(1214, 5, 0x4a6f756575727320616374696673, 'Y', '2006-08-19 15:02:46'),
(1218, 5, 0x466f6e64, 'Y', '2006-08-19 15:02:46'),
(1219, 5, 0x526f756765, 'Y', '2006-08-19 15:02:46'),
(1220, 5, 0x56657274, 'Y', '2006-08-19 15:02:46'),
(1221, 5, 0x426c6575, 'Y', '2006-08-19 15:02:46'),
(1222, 5, 0x5472616e73706172656e6365, 'Y', '2006-08-19 15:02:46'),
(1223, 5, 0x56697369626c652064616e73206c61207061676520646520737461747574, 'Y', '2006-08-19 15:02:46'),
(1224, 5, 0x5465787465, 'Y', '2006-08-19 15:02:46'),
(1225, 5, 0x4c657320646f73736965727320736f6e74206d697320e0206a6f7572266e6273703b21, 'Y', '2006-08-19 15:02:46'),
(1226, 5, 0x4d69736520e0206a6f7572, 'Y', '2006-08-19 15:02:46'),
(1212, 5, 0x4269656e76656e756520737572202573266e6273703b21, 'Y', '2006-08-19 15:02:57'),
(1213, 5, 0x4269656e76656e7565207375722025732c20756e207365727665757220706f7572206a6f7565722061752025342473676f253524732c20253224736c69627265253324732064652073757263726fee742c206ff9206c65732070617274696573206f6e742074656e64616e636520e020ab266e6273703b7327e97465726e69736572266e6273703bbb2028746f2064726167206f6e2c20656e20616e676c6169732e204e444c54292e, 'Y', '2006-08-19 15:02:57'),
(1227, 5, 0x4e6f7576656175206d6f7420646520706173736520656e766f79e9266e6273703b21, 'Y', '2006-08-19 15:02:57'),
(1211, 5, 0x436f7570, 'Y', '2006-08-19 15:03:03'),
(1228, 5, 0x436f75726265732064657320737461746973746971756573, 'Y', '2006-08-19 15:03:11'),
(2178, 36, 0x50726f66696c6bc3a9702074c3b672c3b66c766521, 'Y', '2015-09-19 19:20:59'),
(1234, 5, 0x44697363757373696f6e73, 'Y', '2006-08-19 20:02:02'),
(1235, 5, 0x5265746f757220e0206c612064697363757373696f6e, 'Y', '2006-08-19 20:02:02'),
(1237, 5, 0x526563686572636865, 'Y', '2006-08-19 20:02:02'),
(1238, 5, 0x537461747574206465206d6f64e9726174657572, 'Y', '2006-08-19 20:04:44'),
(1241, 5, 0x4d6f64e9726174657572, 'Y', '2006-08-19 20:02:02'),
(1243, 5, 0x706172, 'Y', '2006-08-19 20:02:02'),
(1244, 5, 0x456e20617474656e74653c62723e6427617070726f626174696f6e, 'Y', '2006-08-19 20:02:02'),
(1245, 5, 0x43616368e9, 'Y', '2006-08-19 20:02:02'),
(1246, 5, 0x6d6f64696669e9, 'Y', '2006-08-19 20:02:02'),
(1251, 5, 0x417070726f75766572, 'Y', '2006-08-19 20:02:02'),
(1252, 5, 0x52656a65746572, 'Y', '2006-08-19 20:02:02'),
(1253, 5, 0x456e766f796572, 'Y', '2006-08-19 20:02:02'),
(1254, 5, 0x4d6573736167657320656e20617474656e7465206427617070726f626174696f6e, 'Y', '2006-08-19 20:02:02'),
(1255, 5, 0x4c697374652064657320666f72756d73, 'Y', '2006-08-19 20:02:02'),
(1256, 5, 0x4d6f64e972e9, 'Y', '2013-05-15 17:47:22'),
(1257, 5, 0x44697363757373696f6e, 'Y', '2006-08-19 20:02:02'),
(1258, 5, 0x417574657572, 'Y', '2006-08-19 20:02:02'),
(1259, 5, 0x4d65737361676573, 'Y', '2006-08-19 20:02:02'),
(1260, 5, 0x4465726e696572206d657373616765, 'Y', '2013-06-17 08:31:22'),
(1261, 5, 0x44e9736f6ce92c20766f7573206e27ea74657320706173206175746f726973e920e020e963726972652064616e73206c657320666f72756d73, 'Y', '2006-08-19 20:02:02'),
(1262, 5, 0x4365206d6573736167652065737420656e20617474656e7465206427617070726f626174696f6e2e20496c20736572612076697369626c65207175616e6420756e206d6f64e9726174657572206c27617572612076616c6964e92e, 'Y', '2006-08-19 20:02:02'),
(1263, 5, 0x486973746f726971756520646573206d6f64696669636174696f6e73, 'Y', '2006-08-19 20:02:02'),
(1210, 24, 0x45646974756a207a69766f746f7069736ec3a920c3ba64616a65, 'Y', '2006-08-19 22:52:16'),
(1211, 24, 0xc5a46168, 'Y', '2006-08-19 22:52:16'),
(1212, 24, 0x56c3ad74616a207620257321, 'Y', '2006-08-19 22:52:16'),
(1218, 24, 0x506f7a61646965, 'Y', '2006-08-19 22:52:16'),
(1219, 24, 0xc48c657276656ec3a1, 'Y', '2006-08-19 22:52:16'),
(1220, 24, 0x5a656c656ec3a1, 'Y', '2006-08-19 22:52:16'),
(1221, 24, 0x4d6f6472c3a1, 'Y', '2006-08-19 22:52:16'),
(1222, 24, 0x416c6661, 'Y', '2006-08-19 22:52:16'),
(1224, 24, 0x506f707265646965, 'Y', '2006-08-19 22:52:16'),
(1257, 24, 0x566cc3a16b6e6f, 'Y', '2006-08-19 22:52:52'),
(1258, 24, 0x4175746f72, 'Y', '2006-08-19 22:52:52'),
(1267, 24, 0x56c3bd736c65646b7920767968c4be6164c3a176616e6961, 'Y', '2006-08-20 20:23:12'),
(1225, 24, 0x50726965c48d696e6b79207570726176656ec3a921, 'Y', '2006-08-20 20:24:54'),
(1226, 24, 0x416b7475616c697ac3a1636961, 'Y', '2006-08-20 20:24:54'),
(1227, 24, 0x4e6f76c3a9206865736c6f207a61736c616ec3a921, 'Y', '2006-08-20 20:24:54'),
(1228, 24, 0x4772616620c5a1746174697374696b79, 'Y', '2006-08-20 20:24:54'),
(1234, 24, 0x566cc3a16b6e61, 'Y', '2006-08-20 20:25:30'),
(1237, 24, 0x48c4be6164616e6965, 'Y', '2006-08-20 20:25:30'),
(1267, 5, 0x52e973756c746174206465206c6120726563686572636865, 'Y', '2006-08-20 21:42:37'),
(39, 25, 0x4e652070617265207261752c206176656d206f2070726f626c656d6120637520636f74617265612c206e7520612d7469207574696c697a617420226b79752220736175202264616e2220696e20636f7461726561204476732e, 'Y', '2006-08-21 13:16:46'),
(40, 25, 0x4e652070617265207261752c206163656173746120706961747261206e7520736520706f6174652073696e756369646520696e20636f6e64697469696c65207072657a656e74652e, 'Y', '2006-08-21 13:16:46'),
(41, 25, 0x4e652070617265207261752c206e7520707574656d2067617369206163657374206a6f632e, 'Y', '2006-08-21 13:16:46'),
(42, 25, 0x4e6520706172652072c483752c206e7520707574656d2067c483736920666f72756d756c20706520636172652d6c2063c483757461c5a3692e, 'Y', '2010-06-26 22:50:15'),
(43, 25, 0x486d6d2c206163657374206d6573616a20706172652073612066696520756e2072617370756e732070656e74727520756e206d6573616a20696e6578697374656e742e, 'Y', '2006-08-21 13:16:46'),
(44, 25, 0x4e6520706172652072c483752c206e7520707574656d2067c4837369206d6573616a756c20706520636172652d6c2063c483757461c5a3692e, 'Y', '2010-06-26 22:50:15'),
(45, 25, 0x4e652070617265207261752c206e7520707574656d2067617369206163657374207574696c697a61746f722e, 'Y', '2006-08-21 13:16:46'),
(46, 25, 0x4e652070617265207261752c206163657374204944206465207574696c697a61746f722064656a61206573746520666f6c6f7369742c20766120727567616d20736120696e636572636174692073612067617369746920756e20494420756e69632e, 'Y', '2006-08-21 13:16:46'),
(48, 25, 0x4e7520707574656d206578747261706f6c612076616c6f6172656120696e74722d6f2066756e6374696520696e746572706f6c6172612e, 'Y', '2006-08-21 13:16:46'),
(49, 25, 0x4e652070617265207261752c207075746574692073746572676520646f6172206a6f63756c204476732e, 'Y', '2006-08-21 13:16:46'),
(50, 25, 0x4e652070617265207261752c206e7520707574656d206761736920616365617374612063616d657261206465206173746570746172652061206a6f63756c75692e2050726f626162696c2063696e6576612064656a6120732d6120636f6e6563746174206c612065612e, 'Y', '2006-08-21 13:16:46'),
(51, 25, 0x4e652070617265207261752c206e752076612070757465746920636f6e65637461206c612070726f707269756c204476732e206a6f632e, 'Y', '2006-08-21 13:16:46'),
(52, 25, 0x4e6520706172652072c483752c20636f7461726561207461206e75206573746520c3ae6e20696e74657276616c756c20737065636966696361742e, 'Y', '2010-06-29 12:32:59'),
(54, 25, 0x4e6520706172652072c483752c206e752061c5a36920736372697320636f72656374207061726f6c6120637572656e74c4832e, 'Y', '2010-12-13 12:00:47'),
(56, 25, 0x4e652070617265207261752c206e75207374696d20637569206170617274696e65206163657374204944206465207574696c697a61746f722e, 'Y', '2006-08-21 13:24:21'),
(57, 25, 0x4e652070617265207261752c20636f746120696e697469616c6120747265627569652073612066696520696e747265203330206b757920736920362064616e2e, 'Y', '2006-08-21 13:24:21'),
(58, 25, 0x4e652070617265207261752c20612d7469207363726973206f2076616c6f617265206e6f6e2d6e756d65726963612073617520756e2063696d70206e756d657269632e, 'Y', '2006-08-21 13:24:21'),
(59, 25, 0x4e652070617265207261752c20646f6172207472616e736c61746f726969206175207065726d697369756e65612064652d6120747261647563652e, 'Y', '2006-08-21 13:24:21'),
(60, 25, 0x4461636120646f7269746920736120616a7574617469207472616475636572656120736974652d756c75692c20766120727567616d20706f737461746920756e206d6573616a20706520666f72756d756c2022747261647563657265222e, 'Y', '2006-08-21 13:24:21'),
(61, 25, 0x4e652070617265207261752c206e75206176657469207065726d697369756e656120736120747261647563657469206c696d62612073706563696669636174612e, 'Y', '2006-08-21 13:24:21'),
(63, 25, 0x4e652070617265207261752c2063657661206d657267652070726f73742063696e6420696e63657263616d20736120696e736572616d206f20747261647563657265206e6f756120696e2062617a6120646520646174652e, 'Y', '2006-08-21 13:24:21'),
(1214, 24, 0x416b74c3ad766e692075c5bec3ad766174656c6961, 'Y', '2006-08-21 14:04:38'),
(1223, 24, 0x556bc3a1c5be20737472c3a16e6b75207374617675, 'Y', '2006-08-21 14:07:10'),
(1235, 24, 0x5370c3a4c5a520646f20766cc3a16b6e61, 'Y', '2006-08-21 14:07:10'),
(66, 25, 0x4e652070617265207261752c206163656173746120706167696e6120657374652064657374696e617461206578636c757369762070656e7472752061646d696e6973747261746f72692e, 'Y', '2006-08-21 14:16:10'),
(69, 25, 0x4e652070617265207261752c206e7520707574656d2067617369206163656173746120696e74726172652e, 'Y', '2006-08-21 14:16:10'),
(75, 25, 0x4e652070617265207261752c206e7520706f742067617369207475726e65756c75692070652063617265206c2d617469206461742e, 'Y', '2006-08-21 14:16:10'),
(1608, 17, 0x53796e616b74796b61, 'Y', '2013-08-21 01:06:11'),
(1609, 17, 0x4e554d, 'Y', '2013-08-21 01:08:06'),
(1611, 17, '', 'Y', '2013-08-21 00:31:59'),
(1619, 17, '', 'Y', '2013-08-21 01:13:04'),
(1626, 17, '', 'Y', '2013-08-21 00:32:26'),
(122, 25, 0x52617370756e732e, 'Y', '2006-08-21 14:24:56'),
(127, 25, 0x456469746172652e, 'N', '2006-08-21 14:24:56'),
(128, 25, 0x4d757461726520696e207375732e, 'Y', '2006-08-21 14:24:56'),
(129, 25, 0x4d757461726520696e206a6f732e, 'Y', '2006-08-21 14:24:56'),
(135, 25, 0x5472616e736c61746f72692e, 'Y', '2006-08-21 14:24:56'),
(417, 25, 0x50656e747275206d6f6d656e742070617265206120666920676f6c2e, 'Y', '2006-08-21 15:48:50'),
(1032, 6, 0x47726965676f, 'Y', '2006-08-22 02:07:38'),
(1033, 6, 0x556372616e69616e6f, 'Y', '2006-08-22 02:07:38'),
(1034, 6, 0x436174616ce16e, 'Y', '2015-06-15 04:20:09'),
(1035, 6, 0x4368696e6f202873696d706c6966696361646f29, 'Y', '2006-08-22 02:07:38'),
(1036, 6, 0x4375616e646f20736520626f7272616e206c6f732070657266696c6573206465207573756172696f206e6f207574696c697a61646f733f, 'N', '2006-08-22 02:07:38'),
(1037, 6, 0x4e756e63612e205365206c6f73206d6172636120636f6d6f20696e61637469766f732c207920646573617061726563656e206465206c61206c69737461206e6f726d616c206465207573756172696f732e, 'N', '2006-08-22 02:07:38'),
(1038, 6, 0x486179206d6174657269616c6573206465206179756461207175652070756564612075736172207061726120766f6c7665726d65206d6173206675657274653f, 'Y', '2006-08-22 02:07:38'),
(1080, 6, 0x416c74757261, 'Y', '2006-08-22 02:08:22'),
(1081, 6, 0x416e63686f, 'Y', '2006-08-22 02:08:22'),
(1086, 6, 0x4361707475726173, 'Y', '2006-08-22 02:08:22'),
(1087, 6, 0x436f6d656e746172696f73, 'Y', '2006-08-22 02:08:22'),
(1255, 24, 0x5a6f7a6e616d2066c3b372, 'Y', '2006-08-22 18:26:54'),
(1261, 24, 0x50726570c3a1c48d2c206e656dc3a1c5a1206f7072c3a1766e656e69652070c3ad7361c5a520646f2066c3b37261, 'Y', '2006-08-22 18:26:54'),
(1263, 24, 0x526576c3ad7a69612068697374c3b3726965, 'Y', '2006-08-22 18:26:54'),
(1039, 6, 0x506f7220737570756573746f2e204c6565206c6962726f732c2072657375656c76652070726f626c656d617320646520476f2c206a7565676120636f6e74726120636f6d70757461646f7261732c20636f6e766572736120636f6e206f74726f73206a756761646f7265732e204c6f7320666f726f732064652064697363757369f36e2068616e206d6f73747261646f20717565206d7563686f73202d706f7369626c656d656e746520746f646f73206c6f732d206a756761646f72657320646520617175ed20686163656e20756e61206f206d61732064652065737461732061637469766964616465732e, 'N', '2006-08-23 07:23:55'),
(1042, 6, 0x436f6d6f2073616c676f206465206d69206375656e74613f, 'Y', '2006-08-23 07:23:55'),
(1043, 6, 0x53696d706c656d656e74652068617a20636c69636b20656e20656c20656e6c61636520646520224c6f676f75742220656e206c612065737175696e61206465726563686120696e666572696f72206465206375616c71756965722070e167696e612e205369207465206d616e7469656e657320696e61637469766f20656e2044475320706f722033302064ed6173206c6120636f6f6b69652064656c207365727669646f722065787069726172e1207920646520686563686f20746520666f727a6172e120612073616c69722064656c2073697374656d612e, 'Y', '2006-08-23 07:23:55'),
(1044, 6, 0x45737461206d6f76696461206c6c657661206120756e6120706f73696369f36e20696c6567616c20656e20656c207461626c65726f2e, 'Y', '2006-08-23 07:23:55'),
(1045, 6, 0x456c206ced6d697465206465207469656d706f2065732064656d61736961646f207065717565f16f2c20706f72206661766f7220656c696a6520616c206d656e6f7320756e6120686f72612e, 'Y', '2006-08-23 07:23:55'),
(1046, 6, 0x44697363756c70612c206e6f2068617320686162696c697461646f206c617320636f6f6b69657320656e207475206e6176656761646f722e, 'Y', '2006-08-23 07:23:55'),
(1047, 6, 0x44697363756c70612c2065737465207475726e6f207961207365206861206a756761646f2e, 'Y', '2006-08-23 07:23:55');
INSERT INTO `Translations` (`Original_ID`, `Language_ID`, `Text`, `Translated`, `Updated`) VALUES
(1048, 6, 0x50e167696e61206e6f20656e636f6e74726164612e20506f72206661766f7220636f6e74616374612061206c6f732061646d696e6973747261646f7265732064656c207365727669646f72206520696e66f3726d616c657320616365726361206465206c6120686f726120656e2071756520656c206572726f72206f6375727269f32c2079206375616c717569657220636f7361207175652070756564617320686162657220686563686f20717565207075656461206861626572206361757361646f20656c206572726f722e, 'Y', '2006-08-23 07:23:55'),
(1049, 6, 0x456c206e6f6d627265206465207573756172696f20636f6e7469656e652063617261637465726573206e6f207065726d697469646f732c2073f36c6f206c6f73206361726163746572657320612d7a2c20412d5a2c20302d392079202d5f2b20657374616e207065726d697469646f732c207920656c207072696d657220636172616374657220646562652073657220612d7a206f20412d5a2e, 'Y', '2006-08-23 07:23:55'),
(1050, 6, 0x44697363756c70612c206e6f207075646520656e636f6e7472617220656c206d656e73616a65207175652071756572ed6173206d6f73747261722e, 'Y', '2006-08-23 07:23:55'),
(1051, 6, 0x44697363756c70612c206e6f207075646520656e636f6e7472617220656c206964696f6d61206f20677275706f20717565206465736561732074726164756369722e20506f72206661766f7220636f6e746163746120616c20736f706f7274652074e9636e69636f2e, 'Y', '2006-08-23 07:23:55'),
(1053, 6, 0x45737465207573756172696f20796120657320756e2061646d696e6973747261646f722e, 'Y', '2006-08-23 07:23:55'),
(1055, 6, 0x45737461646f2076ed61206665656420646520525353, 'Y', '2015-06-15 04:20:09'),
(1059, 6, 0x4d6f7374726172, 'Y', '2006-08-23 07:23:55'),
(1060, 6, 0x4573636f6e646572, 'Y', '2006-08-23 07:23:55'),
(1067, 6, 0x4964696f6d61206e6174616c, 'Y', '2006-08-23 07:23:55'),
(1068, 6, 0x486162696c696461646573206465206964696f6d61, 'Y', '2006-08-23 07:23:55'),
(1069, 6, 0x446562616a6f, 'Y', '2006-08-23 07:23:55'),
(1073, 6, 0x4e756d65726f206465206d6f76696461, 'Y', '2006-08-23 07:23:55'),
(1074, 6, 0x4e6f2075736172206efa6d65726f73206d61796f7265732071756520313030, 'Y', '2015-06-15 16:14:55'),
(1076, 6, 0x4e6f746173207072697661646173206465206c612070617274696461, 'Y', '2006-08-23 07:23:55'),
(1077, 6, 0x5461626c65726f73207065717565f16f73, 'Y', '2006-08-23 07:23:55'),
(1078, 6, 0x5461626c65726f73206772616e646573206465736465, 'Y', '2006-08-23 07:23:55'),
(1079, 6, 0x506f73696369f36e, 'Y', '2006-08-23 07:23:55'),
(1082, 6, 0x456e7669617220636f6e7472617365f161, 'Y', '2006-08-23 07:23:55'),
(1083, 6, 0x53652068612070656469646f20756269636172206c617320706965647261732064652068e16e646963617020656e20666f726d6120657374e16e6461722e, 'Y', '2015-06-25 04:14:44'),
(1084, 6, 0x55626963616369f36e20657374e16e646172, 'Y', '2015-06-26 17:45:05'),
(1085, 6, 0x506f72206661766f72206d61726361206c61732070696564726173206d75657274617320792068617a20636c69636b20656e202573276c6973746f272573206375616e646f207465726d696e65732e, 'Y', '2006-08-23 07:23:55'),
(1088, 6, 0x44657363617267617220656c2053474620636f6e20746f646f73206c6f7320636f6d656e746172696f732e, 'Y', '2006-08-23 07:23:55'),
(1089, 6, 0x50756e74616a65, 'Y', '2006-08-23 07:23:55'),
(1090, 6, 0x566572206d6f76696d69656e746f, 'Y', '2013-11-11 23:04:45'),
(1091, 6, 0x5469656d706f2072657374616e7465, 'Y', '2006-08-23 07:23:55'),
(1092, 6, 0x5061727469646120706f722070756e746f73, 'Y', '2006-08-23 07:36:58'),
(1093, 6, 0x4d6f7374726172206e6f746173, 'Y', '2006-08-23 07:36:58'),
(1094, 6, 0x47756172646172206e6f746173, 'Y', '2006-08-23 07:36:58'),
(1095, 6, 0x4573636f6e646572206e6f746173, 'Y', '2006-08-23 07:36:58'),
(1096, 6, 0x4269656e76656e69646f2061206c61207665727369f36e206465206465736172726f6c6c6f2064656c20647261676f6e20676f2073657276657221, 'N', '2006-08-23 07:36:58'),
(1097, 6, 0x536920646573656173206a7567617220656e20656c207365727669646f72207265616c2c20706f72206661766f7220766973697461203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e6574223e687474703a2f2f7777772e647261676f6e676f7365727665722e6e65743c2f613e20656e2076657a206465206573746520736974696f2e, 'Y', '2006-08-23 07:36:58'),
(1640, 17, 0x5a627974207769656c6520736570617261746f72f377, 'Y', '2013-08-20 22:32:54'),
(1642, 17, 0x4e6965646f7a776f6c6f6e7920707265666978, 'Y', '2013-08-20 22:36:25'),
(1643, 17, 0x42b3ea646e7920666f726d61742064617479, 'Y', '2013-08-20 22:36:25'),
(1099, 6, 0x506567616c6520756e61206d697261646120616c204641512070617261206de17320696e666f726d616369f36e2e, 'Y', '2006-08-23 07:36:58'),
(1102, 6, 0x42617365206465206461746f73207920656e6369636c6f706564696120476f476f44, 'Y', '2006-08-23 07:36:58'),
(1103, 6, 0x556e61206772616e2062617365206465206461746f732064652070617274696461732070726f666573696f6e616c6573, 'Y', '2006-08-23 07:36:58'),
(1104, 6, 0x4c61206d616769612064656c20476f, 'Y', '2006-08-23 07:36:58'),
(1105, 6, 0x556e6120636f6c756d6e612073656d616e616c206573637269746120706f7220526f622056616e205a65696a73742e, 'Y', '2006-08-23 07:36:58'),
(1106, 6, 0x4c697374612064652072657370756573746173, 'Y', '2006-08-23 07:36:58'),
(1108, 6, 0x566f6c76657220616c206d656e73616a65, 'Y', '2006-08-23 07:36:58'),
(1109, 6, 0x566973746120707265766961, 'Y', '2006-08-23 07:36:58'),
(1110, 6, 0x44657374696e61746172696f206e6f20656e636f6e747261646f, 'Y', '2006-08-23 07:36:58'),
(1111, 6, 0x4772e16669636f2064652072616e676f, 'Y', '2015-06-23 21:13:55'),
(1112, 6, 0x4e6f74612070617261207072696e63697069616e7465733a206c65616e206c612046415120657370656369616c6d656e7465207061726120616a75737461722074752072616e6b20696e696369616c20656e2074752070e167696e612064652070657266696c2e, 'Y', '2006-08-23 07:36:58'),
(1113, 6, 0x506172746964617320706f722070756e746f73207465726d696e61646173, 'Y', '2015-12-18 16:14:15'),
(1433, 17, 0x52616e6b696e67, 'Y', '2013-08-20 23:08:31'),
(3449, 11, 0x536a61626c6f6f6e2076657277696a6465726421, 'Y', '2016-07-27 17:27:18'),
(1120, 6, 0x706572ed6f646f73206578747261, 'Y', '2006-08-23 07:36:58'),
(1121, 6, 0x4d656e73616a6520616e746572696f72, 'Y', '2006-08-23 07:36:58'),
(1122, 6, 0x4d656e73616a6573207369677569656e746573, 'Y', '2006-08-23 07:36:58'),
(1124, 6, 0x596f, 'Y', '2006-08-23 07:36:58'),
(1125, 6, 0x4f7264656e6172, 'Y', '2006-08-23 07:36:58'),
(1126, 6, 0x436f7265612064656c204e6f727465, 'Y', '2006-08-23 07:36:58'),
(1127, 6, 0x436f7265612064656c20537572, 'Y', '2006-08-23 07:36:58'),
(1128, 6, 0x4d6f6e74656e6567726f, 'Y', '2006-08-23 07:36:58'),
(1129, 6, 0x536572626961, 'Y', '2006-08-23 07:36:58'),
(1130, 6, 0x546965727261, 'Y', '2006-08-23 07:36:58'),
(1131, 6, 0x44697363756c70612c206e656365736974617320616c206d656e6f732025642064ed6173206465207661636163696f6e6573207061726120706f64657220636f6d656e7a617220756e20706572ed6f646f206465207661636163696f6e65732e, 'Y', '2006-08-23 07:36:58'),
(1210, 6, 0x456469746172206c6120696e666f726d616369f36e2062696f6772e166696361, 'Y', '2006-08-23 07:36:58'),
(1211, 6, 0x4d6f76696d69656e746f, 'Y', '2013-11-11 23:03:31'),
(1212, 6, 0xa14269656e76656e69646f20616c20257321, 'Y', '2015-06-21 07:13:40'),
(1213, 6, 0x4269656e76656e69646f7320612025732c20756e207365727669646f72202573677261747569746f25732070617261206a75676172202573676f25732c20646f6e6465206c6173207061727469646173207469656e64656e206120276172726173747261727365272028656e20696e676ce9733a202264726167206f6e22292e, 'Y', '2015-10-28 17:40:59'),
(1214, 6, 0x5573756172696f732061637469766f73, 'Y', '2006-08-23 07:36:58'),
(1218, 6, 0x466f6e646f, 'Y', '2006-08-23 07:43:48'),
(1219, 6, 0x526f6a6f, 'Y', '2006-08-23 07:43:48'),
(1220, 6, 0x5665726465, 'Y', '2006-08-23 07:43:48'),
(1221, 6, 0x417a756c, 'Y', '2006-08-23 07:43:48'),
(1222, 6, 0x416c706861, 'Y', '2006-08-23 07:43:48'),
(1223, 6, 0x4d6f737472617220656e206c612070e167696e612064652065737461646f, 'Y', '2006-08-23 07:43:48'),
(1225, 6, 0x436172706574617320616a7573746164617321, 'Y', '2006-08-23 07:43:48'),
(1226, 6, 0x41637475616c697a6172, 'Y', '2006-08-23 07:43:48'),
(1227, 6, 0x4e7565766120636f6e7472617365f16120656e766961646121, 'Y', '2006-08-23 07:43:48'),
(1228, 6, 0x4772616669636f206465206573746164ed737469636173, 'Y', '2006-08-23 07:43:48'),
(1234, 6, 0x52616d696669636163696f6e6573, 'Y', '2006-08-23 07:43:48'),
(1235, 6, 0x566f6c7665722061206c612072616d69666963616369f36e, 'Y', '2006-08-23 07:43:48'),
(1237, 6, 0x427573636172, 'Y', '2006-08-23 07:43:48'),
(1238, 6, 0x43616d62696172206d6f64657261646f722064656c20666f726f, 'Y', '2006-08-23 07:43:48'),
(1241, 6, 0x4d6f646572616e646f, 'Y', '2006-08-23 07:43:48'),
(1243, 6, 0x706f72, 'Y', '2006-08-23 07:43:48'),
(1244, 6, 0x4573706572616e646f3c62723e6170726f62616369f36e, 'Y', '2006-08-23 07:43:48'),
(1245, 6, 0x4573636f6e6469646f, 'Y', '2006-08-23 07:43:48'),
(1246, 6, 0x6564697461646f, 'Y', '2006-08-23 07:43:48'),
(1251, 6, 0x4170726f626172, 'Y', '2015-06-28 00:09:51'),
(1252, 6, 0x52656368617a6172, 'Y', '2006-08-23 07:43:48'),
(1253, 6, 0x456e76696172, 'Y', '2006-08-23 07:43:48'),
(1254, 6, 0x4d656e73616a65732061206c6120657370657261206465206170726f62616369f36e, 'Y', '2006-08-23 07:43:48'),
(1255, 6, 0x4c6973746120646520666f726f73, 'Y', '2006-08-23 07:43:48'),
(1256, 6, 0x4d6f64657261646f, 'Y', '2006-08-23 07:43:48'),
(1257, 6, 0x52616d69666963616369f36e, 'Y', '2006-08-23 07:43:48'),
(1258, 6, 0x4175746f72, 'Y', '2006-08-23 07:43:48'),
(1259, 6, 0x4d656e73616a6573, 'Y', '2006-08-23 07:43:48'),
(1260, 6, 0xda6c74696d6f206d656e73616a65, 'Y', '2015-06-28 00:09:35'),
(1261, 6, 0x44697363756c70612c206e6f20657374e173206175746f72697a61646f206120636f6d656e74617220656e20656c20666f726f, 'Y', '2006-08-23 07:43:48'),
(1262, 6, 0x45737465206d656e73616a6520657374e12073756a65746f2061206d6f646572616369f36e2e205365206d6f7374726172e120756e612076657a20717565206c6f73206d6f64657261646f726573206c6f20686179616e206170726f6261646f2e, 'Y', '2006-08-23 07:43:48'),
(1263, 6, 0x486973746f726961206465207265766973696f6e6573, 'Y', '2006-08-23 07:49:49'),
(1266, 6, 0x507565646573207665726c6f20636f6d6f20756e6120706172746964612076ed6120636f7272656f20656c65637472f36e69636f2c20646f6e64652073652075736120756e6120696e74657266617a2077656220706172612071756520656c207461626c65726f206c757a6361206d656a6f722e205061726120636f6d656e7a61722061206a7567617220646562657320637265617220756e61203c6120687265663d2272656769737465722e706870223e6375656e74613c2f613e2c2e204120706172746972206465206168ed20707565646573203c6120687265663d22656469745f70726f66696c652e706870223e6564697461722074752070657266696c3c2f613e2065203c6120687265663d22656469745f62696f2e706870223e696e67726573617220616c67756e6f73206461746f732062696f6772e16669636f733c2f613e2c20706172746963756c61726d656e746520656e206c6f732063616d706f732027bf446973706f6e69626c652070617261206a756761723f272c202752616e676f2720652027496e666f726d616369f36e2064652052616e676f272079612071756520736f6e20fa74696c6573207061726120627573636172206f706f6e656e7465732e204120636f6e74696e75616369f36e207075656465732072657669736172206c61203c6120687265663d2275736572732e706870223e6c69737461206465207573756172696f733c2f613e20792075736172206c6f73203c6120687265663d22666f72756d2f696e6465782e706870223e666f726f733c2f613e207061726120656e636f6e74726172206c6f73206f706f6e656e74657320616465637561646f732065203c6120687265663d226d6573736167652e7068703f6d6f64653d496e76697465223e696e76697461726c6f733c2f613e206120756e6120706172746964612e, 'Y', '2015-10-28 17:43:40'),
(1267, 6, 0x526573756c7461646f73206465206c612062fa737175656461, 'Y', '2006-08-23 07:50:01'),
(474, 25, 0x4163657374207469702064652061637469756e652065737465206e6563756e6f7363757420736175206e7520706f617465206669207574696c697a61746120696e2061636573742073746164697520616c206a6f63756c75692e, 'Y', '2006-08-23 13:54:28'),
(475, 25, 0x4b6f6d69206573746520c3ae6e206166617261206c696d6974656c6f722c2076c48320727567c4836d20616c656765c5a369206f2076616c6f6172652072657a6f6e6162696cc4832e, 'Y', '2010-06-29 12:30:13'),
(476, 25, 0x416365617374c483206d757461726520612067656e65726174206f2065726f6172652e20c38e6e206d6f64206e6f726d616c2c206573746520737566696369656e742073c48320c3ae6e6365726361c5a3692064696e206e6f752e20c38e6e2063617a20636f6e747261722c20616e756ec5a361c5a3692d6e6520c3ae6e20666f72756d2d756c20e2809e537570706f7274e2809d2e, 'Y', '2010-08-05 11:42:01'),
(477, 25, 0x4e756d61722067726573697420616c207069657472656c6f722064652068616e64696361702e, 'Y', '2006-08-23 13:54:28'),
(603, 25, 0x446520636520447261676f6e2d756c206e752d6d6920636f6d756e6963612061647265736120646520652d6d61696c2061206f706f6e656e74756c75693f, 'Y', '2006-08-23 13:54:28'),
(604, 25, 0x4163657374206c7563727520736520696e74696d706c612064656f617265636520447261676f6e2d756c2070726f74656a65617a6120696e666f726d617469696c6520636f6e666964656e7469616c652e204461636120646f72697469207361207374697469206d6169206d756c742064656369742061206f6665726974206f706f6e656e74756c204476732e20696e2070726f66696c756c20736175206174756e636920696e747265626174692d6c2064697265637420706520656c2e, 'Y', '2006-08-23 13:54:28'),
(605, 25, 0x43756d20706f74207363726965207465787420696e205347463f, 'Y', '2006-08-23 13:54:28'),
(607, 25, 0x506f7420646576656e692064657a766f6c7461746f7220616c20447261676f6e756c75693f, 'Y', '2006-08-23 13:54:28'),
(621, 25, 0xc38e6e74726567756c2046415120c3ae6e74722d6f2073696e677572c48320706167696ec4832e, 'Y', '2010-06-26 22:50:15'),
(622, 25, 0x5475726e656520447261676f6e2e, 'Y', '2006-08-23 13:54:28'),
(623, 25, 0x4f6e656761697368696d6173752e, 'N', '2006-08-23 13:54:28'),
(626, 25, 0x4e752c206e7520696e63612e, 'Y', '2006-08-23 13:54:28'),
(631, 25, 0x43756d20706f742073612d6d69207374657267206f6665727461206465206a6f632064696e2063616d657261206465206173746570746172653f, 'Y', '2006-08-23 13:54:28'),
(637, 25, 0x4361726520657374652074696d70756c207072696e636970616c3f, 'Y', '2006-08-23 13:54:28'),
(639, 25, 0x436172652073696e74206f616d656e69692064696e2073706174656c6520447261676f6e756c75693f, 'Y', '2006-08-23 13:54:28'),
(643, 25, 0x506f74207574696c697a612048544d4c20696e20447261676f6e3f, 'N', '2006-08-23 13:54:28'),
(1099, 25, 0x50656e747275206d6169206d756c746520696e666f726d61c5a3696920706fc5a36920636f6e73756c746120736563c5a369756e6561204641512e, 'Y', '2006-08-23 20:41:54'),
(1112, 25, 0x50656e74727520c3ae6e636570c483746f72693a2063697469c5a36920736563c5a369756e65612046415120c3ae6e207370656369616c2070656e7472752061207365746120636f726563742072616e67756c20696e69c5a369616c20c3ae6e20706167696e6120646520696e666f726d61c5a36969207574696c697a61746f722e, 'Y', '2006-08-23 20:41:54'),
(1212, 25, 0x42756e2076656e6974206c6120257321, 'Y', '2006-08-23 20:41:54'),
(1213, 25, 0x42756e2076656e6974206c612025732c20756e207365727665722025736772617475697425732070656e747275206a6f63756c202573676f25732c20756e646520706172746964656c652074696e642073c483207365206c756e6765617363c48320282764726167206f6e27292e, 'Y', '2006-08-23 20:41:54'),
(1251, 24, 0x5072c3ad6a6d69, 'Y', '2006-08-24 14:55:23'),
(1252, 24, 0x4f646d6965746e69, 'Y', '2006-08-24 14:55:23'),
(1256, 24, 0x55707261766f76616ec3a9, 'Y', '2006-08-24 14:55:23'),
(1260, 24, 0x506f736c65646ec3bd207072c3ad737065766f6b, 'Y', '2006-08-24 14:55:23'),
(1262, 24, 0x546965746f207072c3ad737065766b79207361207570726176756ac3ba2e205a6f6272617a69612073612c206b65c48f20696368207072657a726965206d6f646572c3a1746f722e, 'Y', '2006-08-24 14:55:23'),
(1245, 24, 0x536b727974c3a9, 'Y', '2006-08-24 14:55:57'),
(1246, 24, 0x656469746f76616ec3a9, 'Y', '2006-08-24 14:55:57'),
(1055, 31, 0xd0a1d182d0b0d182d183d181205253532dd184d196d0b4d0b0, 'Y', '2006-08-26 14:44:59'),
(1060, 31, 0xd0a1d185d0bed0b2d0b0d182d0b8, 'Y', '2006-08-26 14:44:59'),
(1091, 31, 0xd097d0b0d0bbd0b8d188d0b8d0bbd0bed181d18c20d187d0b0d181d183, 'Y', '2006-08-26 14:44:59'),
(1125, 31, 0xd0a1d0bed180d182d183d0b2d0b0d0bdd0bdd18f, 'Y', '2006-08-26 14:44:59'),
(2059, 36, 0x4265736f726f6cc3a17320c3a97320c3a97274c3a96b656cc3a973206dc3b3646f73c3ad74c3a17361, 'Y', '2015-09-19 19:20:00'),
(1274, 3, 0x64, 'Y', '2006-08-28 22:32:31'),
(1275, 3, 0x64, 'Y', '2006-08-28 22:32:31'),
(1276, 3, 0x68, 'Y', '2006-08-28 22:32:31'),
(1277, 3, 0x68, 'Y', '2006-08-28 22:32:31'),
(1270, 5, 0x546f75746573206c6573207061727469657320656e20617474656e7465, 'Y', '2006-08-29 00:06:34'),
(1271, 5, 0x5061727469657320656e20617474656e746520636f6d70617469626c65732061766563206d6f6e2070726f66696c, 'Y', '2013-03-13 09:08:48'),
(1273, 5, 0x556e20646f737369657220646f697420ea747265207669646520706f757220706f75766f697220ea74726520656e6c6576e9266e6273703b21, 'Y', '2006-08-29 00:06:34'),
(1274, 5, 0x6a, 'Y', '2006-08-29 00:06:34'),
(1275, 5, 0x6a, 'Y', '2006-08-29 00:06:34'),
(1276, 5, 0x68, 'Y', '2006-08-29 00:06:34'),
(1277, 5, 0x68, 'Y', '2006-08-29 00:06:34'),
(5732, 25, 0x4469666572656ec5a3c48320636f746172652070656e7472752063c3a2c59f746967, 'Y', '2014-11-26 10:19:43'),
(1210, 19, 0x416c6461747520696e666f726d617a696f2062696f67726166696b6f61, 'Y', '2006-08-29 03:10:59'),
(1211, 19, 0x4d7567696d656e647561, 'Y', '2006-08-29 03:10:59'),
(1212, 19, 0x4f6e67692065746f727269202573286529726121, 'Y', '2006-08-29 03:10:59'),
(1214, 19, 0x45726162696c747a61696c6520616b7469626f616b, 'Y', '2006-08-29 03:10:59'),
(1218, 19, 0x41747a656b616c646561, 'Y', '2006-08-29 03:10:59'),
(1219, 19, 0x476f72726961, 'Y', '2006-08-29 03:10:59'),
(1220, 19, 0x426572646561, 'Y', '2006-08-29 03:10:59'),
(1221, 19, 0x557264696e61, 'Y', '2006-08-29 03:10:59'),
(1222, 19, '', 'Y', '2006-12-29 00:39:59'),
(1223, 19, 0x4269737461726174752065676f657261206f727269616e2e, 'Y', '2006-08-29 03:10:59'),
(1224, 19, 0x41757272656b616c646561, 'Y', '2006-08-29 03:10:59'),
(1225, 19, 0x4b6172706574616b2065676f6b6974752064697261, 'Y', '2006-08-29 03:10:59'),
(1226, 19, 0x4567756e6572617475, 'Y', '2006-08-29 03:10:59'),
(1227, 19, 0x506173616869747a612062657272696120626964616c69746121, 'Y', '2006-08-29 03:10:59'),
(1228, 19, 0x4573746174697374696b656e2067726166696b6f61, 'Y', '2006-08-29 03:10:59'),
(1234, 19, 0x48617269616b, 'Y', '2006-08-29 03:10:59'),
(1235, 19, 0x49747a756c6920686172697261, 'Y', '2006-08-29 03:10:59'),
(1237, 19, 0x42696c617475, 'Y', '2006-08-29 03:10:59'),
(1238, 19, 0x49747a756c62697261747520666f7275206d6f64657261747a61696c6561, 'Y', '2006-08-29 03:10:59'),
(1241, 19, 0x4d6f646572617a696f61, 'Y', '2006-08-29 03:10:59'),
(1243, 19, 0x6e6f726b, 'Y', '2006-08-29 03:10:59'),
(1244, 19, 0x4f6e617270656e6172656e3c62723e7a6169, 'Y', '2006-08-29 03:10:59'),
(1245, 19, 0x457a6b75747561, 'Y', '2006-08-29 03:10:59'),
(1246, 19, 0x616c6461747561, 'Y', '2006-08-29 03:10:59'),
(1251, 19, 0x4f6e61727475, 'Y', '2006-08-29 03:10:59'),
(1252, 19, 0x556b617475, 'Y', '2006-08-29 03:10:59'),
(1253, 19, 0x426964616c69, 'Y', '2006-08-29 03:10:59'),
(1254, 19, 0x4f6e617270656e6172656e207a61692064617564656e206d657a75616b, 'Y', '2006-08-29 03:10:59'),
(1255, 19, 0x466f726f656e207a657272656e6461, 'Y', '2006-08-29 03:10:59'),
(1256, 19, 0x4d6f64657261747561, 'Y', '2006-08-29 03:12:35'),
(1257, 19, 0x4861726961, 'Y', '2006-08-29 03:12:35'),
(1258, 19, 0x4567696c6561, 'Y', '2006-08-29 03:12:35'),
(1259, 19, 0x4d657a75616b, 'Y', '2006-08-29 03:12:35'),
(1260, 19, 0x417a6b656e206d657a7561, 'Y', '2006-08-29 03:12:35'),
(1261, 19, 0x6261726b6174752c20657a2064757a7520666f726f616e206964617a74656b6f206261696d656e696b, 'Y', '2006-08-29 03:12:35'),
(1262, 19, 0x4d657a7520686175206d6f646572617a696f7065616e206461676f2e204d6f64657261747a61696c65656b206f6e6172747a656e20647574656e65616e206167657274756b6f2064612e, 'Y', '2006-08-29 03:12:35'),
(1263, 19, 0x416c64616b6574656e20686973746f72696b6f61, 'Y', '2006-08-29 03:12:35'),
(1267, 19, 0x42696c616b65746172656e20656d6169747a616b, 'Y', '2006-08-29 03:12:35'),
(1270, 19, 0x49747861726f6e2067656c616b6f20706172746964612067757a7469616b, 'Y', '2006-08-29 03:16:24'),
(1271, 19, 0x49747861726f6e2067656c616b6f2070617274696461206170726f706f73616b, 'Y', '2006-08-29 03:16:24'),
(1273, 19, 0x4b6172706574612068757473696b2065676f6e20626568617220646120657a6162617475206168616c20697a6174656b6f, 'Y', '2006-08-29 03:16:24'),
(1055, 32, 0x45737461742064656c205253532046656564, 'Y', '2006-08-30 12:09:42'),
(1060, 32, 0x416d61676172, 'Y', '2006-08-30 12:09:42'),
(1091, 32, 0x54656d70732072657374616e74, 'Y', '2006-08-30 12:09:42'),
(1125, 32, 0x4f7264656e6172, 'Y', '2006-08-30 12:09:42'),
(1082, 32, 0x456e766961206c6120636f6e7472617373656e7961, 'Y', '2006-08-30 12:26:58'),
(1096, 32, 0x42656e76696e6775742f64612061206c61207665727369c3b320656e20646573656e766f6c7570616d656e742064656c20447261676f6e20476f2053657276657221, 'N', '2006-08-30 12:26:58'),
(1097, 32, 0x536920766f6c73206a7567617220756e61207061727469646120646520766572697461742c20736973706c617520766973697461203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e6574223e687474703a2f2f7777772e647261676f6e676f7365727665722e6e65743c2f613e2e, 'Y', '2006-08-30 12:26:58'),
(1636, 17, 0x496e64656b7320706172746969, 'Y', '2013-08-20 23:14:51'),
(1637, 17, 0x547279622070726f6665736a6f6e616c69737479, 'Y', '2013-08-20 23:14:51'),
(1638, 17, 0x57796e696b, 'Y', '2013-08-20 22:32:54'),
(1639, 17, 0x5779626965727a207a65726f2c206a6564656e206c7562207769ea63656a20656c656d656e74f377, 'Y', '2013-08-20 22:32:54'),
(1099, 32, 0x44c3b36e612d6c69206120756e20636f70206427756c6c20616c20464151207065722061206dc3a97320696e666f726d616369c3b32e, 'Y', '2006-08-30 12:26:58'),
(1112, 32, 0x4e6f7461207065722061207072696e63697069616e74733a206c6c6567697520656c204641512c20657370656369616c6d656e7420656e2072656c616369c3b320616c20766f73747265206e6976656c6c20696e696369616c20656e206c612070c3a067696e612064652070657266696c2e, 'Y', '2006-08-30 12:26:58'),
(1212, 32, 0x42656e76696775742f646120616c20257321, 'Y', '2006-08-30 12:26:58'),
(1213, 32, 0x42656e76696e6775742f646120612025732c20756e207365727669646f722025736c6c69757265257320706572206a756761722061202573676f7325732c206f6e206c657320706172746964657320657320227472616775656e222e, 'Y', '2006-08-30 12:26:58'),
(1227, 32, 0x456e7669616461206c61206e6f766120636f6e7472617373656e796121, 'Y', '2006-08-30 12:26:58'),
(1266, 32, 0x486f20706f747320766575726520636f6d206120756e61206d656e6120646520706172746964612070657220636f7272657520656c65637472c3b26e69632c20656e207175c3a8207327656d707261206c6120696e74657266c3ad636965206465206c61207861727861207065722066657220656c207461756c6572206465206a6f63206dc3a973206162656c6c69646f722e2050657220636f6d656ec3a761722061206a7567617220742768617572c3a0732064652066657220756e200d0a3c6120687265663d2272656769737465722e706870223e636f6d7074653c2f613e2c207369206e6f20686f206861732066657420656e636172612e204465737072c3a97320706f6472c3a073203c6120687265663d22656469745f70726f66696c652e706870223e65646974617220656c207465752070657266696c3c2f613e2069203c6120687265663d22656469745f62696f2e706870223e6166656769722d686920616c67756e6120696e666f726d616369c3b32062696f6772c3a0666963613c2f613e2c20657370656369616c6d656e7420656c732061706172746174732027416363657074612070617274696465733f272c20274e6976656c6c2720692027496e666f726d616369c3b3206465206e6976656c6c272c20c3ba74696c73207065722074726f62617220636f6e7472696e63616e74732e204920616c6573686f72657320706f6472c3a073206573747564696172206c61203c6120687265663d2275736572732e706870223e6c6c69737461206427757375617269733c2f613e2069207573617220656c73203c6120687265663d22666f72756d2f696e6465782e706870223e66c3b272756d733c2f613e2070657220612074726f62617220636f6e7472696e63616e747320616469656e747320706572203c6120687265663d226d6573736167652e7068703f6d6f64653d496e76697465223e636f6e76696461723c2f613e2061206a756761722e, 'Y', '2006-08-30 12:26:58'),
(1024, 32, 0x50617274696461206120696775616c746174, 'Y', '2006-08-30 12:35:42'),
(1076, 32, 0x4e6f746573207072697661646573, 'Y', '2006-08-30 12:35:42'),
(1083, 32, 0x486f6d2068612064656d616e617420756e6120636f6cc2b76c6f63616369c3b320657374c3a06e64617264206465206c6573207065647265732064652068c3a06e64696361702e, 'Y', '2006-08-30 12:35:42'),
(1084, 32, 0x436f6cc2b76c6f63616369c3b320657374c3a06e64617264, 'Y', '2006-08-30 12:41:05'),
(1085, 32, 0x536973706c61752c206d61726361206c657320706564726573206d6f72746573206920636c6963612025732746657427257320706572206163616261722e, 'Y', '2006-09-19 11:08:19'),
(1086, 32, '', 'Y', '2006-09-19 11:08:19'),
(1087, 32, 0x436f6d656e7461726973, 'Y', '2006-08-30 12:35:42'),
(1088, 32, 0x426169786172206c2773676620616d6220656c7320636f6d656e7461726973, 'Y', '2006-08-30 12:35:42'),
(1089, 32, 0x50756e7475616369c3b3, 'Y', '2006-08-30 12:35:42'),
(1090, 32, 0x5665757265206a7567616461, 'Y', '2006-08-30 12:35:42'),
(1092, 32, 0x506172746964612070756e747561626c65, 'Y', '2006-08-30 12:35:42'),
(1093, 32, 0x4d6f7374726172206e6f746573, 'Y', '2006-08-30 12:35:42'),
(1094, 32, 0x4465736172206e6f746573, 'Y', '2006-08-30 12:35:42'),
(1095, 32, 0x416d61676172206e6f746573, 'Y', '2006-08-30 12:35:42'),
(1111, 32, 0x4772c3a066696361206465206e6976656c6c, 'Y', '2006-08-30 12:35:42'),
(1430, 17, 0x49442075bf79746b6f776e696b61, 'Y', '2013-08-20 23:05:49'),
(1211, 32, 0x4a7567616461, 'Y', '2006-08-30 12:35:42'),
(1270, 32, 0x546f746573206c657320706172746964657320656e20657370657261, 'Y', '2006-08-30 12:35:42'),
(1271, 32, 0x506172746964657320616469656e747320656e20657370657261, 'Y', '2006-08-30 12:35:42'),
(1106, 32, 0x4c6c6973746120646520726573706f73746573, 'Y', '2006-08-30 12:41:05'),
(1108, 32, 0x546f726e617220616c206d69737361746765, 'Y', '2006-08-30 12:41:05'),
(1109, 32, 0x5669737461207072c3a8766961, 'Y', '2006-08-30 12:41:05'),
(1110, 32, 0x4e6f20732768612074726f62617420656c207265636570746f72, 'Y', '2006-08-30 12:41:05'),
(1003, 17, 0x6261736b696a736b69, 'Y', '2013-08-20 22:11:05'),
(1120, 32, 0x706572c3ad6f646573206465206dc3a973, 'Y', '2006-08-30 12:41:05'),
(1121, 32, 0x4d6973736174676520616e746572696f72, 'Y', '2006-08-30 12:41:05'),
(1122, 32, 0x4d697373617467657320706f73746572696f7273, 'Y', '2006-08-30 12:41:05'),
(1124, 32, 0x4a6f206d61746569782f61, 'Y', '2006-08-30 12:41:05'),
(1067, 32, 0x4c6c656e677561206d617465726e61, 'Y', '2006-08-30 12:48:45'),
(1068, 32, 0x436f6e656978656d656e7420656e206c61206c6c656e677561, 'Y', '2006-08-30 12:48:45'),
(1073, 32, 0x4e756d6572616369c3b3206465206c6573206a756761646573, 'Y', '2006-08-30 12:48:45'),
(1074, 32, 0x4e6f2075736172206ec3ba6d65726f732070657220736f6272652064656c20313030, 'Y', '2006-08-30 12:48:45'),
(1077, 32, 0x5461756c65727320706574697473, 'Y', '2006-08-30 12:48:45'),
(1078, 32, 0x5461756c657273206772616e7320646573206465, 'Y', '2006-08-30 12:48:45'),
(1079, 32, 0x506f73696369c3b3, 'Y', '2006-08-30 12:48:45'),
(1080, 32, 0x416cc3a7c3a0726961, 'Y', '2006-08-30 12:48:45'),
(1081, 32, 0x416d706cc3a0726961, 'Y', '2006-08-30 12:48:45'),
(1113, 32, 0x50617274696465732070756e747561626c6573, 'Y', '2006-08-30 12:48:45'),
(1131, 32, 0x486f2073656e746f2c2065742063616c656e20616c206d656e7973202564206469657320646520766163616e6365732070657220706f64657220636f6d656ec3a7617220756e20706572c3ad6f646520646520766163616e6365732e, 'Y', '2006-08-30 12:48:45'),
(1210, 32, 0x4564697461206c6120696e666f726d616369c3b32062696f6772c3a066696361, 'Y', '2006-08-30 12:48:45'),
(1214, 32, 0x5573756172697320616374697573, 'Y', '2006-08-30 12:48:45'),
(1218, 32, '', 'Y', '2006-09-19 11:08:19'),
(1219, 32, 0x5665726d656c6c, 'Y', '2006-08-30 12:48:45'),
(1220, 32, 0x56657264, 'Y', '2006-08-30 12:48:45'),
(1221, 32, 0x426c6175, 'Y', '2006-08-30 12:48:45'),
(1222, 32, '', 'Y', '2006-08-30 12:48:45'),
(1223, 32, 0x4d6f737472617220656e206c612070c3a067696e612064274573746174, 'Y', '2006-08-30 12:48:45'),
(1225, 32, 0x436172706574657320616a7573746164657321, 'Y', '2006-08-30 12:48:45'),
(1226, 32, 0x41637475616c69747a6172, 'Y', '2006-08-30 12:48:45'),
(1245, 32, 0x416d61676174, 'Y', '2006-08-30 12:48:45'),
(1273, 32, 0x556e6120636172706574612068612064276573746172206275696461207065722061206573626f727261722d6c6121, 'Y', '2006-08-30 12:48:45'),
(1069, 32, 0x446520666f6e73, 'Y', '2006-08-30 12:59:26'),
(1266, 19, 0x65506f7374617a206a6f6c617374656172656e20616e747a656b6f207a657262616974206769736120756c657274752064657a616b657a752c206261696e612077656220696e74657266617a612065726162696c747a656e206461207461756c6120697478757275736f61676f6120697a616e20646164696e2e204a6f6c617374656e2068617374656b6f203c6120687265663d2272656769737465722e706870223e697a656e6120656d616e3c2f613e2062656861722064757a752c20657a20626164757a75206f7261696e64696b206567696e2e204765726f203c6120687265663d22656469745f70726f66696c652e706870223e7a7572652070657266696c6120656469746174753c2f613e20657461203c6120687265663d22656469745f62696f2e706870223e696e666f726d617a696f2062696f67726166696b6f612073617274753c2f613e2c20626572657a696b6920276a6f6c617374656b6f2070726573743f272c20274d61696c61272065746120274d61696c61206f6861727261272c206175726b617269616b206175726b69747a656b6f2067617272616e747a69747375616b20646972612e204765726f203c6120687265663d2275736572732e706870223e65726162696c747a61696c65207a657272656e64613c2f613e2062656769726174752064657a616b657a7520657461203c6120687265663d2270686f72756d2f696e6465782e706870223e666f726f613c2f613e2065726162696c69206175726b617269616b206a6f6c617374657261203c6120687265663d226d6573736167652e7068703f6d6f64653d496e76697465223e676f6e62696461747a656b6f3c2f613e2e, 'Y', '2006-08-30 13:00:26'),
(1274, 19, 0x65, 'Y', '2006-08-30 13:00:49'),
(1275, 19, 0x65, 'Y', '2006-08-30 13:00:49'),
(1276, 19, 0x6f, 'Y', '2006-08-30 13:00:49'),
(1277, 19, 0x6f, 'Y', '2006-08-30 13:00:49'),
(1234, 32, 0x46696c73, 'Y', '2006-08-30 13:05:53'),
(1235, 32, 0x546f726e617220616c2066696c, 'Y', '2006-08-30 13:05:53'),
(1237, 32, 0x436572636172, 'Y', '2006-08-30 13:05:53'),
(1241, 32, 0x4d6f646572616e74, 'Y', '2006-08-30 13:05:53'),
(1243, 32, 0x706572, 'Y', '2006-08-30 13:05:53'),
(1244, 32, 0x4573706572616e743c62723e6170726f76616369c3b3, 'Y', '2006-08-30 13:05:53'),
(1246, 32, 0x656469746174, 'Y', '2006-08-30 13:05:53'),
(1251, 32, 0x4170726f766172, 'Y', '2006-08-30 13:05:53'),
(1252, 32, 0x52656275746a6172, 'Y', '2006-08-30 13:05:53'),
(1253, 32, 0x456e76696172206d69737361746765, 'Y', '2006-08-30 13:05:53'),
(1254, 32, 0x4d69737361746765732070656e64656e74732064276170726f76616369c3b3, 'Y', '2006-08-30 13:05:53'),
(1255, 32, 0x4c6c697374612064652066c3b272756d73, 'Y', '2006-08-30 13:05:53'),
(1256, 32, 0x4d6f6465726174, 'Y', '2006-08-30 13:05:53'),
(1257, 32, 0x46696c, 'Y', '2006-08-30 13:05:53'),
(1258, 32, 0x4175746f72, 'Y', '2006-08-30 13:05:53'),
(1259, 32, 0x4d6973736174676573, 'Y', '2006-08-30 13:05:53'),
(1260, 32, 0x446172726572206d69737361746765, 'Y', '2006-08-30 13:05:53'),
(1261, 32, 0x486f2073656e746f2c206e6f2074656e73207065726dc3ad732070657220657363726975726520656e20656c2066c3b272756d, 'Y', '2006-08-30 13:05:53'),
(1262, 32, 0x417175657374206d6973736174676520657374c3a02073656e74206d6f64657261742e20536572c3a0206d6f7374726174206120746f74686f6d20756e20636f7020656c73206d6f64657261646f7273206c27686167696e206170726f7661742e, 'Y', '2006-08-30 13:05:53'),
(1263, 32, 0x48697374c3b2726961206465207265766973696f6e73, 'Y', '2006-08-30 13:05:53'),
(1267, 32, 0x526573756c746174206465206c612062c3ba737175656461, 'Y', '2006-08-30 13:05:53'),
(1126, 32, 0x436f7265612064656c204e6f7264, 'Y', '2006-08-30 13:09:38'),
(1127, 32, 0x436f7265612064656c20537564, 'Y', '2006-08-30 13:09:38'),
(1128, 32, '', 'Y', '2006-09-19 11:08:19'),
(1129, 32, 0x53c3a872626961, 'Y', '2006-08-30 13:09:38'),
(1130, 32, 0x4c61205465727261, 'Y', '2006-08-30 13:09:38'),
(973, 18, 0x436f6d652066616363696f20616420616363656465726520616c206d696f206163636f756e74207069752076656c6f63656d656e7465203f, 'Y', '2006-09-04 14:23:30'),
(1102, 32, 0x42617365206465206461646573206920656e6369636c6f70c3a86469612064656c20476f476f44, 'Y', '2006-09-06 12:44:45'),
(1103, 32, 0x556e61206772616e206261736520646520646164657320646520706172746964657320656e7472652070726f66657373696f6e616c73, 'Y', '2006-09-06 12:44:45'),
(1104, 32, '', 'Y', '2006-09-19 11:08:19'),
(1105, 32, 0x556e6120636f6c756d6e61207365746d616e616c20736f62726520656c20676f2c20646520526f622076616e205a65696a7374, 'Y', '2006-09-06 12:44:45'),
(1228, 32, 0x4772c3a0666963612064276573746164c3ad73746971756573, 'Y', '2006-09-06 12:44:45'),
(1044, 32, 0x48617320766f6c677574206a7567617220656e20756e6120706f73696369c3b3206465207461756c657220696cc2b76c6567616c, 'Y', '2006-09-06 13:01:08'),
(1045, 32, 0x456c206cc3ad6d69742064652074656d707320c3a973206d6173736120637572742e20536973706c617520657363756c6c2c20636f6d2061206dc3ad6e696d2c20756e6120686f72612e, 'Y', '2006-09-06 13:01:08'),
(1046, 32, 0x486f2073656e746f2c206e6f2074656e7320656c7320636f6f6b696573207065726d65736f7320616c20746575206e6176656761646f722e, 'Y', '2006-09-06 13:01:08'),
(1047, 32, 0x486f2073656e746f2c206a612073276861206a756761742061717565737420746f726e2e, 'Y', '2006-09-06 13:01:08'),
(1048, 32, 0x50c3a067696e61206e6f2074726f626164612e20536973706c617520696e666f726d6120656c732061646d696e6973747261646f72732064656c2073697374656d61206465207175616e206861206f636f72726567757420617175657374206572726f722069206465207175616c7365766f6c20636f736120717565206c276861676920706f677574206361757361722e, 'Y', '2006-09-06 13:01:08'),
(1049, 32, 0x4c27494475737561726920636f6e74c3a92063617261637465727320696cc2b76c6567616c732e204e6f6dc3a973206573207065726d6574656e20656c732063617261637465727320612d7a2c20412d5a2c20302d392069202d5f2b2c206920656c207072696d65722068612064652073657220612d7a2c20412d5a2e, 'Y', '2006-09-06 13:01:08'),
(1050, 32, 0x486f2073656e746f2c206e6f20686520706f6775742074726f62617220656c206d697373617467652071756520766f6c696573206c6c656769722e, 'Y', '2006-09-06 13:01:08'),
(1051, 32, 0x486f2073656e746f2c206e6f20686520706f6775742074726f62617220656c206c6c656e677561746765206f20656c20677275702071756520766f6c69657320747261647569722e20536973706c61752c20706f7361277420656e20636f6e746163746520616d6220656c732061646d696e6973747261646f72732e, 'Y', '2006-09-06 13:01:08'),
(1053, 32, 0x41717565737420757375617269206a6120c3a97320756e2061646d696e6973747261646f722e, 'Y', '2006-09-06 13:01:08'),
(1059, 32, 0x4d6f7374726172, 'Y', '2006-09-06 13:11:29'),
(532, 32, 0x446f73206a756761646f727320636f6d706574656978656e2061206c27686f727461206427656e636572636c6172207465727269746f726920656e20756e207461756c657220717561647261742e20456c207461756c65722074c3a920313978313920696e74657273656363696f6e732c20706572c3b22074616d62c3a9206e2768692068612064652039783920692064652031337831332e20416c7465726e61746976616d656e742c20706f73656e207065647265732064656c2073657520636f6c6f7220736f627265206c657320696e74657273656363696f6e73206275696465732e205072696d6572206a75676120656c206e656772652c206465737072c3a97320656c20626c616e632e0d0a0d0a53692c202d6465737072c3a973206427756e61206a75676164612d20756e2064656c73206772757073206465206c276f706f6e656e74206e6f2074c3a920636170206c6c696265727461742c206c65732070656472657320642761717565697820677275702073c3b36e207472657465732064656c207461756c65722028707265736f6e65727320636170747572617473292e20556e61206a756761646120c3a97320696cc2b76c6567616c207369202d6465737072c3a973206427756e6120636170747572612d20656c20677275702070726f7069206e6f2074c3a9206c6c69626572746174732e0d0a0d0a5175616e20616d6264c3b373206a756761646f72732070617373656e20737563636573736976616d656e74206c612070617274696461207327686120616361626174206920657320636f6d7074613a20456c732070756e7473206e6575727472616c73202864616d65292073276f6d706c656e2c2069206c657320706564726573206d6f727465732073c3b36e207472657465732e20457320636f6d7074656e20656c73207465727269746f72697320626c616e632069206e6567726520636f6d2061206c657320696e74657273656363696f6e7320726f64656a61646573206d656e7973206c657320706564726573206361707475726164657320706572206c276f706f6e656e742e0d0a0d0a4dc3a9732061203c6120687265663d22687474703a2f2f706c6179676f2e746f2f696e7465726163746976652f696e6465782e68746d6c22207461726765743d6e65773e54686520496e7465726163746976652057617920546f20476f3c2f613e2e, 'Y', '2006-09-07 13:45:22'),
(533, 32, 0x4f6e207075632074726f626172206dc3a9732070c3a067696e657320736f62726520656c20676f2061206c612078617278613f, 'Y', '2006-09-07 13:45:22'),
(534, 32, 0x41206c61203c6120687265663d222f6c696e6b732e706870223e70c3a067696e61206427656e6c6c61c3a76f733c2f613e2064656c20447261676f6e2e, 'Y', '2006-09-07 13:45:22'),
(535, 32, '', 'Y', '2006-09-19 11:08:19'),
(536, 32, 0x46696e616c20646520706172746964612e0d0a4c6120646172726572612066617365206465206c6120706172746964612c20656e207175c3a8206a61206e6f2065732066616e206a75676164657320657374726174c3a867697175657320706572206174616361722067727570732c2073696ec3b3206e6f6dc3a973206c6573206d696c6c6f7273206a7567616465730d0a706572206175676d656e74617220656c73207465727269746f72697320717565206a612068692068612e, 'Y', '2006-09-07 13:45:22'),
(537, 32, '', 'N', '2006-09-19 11:08:19'),
(538, 32, 0x417461726920c3a97320756e6120616d656e61c3a76120696d6d65646961746120646520636170747572617220756e61207065647261206f20756e20677275702e205175616e2065732064656978612061717565737461207065647261206f206772757020616d6220756e6120736f6c61206c6c696265727461742c206c6c61766f7273206573206469752071756520657374c3a02022656e206174617269222e0d0a456e206c657320706172746964657320636172612061206361726120646972202261746172692220c3a973206e6f726d616c206920636f6e7369646572617420636f6d2061206564756361742c20706572c3b2206e6f20c3a973206f626c696761746f72692e204e6f726d616c6d656e7420656c73206a756761646f72732061636f7264656e207369206665722d686f206f206e6f206162616e7320646520636f6d656ec3a76172206c6120706172746964612e0d0a456e20756e6120636c61737365206f20756e61207061727469646120616d6220756e2068c3a06e6469636170206d6f6c7420656c6576617420706f742074656e69722073656e7469742071756520656c20626c616e6320616a75646920656c206e656772652061766973616e74206465206c2761746172692e0d0a44697220617461726920656e206c6573207061727469646573206f6e6c696e6520657320636f6e73696465726120726564756e64616e742e, 'N', '2006-09-07 13:45:22'),
(539, 32, '', 'Y', '2006-09-19 11:08:19'),
(540, 32, 0x556e206b6f20c3a97320756e612073697475616369c3b320616c207461756c657220656e207175c3a8206573206361707475726120756e6120736f6c6120706564726120756e20636f70206920756e20616c7472652e204b6f20766f6c206469722c206c69746572616c6d656e742c2022657465726e69746174222e, 'Y', '2006-09-07 13:45:22'),
(623, 32, '', 'N', '2006-09-19 11:08:19'),
(645, 32, '', 'Y', '2006-09-19 11:08:19'),
(655, 32, '', 'N', '2006-09-19 11:08:19'),
(657, 32, '', 'Y', '2006-09-19 11:08:19'),
(665, 32, '', 'N', '2006-09-19 11:08:19'),
(667, 32, '', 'N', '2006-09-19 11:08:19'),
(669, 32, '', 'Y', '2006-09-19 11:08:19'),
(686, 32, '', 'N', '2006-09-19 11:08:19'),
(690, 32, '', 'N', '2006-09-19 11:08:19'),
(692, 32, '', 'N', '2006-09-19 11:08:19'),
(696, 32, '', 'Y', '2006-09-19 11:08:19'),
(700, 32, '', 'N', '2006-09-19 11:08:19'),
(702, 32, '', 'N', '2006-09-19 11:08:19'),
(704, 32, '', 'N', '2006-09-19 11:08:19'),
(541, 32, 0x457320706f7420636f6e74696e75617220756e61207061727469646120717565207327686120616361626174207065722074656d70733f, 'Y', '2006-09-08 12:14:19'),
(542, 32, 0x4e6f2e203c693e536973706c61752c20636f6d656ec3a761206c657320746576657320706172746964657320616d623c6120687265663d222f6661712e7068703f726561643d74266361743d3536223e6d61726765732064652074656d7073206170726f70696174733c2f613e213c2f693e, 'Y', '2006-09-08 12:14:19'),
(545, 32, '', 'Y', '2006-09-19 11:08:19'),
(546, 32, 0x4b797520766f6c2064697220226e6976656c6c206465207072696e63697069616e74206f206465206e6f2d6d6573747265222e0d0a456c73206b7975732076616e206465732064656c2033302066696e732061206c27312c20657373656e74203120656c206dc3a97320666f72742e204c6120646566696e696369c3b3206427756e203330206b797520c3a973206c61206427756e6120706572736f6e612071756520686120617072c3a873206920656e74c3a873206c6573207265676c65732c20706572c3b220717565206e6f206869206861206a75676174206d61692063617020706172746964612e200d0a456c73206e6976656c6c73206b7975206e6f20636f6d656e63656e20612073657220646520666961722066696e7320616c73203130206b79752c207175616e20756e206a756761646f7220706f7420656e66726f6e7461722d736520616d6220756e2031203c6120687265663d222f6661712e7068703f726561643d74266361743d3323456e7472793339223e64616e3c2f613e20656e20756e612070617274696461206465203920706564726573206465203c6120687265663d222f6661712e7068703f726561643d74266361743d33353723456e7472793937223e68616e64696361703c2f613e2e, 'Y', '2006-09-08 12:14:19'),
(547, 32, '', 'Y', '2006-09-19 11:08:19'),
(548, 32, 0x44616e20766f6c206469722022756e206e6976656c6c206465206d6573747265222e0d0a456c732064616e732076616e206465206c27312063617020616d756e742c20636f6d206dc3a97320616c74206dc3a97320666f72742e204573206469752071756520756e20352064616e20616d61746575722074c3a9206c61206d61746569786120666f72c3a7612071756520756e20312064616e2070726f2e2028456c732070726f66657373696f6e616c73206e6f2074656e656e206e6976656c6c73203c6120687265663d222f6661712e7068703f726561643d74266361743d3323456e7472793338223e6b79753c2f613e29, 'Y', '2006-09-08 12:14:19'),
(549, 32, 0x5175616e7473206469657320646520766163616e6365732074696e6320616c20447261676f6e3f, 'Y', '2006-09-08 12:14:19'),
(550, 32, 0x46696e7320612033302028656c206dc3a078696d20616e75616c292e2043616461206d657320732761666567656978656e20322c35206469657320646520766163616e63657320616c2074657520636f6d7074652e20536920657473206e6f7520616c20447261676f6e20636f6d656e63657320616d62203134206469657320646520766163616e6365732e, 'Y', '2006-09-08 12:14:19'),
(551, 32, 0x5175c3a820766f6c656e2064697220746578746f73206465206c612070c3a067696e6120642745737461743f, 'N', '2006-09-08 12:14:19'),
(552, 32, 0x417175c3ad2074656e7320756e612062726575206578706c6963616369c3b32064656c7320746578746f7320656e206c61207461756c612064652064616c74206465203c6120687265663d222f7374617475732e706870223e6c6120746576612070c3a067696e6120642745737461743c2f613e2e0d0a3c756c3e0d0a3c6c693e3c623e4e6f6d3c2f623e20456c206e6f6d207265616c206465206c277573756172692c206f2073656d626c616e742e2054657874206c6c697572652e0d0a3c6c693e3c623e49447573756172693c2f623e20456c206e6f6d206427656e747261646120717565206c2775737561726920686120646f6e61742e204e6f206564697461626c652e0d0a3c6c693e3c623e416363657074612070617274696465733f3c2f623e20496e666f726d616369c3b32070657220616c7320706f737369626c6573206f706f6e656e74732e2054657874206c6c697572652e0d0a3c6c693e3c623e4e6976656c6c3c2f623e204e6976656c6c2061637475616c206465206c2775737561726920616c20447261676f6e2e2047656e657261742070656c207365727669646f722e0d0a3c6c693e3c623e496e666f726d616369c3b32064656c206e6976656c6c3c2f623e20496e666f726d616369c3b32061646963696f6e616c2c20706572206578656d706c6520656c206e6976656c6c2064656c20636c75622e2054657874206c6c697572652e0d0a3c2f756c3e, 'N', '2006-09-08 12:14:19'),
(553, 32, 0x5175616e20636f72726520656c206d65752072656c6c6f7467653f, 'Y', '2006-09-08 12:14:19'),
(554, 32, 0x456c207465752072656c6c6f74676520636f727265203c623e6e6f6dc3a9733c2f623e2c207175616e20c3a97320656c2074657520746f726e2e0d0a0d0a4e6f20636f7272650d0a3c756c3e0d0a3c6c693e7175616e20656c20746575206f706f6e656e74206861206427656e76696172206c612073657661206a75676164613c2f6c693e0d0a3c6c693e647572616e7420656c203c6120687265663d222f6661712e7068703f726561643d74266361743d353623456e7472793631223e74656d707320646520646f726d69723c2f613e3c2f6c693e0d0a3c6c693e647572616e74206c6573207465766573203c6120687265663d222f6661712e7068703f726561643d74266361743d353623456e7472793636223e766163616e6365733c2f613e3c2f6c693e0d0a3c6c693e656c732063617073206465207365746d616e612028736920686173206573636f6c6c69742061717565737461206f706369c3b320656e206c6120203c6120687265663d222f6661712e7068703f726561643d74266361743d33353723456e7472793434223e696e766974616369c3b33c2f613e293c2f6c693e0d0a3c2f756c3e, 'N', '2006-09-08 12:14:19'),
(1033, 11, 0x4f656b72612669756d6c3b656e73, 'Y', '2006-09-08 12:31:12'),
(1034, 11, 0x436174616c61616e73, 'Y', '2006-09-08 12:31:12'),
(1035, 11, 0x4368696e656573202845656e766f756469672920287574662d3829, 'Y', '2006-09-08 12:31:12'),
(1036, 11, 0x57616e6e65657220776f7264656e20696e61637469657665206765627275696b65727370726f6669656c656e2076657277696a646572643f, 'N', '2006-09-08 12:31:12'),
(1037, 11, 0x4e6f6f69742e2044657a6520776f7264656e2067656d61726b6565726420616c7320696e6163746965662c20656e207665726477696a6e656e2064616172646f6f722076616e206465206e6f726d616c65206c696a7374206d6574206765627275696b6572732e, 'N', '2006-09-08 12:31:12'),
(1038, 11, 0x4d616720696b2068756c706d696464656c656e206765627275696b656e206f6d2065656e20737465726b657265207370656c657220746520776f7264656e3f, 'Y', '2006-09-08 12:31:12'),
(1039, 11, 0x4e61747575726c696a6b206d6167206461742e204a65206b756e7420626f656b656e206c657a656e2c20676f2d70726f626c656d656e206f706c6f7373656e2c20746567656e20636f6d707574657273207370656c656e2c206d657420616e64657265207370656c6572732070726174656e2e2055697420666f72756d2d64697363757373696573206973206765626c656b656e20646174207665656c202d77656c6c6963687420616c6c652d207370656c657273206869657220266561637574653b266561637574653b6e206f66206d6565722076616e2064657a652064696e67656e20646f656e2e, 'N', '2006-09-08 12:31:12'),
(1042, 11, 0x486f65206c6f6720696b207569743f, 'Y', '2006-09-08 12:31:12'),
(1043, 11, 0x4b6c696b206f70206465206c696e6b202241666d656c64656e22206f6e64657261616e20646520706167696e612c2061616e20646520726563687465726b616e742e20416c73206a6520333020646167656e206c616e67206e696574206163746965662062656e74206f70204447532c207665726c6f6f7074206865742022636f6f6b696522206461742064652073657276657220626577616172642068656566742c206d657420616c732065666665637420646174206a65206175746f6d6174697363682075697467656c6f676420776f7264742e, 'Y', '2006-09-08 12:31:12'),
(1044, 11, 0x44657a65207a6574206c6569647420746f742065656e206f6e6d6f67656c696a6b65207374656c6c696e672e, 'Y', '2006-09-08 12:31:12'),
(1045, 11, 0x44652074696a64736c696d696574206973207465206b6f72742c206b69657320616c737475626c696566742074656e6d696e73746520266561637574653b266561637574653b6e207575722e, 'Y', '2006-09-08 12:31:12'),
(1046, 11, 0x536f7272792c2075206865627420636f6f6b69657320696e2075772062726f77736572207569746765736368616b656c642e, 'Y', '2006-09-08 12:31:12'),
(1047, 11, 0x536f7272792c2064657a65207a657420697320616c206765737065656c642e, 'Y', '2006-09-08 12:31:12'),
(1048, 11, 0x446520706167696e61206b616e206e69657420776f7264656e206765766f6e64656e2e204e65656d20616c737475626c6965667420636f6e74616374206f70206d6574206465206265686565726465722076616e206465207365727665722e205665726d656c64206865742074696a647374697020776161726f7020646520666f7574207a69636820766f6f72646565642c20656e20646520616374696573206469652075206865656674206f6e6465726e6f6d656e206469652064657a6520666f7574206d6f67656c696a6b2068656262656e207665726f6f727a61616b742e, 'Y', '2006-09-08 12:31:12'),
(1049, 11, 0x44657a65206765627275696b6572736e61616d206265766174206b6172616b7465727320646965206e696574207a696a6e20746f656765737461616e2e20416c6c65656e206465206b6172616b7465727320612d7a2c20412d5a2c20302d3920656e202d5f2b207a696a6e20746f656765737461616e2e204465206765627275696b6572736e61616d206d6f657420626567696e6e656e206d65742065656e206c65747465722028612d7a206f6620412d5a292e, 'Y', '2006-09-08 12:31:12'),
(1050, 11, 0x536f7272792c20696b206b616e2068657420626572696368742064617420752077696c742062656b696a6b656e206e6965742076696e64656e2e, 'Y', '2006-09-08 12:31:12'),
(1051, 11, 0x536f7272792c20696b206b616e206465207461616c206f662067726f65702064696520752077696c742076657274616c656e206e6965742076696e64656e2e204e65656d74207520616c737475626c6965667420636f6e74616374206f70206d657420737570706f72742e, 'Y', '2006-09-08 12:31:12'),
(1053, 11, 0x44657a65207573657220697320616c2061646d696e2e, 'Y', '2006-09-08 12:31:12'),
(1055, 11, '', 'Y', '2007-06-04 15:49:02'),
(1059, 11, 0x546f6f6e, 'Y', '2006-09-08 12:31:12'),
(1060, 11, 0x56657262657267, 'Y', '2006-09-08 12:31:12'),
(1067, 11, 0x4d6f656465727461616c, 'Y', '2006-09-08 12:31:12'),
(1068, 11, 0x5461616c62656865657273696e67, 'Y', '2006-09-08 12:31:12'),
(1069, 11, 0x4f6e646572, 'Y', '2006-09-08 12:31:12'),
(1073, 11, 0x4e756d6d6572696e672076616e207a657474656e, 'Y', '2006-09-08 12:31:12'),
(1074, 11, 0x4765627275696b206765656e20676574616c6c656e2067726f7465722064616e20313030, 'Y', '2006-09-08 12:31:12'),
(1076, 11, 0x50726976266561637574653b207370656c6e6f746974696573, 'Y', '2006-09-08 12:31:12'),
(1077, 11, 0x4b6c65696e6520737065656c626f7264656e, 'Y', '2006-09-08 12:31:12'),
(1078, 11, 0x47726f746520737065656c626f7264656e2076616e6166, 'Y', '2006-09-08 12:31:12'),
(1079, 11, 0x5374656c6c696e67, 'Y', '2006-09-08 12:31:12'),
(1080, 11, 0x486f6f677465, 'Y', '2006-09-08 12:31:12'),
(1081, 11, 0x42726565647465, 'Y', '2006-09-08 12:31:12'),
(1082, 11, 0x5665727374757572207761636874776f6f7264, 'Y', '2006-09-08 12:31:12'),
(1237, 11, 0x5a6f656b656e, 'Y', '2006-09-19 02:19:09'),
(1213, 24, 0x56c3ad74616a746520762025732c202573766fc4be6e6f6d25732073657276657269206e61206872616e6965202573676f25732c206b646520c5a56168c3a1c5a120c5a56168c3a1c5a1207320647261c48d6f75207679747276616c6f73c5a56f752e, 'Y', '2006-09-10 10:38:07'),
(1238, 24, 0x507265706e692066c3b372756d206d6f646572c3a1746f7261, 'Y', '2006-09-10 10:38:07'),
(1241, 24, 0x4d6f646572756a65, 'Y', '2006-09-10 10:38:07'),
(1259, 24, 0x506fc5a17461, 'Y', '2006-09-10 10:40:12'),
(1273, 24, 0x50726965c48d696e6f6b206d7573c3ad206279c5a5207072c3a17a646e792c206162792073612064616c207a7275c5a169c5a531, 'Y', '2006-09-10 10:40:12'),
(1274, 24, 0x64, 'Y', '2006-09-10 10:40:12'),
(1275, 24, 0x64, 'Y', '2006-09-10 10:40:12'),
(1276, 24, 0x68, 'Y', '2006-09-10 10:40:12'),
(1277, 24, 0x68, 'Y', '2006-09-10 10:40:12'),
(5734, 25, 0x4469666572656ec5a3c48320636f746172652070656e747275207069657264657265, 'Y', '2014-11-26 10:19:43'),
(1270, 24, 0x56c5a165746b7920c48d616b616ac3ba636520687279, 'Y', '2006-09-10 10:42:30'),
(1271, 24, 0x56686f646ec3a920c48d616b616ac3ba636520687279, 'Y', '2006-09-10 10:42:30'),
(1083, 11, 0x45656e207374616e646161726420706c61617473696e672076616e2068616e64696361707374656e656e2069732061616e67657672616167642e, 'Y', '2016-07-27 19:46:55'),
(1084, 11, 0x5374616e646161726420706c61617473696e67, 'Y', '2006-09-10 20:15:55'),
(1085, 11, 0x4d61726b65657220616c737475626c6965667420646520646f6465207374656e656e20656e206b6c696b20646161726e61206f70202573276b6c6161722725732e, 'Y', '2006-09-10 20:15:55'),
(1086, 11, 0x476576616e67656e, 'Y', '2006-09-10 20:15:55'),
(1087, 11, 0x4f706d65726b696e67656e, 'Y', '2016-07-27 18:52:47'),
(1088, 11, 0x5347462062657374616e64206d657420616c2068657420636f6d6d656e7461617220646f776e6c6f6164656e, 'Y', '2016-07-27 18:52:47'),
(1089, 11, 0x50756e74656e74656c6c696e67, 'Y', '2006-09-10 20:15:55'),
(1090, 11, 0x546f6f6e207a6574, 'Y', '2006-09-10 20:15:55'),
(1091, 11, 0x526573746572656e64652074696a64, 'Y', '2006-09-10 20:15:55'),
(1093, 11, 0x546f6f6e206e6f746974696573, 'Y', '2006-09-10 20:15:55'),
(1094, 11, 0x426577616172206e6f746974696573, 'Y', '2006-09-10 20:15:55'),
(1095, 11, 0x56657262657267206e6f746974696573, 'Y', '2006-09-10 20:15:55'),
(1096, 11, 0x57656c6b6f6d2062696a206465206f6e7477696b6b656c2d7665727369652076616e20447261676f6e20476f2053657276657221, 'Y', '2013-01-11 15:49:09'),
(1097, 11, 0x416c732075206f70206465206563687465207365727665722077696c74207370656c656e2c2067612064616e206e616172203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e6574223e687474703a2f2f7777772e647261676f6e676f7365727665722e6e65743c2f613e2e, 'Y', '2006-09-10 20:15:55'),
(1632, 17, 0x4e6965, 'Y', '2013-08-20 23:14:51'),
(1633, 17, 0x57737a7973746b6f, 'Y', '2013-08-20 23:14:51'),
(1634, 17, 0x54616b, 'Y', '2013-08-20 23:14:51'),
(1635, 17, 0x4e6965, 'Y', '2013-08-20 23:14:51'),
(1099, 11, 0x52616164706c6565672064652046415120287665656c67657374656c64652076726167656e2920766f6f72206d65657220696e666f2e, 'Y', '2006-09-10 20:15:55'),
(1102, 11, 0x476f476f4420646174616261736520656e20656e6379636c6f7065646965, 'Y', '2006-09-10 20:15:55');
INSERT INTO `Translations` (`Original_ID`, `Language_ID`, `Text`, `Translated`, `Updated`) VALUES
(1103, 11, 0x45656e2067726f7465206461746162617365206d65742070726f66657373696f6e656c652070617274696a656e, 'Y', '2006-09-10 20:15:55'),
(1104, 11, 0x4465204d616769652076616e20476f, 'Y', '2006-09-10 20:15:55'),
(1105, 11, 0x45656e2077656b656c696a6b736520636f6c756d6e206f76657220476f20646f6f7220526f622076616e205a65696a7374, 'Y', '2006-09-10 20:15:55'),
(1106, 11, 0x4c696a7374206d657420616e74776f6f7264656e, 'Y', '2006-09-10 20:15:55'),
(1108, 11, 0x5465727567206e6161722062657269636874, 'Y', '2006-09-10 20:15:55'),
(1110, 11, 0x4b616e206f6e7476616e676572206e6965742076696e64656e, 'Y', '2006-09-10 20:15:55'),
(1111, 11, 0x526174696e676772616669656b, 'Y', '2016-07-29 15:17:10'),
(1112, 11, 0x4f706d65726b696e6720766f6f7220626567696e6e6572733a206c6565732064652046415120227665656c67657374656c64652076726167656e2220766f6f722068657420696e7374656c6c656e2076616e206a6520626567696e6e6976656175206f70206a652070726f6669656c706167696e612e, 'Y', '2006-09-10 20:15:55'),
(1429, 17, 0x50727a656369776e696b, 'Y', '2013-08-20 23:05:49'),
(3251, 11, 0x42657761617220736a61626c6f6f6e, 'Y', '2013-01-11 16:18:35'),
(1121, 11, 0x566f7269672062657269636874, 'Y', '2006-09-10 23:23:23'),
(1122, 11, 0x566f6c67656e64652062657269636874, 'Y', '2006-09-10 23:23:23'),
(1124, 11, 0x496b7a656c66, 'Y', '2006-09-10 23:23:23'),
(1125, 11, 0x536f7274656572, 'Y', '2006-09-10 23:23:23'),
(1126, 11, 0x4b6f72656120284e6f6f726429, 'Y', '2006-09-10 23:23:23'),
(1127, 11, 0x4b6f72656120285a75696429, 'Y', '2006-09-10 23:23:23'),
(1128, 11, '', 'Y', '2007-06-04 15:49:02'),
(1129, 11, 0x53657276692665756d6c3b, 'Y', '2006-09-10 23:23:23'),
(1130, 11, 0x4161726465, 'Y', '2006-09-10 23:23:23'),
(1131, 11, 0x536f7272792c207520686562742074656e6d696e7374652025642076616b616e746965646167656e206e6f646967206f6d2065656e2076616b616e746965706572696f646520746520626567696e6e656e2e, 'Y', '2006-09-10 23:23:23'),
(1210, 11, 0x57696a7a69672062696f677261666965, 'Y', '2006-09-10 23:23:23'),
(1211, 11, 0x5a6574, 'Y', '2006-09-10 23:23:23'),
(1212, 11, 0x57656c6b6f6d2062696a20646520257321, 'Y', '2006-09-10 23:23:23'),
(1213, 11, 0x57656c6b6f6d2062696a2025732c2065656e20257367726174697325732073657276657220766f6f7220686574207370656c656e2076616e202573676f25732c20776161722064652070617274696a656e20227a69636820766f6f7274736c6570656e222e, 'Y', '2006-09-10 23:23:23'),
(1214, 11, 0x41637469657665206765627275696b657273, 'Y', '2006-09-10 23:23:23'),
(1218, 11, 0x41636874657267726f6e64, 'Y', '2006-09-10 23:23:23'),
(1219, 11, 0x526f6f64, 'Y', '2006-09-10 23:23:23'),
(1220, 11, 0x47726f656e, 'Y', '2006-09-10 23:23:23'),
(1221, 11, 0x426c617577, 'Y', '2006-09-10 23:23:23'),
(1222, 11, '', 'Y', '2007-06-04 15:49:02'),
(1223, 11, 0x546f6f6e206f7020737461747573706167696e61, 'Y', '2006-09-10 23:23:23'),
(1224, 11, 0x566f6f7267726f6e64, 'Y', '2006-09-10 23:23:23'),
(1225, 11, 0x4d617070656e2061616e67657061737421, 'Y', '2006-09-10 23:23:23'),
(1226, 11, '', 'Y', '2007-06-04 15:49:02'),
(1227, 11, 0x4e69657577207761636874776f6f72642076657273747575726421, 'Y', '2006-09-10 23:23:23'),
(1228, 11, 0x537461746973746973636865206772616669656b, 'Y', '2006-09-10 23:23:23'),
(2055, 36, 0x56c3a16c746f7ac3a1736f6b206d656e74c3a97365, 'Y', '2015-09-19 19:20:00'),
(1243, 11, 0x646f6f72, 'Y', '2006-09-19 02:19:09'),
(1244, 11, 0x5761636874206f703c62723e676f65646b657572696e67, 'Y', '2006-09-19 02:19:09'),
(1245, 11, 0x566572626f7267656e, 'Y', '2006-09-19 02:19:09'),
(1246, 11, 0x676577696a7a696764, 'Y', '2006-09-19 02:19:09'),
(1251, 11, 0x4163636570746572656e, 'Y', '2006-09-19 02:19:09'),
(1252, 11, 0x416677696a7a656e, 'Y', '2006-09-19 02:19:09'),
(1253, 11, 0x5665727a656e64, 'Y', '2006-09-19 02:19:09'),
(1254, 11, 0x42657269636874656e207761636874656e64206f7020676f65646b657572696e67, 'Y', '2006-09-19 02:19:09'),
(1255, 11, 0x4c696a73742076616e20666f72756d73, 'Y', '2006-09-19 02:19:09'),
(1256, 11, 0x47656d6f64657265657264, 'Y', '2006-09-19 02:19:09'),
(1258, 11, 0x417574657572, 'Y', '2006-09-19 02:19:09'),
(1259, 11, 0x42657269636874656e, 'Y', '2006-09-19 02:19:09'),
(1260, 11, 0x4c6161747374652062657269636874, 'Y', '2006-09-19 02:19:09'),
(1261, 11, 0x536f7272792c2075206d6167206765656e2062657269636874656e20706c61617473656e206f702064697420666f72756d2e, 'Y', '2006-09-19 02:19:09'),
(1262, 11, 0x446974206265726963687420776f7264742067656d6f646572656572642e2057616e6e65657220646520226d6f64657261746f727322206865742068656262656e20676f656467656b657572642c20776f72647420686574206765746f6f6e642e, 'Y', '2006-09-19 02:19:09'),
(1270, 6, 0x546f646173206c617320706172746964617320656e20657370657261, 'Y', '2006-09-22 21:00:47'),
(1273, 6, 0x556e6120636172706574612064656265206573746120766163ed6120706172612073657220626f727261646121, 'Y', '2006-09-22 21:00:47'),
(1224, 6, 0x5072696d657220706c616e6f, 'Y', '2006-09-22 21:04:39'),
(1271, 6, 0x506172746964617320656e2065737065726120616465637561646173, 'Y', '2006-09-22 21:04:39'),
(1274, 6, 0x64, 'Y', '2015-08-03 16:45:16'),
(1275, 6, 0x64, 'Y', '2015-08-03 16:44:17'),
(1276, 6, 0x68, 'Y', '2015-08-03 16:46:13'),
(1277, 6, 0x68, 'Y', '2015-08-03 16:45:39'),
(1055, 7, 0x50f865686c65646f76fd205253532066656564, 'Y', '2006-11-01 19:25:41'),
(1060, 7, 0x536b72fd74, 'Y', '2006-11-01 19:25:41'),
(1091, 7, 0x5a62fd76616aed63ed20e86173, 'Y', '2006-11-01 19:25:41'),
(1125, 7, 0x536574f8ed646974, 'Y', '2006-11-01 19:25:41'),
(1943, 36, 0x48696261, 'Y', '2015-09-19 19:20:00'),
(1082, 7, 0x4f6465736c6174206865736c6f, 'Y', '2006-11-01 19:27:48'),
(1096, 7, 0x56ed74656a7465206e612076fd766f6a6f76e9207665727a6920647261676f6e20676f20736572766572752e, 'N', '2006-11-01 19:27:48'),
(1212, 7, 0x56ed74656a7465206e6120257321, 'Y', '2006-11-01 19:27:48'),
(1227, 7, 0x4e6f7665206865736c6f206f6465736ce16e6f21, 'Y', '2006-11-01 19:27:48'),
(1024, 7, 0x5679726f766e616ee120687261, 'Y', '2006-11-01 19:30:57'),
(1076, 7, 0x536f756b726f6de920706f7a6ee16d6b79, 'Y', '2006-11-01 19:30:57'),
(1084, 7, 0x5374616e646172646eed20756ded7374ec6eed, 'Y', '2006-11-01 19:30:57'),
(1092, 7, 0x486f646e6f63656ee120687261, 'Y', '2006-11-01 19:30:57'),
(1093, 7, 0x5a6f6272617a697420706f7a6ee16d6b79, 'Y', '2006-11-01 19:30:57'),
(1094, 7, 0x556c6fbe697420706f7a6ee16d6b79, 'Y', '2006-11-01 19:30:57'),
(1095, 7, 0x536b72fd7420706f7a6ee16d6b79, 'Y', '2006-11-01 19:30:57'),
(1211, 7, 0x546168, 'Y', '2006-11-01 19:30:57'),
(1279, 5, 0x4368696e6f69732028747261646974696f6e6e656c2920287574662d3829, 'Y', '2006-11-11 02:56:46'),
(1, 34, 0xe68ab1e6ad89efbc8ce8ae93e5ad90e69caae5ae8ce68890e4b98be5898de784a1e6b395e8999be6898be38082, 'Y', '2007-05-17 16:07:14'),
(2, 34, 0xe68ab1e6ad89efbc8ce6a38be5b180e5b7b2e7b590e69d9fe38082, 'Y', '2007-05-17 16:07:14'),
(3, 34, 0xe68ab1e6ad89efbc8ce6a38be5b180e5b09ae69caae9968be5a78be38082, 'Y', '2007-05-17 16:07:14'),
(7, 34, 0xe68ab1e6ad89efbc8ce4b88de883bde98280e8ab8be887aae5b7b1e5b08de5b180e38082, 'Y', '2007-05-17 16:07:14'),
(8, 34, 0xe68ab1e6ad89efbc8ce689bee4b88de588b0e682a8e8a2abe98280e8ab8be79a84e6a38be5b180e38082e58fafe883bde5b7b2e8a2abe59b9ee7b595efbc9f, 'Y', '2007-02-16 16:13:10'),
(9, 34, 0xe68ab1e6ad89efbc8ce4b88de883bde7ab8be588bbe59b9ee68f90e5b08de696b9e5899be68f90e5ad90e4b98be79fb3efbc8ce59ba0e782bae69c83e9878de8a487e58588e5898de79a84e6a38be79ba4e4bd8de7bdaee38082e8ab8be996b1e8ae8022e68993e58aab22e79a84e8a68fe58987e38082, 'Y', '2006-11-11 12:23:44'),
(12, 34, 0xe784a1e6b395e980a3e68ea5e8b387e69699e5baabe38082e8ab8be7a88de5be8ce5868de8a9a6e38082, 'Y', '2006-11-11 12:23:44'),
(13, 34, 0xe784a1e6b395e588aae999a4e6a38be5b180e38082e58fafe883bde6b292e69c89e5958fe9a18ce38082, 'Y', '2006-11-11 12:23:44'),
(14, 34, 0xe68ab1e6ad89efbc8ce9a18de5a496e8a88ae681afe4bcbce4b98ee784a1e6b395e980a3e68ea5e8b387e69699e5baabe38082, 'Y', '2007-05-17 16:07:14'),
(15, 34, 0xe68ab1e6ad89efbc8ce6a38be5b180e4bcbce4b98ee784a1e6b395e980a3e68ea5e8b387e69699e5baabe38082, 'Y', '2007-05-17 16:07:14'),
(16, 34, 0xe6ada4e6898be4bcbce4b98ee784a1e6b395e980a3e68ea5e8b387e69699e5baabe38082e58fafe883bde6b292e69c89e5958fe9a18cefbc8ce8ab8be7a88de5be8ce5868de59b9ee4be86e79c8be6ada4e6898be698afe590a6e8a2abe8a898e98c84e38082, 'Y', '2006-11-11 12:23:44'),
(17, 34, 0xe8b387e69699e4bcbce4b98ee784a1e6b395e980a3e68ea5e8b387e69699e5baabe38082e5a682e69e9ce682a8e784a1e6b395e799bbe585a5efbc8ce8ab8be5868de8a9a6e4b880e6aca1efbc8ce5a682e69e9ce98284e698afe5a4b1e69597efbc8ce8ab8be881afe7b5a1e694afe68fb4e38082, 'Y', '2007-02-16 16:13:10'),
(18, 34, 0xe8b387e69699e5baabe69fa5e8a9a2e5a4b1e69597e38082e8ab8be7a88de5be8ce5868de8a9a6e38082, 'Y', '2007-02-16 16:13:10'),
(19, 34, 0xe784a1e6b395e981b8e69387e8b387e69699e5baabe38082e8ab8be7a88de5be8ce5868de8a9a6e38082, 'Y', '2007-02-16 16:13:10'),
(20, 34, 0xe68ab1e6ad89efbc8ce784a1e6b395e9968be5a78be6a38be5b180e38082e8ab8be7a88de5be8ce5868de8a9a6e38082, 'Y', '2007-02-16 16:13:10'),
(22, 34, 0xe68ab1e6ad89efbc8ce682a8e5bf85e9a088e68f90e4be9be5908de7a8b1e38082, 'Y', '2007-02-16 16:13:10'),
(27, 34, 0xe68ab1e6ad89efbc8ce682a8e88887e682a8e79a84e5b08de6898be99c80e8a681e8a8ade5ae9ae7ad89e7b49aefbc8ce590a6e58987e784a1e6b395e7a2bae5ae9ae981a9e795b6e8ae93e5ad90e38082, 'Y', '2007-05-17 16:07:14'),
(29, 34, 0xe68ab1e6ad89efbc8ce8a8aae5aea2e7a681e6ada2efbc8ce8ab8be58588e794b3e8ab8be5808be4babae5b8b3e688b6, 'Y', '2006-11-11 12:23:44'),
(32, 34, 0xe68ab1e6ad89efbc8ce98284e6b292e8bcaae588b0e682a8e890bde5ad90e38082, 'Y', '2007-05-17 16:07:14'),
(33, 34, 0xe5af86e7a2bce590abe69c89e4b88de58fafe794a8e5ad97e58583efbc8ce58fafe794a8e5ad97e58583e782ba612d7a2c412d5a2c302d39e888872d5f2b2e2c3a3b3f21252ae7ad89, 'Y', '2006-11-11 17:22:29'),
(35, 34, 0xe5af86e7a2bce4b88de59088efbc8ce8ab8be5868de8a9a6e4b880e6aca1e38082, 'Y', '2006-11-11 17:33:48'),
(38, 34, 0xe68ab1e6ad89efbc8ce682a8e698afe590a6e5bf98e8a898e8bcb8e585a5e7ad89e7b49aefbc9f, 'Y', '2007-02-16 16:13:10'),
(39, 34, 0xe68ab1e6ad89efbc8ce6ada4e8a995e7ad89e696b9e5bc8fe8ab8be58bbfe794a822e7b49a22e6889622e6aeb522, 'Y', '2007-02-16 16:13:10'),
(40, 34, 0xe68ab1e6ad89efbc8ce6ada4e890bde5ad90e69c83e887aae68f90efbc8ce4bd86e69cace5b180e8a68fe58987e4b88de5aeb9e8a8b1e887aae68f90e38082, 'Y', '2006-11-11 17:33:48'),
(41, 34, 0xe68ab1e6ad89efbc8ce689bee4b88de588b0e8a9b2e6a38be5b180e38082, 'Y', '2006-11-11 17:33:48'),
(42, 34, 0xe68ab1e6ad89efbc8ce689bee4b88de588b0e682a8e683b3e8a681e79a84e8ab96e5a387e38082, 'Y', '2007-05-17 16:00:52'),
(43, 34, 0xe59494efbc8ce98099e5808be8a88ae681afe4bcbce4b98ee698afe59b9ee68789e5b7b2e4b88de5ad98e59ca8e79a84e8b2bce69687e38082, 'Y', '2006-11-11 17:33:48'),
(44, 34, 0xe68ab1e6ad89efbc8ce689bee4b88de588b0e682a8e683b3e8a681e79a84e8a88ae681afe38082, 'Y', '2007-02-16 16:13:10'),
(45, 34, 0xe68ab1e6ad89efbc8ce689bee4b88de588b0e8a9b2e794a8e688b6e38082, 'Y', '2006-11-11 17:33:48'),
(46, 34, 0xe68ab1e6ad89efbc8ce6ada4e794a8e688b6e5b8b3e8999fe5b7b2e8a2abe4bdbfe794a8efbc8ce8ab8be59897e8a9a6e585b6e4bb96e5b8b3e8999fe38082, 'Y', '2006-11-11 17:33:48'),
(48, 34, 0xe784a1e6b395e59ca8e980b2e8a18ce8bea8e8ad98e69982e68ea8e696b7e695b8e580bc, 'Y', '2007-02-15 14:31:02'),
(49, 34, 0xe68ab1e6ad89efbc8ce58faae883bde588aae999a4e887aae5b7b1e79a84e6a38be5b180e38082, 'Y', '2006-11-11 17:57:03'),
(50, 34, 0xe68ab1e6ad89efbc8ce784a1e6b395e59ca8e5be85e5b180e5aea4e689bee588b0e6ada4e6a38be5b180e38082e58fafe883bde5b7b2e69c89e4babae58aa0e585a5e6a38be5b180e38082, 'Y', '2006-11-11 17:57:03'),
(51, 34, 0xe68ab1e6ad89efbc8ce682a8e784a1e6b395e58aa0e585a5e887aae5b7b1e79a84e6a38be5b180e38082, 'Y', '2007-02-16 16:13:10'),
(52, 34, 0xe68ab1e6ad89efbc8ce682a8e4b88de7aca6e59088e6ada4e6a38be5b180e7ad89e7b49ae7af84e59c8de38082, 'Y', '2007-02-16 16:13:10'),
(54, 34, 0xe68ab1e6ad89efbc8ce69caae6ada3e7a2bae8bcb8e585a5e5af86e7a2bce38082, 'Y', '2006-11-11 17:57:03'),
(55, 34, 0xe7ad89e7b49ae696b9e5bc8fe4b88de6988e, 'Y', '2006-11-11 17:57:03'),
(56, 34, 0xe68ab1e6ad89efbc8ce784a1e6ada4e794a8e688b6e5b8b3e8999fe38082, 'Y', '2006-11-11 17:57:03'),
(57, 34, 0xe68ab1e6ad89efbc8ce5889de5a78be7ad89e7b49ae5bf85e9a088e4bb8be696bc20333020e7b49ae588b0203620e6aeb5e4b98be99693e38082, 'Y', '2007-05-17 16:00:52'),
(58, 34, 0xe68ab1e6ad89efbc8ce682a8e59ca8e695b8e580bce6ac84e8bcb8e585a5e4ba86e99d9ee695b8e580bce5ad97e58583e38082, 'Y', '2007-02-16 16:13:10'),
(59, 34, 0xe68ab1e6ad89efbc8ce58faae69c89e7bfbbe8adafe88085e6898de883bde7bfbbe8adafe38082, 'Y', '2006-11-11 17:57:03'),
(60, 34, 0xe5a682e69e9ce682a8e683b3e58d94e58aa9e7bfbbe8adafe9be8de4b98be7a281efbc8ce8ab8be59ca820225472616e736c6174696f6e2220e8ab96e5a387e8b2bce4b88ae8a88ae681afe38082, 'Y', '2007-06-07 11:40:13'),
(61, 34, 0xe68ab1e6ad89efbc8ce682a8e6b292e69c89e5be97e588b0e8a8b1e58fafe7bfbbe8adafe98099e7a8aee8aa9ee69687e38082, 'Y', '2007-02-16 16:13:10'),
(63, 34, 0xe68ab1e6ad89efbc8ce696b0e7bfbbe8adafe8bcb8e585a5e8b387e69699e5baabe799bce7949fe98cafe8aaa4e38082, 'Y', '2006-11-11 17:57:03'),
(66, 34, 0xe68ab1e6ad89efbc8ce69cace9a081e58385e4be9be7aea1e79086e88085e4bdbfe794a8e38082, 'Y', '2006-11-11 17:57:03'),
(69, 34, 0xe68ab1e6ad89efbc8ce784a1e6b395e689bee588b0e8a9b2e7ad86e8bcb8e585a5e38082, 'Y', '2006-11-11 18:12:15'),
(75, 34, 0xe68ab1e6ad89efbc8ce689bee4b88de588b0e8a9b2e6af94e8b3bde38082, 'Y', '2006-11-11 18:12:15'),
(1439, 17, 0x4b6f6d69, 'Y', '2013-08-21 00:30:48'),
(1554, 17, 0x416b636a65, 'Y', '2013-08-21 01:06:11'),
(80, 34, 0xe799bbe585a5e782ba, 'Y', '2007-02-15 04:57:35'),
(81, 34, 0xe69caae799bbe585a5, 'Y', '2006-11-11 18:12:15'),
(82, 34, 0xe79baee5898de5b08de5b180, 'Y', '2007-02-10 08:02:33'),
(83, 34, 0xe5be85e5b180e5aea4, 'Y', '2007-02-15 15:01:14'),
(84, 34, 0xe4bdbfe794a8e88085, 'Y', '2007-02-15 15:03:02'),
(85, 34, 0xe4bfa1e7aeb1, 'Y', '2007-02-15 14:51:41'),
(86, 34, 0xe5afabe4bfa1, 'Y', '2009-10-12 16:18:13'),
(87, 34, 0xe98280e8ab8b, 'Y', '2006-11-11 18:12:15'),
(88, 34, 0xe6a38be6898b, 'Y', '2007-10-01 06:17:48'),
(89, 34, 0xe6a38be5b180, 'Y', '2006-11-11 18:12:15'),
(90, 34, 0xe7bfbbe8adaf, 'Y', '2006-11-11 18:12:15'),
(91, 34, 0xe8ab96e5a387, 'Y', '2006-11-11 18:12:15'),
(92, 34, 0xe5b8b8e8a68be5958fe9a18c, 'Y', '2007-10-01 08:00:52'),
(93, 34, 0xe7b6b2e7ab99e59cb0e59c96, 'Y', '2006-11-11 18:15:49'),
(94, 34, 0xe69687e4bbb6, 'Y', '2006-11-11 18:15:49'),
(95, 34, 0xe6ada4e9a081e5bbbae696bc, 'Y', '2007-02-17 11:23:18'),
(96, 34, 0xe7aea1e79086e593a1, 'Y', '2006-11-11 18:15:49'),
(97, 34, 0xe799bbe587ba, 'Y', '2006-11-11 18:15:49'),
(98, 34, 0xe697a5, 'Y', '2007-02-10 07:49:53'),
(99, 34, 0xe697a5, 'Y', '2007-02-13 10:02:05'),
(100, 34, 0x2d, 'Y', '2007-02-13 18:03:27'),
(101, 34, 0xe69982e99693, 'Y', '2006-11-11 18:15:49'),
(102, 34, 0xe5b08fe69982, 'Y', '2007-02-10 06:17:01'),
(103, 34, 0xe784a1e58092e695b8e8a888e69982, 'Y', '2007-06-06 19:58:14'),
(104, 34, 0xe6af8fe6898be58aa0202573, 'Y', '2007-02-13 15:59:40'),
(106, 34, 0xe697a5e69cace5bc8fe58092e695b8e8a888e69982, 'Y', '2007-06-06 19:58:14'),
(107, 34, 0xe5ad90, 'Y', '2006-11-11 18:49:35'),
(108, 34, 0xe58aa0e68bbfe5a4a7e5bc8fe58092e695b8e8a888e69982, 'Y', '2007-06-06 19:58:14'),
(109, 34, 0xe6a38be5b180e58aa0e585a5efbc81, 'Y', '2006-11-11 18:49:35'),
(122, 34, 0xe7ad94e8a686, 'Y', '2007-02-15 14:40:55'),
(127, 34, 0xe7b7a8e8bcaf, 'N', '2006-11-11 18:49:35'),
(128, 34, 0xe4b88ae7a7bb, 'Y', '2006-11-11 18:49:35'),
(129, 34, 0xe4b88be7a7bb, 'Y', '2006-11-11 18:49:35'),
(132, 34, 0xe7b7a8e8999f, 'Y', '2007-02-11 20:41:48'),
(134, 34, 0xe5a793e5908d, 'Y', '2006-11-11 18:49:35'),
(135, 34, 0xe7bfbbe8adafe593a1, 'Y', '2007-02-16 13:11:51'),
(136, 34, 0xe8ab96e5a387, 'Y', '2006-11-11 18:49:35'),
(366, 34, 0xe8a995e7ad89, 'Y', '2007-02-19 10:24:46'),
(756, 34, '', 'Y', '2006-11-12 06:19:18'),
(757, 34, '', 'Y', '2006-11-12 06:19:18'),
(758, 34, '', 'Y', '2006-11-12 06:19:18'),
(759, 34, '', 'Y', '2006-11-12 06:19:18'),
(760, 34, '', 'Y', '2006-11-12 06:19:18'),
(761, 34, '', 'Y', '2006-11-12 06:19:18'),
(762, 34, '', 'N', '2006-11-12 06:19:18'),
(763, 34, '', 'Y', '2006-11-12 06:19:18'),
(764, 34, '', 'Y', '2006-11-12 06:19:18'),
(765, 34, '', 'Y', '2006-11-12 06:19:18'),
(766, 34, '', 'Y', '2006-11-12 06:19:18'),
(767, 34, '', 'Y', '2006-11-12 06:19:18'),
(768, 34, '', 'Y', '2006-11-12 06:19:18'),
(769, 34, '', 'Y', '2006-11-12 06:19:18'),
(770, 34, '', 'Y', '2006-11-12 06:19:18'),
(771, 34, '', 'Y', '2006-11-12 06:19:18'),
(772, 34, '', 'Y', '2006-11-12 06:24:44'),
(773, 34, '', 'Y', '2006-11-12 06:24:44'),
(774, 34, '', 'Y', '2006-11-12 06:24:44'),
(775, 34, '', 'Y', '2006-11-12 06:51:50'),
(776, 34, '', 'Y', '2006-11-12 06:51:50'),
(777, 34, '', 'Y', '2006-11-12 06:51:50'),
(779, 34, '', 'Y', '2006-11-12 06:51:50'),
(780, 34, '', 'Y', '2006-11-12 06:51:50'),
(782, 34, '', 'Y', '2006-11-12 06:51:50'),
(783, 34, '', 'Y', '2006-11-12 06:51:50'),
(784, 34, '', 'Y', '2006-11-12 06:51:50'),
(785, 34, '', 'Y', '2006-11-12 10:50:34'),
(786, 34, '', 'Y', '2006-11-12 10:50:34'),
(787, 34, '', 'Y', '2006-11-12 10:50:34'),
(788, 34, '', 'Y', '2006-11-12 10:50:34'),
(789, 34, '', 'Y', '2006-11-12 10:50:34'),
(790, 34, '', 'Y', '2006-11-12 10:50:34'),
(791, 34, '', 'Y', '2006-11-12 10:50:34'),
(792, 34, '', 'Y', '2006-11-12 10:50:34'),
(793, 34, '', 'Y', '2006-11-12 10:50:34'),
(794, 34, '', 'Y', '2006-11-12 10:50:34'),
(795, 34, '', 'Y', '2007-02-12 08:46:38'),
(796, 34, '', 'Y', '2007-02-12 08:46:38'),
(797, 34, '', 'Y', '2006-11-12 10:50:34'),
(798, 34, '', 'Y', '2006-11-12 10:50:34'),
(799, 34, '', 'Y', '2006-11-12 10:50:34'),
(800, 34, '', 'Y', '2006-11-12 10:50:34'),
(801, 34, '', 'Y', '2006-11-12 10:50:34'),
(802, 34, '', 'Y', '2006-11-12 10:50:34'),
(803, 34, '', 'Y', '2006-11-12 10:50:34'),
(156, 34, 0xe5b08fe582b3e5b7b2e69bb4e696b0efbc81, 'Y', '2006-11-12 10:52:11'),
(157, 34, 0xe5af86e7a2bce5b7b2e694b9e8ae8aefbc81, 'Y', '2006-11-12 10:52:11'),
(158, 34, 0xe5808be4babae8a8ade5ae9ae5b7b2e69bb4e696b0efbc81, 'Y', '2007-02-17 11:33:05'),
(159, 34, 0xe69687e4bbb6, 'Y', '2006-11-13 04:33:22'),
(160, 34, 0xe9be8de4b98be7a281e4bb8be7b4b9, 'Y', '2006-11-13 04:33:22'),
(161, 34, 0xe5b8b8e8a68be5958fe9a18c, 'Y', '2006-11-13 04:33:22'),
(163, 34, 0xe786b1e5bf83e4baba, 'Y', '2007-02-10 10:08:50'),
(164, 34, 0xe9be8de4b98be7a281e58d94e58aa9e88085, 'Y', '2007-02-10 08:02:33'),
(165, 34, 0xe980a3e68ea5, 'Y', '2006-11-13 04:33:22'),
(168, 34, 0xe5ae89e8a39de68c87e7a4ba, 'Y', '2006-11-13 04:33:22'),
(169, 34, 0xe5a682e69e9ce4bda0e5b88ce69c9be69c89e5b1ace696bce887aae5b7b1e79a84e9be8de4b98be7a281, 'Y', '2006-11-13 04:33:22'),
(170, 34, 0xe4b88be8bc89e9be8de4b98be7a281e79a84e8b387e6ba90, 'Y', '2006-11-13 04:33:22'),
(2664, 17, 0x50727a657379b3616e7920706c696b206772616669637a6e79205b25735d206d61206e69657a6e616e6520726f7a737a65727a656e69652e, 'Y', '2013-08-21 00:01:06'),
(173, 34, 0x736f75726365666f72676520e9be8de4b98be7a281e8a888e795abe7b6b2e9a081, 'Y', '2007-02-15 19:15:05'),
(175, 34, 0xe585b6e4bb96efbc9a, 'Y', '2006-11-13 04:37:22'),
(176, 34, 0xe59c8be5aeb6, 'Y', '2006-11-13 04:37:22'),
(177, 34, 0xe59f8ee5b882, 'Y', '2006-11-13 04:37:22'),
(178, 34, 0xe79c812fe5b79e, 'Y', '2007-02-16 15:23:52'),
(179, 34, 0xe4bfb1e6a882e983a8, 'Y', '2006-11-13 04:37:22'),
(180, 34, 0xe9a696e9a081, 'Y', '2007-02-16 15:23:52'),
(181, 34, 0xe99bbbe5ad90e983b5e4bbb6, 'Y', '2006-11-13 04:37:22'),
(182, 34, 0x494351e5b8b3e8999f, 'Y', '2007-01-19 14:22:27'),
(183, 34, 0xe6a38be5b180e8a8ade5ae9a, 'Y', '2006-11-13 04:37:22'),
(184, 34, 0xe5979ce5a5bd, 'Y', '2006-11-13 04:37:22'),
(185, 34, 0xe881b7e6a5ad, 'Y', '2006-11-13 04:37:22'),
(187, 34, 0xe694b9e8ae8ae5b08fe582b3, 'Y', '2006-11-13 04:37:22'),
(188, 34, 0xe7b7a8e8bcafe5af86e7a2bc, 'Y', '2006-11-13 04:37:22'),
(189, 34, 0xe8888ae5af86e7a2bc, 'Y', '2006-11-13 04:37:22'),
(190, 34, 0xe696b0e5af86e7a2bc, 'Y', '2006-11-13 04:37:22'),
(191, 34, 0xe7a2bae8aa8de5af86e7a2bc, 'Y', '2006-11-13 04:37:22'),
(192, 34, 0xe694b9e8ae8ae5af86e7a2bc, 'Y', '2006-11-13 04:37:22'),
(193, 34, 0xe9979c, 'Y', '2007-02-11 21:02:55'),
(194, 34, 0xe58faae5af84e9809ae79fa5, 'Y', '2007-06-23 11:55:02'),
(195, 34, 0xe6898be695b8e88887e4bfa1e4bbb6, 'Y', '2007-06-22 20:36:09'),
(196, 34, 0xe79ba4e99da2e88887e4bfa1e4bbb6, 'Y', '2007-06-22 20:36:09'),
(197, 34, 0xe59e82e79bb4, 'Y', '2006-11-13 04:37:22'),
(198, 34, 0xe6b0b4e5b9b3, 'Y', '2006-11-13 04:37:22'),
(199, 34, 0xe5808be4babae8a8ade5ae9a, 'Y', '2007-02-15 15:53:58'),
(200, 34, 0xe5808be4babae8a8ade5ae9a, 'Y', '2006-11-13 04:37:22'),
(201, 34, 0xe5b8b3e8999f, 'Y', '2007-02-10 06:04:55'),
(202, 34, 0xe585a8e5908d, 'Y', '2006-11-13 04:37:22'),
(204, 34, 0xe58f83e88083e7ad89e7b49a, 'Y', '2007-02-23 14:09:22'),
(205, 34, 0x444753e7ad89e7b49a, 'Y', '2007-02-11 18:59:37'),
(206, 34, 0xe99bbbe983b5e9809ae79fa5, 'Y', '2007-02-16 07:25:30'),
(207, 34, 0xe7808fe8a6bde599a8e8a8ade5ae9a, 'Y', '2007-02-21 12:01:17'),
(208, 34, 0xe8aa9ee8a880, 'Y', '2006-11-13 04:40:39'),
(209, 34, 0xe69982e58d80, 'Y', '2006-11-13 04:40:39'),
(210, 34, 0xe79da1e79ca0, 'Y', '2007-02-17 06:08:24'),
(211, 34, 0xe6a38be79ba4, 'Y', '2007-02-16 07:19:38'),
(212, 34, 0xe7a281e79fb3e5a4a7e5b08f, 'Y', '2007-02-17 11:28:09'),
(213, 34, 0xe6a38be79ba4e9a18fe889b2, 'Y', '2007-02-16 07:17:06'),
(214, 34, 0xe5baa7e6a899e4bd8de7bdae, 'Y', '2007-02-17 11:28:09'),
(215, 34, 0xe5b7a6, 'Y', '2006-11-13 04:40:39'),
(216, 34, 0xe4b88a, 'Y', '2006-11-13 04:40:39'),
(217, 34, 0xe58fb3, 'Y', '2006-11-13 04:40:39'),
(218, 34, 0xe4b88b, 'Y', '2006-11-13 04:40:39'),
(219, 34, 0xe79ba4e7b7a3e5b9b3e6bb91, 'Y', '2007-02-17 11:28:09'),
(220, 34, 0xe981b8e596aee696b9e59091, 'Y', '2007-02-16 07:23:30'),
(222, 34, 0xe8ae8ae69bb4e5808be4babae8a8ade5ae9a, 'Y', '2007-02-15 15:50:50'),
(223, 34, 0xe5bf98e8a898e5af86e7a2bcefbc9f, 'Y', '2006-11-13 18:45:32'),
(225, 34, 0xe8aa8de8bcb8, 'Y', '2007-05-30 12:32:51'),
(226, 34, 0xe8999be6898b, 'Y', '2006-11-13 18:45:32'),
(227, 34, 0xe588aae999a4e6a38be5b180, 'Y', '2006-11-13 18:45:32'),
(1028, 14, 0x686570726561, 'Y', '2006-11-14 11:42:54'),
(1029, 14, '', 'Y', '2006-11-14 11:49:44'),
(1030, 14, 0x766965746e616d, 'Y', '2006-11-14 11:42:54'),
(1031, 14, 0x736572626961, 'Y', '2006-11-14 11:42:54'),
(1032, 14, 0x6b7265696b6b61, 'Y', '2006-11-14 11:42:54'),
(1033, 14, 0x756b7261696e61, 'Y', '2006-11-14 11:42:54'),
(1034, 14, 0x6b6174616c61616e69, 'Y', '2006-11-14 11:42:54'),
(1035, 14, 0x6b69696e612028796b73696e6b65727461696e656e2920287574662d3829, 'Y', '2006-11-14 11:42:54'),
(1055, 14, 0x5253532d7669727461, 'Y', '2006-11-14 11:44:30'),
(1060, 14, 0x5069696c6f7461, 'Y', '2006-11-14 11:44:30'),
(1091, 14, 0x41696b6161206ae46c6a656c6ce4, 'Y', '2006-11-14 11:44:30'),
(1125, 14, 0x4c616a697474656c65, 'Y', '2006-11-14 11:44:30'),
(1082, 14, 0x4ce4686574e42073616c6173616e61, 'Y', '2006-11-14 11:45:39'),
(1096, 14, 0x546572766574756c6f6120447261676f6e696e206b65686974797376657273696f6f6e21, 'N', '2006-11-14 11:45:39'),
(1024, 14, 0x54617361696e656e2070656c69, 'Y', '2006-11-14 11:49:44'),
(1076, 14, 0x596b73697479697365742070656c696d7569737469696e70616e6f74, 'Y', '2006-11-14 11:49:44'),
(1083, 14, 0x50656c61616a612070797974e4e420746176616c6c697365656e2074617061616e2061736574656c74756a61207461736f697475736b697669e42e, 'Y', '2006-11-14 11:49:44'),
(1084, 14, 0x546176616c6c696e656e206173657474656c75, 'Y', '2006-11-14 11:49:44'),
(1085, 14, 0x4d65726b69747365206b756f6c6c656574206b69766574206a61206b6c696b6b61612073697474656e2025732776616c6d69732725732e, 'Y', '2006-11-14 11:49:44'),
(1086, 14, 0x56616e676974736565, 'Y', '2006-11-14 11:49:44'),
(1087, 14, 0x4b6f6d6d656e746974, 'Y', '2006-11-14 11:49:44'),
(1088, 14, 0x486165207367662c206a6f737361206f6e206b61696b6b69206b6f6d6d656e746974, 'Y', '2006-11-14 11:49:44'),
(1089, 14, 0x5069737465656e6c61736b75, 'Y', '2006-11-14 11:49:44'),
(1090, 14, 0x4b6174736f2073696972746f, 'Y', '2006-11-14 11:49:44'),
(1092, 14, 0x4c756f6b6974657474752070656c69, 'Y', '2006-11-14 11:49:44'),
(1093, 14, 0x4ee47974e4206d7569737469696e70616e6f74, 'Y', '2006-11-14 11:49:44'),
(1094, 14, 0x54616c6c656e6e61206d7569737469696e70616e6f74, 'Y', '2006-11-14 11:49:44'),
(1095, 14, 0x5069696c6f7461206d7569737469696e70616e6f74, 'Y', '2006-11-14 11:49:44'),
(1111, 14, 0x4c756f6b697475736b757661616a61, 'Y', '2006-11-14 11:49:44'),
(1281, 17, 0x77ea67696572736b69, 'Y', '2013-08-20 22:15:42'),
(3456, 11, 0x4e6965757720736a61626c6f6f6e, 'Y', '2013-01-11 21:05:00'),
(1211, 14, 0x53696972746f, 'Y', '2006-11-14 11:49:44'),
(1270, 14, 0x4b61696b6b69206f646f7474617661742070656c6974, 'Y', '2006-11-14 11:49:44'),
(1271, 14, 0x536f7069766174206f646f7474617661742070656c6974, 'Y', '2006-11-14 11:49:44'),
(229, 34, 0xe8a888e58886, 'Y', '2007-02-11 11:52:02'),
(230, 34, 0xe6a38be5b180, 'Y', '2006-11-14 12:42:05'),
(231, 34, 0xe8999be6898b, 'Y', '2006-11-14 12:42:05'),
(232, 34, 0xe588aae999a4e6a38be5b180, 'Y', '2006-11-14 12:42:05'),
(233, 34, 0xe5ae8ce68890, 'Y', '2006-11-14 12:42:05'),
(234, 34, 0xe7b9bce7ba8ce5b08de5b180, 'Y', '2007-02-11 11:52:02'),
(235, 34, 0xe8aa8de8bcb8, 'Y', '2007-05-30 12:32:51'),
(236, 34, 0xe4b88be8bc89e6a38be8ad9c, 'Y', '2007-02-25 08:27:03'),
(237, 34, 0xe8b7b3e588b0e4b88be4b880e5b180, 'Y', '2006-11-14 12:42:05'),
(238, 34, 0xe588aae999a4e8a780e79c8b, 'Y', '2007-05-31 13:34:52'),
(239, 34, 0xe58aa0e585a5e8a780e79c8b, 'Y', '2007-02-15 20:32:11'),
(240, 34, 0xe9a696e9a081, 'Y', '2006-11-15 11:06:31'),
(242, 34, 0xe8ab8be8a8bbe5868aefbc8ce4be86e4b88be5b9bee79ba4e59c8de6a38be38082, 'Y', '2007-02-16 06:14:23'),
(243, 34, 0xe8ab8be799bbe585a5e38082, 'Y', '2007-02-11 09:27:15'),
(244, 34, 0xe58f83e8a780e8ab8be794a8202573e38082, 'Y', '2007-02-11 09:29:04'),
(245, 34, 0xe5af86e7a2bc, 'Y', '2006-11-15 11:06:31'),
(246, 34, 0xe799bbe585a5, 'Y', '2006-11-15 11:06:31'),
(247, 34, 0xe8a8bbe5868ae696b0e5b8b3e8999f, 'Y', '2006-11-15 11:06:31'),
(248, 34, 0xe59c8de6a38be4bb8be7b4b9, 'Y', '2007-02-15 15:14:41'),
(252, 34, 0xe6ada1e8bf8ee5868de5baa6e58589e887a8efbc8ce8ab8be5a5bde5a5bde4baabe58f97efbc81, 'Y', '2007-01-30 05:54:06'),
(253, 34, 0xe6a38be5b180e588aae999a4efbc81, 'Y', '2006-11-16 17:29:48'),
(254, 34, 0xe58aa0e585a5e5b08de5b180efbc81, 'Y', '2007-02-11 11:52:02'),
(256, 34, 0xe4b880e888ace8b387e69699, 'Y', '2006-11-16 17:29:48'),
(257, 34, '', 'Y', '2007-02-15 19:15:05'),
(258, 34, 0xe8a8b1e5a49ae59c8de6a38be8b387e69699, 'Y', '2007-02-16 06:46:27'),
(259, 34, 0xe59c8de6a38be5b8b8e8a68be5958fe9a18c, 'Y', '2006-11-16 17:29:48'),
(260, 34, 0x7265632e67616d65732e676f20e696b0e8819ee7bea4e7b584e79a84e59c8de6a38be5b8b8e8a68be5958fe9a18c, 'Y', '2007-02-10 10:13:14'),
(265, 34, '', 'Y', '2012-08-01 06:17:00'),
(266, 34, 0xe4b880e5808be59088e4bd9ce7b6b2e7ab99efbc8ce8ab8be7808fe8a6bde88887e8b48ae58aa9efbc81, 'Y', '2006-11-17 05:28:40'),
(267, 34, 0xe59c8de6a38be696b0e8819e, 'Y', '2006-11-17 05:28:40'),
(271, 34, 0xe6a38be99d88e78e8b, 'Y', '2006-11-17 05:32:53'),
(272, 34, 0xe9979ce696bce59c8de6a38be79a84e6bcabe795abefbc8ce5a4a7e58a9be68ea8e896a6efbc81, 'Y', '2006-11-17 05:32:53'),
(273, 34, 0xe8a68fe58987, 'Y', '2006-11-17 05:32:53'),
(274, 34, 0xe4ba92e58b95e5adb8e59c8de6a38b, 'Y', '2007-02-11 09:04:10'),
(275, 34, 0xe4b880e5808be5be88e5a5bde79a84e5adb8e7bf92e7b6b2e7ab99, 'Y', '2008-03-07 07:42:02'),
(276, 34, 0xe88bb1e59c8be59c8de6a38be58d94e69c83e79a84e4bb8be7b4b9efbc8ce5afabe5be97e5be88e5a5bd, 'Y', '2007-02-11 07:09:55'),
(281, 34, 0xe7ad96e795a5e88887e8a193e8aa9e, 'Y', '2007-02-16 15:46:30'),
(283, 34, 0xe8a9b0e6a38b, 'Y', '2006-11-18 13:46:52'),
(284, 34, 0xe69c89e58aa9e696bce5a29ee980b2e6a38be58a9b, 'Y', '2007-02-11 07:08:37'),
(285, 34, '', 'Y', '2012-08-01 06:17:00'),
(286, 34, 0xe5b087e4bda0e79a84e6a38be5b180e98081e4be86e68ea5e58f97e8a995e8ab96efbc8ce79c8be79c8be5a682e4bd95e4b88be5be97e69bb4e5a5bd, 'Y', '2006-11-22 11:14:59'),
(287, 34, 0xe5b8b8e8a68be697a5e69cace59c8de6a38be794a8e8aa9e, 'Y', '2006-11-22 11:14:59'),
(288, 34, 0xe4bda0e5bf85e9a088e881bde5be97e68782e585b6e4bb96e6a38be6898be59ca8e8aaaae4bb80e9babc, 'Y', '2007-02-11 07:08:37'),
(291, 34, 0xe6adb7e58fb2, 'Y', '2006-11-22 11:14:59'),
(292, 34, 0xe59c8de6a38be7b0a1e58fb2, 'Y', '2007-05-31 11:11:49'),
(293, 34, 0xe7b5a6e6b3a8e6848fe58a9be79fade69aabe79a84e4baba, 'Y', '2007-02-11 07:09:55'),
(294, 34, 0xe59c8de6a38be8a9b3e58fb2, 'Y', '2007-05-31 11:11:49'),
(295, 34, 0xe5a682e69e9ce4bda0e4bb80e9babce983bde683b3e79fa5e98193e280a6, 'Y', '2007-02-11 07:05:47'),
(296, 34, 0xe59c8de6a38be69bb8e7b18defbc8ce599a8e585b7e88887e8bb9fe9ab94, 'Y', '2006-11-22 11:14:59'),
(297, 34, 0xe8a8bbe8a7a3e59c8de6a38be69bb8e79bae, 'Y', '2006-11-25 14:26:55'),
(298, 34, 0xe8b190e5af8ce59c8de6a38be69bb8e8a995, 'Y', '2007-02-16 15:46:30'),
(299, 34, 0xe6ad90e6b4b2e5ba97, 'Y', '2006-11-25 14:26:55'),
(300, 34, 0xe585b6e4bb96e59c8de6a38be7b6b2e7ab99, 'Y', '2007-02-15 15:22:56'),
(301, 34, 0xe4b99fe698afe59b9ee59088e588b6efbc8ce98284e69c89e585b6e4bb96e9818ae688b2, 'Y', '2007-02-15 15:14:41'),
(303, 34, 0xe58db3e69982e7b79ae4b88ae9818ae688b2e79a84e5a4a7e7b6b2e7ab99, 'Y', '2007-02-15 15:22:56'),
(305, 34, 0xe7b6b2e7ab99e58897e8a1a8, 'Y', '2007-02-15 15:22:56'),
(306, 34, 0xe69bb4e5ae8ce695b4e79a84e7b6b2e7ab99e58897e8a1a8, 'Y', '2007-02-15 15:22:56'),
(307, 34, 0xe4bfa1e7aeb1, 'Y', '2007-02-16 04:40:36'),
(450, 31, 0x257320d0b7d0b020d185d196d0b420d182d0b020257320d0b4d0bed0b4d0b0d182d0bad0bed0b2d0b8d18520d0bfd0b5d180d196d0bed0b4d196d0b2, 'Y', '2006-11-28 18:25:14'),
(452, 31, 0x257320d0b7d0b020257320d0bad0b0d0bcd0b5d0bdd196d0b2, 'Y', '2006-11-28 18:25:14'),
(308, 34, 0xe694b6e4bbb6e4baba, 'Y', '2007-02-13 10:45:29'),
(309, 34, 0xe6a899e7b1a4, 'Y', '2007-02-13 10:43:33'),
(310, 34, 0xe5af84e4bbb6e4baba, 'Y', '2007-02-13 10:45:29'),
(311, 34, 0xe4b8bbe697a8, 'Y', '2007-02-13 10:45:29'),
(312, 34, 0xe697a5e69c9f, 'Y', '2006-11-30 06:17:17'),
(314, 34, 0xe696b0, 'Y', '2006-11-30 06:17:17'),
(315, 34, 0xe5b7b2e59b9ee8a686, 'Y', '2007-02-13 10:45:29'),
(316, 34, 0xe8ab8be59b9ee8a686efbc81, 'Y', '2008-04-29 07:38:05'),
(322, 34, 0x2573e5b08de5b180257320e98280e8ab8be5b7b2e8a2abe68ea5e58f97, 'Y', '2007-02-16 15:00:03'),
(323, 34, 0xe5b08de5b180e8a2abe5a989e68b92efbc8ce68896e6a38be5b180e5b7b2e588aae999a4, 'Y', '2007-02-13 15:50:44'),
(324, 34, 0xe59b9ee8a686, 'Y', '2007-02-13 10:48:51'),
(325, 34, 0xe8a88ae681af, 'Y', '2007-02-17 16:31:46'),
(326, 34, 0xe5af84e587bae59b9ee587bd, 'Y', '2007-02-16 04:36:20'),
(327, 34, 0xe696b0e4bfa1e4bbb6, 'Y', '2007-02-16 04:36:20'),
(328, 34, 0xe694b6e4bbb6e4baba28e5b8b3e8999f29, 'Y', '2007-02-13 10:52:55'),
(329, 34, 0xe5af84e4bfa1, 'Y', '2015-05-12 08:38:16'),
(330, 34, 0xe799bde696b9, 'Y', '2007-02-13 11:02:14'),
(331, 34, 0xe9bb91e696b9, 'Y', '2007-02-13 11:02:14'),
(332, 34, 0xe58fa6e8adb0e8a8ade5ae9a, 'Y', '2007-02-13 10:48:51'),
(333, 34, 0xe68ea5e58f97, 'Y', '2006-11-30 06:17:56'),
(334, 34, 0xe68b92e7b595, 'Y', '2006-11-30 06:17:56'),
(335, 34, 0xe98280e8ab8be5b08de5b180, 'Y', '2007-02-16 06:08:23'),
(336, 34, 0xe799bce587bae98280e8ab8b, 'Y', '2007-02-13 10:48:51'),
(337, 34, 0xe9be8de4b98be7a281e58d94e58aa9e88085, 'Y', '2007-02-11 11:14:59'),
(5775, 36, 0x4ac3a174737a6d6120656c656d7ac3a97365, 'Y', '2015-07-23 12:11:44'),
(340, 34, 0xe5b8b8e8a68be5958fe9a18ce7b7a8e8bcaf, 'Y', '2007-10-01 08:04:13'),
(342, 34, 0xe6a38be58a9be59c96, 'Y', '2007-03-14 19:57:24'),
(343, 34, 0xe68ab1e6ad89efbc8ce6a38be5b180e9818ee5b091e784a1e6b395e68890e59c96, 'Y', '2006-12-01 12:44:39'),
(344, 34, 0xe8a8bbe5868a, 'Y', '2007-02-16 06:22:45'),
(345, 34, 0xe8ab8be8bcb8e585a5e8b387e69699, 'Y', '2006-12-01 12:44:39'),
(346, 34, 0xe5b7b2e98081e587baefbc81, 'Y', '2007-02-20 19:00:14'),
(348, 34, 0xe7b590e69d9fe6a38be5b180, 'Y', '2007-02-19 10:22:57'),
(349, 34, 0xe980b2e8a18ce6a38be5b180, 'Y', '2007-02-19 10:22:57'),
(350, 34, 0x257320e5b7b2e7b590e69d9fe6a38be5b180, 'Y', '2007-02-13 12:41:25'),
(351, 34, 0x257320e980b2e8a18ce4b8ade6a38be5b180, 'Y', '2007-02-13 12:41:25'),
(352, 34, 0xe6a38be8ad9c, 'Y', '2007-02-25 08:24:29'),
(359, 34, 0xe5b08de6898be5a793e5908d, 'Y', '2007-06-06 14:04:14'),
(360, 34, 0xe7a281e889b2, 'Y', '2007-02-12 19:46:47'),
(361, 34, 0xe6a38be79ba4, 'Y', '2007-06-01 07:59:15'),
(362, 34, 0xe8ae93e5ad90, 'Y', '2006-12-01 12:44:39'),
(363, 34, 0xe8b2bce79bae, 'Y', '2006-12-01 12:44:39'),
(364, 34, 0xe6898be695b8, 'Y', '2006-12-01 12:44:39'),
(368, 34, 0xe69c80e5be8ce4b880e6898b, 'N', '2006-12-01 12:44:39'),
(370, 34, 0xe698af, 'Y', '2007-06-01 07:59:15'),
(371, 34, 0xe590a6, 'Y', '2006-12-01 12:47:13'),
(372, 34, 0xe5928ce6a38b, 'N', '2007-05-29 13:16:56'),
(373, 34, 0xe98280e8ab8be5b08de5b180, 'Y', '2007-05-29 13:16:56'),
(374, 34, 0xe980b2e8a18ce4b8ade6a38be5b180, 'Y', '2007-02-10 06:15:31'),
(375, 34, 0xe5b7b2e7b590e69d9fe6a38be5b180, 'Y', '2007-02-10 06:15:31'),
(377, 34, 0xe6ada1e8bf8ee9a081, 'Y', '2006-12-01 12:47:13'),
(378, 34, 0xe68891e79a84e8b387e69699, 'Y', '2007-02-16 06:44:03'),
(379, 34, 0xe7b7a8e8bcafe5b08fe582b3, 'Y', '2006-12-01 12:47:13'),
(380, 34, 0xe9a1afe7a4bae8a88ae681af, 'Y', '2006-12-01 12:47:13'),
(383, 34, 0xe8a9b1e9a18ce58897e8a1a8, 'Y', '2007-02-15 15:22:56'),
(384, 34, 0xe996b1e8a6bde8ab96e5a387, 'Y', '2006-12-01 12:47:13'),
(385, 34, 0xe696b0e8a9b1e9a18c, 'N', '2006-12-01 12:47:13'),
(388, 34, 0xe9968be694bee5b08de5b180, 'Y', '2007-02-11 06:56:20'),
(389, 34, 0xe696b0e4bfa1e4bbb6, 'Y', '2007-02-16 04:52:27'),
(390, 34, 0xe8bcaae588b0e682a8e4b88be79a84e5b08de5b180efbc9a, 'Y', '2007-06-22 20:10:47'),
(391, 34, 0xe784a1e6a38be5b180, 'Y', '2007-06-22 20:10:47'),
(393, 34, 0xe8a8bbe5868ae697a5e69c9f, 'Y', '2006-12-06 19:16:15'),
(394, 34, 0xe4b88ae6aca1e799bbe585a5, 'Y', '2007-02-11 19:35:03'),
(395, 34, 0xe5b08fe582b3, 'Y', '2006-12-06 19:16:15'),
(396, 34, 0xe5af84e4bfa1e7b5a6e6ada4e6a38be6898b, 'Y', '2007-10-01 06:59:58'),
(397, 34, 0xe980b2e8a18c, 'Y', '2007-02-16 20:43:53'),
(398, 34, 0xe7b590e69d9f, 'Y', '2006-12-06 19:16:15'),
(399, 34, 0xe58b9d, 'Y', '2007-02-11 21:02:55'),
(400, 34, 0xe8b2a0, 'Y', '2007-02-11 21:02:55'),
(402, 34, 0xe6b4bbe8ba8de7a88be5baa6, 'Y', '2007-02-17 11:43:41'),
(406, 34, 0xe582b3e7b5b1e8ae93e5ad90, 'Y', '2007-02-12 19:14:56'),
(407, 34, 0xe981a9e795b6e8ae93e5ad90, 'Y', '2007-02-12 18:41:57'),
(408, 34, 0xe78c9ce5ad90e58886e58588, 'Y', '2006-12-11 18:19:26'),
(409, 34, 0xe99b99e889b2e5b08de5b180, 'Y', '2007-02-12 18:41:57'),
(411, 34, 0xe8b387e69699, 'Y', '2006-12-11 18:19:26'),
(412, 34, 0xe58299e8a8bb, 'Y', '2007-02-10 10:01:42'),
(414, 34, 0xe69982e99990, 'Y', '2007-02-10 09:57:47'),
(415, 34, 0xe5b180e695b8, 'Y', '2007-02-10 09:57:47'),
(416, 34, 0xe980b1e69cab, 'Y', '2007-04-29 21:05:31'),
(417, 34, 0xe79baee5898de4bcbce4b98ee784a1e4baba, 'Y', '2006-12-11 18:19:26'),
(419, 34, 0xe99990202573, 'Y', '2007-02-13 10:18:28'),
(420, 34, 0xe5b180e695b8, 'Y', '2007-02-13 17:00:36'),
(421, 34, 0xe6aeb5, 'Y', '2006-12-18 12:07:08'),
(422, 34, 0xe7b49a, 'Y', '2006-12-18 12:07:08'),
(423, 34, 0xe5b08de6898be5bf85e9a088e69c89e7ad89e7b49a, 'Y', '2007-02-11 21:09:26'),
(424, 34, 0xe5b08de6898be7ad89e7b49a, 'Y', '2007-02-11 21:09:26'),
(425, 34, 0xe5a29ee58aa0e6a38be5b180, 'Y', '2006-12-18 12:07:08'),
(426, 34, 0xe6a38be6898b, 'Y', '2007-03-13 04:38:33'),
(427, 34, 0xe5b180e695b8, 'Y', '2007-02-13 17:00:36'),
(428, 34, 0xe980b1e69cabe8a888e69982, 'Y', '2006-12-18 12:07:08'),
(429, 34, 0xe588aae999a4, 'Y', '2006-12-18 12:07:08'),
(430, 34, 0xe58aa0e585a5, 'Y', '2006-12-18 12:07:08'),
(431, 34, 0xe6a38be79ba4, 'N', '2007-02-13 17:03:00'),
(432, 34, 0xe582b3e7b5b1e8ae93e5ad90efbc88e88ba5e8ae93e5ad90e8b2bce58d8ae79baeefbc89, 'Y', '2007-06-07 10:40:31'),
(433, 34, 0xe981a9e795b6e8ae93e5ad90efbc88e7b3bbe7b5b1e8aabfe695b4e8b2bce79baeefbc89, 'Y', '2007-06-07 10:40:31'),
(436, 34, 0xe69c88, 'Y', '2006-12-18 12:07:08'),
(437, 34, 0xe4b8bbe8a681e69982e99693, 'Y', '2006-12-18 12:07:08'),
(1213, 19, 0x4f6e67692065746f72726920257328652972612c202573676f2573206a6f6b6f7261206a6f6c617374656b6f207a65726269747a6172692025736c696272652573206261742e, 'Y', '2006-12-29 00:39:40'),
(1279, 19, 0x5478696e61746172202854726164697a696f6e616c612920287574662d3829, 'Y', '2006-12-29 00:39:59'),
(439, 34, 0x2d, 'Y', '2007-02-13 18:07:36'),
(443, 34, 0xe8b2bbe99baae5bc8fe8a888e69982, 'Y', '2007-06-06 19:58:14'),
(445, 34, 0xe6a38be5b180e5b8b3e8999f, 'Y', '2007-01-03 18:32:46'),
(446, 34, 0xe7a281e889b2, 'Y', '2007-02-16 13:57:25'),
(447, 34, 0xe78c9ce5ad90, 'Y', '2007-02-09 04:48:09'),
(449, 34, '', 'Y', '2007-01-03 18:32:46'),
(343, 8, 0xa9eaba70a141a65dacb0a4d3a4d6ad70a4c0b9efa7bda141b54caa6bb2a3a5cdb9cfaaeda143, 'Y', '2007-01-04 15:00:46'),
(484, 8, 0x31a4eb, 'Y', '2007-02-24 16:20:40'),
(485, 8, 0x32a4eb, 'Y', '2007-02-24 16:20:40'),
(486, 8, 0x34a4eb, 'Y', '2007-02-24 16:20:40'),
(487, 8, 0x35a4eb, 'Y', '2007-02-24 16:20:40'),
(488, 8, 0x36a4eb, 'Y', '2007-02-24 16:20:40'),
(489, 8, 0x38a4eb, 'Y', '2007-02-24 16:20:40'),
(490, 8, 0x39a4eb, 'Y', '2007-02-24 16:20:40'),
(491, 8, 0x3130a4eb, 'Y', '2007-02-24 16:20:40'),
(492, 8, 0x3132a4eb, 'Y', '2007-02-24 16:20:40'),
(1960, 7, 0x4e65756c6fbe656ee920fa7072617679, 'Y', '2016-07-20 16:20:15'),
(495, 8, 0x35a4eb, 'Y', '2007-02-24 16:20:40'),
(496, 8, 0x37a4eb, 'Y', '2007-02-24 16:20:40'),
(497, 8, 0x3131a4eb, 'Y', '2007-02-24 16:20:40'),
(498, 8, 0xa6db, 'Y', '2007-02-24 12:16:36'),
(499, 8, 0xa6dc, 'Y', '2007-02-24 12:16:36'),
(1024, 8, 0xb271a46ca4c0a5fd, 'Y', '2007-05-29 12:34:28'),
(1270, 8, 0xa9d2a6b3b5a5abddb4d1a7bd, 'Y', '2007-05-31 14:00:27'),
(1, 35, 0xc39c7a67c3bc6ec3bc6d2c2062c3bc74c3bc6e2068616e64696b6170207461c59f6c6172c4b1207965726c65c59f746972696c6d6564656e2070617320796170616d617a73c4b16ec4b17a2e, 'Y', '2007-01-08 20:38:26'),
(2, 35, 0xc39c7a67c3bc6ec3bc6d2c206f79756e20646168612079656e692062697474692e, 'Y', '2007-01-06 23:29:31'),
(3, 35, 0xc39c7a67c3bc6ec3bc6d2c206f79756e2068656ec3bc7a206261c59f6c616d6164c4b12e, 'Y', '2007-01-06 23:29:31'),
(7, 35, 0xc39c7a67c3bc6ec3bc6d2c206b656e64696e697a69206461766574206564656d657a73696e697a2e, 'Y', '2007-01-08 20:38:26'),
(8, 35, 0xc39c7a67c3bc6ec3bc6d2c206461766574206564696c6469c49f696e697a206f79756e752062756c616dc4b1796f72756d2e205265646465746d69c59f206f6c6162696c6972206d6973696e697a3f, 'Y', '2007-01-08 20:38:26'),
(9, 35, 0xc39c7a67c3bc6ec3bc6d2c20626972207461c59fc4b120656c65206765c3a769726d69c59f20626972207461c59fc4b12074656b72617220656c65206765c3a76972656d657a73696e697a20c3a7c3bc6e6bc3bc20746168746164616b692062697220c3b66e63656b6920706f7a697a796f6e752074656b72617220657474697269722e20274b6f27206b7572616cc4b16e612062616bc4b16ec4b17a2e, 'Y', '2007-01-06 23:37:25'),
(12, 35, 0x56657269746162616ec4b1206261c49f6c616e74c4b173c4b1206261c59f6172c4b173c4b17a2e204cc3bc7466656e206269726b61c3a72064616b696b612062656b6c657969702074656b7261722064656e6579696e697a2e, 'Y', '2007-01-06 23:37:25'),
(13, 35, 0x4f79756e756e2073696c696e6d6173c4b1206261c59f6172c4b173c4b17a2e204275206d756874656d656c656e206269722070726f626c656d206465c49f696c2e, 'Y', '2007-01-06 23:37:25'),
(14, 35, 0xc39c7a67c3bc6ec3bc6d2c206d6573616ac4b16e2076657269746162616ec4b16e20656b6c656e6d657369206261c59f6172c4b173c4b17a206f6c6d75c59f612062656e7a69796f722e, 'Y', '2007-01-06 23:37:25'),
(15, 35, 0xc39c7a67c3bc6ec3bc6d2c206f79756e756e2076657269746162616ec4b16e6120656b6c656e6d657369206261c59f6172c4b173c4b17a206f6c6d75c59f612062656e7a69796f722e, 'Y', '2007-01-06 23:37:25'),
(1, 17, 0x50727a65707261737a616d792c206e6965206d6fbf65737a20737061736f7761b1e62070727a656420706f7374617769656e69656d2077737a7973746b696368206b616d69656e692068616e64696b61706f777963682e, 'Y', '2007-01-07 02:54:55'),
(2, 17, 0x50727a65707261737a616d792c20677261207369ea206a75bf207a616b6ff1637a79b3612e, 'Y', '2007-01-07 02:54:55'),
(3, 17, 0x50727a65707261737a616d792c20677261207369ea206a65737a637a65206e696520726f7a706f637aeab3612e, 'Y', '2007-01-07 02:54:55'),
(7, 17, 0x50727a65707261737a616d792c206e6965206d6fbf65737a207a6170726f7369e6207369656269652e, 'Y', '2007-01-07 02:54:55'),
(8, 17, 0x50727a65707261737a616d792c206e6965206d6fbf6e61207a6e616c65bce6206772792c20646f206b74f372656a206a65737465b6207a6170726f737a6f6e792e20437a79bf6279b6206a75bf206f646df37769b33f, 'Y', '2007-01-07 02:54:55'),
(9, 17, 0x50727a65707261737a616d792c206e6965206d6fbf65737a206f646269e6206b616d69656e69612c206b74f372792077b361b66e6965207a6269b3206b616d6965f12c20676479bf2073706f776f646f7761b36f20627920746f20706f7774f3727a656e6965207379747561636a69206e6120706c616e737a792e20506f737a756b616a20276b6f272077207a617361646163682e, 'Y', '2007-01-07 02:54:55'),
(12, 17, 0x506fb3b1637a656e6965207a2062617ab1206e696520756461b36f207369ea2e20506f637a656b616a206b696c6b61206d696e7574206920737072f362756a20706f6e6f776e69652e, 'Y', '2007-01-07 02:54:55'),
(13, 17, 0x536b61736f77616e696520677279206e696520706f77696f64b36f207369ea2e2050726177646f706f646f626e6965206e6965207374616e6f776920746f2070726f626c656d752e, 'Y', '2007-01-07 02:54:55'),
(16, 17, 0x5779676cb16461206e6120746f2c20bf6520777374617769656e696520727563687520646f2062617a792064616e796368206e696520706f77696f64b36f207369ea2e20546f206d6fbf652c206c65637a206e6965206d757369206279e62070726f626c656d656d2c2070726f737aea20706f7772f3e620646f20677279206920737072617764bc2c20637a792072756368207a6f737461b3207a6172656a657374726f77616e792e, 'Y', '2007-01-07 02:54:55'),
(17, 17, 0x5779676cb16461206e6120746f2c20bf6520777374617769656e69652054776f6963682064616e79636820646f2062617a792064616e796368206e696520706f77696f64b36f207369ea2e204a65b66c69206e6965206d6fbf65737a207369ea207a616c6f676f7761e62c20737072f362756a20706f6e6f776e69652c2061206a65b66c69206920746f206e696520706f6d6fbf652c20736b6f6e74616b74756a207369ea207a652077737061726369656d2e, 'Y', '2007-01-07 02:54:55'),
(18, 17, 0x5a61707974616e69652062617a792064616e796368206e696520706f77696f64b36f207369ea2e20506f637a656b616a206b696c6b61206d696e7574206920737072f362756a20706f6e6f776e69652e, 'Y', '2007-01-07 02:54:55'),
(19, 17, 0x4e6965206d6fbf6e61207779627261e62062617a792064616e7963682e20506f637a656b616a206b696c6b61206d696e7574206920737072f362756a20706f6e6f776e69652e, 'Y', '2007-01-07 02:54:55'),
(20, 17, 0x50727a65707261737a616d792c206e6965206d6fbf6e6120726f7a706f637ab1e6206772792e20506f637a656b616a206b696c6b61206d696e7574206920737072f362756a20706f6e6f776e69652e, 'Y', '2007-01-07 02:54:55'),
(22, 17, 0x50727a65707261737a616d792c206d757369737a20706f6461e6206e617a7769736b6f2e, 'Y', '2007-01-07 02:54:55'),
(27, 17, 0x50727a65707261737a616d792c2054792069205477f36a2070727a656369776e696b206d75736963696520757374616c69e620706f637ab1746b6f777920726174696e672c20772070727a656369776e796d2077797061646b75206e696520706f74726166696d7920757374616c69e6206f64706f776965646e6965676f2068616e64696b6170752e, 'Y', '2007-01-07 02:54:55'),
(29, 17, 0x50727a65707261737a616d792c20746f206e6965206a657374207a657a776f6c6f6e6520646c6120676fb663692c2070726f737aea207a6172656a65737472756a207369ea206e616a70696572772e, 'Y', '2007-01-07 02:54:55'),
(32, 17, 0x50727a65707261737a616d792c206e6965207477f36a20727563682e, 'Y', '2007-01-07 02:54:55'),
(33, 17, 0x486173b36f207a617769657261206e69656c6567616c6e65207a6e616b692c2074796c6b6f207a6e616b6920612d7a2c20412d5a2c20302d392069202d5f2b2e2c3a3b3f21252a2073b120646f7a776f6c6f6e652e, 'Y', '2007-01-07 02:54:55'),
(35, 17, 0x486173b36f20706f7477696572647a616ab16365206e696520706173756a6520646f20686173b3612c2070726f737aea207772f3e6206920737072f362756a20706f6e6f776e69652e, 'Y', '2007-01-07 02:54:55'),
(38, 17, 0x50727a65707261737a616d792c206d616d792070726f626c656d79207a20726174696e6769656d2c20637a79bf6279b6207a61706f6d6e6961b3207779737065637966696b6f7761e62c20637a792063686f647a69206f20276b7975272c20637a79206f202764616e273f, 'Y', '2007-01-07 02:54:55'),
(39, 17, 0x50727a65707261737a616d792c206d616d792070726f626c656d79207a20726174696e6769656d2c206e696520706f77696e69656e65b6206279b32075bf797761e620276b797527206c7562202764616e2720646c61207465676f207479707520726174696e67752e, 'Y', '2007-01-07 02:54:55'),
(40, 17, 0x50727a65707261737a616d792c2074656e206b616d6965f1207a616269b3206279207369656269652c20616c652073616d6f62f36a737477612073b1206e6965646f7a776f6c6f6e6520772074796368207a61736164616368206772792e, 'Y', '2007-01-07 02:54:55'),
(41, 17, 0x50727a65707261737a616d792c206e6965206d6fbf6e61207a6e616c65bce62074656a206772792e, 'Y', '2007-01-07 02:54:55'),
(42, 17, 0x50727a65707261737a616d792c206e6965206d6fbf6e61207a6e616c65bce6207465676f20666f72756d2c206b74f372652063686365737a207a6f6261637a79e62e, 'Y', '2007-01-07 02:54:55'),
(43, 17, 0x486d6d2c207779676cb16461206e6120746f2c20bf6520746120776961646f6d6fb6e6206a657374206f64706f776965647a69b1206e61206e69656973746e69656ab1637920706f73742e, 'Y', '2007-01-07 02:54:55'),
(44, 17, 0x50727a65707261737a616d792c206e6965206d6fbf6e61207a6e616c65bce62074656a20776961646f6d6fb663692c206b74f372b12063686365737a207a6f6261637a79e62e, 'Y', '2007-01-07 02:54:55'),
(45, 17, 0x50727a65707261737a616d792c206e6965206d6fbf6e61207a6e616c65b6e6207465676f2075bf79746b6f776e696b612e, 'Y', '2007-01-07 02:54:55'),
(46, 17, 0x50727a65707261737a616d792c2074656e206964656e747966696b61746f722075bf79746b6f776e696b61206a657374206a75bf207a616aea74792c2070726f737aea20737072f362756a207a6e616c65bce620756e696b616c6e792e, 'Y', '2007-01-07 02:54:55'),
(49, 17, 0x50727a65707261737a616d792c206d6fbf65737a206b61736f7761e62074796c6b6f2073776f6a65206772792e, 'Y', '2007-01-07 02:54:55'),
(50, 17, 0x50727a65707261737a616d792c206e6965206d6fbf6e61207a6e616c65bce62074656a20677279207720706f637a656b616c6e692e2050726177646f706f646f626e6965206b746fb6206a75bf207369ea20646f206e69656a20646fb3b1637a79b32e, 'Y', '2007-01-07 02:54:55'),
(51, 17, 0x50727a65707261737a616d792c206e6965206d6fbf6e6120646fb3b1637a79e6207369ea20646f2077b361736e656a206772792e, 'Y', '2007-01-07 02:54:55'),
(52, 17, 0x50727a65707261737a616d792c206e6965206a65737465b62077207779737065637966696b6f77616e796d2070727a65647a69616c6520726174696e676f77796d2e, 'Y', '2007-01-07 02:54:55'),
(54, 17, 0x50727a65707261737a616d792c206e6965207770697361b365b62073776f6a65676f20686173b36120707261776964b36f776f2e, 'Y', '2007-01-07 03:07:06'),
(55, 17, 0x4e69657a6e616e79207479702072616e6b752e, 'Y', '2007-01-07 03:07:06'),
(56, 17, 0x50727a65707261737a616d792c206e6965206d61206e696b6f676f206f2074616b696d206964656e747966696b61746f727a652075bf79746b6f776e696b612e, 'Y', '2007-01-07 03:07:06'),
(57, 17, 0x50727a65707261737a616d792c20706f637ab1746b6f777920726174696e67206d757369206279e6207a2070727a65647a6961b37520706f6d69ea647a79203330206b7975206120362064616e2e, 'Y', '2007-01-07 03:07:06'),
(58, 17, 0x50727a65707261737a616d792c207770697361b365b620776172746fb6e6206e69656e756d657279637a6eb1207720706f6c65206e756d657279637a6e652e, 'Y', '2007-01-07 03:07:06'),
(59, 17, 0x50727a65707261737a616d792c2074796c6b6f2074b3756d61637a65206d6f67b12074b3756d61637a79e62e, 'Y', '2007-01-07 03:07:06'),
(60, 17, 0x4a65b66c692063686365737a20706f6df3e620772074b3756d61637a656e697520647261676f6e612c2070726f737aea207779b66c696a20776961646f6d6fb6e6206e6120666f72756d20277472616e736c6174696f6e272e, 'Y', '2007-01-07 03:07:06'),
(61, 17, 0x50727a65707261737a616d792c206e6965206d61737a20706f7a776f6c656e6961206e612074b3756d61637a656e6965206e612074656e206aea7a796b2e, 'Y', '2007-01-07 03:07:06'),
(63, 17, 0x50727a65707261737a616d792c20706f64637a6173207072f3627920777374617769656e6961206e6f7765676f2074b3756d61637a656e696120646f2062617a792064616e79636820636fb620706f737ab36f206e69652074616b2e, 'Y', '2007-01-07 03:07:06'),
(66, 17, 0x50727a65707261737a616d792c207461207374726f6e61206a657374207779b3b1637a6e696520646c612075bf79746b6f776e696bf377207a2075707261776e69656e69616d692061646d696e697374726163796a6e796d692e, 'Y', '2007-01-07 03:07:06'),
(69, 17, 0x50727a65707261737a616d792c206e6965206d6fbf6e61207a6e616c65bce6207465676f20706f6c612e, 'Y', '2007-01-07 03:07:06'),
(75, 17, 0x50727a65707261737a616d792c206e6965206d6fbf6e61207a6e616c65bce620706f64616e65676f207475726e69656a752e, 'Y', '2007-01-07 03:07:06'),
(1029, 17, 0x4c696e677561204672616e6361204e6f7661, 'Y', '2013-08-21 00:28:46'),
(1055, 17, 0x53746174757320525353, 'Y', '2013-08-21 00:59:34'),
(1125, 17, 0x536f7274756a2077672e, 'Y', '2013-08-21 00:59:34'),
(122, 17, 0x4f64706f77696564bc, 'Y', '2007-01-07 03:07:06'),
(16, 35, 0x48616d6c656e696e207665726920746162616ec4b16e6120676972696c6d657369206261c59f6172c4b173c4b17a206f6c6d75c59f612062656e7a69796f722e204275206269722070726f626c656d206f6c6d61796162696c69722c206cc3bc7466656e2068616d6c656e696e206b6179646564696c6d69c59f206f6c6475c49f756e752067c3b6726d656b2069c3a7696e206f79756e612064c3b66ec3bc6ec3bc7a2e, 'Y', '2007-01-08 08:33:03'),
(17, 35, 0x566572696e697a696e2076657269746162616ec4b16e6120676972696c6d657369206261c59f6172c4b173c4b17a206f6c6d75c59f612062656e7a69796f722e2045c49f657220676972656d657a73656e697a2c206cc3bc7466656e206269726b657a20646168612064656e6579696e697a207665206275206461206261c59f6172c4b173c4b17a206f6c757273612064657374656b2069c3a7696e20696c657469c59f696d65206765c3a7696e697a2e, 'Y', '2007-01-08 08:33:03'),
(18, 35, 0x56657269746162616ec4b12073c4b172616c616d6173c4b1206261c59f6172c4b173c4b17a2e204cc3bc7466656e206269726b61c3a72064616b696b612062656b6c657969702074656b7261722064656e6579696e697a2e, 'Y', '2007-01-08 08:33:03'),
(19, 35, 0x5665726920746162616ec4b1207365c3a7696c656d6564692e204cc3bc7466656e206269726b61c3a72064616b696b612062656b6c657969702074656b7261722064656e6579696e697a2e, 'Y', '2007-01-08 08:33:03'),
(20, 35, 0xc39c7a67c3bc6ec3bc6d2c206f79756e206261c59f6c6174c4b16c616d6164c4b12e204cc3bc7466656e206269726b61c3a72064616b696b612062656b6c657969702074656b7261722064656e6579696e697a2e, 'Y', '2007-01-08 08:33:03'),
(22, 35, 0xc39c7a67c3bc6ec3bc6d2c20626972206973696d206564696e6d656c6973696e697a2e, 'Y', '2007-01-08 08:33:03'),
(27, 35, 0xc39c7a67c3bc6ec3bc6d2c2073656e2076652072616b6962696e207461686d696e69206269722072616e6b2062656c69726c656d656c692c20616c6b73692074616b646972646520757967756e2068616e64696b6170c4b12062756c616d616d2e, 'Y', '2007-01-08 08:45:59'),
(29, 35, 0xc39c7a67c3bc6ec3bc6d2c206d6973616669726c65722069c3a7696e2062756e6120697a696e20766572696c6d69796f722c206cc3bc7466656e20c3b66e6365206b69c59f6973656c2062697220686573616261206b6179646f6c756e757a2e, 'Y', '2007-01-08 08:45:59'),
(32, 35, 0xc39c7a67c3bc6ec3bc6d2c2073656e696e2073c4b172616e206465c49f696c2e, 'Y', '2007-01-08 09:12:39'),
(33, 35, 0xc59e6966726520796173616b6cc4b1206b6172616b7465726c65722069c3a7657269796f722c2073616465636520612d7a2c20412d5a2c20302d39207665202d5f2b2e2c3a3b3f21252a206b6172616b7465726c6572696e6520697a696e207661722e, 'Y', '2007-01-08 09:12:39'),
(35, 35, 0x476972696c656e20c59f696672652c206173c4b16c20c59f6966726520696c652065c59f6c65c59f6d69796f722c206cc3bc7466656e20676572692067696469702074656b7261722064656e6579696e697a2e, 'Y', '2007-01-08 09:12:39'),
(38, 35, 0xc39c7a67c3bc6ec3bc6d2c2073657669796520696c6520696c67696c692070726f626c656d696d207661722c20276b797527207961206461202764616e27206f6c6172616b2062656c6972746d65796920756e757474756e757a206d753f, 'Y', '2007-01-08 09:12:39'),
(39, 35, 0xc39c7a67c3bc6ec3bc6d2c2073657669796520696c6520696c67696c692070726f626c656d696d207661722c2062752073657669796520746970692069c3a7696e20276b797527207961206461202764616e27206b756c6c616e6d616d616cc4b173c4b16ec4b17a2e, 'Y', '2007-01-08 09:12:39'),
(40, 35, 0xc39c7a67c3bc6ec3bc6d2c206275207461c59f206b656e64696e6920c3b66c64c3bc726562696c697264692c20616d6120696e746968617261206b7572616c6c6172612067c3b6726520697a696e20766572696c6d656d656b74656469722e, 'Y', '2007-01-08 09:12:39'),
(41, 35, 0xc39c7a67c3bc6ec3bc6d2c206275206f79756e752062756c616dc4b1796f72756d2e, 'Y', '2007-01-08 09:12:39'),
(80, 35, 0xc59e75206973696d6c652067697269c59f20796170c4b16c64c4b1, 'Y', '2007-01-08 09:14:29'),
(81, 35, 0x47697269c59f20796170c4b16c6d6164c4b1, 'Y', '2007-01-08 09:14:29'),
(82, 35, 0x447572756d, 'Y', '2007-01-08 09:14:29'),
(83, 35, 0x42656b6c656d65206f646173c4b1, 'Y', '2007-01-08 09:14:29');
INSERT INTO `Translations` (`Original_ID`, `Language_ID`, `Text`, `Translated`, `Updated`) VALUES
(84, 35, 0x4b756c6c616ec4b163c4b12062696c67697369, 'Y', '2007-01-08 09:14:29'),
(85, 35, 0x4d6573616a6c6172, 'Y', '2007-01-08 09:15:06'),
(86, 35, 0x426972206d6573616a2067c3b66e646572, 'Y', '2007-01-08 09:15:06'),
(87, 35, 0x4461766574, 'Y', '2007-01-08 09:15:06'),
(88, 35, 0x4b756c6c616ec4b163c4b16c6172, 'Y', '2007-01-08 09:15:06'),
(89, 35, 0x4f79756e6c6172, 'Y', '2007-01-08 09:15:28'),
(90, 35, 0xc38765766972, 'Y', '2007-01-08 09:15:28'),
(91, 35, 0x466f72756d6c6172, 'Y', '2007-01-08 09:15:28'),
(92, 35, 0x464151, 'Y', '2007-01-08 09:16:14'),
(93, 35, 0x536974652068617269746173c4b1, 'Y', '2007-01-08 09:16:14'),
(94, 35, 0x42656c67656c6572, 'Y', '2007-01-08 09:16:14'),
(95, 35, 0x53617966616ec4b16e206f6c75c59f747572756c6475c49f7520796572, 'Y', '2007-01-08 09:16:14'),
(96, 35, 0x59c3b66e6574696369, 'Y', '2007-01-08 09:16:51'),
(97, 35, 0xc387c4b16bc4b1c59f, 'Y', '2007-01-08 09:16:51'),
(98, 35, 0x67c3bc6e, 'Y', '2007-01-08 09:16:51'),
(99, 35, 0x67c3bc6e, 'Y', '2007-01-08 11:26:17'),
(100, 35, 0x7665, 'Y', '2007-01-08 09:18:19'),
(101, 35, 0x73616174, 'Y', '2007-01-08 09:18:19'),
(102, 35, 0x73616174, 'Y', '2007-01-08 11:26:17'),
(103, 35, 0x62796f796f6d6973697a, 'Y', '2007-01-08 09:18:19'),
(104, 35, 0x6865722068616d6c652069c3a7696e2066617a6c6164616e20257320696c65, 'Y', '2007-01-08 09:18:19'),
(106, 35, 0x4a61706f6e2062796f796f6d697369, 'Y', '2007-01-08 09:18:19'),
(107, 35, 0x7461c59f, 'Y', '2007-01-08 11:26:17'),
(108, 35, 0x4b616e6164612062796f796f6d697369, 'Y', '2007-01-08 09:19:24'),
(109, 35, 0x4f79756e20456b6c656e646921, 'Y', '2007-01-08 09:19:24'),
(122, 35, 0x4365766170, 'Y', '2007-01-08 09:21:52'),
(127, 35, 0x44c3bc7a656e6c65, 'N', '2007-01-08 09:23:01'),
(128, 35, 0x59756b6172c4b120696c65726c65, 'Y', '2007-01-08 09:23:01'),
(129, 35, 0x41c59f61c49fc4b120696c65726c65, 'Y', '2007-01-08 09:23:01'),
(132, 35, 0x4b756c6c616ec4b163c4b1204164c4b1, 'Y', '2007-01-08 09:23:27'),
(134, 35, 0xc4b073696d, 'Y', '2007-01-08 09:23:27'),
(135, 35, 0xc387657669726d656e6c6572, 'Y', '2007-01-08 09:25:01'),
(136, 35, 0x466f72756d, 'Y', '2007-01-08 09:25:01'),
(42, 35, 0xc39c7a67c3bc6ec3bc6d2c2067c3b6726d656b20697374656469c49f696e697a20666f726d752062756c616dc4b1796f72756d2e, 'Y', '2007-01-08 09:32:13'),
(43, 35, 0x486d6d2c206275206d6573616a20766172206f6c6d6179616e2062697220696c6574697965206365766162612062656e7a69796f722e, 'Y', '2007-01-08 09:32:13'),
(44, 35, 0xc39c7a67c3bc6ec3bc6d2c2067c3b6726d656b20697374656469c49f696e697a206d6573616ac4b12062756c616dc4b1796f72756d2e, 'Y', '2007-01-08 09:32:13'),
(45, 35, 0xc39c7a67c3bc6ec3bc6d2c206275206b756c6c616ec4b163c4b179c4b12062756c616dc4b1796f72756d2e, 'Y', '2007-01-08 09:32:13'),
(46, 35, 0xc39c7a67c3bc6ec3bc6d2c206275206b756c6c616ec4b163c4b1206164c4b1206b756c6c616ec4b16d64612c206cc3bc7466656e2062656e7a657269206f6c6d6179616e20626972206b756c6c616ec4b163c4b1206164c4b12062756c756e757a2e, 'Y', '2007-01-08 09:32:13'),
(48, 35, 0x456e746572706f6c6173796f6e20666f6e6b7369796f6e756e64616b69206465c49f6572207461686d696e206564696c656d69796f722e, 'Y', '2007-01-08 11:51:49'),
(49, 35, 0xc39c7a67c3bc6ec3bc6d2c20736164656365206b656e6469206f79756e756e757a752073696c6562696c697273696e697a2e, 'Y', '2007-01-08 11:51:49'),
(50, 35, 0xc39c7a67c3bc6ec3bc6d2c2062752062656b6c656d65206f646173c4b1206f79756e756e752062756c616dc4b1796f72756d2e204d756874656d656c656e206269726973692068616c6968617ac4b1726461206f79756e61206b6174c4b16c64c4b12e, 'Y', '2007-01-08 11:51:49'),
(51, 35, 0xc39c7a67c3bc6ec3bc6d2c206b656e6469206f79756e756e757a61206b6174c4b16c616d617a73c4b16ec4b17a2e, 'Y', '2007-01-08 11:51:49'),
(52, 35, 0xc39c7a67c3bc6ec3bc6d2c2062656c69726c656e656e20736576697965206172616cc4b1c49fc4b16e6461206465c49f696c73696e697a2e, 'Y', '2007-01-08 11:51:49'),
(54, 35, 0xc39c7a67c3bc6ec3bc6d2c206765c3a765726c6920c59f696672656e697a6920646fc49f72752079617a6d6164c4b16ec4b17a2e, 'Y', '2007-01-08 11:51:49'),
(55, 35, 0x42696c696e6d6579656e207365766979652074c3bc72c3bc2e, 'Y', '2007-01-08 11:51:49'),
(56, 35, 0xc39c7a67c3bc6ec3bc6d2c206275206b756c6c616ec4b163c4b1206164c4b16e646120626972696e692074616ec4b16dc4b1796f72756d2e, 'Y', '2007-01-08 11:51:49'),
(57, 35, 0xc39c7a67c3bc6ec3bc6d2c207461686d696e6920736576697965203330206b797520766520362064616e2061726173c4b16e6461206f6c6d616cc4b164c4b1722e, 'Y', '2007-01-08 11:51:49'),
(58, 35, 0xc39c7a67c3bc6ec3bc6d2c20736179c4b173616c2062697220616c616e6120736179c4b173616c206f6c6d6179616e20626972206465c49f65722079617a64c4b16ec4b17a2e, 'Y', '2007-01-08 11:51:49'),
(59, 35, 0xc39c7a67c3bc6ec3bc6d2c2073616465636520c3a7657669726d656e6c6572696e20c3a76576697269207961706d6173c4b16e6120697a696e20766572696c6d69c59f7469722e, 'Y', '2007-01-08 11:51:49'),
(60, 35, 0x447261676f6e756e20c3a7657669726973696e652079617264c4b16d2065746d656b2069737469796f7273616ec4b17a2c206cc3bc7466656e20c3a7657669726920666f726d756e6120626972206d6573616a206174c4b16ec4b17a2e, 'Y', '2007-01-08 11:51:49'),
(61, 35, 0xc39c7a67c3bc6ec3bc6d2c2062656c69726c656e656e2064696c6920c3a7657669726d656b2069c3a7696e207965746b696c69206465c49f696c73696e697a2e, 'Y', '2007-01-08 11:51:49'),
(63, 35, 0xc39c7a67c3bc6ec3bc6d2c2079656e6920c3a765766972696c6572692076657269746162616ec4b16e61206769726d65796520c3a7616cc4b1c59fc4b1726b656e2068617461206f6c75c59f74752e, 'Y', '2007-01-08 11:51:49'),
(66, 35, 0xc39c7a67c3bc6ec3bc6d2c2062752073617966612079616c6ec4b17a63612079c3b66e65746963692067c3b67265766c657269206f6c616e206b756c6c616e6cc4b163c4b16c6172c4b16e64c4b1722e, 'Y', '2007-01-08 11:51:49'),
(69, 35, 0xc39c7a67c3bc6ec3bc6d2c2062752067697269c59f692062756c616dc4b1796f72756d2e, 'Y', '2007-01-08 11:51:49'),
(75, 35, 0xc39c7a67c3bc6ec3bc6d2c20766572696c656e207475726e75766179c4b12062756c616dc4b1796f72756d2e, 'Y', '2007-01-08 11:51:49'),
(1014, 17, 0x696e7465726c696e677561, 'Y', '2013-08-21 00:28:46'),
(191, 35, 0xc59e696672657969206f6e61796c61, 'Y', '2007-01-08 11:55:08'),
(192, 35, 0xc59e696672657969206465c49f69c59f746972, 'Y', '2007-01-18 11:15:51'),
(193, 35, 0x4b6170616cc4b1, 'Y', '2007-01-08 11:55:08'),
(194, 35, 0x5361646563652075796172, 'Y', '2007-01-08 11:55:08'),
(1082, 17, 0x5779b66c696a20686173b36f, 'Y', '2007-01-08 13:18:27'),
(1227, 17, 0x577973b3616e6f206e6f776520686173b36f21, 'Y', '2007-01-08 13:18:27'),
(156, 35, 0x42696f67726166692079656e696c656e646921, 'Y', '2007-01-08 15:11:36'),
(157, 35, 0xc59e69667265206465c49f69c59f746921, 'Y', '2007-01-08 15:11:36'),
(158, 35, 0x50726f66696c2079656e696c656e646921, 'Y', '2007-01-08 15:11:36'),
(159, 35, 0x42656c67656c656d65, 'Y', '2007-01-08 15:11:36'),
(160, 35, 0x447261676f6e612067697269c59f, 'Y', '2007-01-08 15:11:36'),
(161, 35, 0x53c4b16bc3a76120536f72756c616e20536f72756c6172, 'Y', '2007-01-08 15:11:36'),
(163, 35, 0xc4b06e73616e6c6172, 'Y', '2007-01-08 15:11:36'),
(164, 35, 0x447261676f6e61206b61746bc4b164612062756c756e616e6c6172, 'Y', '2007-01-08 15:11:36'),
(165, 35, 0x4261c49f6c616e74c4b16c6172, 'Y', '2007-01-08 15:11:36'),
(168, 35, 0x59c3bc6b6c656d652074616c696d61746c6172c4b1, 'Y', '2007-01-18 11:15:51'),
(169, 35, 0x6b656e646920647261676f6e756e757a752069737469796f7273616ec4b17a, 'Y', '2007-01-18 11:15:51'),
(170, 35, 0x447261676f6e206b61796e616b6c6172c4b16ec4b120696e646972, 'Y', '2007-01-08 15:11:36'),
(173, 35, 0x536f75726365666f7267652764616b6920447261676f6e2070726f6a657369, 'Y', '2007-01-08 15:11:36'),
(175, 35, 0x4469c49f65723a, 'Y', '2007-01-18 11:08:23'),
(176, 35, 0xc39c6c6b65, 'Y', '2007-01-08 15:11:36'),
(177, 35, 0xc59e65686972, 'Y', '2007-01-08 15:11:36'),
(178, 35, 0x56696c61796574, 'Y', '2007-01-08 15:11:36'),
(179, 35, 0x4b6cc3bc70, 'Y', '2007-01-08 15:11:36'),
(180, 35, 0x416e617361796661, 'Y', '2007-01-08 15:11:36'),
(181, 35, 0x456c656b74726f6e696b20706f737461, 'Y', '2007-01-08 15:11:36'),
(182, 35, 0x4943512d6e756d61726173c4b1, 'Y', '2007-01-08 15:11:36'),
(183, 35, 0x4f79756e207465726369686c657269, 'Y', '2007-01-08 15:11:36'),
(184, 35, 0x486f62696c6572, 'Y', '2007-01-08 15:11:36'),
(185, 35, 0x4d65736c656b, 'Y', '2007-01-08 15:11:36'),
(187, 35, 0x4269796f67726166697969206465c49f69c59f746972, 'Y', '2007-01-08 15:11:36'),
(188, 35, 0xc59e6966726579692064c3bc7a656e6c65, 'Y', '2007-01-08 15:11:36'),
(189, 35, 0x45736b6920c59f69667265, 'Y', '2007-01-08 15:11:36'),
(190, 35, 0x59656e6920c59f69667265, 'Y', '2007-01-08 15:11:36'),
(195, 35, 0x48616d6c656c6572207665206d6573616a6c6172, 'Y', '2007-01-08 15:11:36'),
(196, 35, 0x42c3bc74c3bc6e2070616e6f207665206d6573616a6c6172, 'Y', '2007-01-08 15:11:36'),
(197, 35, 0x44c3bcc59f6579, 'Y', '2007-01-08 15:11:36'),
(198, 35, 0x5961746179, 'Y', '2007-01-08 15:11:36'),
(199, 35, 0x50726f66696c692064c3bc7a656e6c65, 'Y', '2007-01-08 15:11:36'),
(200, 35, 0x4b69c59f6973656c20617961726c616d616c6172, 'Y', '2007-01-08 15:19:02'),
(201, 35, 0x4b756c6c616ec4b163c4b12069736d69, 'Y', '2007-01-08 15:19:02'),
(202, 35, 0xc4b073696d, 'Y', '2007-01-08 15:19:02'),
(204, 35, 0x5365766979652062696c67697369, 'Y', '2007-01-08 15:19:02'),
(205, 35, 0x5365766979656c656e6469726d65, 'Y', '2007-01-18 10:37:53'),
(206, 35, 0x456c656b74726f6e696b20706f7374612062696c67696c656e6469726d656c657269, 'Y', '2007-01-08 15:19:02'),
(207, 35, 0x5461726179c4b163c4b120617961726c6172c4b16ec4b1206b756c6c616e, 'Y', '2007-01-08 15:19:02'),
(208, 35, 0x44696c, 'Y', '2007-01-08 15:19:02'),
(209, 35, 0x5a616d616e2064696c696d69, 'Y', '2007-01-08 15:19:02'),
(210, 35, 0x47656365207a616d616ec4b1, 'Y', '2007-01-08 15:19:02'),
(211, 35, 0x54616874612067726166696b6c657269, 'Y', '2007-01-18 11:08:23'),
(212, 35, 0x5461c59f20626f79757475, 'Y', '2007-01-08 15:19:02'),
(213, 35, 0x4168c59f61702072656e6769, 'Y', '2007-01-08 15:19:02'),
(214, 35, 0x59616e6c617264616b69206b6f6f7264696e61746c6172, 'Y', '2007-01-08 15:19:02'),
(215, 35, 0x536f6c, 'Y', '2007-01-08 15:19:02'),
(216, 35, 0x59756b6172c4b1, 'Y', '2007-01-08 15:19:02'),
(217, 35, 0x5361c49f, 'Y', '2007-01-08 15:19:02'),
(218, 35, 0x41c59f61c49fc4b1, 'Y', '2007-01-08 15:19:02'),
(219, 35, 0x5072c3bc7a73c3bc7a207461687461206bc3b6c59f657369, 'Y', '2007-01-08 15:19:02'),
(220, 35, 0x4d656ec3bc2079c3b66ec3bc, 'Y', '2007-01-18 11:08:23'),
(222, 35, 0x50726f66696c69206465c49f69c59f746972, 'Y', '2007-01-08 15:19:02'),
(223, 35, 0xc59e696672656e697a69206d6920756e757474756e757a3f, 'Y', '2007-01-18 10:48:01'),
(225, 35, 0x5465726b, 'Y', '2007-01-08 15:19:02'),
(226, 35, 0x506173, 'Y', '2007-01-08 15:19:02'),
(227, 35, 0x4f79756e752073696c6d65, 'Y', '2007-01-08 15:19:02'),
(229, 35, 0x536b6f72, 'Y', '2007-01-08 15:19:02'),
(230, 35, 0x4f79756e, 'Y', '2007-01-08 15:19:02'),
(231, 35, 0x506173, 'Y', '2007-01-08 15:19:02'),
(232, 35, 0x4f79756e752073696c6d65, 'Y', '2007-01-08 15:19:02'),
(233, 35, 0x54616d616d, 'Y', '2007-01-08 15:19:02'),
(234, 35, 0x4f79756e6120676572692064c3b66e6d65, 'Y', '2007-01-08 15:19:02'),
(235, 35, 0x5465726b, 'Y', '2007-01-08 15:19:02'),
(236, 35, 0x534746276920696e646972, 'Y', '2007-01-08 15:19:02'),
(237, 35, 0x42697220736f6e72616b69206f79756e61206765c3a7, 'Y', '2007-01-08 15:19:02'),
(238, 35, 0xc4b07a6c656d65206c6973746573696e64656e20c3a7c4b16b6172, 'Y', '2007-01-08 15:19:02'),
(239, 35, 0xc4b07a6c656d65206c6973746573696e6520656b6c65, 'Y', '2007-01-08 15:41:12'),
(240, 35, 0x4576, 'Y', '2007-01-08 15:41:12'),
(242, 35, 0x4b6179646f6c6d616b207665206f796e616d616b20736572626573747469722e, 'Y', '2007-01-08 15:41:12'),
(243, 35, 0x4cc3bc7466656e2067697269c59f20796170c4b16ec4b17a2e, 'Y', '2007-01-08 15:41:12'),
(244, 35, 0xc3876576726579652062616bc4b16e6d616b2069c3a7696e2c2025732069206b756c6c616ec4b16ec4b17a2e, 'Y', '2007-01-08 15:41:12'),
(245, 35, 0xc59e69667265, 'Y', '2007-01-08 15:41:12'),
(246, 35, 0x47697269c59f, 'Y', '2007-01-08 15:41:12'),
(247, 35, 0x59656e6920626972206865736170206f6c75c59f747572756e, 'Y', '2007-01-08 15:41:12'),
(248, 35, 0x47697269c59f, 'Y', '2007-01-08 15:41:12'),
(252, 35, 0x54656b72617220686fc59f67656c64696e697a2c207665207a697961726574696e697a696e206b657966696e652062616bc4b16e21, 'Y', '2007-01-08 15:41:12'),
(253, 35, 0x4f79756e2073696c696e646921, 'Y', '2007-01-08 15:41:12'),
(254, 35, 0x4f79756e61206b6174c4b16c64c4b16ec4b17a21, 'Y', '2007-01-08 15:41:12'),
(256, 35, 0x47656e656c2062696c6769, 'Y', '2007-01-08 15:41:12'),
(257, 35, 0x4a616e2076616e2064657220537465656e732073617966616c6172c4b1, 'Y', '2007-01-08 15:41:12'),
(258, 35, 0x476f2068616b6bc4b16e646120626972c3a76f6b2062696c6769, 'Y', '2007-01-08 15:41:12'),
(259, 35, 0x476f20464151, 'Y', '2007-01-08 15:41:12'),
(260, 35, 0x7265632e67616d65732e676f2068616265722067727562752069c3a7696e20676f2068616b6bc4b16e64612073c4b16bc3a76120736f72756c616e20736f72756c6172, 'Y', '2007-01-08 15:41:12'),
(265, 35, 0x53656e736569276e696e204bc3bc74c3bc7068616e657369, 'Y', '2007-01-08 15:41:12'),
(266, 35, 0x4b6174c4b16cc4b16d6cc4b12062697220776562207369746573692e4f6b7579756e207665206b6174c4b16cc4b16e21, 'Y', '2007-01-08 15:41:12'),
(267, 35, 0x476f2048616265726c657269, 'Y', '2007-01-08 15:41:12'),
(271, 35, 0x48696b617275276e756e20476f277375, 'Y', '2007-01-08 15:41:12'),
(272, 35, 0x476f2068616b6bc4b16e646120626972206d616e67612e2054617673697965206564696c697221, 'Y', '2007-01-08 15:41:12'),
(273, 35, 0x4b7572616c6c6c6172, 'Y', '2007-01-08 15:41:12'),
(274, 35, 0x45746b696c65c59f696d6c69204269722054616ec4b174c4b16d, 'Y', '2007-01-08 15:41:12'),
(275, 35, 0xc396c49f72656e6d656b2069c3a7696e20c3a76f6b206979692062697220736974652e, 'Y', '2007-01-09 16:19:51'),
(276, 35, 0xc4b06e67696c697a20476f204465726e65c49f69207461726166c4b16e64616e2079617ac4b16c6dc4b1c59f20c3a76f6b20697969206269722074616ec4b174c4b16d2e, 'Y', '2007-01-08 15:41:12'),
(281, 35, 0x5374726174656a6920766520746572696d6c6572, 'Y', '2007-01-08 15:41:12'),
(283, 35, 0x476f2050726f626c656d6c657269, 'Y', '2007-01-08 15:41:12'),
(284, 35, 0x42756e6c6172c4b120c3a7616cc4b1c59f6d616b206f79756e756e757a612079617264c4b16d2065646562696c69722e, 'Y', '2007-01-08 15:41:12'),
(285, 35, 0x476f20c396c49f7265746d65204d6572646976656e69, 'Y', '2007-01-08 15:41:12'),
(286, 35, 0x4e6572657965206f796e6173617964c4b16ec4b17a206461686120697969206f6c757264752068616b6bc4b16e646120796f72756d6c61722069c3a7696e206f79756e6c6172c4b16ec4b17ac4b12067c3b66e646572696e2e, 'Y', '2007-01-18 11:15:51'),
(287, 35, 0x47656e656c204a61706f6e636120476f20546572696d6c657269, 'Y', '2007-01-08 15:46:45'),
(288, 35, 0x4469c49f6572206f79756e63756c6172c4b16e206e652068616b6bc4b16e6461206b6f6e75c59f7475c49f756e752062696c6d656e697a20676572656b69722e, 'Y', '2007-01-08 15:46:45'),
(291, 35, 0x5461726968, 'Y', '2007-01-08 15:46:45'),
(292, 35, 0x4bc4b173612042697220c3967a6574, 'Y', '2007-01-08 15:46:45'),
(294, 35, 0x47656e69c59f6c6574696c6d69c59f205461726968, 'Y', '2007-01-18 11:15:51'),
(296, 35, 0x476f206b697461706c6172c4b12c206d616c7a656d656c6572692076652070726f6772616d6c6172c4b1, 'Y', '2007-01-08 15:46:45'),
(298, 35, 0x476f206b697461706c6172c4b120796f72756d6c6172c4b16ec4b12069c3a76572656e2067656e69c59f20626972206b6f6c6c656b7369796f6e, 'Y', '2007-01-08 15:46:45'),
(299, 35, 0x417672757061206d61726b657469, 'Y', '2007-01-18 11:15:51'),
(300, 35, 0x4469c49f657220676f2073756e7563756c6172c4b1, 'Y', '2007-01-08 15:46:45'),
(303, 35, 0x476572c3a7656b207a616d616e6cc4b1206f79756e2069c3a7696e2062c3bc79c3bc6b206269722073756e756375, 'Y', '2007-01-18 11:15:51'),
(305, 35, 0x53756e756375206c697374657369, 'Y', '2007-01-08 15:46:45'),
(306, 35, 0x42c3bc74c3bc6e20676f2073756e7563756c6172c4b1206c697374657369, 'Y', '2007-01-18 11:15:51'),
(307, 35, 0x4d6573616a206c697374657369, 'Y', '2007-01-08 15:46:45'),
(308, 35, 0x4b696d65, 'Y', '2007-01-08 15:46:45'),
(309, 35, 0x42617972616b6c6172, 'Y', '2007-01-08 15:46:45'),
(310, 35, 0x4b696d64656e, 'Y', '2007-01-08 15:46:45'),
(311, 35, 0x4b6f6e75, 'Y', '2007-01-08 15:46:45'),
(312, 35, 0x5461726968, 'Y', '2007-01-08 15:46:45'),
(314, 35, 0x59656e69, 'Y', '2007-01-08 15:46:45'),
(315, 35, 0x43657661706c616e64c4b1, 'Y', '2007-01-08 15:46:45'),
(316, 35, 0x43657661706c6121, 'Y', '2007-01-08 15:46:45'),
(6321, 36, 0x257320286ac3a174737a6dc3a16b206c6567616cc3a162622025732d61206779656e67c3a96262206ac3a174c3a96b6f7373616c29, 'Y', '2015-07-23 11:44:45'),
(340, 35, 0x4641512064c3bc7a656e6c65796963697369, 'Y', '2007-01-09 08:31:30'),
(342, 35, 0x5365766979656c656e6469726d65206772616669c49f692c, 'Y', '2007-01-18 10:52:35'),
(343, 35, 0xc39c7a67c3bc6ec3bc6d2c206269722067726166696b20c3a7697a6d656b2069c3a7696e2079657465726c69207365766979656c69206f79756e206f796e616e6d616dc4b1c59f, 'Y', '2007-01-09 08:31:30'),
(344, 35, 0x4b6179c4b174206f6c, 'Y', '2007-01-09 08:31:30'),
(345, 35, 0x4cc3bc7466656e207665726920676972696e697a, 'Y', '2007-01-09 08:31:30'),
(346, 35, 0x4d6573616a2067c3b66e646572696c646921, 'Y', '2007-01-09 08:31:30'),
(348, 35, 0x426974656e206f79756e6c6172, 'Y', '2007-01-09 08:31:30'),
(349, 35, 0x4f796e616e616e206f79756e6c6172, 'Y', '2007-01-09 08:31:30'),
(350, 35, 0x257327696e2062697469726469c49f69206f79756e6c6172, 'Y', '2007-01-09 08:31:30'),
(351, 35, 0x2573276e206f796e616d616b7461206f6c6475c49f75206f79756e6c6172, 'Y', '2007-01-09 08:31:30'),
(352, 35, 0x736766, 'Y', '2007-01-09 08:31:30'),
(293, 35, 0x44696b6b61742073c3bc72657369206bc4b173c4b1746cc4b1206f6c616e6c61722069c3a7696e2e, 'Y', '2007-01-09 10:42:52'),
(295, 35, 0x486572c59f6579692062696c6d656b20697374656d656e697a20647572756d756e64612e, 'Y', '2007-01-09 10:42:52'),
(297, 35, 0x41c3a7c4b16b6c6179c4b163c4b120476f204b61796e616b6c6172c4b1, 'Y', '2007-01-09 10:42:52'),
(322, 35, 0x4275202573206f79756e7520257320646176657469207a6174656e206b6162756c206564696c64692e, 'Y', '2007-01-09 10:42:52'),
(323, 35, 0x42752064617665742068616c6968617ac4b172646120726564646564696c6469207961206461206f79756e2073696c696e6469, 'Y', '2007-01-09 10:42:52'),
(324, 35, 0x4365766170, 'Y', '2007-01-09 10:42:52'),
(325, 35, 0x4d6573616a, 'Y', '2007-01-09 10:42:52'),
(326, 35, 0x43657661702047c3b66e646572, 'Y', '2007-01-09 10:42:52'),
(327, 35, 0x59656e69206d6573616a, 'Y', '2007-01-09 10:42:52'),
(328, 35, 0x4b696d65286b756c6c616ec4b163c4b1206164c4b129, 'Y', '2007-01-09 10:42:52'),
(329, 35, 0x4d6573616a2047c3b66e646572, 'Y', '2007-01-09 10:42:52'),
(330, 35, 0x426579617a, 'Y', '2007-01-09 10:42:52'),
(331, 35, 0x5369796168, 'Y', '2007-01-09 10:42:52'),
(332, 35, 0x417961726c616d616c6172612069746972617a206574, 'Y', '2007-01-09 10:42:52'),
(333, 35, 0x4b6162756c, 'Y', '2007-01-09 10:42:52'),
(334, 35, 0x526564, 'Y', '2007-01-09 10:42:52'),
(335, 35, 0x4461766574206d6573616ac4b1, 'Y', '2007-01-09 10:42:52'),
(336, 35, 0x44617665742047c3b66e646572, 'Y', '2007-01-09 10:42:52'),
(337, 35, 0x447261676f6e756e206b6174c4b16cc4b16d63c4b16c6172c4b1, 'Y', '2007-01-09 10:42:52'),
(5774, 36, 0x456c656d7ac3a973, 'Y', '2015-07-23 12:11:44'),
(359, 35, 0x52616b6970, 'Y', '2007-01-09 10:42:52'),
(360, 35, 0x52656e6b, 'Y', '2007-01-09 10:42:52'),
(361, 35, 0x42c3bc79c3bc6b6cc3bc6b, 'Y', '2007-01-09 10:42:52'),
(362, 35, 0x48616e64696b6170, 'Y', '2007-01-09 10:42:52'),
(363, 35, 0x4b6f6d69, 'Y', '2007-01-09 10:42:52'),
(364, 35, 0x48616d6c656c6572, 'Y', '2007-01-09 10:48:39'),
(366, 35, 0x5365766979656c69, 'Y', '2007-01-09 10:48:39'),
(368, 35, 0x536f6e2068616d6c65, 'N', '2007-01-09 10:48:39'),
(370, 35, 0x45766574, 'Y', '2007-01-09 10:48:39'),
(371, 35, 0x486179c4b172, 'Y', '2007-01-09 10:48:39'),
(372, 35, 0x426572616265726c696b, 'N', '2007-01-09 10:48:39'),
(373, 35, 0x4275206b756c6c616ec4b163c4b179c4b1206461766574206574, 'Y', '2007-01-09 10:48:39'),
(374, 35, 0x4f796e616e6d616b7461206f6c616e206f79756e6c6172c4b12067c3b673746572, 'Y', '2007-01-09 10:48:39'),
(375, 35, 0x4269746d69c59f206f79756e6c6172c4b12067c3b673746572, 'Y', '2007-01-09 10:48:39'),
(377, 35, 0x486fc59f67656c64696e697a20736179666173c4b1, 'Y', '2007-01-09 10:48:39'),
(378, 35, 0x4b756c6c616ec4b163c4b12062696c67696c6572696d, 'Y', '2007-01-09 10:48:39'),
(379, 35, 0x4269796f677261666979692064c3bc7a656e6c65, 'Y', '2007-01-09 10:48:39'),
(380, 35, 0x4d6573616ac4b12067c3b673746572, 'Y', '2007-01-09 10:48:39'),
(383, 35, 0x4261c59f6cc4b16b206c697374657369, 'Y', '2007-01-09 10:48:39'),
(384, 35, 0x466f726d75206f6b75, 'Y', '2007-01-09 10:48:39'),
(385, 35, 0x59656e69206b6f6e75, 'N', '2007-01-09 10:48:39'),
(388, 35, 0x4f796e616d6179612068617ac4b172206dc4b173c4b16e3f, 'Y', '2007-01-18 10:37:53'),
(389, 35, 0x59656e69206d6573616a6c6172, 'Y', '2007-01-09 10:55:11'),
(390, 35, 0x48616d6c652073c4b1726173c4b16ec4b16e2073697a6465206f6c6475c49f75206f79756e6c61723a, 'Y', '2007-01-09 10:55:11'),
(391, 35, 0x4869c3a7206f79756e2062756c756e616d6164c4b1, 'Y', '2007-01-09 10:55:11'),
(393, 35, 0x4b6179c4b17420746172696869, 'Y', '2007-01-09 10:55:11'),
(395, 35, 0x4269796f67726166696b2062696c6769, 'Y', '2007-01-09 10:55:11'),
(396, 35, 0x4b756c6c616ec4b163c4b17961206d6573616a2067c3b66e646572, 'Y', '2007-01-09 10:55:11'),
(397, 35, 0x4f796e616ec4b1796f72, 'Y', '2007-01-09 10:55:11'),
(398, 35, 0x4269746d69c59f, 'Y', '2007-01-09 10:55:11'),
(399, 35, 0x4b617a616e64c4b1, 'Y', '2007-01-09 10:55:11'),
(400, 35, 0x4b61796265747469, 'Y', '2007-01-09 10:55:11'),
(6147, 40, 0x536575206de97269746f, 'Y', '2014-07-30 06:27:11'),
(402, 35, 0x416b746976697465, 'Y', '2007-01-18 11:08:23'),
(406, 35, 0x4b6c6173696b, 'Y', '2007-01-09 10:55:11'),
(407, 35, 0x557967756e, 'Y', '2007-01-09 10:55:11'),
(408, 35, 0x4e696769726920796170c4b16c6172616b2065c59f6974206f79756e, 'Y', '2007-01-09 10:55:11'),
(409, 35, 0xc387696674206f79756e, 'Y', '2007-01-09 10:55:11'),
(411, 35, 0x42696c6769, 'Y', '2007-01-09 10:55:11'),
(412, 35, 0x596f72756d, 'Y', '2007-01-09 10:55:11'),
(414, 35, 0x5a616d616e2073c4b16ec4b1726c616d6173c4b1, 'Y', '2007-01-09 10:55:11'),
(415, 35, 0x234f79756e6c6172, 'Y', '2007-01-09 10:55:11'),
(416, 35, 0x486166746120536f6e75205361617469, 'Y', '2007-01-09 10:55:11'),
(417, 35, 0xc59e7520616e646120626fc59f206f6c6172616b2067c3b672c3bc6e6d656b7465, 'Y', '2007-01-09 10:55:11'),
(419, 35, 0x736164656365202573, 'Y', '2007-01-09 10:55:11'),
(420, 35, 0x456b6c656e6563656b206f79756e206164656469, 'Y', '2007-01-09 10:55:11'),
(421, 35, 0x64616e, 'Y', '2007-01-09 10:55:11'),
(422, 35, 0x6b7975, 'Y', '2007-01-09 10:55:11'),
(423, 35, 0x5365766979656c692072616b69702069737465c49f69, 'Y', '2007-01-18 10:52:35'),
(424, 35, 0x4576657473652c20736576697965206172616cc4b1c49fc4b1, 'Y', '2007-01-09 10:55:11'),
(425, 35, 0x59656e69204f79756e20456b6c65, 'Y', '2007-01-09 10:55:11'),
(426, 35, 0x4f79756e6375, 'Y', '2007-01-09 10:55:11'),
(394, 35, 0x536f6e206b756c6c616ec4b16d, 'Y', '2007-01-09 11:00:01'),
(427, 35, 0x4f79756e6c6172c4b16e20736179c4b173c4b1, 'Y', '2007-01-09 11:00:01'),
(428, 35, 0x5361617420686166746120736f6e6c6172c4b120c3a7616cc4b1c59fc4b172, 'Y', '2007-01-09 11:00:01'),
(429, 35, 0x53696c, 'Y', '2007-01-09 11:00:01'),
(430, 35, 0x4b6174c4b16c, 'Y', '2007-01-09 11:00:01'),
(431, 35, 0x54616874612062c3bc79c3bc6b6cc3bcc49fc3bc, 'N', '2007-01-09 11:00:01'),
(432, 35, 0x4b6c6173696b2068616e64696b61702865c49f65722065c59f6974206465c49f696c7365206b6f6d6920302e3529, 'Y', '2007-01-09 11:00:01'),
(433, 35, 0x557967756e2068616e64696b6170, 'Y', '2007-01-09 11:00:01'),
(436, 35, 0x6179, 'Y', '2007-01-09 11:00:01'),
(437, 35, 0x416e612073c3bc7265, 'Y', '2007-01-09 11:00:01'),
(439, 35, 0x696c65, 'Y', '2007-01-09 11:00:01'),
(442, 35, 0x69c3a7696e, 'Y', '2007-01-09 11:00:01'),
(443, 35, 0x466973636865722073c3bc72657369, 'Y', '2007-01-09 11:00:01'),
(445, 35, 0x4f79756e206b696d6c69c49f69, 'Y', '2007-01-09 11:00:01'),
(446, 35, 0x52656e6b6c6572, 'Y', '2007-01-09 11:00:01'),
(447, 35, 0x4e6967697269, 'Y', '2007-01-09 11:00:01'),
(449, 35, 0x4a61706f6e6361, 'Y', '2007-01-09 11:00:01'),
(756, 35, 0x416667616e697374616e, 'Y', '2007-01-09 11:11:31'),
(757, 35, 0x41726e617675746c756b, 'Y', '2007-01-09 11:11:31'),
(758, 35, 0x43657a61796972, 'Y', '2007-01-09 11:11:31'),
(759, 35, 0x416e646f727261, 'Y', '2007-01-09 11:11:31'),
(760, 35, 0x416e676f6c61, 'Y', '2007-01-09 11:11:31'),
(761, 35, 0x416e7461726b74696b61, 'Y', '2007-01-09 11:11:31'),
(763, 35, 0x41726a616e74696e, 'Y', '2007-01-09 11:11:31'),
(764, 35, 0x45726d656e697374616e, 'Y', '2007-01-09 11:11:31'),
(765, 35, 0x417675737472616c7961, 'Y', '2007-01-09 11:11:31'),
(766, 35, 0x417675737475727961, 'Y', '2007-01-09 11:11:31'),
(767, 35, 0x417a657262617963616e, 'Y', '2007-01-09 11:11:31'),
(768, 35, 0x426168616d616c6172, 'Y', '2007-01-09 11:11:31'),
(769, 35, 0x4261687265796e, 'Y', '2007-01-09 11:11:31'),
(771, 35, 0x42616e676c616465c59f, 'Y', '2007-01-09 11:11:31'),
(772, 35, 0x42656c61727573, 'Y', '2007-01-09 11:11:31'),
(773, 35, 0x42656cc3a7696b61, 'Y', '2007-01-09 11:11:31'),
(777, 35, 0x426f6c69767961, 'Y', '2007-01-09 11:11:31'),
(780, 35, 0x4272657a696c7961, 'Y', '2007-01-09 11:11:31'),
(782, 35, 0x42756c676172697374616e, 'Y', '2007-01-09 11:11:31'),
(784, 35, 0x427572756e6469, 'Y', '2007-01-09 11:11:31'),
(785, 35, 0x4b616d626fc3a77961, 'Y', '2007-01-09 11:11:31'),
(786, 35, 0x4b616d6572756e, 'Y', '2007-01-09 11:11:31'),
(787, 35, 0x4b616e616461, 'Y', '2007-01-09 11:11:31'),
(790, 35, 0xc3876164, 'Y', '2007-01-09 11:11:31'),
(791, 35, 0xc59e696c65, 'Y', '2007-01-09 11:11:31'),
(792, 35, 0xc387696e, 'Y', '2007-01-09 11:11:31'),
(793, 35, 0x4b6f6c6f6d62697961, 'Y', '2007-01-09 11:11:31'),
(797, 35, 0x4b6f7374612d52696b61, 'Y', '2007-01-09 11:11:31'),
(799, 35, 0x48c4b172766174697374616e, 'Y', '2007-01-09 11:11:31'),
(800, 35, 0x4bc3bc6261, 'Y', '2007-01-09 11:11:31'),
(801, 35, 0x4bc4b16272c4b173, 'Y', '2007-01-09 11:11:31'),
(802, 35, 0xc387656b2043756d6875726979657469, 'Y', '2007-01-09 11:11:31'),
(803, 35, 0x44616e696d61726b61, 'Y', '2007-01-09 11:11:31'),
(805, 35, 0x446f6d696e696b, 'Y', '2007-01-09 11:11:31'),
(806, 35, 0x446f6d696e696b2043756d6875726979657469, 'Y', '2007-01-09 11:11:31'),
(808, 35, 0x456b7661746f72, 'Y', '2007-01-09 11:11:31'),
(809, 35, 0x4dc4b173c4b172, 'Y', '2007-01-09 11:11:31'),
(810, 35, 0x456c2053616c7661646f72, 'Y', '2007-01-09 11:11:31'),
(813, 35, 0x4573746f6e7961, 'Y', '2007-01-09 11:11:31'),
(814, 35, 0x457469796f707961, 'Y', '2007-01-09 11:11:31'),
(815, 35, 0x46696a69, 'Y', '2007-01-09 11:11:31'),
(817, 35, 0x4672616e7361, 'Y', '2007-01-09 11:11:31'),
(821, 35, 0x416c6d616e7961, 'Y', '2007-01-09 11:11:31'),
(823, 35, 0x59756e616e697374616e, 'Y', '2007-01-09 11:11:31'),
(825, 35, 0x47756174656d616c61, 'Y', '2007-01-09 11:11:31'),
(826, 35, 0x47696e65, 'Y', '2007-01-09 11:11:31'),
(829, 35, 0x4861697469, 'Y', '2007-01-09 11:11:31'),
(830, 35, 0x486f6e6475726173, 'Y', '2007-01-09 11:11:31'),
(831, 35, 0x486f6e67204b6f6e67, 'Y', '2007-01-09 11:11:31'),
(832, 35, 0x4d61636172697374616e, 'Y', '2007-01-09 11:11:31'),
(834, 35, 0x48696e64697374616e, 'Y', '2007-01-09 11:11:31'),
(835, 35, 0x456e646f6e657a7961, 'Y', '2007-01-09 11:11:31'),
(836, 35, 0xc4b072616e, 'Y', '2007-01-09 11:11:31'),
(837, 35, 0x4972616b, 'Y', '2007-01-09 11:11:31'),
(838, 35, 0xc4b0726c616e6461, 'Y', '2007-01-09 11:11:31'),
(839, 35, 0xc4b0737261696c, 'Y', '2007-01-09 11:11:31'),
(840, 35, 0xc4b074616c7961, 'Y', '2007-01-09 11:11:31'),
(842, 35, 0x4a61706f6e7961, 'Y', '2007-01-09 11:11:31'),
(845, 35, 0x4b656e7961, 'Y', '2007-01-09 11:11:31'),
(849, 35, 0x4b7576657974, 'Y', '2007-01-09 11:11:31'),
(850, 35, 0x4bc4b17267c4b17a697374616e, 'Y', '2007-01-09 11:11:31'),
(853, 35, 0x4cc3bc626e616e, 'Y', '2007-01-09 11:11:31'),
(856, 35, 0x4c69627961, 'Y', '2007-01-09 11:11:31'),
(858, 35, 0x4c697476616e7961, 'Y', '2007-01-09 11:11:31'),
(859, 35, 0x4cc3bc6b73656d62757267, 'Y', '2007-01-09 11:11:31'),
(861, 35, 0x4d616b65646f6e7961, 'Y', '2007-01-09 11:11:31'),
(862, 35, 0x4d6164616761736b6172, 'Y', '2007-01-09 11:11:31'),
(864, 35, 0x4d616c657a7961, 'Y', '2007-01-09 11:11:31'),
(865, 35, 0x4d616c6469766c6572, 'Y', '2007-01-09 11:11:31'),
(866, 35, 0x4d616c69, 'Y', '2007-01-09 11:11:31'),
(867, 35, 0x4d616c7461, 'Y', '2007-01-09 11:11:31'),
(868, 35, 0x4d61727368616c6c204164616c6172c4b1, 'Y', '2007-01-09 11:11:31'),
(871, 35, 0x4d656b73696b61, 'Y', '2007-01-09 11:11:31'),
(873, 35, 0x4d6f6c646f7661, 'Y', '2007-01-09 11:11:31'),
(874, 35, 0x4d6f6e61636f, 'Y', '2007-01-09 11:11:31'),
(875, 35, 0x4d6fc49f6f6c697374616e, 'Y', '2007-01-09 11:11:31'),
(877, 35, 0x4d6f7a616d62696b, 'Y', '2007-01-09 11:11:31'),
(879, 35, 0x4e616d69627961, 'Y', '2007-01-09 11:11:31'),
(881, 35, 0x4e6570616c, 'Y', '2007-01-09 11:11:31'),
(882, 35, 0x486f6c6c616e6461, 'Y', '2007-01-09 11:11:31'),
(884, 35, 0x4e696b617261677561, 'Y', '2007-01-09 11:11:31'),
(886, 35, 0x4e696a65727961, 'Y', '2007-01-09 11:11:31'),
(887, 35, 0x4e6f727665c3a7, 'Y', '2007-01-09 11:11:31'),
(889, 35, 0x50616b697374616e, 'Y', '2007-01-09 11:11:31'),
(892, 35, 0x50616e616d61, 'Y', '2007-01-09 11:17:07'),
(893, 35, 0x50617075612059656e692047696e65, 'Y', '2007-01-09 11:17:07'),
(894, 35, 0x5061726167756179, 'Y', '2007-01-09 11:17:07'),
(895, 35, 0x50657275, 'Y', '2007-01-09 11:17:07'),
(896, 35, 0x46696c6970696e6c6572, 'Y', '2007-01-09 11:17:07'),
(897, 35, 0x506f6c6f6e7961, 'Y', '2007-01-09 11:17:07'),
(898, 35, 0x506f7274656b697a, 'Y', '2007-01-09 11:17:07'),
(899, 35, 0x506f72746f2052696b6f, 'Y', '2007-01-09 11:17:07'),
(900, 35, 0x4b61746172, 'Y', '2007-01-09 11:17:07'),
(901, 35, 0x526f6d616e7961, 'Y', '2007-01-09 11:17:07'),
(902, 35, 0x5275737961, 'Y', '2007-01-09 11:17:07'),
(910, 35, 0x53757564692041726162697374616e, 'Y', '2007-01-09 11:17:07'),
(911, 35, 0x53656e6567616c, 'Y', '2007-01-09 11:17:07'),
(915, 35, 0x53696e6761707572, 'Y', '2007-01-09 11:17:07'),
(916, 35, 0x536c6f76616b7961, 'Y', '2007-01-09 11:17:07'),
(917, 35, 0x536c6f76656e7961, 'Y', '2007-01-09 11:17:07'),
(918, 35, 0x536f6c6f6d6f6e204164616c6172c4b1, 'Y', '2007-01-09 11:17:07'),
(919, 35, 0x536f6d616c69, 'Y', '2007-01-09 11:17:07'),
(920, 35, 0x4b757a657920416672696b61, 'Y', '2007-01-09 11:17:07'),
(921, 35, 0xc4b07370616e7961, 'Y', '2007-01-09 11:17:07'),
(923, 35, 0x537564616e, 'Y', '2007-01-09 11:17:07'),
(926, 35, 0xc4b0737665c3a7, 'Y', '2007-01-09 11:17:07'),
(927, 35, 0xc4b0737669c3a77265, 'Y', '2007-01-09 11:17:07'),
(928, 35, 0x537572697965, 'Y', '2007-01-09 11:17:07'),
(929, 35, 0x54617976616e, 'Y', '2007-01-09 11:17:07'),
(930, 35, 0x546163696b697374616e, 'Y', '2007-01-09 11:17:07'),
(931, 35, 0x54616e7a616e7961, 'Y', '2007-01-09 11:17:07'),
(932, 35, 0x5461796c616e64, 'Y', '2007-01-09 11:17:07'),
(936, 35, 0x54756e7573, 'Y', '2007-01-09 11:17:07'),
(937, 35, 0x54c3bc726b697965, 'Y', '2007-01-09 11:17:07'),
(938, 35, 0x54c3bc726b6d656e697374616e, 'Y', '2007-01-09 11:17:07'),
(940, 35, 0x5567616e6461, 'Y', '2007-01-09 11:17:07'),
(941, 35, 0x556b7261796e61, 'Y', '2007-01-09 11:17:07'),
(942, 35, 0x4269726c65c59f696b204172617020456d69726c696b6c657269, 'Y', '2007-01-09 11:17:07'),
(943, 35, 0xc4b06e67696c74657265, 'Y', '2007-01-09 11:17:07'),
(944, 35, 0x416d6572696b61, 'Y', '2007-01-09 11:17:07'),
(945, 35, 0x55727567756179, 'Y', '2007-01-09 11:17:07'),
(946, 35, 0xc3967a62656b697374616e, 'Y', '2007-01-09 11:17:07'),
(949, 35, 0x56656e657a75656c6c61, 'Y', '2007-01-09 11:17:07'),
(950, 35, 0x566965746e616d, 'Y', '2007-01-09 11:17:07'),
(951, 35, 0x59656d656e, 'Y', '2007-01-09 11:17:07'),
(952, 35, 0x5a616d62697961, 'Y', '2007-01-09 11:17:07'),
(1126, 35, 0x4b757a6579204b6f7265, 'Y', '2007-01-09 11:17:07'),
(1127, 35, 0x47c3bc6e6579204b6f7265, 'Y', '2007-01-09 11:17:07'),
(1129, 35, 0x53c4b17262697374616e, 'Y', '2007-01-09 11:17:07'),
(454, 35, 0x4cc3bc7466656e2c2068616e64696b6170207461c59f6c6172c4b16ec4b17ac4b1207965726c65c59f746972696e697a21, 'Y', '2007-01-09 11:22:20'),
(455, 35, 0x4f6e61796c6120766520736f6e72616b69206f79756e6120676974, 'Y', '2007-01-09 11:22:20'),
(456, 35, 0x4f6e61796c6120766520647572756d6120676974, 'Y', '2007-01-18 10:52:35'),
(457, 35, 0x4765726920616c, 'Y', '2007-01-09 11:22:20'),
(458, 35, 0x457369726c6572, 'Y', '2007-01-09 11:22:20'),
(460, 35, 0x736f6e72616b69207361796661, 'Y', '2007-01-09 11:22:20'),
(461, 35, 0xc3b66e63656b692073616661, 'Y', '2007-01-09 11:22:20'),
(462, 35, 0x4b6f6c6f6e20456b6c65, 'Y', '2007-01-09 11:22:20'),
(463, 35, 0xc4b0737665c3a76365, 'Y', '2007-01-09 11:22:20'),
(464, 35, 0x4e6f727665c3a76365, 'Y', '2007-01-09 11:22:20'),
(465, 35, 0xc4b06e67696c697a6365, 'Y', '2007-01-09 11:22:20'),
(466, 35, 0x416c6d616e6361, 'Y', '2007-01-09 11:22:20'),
(467, 35, 0x4672616e73c4b17a6361, 'Y', '2007-01-09 11:22:20'),
(468, 35, 0xc4b07370616e796f6c6361, 'Y', '2007-01-09 11:22:20'),
(469, 35, 0xc387656b6365, 'Y', '2007-01-09 11:22:20'),
(470, 35, 0xc387696e63652847656c656e656b73656c29, 'Y', '2007-01-09 11:22:20'),
(472, 35, 0xc387696e63652842617369746c65c59f746972696c6d69c59f29, 'Y', '2007-01-09 11:22:20'),
(473, 35, 0x416c6d616e6361, 'Y', '2007-01-09 11:22:20'),
(484, 35, 0x4f63616b, 'Y', '2007-01-18 10:52:35'),
(485, 35, 0xc59e75626174, 'Y', '2007-01-18 10:52:35'),
(486, 35, 0x4e6973616e, 'Y', '2007-01-18 10:52:35'),
(487, 35, 0x4d6179c4b173, 'Y', '2007-01-18 10:52:35'),
(488, 35, 0x48617a6972616e, 'Y', '2007-01-18 10:52:35'),
(489, 35, 0x41c49f7573746f73, 'Y', '2007-01-18 10:52:35'),
(490, 35, 0x45796cc3bc6c, 'Y', '2007-01-18 10:52:35'),
(491, 35, 0x456b696d, 'Y', '2007-01-18 10:52:35'),
(450, 35, 0x4865722068616d6c652069c3a7696e2025732076652025732066617a6c6164616e2070657269796f74, 'Y', '2007-01-09 13:24:26'),
(451, 35, 0x43616e616461, 'Y', '2007-01-09 13:24:26'),
(452, 35, 0x257320686572202573207461c59f2069c3a7696e, 'Y', '2007-01-09 13:24:26'),
(453, 35, 0x6865722068616d6c652069c3a7696e2066617a6c6164616e, 'Y', '2007-01-09 13:24:26'),
(474, 35, 0x42752074c3bc72206269722065796c656d2062696c696e6d69796f72207961206461206f79756e756e2062752061c59f616d6173c4b16e6461206b756c6c616ec4b16c616d617a2e, 'Y', '2007-01-09 13:24:26'),
(475, 35, 0x4b6f6d692062656c69726c656e656e206172616cc4b1c49fc4b16e2064c4b1c59fc4b16e64612c206cc3bc7466656e206461686120616e6c616d6cc4b120626972206465c49f6572207365c3a7696e697a2e, 'Y', '2007-01-09 13:24:26'),
(476, 35, 0x42752068616d6c652069c3a7696e206269722068617461206f6c75c59f74752e54656b7261722064656e657273656e697a2067656e656c6c696b6c6520c3a7616cc4b1c59fc4b1722c20616b73692074616b64697264652064657374656b2069c3a7696e20696c657469c59f696d65206765c3a7696e697a2e, 'Y', '2007-01-09 13:24:26'),
(477, 35, 0x48616e64696b6170207461c59f6c6172c4b16ec4b16e20736179c4b173c4b12079616e6cc4b1c59f, 'Y', '2007-01-09 13:24:26'),
(478, 35, 0x446168612066617a6c612062696c6769206b656e646920736f72756c6172c4b16ec4b17ac4b1646120696c65746562696c656365c49f696e697a20203c6120687265663d226661712e706870223e46415120666f726d756e64613c2f613e2062756c756e6162696c69722e, 'Y', '2007-01-09 13:24:26'),
(479, 35, 0x546169, 'Y', '2007-01-09 13:24:26'),
(492, 35, 0x4172616cc4b16b, 'Y', '2007-01-18 10:52:35'),
(494, 35, 0x25732069c3a7696e206b756c6c616ec4b163c4b12062696c676973692e, 'Y', '2007-01-09 13:24:26'),
(495, 35, 0x4d617274, 'Y', '2007-01-18 10:52:35'),
(496, 35, 0x54656d6d757a, 'Y', '2007-01-18 10:52:35'),
(497, 35, 0x4b6173c4b16d, 'Y', '2007-01-18 10:52:35'),
(498, 35, 0x23322064656e, 'Y', '2007-01-09 13:24:26'),
(499, 35, 0x2332207965, 'Y', '2007-01-09 13:24:26'),
(500, 35, 0x46696e6c616e6479616cc4b1, 'Y', '2007-01-09 13:24:26'),
(501, 35, 0x447261676f6e206b756c6c616ec4b163c4b16c6172c4b1207665206b756c6c616ec4b163c4b12070726f66696c6c657269, 'N', '2007-01-09 13:24:26'),
(502, 35, 0x476f20746572696d6c657269, 'Y', '2007-01-09 13:24:26'),
(504, 35, 0x476f206b7572616c6c6172c4b1, 'Y', '2007-01-09 13:24:26'),
(505, 35, 0x5075616e, 'Y', '2007-01-09 13:24:26'),
(506, 35, 0x4e6f6b746120696c652061796ec4b12e546168746120c3bc7a6572696e646520626972206e656665732e, 'N', '2007-01-09 13:24:26'),
(507, 35, 0x4b6f6d69, 'Y', '2007-01-09 13:24:26'),
(508, 35, 0xc4b06c6b207461c59fc4b1206f796e6179616e207369796168c4b16e206176616e74616ac4b16ec4b1206b6172c59fc4b16c616d616b2069c3a7696e20626579617a612066617a6c6164616e3c6120687265663d222f6661712e7068703f726561643d74266361743d3323456e74727938223e7075616e3c2f613e20766572696c6d69c59f7469722e, 'N', '2007-01-09 13:24:26'),
(509, 35, 0x447261676f6e20657469c49f69, 'Y', '2007-01-18 11:20:34'),
(510, 35, 0x447261676f6e20686174616c6172c4b1, 'N', '2007-01-09 13:24:26'),
(511, 35, 0x447261676f6e206d656ec3bc6c657269207665207365c3a7656e656b6c657269, 'Y', '2007-01-09 13:24:26'),
(512, 35, 0x447261676f6e206f79756e6c6172c4b1, 'Y', '2007-01-09 13:24:26'),
(513, 35, 0x447261676f6e756e2067656c69c59f746972696c6d657369, 'Y', '2007-01-09 13:24:26'),
(515, 35, 0x557a756e2073c3bc72656469722062696c67697361796172c4b16e206261c59fc4b16e6461206f7475726172616b2044475320646520676f206f796e75796f7273756e2e20426972206475c59f20616c2076652074656d697a20656c626973656c6572206769792e203a2d29, 'Y', '2007-01-09 13:24:26'),
(518, 35, 0x4e6967697269, 'N', '2007-01-09 13:24:26'),
(519, 35, 0x4e69676972692068616e6769206f79756e63756e756e207369796168c4b120616c616361c49fc4b16e61206b61726172207665726d656e696e2062697220796f6c756475722e204261c59f6c616e67c4b1c3a7206f6c6172616b20626972206f79756e63752062697220617675c3a720626579617a207461c59fc4b120656c696e6520616cc4b172206461686120736f6e7261206469c49f6572206f79756e63752074616874616ec4b16e20c3bc7a6572696e64656b69207461c59f6c6172c4b16e2074656b20796120646120c3a7696674206f6c6475c49f756e75207461686d696e2065746d656b2069c3a7696e2074656b2069c3a7696e2062697220796120646120c3a769662069c3a7696e20696b69207461c59f206b6f7961722e45c49f657220646fc49f7275207461686d696e206564657273652c207369796168c4b120616cc4b1722c20616b64692074616b646972646520626579617ac4b120616cc4b1722e446fc49f616c206f6c6172616b2c20447261676f6e64612062752073c3bc7265c3a72073756e756375207461726166c4b16e64616e20676572c3a7656b6c65c59f746972696c6d656b74656469722e204e696861796574696e646520626579617ac4b120616c616e2061796ec4b1207a616d616e646120362e35206b6f6d697969646520616cc4b1722e4e6967697269206f79756e63756c61722061796ec4b12067c3bcc3a77465206f6c64756b6c6172c4b16e6461206b756c6c616ec4b16c6d616cc4b164c4b1722e, 'N', '2007-01-09 13:24:26'),
(522, 35, 0x59656e6920626972206f79756e206261c59f6c61726b656e206269726973696e65202269796920c59f616e736c6172222064656d656b20646fc49f7275206d756475723f, 'Y', '2007-01-09 13:24:26'),
(523, 35, 0x457665742c20746162696b692062617ac4b1206f79756e63756c61722067656c656e656b73656c203c6120687265663d222f6661712e7068703f726561643d74266361743d3323456e7472793738223e6f6e656761697368696d6173753c2f613e20746572696d696e65206465c49f65722076657269726c65722e, 'N', '2007-01-18 14:11:04'),
(525, 35, 0x59656e692062697220c3b67a656c6c696b20c3b66e65726562696c6972206d6979696d3f, 'Y', '2007-01-09 13:24:26'),
(503, 35, 0xc38765c59f69746c69, 'Y', '2007-01-09 13:47:00'),
(514, 35, 0x4b6166616d206b6172c4b1c59f74c4b1212048657220796572646520686174612076617221, 'Y', '2007-01-09 13:47:00'),
(526, 35, 0x45766574206b6573696e6c696b6c6521204cc3bc7466656e20c3b66e6572696e697a69203c4120485245463d222f70686f72756d2f6c6973742e7068703f663d34223e74617274c4b1c59f6d6120666f726d756e613c2f413e2067c3b66e646572696e697a2e0d0a0d0a48616c6968617ac4b172646120796170c4b16c6dc4b1c59f206f6c616e20c3b66e6572696c65726520676572656b2022447261676f6e20666f726d756e64616b69206172616d6120c3b67a656c6c69c49f696e64656e222c20676572656b203c4120485245463d22687474703a2f2f73656e736569732e786d702e6e65742f3f444753576973686c69737422205441524745543d225f626c616e6b223e2244475327c4b16e2073656e736569732064656b692064696c656b206c6973746573696e64656e223c2f413e20766520676572656b73652022536f726365666f72676527756e2020447261676f6e2070726f6a6520736179666173c4b16e64616b69204356532062c3b66cc3bc6dc3bc6e64656e20756c61c59fc4b16c6162696c69722e2d2d2d2d2d2d2d, 'N', '2007-01-18 14:11:04'),
(529, 35, 0x417a2062756c756e616e20626972206b7572616cc4b1206e65726564656e20c3b6c49f72656e6562696c6972696d3f, 'Y', '2007-01-09 13:47:00'),
(530, 35, 0x536f7267756e757a752046415120796120646120476f20666f726d756e64612062696c646972696e697a2e204e652074c3bc7220626972206b7572616c20c3bc7a6572696e646520646168612066617a6c612062696c6769206564696e6d656b20697374656469c49f696e697a64656e207665206f79756e756e2068616e67692061c59f616d6173c4b16e646120757967756c616e6162696c656365c49f696e64656e206261687365746d656e697a2066617964616cc4b1206f6c6163616b74c4b1722e, 'Y', '2007-01-09 13:47:00'),
(531, 35, 0x476f276e756e2074656d656c206b7572616c6c6172c4b1206e656c65726469723f, 'Y', '2007-01-18 14:11:04'),
(577, 35, 0x4a61706f6e2062796f2d796f6d697369207a616d616e2073697374656d69206e6173c4b16c20c3a7616cc4b1c59fc4b1723f, 'Y', '2007-01-09 13:49:08'),
(535, 35, 0x596f7365, 'Y', '2007-01-09 13:50:50'),
(537, 35, 0x4174617269, 'N', '2007-01-09 13:50:50'),
(539, 35, 0x4b6f, 'Y', '2007-01-09 13:50:50'),
(541, 35, 0x5a616d616ec4b120646f6c6d75c59f20626972206f79756e2067c3b672c3bc6e74c3bc6c656e6562696c6972206d693f, 'Y', '2007-01-09 13:50:50'),
(545, 35, 0x4b7975, 'Y', '2007-01-09 13:50:50'),
(547, 35, 0x44616e, 'Y', '2007-01-09 13:50:50'),
(2663, 17, 0x4272616b20706c696b7520646f207a61b361646f77616e69612e, 'Y', '2013-08-21 00:01:06'),
(301, 35, 0x41796ec4b1207a616d616e64612073c4b172612d746162616e6cc4b12e204469c49f65722062697220c3a76f6b206f79756e20766172, 'Y', '2007-01-18 11:15:51'),
(532, 35, 0xc4b06b69206f79756e6375206b6172652062697220746168746120c3bc7a6572696e646520616c616e20656c656765c3a769726d656b2069c3a7696e206dc3bc636164656c6520656465726c65722e205461687461203139783139206e6f6b746164616e206f6c75c59f757220616d6120397839207665203133783133276cc3bc6b2074616874616c617264612079617967c4b16e206f6c6172616b206b756c6c616ec4b16c6d616b746164c4b1722e204661726b6cc4b1206f6c6172616b2068616d6c656c6572206b657369c59f696d206e6f6b74616c6172c4b16e6120796170c4b16cc4b1722e204f79756e6120c3b66e6365207369796168206261c59f6c61722e0d0a0d0a45c49f6572206269722068616d6c6564656e20736f6e72612072616b6962696e206e6566657369206b616c6dc4b1796f7273612064c3bcc59f6d616e20677275706c6172c4b120746168746120c3bc7a6572696e64656e206b616c64c4b172c4b16cc4b17228656c65206765c3a76972696c656e207461c59f6c6172292e2048657268616e67692062697220656c65206765c3a769726d6564656e20736f6e726120656c65206765c3a76972656e2067727562756e206e6566657369206b616c6dc4b1796f7273612062752068616d6c6520796173616b74c4b1722e0d0a0d0ac4b06b69206f79756e637564612070617320646564696b74656e20736f6e7261206f79756e206261c59f6172c4b16cc4b12062697220c59f656b696c6465206269746972696c6d69c59f206f6c757220766520736b6f722062656c69726c656e69722c2062756e756e2069c3a7696e3a20546172616673c4b17a202864616d6529206e6f6b74616c617220646f6c647572756c75722c20766520c3b66cc3bc207461c59f6c6172206b616c64c4b172c4b16cc4b1722e20536979616820766520626579617a20616c616e6c6172c4b16e20736b6f727520656c65206765c3a76972696c656e206e6f6b74616c617264616e2072616b6962696e20656c65206765c3a769726469c49f69207461c59f6c617220c3a7c4b16b6172c4b16c6172616b2062656c69726c656e69722e0d0a0d0a446168612066617a6c612062696c67692069c3a7696e203c6120687265663d22687474703a2f2f706c6179676f2e746f2f696e7465726163746976652f696e6465782e68746d6c22207461726765743d6e65773e476f27796120476964656e2045746b696c65c59f696d6c6920596f6c3c2f613e2e, 'Y', '2007-01-18 14:11:04'),
(533, 35, 0x446168612066617a6c6120476f20736179666173c4b16ec4b1206e65726564656e2062756c6162696c6972696d3f, 'Y', '2007-01-09 14:47:51'),
(534, 35, 0x447261676f6e756e203c6120687265663d222f6c696e6b732e706870223e6261c49f6c616e74c4b16c617220736179666173c4b16e64613c2f613e2e, 'Y', '2007-01-09 14:47:51'),
(536, 35, 0x4f79756e20736f6e752e204f79756e756e20736f6e2061c59f616d6173c4b164c4b172206b692062757261646120677275706c61726120796170c4b16c616e207374726174656a696b2073616c64c4b172c4b16c6172206269746d69c59f7469722079616c6ec4b17a636120616c616e6c6172c4b12062c3bc79c3bc746d656b2069c3a7696e20656e206979692068616d6c656c65722062756c756e75722e, 'Y', '2007-01-09 14:47:51'),
(538, 35, 0x417461726920626972207461c59fc4b120796120646120677275627520656c65206765c3a769726d6520746568646964696469722e204275207461c59f2079612064612067727570206f20616e64612073616465636520626972206e6566657320696c65206b616c616b616c6dc4b1c59f74c4b1722e20427520647572756d6461206b616c616e207461c59f6c617261202261746172696465222064656e69722e0d0a476572c3a7656b2062697220746168746120c3bc7a6572696e6465206f796e61726b656e20617461726920646979652062617a656e2073c3b6796c656e6972206275206f6c61c49f616e64c4b172207665206b6573696e6c696b6c65206b696261726cc4b16b74c4b1722c20616d61207a6f72756e6c75206465c49f696c6469722e47656e656c6c696b6c65206f79756e63756c6172206f79756e61206261c59f6c616d6164616e20c3b66e63652062756e61206b617261722076657269726c65722e2042697220c3b6c49f7265746d65206f79756e756e6461207665796120c3a76f6b2066617a6c612068616e64696b61706cc4b120626972206f79756e646120626579617ac4b16e20736979616861206174617269796920686174c4b1726c61746d6173c4b1206d616e74c4b16b6cc4b164c4b1722e0d0a4f6e6c696e6520626972206f79756e64612061746172692064656d656b206cc3bc7a756d73757a6475722e, 'N', '2007-01-18 14:18:00'),
(540, 35, 0x4b6f20746168746120c3bc7a6572696e646520626972207461c59fc4b16e2074656b7261726cc4b120626972206269c3a7696d646520656c65206765c3a76972696c6d6573696469722e204b6f27206e756e206b656c696d6520616e6c616dc4b12022736f6e73757a6c756b227475722e, 'Y', '2007-01-09 14:47:51'),
(542, 35, 0x486179c4b1722e203c693e4cc3bc7466656e2079656e69206f79756e6c6172c4b16ec4b17ac4b120757967756e207a616d616e2073c4b16ec4b1726c6172c4b12069c3a765726973696e64653c6120687265663d222f6661712e7068703f726561643d74266361743d3536223e7365c3a7696e697a3c2f613e213c2f693e, 'Y', '2007-01-18 14:11:04'),
(546, 35, 0x4b7975206261c59f6c616e67c4b1c3a72073657669796573692079612064612068657268616e6769206269722075737461206f6c6d6179616e207365766979652064656d656b7469722e204b7975207365766979656c6572692033302064616e2031206520646fc49f7275206769646572207665203120656e2067c3bcc3a76cc3bc73c3bc64c3bc722e203330206b79756e756e2074616ec4b16dc4b120697365206b7572616c6c6172c4b12079656e6920c3b6c49f72656e6d69c59f20766520616e6c616dc4b1c59f20616d612068656ec3bc7a20626972206f79756e2062696c65206f796e616d616dc4b1c59f206f6c6d616b74c4b1722e204b7975207365766979656c657269203130206b7975277961206b6164617220676572c3a7656bc3a769206465c49f696c646972206b69206275206f79756e63752062697220313c6120687265663d222f6661712e7068703f726561643d74266361743d3323456e7472793339223e64616e3c2f613e696c652039203c6120687265663d222f6661712e7068703f726561643d74266361743d33353723456e7472793937223e68616e64696b61706cc4b13c2f613e2020626972206f79756e206f796e61796162696c69722e, 'Y', '2007-01-09 15:00:05'),
(548, 35, 0x44616e20757374616cc4b16b2073657669796573696e692067c3b67374657269722e2044616e207365766979656c65726920312064656e2079756b6172c4b120646fc49f727520696c65726c65722e20352064616e2062697220616d6174c3b672206f79756e63756e756e20312064616e2070726f20696c652061796ec4b12067c3bcc3a77465206f6c6475c49f752073c3b6796c656e69722e2850726f6c6172c4b16e203c6120687265663d222f6661712e7068703f726561643d74266361743d3323456e7472793338223e6b79753c2f613e207365766979656c65726920796f6b7475722e29, 'Y', '2007-01-18 14:11:04'),
(549, 35, 0x447261676f6e6461206b61c3a720736579616861742067c3bc6ec3bc6d207661723f, 'Y', '2007-01-18 14:11:04'),
(550, 35, 0x4865722079c4b16c20656e2066617a6c612033302067c3bc6e65206b616461722e2048657220617920322e3520736579616861742067c3bc6ec3bc206865736162c4b16ec4b17a6120656b6c656e69722e, 'Y', '2007-01-18 14:11:04'),
(551, 35, 0x447572756d20736179666173c4b16e64616b69206261c59f6cc4b16b6c6172c4b16e20616e6c616d6c6172c4b1206e656c65726469723f, 'N', '2007-01-09 15:00:05'),
(552, 35, 0xc4b0c59f74653c6120687265663d222f7374617475732e706870223e447572756d2073617966616ec4b17a64616b693c2f613e206261c59f6cc4b16b6c6172c4b16e206bc4b17361206269722061c3a7c4b16b6c616d6173c4b12e0d0a0d0a3c756c3e0d0a3c6c693e3c623ec4b073696d3c2f623e204b756c6c616ec4b163c4b16ec4b16e20676572c3a7656b2069736d692c20766579612062656e7a6572692e536572626573742079617ac4b16d2e0d0a3c6c693e3c623e4b756c6c616ec4b163c4b1206b696d6c69c49f693c2f623e204b756c6c616ec4b163c4b16ec4b1206f6c75c59f7475726475c49f752067697269c59f206b696d6c69c49f692e204465c49f69c59f746972696c656d657a2e200d0a3c6c693e3c623e4f79756e6c6172612061c3a7c4b16b206dc4b173c4b16ec4b17a3f3c2f623e204d756874656d656c2072616b69706c6572696e697a652062696c67692e20536572626573742079617ac4b16d2e0d0a3c6c693e3c623e526174696e673c2f623e204b756c6c616ec4b163c4b16ec4b16e2068616c692068617ac4b17264616b6920447261676f6e2073657669796573692e2053756e756375207461726166c4b16e64616e206f6c75c59f747572756c75722e0d0a3c6c693e3c623e5365766979652062696c676973693c2f623e20456b2062696c676920c3b6726e65c49f696e20626972206b756cc3bc702073657669796573692e20536572626573742079617ac4b16d2e0d0a3c2f756c3e, 'N', '2007-01-18 14:11:04'),
(553, 35, 0x4f79756e20736161746c6572696d206e65207a616d616e2067657269207361796d617961206261c59f6cc4b1796f723f, 'Y', '2007-01-09 15:24:22'),
(554, 35, 0x4f79756e20736161746c6572696e697a203c623e7361646563653c2f623e2c2073c4b172612073697a6465206f6c6475c49f75207a616d616e20676572692073617961726c61722e0d0a0d0a47657269207361796d617a6c61720d0a3c756c3e0d0a3c6c693e72616b6962696e697a20736f6e72616b692068616d6c657969206f6e61796c616d6164616e3c2f6c693e0d0a3c6c693e3c6120687265663d222f6661712e7068703f726561643d74266361743d353623456e7472793631223e75796b75207a616d616ec4b13c2f613e6ec4b17a20626f79756e63613c2f6c693e0d0a3c6c693e3c6120687265663d222f6661712e7068703f726561643d74266361743d353623456e7472793636223e73657961686174696e697a3c2f613e73c3bc726573696e63653c2f6c693e0d0a3c6c693e686166746120736f6e6c6172c4b1202865c49f657220627520c3b67a656c6c69c49f693c6120687265663d222f6661712e7068703f726561643d74266361743d33353723456e7472793434223e6f79756e206461766574693c2f613e6e6465207365c3a774697973656e697a293c2f6c693e0d0a3c2f756c3e, 'N', '2007-01-18 14:11:04'),
(555, 35, 0x53474620646f7379616c6172c4b16ec4b1206e6173c4b16c2067c3b672c3bc6e74c3bc6c65796562696c6972696d3f, 'N', '2007-01-09 15:24:22'),
(556, 35, 0x53474620646f7379616c6172c4b16ec4b17ac4b120697a6c656d656e697a652076652064c3bc7a656e6c656d656e697a65207961726179616e20626972c3a76f6b2070726f6772616d2076617264c4b1722e20c4b07969207365c3a7656e656b6c657264656e2062697269203c6120687265663d22687474703a2f2f7777772e72656e652d67726f74686d616e6e2e64652f6a61676f2f223e4a61676f3c2f613e2c204a61766120476f20697374656d636973696469722e0d0a0d0ac4b06e67696c697a20476f204465726e65c49f696e696e2053474620646f7379616c6172c4b16ec4b12067c3b672c3bc6e74c3bc6c656d656b2069c3a7696e2020757a756e20626972203c6120687265663d22687474703a2f2f7777772e62726974676f2e6f72672f676f70637265732f676f7063726573312e68746d6c23732d76696577223e70726f6772616d206c6973746573693c2f613e2076617264c4b1722e0d0a0d0a53474620697a6c656d652070726f6772616dc4b16ec4b17a206f6c6475c49f75207a616d616e2c207461726179c4b163c4b16ec4b17ac4b12070726f6772616d20696c6520696c69c59f6b696c656e6469726d656b2069c3a7696e20276170706c69636174696f6e2f782d676f2d736766272079617ac4b16ec4b17a2c2062c3b6796c6563652074656b206269722074c4b16b20696c652061c3a7c4b16c6162696c69722e, 'N', '2007-01-09 15:24:22'),
(557, 35, 0x59656e6920626972206f79756e75206e6173c4b16c206261c59f6c6174c4b172c4b16d3f, 'Y', '2007-01-09 16:17:38');
INSERT INTO `Translations` (`Original_ID`, `Language_ID`, `Text`, `Translated`, `Updated`) VALUES
(558, 35, 0x59656e6920626972206f79756e75206261c59f6c61746d616ec4b16e20626972c3a76f6b20796f6c75207661723a3c554c3e0d0a0d0a3c4120485245463d2277616974696e675f726f6f6d2e706870223e42656b6c656d65206f646173c4b16e64616b693c2f413e3c4c493e74656b6c6966206564696c6d69c59f20626972206f79756e61206b6174c4b16cc4b16ec4b17a2e0d0a0d0a42752079c3b66e74656d692065c49f65722079656e69206269722072616b6970206172c4b1796f7273616ec4b17a206b756c6c616ec4b16ec4b17a2e20c3966e63656c696b6c65206261c49f6c616e74c4b16c6172206d656ec3bc73c3bc6e64656b693c6120687265663d222f77616974696e675f726f6f6d2e706870223e2062656b6c656d65206f646173c4b13c2f613e206c696e6b696e652074c4b16b6c6179c4b16ec4b17a2e204b6174c4b16c6d616b20697374656469c49f696e697a20626972206f79756e2062756c756e20766520736f6c756e64616b69206d617669202262696c6769222064c3bcc49f6d6573696e6520626173c4b16ec4b17a2e2053617966616ec4b16e20616c74c4b16e6461206f79756e756e20617972c4b16e74c4b16cc4b120626972207461726966692076617264c4b1722e2045c49f6572206b6174c4b16c6d616b20697374657273656e697a20226b6174c4b16c222064c3bcc49f6d6573696e6520626173c4b16ec4b17a2e204275206b61646172206b6f6c61792e0d0a0d0a3c4120485245463d2277616974696e675f726f6f6d2e706870223e42656b6c656d65206f646173c4b16e64613c2f413e3c4c493e206b656e6469206f79756e756e757a752074656b6c6966206564696e697a2e0d0a0d0a45c49f6572203c6120687265663d2277616974696e675f726f6f6d2e706870223e62656b6c656d65206f646173c4b16e64616b693c2f613e6f79756e6c6172c4b1206265c49f656e6d657a73656e697a2c206f207a616d616e206b656e6469206f79756e756e757a752061c3a76162696c697273696e697a2e2042756e75207961706d616b2069c3a7696e2062656b6c656d65206f646173c4b16e6461796b656e206261736974c3a7652073617966616ec4b16e20736f6e756e64616b6920666f726d7520646f6c647572756e757a2e20224f79756e20656b6c65222064c3bcc49f6d6573696e6520626173c4b16ec4b17a2076652062656b6c6579696e697a2e204d756874656d656c656e206269726b61c3a72067c3bc6e2069c3a765726973696e6465206f796e75796f72206f6c6163616b73c4b16ec4b17a2e0d0a0d0a3c4c493e41726b616461c59f6c6172c4b16ec4b17ac4b1206461766574206564696e697a2e3c42523e0d0a45c49f6572206269722072616b6962696e206b756c6c616ec4b163c4b1206b696d6c69c49f696e692062696c69796f7273616ec4b17a206d656ec3bc64656b69203c6120687265663d222f6d6573736167652e7068703f6d6f64653d496e76697465223e64617665742065743c2f613e206c696e6b696e64656e206f6e6120646176657420796f6c6c61796162696c697273696e697a2e2041727a752065747469c49f696e697a206f79756e207365c3a7656e656b6c6572696e6920646f6c64757275702067c3b66e646572696e697a2e2052616b6962696e697a206f79756e207365c3a7656e656b6c6572696e6920697374657273652073697a696e6c652074617274c4b1c59f6162696c69722e0d0a41796ec4b1207a616d616e646120686572206b756c6c616ec4b163c4b16ec4b16e20736179666173c4b16ec4b16e20616c74c4b16e646120206275206b756c6c616ec4b163c4b179c4b1206461766574206574206c696e6b692076617264c4b1722e204275206c696e6b692074616b69702065646572656b2079756b6172c4b164616b692061796ec4b12061c59f616d616c6172c4b120616d612064616861206bc4b17361206269722073c3bc7265646520676572c3a7656b6c65c59f7469726562696c697273696e697a2e3c2f554c3e, 'N', '2007-01-09 16:17:38'),
(559, 35, 0x4f79756e756d6461206e6173c4b16c2068616d6c65207961706172c4b16d3f, 'Y', '2007-01-18 14:11:04'),
(560, 35, 0x3c6120687265663d222f7374617475732e706870223e447572756d20736179666173c4b16e64613c2f613e2073c4b172616ec4b16e2073697a6465206f6c6475c49f75206f79756e6c6172c4b16e206c6973746573692076617264c4b1722e204f79756e206e756d61726173c4b120c3bc7a6572696e652074c4b16b6c616d616ec4b17a2073697a65206f79756e752067c3b6737465726563656b7469722e0d0a0d0a426972206f79756e7520697a6c65726b656e2c20626972207461c59fc4b16e207965726c65c59f746972696c6d65736920287665206269722068616d6c656e696e20796170c4b16c6d6173c4b12920626fc59f20626972206b657369c59f696d206e6f6b746173c4b16e612074c4b16b6c616e6172616b20676572c3a7656b6c65c59f69722e0d0a0d0a4f79756e2079656e6920626972207461c59f2f20706173202f207465726b20696c652079656e696c656e6469c49f69207a616d616e206f6e61796c616d61206275746f6e6c6172c4b16e64616e20626972696e65206261c59f7675726172616b207365c3a7696d696e697a6920646fc49f72756c6179c4b16ec4b17a2e2045c49f65722066696b72696e697a69206465c49f69c59f746972697273656e697a2067657269206769742064c3bcc49f6d6573696e6520626173c4b16ec4b17a2e, 'Y', '2007-01-18 14:11:04'),
(561, 35, 0x4f796e616e6d616b7461206f6c616e20626972206f79756e75206e6173c4b16c2073696c6562696c6972696d3f, 'Y', '2007-01-10 08:33:56'),
(562, 35, 0x4f6e756e63752068616d6c657965206b616461722074616874616ec4b16e20616c74c4b16e6461202273696c6d65206261c49f6c616e74c4b173c4b1222067c3b672c3bc6e6563656b7469722e2045c49f657220626972206f79756e7520627520c59f656b696c64652073696c657273656e697a2c206275207365766979656e697a692065746b696c656d65796563656b7469722e204f6e756e63752068616d6c6564656e20736f6e726120626972206f79756e2073696c696e656d657a2e, 'N', '2007-01-10 08:33:56'),
(563, 35, 0x426972206f79756e75206e6173c4b16c20736f6e6c616e64c4b172c4b172c4b16d3f, 'Y', '2007-01-10 08:33:56'),
(564, 35, 0x4275207361646563652073c4b17261203c693e73697a64653c2f693e206f6c6475c49f75207a616d616e20796170c4b16c6162696c69722e0d0a3c554c3e0d0a3c4c493e53697a2076652072616b6962696e697a206b6172c59fc4b16cc4b16b6cc4b120706173206465722e204275206f79756e7520736f6e6c616e64c4b1726d616ec4b16e206e6f726d616c20796f6c756475722e20536f6e726120696b696e697a64656e20646520c3b66cc3bc207461c59f6c6172c4b12069c59f617265746c656d656e697a20697374656e6563656b7469722e2042756e64616e20736f6e726120447261676f6e206f79756e756e20736b6f72756e752062656c69726c65796563656b207665206b617a616e616e61206b61726172207665726563656b7469722e0d0a0d0a3c4c493e225465726b222064c3bcc49f6d6573696e69206b756c6c616ec4b16ec4b17a2e205465726b206564657273656e697a2c206f79756e206b6179626564696c6d69c59f746972207665207365766979656e697a652079616e73c4b1796163616b74c4b1722e0d0a0d0a3c4c493e4f79756e756e207a616d616ec4b16ec4b16e20646f6c6d6173c4b16e6120697a696e20766572696e203c693e28416d61206cc3bc7466656e21204469c49f6572207365c3a7656e656b6c657264656e20626972696e69207365c3a7696e697a21293c2f693e204f79756e756e757a756e207a616d616ec4b12062697465727365206b6179626564657273696e697a207665206275207365766979656e697a652079616e73c4b1796163616b74c4b1722e3c2f554c3e, 'N', '2007-01-18 14:18:00'),
(565, 35, 0x447261676f6e612047697269c59f, 'Y', '2007-01-10 08:33:56'),
(566, 35, 0x4275726173c4b1206e65726573693f, 'Y', '2007-01-10 08:33:56'),
(567, 35, 0x447261676f6e20476f2053756e7563757375202844475329203c6120687265663d226661712e7068703f726561643d74266361743d3323456e747279313532223e73c4b172612d746162616e6cc4b13c2f613e20476f206f79756e6c6172c4b1206f796e61796162696c656365c49f696e697a20626972207965726469722e20456c656b74726f6e696b20706f73746120696c65206f796e616e20676f206f79756e6c6172c4b16e612062656e7a657220c59f656b696c646520c3a7616cc4b1c59fc4b1722e0d0a0d0a4f79756e63756c61722067656e656c6c696b6c65206861667461646120352068616d6c6520796f6c6c61726c61722e2042752079c3bc7a64656e206f79756e6c61722068616674616c61722073c3bc7265723b20766520447261676f6e20476f2053756e7563757375207a616d616e2073c4b16ec4b1726c616d616c6172c4b12c20676572656b6c69207365766979656c656e6469726d657969207361c49f6c616d612067696269206369646469206b6f6e756c6172612064696b6b617420656465722e0d0a0d0a3c6120687265663d226661712e7068703f726561643d74266361743d3323456e747279313533223e45c59f207a616d616e6cc4b13c2f613e20676f206f796e616d616b20676572c3a7656b74656e20627572616461206dc3bc6d6bc3bc6e203c623e6465c49f696c6469723c2f623e2e2045c59f207a616d616e6cc4b1206f796e616d616ec4b16e20616e6c616dc4b1206261c59f6c616dc4b1c59f20626972206f79756e752062697220736161742069c3a765726973696e64652062697469726562696c6d656e697a2064656d656b7469722e2045c49f657220476f2779752065c59f207a616d616e6cc4b1206f796e616d6179c4b120746572636968206564657273656e697a203c6120687265663d22687474703a2f2f6b67732e6b69736569646f2e636f6d2f22207461726765743d225f626c616e6b223e4b47533c2f613e207961206461203c6120687265663d22687474703a2f2f70616e64612d6967732e6a6f796a6f792e6e65742f22207461726765743d225f626c616e6b223e4947533c2f613e2067696269203c6120687265663d22687474703a2f2f73656e736569732e786d702e6e65742f3f476f53657276657222207461726765743d225f626c616e6b223e6469c49f65723c2f613e2065c59f207a616d616e6cc4b120676f2073756e7563756c6172c4b16ec4b12064656e65796562696c697273696e697a2e0d0a0d0a456b206f6c6172616b2c2044475320476f20766520444753276e696e206b656e646973692068616b6bc4b16e6461203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f70686f72756d2f223e74617274c4b1c59f6d6120666f72756d6c6172c4b164613c2f613e2073756e6d616b746164c4b1722e, 'N', '2007-01-18 14:18:00'),
(568, 35, 0x5461686d696e69207365766979656d2068616b6bc4b16e64612068616c61206269722066696b72696d20796f6b2e2e2e, 'Y', '2007-01-10 09:19:01'),
(569, 35, 0x45c49f657220476f2764612079656e697973656e206d756874656d656c656e203c756c3e0d0a0d0a3c6c693e3330206b79753a2065c49f6572206b7572616c6c6172c4b12062696c69796f7273616e0d0a3c6c693e32392d3238206b79753a206269726b61c3a7206f79756e206f796e616dc4b1c59f73616e0d0a3c6c693e32372d3236206b79753a206261c59f6c616e67c4b1c3a72073657669796573696e64656b696c657265206b6172c59fc4b1206269726b61c3a76b657a206b617a616e6dc4b1c59f73616e0d0a3c6c693e32352d3232206b79753a204261c59f6c616e67c4b1c3a72073657669796573696e6465206f6c6d6179616e6c617261206b6172c59fc4b1206269726b61c3a76b657a206b617a616e6dc4b1c59f73616e0d0a3c2f756c3e0d0a0d0a22c4b06c657269207365766979656c69206261c59f6c616e67c4b1c3a7206f79756e63756c6172c4b1222069c3a7696e2062697220616c7465726e6174696664652031302064616b696b616cc4b16b203c4120485245463d687474703a2f2f7777772e6d6f746f7273636f70652e636f6d2f646f6a6f2f74657374732f205441524745543d5f626c616e6b3e62752074657374693c2f413e20616c6d616b20766520736f6e75c3a76c6172c4b16ec4b1207461686d696e6920447261676f6e207365766979656e697a206f6c6172616b20617961726c616d616461206b756c6c616e6d616b74c4b1722e, 'N', '2007-01-10 09:19:01'),
(570, 35, 0x447261676f6e207a616d616e20c3b67a656c6c696b6c657269, 'Y', '2007-01-10 10:46:55'),
(571, 35, 0x4e6564656e20736579616861742067c3bc6e6c6572696e696e206b756c6c616ec4b16dc4b1206bc4b173c4b1746cc4b13f, 'Y', '2007-01-10 10:46:55'),
(572, 35, 0x45c49f65722073c4b16ec4b1726c616d61206f6c6d6173617964c4b12c206f207a616d616e2073697a202879612064612072616b6962696e697a29207a616d616ec4b16ec4b16e20646f6c6d616d6173c4b12069c3a7696e2074656b7261722074656b7261722062697220736579616861742067c3bc6ec3bc20616c6162696c697264692e204275206461206461686120c3b66e636564656e206b6f6e75c59f756c6d75c59f206f6c616e207a616d616e2073c4b16ec4b1726c616d616c6172c4b16ec4b120616e6c616d73c4b17a6c61c59f74c4b172c4b17264c4b12e0d0a0d0a42752073656265706c6520736579616861742067c3bc6e6c6572696e696e206b756c6c616ec4b16dc4b120c59f7520c59f656b696c64656469723a0d0a3c756c3e3c6c693e68616c6968617ac4b1726461206261c59f6c616dc4b1c59f206f6c616e20736579616861742067c3bc6e6c6572696e696e20697074616c206564696c6d657369203c623e73c3b67a206b6f6e757375206465c49f696c6469723c2f623e2e3c2f6c693e3c2f756c3e, 'N', '2007-01-10 10:46:55'),
(573, 35, 0x46415120646120796170c4b16c616e20736f6e206465c49f69c59f696b6c696b6c6572206e656469723f, 'Y', '2007-01-10 10:46:55'),
(574, 35, 0x323030362d30372d32340d0a0d0a536f6e207a616d616e6c6172646120c3b66e656d6c69206465c49f69c59f696b6c696b6c6572206f6c6d6164c4b12e, 'Y', '2007-01-10 10:46:55'),
(575, 35, 0x447261676f6e206e6564656e20656c656b74726f6e696b20706f737461206164726573696d692062696c6d656b2069737469796f723f, 'Y', '2007-01-10 10:46:55'),
(576, 35, 0x59656e692062697220c59f696672652067c3b66e6465726d656b2069c3a7696e2845c49f657220697374656e6d69c59f7365292e203c693e4b756c6c616ec4b163c4b16ec4b16e2070726f66696c696e6465206b6179646564696c6d69c59f206f6c616e3c2f693e20656c656b74726f6e696b20706f737461206164726573696e652079656e692062697220c59f696672652067c3b66e6465726d656b206b756c6c616ec4b163c4b179c4b12062656c67656c656d656c2069c3a7696e206b6f6c6179206269722079c3b66e74656d6469722e0d0a0d0a447261676f6e206b69c59f6973656c2068616b6c6172612073617967c4b12064757961723a2044475320697374656e6d6579656e20706f7374616c61722067c3b66e6465726d657a2e20506f7374612061647265736c657269206b696d7365207461726166c4b16e64616e2067c3b672c3bc6e74c3bc6c656e656d657a207961206461206b696d7365796520736174c4b16c616d617a2e0d0a0d0a447261676f6e206b756c6c616ec4b163c4b16c6172c4b16e20706f7374612061647265736c6572696e69203c693e6b61796465746d656d656c6572696e653c2f693e20697a696e2076657269722e20427520647572756d646120c59f69667265796920756e75746d6179616361c49fc4b16ec4b17a64616e203c693e656d696e206f6c756e757a213c2f693e, 'Y', '2007-01-10 10:46:55'),
(578, 35, 0x426972206b756c6c616ec4b163c4b120616e612073c3bc726573696e69206b756c6c616e64c4b1c49fc4b1207a616d616e2c203c623e686572206269723c2f623e2068616d6c652069c3a7696e2062656c69726c656e6d69c59f20626972206bc4b173c4b1746cc4b1207a616d616ec4b12076617264c4b1722e20456b206f6c6172616b20626972c3a76f6b2070657269796f746c6172612073616869707469723a0d0a3c554c3e0d0a3c4c493e204f79756e6375207a616d616ec4b16e64612068616d6c6520796170617273612c206765726920736179c4b16dc4b120696c6b206465c49f6572696e6520676572692064c3b66e65722076652070657269796f7420736179c4b173c4b1206465c49f69c59f6d657a2e3c2f4c493e0d0a0d0a3c4c493e205a616d616ec4b16e64612068616d6c65207961706d617a73612c2070657269796f746c6172c4b16e20736179c4b173c4b1207a616d616e6c6120617a616cc4b1722c207665206765726920736179c4b16d2068656d656e2074656b726172206261c59f6c61722e3c2f4c493e0d0a3c2f554c3e0d0a426972206f79756e63756e756e2070657269796f6475207665207a616d616ec4b1206b616c6d6164c4b1c49fc4b1207a616d616e2c206f79756e75206b617962656465722e, 'N', '2007-01-10 10:54:58'),
(605, 35, 0x53474620696e2069c3a7696e652079617ac4b179c4b1206e6173c4b16c206b61796465646562696c6972696d3f, 'Y', '2007-01-10 11:36:22'),
(606, 35, 0x59617ac4b16ec4b17ac4b120266c743b636f6d6d656e742667743b20766520266c743b2f636f6d6d656e742667743b207461676c6172c4b12069c3a7696e6520616cc4b16ec4b17a2e0d0a0d0ac396726e656b3a204f796e616e616e6d616b7461206f6c616e206f79756e6c6172c4b16ec4b17a64616e20626972696e64653a0d0a0d0a312e202248616d6c657969206f6e61796c612055524c222764656b69206d6573616a20616c616ec4b16e6120676972696e697a3a0d0a0d0a73616465636520746573742c206cc3bc7466656e2067c3b67a617264c4b1206564696e697a0d0a266c743b636f6d6d656e742667743b0d0a64656e656d6520796f72756d2c207367662064652067c3b672c3bc6e6d65736920676572656b69720d0a266c743b2f636f6d6d656e742667743b0d0a64656e656d6520796f72756d2c207367662064652067c3b672c3bc6e6d65736920676572656b69720d0a0d0a322e2048616d6c656e697a69206f6e61796c6179c4b16e2e0d0a332e20534746276920696e646972696e2e0d0a342e2053474627692061c3a7c4b16ec4b17a2842697220476f20697374656d636973692079612064612079617ac4b12064c3bc7a656e6c65796963697369206b756c6c616e6172616b290d0a0d0a352e2048616d6c6520796f72756d753a0d0a266c743b447261676f6e2069736d696e697a2667743b3a2064656e656d6520796f72756d2c207367662064652067c3b672c3bc6e6d65736920676572656b69720d0a6f6c6163616b74c4b1722e0d0a0d0a362e20596f72756d756e757a756e20736164656365206f79756e2062697474696b74656e20736f6e7261206f6b756e6162696c6972206f6c6d6173c4b12069c3a7696e2c266c743b636f6d6d656e742667743b20266c743b2f636f6d6d656e742667743b20796572696e6520266c743b68696464656e2667743b20266c743b2f68696464656e2667743b206b756c6c616ec4b16ec4b17a2e2047697a6c6920796f72756d6c6172203c753e7361646563653c2f753e2053474620646f73796173c4b120696c652067c3b672c3bc6e74c3bc6c656e6562696c6563656b7469722e0d0a0d0a0d0a266c743b636f6d6d656e742667743b20266c743b2f636f6d6d656e742667743b2020766520266c743b68696464656e2667743b20266c743b2f68696464656e2667743b207461676c6172c4b120266c743b632667743b20266c743b2f632667743b2020766520266c743b682667743b20266c743b2f682667743b206f6c6172616b206bc4b173616c74c4b16c6162696c69722e0d0a0d0a4e6f726d616c2079617ac4b12879617ac4b120266c743b636f6d6d656e742667743b20766520266c743b2f636f6d6d656e742667743b207461676c6172c4b12069c3a7696e6465204f4c4d4159414e2920736164656365206f79756e64616b69206f79756e63756c6172207461726166c4b16e64616e2067c3b672c3bc6e74c3bc6c656e6562696c69722e2059617ac4b1206261c59f6b61206869c3a76b696d7365207461726166c4b16e64616e2067c3b672c3bc6e74c3bc6c656e656d657a207665205347462764652079657220616c6d617a2e2042752073697a696e206b69c59f6973656c6c69c49f696e697a69206b6f72756d616b2069c3a7696e6469722e, 'N', '2007-01-10 11:36:22'),
(591, 35, 0x4b656e6469206f79756e2073616174696d65207a616d616e20656b6c65796562696c6972206d6979696d3f, 'Y', '2007-01-10 11:43:34'),
(592, 35, 0x486179c4b1722e, 'N', '2007-01-10 11:43:34'),
(593, 35, 0x52616b6962696d696e2073616174696e65207a616d616e20656b6c65796562696c6972206d6979696d3f, 'Y', '2007-01-10 11:43:34'),
(594, 35, 0x486179c4b1722e, 'N', '2007-01-10 11:43:34'),
(597, 35, 0x42796f2d796f6d692e, 'Y', '2007-01-10 11:43:34'),
(598, 35, 0x426972206f79756e756e20616e612073c3bc72657369206269747469c49f69207a616d616e20757967756c616e616e207a616d616e2073c4b16ec4b1726c616d6173c4b1206b7572616c6c6172c4b1, 'Y', '2007-01-10 11:43:34'),
(618, 35, 0x4261c59f6c616d61207365766979657369, 'Y', '2007-01-18 10:52:35'),
(619, 35, 0x536f6e20736576697965, 'Y', '2007-01-10 11:47:19'),
(620, 35, 0x536576697965206661726bc4b1, 'Y', '2007-01-10 11:47:19'),
(621, 35, 0x42c3bc74c3bc6e204641512779752074656b20736179666164612067c3b673746572, 'Y', '2007-01-10 11:47:19'),
(579, 35, 0x4b616e6164612062796f2d796f6d69207a616d616e2073697374656d69206e6173c4b16c20c3a7616cc4b1c59fc4b1723f, 'Y', '2007-01-10 14:04:06'),
(580, 35, 0x426972206f79756e63756e756e20616e612073c3bc72657369206b756c6c616ec4b16c64c4b1c49fc4b16e64612c203c623e62656c6c6920736179c4b164613c2f623e207461c59fc4b1206f796e616d616b2069c3a7696e2073c4b16ec4b1726cc4b120626972207a616d616ec4b12076617264c4b1722e0d0a0d0ac396726e656b3a2031352067c3bc6e2069c3a765726973696e6465203130207461c59f3a0d0a45c49f6572206f79756e6375203130756e63752068616d6c6573696e69207a616d616ec4b16e64612079617074c4b17973612c206765726920736179c4b16dc4b12079656e6964656e206261c59f6c6172283130207461c59f2069c3a7696e2031352067c3bc6e206461686129, 'N', '2007-01-10 14:04:06'),
(581, 35, 0x46697363686572207a616d616e2073697374656d69206e6173c4b16c20c3a7616cc4b1c59fc4b1723f, 'Y', '2007-01-10 14:04:06'),
(582, 35, 0x426972206f79756e63752068616d6c6573696e692079617074c4b16b74616e20736f6e72612c2073616174696e652062656c6c69206d696b74617264612022656b2073c3bc72652220656b6c656e69722822616e612073c3bc72652220696c652062656c69726c656e656e206d616b73696d756d206465c49f657265206b61646172292e0d0a0d0a4f79756e63756e756e207a616d616ec4b1206b616c6d6164c4b1c49fc4b16e64612c206f79756e75206b617962656465722e, 'N', '2007-01-10 14:04:06'),
(583, 35, 0x55796b75207a616d616ec4b12046697363686572207a616d616ec4b16ec4b1206e6173c4b16c2065746b696c65723f, 'Y', '2007-01-10 14:04:06'),
(584, 35, 0x42756e752061c3a7c4b16b6c616d616b2069c3a7696e2062697220c3b6726e656b3a0d0a0d0a48657220686166746120332068616d6c6520796170c4b16c6d6173c4b16ec4b1207665206f79756e756e2043756d6172746573692079612064612050617a6172206269746d656d6573696e69206973746579656c696d2e0d0a0d0a486166746120736f6e6c6172c4b120697074616c206564696c6d69c59f20466973636865722073616174696e6465206865722068616d6c652069c3a7696e202837202d2032292067c3bc6e202a202832342073202d20392075796b75207a616d616ec4b129202f20332068616d6c65203d20323520736161742076617264c4b1722e, 'Y', '2007-01-10 14:04:06'),
(585, 35, 0x55796b75207a616d616ec4b1206e656469723f, 'N', '2007-01-10 14:04:06'),
(586, 35, 0x2255796b75207a616d616ec4b122206f6c6172616b2062656c69726c656e656e20736161746c657220626f79756e6361206f79756e20736161746c6572696e697a20647572647572756c7572207665206b616c616e2073c3bc72656e697a20676572697965207361796d617a2e, 'N', '2007-01-10 14:04:06'),
(587, 35, 0x4f79756e2073616174696d2031302064616b696b612069c3a765726973696e6465206e6564656e2039207361617420676572692073c4b1c3a7726164c4b13f, 'Y', '2007-01-10 14:04:06'),
(588, 35, 0x45c49f65722073c4b1c3a7726179616e20736161746c65722067c3b672c3bc796f7273616ec4b17a2c20626972617a207579756d6179c4b12064c3bcc59fc3bc6e6d656c6973696e697a2e203b2d290d0a0d0a426972206f79756e20736161746920332067c3bc6e207a616d616ec4b16ec4b17a206b616c64c4b1c49fc4b16ec4b12073c3b6796c656469c49f696e64652c2062753a0d0a3c6e6f77723e53697a697a3c2f6e6f77723e203c6e6f77723e33202a202832342d39293c2f6e6f77723e203d203c6e6f77723e343520736161743c2f6e6f77723e206f662075796b7573757a207a616d616ec4b16ec4b17a206f6c6475c49f7520616e6c616dc4b16e646164c4b1722e0d0a0d0a426972206f79756e20736161746920322067c3bc6e2076652031342073616174696e697a206b616c64c4b1c49fc4b16ec4b12073c3b6796c656469c49f696e64652c2062753a0d0a3c6e6f77723e53697a696e3c2f6e6f77723e203c6e6f77723e32202a202832342d3929202b2031343c2f6e6f77723e203d203c6e6f77723e343420736161743c2f6e6f77723e2075796b7573757a207a616d616ec4b16ec4b17a206f6c6475c49f7520616e6c616dc4b16e646164c4b1722e, 'Y', '2007-01-10 14:04:06'),
(589, 35, 0x4b756c6c616ec4b163c4b12070726f66696c696d64656b692075796b75207a616d616ec4b16ec4b1206e6564656e206465c49f69c59f746972656d69796f72756d3f, 'Y', '2007-01-10 14:04:06'),
(590, 35, 0xc387c3bc6e6bc3bc2075796b75207a616d616ec4b16ec4b17ac4b12067c3bc6e646520c3bcc3a7206b657a206465c49f69c59f7469726d656e697a206f79756e20736161746c6572696e697a696e206475726d6173c4b16e61206e6564656e206f6c6162696c69722e205361646563652079616bc4b16e207a616d616e6461206465c49f69c59f7469726d6564697973656e697a207961706162696c697273696e697a2e, 'Y', '2007-01-10 14:04:06'),
(595, 35, 0x536579616861742067c3bc6e6c657269206e656469723f, 'Y', '2007-01-10 14:04:06'),
(596, 35, 0x546174696c6465206f6c6475c49f756e757a207a616d616e2079612064612062656b6c656e6d6564696b2062697220c59f656b696c6465206b6172c59fc4b16ec4b17a6120c3a7c4b16b616e2069c59f2067657a696c657269206e6564656e69796c65206f796e616e6d616b7461206f6c616e206f79756e6c6172c4b16ec4b17ac4b1206475726475726162696c697273696e697a2e0d0a0d0a4cc3bc7466656e203c410d0a485245463d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f75736572696e666f2e706870223e4b756c6c616ec4b163c4b12062696c6769736920736179666173c4b16e64616b693c2f613e20203c410d0a485245463d22687474703a2f2f77772e647261676f6e676f7365727665722e6e65742f656469745f7661636174696f6e2e706870223e5365796168617469206261c59f6c61743c2f613e206261c49f6c616e74c4b173c4b16ec4b1206b756c6c616ec4b16ec4b17a2e20536579616861747465206f6c6d616ec4b17a20647572756d7520447572756d207665204b756c6c616ec4b163c4b12042696c676973692073617966616ec4b17a646120696c616e206564696c6563656b7469722e, 'N', '2007-01-10 14:04:06'),
(599, 35, 0x55796b75207a616d616ec4b16d2069c3a7696e2068616e6769207a616d616e2064696c696d69206b756c6c616ec4b16cc4b1796f723f, 'Y', '2007-01-10 14:04:06'),
(600, 35, 0x447261676f6e206b756c6c616ec4b163c4b12070726f66696c696e697a64652062656c69726c656469c49f696e697a20796572656c2867c3bc6e20c4b1c59fc4b1c49fc4b16e64616e2079617261726c616e6d61207a616d616e6c6172c4b16ec4b17ac4b1646129207a616d616e2064696c696d696e697a69206b756c6c616ec4b1722e, 'Y', '2007-01-10 14:04:06'),
(601, 35, 0x534746, 'Y', '2007-01-10 14:04:06'),
(602, 35, 0x53474620476f207665206469c49f6572206f79756e6c6172c4b1206b61796465646562696c6d657965207961726179616e2062697220646f73796120666f726d6174c4b164c4b17220766520536d6172742047616d6520466f726d617427c4b16e206bc4b173616c746d6173c4b164c4b1722e2044657461796c61722069c3a7696e205347462046465b345d207374616e64617264c4b16ec4b16e203c6120687265663d22687474703a2f2f7777772e7265642d6265616e2e636f6d2f7367662f22207461726765743d6e65773e7265736d6920c59f6172746e616d6573696e653c2f613e206f6620746865205347462046465b345d2062616bc4b16ec4b17a2e, 'Y', '2007-01-10 14:04:06'),
(603, 35, 0x447261676f6e206e6564656e2062616e612072616b6962696d696e20706f737461206164726573696e692073c3b6796c656d69796f723f, 'Y', '2007-01-10 14:04:06'),
(604, 35, 0xc387c3bc6e6bc3bc20447261676f6e2072616b6962696e697a696e2876652073697a696e292067697a6c696c69c49f696e697a69206b6f7275796f722e0d0a0d0a45c49f65722072616b6962696e697a696e206b756c6c616ec4b163c4b12070726f66696c696e64652062656c6972747469c49f696e64656e20646168612066617a6c6173c4b16ec4b12062696c6d656b2069737469796f7273616ec4b17a2c206cc3bc7466656e206f6e6120736f72756e757a2e, 'Y', '2007-01-10 14:04:06'),
(607, 35, 0x42656e64652062697220447261676f6e2067656c69c59f7469726963697369206f6c6162696c6972206d6979696d3f, 'Y', '2007-01-10 14:04:06'),
(608, 35, 0x457665742c206275206dc3bc6d6bc3bc6e2c20476f276e756e206b7572616c6c6172c4b16ec4b12c20504850207665204d7953514c27692062696c6d656e697a20676572656b69796f722e0d0a0d0a4cc3bc7466656e203c4120485245463d22687474703a2f2f736f75726365666f7267652e6e65742f70726f6a656374732f647261676f6e676f73657276657222205441524745543d225f626c616e6b223e447261676f6e27756e20536f75726365466f7267652764616b692067656c69c59f6d6520736179666173c4b16e613c2f413e2062616bc4b16ec4b17a2076650d0a3c4120485245463d22687474703a2f2f6c697374732e736f75726365666f7267652e6e65742f6c697374732f6c697374696e666f2f647261676f6e676f7365727665722d646576656c22205441524745543d225f626c616e6b223e647261676f6e676f7365727665722d646576656c20656c656b74726f6e696b20706f737461206c6973746573696e653c2f413ec3bc7965206f6c756e757a2e, 'N', '2007-01-10 14:04:06'),
(622, 35, 0x447261676f6e207475726e7576616c6172c4b1, 'Y', '2007-01-10 14:04:06'),
(623, 35, 0x4f6e656761697368696d617375, 'N', '2007-01-10 14:04:06'),
(624, 35, 0x2e2e2e20224f79756e206461766574692069c3a7696e207465c59f656b6bc3bc726c65722c2069796920c59f616e736c61722220616e6c616dc4b16e612067656c656e2067656c656e656b73656c20476f20746572696d692e204173c4b16c206d616e6173c4b1206973652c2073656c616d2062757972756e20627520646f73746c756b20736f6e73757a61206b6164617220646576616d20657473696e6469722e, 'N', '2007-01-10 14:04:06'),
(625, 35, 0x447261676f6e756e2064657374656b6c656469c49f69207475726e7576616c617220766172206dc4b13f, 'Y', '2007-01-10 14:04:06'),
(626, 35, 0x486179c4b1722c2068656ec3bc7a206465c49f696c2e, 'Y', '2007-01-10 14:04:06'),
(627, 35, 0x426972206b756c6c616ec4b163c4b16ec4b16e2022616b746976697465736922206e652064656d656b7469723f, 'Y', '2007-01-10 14:04:06'),
(628, 35, 0x59616bc4b16e207a616d616e6461206b61c3a72068616d6c652079617074c4b1c49fc4b120696c6520616c616b616cc4b164c4b1722e0d0a0d0a32207965c59f696c2079c4b16c64c4b17a3a20c3a76f6b2068616d6c6528617964612037302064656e2066617a6c61290d0a3120747572756e63752079c4b16c64c4b17a3a20626972617a2068616d6c65286179646120352d37302061726173c4b1290d0a302079c4b16c64c4b17a3a206f6c64756bc3a76120617a2068616d6c6520286179646120352068616d6c6564656e20617a29, 'Y', '2007-01-10 14:04:06'),
(629, 35, 0x426972206b756c6c616ec4b163c4b16ec4b16e202279c3bc7a6465736922206e652064656d656b7469723f, 'Y', '2007-01-10 14:04:06'),
(630, 35, 0x4275206b756c6c616ec4b163c4b16ec4b16e206b617a616e6d612d6b61796265746d652d6f72616ec4b164c4b172206b692c2068616c6968617ac4b17264616b692073657669796573692068616b6bc4b16e646120626972617a20656b2062696c6769207665726562696c69722e0d0a0d0a426972206f79756e63756e756e20626972617a206269746d69c59f207365766979656c69206f79756e75206f6c6475c49f75207a616d616e2c20253530206369766172c4b16e64616b6920626972206465c49f65722062756e756e206d756874656d656c656e207461686d696e206564696c656e20736576697965796520757967756e206f6c6475c49f756e752c202537352764656e20646168612066617a6c6120626972206465c49f6572206275207365766979656e696e206d756874656d656c656e20c3a76f6b2064c3bcc59fc3bc6c206f6c6475c49f756e752c2025323527696e20616c74c4b16e64616b6920626972206465c49f6572646520c3a76f6b2079c3bc6b73656b206f6c6475c49f756e7520616e6c6174c4b1722e, 'Y', '2007-01-10 14:04:06'),
(762, 35, 0x416e74696775612076652042617262756461, 'N', '2007-01-10 14:33:41'),
(770, 35, 0x4261726261646f73, 'Y', '2007-01-10 14:33:41'),
(774, 35, 0x42656c697a65, 'Y', '2007-01-10 14:33:41'),
(775, 35, 0x42656e696e, 'Y', '2007-01-10 14:33:41'),
(776, 35, 0x42687574616e, 'Y', '2007-01-10 14:33:41'),
(779, 35, 0x426f747376616e61, 'Y', '2007-01-10 14:33:41'),
(783, 35, 0x4275726b696e61204661736f, 'Y', '2007-01-10 14:33:41'),
(788, 35, 0x43617065205665726465, 'Y', '2007-01-10 14:33:41'),
(789, 35, 0x4d65726b657a20416672696b612043756d6875726979657469, 'Y', '2007-01-10 14:33:41'),
(794, 35, 0x436f6d6f726f73, 'Y', '2007-01-10 14:33:41'),
(795, 35, 0x4b6f6e676f2d4272617a7a6176696c6c65, 'Y', '2007-01-10 14:33:41'),
(796, 35, 0x4b6f6e676f2d4b696e7368617361, 'Y', '2007-01-10 14:33:41'),
(798, 35, 0x49766f727920436f617374, 'Y', '2007-01-10 14:33:41'),
(804, 35, 0x446a69626f757469, 'Y', '2007-01-10 14:33:41'),
(811, 35, 0x456b7661746f722047696e657369, 'Y', '2007-01-10 14:33:41'),
(812, 35, 0x45726974726561, 'Y', '2007-01-10 14:33:41'),
(816, 35, 0x46696e6c616e647961, 'Y', '2007-01-10 14:33:41'),
(818, 35, 0x4761626f6e, 'Y', '2007-01-10 14:33:41'),
(819, 35, 0x47616d626961, 'Y', '2007-01-10 14:33:41'),
(820, 35, 0x47656f72676961, 'Y', '2007-01-10 14:33:41'),
(822, 35, 0x47616e61, 'Y', '2007-01-10 14:33:41'),
(824, 35, 0x4772656e616461, 'Y', '2007-01-10 14:33:41'),
(827, 35, 0x47696e652d426973736175, 'Y', '2007-01-10 14:33:41'),
(828, 35, 0x477579616e61, 'Y', '2007-01-10 14:33:41'),
(833, 35, 0x4963656c616e64, 'Y', '2007-01-10 14:33:41'),
(841, 35, 0x4a616d61696361, 'Y', '2007-01-10 14:33:41'),
(843, 35, 0x4a6f7264616e, 'Y', '2007-01-10 14:33:41'),
(846, 35, 0x4b69726962617469, 'Y', '2007-01-10 14:33:41'),
(851, 35, 0x4c616f73, 'Y', '2007-01-10 14:33:41'),
(852, 35, 0x4c6174766961, 'Y', '2007-01-10 14:33:41'),
(854, 35, 0x4c65736f74686f, 'Y', '2007-01-10 14:33:41'),
(855, 35, 0x4c696265727961, 'Y', '2007-01-10 14:33:41'),
(857, 35, 0x4c6965636874656e737465696e, 'Y', '2007-01-10 14:33:41'),
(863, 35, 0x4d616c617769, 'Y', '2007-01-10 14:33:41'),
(869, 35, 0x4d6175726974616e6961, 'Y', '2007-01-10 14:33:41'),
(870, 35, 0x4d6175726974697573, 'Y', '2007-01-10 14:33:41'),
(872, 35, 0x4d6963726f6e65736961, 'Y', '2007-01-10 14:33:41'),
(876, 35, 0x4d6f726f63636f, 'Y', '2007-01-10 14:33:41'),
(878, 35, 0x4d79616e6d6172, 'Y', '2007-01-10 14:33:41'),
(880, 35, 0x4e61757275, 'Y', '2007-01-10 14:33:41'),
(883, 35, 0x59656e69205a656c616e6461, 'Y', '2007-01-10 14:33:41'),
(885, 35, 0x4e69676572, 'Y', '2007-01-10 14:33:41'),
(888, 35, 0x4f6d616e, 'Y', '2007-01-10 14:33:41'),
(890, 35, 0x50616c6175, 'Y', '2007-01-10 14:33:41'),
(903, 35, 0x5277616e6461, 'Y', '2007-01-10 14:33:41'),
(904, 35, 0x5361696e74204b69747473207665204e65766973, 'Y', '2007-01-10 14:33:41'),
(905, 35, 0x5361696e74204c75636961, 'Y', '2007-01-10 14:33:41'),
(906, 35, 0x5361696e742056696e63656e74207665204772656e6164696e6573, 'Y', '2007-01-10 14:33:41'),
(907, 35, 0x53616d6f61, 'Y', '2007-01-10 14:33:41'),
(908, 35, 0x53616e204d6172696e6f, 'Y', '2007-01-10 14:33:41'),
(909, 35, 0x53616f20546f6d65207665205072696e63697065, 'Y', '2007-01-10 14:33:41'),
(1059, 35, 0x47c3b673746572, 'Y', '2007-01-10 14:39:00'),
(1060, 35, 0x47697a6c65, 'Y', '2007-01-10 14:39:00'),
(730, 35, 0x53657961686174692064c3bc7a656e6c65, 'Y', '2007-01-10 14:41:29'),
(731, 35, 0x4d6573616a20646f7379616c6172c4b16ec4b12064c3bc7a656e6c65, 'Y', '2007-01-10 14:41:29'),
(1102, 35, 0x476f476f442076657269746162616ec4b120766520616e73696b6c6f70656469, 'Y', '2007-01-10 14:41:29'),
(1103, 35, 0x50726f666573796f6e656c206f79756e6c6172c4b16e2062c3bc79c3bc6b206269722076657269746162616ec4b1, 'Y', '2007-01-18 11:15:51'),
(1104, 35, 0x476f276e756e2042c3bc79c3bc73c3bc, 'Y', '2007-01-18 11:15:51'),
(1105, 35, 0x526f622056616e205a65696a73742765206169742068616674616cc4b16b20676f206bc3b6c59f657369, 'Y', '2007-01-10 14:41:29'),
(1210, 35, 0x4269796f67726166696b2062696c676979692064c3bc7a656e6c65, 'Y', '2007-01-10 14:41:29'),
(1228, 35, 0xc4b073746174697374696b73656c2067726166696b, 'Y', '2007-01-10 14:41:29'),
(631, 35, 0x42656b6c656d65206f646173c4b16e64616b69206f79756e2074656b6c6966696d69206e6173c4b16c2073696c6572696d3f, 'Y', '2007-01-10 15:49:48'),
(632, 35, 0x4f79756e203c693e74656b6c6966696e697a64656b693c2f693e2062696c67692064c3bcc49f6d6573696e6520626173c4b16ec4b17a2e2047656c656e2073617966616ec4b16e20656e20616c74206bc4b1736dc4b16e6461206f79756e752073696c2064c3bcc49f6d657369207661722e2045c49f6572206269726b61c3a72068616674612069c3a765726973696e6465206869c3a7626972206f79756e6375206f79756e75206b6162756c2065746d657a7365206f746f6d6174696b206f6c6172616b206b616c64c4b172c4b16cc4b1722e, 'Y', '2007-01-10 15:49:48'),
(633, 35, 0x4e696769726920696c65206f796e616e616e2065c59f6974206f79756e206e652064656d656b3f, 'Y', '2007-01-10 15:49:48'),
(634, 35, 0x3c6120687265663d226661712e7068703f726561643d74266361743d3323456e747279313534223e45c59f6974206f79756e3c2f613e206269726973696e65203c6120687265663d226661712e7068703f726561643d74266361743d33353723456e7472793937223e68616e64696b61703c2f613e206f6c6d6164616e20626972206f79756e206261c59f6c61746d6179c4b12074656b6c69662065746d656e697a2064656d656b7469722e203c6120687265663d226661712e7068703f726561643d74266361743d3323456e7472793231223e4e69676972693c2f613e2072656e67696e697a696e207261737467656c65207365c3a7696c656365c49f6920616e6c616dc4b16e612067656c69722e, 'Y', '2007-01-10 15:49:48'),
(635, 35, 0x4e6564656e2062617ac4b1206f79756e63756c6172206b756c6c616ec4b163c4b1206c6973746573696e646520796f6b3f, 'Y', '2007-01-10 15:49:48'),
(636, 35, 0x447261676f6e20766172736179c4b16c616e206f6c6172616b20616b746966206f6c6d6179616e206f79756e63756c6172c4b1206c697374656c656d657a2e203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f75736572732e706870223e4b756c6c616ec4b163c4b1206c6973746573696e696e3c2f613e20616c74c4b16e64616b69203c623e68657073696e693c2f623e20203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f75736572732e7068703f73686f77616c6c3d31223e67c3b6737465723c2f613e64656e20756c61c59f6162696c697273696e697a2e, 'N', '2007-01-10 15:49:48'),
(637, 35, 0x416e612073c3bc7265206e656469723f, 'Y', '2007-01-10 15:49:48'),
(638, 35, 0x48657220696b69206f79756e637579616461206261c59f6c616e67c4b1c3a774616e20697469626172656e20757967756c616e616e203c693e616e612073c3bc72656469723c2f693e2e0d0a0d0a45c49f657220616e612073c3bc726520626974657273652c206f79756e203c623e6269746d657a3c2f623e2e204f79756e207a616d616e2061c59fc4b16dc4b16e612067697265722e, 'Y', '2007-01-10 15:49:48'),
(639, 35, 0x447261676f6e756e2061726b6173c4b16e64616b696c6572206b696d3f, 'Y', '2007-01-10 16:04:08'),
(640, 35, 0x447261676f6e20476f2053756e75637573752028444753292072656b6c616d73c4b17a2076652061c3a7c4b16b206b61796e616b206b6f646c752074616bc4b16d2070726f6a6573696469722076652073c4b172612d746162616e6cc4b120476f206f796e616d616b74616e20686fc59f6c616e616e20696e73616e6c61722069c3a7696e203c6120687265663d222f75736572696e666f2e7068703f7569643d3222207461726765743d225f626c616e6b223e4572696b3c2f613e207461726166c4b16e64616e206f6c75c59f747572756c6d75c59f7475722c203c6120687265663d222f75736572696e666f2e7068703f7569643d3222207461726765743d225f626c616e6b223e4572696b3c2f613e207665203c6120687265663d222f75736572696e666f2e7068703f7569643d3130353622207461726765743d225f626c616e6b223e526f643c2f613e207461726166c4b16e64616e2064657374656b6c656e6d656b74656469722e20464151203c423e73697a696e3c2f423e20736f72756c6172c4b16ec4b17a6120646179616e6d616b746164c4b172207665203c6120687265663d222f75736572696e666f2e7068703f7569643d393322207461726765743d5f626c616e6b3e426a3f743b2f613e207461726166c4b16e64616e2064657374656b6c656e6d656b74656469722e2044475320626972c3a76f6b2064696c6520c3a7657672696c6d69c59f7469722e20c387657669726d656e6c6572203c6120687265663d222f70656f706c652e70687022207461726765743d225f626c616e6b223e6275726164613c2f613e207665203c4120485245463d222f70686f72756d2f6c6973742e7068703f663d37223ec3a7657669726d6520666f726d756e64613c2f413e206c697374656c656e6d656b74656469722e, 'N', '2007-01-18 14:18:00'),
(643, 35, 0x447261676f6e2764612048544d4c206b756c6c616e6162696c6972206d6979696d3f, 'N', '2007-01-10 16:45:19'),
(644, 35, 0x457665742c206269796f67726166696e697a64652c206d6573616a6c6172646120766520666f72756d6c617264612048544d4c206b756c6c616e6162696c697273696e697a2e2045c49f65722048544d4c207461676c6172c4b120656b6c657273656e697a2048544d4c27696e206b7572616c6c6172c4b16e64612076652073796e74617827c4b16e61206261c49f6cc4b1206b616c6d6179c4b120756e75746d6179c4b16ec4b17a2e20c3876fc49f75207a616d616e20627520757967756e206f6c616e207965726c65726520736f6e6c616e64c4b1726d61207461676c6172c4b16ec4b1206b6f796d616b20616e6c616dc4b16e612067656c69722e20c4b07a696e20766572696c656e2048544d4c207461676c6172c4b13a0d0a3c756c3e0d0a3c6c693e6c697374656c65720d0a3c6c693e3c623e6b6f79753c2f623e0d0a3c6c693e3c693e6974616c696b3c2f693e0d0a3c6c693e3c753e616c74c4b120c3a7697a696c693c2f753e0d0a3c6c693e3c666f6e7420636f6c6f723d7265643e666f6e743c2f666f6e743e0d0a3c6c693e706172616e74657a6c65723a20266c743b202667743b0d0a3c6c693e3c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e6574223e6c696e6b6c65723c2f613e0d0a3c6c693e6261736974206c696e6b733a203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e6574223e687474703a2f2f7777772e647261676f6e676f7365727665722e6e65743c2f613e0d0a3c2f756c3e0d0a4b6f646c6172206c697374656c65726920c59f7520c59f656b696c64652067c3b6737465726d656b2069c3a7696e20676572656b6c696469723a0d0a266c743b756c2667743b0d0a266c743b6c692667743b6c697374656c65720d0a266c743b6c692667743b266c743b622667743b6b6f7975266c743b2f622667743b0d0a266c743b6c692667743b266c743b692667743b6974616c696b266c743b2f692667743b0d0a266c743b6c692667743b266c743b752667743b616c74c4b120c3a7697a696c69266c743b2f752667743b0d0a266c743b6c692667743b266c743b666f6e7420636f6c6f723d7265642667743b666f6e74266c743b2f666f6e742667743b0d0a266c743b6c692667743b706172616e74657a6c65723a2026616d703b6c743b2026616d703b67743b0d0a266c743b6c692667743b266c743b6120687265663d2671756f743b687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742671756f743b2667743b6c696b6c6572266c743b2f612667743b0d0a266c743b6c692667743b6261736974206c696e6b6c65723a20266c743b687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742667743b0d0a266c743b2f756c2667743b, 'N', '2007-01-10 16:45:19'),
(645, 35, 0x486f736869, 'Y', '2007-01-10 16:50:57'),
(646, 35, 0x4a61706f6e636173c4b1202279c4b16c64c4b17a2220616e6c616dc4b16e6461206f6c616e20686f736869276e696e20696b6920616e6c616dc4b12076617264c4b1722e2047656e656c64652074616874616461203920616465742068616e64696b6170202279c4b16c64c4b17a206e6f6b746173c4b1222076617264c4b1722e204461686120c3b67a656c206f6c6172616b206bc3b6c59f6564656b6920342d34206e6f6b746173c4b164c4b1722e, 'Y', '2007-01-10 16:50:57'),
(655, 35, 0x54656e67656e, 'N', '2007-01-10 16:50:57'),
(656, 35, 0x54616874616ec4b16e206d65726b657a206e6f6b746173c4b164c4b1722e203139783139276c756b2062697220746168746164612031302d3130206e6f6b746173c4b164c4b1652e2054656e67656e204a61706f6e63616461202263656e6e6574696e206d65726b657a69222064656d656b7469722e, 'N', '2007-01-10 16:50:57'),
(657, 35, 0x476f62616e, 'Y', '2007-01-10 16:50:57'),
(658, 35, 0x28476572c3a7656b20766579612073616e616c2920476f20746168746173c4b12e, 'Y', '2007-01-10 16:50:57'),
(661, 35, 0x48616e64696b6170206e652064656d656b7469723f, 'Y', '2007-01-11 10:53:32'),
(662, 35, 0xc4b06b69206f79756e63756e756e207365766979656c657269206661726b6cc4b1206973652c206f79756e6c6172c4b16ec4b16e207a6179c4b166206f79756e6375796120656b6c656e656e202268616e64696b617022207461c59f6c6172c4b120696c65206261c59f6c616d6173c4b16e61206b61726172207665726562696c69726c65722876657273656c657220697969206f6c7572292e2048616e64696b6170207461c59f6c6172c4b12073697961686120766572696c69722c20766520697969207365c3a7696c6972736520476f20796574656ec49f696e64656b69206661726bc4b120746f6c6572652065646562696c69722e2048616e64696b6170207461c59f6c6172c4b120696c652068657220696b69206f79756e63756e756e6461206b617a616e6d6120c59f616e73c4b16ec4b16e206f6c6d6173c4b16e64616e20646f6c6179c4b1206f79756e206461686120696c67696ec3a7206269722068616c652067656c69722e0d0a0d0a3139783139276cc4b16b2062697220746168746164612068616e64696b6170207365766979656c65722061726173c4b16e64616b69206661726b612065c59f69747469722e204469c49f65722062c3bc79c3bc6b6cc3bc6b74656b692074616874616c6172646120447261676f6e20757967756e206f6c6163616b20c59f656b696c646520617961726c61722e0d0a0d0a47656c656e656b73656c206f6c6172616b2068616e64696b617020736179c4b173c4b16e612067c3b67265206661726b6cc4b120c59f656b696c6c65726465206f6c6d616b20c3bc7a6572653c4120485245463d226661712e7068703f726561643d74266361743d3323456e7472793839223e686f7368693c2f413e206e6f6b74616c6172c4b16e61207965726c65c59f746972696c69722e20447261676f6e276461207369796168c4b16e2068616e64696b61706c6172c4b120697374656469c49f6920c59f656b696c6465207965726c65c59f7469726d6573696e6520697a696e20766572696c69722e0d0a0d0a4cc3bc7466656e20626972c3a76f6b206f79756e63756e756e2068616e64696b6170207461c59f6c6172c4b16ec4b16e20686f736869206e6f6b74616c6172c4b16e61207965726c65c59f746972696c6d6573696e692074657263696820657474696b6c6572696e652064696b6b6174206564696e697a2e2042752079c3bc7a64656e2065c49f6572206269726973692068616e64696b617020616cc4b1796f7273612072616b69626920696c652067656c656e656b73656c2079612064612073657262657374207965726c65c59f696d206b6f6e7573756e646120616e6c61c59f6d617961207661726d6173c4b1206979696469722e, 'Y', '2007-01-11 10:53:32'),
(663, 35, 0x47656c656e656b73656c20766520757967756e2068616e64696b61702061726173c4b16e64616b69206661726b206e656469723f, 'Y', '2007-01-11 11:38:04'),
(664, 35, 0x3c693e47656c656e656b73656c2048616e64696b61703c2f693e2068616e64696b617020736179c4b173c4b16ec4b12062656c69726c656d656b2069c3a7696e20736576697965206661726bc4b16ec4b128766520746168746120626f797574756e7529206b756c6c616ec4b1722e2045c59f6974206f6c6d6179616e206f79756e6c61726461203c6120687265663d226661712e7068703f726561643d74266361743d3323456e74727939223e6b6f6d693c2f613e20302e35276469722076652065c59f6974206f79756e6c61722069c3a7696e20362e35276469722e0d0a0d0a3c693e557967756e2068616e64696b61703c2f693e206461686120697969206f6c6172616b2068657220696b69206f79756e63752069c3a7696e646520736576697965206661726bc4b16cc4b16b6c6172c4b16e64616b69206bc3bcc3a7c3bc6b206661726b6c6172c4b12064656e67656c656d656b2076652035303a353020c59f616e73207665726d656b2069c3a7696e206b6f6d69206172616cc4b16b6c6172c4b16ec4b1206b756c6c616ec4b172282e2e2e2c20312e352c20322e302c20322e352c202e2e2e292e, 'Y', '2007-01-11 11:38:04'),
(714, 35, 0xc39c7a67c3bc6ec3bc6d2c2062656c69726c656e656e206d6573616a20646f73796173c4b16ec4b12062756c616dc4b1796f72756d2e, 'Y', '2007-01-11 16:10:25'),
(715, 35, 0x53617966612073c3bc72657369, 'Y', '2007-01-11 16:10:25'),
(665, 35, 0x4a6f73656b69, 'N', '2007-01-11 16:14:55'),
(666, 35, 0x4bc3b6c59f65206f79756e752e2042c3b66c676573656c2062697220647572756d2069c3a7696e206f7274617961206b6f79756c616e20626972206f79756e2070617465726e692e2047656e656c6c696b6c652062c3b66c676573656c206f6c6172616b2068657220696b69206f79756e63752069c3a7696e646520656e206979692068616d6c652064697a69736964697220616d612062c3bc74c3bc6e73656c206f6c6172616b2062c3b6796c65206f6c6d61796162696c69722e204a6f73656b69207374726174656a696b206465c49f696c2074616b74696b2062697220746572696d6469722e, 'N', '2007-01-11 16:14:55'),
(667, 35, 0x467573656b69, 'N', '2007-01-11 16:14:55'),
(668, 35, 0x41c3a7c4b16cc4b1c59f206f79756e752e204f79756e756e2061c3a7c4b16cc4b1c59f2061c59f616d6173c4b12069c3a7696e206f7274617961206b6f79756c6d75c59f206f79756e2e20467573656b692062c3bc74c3bc6e73656c207374726174656a696b20766172736179c4b16d6c61722076652062c3bc74c3bc6e20676f20746168746173c4b120696c6520616c616b616cc4b164c4b1722e, 'N', '2007-01-11 16:14:55'),
(669, 35, 0x53656b69, 'Y', '2007-01-11 16:14:55'),
(670, 35, 0x53656b692022696b696c69207961c59f616d222064656d656b7469722e2053656b6920696b692067727562756e6461206e656665736c6572696e69207061796c61c59f74c4b16b6c6172c4b12062c3b66c676573656c2062697220c3a7c4b16b6d617a64c4b1722c20696b692067727570746120626972626972696e6920656c65206765c3a76972656d657a2e, 'Y', '2007-01-11 16:14:55'),
(671, 35, 0x48616d6c656c6572696d6920656c656b74726f6e696b20706f73746120696c65207961706162696c6972206d6979696d3f, 'Y', '2007-01-11 16:18:19'),
(672, 35, 0x486179c4b17220656c656b74726f6e696b20706f73746120696c652068616d6c656c6572696e69207961706d616ec4b17a206dc3bc6d6bc3bc6e206465c49f696c2e204269722068616d6c65207961706d616ec4b17a2069c3a7696e203c6120687265663d222f223e447261676f6e27756e20776562207369746573696e653c2f613e2067697269c59f207961706d616ec4b17a20676572656b6d656b74656469722e, 'Y', '2007-01-11 16:18:19'),
(673, 35, 0x48616d6c652073c4b1726173c4b12062656e6465206f6c6475c49f756e646120447261676f6e2062656e6920757961726163616b206dc4b13f, 'Y', '2007-01-11 16:18:19'),
(674, 35, 0x457665742c206b756c6c616ec4b163c4b12070726f66696c696e697a64656b692022656c656b74726f6e696b20706f7374612075796172c4b173c4b122206f6e61796c616dc4b1c59f2076652067697a6c69206f6c616e20656c656b74726f6e696b20706f7374616ec4b17ac4b1207665726d69c59f73656e697a206dc3bc6d6bc3bc6e2e, 'Y', '2007-01-11 16:18:19'),
(675, 35, 0x5347462079c3bc6b6c65796572656b206f79756e206261c59f6c61746162696c6972206d6979696d3f, 'Y', '2007-01-11 16:22:39'),
(676, 35, 0x486179c4b1722e, 'N', '2007-01-11 16:22:39'),
(677, 35, 0x447261676f6e20736576697965207665207365766979656c656e6469726d656c657269, 'Y', '2007-01-11 16:22:39'),
(678, 35, 0x4b756c6c616ec4b163c4b1206c6973746573696e64656b69207365766979656c656e6469726d652d6b6f6c6f6e75206e652064656d656b7469723f, 'Y', '2007-01-11 16:22:39'),
(679, 35, 0x5365766979656c656e6469726d656e697a696e20696c6b206bc4b1736dc4b12068616c692068617ac4b17264616b69203c6120687265663d222f6661712e7068703f726561643d74266361743d3323456e7472793339223e64616e3c2f613e207961206461203c6120687265663d222f6661712e7068703f726561643d74266361743d3323456e7472793338223e6b79753c2f613e207365766979656e697a6469722e20c4b06b696e6369206bc4b173c4b16d2069736528706172616e74657a2069c3a7696e64656b6929206275207365766979656e696e206e65206b616461722067c3bcc3a76cc3bc207961206461207a6179c4b166206f6c6475c49f756e752067c3b67374657269722e0d0a0d0ac396726e65c49f696e2c202231206b7975282b34302529222067c3bcc3a76cc3bc206269722031206b797520736576697965736964697220286e65726465797365207a6179c4b1662062697220312064616e206f6c6163616b206b616461722067c3bcc3a76cc3bc292e, 'N', '2007-01-11 16:22:39'),
(680, 35, 0x4269722073657669796564656e20736f6e72616b69202b2076657961202d2069c59f6172657469206e6520616e6c616d612067656c69796f723f, 'Y', '2007-01-11 16:39:49'),
(681, 35, 0x447261676f6e2062697220736576697965206661726bc4b16ec4b16e20313030207075616e612065c59f6974206f6c6475c49f75206269722069c3a773656c2073697374656d206b756c6c616ec4b1722e0d0a0d0ac396726e656b3a0d0a0d0a36206b7975202820302529203d2031353030207075616e0d0a36206b797520282d34382529203d2031343532207075616e0d0a37206b797520282b33302529203d2031343330207075616e0d0a37206b7975202820302529203d2031343030207075616e, 'N', '2007-01-11 16:39:49'),
(684, 35, 0x5365766979652062c3b66cc3bc6dc3bc6e64656b69206d6176692d67726166696b206e6520616e6c616d2067656c69796f723f, 'Y', '2007-01-11 16:39:49'),
(726, 35, 0x4b6c6173c3b6726c6572692064c3bc7a656e6c65, 'Y', '2007-01-18 11:03:19'),
(732, 35, 0x4b616c616e20736579616861742073c3bc72657369, 'Y', '2007-01-11 19:33:59'),
(733, 35, 0x536579616861747465, 'Y', '2007-01-11 19:33:59'),
(736, 35, 0x4b617a616ec4b16c616e206f79756e6c6172, 'Y', '2007-01-11 19:33:59'),
(737, 35, 0x4b6179626564696c656e206f79756e6c6172, 'Y', '2007-01-11 19:33:59'),
(5787, 40, 0x25732076656e63656d20706f7220696e74657276656ee7e36f, 'Y', '2014-04-13 17:43:02'),
(3176, 40, 0x4c697374612d64652d557375e172696f73, 'Y', '2014-04-11 14:07:57'),
(719, 35, 0x257320252e316620696c65206b617a616e64c4b1, 'Y', '2007-01-11 19:35:49'),
(722, 35, 0x4b6c6173c3b672, 'Y', '2007-01-18 10:37:53'),
(724, 35, 0xc4b0c59f617265746c656e656e206d6573616a6c6172c4b120796f6b65742e, 'Y', '2007-01-18 11:03:19'),
(685, 35, 0x427520447261676f6e756e2062656c69726c656469c49f6920476f2073657669796573696e696e2c7365766979656c656e6469726d6573696e696e2c206f79756e2062656365726973696e696e206b756c6c616ec4b163c4b16ec4b16e207365766979656c656e6469726d6573696e65206e65206b616461722079616bc4b16e206f6c6475c49f756e752067c3b67374657269722e0d0a0d0a426972206b756c6c616ec4b163c4b1206261c59f6c616e67c4b1c3a7206f6c6172616b20476f2073657669796573696e69206769726469c49f696e64652c20447261676f6e206275206465c49f6572696e20447261676f6e756e2062656c69726c656469c49f69206261c59f6c616e67c4b1c3a7206465c49f6572696e6520757967756e206f6c7570206f6c6d6164c4b1c49fc4b16ec4b12062696c6d657a2e20476f207365766979656c6572696e696e2064c3bc6e796120c3a76170c4b16e64612062656c69726c692074616ec4b16d6c616d616c6172c4b120796f6b7475722e20447261676f6e2067c3bc76656e696c6562696c6972207665206bc4b17961736c616e6162696c697220476f207365766979656c6572692062656c69726c65796562696c6d656b2069c3a7696e20656c696e64656e2067656c656e696e20656e2069796973696e69207961706d616b746164c4b1722e20416d6120626972206b756c6c616ec4b163c4b1207365766979656c656e6469726d65206772616669c49f696e696e2061726b6120706c616ec4b16e64616b69206d6176696c69c49f696e2067656e69c59f6c69c49f692c2079656e69206b756c6c616ec4b163c4b16ec4b16e20447261676f6e207365766979656c656e6469726d6573696e696e206261c59f6c616e67c4b1c3a774612074616ec4b16d6c616e616e2073657669796573696e65206e65206b616461722079616bc4b16e206f6c6475c49f756e64616e206261c59f6b612062697220c59f657920616e6c61746d617a2e, 'N', '2007-01-12 08:28:56'),
(686, 35, 0x54656e756b69, 'N', '2007-01-12 09:59:24'),
(687, 35, 0x52616b6962696e2068616d6c652079617074c4b1c49fc4b12068616d6c6564656e20736f6e72612c203c623e6261c59f6b613c2f623e206269722079657265206f796e616d616b2e, 'N', '2007-01-12 09:59:24'),
(688, 35, 0xc387696674206f79756e206e652064656d656b7469723f, 'Y', '2007-01-12 09:59:24'),
(689, 35, 0x22c387696674206f79756e2220696c652061796ec4b12072616b6970206b6172c59fc4b173c4b16e64612079656e69206f79756e6c6172206261c59f6c6174c4b17273c4b16ec4b17a2e20426972206f79756e6461207369796168c4b1206469c49f6572696e646520626579617ac4b1206f796e617273c4b16ec4b17a2e2048657220696b69206f79756e6461203c6120687265663d226661712e7068703f726561643d74266361743d33353723456e7472793937223e68616e64696b61703c2f613e73c4b17a206f6c6163616b74c4b1722e, 'N', '2007-01-12 09:59:24'),
(690, 35, 0x53656e7465, 'N', '2007-01-12 10:04:01'),
(691, 35, 0x48656d656e20636576617020766572696c6d65736920676572656b656e2073616c64c4b17267616e2c20746568646974206564696369206269722068616d6c652e20c4b06e736979617469666920656c65206765c3a76972697220766520736f6e72616b692068616d6c656465206e6572657965206f796e616e616361c49fc4b16ec4b12062656c69726c65722e203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f6661712e7068703f726561643d74266361743d3323456e747279313133223e476f74653c2f613e20696c65207ac4b17420616e6c616d6cc4b164c4b1722e0d0a0d0a2253656e746520647572756d756e64616b6922206f79756e637520646168612069796920626972207365c3a7656e656b206f6c6475c49f756e752064c3bcc59fc3bc6ec3bc727365203c6120687265663d222f6661712e7068703f726561643d74266361743d3323456e747279313130223e74656e756b693c2f613e207961706162696c69722e, 'N', '2007-01-12 10:04:01'),
(692, 35, 0x476f7465, 'N', '2007-01-12 10:05:30'),
(693, 35, 0x4b6f72756d6163c4b120626972206f79756e2c206269722074656864696465206365766170207665726d656b7469726b2e20c4b06e73697961746966692076652062697220736f6e72616b692068616d6c656465206e6572657965206f796e616e616361c49fc4b16ec4b1207365c3a76d6520c59f616e73c4b16ec4b12072616b6962652076657269722e20476f746520687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f6661712e7068703f726561643d74266361743d3323456e747279313132223e73656e74653c2f613e6e696e207ac4b17420616e6c616d6cc4b173c4b164c4b1722e, 'N', '2007-01-12 10:05:30'),
(694, 35, 0xc4b07a6c656e656e206f79756e6c6172206e656469723f, 'Y', '2007-01-12 10:44:42');
INSERT INTO `Translations` (`Original_ID`, `Language_ID`, `Text`, `Translated`, `Updated`) VALUES
(695, 35, 0x427520c3b67a656c6c696b2073697a65203c623e6469c49f65723c2f623e206b756c6c616ec4b163c4b16c6172c4b1206f79756e6c6172c4b16ec4b12073c4b16b206b756c6c616ec4b16c616e6c6172206c697374657369206f6c6172616b20617961726c616d616ec4b17a6120697a696e2076657269722e0d0a0d0ac4b07a6c656e656e206f79756e6c6172206c6973746573696e6520626972206f79756e20656b6c656d656b2069c3a7696e20c3b66e6365206f796e616e6d616b7461206f6c616e20626972206f79756e2062756c756e2076652022697a6c656e656e206f79756e6c6172206c69737465736922276e652074c4b16b6c6179c4b16e2e20c4b07a6c656e656e206f79756e6c6172206c6973746573696e692067c3b6726d656b2069c3a7696e203c6120687265663d222f7374617475732e706870223e447572756d3c2f613e612074c4b16b6c6179c4b1702022697a6c656e656e206f79756e6c6172c4b12067c3b67374657222206c696e6b696e692074616b6970206564696e697a2e0d0a0d0ac4b07a6c656e656e206f79756e6c6172206c6973746573696e64656e20626972206f79756e7520c3a7c4b16b61726d616b2069c3a7696e2c206b616c64c4b1726d616b20697374656469c49f696e697a206f79756e752062756c756e757a2076652022c4b07a6c656d65206c6973746573696e64656e206b616c64c4b17222206c696e6b696e692074c4b16b6c6179c4b16ec4b17a2e0d0a0d0a536164656365206f796e616e6d616b7461206f6c616e206f79756e6c6172c4b120697a6c65796562696c697273696e697a2c20626972206f79756e206269747469c49f69207a616d616e206f746f6d6174696b206f6c6172616b20697a6c656e656e206f79756e6c6172206c6973746573696e64656e206b616c64c4b172c4b16cc4b1722e20c4b07a6c656e656e20626972206f79756e206269747469c49f69207a616d616e20447261676f6e20736f6e75c3a72068616b6bc4b16e64612073697a652062696c6769207665726d656b2069c3a7696e20626972206d6573616a2067c3b66e64657269722e, 'N', '2007-01-12 10:44:42'),
(696, 35, 0x44616d65, 'Y', '2007-01-12 10:51:52'),
(697, 35, 0x476f62616e20c3bc7a6572696e64656b6920746172616673c4b17a206b657369c59f696d206e6f6b74616c6172c4b164c4b1722e2042752022746172616673c4b17a2062c3b66c676522206869c3a7626972206f79756e63757961207075616e207665726d657a2e, 'Y', '2007-01-12 10:51:52'),
(698, 35, 0x4e65666573, 'Y', '2007-01-12 10:51:52'),
(699, 35, 0x426972207461c59f207961206461207461c59f207a696e636972696e652062697469c59f696b20626fc59f206b657369c59f696d206e6f6b74616c6172c4b164c4b1722e, 'Y', '2007-01-12 10:51:52'),
(700, 35, 0x48616e65, 'N', '2007-01-12 10:51:52'),
(701, 35, 0x52616b6962696e207461c59fc4b1207961206461207461c59f207a696e636972696e696e20736f6e756e6120796170c4b16c616e20c3a7617072617a2068616d6c652e, 'N', '2007-01-12 10:51:52'),
(702, 35, 0x47657461, 'N', '2007-01-12 10:51:52'),
(703, 35, 0x4269722061c49f2069c3a765726973696e646520656c65206765c3a769726d657965207961726179616e202074656d656c206269722068616d6c65287465726c696b292e, 'N', '2007-01-12 10:51:52'),
(704, 35, 0x53616e72656e736569, 'N', '2007-01-12 10:51:52'),
(705, 35, 0x426972206f79756e63756e756e20626972206b656e617220626f79756e636120c3bcc3a72079c4b16c64c4b17a206e6f6b746173c4b16ec4b120656c65206765c3a769726469c49f692067656e656c206269722061c3a7c4b16cc4b1c59f2e, 'N', '2007-01-12 10:51:52'),
(706, 35, 0x53686963686f, 'N', '2007-01-12 10:51:52'),
(707, 35, 0x53686963686f203c6120687265663d222f70686f72756d2f726561642e7068703f663d3326693d31393626743d313936223e6d6572646976656e3c2f613e696e204a61706f6e636120746572696d696469722e, 'N', '2007-01-12 10:51:52'),
(708, 35, 0x546168746120626f79757475207365766979656c656e6469726d6579652065746b696c69206d696469723f, 'Y', '2007-01-12 10:51:52'),
(709, 35, 0x3139783139276c756b206f79756e6c6172c4b16e207365766979656c656e6469726d6520c3bc7a6572696e652065746b69736920656e2062c3bc79c3bc6b74c3bc722e20c4b06b692061646574203133783133276cc3bc6b206f79756e2079616b6c61c59fc4b16b20626972203139783139276c756b206f79756e612064656e6b7469722e20c4b06b69206164657420397839276c756b206f79756e2079616b6c61c59fc4b16b20626972203133783133276cc3bc6b20206f79756e612064656e6b7469722e, 'N', '2007-01-12 10:51:52'),
(710, 35, 0x476f277975206e65726564656e20c3b6c49f72656e6562696c6972696d3f, 'Y', '2007-01-12 11:07:47'),
(711, 35, 0x687265663d22687474703a2f2f706c6179676f2e746f2f696e7465726163746976652f696e6465782e68746d6c22207461726765743d6e65773e476f27796120676964656e2065746b696c65c59f696d6c6920796f6c3c2f613e6120766520c4b06e67696c697a20476f204465726e65c49f69276e696e20203c6120687265663d22687474703a2f2f7777772e62726974676f2e6f72672f696e74726f2f696e74726f2e68746d6c22207461726765743d6e65773e476f206f79756e756e612067697269c59f3c2f613e2073617966616c6172c4b16e612062616bc4b16ec4b17a2e, 'Y', '2007-01-12 11:07:47'),
(712, 35, 0x447261676f6e756e207365766979656c656e6469726d652073697374656d69206e6173c4b16c20c3a7616cc4b1c59fc4b1723f, 'N', '2007-01-12 11:07:47'),
(713, 35, 0x3c493e20426972c3a76f6b206f6c64756bc3a76120656e74656c6c656b74c3bc656c2076652062696c676920646f6c7520696e73616e2062756e75204641512779612074656b726172206769726562696c6d656b2069c3a7696e2067c3b66e6c6cc3bc206f6c64756c61722e20427520746162696b6920c3a76f6b2062c3bc79c3bc6b20626972206176616e74616a203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f75736572696e666f2e7068703f7569643d3933223e62752079617a6172c4b16e3c2f613e20616e6164696c6920286b656e646973696e652064652062656c697274696c6469c49f6920676962692920696e67696c697a63656469722c207665207365766979656c656e6469726d652073697374656d696e692074616ec4b16d6c616d6120c3a7616cc4b1c59f6d616c6172c4b1206163c4b16d6173c4b17a636120796f6b206564696c6d69c59f7469722e0d0a0d0a59616bc4b16e6461212059656e692067697269c59f2079617ac4b16cc4b1722079617ac4b16c6d617a2e2e2e3c2f493e, 'N', '2007-01-12 11:07:47'),
(727, 35, 0x4275206f79756e206461766574696e696e20617961726c616d616c6172c4b120257374617274c4b1c59fc4b16c6d616b746164c4b1722573, 'Y', '2007-01-12 11:07:47'),
(738, 35, 0x536579616861742073c3bc726573696e69206465c49f69c59f7469722e, 'Y', '2007-01-12 11:07:47'),
(739, 35, 0x5365796168617469206261c59f6c6174, 'Y', '2007-01-12 11:07:47'),
(740, 35, 0x486570736920616cc4b16e64c4b1, 'Y', '2007-01-12 11:07:47'),
(741, 35, 0x416e61, 'Y', '2007-01-12 11:07:47'),
(742, 35, 0xc387c3b670204b7574757375, 'Y', '2007-01-12 11:07:47'),
(743, 35, 0x47c3b66e646572696c6469, 'Y', '2007-01-12 11:07:47'),
(744, 35, 0x43657661702076657269726b656e206b6c6173c3b67265207461c59fc4b1, 'Y', '2007-01-12 11:07:47'),
(745, 35, 0x4b6c6173c3b67265207461c59fc4b1, 'Y', '2007-01-12 11:07:47'),
(746, 35, 0x4b6c6173c3b672206164c4b1, 'Y', '2007-01-12 11:07:47'),
(747, 35, 0x42c3bc74c3bc6e206b6f6c6f6e6c6172, 'Y', '2007-01-12 11:07:47'),
(748, 35, 0x426972207475726e757661206261c59f6c61746162696c6972207961206461206f7267616e697a652065646562696c6972206d6979696d3f, 'Y', '2007-01-12 11:26:23'),
(749, 35, 0x5475726e757a61206f7267616e697a652065746d656b2069c3a7696e20686fc59f67656c64696e697a2e205475726e75766120696c616e6c6172c4b12069c3a7696e203c6120687265663d222f70686f72756d2f6c6973742e7068703f663d34223e447261676f6e2074617274c4b1c59f6d6120666f726d756e753c2f613e206b756c6c616ec4b16ec4b17a2028766579612074616b6970206564696e697a292e20447261676f6e20696c67696c69206c696e6b6c6572692046415127796120656b6c65796572656b2064757975726d616ec4b17a612079617264c4b16d63c4b1206f6c6163616b74c4b1722e, 'Y', '2007-01-12 11:26:23'),
(750, 35, 0x4b6f72656365, 'Y', '2007-01-12 11:26:23'),
(751, 35, 0x4f79756e20736f6e756e646120c3b66cc3bc207461c59f6c6172c4b1206e6173c4b16c206b616c64c4b1726162696c6972696d3f, 'Y', '2007-01-12 11:26:23'),
(752, 35, 0xc4b06b69206f79756e637564612070617320646564696b74656e20736f6e72612c207461c59f6c617220656c6c65206b616c64c4b172c4b16c6d616cc4b164c4b1722e20426972207461c59fc4b16e20c3bc7a6572696e652074c4b16b6c616d616b207461c59fc4b16e20647572756d756e752063616e6cc4b164616e20c3b66cc3bc7965206465c49f69c59f74697269722e204bc3bcc3a7c3bc6b20736979616820766520626579617a206b6172656c6572206b696d696e2068616e676920616c616e61207361686970206f6c6475c49f756e752074656d73696c20656465722e0d0a0d0a48657220696b69206f79756e637564612068616e6769207461c59f6c6172c4b16e20c3b66c64c3bcc49fc3bc207665206b696d696e2068616e676920616c616e61207361686970206f6c6475c49f75206b6f6e7573756e646120616e6c61c59f6d616b207a6f72756e646164c4b1726c61722e204f6e61796c616d616b2069c3a7696e2074616874616ec4b16e20616c74c4b16e64616b69202274616d616d22206c696e6b696e652074c4b16b6c6179c4b16ec4b17a2e0d0a0d0a45c49f657220626972206f79756e63752061796ec4b12066696b69726465206f6c6d617a73612c20c59fc3bc7068656c692062697220706f7a6973796f6e75206269726b61c3a72068616d6c6520646168612073c3bc7264c3bc726562696c6d656b2069c3a7696e2022646576616d20657474697222206c696e6b696e692074616b69702065646562696c69722e20426972206469c49f6572207365c3a7656e656b74652072616b69626520207961206461203c6120687265663d2270686f72756d2f6c6973742e7068703f663d35223e476f2074617274c4b1c59f6d6120666f726d756e613c2f613e20626972206d6573616a2067c3b66e6465726d656b7469722e, 'Y', '2007-01-12 11:26:23'),
(753, 35, 0x4f79756e20736f6e756e64616b69206bc3bcc3a7c3bc6b206bc4b1726dc4b17ac4b1206b6172656c6572696e20616e6c616dc4b1206e656469723f, 'N', '2007-01-12 11:37:05'),
(754, 35, 0x4bc3bcc3a7c3bc6b206bc4b1726dc4b17ac4b1206b6172656c657220447261676f6e756e20736979616820796120646120626579617a20616c616ec4b1206f6c7570206f6c6d6164c4b1c49fc4b16e61206b6172617220766572656d656469c49f696e692067c3b6737465726d656b74656469722e4d756874656d656c2073656265706c65723a0d0a3c756c3e0d0a3c6c693e42697220616c616e2069c3a765726973696e64652068616c6120796162616e63c4b1207461c59f6c617220766172207665202268616c612220c3b66cc3bc206f6c6172616b2069c59f617265746c656e6d656d69c59f73652e204cc3bc7466656e206275207461c59f6c6172c4b16e20647572756d756e7520c3b66cc3bc206f6c6172616b206465c49f69c59f7469726d656b2069c3a7696e20c3bc7a65726c6572696e652074c4b16b6c6179c4b16ec4b17a2e3c2f6c693e0d0a0d0a3c6c693e426579617ac4b16e2079616461207369796168c4b16e20616c616e6c6172c4b1206b6170616e6d616dc4b1c59f74c4b1722e20c4b06e73616e206f79756e63756c6172206f79756e63756c61722069c3a7696e20627520c3a76f6b2061c3a7c4b16b74c4b1722c20616d6120447261676f6e2069c3a7696e206b696d696e2068616e676920616c616e61207361686970206f6c6475c49f756e61206b61726172207665726d656b207a6f726475722e204cc3bc7466656e2074616874616ec4b16e20616c74c4b16e64616b6920226f79756e7520646576616d20657474697222206c696e6b696e652074c4b16b6c6179c4b16ec4b17a2076652062752073c4b16ec4b172c4b1206b617061746163616b2062697220796572652068616d6c6520796170c4b16ec4b17a3c2f6c693e0d0a0d0a3c6c693e427520626972203c6120687265663d226661712e7068703f726561643d74266361743d3323456e747279313031223e73656b693c2f613e20647572756d756475722e204cc3bc7466656e206f206bc4b1726dc4b17ac4b1206b6172656e696e20c3bc7a6572696e652074c4b16b6c61796172616b20647572756d756e75203c6120687265663d226661712e7068703f726561643d74266361743d3323456e747279313135223e64616d653c2f613e2073656b69206f6c6172616b206465c49f69c59f746972696e697a2e20447261676f6e2062756e75206bc3bcc3a7c3bc6b207965c59f696c20626972206b61726520696c652067c3b6737465726563656b7469722e20427520c3b67a656c6c696b20c59fc3bc7068656c69206269722073656b6979692064c3bc7a656c746572656b20736f6e7563752064c3bc7a656c746d656e697a6520697a696e207665726563656b7469722e2044657461796c6172203c6120687265663d2270686f72756d2f726561642e7068703f663d3226693d38343326743d383433223e6275206b6f6e75206261c59f6cc4b1c49fc4b16e64613c2f613e20766572696c6d69c59f7469722e3c2f6c693e0d0a3c2f756c3e, 'N', '2007-01-12 11:37:05'),
(755, 35, 0x53756e756375206d6573616ac4b1, 'Y', '2007-01-18 10:37:53'),
(922, 35, 0x537269204c616e6b61, 'Y', '2007-01-12 14:15:40'),
(933, 35, 0x546f676f, 'Y', '2007-01-12 14:15:40'),
(934, 35, 0x546f6e6761, 'Y', '2007-01-12 14:15:40'),
(935, 35, 0x5472696e69616420766520546f6261676f, 'Y', '2007-01-12 14:15:40'),
(939, 35, 0x547576616c75, 'Y', '2007-01-12 14:15:40'),
(947, 35, 0x56616e75617475, 'Y', '2007-01-12 14:15:40'),
(953, 35, 0x5a696d6261627765, 'Y', '2007-01-12 14:15:40'),
(954, 35, 0x527573, 'Y', '2007-01-12 14:15:40'),
(955, 35, 0x53657961686174, 'Y', '2007-01-12 14:15:40'),
(956, 35, 0xc39c7a67c3bc6ec3bc6d2c20c59f7520616e646120736579616861742073c3bc726573696e69206465c49f69c59f746972656d657a73696e697a2e, 'Y', '2007-01-12 14:15:40'),
(957, 35, 0x536579616861742073c3bc72657369206465c49f69c59f746921, 'Y', '2007-01-12 14:15:40'),
(958, 35, 0x456b6c65, 'Y', '2007-01-12 14:15:40'),
(959, 35, 0x4b616c64c4b172, 'Y', '2007-01-12 14:15:40'),
(960, 35, 0x536579616861742073c3bc726573696e69207365c3a7, 'Y', '2007-01-12 14:15:40'),
(962, 35, 0xc4b0796920736579616861746c657221, 'Y', '2007-01-12 14:45:31'),
(963, 35, 0x42656b6c656d65206f646173c4b16e64616b69206bc4b1726dc4b17ac4b12061726b6120706c616ec4b16e20616e6c616dc4b1206e656469723f, 'Y', '2007-01-12 14:45:31'),
(964, 35, 0x225365766979656c656e6469726d65206172616cc4b1c49fc4b122206b6f6c6f6e756e64616b692061c3a7c4b16b206bc4b1726dc4b17ac4b12068616c6968617ac4b17264616b69207365766979656c656e6469726d656e697a696e206f6c6d6173c4b120676572656b7469c49f69206172616cc4b16b7461206f6c6d6164c4b1c49fc4b120616e6c616dc4b16e612067656c69722e204275206bc4b1736d69206f79756e2074656b6c6966696e69206b6162756c206564656d657a73696e697a2e, 'N', '2007-01-12 14:45:31'),
(967, 35, 0x48616e64696b6170207461c59f6c6172c4b1206e6572657965207965726c65c59f746972696c69723f, 'Y', '2007-01-12 14:49:14'),
(968, 35, 0xc387696e206b7572616c6c6172c4b16e612067c3b672652068616e64696b6170207461c59f6c6172c4b12068657268616e67692062697279657265207965726c65c59f746972696c6562696c69722e204a61706f6e206b7572616c6c6172c4b16e612067c3b672652068616e64696b6170207461c59f6c6172c4b12061c59f61c49fc4b164616b6920c59f656b696c6465207965726c65c59f746972696c69722e204261c59f6b6120626972c59f65792062656c69726c656e6d656469c49f692073c3bc726563652c20626972c3a76f6b206f79756e6375207369796168c4b16e204a61706f6e206b7572616c6c6172c4b16e612075796d6173c4b16ec4b12062656b6c65726c65722e0d0a3c756c3e0d0a3c6c693e31207461c59f3a205a6179c4b166206f79756e63752068616e64696b617020616c6d6164616e207369796168c4b120616cc4b1722e0d0a3c6c693e32207461c59f3a204434202b205131360d0a3c6c693e33207461c59f3a204434202b205134202b205131360d0a3c6c693e34207461c59f3a204434202b205134202b20443136202b205131360d0a3c6c693e35207461c59f3a204434202b205134202b204b3130202b20443136202b205131360d0a3c6c693e36207461c59f3a204434202b205134202b20443130202b20513130202b20443136202b205131360d0a3c6c693e37207461c59f3a204434202b205134202b20443130202b204b3130202b20513130202b20443136202b205131360d0a3c6c693e38207461c59f3a204434202b204b34202b205134202b20443130202b20513130202b20443136202b204b3136202b205131360d0a3c6c693e39207461c59f3a204434202b204b34202b205134202b20443130202b204b3130202b20513130202b20443136202b204b3136202b20513136203c2f756c3e, 'N', '2007-01-12 14:49:14'),
(971, 35, 0x426972206861746179c4b1206e6173c4b16c207261706f722065646562696c6972696d3f, 'N', '2007-01-12 15:38:38'),
(972, 35, 0x3c756c3e3c6c693e46415120766520666f72756d6c6172c4b120686174616ec4b17a2068616b6bc4b16e64612062696c67692069c3a7696e206b6f6e74726f6c206564696e697a2e20486174616c6172c4b120656b6c656d656b20796572696e6520666f72756d6c6172c4b120617261c59f74c4b1726d616b20697969206269722066696b6972206f6c6162696c69722e202d426972c3a76f6b20696c657469207661722076652062617a656e2079616e6cc4b1c59f20666f726d61206769646562696c69796f726c61722e0d0a3c6c693e50726f626c656d696e697a692064657461796cc4b12062697220c59f656b696c6465203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f70686f72756d2f6c6973742e7068703f663d32223e44657374656b20666f726d756e613c2f613e2c2079612064610d0a3c6c693e70726f626c656d696e697a692064657461796cc4b120c59f656b696c646520616e6c61746120626972206d6573616ac4b13c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f6661712e7068703f726561643d74266361743d313923456e7472793836223e67656c69c59f7469726963696c65723c2f613e64656e206269726973696e652067c3b66e646572696e697a2e3c2f756c3e, 'N', '2007-01-12 15:38:38'),
(973, 35, 0x4865736162c4b16d6120646168612068c4b17a6cc4b1206e6173c4b16c2067697269c59f207961706162696c6972696d3f, 'Y', '2007-01-12 15:46:22'),
(974, 35, 0x486572207365666572696e6465206b756c6c616ec4b163c4b1206164c4b16ec4b17a20766520c59f696672656e697a69206769726d6564656e2055524c277965203c753e687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f6c6f67696e2e7068703f7573657269643d3c623e7468652d757365722d69643c2f623e267061737377643d3c623e7468652d70617373776f72643c2f623e3c2f753e2062756e6c6172c4b120656b6c65796572656b20756c61c59f6162696c697273696e697a2e200d0a0d0a42697220c59f6966726579692064c3bc7a2079617ac4b120666f726d6174c4b16e64612073616b6c616d616ec4b16e2067c3b67a6c652067c3b672c3bc6cc3bc72206269722067c3bc76656e6c696b207465686c696b657369207461c59fc4b164c4b1c49fc4b16ec4b120756e75746d6179c4b16ec4b17a2e2047697269c59f2055524c276e697a692068616c6b612061c3a7c4b16b206269722062696c676973617961726461206b756c6c616e6d6179c4b16ec4b17a2e, 'Y', '2007-01-12 15:46:22'),
(975, 35, 0x4865736162c4b16d61206e6173c4b16c2067697269c59f207961706162696c6972696d3f, 'Y', '2007-01-12 15:46:22'),
(976, 35, 0x3c6120687265663d222f22207461726765743d225f626c616e6b223e447261676f6e756e20616e6120736179666173c4b16e613c2f613e206b756c6c616ec4b163c4b1206164c4b16ec4b17ac4b1207665206b69c59f6973656c20c59f696672656e697a69206769726572656b2067697269c59f207961706162696c697273696e697a2e204447532073756e75637573752062696c67697361796172c4b16ec4b17a64612073616b6c616e6163616b206f6c616e20626972206b75726162697965206f6c75c59f7475726163616b74c4b1722e204275206b757261626979652033302067c3bc6e20626f79756e63612067697269c59f207961706dc4b1c59f20647572756d6461206b616c6d616ec4b17ac4b1207361c49f6c61796163616b74c4b1722e, 'Y', '2007-01-12 15:46:22'),
(442, 34, 0xe4b88b, 'Y', '2007-02-11 06:16:24'),
(450, 34, 0x2573203120e6898b20257320e6aca1, 'Y', '2007-02-13 10:23:30'),
(451, 34, '', 'Y', '2007-02-11 06:16:24'),
(452, 34, 0x257320e4b88b20257320e6898b, 'Y', '2007-02-13 10:23:30'),
(453, 34, 0x3ae6af8fe6898be5a29ee58aa0e69982e99693, 'Y', '2007-02-27 10:25:10'),
(454, 34, 0xe8ab8be4b88be5a5bde8ae93e5ad90efbc81, 'Y', '2007-01-15 07:29:48'),
(455, 34, 0xe98081e587baefbc8ce4b8a6e588b0e4b88be4b880e5b180, 'Y', '2007-02-13 09:54:00'),
(456, 34, 0xe98081e587baefbc8ce59b9ee588b0e5b08de5b180e9a081, 'Y', '2007-06-17 18:46:49'),
(457, 34, 0xe59b9ee4b88ae4b880e9a081, 'Y', '2007-07-03 12:30:19'),
(458, 34, 0xe68f90e5ad90, 'Y', '2007-01-15 07:35:04'),
(460, 34, 0xe4b88be4b880e9a081, 'Y', '2007-01-15 07:35:04'),
(461, 34, 0xe5898de4b880e9a081, 'Y', '2007-01-15 07:35:04'),
(462, 34, 0xe5a29ee58aa0e9a085e79bae, 'Y', '2007-01-15 07:35:04'),
(463, 34, '', 'Y', '2007-01-15 07:35:04'),
(464, 34, '', 'Y', '2007-01-15 07:35:04'),
(465, 34, '', 'Y', '2007-01-15 07:35:04'),
(466, 34, '', 'Y', '2007-01-15 07:35:04'),
(467, 34, '', 'Y', '2007-01-15 07:35:04'),
(468, 34, '', 'Y', '2007-01-15 07:35:04'),
(469, 34, '', 'Y', '2007-01-15 07:35:04'),
(470, 34, 0xe4b8ade6968728e7b981e9ab9429, 'Y', '2007-02-12 09:00:43'),
(3191, 17, 0x5374726f6e61202573, 'Y', '2013-08-21 00:42:54'),
(472, 34, 0xe4b8ade6968728e7b0a1e9ab9429, 'Y', '2007-02-12 09:00:43'),
(473, 34, '', 'Y', '2007-01-15 07:35:04'),
(979, 35, 0x4641512764612062c3bc74c3bc6e20736f72756e6c61722074617274c4b1c59fc4b16cc4b1796f72206d753f, 'Y', '2007-01-15 13:00:03'),
(980, 35, 0x486179c4b1722e2056652061736c61206461206f6c6d61796163616b2e204275726164612074617269666c656e656e20736f72756e6c61722073c4b16bc3a761206b6172c59fc4b16c61c59f616e207665206979692062696c696e656e2073746174696b20686174616c617264c4b1722076652061796ec4b1207a616d616e646120666f72756d6c6172646120646572696e6c656d6573696e6520626972c3a76f6b206b657a2074617274c4b1c59fc4b16c6dc4b1c59f74c4b1722e20536f72756e6c61722064c3bc7a656c74696c6563656b746972283c693e6261c59f6b6120736f72756e6c617261206d657964616e207665726d6520647572756d753f3c2f693e2920616d612062617ac4b16c6172c4b1206275726164612074617274c4b1c59fc4b16c6163616b74c4b1722e, 'Y', '2007-01-15 13:00:03'),
(981, 35, 0x447261676f6e756e206d6573616a6c6172c4b1206e656c65726469723f, 'N', '2007-01-15 13:49:43'),
(982, 35, 0x4b756c6c616ec4b163c4b16c6172206269726269726c657269796c6520626972c3a76f6b20796f6c64616e20696c657469c59f696d206b75726162696c69726c657220c3b6726e65c49f696e3b3c554c3e0d0a3c6c693e62656c69726c6920626972206b756c6c616ec4b163c4b1796120c3b67a656c20626972206d6573616a2067c3b66e6465726d656b2c3c2f6c693e0d0a3c6c693e626972c3a76f6b206b756c6c616ec4b163c4b1796120756c61c59f6d616b2069c3a7696e20447261676f6e756e203c6120687265663d222f70686f72756d2f22207461726765743d225f626c616e6b223e74617274c4b1c59f6d6120666f72756d6c6172c4b16e613c2f613e20696c6574692067c3b66e6465726d656b2e3c2f6c693e0d0a3c6c693e4f796e616e6d616b7461206f6c616e206f79756e6c61726120c3a76f6b20c3a765c59f69746c692074c3bc72646520203c4120485245463d222f6661712e7068703f726561643d74266361743d33363523456e7472793735223e796f72756d6c61723c2f413e20656b6c656d656b2e3c2f6c693e3c2f554c3e0d0a0d0a4e4221204869c3a762697220c3a765c59f6974206d6573616a207461c59fc4b16e616d617a2ec3967a656c206d6573616a6c6172207361646563652073697a696e206c697374656e697a64656e207461c59fc4b16ec4b1726c61722c207665726920746162616ec4b16e64612073616b6c616ec4b1726c61722e204f79756e6c617264616b69206d6573616a6c61722c20666f72756d6c617264616b69206d6573616a6c6172c4b16e6461206f6c6475c49f75206769626920736f6e73757a61206b616461722073616b6c616ec4b1726c61722e204f79756e64616b69206e6f726d616b206d6573616a6c61722053474620646f73796173c4b16e612061736c61206769726d657a20616d612073756e7563756461206f79756e756e206f79756e63756c6172c4b1207461726166c4b16e64616e206f6b756e6162696c6972206f6c6172616b206b616cc4b1726c61722e, 'N', '2007-01-15 13:49:43'),
(983, 35, 0x4d6573616a206b6c6173c3b6726c657269206e656c65726469723f, 'Y', '2007-01-15 13:59:45'),
(984, 35, 0x4d6573616a206b6c6173c3b6726c657269206d6573616a6c6172c4b16ec4b17ac4b120697374656b6c6572696e697a652067c3b672652064c3bc7a656e6c656d656e697a65206f6c616e616b207361c49f6c61722e204d6573616a6c6172c4b1206b6c6173c3b6726c65722061726173c4b16e646120697374656469c49f696e697a2067696269206b617964c4b1726162696c697273696e697a2e0d0a0d0a447261676f6e20766172736179c4b16c616e206f6c6172616b206b6c6173c3b6726c6572693a3c756c3e0d0a3c6c693e3c623e486570736920616cc4b16e616e3c2f623e3a2042c3bc74c3bc6e20616cc4b16e616e206d6573616a6c6172c4b16e206c6973746573692e203c6c693e3c623e4173c4b16c3c2f623e3a20416cc4b16ec4b170206f6b756e616e206d6573616a6c6172c4b16e206c6973746573692e203c6c693e3c623e59656e693c2f623e3a20416cc4b16ec4b170206f6b756e6d6179616e206d6573616a6c6172c4b16e206c6973746573692e203c6c693e3c623e4365766170213c2f623e3a2042697220636576617020676572656b746972656e206d6573616a6c6172c4b16e206c6973746573692e203c6c693e3c623ec387c3b670204b75747573753c2f623e3a2053696c696e6d6573692069c3a7696e2069c59f617265746c656e6d69c59f206d6573616a6c6172c4b16e206c6973746573692e0d0a3c6c693e3c623e53656e743c2f623e3a2047c3b66e6465726469c49f696e697a206d6573616a6c6172c4b16e206c6973746573692e3c2f756c3e0d0a0d0a3c6120687265663d222f6c6973745f6d657373616765732e70687022207461726765743d225f626c616e6b223e4d6573616a206c6973746573693c2f613e20736179666173c4b16ec4b16e20616c74c4b16e64616b6920226b6c6173c3b6726c6572692064c3bc7a656e6c6522206c696e6b696e69206b756c6c616e6172616b2079656e6920656b206d6573616a206b6c6173c3b6726c657269206f6c75c59f7475726162696c697273696e697a2e2053756e756375207461726166c4b16e64616e207361c49f6c616e616e6c6172c4b1206b756c6c616ec4b17273616ec4b17a2c2073756e756375206b6c6173c3b6726c6572692064c3bc7a656e6c6520736179666173c4b16e612067697269c59f2079617074c4b1c49fc4b16ec4b17a646120646168612079656e696c6572696e6920656b6c65796563656b7469722e, 'Y', '2007-01-15 13:59:45'),
(985, 35, 0x4b6f6c6f6e6c6172c4b1206e6173c4b16c20656b6c65796562696c6972207961206461206b616c64c4b1726162696c6972696d3f, 'Y', '2007-01-15 14:04:21'),
(986, 35, 0x427520647572756d6c617220736179666173c4b16e64616b69206f79756e206c69737465736920696c6520616c616b616cc4b164c4b1722e204b6f6c6f6e20656b6c656d656b2069c3a7696e20656b6c656d656b20697374656469c49f696e697a692073617966616ec4b16e20616c74c4b16e64616b692061c59f61c49fc4b12dc3a7656b6d65206d656ec3bc73c3bc6e64656e207365c3a769702079616ec4b16e64616b6920224b6f6c6f6e20456b6c65222064c3bcc49f6d6573696e692074c4b16b6c6179c4b16ec4b17a2e20426972206b6f6c6f6e75206b616c64c4b1726d616b2069c3a7696e206b6f6c6f6e206261c59f6cc4b16b6c6172c4b16ec4b16e2079616ec4b16e64616b69206bc4b1726dc4b17ac4b1202258222069c59f61726574696e652074c4b16b6c6179c4b16ec4b17a2e, 'N', '2007-01-15 14:04:21'),
(127, 17, 0x456479636a61, 'N', '2007-01-15 17:29:19'),
(135, 17, 0x54b3756d61637a65, 'Y', '2007-01-15 17:29:19'),
(1060, 17, 0x556b72796a, 'Y', '2013-08-20 22:13:08'),
(1099, 17, 0x41627920646f776965647a6965e6207369ea207769ea63656a207a616a727a796a20646f204641512e, 'Y', '2007-01-15 17:36:15'),
(987, 35, 0x447261676f6e64612079656e6979696d2c206261c59f6c616e67c4b1c3a7207365766979656d69206e65206f6c6172616b206769726d656c6979696d3f, 'Y', '2007-01-16 08:36:56'),
(988, 35, 0x59656e6920626972206865736170206f6c75c59f7475726475c49f756e757a646120444753206261c59f6b61206269722079657264656e2068616c6968617ac4b172646120476f207365766979656e697a696e206f6c7570206f6c6d6164c4b1c49fc4b16ec4b120736f7261722e284275206261c59f6b612062697220476f2073756e75637573752c20796572656c20476f206b756cc3bc62c3bc6ec3bc7a20796120646120c3bc6c6b656e697a696e20476f206465726e65c49f69206f6c6162696c69722e2920536164656365207365766979656e697a6920676972696e697a2c20444753207461686d696e69204447532073657669796573696e6520c3a7657669726563656b7469722e0d0a0d0a4cc3bc7466656e2064696b6b61743a2059656e6920626972206865736170206f6c75c59f74757275726b656e2c206f796e616d612067c3bc63c3bc6ec3bc7ac3bc2062696c6d69796f7273616ec4b17a2062756e756e206e65206f6c6475c49f756e7520616e6c6179616e61206b61646172207365766979656c656e6469726d6520616c616ec4b16e61206869c3a7626972c59f65792047c4b0524d4559c4b04ec4b05a2e204275206465c49f69c59f746972696c656d657a207665206f796e6164c4b16bc3a761207365766979656e697a6520756c61c59f6d616b2069c3a7696e2062656b6c656d656b207a6f72756e6461206b616cc4b17273c4b16ec4b17a2e, 'N', '2007-01-16 08:36:56'),
(989, 35, 0x59616e6cc4b1c59f206269722073657669796520696c65206261c59f6c616d616d2070726f626c656d206f6c7572206d753f, 'Y', '2007-01-16 08:47:09'),
(990, 35, 0xc3876f6b2070726f626c656d206f6c6d617a2e203c693e28416d612062617ac4b1206f79756e63756c61723a20627520c3a76f6b20c3b66e656d6c69206465726b656e3b206469c49f65726c65726920c3b66e656d6c69206465c49f696c2064656d656b74656469726c65722e293c2f693e20447261676f6e2073657669796579692062697469726469c49f696e697a207365766979656c69206f79756e6c6172c4b16e20736f6e75c3a76c6172c4b16e612067c3b672652079616bc4b16e207a616d616e646120617961726c61796163616b74c4b1722e2059616b6c61c59fc4b16b2035206f79756e20626974697264696b74656e20736f6e726120676572c3a7656bc3a76920444753207365766979656e697a6520756c61c59f6163616b73c4b16ec4b17a2e0d0a0d0a45c49f6572203c693e62696c6572656b3c2f693e2079616e6cc4b1c59f206269722073657669796520696c65206261c59f6c617273616ec4b17a206469c49f6572206b756c6c616ec4b163c4b16c6172c4b1206bc4b17a64c4b172c4b17273c4b16ec4b17a207665206f6e6c6172c4b12079616e6cc4b1c59f2c2068616b6564696c6d656d69c59f2c2079616e6cc4b1c59f2079c3b66e6c656e646972696c6d69c59f20626972207365766979657965203c693e6d6172757a2062c4b172616bc4b17273c4b16ec4b17a3c2f693e2e204f6e6c61726c612074656b726172206f796e616d616b2069737465796562696c656365c49f696e697a6920756e75746d6179c4b16e2e0d0a0d0a447261676f6e206b756c6c616ec4b1c59f6cc4b1207365766979656c6572207361c49f6c616d61796120c3a7616cc4b1c59f6d616b746164c4b17220616d612062752061796ec4b1207a616d616e64612073697a696e2069c59f6269726c69c49f696e697a656465206261c49f6cc4b164c4b1723a204cc3bc7466656e20676572c3a7656b20476f20796574656e656b6c6572696e697a64656e20c3a76f6b20757a616b207461686d696e69207365766979656c657220617961726c616d6179c4b16ec4b17a2e205465c59f656b6bc3bc726c657221, 'N', '2007-01-16 08:47:09'),
(991, 35, 0x53616174696d206475726475c49f756e64612061796ec4b1207a616d616e64612072616b6962696d696e2073616174696465206475726172206dc4b13f, 'Y', '2007-01-16 08:55:23'),
(992, 35, 0x45c49f657220736f6e72616b692068616d6c6579692062656c69726c656d652073c4b1726173c4b12073697a64657973653a20486179c4b1722e0d0a0d0a45c49f65722073c4b172612072616b6962696e697a64657973653a20457665742c2075796b75207a616d616ec4b1206f6c6d6164c4b1c49fc4b16ec4b12064c3bcc59fc3bc6ec3bc7273656b2c0d0a0d0a686166746120736f6e75206465c49f696c736528697074616c206564696c6d69c59f20686166746120736f6e7520696c65206f796e616e616e20626972206f79756e646129207665206b656e646973696e6920736579616861747465206f6c6172616b20696c616e2065746d6564697973652e, 'Y', '2007-01-16 08:55:23'),
(993, 35, 0x4f79756e2073616174696d20646f6e6475c49f752068616c64652c2068616d6c65207961706162696c6972206d6979696d3f, 'Y', '2007-01-16 08:55:23'),
(994, 35, 0x3c693e4865727a616d616e3c2f693e206269722068616d6c65207961706162696c697273696e697a2c2068617474612075796b75207a616d616ec4b16ec4b17a64612c2073657961686174696e697a2073c4b1726173c4b16e6461207961206461206861667461736f6e6c6172c4b16e64612e, 'Y', '2007-01-16 08:55:23'),
(995, 35, 0x447261676f6e756e206861667461736f6e75207361617469206e656469723f, 'Y', '2007-01-16 08:55:23'),
(996, 35, 0x59656e6920626972206f79756e206261c59f6c61746d6179c4b12074656b6c69662065747469c49f696e697a64652c2073616174696e206861667461736f6e6c6172c4b12043756d6172746573692076652050617a61722067657269207361796d616d6173c4b12069c3a7696e20626972207365c3a7656e65c49f696e697a2076617264c4b1722e, 'N', '2007-01-16 08:55:23'),
(997, 35, 0x506f6c6f6e79616cc4b1, 'Y', '2007-01-16 08:58:22'),
(998, 35, 0xc4b079616c79616e, 'Y', '2007-01-16 08:58:22'),
(1003, 35, 0x4261736b, 'Y', '2007-01-16 08:58:22'),
(1018, 35, 0x536c6f76616b, 'Y', '2007-01-16 08:58:22'),
(1019, 35, 0x53c4b172612d746162616e6cc4b1, 'Y', '2007-01-16 08:58:22'),
(1021, 35, 0x476572c3a7656b2d7a616d616e6cc4b1, 'Y', '2007-01-18 14:18:00'),
(1023, 35, 0x526f6d616e79616cc4b1, 'Y', '2007-01-16 08:58:22'),
(1024, 35, 0x45c59f6974206f79756e, 'Y', '2007-01-16 08:58:22'),
(1030, 35, 0x566965746e616d6cc4b1, 'Y', '2007-01-16 08:58:22'),
(1031, 35, 0x53c4b17270, 'Y', '2007-01-16 08:58:22'),
(1032, 35, 0x59756e616e, 'Y', '2007-01-16 08:58:22'),
(1033, 35, 0x556b7261796e616cc4b1, 'Y', '2007-01-16 08:58:22'),
(1034, 35, 0x4b6174616c616e, 'Y', '2007-01-16 08:58:22'),
(1035, 35, 0xc387696e63652842617369746c65c59f746972696c6d69c59f2920287574662d3829, 'Y', '2007-01-16 08:58:22'),
(1036, 35, 0x416b746966206f6c6d6179616e206b756c6c616ec4b163c4b12070726f66696c6c657269206e65207a616d616e206b616c64c4b172c4b16cc4b1723f, 'N', '2007-01-16 08:58:22'),
(1037, 35, 0x4869c3a7626972207a616d616e2e205061736966206f6c6172616b2069c59f617265746c692068616c652067656c69726c6572207665206e6f726d616c206b756c6c616ec4b163c4b16c6172206c6973746573696e64652067c3b672c3bc6e6d657a6c65722e, 'N', '2007-01-18 14:18:00'),
(1067, 35, 0x416e612044696c, 'Y', '2007-01-16 08:58:40'),
(999, 35, 0x302e35207075616e2c20313030207075616e2c207465726b2079612064612073c3bc726520696c65206b617a616e6d616d206661726b65646572206d693f, 'Y', '2007-01-16 10:46:19'),
(1000, 35, 0x447261676f6e756e207365766979656c656e6469726d652073697374656d696e6465206661726b2065746d657a2e204b617a616ec4b16c6dc4b1c59f20626972206f79756e20736164656365206b617a616ec4b16c6dc4b1c59f20626972206f79756e207665206b6179626564696c6d69c59f20626972206f79756e20736164656365206b6179626564696c6d69c59f20626972206f79756e6475722e, 'Y', '2007-01-16 10:46:19'),
(1001, 35, 0x447261676f6e207a616d616ec4b1206e6173c4b16c2073617961723f, 'Y', '2007-01-16 10:46:19'),
(1002, 35, 0x3c693e47c3b672c3bc6e656e3c2f693e20656e206bc3bcc3a7c3bc6b207a616d616e20626972696d6920736161747469722e203c693ec4b0c3a773656c3c2f693e206f6c6172616b206f796e616e206f79756e6c6172c4b16e2073c3bc72656c6572692068657220352064616b696b616461206269722079656e696c656e69722e, 'Y', '2007-01-16 10:46:19'),
(1004, 35, 0x466f72756d6461206e6173c4b16c20686172656b65742065746d656b20676572656b69723f, 'N', '2007-01-16 10:46:19'),
(1005, 35, 0xc4b079692062697220c3b66e65726920687265663d22687474703a2f2f7777772e666171732e6f72672f726663732f726663313835352e68746d6c223e4e657469717565747465204bc4b16c6176757a756e3c2f613e6461206d65766375747475722e204bc4b16c6176757a6c6172c4b1206f6b756d616b206269726e65766920757a756e206f6c75722e204bc4b1736120626972207665727369796f6e75206f6c6172616b203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f70686f72756d2f726561642e7068703f663d3426693d3339323626743d33393236223e20627520666f72756d206261c59f6cc4b1c49fc4b16ec4b13c2f613e206f6b75796172616b2067656e656c206269722066696b6972206564696e6562696c697273696e697a2e, 'N', '2007-01-16 10:46:19'),
(1006, 35, 0x447261676f6e756e206b61796e616b206b6f647520756c61c59fc4b16c6162696c6972206d693f, 'Y', '2007-01-16 10:46:19'),
(1007, 35, 0x474e55276e756e2047656e656c204c6973616e73c4b1202847504c292062616bc4b16dc4b16e64616e20796173616c206f6c6172616b204356532764656b69203c4120485245463d22687474703a2f2f736f75726365666f7267652e6e65742f70726f6a656374732f647261676f6e676f7365727665722f22205441524745543d5f626c616e6b3e536f75726365466f72676527646120447261676f6e756e2067656c69c59f746972696c6d65736920736179666173c4b16e64616e3c2f413e20756c61c59fc4b16c6162696c69726469722e, 'N', '2007-01-16 10:46:19'),
(1008, 35, 0x447261676f6e756e206b61796e616b206b6f64756e756e2067656c69c59f746972696c6d657369206e65726564652074617274c4b1c59fc4b16cc4b1796f723f, 'Y', '2007-01-16 11:30:15'),
(1009, 35, 0x3c6120485245463d22687474703a2f2f6c697374732e736f75726365666f7267652e6e65742f6c697374732f6c697374696e666f2f647261676f6e676f7365727665722d646576656c22205441524745543d225f626c616e6b223e647261676f6e676f7365727665722d646576656c206d61696c206c6973746573696e64653c2f613e2e204b6179646f6c7570206b61746bc4b164612062756c756e6d616b2069c3a7696e2064617665746c6973696e697a2e, 'N', '2007-01-16 11:30:15'),
(1010, 35, 0x5365766979656c656e6469726d656d692068616e6769206f79756e6c61722065746b696c65796563656b3f, 'Y', '2007-01-16 11:30:15'),
(1011, 35, 0x447261676f6e756e207365766979656c656e6469726d652073697374656d69207361646563650d0a0d0a2a2068657220696b69206f79756e63756e756e206461207365766979656c69206f6c6d6173c4b1206b6f6e7573756e646120757a6c61c59f74c4b16b6c6172c4b12c2076650d0a2a20656e20617a20352068616d6c6520646576616d2065746d69c59f206f6c616e0d0a6f79756e6c6172c4b12067c3b67a20c3b66ec3bc6e6520616cc4b1722e, 'N', '2007-01-16 11:30:15'),
(1012, 35, 0x447261676f6e20c3a7657669726d656e69206f6c6162696c69726d6979696d3f, 'Y', '2007-01-16 11:30:15'),
(1013, 35, 0x457665742e20c4b06c67696e697a69203c4120485245463d222f70686f72756d2f6c6973742e7068703f663d3722205441524745543d5f626c616e6b3ec3a7657669726d6520666f726d756e613c2f413e2067c3b66e646572696e697a2e2059c3b66e65746963696c65722068656d656e2068656d656e206865727a616d616e20c3a7657669726d6520697a6e696e697a69206f6e61796c61796163616b6c617264c4b1722e, 'Y', '2007-01-16 11:30:15'),
(1016, 35, 0x447261676f6e64612068616e6769206b7572616c20617961726c616d616c6172c4b1206b756c6c616ec4b16cc4b1723f, 'Y', '2007-01-16 11:30:15'),
(1017, 35, 0x54656d656c206f6c6172616b20447261676f6e204a61706f6e20476f206b7572616c6c6172c4b120c3bc7a6572696e65206b7572756c756475722e202d2048616e64696b6170207461c59f6c6172c4b16ec4b16e207965726c6572696e696e2062656c69726c656e6d6573692c20746168746120626f79757475207665207a616d616e2073c4b16ec4b1726c6172c4b12068617269c3a72e20427520447261676f6e207461726166c4b16e64616e20c3b66e6572696c656e20c3b66e6b6162756c6c6572207265736d69204a61706f6e206b7572616c6c6172c4b16e612075796d617a6c61722c20616d612073c4b172612d746162616e6cc4b120c3b66e6b6162756c206465c49f65726c6572692069c3a7696e206b756c6c616ec4b1c59f6cc4b179612062656e7a69796f722e0d0a0d0a4bc4b1736163612c20447261676f6e203c756c3e3c6c693e206f79756e63756c6172c4b16e20746168746120c3bc7a6572696e646520656c646520657474696b6c65726920616c616e6c6172c4b16e20736b6f72756e75206b756c6c616ec4b1722c0d0a3c6c693e73c3bc706572206b6f206b7572616cc4b120796f6b7475722c0d0a3c6c693e696e7469686172c4b120796173616b6c61722c2076650d0a3c6c693e68616e64696b6170207461c59f6c6172c4b16ec4b16e2073657262657374c3a765207965726c65c59f746972696c6d6573696e6520697a696e2076657269722e3c2f756c3e, 'N', '2007-01-18 14:18:00'),
(1020, 35, 0x53c4b172612d746162616e6cc4b1206f796e616d616b206f79756e6c6172c4b1206f796e616d616ec4b16e2065c59f207a616d616e6cc4b1206269722068616c696469722e2048657220696b69206f79756e637564652061796ec4b120616e6461207961206461207a616d616e6461206f796e616d616b207a6f72756e6461206465c49f696c6c65726469722e2042756e756e20796572696e652068657220696b69206f79756e637564612062756e756e2069c3a7696e207a616d616e6c6172c4b1206f6c6475c49f756e64612068616d6c65207961706162696c69726c65722e2053c4b1726120746162616e6cc4b120676f206f796e616d6120c3b6726e656b6c6572692c20656d61696c20796f6c7520696c652c20736e61696c2d6d61696c2076657961206275726173c4b120447261676f6e676f73756e75637573756475722e2042616bc4b16ec4b17a203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f6661712e7068703f726561643d74266361743d3323456e747279313533223e45c59f2d7a616d616e6cc4b13c2f613e2e, 'Y', '2007-01-16 11:30:15'),
(1022, 35, 0x476572c3a7656b2d7a616d616e6cc4b1206f796e616d61206f79756e6c6172c4b1206f796e616d616ec4b16e2073656b726f6e697a652062697220796f6c756475722e2048657220696b69206f79756e63756461206f72616461206f6c6d616b2076652061796ec4b1207a616d616e6461206f796e75796f72206f6c6d616b20647572756d756e646164c4b1726c61722e2042c3bc74c3bc6e206f79756e20626972206f74757275c59f64612062697465722e20476572c3a7656b2d7a616d616e6cc4b1206f79756e6c6172c4b16e20c3b6726e65c49f6920676572c3a7656b20626972207461687461646120676f206f796e616d616b20796120646120c3a76f6b20c3a765c59f69746c6920676572c3a7656b2d7a616d616e6cc4b12073756e7563756c61722e2042616bc4b16ec4b17a203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f6661712e7068703f726561643d74266361743d3323456e747279313532223e53c4b172612d746162616e6cc4b13c2f613e2e, 'Y', '2007-01-18 14:18:00'),
(1025, 35, 0x3c6120687265663d226661712e7068703f726561643d74266361743d33353723456e7472793937223e48616e64696b617073c4b17a3c2f613e20626972206f79756e2e203c6120687265663d226661712e7068703f726561643d74266361743d3323456e74727939223e4b6f6d693c2f613e206461766574206564656e206f79756e6375207461726166c4b16e64616e2062656c69726c656e69722e, 'Y', '2007-01-16 13:13:35'),
(1038, 35, 0x446168612067c3bcc3a76cc3bc206f6c6d616b2069c3a7696e2079617264c4b16d206b756c6c616e6162696c6972206d6979696d3f, 'Y', '2007-01-18 14:18:00'),
(1039, 35, 0x546162696b692e204b697461706c6172c4b1206f6b7579756e2c20676f2d70726f626c656d6c65726920c3a7c3b67ac3bc6e2c2062696c676973617961726c617261206b6172c59fc4b1206f796e6179c4b16e207665206469c49f6572206f79756e63756c61726c612074617274c4b1c59fc4b16e2e20466f72756d2074617274c4b1c59f6d616c6172c4b120626972c3a76f6b202d62656c6b6964652074c3bc6d2d206f79756e63756c6172c4b16e2062756e752062697220796120646120646168612066617a6c612079617074c4b1c49fc4b16ec4b12067c3b6737465726d656b74656469722e, 'N', '2007-01-16 13:20:54'),
(1042, 35, 0x4865736162c4b16d64616e206e6173c4b16c20c3a7c4b16b6162696c6972696d3f, 'Y', '2007-01-16 13:20:54'),
(1043, 35, 0x4261736974c3a7652068657268616e6769206269722073617966616ec4b16e207361c49f20616c74c4b16e64616b692022c387c4b16bc4b1c59f22206c696e6b696e652074c4b16b6c6179c4b16ec4b17a2e2045c49f65722033302067c3bc6e2069c3a765726973696e646520616b746966206f6c6d617a73616ec4b17a2073756e7563756e756e206b7572616269796520617961726c6172c4b120646f6c6163616b2076652073697a6520c3a7c4b16bc4b1c59f2079617074c4b1726163616b74c4b1722e, 'Y', '2007-01-16 13:20:54'),
(1044, 35, 0x42752068616d6c6520746168746120c3bc7a6572696e646520796173616b6c616e6dc4b1c59f2062697220706f7a6973796f6e61206e6564656e206f6c6d616b746164c4b1722e, 'Y', '2007-01-16 13:20:54'),
(1045, 35, 0x5a616d616e2073c4b16ec4b172c4b120c3a76f6b206bc3bcc3a7c3bc6b2c206cc3bc7466656e20656e20617a206269722073616174207365c3a7696e697a2e, 'Y', '2007-01-16 13:20:54'),
(1046, 35, 0xc39c7a67c3bc6ec3bc6d2c207461726179c4b163c4b16ec4b17a64616b69206b757261626979656c65726920756c61c59fc4b16cc4b172207961706d616dc4b1c59f73c4b16ec4b17a2e, 'Y', '2007-01-16 13:20:54'),
(1047, 35, 0xc39c7a67c3bc6ec3bc6d2c2062752073c4b172612068616c6968617ac4b1726461206f796e616e64c4b12e, 'Y', '2007-01-16 13:20:54'),
(1048, 35, 0x53617966612062756c756e616d6164c4b12e204cc3bc7466656e2073756e7563752079c3b66e65746963696c65726920696c65206261c49f6c616e74c4b1206b75726172616b20686174617961206e6564656e206f6c6d75c59f206f6c6162696c6563656b2079617074c4b1c49fc4b16ec4b17a2068657268616e676920626972c59f65792068616b6bc4b16e646120766520686174616ec4b16e206f6c75c59f7475c49f75207a616d616e206b6f6e7573756e64612062696c67696c656e646972696e697a2e, 'Y', '2007-01-16 13:20:54'),
(1024, 34, 0xe78c9ce5ad90e58886e58588, 'Y', '2007-02-12 18:41:57'),
(742, 34, 0xe59e83e59cbee6a1b6, 'Y', '2007-01-16 13:34:52'),
(743, 34, 0xe5b7b2e5af84e587ba, 'Y', '2007-02-16 04:36:20'),
(741, 34, 0xe4b8bbe4bfa1e7aeb1, 'Y', '2007-02-11 11:30:41'),
(746, 34, 0xe8b387e69699e5a4bee5908de7a8b1, 'Y', '2007-01-16 13:36:40'),
(1092, 34, 0xe8a995e7ad89, 'Y', '2007-01-17 04:12:44'),
(1121, 34, 0xe5898de4b880e58987e4bfa1e4bbb6, 'Y', '2007-02-16 04:36:20'),
(1122, 34, 0xe4b88be4b880e58987e4bfa1e4bbb6, 'Y', '2007-02-16 04:36:20'),
(1124, 34, 0xe68891e696b9, 'Y', '2007-02-13 12:37:16'),
(1049, 35, 0x4b756c6c616ec4b163c4b1206b696d6c69c49f6920796173616b206b6172616b7465726c65722069c3a7657269796f722c2073616465636520612d7a2c20412d5a2c20302d39207665202d5f2b206b756c6c616ec4b16c6162696c69722c20766520696c6b206b6172616b74657220612d7a2c20412d5a206f6c6d616cc4b164c4b1722e, 'Y', '2007-01-16 13:59:59'),
(1050, 35, 0xc39c7a67c3bc6ec3bc6d2c2067c3b6737465726d656b20697374656469c49f696e697a20696c65746979692062756c616dc4b1796f72756d2e, 'Y', '2007-01-16 13:59:59'),
(1051, 35, 0xc39c7a67c3bc6ec3bc6d2c20c3a7657669726d656b20697374656469c49f696e697a2064696c2079612064612067727562752062756c616dc4b1796f72756d2e2044657374656b2069c3a7696e20696c657469c59f696d65206765c3a7696e697a2e, 'Y', '2007-01-16 13:59:59'),
(1053, 35, 0x4275206b756c6c616ec4b163c4b12068616c6968617ac4b1726461206269722079c3b66e65746963692e, 'Y', '2007-01-16 14:19:00'),
(1055, 35, 0x447572756d20525353204265736c656d65, 'Y', '2007-01-18 10:37:53'),
(1068, 35, 0x44696c204265636572697369, 'Y', '2007-01-16 14:19:00'),
(1069, 35, 0x48656d656e2041c59f61c49fc4b16461, 'Y', '2007-01-16 14:19:00'),
(1073, 35, 0x48616d6c65206e756d6172616c616e64c4b1726d61, 'Y', '2007-01-16 14:19:00'),
(1074, 35, 0x31303027c3bc6e20c3bc7374c3bc6e64656b6920736179c4b16c6172c4b1206b756c6c616e6d61, 'Y', '2007-01-16 14:19:00'),
(1076, 35, 0xc3967a656c206f79756e206e6f746c6172c4b1, 'Y', '2007-01-16 14:19:00'),
(1077, 35, 0x4bc3bcc3a7c3bc6b2074616874616c6172, 'Y', '2007-01-16 14:19:00'),
(1078, 35, 0x42c3bc79c3bc6b2074616874616c6172, 'Y', '2007-01-16 14:19:00'),
(1079, 35, 0x506f7a6973796f6e, 'Y', '2007-01-16 14:19:00'),
(1080, 35, 0x59c3bc6b73656b6c696b, 'Y', '2007-01-16 14:19:00'),
(1081, 35, 0x47656e69c59f6c696b, 'Y', '2007-01-16 14:19:00'),
(1082, 35, 0xc59e696672652067c3b66e646572, 'Y', '2007-01-16 14:19:00'),
(1083, 35, 0x48616e64696b6170207461c59f6c6172c4b16ec4b16e207374616e64617274207965726c65c59f696d6465206f6c6d6173c4b120697374656e64692e, 'Y', '2007-01-16 14:19:00'),
(1084, 35, 0x5374616e64617274207965726c65c59f7469726d65, 'Y', '2007-01-16 14:19:00'),
(1085, 35, 0x4cc3bc7466656e20c3b66cc3bc207461c59f6c6172c4b12069c59f617265746c6579696e697a20766520626974696e63652025732774616d616d272573206120626173c4b16ec4b17a2e, 'Y', '2007-01-16 14:19:00'),
(1086, 35, 0x457369726c6572, 'Y', '2007-01-16 14:19:00'),
(1087, 35, 0x596f72756d6c6172, 'Y', '2007-01-16 14:19:00'),
(1088, 35, 0x53474627692062c3bc74c3bc6e20796f72756d6c617220696c6520696e646972, 'Y', '2007-01-26 05:55:56'),
(1089, 35, 0x536b6f72756e2048657361706c616e6d6173c4b1, 'Y', '2007-01-18 10:52:35'),
(1090, 35, 0x48616d6c652067c3b672c3bc6e74c3bc6c65, 'Y', '2007-01-16 14:19:00'),
(1091, 35, 0x4b616c616e2073c3bc7265, 'Y', '2007-01-16 14:19:00'),
(1092, 35, 0x5365766979656c69206f79756e, 'Y', '2007-01-16 14:19:00'),
(1093, 35, 0x4e6f746c6172c4b12067c3b673746572, 'Y', '2007-01-16 14:19:00'),
(1094, 35, 0x4e6f746c6172c4b1206b6179646574, 'Y', '2007-01-16 14:19:00'),
(1095, 35, 0x4e6f746c6172c4b12067697a6c65, 'Y', '2007-01-18 10:52:35'),
(1096, 35, 0x447261676f6e6f6e20676f2073756e75637573756e756e2067656c69c59f746972696c6d656b7465206f6c616e207665727369796f6e756e6120686fc59f67656c64696e697a21, 'N', '2007-01-16 14:19:00'),
(1097, 35, 0x45c49f657220676572c3a7656b206269722073756e7563756461206f796e616d616b20697374657273656e697a2c206275726173c4b16ec4b16e20796572696e65206cc3bc7466656e20203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e6574223e687474703a2f2f7777772e647261676f6e676f7365727665722e6e65743c2f613e2769207a697961726574206564696e697a2e, 'Y', '2007-01-16 14:19:00'),
(1214, 35, 0x416b746966206b756c6c616ec4b163c4b16c6172, 'Y', '2007-01-16 14:20:23'),
(1218, 35, 0x41726b6120506c616e, 'Y', '2007-01-16 14:20:23'),
(1219, 35, 0x4bc4b1726dc4b17ac4b1, 'Y', '2007-01-16 14:20:23'),
(1220, 35, 0x5965c59f696c, 'Y', '2007-01-16 14:20:23'),
(1221, 35, 0x4d617669, 'Y', '2007-01-16 14:20:23'),
(1624, 17, 0x676f647a696e, 'Y', '2013-08-20 23:11:28'),
(1628, 17, 0x62657a206c69637a62, 'Y', '2013-08-20 22:29:58'),
(1630, 17, 0x57737a7973746b6f, 'Y', '2013-08-20 23:11:28'),
(1631, 17, 0x54616b, 'Y', '2013-08-20 23:11:28'),
(1099, 35, 0x446168612066617a6c612062696c67692069c3a7696e204641512779612062616bc4b16ec4b17a2e, 'Y', '2007-01-16 15:57:54'),
(1106, 35, 0x4365766170206c697374657369, 'Y', '2007-01-16 15:57:54'),
(1108, 35, 0x4d6573616a6120676572692064c3b66e, 'Y', '2007-01-16 15:57:54'),
(1109, 35, 0xc3966e20697a6c656d65, 'Y', '2007-01-16 15:57:54'),
(1110, 35, 0x416cc4b163c4b12062756c756e616d6164c4b1, 'Y', '2007-01-16 15:57:54'),
(1111, 35, 0x5365766979656c656e6469726d65206772616669c49f69, 'Y', '2007-01-16 15:57:54'),
(1112, 35, 0x59656e69206261c59f6c6179616e6c61722069c3a7696e206e6f743a20c3967a656c6c696b6c652070726f66696c2073617966616ec4b17a64616b692073657669796520617961726c616d616ec4b17a2069c3a7696e20464151277975206f6b7579756e757a2e, 'Y', '2007-01-16 15:57:54'),
(1113, 35, 0x5365766979656c656e646972696c6d69c59f206f79756e6c6172, 'Y', '2007-01-16 15:57:54'),
(1280, 17, 0x74757265636b69, 'Y', '2013-08-20 22:15:42'),
(3158, 11, 0x46756e6374696573, 'Y', '2016-07-27 17:25:04'),
(1223, 35, 0x447572756d20736179666173c4b16e64612067c3b673746572, 'Y', '2007-01-16 16:00:26'),
(1224, 35, 0xc3966e20706c616e, 'Y', '2007-01-16 16:00:26'),
(1225, 35, 0x4b6c6173c3b6726c65722064c3bc7a656e6c656e646921, 'Y', '2007-01-16 16:00:26'),
(1226, 35, 0x59656e696c65, 'Y', '2007-01-16 16:00:26'),
(1227, 35, 0x59656e6920c59f696672652067c3b66e646572696c646921, 'Y', '2007-01-16 16:00:26'),
(1784, 36, 0xc3896c657472616a7a6920696e66c3b36b202872656a7465747429, 'Y', '2015-09-19 19:19:07'),
(1234, 35, 0x4261c59f6cc4b16b6c6172, 'Y', '2007-01-16 16:00:26'),
(1235, 35, 0x4261c59f6cc4b1c49f6120676572692064c3b66e, 'Y', '2007-01-18 11:09:41'),
(1237, 35, 0x417261, 'Y', '2007-01-16 16:00:26'),
(1243, 35, 0x696c65, 'Y', '2007-01-16 16:00:26'),
(1109, 34, 0xe9a090e8a6bd, 'Y', '2007-01-16 19:13:26'),
(1234, 34, 0xe8a9b1e9a18c, 'Y', '2007-02-16 04:49:38'),
(1235, 34, 0xe59b9ee588b0e8a9b1e9a18c, 'Y', '2007-02-16 04:49:38'),
(1237, 34, 0xe6909ce5b08b, 'Y', '2007-01-16 19:13:26'),
(484, 34, 0x31e69c88, 'Y', '2007-02-24 16:17:51'),
(485, 34, 0x32e69c88, 'Y', '2007-02-24 16:17:51'),
(486, 34, 0x34e69c88, 'Y', '2007-02-24 16:17:51'),
(487, 34, 0x35e69c88, 'Y', '2007-02-24 16:17:51'),
(488, 34, 0x36e69c88, 'Y', '2007-02-24 16:17:51'),
(489, 34, 0x38e69c88, 'Y', '2007-02-24 16:17:51'),
(490, 34, 0x39e69c88, 'Y', '2007-02-24 16:17:51'),
(491, 34, 0x3130e69c88, 'Y', '2007-02-24 16:17:51'),
(492, 34, 0x3132e69c88, 'Y', '2007-02-24 16:17:51'),
(495, 34, 0x33e69c88, 'Y', '2007-02-24 16:17:51'),
(496, 34, 0x37e69c88, 'Y', '2007-02-24 16:17:51'),
(497, 34, 0x3131e69c88, 'Y', '2007-02-24 16:17:51'),
(1076, 34, 0xe7a781e4babae7ad86e8a898e69cac, 'Y', '2007-05-31 11:14:57'),
(1083, 34, 0xe8ab8be6b182e8ae93e5ad90e696bce6989fe4bd8d, 'Y', '2007-05-29 12:21:41'),
(1084, 34, 0xe6989fe4bd8d, 'Y', '2007-06-02 08:59:36'),
(498, 34, 0xe887aa, 'Y', '2007-02-24 12:03:18'),
(499, 34, 0xe887b3, 'Y', '2007-02-24 12:00:37'),
(620, 34, 0xe68891e696b9e5a29ee6b89b, 'Y', '2007-06-03 15:07:24'),
(733, 34, 0xe4bc91e58187, 'Y', '2009-05-25 05:55:29'),
(782, 17, 0x6275b3676172736b69, 'Y', '2013-08-20 22:07:36'),
(1120, 35, 0x656b737472612070657269796f74, 'Y', '2007-01-17 08:15:54'),
(1121, 35, 0xc3966e63656b69206d6573616a, 'Y', '2007-01-17 08:15:54'),
(1122, 35, 0x536f6e72616b69206d6573616a, 'Y', '2007-01-17 08:15:54'),
(1124, 35, 0x4b656e64696d, 'Y', '2007-01-17 08:15:54'),
(1125, 35, 0x53c4b172616c61, 'Y', '2007-01-17 08:15:54'),
(1131, 35, 0xc39c7a67c3bc6ec3bc6d2c2062697220736579616861742070657269796f6475206261c59f6c61746162696c6d656b2069c3a7696e20656e20617a20256420736579616861742067c3bc6ec3bc6ec3bc7a652069687469796163c4b16ec4b17a207661722e, 'Y', '2007-01-17 08:15:54'),
(1211, 35, 0x48616d6c65, 'Y', '2007-01-17 08:15:54'),
(1212, 35, 0x2573276520486fc59f67656c64696e21, 'Y', '2007-01-17 08:15:54'),
(1213, 35, 0x2573276520686fc59f67656c64696e697a2c202573676f2573206f796e616d616b2069c3a7696e202573c3bc6372657473697a25732073756e7563752c206f79756e6c6172c4b16e202773c3bc72c3bc6b6c656e6469c49f6927207965722e, 'Y', '2007-01-17 09:29:38'),
(1222, 35, 0x416c6661, 'Y', '2007-01-17 09:29:38'),
(1244, 35, 0x4f6e61796c616e6d6179c4b13c62723e2062656b6c69796f72, 'Y', '2007-01-17 09:29:38'),
(1245, 35, 0x47697a6c69, 'Y', '2007-01-18 11:09:41'),
(1246, 35, 0x64c3bc7a656e6c656e6d69c59f, 'Y', '2007-01-17 09:29:38'),
(1251, 35, 0x4f6e61796c61, 'Y', '2007-01-17 09:29:38'),
(1252, 35, 0x526564646574, 'Y', '2007-01-17 09:29:38'),
(1253, 35, 0xc4b06c657469, 'Y', '2007-01-17 09:29:38'),
(1254, 35, 0x4f6e61796c616e6d6179c4b12062656b6c6579656e20696c6574696c6572, 'Y', '2007-01-17 09:29:38'),
(1255, 35, 0x466f72756d206c697374657369, 'Y', '2007-01-17 09:29:38'),
(1257, 35, 0x4261c59f6cc4b16b, 'Y', '2007-01-17 09:29:38'),
(1258, 35, 0x59617a6172, 'Y', '2007-01-17 09:29:38'),
(1259, 35, 0xc4b06c6574696c6572, 'Y', '2007-01-17 09:29:38'),
(1260, 35, 0x536f6e20696c657469, 'Y', '2007-01-17 09:29:38'),
(1261, 35, 0xc39c7a67c3bc6ec3bc6d2c20627520666f726d6120696c6574692067c3b66e6465726d6520697a6e696e697a20796f6b, 'Y', '2007-01-17 09:29:38'),
(1274, 35, 0x67c3bc6e, 'Y', '2007-01-18 10:42:59'),
(1275, 35, 0x67c3bc6e, 'Y', '2007-01-18 10:42:59'),
(1276, 35, 0x73616174, 'Y', '2007-01-18 10:41:38'),
(1277, 35, 0x73616174, 'Y', '2007-01-18 10:41:38'),
(1279, 35, 0xc387696e6365202847656c656e656b73656c29287574662d3829, 'Y', '2007-01-17 09:30:51'),
(1280, 35, 0x54c3bc726bc3a765, 'Y', '2007-01-17 09:30:51'),
(1270, 35, 0x42c3bc74c3bc6e2062656b6c6579656e206f79756e6c6172, 'Y', '2007-01-17 09:32:44'),
(1271, 35, 0x557967756e2062656b6c6579656e206f79756e6c6172, 'Y', '2007-01-17 09:32:44'),
(1273, 35, 0x426972206b6c6173c3b672c3bc6e2073696c696e6562696c6d6573692069c3a7696e20626fc59f206f6c6d6173c4b120676572656b697221, 'Y', '2007-01-17 09:32:44'),
(913, 35, 0x536579c59f656c6c6572, 'Y', '2007-01-17 10:28:00'),
(914, 35, 0x536965727261204c656f6e65, 'Y', '2007-01-17 10:28:00'),
(924, 35, 0x537572696e616d, 'Y', '2007-01-17 10:28:00'),
(925, 35, 0x5376617a696c616e64, 'Y', '2007-01-17 10:28:00'),
(948, 35, 0x566174696b616e, 'Y', '2007-01-17 10:28:00'),
(1014, 35, 0x556c75736c617261726173c4b120736f6e726164616e20796170c4b16c616e206269722064696c28c4b06e7465726c696e67756129, 'Y', '2007-01-17 10:28:00'),
(1015, 35, 0x556c75736c617261726173c4b120736f6e726164616e20796170c4b16c616e206269722064696c20284573706572616e746f29, 'Y', '2007-01-17 10:28:00'),
(1028, 35, 0xc4b06272616e696365, 'Y', '2007-01-17 10:28:00'),
(1128, 35, 0x4b6172616461c49f, 'Y', '2007-01-17 15:14:57');
INSERT INTO `Translations` (`Original_ID`, `Language_ID`, `Text`, `Translated`, `Updated`) VALUES
(1029, 35, 0x526f6d616e2064696c6c657269, 'Y', '2007-01-18 11:08:23'),
(1263, 35, 0x47c3b67a64656e206765c3a76972696c6d6520746172696869, 'Y', '2007-01-17 15:18:12'),
(1241, 35, 0x4b6f6e74726f6c2065746d65, 'Y', '2007-01-17 15:45:27'),
(1256, 35, 0x4b6f6e74726f6c206564696c6469, 'Y', '2007-01-17 15:45:27'),
(1262, 35, 0x427520696c657469206b6f6e74726f6c6cc3bcc49fc3bc6e206b6f6e7573756475722e204b6f6e74726f6c6c6572206f6e61796c6164c4b16b74616e20736f6e72612067c3b673746572696c6563656b7469722e, 'Y', '2007-01-17 15:45:27'),
(1238, 35, 0x546f67676c6520666f72756d206b6f6e74726f6cc3bc, 'Y', '2007-01-17 15:53:39'),
(1266, 35, 0x546168746179c4b1206461686120686fc59f207961706d616b2069c3a7696e207765622061726179c3bc7ac3bc206b756c6c616ec4b16c6dc4b1c59f2c2062697220c3a765c59f697420656c6574726f6e696b20706f73746120696c65206f79756e206f6c6172616b2062616b6162696c697273696e697a2e204f796e616d617961206261c59f6c616d616b2069c3a7696e2065c49f657220796f6b73612c20c3b66e63656c696b6c65206b656e64696e697a6520626972203c6120687265663d2272656769737465722e706870223e68657361703c2f613e206564696e6d656c6973696e697a2e2042756e64616e20736f6e7261203c6120687265663d22656469745f70726f66696c652e706870223e70726f66696c696e697a692064c3bc7a656e6c65796562696c69723c2f613e207665203c6120687265663d22656469745f62696f2e706870223e6269796f67726166696e697a20696c652062696c67696c6572206769726562696c697273696e697a3c2f613e2c20c3b67a656c6c696b6c6520274d61c3a76c6172612061c3a7c4b16b206dc4b173c4b16ec4b17a3f272c20275365766979656c656e6469726d652720766520275365766979652062696c67697369272072616b69702062756c6d616b2069c3a7696e20c3b66e656d6c696469722e204461686120736f6e726120203c6120687265663d2275736572732e706870223e6b756c6c616ec4b163c4b1206c6973746573696e653c2f613e20c3a7616cc4b1c59f6162696c697220766520626972206f79756e612064617665742065746d656b2069c3a7696e20757967756e2072616b69706c6572692062756c6d616b2069c3a7696e203c6120687265663d22666f72756d2f696e6465782e706870223e666f72756d6c6172c4b13c2f613e206b756c6c616e6162696c697273696e697a2e, 'Y', '2007-01-17 15:53:39'),
(1130, 35, 0x5965726bc3bc7265, 'Y', '2007-01-17 15:53:57'),
(1267, 35, 0x4172616d6120736f6e756375, 'Y', '2007-01-18 11:09:41'),
(1085, 34, 0xe8ab8be9bb9ee981b8e6adbbe5ad90efbc8ce784b6e5be8ce9bb9ee981b8257327e5ae8ce68890272573, 'Y', '2007-02-13 10:04:55'),
(1086, 34, 0xe68f90e5ad90, 'Y', '2007-01-19 14:12:28'),
(1087, 34, 0xe79599e8a880, 'Y', '2007-02-11 09:30:53'),
(1088, 34, 0xe4b88be8bc89e6a38be8ad9ce590abe79599e8a880, 'Y', '2007-08-05 13:28:37'),
(1089, 34, 0xe8a888e58886, 'Y', '2007-02-16 13:57:25'),
(1090, 34, 0xe8a780e6a38b, 'Y', '2007-01-19 14:12:28'),
(1091, 34, 0xe589a9e9a498e69982e99693, 'Y', '2007-01-19 14:12:28'),
(1093, 34, 0xe9a1afe7a4bae7ad86e8a898, 'Y', '2007-05-31 11:21:54'),
(1094, 34, 0xe584b2e5ad98e7ad86e8a898, 'Y', '2007-05-31 11:21:54'),
(1095, 34, 0xe99ab1e8978fe7ad86e8a898, 'Y', '2007-05-31 11:21:54'),
(1111, 34, 0xe6a38be58a9be59c96, 'Y', '2007-03-14 19:57:24'),
(3464, 11, 0x56657277696a64657220736a61626c6f6f6e, 'Y', '2016-07-27 17:28:54'),
(1211, 34, 0xe6898be695b8, 'Y', '2007-01-19 14:12:28'),
(1270, 34, 0xe68980e69c89e7ad89e5be85e6a38be5b180, 'Y', '2007-02-16 13:57:25'),
(1271, 34, 0xe981a9e59088e5b08de5b180, 'Y', '2012-01-19 19:08:09'),
(618, 34, 0xe58e9fe4be86e7ad89e7b49a, 'Y', '2007-02-25 08:40:06'),
(619, 34, 0xe7b590e69d9fe7ad89e7b49a, 'Y', '2007-02-16 13:57:25'),
(1944, 7, 0x446fb96c6f206b206eec6a616bfd6d2063687962e16d, 'Y', '2016-07-20 16:20:15'),
(730, 34, 0xe7b7a8e8bcafe58187e69c9f, 'Y', '2007-01-19 14:18:04'),
(731, 34, 0xe7b7a8e8bcafe4bfa1e7aeb1, 'Y', '2007-02-16 04:55:19'),
(479, 34, '', 'Y', '2007-01-19 14:22:27'),
(494, 34, 0x2573e79a84e8b387e69699, 'Y', '2007-02-16 06:44:03'),
(500, 34, '', 'Y', '2007-01-19 14:22:27'),
(732, 34, 0xe58187e69c9f, 'Y', '2007-02-10 11:43:55'),
(736, 34, 0xe58b9d, 'Y', '2007-02-11 21:02:55'),
(737, 34, 0xe8b2a0, 'Y', '2007-02-11 21:02:55'),
(738, 34, 0xe694b9e8ae8ae58187e69c9fe69982e99693, 'Y', '2007-02-10 06:20:43'),
(739, 34, 0xe9968be5a78be4bc91e58187, 'Y', '2007-05-30 12:35:24'),
(750, 34, '', 'Y', '2007-01-19 14:22:27'),
(954, 34, '', 'Y', '2007-01-19 14:22:27'),
(955, 34, 0xe58187e69c9f, 'Y', '2007-01-19 14:22:27'),
(477, 34, 0xe8ae93e5ad90e695b8e98cafe8aaa4, 'Y', '2007-01-20 12:31:26'),
(501, 34, 0xe9be8de4b98be7a281e6a38be6898be88887e4bdbfe794a8e88085e8b387e69699, 'N', '2007-10-01 06:34:50'),
(502, 34, 0xe59c8de6a38be8a193e8aa9e, 'Y', '2007-01-20 12:31:26'),
(504, 34, 0xe59c8de6a38be8a68fe58987, 'Y', '2007-01-20 12:31:26'),
(518, 34, 0xe78c9ce5ad90, 'N', '2007-02-12 18:39:31'),
(525, 34, 0xe68891e883bde5bbbae8adb0e696b0e58a9fe883bde5978eefbc9f, 'Y', '2007-01-20 12:31:26'),
(537, 34, 0xe58fabe59083, 'N', '2007-02-12 18:39:31'),
(507, 34, 0xe8b2bce79bae, 'Y', '2007-02-12 15:47:10'),
(539, 34, 0xe68993e58aab, 'Y', '2007-02-12 18:39:31'),
(545, 34, 0xe7b49a, 'Y', '2007-02-12 18:39:31'),
(547, 34, 0xe6aeb5, 'Y', '2007-02-12 18:39:31'),
(557, 34, 0xe5a682e4bd95e9968be5a78be696b0e6a38be5b180efbc9f, 'Y', '2007-01-20 12:33:25'),
(559, 34, 0xe5a682e4bd95e890bde5ad90efbc9f, 'Y', '2007-01-20 12:33:25'),
(722, 34, 0xe8b387e69699e5a4be, 'Y', '2007-01-20 12:36:06'),
(726, 34, 0xe7b7a8e8bcafe4bfa1e7aeb1, 'Y', '2007-02-16 05:03:31'),
(740, 34, 0xe585a8e694b6e588b0, 'Y', '2007-01-20 12:36:06'),
(755, 34, 0xe7b3bbe7b5b1, 'Y', '2007-02-14 04:09:33'),
(1108, 34, 0xe59b9ee588b0e4bfa1e4bbb6, 'Y', '2007-02-16 04:36:20'),
(1110, 34, 0xe784a1e6ada4e694b6e4bbb6e88085, 'Y', '2007-02-11 06:25:43'),
(956, 34, 0xe68ab1e6ad89efbc8ce79baee5898de4bda0e4b88de883bde694b9e8ae8ae58187e69c9fe69982e99693, 'Y', '2007-02-10 06:20:43'),
(957, 34, 0xe58187e69c9fe69982e99693e694b9e8ae8ae4ba86efbc81, 'Y', '2007-02-10 06:20:43'),
(958, 34, 0xe5a29ee58aa0, 'Y', '2007-01-20 12:43:42'),
(959, 34, 0xe7a7bbe999a4, 'Y', '2007-01-20 12:43:42'),
(960, 34, 0xe981b8e69387e58187e69c9fe69982e99693, 'Y', '2007-02-10 06:20:43'),
(962, 34, 0xe58187e69c9fe68489e5bfabefbc81, 'Y', '2007-01-20 12:43:42'),
(997, 34, '', 'Y', '2007-01-20 12:43:42'),
(998, 34, '', 'Y', '2007-01-20 12:43:42'),
(1014, 34, '', 'Y', '2007-01-20 12:43:42'),
(1015, 34, '', 'Y', '2007-01-20 12:43:42'),
(1018, 34, '', 'Y', '2007-01-20 12:43:42'),
(1023, 34, '', 'Y', '2007-01-20 12:43:42'),
(1028, 34, '', 'Y', '2007-01-20 12:43:42'),
(1030, 34, '', 'Y', '2007-01-20 12:43:42'),
(1031, 34, '', 'Y', '2007-01-20 12:43:42'),
(1032, 34, '', 'Y', '2007-01-20 12:43:42'),
(1033, 34, '', 'Y', '2007-01-20 12:43:42'),
(1034, 34, '', 'Y', '2007-01-20 12:43:42'),
(1035, 34, 0xe4b8ade6968728e7b0a1e9ab9429287574662d3829, 'Y', '2007-02-12 09:00:43'),
(1067, 34, 0xe6af8de8aa9e, 'Y', '2007-01-20 12:43:42'),
(1068, 34, 0xe9809ae69b89e8aa9ee69687, 'Y', '2007-01-20 12:43:42'),
(1069, 34, 0xe4b88b, 'Y', '2007-02-11 06:39:55'),
(1077, 34, 0xe5b08fe6a38be79ba4e5b08de5b180e69982, 'Y', '2007-02-19 05:48:27'),
(1078, 34, 0xe6a38be79ba4e8b7afe695b8e5a4a7e696bc, 'Y', '2007-02-19 05:15:39'),
(1079, 34, 0xe4bd8de7bdae, 'Y', '2007-01-20 12:43:42'),
(1080, 34, 0xe9ab98, 'Y', '2007-01-20 12:43:42'),
(1081, 34, 0xe5afac, 'Y', '2007-01-20 12:43:42'),
(1113, 34, 0xe8a995e7ad89e6a38be5b180, 'Y', '2007-02-19 10:24:46'),
(1131, 34, 0xe68ab1e6ad89efbc8ce887b3e5b091e8a681efbc8564e5a4a9e58187e69c9fe6898de883bde4bc91e58187e38082, 'Y', '2007-05-30 12:35:24'),
(1210, 34, 0xe7b7a8e8bcafe5b08fe582b3, 'Y', '2007-02-10 06:20:43'),
(1214, 34, 0xe5b08de5b180e4b8ade79a84e6a38be6898b, 'Y', '2007-10-01 07:01:30'),
(1218, 34, 0xe8838ce699af, 'Y', '2007-01-20 12:43:42'),
(1219, 34, 0xe7b485, 'Y', '2007-01-20 12:43:42'),
(1220, 34, 0xe7b6a0, 'Y', '2007-01-20 12:43:42'),
(1221, 34, 0xe8978d, 'Y', '2007-01-20 12:43:42'),
(1223, 34, 0xe9a1afe7a4bae59ca8e79baee5898de5b08de5b180, 'Y', '2007-02-16 04:55:19'),
(1224, 34, 0xe5898de699af, 'Y', '2007-01-20 12:45:07'),
(1225, 34, 0xe8b387e69699e5a4bee5b7b2e8aabfe695b4efbc81, 'Y', '2007-01-20 12:45:07'),
(1226, 34, 0xe69bb4e696b0, 'Y', '2007-01-20 12:45:07'),
(1245, 34, 0xe99ab1e8978f, 'Y', '2007-02-11 17:19:50'),
(1273, 34, 0xe8b387e69699e5a4bee99c80e6b885e7a9bae6898de883bde588aae999a4efbc81, 'Y', '2007-01-20 12:45:07'),
(1279, 34, 0xe4b8ade6968728e7b981e9ab9429287574662d3829, 'Y', '2007-02-12 09:00:43'),
(1280, 34, '', 'Y', '2007-01-20 12:45:07'),
(1029, 34, '', 'Y', '2007-01-20 12:46:52'),
(1073, 34, 0xe6898be695b8e8a888e695b8, 'Y', '2007-01-20 12:46:52'),
(1074, 34, 0xe4b88de8b685e9818e313030, 'Y', '2007-02-11 06:42:29'),
(1222, 34, 0xe8a686e8938be5baa6, 'Y', '2007-02-15 14:36:50'),
(1003, 34, '', 'Y', '2007-01-20 12:52:52'),
(747, 34, 0xe68980e69c89e9a085e79bae, 'Y', '2007-01-23 12:18:51'),
(1060, 34, 0xe99ab1e8978f, 'Y', '2007-01-23 12:18:51'),
(1125, 34, 0xe58886e9a19e, 'Y', '2007-01-23 12:18:51'),
(1082, 34, 0xe5af86e7a2bce98081e587ba, 'Y', '2007-01-23 12:20:40'),
(1096, 34, 0xe6ada1e8bf8ee58589e887a8e9be8de4b98be7a281e7a094e799bce78988efbc81, 'N', '2007-03-10 08:40:17'),
(1227, 34, 0xe5af84e587bae696b0e5af86e7a2bcefbc81, 'Y', '2007-02-16 13:34:04'),
(1, 16, 0xc8e7e2e8ede8f2e52c20ede5ebfce7ff20efe0f1eee2e0f2fc2c20eff0e5e6e4e520f7e5ec20e2fbf1f2e0e2ebe5edfb20e2f1e520f4eef0eee2fbe520eae0ecede82e, 'Y', '2007-01-28 07:29:04'),
(2, 16, 0xc8e7e2e8ede8f2e52c20fdf2e020e8e3f0e020f3e6c520e7e0eaeeedf7e5ede02e, 'Y', '2007-01-28 07:29:04'),
(3, 16, 0xc8e7e2e8ede8f2e52c20e8e3f0e020e5f9e520ede520ede0f7e0ebe0f1fc2e, 'Y', '2007-01-28 07:29:04'),
(7, 16, 0xc8e7e2e8ede8f2e52c20c2fb20ede520eceee6e5f2e520e2fbe7e2e0f2fc20f1e0ece820f1e5e1ff2e, 'Y', '2007-01-28 07:29:04'),
(9, 16, 0xc8e7e2e8ede8f2e52c20ede5ebfce7ff20f1edfff2fc20e5e4e8edf1f2e2e5ededfbe920eae0ece5edfc2c20eaeef2eef0fbec20f2eeebfceaee20f7f2ee20e1fbeb20eeeaf0f3e6e5ed20c2e0f820e5e4e8edf1f2e2e5ededfbe920eae0ece5edfc2c20e2ee20e8e7e1e5e6e0ede8e520efeee2f2eef0e5ede8ff20efeee7e8f6e8e82e20d1eceef2f0e8f2e52027eaee2720e220eff0e0e2e8ebe0f520e8e3f0fb2e, 'Y', '2007-01-28 07:29:04'),
(12, 16, 0xcde5f220f1e2ffe7e820f120e1e0e7eee920e4e0ededfbf52e20cfeee6e0ebf3e9f1f2e02c20efeee4eee6e4e8f2e520ede5f1eaeeebfceaee20ece8edf3f220e820efeeeff0eee1f3e9f2e520f1edeee2e02e, 'Y', '2007-01-28 07:29:04'),
(18, 16, 0xcef8e8e1eae020e7e0eff0eef1e020ea20e1e0e7e520e4e0ededfbf52e20cfeee6e0ebf3e9f1f2e02c20efeee4eee6e4e8f2e520ede5f1eaeeebfceaee20ece8edf3f220e820efeeeff0eee1f3e9f2e520f1edeee2e02e, 'Y', '2007-01-28 07:29:04'),
(19, 16, 0xcde520f3e4e0e5f2f1ff20e2fbe1f0e0f2fc20e1e0e7f320e4e0ededfbf52e20cfeee6e0ebf3e9f1f2e02c20efeee4eee6e4e8f2e520ede5f1eaeeebfceaee20ece8edf3f220e820efeeeff0eee1f3e9f2e520f1edeee2e02e, 'Y', '2007-01-28 07:29:04'),
(20, 16, 0xc8e7e2e8ede8f2e52c20ede520f3e4e0e5f2f1ff20ede0f7e0f2fc20e8e3f0f32e20cfeee6e0ebf3e9f1f2e02c20efeee4eee6e4e8f2e520ede5f1eaeeebfceaee20ece8edf3f220e820efeeeff0eee1f3e9f2e520f1edeee2e02e, 'Y', '2007-01-28 07:29:04'),
(27, 16, 0xc8e7e2e8ede8f2e52c20c2e0ec20e820c2e0f8e5ecf320eff0eef2e8e2ede8eaf320edf3e6e5ed20f0e5e9f2e8ede32c20e8ede0f7e520ede5e2eee7eceee6edee20e0e2f2eeece0f2e8f7e5f1eae820f3f1f2e0edeee2e8f2fc20efeee4f5eee4fff9f3fe20f4eef0f32e, 'Y', '2007-01-28 07:29:04'),
(32, 16, 0xc8e7e2e8ede8f2e52c20f1e5e9f7e0f120ede520c2e0f820f5eee42e, 'Y', '2007-01-28 07:29:04'),
(33, 16, 0xc2e0f820efe0f0eeebfc20f1eee4e5f0e6e8f220e7e0eff0e5f9e5ededfbe520f1e8ece2eeebfb2e20d0e0e7f0e5f8e5edfb20f2eeebfceaee20612d7a2c20412d5a2c20302d3920e8202d5f2b2e2c3a3b3f21252a, 'Y', '2007-01-28 07:29:04'),
(35, 16, 0xcfeee4f2e2e5f0e6e4e5ede8e520efe0f0eeebff20eef2ebe8f7e0e5f2f1ff20eef220efe0f0eeebff2e20c2e5f0ede8f2e5f1fc20e820efeeeff0eee1f3e9f2e520f1edeee2e02e, 'Y', '2007-01-28 07:29:04'),
(38, 16, 0xc8e7e2e8ede8f2e52c20f3eae0e7e0ed20ede5efeeedfff2edfbe920f0e5e9f2e8ede32e20cceee6e5f220c2fb20e7e0e1fbebe820e4eee1e0e2e8f2fc2027eafe2720e8ebe82027e4e0ed273f, 'Y', '2007-01-28 07:29:04'),
(39, 16, 0xc8e7e2e8ede8f2e52c20f3eae0e7e0ed20ede5efeeedfff2edfbe920f0e5e9f2e8ede32e20c2fb20ede520e4eeebe6edfb20e4eee1e0e2ebfff2fc2027eafe2720e8ebe82027e4e0ed2720e4ebff20f2e0eaeee3ee20e2e8e4e020f0e5e9f2e8ede3e02e, 'Y', '2007-01-28 07:29:04'),
(40, 16, 0xc8e7e2e8ede8f2e52c20fdf2eef220eae0ece5edfc20f3e1e8eb20e1fb20f1e0ec20f1e5e1ff2c20e020f1e0eceef3e1e8e9f1f2e2ee20e7e0eff0e5f9e5edee20eff0e0e2e8ebe0ece82e, 'Y', '2007-01-28 07:29:04'),
(41, 16, 0xc8e7e2e8ede8f2e52c20ede520f3e4e0e5f2f1ff20ede0e9f2e820e8e3f0f32e, 'Y', '2007-01-28 07:29:04'),
(42, 16, 0xc8e7e2e8ede8f2e52c20ede520f3e4e0e5f2f1ff20ede0e9f2e820f2f0e5e1f3e5ecfbe920c2e0ece820f4eef0f3ec2e, 'Y', '2007-01-28 07:29:04'),
(44, 16, 0xc8e7e2e8ede8f2e52c20ede520f3e4e0e5f2f1ff20ede0e9f2e820f1eeeee1f9e5ede8e52c20eaeef2eef0eee520c2fb20f5eef2e8f2e520eff0eef1eceef2f0e5f2fc2e, 'Y', '2007-01-28 07:29:04'),
(45, 16, 0xc8e7e2e8ede8f2e52c20ede520f3e4e0e5f2f1ff20ede0e9f2e820f2e0eaeee3ee20e8e3f0eeeae02e, 'Y', '2007-01-28 07:29:04'),
(46, 16, 0xc8e7e2e8ede8f2e52c20fdf2eef220eff1e5e2e4eeede8ec20f3e6e520f1f3f9e5f1f2e2f3e5f22e20cfeee6e0ebf3e9f1f2e02c20ede0e9e4e8f2e520f3ede8eae0ebfcedfbe920eff1e5e2e4eeede8ec2e, 'Y', '2007-01-28 07:29:04'),
(49, 16, 0xc8e7e2e8ede8f2e52c20c2fb20eceee6e5f2e520f3e4e0ebe8f2fc20f2eeebfceaee20c2e0f8f320e8e3f0f32e, 'Y', '2007-01-28 07:29:04'),
(51, 16, 0xc8e7e2e8ede8f2e52c20c2fb20ede520eceee6e5f2e520eff0e8edfff2fc20c2e0f8e520f1eee1f1f2e2e5ededeee520eff0e8e3ebe0f8e5ede8e520ea20e8e3f0e52e, 'Y', '2007-01-28 07:29:04'),
(52, 16, 0xc8e7e2e8ede8f2e52c20c2e0f820f0e5e9f2e8ede320e2ede520f3eae0e7e0ededeee3ee20f0e0ede3e02e, 'Y', '2007-01-28 07:29:04'),
(14, 16, 0xc8e7e2e8ede8f2e52c20ede520f3e4e0ebeef1fc20e4eee1e0e2e8f2fc20f1eeeee1f9e5ede8e520e220e1e0e7f320e4e0ededfbf52e, 'Y', '2007-01-28 13:19:09'),
(15, 16, 0xc8e7e2e8ede8f2e52c20ede520f3e4e0ebeef1fc20e4eee1e0e2e8f2fc20e8e3f0f320e220e1e0e7f320e4e0ededfbf52e, 'Y', '2007-01-28 13:19:09'),
(54, 16, 0xc8e7e2e8ede8f2e52c20c2fb20eef8e8e1ebe8f1fc20eff0e820e2e2eee4e520efe0f0eeebff2e, 'Y', '2007-01-28 13:19:09'),
(57, 16, 0xc8e7e2e8ede8f2e52c20ede0f7e0ebfcedfbe920f0e5e9f2e8ede320e4eeebe6e5ed20e1fbf2fc20eef220333020eafe20e4ee203620e4e0ede02e, 'Y', '2007-01-28 13:19:09'),
(58, 16, 0xc8e7e2e8ede8f2e52c20c2fb20e2e2e5ebe820ede5f7e8f1ebeee2eee520e7ede0f7e5ede8e520e4ebff20f7e8f1ebeee2eee3ee20efeeebff2e, 'Y', '2007-01-28 13:19:09'),
(59, 16, 0xc8e7e2e8ede8f2e52c20eff0e5e2eee4e8f2fc20eceee3f3f220f2eeebfceaee20efe5f0e5e2eee4f7e8eae82e, 'Y', '2007-01-28 13:19:09'),
(60, 16, 0xc5f1ebe820c2fb20f5eef2e8f2e520efeeeceef7fc20e220efe5f0e5e2eee4e520c4f0e0e3eeede02c20efeee6e0ebf3e9f1f2e02c20f1eeeee1f9e8f2e520eee120fdf2eeec20ede020f4eef0f3ece520277472616e736c6174696f6e272e, 'Y', '2007-01-28 13:19:09'),
(61, 16, 0xc8e7e2e8ede8f2e52c20c2e0ec20ede520f0e0e7f0e5f8e5edee20efe5f0e5e2eee4e8f2fc20ede020f3eae0e7e0ededfbe920ffe7fbea2e, 'Y', '2007-01-28 13:19:09'),
(1091, 16, 0xcef1f2e0f2eeea20e2f0e5ece5ede8, 'Y', '2007-01-28 13:20:47'),
(1082, 16, 0xc2fbf1ebe0f2fc20efe0f0eeebfc, 'Y', '2007-01-28 13:24:16'),
(1227, 16, 0xcdeee2fbe920efe0f0eeebfc20eef2eff0e0e2ebe5ed21, 'Y', '2007-01-28 13:24:16'),
(1244, 24, 0x4fc48d616bc3a176616d3c62723e73c3ba686c6173, 'Y', '2007-01-28 14:12:33'),
(1253, 24, 0x506fc5a17461, 'Y', '2007-01-28 14:12:33'),
(1254, 24, 0x506f7369656c61206e65726f7a686f646e7574c3bd2073c3ba686c6173, 'Y', '2007-01-28 14:12:33'),
(1279, 24, 0xc48dc3ad6e736b7920287472616469c48d6ec3bd29287574662d3829, 'Y', '2007-01-28 14:12:33'),
(1280, 24, 0x74757265636bc3bd, 'Y', '2007-01-28 14:12:33'),
(1099, 34, 0xe8a9b3e68385e8ab8be8ae8022e5b8b8e8a68be5958fe9a18c22e38082, 'Y', '2007-10-01 08:01:43'),
(3, 27, 0x506172646f6e612c206c61206a7561206e6f20657320636f6d656e736164612e, 'Y', '2007-01-31 23:11:59'),
(18, 27, 0x44656d616e646120706f7220626173612064652064617461206e6f206f706572616e74652e20506572206661766f72652065737065746120616c6761206d696e757465732065206174656e746120616e636f72612e, 'Y', '2008-01-20 11:59:25'),
(19, 27, 0x4e6f20706f746520656c656a65206c61206261736120646520646174612e20506572206661766f72652065737065746120616c6761206d696e757465732065206174656e746120616e636f72612e, 'Y', '2008-01-20 11:59:25'),
(20, 27, 0x506172646f6e61206c61206a7561206e6f20706f746520636f6d656e736164612e0d0a506572206661766f72652065737065746120616c6761206d696e757465732065206174656e746120616e636f72612e, 'Y', '2008-01-20 11:59:25'),
(41, 27, 0x506172646f6e2c206d65206e6f20706f74652074726f7661206c61206a75612e, 'Y', '2008-01-20 12:01:07'),
(474, 34, 0xe58b95e4bd9ce4b88de6988eefbc8ce68896e59ca8e79baee5898de6a38be5b180e784a1e6b395e981a9e794a8e38082, 'Y', '2007-05-17 16:00:52'),
(475, 34, 0xe8b2bce79baee8b685e587bae7af84e59c8defbc8ce8ab8be981b8e69387e8bc83e59088e79086e79a84e695b8e79baee38082, 'Y', '2007-05-17 16:00:52'),
(476, 34, 0xe6ada4e6898be799bce7949fe98cafe8aaa4e38082e8ab8be5868de8a9a6e4b880e6aca1efbc8ce88ba5e784a1e6b395e8a7a3e6b1bae8ab8be9809ae79fa5e694afe68fb4e38082, 'Y', '2007-05-17 16:00:52'),
(506, 34, 0x4d6f6b75efbc9ae59ca8e79ba4e4b88ae79a84e4b880e5808be7a9bae9bb9ee38082, 'N', '2007-02-17 10:56:29'),
(511, 34, 0xe9be8de4b98be7a281e79a84e981b8e596aee88887e981b8e9a085, 'Y', '2007-02-01 18:16:32'),
(512, 34, 0xe9be8de4b98be7a281e6a38be5b180, 'Y', '2007-02-01 18:16:32'),
(513, 34, 0xe9be8de4b98be7a281e7a094e799bc, 'Y', '2007-02-01 18:16:32'),
(514, 34, 0xe69591e591bdefbc81e588b0e89995e983bde698afe7a88be5bc8fe6af9be79785efbc81, 'Y', '2007-02-12 12:36:32'),
(522, 34, 0xe9968be5a78be696b0e5b180e69982e58fafe4bba5e7a59de5b08de6898be5a5bde9818be5978eefbc9f, 'Y', '2007-02-01 18:16:32'),
(523, 34, 0xe795b6e784b6e58fafe4bba5e38082e69c89e4ba9be6a38be6898be4b99fe5969ce6ada1e582b3e7b5b1e79a84e697a5e8aa9e203c6120687265663d22687474703a2f2f73656e736569732e786d702e6e65742f3f4f6e656761697368696d61737522207461726765743d225f626c616e6b223e6f6e656761697368696d6173753c2f613ee38082, 'Y', '2007-11-03 07:48:39'),
(529, 34, 0xe68891e8a681e5a682e4bd95e69fa5e8a9a2e789b9e5ae9ae79a84e8a68fe58987efbc9f, 'Y', '2007-02-15 18:08:53'),
(531, 34, 0xe59c8de6a38be79a84e59fbae69cace8a68fe58987e698afe4bb80e9babcefbc9f, 'Y', '2007-02-01 18:16:32'),
(541, 34, 0xe69982e99693e794a8e58589e79a84e6a38be5b180e58fafe4bba5e9878de696b0e8a888e69982e5978eefbc9f, 'Y', '2007-02-01 18:16:32'),
(542, 34, 0xe4b88de8a18cefbc8c3c693ee8ab8be9878de696b0e9968be5a78be696b0e6a38be5b180e4b8a6203c6120687265663d222f6661712e7068703f726561643d74266361743d3536223ee981b8e69387e981a9e795b6e79a84e69982e999903c2f613eefbc813c2f693e, 'Y', '2007-02-15 08:48:34'),
(549, 34, 0xe68891e59ca8e9be8de4b98be7a281e69c89e5a49ae5b091e5a4a9e58187e69c9fefbc9f, 'Y', '2007-02-01 18:16:32'),
(550, 34, 0xe69c80e5a49a20333020e5a4a9efbc88e6af8fe5b9b4efbc89efbc8ce6af8fe5808be69c88e5a29ee58aa020322e3520e5a4a9e58187e69c9fe38082, 'Y', '2007-02-15 08:29:55'),
(478, 34, 0xe69bb4e5a49ae8b387e69699e8ab8be79c8b203c6120687265663d226661712e706870223ee5b8b8e8a68be5958fe9a18c3c2f613eefbc8ce682a8e4b99fe58fafe4bba5e59ca8e8ab96e5a387e68f90e587bae887aae5b7b1e79a84e5958fe9a18ce38082, 'Y', '2007-10-01 08:01:43'),
(503, 34, 0xe99b9ce9a085, 'Y', '2007-02-01 18:24:07'),
(505, 34, 0xe79bae, 'Y', '2007-02-12 18:39:31'),
(535, 34, 0xe694b6e5ae98, 'Y', '2007-02-12 18:39:31'),
(536, 34, 0x596f7365efbc9ae7b582e79ba4efbc8ce6a38be5b180e79a84e69c80e5be8ce99a8ee6aeb5efbc8ce5b7b2e7b693e6b292e69c89e694bbe6938ae4b88be6b395efbc8ce58faae69c89e693b4e5b195e697a2e69c89e59cb0e79ba4e79a84e69c80e4bdb3e4b88be6b395e38082, 'Y', '2007-02-15 20:52:20'),
(1104, 34, 0xe59c8de6a38be79a84e5a587e5a699, 'Y', '2007-02-10 08:03:30'),
(1105, 34, 0x526f622056616e205a65696a737420e6af8fe980b1e59c8de6a38be5b088e6ac84, 'Y', '2007-02-10 10:13:14'),
(1228, 34, 0xe7b5b1e8a888e59c96, 'Y', '2007-03-12 11:48:03'),
(515, 34, 0xe682a8e59d90e59ca8e99bbbe885a6e5898de78ea92044475320e5a4aae4b985e4ba86e38082e8ab8be6b497e5808be6bea1efbc8ce68f9be4b88ae4b9bee6b7a8e8a1a3e69c8d203a2d29, 'Y', '2007-02-15 19:23:58'),
(1, 33, 0xe68ab1e6ad89efbc8ce8aea9e5ad90e69caae5ae8ce68890e4b98be5898de697a0e6b395e8999ae6898be38082, 'Y', '2007-05-17 16:03:42'),
(427, 8, 0xa7bdbcc6, 'Y', '2007-02-11 05:54:55'),
(1076, 8, 0xa870a448b5a7b04fa5bb, 'Y', '2007-05-31 11:18:54'),
(1271, 8, 0xbe41a658b9efa7bd, 'Y', '2007-02-17 11:18:11'),
(1086, 8, 0xb4a3a46c, 'Y', '2007-02-11 05:57:18'),
(1092, 8, 0xb5fbb5a5, 'Y', '2007-02-11 05:57:18'),
(724, 34, 0xe588aae999a4e6a899e7a4bae4bfa1e4bbb6, 'Y', '2007-02-16 04:38:47'),
(727, 34, 0xe5b08de5b180e8a8ade5ae9a2573e58fa6e8adb02573, 'Y', '2007-02-26 04:57:36'),
(1106, 34, 0xe59b9ee7ad94e58897e8a1a8, 'Y', '2007-02-16 15:00:03'),
(1120, 34, 0xe6aca1, 'Y', '2007-02-13 10:05:39'),
(3175, 40, 0x417061676172, 'Y', '2014-04-11 14:07:57'),
(744, 34, 0xe59b9ee8a686e69982e7a7bbe887b3e8b387e69699e5a4be, 'Y', '2007-02-16 15:00:03'),
(745, 34, 0xe7a7bbe887b3e8b387e69699e5a4be, 'Y', '2007-02-11 06:46:23'),
(1102, 34, 0x476f476f4420e59c8de6a38be8b387e69699e5baabe88887e799bee7a791e585a8e69bb8, 'Y', '2007-02-15 19:15:05'),
(1103, 34, 0xe881b7e6a5ade6a38be5b180e79a84e5a4a7e8b387e69699e5baab, 'Y', '2007-02-11 07:02:47'),
(509, 34, 0xe9be8de4b98be7a281e7a6aee58480, 'Y', '2007-02-11 07:16:40'),
(510, 34, 0xe9be8de4b98be7a281e7a88be5bc8fe5b08fe6af9be79785, 'N', '2007-02-16 18:33:33'),
(508, 34, 0x4b6f6d69efbc9ae8b2bce7b5a6e799bde696b9e4ba8be58588e7b484e5ae9ae79a84203c6120687265663d222f6661712e7068703f726561643d74266361743d3323456e74727938223ee79bae3c2f613eefbc8ce794a8e4be86e5bd8ce8a39ce9bb91e696b9e58588e6898be79a84e584aae58ba2e38082, 'N', '2007-02-15 20:52:20'),
(519, 34, 0x4e69676972693a20e78c9ce5ad90e698afe794a8e4be86e6b1bae5ae9ae8aab0e68bbfe9bb91e5ad90e38082e4b880e696b9efbc88e9809ae5b8b8e698afe8bc83e5b9b4e995b7e88085efbc89e68a93e58f96e4b880e68a8ae799bde5ad90efbc8ce58fa6e4b880e696b9e981b8e69387e4b880e9a186e68896e585a9e9a186e9bb91e5ad90e694bee59ca8e6a38be79ba4e4b88aefbc8ce4be86e78c9ce5b08de696b9e6898be4b8ade79a84e799bde5ad90e698afe99b99e695b8e68896e596aee695b8e38082e5a682e69e9ce78c9ce5b08de4ba86e5b0b1e68bbfe9bb91e5ad90efbc8ce78c9ce98cafe4ba86e5b0b1e68bbfe799bde5ad90e380820d0a0d0ae59ca8e9be8de4b98be7a281efbc8ce98099e5808be9818ee7a88be794b1e7b3bbe7b5b1e89995e79086e38082e68bbfe799bde5ad90e4b880e696b9e58fafe4bba5e5be97e588b0203620e79baee58d8ae79a84e8b2bce79baee380820d0a0d0ae69c80e5a5bde698afe6a38be58a9be79bb8e795b6e79a84e6a38be6898be6898de794a8e78c9ce5ad90e38082, 'N', '2007-02-16 19:30:56'),
(526, 34, 0xe795b6e784b6e58fafe4bba5efbc81e8ab8be68a8ae5bbbae8adb0e799bbe59ca8203c686f6d6520666f72756d2f6c6973742e7068703f666f72756d3d343ee8ab96e5a3873c2f686f6d653ee380820d0a0d0ae5b7b2e7b693e5bbbae8adb0e79a84e4ba8be9a085e58fafe58f83e8808322e9be8de4b98be7a281e8ab96e5a387e6909ce5b08be981b8e9a08522efbc8ce98284e69c89203c4120485245463d22687474703a2f2f73656e736569732e786d702e6e65742f3f444753576973686c69737422205441524745543d225f626c616e6b223e2253656e7365692773204c696272617279e9be8de4b98be7a281e8a8b1e9a198e596ae223c2f413e20e4bba5e58f8a3c6120687265663d22687474703a2f2f647261676f6e676f7365727665722e6376732e736f75726365666f7267652e6e65742f647261676f6e676f7365727665722f447261676f6e476f5365727665722f736372697074732f4368616e67654c6f673f766965773d6d61726b7570223e22536f75726365666f726765e9be8de4b98be7a281e8a888e795ab435653e8ae8ae69bb4e7b480e98c84223c2f613ee38082, 'N', '2007-11-03 07:48:39'),
(530, 34, 0xe59ca8e5958fe7ad94e68896e8ab96e5a387e4b8ade8aaaae6988ee682a8e79a84e69fa5e8a9a2e38082e69c80e5a5bde698afe8aaaae6988ee682a8e683b3e69fa5e8a9a2e79a84e8a68fe58987efbc8ce794a8e59ca8e6a38be5b180e79a84e4bb80e9babce68385e6b381e4b8ade38082, 'Y', '2007-02-15 14:48:28'),
(532, 34, 0xe585a9e4bd8de5b08de6898be59ca8e4b880e5808be696b9e5bda2e6a38be79ba4e4b88ae58c85e59c8de9a098e59c9fe38082e6a38be79ba4e698af20313978313920e8b7afefbc8ce4bd86e4b99fe69c892039783920e8b7afe8888720313378313320e8b7afe79a84e38082e5b08de6898be8bcaae6b581e59ca8e4baa4e58f89e9bb9ee4b88ae694bee4b88be887aae5b7b1e9a18fe889b2e79a84e6a38be5ad90e38082e9bb91e5ad90e58588e4b88befbc8ce784b6e5be8ce698afe799bde5ad90e380820d0a0d0ae5a682e69e9ce890bde5ad90e5be8cefbc8ce8ae93e5b08de696b9e79a84e4b880e7bea4e6a38be5ad90e6b292e69c89e4ba86e6b0a3efbc8ce5b08de696b9e79a84e98099e7bea4e6a38be5ad90e5b0b1e5be9ee6a38be79ba4e4b88ae68bbfe68e89efbc88e68f90e5ad90efbc89e38082e5a682e69e9ce890bde5ad90e69c83e5b08ee887b4e887aae5b7b1e79a84e4b880e7bea4e6a38be5ad90e6b292e69c89e6b0a3efbc8ce98099e4b880e6898be698afe98195e8a68fe79a84e7a681e5ad90e380820d0a0d0ae795b6e99b99e696b9e983bde8999be6898be5be8cefbc8ce5b08de5b180e5b0b1e7b590e69d9fefbc8ce9968be5a78be695b8e59cb0e8a888e58886efbc9ae58588e5a1abe6bbbfe4b8ade7ab8be7a9bae99693efbc88e596aee5ae98efbc89efbc8ce784b6e5be8ce7a7bbe999a4e6adbbe5ad90e38082e9bb91e696b9e88887e799bde696b9e79a84e9a098e59c9fe698afe4bba5e58c85e59c8de79a84e4baa4e58f89e9bb9ee8a888e7ae97efbc8ce6b89be68e89e8a2abe5b08de6898be68f90e5ad90e79a84e695b8e79baee380820d0a0d0ae8a9b3e68385e58fafe58f83e880833c6120687265663d22687474703a2f2f706c6179676f2e746f2f696e7465726163746976652f696e6465782e68746d6c22207461726765743d6e65773ee4ba92e58b95e5adb8e59c8de6a38b3c2f613e2e, 'Y', '2007-02-15 18:08:53'),
(533, 34, 0xe593aae8a3a1e58fafe689bee588b0e69bb4e5a49ae79a84e59c8de6a38be7b6b2e7ab99efbc9f, 'Y', '2007-02-15 15:35:23'),
(534, 34, 0xe9be8de4b98be7a281e79a84203c6120687265663d222f6c696e6b732e706870223ee980a3e7b5903c2f613ee38082, 'Y', '2007-02-15 08:48:34'),
(1244, 34, 0xe7ad89e5be853c62723ee6a0b8e58786, 'Y', '2007-02-11 10:02:19'),
(1246, 34, 0xe5b7b2e7b7a8e8bcaf, 'Y', '2007-02-11 10:02:19'),
(1251, 34, 0xe6a0b8e58786, 'Y', '2007-02-11 10:02:19'),
(1252, 34, 0xe69caae9809ae9818e, 'Y', '2007-02-25 09:03:01'),
(1253, 34, 0xe8b2bce69687, 'Y', '2007-02-11 10:02:19'),
(1254, 34, 0xe8b2bce69687e7ad89e5be85e6a0b8e58786, 'Y', '2007-02-11 10:02:19'),
(1255, 34, 0xe8ab96e5a387, 'Y', '2007-02-26 13:05:42'),
(1258, 34, 0xe4bd9ce88085, 'Y', '2007-02-11 10:02:19'),
(1259, 34, 0xe8b2bce69687, 'Y', '2007-02-11 10:02:19'),
(1260, 34, 0xe69c80e5be8ce8b2bce69687, 'Y', '2007-02-11 10:02:19'),
(1267, 34, 0xe6909ce5b08be7b590e69e9c, 'Y', '2007-02-11 10:02:19'),
(5733, 25, 0x4469666572656ec5a3c48320636f746172652070656e7472752072656d697ac483, 'Y', '2014-11-26 10:19:43'),
(1257, 34, 0xe8a9b1e9a18c, 'Y', '2007-02-16 04:49:38'),
(595, 34, 0xe58187e69c9fe698afe4bb80e9babcefbc9f, 'Y', '2007-02-11 10:08:07'),
(597, 34, 0xe58092e695b828e8ae80e7a79229e8a888e69982, 'Y', '2007-06-06 20:03:18'),
(598, 34, 0x42796f2d796f6d69efbc9ae795b6e6a38be5b180e4b8bbe8a681e69982e99693e794a8e5ae8ce5be8ce79a84e58092e695b8e69982e99990e8a68fe58987e38082, 'Y', '2007-06-06 20:03:18'),
(551, 34, 0x22e79baee5898de5b08de5b18022e79a84e9a085e79baee698afe4bb80e9babcefbc9f, 'N', '2007-02-11 10:19:33'),
(552, 34, 0xe7b0a1e596aee8aaaae6988e203c6120687265663d222f7374617475732e706870223ee79baee5898de5b08de5b1803c2f613e20e79a84e9a085e79baeefbc9a0d0a3c756c3e0d0a3c6c693e3c623ee5a793e5908d3c2f623e20e4bdbfe794a8e88085e79a84e69cace5908de68896e58c96e5908defbc8ce58fafe99aa8e6848fe8ae8ae69bb4efbc8ce6a0bce5bc8fe4b88de99990e380820d0a3c6c693e3c623ee5b8b3e8999f3c2f623e20e4bdbfe794a8e88085e799bbe585a5e79a84e5b8b3e8999fefbc8ce4b88de58fafe8ae8ae69bb4e38082200d0a3c6c693e3c623ee9968be694bee5b08de5b1803c2f623e20e7b5a6e5b08de6898be79a84e8b387e8a88aefbc8ce58fafe99aa8e6848fe8ae8ae69bb4e380820d0a3c6c693e3c623e444753e7ad89e7b49a3c2f623e20e4bdbfe794a8e88085e79baee5898de59ca8e9be8de4b98be7a281e79a84e7ad89e7b49aefbc8ce794b1e7b3bbe7b5b1e6b1bae5ae9ae380820d0a3c6c693e3c623ee58f83e88083e7ad89e7b49a3c2f623e20e8a39ce58585e79a84e7ad89e7b49ae8b387e69699efbc8ce4be8be5a682e585b6e4bb96e59c8de6a38be7b584e7b994e8aa8de5ae9ae79a84e7ad89e7b49aefbc8ce58fafe99aa8e6848fe8ae8ae69bb4e380820d0a3c2f756c3e, 'N', '2007-02-23 14:10:12'),
(553, 34, 0xe68891e79a84e8a888e69982e99098e4bd95e69982e9968be5a78be8a888e69982efbc9f, 'Y', '2007-02-11 10:35:58'),
(555, 34, 0xe5a682e4bd95e8a780e79c8be6a38be8ad9c2053474620e6aa94efbc9f, 'N', '2007-02-25 08:29:05'),
(561, 34, 0xe5a682e4bd95e588aae999a4e980b2e8a18ce4b8ade79a84e5b08de5b180efbc9f, 'Y', '2007-02-11 10:35:58'),
(562, 34, 0xe59ca8e7acace58d81e6898be4b98be5898defbc8ce6a38be79ba4e4b88be696b9e69c83e69c8922e588aae999a422e981b8e9a085e38082e694bee7bdaee8ae93e5ad90e4b88de69c83e8a888e7ae97e59ca8e58d81e6898be4b98be585a7e380820d0a0d0ae4bba5e98099e7a8aee696b9e5bc8fe588aae999a4e6a38be5b180efbc8ce4b88de69c83e5bdb1e99fbfe7ad89e7b49ae38082e8b685e9818ee58d81e6898be4b98be5be8cefbc8ce6a38be5b180e5b0b1e784a1e6b395e588aae999a4e38082e5a682e5908ce585b6e4bb96e981b8e69387efbc8ce588aae999a4e4b99fe8a681e585a9e5808be6ada5e9a99fefbc9ae99c80e8a681e7a2bae8aa8de6898de883bde588aae999a4e38082, 'N', '2007-11-10 05:49:44'),
(563, 34, 0xe5a682e4bd95e7b590e69d9fe5b08de5b180efbc9f, 'Y', '2007-02-11 10:35:58'),
(1238, 34, 0xe58887e68f9be5afa9e6a0b8, 'Y', '2007-02-26 05:10:31'),
(1241, 34, 0xe5afa9e6a0b8e4b8ad, 'Y', '2007-02-11 10:45:59'),
(1256, 34, 0xe5afa9e6a0b8, 'Y', '2007-02-12 09:22:18'),
(1261, 34, 0xe68ab1e6ad89efbc8ce4bda0e6b292e78db2e5be97e8a8b1e58fafe59ca8e8ab96e5a387e8b2bce69687, 'Y', '2007-02-11 10:40:14'),
(1262, 34, 0xe6ada4e8b2bce69687e5bf85e9a088e68ea5e58f97e5afa9e6a0b8efbc8ce6a0b8e58786e5be8ce5b0b1e69c83e9a1afe7a4bae38082, 'Y', '2007-02-11 10:45:59'),
(1263, 34, 0xe4bfaee8a882e6adb7e58fb2, 'Y', '2007-02-11 10:41:49'),
(1243, 34, 0xe4bd9ce88085, 'Y', '2007-02-11 10:42:12'),
(804, 34, '', 'Y', '2007-02-11 11:08:52'),
(805, 34, '', 'Y', '2007-02-11 11:08:52'),
(806, 34, '', 'Y', '2007-02-11 11:08:52'),
(808, 34, '', 'Y', '2007-02-11 11:08:52'),
(809, 34, '', 'Y', '2007-02-11 11:08:52'),
(810, 34, '', 'Y', '2007-02-11 11:08:52'),
(842, 34, '', 'Y', '2007-02-11 11:08:52'),
(1097, 34, 0xe5a682e69e9ce682a8e683b3e5afa6e99a9be4b88ae7b6b2e78ea9e9be8de4b98be7a281efbc8ce8ab8be4b88a3c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e6574223e687474703a2f2f7777772e647261676f6e676f7365727665722e6e65743c2f613ee38082, 'Y', '2007-02-16 13:34:04'),
(1621, 17, 0x6d69657369ea6379, 'Y', '2013-08-20 23:11:28'),
(1622, 17, 0x7479676f646e69, 'Y', '2013-08-20 23:11:28'),
(1623, 17, 0x646e69, 'Y', '2013-08-20 23:11:28'),
(1112, 34, 0xe696b0e794a8e688b6e8ab8be6b3a8e6848fefbc9ae8ab8be996b1e8ae8022e5b8b8e8a68be5958fe9a18c22e4b8ade9979ce696bce682a8e79a84e5889de5a78be7ad89e7b49ae8a8ade5ae9ae38082, 'Y', '2007-10-01 08:01:43'),
(1212, 34, 0xe6ada1e8bf8ee58589e887a820202573efbc81, 'Y', '2007-03-12 16:55:05'),
(1213, 34, 0xe6ada1e8bf8ee58589e887a8202573efbc8c202573e5858de8b2bb257320e79a84202573e59c8de6a38b257320e7b6b2e7ab99efbc8ce58fafe4bba5e8ae93e682a8e6b7b1e6809de7869fe685aee4b88be6a38be38082, 'Y', '2007-03-12 16:57:32'),
(1266, 34, 0xe98099e698afe4b880e5808be9a19ee4bcbce9809ae4bfa1e4b88be6a38befbc8ce69c89e7be8ee8a780e6a38be79ba4e79a84e7b6b2e8b7afe4bb8be99da2e38082e682a8e8a681e58588e794b3e8ab8be4b880e5808b203c6120687265663d2272656769737465722e706870223ee5b8b3e8999f3c2f613ee38082e784b6e5be8ce682a8e58fafe4bba5e7b7a8e8bcaf203c6120687265663d22656469745f70726f66696c652e706870223ee5808be4babae8b387e696993c2f613e20e88887203c6120687265663d22656469745f62696f2e706870223ee7b7a8e8bcafe5b08fe582b33c2f613eefbc8ce5a1abe5afab22e9968be694bee5b08de5b18022efbc8c22444753e7ad89e7b49a22e8888722e58f83e88083e7ad89e7b49a22e79a84e8b387e69699e5b087e69c89e58aa9e696bce682a8e689bee588b0e5b08de6898be38082e682a8e58fafe58f83e88083203c6120687265663d2275736572732e706870223ee6a38be6898b3c2f613e20e4b8a6e4bdbfe794a8203c6120687265663d22666f72756d2f696e6465782e706870223ee8ab96e5a3873c2f613e20e4be86e5b08be689bee981a9e59088e79a84e5b08de6898befbc8ce784b6e5be8c203c6120687265663d226d6573736167652e7068703f6d6f64653d496e76697465223ee98280e8ab8b3c2f613e20e4bb96e58091e5b08de5b180e38082e682a8e4b99fe58fafe4bba5e79bb4e68ea5e588b0e5be85e5b180e5aea4e58aa0e585a5e981a9e795b6e79a84e5b08de5b180e38082, 'Y', '2007-10-01 06:55:21'),
(207, 8, 0xc273c4fdbeb9b35da977, 'Y', '2007-02-21 12:00:45'),
(811, 34, '', 'Y', '2007-02-12 08:32:17'),
(812, 34, '', 'Y', '2007-02-12 08:32:17'),
(813, 34, '', 'Y', '2007-02-12 08:32:17'),
(814, 34, '', 'Y', '2007-02-12 08:32:17'),
(815, 34, '', 'Y', '2007-02-12 08:32:17'),
(816, 34, '', 'Y', '2007-02-12 08:32:17'),
(817, 34, '', 'Y', '2007-02-12 08:32:17'),
(818, 34, '', 'Y', '2007-02-12 08:32:17'),
(819, 34, '', 'Y', '2007-02-12 08:32:17'),
(820, 34, '', 'Y', '2007-02-12 08:32:17'),
(821, 34, '', 'Y', '2007-02-12 08:32:17'),
(822, 34, '', 'Y', '2007-02-12 08:32:17'),
(823, 34, '', 'Y', '2007-02-12 08:32:17'),
(824, 34, '', 'Y', '2007-02-12 08:32:17'),
(825, 34, '', 'Y', '2007-02-12 08:32:17'),
(826, 34, '', 'Y', '2007-02-12 08:32:17'),
(827, 34, '', 'Y', '2007-02-12 08:46:38'),
(828, 34, '', 'Y', '2007-02-12 08:32:17'),
(829, 34, '', 'Y', '2007-02-12 08:32:17'),
(830, 34, '', 'Y', '2007-02-12 08:32:17'),
(831, 34, '', 'Y', '2007-02-12 08:32:17'),
(832, 34, '', 'Y', '2007-02-12 08:32:17'),
(833, 34, '', 'Y', '2007-02-12 08:32:17'),
(834, 34, '', 'Y', '2007-02-12 08:32:17'),
(835, 34, '', 'Y', '2007-02-12 08:32:17'),
(836, 34, '', 'Y', '2007-02-12 08:32:17'),
(837, 34, '', 'Y', '2007-02-12 08:32:17'),
(838, 34, '', 'Y', '2007-02-12 08:32:17'),
(839, 34, '', 'Y', '2007-02-12 08:32:17'),
(840, 34, '', 'Y', '2007-02-12 08:32:17'),
(841, 34, '', 'Y', '2007-02-12 08:32:17'),
(843, 34, '', 'Y', '2007-02-12 08:32:17'),
(845, 34, '', 'Y', '2007-02-12 08:32:17'),
(849, 34, '', 'Y', '2007-02-12 08:32:17'),
(851, 34, '', 'Y', '2007-02-12 08:32:17'),
(855, 34, '', 'Y', '2007-02-12 08:32:17'),
(856, 34, '', 'Y', '2007-02-12 08:32:17'),
(857, 34, '', 'Y', '2007-02-12 08:32:17'),
(859, 34, '', 'Y', '2007-02-12 08:32:17'),
(862, 34, '', 'Y', '2007-02-12 08:32:17'),
(864, 34, '', 'Y', '2007-02-12 08:32:17'),
(867, 34, '', 'Y', '2007-02-12 08:32:17'),
(871, 34, '', 'Y', '2007-02-12 08:32:17'),
(874, 34, '', 'Y', '2007-02-12 08:32:17'),
(875, 34, '', 'Y', '2007-02-12 08:32:17'),
(876, 34, '', 'Y', '2007-02-12 08:32:17'),
(878, 34, '', 'Y', '2007-02-12 08:32:17'),
(881, 34, '', 'Y', '2007-02-12 08:32:17'),
(882, 34, '', 'Y', '2007-02-12 08:32:17'),
(883, 34, '', 'Y', '2007-02-12 08:32:17'),
(885, 34, '', 'Y', '2007-02-12 08:32:17'),
(887, 34, '', 'Y', '2007-02-12 08:32:17'),
(888, 34, '', 'Y', '2007-02-12 08:32:17'),
(893, 34, '', 'Y', '2007-02-12 08:32:17'),
(894, 34, '', 'Y', '2007-02-12 08:32:17'),
(895, 34, '', 'Y', '2007-02-12 08:32:17'),
(896, 34, '', 'Y', '2007-02-12 08:32:17'),
(897, 34, '', 'Y', '2007-02-12 08:32:17'),
(898, 34, '', 'Y', '2007-02-12 08:32:17'),
(899, 34, '', 'Y', '2007-02-12 08:32:17'),
(901, 34, '', 'Y', '2007-02-12 08:32:17'),
(902, 34, '', 'Y', '2007-02-12 08:32:17'),
(903, 34, '', 'Y', '2007-02-12 08:32:17'),
(910, 34, '', 'Y', '2007-02-12 08:32:17'),
(914, 34, '', 'Y', '2007-02-12 08:32:17'),
(915, 34, '', 'Y', '2007-02-12 08:32:17'),
(918, 34, '', 'Y', '2007-02-12 08:32:17'),
(919, 34, '', 'Y', '2007-02-12 08:32:17'),
(920, 34, '', 'Y', '2007-02-12 08:32:17'),
(921, 34, '', 'Y', '2007-02-12 08:32:17'),
(922, 34, '', 'Y', '2007-02-12 08:32:17'),
(923, 34, '', 'Y', '2007-02-12 08:32:17'),
(926, 34, '', 'Y', '2007-02-12 08:32:17'),
(927, 34, '', 'Y', '2007-02-12 08:32:17'),
(929, 34, 0xe58fb0e781a3, 'Y', '2012-02-10 05:09:23'),
(931, 34, '', 'Y', '2007-02-12 08:32:17'),
(932, 34, '', 'Y', '2007-02-12 08:32:17'),
(934, 34, '', 'Y', '2007-02-12 08:32:17'),
(936, 34, '', 'Y', '2007-02-12 08:32:17'),
(937, 34, '', 'Y', '2007-02-12 08:32:17'),
(940, 34, '', 'Y', '2007-02-12 08:32:17'),
(941, 34, '', 'Y', '2007-02-12 08:32:17'),
(943, 34, '', 'Y', '2007-02-12 08:32:17'),
(944, 34, '', 'Y', '2007-02-12 08:32:17'),
(948, 34, '', 'Y', '2007-02-12 08:32:17'),
(949, 34, '', 'Y', '2007-02-12 08:32:17'),
(950, 34, '', 'Y', '2007-02-12 08:32:17'),
(951, 34, '', 'Y', '2007-02-12 08:32:17'),
(952, 34, '', 'Y', '2007-02-12 08:32:17'),
(953, 34, '', 'Y', '2007-02-12 08:32:17'),
(1126, 34, '', 'Y', '2007-02-12 08:32:17'),
(1127, 34, '', 'Y', '2007-02-12 08:32:17'),
(1129, 34, '', 'Y', '2007-02-12 08:32:17'),
(1130, 34, '', 'Y', '2007-02-12 08:32:17'),
(846, 34, '', 'Y', '2007-02-12 08:46:38'),
(850, 34, '', 'Y', '2007-02-12 08:46:38'),
(852, 34, '', 'Y', '2007-02-12 08:46:38'),
(853, 34, '', 'Y', '2007-02-12 08:46:38'),
(858, 34, '', 'Y', '2007-02-12 08:46:38'),
(861, 34, '', 'Y', '2007-02-12 08:46:38'),
(863, 34, '', 'Y', '2007-02-12 08:46:38'),
(865, 34, '', 'Y', '2007-02-12 08:46:38'),
(866, 34, '', 'Y', '2007-02-12 08:46:38'),
(868, 34, '', 'Y', '2007-02-12 08:46:38'),
(869, 34, '', 'Y', '2007-02-12 08:46:38'),
(870, 34, '', 'Y', '2007-02-12 08:46:38'),
(872, 34, '', 'Y', '2007-02-12 08:46:38'),
(873, 34, '', 'Y', '2007-02-12 08:46:38'),
(877, 34, '', 'Y', '2007-02-12 08:46:38'),
(879, 34, '', 'Y', '2007-02-12 08:46:38'),
(880, 34, '', 'Y', '2007-02-12 08:46:38'),
(884, 34, '', 'Y', '2007-02-12 08:46:38'),
(886, 34, '', 'Y', '2007-02-12 08:46:38'),
(889, 34, '', 'Y', '2007-02-12 08:46:38'),
(890, 34, '', 'Y', '2007-02-12 08:46:38'),
(892, 34, '', 'Y', '2007-02-12 08:46:38'),
(900, 34, '', 'Y', '2007-02-12 08:46:38'),
(913, 34, '', 'Y', '2007-02-12 08:46:38'),
(916, 34, '', 'Y', '2007-02-12 08:46:38'),
(917, 34, '', 'Y', '2007-02-12 08:46:38'),
(928, 34, '', 'Y', '2007-02-12 08:46:38'),
(933, 34, '', 'Y', '2007-02-12 08:46:38'),
(935, 34, '', 'Y', '2007-02-12 08:46:38'),
(942, 34, '', 'Y', '2007-02-12 08:46:38'),
(945, 34, '', 'Y', '2007-02-12 08:46:38'),
(1128, 34, '', 'Y', '2007-02-12 08:46:38'),
(854, 34, '', 'Y', '2007-02-12 08:56:36'),
(904, 34, '', 'Y', '2007-02-12 08:56:36'),
(905, 34, '', 'Y', '2007-02-12 08:56:36'),
(906, 34, '', 'Y', '2007-02-12 08:56:36'),
(907, 34, '', 'Y', '2007-02-12 08:56:36'),
(908, 34, '', 'Y', '2007-02-12 08:56:36'),
(909, 34, '', 'Y', '2007-02-12 08:56:36'),
(911, 34, '', 'Y', '2007-02-12 08:56:36'),
(924, 34, '', 'Y', '2007-02-12 08:56:36'),
(925, 34, '', 'Y', '2007-02-12 08:56:36'),
(930, 34, '', 'Y', '2007-02-12 08:56:36'),
(938, 34, '', 'Y', '2007-02-12 08:56:36'),
(939, 34, '', 'Y', '2007-02-12 08:56:36'),
(946, 34, '', 'Y', '2007-02-12 08:56:36'),
(947, 34, '', 'Y', '2007-02-12 08:56:36'),
(538, 34, 0x4174617269efbc9ae58fabe59083e5b0b1e698afe5a881e88485e8a681e68f90e68e89e4b880e5ad90e68896e4b880e7bea4e5ad90e38082e98099e4b880e5ad90e68896e98099e4b880e7bea4e5ad90e58faae589a9e4b88be4b880e58fa3e6b0a3e38082e98099e4b880e5ad90e68896e98099e4b880e7bea4e5ad90e5b0b1e698af22e8a2abe58fabe5908322e380820d0a0d0ae59ca8e79c9fe79a84e6a38be79ba4e4b88be6a38be69982efbc8ce5968ae587ba22e58fabe5908322e698afe5b8b8e8a68be79a84e7a6aee8b28cefbc8ce4bd86e4b8a6e4b88de698afe5bf85e8a681e79a84e38082e9809ae5b8b8e59ca8e6a38be5b180e9968be5a78be5898defbc8ce99b99e696b9e69c83e7b484e5ae9ae5a5bde8a9b2e5a682e4bd95e89995e79086e38082e59ca8e68c87e5b08ee6a38be68896e8ae93e5ad90e6a38be4b8adefbc8ce799bde696b9e5968ae58fabe59083e4be86e58d94e58aa9e9bb91e696b9e698afe59088e79086e79a84e380820d0a0d0ae4bd86e698afe59ca8e7b6b2e8b7afe4b88be6a38be69982e68993e587ba22e58fabe59083e2809de79a84e5ad97e79cbcefbc8ce9809ae5b8b8e8a2abe8a696e782bae5a49ae9a498e4b98be88889e38082, 'N', '2007-02-16 08:06:50'),
(540, 34, 0x4b6fefbc9a22e68993e58aab22e698afe59ca8e6a38be79ba4e4b88ae587bae78fbee9878de8a487e68f90e58f96e69f90e4b880e5ad90e79a84e68385e6b381e38082e58aabe79a84e5ad97e99da2e6848fe7bea9e698af22e784a1e7b58222e38082, 'Y', '2007-02-17 08:50:02'),
(546, 34, 0x4b7975efbc9a22e7b49a22e79a84e6848fe6809de698af22e5889de5adb8e7a88be5baa622e38082e7b49ae5be9e20333020e7b49ae588b0203120e7b49aefbc8c3120e7b49ae69c80e5bcb7e38082333020e7b49ae79a84e7a88be5baa6e698afe79eade8a7a3e8a68fe58987efbc8ce4bd86e980a3e4b880e79ba4e6a38be983bde98284e6b292e4b88be380820d0a0d0ae9809ae5b8b8e588b020313020e7b49ae5b7a6e58fb3efbc8ce7b49ae79a84e7a88be5baa6e6898de69c83e7a9a9e5ae9ae4b88be4be86efbc8ce98099e69982e58099e58fafe4bba5e888872031203c6120687265663d222f6661712e7068703f726561643d74266361743d3323456e7472793339223ee6aeb53c2f613e20e6a38be6898be980b2e8a18c203920e5ad90203c6120687265663d222f6661712e7068703f726561643d74266361743d33353723456e7472793937223ee8ae93e5ad903c2f613e20e5b08de5b180e38082, 'Y', '2007-02-17 08:50:02'),
(548, 34, 0x44616eefbc9a22e6aeb522e79a84e6848fe6809de698af22e5b088e5aeb6e7a88be5baa622e38082e6aeb5e5be9e203120e6aeb5e9968be5a78befbc8ce695b8e79baee8b68ae9ab98e8b68ae5bcb7e380823520e6aeb5e6a5ade9a498e6a38be6898be6939ae8aaaae79bb8e795b6e696bc203120e6aeb5e881b7e6a5ade6a38be5a3abe3808228e881b7e6a5ade6a38be5a3abe6b292e69c89203c6120687265663d222f6661712e7068703f726561643d74266361743d3323456e7472793338223ee7b49a3c2f613e20e79a84e58d80e5888629, 'Y', '2007-02-17 08:50:02'),
(565, 34, 0xe9be8de4b98be7a281e4bb8be7b4b9, 'Y', '2007-02-12 10:58:31'),
(566, 34, 0xe98099e8a3a1e698afe4bb80e9babce59cb0e696b9efbc9f, 'Y', '2007-02-16 07:53:05'),
(574, 34, 0x323030362d30372d32340d0a0d0ae69c80e8bf91e784a1e9878de5a4a7e4bfaee694b9e38082, 'Y', '2007-02-13 20:43:16'),
(623, 34, 0xe8afb7e5a49ae5a49ae68c87e69599, 'N', '2007-07-16 19:01:12'),
(570, 34, 0xe9be8de4b98be7a281e8a888e69982e696b9e5bc8f, 'Y', '2007-02-12 11:00:48'),
(571, 34, 0xe782bae4bd95e58187e69c9fe69982e99693e69c89e99990e588b6efbc9f, 'Y', '2007-02-12 11:00:48'),
(591, 34, 0xe68891e883bde5a29ee58aa0e887aae5b7b1e79a84e5b08de5b180e69982e99693e5978eefbc9f, 'Y', '2007-02-12 11:02:06'),
(592, 34, 0xe4b88de883bde38082e4bd86e682a8e79a84e5b08de6898be4b99fe8a8b1e9a198e6848fe5a49ae7b5a6e682a8e4b880e4ba9be69982e99693e380820d0a0d0ae8a681e6b182e69bb4e5a49ae69982e99693e4b8a6e4b88de7a6aee8b28cefbc8ce4b99fe4b88de5b8b8e8a68befbc8ce68980e4bba5e5a682e69e9ce682a8e79a84e5b08de6898be68b92e7b595e5a29ee58aa0e69982e99693efbc8ce682a8e4b99fe4b88de8a681e7949fe6b0a3e38082, 'Y', '2007-11-10 05:49:44'),
(593, 34, 0xe68891e883bde5a29ee58aa0e5b08de6898be79a84e5b08de5b180e69982e99693e5978eefbc9f, 'Y', '2007-02-12 11:02:06'),
(594, 34, 0xe682a8e99aa8e69982e983bde58fafe4bba5e5a29ee58aa0e5b08de6898be69982e99693e38082e58faae8a681e9bb9ee981b8e6a38be5b180e7b6b2e9a081e4b88be696b9e79a84e980a3e7b79ae38082e59ca8e6a38be79ba4e4b88be696b9e8a8ade5ae9ae682a8e683b3e8a681e5a29ee58aa0e79a84e69982e99693e38082e682a8e58fafe4bba5e5a29ee58aa0e4b8bbe5b08de5b180e69982e99693efbc8ce4b99fe58fafe4bba5e9878de8a8ade5bbb6e995b7e8a888e69982e79a84e69982e99693efbc88e4bd86e4b88de58c85e68bace8b2bbe99baae5bc8fe8a888e69982efbc89e38082e5a29ee58aa0e79a84e69982e99693e69c83e9a1afe7a4bae59ca8e5b08de5b180e7b6b2e9a081e79a84e6a38be5b180e8b387e69699e4b8ade38082, 'N', '2007-11-10 05:49:44'),
(568, 34, 0xe68891e98284e4b88de6b885e6a59ae68891e79a84e5889de5a78be7ad89e7b49ae280a6, 'Y', '2007-02-12 11:10:22'),
(569, 34, 0xe5a682e69e9ce682a8e5899be5adb8e59c8de6a38befbc8ce982a3e9babce682a8e4b99fe8a8b1e698af3c756c3e0d0a3c6c693e333020e7b49aefbc9ae79fa5e98193e59c8de6a38be8a68fe589870d0a3c6c693e32392d323820e7b49aefbc9ae4b88be9818ee5b9bee79ba4e59c8de6a38b0d0a3c6c693e32372d323620e7b49aefbc9ae8b48fe9818ee585b6e4bb96e5889de5adb8e88085e5b9bee79ba4e6a38b0d0a3c6c693e32352d323220e7b49aefbc9ae8b48fe9818ee585b6e4bb96e99d9ee5889de5adb8e88085e5b9bee79ba4e6a38b0d0a3c2f756c3e0d0a0d0ae58fa6e4b880e7a8aee8a995e5ae9a22e980b2e99a8ee5889de5adb8e8808522e79a84e696b9e5bc8fe698afefbc8ce88ab1e7b48420313020e58886e99098e5ae8ce68890203c4120485245463d687474703a2f2f7777772e6d6f746f7273636f70652e636f6d2f646f6a6f2f74657374732f205441524745543d5f626c616e6b3ee6ada4e6b8ace9a9973c2f413e20e4be86e6b1bae5ae9ae682a8e59ca8e9be8de4b98be7a281e79a84e5889de5a78be7ad89e7b49ae38082, 'N', '2007-02-15 18:14:49'),
(554, 34, 0xe795b6e68f9be682a8e4b88be79a84e69982e58099efbc8ce682a8e79a84e8a888e69982e990983c623ee6898de69c833c2f623ee9968be5a78be8a888e69982e380820d0a0d0ae4bba5e4b88be79a84e68385e6b381e4b88de69c83e8a888e69982efbc9a3c756c3e0d0a3c6c693ee68f9be5b08de6898be4b88be79a84e69982e580993c2f6c693e0d0a3c6c693ee795b6e682a8e89995e696bc203c6120687265663d222f6661712e7068703f726561643d74266361743d353623456e7472793631223ee79da1e79ca0e69982e996933c2f613e3c2f6c693e0d0a3c6c693ee795b6e682a8e89995e696bc203c6120687265663d222f6661712e7068703f726561643d74266361743d353623456e7472793636223ee58187e69c9f3c2f613e3c2f6c693e0d0a3c6c693ee980b1e69cabe69982efbc88e5bf85e9a088e59ca8203c6120687265663d222f6661712e7068703f726561643d74266361743d33353723456e7472793434223ee98280e8ab8be6a38be5b1803c2f613e203c2f6c693ee69982e981b8e69387e6ada4e58a9fe883bdefbc890d0a3c2f756c3e, 'N', '2007-02-16 08:51:06'),
(637, 34, 0xe4b8bbe8a681e69982e99693e698afe4bb80e9babcefbc9f, 'Y', '2007-02-12 11:27:58'),
(638, 34, 0x3c693ee4b8bbe8a681e69982e996933c2f693ee698afe782bae99b99e696b9e8a8ade5ae9ae79a84e5889de6ada5e5b08de5b180e69982e99693e38082200d0a0d0ae5a682e69e9ce4b8bbe8a681e69982e99693e794a8e5ae8ce4ba86efbc8ce6a38be5b1803c623ee5b09ae69caa3c2f623ee7b590e69d9fefbc8ce4bebfe980b2e585a5e4ba86e58092e695b8e5b08de5b180e69982e99693efbc88e8a68be4bba5e4b88be8aaaae6988eefbc89e38082, 'Y', '2007-06-06 20:03:18'),
(639, 34, 0xe9be8de4b98be7a281e69c89e593aae4ba9be786b1e5bf83e58d94e58aa9e88085efbc9f, 'Y', '2007-02-12 11:27:58'),
(596, 34, 0xe795b6e682a8e4bc91e58187e69982efbc8ce68896e7aa81e784b6e59ba0e585ace587bae5b7aee69982efbc8ce58fafe4bba5e69aabe5819ce8a888e69982e99098e380820d0a0d0ae8ab8be9bb9ee981b8203c686f6d652075736572696e666f2e7068703ee4bdbfe794a8e880853c2f686f6d653e20e79a84203c686f6d6520656469745f7661636174696f6e2e7068703ee9968be5a78be4bc91e581873c2f686f6d653e20e4be86e5ae89e68e92e58187e69c9fe69982e99693e38082e58187e69c9fe78b80e6858be5b087e9a1afe7a4bae59ca8e79baee5898de5b08de5b180e88887e4bdbfe794a8e88085e8b387e69699efbc8ce4be8be5a682efbc9a3c74743ee589a9e9a498203420e5a4a9203320e5b08fe699823c2f74743ee38082, 'Y', '2007-11-11 10:25:47'),
(567, 34, 0xe59ca8e9be8de4b98be7a281efbc88444753efbc89e58fafe4bba5e78ea9203c6120687265663d226661712e7068703f726561643d74266361743d3323456e747279313532223ee59b9ee59088e588b63c2f613e20e59c8de6a38be38082e5be88e9a19ee4bcbce9809ae4bfa1e4b88be6a38be380820d0a0d0ae6a38be6898be9809ae5b8b8e4b880e980b1e4b88be4ba94e6898be38082e59ba0e6ada4e4b88be4b880e79ba4e6a38be8a681e88ab1e695b8e980b1e69982e99693efbc9be9be8de4b98be7a281e8b2a0e8b2ace69699e79086e69c89e9979ce8a888e69982e88887e69c89e69588e8a995e7ad89e79a8422e9babbe785a922e5b7a5e4bd9ce380820d0a0d0ae59ca8e98099e8a3a13c623ee784a1e6b3953c2f623ee4b88b203c6120687265663d226661712e7068703f726561643d74266361743d3323456e747279313533223ee58db3e699823c2f613e20e5b08de5b180e38082e58db3e69982e5b08de5b180e79a84e6848fe6809de698afefbc8ce7b484e4b880e5b08fe69982e5b0b1e58fafe4bba5e4b88be5ae8ce4b880e79ba4e6a38be38082e5a682e69e9ce682a8e5969ce6ada1e4b88be58db3e69982e5b08de5b180efbc8ce682a8e58fafe4bba5e8a9a6e8a9a6e79c8b203c6120687265663d22687474703a2f2f73656e736569732e786d702e6e65742f3f476f53657276657222207461726765743d225f626c616e6b223ee585b6e4bb963c2f613e20e58db3e69982e59c8de6a38be7b6b2e7ab99efbc8ce4be8be5a682203c6120687265663d22687474703a2f2f6b67732e6b69736569646f2e636f6d2f22207461726765743d225f626c616e6b223e4b47533c2f613e20e68896203c6120687265663d22687474703a2f2f70616e64612d6967732e6a6f796a6f792e6e65742f22207461726765743d225f626c616e6b223e4947533c2f613ee380820d0a0d0a44475320e4b99fe68f90e4be9b203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f70686f72756d2f223ee8ab96e5a3873c2f613e20e4be86e8a88ee8ab96e59c8de6a38be88887e9be8de4b98be7a281e38082, 'N', '2007-03-05 10:31:39'),
(556, 34, 0xe69c89e8a8b1e5a49ae7a88be5bc8fe58fafe4bba5e8a780e79c8be88887e7b7a8e8bcafe6a38be8ad9c2053474620e6aa94e38082e4b880e5808be5a5bde981b8e69387e698af203c6120687265663d22687474703a2f2f7777772e72656e652d67726f74686d616e6e2e64652f6a61676f2f223e4a61676f3c2f613eefbc8c4a61766120e59c8de6a38be7b7a8e8bcafe599a8e380820d0a0d0ae88bb1e59c8be59c8de6a38be58d94e69c83e69c89e4b880e995b7e58897e79a84203c6120687265663d22687474703a2f2f7777772e62726974676f2e6f72672f676f70637265732f676f7063726573312e68746d6c23732d76696577223ee7a88be5bc8f3c2f613e20e58fafe8a780e79c8b2053474620e6aa94e380820d0a0d0ae795b6e682a8e69c89e4ba862053474620e8a780e79c8be7a88be5bc8fe5be8cefbc8ce58fafe4bba5e8a8ade5ae9ae7808fe8a6bde599a8e4be86e980a3e68ea5206d696d65efbc8ce8bcb8e585a5276170706c69636174696f6e2f782d676f2d73676627efbc8ce58faae8a681e9bb9ee981b8e5b0b1e58fafe4bba5e5959fe58b95e7a88be5bc8fe38082, 'N', '2007-02-25 08:29:05'),
(601, 34, '', 'Y', '2012-08-01 06:17:00'),
(624, 34, 0xe280a6e582b3e7b5b1e79a84e697a5e69cace59c8de6a38be5958fe58099e8aa9eefbc8ce6848fe6809de698afefbc9a22e8ac9de8ac9de98280e8ab8befbc8ce7a59de5a5bde9818befbc8122, 'N', '2007-05-03 15:35:20'),
(625, 34, 0xe9be8de4b98be7a281e698afe590a6e69c89e79bb4e68ea5e4b8bbe8bea6e4bbbbe4bd95e6af94e8b3bdefbc9f, 'Y', '2007-02-12 12:58:24'),
(626, 34, 0xe98284e6b292e69c89e38082, 'Y', '2007-02-12 12:58:24'),
(645, 34, 0xe6989fe4bd8d, 'Y', '2007-02-12 18:39:31'),
(646, 34, 0x486f736869efbc9a22e6989fe4bd8d22e69c89e585a9e5808be6848fe7bea9efbc8ce9809ae5b8b8e698afe68c87e6a38be79ba4e4b88ae79a84203920e5808be8ae93e5ad90e9bb9ee38082e69bb4e6988ee7a2bae4b880e9bb9ee698afe68c87e8a792e890bde4b88ae79a8420342d3420e9bb9ee38082, 'Y', '2007-02-15 20:52:20'),
(655, 34, 0xe5a4a9e58583, 'N', '2007-02-12 18:39:31'),
(656, 34, 0x54656e67656eefbc9ae6a38be79ba4e79a84e4b8ade5bf83e9bb9ee38082e59ca820313920e8b7afe6a38be79ba4e698af2031302d313020e9bb9ee38082e697a5e69687e79a84e6848fe6809de698af22e5a4a9e5a082e79a84e8b5b7e6ba9022e38082, 'N', '2007-02-15 20:52:20'),
(657, 34, 0xe6a38be79ba4, 'Y', '2007-02-12 18:39:31'),
(665, 34, 0xe5ae9ae79fb3, 'N', '2007-02-12 18:39:31'),
(667, 34, 0xe4bd88e5b180, 'N', '2007-02-12 18:39:31'),
(669, 34, 0xe585b1e6b4bb, 'Y', '2007-02-12 18:39:31'),
(686, 34, 0xe6898be68b94, 'N', '2007-02-12 18:39:31'),
(690, 34, 0xe58588e6898b, 'N', '2007-02-12 18:39:31'),
(692, 34, 0xe5be8ce6898b, 'N', '2007-02-12 18:39:31'),
(696, 34, 0xe596aee5ae98, 'Y', '2007-02-21 07:44:00'),
(698, 34, 0xe6b0a3, 'Y', '2007-02-12 18:39:31'),
(700, 34, 0xe689b3, 'N', '2007-02-12 18:39:31'),
(987, 34, 0xe68891e6898de5899be58aa0e585a5e9be8de4b98be7a281e38082e68891e8a9b2e8bcb8e585a5e4bb80e9babce5889de5a78be7ad89e7b49aefbc9f, 'Y', '2007-02-12 12:58:24'),
(988, 34, 0xe795b6e682a8e8a8bbe5868ae696b0e5b8b3e8999fe69982efbc8c44475320e69c83e8a9a2e5958fe682a8e698afe590a6e5b7b2e69c89e585b6e4bb96e59c8de6a38be7ad89e7b49aefbc88e4b99fe8a8b1e4be86e887aae696bce585b6e4bb96e59c8de6a38be7b6b2e7ab99efbc8ce4bfb1e6a882e983a8efbc8ce68896e59c8de6a38be58d94e69c83efbc89e38082e58faae8a681e8bcb8e585a5e8a9b2e7ad89e7b49aefbc8c44475320e5b0b1e69c83e8bd89e68890e981a9e795b6e79a842044475320e5889de5a78be7ad89e7b49ae380820d0a0d0ae8ab8be6b3a8e6848fefbc9ae8a8bbe5868ae696b0e5b8b3e8999fe69982efbc8ce5a682e69e9ce682a8e4b88de79fa5e98193e887aae5b7b1e6a38be58a9befbc8ce8ab8b3c623ee4b88de8a6813c2f623ee8bcb8e585a5e4bbbbe4bd95e7ad89e7b49aefbc8ce8ab8be58588e58f83e88083e8aaaae6988ee6b8ace8a9a6e587bae682a8e79a84e6a38be58a9be38082e4b880e697a6e8bcb8e585a5e5be8ce5b0b1e784a1e6b395e694b9e8ae8aefbc9be682a8e5bf85e9a088e99da0e4b88be6a38be6898de883bde8aabfe695b4e7ad89e7b49ae38082, 'N', '2007-02-16 08:45:53'),
(989, 34, 0xe5a682e69e9ce68891e4b880e9968be5a78be8bcb8e585a5e98cafe8aaa4e79a84e5889de5a78be7ad89e7b49aefbc8ce69c89e4bb80e9babce9979ce4bf82efbc9f, 'Y', '2007-02-12 12:58:24');
INSERT INTO `Translations` (`Original_ID`, `Language_ID`, `Text`, `Translated`, `Updated`) VALUES
(990, 34, 0xe585b6e5afa6e6b292e4bb80e9babce9979ce4bf82e380823c693eefbc88e4bd86e69c89e4ba9be4babae8a6bae5be97e5be88e69c89e9979ce4bf82efbc9be69c89e4ba9be4babae4b88de59ca8e6848fe38082efbc893c2f693ee9be8de4b98be7a281e5be88e5bfabe5b0b1e69c83e6a0b9e6939ae682a8e5ae8ce68890e79a84e8a995e7ad89e5b08de5b180e58aa0e4bba5e8aabfe695b4e38082e7b693e9818ee5a4a7e7b484e4ba94e6aca1e5b08de5b180efbc8ce682a8e5b0b1e58fafe4bba5e5be97e588b0e79bb8e795b6e58fafe99da0e79a842044475320e7ad89e7b49ae380820d0a0d0ae5a682e69e9ce682a83c693ee69585e6848f3c2f693ee8a8ade5ae9ae98cafe8aaa4e79a84e5889de5a78be7ad89e7b49aefbc8ce682a8e69c83e683b9e683b1e585b6e4bb96e5b08de6898befbc8ce5b08ee887b43c693ee4bb96e58091e79a843c2f693ee7ad89e7b49ae4b88de585ace5b9b3e59cb0e4b88be9998de38082e588a5e5bf98e4ba86efbc8ce682a8e4bba5e5be8ce58fafe883bde98284e69c83e88887e4bb96e58091e5b08de5b180e280a60d0a0d0ae9be8de4b98be7a281e58aaae58a9be68f90e4be9be69c89e69588e79a84e7ad89e7b49aefbc8ce4bd86e698afe4b99fe99c80e8a681e682a8e79a84e59088e4bd9cefbc9ae8ab8be4b88de8a681e59ca8e696b0e5b8b3e8999fe8a8ade5ae9ae88887e682a8e6a38be58a9be5b7aee5a4aae5a49ae79a84e7ad89e7b49ae38082e8ac9de8ac9defbc81, 'N', '2007-02-17 10:55:09'),
(991, 34, 0xe795b6e68891e79a84e8a888e69982e99098e69aabe5819ce69982efbc8ce5b08de6898be79a84e99098e698afe590a6e69c83e9968be5a78be8a888e69982efbc9f, 'Y', '2007-02-12 13:47:16'),
(992, 34, 0xe5a682e69e9ce698afe68f9be682a8e4b88befbc9ae4b88de69c83e380820d0a0d0ae5a682e69e9ce698afe68f9be5b08de6898be4b88befbc9ae69c83e79a84efbc8ce5898de68f90e698afe98099e4b88de698afe79da1e79ca0e69982e99693efbc8ce4b99fe4b88de698afe980b1e69cabefbc88e59ca8e58f96e6b688e980b1e69cabe8a888e69982e79a84e5b08de5b180efbc89efbc8ce5b08de6898be4b99fe6b292e69c89e9968be5a78be4bc91e58187e38082, 'Y', '2007-06-21 11:28:29'),
(993, 34, 0xe68891e883bde4b88de883bde59ca8e8a888e69982e99098e69aabe5819ce69982e98081e587bae890bde5ad90efbc9f, 'Y', '2007-02-12 13:47:16'),
(994, 34, 0xe682a83c693ee99aa8e699823c2f693ee983bde58fafe4bba5e98081e587bae890bde5ad90e29480e5b0b1e7ae97e698afe59ca8e79da1e79ca0e69982e99693efbc8ce4bc91e58187efbc8ce68896e980b1e69cabe38082, 'Y', '2007-06-21 11:28:29'),
(995, 34, 0xe9be8de4b98be7a281e79a84e980b1e69cabe8a888e69982e99098e698afe4bb80e9babcefbc9f, 'Y', '2007-02-12 13:47:16'),
(996, 34, 0xe795b6e682a8e8a8ade5ae9ae696b0e6a38be5b180e69982efbc8ce682a8e58fafe4bba5e981b8e69387e8a888e69982e990983c623ee4b88de8a6813c2f623ee59ca8e980b1e585ade88887e980b1e697a5e5afa6e8a888e69982e38082, 'N', '2007-02-12 13:47:16'),
(999, 34, 0xe8b48fe58d8ae79baee68896e4b880e799bee79baeefbc8ce4b8ade79ba4e8aa8de8bcb8e68896e8b685e69982e69597efbc8ce59ca8e7ad89e7b49ae694b9e8ae8ae4b88ae69c89e4bb80e9babce5b7aee588a5efbc9f, 'Y', '2007-06-07 17:27:38'),
(1000, 34, 0xe5b08de9be8de4b98be7a281e8808ce8a880efbc8ce8b48fe4b880e79ba4e6a38be5b0b1e698afe8b48fe4b880e79ba4e6a38befbc8ce8bcb8e4b880e79ba4e6a38be5b0b1e698afe8bcb8e4b880e79ba4e6a38be38082e7ad89e7b49ae694b9e8ae8ae983bde4b880e6a8a3e38082, 'Y', '2007-02-16 08:04:37'),
(1001, 34, 0xe9be8de4b98be7a281e5a682e4bd95e8a888e69982efbc9f, 'Y', '2007-02-12 13:47:16'),
(1002, 34, '', 'Y', '2007-02-15 18:19:11'),
(1447, 34, 0xe980b1e69cabe8a888e69982, 'Y', '2012-01-05 18:02:27'),
(1561, 33, 0xe794a8e688b7e58886e7b1bb, 'Y', '2012-01-08 18:36:37'),
(1004, 34, 0xe59ca8e8ab96e5a387e69c89e4bd95e8a18ce782bae8a68fe7af84efbc9f, 'N', '2007-02-12 13:47:16'),
(575, 34, 0xe9be8de4b98be7a281e782bae4bd95e8a681e79fa5e98193e68891e79a84e99bbbe5ad90e983b5e4bbb6e59cb0e59d80efbc9f, 'Y', '2007-02-12 13:53:22'),
(576, 34, 0xe782bae4ba86e582b3e98081e696b0e79a84e5af86e7a2bcefbc88e5a682e69e9ce69c89e6ada4e99c80e8a681efbc89e38082e582b3e98081e696b0e5af86e7a2bce588b03c693ee584b2e5ad98e59ca8e794a8e688b6e5808be4babae8b387e696993c2f693ee79a84e99bbbe5ad90e983b5e4bbb6e59cb0e59d80efbc8ce6af94e8bc83e5aeb9e69893e8aa8de8ad89e794a8e688b6e380820d0a0d0ae9be8de4b98be7a281e5b08ae9878de99ab1e7a781efbc9a44475320e4b88de69c83e4b8bbe58b95e5af84e98081e4b88de99c80e8a681e79a84e4bfa1e4bbb6e38082e784a1e4babae883bde79c8be588b0e585b6e4bb96e4babae79a84e99bbbe5ad90e983b5e4bbb6e59cb0e59d80efbc8ce99bbbe5ad90e983b5e4bbb6e59cb0e59d80e4b99fe4b88de69c83e8b3a3e7b5a6e4bbbbe4bd95e4babae380820d0a0d0ae9be8de4b98be7a281e5aeb9e8a8b1e794a8e688b63c693ee4b88de584b2e5ad983c2f693ee99bbbe5ad90e983b5e4bbb6e59cb0e59d80e38082e59ba0e6ada4e8ab8b3c693ee5b08fe5bf833c2f693ee4b88de8a681e5bf98e8a898e5af86e7a2bcefbc81, 'Y', '2007-02-16 19:41:22'),
(627, 34, 0xe4bdbfe794a8e88085e79a8422e6b4bbe8ba8de7a88be5baa622e698afe4bb80e9babcefbc9f, 'Y', '2007-02-17 14:36:20'),
(628, 34, 0xe9a1afe7a4bae4bdbfe794a8e88085e69c80e8bf91e4b88be4ba86e5a49ae5b091e6898be380820d0a0d0a3220e7b6a0e6989fefbc9ae8a8b1e5a49ae6898befbc88e6af8fe69c88e8b685e9818e20373020e6898befbc890d0a3120e6a998e6989fefbc9ae4ba9be8a8b1e6898befbc88e6af8fe69c8820352d373020e6898befbc890d0a3020e6989fefbc9ae5be88e5b091e6898befbc88e6af8fe69c88e5b091e696bc203520e6898befbc89, 'Y', '2007-02-15 18:14:49'),
(629, 34, 0xe4bdbfe794a8e88085e79a8422e58b9de78e8722e698afe4bb80e9babcefbc9f, 'Y', '2007-02-17 14:36:20'),
(630, 34, 0xe98099e698afe6a38be6898be79a84e58b9de8b2a0e6af94efbc8ce883bde5b08de79baee5898de79a84e7ad89e7b49ae68f90e4be9be69bb4e5a49ae8a88ae681afe380820d0a0d0ae795b6e6a38be6898be5ae8ce68890e4ba86e79bb8e795b6e695b8e9878fe79a84e8a995e7ad89e5b08de5b180e5be8cefbc8ce7b484203530efbc8520e79a84e58b9de78e87e9a1afe7a4bae4bb96e79a84e7ad89e7b49ae5b7b2e7b693e7a9a9e5ae9ae38082e5a4a7e696bc203735efbc8520e9a1afe7a4bae79baee5898de7ad89e7b49ae58fafe883bde5a4aae4bd8eefbc8ce4bd8ee696bc203235efbc8520e9a1afe7a4bae79baee5898de7ad89e7b49ae58fafe883bde5a4aae9ab98e38082, 'Y', '2007-02-15 18:28:34'),
(342, 8, 0xb5a5afc5b9cf, 'Y', '2007-02-17 11:17:47'),
(1156, 8, 0xb971b66cb371aabeac4fa4b0bbf2a148, 'Y', '2007-05-04 21:35:53'),
(661, 34, 0xe8ae93e5ad90e698afe4bb80e9babcefbc9f, 'Y', '2007-02-17 14:36:20'),
(1280, 5, 0x54757263, 'Y', '2007-02-12 18:45:43'),
(1019, 34, 0xe59b9ee59088e588b6, 'Y', '2007-02-15 15:24:52'),
(1021, 34, 0xe58db3e69982e588b6, 'Y', '2007-02-15 15:24:52'),
(704, 34, 0xe4b889e980a3e6989f, 'N', '2007-02-12 18:39:31'),
(705, 34, 0x53616e72656e736569efbc9ae5b8b8e8a68be79a84e9968be5b180efbc8ce6a38be6898be4bd94e6939ae4b880e9828ae79a84e4b889e5808be6989fe4bd8de38082, 'N', '2007-02-15 20:52:20'),
(706, 34, 0xe5be81e5ad90, 'N', '2007-02-12 18:39:31'),
(707, 34, 0x53686963686fefbc9ae697a5e69cace59c8de6a38be8a193e8aa9e203c6120687265663d222f70686f72756d2f726561642e7068703f663d3326693d31393626743d313936223ee5be81e5ad903c2f613ee38082, 'N', '2007-02-15 20:52:20'),
(708, 34, 0xe6a38be79ba4e5a4a7e5b08fe698afe590a6e69c83e5bdb1e99fbfe8a995e7ad89efbc9f, 'Y', '2007-02-12 14:13:35'),
(709, 34, 0x313920e8b7afe6a38be5b180e5b08de8a995e7ad89e5bdb1e99fbfe69c80e5a4a7e380820d0ae4ba8ce79ba420313320e8b7afe5b08de5b180e7ad89e696bce4b880e79ba420313920e8b7afe5b08de5b180e380820d0ae4ba8ce79ba4203920e8b7afe5b08de5b180e7ad89e696bce4b880e79ba420313320e8b7afe5b08de5b180e38082, 'N', '2007-02-16 20:38:28'),
(702, 34, 0xe99680e59083, 'N', '2007-02-14 19:27:29'),
(703, 34, 0x47657461efbc9ae59fbae69cace4b88ae698afe5b081e4bd8fe5b08de6898be6a38be5ad90e79a84e4b880e6898be38082, 'N', '2007-02-15 20:52:20'),
(558, 34, 0xe69c89e5b9bee7a8aee696b9e5bc8fe58fafe4bba5e9968be5a78be696b0e6a38be5b180efbc9a3c554c3e0d0a0d0a3c4c493ee58aa0e585a5203c4120485245463d2277616974696e675f726f6f6d2e706870223ee5be85e5b180e5aea43c2f413e20e79a84e5b08de5b180e380820d0a0d0ae5a682e69e9ce682a8e683b3e689bee696b0e5b08de6898be5b0b1e794a8e98099e5808be696b9e6b395e38082e9a696e58588efbc8ce9bb9ee981b8203c6120687265663d222f77616974696e675f726f6f6d2e706870223ee5be85e5b180e5aea43c2f613ee38082e689bee588b0e683b3e58aa0e585a5e79a84e6a38be5b180efbc8ce784b6e5be8ce9bb9ee981b8e5b7a6e9828ae79a84e8978de889b222e8b387e6969922e38082e59ca8e98099e4b880e9a081e79a84e4b88be696b9e68789e8a9b2e69c89e6a38be5b180e79a84e8a9b3e7b4b0e8b387e69699e38082e5a682e69e9ce682a8e683b3e58aa0e585a5efbc8ce5b0b1e9bb9ee981b822e58aa0e585a522e38082e5b0b1e698afe98099e6a8a3e7b0a1e596aee380820d0a0d0a3c4c493ee59ca8203c4120485245463d2277616974696e675f726f6f6d2e706870223ee5be85e5b180e5aea43c2f413e20e5888ae799bbe682a8e887aae5b7b1e8a8ade5ae9ae79a84e6a38be5b180e380820d0a0d0ae5a682e69e9c203c6120687265663d2277616974696e675f726f6f6d2e706870223ee5be85e5b180e5aea43c2f613e20e6b292e69c89e682a8e683b3e58aa0e585a5e79a84e6a38be5b180efbc8ce982a3e9babce682a8e58fafe4bba5e5888ae799bbe887aae5b7b1e79a84e6a38be5b180e38082e9a696e58588efbc8ce5a1abe5afabe5be85e5b180e5aea4e4b88be696b9e79a84e8a1a8e6a0bce38082e9bb9ee981b822e5a29ee58aa0e6a38be5b18022e38082e7ad89e5be85e4b880e4b88befbc8ce4b99fe8a8b1e5b9bee5a4a9e5be8ce682a8e5b0b1e69c89e6a38be58fafe4b88be4ba86e380820d0a0d0a3c4c493ee98280e8ab8be682a8e79a84e69c8be58f8be380823c42523e0d0ae5a682e69e9ce682a8e79fa5e98193e69f90e4bd8de5b08de6898be79a84e5b8b3e8999fefbc8ce682a8e58fafe4bba5e98280e8ab8be4bb96e4be86e4b88be6a38befbc8ce980b2e585a5e981b8e596aee4b8ade79a84203c6120687265663d222f6d6573736167652e7068703f6d6f64653d496e76697465223ee98280e8ab8b3c2f613ee38082e5a1abe4b88ae683b3e8a681e79a84e6a38be5b180e8a8ade5ae9aefbc8ce784b6e5be8ce98081e587bae98280e8ab8be38082e682a8e79a84e5b08de6898be58fafe4bba5e4bfaee694b9e6a38be5b180e8a8ade5ae9ae380820d0ae59ca8e6af8fe4bd8de6a38be6898be9a081e79a84e4b88be696b9e4b99fe69c8922e98280e8ab8be98099e4bd8de6a38be6898b22e79a84e980a3e68ea5e38082e4bdbfe794a8e98099e5808be980a3e68ea5e4b99fe883bde98280e8ab8be69c8be58f8befbc8ce8808ce4b894e69bb4e5bfabe9809fe380823c2f554c3e, 'N', '2007-10-01 06:34:50'),
(577, 34, 0xe697a5e69cace5bc8fe58092e695b828e8ae80e7a79229e8a888e69982e698afe4bb80e9babcefbc9f, 'Y', '2007-06-06 20:03:18'),
(578, 34, 0xe795b6e4b8bbe8a681e69982e99693e794a8e58589e5be8cefbc8ce6a38be6898be79a843c623ee6af8fe4b880e6898b3c2f623ee983bde69c89e59bbae5ae9ae79a84e69982e99990e38082e999a4e6ada4e4b98be5a496efbc8ce98284e69c89e7b484e5ae9ae5a5bde79a84e6aca1e695b8efbc9a200d0a3c554c3e0d0a3c4c493ee795b6e6a38be6898be59ca8e69982e99990e585a7e890bde5ad90efbc8ce8a888e69982e99098e5b0b1e59b9ee588b0e69982e99990e79a84e9968be5a78befbc8ce6aca1e695b8e4b99fe4b88de69c83e6b89be5b091e380823c2f4c493e0d0a0d0a3c4c493ee795b6e6a38be6898be59ca8e69982e99990e585a7e6b292e69c89e890bde5ad90efbc8ce6aca1e695b8e5b0b1e69c83e6b89be5b091e4b880e6aca1efbc8ce8a888e69982e7ab8be588bbe5be9ee9a0ade9968be5a78be380823c2f4c493e0d0a3c2f554c3e0d0ae795b6e6a38be6898be6b292e69c89e589a9e4b88be6aca1e695b8e88887e69982e99990efbc8ce5b0b1e69982e79ba1e69597e38082, 'N', '2007-02-15 18:14:49'),
(579, 34, 0xe58aa0e68bbfe5a4a7e5bc8fe58092e695b828e8ae80e7a79229e8a888e69982e698afe4bb80e9babcefbc9f, 'Y', '2007-06-06 20:03:18'),
(662, 34, 0xe5a682e69e9ce5b08de5b180e99b99e696b9e6a38be58a9be4b88de59d87efbc8ce99b99e696b9e68789e8a9b2e5908ce6848fe8ae93e8bc83e5bcb1e79a84e4b880e696b9e69c89e9a18de5a496e79a8422e8ae93e5ad9022e38082e8ae93e5ad90e6b0b8e981a0e698afe7b5a6e9bb91e696b9efbc8ce6ada3e7a2bae981b8e69387e8ae93e5ad90e695b8e79baeefbc8ce58fafe4bba5e5bd8ce8a39ce6a38be58a9be4b88ae79a84e5b7aee8b79de38082e8ae93e5ad90e5b08de5b180e69c83e69bb4e69c89e8b6a3efbc8ce99b99e696b9e8b48fe6a38be79a84e6a99fe69c83e59d87e7ad89e380820d0a0d0ae59ca83139e8b7afe6a38be79ba4e4b88aefbc8ce8ae93e5ad90e695b8e79baee79bb8e5908ce696bce7ad89e7b49ae79a84e5b7aee8b79de38082e5b08de696bce585b6e4bb96e5a4a7e5b08fe79a84e6a38be79ba4efbc8ce794b1e9be8de4b98be7a281e6b1bae5ae9ae981a9e795b6e79a84e8ae93e5ad90e695b8e79baee380820d0a0d0ae582b3e7b5b1e4b88aefbc8ce8ae93e5ad90e698afe68c89e785a7e59bbae5ae9ae5bda2e5bc8fe694bee59ca8203c4120485245463d226661712e7068703f726561643d74266361743d3323456e7472793839223ee6989fe4bd8d3c2f413e20e4b88ae38082e59ca8e9be8de4b98be7a281efbc8ce58fafe4bba5e887aae794b1e981b8e69387e8ae93e5ad90e4bd8de7bdaee380820d0a0d0ae4bd86e698afe8ab8be6b3a8e6848fefbc8ce8a8b1e5a49ae6a38be6898be7bf92e685a3e8ae93e5ad90e696bce6989fe4bd8de4b88ae38082e68980e4bba5e5a682e69e9ce682a8e8a681e8ae93e5ad90efbc8ce69c80e5a5bde58588e88887e5b08de6898be5908ce6848fe698afe6989fe4bd8de8ae93e5ad90e98284e698afe887aae794b1e8ae93e5ad90e38082, 'Y', '2007-02-15 08:48:34'),
(663, 34, 0xe582b3e7b5b1e8ae93e5ad90e88887e981a9e795b6e8ae93e5ad90e69c89e4bd95e4b88de5908cefbc9f, 'Y', '2007-02-12 19:29:46'),
(664, 34, 0x3c693ee582b3e7b5b1e8ae93e5ad903c2f693ee4be9de785a7e7ad89e7b49ae5b7aee8b79defbc88e88887e6a38be79ba4e5a4a7e5b08fefbc89e4be86e6b1bae5ae9ae8ae93e5ad90e695b8e38082e88ba5e69c89e8ae93e5ad90e58987203c6120687265663d226661712e7068703f726561643d74266361743d3323456e74727939223ee8b2bce79bae3c2f613e20302e35e38082e88ba5e784a1e8ae93e5ad90e58987e8b2bce79bae20362e35e380820d0a0d0a3c693ee981a9e795b6e8ae93e5ad903c2f693ee58987e68ea1e58f96e69bb4e7b4b0e79a84e8b2bce79baee5b7aee588a5282e2e2e2c20312e352c20322e302c20322e352c202e2e2e29e4be86e5b9b3e8a1a1e6a38be58a9be5b7aee8b79defbc8ce4bdbfe99b99e696b9e8b48fe6a38be6a99fe69c83e59d87e7ad89e38082, 'Y', '2007-02-23 14:00:55'),
(273, 8, 0xb357ab68, 'Y', '2007-02-12 19:40:08'),
(352, 8, 0xb4d1c3d0, 'Y', '2007-02-25 08:36:32'),
(1083, 8, 0xbdd0a844c5fda46ca9f3ac50a6ec, 'Y', '2007-05-29 12:20:58'),
(1084, 8, 0xac50a6ec, 'Y', '2007-06-02 08:58:37'),
(1120, 8, 0xa6b8, 'Y', '2007-02-13 10:29:35'),
(1234, 33, 0xe8af9de9a298, 'Y', '2007-02-16 15:30:21'),
(560, 34, 0xe59ca8203c6120687265663d222f7374617475732e706870223e20e79baee5898de5b08de5b1803c2f613e20e69c89e68f9be682a8e4b88be79a84e6a38be5b180e38082e9bb9ee981b8e6a38be5b180e8999fe7a2bce5b0b1e69c83e68993e9968be6a38be5b180e380820d0a0d0ae68993e9968be6a38be5b180e5be8cefbc8ce9bb9ee981b8e7a9bae79a84e4baa4e58f89e9bb9ee5b0b1e58fafe4bba5e890bde5ad90efbc88e4b88be587bae4b880e6898befbc89e38082e5a682e69e9ce98099e4b880e6898be68f90e8b5b0e4bbbbe4bd95e5b08de6898be6a38be5ad90efbc8ce7b3bbe7b5b1e5b0b1e69c83e887aae58b95e89995e79086e38082e8999be6898be68896e8aa8de8bcb8e4b99fe58fafe9bb9ee981b8e6a38be79ba4e4b88be79a84e980a3e68ea5e38082200d0a0d0ae795b6e5819ae587bae696b0e79a84e890bde5ad902fe8999be6898b2fe8aa8de8bcb8e4b98be5be8cefbc8ce68c89e4b88b22e98081e587ba22e4be86e7a2bae5ae9ae682a8e79a84e981b8e69387e38082e5a682e69e9ce682a8e694b9e8ae8ae4b8bbe6848fefbc8ce5b0b1e68c89e4b88b22e59b9ee6898b22e68c89e98895e38082, 'Y', '2007-06-07 17:27:38'),
(719, 34, 0x257320252e316620e79baee58b9d, 'Y', '2007-02-17 16:21:53'),
(715, 34, 0xe7b6b2e9a081e69982e99693, 'Y', '2007-02-13 11:05:21'),
(1059, 34, 0xe9a1afe7a4ba, 'Y', '2007-02-13 20:30:03'),
(564, 34, 0xe58faae69c89e68f9b3c693ee682a83c2f693ee4b88be69982e6898de883bde7b590e69d9fe5b08de5b180e380820d0a3c554c3e0d0a3c4c493ee682a8e88887e5b08de6898be980a3e7ba8ce8999be6898be38082e98099e698afe6ada3e5b8b8e79a84e7b590e69d9fe5b08de5b180e696b9e5bc8fe38082e784b6e5be8ce4bda0e58091e5b087e9bb9ee981b8e6adbbe5ad90e38082e784b6e5be8ce9be8de4b98be7a281e69c83e695b8e59cb0efbc8ce6b1bae5ae9ae58b9de8b2a0e380820d0a0d0a3c4c493ee4bdbfe794a822e8aa8de8bcb822e68c89e98895e38082e8aa8de8bcb8e5be8ce7ad89e7b49ae69c83e58f97e588b0e5bdb1e99fbfe380820d0a0d0a3c4c493ee8ae93e6a38be5b180e69982e99693e794a8e5ae8ce380823c693e2820e4bd86e698afe8ab8be682a8e58588e88083e685aee585b6e4bb96e981b8e69387efbc8129203c2f693ee5a682e69e9ce682a8e79a84e69982e99693e794a8e5ae8cefbc8ce682a8e5b0b1e7ae97e8bcb8e4ba86efbc8ce682a8e79a84e7ad89e7b49ae4b99fe69c83e58f97e588b0e5bdb1e99fbfe380820d0a3c2f554c3e, 'N', '2007-06-07 17:27:38'),
(572, 34, 0xe5a682e69e9ce58187e69c9fe6b292e69c89e99990e588b6efbc8ce682a8efbc88e68896e5b08de6898befbc89e4b99fe8a8b1e69c83e9878de8a487e981b8e69387e4b880e5a4a9e79a84e58187e69c9fe4be86e981bfe5858de794a8e58589e5b08de5b180e69982e99693e38082e5a682e6ada4e5b087e4bdbfe58e9fe4be86e8a8ade5ae9ae79a84e69982e99990e5a4b1e58ebbe6848fe7bea9e380820d0a0d0ae59ba0e6ada4e9be8de4b98be7a281e5b08de58187e69c9fe69c89e4bba5e4b88be99990e588b6efbc9a0d0a3c756c3e3c6c693ee5b7b2e7b693e9968be5a78be79a84e58187e69c9f3c623ee784a1e6b3953c2f623ee8a2abe58f96e6b688e380823c2f6c693e0d0a3c6c693ee5a682e69e9ce5b7b2e9968be5a78be5baa6e58187efbc8ce682a8e58fafe4bba5e6b89be5b091e58187e69c9fe588b0e69c80e5b091e585a9e5a4a9e380823c2f6c693e0d0a3c2f756c3e, 'Y', '2007-11-10 05:49:44'),
(573, 34, 0xe5958fe7ad94e69c80e8bf91e69c89e4bd95e4bfaee694b9efbc9f, 'Y', '2007-02-15 14:48:28'),
(640, 34, 0xe9be8de4b98be7a281efbc88444753efbc89e698afe99d9ee59586e6a5ade680a7e88887e9968be694bee7a2bce79a84e59c98e99a8ae8a888e795abefbc8ce794b1e5969ce6ada1e78ea9e59b9ee59088e588b6e59c8de6a38be79a84e4babae782bae5908ce5a5bde68980e7a094e799bce3808244475320e794b120266c743b6120687265663d2671756f743b2f75736572696e666f2e7068703f7569643d322671756f743b207461726765743d2671756f743b5f626c616e6b2671756f743b2667743b4572696b266c743b2f612667743b20e589b5e7ab8befbc8ce4b8a6e794b120266c743b6120687265663d2671756f743b2f75736572696e666f2e7068703f7569643d322671756f743b207461726765743d2671756f743b5f626c616e6b2671756f743b2667743b4572696b266c743b2f612667743b20e8888720266c743b6120687265663d2671756f743b2f75736572696e666f2e7068703f7569643d313035362671756f743b207461726765743d2671756f743b5f626c616e6b2671756f743b2667743b526f64266c743b2f612667743b20266c743b6120687265663d2671756f743b687474703a2f2f736f75726365666f7267652e6e65742f70726f6a6563742f6d656d6265726c6973742e7068703f67726f75705f69643d32393933332671756f743b207461726765743d2671756f743b5f626c616e6b2671756f743b2667743be8b2a0e8b2ace7b6ade8adb7266c743b2f612667743be38082e5958fe7ad94e698afe6a0b9e6939a266c743b422667743be682a8e79a84266c743b2f422667743be6848fe8a68befbc8ce794b120266c743b6120687265663d2671756f743b2f75736572696e666f2e7068703f7569643d39332671756f743b207461726765743d2671756f743b5f626c616e6b2671756f743b2667743b426a6f726e20496e676d6172266c743b2f612667743b20e8b2a0e8b2ace7b6ade8adb7e3808244475320e8a2abe7bfbbe8adafe68890e695b8e59c8be8aa9ee8a880e38082e7bfbbe8adafe4babae593a1e5908de596aee59ca820266c743b6120687265663d2671756f743b2f70656f706c652e7068702671756f743b207461726765743d2671756f743b5f626c616e6b2671756f743b2667743be98099e8a3a1266c743b2f612667743b20e4bba5e58f8a20266c743b4120485245463d2671756f743b2f70686f72756d2f6c6973742e7068703f663d372671756f743b2667743be7bfbbe8adafe8ab96e5a387266c743b2f412667743be38082, 'Y', '2008-01-27 06:49:28'),
(1020, 34, 0x5475726e2d6261736564efbc9ae59b9ee59088e588b6e79a84e9818ae688b2e698afe99d9ee5908ce69982e980b2e8a18ce79a84e38082e99b99e696b9e4b88de99c80e8a681e5908ce69982e59ca8e5a0b4efbc8ce58fafe4bba5e69c89e69982e99693e69982e6898de78ea9e38082e4be8be5a682e59b9ee59088e588b6e59c8de6a38be58fafe9808fe9818ee4bfa1e4bbb6efbc8ce99bbbe5ad90e983b5e4bbb6efbc8ce68896e59ca8e9be8de4b98be7a281e98099e8a3a1e78ea9e38082e4b99fe8ab8be58f83e88083203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f6661712e7068703f726561643d74266361743d3323456e747279313533223ee58db3e69982e588b63c2f613ee38082, 'Y', '2007-02-18 07:51:11'),
(1022, 34, 0x5265616c2d74696d65efbc9ae58db3e69982e588b6e9818ae688b2e698afe5908ce69982e980b2e8a18ce79a84e38082e99b99e696b9e5bf85e9a088e5908ce69982e59ca8e5a0b4e6898de883bde78ea9e38082e695b4e5a0b4e9818ae688b2e4b880e6aca1e5b0b1e7b590e69d9fe38082e4be8be5a682e58db3e69982e59c8de6a38be698afe59ca8e79c9fe79a84e6a38be79ba4e4b88ae980b2e8a18cefbc8ce68896e9808fe9818ee58db3e69982e59c8de6a38be7b6b2e7ab99e4be86e78ea9e38082e4b99fe8ab8be58f83e88083203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f6661712e7068703f726561643d74266361743d3323456e747279313532223ee59b9ee59088e588b63c2f613ee38082, 'Y', '2007-02-18 07:51:11'),
(1025, 34, 0x4576656e2067616d65efbc9ae6b292e69c89203c6120687265663d226661712e7068703f726561643d74266361743d33353723456e7472793937223ee8ae93e5ad903c2f613e20e79a84e6a38be5b180e38082e794b1e98280e8ab8be79a84e5b08de6898be8a8ade5ae9a203c6120687265663d226661712e7068703f726561643d74266361743d3323456e74727939223ee8b2bce79bae3c2f613ee38082, 'Y', '2007-02-15 20:52:20'),
(687, 34, 0x54656e756b69efbc9ae4b88be4b880e6898b3c623ee4b88d3c2f623ee59b9ee68789e5b08de6898be79a84e4b88ae4b880e6898be38082, 'N', '2007-02-16 10:26:04'),
(688, 34, 0xe99b99e889b2e5b08de5b180e698afe4bb80e9babcefbc9f, 'Y', '2007-02-14 19:27:29'),
(689, 34, 0x3c693ee99b99e889b2e5b08de5b1803c2f693ee698afe88887e5908ce4b880e4bd8de5b08de6898be980b2e8a18c3c693ee4ba8ce5a0b43c2f693ee696b0e6a38be5b180e38082e682a8e59ca8e4b880e5b180e68c81e799bde5ad90efbc8ce58fa6e4b880e5b180e68c81e9bb91e5ad90e38082e981b8e69387e79a84e8b2bce79baee88887e8ae93e5ad90e5b087e981a9e794a8e696bce585a9e5b180e38082e5be85e5b180e5aea4e4b8ade79a84e6a38be5b180e8b387e69699e58fafe79c8be588b0e8ae93e5ad90e695b8e79baee38082, 'N', '2007-09-16 21:42:55'),
(697, 34, 0x44616d65efbc9ae6a38be79ba4e4b88ae79a84e4b8ade7ab8be4baa4e58f89e9bb9ee38082e98099e4ba9b22e585ace79bae22e4b88de5b1ace696bce99b99e696b9e6a38be6898be38082, 'Y', '2007-02-15 20:52:20'),
(699, 34, 0x4c696265727479efbc9ae88887e4b880e9a186e5ad90e68896e4b880e4b8b2e5ad90e980a3e68ea5e79a84e7a9bae9bb9ee38082, 'Y', '2007-02-17 08:11:12'),
(701, 34, 0x48616e65efbc9ae890bde5ad90e6969ce5a393e9818ee5b08de6898be79a84e4b880e9a186e5ad90e68896e4b880e4b8b2e5ad90e38082, 'N', '2007-02-17 08:11:12'),
(658, 34, 0x476f62616eefbc9ae79c9fe6ada3e68896e99bbbe885a6e8999be693ace79a84e59c8de6a38be6a38be79ba4e38082, 'Y', '2007-02-15 20:52:20'),
(408, 33, 0xe78c9ce5ad90e58886e58588, 'Y', '2007-02-15 05:17:50'),
(1603, 36, 0x52616a6f6e67c3b3, 'Y', '2015-09-19 19:19:07'),
(400, 33, 0xe8b49f, 'Y', '2007-02-15 05:50:56'),
(6178, 40, 0x486572f36920282529, 'Y', '2014-07-30 06:24:31'),
(402, 33, 0xe6b4bbe8b783e7a88be5baa6, 'Y', '2007-02-17 11:44:34'),
(580, 34, 0xe795b6e4b8bbe8a681e69982e99693e794a8e79ba1e5be8cefbc8ce6a38be6898be890bde5ad90e4bebfe69c893c623ee69982e999903c2f623ee380820d0a0d0ae4be8be5a682efbc9a20313520e697a5e4b88b20313020e5ad90efbc9a0d0ae5a682e69e9ce6a38be6898be59ca8e69982e99990e585a7e4b88be587bae7acac20313020e6898befbc8ce8a888e69982e99098e4bebfe9878de696b0e9968be5a78be8a888e69982efbc88e68ea5e4b88be4be86e79a8420313020e5ad90e8a681e59ca820313520e697a5e585a7e4b88be5ae8cefbc89e380820d0a0d0ae5a682e69e9ce6a38be6898be69caae883bde59ca8e69982e99990e585a7e4b88be5ae8cefbc8ce5b0b1e8bcb8e68e89e6a38be5b180e38082, 'N', '2007-02-15 18:14:49'),
(581, 34, 0xe8b2bbe99baae5bc8fe8a888e69982e698afe4bb80e9babcefbc9f, 'Y', '2007-06-06 20:03:18'),
(582, 34, 0xe6a38be6898be6af8fe6aca1e890bde5ad90e5be8cefbc8ce5b0b1e69c83e5a29ee58aa022e9a18de5a49622e69982e9969328e69c80e5a49ae4b88de8b685e9818ee4b8bbe8a681e69982e9969329e380820d0a0d0ae795b6e6a38be6898be794a8e58589e69982e99693e69982efbc8ce5b0b1e8bcb8e68e89e6a38be5b180e38082, 'N', '2007-02-15 06:10:26'),
(583, 34, 0xe79da1e79ca0e69982e99693e698afe590a6e69c83e5bdb1e99fbfe8b2bbe99baae5bc8fe8a888e69982efbc9f, 'Y', '2007-02-15 06:10:26'),
(584, 34, 0xe88889e4be8be8aaaae6988eefbc9a0d0ae5a682e69e9ce6af8fe980b1e683b3e4b88b203320e6898befbc8ce8808ce682a8e4b88de5b88ce69c9be59ca8e980b1e585ade68896e980b1e697a5e794a8e58589e69982e99693e380820d0ae5b0b1e698af282037202d20322029e697a5207820282032342068202d2039206820e79da1e79ca0e69982e99693292f203320e6898b203d20e6af8fe6898be5a29ee58aa020323520e5b08fe69982e79a84e8b2bbe99baae8a888e69982efbc8c20e980b1e69cabe4b88de8a888e69982e38082, 'Y', '2007-02-16 08:51:06'),
(585, 34, 0xe79da1e79ca0e69982e99693e698afe4bb80e9babcefbc9f, 'N', '2007-02-19 19:25:31'),
(586, 34, 0xe59ca8e8a8ade5ae9ae782ba22e79da1e79ca0e69982e9969322e79a84e69982e6aeb5efbc8ce8a888e69982e99098e69c83e69aabe5819cefbc8ce589a9e9a498e79a84e69982e99693e4b88de69c83e6b89be5b091e38082, 'N', '2007-02-15 06:10:26'),
(587, 34, 0xe782bae4bd95e68891e79a84e8a888e69982e99098e59ca820313020e58886e99098e585a7e6b89be5b091203920e5b08fe69982efbc9f, 'Y', '2007-02-15 08:29:55'),
(588, 34, 0xe5a682e69e9ce682a8e79c8be588b0e8a888e69982e99098e98099e6a8a3e5a4a7e5b985e6b89be5b091e69982e99693efbc8ce682a8e68789e8a9b2e8a681e79da1e4b880e4b88be4ba86203b2d290d0a0d0ae795b6e8a888e69982e99098e9a1afe7a4bae682a8e98284e69c89203320e5a4a9e69982e99693efbc8ce6848fe6809de698afefbc9a0d0a3c6e6f77723ee682a8e69c893c2f6e6f77723e203c6e6f77723e332078202832342d39293c2f6e6f77723e203d203c6e6f77723e343520e5b08fe699823c2f6e6f77723e20e79a84e99d9ee79da1e79ca0e69982e99693e380820d0a0d0ae795b6e8a888e69982e99098e9a1afe7a4bae682a8e98284e69c89203220e697a520313420e5b08fe69982efbc8ce6848fe6809de698afefbc9a0d0a3c6e6f77723ee682a8e69c893c2f6e6f77723e203c6e6f77723e322078202832342d3929202b2031343c2f6e6f77723e203d203c6e6f77723e343420e5b08fe699823c2f6e6f77723e20e79a84e99d9ee79da1e79ca0e69982e99693e38082, 'Y', '2007-02-16 07:53:05'),
(589, 34, 0xe782bae4bd95e68891e784a1e6b395e694b9e8ae8ae68891e5808be4babae8b387e69699e4b8ade79a84e79da1e79ca0e69982e99693efbc9f, 'Y', '2007-02-15 06:10:26'),
(590, 34, 0xe59ba0e782bae6af8fe5a4a9e694b9e8ae8ae4b889e6aca1e79da1e79ca0e69982e99693e69c83e5819ce6ada2e8a888e69982e99098e38082e999a4e99d9ee682a8e69c80e8bf91e6b292e69c89e4bfaee694b9efbc8ce682a8e6898de883bde694b9e8ae8ae79da1e79ca0e69982e99693e38082, 'Y', '2007-02-16 07:54:56'),
(599, 34, 0xe68891e79a84e79da1e79ca0e69982e99693e698afe68c89e785a7e593aae4b880e5808be69982e58d80efbc9f, 'Y', '2007-02-15 06:10:26'),
(600, 34, 0xe9be8de4b98be7a281e69c83e4bdbfe794a8e682a8e79a84e795b6e59cb0e69982e58d80efbc88e4bba5e58f8ae697a5e58589e7af80e7b484e69982e99693efbc89efbc8ce794b1e682a8e887aae5b7b1e59ca8e5808be4babae8b387e69699e4b8ade8a8ade5ae9ae38082, 'Y', '2007-02-15 06:10:26'),
(602, 34, 0x53474620e698af20536d6172742047616d6520466f726d617420e79a84e7b8aee5afabefbc8ce98099e698afe794a8e4be86e584b2e5ad98e59c8de6a38befbc88e68896e585b6e4bb96e9818ae688b2efbc89e6a38be8ad9ce79a84e6aa94e6a188e38082e7b4b0e7af80e8ab8be79c8b5347462046465b345d20e6a899e6ba96e79a84203c6120687265663d22687474703a2f2f7777772e7265642d6265616e2e636f6d2f7367662f22207461726765743d6e65773ee6ada3e5bc8fe6a0bce5bc8f3c2f613ee38082, 'Y', '2007-02-25 08:29:05'),
(603, 34, 0xe782bae4bd95e9be8de4b98be7a281e4b88de9a1afe7a4bae5b08de6898be79a84e99bbbe5ad90e983b5e4bbb6e59cb0e59d80efbc9f, 'Y', '2007-02-15 07:51:55'),
(604, 34, 0xe59ba0e782bae9be8de4b98be7a281e69c83e4bf9de99a9ce682a8e5b08de6898befbc88e88887e682a8efbc89e79a84e99ab1e7a781e380820d0a0d0ae5a682e69e9ce682a8e69bb4e683b3e5a49ae79eade8a7a3e682a8e79a84e5b08de6898befbc8ce682a8e5bf85e9a088e79bb4e68ea5e8a9a2e5958fe682a8e79a84e5b08de6898be38082, 'Y', '2007-02-15 07:51:55'),
(605, 34, 0xe5a682e4bd95e59ca8e6a38be8ad9c2053474620e6aa94e584b2e5ad98e69687e5ad97efbc9f, 'Y', '2007-02-25 08:46:51'),
(606, 34, 0xe59ca8e682a8e79a84e79599e8a880e5898de5be8ce58aa0e4b88ae68c87e4bba4efbc9a20266c743b636f6d6d656e742667743b20e4bba5e58f8a20266c743b2f636f6d6d656e742667743b200d0a0d0ae4be8be5a682efbc9ae59ca8e682a8e980b2e8a18ce4b8ade79a84e6a38be5b180efbc9a200d0a0d0a312e20e59ca8e682a8e79a8422e98081e587ba22e79599e8a880e6ac84e4b8ade8bcb8e585a53a200d0a0d0ae98099e58faae698afe6b8ace8a9a6efbc8ce8ab8be588a5e79086e69c83e380820d0a266c743b636f6d6d656e742667743b0d0ae6b8ace8a9a6e79599e8a880efbc8ce68789e8a9b2e69c83e587bae78fbee59ca8534746e380820d0a266c743b2f636f6d6d656e742667743b0d0ae6b8ace8a9a6e79599e8a880efbc8ce68789e8a9b2e4b88de69c83e587bae78fbee59ca8534746e380820d0a0d0a322e20e98081e587bae682a8e79a84e890bde5ad90e38082200d0a33612e20e4b88be8bc89e6a38be8ad9c2053474620e6aa94e380820d0a33622e20e4b88be8bc89e6a38be8ad9c2053474620e6aa94e590abe79599e8a880e380820d0a342e20e68993e9968be6a38be8ad9c2053474620e6aa942028e4bdbfe794a8e59c8de6a38be8bb9fe9ab94e68896e69687e5ad97e7b7a8e8bcafe8bb9fe9ab9429e380820d0a0d0a352e20e98099e4b880e6898be79a84e79599e8a880e698afefbc9a200d0a266c743be682a8e79a84e5b8b3e8999f2667743b3a20e6b8ace8a9a6e79599e8a880efbc8ce68789e8a9b2e69c83e587bae78fbee59ca8534746e380820d0a0d0a362e20e5a682e69e9ce682a8e5b88ce69c9be79599e8a880e59ca8e6a38be5b180e7b590e69d9fe5be8ce6898de58fafe8a2abe996b1e8ae80efbc8ce5b0b1e8a681e5afabe6889020266c743b68696464656e2667743b20266c743b2f68696464656e2667743b20e8808ce4b88de698af20266c743b636f6d6d656e742667743b20266c743b2f636f6d6d656e742667743b20e99ab1e8978fe79a84e79599e8a8803c753ee58faae883bd3c2f753e20e9808fe9818ee6a38be8ad9c2053474620e6aa94e6a188e4be86e996b1e8ae80e380820d0a0d0a266c743b636f6d6d656e742667743b20266c743b2f636f6d6d656e742667743b20e8888720266c743b68696464656e2667743b20266c743b2f68696464656e2667743b20e58fafe4bba5e7b0a1e5afabe6889020266c743b632667743b20266c743b2f632667743b20e8888720266c743b682667743b20266c743b2f682667743be380820d0a0d0ae6ada3e5b8b8e79599e8a880e69687e5ad972028e6b292e69c89e58aa0e4b88a20266c743b636f6d6d656e742667743b20e8888720266c743b2f636f6d6d656e742667743b20e79a84e69687e5ad972920e58faae883bde794b1e5b08de5b180e79a84e99b99e696b9e996b1e8ae80e38082e585b6e4bb96e4babae784a1e6b395e996b1e8ae80e38082e98099e698afe782bae4ba86e4bf9de99a9ce682a8e79a84e99ab1e7a781e38082e8ab8be6b3a8e6848fefbc8ce585b6e4bb96e8a780e79c8be6a38be5b180e79a84e4babae4b99fe58fafe4bba5e79c8be588b0e58aa0e4b88a266c743b636f6d6d656e742667743b20e8888720266c743b2f636f6d6d656e742667743b20e79a84e69687e5ad97e38082, 'N', '2007-11-14 20:03:02'),
(607, 34, 0xe68891e883bde68890e782bae9be8de4b98be7a281e79a84e7a094e799bce4babae593a1e5978eefbc9f, 'Y', '2007-02-19 21:35:39'),
(608, 34, 0xe4b99fe8a8b1e58fafe4bba5e38082e682a8e5bf85e9a088e7869fe68289e59c8de6a38be8a68fe58987efbc8c50485020e88887204d7953514ce380820d0a0d0ae8ab8be58f83e996b1203c4120485245463d22687474703a2f2f736f75726365666f7267652e6e65742f70726f6a656374732f647261676f6e676f73657276657222205441524745543d225f626c616e6b223e536f75726365466f726765e9be8de4b98be7a281e7a094e799bce7b6b2e9a0813c2f413e20e4b8a6e4b894e8ab8be8a8bbe5868a203c4120485245463d22687474703a2f2f6c697374732e736f75726365666f7267652e6e65742f6c697374732f6c697374696e666f2f647261676f6e676f7365727665722d646576656c22205441524745543d225f626c616e6b223ee9be8de4b98be7a281e7a094e799bce99bbbe5ad90e983b5e4bbb6e58897e8a1a83c2f413ee38082, 'N', '2007-02-16 11:26:34'),
(621, 34, 0xe585a8e983a8e5958fe7ad94e9a1afe7a4bae696bce4b880e9a081, 'Y', '2007-02-16 06:29:25'),
(622, 34, 0xe9be8de4b98be7a281e59c8de6a38be6af94e8b3bd, 'Y', '2007-02-15 07:51:55'),
(631, 34, 0xe68891e8a681e5a682e4bd95e588aae999a4e68891e59ca8e5be85e5b180e5aea4e79a84e6af94e8b3bde98280e8ab8befbc9f, 'Y', '2007-02-15 07:51:55'),
(632, 34, 0xe9bb9ee981b8203c693ee682a8e79a843c2f693e20e6af94e8b3bde79a84e8b387e69699e68c89e98895e38082e59ca8e8a9b2e7b6b2e9a081e79a84e4b88be696b9e69c89e588aae999a4e6a38be5b180e79a84e68c89e98895e38082e5a682e69e9ce696b0e6a38be5b180e59ca8e695b8e980b1e5be8ce4bb8de784b6e784a1e4babae58aa0e585a5efbc8ce5b0b1e69c83e887aae58b95e8a2abe588aae999a4e38082, 'Y', '2007-02-15 07:51:55'),
(633, 34, 0xe78c9ce5ad90e58886e58588e698afe4bb80e9babcefbc9f, 'Y', '2007-02-17 14:36:20'),
(634, 34, 0x3c6120687265663d226661712e7068703f726561643d74266361743d3323456e7472793231223ee78c9ce5ad903c2f613e20e698afe68c87e682a8e79a84e7a281e889b2e698afe794b1e99aa8e6a99fe981b8e69387e79a84e380820d0a3c6120687265663d226661712e7068703f726561643d74266361743d3323456e747279313534223ee58886e585883c2f613e20e698afe68c87e682a8e8a8ade5ae9ae79a84e696b0e6a38be5b180e6b292e69c89203c6120687265663d226661712e7068703f726561643d74266361743d33353723456e7472793937223ee8ae93e5ad903c2f613e20e38082, 'Y', '2007-02-16 08:55:58'),
(635, 34, 0xe782bae4bd95e69c89e4ba9be4bdbfe794a8e88085e6b292e69c89e58897e59ca8e6a38be6898be58897e8a1a8e4b88aefbc9f, 'Y', '2007-10-01 06:34:50'),
(636, 34, 0xe9be8de4b98be7a281e8a8ade5ae9ae4b88de69c83e58897e585a5e5819ce6ada2e6b4bbe58b95e79a84e6a38be6898be3808220266c743b6120687265663d2671756f743b687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f75736572732e7068702671756f743b2667743be5b08de5b180e4b8ade79a84e6a38be6898b266c743b2f612667743b20e4b88be696b9e69c8920266c743b6120687265663d2671756f743b687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f75736572732e7068703f73686f77616c6c3d312671756f743b2667743be9a1afe7a4bae68980e69c89e6a38be6898b266c743b2f612667743b20e58fafe4bba5e69fa5e8a9a2e38082, 'Y', '2008-01-27 06:49:28'),
(643, 34, 0xe68891e58fafe4bba5e59ca8e9be8de4b98be7a281e4b88ae4bdbfe794a82048544d4c20e5978eefbc9f, 'N', '2007-02-15 19:19:31'),
(644, 34, 0xe58fafe4bba5efbc8ce682a8e58fafe4bba5e59ca8e5b08fe582b3e38081e8a88ae681afe88887e8ab96e5a387e4b8ade4bdbfe794a8e4b880e4ba9b2048544d4ce38082e5a682e69e9ce682a8e58aa0e4b88a2048544d4c20e68c87e4bba4efbc8ce8ab8be981b5e5ae882048544d4c20e79a84e8a68fe58987e88887e5afabe6b395e38082e9809ae5b8b8e983bde8a681e58aa0e4b88ae981a9e795b6e79a84e7b590e5b0bee68c87e4bba4e38082e58fafe794a8e79a842048544d4c20e68c87e4bba4e782baefbc9a0d0a266c743b756c2667743b0d0a266c743b6c692667743b6c697374730d0a266c743b6c692667743b266c743b622667743b626f6c64266c743b2f622667743b0d0a266c743b6c692667743b266c743b692667743b6974616c6963266c743b2f692667743b0d0a266c743b6c692667743b266c743b752667743b756e6465726c696e65266c743b2f752667743b0d0a266c743b6c692667743b266c743b666f6e7420636f6c6f723d7265642667743b666f6e74266c743b2f666f6e742667743b0d0a266c743b6c692667743b627261636b6574733a2026616d703b6c743b2026616d703b67743b0d0a266c743b6c692667743b266c743b6120687265663d2671756f743b687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742671756f743b2667743b6c696e6b73266c743b2f612667743b0d0a266c743b6c692667743b73696d706c65206c696e6b733a20266c743b6120687265663d2671756f743b687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742671756f743b2667743b687474703a2f2f7777772e647261676f6e676f7365727665722e6e6574266c743b2f612667743b0d0a266c743b2f756c2667743b0d0ae99c80e8a681e58aa0e4b88ae4bba5e4b88be7b7a8e7a2bce8ae93e4bba5e4b88ae79a84e68c87e4bba4e68890e782baefbc9a200d0a26616d703b6c743b756c26616d703b67743b0d0a26616d703b6c743b6c6926616d703b67743b6c697374730d0a26616d703b6c743b6c6926616d703b67743b26616d703b6c743b6226616d703b67743b626f6c6426616d703b6c743b2f6226616d703b67743b0d0a26616d703b6c743b6c6926616d703b67743b26616d703b6c743b6926616d703b67743b6974616c696326616d703b6c743b2f6926616d703b67743b0d0a26616d703b6c743b6c6926616d703b67743b26616d703b6c743b7526616d703b67743b756e6465726c696e6526616d703b6c743b2f7526616d703b67743b0d0a26616d703b6c743b6c6926616d703b67743b26616d703b6c743b666f6e7420636f6c6f723d72656426616d703b67743b666f6e7426616d703b6c743b2f666f6e7426616d703b67743b0d0a26616d703b6c743b6c6926616d703b67743b627261636b6574733a2026616d703b616d703b6c743b2026616d703b616d703b67743b0d0a26616d703b6c743b6c6926616d703b67743b26616d703b6c743b6120687265663d26616d703b71756f743b687474703a2f2f7777772e647261676f6e676f7365727665722e6e657426616d703b71756f743b26616d703b67743b6c696e6b7326616d703b6c743b2f6126616d703b67743b0d0a26616d703b6c743b6c6926616d703b67743b73696d706c65206c696e6b733a2026616d703b6c743b687474703a2f2f7777772e647261676f6e676f7365727665722e6e657426616d703b67743b0d0a26616d703b6c743b2f756c26616d703b67743b, 'N', '2008-01-27 06:49:28'),
(666, 34, 0x4a6f73656b69efbc9ae9809ae5b8b8e698afe59ca8e8a792e890bde980b2e8a18cefbc8ce5b180e983a8e4b88ae7b693e9818ee9a997e8ad89e79a84e697a2e5ae9ae4b88be6b395e38082e9809ae5b8b8e59ca8e5b180e983a8e4b88ae5b08de99b99e696b9e983bde69c89e588a9efbc8ce4bd86e698afe4b88de4b880e5ae9ae585a8e79ba4e69c89e588a9e38082e5ae9ae79fb3e698afe688b0e8a193e88083e9878fefbc8ce8808ce4b88de698afe7ad96e795a5e88083e9878fe38082, 'N', '2007-02-16 09:10:39'),
(668, 34, 0x467573656b69efbc9ae6a38be5b180e9968be5a78be99a8ee6aeb5e79a84e4b88be6b395e38082e9968be79ba4e69982e7b693e9818ee9a997e8ad89e79a84e697a2e5ae9ae4b88be6b395e38082e4bd88e5b180e99c80e8a681e585a8e79ba4e79a84e7ad96e795a5e88083e9878fe38082, 'N', '2007-05-29 17:15:06'),
(670, 34, 0x53656b69efbc9ae6848fe6809de698af22e99b99e696b9e983bde6b4bb22e38082e585a9e7bea4e6a38be5ad90e585b1e4baabe6b0a3e79a84e4b880e7a8aee5b180e983a8e583b5e5b180efbc8ce99b99e696b9e983bde784a1e6b395e68f90e68e89e5b08de696b9e79a84e5ad90e38082, 'Y', '2007-02-15 20:52:20'),
(671, 34, 0xe68891e883bde794a8e99bbbe5ad90e983b5e4bbb6e582b3e98081e890bde5ad90e5978eefbc9f, 'Y', '2007-02-15 08:25:00'),
(672, 34, 0xe4b88de883bdefbc8ce794a8e99bbbe5ad90e983b5e4bbb6e582b3e98081e890bde5ad90e698afe4b88de58fafe883bde79a84e380820d0ae682a8e5bf85e9a088e799bbe585a5203c6120687265663d222f223ee9be8de4b98be7a281e7b6b2e7ab993c2f613e20e6898de883bde98081e587bae890bde5ad90e38082, 'Y', '2007-02-15 13:26:08'),
(673, 34, 0xe68f9be68891e4b88be69982efbc8ce9be8de4b98be7a281e69c83e4b88de69c83e9809ae79fa5e68891efbc9f, 'Y', '2007-02-15 08:25:00'),
(674, 34, 0xe69c83efbc8ce58faae8a681e682a8e69c89e59ca8e5808be4babae8b387e69699e4b8ade68f90e4be9be4ba86e99bbbe5ad90e983b5e4bbb6e59cb0e59d80efbc88e4bf9de5af8629efbc8ce784b6e5be8ce5959fe794a822e99bbbe983b5e9809ae79fa522e38082, 'Y', '2007-02-16 20:05:02'),
(675, 34, 0xe68891e883bde4b88de883bde4b88ae8bc892053474620e6aa94e4be86e9968be5a78be696b0e6a38be5b180efbc9f, 'Y', '2007-02-15 19:19:31'),
(676, 34, 0xe4b88de883bde38082, 'N', '2007-02-15 08:25:00'),
(677, 34, 0xe9be8de4b98be7a281e79a84e7ad89e7b49ae88887e8a995e7ad89, 'Y', '2007-02-15 08:25:00'),
(678, 34, 0xe4bdbfe794a8e88085e79a84e7ad89e7b49ae6ac84e698afe4bb80e9babcefbc9f, 'Y', '2007-02-17 14:36:20'),
(679, 34, 0xe7ad89e7b49ae79a84e5898de4b880e58d8ae698afe79baee5898d203c6120687265663d222f6661712e7068703f726561643d74266361743d3323456e7472793339223ee6aeb53c2f613e20e68896203c6120687265663d222f6661712e7068703f726561643d74266361743d3323456e7472793338223ee7b49a3c2f613e20e79a84e7ad89e7b49ae38082e5be8ce4b880e58d8ae79a84e799bee58886e6af94efbc88e68bace8999fe585a7efbc89e9a1afe7a4bae5bcb7e5bcb1e380820d0a0d0ae4be8be5a682efbc8c22203120e7b49a20282b343025292220e698afe5be88e5bcb7e79a84203120e7b49aefbc88e5b9bee4b98ee7ad89e696bce8bc83e5bcb1e79a84203120e6aeb5efbc89e38082, 'N', '2007-02-17 08:04:33'),
(680, 34, 0xe7ad89e7b49ae4b8ade79a84202b20e68896202d20e698afe4bb80e9babcefbc9f, 'Y', '2007-02-17 14:36:20'),
(681, 34, 0xe9be8de4b98be7a281e4bdbfe794a8e79a843c686f6d65206661712e7068703f726561643d74266361743d31303523456e7472793132333ee7ad89e7b49ae7b3bbe7b5b13c2f686f6d653ee698af31e7b49ae79bb8e795b6e696bc313030e9bb9ee79a84e5b7aee588a5e38082e4be8be5a682efbc9a0d0a0d0a3620e7b49a202820302529203d203135303020e9bb9e0d0a3620e7b49a20282d34382529203d203134353220e9bb9e0d0a3720e7b49a20282b33302529203d203134333020e9bb9e0d0a3720e7b49a202820302529203d203134303020e9bb9e, 'N', '2007-11-10 05:51:49'),
(684, 34, 0xe6a38be58a9be59c96e79a84e8978de889b2e58d80e59f9fe698afe4bb80e9babcefbc9f, 'Y', '2007-03-14 20:00:37'),
(685, 34, 0xe98099e698afe68c87e4bdbfe794a8e88085e79a84e7ad89e7b49ae88887e9be8de4b98be7a281e79a84e7ad89e7b49ae6a38be58a9be5ae9ae7bea9e69c89e5a49ae5b091e5b7aee8b79de380820d0a0d0ae795b6e696b0e4bdbfe794a8e88085e8bcb8e585a5e5889de5a78be7ad89e7b49ae69982efbc8ce9be8de4b98be7a281e4b8a6e4b88de79fa5e98193e98099e5808be5889de5a78be580bce698afe590a6e7aca6e59088e9be8de4b98be7a281e79a84e5ae9ae7bea9e38082e79baee5898de4b896e4b88ae98284e6b292e69c89e694bee8abb8e59b9be6b5b7e79a86e6ba96e79a84e59c8de6a38be7ad89e7b49ae5ae9ae7bea9e38082e9be8de4b98be7a281e79ba1e58a9be68f90e4be9be58fafe99da0e88887e58fafe6af94e8bc83e79a84e59c8de6a38be7ad89e7b49ae38082e6a38be58a9be59c96e79a84e8978de889b2e58d80e59f9fe58faae4bba3e8a1a8e696b0e4bdbfe794a8e88085e79a842044475320e7ad89e7b49ae88887e9be8de4b98be7a281e697a2e5ae9ae79a84e59c8de6a38be7ad89e7b49ae69c89e5a49ae5b091e5b7aee8b79de38082, 'N', '2007-03-14 20:00:37'),
(1012, 34, 0xe68891e883bde68890e782bae9be8de4b98be7a281e79a84e7bfbbe8adafe4babae593a1e5978eefbc9f, 'Y', '2007-02-15 08:41:14'),
(1013, 34, 0xe58fafe4bba5e38082e8ab8be59ca8203c4120485245463d222f70686f72756d2f6c6973742e7068703f663d3722205441524745543d5f626c616e6b3ee7bfbbe8adafe8ab96e5a3873c2f413e20e68f90e587bae794b3e8ab8be38082e7aea1e79086e88085e9809ae5b8b8e983bde69c83e8a8b1e58fafe38082, 'Y', '2007-02-15 08:41:14'),
(1016, 34, 0xe9be8de4b98be7a281e4bdbfe794a8e4bb80e9babce59c8de6a38be8a68fe58987efbc9f, 'Y', '2007-02-15 08:41:14'),
(1017, 34, 0xe9be8de4b98be7a281e5a4a7e887b4e4bdbfe794a8e697a5e69cace59c8de6a38be8a68fe5898720e2948020e4b88de9818ee59ca8e8ae93e5ad90e4bd8de7bdaeefbc8ce6a38be79ba4e5a4a7e5b08fe88887e69982e99990e79a84e8a8ade5ae9ae4b88aefbc8ce9be8de4b98be7a281e9a090e8a8ade981b8e9a085e4b8a6e4b88de7aca6e59088e6ada3e5bc8fe697a5e69cace59c8de6a38be8a68fe58987efbc8ce4bd86e698afe4bcbce4b98ee6af94e8bc83e981a9e59088e59b9ee59088e588b6e59c8de6a38be280a60d0a0d0ae7b0a1e596aee8aaaaefbc8ce9be8de4b98be7a2813c756c3e3c6c693ee6a0b9e6939ae6a38be6898be5b08de6a38be79ba4e79a84e9bb9ee7a9bae4be86e8a888e58886efbc8c0d0a3c6c693ee6b292e69c89e8b685e7b49ae58aabe8a68fe58987efbc8c0d0a3c6c693ee7a681e6ada2e887aae68f90efbc8c0d0a3c6c693ee5aeb9e8a8b1e887aae794b1e4bd8de7bdaee8ae93e5ad90e380823c2f756c3e, 'N', '2007-02-19 19:31:02'),
(691, 34, 0x53656e7465efbc9ae694bbe6938ae6898befbc8ce5a881e88485efbc8ce5bf85e9a088e7ab8be58db3e59b9ee68789e38082e589b5e980a0e58588e6a99fefbc8ce69c89e6ac8ae981b8e69387e4b88be4b880e6898be79a84e4bd8de7bdaee38082e58588e6898be79a84e79bb8e58f8de698af203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f6661712e7068703f726561643d74266361743d3323456e747279313133223ee5be8ce6898b3c2f613ee380820d0ae58588e6898be79a84e4b880e696b9e5a682e69e9ce8a6bae5be97e981a9e795b6efbc8ce4b99fe58fafe4bba5e981b8e69387203c6120687265663d222f6661712e7068703f726561643d74266361743d3323456e747279313130223ee6898be68b943c2f613ee38082, 'N', '2007-02-15 20:52:20'),
(693, 34, 0x476f7465efbc9ae998b2e7a6a6e6898befbc8ce59b9ee68789e5a881e88485e38082e694bee6a384e58588e6a99fefbc8ce8ae93e5b08de6898be981b8e69387e4b88be4b880e6898be79a84e4bd8de7bdaee38082e5be8ce6898be79a84e79bb8e58f8de698af203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f6661712e7068703f726561643d74266361743d3323456e747279313132223ee58588e6898b3c2f613ee38082, 'N', '2007-02-15 20:52:20'),
(694, 34, 0xe4bb80e9babce698afe8a780e79c8be4b8ade6a38be5b180efbc9f, 'Y', '2007-02-15 10:19:31'),
(1038, 34, 0xe68891e58fafe4bba5e99da0e8bc94e58aa9e4bdbfe887aae5b7b1e6a38be58a9be69bb4e5bcb7e5978eefbc9f, 'Y', '2007-02-15 10:23:29'),
(1039, 34, 0xe795b6e784b6e58fafe4bba5e38082e8ae80e69bb8efbc8ce8a9b0e6a38befbc8ce88887e99bbbe885a6e5b08de5a595efbc8ce88887e585b6e4bb96e6a38be6898be8a88ee8ab96e38082e8ab96e5a387e58fafe4bba5e79c8be588b0e98099e8a3a1e8a8b1e5a49ae6a38be6898be29480e8aaaae4b88de5ae9ae585a8e983a8e29480e69c83e981b8e69387e4bba5e4b88ae79a84e4bd9ce6b395e38082, 'N', '2007-02-15 10:23:29'),
(1042, 34, 0xe68891e8a681e5a682e4bd95e799bbe587baefbc9f, 'Y', '2007-02-15 10:23:29'),
(1043, 34, 0xe58faae8a681e9bb9ee981b8e4bbbbe4bd95e7b6b2e9a081e58fb3e4b88be8a792e79a8422e799bbe587ba22e38082e5a682e69e9c20333020e697a5e6b292e799bbe585a52044475320efbc8ce7b3bbe7b5b120636f6f6b696520e5b0b1e69c83e9818ee69c9fefbc8ce5b087e682a8e799bbe587bae38082, 'Y', '2007-02-16 08:04:37'),
(1036, 34, 0xe784a1e6b4bbe58b95e79a84e6a38be6898be5808be4babae8b387e69699e4bd95e69982e69c83e8a2abe7a7bbe999a4efbc9f, 'N', '2007-10-01 06:34:50'),
(1037, 34, 0xe6b0b8e981a0e4b88de69c83e38082e4bb96e58091e58faae69c83e8a2abe6a899e7a4bae784a1e6b4bbe58b95efbc8ce5be9ee5b08de5b180e4b8ade79a84e6a38be6898be58897e8a1a8e4b88ae6b688e5a4b1e38082, 'N', '2007-10-01 06:34:50'),
(1044, 34, 0xe6ada4e6898be98195e8a68fe38082, 'Y', '2007-02-15 10:26:09'),
(1045, 34, 0xe69982e99990e9818ee79fadefbc8ce8ab8be981b8e69387e887b3e5b091e4b880e5b08fe69982e38082, 'Y', '2007-02-15 10:26:09'),
(1046, 34, 0xe68ab1e6ad89efbc8ce682a8e5b09ae69caae5959fe794a8e7808fe8a6bde599a8e79a84636f6f6b6965e38082, 'Y', '2007-02-16 16:13:10'),
(1047, 34, 0xe68ab1e6ad89efbc8ce6ada4e6898be5b7b2e7b693e890bde5ad90e38082, 'Y', '2007-02-15 10:26:09'),
(1008, 34, 0xe9be8de4b98be7a281e79a84e58e9fe5a78be7a2bce7a094e799bce59ca8e4bd95e89995e8a88ee8ab96efbc9f, 'Y', '2007-02-15 10:30:04'),
(1009, 34, 0xe59ca8203c6120485245463d22687474703a2f2f6c697374732e736f75726365666f7267652e6e65742f6c697374732f6c697374696e666f2f647261676f6e676f7365727665722d646576656c22205441524745543d225f626c616e6b223ee9be8de4b98be7a281e7a094e799bce99bbbe5ad90e983b5e4bbb6e58897e8a1a83c2f613ee38082e5be88e6ada1e8bf8ee682a8e8a8bbe5868ae58aa0e585a5e7a094e799bce38082, 'N', '2007-02-15 10:30:04'),
(1010, 34, 0xe593aae4ba9be5b08de5b180e69c83e5bdb1e99fbfe68891e79a84e7ad89e7b49aefbc9f, 'Y', '2007-02-15 10:30:04'),
(1011, 34, 0xe9be8de4b98be7a281e79a84e8a995e7ad89e7b3bbe7b5b1e58faae8a888e7ae97e4bba5e4b88be6a38be5b180efbc9a0d0a0d0a2a20e99b99e696b9e6a38be6898be983bde5908ce6848fe6a38be5b180e69c89e8a995e7ad89efbc8ce4bba5e58f8a0d0a2a20e799bde696b9e5b7b2e7b693e4b88be4ba86e887b3e5b091203520e6898be38082, 'N', '2007-02-15 10:30:04'),
(695, 34, 0xe6ada4e58a9fe883bde58fafe4bba5e782ba3c623ee585b6e4bb963c2f623ee6a38be6898be79a84e5b08de5b180e58aa0e4b88ae69bb8e7b1a4e380820d0a0d0ae8a681e68a8ae5b08de5b180e58aa0e585a5e8a780e79c8be4b8ade6a38be5b180efbc8ce58588e689bee588b0e980b2e8a18ce4b8ade79a84e6a38be5b180efbc8ce9bb9ee981b822e58aa0e585a5e8a780e79c8b22e38082e8a681e79c8be682a8e79a84e8a780e79c8be4b8ade6a38be5b180efbc8ce9bb9ee981b8203c6120687265663d222f7374617475732e706870223ee79baee5898de5b08de5b1803c2f613e20e784b6e5be8ce9bb9ee981b822e8a780e79c8be4b8ade6a38be5b18022e38082200d0a0d0ae8a681e7a7bbe999a4e8a780e79c8be4b8ade6a38be5b180efbc8ce689bee588b0e683b3e7a7bbe999a4e79a84e6a38be5b180efbc8ce9bb9ee981b822e5be9ee8a780e79c8be7a7bbe999a422e380820d0a0d0ae682a8e58faae883bde8a780e79c8be980b2e8a18ce4b8ade79a84e6a38be5b180efbc8ce795b6e5b08de5b180e7b590e69d9fefbc8ce5b0b1e887aae58b95e5be9ee8a780e79c8be58897e8a1a8e7a7bbe999a4e38082e795b6e8a780e79c8be4b8ade79a84e6a38be5b180e7b590e69d9fe69982efbc8ce9be8de4b98be7a281e69c83e799bce8a88ae681afe7b5a6e682a8efbc8ce5918ae79fa5e682a8e5b08de5b180e79a84e7b590e69e9ce38082, 'N', '2007-02-15 20:37:54'),
(710, 34, 0xe68891e58fafe4bba5e59ca8e593aae8a3a1e5adb8e59c8de6a38befbc9f, 'Y', '2007-02-15 10:46:12'),
(711, 34, 0xe8ab8be58f83e8a780203c6120687265663d22687474703a2f2f706c6179676f2e746f2f696e7465726163746976652f696e6465782e68746d6c22207461726765743d6e65773ee4ba92e58b95e5bc8fe5adb8e59c8de6a38b3c2f613e20e4bba5e58f8ae88bb1e59c8be59c8de6a38be58d94e69c83e79a84203c6120687265663d22687474703a2f2f7777772e62726974676f2e6f72672f696e74726f2f696e74726f2e68746d6c22207461726765743d6e65773ee59c8de6a38be4bb8be7b4b93c2f613ee38082, 'Y', '2007-02-15 10:46:12'),
(712, 34, 0xe9be8de4b98be7a281e79a84e8a995e7ad89e7b3bbe7b5b1e5a682e4bd95e9818be4bd9cefbc9f, 'N', '2007-02-15 10:46:12'),
(713, 34, 0x3c493ee69c89e5b9bee4bd8de8b6b3e699bae5a49ae8ac80e79a84e4babae887aae9a198e9878de5afabe98099e6aeb5e5958fe7ad94e38082e98099e5b08de696bc203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f75736572696e666f2e7068703f7569643d3933223ee69cace69687e4bd9ce880853c2f613e20e698afe4b880e5a4a7e5b9abe58aa9efbc8ce59ba0e782baefbc88e69c89e4babae69bbee7b693e68c87e587baefbc89e4bb96e79a84e6af8de8aa9ee4b88de698afe88bb1e8aa9eefbc8ce58588e5898de4bb96e8a9a6e59c96e8aaaae6988ee9be8de4b98be7a281e8a995e7ad89e7b3bbe7b5b1efbc8ce7b590e69e9ce983bde68598e4b88de5bf8de79db9e380820d0a0d0ae5be88e5bfabe5b0b1e69c89e4ba86efbc81e58faae8a681e7ad89e4bb96e58091e5afabe5a5bd2e2e2e3c2f493e, 'N', '2007-02-17 10:59:21'),
(714, 34, 0xe68ab1e6ad89efbc8ce689bee4b88de588b0e8a9b2e8a88ae681afe8b387e69699e5a4bee38082, 'Y', '2007-02-15 10:46:12'),
(748, 34, 0xe68891e883bde4b88de883bde4b8bbe8bea6e59c8de6a38be6af94e8b3bdefbc9f, 'Y', '2007-02-15 10:46:12'),
(749, 34, 0xe5be88e6ada1e8bf8ee682a8e4be86e4b8bbe8bea6e59c8de6a38be6af94e8b3bde38082e8a681e5aea3e5b883e6af94e8b3bde7b4b0e7af80efbc8ce8ab8be4bdbfe794a8efbc88e68896e8a780e79c8befbc893c6120687265663d222f70686f72756d2f6c6973742e7068703f663d34223ee9be8de4b98be7a281e8ab96e5a3873c2f613ee38082e9be8de4b98be7a281e69c83e5b9abe58aa9e682a8e5aea3e582b3e6af94e8b3bdefbc8ce59ca8e5958fe7ad94e4b8ade5a29ee58aa0e79bb8e9979ce980a3e7b590e38082, 'Y', '2007-02-15 14:48:28'),
(751, 34, 0xe5a682e4bd95e59ca8e6af94e8b3bde7b590e69d9fe69982e7a7bbe999a4e6adbbe5ad90efbc9f, 'Y', '2007-02-15 10:46:12'),
(985, 34, 0xe5a682e4bd95e5a29ee58aa0e68896e7a7bbe999a4e9a085e79baeefbc9f, 'Y', '2007-02-15 11:01:09'),
(986, 34, 0xe98099e698afe9979ce696bc2671756f743be79baee5898de5b08de5b1802671756f743befbc8c2671756f743be5b7b2e7b590e69d9fe5b08de5b1802671756f743be888872671756f743be980b2e8a18ce4b8ade5b08de5b1802671756f743be79a84e6a38be5b180e9a1afe7a4bae9a085e79baee380820d0a0d0ae8a681e5a29ee58aa0e9a085e79baeefbc8ce5be9ee8a9b2e9a081e4b88be696b9e79a84e68b89e58f96e5bc8fe6b885e596aee981b8e58f96e682a8e683b3e8a681e79a84e9a085e79baeefbc8ce784b6e5be8ce9bb9ee981b8e69781e9828ae79a842671756f743be5a29ee58aa0e9a085e79bae2671756f743be68c89e98895e380820d0a0d0ae8a681e7a7bbe999a4e9a085e79baeefbc8ce9bb9ee981b8e9a085e79baee6a899e9a18ce69781e9828ae79a84e7b485e889b278e38082, 'N', '2008-01-27 06:49:28'),
(1005, 34, 0xe58fafe4bba5e58f83e88083203c6120687265663d22687474703a2f2f7777772e666171732e6f72672f726663732f726663313835352e68746d6c223ee7b6b2e8b7afe7a6aee58480e8a68fe7af843c2f613ee380820d0a0d0ae8a9b2e8a68fe7af84e69c89e9bb9ee58697e995b7e38082e682a8e4b99fe58fafe4bba5e58f83e88083e8bc83e7b0a1e79fade79a84203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f70686f72756d2f726561642e7068703f663d3426693d3339323626743d33393236223e20e8ab96e5a387e4b8bbe9a18c3c2f613ee38082, 'N', '2007-02-15 11:01:09'),
(1006, 34, 0xe9be8de4b98be7a281e79a84e58e9fe5a78be7a2bce698afe590a6e585ace9968befbc9f, 'Y', '2007-02-15 11:01:09'),
(1007, 34, 0xe6a0b9e6939a20474e55205075626c6963204c6963656e6365202847504c29e79a84e6b395e5be8befbc8ce58fafe5be9e2043565320e4b88be8bc89e58e9fe5a78be7a2bcefbc9a203c4120485245463d22687474703a2f2f736f75726365666f7267652e6e65742f70726f6a656374732f647261676f6e676f7365727665722f22205441524745543d5f626c616e6b3e536f75726365466f726765e9be8de4b98be7a281e7a094e799bce9a0813c2f413ee38082, 'N', '2007-02-16 11:26:34'),
(752, 34, 0xe99b99e696b9e983bde8999be6898be5be8cefbc8ce9bb9ee981b8e6a38be5ad90e4be86e694b9e8ae8ae6adbbe6b4bbefbc8ce4bba5e6ada4e7a7bbe999a4e6adbbe5ad90e38082e9bb91e889b2e88887e799bde889b2e5b08fe696b9e5a18ae9a1afe7a4bae99b99e696b9e79a84e4bd94e59cb0e380820d0a0d0ae99b99e696b9e5bf85e9a088e983bde5908ce6848fe6adbbe5ad90e88887e4bd94e59cb0e38082e5908ce6848fe5be8cefbc8ce9bb9ee981b8e6a38be79ba4e4b88be696b9e79a8422e5ae8ce6889022e380820d0a0d0ae5a682e69e9ce69c89e4b880e696b9e4b88de5908ce6848fefbc8ce5b0b1e9bb9ee981b822e7b9bce7ba8ce5b08de5b18022efbc8ce5a49ae4b88be5b9bee6898be4be86e8a7a3e6b1bae79691e5958fe38082e58fa6e4b880e7a8aee696b9e5bc8fe698afe5af84e4bfa1e7b5a6e5b08de6898be4be86e8a88ee8ab96efbc8ce68896e588b0203c6120687265663d2270686f72756d2f6c6973742e7068703f663d35223ee59c8de6a38be8ab96e5a3873c2f613ee38082, 'Y', '2007-02-16 10:19:07'),
(753, 34, 0xe5b08de5b180e7b590e69d9fe69982e79a84e7b485e889b2e5b08fe696b9e5a18ae698afe4bb80e9babcefbc9f, 'N', '2007-02-15 11:16:44');
INSERT INTO `Translations` (`Original_ID`, `Language_ID`, `Text`, `Translated`, `Updated`) VALUES
(754, 34, 0xe7b485e889b2e5b08fe696b9e5a18ae698afe9be8de4b98be7a281e784a1e6b395e588a4e696b7e8a9b2e7a9bae698afe9bb91e696b9e68896e799bde696b9e79a84e59cb0e38082e58fafe883bde79a84e58e9fe59ba0e69c89efbc9a0d0a266c743b756c2667743b0d0a266c743b6c692667743be585b6e4b8ade98284e69c89e5b08de6898be79a84e5ad90e5b09ae69caae8a2abe6a899e7a4ba2671756f743be6adbbe5ad902671756f743be38082e8ab8be9bb9ee981b8e6a899e7a4bae982a3e4ba9be5ad90e782ba2671756f743be6adbbe5ad902671756f743be38082266c743b2f6c692667743b0d0a0d0a266c743b6c692667743be799bde696b9e68896e9bb91e696b9e79a84e9828ae7958ce5b09ae69caae7a2bae5ae9ae38082e59ca8e4babae9a19ee6a38be6898be79cbce4b8ade4b99fe8a8b1e5be88e6988ee7a2baefbc8ce4bd86e698afe9be8de4b98be7a281e58fafe883bde99ba3e4bba5e588a4e696b7e698afe8aab0e79a84e4bd94e59cb0e38082e8ab8be9bb9ee981b8e6a38be79ba4e4b88be696b9e79a842671756f743be7b9bce7ba8ce5b08de5b1802671756f743befbc8ce5a49ae4b88be5b9bee6898be4be86e7a2bae5ae9ae9828ae7958ce38082266c743b2f6c692667743b0d0a0d0a266c743b6c692667743be98099e698af20266c743b6120687265663d2671756f743b6661712e7068703f726561643d7426616d703b6361743d3323456e7472793130312671756f743b2667743be585b1e6b4bb266c743b2f612667743b20e79a84e78b80e6858be38082e8ab8be9bb9ee981b8e8ae93e585b1e6b4bbe4b8ade79a84e7b485e889b2e696b9e5a18ae8ae8ae6889020266c743b6120687265663d2671756f743b6661712e7068703f726561643d7426616d703b6361743d3323456e7472793131352671756f743b2667743be596aee5ae98266c743b2f612667743be38082e9be8de4b98be7a281e69c83e4bba5e7b6a0e889b2e5b08fe696b9e5a18ae4be86e8a1a8e7a4bae38082e6ada4e58a9fe883bde58fafe4bba5e8a7a3e6b1bae585b1e6b4bbe79a84e5958fe9a18cefbc8ce5be97e588b0e6ada3e7a2bae79a84e5b08de5b180e7b590e69e9ce38082e8a9b3e68385e8ab8be79c8b20266c743b6120687265663d2671756f743b70686f72756d2f726561642e7068703f663d3226616d703b693d38343326616d703b743d3834332671756f743b2667743be6ada4e4b8bbe9a18c266c743b2f612667743b2e266c743b2f6c692667743b0d0a266c743b2f756c2667743b, 'N', '2008-01-27 06:49:28'),
(963, 34, 0xe5be85e5b180e5aea4e79a84e7b485e889b2e8838ce699afe698afe4bb80e9babcefbc9f, 'Y', '2007-02-17 14:36:20'),
(964, 34, 0xe59ca822e5b08de6898be7ad89e7b49a22e6ac84e79a84e6b7a1e7b485e889b2e8838ce699afe698afe68c87e682a8e79baee5898de79a84e7ad89e7b49ae4b88de59088e8a9b2e5b08de5b180e38082e682a8e784a1e6b395e58aa0e585a5e8a9b2e5b08de5b180e38082, 'N', '2007-02-15 11:33:26'),
(967, 34, 0xe8ae93e5ad90e8a681e694bee59ca8e4bb80e9babce59cb0e696b9efbc9f, 'Y', '2007-02-15 11:33:26'),
(968, 34, 0xe6a0b9e6939ae4b8ade59c8be59c8de6a38be8a68fe58987efbc8ce8ae93e5ad90e4bd8de7bdaee58fafe4bba5e887aae794b1e6b1bae5ae9ae380820d0ae6a0b9e6939ae697a5e69cace59c8de6a38be8a68fe58987efbc8ce8ae93e5ad90e4bd8de7bdaee69c89e697a2e5ae9ae696b9e5bc8fefbc88e6989fe4bd8de8ae93e5ad90efbc89e38082e5a682e69e9ce6b292e69c89e4ba8be58588e5908ce6848fefbc8ce5a4a7e5a49ae695b8e6a38be6898be69c9fe5be85e9bb91e5ad90e68ea1e58f96e697a5e69cace5bc8fe8a68fe58987e380820d0a266c743b756c2667743b0d0a266c743b6c692667743be8ae93203120e5ad90efbc9ae8bc83e5bcb1e79a84e4b880e696b9e68c81e9bb91efbc88e58886e58588efbc89efbc8ce784a1e8b2bce79baee380820d0a266c743b6c692667743be8ae93203220e5ad90efbc9a4434202b205131360d0a266c743b6c692667743be8ae93203320e5ad90efbc9a4434202b205134202b205131360d0a266c743b6c692667743be8ae93203420e5ad90efbc9a4434202b205134202b20443136202b205131360d0a266c743b6c692667743be8ae93203520e5ad90efbc9a4434202b205134202b204b3130202b20443136202b205131360d0a266c743b6c692667743be8ae93203620e5ad90efbc9a4434202b205134202b20443130202b20513130202b20443136202b205131360d0a266c743b6c692667743be8ae93203720e5ad90efbc9a4434202b205134202b20443130202b204b3130202b20513130202b20443136202b205131360d0a266c743b6c692667743be8ae93203820e5ad90efbc9a4434202b204b34202b205134202b20443130202b20513130202b20443136202b204b3136202b205131360d0a266c743b6c692667743be8ae93203920e5ad90efbc9a4434202b204b34202b205134202b20443130202b204b3130202b20513130202b20443136202b204b3136202b2051313620266c743b2f756c2667743b, 'N', '2008-01-27 06:49:28'),
(971, 34, 0xe5a682e4bd95e5a0b1e5918ae7a88be5bc8fe5b08fe6af9be79785efbc9f, 'N', '2007-02-15 11:33:26'),
(973, 34, 0xe5a682e4bd95e799bbe585a5e6af94e8bc83e5bfabe9809fefbc9f, 'Y', '2007-02-15 11:33:26'),
(974, 34, 0xe682a8e58fafe4bba5e4b88de794a8e6af8fe6aca1e983bde8bcb8e585a5e5b8b3e8999fe88887e5af86e7a2bcefbc8ce68a8ae5b8b3e8999fe88887e5af86e7a2bce694bee59ca855524ce69cace8baabe38082e4b99fe5b0b1e698afe8aaaaefbc8ce5b087e7808fe8a6bde599a8e68c87e59091203c753e687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f6c6f67696e2e7068703f7573657269643d3c623e7468652d757365722d69643c2f623e267061737377643d3c623e7468652d70617373776f72643c2f623e3c2f753ee380820d0a0d0ae8ab8be5b08fe5bf83efbc8ce5af86e7a2bce4bba5e69687e5ad97e696b9e5bc8fe584b2e5ad98e69c89e5ae89e585a8e9a2a8e99aaae38082e8ab8be588a5e799bce98081e682a8e79a84e799bbe585a555524ce68896e59ca8e585ace794a8e99bbbe885a6e584b2e5ad98e782bae69bb8e7b1a4e38082, 'Y', '2007-02-16 08:04:37'),
(975, 34, 0xe5a682e4bd95e799bbe585a5e68891e79a84e5b8b3e8999fefbc9f, 'Y', '2007-02-15 11:33:26'),
(979, 34, 0xe5958fe7ad94e698afe590a6e8ab87e588b0e68980e69c89e79a84e7a88be5bc8fe5b08fe6af9be79785efbc9f, 'Y', '2007-02-15 14:48:28'),
(980, 34, 0xe6b292e69c89efbc8ce4b99fe6b0b8e981a0e784a1e6b395e585a8e983a8e8ab87e588b0e38082e98099e8a3a1e8ab87e588b0e79a84e5b08fe6af9be79785e983bde698afe5b8b8e799bce7949fe68896e5b7b2e79fa5e79a84e99d9ce6858be98cafe8aaa4efbc8ce4bba5e58f8ae59ca8e8ab96e5a387e4b8ade8a9b3e7b4b0e8a88ee8ab96e9818ee79a84e38082e5b08fe6af9be79785e69c83e8a2abe4bfaee79086283c693ee98099e6a8a3e6898de69c89e7a9bae99693e5aeb9e7b48de585b6e4bb96e5b08fe6af9be79785efbc9f3c2f693e29efbc8ce4bd86e698afe59ca8e4bfaee79086e5a5bde4b98be5898defbc8ce98099e8a3a1e4b99fe69c83e58aa0e4bba5e8a88ee8ab96e38082, 'Y', '2007-02-15 11:56:40'),
(981, 34, 0xe9be8de4b98be7a281e79a84e8a88ae681afe69c89e593aae4ba9befbc9f, 'N', '2007-02-15 11:56:40'),
(1049, 34, 0xe6ada4e5b8b3e8999fe69c89e4b88de59088e8a68fe5ae9ae79a84e5ad97e58583efbc8ce58faae69c89612d7a2c20412d5a2c20302d3920e88887202d5f2b20e58fafe4bba5e4bdbfe794a8efbc8ce7acace4b880e5808be5ad97e58583e5bf85e9a088e698af612d7a2c20412d5ae38082, 'Y', '2007-02-15 11:56:40'),
(1050, 34, 0xe68ab1e6ad89efbc8ce784a1e6b395e689bee588b0e682a8e683b3e8a681e79a84e8b2bce69687e38082, 'Y', '2007-05-17 16:00:52'),
(1051, 34, 0xe68ab1e6ad89efbc8ce784a1e6b395e689bee588b0e682a8e683b3e8a681e7bfbbe8adafe79a84e8aa9ee8a880e68896e7bea4e7b584e38082e8ab8be68ea5e6b4bde694afe68fb4e4babae593a1e38082, 'Y', '2007-02-15 11:56:40'),
(1053, 34, 0xe6ada4e4bdbfe794a8e88085e5b7b2e7b693e698afe7aea1e79086e593a1e38082, 'Y', '2007-02-15 11:56:40'),
(972, 34, 0x3c756c3e0d0a3c6c693ee8ab8be5af9fe79c8be5b8b8e8a68be5958fe9a18ce88887e8ab96e5a387e9979ce696bce682a8e98187e588b0e79a84e7a88be5bc8fe6af9be79785e38082e6909ce5b08be8ab96e5a387e58fafe883bde69c83e6af94e7808fe8a6bde69bb4e69c89e69588e78e87e29480e8b2bce69687e5afa6e59ca8e5a4aae5a49aefbc8ce69c89e69982e58099e58fafe883bde69c83e8b2bce98cafe8ab96e5a387e380820d0a3c6c693ee8a9b3e7b4b0e68f8fe8bfb0e682a8e79a84e5958fe9a18cefbc8ce8b2bce588b00d0a203c686f6d6520666f72756d2f6c6973742e7068703f666f72756d3d323e537570706f727420666f72756d3c2f686f6d653e20e682a8e4b99fe58fafe4bba50d0a3c6c693ee5b087e5958fe9a18ce5af84e4bfa1e7b5a63c686f6d652070656f706c652e7068703e646576656c6f706572733c2f686f6d653e2e0d0a3c2f756c3e, 'N', '2009-10-12 16:18:41'),
(1469, 8, 0xbc67ab48b5b9c170b5b8a448, 'Y', '2009-10-12 16:19:22'),
(976, 34, 0xe799bbe585a5203c6120687265663d222f22207461726765743d225f626c616e6b223ee9be8de4b98be7a281e4b8bbe9a0813c2f613eefbc8ce8bcb8e585a5e682a8e79a84e5b8b3e8999fe88887e5af86e7a2bce3808244475320e69c83e589b5e980a0e4b880e5808b20636f6f6b696520e5ad98e59ca8e682a8e79a84e99bbbe885a6e38082e98099e5808b20636f6f6b696520e58fafe4bba5e8ae93e682a8e4bf9de68c81e799bbe585a520333020e5a4a9e38082, 'Y', '2007-02-15 18:27:23'),
(982, 34, 0xe6a38be6898be69c89e4bba5e4b88be5b9bee7a8aee696b9e5bc8fe4ba92e79bb8e582b3e98081e8a88ae681afefbc9a0d0a3c554c3e0d0a3c6c693ee5af84e587bae7a781e4babae4bfa1e4bbb6e7b5a6e789b9e5ae9ae79a84e6a38be6898be380823c2f6c693e0d0a3c6c693ee8b2bce69687e588b0e9be8de4b98be7a281e79a84203c6120687265663d222f70686f72756d2f22207461726765743d225f626c616e6b223ee8ab96e5a3873c2f613e20e88887e8a8b1e5a49ae6a38be6898be8a88ee8ab96e380823c2f6c693e0d0a3c6c693ee59ca8e980b2e8a18ce4b8ade6a38be5b180e799bce8a1a828e69c89e8a8b1e5a49ae5bda2e5bc8f29203c4120485245463d222f6661712e7068703f726561643d74266361743d33363523456e7472793735223ee79599e8a8803c2f413ee380823c2f6c693e3c2f554c3e0d0a0d0ae8ab8be6b3a8e6848fefbc81e6b292e69c89e8a88ae681afe69c83e8a2abe588aae999a4e38082e7a781e4babae8a88ae681afe58faae69c83e5be9ee682a8e79a84e58897e8a1a8e7a7bbe999a4efbc8ce4bd86e698afe69c83e79599e59ca8e8b387e69699e5baabe4b8ade38082e6a38be5b180e4b8ade79a84e79599e8a880e4b99fe69c83e6b0b8e981a0e4bf9de79599efbc8ce98284e69c89e8ab96e5a387e79a84e79599e8a880e38082e5b08de5b180e4b8ade79a84e6ada3e5b8b8e8a88ae681afe4b88de69c83e8bcb8e585a5534746e6aa94efbc8ce4bd86e698afe69c83e79599e59ca8e7b3bbe7b5b1e4b88aefbc8ce5b08de5b180e79a84e99b99e696b9e58fafe4bba5e8ae80e58f96e38082, 'N', '2007-10-01 06:34:50'),
(983, 34, 0xe4bfa1e7aeb1e8b387e69699e5a4bee698afe4bb80e9babcefbc9f, 'Y', '2007-02-15 15:00:28'),
(984, 34, 0xe4bfa1e7aeb1e8b387e69699e5a4bee58fafe4bba5e6a0b9e6939ae682a8e79a84e99c80e8a681e4be86e7b584e7b994e8a88ae681afe38082e682a8e58fafe4bba5e99aa8e6848fe7a7bbe58b95e8a88ae681afe588b0e4b88de5908ce8b387e69699e5a4bee380820d0a0d0ae9be8de4b98be7a281e68f90e4be9be4bba5e4b88be79a84e585a7e5bbbae8b387e69699e5a4beefbc9a3c756c3e0d0a3c6c693e3c623ee585a8e694b6e588b03c2f623eefbc9ae68980e69c89e5b7b2e68ea5e694b6e8a88ae681afe380820d0a3c6c693e3c623ee4b8bbe4bfa1e7aeb13c2f623eefbc9ae5b7b2e996b1e8ae80e79a84e5b7b2e68ea5e694b6e8a88ae681afe380820d0a3c6c693e3c623ee696b03c2f623eefbc9ae69caae8ae80e79a84e5b7b2e68ea5e694b6e8a88ae681afe380820d0a3c6c693e3c623ee59b9ee8a686efbc813c2f623eefbc9ae99c80e8a681e59b9ee8a686e79a84e8a88ae681afe380820d0a3c6c693e3c623ee59e83e59cbee6a1b63c2f623eefbc9ae8a2abe6a899e7a4bae588aae999a4e79a84e8a88ae681afe380820d0a3c6c693e3c623ee5b7b2e5af84e587ba3c2f623eefbc9ae5b7b2e98081e587bae79a84e8a88ae681afe380820d0a3c2f756c3e, 'Y', '2007-03-04 05:53:49'),
(1048, 34, 0xe784a1e6b395e689bee588b0e7b6b2e9a081e38082e8ab8be68ea5e6b4bde4bcbae69c8de599a8e7aea1e79086e593a1efbc8ce5918ae8a8b4e4bb96e58091e98cafe8aaa4e799bce7949fe79a84e69982e99693efbc8ce4bba5e58f8ae682a8e58fafe883bde5bc95e8b5b7e98cafe8aaa4e79a84e4bd9ce6b395e38082, 'Y', '2007-02-15 12:22:35'),
(1055, 34, 0xe79baee5898de5b08de5b1805253532046656564, 'Y', '2007-02-18 10:48:25'),
(501, 8, 0xc073a4a7f9d6b4d1a4e2bb50a8cfa5ceaaccb8eaaec6, 'N', '2007-10-01 06:29:12'),
(555, 33, 0xe5a682e4bd95e8a782e79c8be6a38be8b0b12053474620e6aa94efbc9f, 'N', '2007-02-25 08:30:42'),
(1274, 34, 0xe697a5, 'Y', '2007-02-16 04:14:10'),
(1275, 34, 0xe697a5, 'Y', '2007-02-16 04:14:10'),
(1276, 34, 0xe5b08fe69982, 'Y', '2007-02-16 04:14:10'),
(1277, 34, 0xe5b08fe69982, 'Y', '2007-02-16 04:14:10'),
(122, 33, 0xe7ad94e5a48d, 'Y', '2007-02-16 13:08:49'),
(127, 33, 0xe7bc96e8be91, 'N', '2007-02-16 13:08:49'),
(128, 33, 0xe4b88ae7a7bb, 'Y', '2007-02-16 13:08:49'),
(129, 33, 0xe4b88be7a7bb, 'Y', '2007-02-16 13:08:49'),
(135, 33, 0xe7bfbbe8af91, 'Y', '2012-01-31 06:03:26'),
(136, 33, 0xe8aebae59d9b, 'Y', '2007-02-16 13:08:49'),
(190, 33, 0xe696b0e5af86e7a081, 'Y', '2007-02-16 13:08:49'),
(1059, 33, 0xe698bee7a4ba, 'Y', '2007-02-16 13:08:49'),
(1060, 33, 0xe99a90e8978f, 'Y', '2007-02-16 13:08:49'),
(1091, 33, 0xe589a9e4bd99e697b6e997b4, 'Y', '2007-02-16 13:24:15'),
(1125, 33, 0xe58886e7b1bb, 'Y', '2007-02-16 13:24:15'),
(1274, 33, 0xe697a5, 'Y', '2007-02-16 13:24:15'),
(1275, 33, 0xe697a5, 'Y', '2007-02-16 13:24:15'),
(1276, 33, 0xe5b08fe697b6, 'Y', '2007-02-16 13:24:15'),
(1277, 33, 0xe5b08fe697b6, 'Y', '2007-02-16 13:24:15'),
(181, 33, 0xe794b5e5ad90e982aee4bbb6, 'Y', '2007-02-16 13:33:21'),
(1082, 33, 0xe5af86e7a081e98081e587ba, 'Y', '2007-02-16 13:33:21'),
(1096, 33, 0xe6aca2e8bf8ee58589e4b8b4e9be99e4b98be7a281e7a094e58f91e78988efbc81, 'N', '2007-03-10 08:42:00'),
(1097, 33, 0xe5a682e69e9ce682a8e683b3e5ae9ee99985e4b88ae7bd91e78ea9e9be99e4b98be7a281efbc8ce8afb7e4b88a3c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e6574223e687474703a2f2f7777772e647261676f6e676f7365727665722e6e65743c2f613e, 'Y', '2007-02-16 13:33:21'),
(1617, 17, 0x57737a7973746b6965206b72616a65, 'Y', '2013-08-20 23:10:15'),
(1618, 17, 0x44415441, 'Y', '2013-08-20 23:10:15'),
(1620, 17, 0x6c6174, 'Y', '2013-08-21 01:08:24'),
(1099, 33, 0xe8afa6e68385e8afb7e8afbb22e5b8b8e8a781e997aee9a29822e38082, 'Y', '2007-10-01 09:15:05'),
(1112, 33, 0xe696b0e794a8e688b7e8afb7e6b3a8e6848fefbc9ae8afb7e99885e8afbb22e5b8b8e8a781e997aee9a29822e4b8ade585b3e4ba8ee682a8e79a84e5889de5a78be7ad89e7baa7e8aebee5ae9ae38082, 'Y', '2007-10-01 09:15:05'),
(1212, 33, 0xe6aca2e8bf8ee58589e4b8b4202573efbc81, 'Y', '2007-02-16 13:33:21'),
(1213, 33, 0xe6aca2e8bf8ee58589e4b8b4202573efbc8c202573e5858de8b4b9257320e79a84202573e59bb4e6a38b257320e7bd91e7ab99efbc8ce58fafe4bba5e8aea9e682a8e6b7b1e6809de7869fe89991e4b88be6a38be38082, 'Y', '2007-03-12 16:57:52'),
(1227, 33, 0xe5af84e587bae696b0e5af86e7a081efbc81, 'Y', '2007-02-16 13:33:21'),
(1266, 33, 0xe8bf99e698afe4b880e4b8aae7b1bbe4bcbce9809ae4bfa1e4b88be6a38befbc8ce69c89e7be8ee8a782e6a38be79b98e79a84e7bd91e7bb9ce68ea5e58fa3e38082e682a8e8a681e58588e794b3e8afb7e4b880e4b8aa203c6120687265663d2272656769737465722e706870223ee5b890e58fb73c2f613ee38082e784b6e5908ee682a8e58fafe4bba5e7bc96e8be91203c6120687265663d22656469745f70726f66696c652e706870223ee4b8aae4babae8b584e696993c2f613e20e4b88e203c6120687265663d22656469745f62696f2e706870223ee7bc96e8be91e5b08fe4bca03c2f613eefbc8ce5a1abe5869922e5bc80e694bee5afb9e5b18022efbc8c22444753e7ad89e7baa722e4b88e22e58f82e88083e7ad89e7baa722e79a84e8b584e69699e5b086e69c89e58aa9e4ba8ee682a8e689bee588b0e5afb9e6898be38082e682a8e58fafe58f82e88083203c6120687265663d2275736572732e706870223ee6a38be6898b3c2f613e20e5b9b6e4bdbfe794a8203c6120687265663d22666f72756d2f696e6465782e706870223ee8aebae59d9b3c2f613e20e69da5e5afbbe689bee98082e59088e79a84e5afb9e6898befbc8ce784b6e5908e203c6120687265663d226d6573736167652e7068703f6d6f64653d496e76697465223ee98280e8afb73c2f613e20e4bb96e4bbace5afb9e5b180e38082e682a8e4b99fe58fafe4bba5e79bb4e68ea5e588b0e5be85e5b180e5aea4e58aa0e585a5e98082e5bd93e79a84e5afb9e5b180e38082, 'Y', '2007-10-01 07:11:16'),
(226, 33, 0xe8999ae6898b, 'Y', '2007-02-16 13:55:10'),
(342, 33, 0xe6a38be58a9be59bbe, 'Y', '2007-03-14 19:58:20'),
(343, 33, 0xe68ab1e6ad89efbc8ce6a38be5b180e8bf87e5b091e697a0e6b395e68890e59bbe, 'Y', '2007-02-16 13:55:10'),
(396, 33, 0xe5af84e4bfa1e7bb99e6ada4e6a38be6898b, 'Y', '2007-10-01 07:11:59'),
(397, 33, 0xe8bf9be8a18c, 'Y', '2007-02-16 20:44:14'),
(398, 33, 0xe7bb93e69d9f, 'Y', '2007-02-16 13:55:10'),
(417, 33, 0xe79baee5898de4bcbce4b98ee697a0e4baba, 'Y', '2007-02-16 13:55:10'),
(422, 33, 0xe7baa7, 'Y', '2007-02-16 13:55:10'),
(424, 33, 0xe5afb9e6898be7ad89e7baa7, 'Y', '2007-02-16 13:55:10'),
(426, 33, 0xe6a38be6898b, 'Y', '2007-03-13 04:39:01'),
(427, 33, 0xe5b180e695b0, 'Y', '2007-02-16 13:55:10'),
(428, 33, 0xe591a8e69cabe8aea1e697b6, 'Y', '2007-02-16 13:55:10'),
(432, 33, 0xe4bca0e7bb9fe8aea9e5ad90efbc88e88ba5e8aea9e5ad90e8b4b4e58d8ae79baeefbc89, 'Y', '2007-06-07 10:40:12'),
(433, 33, 0xe98082e5bd93e8aea9e5ad90efbc88e7b3bbe7bb9fe8b083e695b4e8b4b4e79baeefbc89, 'Y', '2007-06-07 10:40:12'),
(437, 33, 0xe4b8bbe8a681e697b6e997b4, 'Y', '2007-02-16 13:55:10'),
(446, 33, 0xe7a281e889b2, 'Y', '2007-02-16 13:58:14'),
(447, 33, 0xe78c9ce5ad90, 'Y', '2007-02-16 13:55:10'),
(499, 33, 0xe887b3, 'Y', '2007-02-24 12:04:10'),
(618, 33, 0xe58e9fe69da5e7ad89e7baa7, 'Y', '2007-02-25 08:40:37'),
(619, 33, 0xe7bb93e69d9fe7ad89e7baa7, 'Y', '2007-02-16 13:55:10'),
(620, 33, 0xe68891e696b9e5a29ee5878f, 'Y', '2007-06-03 15:09:02'),
(1024, 33, 0xe78c9ce5ad90e58886e58588, 'Y', '2007-02-16 13:55:10'),
(1076, 33, 0xe7a781e4babae7ac94e8aeb0e69cac, 'Y', '2007-05-31 11:24:36'),
(1083, 33, 0xe8afb7e6b182e8aea9e5ad90e4ba8ee6989fe4bd8d, 'Y', '2007-05-29 12:23:12'),
(1084, 33, 0xe6989fe4bd8d, 'Y', '2007-06-02 09:00:32'),
(1085, 33, 0xe8afb7e782b9e98089e6adbbe5ad90efbc8ce784b6e5908ee782b9e98089257327e5ae8ce68890272573, 'Y', '2007-02-16 13:55:10'),
(1086, 33, 0xe68f90e5ad90, 'Y', '2007-02-16 13:55:10'),
(1087, 33, 0xe79599e8a880, 'Y', '2007-02-16 13:55:10'),
(1088, 33, 0xe4b88be8bdbde6a38be8b0b1e590abe79599e8a880, 'Y', '2007-08-05 13:31:03'),
(1089, 33, 0xe8aea1e58886, 'Y', '2007-02-16 13:55:10'),
(1090, 33, 0xe8a782e6a38b, 'Y', '2007-02-16 13:55:10'),
(1092, 33, 0xe8af84e7ad89, 'Y', '2007-02-16 13:55:10'),
(1093, 33, 0xe698bee7a4bae7ac94e8aeb0, 'Y', '2007-05-31 11:25:27'),
(1094, 33, 0xe582a8e5ad98e7ac94e8aeb0, 'Y', '2007-05-31 11:25:27'),
(1095, 33, 0xe99a90e8978fe7ac94e8aeb0, 'Y', '2007-05-31 11:25:27'),
(1111, 33, 0xe6a38be58a9be59bbe, 'Y', '2007-03-14 19:58:20'),
(1279, 17, 0x636869f1736b6928747261647963796a6e79292875742d3829, 'Y', '2013-08-20 22:15:42'),
(1211, 33, 0xe6898be695b0, 'Y', '2007-02-16 13:55:10'),
(1270, 33, 0xe68980e69c89e7ad89e5be85e6a38be5b180, 'Y', '2007-02-16 13:55:10'),
(1271, 33, 0xe98082e59088e6a38be5b180, 'Y', '2007-02-17 16:01:47'),
(307, 33, 0xe4bfa1e7aeb1, 'Y', '2007-02-16 14:58:48'),
(315, 33, 0xe5b7b2e59b9ee5a48d, 'Y', '2007-02-16 14:58:48'),
(322, 33, 0x2573e5afb9e5b180257320e98280e8afb7e5b7b2e8a2abe68ea5e58f97, 'Y', '2007-02-16 14:58:48'),
(323, 33, 0xe5afb9e5b180e8a2abe5a989e68b92efbc8ce68896e6a38be5b180e5b7b2e588a0e999a4, 'Y', '2007-02-16 14:58:48'),
(326, 33, 0xe5af84e587bae59b9ee587bd, 'Y', '2007-02-16 14:58:48'),
(327, 33, 0xe696b0e4bfa1e4bbb6, 'Y', '2007-02-16 14:58:48'),
(328, 33, 0xe694b6e4bbb6e4baba28e5b890e58fb729, 'Y', '2007-02-16 14:58:48'),
(329, 33, 0xe5af84e4bfa1, 'Y', '2015-05-12 08:38:56'),
(332, 33, 0xe58fa6e8aeaee8aebee5ae9a, 'Y', '2007-02-16 14:58:48'),
(333, 33, 0xe68ea5e58f97, 'Y', '2007-02-16 14:58:48'),
(334, 33, 0xe68b92e7bb9d, 'Y', '2007-02-16 14:58:48'),
(335, 33, 0xe98280e8afb7e5afb9e5b180, 'Y', '2007-02-16 14:58:48'),
(336, 33, 0xe58f91e587bae98280e8afb7, 'Y', '2007-02-16 14:58:48'),
(346, 33, 0xe5b7b2e98081e587baefbc81, 'Y', '2007-02-20 18:59:52'),
(431, 33, 0xe6a38be79b98, 'N', '2007-02-16 14:58:48'),
(436, 33, 0xe69c88, 'Y', '2007-02-16 14:58:48'),
(439, 33, 0x2d, 'Y', '2007-02-16 14:58:48'),
(442, 33, 0xe4b88b, 'Y', '2007-02-16 14:58:48'),
(445, 33, 0xe6a38be5b180e7bc96e58fb7, 'Y', '2007-02-16 14:58:48'),
(449, 33, '', 'Y', '2007-02-16 14:58:48'),
(451, 33, '', 'Y', '2007-02-16 14:58:48'),
(453, 33, 0x3ae6af8fe6898be5a29ee58aa0e697b6e997b4, 'Y', '2007-02-27 10:25:41'),
(724, 33, 0xe588a0e999a4e6a087e7a4bae4bfa1e4bbb6, 'Y', '2007-02-16 14:58:48'),
(726, 33, 0xe7bc96e8be91e4bfa1e7aeb1, 'Y', '2007-02-16 14:58:48'),
(727, 33, 0xe5afb9e5b180e8aebee5ae9a2573e58fa6e8aeae2573, 'Y', '2007-02-26 04:58:39'),
(740, 33, 0xe585a8e694b6e588b0, 'Y', '2007-02-16 14:58:48'),
(741, 33, 0xe4b8bbe4bfa1e7aeb1, 'Y', '2007-02-16 14:58:48'),
(742, 33, 0xe59e83e59cbee6a1b6, 'Y', '2007-02-16 14:58:48'),
(743, 33, 0xe5b7b2e5af84e587ba, 'Y', '2007-02-16 14:58:48'),
(744, 33, 0xe59b9ee5a48de697b6e7a7bbe887b3e8b584e69699e5a4b9, 'Y', '2007-02-16 14:58:48'),
(745, 33, 0xe7a7bbe887b3e8b584e69699e5a4b9, 'Y', '2007-02-16 14:58:48'),
(746, 33, 0xe8b584e69699e5a4b9e5908de7a7b0, 'Y', '2007-02-16 14:58:48'),
(1106, 33, 0xe59b9ee7ad94e58897e8a1a8, 'Y', '2007-02-16 14:58:48'),
(1108, 33, 0xe59b9ee588b0e4bfa1e4bbb6, 'Y', '2007-02-16 14:58:48'),
(1109, 33, 0xe9a284e8a788, 'Y', '2007-02-16 14:58:48'),
(1110, 33, 0xe697a0e6ada4e694b6e4bbb6e88085, 'Y', '2007-02-16 14:58:48'),
(1120, 33, 0xe6aca1, 'Y', '2007-02-16 14:58:48'),
(1121, 33, 0xe5898de4b880e58899e4bfa1e4bbb6, 'Y', '2007-02-16 14:58:48'),
(1122, 33, 0xe4b88be4b880e58899e4bfa1e4bbb6, 'Y', '2007-02-16 14:58:48'),
(1124, 33, 0xe68891e696b9, 'Y', '2007-02-16 14:58:48'),
(156, 33, 0xe5b08fe4bca0e5b7b2e69bb4e696b0efbc81, 'Y', '2007-02-16 15:13:23'),
(157, 33, 0xe5af86e7a081e5b7b2e694b9e58f98efbc81, 'Y', '2007-02-16 15:13:23'),
(158, 33, 0xe4b8aae4babae8aebee5ae9ae5b7b2e69bb4e696b0efbc81, 'Y', '2007-02-17 11:34:05'),
(175, 33, 0xe585b6e5ae83efbc9a, 'Y', '2007-02-16 15:13:23'),
(176, 33, 0xe59bbde5aeb6, 'Y', '2007-02-16 15:13:23'),
(177, 33, 0xe59f8ee5b882, 'Y', '2007-02-16 15:13:23'),
(178, 33, 0xe79c812fe5b79e, 'Y', '2007-02-16 15:13:23'),
(179, 33, 0xe4bfb1e4b990e983a8, 'Y', '2007-02-16 15:13:23'),
(180, 33, 0xe9a696e9a1b5, 'Y', '2007-02-16 15:13:23'),
(182, 33, 0x494351e5b890e58fb7, 'Y', '2007-02-16 15:13:23'),
(183, 33, 0xe6a38be5b180e8aebee5ae9a, 'Y', '2007-02-16 15:13:23'),
(184, 33, 0xe5979ce5a5bd, 'Y', '2007-02-16 15:13:23'),
(185, 33, 0xe8818ce4b89a, 'Y', '2007-02-16 15:13:23'),
(187, 33, 0xe694b9e58f98e5b08fe4bca0, 'Y', '2007-02-16 15:13:23'),
(188, 33, 0xe7bc96e8be91e5af86e7a081, 'Y', '2007-02-16 15:13:23'),
(189, 33, 0xe697a7e5af86e7a081, 'Y', '2007-02-16 15:13:23'),
(192, 33, 0xe694b9e58f98e5af86e7a081, 'Y', '2007-02-16 15:13:23'),
(193, 33, 0xe585b3, 'Y', '2007-02-16 15:13:23'),
(194, 33, 0xe58faae5af84e9809ae79fa5, 'Y', '2007-06-23 11:56:27'),
(195, 33, 0xe6898be695b0e4b88ee4bfa1e4bbb6, 'Y', '2007-06-22 20:38:02'),
(196, 33, 0xe79b98e99da2e4b88ee4bfa1e4bbb6, 'Y', '2007-06-22 20:38:02'),
(197, 33, 0xe59e82e79bb4, 'Y', '2007-02-16 15:13:23'),
(198, 33, 0xe6b0b4e5b9b3, 'Y', '2007-02-16 15:13:23'),
(199, 33, 0xe4b8aae4babae8aebee5ae9a, 'Y', '2007-02-16 15:13:23'),
(200, 33, 0xe4b8aae4babae8aebee5ae9a, 'Y', '2007-02-16 15:13:23'),
(206, 33, 0xe794b5e982aee9809ae79fa5, 'Y', '2007-02-16 15:13:23'),
(207, 33, 0xe6b58fe8a788e599a8e8aebee5ae9a, 'Y', '2007-02-21 12:01:58'),
(208, 33, 0xe8afade8a880, 'Y', '2007-02-16 15:13:23'),
(209, 33, 0xe697b6e58cba, 'Y', '2007-02-16 15:13:23'),
(210, 33, 0xe79da1e79ca0, 'Y', '2007-02-17 06:09:08'),
(211, 33, 0xe6a38be79b98, 'Y', '2007-02-16 15:13:23'),
(212, 33, 0xe7a281e79fb3e5a4a7e5b08f, 'Y', '2007-02-17 11:29:33'),
(213, 33, 0xe6a38be79b98e9a29ce889b2, 'Y', '2007-02-16 15:13:23'),
(214, 33, 0xe59d90e6a087e4bd8de7bdae, 'Y', '2007-02-17 11:29:33'),
(215, 33, 0xe5b7a6, 'Y', '2007-02-16 15:13:23'),
(216, 33, 0xe4b88a, 'Y', '2007-02-16 15:13:23'),
(217, 33, 0xe58fb3, 'Y', '2007-02-16 15:13:23'),
(218, 33, 0xe4b88b, 'Y', '2007-02-16 15:13:23'),
(219, 33, 0xe79b98e7bc98e5b9b3e6bb91, 'Y', '2007-02-17 11:29:33'),
(220, 33, 0xe98089e58d95e696b9e59091, 'Y', '2007-02-16 15:13:23'),
(222, 33, 0xe58f98e69bb4e4b8aae4babae8aebee5ae9a, 'Y', '2007-02-16 15:13:23'),
(378, 33, 0xe68891e79a84e8b584e69699, 'Y', '2007-02-16 15:13:23'),
(379, 33, 0xe7bc96e8be91e5b08fe4bca0, 'Y', '2007-02-16 15:13:23'),
(393, 33, 0xe6b3a8e5868ce697a5e69c9f, 'Y', '2007-02-16 15:13:23'),
(394, 33, 0xe4b88ae6aca1e799bbe585a5, 'Y', '2007-02-16 15:13:23'),
(395, 33, 0xe5b08fe4bca0, 'Y', '2007-02-16 15:13:23'),
(463, 33, '', 'Y', '2007-02-16 15:13:23'),
(464, 33, '', 'Y', '2007-02-16 15:13:23'),
(465, 33, '', 'Y', '2007-02-16 15:13:23'),
(466, 33, '', 'Y', '2007-02-16 15:13:23'),
(467, 33, '', 'Y', '2007-02-16 15:13:23'),
(468, 33, '', 'Y', '2007-02-16 15:13:23'),
(469, 33, '', 'Y', '2007-02-16 15:13:23'),
(470, 33, 0xe4b8ade6968728e7b981e4bd9329, 'Y', '2007-02-16 15:13:23'),
(472, 33, 0xe4b8ade6968728e7ae80e4bd9329, 'Y', '2007-02-16 15:13:23'),
(473, 33, '', 'Y', '2007-02-16 15:13:23'),
(479, 33, '', 'Y', '2007-02-16 15:13:23'),
(494, 33, 0x2573e79a84e8b584e69699, 'Y', '2007-02-16 15:13:23'),
(500, 33, '', 'Y', '2007-02-16 15:13:23'),
(731, 33, 0xe7bc96e8be91e4bfa1e7aeb1, 'Y', '2007-02-16 15:13:23'),
(736, 33, 0xe8839c, 'Y', '2007-02-16 15:13:23'),
(737, 33, 0xe8b49f, 'Y', '2007-02-16 15:13:23'),
(738, 33, 0xe694b9e58f98e58187e69c9fe697b6e997b4, 'Y', '2007-02-16 15:13:23'),
(739, 33, 0xe5bc80e5a78be4bc91e58187, 'Y', '2007-05-30 12:24:12'),
(750, 33, '', 'Y', '2007-02-16 15:13:23'),
(954, 33, '', 'Y', '2007-02-16 15:13:23'),
(955, 33, 0xe58187e69c9f, 'Y', '2007-02-16 15:13:23'),
(956, 33, 0xe68ab1e6ad89efbc8ce79baee5898de4bda0e4b88de883bde694b9e58f98e58187e69c9fe697b6e997b4, 'Y', '2007-02-16 15:21:10'),
(957, 33, 0xe58187e69c9fe697b6e997b4e694b9e58f98e4ba86efbc81, 'Y', '2007-02-16 15:21:10'),
(958, 33, 0xe5a29ee58aa0, 'Y', '2007-02-16 15:21:10'),
(959, 33, 0xe7a7bbe999a4, 'Y', '2007-02-16 15:21:10'),
(960, 33, 0xe98089e68ba9e58187e69c9fe697b6e997b4, 'Y', '2007-02-16 15:21:10'),
(962, 33, 0xe58187e69c9fe68489e5bfabefbc81, 'Y', '2007-02-16 15:21:10'),
(997, 33, '', 'Y', '2007-02-16 15:21:10'),
(998, 33, '', 'Y', '2007-02-16 15:21:10'),
(1003, 33, '', 'Y', '2007-02-16 15:21:10'),
(1014, 33, '', 'Y', '2007-02-16 15:21:10'),
(1015, 33, '', 'Y', '2007-02-16 15:21:10'),
(1018, 33, '', 'Y', '2007-02-16 15:21:10'),
(1023, 33, '', 'Y', '2007-02-16 15:21:10'),
(1028, 33, '', 'Y', '2007-02-16 15:21:10'),
(1029, 33, '', 'Y', '2007-02-16 15:21:10'),
(1030, 33, '', 'Y', '2007-02-16 15:21:10'),
(1031, 33, '', 'Y', '2007-02-16 15:21:10'),
(1032, 33, '', 'Y', '2007-02-16 15:21:10'),
(1033, 33, '', 'Y', '2007-02-16 15:21:10'),
(1034, 33, '', 'Y', '2007-02-16 15:21:10'),
(1035, 33, 0xe4b8ade6968728e7ae80e4bd9329287574662d3829, 'Y', '2007-02-16 15:21:10'),
(1067, 33, 0xe6af8de8afad, 'Y', '2007-02-16 15:21:10'),
(1068, 33, 0xe9809ae69993e8afade69687, 'Y', '2007-02-16 15:21:10'),
(1069, 33, 0xe4b88b, 'Y', '2007-02-16 15:21:10'),
(1073, 33, 0xe6898be695b0e8aea1e695b0, 'Y', '2007-02-16 15:21:10'),
(1074, 33, 0xe4b88de8b685e8bf87313030, 'Y', '2007-02-16 15:21:10'),
(1077, 33, 0xe5b08fe6a38be79b98e5afb9e5b180e697b6, 'Y', '2007-02-19 05:49:22'),
(1078, 33, 0xe6a38be79b98e8b7afe695b0e5a4a7e4ba8e, 'Y', '2007-02-19 05:16:38'),
(1079, 33, 0xe4bd8de7bdae, 'Y', '2007-02-16 15:21:10'),
(1080, 33, 0xe9ab98, 'Y', '2007-02-16 15:21:10'),
(1081, 33, 0xe5aebd, 'Y', '2007-02-16 15:21:10'),
(1113, 33, 0xe8af84e7ad89e6a38be5b180, 'Y', '2007-02-19 10:28:44'),
(1131, 33, 0xe68ab1e6ad89efbc8ce887b3e5b091e8a681efbc8564e5a4a9e58187e69c9fe6898de883bde4bc91e58187e38082, 'Y', '2007-05-30 12:24:12'),
(1210, 33, 0xe7bc96e8be91e5b08fe4bca0, 'Y', '2007-02-16 15:21:10'),
(1214, 33, 0xe5afb9e5b180e4b8ade79a84e6a38be6898b, 'Y', '2007-10-01 07:12:57'),
(1218, 33, 0xe8838ce699af, 'Y', '2007-02-16 15:21:10'),
(1219, 33, 0xe7baa2, 'Y', '2007-02-16 15:21:10'),
(1220, 33, 0xe7bbbf, 'Y', '2007-02-16 15:21:10'),
(1221, 33, 0xe8939d, 'Y', '2007-02-16 15:21:10'),
(1222, 33, 0xe8a686e79b96e5baa6, 'Y', '2007-02-16 15:21:10'),
(1223, 33, 0xe698bee7a4bae59ca8e79baee5898de5afb9e5b180, 'Y', '2007-02-16 15:21:10'),
(1224, 33, 0xe5898de699af, 'Y', '2007-02-16 15:21:10'),
(1225, 33, 0xe8b584e69699e5a4b9e5b7b2e8b083e695b4efbc81, 'Y', '2007-02-16 15:21:10'),
(1226, 33, 0xe69bb4e696b0, 'Y', '2007-02-16 15:21:10'),
(1245, 33, 0xe99a90e8978f, 'Y', '2007-02-16 15:21:10'),
(1273, 33, 0xe8b584e69699e5a4b9e99c80e6b885e7a9bae6898de883bde588a0e999a4efbc81, 'Y', '2007-02-16 15:21:10'),
(1279, 33, 0xe4b8ade6968728e7b981e4bd9329287574662d3829, 'Y', '2007-02-16 15:21:10'),
(1280, 33, '', 'Y', '2007-02-16 15:21:10'),
(1235, 33, 0xe59b9ee588b0e8af9de9a298, 'Y', '2007-02-16 15:30:21'),
(1237, 33, 0xe6909ce5afbb, 'Y', '2007-02-16 15:30:21'),
(1238, 33, 0xe58887e68da2e5aea1e6a0b8, 'Y', '2007-02-26 05:10:04'),
(1241, 33, 0xe5aea1e6a0b8e4b8ad, 'Y', '2007-02-16 15:30:21'),
(1243, 33, 0xe4bd9ce88085, 'Y', '2007-02-16 15:30:21'),
(1244, 33, 0xe7ad89e5be853c62723ee6a0b8e58786, 'Y', '2007-02-16 15:30:21'),
(1246, 33, 0xe5b7b2e7bc96e8be91, 'Y', '2007-02-16 15:30:21'),
(1251, 33, 0xe6a0b8e58786, 'Y', '2007-02-16 15:30:21'),
(1252, 33, 0xe69caae9809ae8bf87, 'Y', '2007-02-25 09:03:28'),
(1253, 33, 0xe8b4b4e69687, 'Y', '2007-02-16 15:30:21'),
(1254, 33, 0xe8b4b4e69687e7ad89e5be85e6a0b8e58786, 'Y', '2007-02-16 15:30:21'),
(1255, 33, 0xe8aebae59d9b, 'Y', '2007-02-26 13:05:59'),
(1256, 33, 0xe5aea1e6a0b8, 'Y', '2007-02-16 15:30:21'),
(1257, 33, 0xe8af9de9a298, 'Y', '2007-02-16 15:30:21'),
(1258, 33, 0xe4bd9ce88085, 'Y', '2007-02-16 15:30:21'),
(1259, 33, 0xe8b4b4e69687, 'Y', '2007-02-16 15:30:21'),
(1260, 33, 0xe69c80e5908ee8b4b4e69687, 'Y', '2007-02-16 15:30:21'),
(1261, 33, 0xe68ab1e6ad89efbc8ce4bda0e6b2a1e88eb7e5be97e8aeb8e58fafe59ca8e8aebae59d9be8b4b4e69687, 'Y', '2007-02-16 15:30:21'),
(1262, 33, 0xe6ada4e8b4b4e69687e5bf85e9a1bbe68ea5e58f97e5aea1e6a0b8efbc8ce6a0b8e58786e5908ee5b0b1e4bc9ae698bee7a4bae38082, 'Y', '2007-02-16 15:30:21'),
(1263, 33, 0xe4bfaee8aea2e58e86e58fb2, 'Y', '2007-02-16 15:30:21'),
(1267, 33, 0xe6909ce5afbbe7bb93e69e9c, 'Y', '2007-02-16 15:30:21'),
(159, 33, 0xe69687e4bbb6, 'Y', '2007-02-16 15:44:39'),
(161, 33, 0xe5b8b8e8a781e997aee9a298, 'Y', '2007-02-16 15:44:39'),
(163, 33, 0xe783ade5bf83e4baba, 'Y', '2007-02-16 15:44:39'),
(164, 33, 0xe9be99e4b98be7a281e58d8fe58aa9e88085, 'Y', '2007-02-16 15:44:39'),
(165, 33, 0xe8bf9ee68ea5, 'Y', '2007-02-16 15:44:39'),
(168, 33, 0xe5ae89e8a385e68c87e7a4ba, 'Y', '2007-02-16 15:44:39'),
(169, 33, 0xe5a682e69e9ce4bda0e5b88ce69c9be69c89e5b19ee4ba8ee887aae5b7b1e79a84e9be99e4b98be7a281, 'Y', '2007-02-16 15:44:39'),
(170, 33, 0xe4b88be8bdbde9be99e4b98be7a281e79a84e8b584e6ba90, 'Y', '2007-02-16 15:44:39'),
(173, 33, 0x736f75726365666f72676520e9be99e4b98be7a281e8aea1e794bbe7bd91e9a1b5, 'Y', '2007-02-16 15:44:39'),
(256, 33, 0xe4b880e888ace8b584e69699, 'Y', '2007-02-16 15:44:39'),
(257, 33, '', 'Y', '2012-07-15 07:07:43'),
(258, 33, 0xe8aeb8e5a49ae59bb4e6a38be8b584e69699, 'Y', '2007-02-16 15:44:39'),
(259, 33, 0xe59bb4e6a38be5b8b8e8a781e997aee9a298, 'Y', '2007-02-16 15:44:39'),
(260, 33, 0x7265632e67616d65732e676f20e696b0e997bbe7bea4e7bb84e79a84e59bb4e6a38be5b8b8e8a781e997aee9a298, 'Y', '2007-02-16 15:44:39'),
(265, 33, '', 'Y', '2012-07-15 07:07:43'),
(266, 33, 0xe4b880e4b8aae59088e4bd9ce7bd91e7ab99efbc8ce8afb7e6b58fe8a788e4b88ee8b59ee58aa9efbc81, 'Y', '2007-02-16 15:44:39'),
(267, 33, 0xe59bb4e6a38be696b0e997bb, 'Y', '2007-02-16 15:44:39'),
(271, 33, 0xe6a38be781b5e78e8b, 'Y', '2007-02-16 15:44:39'),
(272, 33, 0xe585b3e4ba8ee59bb4e6a38be79a84e6bcabe794bbefbc8ce5a4a7e58a9be68ea8e88d90efbc81, 'Y', '2007-02-16 15:44:39'),
(274, 33, 0xe4ba92e58aa8e5ada6e59bb4e6a38b, 'Y', '2007-02-16 15:44:39'),
(275, 33, 0xe5be88e5a5bde79a84e5ada6e4b9a0e7bd91e7ab99, 'Y', '2007-03-04 09:10:13'),
(276, 33, 0xe88bb1e59bbde59bb4e6a38be58d8fe4bc9ae79a84e4bb8be7bb8defbc8ce58699e5be97e5be88e5a5bd, 'Y', '2007-02-16 15:44:39'),
(281, 33, 0xe7ad96e795a5e4b88ee69cafe8afad, 'Y', '2007-02-16 15:44:39'),
(283, 33, 0xe8af98e6a38b, 'Y', '2007-02-16 15:44:39'),
(284, 33, 0xe69c89e58aa9e4ba8ee5a29ee8bf9be6a38be58a9b, 'Y', '2007-02-16 15:44:39'),
(285, 33, '', 'Y', '2012-07-15 07:07:43'),
(286, 33, 0xe5b086e4bda0e79a84e6a38be5b180e98081e69da5e68ea5e58f97e8af84e8aebaefbc8ce79c8be79c8be5a682e4bd95e4b88be5be97e69bb4e5a5bd, 'Y', '2007-02-16 15:44:39'),
(287, 33, 0xe5b8b8e8a781e697a5e69cace59bb4e6a38be794a8e8afad, 'Y', '2007-02-16 15:44:39'),
(288, 33, 0xe4bda0e5bf85e9a1bbe590ace5be97e68782e585b6e5ae83e6a38be6898be59ca8e8afb4e4bb80e5b9ba, 'Y', '2007-02-16 15:44:39'),
(291, 33, 0xe58e86e58fb2, 'Y', '2007-02-16 15:44:39'),
(292, 33, 0xe59bb4e6a38be7ae80e58fb2, 'Y', '2007-05-31 11:12:28'),
(293, 33, 0xe7bb99e6b3a8e6848fe58a9be79fade69a82e79a84e4baba, 'Y', '2007-02-16 15:44:39'),
(294, 33, 0xe59bb4e6a38be8afa6e58fb2, 'Y', '2007-05-31 11:12:28'),
(295, 33, 0xe5a682e69e9ce4bda0e4bb80e5b9bae983bde683b3e79fa5e98193e280a6, 'Y', '2007-02-16 15:44:39'),
(296, 33, 0xe59bb4e6a38be4b9a6e7b18defbc8ce599a8e585b7e4b88ee8bdafe4bbb6, 'Y', '2007-02-16 15:44:39'),
(297, 33, 0xe689b9e6b3a8e59bb4e6a38be4b9a6e79bae, 'Y', '2007-02-16 15:44:39'),
(298, 33, 0xe4b8b0e5af8ce59bb4e6a38be4b9a6e8af84, 'Y', '2007-02-16 15:44:39'),
(299, 33, 0xe6aca7e6b4b2e5ba97, 'Y', '2007-02-16 15:44:39'),
(300, 33, 0xe585b6e5ae83e59bb4e6a38be7bd91e7ab99, 'Y', '2007-02-16 15:44:39'),
(301, 33, 0xe4b99fe698afe59b9ee59088e588b6efbc8ce8bf98e69c89e585b6e5ae83e6b8b8e6888f, 'Y', '2007-02-16 15:44:39'),
(303, 33, 0xe5ae9ee697b6e7babfe4b88ae6b8b8e6888fe79a84e5a4a7e7bd91e7ab99, 'Y', '2007-02-16 15:44:39'),
(305, 33, 0xe7bd91e7ab99e58897e8a1a8, 'Y', '2007-02-16 15:44:39'),
(306, 33, 0xe69bb4e5ae8ce695b4e79a84e7bd91e7ab99e58897e8a1a8, 'Y', '2007-02-16 15:44:39'),
(337, 33, 0xe9be99e4b98be7a281e58d8fe58aa9e88085, 'Y', '2007-02-16 15:44:39'),
(340, 33, 0xe5b8b8e8a781e997aee9a298e7bc96e8be91, 'Y', '2007-10-01 09:17:55'),
(377, 33, 0xe6aca2e8bf8ee9a1b5, 'Y', '2007-02-16 15:44:39'),
(380, 33, 0xe698bee7a4bae8aeafe681af, 'Y', '2007-02-16 15:44:39'),
(383, 33, 0xe8af9de9a298e58897e8a1a8, 'Y', '2007-02-16 15:44:39'),
(384, 33, 0xe99885e8a788e8aebae59d9b, 'Y', '2007-02-16 15:44:39'),
(385, 33, 0xe696b0e8af9de9a298, 'N', '2007-02-16 15:44:39'),
(730, 33, 0xe7bc96e8be91e58187e69c9f, 'Y', '2007-02-16 15:44:39'),
(1102, 33, 0x476f476f4420e59bb4e6a38be695b0e68daee5ba93e4b88ee799bee7a791e585a8e4b9a6, 'Y', '2007-02-16 15:44:39'),
(1103, 33, 0xe8818ce4b89ae6a38be5b180e79a84e5a4a7e695b0e68daee5ba93, 'Y', '2007-02-16 15:44:39'),
(1104, 33, 0xe59bb4e6a38be79a84e5a587e5a699, 'Y', '2007-02-16 15:44:39'),
(1105, 33, 0x526f622056616e205a65696a737420e6af8fe591a8e59bb4e6a38be4b893e6a08f, 'Y', '2007-02-16 15:44:39'),
(1228, 33, 0xe7bb9fe8aea1e59bbe, 'Y', '2007-02-16 15:44:39'),
(8, 33, 0xe68ab1e6ad89efbc8ce689bee4b88de588b0e682a8e8a2abe98280e8afb7e79a84e6a38be5b180e38082e58fafe883bde5b7b2e59b9ee7bb9defbc9f, 'Y', '2007-05-17 16:05:15'),
(9, 33, 0xe68ab1e6ad89efbc8ce4b88de883bde7ab8be588bbe59b9ee68f90e5afb9e696b9e5889ae68f90e5ad90e4b98be79fb3efbc8ce59ba0e4b8bae4bc9ae9878de5a48de58588e5898de79a84e6a38be79b98e4bd8de7bdaee38082e8afb7e99885e8afbb22e68993e58aab22e79a84e8a784e58899e38082, 'Y', '2007-02-16 16:09:56'),
(12, 33, 0xe697a0e6b395e8bf9ee68ea5e695b0e68daee5ba93e38082e8afb7e7a88de5908ee5868de8af95e38082, 'Y', '2007-02-16 16:09:56'),
(13, 33, 0xe697a0e6b395e588a0e999a4e6a38be5b180e38082e58fafe883bde6b2a1e69c89e997aee9a298e38082, 'Y', '2007-02-16 16:09:56'),
(14, 33, 0xe68ab1e6ad89efbc8ce9a29de5a496e8aeafe681afe4bcbce4b98ee697a0e6b395e8bf9ee68ea5e695b0e68daee5ba93e38082, 'Y', '2007-05-17 16:03:42'),
(15, 33, 0xe68ab1e6ad89efbc8ce6a38be5b180e4bcbce4b98ee697a0e6b395e8bf9ee68ea5e695b0e68daee5ba93e38082, 'Y', '2007-05-17 16:03:42'),
(16, 33, 0xe6ada4e6898be4bcbce4b98ee697a0e6b395e8bf9ee68ea5e695b0e68daee5ba93e38082e58fafe883bde6b2a1e69c89e997aee9a298efbc8ce8afb7e7a88de5908ee5868de59b9ee69da5e79c8be6ada4e6898be698afe590a6e8a2abe8aeb0e5bd95e38082, 'Y', '2007-02-16 16:09:56'),
(17, 33, 0xe8b584e69699e4bcbce4b98ee697a0e6b395e8bf9ee68ea5e695b0e68daee5ba93e38082e5a682e69e9ce697a0e6b395e799bbe585a5efbc8ce8afb7e5868de8af95e4b880e6aca1efbc8ce5a682e69e9ce8bf98e698afe5a4b1e8b4a5efbc8ce8afb7e88194e7bb9ce694afe68c81e4babae59198e38082, 'Y', '2007-02-16 16:16:15'),
(18, 33, 0xe695b0e68daee5ba93e69fa5e8afa2e5a4b1e8b4a5e38082e8afb7e7a88de5908ee5868de8af95e38082, 'Y', '2007-02-16 16:09:56'),
(19, 33, 0xe697a0e6b395e98089e68ba9e695b0e68daee5ba93e38082e8afb7e7a88de5908ee5868de8af95e38082, 'Y', '2007-02-16 16:09:56'),
(20, 33, 0xe68ab1e6ad89efbc8ce697a0e6b395e5bc80e5a78be6a38be5b180e38082e8afb7e7a88de5908ee5868de8af95e38082, 'Y', '2007-02-16 16:09:56'),
(22, 33, 0xe68ab1e6ad89efbc8ce682a8e5bf85e9a1bbe68f90e4be9be5908de7a7b0e38082, 'Y', '2007-02-16 16:16:15'),
(27, 33, 0xe68ab1e6ad89efbc8ce682a8e4b88ee5afb9e6898be99c80e8a681e8aebee5ae9ae7ad89e7baa7efbc8ce590a6e58899e697a0e6b395e7a1aee5ae9ae98082e5bd93e8aea9e5ad90e38082, 'Y', '2007-05-17 16:03:42'),
(29, 33, 0xe68ab1e6ad89efbc8ce8aebfe5aea2e7a681e6ada2efbc8ce8afb7e58588e794b3e8afb7e4b8aae4babae5b890e688b7e38082, 'Y', '2007-05-17 16:03:42'),
(32, 33, 0xe68ab1e6ad89efbc8ce8bf98e6b2a1e8bdaee588b0e682a8e890bde5ad90e38082, 'Y', '2007-05-17 16:03:42'),
(33, 33, 0xe5af86e7a081e590abe69c89e4b88de58fafe794a8e5ad97e7aca6efbc8ce58fafe794a8e5ad97e7aca6e4b8ba612d7a2c412d5a2c302d39e4b88e2d5f2b2e2c3a3b3f21252ae7ad89e38082, 'Y', '2007-02-16 16:09:56'),
(35, 33, 0xe5af86e7a081e4b88de59088efbc8ce8afb7e5868de8af95e4b880e6aca1e38082, 'Y', '2007-02-16 16:09:56'),
(38, 33, 0xe68ab1e6ad89efbc8ce682a8e698afe590a6e5bf98e8aeb0e8be93e585a5e7ad89e7baa7efbc9f, 'Y', '2007-02-16 16:09:56'),
(39, 33, 0xe68ab1e6ad89efbc8ce6ada4e8af84e7ad89e696b9e5bc8fe8afb7e58bbfe794a822e7baa722e6889622e6aeb522, 'Y', '2007-02-16 16:09:56'),
(40, 33, 0xe68ab1e6ad89efbc8ce6ada4e890bde5ad90e4bc9ae887aae68f90efbc8ce4bd86e69cace5b180e8a784e58899e4b88de5aeb9e8aeb8e887aae68f90e38082, 'Y', '2007-02-16 16:09:56'),
(42, 33, 0xe68ab1e6ad89efbc8ce689bee4b88de588b0e682a8e683b3e8a681e79a84e8aebae59d9be38082, 'Y', '2007-02-16 16:09:56'),
(43, 33, 0xe59494efbc8ce8bf99e4b8aae8aeafe681afe4bcbce4b98ee698afe5938de5ba94e5b7b2e4b88de5ad98e59ca8e79a84e8b4b4e69687e38082, 'Y', '2007-02-16 16:09:56'),
(44, 33, 0xe68ab1e6ad89efbc8ce689bee4b88de588b0e682a8e683b3e8a681e79a84e8aeafe681afe38082, 'Y', '2007-02-16 16:09:56'),
(46, 33, 0xe68ab1e6ad89efbc8ce6ada4e794a8e688b7e5b890e58fb7e5b7b2e8a2abe4bdbfe794a8efbc8ce8afb7e5b09de8af95e585b6e5ae83e5b890e58fb7e38082, 'Y', '2007-02-16 16:09:56'),
(48, 33, 0xe697a0e6b395e59ca8e8bf9be8a18ce8bea8e8af86e697b6e68ea8e696ade695b0e580bc, 'Y', '2007-02-16 16:09:56'),
(50, 33, 0xe68ab1e6ad89efbc8ce697a0e6b395e59ca8e5be85e5b180e5aea4e689bee588b0e6ada4e6a38be5b180e38082e58fafe883bde5b7b2e69c89e4babae58aa0e585a5e6a38be5b180e38082, 'Y', '2007-02-16 16:09:56'),
(52, 33, 0xe68ab1e6ad89efbc8ce682a8e4b88de7aca6e59088e6ada4e6a38be5b180e7ad89e7baa7e88c83e59bb4e38082, 'Y', '2007-02-16 16:09:56'),
(54, 33, 0xe68ab1e6ad89efbc8ce69caae6ada3e7a1aee8be93e585a5e5af86e7a081e38082, 'Y', '2007-02-16 16:09:56'),
(55, 33, 0xe7ad89e7baa7e696b9e5bc8fe4b88de6988e, 'Y', '2007-02-16 16:09:56'),
(56, 33, 0xe68ab1e6ad89efbc8ce697a0e6ada4e794a8e688b7e5b890e58fb7e38082, 'Y', '2007-02-16 16:09:56'),
(57, 33, 0xe68ab1e6ad89efbc8ce5889de6aca1e8be93e585a5e7ad89e7baa7e5bf85e9a1bbe4bb8be4ba8e20333020e7baa7e588b0203620e6aeb5e4b98be997b4e38082, 'Y', '2007-02-16 16:09:56'),
(58, 33, 0xe68ab1e6ad89efbc8ce682a8e59ca8e695b0e580bce6a08fe8be93e585a5e4ba86e99d9ee695b0e580bce5ad97e7aca6e38082, 'Y', '2007-02-16 16:09:56'),
(59, 33, 0xe68ab1e6ad89efbc8ce58faae69c89e7bfbbe8af91e4babae59198e6898de883bde7bfbbe8af91e38082, 'Y', '2012-01-31 06:03:26'),
(60, 33, 0xe5a682e69e9ce682a8e683b3e58d8fe58aa9e7bfbbe8af91e9be99e4b98be7a281efbc8ce8afb7e59ca820225472616e736c6174696f6e2220e8aebae59d9be8b4b4e4b88ae8aeafe681afe38082, 'Y', '2007-06-07 11:40:49'),
(61, 33, 0xe68ab1e6ad89efbc8ce682a8e6b2a1e69c89e5be97e588b0e8aeb8e58fafe7bfbbe8af91e8bf99e7a78de8afade69687e38082, 'Y', '2007-02-16 16:09:56'),
(63, 33, 0xe68ab1e6ad89efbc8ce696b0e7bfbbe8af91e8be93e585a5e695b0e68daee5ba93e58f91e7949fe99499e8afafe38082, 'Y', '2007-02-16 16:09:56'),
(66, 33, 0xe68ab1e6ad89efbc8ce69cace9a1b5e4bb85e4be9be7aea1e79086e88085e4bdbfe794a8e38082, 'Y', '2007-02-16 16:09:56'),
(69, 33, 0xe68ab1e6ad89efbc8ce697a0e6b395e689bee588b0e8afa5e7ac94e8be93e585a5e38082, 'Y', '2007-02-16 16:09:56'),
(75, 33, 0xe68ab1e6ad89efbc8ce689bee4b88de588b0e8afa5e6af94e8b59be38082, 'Y', '2007-02-16 16:09:56'),
(474, 33, 0xe58aa8e4bd9ce4b88de6988eefbc8ce68896e59ca8e79baee5898de6a38be5b180e697a0e6b395e98082e794a8e38082, 'Y', '2007-05-17 16:03:42'),
(475, 33, 0xe8b4b4e79baee8b685e587bae88c83e59bb4efbc8ce8afb7e98089e68ba9e8be83e59088e79086e79a84e695b0e79baee38082, 'Y', '2007-05-17 16:03:42'),
(476, 33, 0xe6ada4e6898be58f91e7949fe99499e8afafe38082e8afb7e5868de8af95e4b880e6aca1efbc8ce88ba5e697a0e6b395e8a7a3e586b3e8afb7e9809ae79fa5e694afe68c81e4babae59198e38082, 'Y', '2007-05-17 16:03:42'),
(477, 33, 0xe8aea9e5ad90e695b0e99499e8afaf, 'Y', '2007-02-16 16:09:56'),
(714, 33, 0xe68ab1e6ad89efbc8ce689bee4b88de588b0e8afa5e8aeafe681afe8b584e69699e5a4b9e38082, 'Y', '2007-02-16 16:09:56'),
(1044, 33, 0xe6ada4e6898be8bf9de8a784e38082, 'Y', '2007-02-16 16:09:56'),
(1045, 33, 0xe697b6e99990e8bf87e79fadefbc8ce8afb7e98089e68ba9e887b3e5b091e4b880e5b08fe697b6e38082, 'Y', '2007-02-16 16:09:56'),
(1046, 33, 0xe68ab1e6ad89efbc8ce682a8e5b09ae69caae590afe794a8e6b58fe8a788e599a8e79a84636f6f6b6965e38082, 'Y', '2007-02-16 16:09:56'),
(1047, 33, 0xe68ab1e6ad89efbc8ce6ada4e6898be5b7b2e7bb8fe890bde5ad90e38082, 'Y', '2007-02-16 16:09:56'),
(1048, 33, 0xe697a0e6b395e689bee588b0e7bd91e9a1b5e38082e8afb7e68ea5e6b4bde7aea1e79086e59198efbc8ce5918ae8af89e4bb96e4bbace99499e8afafe58f91e7949fe79a84e697b6e997b4efbc8ce4bba5e58f8ae682a8e58fafe883bde5bc95e8b5b7e99499e8afafe79a84e4bd9ce6b395e38082, 'Y', '2007-02-16 16:09:56'),
(1049, 33, 0xe6ada4e5b890e58fb7e69c89e4b88de59088e8a784e5ae9ae79a84e5ad97e7aca6efbc8ce58faae69c89612d7a2c20412d5a2c20302d3920e4b88e202d5f2b20e58fafe4bba5e4bdbfe794a8efbc8ce7acace4b880e4b8aae5ad97e7aca6e5bf85e9a1bbe698af612d7a2c20412d5ae38082, 'Y', '2007-02-16 16:09:56'),
(1050, 33, 0xe68ab1e6ad89efbc8ce697a0e6b395e689bee588b0e682a8e683b3e8a681e79a84e8b4b4e69687e38082, 'Y', '2007-05-17 16:03:42'),
(1051, 33, 0xe68ab1e6ad89efbc8ce697a0e6b395e689bee588b0e682a8e683b3e8a681e7bfbbe8af91e79a84e8afade8a880e68896e7bea4e7bb84e38082e8afb7e68ea5e6b4bde694afe68c81e4babae59198e38082, 'Y', '2007-02-16 16:09:56'),
(1053, 33, 0xe6ada4e4bdbfe794a8e88085e5b7b2e7bb8fe698afe7aea1e79086e59198e38082, 'Y', '2007-02-16 16:09:56'),
(756, 33, '', 'Y', '2007-02-16 16:24:29'),
(757, 33, '', 'Y', '2007-02-16 16:24:29'),
(758, 33, '', 'Y', '2007-02-16 16:24:29'),
(759, 33, '', 'Y', '2007-02-16 16:24:29'),
(760, 33, '', 'Y', '2007-02-16 16:24:29'),
(761, 33, '', 'Y', '2007-02-16 16:24:29'),
(762, 33, '', 'N', '2007-02-16 16:24:29'),
(763, 33, '', 'Y', '2007-02-16 16:24:29'),
(764, 33, '', 'Y', '2007-02-16 16:24:29'),
(765, 33, '', 'Y', '2007-02-16 16:24:29'),
(766, 33, '', 'Y', '2007-02-16 16:24:29'),
(767, 33, '', 'Y', '2007-02-16 16:24:29'),
(768, 33, '', 'Y', '2007-02-16 16:24:29'),
(769, 33, '', 'Y', '2007-02-16 16:24:29'),
(770, 33, '', 'Y', '2007-02-16 16:24:29'),
(771, 33, '', 'Y', '2007-02-16 16:24:29'),
(772, 33, '', 'Y', '2007-02-16 16:24:29'),
(773, 33, '', 'Y', '2007-02-16 16:24:29'),
(774, 33, '', 'Y', '2007-02-16 16:24:29'),
(775, 33, '', 'Y', '2007-02-16 16:24:29'),
(776, 33, '', 'Y', '2007-02-16 16:24:29'),
(777, 33, '', 'Y', '2007-02-16 16:24:29'),
(779, 33, '', 'Y', '2007-02-16 16:24:29'),
(780, 33, '', 'Y', '2007-02-16 16:24:29'),
(782, 33, '', 'Y', '2007-02-16 16:24:29'),
(783, 33, '', 'Y', '2007-02-16 16:24:29'),
(784, 33, '', 'Y', '2007-02-16 16:24:29'),
(785, 33, '', 'Y', '2007-02-16 16:24:29'),
(786, 33, '', 'Y', '2007-02-16 16:24:29'),
(787, 33, '', 'Y', '2007-02-16 16:24:29'),
(788, 33, '', 'Y', '2007-02-16 16:24:29'),
(789, 33, '', 'Y', '2007-02-16 16:24:29'),
(790, 33, '', 'Y', '2007-02-16 16:24:29'),
(791, 33, '', 'Y', '2007-02-16 16:24:29'),
(792, 33, 0xe4b8ade59bbd, 'Y', '2012-02-10 05:08:21'),
(793, 33, '', 'Y', '2007-02-16 16:24:29'),
(794, 33, '', 'Y', '2007-02-16 16:24:29'),
(795, 33, '', 'Y', '2007-02-16 16:24:29'),
(796, 33, '', 'Y', '2007-02-16 16:24:29'),
(797, 33, '', 'Y', '2007-02-16 16:24:29'),
(798, 33, '', 'Y', '2007-02-16 16:24:29'),
(799, 33, '', 'Y', '2007-02-16 16:24:29'),
(800, 33, '', 'Y', '2007-02-16 16:24:29'),
(801, 33, '', 'Y', '2007-02-16 16:24:29'),
(802, 33, '', 'Y', '2007-02-16 16:24:29'),
(803, 33, '', 'Y', '2007-02-16 16:24:29'),
(804, 33, '', 'Y', '2007-02-16 16:26:11'),
(805, 33, '', 'Y', '2007-02-16 16:26:11'),
(806, 33, '', 'Y', '2007-02-16 16:26:11'),
(808, 33, '', 'Y', '2007-02-16 16:26:11'),
(809, 33, '', 'Y', '2007-02-16 16:26:11'),
(810, 33, '', 'Y', '2007-02-16 16:26:11'),
(811, 33, '', 'Y', '2007-02-16 16:26:11'),
(812, 33, '', 'Y', '2007-02-16 16:26:11'),
(813, 33, '', 'Y', '2007-02-16 16:26:11'),
(814, 33, '', 'Y', '2007-02-16 16:29:48'),
(815, 33, '', 'Y', '2007-02-16 16:29:48'),
(816, 33, '', 'Y', '2007-02-16 16:29:48'),
(817, 33, '', 'Y', '2007-02-16 16:29:48'),
(818, 33, '', 'Y', '2007-02-16 16:29:48'),
(819, 33, '', 'Y', '2007-02-16 16:29:48'),
(820, 33, '', 'Y', '2007-02-16 16:29:48'),
(821, 33, '', 'Y', '2007-02-16 16:29:48'),
(822, 33, '', 'Y', '2007-02-16 16:29:48'),
(823, 33, '', 'Y', '2007-02-16 16:29:48'),
(824, 33, '', 'Y', '2007-02-16 17:38:26'),
(825, 33, '', 'Y', '2007-02-16 17:38:26'),
(826, 33, '', 'Y', '2007-02-16 17:38:26'),
(827, 33, '', 'Y', '2007-02-16 17:38:26'),
(828, 33, '', 'Y', '2007-02-16 17:38:26'),
(829, 33, '', 'Y', '2007-02-16 17:38:26'),
(830, 33, '', 'Y', '2007-02-16 17:38:26'),
(831, 33, '', 'Y', '2007-02-16 17:38:26'),
(832, 33, '', 'Y', '2007-02-16 17:38:26'),
(833, 33, '', 'Y', '2007-02-16 17:38:26'),
(834, 33, '', 'Y', '2007-02-16 17:38:26'),
(835, 33, '', 'Y', '2007-02-16 17:38:26'),
(836, 33, '', 'Y', '2007-02-16 17:38:26'),
(837, 33, '', 'Y', '2007-02-16 17:38:26'),
(838, 33, '', 'Y', '2007-02-16 17:38:26'),
(839, 33, '', 'Y', '2007-02-16 17:38:26'),
(840, 33, '', 'Y', '2007-02-16 17:38:26'),
(841, 33, '', 'Y', '2007-02-16 17:38:26'),
(842, 33, '', 'Y', '2007-02-16 17:38:26'),
(843, 33, '', 'Y', '2007-02-16 17:38:26'),
(845, 33, '', 'Y', '2007-02-16 17:38:26'),
(846, 33, '', 'Y', '2007-02-16 17:38:26'),
(849, 33, '', 'Y', '2007-02-16 17:38:26'),
(850, 33, '', 'Y', '2007-02-16 17:38:26'),
(851, 33, '', 'Y', '2007-02-16 17:38:26'),
(852, 33, '', 'Y', '2007-02-16 17:38:26'),
(853, 33, '', 'Y', '2007-02-16 17:38:26'),
(854, 33, '', 'Y', '2007-02-16 17:38:26'),
(855, 33, '', 'Y', '2007-02-16 17:38:26'),
(856, 33, '', 'Y', '2007-02-16 17:38:26'),
(857, 33, '', 'Y', '2007-02-16 17:38:26'),
(858, 33, '', 'Y', '2007-02-16 17:38:26'),
(859, 33, '', 'Y', '2007-02-16 17:38:26'),
(861, 33, '', 'Y', '2007-02-16 17:38:26'),
(862, 33, '', 'Y', '2007-02-16 17:38:26'),
(863, 33, '', 'Y', '2007-02-16 17:38:26'),
(864, 33, '', 'Y', '2007-02-16 17:38:26'),
(865, 33, '', 'Y', '2007-02-16 17:38:26'),
(866, 33, '', 'Y', '2007-02-16 17:38:26'),
(867, 33, '', 'Y', '2007-02-16 17:38:26'),
(868, 33, '', 'Y', '2007-02-16 17:38:26'),
(869, 33, '', 'Y', '2007-02-16 17:38:26'),
(870, 33, '', 'Y', '2007-02-16 17:38:26'),
(871, 33, '', 'Y', '2007-02-16 17:38:26'),
(872, 33, '', 'Y', '2007-02-16 17:38:26'),
(873, 33, '', 'Y', '2007-02-16 17:38:26'),
(874, 33, '', 'Y', '2007-02-16 17:38:26'),
(875, 33, '', 'Y', '2007-02-16 17:38:26'),
(876, 33, '', 'Y', '2007-02-16 17:38:26'),
(877, 33, '', 'Y', '2007-02-16 17:38:26'),
(878, 33, '', 'Y', '2007-02-16 17:38:26'),
(879, 33, '', 'Y', '2007-02-16 17:38:26'),
(880, 33, '', 'Y', '2007-02-16 17:38:26'),
(881, 33, '', 'Y', '2007-02-16 17:38:26'),
(882, 33, '', 'Y', '2007-02-16 17:38:26'),
(883, 33, '', 'Y', '2007-02-16 17:38:26'),
(884, 33, '', 'Y', '2007-02-16 17:38:26'),
(885, 33, '', 'Y', '2007-02-16 17:38:26'),
(886, 33, '', 'Y', '2007-02-16 17:38:26'),
(887, 33, '', 'Y', '2007-02-16 17:38:26'),
(888, 33, '', 'Y', '2007-02-16 17:38:26'),
(889, 33, '', 'Y', '2007-02-16 17:38:26'),
(890, 33, '', 'Y', '2007-02-16 17:38:26'),
(892, 33, '', 'Y', '2007-02-16 17:38:26'),
(893, 33, '', 'Y', '2007-02-16 17:38:26'),
(894, 33, '', 'Y', '2007-02-16 17:38:26'),
(895, 33, '', 'Y', '2007-02-16 17:38:26'),
(896, 33, '', 'Y', '2007-02-16 17:38:26'),
(897, 33, '', 'Y', '2007-02-16 17:38:26'),
(898, 33, '', 'Y', '2007-02-16 17:38:26'),
(899, 33, '', 'Y', '2007-02-16 17:38:26'),
(900, 33, '', 'Y', '2007-02-16 17:38:26'),
(901, 33, '', 'Y', '2007-02-16 17:45:28'),
(902, 33, '', 'Y', '2007-02-16 17:45:28'),
(903, 33, '', 'Y', '2007-02-16 17:45:28'),
(904, 33, '', 'Y', '2007-02-16 17:45:28'),
(905, 33, '', 'Y', '2007-02-16 17:45:28'),
(906, 33, '', 'Y', '2007-02-16 17:45:28'),
(907, 33, '', 'Y', '2007-02-16 17:45:28'),
(908, 33, '', 'Y', '2007-02-16 17:45:28'),
(909, 33, '', 'Y', '2007-02-16 17:45:28'),
(910, 33, '', 'Y', '2007-02-16 17:45:28'),
(911, 33, '', 'Y', '2007-02-16 17:45:28'),
(913, 33, '', 'Y', '2007-02-16 17:45:28'),
(914, 33, '', 'Y', '2007-02-16 17:45:28'),
(915, 33, '', 'Y', '2007-02-16 17:45:28'),
(916, 33, '', 'Y', '2007-02-16 17:45:28'),
(917, 33, '', 'Y', '2007-02-16 17:45:28'),
(918, 33, '', 'Y', '2007-02-16 17:45:28'),
(919, 33, '', 'Y', '2007-02-16 17:45:28'),
(920, 33, '', 'Y', '2007-02-16 17:45:28'),
(921, 33, '', 'Y', '2007-02-16 17:45:28'),
(922, 33, '', 'Y', '2007-02-16 17:45:28'),
(923, 33, '', 'Y', '2007-02-16 17:45:28'),
(924, 33, '', 'Y', '2007-02-16 17:45:28'),
(925, 33, '', 'Y', '2007-02-16 17:45:28'),
(926, 33, '', 'Y', '2007-02-16 17:45:28'),
(927, 33, '', 'Y', '2007-02-16 17:45:28'),
(928, 33, '', 'Y', '2007-02-16 17:45:28'),
(929, 33, '', 'Y', '2007-02-16 17:45:28'),
(930, 33, '', 'Y', '2007-02-16 17:45:28'),
(931, 33, '', 'Y', '2007-02-16 17:45:28'),
(932, 33, '', 'Y', '2007-02-16 17:45:28'),
(933, 33, '', 'Y', '2007-02-16 17:45:28'),
(934, 33, '', 'Y', '2007-02-16 17:45:28'),
(935, 33, '', 'Y', '2007-02-16 17:45:28'),
(936, 33, '', 'Y', '2007-02-16 17:45:28'),
(937, 33, '', 'Y', '2007-02-16 17:45:28'),
(938, 33, '', 'Y', '2007-02-16 17:45:28'),
(939, 33, '', 'Y', '2007-02-16 17:45:28'),
(940, 33, '', 'Y', '2007-02-16 17:45:28'),
(941, 33, '', 'Y', '2007-02-16 17:45:28'),
(942, 33, '', 'Y', '2007-02-16 17:45:28'),
(943, 33, '', 'Y', '2007-02-16 17:45:28'),
(944, 33, '', 'Y', '2007-02-16 17:45:28'),
(945, 33, '', 'Y', '2007-02-16 17:45:28'),
(946, 33, '', 'Y', '2007-02-16 17:45:28'),
(947, 33, '', 'Y', '2007-02-16 17:45:28'),
(948, 33, '', 'Y', '2007-02-16 17:45:28'),
(949, 33, '', 'Y', '2007-02-16 17:45:28'),
(950, 33, '', 'Y', '2007-02-16 17:45:28'),
(951, 33, '', 'Y', '2007-02-16 17:45:28'),
(952, 33, '', 'Y', '2007-02-16 17:45:28'),
(953, 33, '', 'Y', '2007-02-16 17:45:28'),
(1126, 33, '', 'Y', '2007-02-16 17:45:28'),
(1127, 33, '', 'Y', '2007-02-16 17:45:28'),
(1128, 33, '', 'Y', '2007-02-16 17:45:28'),
(1129, 33, '', 'Y', '2007-02-16 17:45:28'),
(1130, 33, '', 'Y', '2007-02-16 17:45:28'),
(501, 33, 0xe9be99e4b98be7a281e6a38be6898be4b88ee4bdbfe794a8e88085e8b584e69699, 'N', '2007-10-01 07:10:00'),
(502, 33, 0xe59bb4e6a38be69cafe8afad, 'Y', '2007-02-16 18:33:16'),
(503, 33, 0xe69d82e9a1b9, 'Y', '2007-02-16 18:33:16'),
(504, 33, 0xe59bb4e6a38be8a784e58899, 'Y', '2007-02-16 18:33:16'),
(505, 33, 0xe79bae, 'Y', '2007-02-16 18:33:16'),
(506, 33, 0x4d6f6b75efbc9ae59ca8e79b98e4b88ae79a84e4b880e4b8aae7a9bae782b9e38082, 'N', '2007-02-17 10:56:24'),
(507, 33, 0xe8b4b4e79bae, 'Y', '2007-02-16 18:33:16'),
(508, 33, 0x4b6f6d69efbc9ae8b4b4e7bb99e799bde696b9e4ba8be58588e7baa6e5ae9ae79a84203c6120687265663d222f6661712e7068703f726561643d74266361743d3323456e74727938223ee79bae3c2f613eefbc8ce794a8e69da5e5bca5e8a1a5e9bb91e696b9e58588e6898be79a84e4bc98e58abfe38082, 'N', '2007-02-16 18:33:16'),
(509, 33, 0xe9be99e4b98be7a281e7a4bce4bbaa, 'Y', '2007-02-16 18:33:16'),
(510, 33, 0xe9be99e4b98be7a281e7a88be5ba8fe5b08fe6af9be79785, 'N', '2007-02-16 18:33:16'),
(511, 33, 0xe9be99e4b98be7a281e79a84e98089e58d95e4b88ee98089e9a1b9, 'Y', '2007-02-16 18:33:16'),
(512, 33, 0xe9be99e4b98be7a281e6a38be5b180, 'Y', '2007-02-16 18:33:16'),
(513, 33, 0xe9be99e4b98be7a281e7a094e58f91, 'Y', '2007-02-16 19:27:40'),
(514, 33, 0xe69591e591bdefbc81e588b0e5a484e983bde698afe7a88be5ba8fe6af9be79785efbc81, 'Y', '2007-02-16 19:27:40'),
(515, 33, 0xe682a8e59d90e59ca8e8aea1e7ae97e69cbae5898de78ea92044475320e5a4aae4b985e4ba86e38082e8afb7e6b497e4b8aae6bea1efbc8ce68da2e4b88ae5b9b2e58780e8a1a3e69c8d203a2d29, 'Y', '2007-02-16 19:27:40'),
(518, 33, 0xe78c9ce5ad90, 'N', '2007-02-16 19:27:40');
INSERT INTO `Translations` (`Original_ID`, `Language_ID`, `Text`, `Translated`, `Updated`) VALUES
(519, 33, 0x4e69676972693a20e78c9ce5ad90e698afe794a8e69da5e586b3e5ae9ae8b081e68bbfe9bb91e5ad90e38082e4b880e696b9efbc88e9809ae5b8b8e698afe8be83e5b9b4e995bfe88085efbc89e68a93e58f96e4b880e68a8ae799bde5ad90efbc8ce58fa6e4b880e696b9e98089e68ba9e4b880e9a297e68896e4b8a4e9a297e9bb91e5ad90e694bee59ca8e6a38be79b98e4b88aefbc8ce69da5e78c9ce5afb9e696b9e6898be4b8ade79a84e799bde5ad90e698afe58f8ce695b0e68896e58d95e695b0e38082e5a682e69e9ce78c9ce5afb9e4ba86e5b0b1e68bbfe9bb91e5ad90efbc8ce78c9ce99499e4ba86e5b0b1e68bbfe799bde5ad90e380820d0a0d0ae59ca8e9be99e4b98be7a281efbc8ce8bf99e4b8aae8bf87e7a88be794b1e7b3bbe7bb9fe5a484e79086e38082e68bbfe799bde5ad90e4b880e696b9e58fafe4bba5e5be97e588b0203620e79baee58d8ae79a84e8b4b4e79baee380820d0a0d0ae69c80e5a5bde698afe6a38be58a9be79bb8e5bd93e79a84e6a38be6898be6898de794a8e78c9ce5ad90e38082, 'N', '2007-02-16 19:27:40'),
(522, 33, 0xe5bc80e5a78be696b0e5b180e697b6e58fafe4bba5e7a59de5afb9e6898be5a5bde8bf90e59097efbc9f, 'Y', '2007-02-16 19:27:40'),
(523, 33, 0xe5bd93e784b6e58fafe4bba5e38082e69c89e4ba9be6a38be6898be4b99fe5969ce6aca2e4bca0e7bb9fe79a84e697a5e8afad203c6120687265663d222f6661712e7068703f726561643d74266361743d3323456e7472793738223e6f6e656761697368696d6173753c2f613ee38082, 'N', '2007-02-16 19:27:40'),
(525, 33, 0xe68891e883bde5bbbae8aeaee696b0e58a9fe883bde59097efbc9f, 'Y', '2007-02-16 19:27:40'),
(526, 33, 0xe5bd93e784b6e58fafe4bba5efbc81e8afb7e68a8ae5bbbae8aeaee799bbe59ca8203c4120485245463d222f70686f72756d2f6c6973742e7068703f663d34223ee8aebae59d9b3c2f413e2e0d0a0d0ae5b7b2e7bb8fe5bbbae8aeaee79a84e4ba8be9a1b9e58fafe58f82e8808322e9be99e4b98be7a281e8aebae59d9be6909ce5afbbe98089e9a1b922efbc8ce8bf98e69c89203c4120485245463d22687474703a2f2f73656e736569732e786d702e6e65742f3f444753576973686c69737422205441524745543d225f626c616e6b223e2253656e7365692773204c696272617279e9be99e4b98be7a281e8aeb8e684bfe58d95223c2f413e20e4bba5e58f8a22536f75726365666f726765e9be99e4b98be7a281e8aea1e794bb435653e58f98e69bb4e7baaae5bd9522e38082, 'N', '2007-02-16 19:27:40'),
(529, 33, 0xe68891e8a681e5a682e4bd95e69fa5e8afa2e789b9e5ae9ae79a84e8a784e58899efbc9f, 'Y', '2007-02-16 19:27:40'),
(530, 33, 0xe59ca8e5b8b8e8a781e997aee9a298e68896e8aebae59d9be4b8ade8afb4e6988ee682a8e79a84e69fa5e8afa2e38082e69c80e5a5bde698afe8afb4e6988ee682a8e683b3e69fa5e8afa2e79a84e8a784e58899efbc8ce794a8e59ca8e6a38be5b180e79a84e4bb80e5b9bae68385e586b5e4b8ade38082, 'Y', '2007-10-01 09:27:20'),
(531, 33, 0xe59bb4e6a38be79a84e59fbae69cace8a784e58899e698afe4bb80e5b9baefbc9f, 'Y', '2007-02-16 19:27:40'),
(532, 33, 0xe4b8a4e4bd8de5afb9e6898be59ca8e4b880e4b8aae696b9e5bda2e6a38be79b98e4b88ae58c85e59bb4e9a286e59c9fe38082e6a38be79b98e698af20313978313920e8b7afefbc8ce4bd86e4b99fe69c892039783920e8b7afe4b88e20313378313320e8b7afe79a84e38082e5afb9e6898be8bdaee6b581e59ca8e4baa4e58f89e782b9e4b88ae694bee4b88be887aae5b7b1e9a29ce889b2e79a84e6a38be5ad90e38082e9bb91e5ad90e58588e4b88befbc8ce784b6e5908ee698afe799bde5ad90e380820d0a0d0ae5a682e69e9ce890bde5ad90e5908eefbc8ce8aea9e5afb9e696b9e79a84e4b880e7bea4e6a38be5ad90e6b2a1e69c89e4ba86e6b094efbc8ce5afb9e696b9e79a84e8bf99e7bea4e6a38be5ad90e5b0b1e4bb8ee6a38be79b98e4b88ae68bbfe68e89efbc88e68f90e5ad90efbc89e38082e5a682e69e9ce890bde5ad90e4bc9ae5afbce887b4e887aae5b7b1e79a84e4b880e7bea4e6a38be5ad90e6b2a1e69c89e6b094efbc8ce8bf99e4b880e6898be698afe8bf9de8a784e79a84e7a681e5ad90e380820d0a0d0ae5bd93e58f8ce696b9e983bde8999ae6898be5908eefbc8ce5afb9e5b180e5b0b1e7bb93e69d9fefbc8ce5bc80e5a78be695b0e59cb0e8aea1e58886efbc9ae58588e5a1abe6bba1e4b8ade7ab8be7a9bae997b4efbc88e58d95e5ae98efbc89efbc8ce784b6e5908ee7a7bbe999a4e6adbbe5ad90e38082e9bb91e696b9e4b88ee799bde696b9e79a84e9a286e59c9fe698afe4bba5e58c85e59bb4e79a84e4baa4e58f89e782b9e8aea1e7ae97efbc8ce5878fe68e89e8a2abe5afb9e6898be68f90e5ad90e79a84e695b0e79baee380820d0a0d0ae8afa6e68385e58fafe58f82e880833c6120687265663d22687474703a2f2f706c6179676f2e746f2f696e7465726163746976652f696e6465782e68746d6c22207461726765743d6e65773ee4ba92e58aa8e5ada6e59bb4e6a38b3c2f613e2e, 'Y', '2007-02-16 19:27:40'),
(533, 33, 0xe593aae9878ce58fafe689bee588b0e69bb4e5a49ae79a84e59bb4e6a38be7bd91e7ab99efbc9f, 'Y', '2007-02-16 19:27:40'),
(534, 33, 0xe9be99e4b98be7a281e79a84203c6120687265663d222f6c696e6b732e706870223ee8bf9ee7bb933c2f613ee38082, 'Y', '2007-02-16 19:27:40'),
(535, 33, 0xe694b6e5ae98, 'Y', '2007-02-16 19:27:40'),
(536, 33, 0x596f7365efbc9ae7bb88e79b98efbc8ce6a38be5b180e79a84e69c80e5908ee998b6e6aeb5efbc8ce5b7b2e7bb8fe6b2a1e69c89e694bbe587bbe4b88be6b395efbc8ce58faae69c89e689a9e5b195e697a2e69c89e59cb0e79b98e79a84e69c80e4bdb3e4b88be6b395e38082, 'Y', '2007-02-16 19:27:40'),
(537, 33, 0xe58fabe59083, 'N', '2007-02-16 19:27:40'),
(538, 33, 0x4174617269efbc9ae58fabe59083e5b0b1e698afe5a881e88381e8a681e68f90e68e89e4b880e5ad90e68896e4b880e7bea4e5ad90e38082e8bf99e4b880e5ad90e68896e8bf99e4b880e7bea4e5ad90e58faae589a9e4b88be4b880e58fa3e6b094e38082e8bf99e4b880e5ad90e68896e8bf99e4b880e7bea4e5ad90e5b0b1e698af22e8a2abe58fabe5908322e380820d0a0d0ae59ca8e79c9fe79a84e6a38be79b98e4b88be6a38be697b6efbc8ce5968ae587ba22e58fabe5908322e698afe5b8b8e8a781e79a84e7a4bce8b28cefbc8ce4bd86e5b9b6e4b88de698afe5bf85e8a681e79a84e38082e9809ae5b8b8e59ca8e6a38be5b180e5bc80e5a78be5898defbc8ce58f8ce696b9e4bc9ae7baa6e5ae9ae5a5bde8afa5e5a682e4bd95e5a484e79086e38082e59ca8e68c87e5afbce6a38be68896e8aea9e5ad90e6a38be4b8adefbc8ce799bde696b9e5968ae58fabe59083e69da5e58d8fe58aa9e9bb91e696b9e698afe59088e79086e79a84e380820d0a0d0ae4bd86e698afe59ca8e7bd91e7bb9ce4b88be6a38be697b6e68993e587ba22e58fabe59083e2809de79a84e5ad97e79cbcefbc8ce9809ae5b8b8e8a2abe8a786e4b8bae5a49ae4bd99e4b98be4b8bee38082, 'N', '2007-02-16 19:27:40'),
(539, 33, 0xe68993e58aab, 'Y', '2007-02-16 19:27:40'),
(540, 33, 0x4b6fefbc9a22e68993e58aab22e698afe59ca8e6a38be79b98e4b88ae587bae78eb0e9878de5a48de68f90e58f96e69f90e4b880e5ad90e79a84e68385e586b5e38082e58aabe79a84e5ad97e99da2e6848fe4b989e698af22e697a0e7bb8822e38082, 'Y', '2007-02-17 08:51:44'),
(541, 33, 0xe697b6e997b4e794a8e58589e79a84e6a38be5b180e58fafe4bba5e9878de696b0e8aea1e697b6e59097efbc9f, 'Y', '2007-02-16 19:27:40'),
(542, 33, 0xe4b88de8a18cefbc8c3c693ee8afb7e9878de696b0e5bc80e5a78be696b0e6a38be5b180e5b9b6203c6120687265663d222f6661712e7068703f726561643d74266361743d3536223ee98089e68ba9e98082e5bd93e79a84e697b6e999903c2f613eefbc813c2f693e, 'Y', '2007-02-16 19:27:40'),
(545, 33, 0xe7baa7, 'Y', '2007-02-16 19:27:40'),
(546, 33, 0x4b7975efbc9a22e7baa722e79a84e6848fe6809de698af22e5889de5ada6e7a88be5baa622e38082e7baa7e4bb8e20333020e7baa7e588b0203120e7baa7efbc8c3120e7baa7e69c80e5bcbae38082333020e7baa7e79a84e7a88be5baa6e698afe4ba86e8a7a3e8a784e58899efbc8ce4bd86e8bf9ee4b880e79b98e6a38be983bde8bf98e6b2a1e4b88be380820d0a0d0ae9809ae5b8b8e588b020313020e7baa7e5b7a6e58fb3efbc8ce7baa7e79a84e7a88be5baa6e6898de4bc9ae7a8b3e5ae9ae4b88be69da5efbc8ce8bf99e697b6e58099e58fafe4bba5e4b88e2031203c6120687265663d222f6661712e7068703f726561643d74266361743d3323456e7472793339223ee6aeb53c2f613e20e6a38be6898be8bf9be8a18c203920e5ad90203c6120687265663d222f6661712e7068703f726561643d74266361743d33353723456e7472793937223ee8aea9e5ad903c2f613e20e5afb9e5b180e38082, 'Y', '2007-02-17 08:51:44'),
(547, 33, 0xe6aeb5, 'Y', '2007-02-16 19:27:40'),
(548, 33, 0x44616eefbc9a22e6aeb522e79a84e6848fe6809de698af22e4b893e5aeb6e7a88be5baa622e38082e6aeb5e4bb8e203120e6aeb5e5bc80e5a78befbc8ce695b0e79baee8b68ae9ab98e8b68ae5bcbae380823520e6aeb5e4b89ae4bd99e6a38be6898be68daee8afb4e79bb8e5bd93e4ba8e203120e6aeb5e8818ce4b89ae6a38be5a3abe3808228e8818ce4b89ae6a38be5a3abe6b2a1e69c89203c6120687265663d222f6661712e7068703f726561643d74266361743d3323456e7472793338223ee7baa73c2f613e20e79a84e58cbae5888629, 'Y', '2007-02-17 08:51:44'),
(549, 33, 0xe68891e59ca8e9be99e4b98be7a281e69c89e5a49ae5b091e5a4a9e58187e69c9fefbc9f, 'Y', '2007-02-16 19:27:40'),
(550, 33, 0xe69c80e5a49a20333020e5a4a9efbc88e6af8fe5b9b4efbc89efbc8ce6af8fe4b8aae69c88e5a29ee58aa020322e3520e5a4a9e58187e69c9fe38082, 'Y', '2007-02-16 19:27:40'),
(551, 33, 0x22e79baee5898de5afb9e5b18022e79a84e9a1b9e79baee698afe4bb80e5b9baefbc9f, 'N', '2007-02-16 19:27:40'),
(552, 33, 0xe7ae80e58d95e8afb4e6988e203c6120687265663d222f7374617475732e706870223ee79baee5898de5afb9e5b1803c2f613e20e79a84e9a1b9e79baeefbc9a0d0a3c756c3e0d0a3c6c693e3c623ee5a793e5908d3c2f623e20e4bdbfe794a8e88085e79a84e69cace5908de68896e58c96e5908defbc8ce58fafe99a8fe6848fe58f98e69bb4efbc8ce6a0bce5bc8fe4b88de99990e380820d0a3c6c693e3c623ee5b890e58fb73c2f623e20e4bdbfe794a8e88085e799bbe585a5e79a84e5b890e58fb7efbc8ce4b88de58fafe58f98e69bb4e380820d0a3c6c693e3c623ee5bc80e694bee5afb9e5b1803c2f623e20e7bb99e5afb9e6898be79a84e4bfa1e681afefbc8ce58fafe99a8fe6848fe58f98e69bb4e380820d0a3c6c693e3c623e444753e7ad89e7baa73c2f623e20e4bdbfe794a8e88085e79baee5898de59ca8e9be99e4b98be7a281e79a84e7ad89e7baa7efbc8ce794b1e7b3bbe7bb9fe586b3e5ae9ae380820d0a3c6c693e3c623ee58f82e88083e7ad89e7baa73c2f623e20e8a1a5e58585e79a84e7ad89e7baa7e8b584e69699efbc8ce4be8be5a682e585b6e5ae83e59bb4e6a38be7bb84e7bb87e8aea4e5ae9ae79a84e7ad89e7baa7efbc8ce58fafe99a8fe6848fe58f98e69bb4e380820d0a3c2f756c3e, 'N', '2007-02-23 14:13:28'),
(553, 33, 0xe68891e79a84e8aea1e697b6e9929fe4bd95e697b6e5bc80e5a78be8aea1e697b6efbc9f, 'Y', '2007-02-16 19:27:40'),
(554, 33, 0xe5bd93e68da2e682a8e4b88be79a84e697b6e58099efbc8ce682a8e79a84e8aea1e697b6e9929f3c623ee6898de4bc9a3c2f623ee5bc80e5a78be8aea1e697b6e380820d0a0d0ae4bba5e4b88be79a84e68385e586b5e4b88de4bc9ae8aea1e697b6efbc9a3c756c3e0d0a3c6c693ee68da2e5afb9e6898be4b88be79a84e697b6e580993c2f6c693e0d0a3c6c693ee5bd93e682a8e5a484e4ba8e203c6120687265663d222f6661712e7068703f726561643d74266361743d353623456e7472793631223ee79da1e79ca0e697b6e997b43c2f613e3c2f6c693e0d0a3c6c693ee5bd93e682a8e5a484e4ba8e203c6120687265663d222f6661712e7068703f726561643d74266361743d353623456e7472793636223ee58187e69c9f3c2f613e3c2f6c693e0d0a3c6c693ee591a8e69cabe697b6efbc88e5bf85e9a1bbe59ca8203c6120687265663d222f6661712e7068703f726561643d74266361743d33353723456e7472793434223ee98280e8afb7e6a38be5b1803c2f613e203c2f6c693ee697b6e98089e68ba9e6ada4e58a9fe883bdefbc890d0a3c2f756c3e, 'N', '2007-02-16 19:27:40'),
(556, 33, 0xe69c89e8aeb8e5a49ae7a88be5ba8fe58fafe4bba5e8a782e79c8be4b88ee7bc96e8be91e6a38be8b0b12053474620e6aa94e38082e4b880e4b8aae5a5bde98089e68ba9e698af203c6120687265663d22687474703a2f2f7777772e72656e652d67726f74686d616e6e2e64652f6a61676f2f223e4a61676f3c2f613eefbc8c4a61766120e59bb4e6a38be7bc96e8be91e599a8e380820d0a0d0ae88bb1e59bbde59bb4e6a38be58d8fe4bc9ae69c89e4b880e995bfe58897e79a84203c6120687265663d22687474703a2f2f7777772e62726974676f2e6f72672f676f70637265732f676f7063726573312e68746d6c23732d76696577223ee7a88be5ba8f3c2f613e20e58fafe8a782e79c8b2053474620e6aa94e380820d0a0d0ae5bd93e682a8e69c89e4ba862053474620e8a782e79c8be7a88be5ba8fe5908eefbc8ce58fafe4bba5e8aebee5ae9ae6b58fe8a788e599a8e69da5e8bf9ee68ea5206d696d65efbc8ce8be93e585a5276170706c69636174696f6e2f782d676f2d73676627efbc8ce58faae8a681e782b9e98089e5b0b1e58fafe4bba5e6bf80e6b4bbe7a88be5ba8fe38082, 'N', '2007-02-25 08:30:42'),
(557, 33, 0xe5a682e4bd95e5bc80e5a78be696b0e6a38be5b180efbc9f, 'Y', '2007-02-16 19:36:28'),
(558, 33, 0xe69c89e587a0e7a78de696b9e5bc8fe58fafe4bba5e5bc80e5a78be696b0e6a38be5b180efbc9a3c554c3e0d0a0d0a3c4c493ee58aa0e585a5203c4120485245463d2277616974696e675f726f6f6d2e706870223ee5be85e5b180e5aea43c2f413e20e79a84e5afb9e5b180e380820d0a0d0ae5a682e69e9ce682a8e683b3e689bee696b0e5afb9e6898be5b0b1e794a8e8bf99e4b8aae696b9e6b395e38082e9a696e58588efbc8ce782b9e98089203c6120687265663d222f77616974696e675f726f6f6d2e706870223ee5be85e5b180e5aea43c2f613ee38082e689bee588b0e683b3e58aa0e585a5e79a84e6a38be5b180efbc8ce784b6e5908ee782b9e98089e5b7a6e8beb9e79a84e8939de889b222e8b584e6969922e38082e59ca8e8bf99e4b880e9a1b5e79a84e4b88be696b9e5ba94e8afa5e69c89e6a38be5b180e79a84e8afa6e7bb86e8b584e69699e38082e5a682e69e9ce682a8e683b3e58aa0e585a5efbc8ce5b0b1e782b9e9808922e58aa0e585a522e38082e5b0b1e698afe8bf99e6a0b7e7ae80e58d95e380820d0a0d0a3c4c493ee59ca8203c4120485245463d2277616974696e675f726f6f6d2e706870223ee5be85e5b180e5aea43c2f413e20e5888ae799bbe682a8e887aae5b7b1e8aebee5ae9ae79a84e6a38be5b180e380820d0a0d0ae5a682e69e9c203c6120687265663d2277616974696e675f726f6f6d2e706870223ee5be85e5b180e5aea43c2f613e20e6b2a1e69c89e682a8e683b3e58aa0e585a5e79a84e6a38be5b180efbc8ce982a3e5b9bae682a8e58fafe4bba5e5888ae799bbe887aae5b7b1e79a84e6a38be5b180e38082e9a696e58588efbc8ce5a1abe58699e5be85e5b180e5aea4e4b88be696b9e79a84e8a1a8e6a0bce38082e782b9e9808922e5a29ee58aa0e6a38be5b18022e38082e7ad89e5be85e4b880e4b88befbc8ce4b99fe8aeb8e587a0e5a4a9e5908ee682a8e5b0b1e69c89e6a38be58fafe4b88be4ba86e380820d0a0d0a3c4c493ee98280e8afb7e682a8e79a84e69c8be58f8be380823c42523e0d0ae5a682e69e9ce682a8e79fa5e98193e69f90e4bd8de5afb9e6898be79a84e5b890e58fb7efbc8ce682a8e58fafe4bba5e98280e8afb7e4bb96e69da5e4b88be6a38befbc8ce8bf9be585a5e98089e58d95e4b8ade79a84203c6120687265663d222f6d6573736167652e7068703f6d6f64653d496e76697465223ee98280e8afb73c2f613ee38082e5a1abe4b88ae683b3e8a681e79a84e6a38be5b180e8aebee5ae9aefbc8ce784b6e5908ee98081e587bae98280e8afb7e38082e682a8e79a84e5afb9e6898be58fafe4bba5e4bfaee694b9e6a38be5b180e8aebee5ae9ae380820d0ae59ca8e6af8fe4bd8de6a38be6898be9a1b5e79a84e4b88be696b9e4b99fe69c8922e98280e8afb7e8bf99e4bd8de6a38be6898b22e79a84e8bf9ee68ea5e38082e4bdbfe794a8e8bf99e4b8aae8bf9ee68ea5e4b99fe883bde98280e8afb7e69c8be58f8befbc8ce8808ce4b894e69bb4e5bfabe9809fe380823c2f554c3e, 'N', '2007-10-01 07:10:00'),
(559, 33, 0xe5a682e4bd95e890bde5ad90efbc9f, 'Y', '2007-02-16 19:36:28'),
(560, 33, 0xe59ca8203c6120687265663d222f7374617475732e706870223e20e79baee5898de5afb9e5b1803c2f613e20e69c89e68da2e682a8e4b88be79a84e6a38be5b180e38082e782b9e98089e6a38be5b180e58fb7e7a081e5b0b1e4bc9ae68993e5bc80e6a38be5b180e380820d0a0d0ae68993e5bc80e6a38be5b180e5908eefbc8ce782b9e98089e7a9bae79a84e4baa4e58f89e782b9e5b0b1e58fafe4bba5e890bde5ad90efbc88e4b88be587bae4b880e6898befbc89e38082e5a682e69e9ce8bf99e4b880e6898be68f90e8b5b0e4bbbbe4bd95e5afb9e6898be6a38be5ad90efbc8ce7b3bbe7bb9fe5b0b1e4bc9ae887aae58aa8e5a484e79086e38082e8999ae6898be68896e8aea4e8be93e4b99fe58fafe782b9e98089e6a38be79b98e4b88be79a84e8bf9ee68ea5e380820d0a0d0ae5bd93e5819ae587bae696b0e79a84e890bde5ad902fe8999ae6898b2fe8aea4e8be93e4b98be5908eefbc8ce68c89e4b88b22e98081e587ba22e69da5e7a1aee5ae9ae682a8e79a84e98089e68ba9e38082e5a682e69e9ce682a8e694b9e58f98e4b8bbe6848fefbc8ce5b0b1e68c89e4b88b22e59b9ee6898b22e68c89e992aee38082, 'Y', '2007-06-07 17:31:06'),
(561, 33, 0xe5a682e4bd95e588a0e999a4e8bf9be8a18ce4b8ade79a84e5afb9e5b180efbc9f, 'Y', '2007-02-16 19:36:28'),
(562, 33, 0xe59ca8e7acace58d81e6898be4b98be5898defbc8ce6a38be79b98e4b88be696b9e4bc9ae69c8922e588a0e999a422e98089e9a1b9e38082e5a682e69e9ce782b9e98089e588a0e999a4efbc8ce4b88de4bc9ae5bdb1e5938de682a8e79a84e7ad89e7baa7e38082e8b685e8bf87e58d81e6898be4b98be5908eefbc8ce6a38be5b180e5b0b1e697a0e6b395e588a0e999a4e38082e5b0b1e5838fe585b6e4bb96e79a84e8a18ce58aa8e4b880e6a0b72c20e588a0e999a4e698afe4b880e4b8aae4b8a4e6ada5e9aaa4e79a84e8a18ce58aa83a20e4bda0e8a681e7a1aee8aea4e4bda0e79a84e98089e68ba9e38082, 'N', '2007-07-03 21:34:58'),
(563, 33, 0xe5a682e4bd95e7bb93e69d9fe5afb9e5b180efbc9f, 'Y', '2007-02-16 19:36:28'),
(564, 33, 0xe58faae69c89e68da23c693ee682a83c2f693ee4b88be697b6e6898de883bde7bb93e69d9fe5afb9e5b180e380820d0a3c554c3e0d0a3c4c493ee682a8e4b88ee5afb9e6898be8bf9ee7bbade8999ae6898be38082e8bf99e698afe6ada3e5b8b8e79a84e7bb93e69d9fe5afb9e5b180e696b9e5bc8fe38082e784b6e5908ee4bda0e4bbace5b086e782b9e98089e6adbbe5ad90e38082e784b6e5908ee9be99e4b98be7a281e4bc9ae695b0e59cb0efbc8ce586b3e5ae9ae8839ce8b49fe380820d0a0d0a3c4c493ee4bdbfe794a822e8aea4e8be9322e68c89e992aee38082e8aea4e8be93e5908ee7ad89e7baa7e4bc9ae58f97e588b0e5bdb1e5938de380820d0a0d0a3c4c493ee8aea9e6a38be5b180e697b6e997b4e794a8e5ae8ce380823c693e2820e4bd86e698afe8afb7e682a8e58588e88083e89991e585b6e5ae83e98089e68ba9efbc8129203c2f693ee5a682e69e9ce682a8e79a84e697b6e997b4e794a8e5ae8cefbc8ce682a8e5b0b1e7ae97e8be93e4ba86efbc8ce682a8e79a84e7ad89e7baa7e4b99fe4bc9ae58f97e588b0e5bdb1e5938de380820d0a3c2f554c3e, 'N', '2007-06-07 17:31:06'),
(565, 33, 0xe9be99e4b98be7a281e4bb8be7bb8d, 'Y', '2007-02-16 19:36:28'),
(566, 33, 0xe8bf99e9878ce698afe4bb80e5b9bae59cb0e696b9efbc9f, 'Y', '2007-02-16 19:36:28'),
(567, 33, 0xe59ca8e9be99e4b98be7a281efbc88444753efbc89e58fafe4bba5e78ea9203c6120687265663d226661712e7068703f726561643d74266361743d3323456e747279313532223ee59b9ee59088e588b63c2f613e20e59bb4e6a38be38082e5be88e7b1bbe4bcbce9809ae4bfa1e4b88be6a38be380820d0a0d0ae6a38be6898be9809ae5b8b8e4b880e591a8e4b88be4ba94e6898be38082e59ba0e6ada4e4b88be4b880e79b98e6a38be8a681e88ab1e695b0e591a8e697b6e997b4efbc9be9be99e4b98be7a281e8b49fe8b4a3e69699e79086e69c89e585b3e8aea1e697b6e4b88ee69c89e69588e8af84e7ad89e79a8422e9babbe783a622e5b7a5e4bd9ce380820d0a0d0ae59ca8e8bf99e9878c3c623ee697a0e6b3953c2f623ee4b88b203c6120687265663d226661712e7068703f726561643d74266361743d3323456e747279313533223ee5ae9ee697b63c2f613e20e5afb9e5b180e38082e5ae9ee697b6e5afb9e5b180e79a84e6848fe6809de698afefbc8ce7baa6e4b880e5b08fe697b6e5b0b1e58fafe4bba5e4b88be5ae8ce4b880e79b98e6a38be38082e5a682e69e9ce682a8e5969ce6aca2e4b88be5ae9ee697b6e5afb9e5b180efbc8ce682a8e58fafe4bba5e8af95e8af95e79c8b203c6120687265663d22687474703a2f2f73656e736569732e786d702e6e65742f3f476f53657276657222207461726765743d225f626c616e6b223ee585b6e5ae833c2f613e20e5ae9ee697b6e59bb4e6a38be7bd91e7ab99efbc8ce4be8be5a682203c6120687265663d22687474703a2f2f6b67732e6b69736569646f2e636f6d2f22207461726765743d225f626c616e6b223e4b47533c2f613e20e68896203c6120687265663d22687474703a2f2f70616e64612d6967732e6a6f796a6f792e6e65742f22207461726765743d225f626c616e6b223e4947533c2f613ee380820d0a0d0a44475320e4b99fe68f90e4be9b203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f70686f72756d2f223ee8aebae59d9b3c2f613e20e69da5e8aea8e8aebae59bb4e6a38be4b88ee9be99e4b98be7a281e38082, 'N', '2007-03-05 10:32:46'),
(568, 33, 0xe68891e8bf98e4b88de6b885e6a59ae68891e79a84e5889de5a78be7ad89e7baa7e280a6, 'Y', '2007-02-16 19:36:28'),
(569, 33, 0xe5a682e69e9ce682a8e5889ae5ada6e59bb4e6a38befbc8ce982a3e5b9bae682a8e4b99fe8aeb8e698af3c756c3e0d0a3c6c693e333020e7baa7efbc9ae79fa5e98193e59bb4e6a38be8a784e588990d0a3c6c693e32392d323820e7baa7efbc9ae4b88be8bf87e587a0e79b98e59bb4e6a38b0d0a3c6c693e32372d323620e7baa7efbc9ae8b5a2e8bf87e585b6e5ae83e5889de5ada6e88085e587a0e79b98e6a38b0d0a3c6c693e32352d323220e7baa7efbc9ae8b5a2e8bf87e585b6e5ae83e99d9ee5889de5ada6e88085e587a0e79b98e6a38b0d0a3c2f756c3e0d0a0d0ae58fa6e4b880e7a78de8af84e5ae9a22e8bf9be998b6e5889de5ada6e8808522e79a84e696b9e5bc8fe698afefbc8ce88ab1e7baa620313020e58886e9929fe5ae8ce68890203c4120485245463d687474703a2f2f7777772e6d6f746f7273636f70652e636f6d2f646f6a6f2f74657374732f205441524745543d5f626c616e6b3ee6ada4e6b58be9aa8c3c2f413e20e69da5e586b3e5ae9ae682a8e59ca8e9be99e4b98be7a281e79a84e5889de5a78be7ad89e7baa7e38082, 'N', '2007-02-16 19:36:28'),
(570, 33, 0xe9be99e4b98be7a281e8aea1e697b6e696b9e5bc8f, 'Y', '2007-02-16 19:36:28'),
(571, 33, 0xe4b8bae4bd95e58187e69c9fe697b6e997b4e69c89e99990e588b6efbc9f, 'Y', '2007-02-16 19:36:28'),
(572, 33, 0xe5a682e69e9ce58187e69c9fe6b2a1e69c89e99990e588b6efbc8ce682a8efbc88e68896e5afb9e6898befbc89e4b99fe8aeb8e4bc9ae9878de5a48de98089e68ba9e4b880e5a4a9e79a84e58187e69c9fe69da5e981bfe5858de794a8e58589e5afb9e5b180e697b6e997b4e38082e5a682e6ada4e5b086e4bdbfe58e9fe69da5e8aebee5ae9ae79a84e697b6e99990e5a4b1e58ebbe6848fe4b989e380820d0a0d0ae59ba0e6ada4e9be99e4b98be7a281e5afb9e58187e69c9fe69c89e4bba5e4b88be99990e588b6efbc9a0d0a3c756c3e3c6c693ee5b7b2e7bb8fe5bc80e5a78be79a84e58187e69c9f3c623ee697a0e6b3953c2f623ee8a2abe58f96e6b688e380823c2f6c693e3c2f756c3e, 'N', '2007-02-16 19:36:28'),
(573, 33, 0xe5b8b8e8a781e997aee9a298e69c80e8bf91e69c89e4bd95e4bfaee694b9efbc9f, 'Y', '2007-10-01 09:27:20'),
(574, 33, '', 'Y', '2007-02-16 19:36:28'),
(575, 33, 0xe9be99e4b98be7a281e4b8bae4bd95e8a681e79fa5e98193e68891e79a84e794b5e5ad90e982aee4bbb6e59cb0e59d80efbc9f, 'Y', '2007-02-16 19:36:28'),
(576, 33, 0xe4b8bae4ba86e4bca0e98081e696b0e79a84e5af86e7a081efbc88e5a682e69e9ce69c89e6ada4e99c80e8a681efbc89e38082e4bca0e98081e696b0e5af86e7a081e588b03c693ee582a8e5ad98e59ca8e6a38be6898be4b8aae4babae8b584e696993c2f693ee79a84e794b5e5ad90e982aee4bbb6e59cb0e59d80efbc8ce6af94e8be83e5aeb9e69893e8aea4e8af81e6a38be6898be380820d0a0d0ae9be99e4b98be7a281e5b08ae9878de99a90e7a781efbc9a44475320e4b88de4bc9ae4b8bbe58aa8e5af84e98081e4b88de99c80e8a681e79a84e4bfa1e4bbb6e38082e697a0e4babae883bde79c8be588b0e585b6e5ae83e4babae79a84e794b5e5ad90e982aee4bbb6e59cb0e59d80efbc8ce794b5e5ad90e982aee4bbb6e59cb0e59d80e4b99fe4b88de4bc9ae58d96e7bb99e4bbbbe4bd95e4babae380820d0a0d0ae9be99e4b98be7a281e5aeb9e8aeb8e794a8e688b73c693ee4b88de582a8e5ad983c2f693ee794b5e5ad90e982aee4bbb6e59cb0e59d80e38082e59ba0e6ada4e8afb73c693ee5b08fe5bf833c2f693ee4b88de8a681e5bf98e8aeb0e5af86e7a081efbc81, 'Y', '2007-10-01 07:10:00'),
(577, 33, 0xe697a5e69cace5bc8fe58092e695b028e8afbbe7a79229e8aea1e697b6e698afe4bb80e5b9baefbc9f, 'Y', '2007-06-06 20:13:37'),
(578, 33, 0xe5bd93e4b8bbe8a681e697b6e997b4e794a8e58589e5908eefbc8ce6a38be6898be79a843c623ee6af8fe4b880e6898b3c2f623ee983bde69c89e59bbae5ae9ae79a84e697b6e99990e38082e999a4e6ada4e4b98be5a496efbc8ce8bf98e69c89e7baa6e5ae9ae5a5bde79a84e6aca1e695b0efbc9a0d0a3c554c3e0d0a3c4c493ee5bd93e6a38be6898be59ca8e697b6e99990e58685e890bde5ad90efbc8ce8aea1e697b6e9929fe5b0b1e59b9ee588b0e697b6e99990e79a84e5bc80e5a78befbc8ce6aca1e695b0e4b99fe4b88de4bc9ae5878fe5b091e380823c2f4c493e0d0a0d0a3c4c493ee5bd93e6a38be6898be59ca8e697b6e99990e58685e6b2a1e69c89e890bde5ad90efbc8ce6aca1e695b0e5b0b1e4bc9ae5878fe5b091e4b880e6aca1efbc8ce8aea1e697b6e7ab8be588bbe4bb8ee5a4b4e5bc80e5a78be380823c2f4c493e0d0a3c2f554c3e0d0ae5bd93e6a38be6898be6b2a1e69c89e589a9e4b88be6aca1e695b0e4b88ee697b6e99990efbc8ce5b0b1e697b6e5b0bde8b4a5e38082, 'N', '2007-02-16 19:46:03'),
(579, 33, 0xe58aa0e68bbfe5a4a7e5bc8fe58092e695b028e8afbbe7a79229e8aea1e697b6e698afe4bb80e5b9baefbc9f, 'Y', '2007-06-06 20:13:37'),
(580, 33, 0xe5bd93e4b8bbe8a681e697b6e997b4e794a8e5b0bde5908eefbc8ce6a38be6898be890bde5ad90e4bebfe69c893c623ee697b6e999903c2f623ee380820d0a0d0ae4be8be5a682efbc9a20313520e697a5e4b88b20313020e5ad90efbc9a0d0ae5a682e69e9ce6a38be6898be59ca8e697b6e99990e58685e4b88be587bae7acac20313020e6898befbc8ce8aea1e697b6e9929fe4bebfe9878de696b0e5bc80e5a78be8aea1e697b6efbc88e68ea5e4b88be69da5e79a8420313020e5ad90e8a681e59ca820313520e697a5e58685e4b88be5ae8cefbc89e380820d0a0d0ae5a682e69e9ce6a38be6898be69caae883bde59ca8e697b6e99990e58685e4b88be5ae8cefbc8ce5b0b1e8be93e68e89e6a38be5b180e38082, 'N', '2007-02-16 19:46:03'),
(581, 33, 0xe8b4b9e99baae5bc8fe8aea1e697b6e698afe4bb80e5b9baefbc9f, 'Y', '2007-06-06 20:13:37'),
(582, 33, 0xe6a38be6898be6af8fe6aca1e890bde5ad90e5908eefbc8ce5b0b1e4bc9ae5a29ee58aa022e9a29de5a49622e697b6e997b428e69c80e5a49ae4b88de8b685e8bf87e4b8bbe8a681e697b6e997b429e380820d0a0d0ae5bd93e6a38be6898be794a8e58589e697b6e997b4e697b6efbc8ce5b0b1e8be93e68e89e6a38be5b180e38082, 'N', '2007-02-16 19:46:03'),
(583, 33, 0xe79da1e79ca0e697b6e997b4e698afe590a6e4bc9ae5bdb1e5938de8b4b9e99baae5bc8fe8aea1e697b6efbc9f, 'Y', '2007-02-16 19:46:03'),
(584, 33, 0xe4b8bee4be8be8afb4e6988eefbc9a0d0ae5a682e69e9ce6af8fe591a8e683b3e4b88b203320e6898befbc8ce8808ce682a8e4b88de5b88ce69c9be59ca8e591a8e585ade68896e591a8e697a5e794a8e58589e697b6e997b4e380820d0ae5b0b1e698af282037202d20322029e697a5207820282032342068202d2039206820e79da1e79ca0e697b6e997b4292f203320e6898b203d20e6af8fe6898be5a29ee58aa020323520e5b08fe697b6e79a84e8b4b9e99baae8aea1e697b6efbc8c20e591a8e69cabe4b88de8aea1e697b6e38082, 'Y', '2007-02-16 19:46:03'),
(585, 33, 0xe79da1e79ca0e697b6e997b4e698afe4bb80e5b9baefbc9f, 'N', '2007-02-19 19:26:55'),
(586, 33, 0xe59ca8e8aebee5ae9ae4b8ba22e79da1e79ca022e79a84e697b6e6aeb5efbc8ce8aea1e697b6e9929fe4bc9ae69a82e5819cefbc8ce589a9e4bd99e79a84e697b6e997b4e4b88de4bc9ae5878fe5b091e38082, 'N', '2007-02-17 06:07:38'),
(587, 33, 0xe4b8bae4bd95e68891e79a84e8aea1e697b6e9929fe59ca820313020e58886e9929fe58685e5878fe5b091203920e5b08fe697b6efbc9f, 'Y', '2007-02-16 19:46:03'),
(588, 33, 0xe5a682e69e9ce682a8e79c8be588b0e8aea1e697b6e9929fe8bf99e6a0b7e5a4a7e5b985e5878fe5b091e697b6e997b4efbc8ce682a8e5ba94e8afa5e8a681e79da1e4b880e4b88be4ba86203b2d290d0a0d0ae5bd93e8aea1e697b6e9929fe698bee7a4bae682a8e8bf98e69c89203320e5a4a9e697b6e997b4efbc8ce6848fe6809de698afefbc9a0d0a3c6e6f77723ee682a8e69c893c2f6e6f77723e203c6e6f77723e332078202832342d39293c2f6e6f77723e203d203c6e6f77723e343520e5b08fe697b63c2f6e6f77723e20e79a84e99d9ee79da1e79ca0e697b6e997b4e380820d0a0d0ae5bd93e8aea1e697b6e9929fe698bee7a4bae682a8e8bf98e69c89203220e697a520313420e5b08fe697b6efbc8ce6848fe6809de698afefbc9a0d0a3c6e6f77723ee682a8e69c893c2f6e6f77723e203c6e6f77723e322078202832342d3929202b2031343c2f6e6f77723e203d203c6e6f77723e343420e5b08fe697b63c2f6e6f77723e20e79a84e99d9ee79da1e79ca0e697b6e997b4e38082, 'Y', '2007-02-16 19:46:03'),
(589, 33, 0xe4b8bae4bd95e68891e697a0e6b395e694b9e58f98e68891e4b8aae4babae8b584e69699e4b8ade79a84e79da1e79ca0e697b6e997b4efbc9f, 'Y', '2007-02-16 19:46:03'),
(590, 33, 0xe59ba0e4b8bae6af8fe5a4a9e694b9e58f98e4b889e6aca1e79da1e79ca0e697b6e997b4e4bc9ae5819ce6ada2e8aea1e697b6e9929fe38082e999a4e99d9ee682a8e69c80e8bf91e6b2a1e69c89e4bfaee694b9efbc8ce682a8e6898de883bde58f98e58aa8e79da1e79ca0e697b6e997b4e38082, 'Y', '2007-02-17 06:07:38'),
(591, 33, 0xe68891e883bde5a29ee58aa0e887aae5b7b1e79a84e5afb9e5b180e697b6e997b4e59097efbc9f, 'Y', '2007-02-16 19:46:03'),
(592, 33, 0xe4b88de883bde38082, 'N', '2007-02-16 19:46:03'),
(593, 33, 0xe68891e883bde5a29ee58aa0e5afb9e6898be79a84e5afb9e5b180e697b6e997b4e59097efbc9f, 'Y', '2007-02-16 19:46:03'),
(594, 33, '', 'N', '2007-02-16 19:46:03'),
(595, 33, 0xe58187e69c9fe698afe4bb80e5b9baefbc9f, 'Y', '2007-02-16 19:54:05'),
(596, 33, 0xe5bd93e682a8e4bc91e58187e697b6efbc8ce68896e7aa81e784b6e59ba0e585ace587bae5b7aee697b6efbc8ce58fafe4bba5e69a82e5819ce8aea1e697b6e9929fe380820d0a0d0ae8afb7e782b9e98089203c4120485245463d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f75736572696e666f2e706870223ee4bdbfe794a8e880853c2f613e20e79a84203c4120485245463d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f656469745f7661636174696f6e2e706870223ee5bc80e5a78be4bc91e581873c2f613e20e69da5e5ae89e68e92e58187e69c9fe697b6e997b4e38082e58187e69c9fe78ab6e68081e5b086e698bee7a4bae59ca8e79baee5898de5afb9e5b180e4b88ee4bdbfe794a8e88085e8b584e69699e38082, 'N', '2007-06-21 11:30:49'),
(597, 33, 0xe58092e695b028e8afbbe7a79229e8aea1e697b6, 'Y', '2007-06-06 20:13:37'),
(598, 33, 0x42796f2d796f6d69efbc9ae5bd93e6a38be5b180e4b8bbe8a681e697b6e997b4e794a8e5ae8ce5908ee79a84e58092e695b0e697b6e99990e8a784e58899e38082, 'Y', '2007-06-06 20:13:37'),
(599, 33, 0xe68891e79a84e79da1e79ca0e697b6e997b4e698afe68c89e785a7e593aae4b880e4b8aae697b6e58cbaefbc9f, 'Y', '2007-02-16 19:54:05'),
(600, 33, 0xe9be99e4b98be7a281e4bc9ae4bdbfe794a8e682a8e79a84e5bd93e59cb0e697b6e58cbaefbc88e4bba5e58f8ae697a5e58589e88a82e7baa6e697b6e997b4efbc89efbc8ce794b1e682a8e887aae5b7b1e59ca8e4b8aae4babae8b584e69699e4b8ade8aebee5ae9ae38082, 'Y', '2007-02-16 19:54:05'),
(601, 33, '', 'Y', '2012-07-15 07:07:43'),
(602, 33, 0x53474620e698af20536d6172742047616d6520466f726d617420e79a84e7bca9e58699efbc8ce8bf99e698afe794a8e69da5e582a8e5ad98e59bb4e6a38befbc88e68896e585b6e5ae83e6b8b8e6888fefbc89e6a38be8b0b1e79a84e6a1a3e6a188e38082e7bb86e88a82e8afb7e79c8b5347462046465b345d20e6a087e58786e79a84203c6120687265663d22687474703a2f2f7777772e7265642d6265616e2e636f6d2f7367662f22207461726765743d6e65773ee6ada3e5bc8fe6a0bce5bc8f3c2f613ee38082, 'Y', '2007-02-25 08:30:42'),
(603, 33, 0xe4b8bae4bd95e9be99e4b98be7a281e4b88de698bee7a4bae5afb9e6898be79a84e794b5e5ad90e982aee4bbb6e59cb0e59d80efbc9f, 'Y', '2007-02-16 19:54:05'),
(604, 33, 0xe59ba0e4b8bae9be99e4b98be7a281e4bc9ae4bf9de99a9ce682a8e5afb9e6898befbc88e4b88ee682a8efbc89e79a84e99a90e7a781e380820d0a0d0ae5a682e69e9ce682a8e69bb4e683b3e5a49ae4ba86e8a7a3e682a8e79a84e5afb9e6898befbc8ce682a8e5bf85e9a1bbe79bb4e68ea5e8afa2e997aee682a8e79a84e5afb9e6898be38082, 'Y', '2007-02-16 19:54:05'),
(605, 33, 0xe5a682e4bd95e59ca8e6a38be8b0b12053474620e6a1a3e582a8e5ad98e69687e5ad97efbc9f, 'Y', '2007-02-25 08:46:12'),
(606, 33, 0xe59ca8e682a8e79a84e79599e8a880e5898de5908ee58aa0e4b88ae68c87e4bba4efbc9a20266c743b636f6d6d656e742667743b20e4bba5e58f8a20266c743b2f636f6d6d656e742667743b200d0a0d0ae4be8be5a682efbc9ae59ca8e682a8e8bf9be8a18ce4b8ade79a84e6a38be5b180efbc9a200d0a0d0a312e20e59ca8e682a8e79a8422e98081e587ba22e79599e8a880e6a08fe4b8ade8be93e585a53a200d0a0d0ae8bf99e58faae698afe6b58be8af95efbc8ce8afb7e588abe79086e4bc9ae380820d0a266c743b636f6d6d656e742667743b0d0ae6b58be8af95e79599e8a880efbc8ce5ba94e8afa5e4bc9ae587bae78eb0e59ca8534746e380820d0a266c743b2f636f6d6d656e742667743b0d0ae6b58be8af95e79599e8a880efbc8ce5ba94e8afa5e4b88de4bc9ae587bae78eb0e59ca8534746e380820d0a0d0a322e20e98081e587bae682a8e79a84e890bde5ad90e38082200d0a332e20e4b88be8bdbde6a38be8b0b12053474620e6aa94e38082200d0a342e20e68993e5bc80e6a38be8b0b12053474620e69687e4bbb62028e4bdbfe794a8e59bb4e6a38be8bdafe4bbb6e68896e69687e5ad97e7bc96e8be91e8bdafe4bbb629e380820d0a0d0a352e20e8bf99e4b880e6898be79a84e79599e8a880e698afefbc9a200d0a266c743be682a8e79a84e5b890e58fb72667743b3a20e6b58be8af95e79599e8a880efbc8ce5ba94e8afa5e4bc9ae587bae78eb0e59ca8534746e380820d0a0d0a362e20e5a682e69e9ce682a8e5b88ce69c9be79599e8a880e59ca8e6a38be5b180e7bb93e69d9fe5908ee6898de58fafe8a2abe99885e8afbbefbc8ce5b0b1e8a681e58699e6889020266c743b68696464656e2667743b20266c743b2f68696464656e2667743b20e8808ce4b88de698af20266c743b636f6d6d656e742667743b20266c743b2f636f6d6d656e742667743b20e8afb7e6b3a8e6848fefbc81e99a90e8978fe79a84e79599e8a8803c753ee58faae883bd3c2f753e20e9808fe8bf87e6a38be8b0b12053474620e6a1a3e6a188e69da5e99885e8afbbe380820d0a0d0a266c743b636f6d6d656e742667743b20266c743b2f636f6d6d656e742667743b20e4b88e20266c743b68696464656e2667743b20266c743b2f68696464656e2667743b20e58fafe4bba5e7ae80e58699e6889020266c743b632667743b20266c743b2f632667743b20e4b88e20266c743b682667743b20266c743b2f682667743be380820d0a0d0ae6ada3e5b8b8e79599e8a880e69687e5ad972028e6b2a1e69c89e58aa0e4b88a20266c743b636f6d6d656e742667743b20e4b88e20266c743b2f636f6d6d656e742667743b20e79a84e69687e5ad972920e58faae883bde794b1e5afb9e5b180e79a84e58f8ce696b9e99885e8afbbe38082e585b6e5ae83e4babae697a0e6b395e99885e8afbbefbc8ce8808ce4b894e4b99fe4b88de4bc9ae8be93e585a5e588b0e6a38be8b0b12053474620e6aa94e38082e8bf99e698afe4b8bae4ba86e4bf9de99a9ce682a8e79a84e99a90e7a781e38082, 'N', '2007-06-13 15:52:24'),
(607, 33, 0xe68891e883bde68890e4b8bae9be99e4b98be7a281e79a84e7a094e58f91e4babae59198e59097efbc9f, 'Y', '2007-02-19 21:37:29'),
(608, 33, 0xe4b99fe8aeb8e58fafe4bba5e38082e682a8e5bf85e9a1bbe7869fe68289e59bb4e6a38be8a784e58899efbc8c50485020e4b88e204d7953514ce380820d0a0d0ae8afb7e58f82e99885203c4120485245463d22687474703a2f2f736f75726365666f7267652e6e65742f70726f6a656374732f647261676f6e676f73657276657222205441524745543d225f626c616e6b223e536f75726365466f726765e9be99e4b98be7a281e7a094e58f91e7bd91e9a1b53c2f413e20e5b9b6e4b894e8afb7e6b3a8e5868c203c4120485245463d22687474703a2f2f6c697374732e736f75726365666f7267652e6e65742f6c697374732f6c697374696e666f2f647261676f6e676f7365727665722d646576656c22205441524745543d225f626c616e6b223ee9be99e4b98be7a281e7a094e58f91e794b5e5ad90e982aee4bbb6e58897e8a1a83c2f413ee38082, 'N', '2007-02-16 19:54:05'),
(621, 33, 0xe585a8e983a8e997aee7ad94e698bee7a4bae4ba8ee4b880e9a1b5, 'Y', '2007-02-16 19:54:05'),
(622, 33, 0xe9be99e4b98be7a281e59bb4e6a38be6af94e8b59b, 'Y', '2007-02-16 19:54:05'),
(623, 33, '', 'N', '2012-07-15 07:07:43'),
(624, 33, 0xe280a6e4bca0e7bb9fe79a84e697a5e69cace59bb4e6a38be997aee58099e8afadefbc8ce6848fe6809de698afefbc9a22e8b0a2e8b0a2e98280e8afb7efbc8ce7a59de5a5bde8bf90efbc8122, 'N', '2007-05-03 15:34:39'),
(625, 33, 0xe9be99e4b98be7a281e698afe590a6e69c89e79bb4e68ea5e4b8bbe58a9ee4bbbbe4bd95e6af94e8b59befbc9f, 'Y', '2007-02-16 19:54:05'),
(626, 33, 0xe8bf98e6b2a1e69c89e38082, 'Y', '2007-02-16 19:54:05'),
(627, 33, 0xe4bdbfe794a8e88085e79a8422e6b4bbe8b783e7a88be5baa622e698afe4bb80e5b9baefbc9f, 'Y', '2007-02-17 14:40:42'),
(628, 33, 0xe698bee7a4bae4bdbfe794a8e88085e69c80e8bf91e4b88be4ba86e5a49ae5b091e6898be380820d0a0d0a3220e7bbbfe6989fefbc9ae8aeb8e5a49ae6898befbc88e6af8fe69c88e8b685e8bf8720373020e6898befbc890d0a3120e6a998e6989fefbc9ae4ba9be8aeb8e6898befbc88e6af8fe69c8820352d373020e6898befbc890d0a3020e6989fefbc9ae5be88e5b091e6898befbc88e6af8fe69c88e5b091e4ba8e203520e6898befbc89, 'Y', '2007-02-16 19:54:05'),
(629, 33, 0xe4bdbfe794a8e88085e79a8422e8839ce78e8722e698afe4bb80e5b9baefbc9f, 'Y', '2007-02-17 14:40:42'),
(630, 33, 0xe8bf99e698afe6a38be6898be79a84e8839ce8b49fe6af94efbc8ce883bde5afb9e79baee5898de79a84e7ad89e7baa7e68f90e4be9be69bb4e5a49ae8aeafe681afe380820d0a0d0ae5bd93e6a38be6898be5ae8ce68890e4ba86e79bb8e5bd93e695b0e9878fe79a84e8af84e7ad89e5afb9e5b180e5908eefbc8ce7baa6203530efbc8520e79a84e8839ce78e87e698bee7a4bae4bb96e79a84e7ad89e7baa7e5b7b2e7bb8fe7a8b3e5ae9ae38082e5a4a7e4ba8e203735efbc8520e698bee7a4bae79baee5898de7ad89e7baa7e58fafe883bde5a4aae4bd8eefbc8ce4bd8ee4ba8e203235efbc8520e698bee7a4bae79baee5898de7ad89e7baa7e58fafe883bde5a4aae9ab98e38082, 'Y', '2007-02-16 19:54:05'),
(631, 33, 0xe68891e8a681e5a682e4bd95e588a0e999a4e68891e59ca8e5be85e5b180e5aea4e79a84e6af94e8b59be98280e8afb7efbc9f, 'Y', '2007-02-16 19:54:05'),
(632, 33, 0xe782b9e98089203c693ee682a8e79a843c2f693e20e6af94e8b59be79a84e8b584e69699e68c89e992aee38082e59ca8e8afa5e7bd91e9a1b5e79a84e4b88be696b9e69c89e588a0e999a4e6a38be5b180e79a84e68c89e992aee38082e5a682e69e9ce696b0e6a38be5b180e59ca8e695b0e591a8e5908ee4bb8de784b6e697a0e4babae58aa0e585a5efbc8ce5b0b1e4bc9ae887aae58aa8e8a2abe588a0e999a4e38082, 'Y', '2007-02-16 19:54:05'),
(633, 33, 0xe78c9ce5ad90e58886e58588e698afe4bb80e5b9baefbc9f, 'Y', '2007-02-17 14:40:42'),
(634, 33, 0x3c6120687265663d226661712e7068703f726561643d74266361743d3323456e7472793231223ee78c9ce5ad903c2f613e20e698afe68c87e682a8e79a84e7a281e889b2e698afe794b1e99a8fe69cbae98089e68ba9e79a84e380820d0a3c6120687265663d226661712e7068703f726561643d74266361743d3323456e747279313534223ee58886e585883c2f613e20e698afe68c87e682a8e8aebee5ae9ae79a84e696b0e6a38be5b180e6b2a1e69c89203c6120687265663d226661712e7068703f726561643d74266361743d33353723456e7472793937223ee8aea9e5ad903c2f613e20e38082, 'Y', '2007-02-16 19:54:05'),
(635, 33, 0xe4b8bae4bd95e69c89e4ba9be4bdbfe794a8e88085e6b2a1e69c89e58897e59ca8e6a38be6898be58897e8a1a8e4b88aefbc9f, 'Y', '2007-10-01 07:10:00'),
(636, 33, 0xe9be99e4b98be7a281e8aebee5ae9ae4b88de4bc9ae58897e585a5e5819ce6ada2e6b4bbe58aa8e79a84e6a38be6898be380823c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f75736572732e706870223ee5afb9e5b180e4b8ade79a84e6a38be6898b3c2f613e20e4b88be696b9e69c89203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f75736572732e7068703f73686f77616c6c3d31223ee698bee7a4bae68980e69c89e6a38be6898b3c2f613e20e58fafe4bba5e69fa5e8afa2e38082, 'N', '2007-10-01 07:10:00'),
(637, 33, 0xe4b8bbe8a681e697b6e997b4e698afe4bb80e5b9baefbc9f, 'Y', '2007-02-16 19:54:05'),
(638, 33, 0x3c693ee4b8bbe8a681e697b6e997b43c2f693ee698afe4b8bae58f8ce696b9e8aebee5ae9ae79a84e5889de6ada5e5afb9e5b180e697b6e997b4e380820d0a0d0ae5a682e69e9ce4b8bbe8a681e697b6e997b4e794a8e5ae8ce4ba86efbc8ce6a38be5b1803c623ee5b09ae69caa3c2f623ee7bb93e69d9fefbc8ce4bebfe8bf9be585a5e4ba86e58092e695b0e5afb9e5b180e697b6e997b4efbc88e8a781e4bba5e4b88be8afb4e6988eefbc89e38082, 'Y', '2007-06-06 20:13:37'),
(639, 33, 0xe9be99e4b98be7a281e69c89e593aae4ba9be783ade5bf83e58d8fe58aa9e88085efbc9f, 'Y', '2007-02-16 19:54:05'),
(640, 33, 0xe9be99e4b98be7a281efbc88444753efbc89e698afe99d9ee59586e4b89ae680a7e4b88ee5bc80e694bee7a081e79a84e59ba2e9989fe8aea1e794bbefbc8ce794b1e5969ce6aca2e78ea9e59b9ee59088e588b6e59bb4e6a38be79a84e4babae4b8bae5908ce5a5bde68980e7a094e58f91e3808244475320e794b1203c6120687265663d222f75736572696e666f2e7068703f7569643d3222207461726765743d225f626c616e6b223e4572696b3c2f613e20e5889be7ab8befbc8ce5b9b6e794b1203c6120687265663d222f75736572696e666f2e7068703f7569643d3222207461726765743d225f626c616e6b223e4572696b3c2f613e20e4b88e203c6120687265663d222f75736572696e666f2e7068703f7569643d3130353622207461726765743d225f626c616e6b223e526f643c2f613e203c6120687265663d22687474703a2f2f736f75726365666f7267652e6e65742f70726f6a6563742f6d656d6265726c6973742e7068703f67726f75705f69643d323939333322207461726765743d225f626c616e6b223ee8b49fe8b4a3e7bbb4e68aa43c2f613ee38082e5b8b8e8a781e997aee9a298e698afe6a0b9e68dae3c423ee682a8e79a843c2f423ee6848fe8a781efbc8ce794b1203c6120687265663d222f75736572696e666f2e7068703f7569643d393322207461726765743d225f626c616e6b223e426a6f726e20496e676d61723c2f613e20e8b49fe8b4a3e7bbb4e68aa4e3808244475320e8a2abe7bfbbe8af91e68890e695b0e59bbde8afade8a880e38082e7bfbbe8af91e4babae59198e5908de58d95e59ca8203c6120687265663d222f70656f706c652e70687022207461726765743d225f626c616e6b223ee8bf99e9878c3c2f613e20e4bba5e58f8a203c4120485245463d222f70686f72756d2f6c6973742e7068703f663d37223ee7bfbbe8af91e8aebae59d9b3c2f413ee38082, 'N', '2007-10-01 09:27:20'),
(643, 33, 0xe68891e58fafe4bba5e59ca8e9be99e4b98be7a281e4b88ae4bdbfe794a82048544d4c20e59097efbc9f, 'N', '2007-02-16 20:04:20'),
(644, 33, 0xe58fafe4bba5efbc8ce682a8e58fafe4bba5e59ca8e5b08fe4bca0e38081e8aeafe681afe4b88ee8aebae59d9be4b8ade4bdbfe794a8e4b880e4ba9b2048544d4ce38082e5a682e69e9ce682a8e58aa0e4b88a2048544d4c20e68c87e4bba4efbc8ce8afb7e981b5e5ae882048544d4c20e79a84e8a784e58899e4b88ee58699e6b395e38082e9809ae5b8b8e983bde8a681e58aa0e4b88ae98082e5bd93e79a84e7bb93e5b0bee68c87e4bba4e38082e58fafe794a8e79a842048544d4c20e68c87e4bba4e4b8baefbc9a0d0a3c756c3e0d0a3c6c693e6c697374730d0a3c6c693e3c623e626f6c643c2f623e0d0a3c6c693e3c693e6974616c69633c2f693e0d0a3c6c693e3c753e756e6465726c696e653c2f753e0d0a3c6c693e3c666f6e7420636f6c6f723d7265643e666f6e743c2f666f6e743e0d0a3c6c693e627261636b6574733a20266c743b202667743b0d0a3c6c693e3c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e6574223e6c696e6b733c2f613e0d0a3c6c693e73696d706c65206c696e6b733a203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e6574223e687474703a2f2f7777772e647261676f6e676f7365727665722e6e65743c2f613e0d0a3c2f756c3e0d0ae99c80e8a681e58aa0e4b88ae4bba5e4b88be7bc96e7a081e8aea9e4bba5e4b88ae79a84e68c87e4bba4e68890e4b8baefbc9a0d0a266c743b756c2667743b0d0a266c743b6c692667743b6c697374730d0a266c743b6c692667743b266c743b622667743b626f6c64266c743b2f622667743b0d0a266c743b6c692667743b266c743b692667743b6974616c6963266c743b2f692667743b0d0a266c743b6c692667743b266c743b752667743b756e6465726c696e65266c743b2f752667743b0d0a266c743b6c692667743b266c743b666f6e7420636f6c6f723d7265642667743b666f6e74266c743b2f666f6e742667743b0d0a266c743b6c692667743b627261636b6574733a2026616d703b6c743b2026616d703b67743b0d0a266c743b6c692667743b266c743b6120687265663d2671756f743b687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742671756f743b2667743b6c696e6b73266c743b2f612667743b0d0a266c743b6c692667743b73696d706c65206c696e6b733a20266c743b687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742667743b0d0a266c743b2f756c2667743b, 'N', '2007-02-16 20:04:20'),
(645, 33, 0xe6989fe4bd8d, 'Y', '2007-02-16 20:04:20'),
(646, 33, 0x486f736869efbc9a22e6989fe4bd8d22e69c89e4b8a4e4b8aae6848fe4b989efbc8ce9809ae5b8b8e698afe68c87e6a38be79b98e4b88ae79a84203920e4b8aae8aea9e5ad90e782b9e38082e69bb4e6988ee7a1aee4b880e782b9e698afe68c87e8a792e890bde4b88ae79a8420342d3420e782b9e38082, 'Y', '2007-02-16 20:04:20'),
(655, 33, 0xe5a4a9e58583, 'N', '2007-02-16 20:04:20'),
(656, 33, 0x54656e67656eefbc9ae6a38be79b98e79a84e4b8ade5bf83e782b9e38082e59ca820313920e8b7afe6a38be79b98e698af2031302d313020e782b9e38082e697a5e69687e79a84e6848fe6809de698af22e5a4a9e5a082e79a84e8b5b7e6ba9022e38082, 'N', '2007-02-16 20:04:20'),
(657, 33, 0xe6a38be79b98, 'Y', '2007-02-16 20:04:20'),
(658, 33, 0x476f62616eefbc9ae79c9fe6ada3e68896e8aea1e7ae97e69cbae8999ae68b9fe79a84e59bb4e6a38be6a38be79b98e38082, 'Y', '2007-02-16 20:04:20'),
(661, 33, 0xe8aea9e5ad90e698afe4bb80e5b9baefbc9f, 'Y', '2007-02-17 14:40:42'),
(662, 33, 0xe5a682e69e9ce5afb9e5b180e58f8ce696b9e6a38be58a9be4b88de59d87efbc8ce58f8ce696b9e5ba94e8afa5e5908ce6848fe8aea9e8be83e5bcb1e79a84e4b880e696b9e69c89e9a29de5a496e79a8422e8aea9e5ad9022e38082e8aea9e5ad90e6b0b8e8bf9ce698afe7bb99e9bb91e696b9efbc8ce6ada3e7a1aee98089e68ba9e8aea9e5ad90e695b0e79baeefbc8ce58fafe4bba5e5bca5e8a1a5e6a38be58a9be4b88ae79a84e5b7aee8b79de38082e8aea9e5ad90e5afb9e5b180e4bc9ae69bb4e69c89e8b6a3efbc8ce58f8ce696b9e8b5a2e6a38be79a84e69cbae4bc9ae59d87e7ad89e380820d0a0d0ae59ca83139e8b7afe6a38be79b98e4b88aefbc8ce8aea9e5ad90e695b0e79baee79bb8e5908ce4ba8ee7ad89e7baa7e79a84e5b7aee8b79de38082e5afb9e4ba8ee585b6e5ae83e5a4a7e5b08fe79a84e6a38be79b98efbc8ce794b1e9be99e4b98be7a281e586b3e5ae9ae98082e5bd93e79a84e8aea9e5ad90e695b0e79baee380820d0a0d0ae4bca0e7bb9fe4b88aefbc8ce8aea9e5ad90e698afe68c89e785a7e59bbae5ae9ae5bda2e5bc8fe694bee59ca8203c4120485245463d226661712e7068703f726561643d74266361743d3323456e7472793839223ee6989fe4bd8d3c2f413e20e4b88ae38082e59ca8e9be99e4b98be7a281efbc8ce58fafe4bba5e887aae794b1e98089e68ba9e8aea9e5ad90e4bd8de7bdaee380820d0a0d0ae4bd86e698afe8afb7e6b3a8e6848fefbc8ce8aeb8e5a49ae6a38be6898be4b9a0e683afe8aea9e5ad90e4ba8ee6989fe4bd8de4b88ae38082e68980e4bba5e5a682e69e9ce682a8e8a681e8aea9e5ad90efbc8ce69c80e5a5bde58588e4b88ee5afb9e6898be5908ce6848fe698afe6989fe4bd8de8aea9e5ad90e8bf98e698afe887aae794b1e8aea9e5ad90e38082, 'Y', '2007-02-16 20:04:20'),
(663, 33, 0xe4bca0e7bb9fe8aea9e5ad90e4b88ee98082e5bd93e8aea9e5ad90e69c89e4bd95e4b88de5908cefbc9f, 'Y', '2007-02-16 20:04:20'),
(664, 33, 0x3c693ee4bca0e7bb9fe8aea9e5ad903c2f693ee4be9de785a7e7ad89e7baa7e5b7aee8b79defbc88e4b88ee6a38be79b98e5a4a7e5b08fefbc89e69da5e586b3e5ae9ae8aea9e5ad90e695b0e38082e88ba5e69c89e8aea9e5ad90e58899203c6120687265663d226661712e7068703f726561643d74266361743d3323456e74727939223ee8b4b4e79bae3c2f613e20302e35e38082e88ba5e697a0e8aea9e5ad90e58899e8b4b4e79bae20362e35e380820d0a0d0a3c693ee98082e5bd93e8aea9e5ad903c2f693ee58899e98787e58f96e69bb4e7bb86e79a84e8b4b4e79baee5b7aee588ab282e2e2e2c20312e352c20322e302c20322e352c202e2e2e29e69da5e5b9b3e8a1a1e6a38be58a9be5b7aee8b79defbc8ce4bdbfe58f8ce696b9e8b5a2e6a38be69cbae4bc9ae59d87e7ad89e38082, 'Y', '2007-02-23 14:02:08'),
(665, 33, 0xe5ae9ae79fb3, 'N', '2007-02-16 20:04:20'),
(666, 33, 0x4a6f73656b69efbc9ae9809ae5b8b8e698afe59ca8e8a792e890bde8bf9be8a18cefbc8ce5b180e983a8e4b88ae7bb8fe8bf87e9aa8ce8af81e79a84e697a2e5ae9ae4b88be6b395e38082e9809ae5b8b8e59ca8e5b180e983a8e4b88ae5afb9e58f8ce696b9e983bde69c89e588a9efbc8ce4bd86e698afe4b88de4b880e5ae9ae585a8e79b98e69c89e588a9e38082e5ae9ae79fb3e698afe68898e69cafe88083e9878fefbc8ce8808ce4b88de698afe7ad96e795a5e88083e9878fe38082, 'N', '2007-02-16 20:04:20'),
(667, 33, 0xe5b883e5b180, 'N', '2007-02-16 20:04:20'),
(668, 33, 0x467573656b69efbc9ae6a38be5b180e5bc80e5a78be998b6e6aeb5e79a84e4b88be6b395e38082e5bc80e79b98e697b6e7bb8fe8bf87e9aa8ce8af81e79a84e697a2e5ae9ae4b88be6b395e38082e5b883e5b180e99c80e8a681e585a8e79b98e79a84e7ad96e795a5e88083e9878fe38082, 'N', '2007-05-29 17:17:24'),
(669, 33, 0xe585b1e6b4bb, 'Y', '2007-02-16 20:04:20'),
(670, 33, 0x53656b69efbc9ae6848fe6809de698af22e58f8ce696b9e983bde6b4bb22e38082e4b8a4e7bea4e6a38be5ad90e585b1e4baabe6b094e79a84e4b880e7a78de5b180e983a8e583b5e5b180efbc8ce58f8ce696b9e983bde697a0e6b395e68f90e68e89e5afb9e696b9e79a84e5ad90e38082, 'Y', '2007-02-16 20:04:20'),
(671, 33, 0xe68891e883bde794a8e794b5e5ad90e982aee4bbb6e4bca0e98081e890bde5ad90e59097efbc9f, 'Y', '2007-02-16 20:04:20'),
(672, 33, 0xe4b88de883bdefbc8ce794a8e794b5e5ad90e982aee4bbb6e4bca0e98081e890bde5ad90e698afe4b88de58fafe883bde79a84e380820d0ae682a8e5bf85e9a1bbe799bbe585a5203c6120687265663d222f223ee9be99e4b98be7a281e7bd91e7ab993c2f613e20e6898de883bde98081e587bae890bde5ad90e38082, 'Y', '2007-02-16 20:04:20'),
(673, 33, 0xe68da2e68891e4b88be697b6efbc8ce9be99e4b98be7a281e4bc9ae4b88de4bc9ae9809ae79fa5e68891efbc9f, 'Y', '2007-02-16 20:04:20'),
(674, 33, 0xe4bc9aefbc8ce58faae8a681e682a8e69c89e59ca8e4b8aae4babae8b584e69699e4b8ade68f90e4be9be4ba86e794b5e5ad90e982aee4bbb6e59cb0e59d80efbc88e4bf9de5af8629efbc8ce784b6e5908ee590afe794a822e794b5e982aee9809ae79fa522e38082, 'Y', '2007-02-16 20:04:20'),
(675, 33, 0xe68891e883bde4b88de883bde4b88ae8bdbd2053474620e6a1a3e69da5e5bc80e5a78be696b0e6a38be5b180efbc9f, 'Y', '2007-02-16 20:04:20'),
(676, 33, 0xe4b88de883bde38082, 'N', '2007-02-16 20:04:20'),
(677, 33, 0xe9be99e4b98be7a281e79a84e7ad89e7baa7e4b88ee8af84e7ad89, 'Y', '2007-02-16 20:04:20'),
(678, 33, 0xe4bdbfe794a8e88085e79a84e7ad89e7baa7e6a08fe698afe4bb80e5b9baefbc9f, 'Y', '2007-02-17 14:40:42'),
(679, 33, 0xe7ad89e7baa7e79a84e5898de4b880e58d8ae698afe79baee5898d203c6120687265663d222f6661712e7068703f726561643d74266361743d3323456e7472793339223ee6aeb53c2f613e20e68896203c6120687265663d222f6661712e7068703f726561643d74266361743d3323456e7472793338223ee7baa73c2f613e20e79a84e7ad89e7baa7e38082e5908ee4b880e58d8ae79a84e799bee58886e6af94efbc88e68bace58fb7e58685efbc89e698bee7a4bae8bf99e4b8aae7ad89e7baa7e79a84e5bcbae5bcb1e380820d0a0d0ae4be8be5a682efbc8c22203120e7baa720282b343025292220e698afe5be88e5bcbae79a84203120e7baa7efbc88e587a0e4b98ee7ad89e4ba8ee8be83e5bcb1e79a84203120e6aeb5efbc89e38082, 'N', '2007-02-17 08:05:45'),
(680, 33, 0xe7ad89e7baa7e4b8ade79a84202b20e68896202d20e698afe4bb80e5b9baefbc9f, 'Y', '2007-02-17 14:40:42'),
(681, 33, 0xe9be99e4b98be7a281e4bdbfe794a8e79a84e7ad89e7baa7e7b3bbe7bb9fe698af31e7baa7e79bb8e5bd93e4ba8e313030e782b9e79a84e5b7aee588abe38082e4be8be5a682efbc9a0d0a0d0a3620e7baa7202820302529203d203135303020e782b90d0a3620e7baa720282d34382529203d203134353220e782b90d0a3720e7baa720282b33302529203d203134333020e782b90d0a3720e7baa7202820302529203d203134303020e782b9, 'N', '2007-02-16 20:04:20'),
(684, 33, 0xe6a38be58a9be59bbee79a84e8939de889b2e58cbae59f9fe698afe4bb80e5b9baefbc9f, 'Y', '2007-03-14 20:01:30'),
(685, 33, 0xe8bf99e698afe68c87e4bdbfe794a8e88085e79a84e7ad89e7baa7e4b88ee9be99e4b98be7a281e79a84e7ad89e7baa7e6a38be58a9be5ae9ae4b989e69c89e5a49ae5b091e5b7aee8b79de380820d0a0d0ae5bd93e696b0e4bdbfe794a8e88085e8be93e585a5e5889de5a78be7ad89e7baa7e697b6efbc8ce9be99e4b98be7a281e5b9b6e4b88de79fa5e98193e8bf99e4b8aae5889de5a78be580bce698afe590a6e7aca6e59088e9be99e4b98be7a281e79a84e5ae9ae4b989e38082e79baee5898de4b896e4b88ae8bf98e6b2a1e69c89e694bee8afb8e59b9be6b5b7e79a86e58786e79a84e59bb4e6a38be7ad89e7baa7e5ae9ae4b989e38082e9be99e4b98be7a281e5b0bde58a9be68f90e4be9be58fafe99da0e4b88ee58fafe6af94e8be83e79a84e59bb4e6a38be7ad89e7baa7e38082e6a38be58a9be59bbee79a84e8939de889b2e58cbae59f9fe58faae4bba3e8a1a8e696b0e4bdbfe794a8e88085e79a842044475320e7ad89e7baa7e4b88ee9be99e4b98be7a281e697a2e5ae9ae79a84e59bb4e6a38be7ad89e7baa7e69c89e5a49ae5b091e5b7aee8b79de38082, 'N', '2007-03-14 20:01:30'),
(686, 33, 0xe6898be68b94, 'N', '2007-02-16 20:24:46'),
(687, 33, 0x54656e756b69efbc9ae4b88be4b880e6898b3c623ee4b88d3c2f623ee5938de5ba94e5afb9e6898be79a84e4b88ae4b880e6898be38082, 'N', '2007-02-16 20:24:46'),
(688, 33, 0xe58f8ce889b2e5afb9e5b180e698afe4bb80e5b9baefbc9f, 'Y', '2007-02-16 20:24:46'),
(689, 33, 0x3c693ee58f8ce889b2e5afb9e5b1803c2f693ee698afe4b88ee5908ce4b880e4bd8de5afb9e6898be8bf9be8a18c3c693ee4ba8ce59cba3c2f693ee696b0e6a38be5b180e38082e682a8e59ca8e4b880e5b180e68c81e799bde5ad90efbc8ce58fa6e4b880e5b180e68c81e9bb91e5ad90e38082e98089e68ba9e79a84e8b4b4e79baee4b88ee8aea9e5ad90e5b086e98082e794a8e4ba8ee4b8a4e5b180e38082e5be85e5b180e5aea4e4b8ade79a84e6a38be5b180e8b584e69699e58fafe79c8be588b0e8aea9e5ad90e695b0e79baee38082, 'N', '2007-09-16 21:44:42'),
(690, 33, 0xe58588e6898b, 'N', '2007-02-16 20:24:46'),
(691, 33, 0x53656e7465efbc9ae694bbe587bbe6898befbc8ce5a881e88381efbc8ce5bf85e9a1bbe7ab8be58db3e5938de5ba94e38082e5889be980a0e58588e69cbaefbc8ce69c89e69d83e98089e68ba9e4b88be4b880e6898be79a84e4bd8de7bdaee38082e58588e6898be79a84e79bb8e58f8de698af203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f6661712e7068703f726561643d74266361743d3323456e747279313133223ee5908ee6898b3c2f613ee380820d0ae58588e6898be79a84e4b880e696b9e5a682e69e9ce8a789e5be97e98082e5bd93efbc8ce4b99fe58fafe4bba5e98089e68ba9203c6120687265663d222f6661712e7068703f726561643d74266361743d3323456e747279313130223ee6898be68b943c2f613ee38082, 'N', '2007-02-16 20:24:46'),
(692, 33, 0xe5908ee6898b, 'N', '2007-02-16 20:24:46'),
(693, 33, 0x476f7465efbc9ae998b2e5bea1e6898befbc8ce5938de5ba94e5a881e88381e38082e694bee5bc83e58588e69cbaefbc8ce8aea9e5afb9e6898be98089e68ba9e4b88be4b880e6898be79a84e4bd8de7bdaee38082e5908ee6898be79a84e79bb8e58f8de698af203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f6661712e7068703f726561643d74266361743d3323456e747279313132223ee58588e6898b3c2f613ee38082, 'N', '2007-02-16 20:24:46'),
(694, 33, 0xe4bb80e5b9bae698afe8a782e79c8be4b8ade6a38be5b180efbc9f, 'Y', '2007-02-16 20:24:46'),
(695, 33, 0xe6ada4e58a9fe883bde58fafe4bba5e4b8ba3c623ee585b6e5ae833c2f623ee6a38be6898be79a84e5afb9e5b180e58aa0e4b88ae4b9a6e7adbee380820d0a0d0ae8a681e68a8ae5afb9e5b180e58aa0e585a5e8a782e79c8be4b8ade6a38be5b180efbc8ce58588e689bee588b0e8bf9be8a18ce4b8ade79a84e6a38be5b180efbc8ce782b9e9808922e58aa0e585a5e8a782e79c8b22e38082e8a681e79c8be682a8e79a84e8a782e79c8be4b8ade6a38be5b180efbc8ce782b9e98089203c6120687265663d222f7374617475732e706870223ee79baee5898de5afb9e5b1803c2f613e20e784b6e5908ee782b9e9808922e8a782e79c8be4b8ade6a38be5b18022e380820d0a0d0ae8a681e7a7bbe999a4e8a782e79c8be4b8ade6a38be5b180efbc8ce689bee588b0e683b3e7a7bbe999a4e79a84e6a38be5b180efbc8ce782b9e9808922e4bb8ee8a782e79c8be7a7bbe999a422e380820d0a0d0ae682a8e58faae883bde8a782e79c8be8bf9be8a18ce4b8ade79a84e6a38be5b180efbc8ce5bd93e5afb9e5b180e7bb93e69d9fefbc8ce5b0b1e887aae58aa8e4bb8ee8a782e79c8be58897e8a1a8e7a7bbe999a4e38082e5bd93e8a782e79c8be4b8ade79a84e6a38be5b180e7bb93e69d9fe697b6efbc8ce9be99e4b98be7a281e4bc9ae58f91e8aeafe681afe7bb99e682a8efbc8ce5918ae79fa5e682a8e5afb9e5b180e79a84e7bb93e69e9ce38082, 'N', '2007-02-16 20:24:46'),
(696, 33, 0xe58d95e5ae98, 'Y', '2007-02-16 20:24:46'),
(697, 33, 0x44616d65efbc9ae6a38be79b98e4b88ae79a84e4b8ade7ab8be4baa4e58f89e782b9e38082e8bf99e4ba9b22e585ace79bae22e4b88de5b19ee4ba8ee58f8ce696b9e6a38be6898be38082, 'Y', '2007-02-16 20:24:46'),
(698, 33, 0xe6b094, 'Y', '2007-02-16 20:24:46'),
(699, 33, 0x4c696265727479efbc9ae4b88ee4b880e9a297e5ad90e68896e4b880e4b8b2e5ad90e8bf9ee68ea5e79a84e7a9bae782b9e38082, 'Y', '2007-02-17 08:16:02'),
(700, 33, 0xe689b3, 'N', '2007-02-16 20:24:46'),
(701, 33, 0x48616e65efbc9ae890bde5ad90e6969ce58e8be8bf87e5afb9e6898be79a84e4b880e9a297e5ad90e68896e4b880e4b8b2e5ad90e38082, 'N', '2007-02-17 08:16:02'),
(702, 33, 0xe997a8e59083, 'N', '2007-02-16 20:24:46'),
(703, 33, 0x47657461efbc9ae59fbae69cace4b88ae698afe5b081e4bd8fe5afb9e6898be6a38be5ad90e79a84e4b880e6898be38082, 'N', '2007-02-16 20:24:46'),
(704, 33, 0xe4b889e8bf9ee6989f, 'N', '2007-02-16 20:24:46');
INSERT INTO `Translations` (`Original_ID`, `Language_ID`, `Text`, `Translated`, `Updated`) VALUES
(705, 33, 0x53616e72656e736569efbc9ae5b8b8e8a781e79a84e5bc80e5b180efbc8ce6a38be6898be58da0e68daee4b880e8beb9e79a84e4b889e4b8aae6989fe4bd8de38082, 'N', '2007-02-16 20:24:46'),
(706, 33, 0xe5be81e5ad90, 'N', '2007-02-16 20:24:46'),
(707, 33, 0x53686963686fefbc9ae697a5e69cace59bb4e6a38be69cafe8afad203c6120687265663d222f70686f72756d2f726561642e7068703f663d3326693d31393626743d313936223ee5be81e5ad903c2f613ee38082, 'N', '2007-02-16 20:24:46'),
(708, 33, 0xe6a38be79b98e5a4a7e5b08fe698afe590a6e4bc9ae5bdb1e5938de8af84e7ad89efbc9f, 'Y', '2007-02-16 20:24:46'),
(709, 33, 0x313920e8b7afe6a38be5b180e5afb9e8af84e7ad89e5bdb1e5938de69c80e5a4a7e380820d0ae4ba8ce79b9820313320e8b7afe5afb9e5b180e7ad89e4ba8ee4b880e79b9820313920e8b7afe5afb9e5b180e380820d0ae4ba8ce79b98203920e8b7afe5afb9e5b180e7ad89e4ba8ee4b880e79b9820313320e8b7afe5afb9e5b180e38082, 'N', '2007-02-16 20:24:46'),
(710, 33, 0xe68891e58fafe4bba5e59ca8e593aae9878ce5ada6e59bb4e6a38befbc9f, 'Y', '2007-02-16 20:24:46'),
(711, 33, 0xe8afb7e58f82e8a782203c6120687265663d22687474703a2f2f706c6179676f2e746f2f696e7465726163746976652f696e6465782e68746d6c22207461726765743d6e65773ee4baa4e4ba92e5bc8fe5ada6e59bb4e6a38b3c2f613e20e4bba5e58f8ae88bb1e59bbde59bb4e6a38be58d8fe4bc9ae79a84203c6120687265663d22687474703a2f2f7777772e62726974676f2e6f72672f696e74726f2f696e74726f2e68746d6c22207461726765743d6e65773ee59bb4e6a38be4bb8be7bb8d3c2f613ee38082, 'Y', '2007-02-16 20:24:46'),
(712, 33, 0xe9be99e4b98be7a281e79a84e8af84e7ad89e7b3bbe7bb9fe5a682e4bd95e8bf90e4bd9cefbc9f, 'N', '2007-02-16 20:24:46'),
(713, 33, '', 'N', '2007-02-17 10:59:27'),
(756, 36, 0x416667616e69737a74c3a16e, 'Y', '2007-07-27 14:56:23'),
(757, 36, 0x416c62c3a16e6961, 'Y', '2007-07-27 14:56:23'),
(758, 36, 0x416c67c3a9726961, 'Y', '2007-07-27 14:56:23'),
(759, 36, 0x416e646f727261, 'Y', '2007-07-27 14:56:23'),
(760, 36, 0x416e676f6c61, 'Y', '2007-07-27 14:56:23'),
(761, 36, 0x416e7461726b7469737a, 'Y', '2007-07-27 14:56:23'),
(748, 33, 0xe68891e883bde4b88de883bde4b8bbe58a9ee59bb4e6a38be6af94e8b59befbc9f, 'Y', '2007-02-16 20:24:46'),
(749, 33, 0xe5be88e6aca2e8bf8ee682a8e69da5e4b8bbe58a9ee59bb4e6a38be6af94e8b59be38082e8a681e5aea3e5b883e6af94e8b59be7bb86e88a82efbc8ce8afb7e4bdbfe794a8efbc88e68896e8a782e79c8befbc893c6120687265663d222f70686f72756d2f6c6973742e7068703f663d34223ee9be99e4b98be7a281e8aebae59d9b3c2f613ee38082e9be99e4b98be7a281e4bc9ae5b8aee58aa9e682a8e5aea3e4bca0e6af94e8b59befbc8ce59ca8e5b8b8e8a781e997aee9a298e4b8ade5a29ee58aa0e79bb8e585b3e8bf9ee7bb93e38082, 'Y', '2007-10-01 09:27:20'),
(751, 33, 0xe5a682e4bd95e59ca8e6af94e8b59be7bb93e69d9fe697b6e7a7bbe999a4e6adbbe5ad90efbc9f, 'Y', '2007-02-16 20:24:46'),
(752, 33, 0xe58f8ce696b9e983bde8999ae6898be5908eefbc8ce782b9e98089e6a38be5ad90e69da5e694b9e58f98e6adbbe6b4bbefbc8ce4bba5e6ada4e7a7bbe999a4e6adbbe5ad90e38082e9bb91e889b2e4b88ee799bde889b2e5b08fe696b9e59d97e698bee7a4bae58f8ce696b9e79a84e58da0e59cb0e380820d0a0d0ae58f8ce696b9e5bf85e9a1bbe983bde5908ce6848fe6adbbe5ad90e4b88ee58da0e59cb0e38082e5908ce6848fe5908eefbc8ce782b9e98089e6a38be79b98e4b88be696b9e79a8422e5ae8ce6889022e380820d0a0d0ae5a682e69e9ce69c89e4b880e696b9e4b88de5908ce6848fefbc8ce5b0b1e782b9e9808922e7bba7e7bbade5afb9e5b18022efbc8ce5a49ae4b88be587a0e6898be69da5e8a7a3e586b3e79691e997aee38082e58fa6e4b880e7a78de696b9e5bc8fe698afe5af84e4bfa1e7bb99e5afb9e6898be69da5e8aea8e8aebaefbc8ce68896e588b0203c6120687265663d2270686f72756d2f6c6973742e7068703f663d35223ee59bb4e6a38be8aebae59d9b3c2f613ee38082, 'Y', '2007-02-16 20:24:46'),
(753, 33, 0xe5afb9e5b180e7bb93e69d9fe697b6e79a84e7baa2e889b2e5b08fe696b9e59d97e698afe4bb80e5b9baefbc9f, 'N', '2007-02-16 20:24:46'),
(754, 33, 0xe7baa2e889b2e5b08fe696b9e59d97e698afe9be99e4b98be7a281e697a0e6b395e588a4e696ade8afa5e7a9bae698afe9bb91e696b9e68896e799bde696b9e79a84e59cb0e38082e58fafe883bde79a84e58e9fe59ba0e69c89efbc9a0d0a3c756c3e0d0a3c6c693ee585b6e4b8ade8bf98e69c89e5afb9e6898be79a84e5ad90e5b09ae69caae8a2abe6a087e7a4ba22e6adbbe5ad9022e38082e8afb7e782b9e98089e6a087e7a4bae982a3e4ba9be5ad90e4b8ba22e6adbbe5ad9022e380823c2f6c693e0d0a0d0a3c6c693ee799bde696b9e68896e9bb91e696b9e79a84e8beb9e7958ce5b09ae69caae7a1aee5ae9ae38082e59ca8e4babae7b1bbe6a38be6898be79cbce4b8ade4b99fe8aeb8e5be88e6988ee7a1aeefbc8ce4bd86e698afe9be99e4b98be7a281e58fafe883bde99abee4bba5e588a4e696ade698afe8b081e79a84e58da0e59cb0e38082e8afb7e782b9e98089e6a38be79b98e4b88be696b9e79a8422e7bba7e7bbade5afb9e5b18022efbc8ce5a49ae4b88be587a0e6898be69da5e7a1aee5ae9ae8beb9e7958ce380823c2f6c693e0d0a0d0a3c6c693ee8bf99e698af203c6120687265663d226661712e7068703f726561643d74266361743d3323456e747279313031223ee585b1e6b4bb3c2f613e20e79a84e78ab6e68081e38082e8afb7e782b9e98089e8aea9e585b1e6b4bbe4b8ade79a84e7baa2e889b2e696b9e59d97e58f98e68890203c6120687265663d226661712e7068703f726561643d74266361743d3323456e747279313135223ee58d95e5ae983c2f613ee38082e9be99e4b98be7a281e4bc9ae4bba5e7bbbfe889b2e5b08fe696b9e59d97e69da5e8a1a8e7a4bae38082e6ada4e58a9fe883bde58fafe4bba5e8a7a3e586b3e585b1e6b4bbe79a84e997aee9a298efbc8ce5be97e588b0e6ada3e7a1aee79a84e5afb9e5b180e7bb93e69e9ce38082e8afa6e68385e8afb7e79c8b203c6120687265663d2270686f72756d2f726561642e7068703f663d3226693d38343326743d383433223ee6ada4e4b8bbe9a2983c2f613e2e3c2f6c693e0d0a3c2f756c3e, 'N', '2007-02-16 20:24:46'),
(963, 33, 0xe5be85e5b180e5aea4e79a84e7baa2e889b2e8838ce699afe698afe4bb80e5b9baefbc9f, 'Y', '2007-02-17 14:40:42'),
(964, 33, 0xe59ca822e5afb9e6898be7ad89e7baa722e6a08fe79a84e6b7a1e7baa2e889b2e8838ce699afe698afe68c87e682a8e79baee5898de79a84e7ad89e7baa7e4b88de59088e8afa5e5afb9e5b180e38082e682a8e697a0e6b395e58aa0e585a5e8afa5e5afb9e5b180e38082, 'N', '2007-02-16 20:24:46'),
(967, 33, 0xe8aea9e5ad90e8a681e694bee59ca8e4bb80e5b9bae59cb0e696b9efbc9f, 'Y', '2007-02-16 20:24:46'),
(968, 33, 0xe6a0b9e68daee4b8ade59bbde59bb4e6a38be8a784e58899efbc8ce8aea9e5ad90e4bd8de7bdaee58fafe4bba5e887aae794b1e586b3e5ae9ae380820d0ae6a0b9e68daee697a5e69cace59bb4e6a38be8a784e58899efbc8ce8aea9e5ad90e4bd8de7bdaee69c89e697a2e5ae9ae696b9e5bc8fefbc88e6989fe4bd8de8aea9e5ad90efbc89e38082e5a682e69e9ce6b2a1e69c89e4ba8be58588e5908ce6848fefbc8ce5a4a7e5a49ae695b0e6a38be6898be69c9fe5be85e9bb91e5ad90e98787e58f96e697a5e69cace5bc8fe8a784e58899e380820d0a3c756c3e0d0a3c6c693ee8aea9203120e5ad90efbc9ae8be83e5bcb1e79a84e4b880e696b9e68c81e9bb91efbc88e58886e58588efbc89efbc8ce697a0e8b4b4e79baee380820d0a3c6c693ee8aea9203220e5ad90efbc9a4434202b205131360d0a3c6c693ee8aea9203320e5ad90efbc9a4434202b205134202b205131360d0a3c6c693ee8aea9203420e5ad90efbc9a4434202b205134202b20443136202b205131360d0a3c6c693ee8aea9203520e5ad90efbc9a4434202b205134202b204b3130202b20443136202b205131360d0a3c6c693ee8aea9203620e5ad90efbc9a4434202b205134202b20443130202b20513130202b20443136202b205131360d0a3c6c693ee8aea9203720e5ad90efbc9a4434202b205134202b20443130202b204b3130202b20513130202b20443136202b205131360d0a3c6c693ee8aea9203820e5ad90efbc9a4434202b204b34202b205134202b20443130202b20513130202b20443136202b204b3136202b205131360d0a3c6c693ee8aea9203920e5ad90efbc9a4434202b204b34202b205134202b20443130202b204b3130202b20513130202b20443136202b204b3136202b20513136203c2f756c3e, 'N', '2007-02-16 20:24:46'),
(971, 33, 0xe5a682e4bd95e68aa5e5918ae7a88be5ba8fe5b08fe6af9be79785efbc9f, 'N', '2007-02-16 20:24:46'),
(972, 33, 0x3c756c3e3c6c693ee8afb7e5af9fe79c8be5b8b8e8a781e997aee9a298e4b88ee8aebae59d9be585b3e4ba8ee682a8e98187e588b0e79a84e7a88be5ba8fe6af9be79785e38082e6909ce5afbbe8aebae59d9be58fafe883bde4bc9ae6af94e6b58fe8a788e69bb4e69c89e69588e78e87e29480e8b4b4e69687e5ae9ee59ca8e5a4aae5a49aefbc8ce69c89e697b6e58099e58fafe883bde4bc9ae8b4b4e99499e8aebae59d9be380820d0a3c6c693ee8afa6e7bb86e68f8fe8bfb0e682a8e79a84e997aee9a298efbc8ce8b4b4e588b0203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f70686f72756d2f6c6973742e7068703f663d32223e537570706f727420666f72756d3c2f613eefbc8ce682a8e4b99fe58fafe4bba50d0a3c6c693ee5b086e997aee9a298e5af84e4bfa1e7bb99203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f6661712e7068703f726561643d74266361743d313923456e7472793836223ee7a094e58f91e4babae591983c2f613ee380823c2f756c3e, 'N', '2007-10-01 09:27:20'),
(973, 33, 0xe5a682e4bd95e799bbe585a5e6af94e8be83e5bfabe9809fefbc9f, 'Y', '2007-02-16 20:24:46'),
(974, 33, 0xe682a8e58fafe4bba5e4b88de794a8e6af8fe6aca1e983bde8be93e585a5e5b890e58fb7e4b88ee5af86e7a081efbc8ce68a8ae5b890e58fb7e4b88ee5af86e7a081e694bee59ca855524ce69cace8baabe38082e4b99fe5b0b1e698afe8afb4efbc8ce5b086e6b58fe8a788e599a8e68c87e59091203c753e687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f6c6f67696e2e7068703f7573657269643d3c623e7468652d757365722d69643c2f623e267061737377643d3c623e7468652d70617373776f72643c2f623e3c2f753ee380820d0a0d0ae8afb7e5b08fe5bf83efbc8ce5af86e7a081e4bba5e69687e5ad97e696b9e5bc8fe582a8e5ad98e69c89e5ae89e585a8e9a38ee999a9e38082e8afb7e588abe58f91e98081e682a8e79a84e799bbe585a555524ce68896e59ca8e585ace794a8e8aea1e7ae97e69cbae582a8e5ad98e4b8bae4b9a6e7adbee38082, 'Y', '2007-02-16 20:24:46'),
(975, 33, 0xe5a682e4bd95e799bbe585a5e68891e79a84e5b890e58fb7efbc9f, 'Y', '2007-02-16 20:24:46'),
(976, 33, 0xe799bbe585a5203c6120687265663d222f22207461726765743d225f626c616e6b223ee9be99e4b98be7a281e4b8bbe9a1b53c2f613eefbc8ce8be93e585a5e682a8e79a84e5b890e58fb7e4b88ee5af86e7a081e3808244475320e4bc9ae5889be980a0e4b880e4b8aa20636f6f6b696520e5ad98e59ca8e682a8e79a84e8aea1e7ae97e69cbae38082e8bf99e4b8aa20636f6f6b696520e58fafe4bba5e8aea9e682a8e4bf9de68c81e799bbe585a520333020e5a4a9e38082, 'Y', '2007-02-16 20:24:46'),
(979, 33, 0xe5b8b8e8a781e997aee9a298e698afe590a6e8b088e588b0e68980e69c89e79a84e7a88be5ba8fe5b08fe6af9be79785efbc9f, 'Y', '2007-10-01 09:27:20'),
(980, 33, 0xe6b2a1e69c89efbc8ce4b99fe6b0b8e8bf9ce697a0e6b395e585a8e983a8e8b088e588b0e38082e8bf99e9878ce8b088e588b0e79a84e5b08fe6af9be79785e983bde698afe5b8b8e58f91e7949fe68896e5b7b2e79fa5e79a84e99d99e68081e99499e8afafefbc8ce4bba5e58f8ae59ca8e8aebae59d9be4b8ade8afa6e7bb86e8aea8e8aebae8bf87e79a84e38082e5b08fe6af9be79785e4bc9ae8a2abe4bfaee79086283c693ee8bf99e6a0b7e6898de69c89e7a9bae997b4e5aeb9e7bab3e585b6e5ae83e5b08fe6af9be79785efbc9f3c2f693e29efbc8ce4bd86e698afe59ca8e4bfaee79086e5a5bde4b98be5898defbc8ce8bf99e9878ce4b99fe4bc9ae58aa0e4bba5e8aea8e8aebae38082, 'Y', '2007-02-16 20:24:46'),
(981, 33, 0xe9be99e4b98be7a281e79a84e8aeafe681afe69c89e593aae4ba9befbc9f, 'N', '2007-02-16 20:24:46'),
(982, 33, 0xe6a38be6898be69c89e4bba5e4b88be587a0e7a78de696b9e5bc8fe4ba92e79bb8e4bca0e98081e8aeafe681afefbc9a0d0a3c554c3e0d0a3c6c693ee5af84e587bae7a781e4babae4bfa1e4bbb6e7bb99e789b9e5ae9ae79a84e6a38be6898be380823c2f6c693e0d0a3c6c693ee8b4b4e69687e588b0e9be99e4b98be7a281e79a84203c6120687265663d222f70686f72756d2f22207461726765743d225f626c616e6b223ee8aebae59d9b3c2f613e20e4b88ee8aeb8e5a49ae6a38be6898be8aea8e8aebae380823c2f6c693e0d0a3c6c693ee59ca8e8bf9be8a18ce4b8ade6a38be5b180e58f91e8a1a828e69c89e8aeb8e5a49ae5bda2e5bc8f29203c4120485245463d222f6661712e7068703f726561643d74266361743d33363523456e7472793735223ee79599e8a8803c2f413ee380823c2f6c693e3c2f554c3e0d0a0d0ae8afb7e6b3a8e6848fefbc81e6b2a1e69c89e8aeafe681afe4bc9ae8a2abe588a0e999a4e38082e7a781e4babae8aeafe681afe58faae4bc9ae4bb8ee682a8e79a84e58897e8a1a8e7a7bbe999a4efbc8ce4bd86e698afe4bc9ae79599e59ca8e695b0e68daee5ba93e4b8ade38082e6a38be5b180e4b8ade79a84e79599e8a880e4b99fe4bc9ae6b0b8e8bf9ce4bf9de79599efbc8ce8bf98e69c89e8aebae59d9be79a84e79599e8a880e38082e5afb9e5b180e4b8ade79a84e6ada3e5b8b8e8aeafe681afe4b88de4bc9ae8be93e585a5534746e69687e4bbb6efbc8ce4bd86e698afe4bc9ae79599e59ca8e7b3bbe7bb9fe4b88aefbc8ce5afb9e5b180e79a84e58f8ce696b9e58fafe4bba5e8afbbe58f96e38082, 'N', '2007-10-01 07:10:00'),
(983, 33, 0xe4bfa1e7aeb1e8b584e69699e5a4b9e698afe4bb80e5b9baefbc9f, 'Y', '2007-02-16 20:24:46'),
(984, 33, 0xe4bfa1e7aeb1e8b584e69699e5a4b9e58fafe4bba5e6a0b9e68daee682a8e79a84e99c80e8a681e69da5e7bb84e7bb87e8aeafe681afe38082e682a8e58fafe4bba5e99a8fe6848fe7a7bbe58aa8e8aeafe681afe588b0e4b88de5908ce8b584e69699e5a4b9e380820d0a0d0ae9be99e4b98be7a281e68f90e4be9be4bba5e4b88be79a84e58685e5bbbae8b584e69699e5a4b9efbc9a3c756c3e0d0a3c6c693e3c623ee585a8e694b6e588b03c2f623eefbc9ae68980e69c89e5b7b2e68ea5e694b6e8aeafe681afe380820d0a3c6c693e3c623ee4b8bbe4bfa1e7aeb13c2f623eefbc9ae5b7b2e99885e8afbbe79a84e5b7b2e68ea5e694b6e8aeafe681afe380820d0a3c6c693e3c623ee696b03c2f623eefbc9ae69caae8afbbe79a84e5b7b2e68ea5e694b6e8aeafe681afe380820d0a3c6c693e3c623ee59b9ee5a48defbc813c2f623eefbc9ae99c80e8a681e59b9ee5a48de79a84e8aeafe681afe380820d0a3c6c693e3c623ee59e83e59cbee6a1b63c2f623eefbc9ae8a2abe6a087e7a4bae588a0e999a4e79a84e8aeafe681afe380820d0a3c6c693e3c623ee5b7b2e5af84e587ba3c2f623eefbc9ae5b7b2e98081e587bae79a84e8aeafe681afe380820d0a3c2f756c3e, 'Y', '2007-03-04 05:54:50'),
(985, 33, 0xe5a682e4bd95e5a29ee58aa0e68896e7a7bbe999a4e9a1b9e79baeefbc9f, 'Y', '2007-02-16 20:24:46'),
(986, 33, 0xe8bf99e698afe585b3e4ba8e22e79baee5898de5afb9e5b18022efbc8c22e5b7b2e7bb93e69d9fe5afb9e5b18022e4b88e22e8bf9be8a18ce4b8ade5afb9e5b18022e79a84e6a38be5b180e698bee7a4bae9a1b9e79baee380820d0a0d0ae8a681e5a29ee58aa0e9a1b9e79baeefbc8ce4bb8ee8afa5e9a1b5e4b88be696b9e79a84e68b89e58f96e5bc8fe6b885e58d95e98089e58f96e682a8e683b3e8a681e79a84e9a1b9e79baeefbc8ce784b6e5908ee782b9e98089e69781e8beb9e79a8422e5a29ee58aa0e9a1b9e79bae22e68c89e992aee380820d0a0d0ae8a681e7a7bbe999a4e9a1b9e79baeefbc8ce782b9e98089e9a1b9e79baee6a087e9a298e69781e8beb9e79a84e7baa2e889b278e38082, 'N', '2007-02-16 20:24:46'),
(987, 33, 0xe68891e6898de5889ae58aa0e585a5e9be99e4b98be7a281e38082e68891e8afa5e8be93e585a5e4bb80e5b9bae5889de5a78be7ad89e7baa7efbc9f, 'Y', '2007-02-16 20:24:46'),
(988, 33, 0xe5bd93e682a8e6b3a8e5868ce696b0e5b890e58fb7e697b6efbc8c44475320e4bc9ae8afa2e997aee682a8e698afe590a6e5b7b2e69c89e585b6e5ae83e59bb4e6a38be7ad89e7baa7efbc88e4b99fe8aeb8e69da5e887aae4ba8ee585b6e5ae83e59bb4e6a38be7bd91e7ab99efbc8ce4bfb1e4b990e983a8efbc8ce68896e59bb4e6a38be58d8fe4bc9aefbc89e38082e58faae8a681e8be93e585a5e8afa5e7ad89e7baa7efbc8c44475320e5b0b1e4bc9ae8bdace68890e98082e5bd93e79a842044475320e5889de5a78be7ad89e7baa7e380820d0a0d0ae8afb7e6b3a8e6848fefbc9ae6b3a8e5868ce696b0e5b890e58fb7e697b6efbc8ce5a682e69e9ce682a8e4b88de79fa5e98193e887aae5b7b1e6a38be58a9befbc8ce8afb73c623ee4b88de8a6813c2f623ee8be93e585a5e4bbbbe4bd95e7ad89e7baa7efbc8ce8afb7e58588e58f82e88083e8afb4e6988ee6b58be8af95e587bae682a8e79a84e6a38be58a9be38082e4b880e697a6e8be93e585a5e5908ee5b0b1e697a0e6b395e694b9e58f98efbc9be682a8e5bf85e9a1bbe99da0e4b88be6a38be6898de883bde8b083e695b4e7ad89e7baa7e38082, 'N', '2007-02-16 20:24:46'),
(989, 33, 0xe5a682e69e9ce68891e4b880e5bc80e5a78be8be93e585a5e99499e8afafe79a84e5889de5a78be7ad89e7baa7efbc8ce69c89e4bb80e5b9bae585b3e7b3bbefbc9f, 'Y', '2007-02-16 20:24:46'),
(990, 33, 0xe585b6e5ae9ee6b2a1e4bb80e5b9bae585b3e7b3bbe380823c693eefbc88e4bd86e69c89e4ba9be4babae8a789e5be97e5be88e69c89e585b3e7b3bbefbc9be69c89e4ba9be4babae4b88de59ca8e6848fe38082efbc893c2f693ee9be99e4b98be7a281e5be88e5bfabe5b0b1e4bc9ae6a0b9e68daee682a8e5ae8ce68890e79a84e8af84e7ad89e5afb9e5b180e58aa0e4bba5e8b083e695b4e38082e7bb8fe8bf87e5a4a7e7baa6e4ba94e6aca1e5afb9e5b180efbc8ce682a8e5b0b1e58fafe4bba5e5be97e588b0e79bb8e5bd93e58fafe99da0e79a842044475320e7ad89e7baa7e380820d0a0d0ae5a682e69e9ce682a83c693ee69585e6848f3c2f693ee8aebee5ae9ae99499e8afafe79a84e5889de5a78be7ad89e7baa7efbc8ce682a8e4bc9ae683b9e681bce585b6e5ae83e5afb9e6898befbc8ce5afbce887b43c693ee4bb96e4bbace79a843c2f693ee7ad89e7baa7e4b88de585ace5b9b3e59cb0e4b88be9998de38082e588abe5bf98e4ba86efbc8ce682a8e4bba5e5908ee58fafe883bde8bf98e4bc9ae4b88ee4bb96e4bbace5afb9e5b180e280a60d0a0d0ae9be99e4b98be7a281e58aaae58a9be68f90e4be9be69c89e69588e79a84e7ad89e7baa7efbc8ce4bd86e698afe4b99fe99c80e8a681e682a8e79a84e59088e4bd9cefbc9ae8afb7e4b88de8a681e59ca8e696b0e5b890e58fb7e8aebee5ae9ae4b88ee682a8e6a38be58a9be5b7aee5a4aae5a49ae79a84e7ad89e7baa7e38082e8b0a2e8b0a2efbc81, 'N', '2007-02-17 10:55:06'),
(991, 33, 0xe5bd93e68891e79a84e8aea1e697b6e9929fe69a82e5819ce697b6efbc8ce5afb9e6898be79a84e9929fe698afe590a6e4bc9ae5bc80e5a78be8aea1e697b6efbc9f, 'Y', '2007-02-16 20:24:46'),
(992, 33, 0xe5a682e69e9ce698afe68da2e682a8e4b88befbc9ae4b88de4bc9ae380820d0a0d0ae5a682e69e9ce698afe68da2e5afb9e6898be4b88befbc9ae4bc9ae79a84efbc8ce5898de68f90e698afe8bf99e4b88de698afe79da1e79ca0e697b6e997b4efbc8ce4b99fe4b88de698afe591a8e69cabefbc88e59ca8e58f96e6b688e591a8e69cabe8aea1e697b6e79a84e5afb9e5b180efbc89efbc8ce5afb9e6898be4b99fe6b2a1e69c89e5bc80e5a78be4bc91e58187e38082, 'Y', '2007-06-21 11:30:49'),
(993, 33, 0xe68891e883bde4b88de883bde59ca8e8aea1e697b6e9929fe69a82e5819ce697b6e98081e587bae890bde5ad90efbc9f, 'Y', '2007-02-16 20:24:46'),
(994, 33, 0xe682a83c693ee99a8fe697b63c2f693ee983bde58fafe4bba5e98081e587bae890bde5ad90e29480e5b0b1e7ae97e698afe59ca8e79da1e79ca0e697b6e997b4efbc8ce4bc91e58187efbc8ce68896e591a8e69cabe38082, 'Y', '2007-06-21 11:30:49'),
(995, 33, 0xe9be99e4b98be7a281e79a84e591a8e69cabe8aea1e697b6e9929fe698afe4bb80e5b9baefbc9f, 'Y', '2007-02-16 20:24:46'),
(996, 33, 0xe5bd93e682a8e8aebee5ae9ae696b0e6a38be5b180e697b6efbc8ce682a8e58fafe4bba5e98089e68ba9e8aea1e697b6e9929f3c623ee4b88de8a6813c2f623ee59ca8e591a8e585ade4b88ee591a8e697a5e5ae9ee8aea1e697b6e38082, 'N', '2007-02-16 20:24:46'),
(999, 33, 0xe8b5a2e58d8ae79baee68896e4b880e799bee79baeefbc8ce4b8ade79b98e8aea4e8be93e68896e8b685e697b6e8b4a5efbc8ce59ca8e7ad89e7baa7e694b9e58f98e4b88ae69c89e4bb80e5b9bae5b7aee588abefbc9f, 'Y', '2007-06-07 17:31:06'),
(1000, 33, 0xe5afb9e9be99e4b98be7a281e8808ce8a880efbc8ce8b5a2e4b880e79b98e6a38be5b0b1e698afe8b5a2e4b880e79b98e6a38befbc8ce8be93e4b880e79b98e6a38be5b0b1e698afe8be93e4b880e79b98e6a38be38082e7ad89e7baa7e694b9e58f98e983bde4b880e6a0b7e38082, 'Y', '2007-02-16 20:24:46'),
(1001, 33, 0xe9be99e4b98be7a281e5a682e4bd95e8aea1e697b6efbc9f, 'Y', '2007-02-16 20:24:46'),
(1002, 33, '', 'Y', '2007-02-16 20:24:46'),
(1004, 33, 0xe59ca8e8aebae59d9be69c89e4bd95e8a18ce4b8bae8a784e88c83efbc9f, 'N', '2007-02-16 20:24:46'),
(1005, 33, 0xe58fafe4bba5e58f82e88083203c6120687265663d22687474703a2f2f7777772e666171732e6f72672f726663732f726663313835352e68746d6c223ee7bd91e7bb9ce7a4bce4bbaae8a784e88c833c2f613ee380820d0a0d0ae8afa5e8a784e88c83e69c89e782b9e58697e995bfe38082e682a8e4b99fe58fafe4bba5e58f82e88083e8be83e7ae80e79fade79a84203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f70686f72756d2f726561642e7068703f663d3426693d3339323626743d33393236223e20e8aebae59d9be4b8bbe9a2983c2f613ee38082, 'N', '2007-02-16 20:24:46'),
(1006, 33, 0xe9be99e4b98be7a281e79a84e58e9fe5a78be7a081e698afe590a6e585ace5bc80efbc9f, 'Y', '2007-02-16 20:24:46'),
(1007, 33, 0xe6a0b9e68dae20474e55205075626c6963204c6963656e6365202847504c29e79a84e6b395e5be8befbc8ce58fafe4bb8e2043565320e4b88be8bdbde58e9fe5a78be7a081efbc9a203c4120485245463d22687474703a2f2f736f75726365666f7267652e6e65742f70726f6a656374732f647261676f6e676f7365727665722f22205441524745543d5f626c616e6b3e536f75726365466f726765e9be99e4b98be7a281e7a094e58f91e9a1b53c2f413ee38082, 'N', '2007-02-16 20:24:46'),
(1008, 33, 0xe9be99e4b98be7a281e79a84e58e9fe5a78be7a081e7a094e58f91e59ca8e4bd95e5a484e8aea8e8aebaefbc9f, 'Y', '2007-02-16 20:24:46'),
(1009, 33, 0xe59ca8203c6120485245463d22687474703a2f2f6c697374732e736f75726365666f7267652e6e65742f6c697374732f6c697374696e666f2f647261676f6e676f7365727665722d646576656c22205441524745543d225f626c616e6b223ee9be99e4b98be7a281e7a094e58f91e794b5e5ad90e982aee4bbb6e58897e8a1a83c2f613ee38082e5be88e6aca2e8bf8ee682a8e6b3a8e5868ce58aa0e585a5e7a094e58f91e38082, 'N', '2007-02-16 20:24:46'),
(1010, 33, 0xe593aae4ba9be5afb9e5b180e4bc9ae5bdb1e5938de68891e79a84e7ad89e7baa7efbc9f, 'Y', '2007-02-16 20:24:46'),
(1011, 33, 0xe9be99e4b98be7a281e79a84e8af84e7ad89e7b3bbe7bb9fe58faae8aea1e7ae97e4bba5e4b88be6a38be5b180efbc9a0d0a0d0a2a20e58f8ce696b9e6a38be6898be983bde5908ce6848fe6a38be5b180e69c89e8af84e7ad89efbc8ce4bba5e58f8a0d0a2a20e799bde696b9e5b7b2e7bb8fe4b88be4ba86e887b3e5b091203520e6898be38082, 'N', '2007-02-16 20:24:46'),
(1012, 33, 0xe68891e883bde68890e4b8bae9be99e4b98be7a281e79a84e7bfbbe8af91e4babae59198e59097efbc9f, 'Y', '2007-02-16 20:24:46'),
(1013, 33, 0xe58fafe4bba5e38082e8afb7e59ca8203c4120485245463d222f70686f72756d2f6c6973742e7068703f663d3722205441524745543d5f626c616e6b3ee7bfbbe8af91e8aebae59d9b3c2f413e20e68f90e587bae794b3e8afb7e38082e7aea1e79086e88085e9809ae5b8b8e983bde4bc9ae8aeb8e58fafe38082, 'Y', '2007-02-16 20:24:46'),
(1016, 33, 0xe9be99e4b98be7a281e4bdbfe794a8e4bb80e5b9bae59bb4e6a38be8a784e58899efbc9f, 'Y', '2007-02-16 20:24:46'),
(1017, 33, 0xe9be99e4b98be7a281e5a4a7e887b4e4bdbfe794a8e697a5e69cace59bb4e6a38be8a784e5889920e2948020e4b88de8bf87e59ca8e8aea9e5ad90e4bd8de7bdaeefbc8ce6a38be79b98e5a4a7e5b08fe4b88ee697b6e99990e79a84e8aebee5ae9ae4b88aefbc8ce9be99e4b98be7a281e9a284e8aebee98089e9a1b9e5b9b6e4b88de7aca6e59088e6ada3e5bc8fe697a5e69cace59bb4e6a38be8a784e58899efbc8ce4bd86e698afe4bcbce4b98ee6af94e8be83e98082e59088e59b9ee59088e588b6e59bb4e6a38be280a60d0a0d0ae7ae80e58d95e8afb4efbc8ce9be99e4b98be7a2813c756c3e3c6c693ee6a0b9e68daee6a38be6898be5afb9e6a38be79b98e79a84e782b9e7a9bae69da5e8aea1e58886efbc8c0d0a3c6c693ee6b2a1e69c89e8b685e7baa7e58aabe8a784e58899efbc8c0d0a3c6c693ee7a681e6ada2e887aae68f90efbc8c0d0a3c6c693ee5aeb9e8aeb8e887aae794b1e4bd8de7bdaee8aea9e5ad90e380823c2f756c3e, 'N', '2007-02-19 19:31:51'),
(1019, 33, 0xe59b9ee59088e588b6, 'Y', '2007-02-16 20:24:46'),
(1020, 33, 0x5475726e2d6261736564efbc9ae59b9ee59088e588b6e79a84e6b8b8e6888fe698afe99d9ee5908ce697b6e8bf9be8a18ce38082e58f8ce696b9e4b88de99c80e8a681e5908ce697b6e59ca8e59cbaefbc8ce58fafe4bba5e69c89e697b6e997b4e697b6e6898de78ea9e38082e4be8be5a682e59b9ee59088e588b6e79a84e59bb4e6a38be58fafe9808fe8bf87e4bfa1e4bbb6efbc8ce794b5e5ad90e982aee4bbb6efbc8ce68896e59ca8e9be99e4b98be7a281e8bf99e9878ce78ea9e38082e4b99fe8afb7e58f82e88083203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f6661712e7068703f726561643d74266361743d3323456e747279313533223ee5ae9ee697b6e588b63c2f613ee38082, 'Y', '2007-02-18 07:53:06'),
(1021, 33, 0xe5ae9ee697b6e588b6, 'Y', '2007-02-16 20:24:46'),
(1022, 33, 0x5265616c2d74696d65efbc9ae5ae9ee697b6e588b6e6b8b8e6888fe698afe5908ce697b6e8bf9be8a18ce79a84e38082e58f8ce696b9e5bf85e9a1bbe5908ce697b6e59ca8e59cbae6898de883bde78ea9e38082e695b4e59cbae6b8b8e6888fe4b880e6aca1e5b0b1e7bb93e69d9fe38082e4be8be5a682e5ae9ee697b6e59bb4e6a38be8a681e59ca8e4b880e4b8aae79c9fe79a84e6a38be79b98e4b88ae8bf9be8a18cefbc8ce68896e9808fe8bf87e5ae9ee697b6e59bb4e6a38be7bd91e7ab99e69da5e78ea9e38082e4b99fe8afb7e58f82e88083203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f6661712e7068703f726561643d74266361743d3323456e747279313532223ee59b9ee59088e588b63c2f613ee38082, 'Y', '2007-02-18 07:53:06'),
(1025, 33, 0x4576656e2067616d65efbc9ae6b2a1e69c89203c6120687265663d226661712e7068703f726561643d74266361743d33353723456e7472793937223ee8aea9e5ad903c2f613e20e79a84e6a38be5b180e38082e794b1e98280e8afb7e79a84e5afb9e6898be8aebee5ae9a203c6120687265663d226661712e7068703f726561643d74266361743d3323456e74727939223ee8b4b4e79bae3c2f613ee38082, 'Y', '2007-02-16 20:24:46'),
(1036, 33, 0xe697a0e6b4bbe58aa8e79a84e6a38be6898be4b8aae4babae8b584e69699e4bd95e697b6e4bc9ae8a2abe7a7bbe999a4efbc9f, 'N', '2007-10-01 07:10:00'),
(1037, 33, 0xe6b0b8e8bf9ce4b88de4bc9ae38082e4bb96e4bbace58faae4bc9ae8a2abe6a087e7a4bae697a0e6b4bbe58aa8efbc8ce4bb8ee5afb9e5b180e4b8ade79a84e6a38be6898be58897e8a1a8e4b88ae6b688e5a4b1e38082, 'N', '2007-10-01 07:10:00'),
(1038, 33, 0xe68891e58fafe4bba5e99da0e8be85e58aa9e4bdbfe887aae5b7b1e6a38be58a9be69bb4e5bcbae59097efbc9f, 'Y', '2007-02-16 20:24:46'),
(1039, 33, 0xe5bd93e784b6e58fafe4bba5e38082e8afbbe4b9a6efbc8ce8af98e6a38befbc8ce4b88ee8aea1e7ae97e69cbae5afb9e5a595efbc8ce4b88ee585b6e5ae83e6a38be6898be8aea8e8aebae38082e8aebae59d9be58fafe4bba5e79c8be588b0e8bf99e9878ce8aeb8e5a49ae6a38be6898be29480e8afb4e4b88de5ae9ae585a8e983a8e29480e4bc9ae98089e68ba9e4bba5e4b88ae79a84e4bd9ce6b395e38082, 'N', '2007-02-16 20:24:46'),
(1042, 33, 0xe68891e8a681e5a682e4bd95e799bbe587baefbc9f, 'Y', '2007-02-17 07:57:44'),
(1043, 33, 0xe58faae8a681e782b9e98089e4bbbbe4bd95e7bd91e9a1b5e58fb3e4b88be8a792e79a8422e799bbe587ba22e38082e5a682e69e9c20333020e697a5e6b2a1e799bbe585a52044475320efbc8ce7b3bbe7bb9f20636f6f6b696520e5b0b1e4bc9ae8bf87e69c9fefbc8ce5b086e682a8e799bbe587bae38082, 'Y', '2007-02-17 07:57:44'),
(1055, 33, 0xe79baee5898de5afb9e5b1805253532046656564, 'Y', '2007-02-18 10:49:03'),
(122, 8, 0xa65ec2d0, 'Y', '2007-02-17 11:36:47'),
(494, 8, 0x2573add3a448b8eaaec6, 'Y', '2007-02-17 11:39:06'),
(732, 8, 0xb0b2b4c1, 'Y', '2007-02-17 11:39:06'),
(733, 8, 0xa5f0b0b2, 'Y', '2009-05-25 05:53:14'),
(736, 8, 0xb3d3, 'Y', '2007-02-17 11:39:06'),
(737, 8, 0xad74, 'Y', '2007-02-17 11:39:06'),
(1077, 8, 0xa470b4d1bd4cb9efa7bdaec9, 'Y', '2007-02-19 06:22:46'),
(1078, 8, 0xb4d1bd4cb8f4bcc6a46aa9f3, 'Y', '2007-02-19 06:22:46'),
(1113, 8, 0xb5fbb5a5b4d1a7bd, 'Y', '2007-02-19 10:31:27'),
(1210, 8, 0xbd73bfe8a470b6c7, 'Y', '2007-02-17 11:39:06'),
(1073, 8, 0xa4e2bcc6ad70bcc6, 'Y', '2007-02-19 06:27:36'),
(1074, 8, 0xa4a3b657b94c313030, 'Y', '2007-02-19 06:22:46'),
(1079, 8, 0xa6ecb86d, 'Y', '2007-02-19 06:22:46'),
(1080, 8, 0xb0aa, 'Y', '2007-02-19 06:22:46'),
(1081, 8, 0xbc65, 'Y', '2007-02-19 06:22:46'),
(1109, 8, 0xb977c4fd, 'Y', '2007-02-19 06:22:46'),
(1214, 8, 0xb9efa7bda4a4aabab4d1a4e2, 'Y', '2007-10-01 07:02:21'),
(1069, 8, 0xa455, 'Y', '2007-02-19 06:34:16'),
(731, 8, 0xbd73bfe8ab48bd63, 'Y', '2007-02-19 06:27:36'),
(738, 8, 0xa7efc5dcb0b2b4c1aaf8abd7, 'Y', '2007-02-19 06:27:36'),
(739, 8, 0xb67da96ca5f0b0b2, 'Y', '2007-05-30 12:42:24'),
(1226, 8, 0xa7f3b773, 'Y', '2007-02-19 06:34:16'),
(1245, 8, 0xc1f4c2c3, 'Y', '2007-02-19 06:34:16'),
(1113, 10, 0xc6c0b5c8c6e5bed6, 'Y', '2007-05-30 12:22:26'),
(502, 8, 0xb3f2b4d1b34ebb79, 'Y', '2007-02-19 20:22:53'),
(503, 8, 0xc2f8b6b5, 'Y', '2007-02-19 20:22:53'),
(504, 8, 0xb3f2b4d1b357ab68, 'Y', '2007-02-19 20:22:53'),
(505, 8, 0xa5d8, 'Y', '2007-02-19 20:22:53'),
(506, 8, 0x4d6f6b75a147a662bd4ca457aabaa440add3aac5c249a143, 'N', '2007-02-19 20:22:53'),
(507, 8, 0xb64ba5d8, 'Y', '2007-02-19 20:22:53'),
(508, 8, 0x4b6f6d69a147b64bb5b9a5d5a4e8a8c6a5fdacf9a977aaba203c6120687265663d222f6661712e7068703f726561643d74266361743d3323456e74727938223ea5d83c2f613ea141a5cea8d3c0b1b8c9b6c2a4e8a5fda4e2aabac075b6d5a143, 'N', '2007-02-19 20:22:53'),
(509, 8, 0xc073a4a7f9d6c2a7bbf6, 'Y', '2007-02-19 20:22:53'),
(510, 8, 0xc073a4a7f9d6b57ba6a1a470a4f2af66, 'N', '2007-02-19 20:22:53'),
(511, 8, 0xc073a4a7f9d6aababfefb3e6bb50bfefb6b5, 'Y', '2007-02-19 20:22:53'),
(512, 8, 0xc073a4a7f9d6b4d1a7bd, 'Y', '2007-02-19 20:22:53'),
(513, 8, 0xc073a4a7f9d6ace3b56f, 'Y', '2007-02-19 20:22:53'),
(514, 8, 0xb1cfa952a149a8ecb342b3a3ac4fb57ba6a1a4f2af66a149, 'Y', '2007-02-19 20:22:53'),
(515, 8, 0xb17aa7a4a662b971b8a3ab65aab12044475320a4d3a45ba446a143bdd0ac7eadd3befea141b4aba457b0aeb262a6e7aa41203a2d29, 'Y', '2007-02-19 20:22:53'),
(518, 8, 0xb271a46c, 'N', '2007-02-19 20:22:53'),
(519, 8, 0x4e69676972693a20b271a46cac4fa5cea8d3a84da977bdd6aeb3b6c2a46ca143a440a4e8a15db371b160ac4fb8fba67eaaf8aacca15ea7eca8faa440a7e2a5d5a46ca141a574a440a4e8bfefbedca440c1fba9cea8e2c1fbb6c2a46ca9f1a662b4d1bd4ca457a141a8d3b271b9efa4e8a4e2a4a4aabaa5d5a46cac4fc2f9bcc6a9ceb3e6bcc6a143a670aa47b271b9efa446b44eaeb3b6c2a46ca141b271bff9a446b44eaeb3a5d5a46ca1430d0a0d0aa662c073a4a7f9d6a141b36fadd3b94cb57ba5d1a874b2ceb342b27aa143aeb3a5d5a46ca440a4e8a569a548b16fa8ec203620a5d8a562aabab64ba5d8a1430d0a0d0ab3cca66eac4fb4d1a44facdbb7edaabab4d1a4e2a47ea5ceb271a46ca143, 'N', '2007-02-19 20:22:53'),
(522, 8, 0xb67da96cb773a7bdaec9a569a548afacb9efa4e2a66eb942b6dca148, 'Y', '2007-02-19 20:22:53'),
(523, 8, 0xb7edb54da569a548a143a6b3a8c7b4d1a4e2a45db3dfc577b6c7b2ceaabaa4e9bb79203c6120687265663d222f6661712e7068703f726561643d74266361743d3323456e7472793738223e6f6e656761697368696d6173753c2f613ea143, 'N', '2007-02-19 20:22:53'),
(525, 8, 0xa7daafe0abd8c4b3b773a55cafe0b6dca148, 'Y', '2007-02-19 20:22:53'),
(526, 8, 0xb7edb54da569a548a149bdd0a7e2abd8c4b3b56ea662203c4120485245463d222f70686f72756d2f6c6973742e7068703f663d34223ebdd7bec23c2f413e2e0d0a0d0aa477b867abd8c4b3aabaa8c6b6b5a569b0d1a6d222c073a4a7f9d6bdd7bec2b76ab44dbfefb6b522a141c1d9a6b3203c4120485245463d22687474703a2f2f73656e736569732e786d702e6e65742f3f444753576973686c69737422205441524745543d225f626c616e6b223e2253656e7365692773204c696272617279c073a4a7f9d6b35cc440b3e6223c2f413e20a548a4ce22536f75726365666f726765c073a4a7f9d6ad70b565435653c5dca7f3acf6bffd22a143, 'N', '2007-02-19 20:22:53'),
(529, 8, 0xa7daad6ea670a6f3ac64b8dfaf53a977aabab357ab68a148, 'Y', '2007-02-19 20:22:53'),
(530, 8, 0xa662b160a8a3b0ddc344a9cebdd7bec2a4a4bba1a9fab17aaabaac64b8dfa143b3cca66eac4fbba1a9fab17ab751ac64b8dfaabab357ab68a141a5cea662b4d1a7bdaabaa4b0bbf2b1a1aa70a4a4a143, 'Y', '2007-10-01 07:44:22'),
(531, 8, 0xb3f2b4d1aabab0f2a5bbb357ab68ac4fa4b0bbf2a148, 'Y', '2007-02-19 20:22:53'),
(532, 8, 0xa8e2a6ecb9efa4e2a662a440add3a4e8a7ceb4d1bd4ca457a55db3f2bbe2a467a143b4d1bd4cac4f20313978313920b8f4a141a6fda45da6b32039783920b8f4bb5020313378313320b8f4aabaa143b9efa4e2bdfcac79a662a5e6a465c249a457a9f1a455a6dba476c343a6e2aabab4d1a46ca143b6c2a46ca5fda455a141b54dabe1ac4fa5d5a46ca1430d0a0d0aa670aa47b8a8a46cabe1a141c5fdb9efa4e8aabaa440b873b4d1a46ca853a6b3a446aef0a141b9efa4e8aabab36fb873b4d1a46cb44eb171b4d1bd4ca457aeb3b1bca15db4a3a46ca15ea143a670aa47b8a8a46cb77cbec9ad50a6dba476aabaa440b873b4d1a46ca853a6b3aef0a141b36fa440a4e2ac4fb948b357aabab854a46ca1430d0a0d0ab7edc2f9a4e8b3a3b5eaa4e2abe1a141b9efa7bdb44eb5b2a7f4a141b67da96cbcc6a661ad70a4c0a147a5fdb6f1baa1a4a4a5dfaac5b6a1a15db3e6a978a15ea141b54dabe1b2beb0a3a6baa46ca143b6c2a4e8bb50a5d5a4e8aababbe2a467ac4fa548a55db3f2aabaa5e6a465c249ad70bae2a141b4eeb1bcb351b9efa4e2b4a3a46caababcc6a5d8a1430d0a0d0ab8d4b1a1a569b0d1a6d23c6120687265663d22687474703a2f2f706c6179676f2e746f2f696e7465726163746976652f696e6465782e68746d6c22207461726765743d6e65773ea4acb0cabec7b3f2b4d13c2f613e2e, 'Y', '2007-02-19 20:22:53'),
(533, 8, 0xadfeb8cca569a7e4a8eca7f3a668aabab3f2b4d1baf4afb8a148, 'Y', '2007-02-19 20:22:53'),
(534, 8, 0xc073a4a7f9d6aaba203c6120687265663d222f6c696e6b732e706870223eb373b5b23c2f613ea143, 'Y', '2007-02-19 20:22:53'),
(535, 8, 0xa6aca978, 'Y', '2007-02-19 20:22:53'),
(536, 8, 0x596f7365a147a978a46ca141b4d1a7bdaabab3ccabe1b6a5ac71a141a477b867a853a6b3a7f0c0bba455aa6ba141a575a6b3c258ae69ac4aa6b3a661bd4caabab3cca8cea455aa6ba143, 'Y', '2009-09-14 15:31:46'),
(537, 8, 0xa573a659, 'N', '2007-02-19 20:22:53'),
(538, 8, 0x4174617269a147a573a659b44eac4fabc2afd9ad6eb4a3b1bca440a46ca9cea440b873a46ca143b36fa440a46ca9ceb36fa440b873a46ca575b3d1a455a440a466aef0a143b36fa440a46ca9ceb36fa440b873a46cb44eac4f26616d703b71756f743bb351a573a65926616d703b71756f743ba1430d0a0d0aa662af75aabab4d1bd4ca455b4d1aec9a141b3dba55826616d703b71756f743ba573a65926616d703b71756f743bac4fb160a8a3aabac2a7bbaaa141a6fda8c3a4a3ac4fa5b2ad6eaabaa143b371b160a662b4d1a7bdb67da96cab65a141c2f9a4e8b77cacf9a977a66eb8d3a670a6f3b342b27aa143a662abfcbec9b4d1a9cec5fda46cb4d1a4a4a141a5d5a4e8b3dba573a659a8d3a8f3a755b6c2a4e8ac4fa658b27aaabaa1430d0a0d0aa6fdac4fa662baf4b8f4a455b4d1aec9a5b4a55826616d703b71756f743ba573a659a1a8aabaa672b2b4a141b371b160b351b5f8acb0a668be6ca4a7c17ca143, 'N', '2008-06-04 07:18:13'),
(539, 8, 0xa5b4a754, 'Y', '2007-02-19 20:22:53'),
(540, 8, 0x4b6fa14722a5b4a75422ac4fa662b4d1bd4ca457a558b27badabbdc6b4a3a8faac59a440a46caabab1a1aa70a143a754aabaa672adb1b74eb871ac4f22b54cb2d722a143, 'Y', '2007-02-19 20:22:53'),
(541, 8, 0xaec9b6a1a5cea5faaabab4d1a7bda569a548adabb773ad70aec9b6dca148, 'Y', '2007-02-19 20:22:53'),
(542, 8, 0xa4a3a6e6a1413c693ebdd0adabb773b67da96cb773b4d1a7bda8c3203c6120687265663d222f6661712e7068703f726561643d74266361743d3536223ebfefbedcbe41b7edaabaaec9adad3c2f613ea1493c2f693e, 'Y', '2007-02-19 20:22:53'),
(545, 8, 0xafc5, 'Y', '2007-02-19 20:22:53'),
(546, 8, 0x4b7975a14722afc522aabab74eabe4ac4f22aaecbec7b57babd722a143afc5b17120333020afc5a8ec203120afc5a1413120afc5b3ccb16aa143333020afc5aabab57babd7ac4fc141b8d1b357ab68a141a6fdb373a440bd4cb4d1b3a3c1d9a853a455a1430d0a0d0ab371b160a8ec20313020afc5a5aaa56ba141afc5aabab57babd7a47eb77cc3ada977a455a8d3a141b36faec9add4a569a548bb502031203c6120687265663d222f6661712e7068703f726561643d74266361743d3323456e7472793339223eac713c2f613e20b4d1a4e2b669a6e6203920a46c203c6120687265663d222f6661712e7068703f726561643d74266361743d33353723456e7472793937223ec5fda46c3c2f613e20b9efa7bda143, 'Y', '2007-02-19 20:22:53'),
(547, 8, 0xac71, 'Y', '2009-05-06 04:30:53'),
(548, 8, 0x44616ea14722ac7122aabab74eabe4ac4f22b14dae61b57babd722a143ac71b171203120ac71b67da96ca141bcc6a5d8b656b0aab656b16aa1433520ac71b77ebe6cb4d1a4e2bedabba1acdbb7eda9f3203120ac71c2beb77eb4d1a468a14328c2beb77eb4d1a468a853a6b3203c6120687265663d222f6661712e7068703f726561643d74266361743d3323456e7472793338223eafc53c2f613e20aabab0cfa4c029, 'Y', '2007-02-19 20:22:53'),
(549, 8, 0xa7daa662c073a4a7f9d6a6b3a668a4d6a4d1b0b2b4c1a148, 'Y', '2007-02-19 20:22:53'),
(550, 8, 0xb3cca66820333020a4d1a15da843a67ea15ea141a843add3a4ebbc57a55b20322e3520a4d1b0b2b4c1a143, 'Y', '2007-02-19 20:22:53'),
(551, 8, 0x22a5d8ab65b9efa7bd22aabab6b5a5d8ac4fa4b0bbf2a148, 'N', '2007-02-19 20:22:53'),
(552, 8, '', 'N', '2008-06-04 07:18:13'),
(1424, 34, 0xe799bde696b9e7ad89e7b49a, 'Y', '2012-01-08 18:10:19'),
(1428, 34, 0xe799bde696b9e7ad89e7b49ae5b7aee795b0, 'Y', '2012-01-08 18:10:19'),
(1420, 34, 0xe9bb91e696b9e7ad89e7b49a, 'Y', '2012-01-08 18:10:53'),
(1426, 34, 0xe9bb91e696b9e7ad89e7b49ae5b7aee795b0, 'Y', '2012-01-08 18:10:53'),
(1417, 34, 0xe9bb91e696b9e5a793e5908d, 'Y', '2012-01-08 18:11:51'),
(1421, 34, 0xe799bde696b9e5a793e5908d, 'Y', '2012-01-08 18:12:07'),
(1421, 8, 0xa5d5a4e8a96da657, 'Y', '2012-01-08 18:12:19'),
(1417, 8, 0xb6c2a4e8a96da657, 'Y', '2012-01-08 18:12:34'),
(1417, 10, 0xbadab7bdd0d5c3fb, 'Y', '2012-01-08 18:13:10'),
(1421, 10, 0xb0d7b7bdd0d5c3fb, 'Y', '2012-01-08 18:13:35'),
(1421, 33, 0xe799bde696b9e5a793e5908d, 'Y', '2012-01-08 18:13:52'),
(1417, 33, 0xe9bb91e696b9e5a793e5908d, 'Y', '2012-01-08 18:14:12'),
(1558, 8, 0xa55ba44aaec9b6a1, 'Y', '2012-01-08 18:18:58'),
(1558, 34, 0xe58aa0e585a5e69982e99693, 'Y', '2012-01-08 18:19:17'),
(553, 8, 0xa7daaabaad70aec9c4c1a6f3aec9b67da96cad70aec9a148, 'Y', '2007-02-19 20:22:53'),
(554, 8, 0xb7edb4abb17aa455aabaaec9add4a141b17aaabaad70aec9c4c13c623ea47eb77c3c2f623eb67da96cad70aec9a1430d0a0d0aa548a455aabab1a1aa70a4a3b77cad70aec9a1473c756c3e0d0a3c6c693eb4abb9efa4e2a455aabaaec9add43c2f6c693e0d0a3c6c693eb7edb17ab342a9f3203c6120687265663d222f6661712e7068703f726561643d74266361743d353623456e7472793631223ebaceaf76aec9b6a13c2f613e3c2f6c693e0d0a3c6c693eb7edb17ab342a9f3203c6120687265663d222f6661712e7068703f726561643d74266361743d353623456e7472793636223eb0b2b4c13c2f613e3c2f6c693e0d0a3c6c693eb667a5bdaec9a15da5b2b6b7a662203c6120687265663d222f6661712e7068703f726561643d74266361743d33353723456e7472793434223ec1dcbdd0b4d1a7bd3c2f613e203c2f6c693eaec9bfefbedca6b9a55cafe0a15e0d0a3c2f756c3e, 'N', '2007-02-19 20:22:53'),
(555, 8, 0xa670a6f3c65bacddb4d1c3d02053474620c0c9a148, 'N', '2007-02-25 08:44:17'),
(556, 8, 0xa6b3b35ca668b57ba6a1a569a548c65bacddbb50bd73bfe8b4d1c3d02053474620c0c9a143a440add3a66ebfefbedcac4f203c6120687265663d22687474703a2f2f7777772e72656e652d67726f74686d616e6e2e64652f6a61676f2f223e4a61676f3c2f613ea1414a61766120b3f2b4d1bd73bfe8beb9a1430d0a0d0aad5eb0eab3f2b4d1a8f3b77ca6b3a440aaf8a643aaba203c6120687265663d22687474703a2f2f7777772e62726974676f2e6f72672f676f70637265732f676f7063726573312e68746d6c23732d76696577223eb57ba6a13c2f613e20a569c65bacdd2053474620c0c9a1430d0a0d0ab7edb17aa6b3a4462053474620c65bacddb57ba6a1abe1a141a569a548b35da977c273c4fdbeb9a8d3b373b1b5206d696d65a141bfe9a44a276170706c69636174696f6e2f782d676f2d73676627a141a575ad6ec249bfefb44ea569a548b1d2b0cab57ba6a1a143, 'N', '2007-02-25 08:44:17'),
(557, 8, 0xa670a6f3b67da96cb773b4d1a7bda148, 'Y', '2007-02-19 21:35:43'),
(558, 8, '', 'N', '2008-06-04 07:18:13'),
(1285, 18, 0x436f73612073756363656465646520736520616c206d696f20677261646f20696e206361736f206469207061726974e020286a69676f293f, 'Y', '2009-11-15 13:57:48'),
(1289, 18, 0x436f6d6520706f73736f2063726561726520756e206c696e6b20616c6c6120706167696e6120646920696e666f726d617a696f6e692064656c6c277574656e74653f, 'Y', '2009-11-15 13:57:48'),
(1291, 18, 0x436f6d6520706f73736f2063726561726520756e206c696e6b20706572206d616e6461726520756e206d657373616767696f20616420756e207574656e74653f, 'Y', '2009-11-15 13:57:48'),
(1442, 18, 0x566974746f7269613f, 'Y', '2010-04-02 15:09:10'),
(1498, 18, 0x436f6d6d656e746f, 'Y', '2009-11-15 13:59:58'),
(1502, 18, 0x54656d706f206c696d697465, 'Y', '2009-11-15 13:59:58'),
(1402, 17, 0x446f64616a20637a6173, 'Y', '2009-12-25 21:43:04'),
(1, 37, '', 'Y', '2012-06-19 21:06:23'),
(2, 37, '', 'Y', '2012-06-19 21:06:23'),
(3, 37, '', 'Y', '2012-06-19 21:06:23'),
(7, 37, '', 'Y', '2012-06-19 21:06:23'),
(8, 37, '', 'Y', '2012-06-19 21:06:23'),
(9, 37, '', 'Y', '2012-06-19 21:06:23'),
(12, 37, '', 'Y', '2012-06-19 21:06:23'),
(13, 37, '', 'Y', '2012-06-19 21:06:23'),
(14, 37, '', 'Y', '2012-06-19 21:06:23'),
(15, 37, '', 'Y', '2012-06-19 21:06:23'),
(16, 37, '', 'Y', '2012-06-19 21:06:23'),
(17, 37, '', 'Y', '2012-06-19 21:06:23'),
(18, 37, '', 'Y', '2012-06-19 21:06:23'),
(19, 37, '', 'Y', '2012-06-19 21:06:23'),
(20, 37, '', 'Y', '2012-06-19 21:06:23'),
(22, 37, 0xd098d0b7d0b2d0b8d0bdd0b5d182d0b52c20d182d180d18fd0b1d0b2d0b020d0b4d0b020d0b2d18ad0b2d0b5d0b4d0b5d182d0b520d0b8d0bcd0b52e, 'Y', '2009-12-30 11:32:05'),
(559, 8, 0xa670a6f3b8a8a46ca148, 'Y', '2007-02-19 21:35:43'),
(560, 8, 0xa66220266c743b6120687265663d2671756f743b2f7374617475732e7068702671756f743b2667743b20a5d8ab65b9efa7bd266c743b2f612667743b20a6b3b4abb17aa455aabab4d1a7bda143c249bfefb4d1a7bdb8b9bd58b44eb77ca5b4b67db4d1a7bda1430d0a0d0aa5b4b67db4d1a7bdabe1a141c249bfefaac5aabaa5e6a465c249b44ea569a548b8a8a46ca15da455a558a440a4e2a15ea143a670aa47b36fa440a4e2b4a3a8aba5f4a6f3b9efa4e2b4d1a46ca141a874b2ceb44eb77ca6dbb0cab342b27aa143b5eaa4e2a9cebb7bbfe9a45da569c249bfefb4d1bd4ca455aabab373b1b5a143200d0a0d0ab7edb0b5a558b773aabab8a8a46c2fb5eaa4e22fbb7bbfe9a4a7abe1a141abf6a4552671756f743bb065a5582671756f743ba8d3bd54a977b17aaababfefbedca143a670aa47b17aa7efc5dca544b74ea141b44eabf6a4552671756f743ba65ea4e22671756f743babf6b673a143, 'Y', '2008-05-07 09:47:56'),
(561, 8, 0xa670a6f3a752b0a3b669a6e6a4a4aabab9efa7bda148, 'Y', '2007-02-19 21:35:43'),
(562, 8, 0xa662b2c4a451a4e2a4a7ab65a141b4d1bd4ca455a4e8b77ca6b32671756f743ba752b0a32671756f743bbfefb6b5a143a670aa47c249bfefa752b0a3a141a4a3b77cbc76c554b17aaabab5a5afc5a143b657b94ca451a4e2a4a7abe1a141b4d1a7bdb44eb54caa6ba752b0a3a143, 'N', '2008-05-07 09:37:16'),
(563, 8, 0xa670a6f3b5b2a7f4b9efa7bda148, 'Y', '2007-02-19 21:35:43'),
(564, 8, 0xa575a6b3b4ab3c693eb17a3c2f693ea455aec9a47eafe0b5b2a7f4b9efa7bda1430d0a3c554c3e0d0a3c4c493eb17abb50b9efa4e2b373c4f2b5eaa4e2a143b36fac4fa5bfb160aabab5b2a7f4b9efa7bda4e8a6a1a143b54dabe1a741adccb14ec249bfefa6baa46ca143b54dabe1c073a4a7f9d6b77cbcc6a661a141a84da977b3d3ad74a1430d0a0d0a3c4c493ea8cfa5ce22bb7bbfe922abf6b673a143bb7bbfe9abe1b5a5afc5b77ca8fca8ecbc76c554a1430d0a0d0a3c4c493ec5fdb4d1a7bdaec9b6a1a5cea7b9a1433c693e2820a6fdac4fbdd0b17aa5fda6d2bc7ba8e4a54cbfefbedca14929203c2f693ea670aa47b17aaabaaec9b6a1a5cea7b9a141b17ab44ebae2bfe9a446a141b17aaabab5a5afc5a45db77ca8fca8ecbc76c554a1430d0a3c2f554c3e, 'N', '2007-06-07 17:26:19'),
(565, 8, 0xc073a4a7f9d6a4b6b2d0, 'Y', '2007-02-19 21:35:43'),
(566, 8, 0xb36fb8ccac4fa4b0bbf2a661a4e8a148, 'Y', '2007-02-19 21:35:43'),
(567, 8, 0xa662c073a4a7f9d6a15d444753a15ea569a548aab1203c6120687265663d226661712e7068703f726561643d74266361743d3323456e747279313532223ea65ea658a8ee3c2f613e20b3f2b4d1a143abdcc3fea6fcb371ab48a455b4d1a1430d0a0d0ab4d1a4e2b371b160a440b667a455a4ada4e2a143a65da6b9a455a440bd4cb4d1ad6eaae1bcc6b667aec9b6a1a146c073a4a7f9d6ad74b364aec6b27aa6b3c3f6ad70aec9bb50a6b3aec4b5fbb5a5aaba22b3c2b7d022a475a740a1430d0a0d0aa662b36fb8cc3c623eb54caa6b3c2f623ea455203c6120687265663d226661712e7068703f726561643d74266361743d3323456e747279313533223ea759aec93c2f613e20b9efa7bda143a759aec9b9efa7bdaabab74eabe4ac4fa141acf9a440a470aec9b44ea569a548a455a7b9a440bd4cb4d1a143a670aa47b17ab3dfc577a455a759aec9b9efa7bda141b17aa569a548b8d5b8d5acdd203c6120687265663d22687474703a2f2f73656e736569732e786d702e6e65742f3f476f53657276657222207461726765743d225f626c616e6b223ea8e4a54c3c2f613e20a759aec9b3f2b4d1baf4afb8a141a8d2a670203c6120687265663d22687474703a2f2f6b67732e6b69736569646f2e636f6d2f22207461726765743d225f626c616e6b223e4b47533c2f613e20a9ce203c6120687265663d22687474703a2f2f70616e64612d6967732e6a6f796a6f792e6e65742f22207461726765743d225f626c616e6b223e4947533c2f613ea1430d0a0d0a44475320a45db4a3a8d1203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f70686f72756d2f223ebdd7bec23c2f613e20a8d3b051bdd7b3f2b4d1bb50c073a4a7f9d6a143, 'N', '2007-03-05 10:32:22'),
(568, 8, 0xa7dac1d9a4a3b24db7a1a7daaabaaaeca96cb5a5afc5a14b, 'Y', '2007-02-19 21:35:43'),
(569, 8, 0xa670aa47b17aade8bec7b3f2b4d1a141a8babbf2b17aa45db35cac4f3c756c3e0d0a3c6c693e333020afc5a147aabeb944b3f2b4d1b357ab680d0a3c6c693e32392d323820afc5a147a455b94cb458bd4cb3f2b4d10d0a3c6c693e32372d323620afc5a147c4b9b94ca8e4a54caaecbec7aaccb458bd4cb4d10d0a3c6c693e32352d323220afc5a147c4b9b94ca8e4a54cab44aaecbec7aaccb458bd4cb4d10d0a3c2f756c3e0d0a0d0aa574a440bad8b5fba97722b669b6a5aaecbec7aacc22aabaa4e8a6a1ac4fa141aae1acf920313020a4c0c4c1a7b9a6a8203c4120485245463d687474703a2f2f7777772e6d6f746f7273636f70652e636f6d2f646f6a6f2f74657374732f205441524745543d5f626c616e6b3ea6b9b4fac5e73c2f413e20a8d3a84da977b17aa662c073a4a7f9d6aabaaaeca96cb5a5afc5a143, 'N', '2007-02-19 21:35:43'),
(570, 8, 0xc073a4a7f9d6ad70aec9a4e8a6a1, 'Y', '2007-02-19 21:35:43'),
(571, 8, 0xacb0a6f3b0b2b4c1aec9b6a1a6b3adada8eea148, 'Y', '2007-02-19 21:35:43'),
(572, 8, 0xa670aa47b0b2b4c1a853a6b3adada8eea141b17aa15da9ceb9efa4e2a15ea45db35cb77cadabbdc6bfefbedca440a4d1aabab0b2b4c1a8d3c1d7a74ba5cea5fab9efa7bdaec9b6a1a143a670a6b9b14ea8cfadeca8d3b35da977aabaaec9adada5a2a568b74eb871a1430d0a0d0aa65da6b9c073a4a7f9d6b9efb0b2b4c1a6b3a548a455adada8eea1470d0a3c756c3e3c6c693ea477b867b67da96caabab0b2b4c13c623eb54caa6b3c2f623eb351a8faaef8a1433c2f6c693e3c2f756c3e, 'N', '2007-02-19 21:35:43'),
(573, 8, 0xb160a8a3b0ddc344b3ccaaf1a6b3a6f3add7a7efa148, 'Y', '2007-10-01 07:44:22'),
(574, 8, '', 'Y', '2007-02-19 21:35:43'),
(575, 8, 0xc073a4a7f9d6acb0a6f3ad6eaabeb944a7daaabab971a46cb66ca5f3a661a77da148, 'Y', '2007-02-19 21:35:43'),
(576, 8, 0xacb0a446b6c7b065b773aabab14bbd58a15da670aa47a6b3a6b9bbddad6ea15ea143b6c7b065b773b14bbd58a8ecc078a673a662a5cea4e1add3a448b8eaaec6aabab971a46cb66ca5f3a661a77da141a4f1b8fbae65a9f6bb7bc3d2b4d1a4e2a1430d0a0d0ac073a4a7f9d6b44cadabc1f4a870a14744475320a4a3b77ca544b0cab148b065a4a3bbddad6eaabaab48a5f3a143b54ca448afe0acdda8eca8e4a54ca448aabab971a46cb66ca5f3a661a77da141b971a46cb66ca5f3a661a77da45da4a3b77cbde6b5b9a5f4a6f3a448a1430d0a0d0ac073a4a7f9d6ae65b35ca5cea4e1a4a3c078a673b971a46cb66ca5f3a661a77da143a65da6b9bdd0a470a4dfa4a3ad6ea7d1b04fb14bbd58a149, 'Y', '2008-08-26 05:24:47'),
(577, 8, 0xa4e9a5bba6a1adcbbcc628c5aaaced29ad70aec9ac4fa4b0bbf2a148, 'Y', '2007-06-06 20:05:04'),
(578, 8, 0xb7eda544ad6eaec9b6a1a5cea5faabe1a141b4d1a4e2aaba26616d703b6c743b6226616d703b67743ba843a440a4e226616d703b6c743b2f6226616d703b67743bb3a3a6b3a954a977aabaaec9adada143b0a3a6b9a4a7a57ea141c1d9a6b3acf9a977a66eaabaa6b8bcc6a147200d0a26616d703b6c743b554c26616d703b67743b0d0a26616d703b6c743b4c4926616d703b67743bb7edb4d1a4e2a662aec9adada4bab8a8a46ca141ad70aec9c4c1b44ea65ea8ecaec9adadaabab67da96ca141a6b8bcc6a45da4a3b77cb4eea4d6a14326616d703b6c743b2f4c4926616d703b67743b0d0a0d0a26616d703b6c743b4c4926616d703b67743bb7edb4d1a4e2a662aec9adada4baa853a6b3b8a8a46ca141a6b8bcc6b44eb77cb4eea4d6a440a6b8a141ad70aec9a5dfa8e8b171c059b67da96ca14326616d703b6c743b2f4c4926616d703b67743b0d0a26616d703b6c743b2f554c26616d703b67743b0d0ab7edb4d1a4e2a853a6b3b3d1a455a6b8bcc6bb50aec9adada141b44eaec9bac9b1d1a143, 'N', '2008-06-04 07:18:13'),
(579, 8, 0xa55baeb3a46aa6a1adcbbcc628c5aaaced29ad70aec9ac4fa4b0bbf2a148, 'Y', '2007-06-06 20:05:04'),
(580, 8, 0xb7eda544ad6eaec9b6a1a5cebac9abe1a141b4d1a4e2b8a8a46cab4ba6b33c623eaec9adad3c2f623ea1430d0a0d0aa8d2a670a14720313520a4e9a45520313020a46ca1470d0aa670aa47b4d1a4e2a662aec9adada4baa455a558b2c420313020a4e2a141ad70aec9c4c1ab4badabb773b67da96cad70aec9a15db1b5a455a8d3aaba20313020a46cad6ea66220313520a4e9a4baa455a7b9a15ea1430d0a0d0aa670aa47b4d1a4e2a5bcafe0a662aec9adada4baa455a7b9a141b44ebfe9b1bcb4d1a7bda143, 'N', '2007-02-19 21:35:43'),
(581, 8, 0xb64fb3b7a6a1ad70aec9ac4fa4b0bbf2a148, 'Y', '2007-06-06 20:05:04'),
(582, 8, 0xb4d1a4e2a843a6b8b8a8a46cabe1a141b44eb77cbc57a55b26616d703b71756f743bc342a57e26616d703b71756f743baec9b6a128b3cca668a4a3b657b94ca544ad6eaec9b6a129a1430d0a0d0ab7edb4d1a4e2a5cea5faaec9b6a1aec9a141b44ebfe9b1bcb4d1a7bda143, 'N', '2008-06-04 07:18:13'),
(583, 8, 0xbaceaf76aec9b6a1ac4fa75fb77cbc76c554b64fb3b7a6a1ad70aec9a148, 'Y', '2007-02-19 21:35:43'),
(584, 8, 0xc17ca8d2bba1a9faa1470d0aa670aa47a843b667b751a455203320a4e2a141a6d3b17aa4a3a7c6b1e6a662b667a4bba9ceb667a4e9a5cea5faaec9b6a1a1430d0ab44eac4f282037202d20322029a4e9207820282032342068202d2039206820baceaf76aec9b6a1292f203320a4e2203d20a843a4e2bc57a55b20323520a470aec9aabab64fb3b7ad70aec9a14120b667a5bda4a3ad70aec9a143, 'Y', '2007-02-19 21:35:43'),
(585, 8, 0xbaceaf76aec9b6a1ac4fa4b0bbf2a148, 'N', '2007-02-19 21:35:43'),
(586, 8, 0xa662b35da977acb022baceaf76aec9b6a122aabaaec9ac71a141ad70aec9c4c1b77cbcc8b0b1a141b3d1be6caabaaec9b6a1a4a3b77cb4eea4d6a143, 'N', '2007-02-19 21:35:43'),
(587, 8, 0xacb0a6f3a7daaabaad70aec9c4c1a66220313020a4c0c4c1a4bab4eea4d6203920a470aec9a148, 'Y', '2007-02-19 21:35:43'),
(588, 8, 0xa670aa47b17aacdda8ecad70aec9c4c1b36fbccba46ab454b4eea4d6aec9b6a1a141b17ac0b3b8d3ad6ebacea440a455a446203b2d290d0a0d0ab7edad70aec9c4c1c5e3a5dcb17ac1d9a6b3203320a4d1aec9b6a1a141b74eabe4ac4fa1470d0a26616d703b616d703b6c743b6e6f777226616d703b616d703b67743bb17aa6b326616d703b616d703b6c743b2f6e6f777226616d703b616d703b67743b2026616d703b616d703b6c743b6e6f777226616d703b616d703b67743b332078202832342d392926616d703b616d703b6c743b2f6e6f777226616d703b616d703b67743b203d2026616d703b616d703b6c743b6e6f777226616d703b616d703b67743b343520a470aec926616d703b616d703b6c743b2f6e6f777226616d703b616d703b67743b20aabaab44baceaf76aec9b6a1a1430d0a0d0ab7edad70aec9c4c1c5e3a5dcb17ac1d9a6b3203220a4e920313420a470aec9a141b74eabe4ac4fa1470d0a26616d703b616d703b6c743b6e6f777226616d703b616d703b67743bb17aa6b326616d703b616d703b6c743b2f6e6f777226616d703b616d703b67743b2026616d703b616d703b6c743b6e6f777226616d703b616d703b67743b322078202832342d3929202b20313426616d703b616d703b6c743b2f6e6f777226616d703b616d703b67743b203d2026616d703b616d703b6c743b6e6f777226616d703b616d703b67743b343420a470aec926616d703b616d703b6c743b2f6e6f777226616d703b616d703b67743b20aabaab44baceaf76aec9b6a1a143, 'Y', '2008-06-04 07:18:13'),
(589, 8, 0xacb0a6f3a7dab54caa6ba7efc5dca7daadd3a448b8eaaec6a4a4aababaceaf76aec9b6a1a148, 'Y', '2007-02-19 21:35:43'),
(590, 8, 0xa65dacb0a843a4d1a7efc5dca454a6b8baceaf76aec9b6a1b77cb0b1a4eead70aec9c4c1a143b0a3ab44b17ab3ccaaf1a853a6b3add7a7efa141b17aa47eafe0a7efc5dcbaceaf76aec9b6a1a143, 'Y', '2007-02-19 21:35:43'),
(591, 8, 0xa7daafe0bc57a55ba6dba476aabab9efa7bdaec9b6a1b6dca148, 'Y', '2007-02-19 21:35:43'),
(592, 8, 0xa4a3afe0a143, 'N', '2007-02-19 21:35:43'),
(593, 8, 0xa7daafe0bc57a55bb9efa4e2aabab9efa7bdaec9b6a1b6dca148, 'Y', '2007-02-19 21:35:43'),
(594, 8, '', 'N', '2007-02-19 21:35:43'),
(595, 8, 0xb0b2b4c1ac4fa4b0bbf2a148, 'Y', '2007-02-19 21:35:43'),
(596, 8, 0xb7edb17aa5f0b0b2aec9a141a9ceacf0b54da65da4bda558ae74aec9a141a569a548bcc8b0b1ad70aec9c4c1a1430d0a0d0abdd0c249bfef2026616d703b616d703b6c743b4120485245463d26616d703b616d703b71756f743b687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f75736572696e666f2e70687026616d703b616d703b71756f743b26616d703b616d703b67743ba8cfa5ceaacc26616d703b616d703b6c743b2f6126616d703b616d703b67743b20aaba2026616d703b616d703b6c743b4120485245463d26616d703b616d703b71756f743b687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f656469745f7661636174696f6e2e70687026616d703b616d703b71756f743b26616d703b616d703b67743bb67da96ca5f0b0b226616d703b616d703b6c743b2f6126616d703b616d703b67743b20a8d3a677b1c6b0b2b4c1aec9b6a1a143b0b2b4c1aaacba41b14ec5e3a5dca662a5d8ab65b9efa7bdbb50a8cfa5ceaaccb8eaaec6a143, 'Y', '2008-06-04 07:18:13'),
(597, 8, 0xadcbbcc628c5aaaced29ad70aec9, 'Y', '2007-06-06 20:05:04'),
(598, 8, 0x42796f2d796f6d69a147b7edb4d1a7bda544ad6eaec9b6a1a5cea7b9abe1aabaadcbbcc6aec9adadb357ab68a143, 'Y', '2007-06-06 20:05:04'),
(599, 8, 0xa7daaababaceaf76aec9b6a1ac4fabf6b7d3adfea440add3aec9b0cfa148, 'Y', '2007-02-19 21:35:43'),
(600, 8, 0xc073a4a7f9d6b77ca8cfa5ceb17aaabab7eda661aec9b0cfa15da548a4cea4e9a5fab860acf9aec9b6a1a15ea141a5d1b17aa6dba476a662add3a448b8eaaec6a4a4b35da977a143, 'Y', '2007-02-19 21:35:43'),
(601, 8, '', 'Y', '2012-08-01 06:16:30'),
(602, 8, 0x53474620ac4f20536d6172742047616d6520466f726d617420aabac159bc67a141b36fac4fa5cea8d3c078a673b3f2b4d1b4d1c3d0a15da9cea8e4a54cb943c0b8a15eaabac0c9aed7a143b2d3b860bdd0acdd5347462046465b345d20bcd0b7c7aaba203c6120687265663d22687474703a2f2f7777772e7265642d6265616e2e636f6d2f7367662f22207461726765743d6e65773ea5bfa6a1aee6a6a13c2f613ea143, 'Y', '2007-02-25 08:44:17'),
(603, 8, 0xacb0a6f3c073a4a7f9d6a4a3c5e3a5dcb9efa4e2aabab971a46cb66ca5f3a661a77da148, 'Y', '2007-02-19 21:35:43'),
(604, 8, 0xa65dacb0c073a4a7f9d6b77cab4fbbd9b17ab9efa4e2a15dbb50b17aa15eaabac1f4a870a1430d0a0d0aa670aa47b17aa7f3b751a668c141b8d1b17aaabab9efa4e2a141b17aa5b2b6b7aabdb1b5b8dfb0ddb17aaabab9efa4e2a143, 'Y', '2007-02-19 21:35:43'),
(605, 8, 0xa670a6f3a662b4d1c3d02053474620c0c9c078a673a4e5a672a148, 'Y', '2007-02-25 08:44:17');
INSERT INTO `Translations` (`Original_ID`, `Language_ID`, `Text`, `Translated`, `Updated`) VALUES
(606, 8, 0xa662b17aaabaaf64a8a5ab65abe1a55ba457abfca54fa14720266c743b636f6d6d656e742667743b20a548a4ce20266c743b2f636f6d6d656e742667743b200d0a0d0aa8d2a670a147a662b17ab669a6e6a4a4aabab4d1a7bda147200d0a0d0a312e20a662b17aaaba22b065a55822af64a8a5c4e6a4a4bfe9a44a3a200d0a0d0ab36fa575ac4fb4fab8d5a141bdd0a74fb27ab77ca1430d0a266c743b636f6d6d656e742667743b0d0ab4fab8d5af64a8a5a141c0b3b8d3b77ca558b27ba662534746a1430d0a266c743b2f636f6d6d656e742667743b0d0ab4fab8d5af64a8a5a141c0b3b8d3a4a3b77ca558b27ba662534746a1430d0a0d0a322e20b065a558b17aaabab8a8a46ca143200d0a332e20a455b8fcb4d1c3d02053474620c0c9a143200d0a342e20a5b4b67db4d1c3d02053474620c0c92028a8cfa5ceb3f2b4d1b36ec5e9a9cea4e5a672bd73bfe8b36ec5e929a1430d0a0d0a352e20b36fa440a4e2aabaaf64a8a5ac4fa147200d0a266c743bb17aaabab162b8b92667743b3a20b4fab8d5af64a8a5a141c0b3b8d3b77ca558b27ba662534746a1430d0a0d0a362e20a670aa47b17aa7c6b1e6af64a8a5a662b4d1a7bdb5b2a7f4abe1a47ea569b351be5cc5aaa141b44ead6ebc67a6a820266c743b68696464656e2667743b20266c743b2f68696464656e2667743b20a6d3a4a3ac4f20266c743b636f6d6d656e742667743b20266c743b2f636f6d6d656e742667743b20bdd0aa60b74ea149c1f4c2c3aabaaf64a8a53c753ea575afe03c2f753e20b37ab94cb4d1c3d02053474620c0c9aed7a8d3be5cc5aaa1430d0a0d0a266c743b636f6d6d656e742667743b20266c743b2f636f6d6d656e742667743b20bb5020266c743b68696464656e2667743b20266c743b2f68696464656e2667743b20a569a548c2b2bc67a6a820266c743b632667743b20266c743b2f632667743b20bb5020266c743b682667743b20266c743b2f682667743ba1430d0a0d0aa5bfb160af64a8a5a4e5a6722028a853a6b3a55ba45720266c743b636f6d6d656e742667743b20bb5020266c743b2f636f6d6d656e742667743b20aabaa4e5a6722920a575afe0a5d1b9efa7bdaabaa8e2a6ecb4d1a4e2be5cc5aaa143a8e4a54ca448b3a3b54caa6bbe5cc5aaa141a6d3a542a45da853a6b3bfe9a44aa8ecb4d1c3d02053474620c0c9a143b36fac4facb0a446ab4fbbd9b17aaabac1f4a870a143, 'N', '2007-06-13 15:54:31'),
(607, 8, 0xa7daafe0a6a8acb0c073a4a7f9d6aabaace3b56fa448adfbb6dca148, 'Y', '2007-02-19 21:35:43'),
(608, 8, 0xa45db35ca569a548a143b17aa5b2b6b7bcf4b178b3f2b4d1b357ab68a14150485020bb50204d7953514ca1430d0a0d0abdd0b0d1be5c203c4120485245463d22687474703a2f2f736f75726365666f7267652e6e65742f70726f6a656374732f647261676f6e676f73657276657222205441524745543d225f626c616e6b223e536f75726365466f726765c073a4a7f9d6ace3b56fbaf4adb63c2f413e20a8c3a542bdd0b5f9a555203c4120485245463d22687474703a2f2f6c697374732e736f75726365666f7267652e6e65742f6c697374732f6c697374696e666f2f647261676f6e676f7365727665722d646576656c22205441524745543d225f626c616e6b223ec073a4a7f9d6ace3b56fb971a46cb66ca5f3a643aaed3c2f413ea143, 'N', '2007-02-19 21:35:43'),
(621, 8, 0xa5feb3a1b0ddc344c5e3a5dca9f3a440adb6, 'Y', '2007-10-01 07:44:22'),
(622, 8, 0xc073a4a7f9d6b3f2b4d1a4f1c1c9, 'Y', '2007-02-19 21:35:43'),
(623, 8, '', 'N', '2012-08-01 06:16:30'),
(624, 8, 0xa14bb6c7b2ceaabaa4e9a5bbb3f2b4d1b0ddadd4bb79a141b74eabe4ac4fa1472671756f743bc1c2c1c2b17ac1dcbdd0b9efa7bda141afaca66eb942a1492671756f743b, 'N', '2008-05-07 09:41:55'),
(625, 8, 0xc073a4a7f9d6ac4fa75fa6b3aabdb1b5a544bfeca5f4a6f3a4f1c1c9a148, 'Y', '2007-02-19 21:35:43'),
(626, 8, 0xc1d9a853a6b3a143, 'Y', '2007-02-19 21:35:43'),
(627, 8, 0xa8cfa5ceaaccaaba22aca1c544b57babd722ac4fa4b0bbf2a148, 'Y', '2007-02-19 21:35:43'),
(628, 8, 0xc5e3a5dca8cfa5ceaaccb3ccaaf1a455a446a668a4d6a4e2a1430d0a0d0a3220baf1ac50a147b35ca668a4e2a15da843a4ebb657b94c20373020a4e2a15e0d0a3120beefac50a147a8c7b35ca4e2a15da843a4eb20352d373020a4e2a15e0d0a3020ac50a147abdca4d6a4e2a15da843a4eba4d6a9f3203520a4e2a15e, 'Y', '2007-02-19 21:35:43'),
(629, 8, 0xa8cfa5ceaaccaaba22b3d3b27622ac4fa4b0bbf2a148, 'Y', '2007-02-19 21:35:43'),
(630, 8, 0xb36fac4fb4d1a4e2aabab3d3ad74a4f1a141afe0b9efa5d8ab65aabab5a5afc5b4a3a8d1a7f3a668b054aea7a1430d0a0d0ab7edb4d1a4e2a7b9a6a8a446acdbb7edbcc6b671aabab5fbb5a5b9efa7bdabe1a141acf9203530a24820aabab3d3b276c5e3a5dca54caabab5a5afc5a477b867c3ada977a143a46aa9f3203735a24820c5e3a5dca5d8ab65b5a5afc5a569afe0a4d3a743a141a743a9f3203235a24820c5e3a5dca5d8ab65b5a5afc5a569afe0a4d3b0aaa143, 'Y', '2007-02-19 21:35:43'),
(631, 8, 0xa7daad6ea670a6f3a752b0a3a7daa662abdda7bdabc7aabaa4f1c1c9c1dcbdd0a148, 'Y', '2007-02-19 21:35:43'),
(632, 8, 0xc249bfef203c693eb17aaaba3c2f693e20a4f1c1c9aabab8eaaec6abf6b673a143a662b8d3baf4adb6aabaa455a4e8a6b3a752b0a3b4d1a7bdaabaabf6b673a143a670aa47b773b4d1a7bda662bcc6b667abe1a4b4b54db54ca448a55ba44aa141b44eb77ca6dbb0cab351a752b0a3a143, 'Y', '2007-02-19 21:35:43'),
(633, 8, 0xb271a46ca4c0a5fdac4fa4b0bbf2a148, 'Y', '2007-02-19 21:35:43'),
(634, 8, 0x266c743b6120687265663d2671756f743b6661712e7068703f726561643d7426616d703b6361743d3323456e74727932312671756f743b2667743bb271a46c266c743b2f612667743b20ac4fabfcb17aaabaf9d6a6e2ac4fa5d1c048bef7bfefbedcaabaa1430d0a266c743b6120687265663d2671756f743b6661712e7068703f726561643d7426616d703b6361743d3323456e7472793135342671756f743b2667743ba4c0a5fd266c743b2f612667743b20ac4fabfcb17ab35da977aabab773b4d1a7bda853a6b320266c743b6120687265663d2671756f743b6661712e7068703f726561643d7426616d703b6361743d33353723456e74727939372671756f743b2667743bc5fda46c266c743b2f612667743b20a143, 'Y', '2008-05-07 09:41:55'),
(635, 8, 0xacb0a6f3a6b3a8c7a8cfa5ceaacca853a6b3a643a662b4d1a4e2a643aaeda457a148, 'Y', '2007-10-01 06:29:12'),
(636, 8, 0xc073a4a7f9d6b35da977a4a3b77ca643a44ab0b1a4eeaca1b0caaabab4d1a4e2a1433c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f75736572732e706870223eb9efa7bda4a4aabab4d1a4e23c2f613e20a455a4e8a6b3203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f75736572732e7068703f73686f77616c6c3d31223ec5e3a5dca9d2a6b3b4d1a4e23c2f613e20a569a548ac64b8dfa143, 'N', '2007-10-01 06:29:12'),
(637, 8, 0xa544ad6eaec9b6a1ac4fa4b0bbf2a148, 'Y', '2007-02-19 21:35:43'),
(638, 8, 0x3c693ea544ad6eaec9b6a13c2f693eac4facb0c2f9a4e8b35da977aabaaaeca842b9efa7bdaec9b6a1a143200d0a0d0aa670aa47a544ad6eaec9b6a1a5cea7b9a446a141b4d1a7bd3c623ea97ca5bc3c2f623eb5b2a7f4a141ab4bb669a44aa446adcbbcc6b9efa7bdaec9b6a1a15da8a3a548a455bba1a9faa15ea143, 'Y', '2007-06-06 20:05:04'),
(639, 8, 0xc073a4a7f9d6a6b3adfea8c7bcf6a4dfa8f3a755aacca148, 'Y', '2007-02-19 21:35:43'),
(640, 8, 0xc073a4a7f9d6a15d444753a15eac4fab44b0d3b77ea9cabb50b67da9f1bd58aabab9ceb6a4ad70b565a141a5d1b3dfc577aab1a65ea658a8eeb3f2b4d1aabaa448acb0a650a66ea9d2ace3b56fa14344475320a5d120266c743b6120687265663d2671756f743b2f75736572696e666f2e7068703f7569643d322671756f743b207461726765743d2671756f743b5f626c616e6b2671756f743b2667743b4572696b266c743b2f612667743b20b3d0a5dfa141a8c3a5d120266c743b6120687265663d2671756f743b2f75736572696e666f2e7068703f7569643d322671756f743b207461726765743d2671756f743b5f626c616e6b2671756f743b2667743b4572696b266c743b2f612667743b20bb5020266c743b6120687265663d2671756f743b2f75736572696e666f2e7068703f7569643d313035362671756f743b207461726765743d2671756f743b5f626c616e6b2671756f743b2667743b526f64266c743b2f612667743b20266c743b6120687265663d2671756f743b687474703a2f2f736f75726365666f7267652e6e65742f70726f6a6563742f6d656d6265726c6973742e7068703f67726f75705f69643d32393933332671756f743b207461726765743d2671756f743b5f626c616e6b2671756f743b2667743bad74b364bafbc540266c743b2f612667743ba143b160a8a3b0ddc344ac4faedabeda266c743b422667743bb17aaaba266c743b2f422667743bb74ea8a3a141a5d120266c743b6120687265663d2671756f743b2f75736572696e666f2e7068703f7569643d39332671756f743b207461726765743d2671756f743b5f626c616e6b2671756f743b2667743b426a6f726e20496e676d6172266c743b2f612667743b20ad74b364bafbc540a14344475320b351c2bdc4b6a6a8bcc6b0eabb79a8a5a143c2bdc4b6a448adfba657b3e6a66220266c743b6120687265663d2671756f743b2f70656f706c652e7068702671756f743b207461726765743d2671756f743b5f626c616e6b2671756f743b2667743bb36fb8cc266c743b2f612667743b20a548a4ce20266c743b4120485245463d2671756f743b2f70686f72756d2f6c6973742e7068703f663d372671756f743b2667743bc2bdc4b6bdd7bec2266c743b2f412667743ba143, 'Y', '2008-05-07 09:38:11'),
(643, 8, 0xa7daa569a548a662c073a4a7f9d6a457a8cfa5ce2048544d4c20b6dca148, 'N', '2007-02-19 21:35:43'),
(644, 8, '', 'N', '2007-02-19 21:35:43'),
(1554, 10, 0xd1a1cfee, 'Y', '2012-01-08 18:32:03'),
(1554, 8, 0xbfefb6b5, 'Y', '2012-01-08 18:32:27'),
(1554, 34, 0xe981b8e9a085, 'Y', '2012-01-08 18:33:12'),
(1548, 34, 0xe7b3bbe7b5b1e58886e9a19e, 'Y', '2012-01-08 18:34:36'),
(1555, 34, 0xe7b3bbe7b5b1e58886e9a19e, 'Y', '2012-01-08 18:34:36'),
(1560, 34, 0xe7b3bbe7b5b1e58886e9a19e, 'Y', '2012-01-08 18:34:36'),
(1548, 8, 0xa874b2cea4c0c3fe, 'Y', '2012-01-08 18:34:59'),
(1555, 8, 0xa874b2cea4c0c3fe, 'Y', '2012-01-08 18:34:59'),
(1560, 8, 0xa874b2cea4c0c3fe, 'Y', '2012-01-08 18:34:59'),
(1548, 10, 0xcfb5cdb3b7d6c0e0, 'Y', '2012-01-08 18:35:30'),
(1555, 10, 0xcfb5cdb3b7d6c0e0, 'Y', '2012-01-08 18:35:30'),
(1560, 10, 0xcfb5cdb3b7d6c0e0, 'Y', '2012-01-08 18:35:30'),
(1548, 33, 0xe7b3bbe7bb9fe58886e7b1bb, 'Y', '2012-01-08 18:35:48'),
(1555, 33, 0xe7b3bbe7bb9fe58886e7b1bb, 'Y', '2012-01-08 18:35:48'),
(1560, 33, 0xe7b3bbe7bb9fe58886e7b1bb, 'Y', '2012-01-08 18:35:48'),
(1549, 33, 0xe794a8e688b7e58886e7b1bb, 'Y', '2012-01-08 18:36:37'),
(1556, 33, 0xe794a8e688b7e58886e7b1bb, 'Y', '2012-01-08 18:36:37'),
(645, 8, 0xac50a6ec, 'Y', '2007-02-19 21:35:43'),
(646, 8, 0x486f736869a14722ac50a6ec22a6b3a8e2add3b74eb871a141b371b160ac4fabfcb4d1bd4ca457aaba203920add3c5fda46cc249a143a7f3a9fabd54a440c249ac4fabfca8a4b8a8a457aaba20342d3420c249a143, 'Y', '2007-02-19 21:35:43'),
(655, 8, 0xa4d1a4b8, 'N', '2007-02-20 06:00:37'),
(656, 8, 0x54656e67656ea147b4d1bd4caabaa4a4a4dfc249a143a66220313920b8f4b4d1bd4cac4f2031302d313020c249a143a4e9a4e5aabab74eabe4ac4f22a4d1b0f3aabab05fb7bd22a143, 'N', '2007-02-20 06:00:37'),
(657, 8, 0xb4d1bd4c, 'Y', '2007-02-20 06:00:37'),
(658, 8, 0x476f62616ea147af75a5bfa9ceb971b8a3b5eac0c0aabab3f2b4d1b4d1bd4ca143, 'Y', '2007-02-20 06:00:37'),
(661, 8, 0xc5fda46cac4fa4b0bbf2a148, 'Y', '2007-02-20 06:00:37'),
(662, 8, 0xa670aa47b9efa7bdc2f9a4e8b4d1a44fa4a3a7a1a141c2f9a4e8c0b3b8d3a650b74ec5fdb8fbae7aaabaa440a4e8a6b3c342a57eaaba22c5fda46c22a143c5fda46ca5c3bbb7ac4fb5b9b6c2a4e8a141a5bfbd54bfefbedcc5fda46cbcc6a5d8a141a569a548c0b1b8c9b4d1a44fa457aabaae74b65aa143c5fda46cb9efa7bdb77ca7f3a6b3bdeca141c2f9a4e8c4b9b4d1aababef7b77ca7a1b5a5a1430d0a0d0aa6623139b8f4b4d1bd4ca457a141c5fda46cbcc6a5d8acdba650a9f3b5a5afc5aabaae74b65aa143b9efa9f3a8e4a54ca46aa470aabab4d1bd4ca141a5d1c073a4a7f9d6a84da977be41b7edaabac5fda46cbcc6a5d8a1430d0a0d0ab6c7b2cea457a141c5fda46cac4fabf6b7d3a954a977a7cea6a1a9f1a662203c4120485245463d226661712e7068703f726561643d74266361743d3323456e7472793839223eac50a6ec3c2f413e20a457a143a662c073a4a7f9d6a141a569a548a6dba5d1bfefbedcc5fda46ca6ecb86da1430d0a0d0aa6fdac4fbdd0aa60b74ea141b35ca668b4d1a4e2b2dfba44c5fda46ca9f3ac50a6eca457a143a9d2a548a670aa47b17aad6ec5fda46ca141b3cca66ea5fdbb50b9efa4e2a650b74eac4fac50a6ecc5fda46cc1d9ac4fa6dba5d1c5fda46ca143, 'Y', '2007-02-20 06:00:37'),
(663, 8, 0xb6c7b2cec5fda46cbb50be41b7edc5fda46ca6b3a6f3a4a3a650a148, 'Y', '2007-02-20 06:00:37'),
(664, 8, 0x266c743b692667743bb6c7b2cec5fda46c266c743b2f692667743ba8ccb7d3b5a5afc5ae74b65aa15dbb50b4d1bd4ca46aa470a15ea8d3a84da977c5fda46cbcc6a143ad59a6b3c5fda46cab6820266c743b6120687265663d2671756f743b6661712e7068703f726561643d7426616d703b6361743d3323456e747279392671756f743b2667743bb64ba5d8266c743b2f612667743b20302e35a143ad59b54cc5fda46cab68b64ba5d820362e35a1430d0a0d0a266c743b692667743bbe41b7edc5fda46c266c743b2f692667743bab68b1c4a8faa7f3b2d3aabab64ba5d8ae74a74f282e2e2e2c20312e352c20322e302c20322e352c202e2e2e29a8d3a5adbfc5b4d1a44fae74b65aa141a8cfc2f9a4e8c4b9b4d1bef7b77ca7a1b5a5a143, 'Y', '2008-05-07 09:41:55'),
(665, 8, 0xa977a5db, 'N', '2007-02-20 06:00:37'),
(666, 8, 0x4a6f73656b69a147b371b160ac4fa662a8a4b8a8b669a6e6a141a7bdb3a1a457b867b94cc5e7c3d2aabaac4aa977a455aa6ba143b371b160a662a7bdb3a1a457b9efc2f9a4e8b3a3a6b3a751a141a6fdac4fa4a3a440a977a5febd4ca6b3a751a143a977a5dbac4fbed4b34ea6d2b671a141a6d3a4a3ac4fb5a6b2a4a6d2b671a143, 'N', '2007-02-20 06:00:37'),
(667, 8, 0xa747a7bd, 'N', '2007-02-20 06:00:37'),
(668, 8, 0x467573656b69a147b4d1a7bdb67da96cb6a5ac71aabaa455aa6ba143b67dbd4caec9b867b94cc5e7c3d2aabaac4aa977a455aa6ba143a747a7bdbbddad6ea5febd4caabab5a6b2a4a6d2b671a143, 'N', '2007-05-29 17:14:30'),
(669, 8, 0xa640aca1, 'Y', '2007-02-20 06:00:37'),
(670, 8, 0x53656b69a147b74eabe4ac4f2671756f743bc2f9a4e8b3a3aca12671756f743ba143a8e2b873b4d1a46ca640a8c9aef0aabaa440bad8a7bdb3a1bbf8a7bda141c2f9a4e8b3a3b54caa6bb4a3b1bcb9efa4e8aabaa46ca143, 'Y', '2008-05-07 09:33:11'),
(671, 8, 0xa7daafe0a5ceb971a46cb66ca5f3b6c7b065b8a8a46cb6dca148, 'Y', '2007-02-20 06:00:37'),
(672, 8, 0xa4a3afe0a141a5ceb971a46cb66ca5f3b6c7b065b8a8a46cac4fa4a3a569afe0aabaa1430d0ab17aa5b2b6b7b56ea44a203c6120687265663d222f223ec073a4a7f9d6baf4afb83c2f613e20a47eafe0b065a558b8a8a46ca143, 'Y', '2007-02-20 06:00:37'),
(673, 8, 0xb4aba7daa455aec9a141c073a4a7f9d6b77ca4a3b77cb371aabea7daa148, 'Y', '2007-02-20 06:00:37'),
(674, 8, 0xb77ca141a575ad6eb17aa6b3a662add3a448b8eaaec6a4a4b4a3a8d1a446b971a46cb66ca5f3a661a77da15dab4fb14b29a141b54dabe1b1d2a5ce22b971b66cb371aabe22a143, 'Y', '2007-02-20 06:00:37'),
(675, 8, 0xa7daafe0a4a3afe0a457b8fc2053474620c0c9a8d3b67da96cb773b4d1a7bda148, 'Y', '2007-02-20 06:00:37'),
(676, 8, 0xa4a3afe0a143, 'N', '2007-02-20 06:00:37'),
(677, 8, 0xc073a4a7f9d6aabab5a5afc5bb50b5fbb5a5, 'Y', '2007-02-20 06:00:37'),
(678, 8, 0xa8cfa5ceaaccaabab5a5afc5c4e6ac4fa4b0bbf2a148, 'Y', '2007-02-20 06:00:37'),
(679, 8, 0xb5a5afc5aabaab65a440a562ac4fa5d8ab65203c6120687265663d222f6661712e7068703f726561643d74266361743d3323456e7472793339223eac713c2f613e20a9ce203c6120687265663d222f6661712e7068703f726561643d74266361743d3323456e7472793338223eafc53c2f613e20aabab5a5afc5a143abe1a440a562aabaa6caa4c0a4f1a15dac41b8b9a4baa15ec5e3a5dcb16aae7aa1430d0a0d0aa8d2a670a14122203120afc520282b343025292220ac4fabdcb16aaaba203120afc5a15db458a547b5a5a9f3b8fbae7aaaba203120ac71a15ea143, 'N', '2007-02-20 06:00:37'),
(680, 8, 0xb5a5afc5a4a4aaba202b20a9ce202d20ac4fa4b0bbf2a148, 'Y', '2007-02-20 06:00:37'),
(681, 8, 0xc073a4a7f9d6a8cfa5ceaabab5a5afc5a874b2ceac4f31afc5acdbb7eda9f3313030c249aabaae74a74fa143a8d2a670a1470d0a0d0a3620afc5202820302529203d203135303020c2490d0a3620afc520282d34382529203d203134353220c2490d0a3720afc520282b33302529203d203134333020c2490d0a3720afc5202820302529203d203134303020c249, 'N', '2007-02-20 06:00:37'),
(684, 8, 0xb5a5afc5b9cfaabac2c5a6e2b0cfb0ecac4fa4b0bbf2a148, 'Y', '2007-02-20 06:00:37'),
(685, 8, 0xb36fac4fabfca8cfa5ceaaccaabab5a5afc5bb50c073a4a7f9d6aabab5a5afc5b4d1a44fa977b871a6b3a668a4d6ae74b65aa1430d0a0d0ab7edb773a8cfa5ceaaccbfe9a44aaaeca96cb5a5afc5aec9a141c073a4a7f9d6a8c3a4a3aabeb944b36fadd3aaeca96cadc8ac4fa75fb2c5a658c073a4a7f9d6aabaa977b871a143a5d8ab65a540a457c1d9a853a6b3a9f1bdd1a57caefcacd2b7c7aabab3f2b4d1b5a5afc5a977b871a143c073a4a7f9d6bac9a44fb4a3a8d1a569be61bb50a569a4f1b8fbaabab3f2b4d1b5a5afc5a143b5a5afc5b9cfaabac2c5a6e2b0cfb0eca575a54eaaedb773a8cfa5ceaaccaaba2044475320b5a5afc5bb50c073a4a7f9d6ac4aa977aabab3f2b4d1b5a5afc5a6b3a668a4d6ae74b65aa143, 'N', '2007-02-20 06:00:37'),
(686, 8, 0xa4e2a9de, 'N', '2007-02-20 06:00:37'),
(687, 8, 0x54656e756b69a147a455a440a4e23c623ea4a33c2f623ea65ec0b3b9efa4e2aabaa457a440a4e2a143, 'N', '2007-02-20 06:00:37'),
(688, 8, 0xc2f9a6e2b9efa7bdac4fa4b0bbf2a148, 'Y', '2007-02-20 06:00:37'),
(689, 8, 0x3c693ec2f9a6e2b9efa7bd3c2f693eac4fbb50a650a440a6ecb9efa4e2b669a6e63c693ea447b3f53c2f693eb773b4d1a7bda143b17aa662a440a7bdabf9a5d5a46ca141a574a440a7bdabf9b6c2a46ca143bfefbedcaabab64ba5d8bb50c5fda46cb14ebe41a5cea9f3a8e2a7bda143abdda7bdabc7a4a4aabab4d1a7bdb8eaaec6a569acdda8ecc5fda46cbcc6a5d8a143, 'N', '2007-09-16 21:46:51'),
(690, 8, 0xa5fda4e2, 'N', '2007-02-20 06:00:37'),
(691, 8, 0x53656e7465a147a7f0c0bba4e2a141abc2afd9a141a5b2b6b7a5dfa759a65ec0b3a143b3d0b379a5fdbef7a141a6b3c576bfefbedca455a440a4e2aabaa6ecb86da143a5fda4e2aabaacdba4cfac4f203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f6661712e7068703f726561643d74266361743d3323456e747279313133223eabe1a4e23c2f613ea1430d0aa5fda4e2aabaa440a4e8a670aa47c4b1b16fbe41b7eda141a45da569a548bfefbedc203c6120687265663d222f6661712e7068703f726561643d74266361743d3323456e747279313130223ea4e2a9de3c2f613ea143, 'N', '2007-02-20 06:00:37'),
(692, 8, 0xabe1a4e2, 'N', '2007-02-20 06:00:37'),
(693, 8, 0x476f7465a147a8bebf6da4e2a141a65ec0b3abc2afd9a143a9f1b1f3a5fdbef7a141c5fdb9efa4e2bfefbedca455a440a4e2aabaa6ecb86da143abe1a4e2aabaacdba4cfac4f20266c743b6120687265663d2671756f743b687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f6661712e7068703f726561643d7426616d703b6361743d3323456e7472793131322671756f743b2667743ba5fda4e2266c743b2f612667743ba143, 'N', '2008-05-07 09:41:55'),
(694, 8, 0xa4b0bbf2ac4fc65bacdda4a4b4d1a7bda148, 'Y', '2007-02-20 06:00:37'),
(695, 8, 0xa6b9a55cafe0a569a548acb03c623ea8e4a54c3c2f623eb4d1a4e2aabab9efa7bda55ba457aed1c5d2a1430d0a0d0aad6ea7e2b9efa7bda55ba44ac65bacdda4a4b4d1a7bda141a5fda7e4a8ecb669a6e6a4a4aabab4d1a7bda141c249bfef22a55ba44ac65bacdd22a143ad6eacddb17aaabac65bacdda4a4b4d1a7bda141c249bfef203c6120687265663d222f7374617475732e706870223ea5d8ab65b9efa7bd3c2f613e20b54dabe1c249bfef22c65bacdda4a4b4d1a7bd22a143200d0a0d0aad6eb2beb0a3c65bacdda4a4b4d1a7bda141a7e4a8ecb751b2beb0a3aabab4d1a7bda141c249bfef22b171c65bacddb2beb0a322a1430d0a0d0ab17aa575afe0c65bacddb669a6e6a4a4aabab4d1a7bda141b7edb9efa7bdb5b2a7f4a141b44ea6dbb0cab171c65bacdda643aaedb2beb0a3a143b7edc65bacdda4a4aabab4d1a7bdb5b2a7f4aec9a141c073a4a7f9d6b77cb56fb054aea7b5b9b17aa141a769aabeb17ab9efa7bdaabab5b2aa47a143, 'N', '2007-02-20 06:00:37'),
(696, 8, 0xb3e6a978, 'Y', '2007-02-20 06:00:37'),
(697, 8, 0x44616d65a147b4d1bd4ca457aabaa4a4a5dfa5e6a465c249a143b36fa8c722a4bda5d822a4a3c4dda9f3c2f9a4e8b4d1a4e2a143, 'Y', '2007-02-20 06:00:37'),
(698, 8, 0xaef0, 'Y', '2007-02-20 06:00:37'),
(699, 8, 0x4c696265727479a147bb50a440c1fba46ca9cea440a6eaa46cb373b1b5aabaaac5c249a143, 'Y', '2007-02-20 06:00:37'),
(1088, 8, 0xa455b8fcb4d1c3d0a774af64a8a5, 'Y', '2007-08-05 13:29:00'),
(1089, 8, 0xad70a4c0, 'Y', '2007-02-21 10:56:40'),
(1090, 8, 0xc65bb4d1, 'Y', '2007-02-21 10:56:40'),
(1091, 8, 0xb3d1be6caec9b6a1, 'Y', '2007-02-21 10:56:40'),
(1093, 8, 0xc5e3a5dcb5a7b04f, 'Y', '2007-05-31 11:21:24'),
(1094, 8, 0xc078a673b5a7b04f, 'Y', '2007-05-31 11:21:24'),
(1095, 8, 0xc1f4c2c3b5a7b04f, 'Y', '2007-05-31 11:21:24'),
(1111, 8, 0xb5a5afc5b9cf, 'Y', '2007-02-21 10:56:40'),
(1645, 17, 0x42b3ea646e7920647a6965f1, 'Y', '2013-08-20 23:23:04'),
(700, 8, 0xa7e6, 'N', '2007-02-20 07:22:55'),
(701, 8, 0x48616e65a147b8a8a46cb1d7c0a3b94cb9efa4e2aabaa440c1fba46ca9cea440a6eaa46ca143, 'N', '2007-02-20 07:22:55'),
(702, 8, 0xaaf9a659, 'N', '2007-02-20 07:22:55'),
(703, 8, 0x47657461a147b0f2a5bba457ac4fabcaa6edb9efa4e2b4d1a46caabaa440a4e2a143, 'N', '2007-02-20 07:22:55'),
(704, 8, 0xa454b373ac50, 'N', '2007-02-20 07:22:55'),
(705, 8, 0x53616e72656e736569a147b160a8a3aabab67da7bda141b4d1a4e2a6fbbedaa440c3e4aabaa454add3ac50a6eca143, 'N', '2007-02-20 07:22:55'),
(706, 8, 0xa9baa46c, 'N', '2007-02-20 07:22:55'),
(707, 8, 0x53686963686fa147a4e9a5bbb3f2b4d1b34ebb792026616d703b616d703b6c743b6120687265663d26616d703b616d703b71756f743b2f70686f72756d2f726561642e7068703f663d3326616d703b616d703b616d703b693d31393626616d703b616d703b616d703b743d31393626616d703b616d703b71756f743b26616d703b616d703b67743ba9baa46c26616d703b616d703b6c743b2f6126616d703b616d703b67743ba143, 'N', '2008-05-07 09:46:11'),
(708, 8, 0xb4d1bd4ca46aa470ac4fa75fb77cbc76c554b5fbb5a5a148, 'Y', '2007-02-20 07:22:55'),
(709, 8, 0x313920b8f4b4d1a7bdb9efb5fbb5a5bc76c554b3cca46aa1430d0aa447bd4c20313320b8f4b9efa7bdb5a5a9f3a440bd4c20313920b8f4b9efa7bda1430d0aa447bd4c203920b8f4b9efa7bdb5a5a9f3a440bd4c20313320b8f4b9efa7bda143, 'N', '2007-02-20 07:22:55'),
(710, 8, 0xa7daa569a548a662adfeb8ccbec7b3f2b4d1a148, 'Y', '2007-02-20 07:22:55'),
(711, 8, 0xbdd0b0d1c65b203c6120687265663d22687474703a2f2f706c6179676f2e746f2f696e7465726163746976652f696e6465782e68746d6c22207461726765743d6e65773ea4acb0caa6a1bec7b3f2b4d13c2f613e20a548a4cead5eb0eab3f2b4d1a8f3b77caaba203c6120687265663d22687474703a2f2f7777772e62726974676f2e6f72672f696e74726f2f696e74726f2e68746d6c22207461726765743d6e65773eb3f2b4d1a4b6b2d03c2f613ea143, 'Y', '2007-02-20 07:22:55'),
(712, 8, 0xc073a4a7f9d6aabab5fbb5a5a874b2cea670a6f3b942a740a148, 'N', '2007-02-20 07:22:55'),
(713, 8, 0x3c493ea6b3b458a6eca8acb4bca668bfd1aabaa448a6dbc440adabbc67b36fac71b0ddb5aaa143b36fb9efa9f3203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f75736572696e666f2e7068703f7569643d3933223ea5bba4e5a740aacc3c2f613e20ac4fa440a46ac0b0a755a141a65dacb0a15da6b3a448b4bfb867abfca558a15ea54caabaa5c0bb79a4a3ac4fad5ebb79a141a5fdab65a54cb8d5b9cfbba1a9fac073a4a7f9d6b5fbb5a5a874b2cea141b5b2aa47b3a3ba47a4a3a7d4b840a1430d0a0d0aabdca7d6b44ea6b3a446a149a575ad6eb5a5a54cadccbc67a66e2e2e2e3c2f493e, 'N', '2007-02-20 07:22:55'),
(748, 8, 0xa7daafe0a4a3afe0a544bfecb3f2b4d1a4f1c1c9a148, 'Y', '2007-02-20 07:22:55'),
(749, 8, 0xabdcc577aaefb17aa8d3a544bfecb3f2b4d1a4f1c1c9a143ad6eabc5a5aca4f1c1c9b2d3b860a141bdd0a8cfa5cea15da9cec65bacdda15e3c6120687265663d222f70686f72756d2f6c6973742e7068703f663d34223ec073a4a7f9d6bdd7bec23c2f613ea143c073a4a7f9d6b77cc0b0a755b17aabc5b6c7a4f1c1c9a141a662b160a8a3b0ddc344a4a4bc57a55bacdbc3f6b373b5b2a143, 'Y', '2007-10-01 07:44:22'),
(751, 8, 0xa670a6f3a662a4f1c1c9b5b2a7f4aec9b2beb0a3a6baa46ca148, 'Y', '2007-02-20 07:22:55'),
(752, 8, 0xc2f9a4e8b3a3b5eaa4e2abe1a141c249bfefb4d1a46ca8d3a7efc5dca6baaca1a141a548a6b9b2beb0a3a6baa46ca143b6c2a6e2bb50a5d5a6e2a470a4e8b6f4c5e3a5dcc2f9a4e8aabaa6fba661a1430d0a0d0ac2f9a4e8a5b2b6b7b3a3a650b74ea6baa46cbb50a6fba661a143a650b74eabe1a141c249bfefb4d1bd4ca455a4e8aaba22a7b9a6a822a1430d0a0d0aa670aa47a6b3a440a4e8a4a3a650b74ea141b44ec249bfef22c47ec4f2b9efa7bd22a141a668a455b458a4e2a8d3b8d1a84dbac3b0dda143a574a440bad8a4e8a6a1ac4fb148ab48b5b9b9efa4e2a8d3b051bdd7a141a9cea8ec203c6120687265663d2270686f72756d2f6c6973742e7068703f663d35223eb3f2b4d1bdd7bec23c2f613ea143, 'Y', '2007-02-20 07:22:55'),
(753, 8, 0xb9efa7bdb5b2a7f4aec9aabaacf5a6e2a470a4e8b6f4ac4fa4b0bbf2a148, 'N', '2007-02-20 07:22:55'),
(754, 8, 0xacf5a6e2a470a4e8b6f4ac4fc073a4a7f9d6b54caa6ba750c25fb8d3aac5ac4fb6c2a4e8a9cea5d5a4e8aabaa661a143a569afe0aabaadeca65da6b3a1470d0a3c756c3e0d0a3c6c693ea8e4a4a4c1d9a6b3b9efa4e2aabaa46ca97ca5bcb351bcd0a5dc22a6baa46c22a143bdd0c249bfefbcd0a5dca8baa8c7a46cacb022a6baa46c22a1433c2f6c693e0d0a0d0a3c6c693ea5d5a4e8a9ceb6c2a4e8aabac3e4acc9a97ca5bcbd54a977a143a662a448c3feb4d1a4e2b2b4a4a4a45db35cabdca9fabd54a141a6fdac4fc073a4a7f9d6a569afe0c3f8a548a750c25fac4fbdd6aabaa6fba661a143bdd0c249bfefb4d1bd4ca455a4e8aaba22c47ec4f2b9efa7bd22a141a668a455b458a4e2a8d3bd54a977c3e4acc9a1433c2f6c693e0d0a0d0a3c6c693eb36fac4f203c6120687265663d226661712e7068703f726561643d74266361743d3323456e747279313031223ea640aca13c2f613e20aabaaaacba41a143bdd0c249bfefc5fda640aca1a4a4aabaacf5a6e2a4e8b6f4c5dca6a8203c6120687265663d226661712e7068703f726561643d74266361743d3323456e747279313135223eb3e6a9783c2f613ea143c073a4a7f9d6b77ca548baf1a6e2a470a4e8b6f4a8d3aaeda5dca143a6b9a55cafe0a569a548b8d1a84da640aca1aabab0ddc344a141b16fa8eca5bfbd54aabab9efa7bdb5b2aa47a143b8d4b1a1bdd0acdd203c6120687265663d2270686f72756d2f726561642e7068703f663d3226693d38343326743d383433223ea6b9a544c3443c2f613e2e3c2f6c693e0d0a3c2f756c3e, 'N', '2007-02-20 07:22:55'),
(963, 8, 0xabdda7bdabc7aabaacf5a6e2ad49b4baac4fa4b0bbf2a148, 'Y', '2007-02-20 07:22:55'),
(964, 8, 0xa66222b9efa4e2b5a5afc522c4e6aabab248acf5a6e2ad49b4baac4fabfcb17aa5d8ab65aabab5a5afc5a4a3a658b8d3b9efa7bda143b17ab54caa6ba55ba44ab8d3b9efa7bda143, 'N', '2007-02-20 07:22:55'),
(967, 8, 0xc5fda46cad6ea9f1a662a4b0bbf2a661a4e8a148, 'Y', '2007-02-20 07:22:55'),
(968, 8, 0xaedabedaa4a4b0eab3f2b4d1b357ab68a141c5fda46ca6ecb86da569a548a6dba5d1a84da977a1430d0aaedabedaa4e9a5bbb3f2b4d1b357ab68a141c5fda46ca6ecb86da6b3ac4aa977a4e8a6a1a15dac50a6ecc5fda46ca15ea143a670aa47a853a6b3a8c6a5fda650b74ea141a46aa668bcc6b4d1a4e2b4c1abddb6c2a46cb1c4a8faa4e9a5bba6a1b357ab68a1430d0a3c756c3e0d0a3c6c693ec5fd203120a46ca147b8fbae7aaabaa440a4e8abf9b6c2a15da4c0a5fda15ea141b54cb64ba5d8a1430d0a3c6c693ec5fd203220a46ca1474434202b205131360d0a3c6c693ec5fd203320a46ca1474434202b205134202b205131360d0a3c6c693ec5fd203420a46ca1474434202b205134202b20443136202b205131360d0a3c6c693ec5fd203520a46ca1474434202b205134202b204b3130202b20443136202b205131360d0a3c6c693ec5fd203620a46ca1474434202b205134202b20443130202b20513130202b20443136202b205131360d0a3c6c693ec5fd203720a46ca1474434202b205134202b20443130202b204b3130202b20513130202b20443136202b205131360d0a3c6c693ec5fd203820a46ca1474434202b204b34202b205134202b20443130202b20513130202b20443136202b204b3136202b205131360d0a3c6c693ec5fd203920a46ca1474434202b204b34202b205134202b20443130202b204b3130202b20513130202b20443136202b204b3136202b20513136203c2f756c3e, 'N', '2007-02-20 07:22:55'),
(971, 8, 0xa670a6f3b3f8a769b57ba6a1a470a4f2af66a148, 'N', '2007-02-20 07:22:55'),
(972, 8, 0x3c756c3e0d0a3c6c693ebdd0b9eeacddb160a8a3b0ddc344bb50bdd7bec2c3f6a9f3b17ab94aa8ecaabab57ba6a1a4f2af66a143b76ab44dbdd7bec2a569afe0b77ca4f1c273c4fda7f3a6b3aec4b276a277b64ba4e5b9eaa662a4d3a668a141a6b3aec9add4a569afe0b77cb64bbff9bdd7bec2a1430d0a3c6c693eb8d4b2d3b479ad7ab17aaabab0ddc344a141b64ba8ec0d0a203c686f6d6520666f72756d2f6c6973742e7068703f666f72756d3d323e537570706f727420666f72756d3c2f686f6d653e20b17aa45da569a5480d0a3c6c693eb14eb0ddc344b148ab48b5b93c686f6d652070656f706c652e7068703e646576656c6f706572733c2f686f6d653e2e0d0a3c2f756c3e, 'N', '2009-10-12 16:16:04'),
(973, 8, 0xa670a6f3b56ea44aa4f1b8fba7d6b374a148, 'Y', '2007-02-20 07:22:55'),
(974, 8, 0xb17aa569a548a4a3a5cea843a6b8b3a3bfe9a44ab162b8b9bb50b14bbd58a141a7e2b162b8b9bb50b14bbd58a9f1a66255524ca5bba8ada143a45db44eac4fbba1a141b14ec273c4fdbeb9abfca656203c753e687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f6c6f67696e2e7068703f7573657269643d3c623e7468652d757365722d69643c2f623e267061737377643d3c623e7468652d70617373776f72643c2f623e3c2f753ea1430d0a0d0abdd0a470a4dfa141b14bbd58a548a4e5a672a4e8a6a1c078a673a6b3a677a5feadb7c049a143bdd0a74fb56fb065b17aaabab56ea44a55524ca9cea662a4bda5ceb971b8a3c078a673acb0aed1c5d2a143, 'Y', '2007-02-20 07:22:55'),
(975, 8, 0xa670a6f3b56ea44aa7daaabab162b8b9a148, 'Y', '2007-02-20 07:22:55'),
(976, 8, 0xb56ea44a203c6120687265663d222f22207461726765743d225f626c616e6b223ec073a4a7f9d6a544adb63c2f613ea141bfe9a44ab17aaabab162b8b9bb50b14bbd58a14344475320b77cb3d0b379a440add320636f6f6b696520a673a662b17aaabab971b8a3a143b36fadd320636f6f6b696520a569a548c5fdb17aab4fabf9b56ea44a20333020a4d1a143, 'Y', '2007-02-20 07:22:55'),
(979, 8, 0xb160a8a3b0ddc344ac4fa75fbdcda8eca9d2a6b3aabab57ba6a1a470a4f2af66a148, 'Y', '2007-10-01 07:44:22'),
(980, 8, 0xa853a6b3a141a45da5c3bbb7b54caa6ba5feb3a1bdcda8eca143b36fb8ccbdcda8ecaabaa470a4f2af66b3a3ac4fb160b56fa5cda9cea477aabeaabac052ba41bff9bb7ea141a548a4cea662bdd7bec2a4a4b8d4b2d3b051bdd7b94caabaa143a470a4f2af66b77cb351add7b27a283c693eb36fbccba47ea6b3aac5b6a1ae65afc7a8e4a54ca470a4f2af66a1483c2f693e29a141a6fdac4fa662add7b27aa66ea4a7ab65a141b36fb8cca45db77ca55ba548b051bdd7a143, 'Y', '2007-02-20 07:22:55'),
(981, 8, 0xc073a4a7f9d6aabab054aea7a6b3adfea8c7a148, 'N', '2007-02-20 07:22:55'),
(982, 8, 0xb4d1a4e2a6b3a548a455b458bad8a4e8a6a1a4acacdbb6c7b065b054aea7a1470d0a3c554c3e0d0a3c6c693eb148a558a870a448ab48a5f3b5b9af53a977aabab4d1a4e2a1433c2f6c693e0d0a3c6c693eb64ba4e5a8ecc073a4a7f9d6aaba203c6120687265663d222f70686f72756d2f22207461726765743d225f626c616e6b223ebdd7bec23c2f613e20bb50b35ca668b4d1a4e2b051bdd7a1433c2f6c693e0d0a3c6c693ea662b669a6e6a4a4b4d1a7bdb56faaed28a6b3b35ca668a7cea6a129203c4120485245463d222f6661712e7068703f726561643d74266361743d33363523456e7472793735223eaf64a8a53c2f413ea1433c2f6c693e3c2f554c3e0d0a0d0abdd0aa60b74ea149a853a6b3b054aea7b77cb351a752b0a3a143a870a448b054aea7a575b77cb171b17aaabaa643aaedb2beb0a3a141a6fdac4fb77caf64a662b8eaaec6ae77a4a4a143b4d1a7bda4a4aabaaf64a8a5a45db77ca5c3bbb7ab4faf64a141c1d9a6b3bdd7bec2aabaaf64a8a5a143b9efa7bda4a4aabaa5bfb160b054aea7a4a3b77cbfe9a44a534746c0c9a141a6fdac4fb77caf64a662a874b2cea457a141b9efa7bdaabac2f9a4e8a569a548c5aaa8faa143, 'N', '2007-10-01 06:29:12'),
(983, 8, 0xab48bd63b8eaaec6a7a8ac4fa4b0bbf2a148, 'Y', '2007-02-20 07:22:55'),
(984, 8, 0xab48bd63b8eaaec6a7a8a569a548aedabedab17aaababbddad6ea8d3b2d5c2b4b054aea7a143b17aa569a548c048b74eb2beb0cab054aea7a8eca4a3a650b8eaaec6a7a8a1430d0a0d0ac073a4a7f9d6b4a3a8d1a548a455aabaa4baabd8b8eaaec6a7a8a1473c756c3e0d0a3c6c693e3c623ea5fea6aca8ec3c2f623ea147a9d2a6b3a477b1b5a6acb054aea7a1430d0a3c6c693e3c623ea544ab48bd633c2f623ea147a477be5cc5aaaabaa477b1b5a6acb054aea7a1430d0a3c6c693e3c623eb7733c2f623ea147a5bcc5aaaabaa477b1b5a6acb054aea7a1430d0a3c6c693e3c623ea65ec2d0a1493c2f623ea147bbddad6ea65ec2d0aabab054aea7a1430d0a3c6c693e3c623ea955a7a3b1ed3c2f623ea147b351bcd0a5dca752b0a3aabab054aea7a1430d0a3c6c693e3c623ea477b148a5583c2f623ea147a477b065a558aabab054aea7a1430d0a3c2f756c3e, 'Y', '2007-03-04 05:52:10'),
(985, 8, 0xa670a6f3bc57a55ba9ceb2beb0a3b6b5a5d8a148, 'Y', '2007-02-20 07:22:55'),
(986, 8, 0xb36fac4fc3f6a9f32671756f743ba5d8ab65b9efa7bd2671756f743ba1412671756f743ba477b5b2a7f4b9efa7bd2671756f743bbb502671756f743bb669a6e6a4a4b9efa7bd2671756f743baabab4d1a7bdc5e3a5dcb6b5a5d8a1430d0a0d0aad6ebc57a55bb6b5a5d8a141b171b8d3adb6a455a4e8aabaa9d4a8faa6a1b24db3e6bfefa8fab17ab751ad6eaabab6b5a5d8a141b54dabe1c249bfefaec7c3e4aaba2671756f743bbc57a55bb6b5a5d82671756f743babf6b673a1430d0a0d0aad6eb2beb0a3b6b5a5d8a141c249bfefb6b5a5d8bcd0c344aec7c3e4aabaacf5a6e278a143, 'N', '2008-05-07 09:38:11'),
(987, 8, 0xa7daa47eade8a55ba44ac073a4a7f9d6a143a7dab8d3bfe9a44aa4b0bbf2aaeca96cb5a5afc5a148, 'Y', '2007-02-20 07:22:55'),
(988, 8, 0xb7edb17ab5f9a555b773b162b8b9aec9a14144475320b77cb8dfb0ddb17aac4fa75fa477a6b3a8e4a54cb3f2b4d1b5a5afc5a15da45db35ca8d3a6dba9f3a8e4a54cb3f2b4d1baf4afb8a141add1bcd6b3a1a141a9ceb3f2b4d1a8f3b77ca15ea143a575ad6ebfe9a44ab8d3b5a5afc5a14144475320b44eb77cc2e0a6a8be41b7edaaba2044475320aaeca96cb5a5afc5a1430d0a0d0abdd0aa60b74ea147b5f9a555b773b162b8b9aec9a141a670aa47b17aa4a3aabeb944a6dba476b4d1a44fa141bdd03c623ea4a3ad6e3c2f623ebfe9a44aa5f4a6f3b5a5afc5a141bdd0a5fdb0d1a6d2bba1a9fab4fab8d5a558b17aaabab4d1a44fa143a440a5b9bfe9a44aabe1b44eb54caa6ba7efc5dca146b17aa5b2b6b7be61a455b4d1a47eafe0bdd5bee3b5a5afc5a143, 'N', '2007-02-20 07:22:55'),
(989, 8, 0xa670aa47a7daa440b67da96cbfe9a44abff9bb7eaabaaaeca96cb5a5afc5a141a6b3a4b0bbf2c3f6ab59a148, 'Y', '2007-02-20 07:22:55'),
(990, 8, 0xa8e4b9eaa853a4b0bbf2c3f6ab59a1433c693ea15da6fda6b3a8c7a448c4b1b16fabdca6b3c3f6ab59a146a6b3a8c7a448a4a3a662b74ea143a15e3c2f693ec073a4a7f9d6abdca7d6b44eb77caedabedab17aa7b9a6a8aabab5fbb5a5b9efa7bda55ba548bdd5bee3a143b867b94ca46aacf9a4ada6b8b9efa7bda141b17ab44ea569a548b16fa8ecacdbb7eda569be61aaba2044475320b5a5afc5a1430d0a0d0aa670aa47b17a3c693eac47b74e3c2f693eb35da977bff9bb7eaabaaaeca96cb5a5afc5a141b17ab77cb753b46fa8e4a54cb9efa4e2a141bec9ad503c693ea54cadccaaba3c2f693eb5a5afc5a4a3a4bda5ada661a455adb0a143a74fa7d1a446a141b17aa548abe1a569afe0c1d9b77cbb50a54cadccb9efa7bda14b0d0a0d0ac073a4a7f9d6a756a44fb4a3a8d1a6b3aec4aabab5a5afc5a141a6fdac4fa45dbbddad6eb17aaabaa658a740a147bdd0a4a3ad6ea662b773b162b8b9b35da977bb50b17ab4d1a44fae74a4d3a668aabab5a5afc5a143c1c2c1c2a149, 'N', '2007-02-20 07:22:55'),
(991, 8, 0xb7eda7daaabaad70aec9c4c1bcc8b0b1aec9a141b9efa4e2aabac4c1ac4fa75fb77cb67da96cad70aec9a148, 'Y', '2007-02-20 07:22:55'),
(992, 8, 0xa670aa47ac4fb4abb17aa455a147a4a3b77ca1430d0a0d0aa670aa47ac4fb4abb9efa4e2a455a147b77caabaa141ab65b4a3ac4fb36fa4a3ac4fbaceaf76aec9b6a1a141a45da4a3ac4fb667a5bda15da662a8faaef8b667a5bdad70aec9aabab9efa7bda15ea141b9efa4e2a45da853a6b3b67da96ca5f0b0b2a143, 'Y', '2007-06-21 11:27:25'),
(993, 8, 0xa7daafe0a4a3afe0a662ad70aec9c4c1bcc8b0b1aec9b065a558b8a8a46ca148, 'Y', '2007-02-20 07:22:55'),
(994, 8, 0xb17a3c693ec048aec93c2f693eb3a3a569a548b065a558b8a8a46ca277b44ebae2ac4fa662baceaf76aec9b6a1a141a5f0b0b2a141a9ceb667a5bda143, 'Y', '2007-06-21 11:27:25'),
(995, 8, 0xc073a4a7f9d6aabab667a5bdad70aec9c4c1ac4fa4b0bbf2a148, 'Y', '2007-02-20 07:22:55'),
(996, 8, 0xb7edb17ab35da977b773b4d1a7bdaec9a141b17aa569a548bfefbedcad70aec9c4c13c623ea4a3ad6e3c2f623ea662b667a4bbbb50b667a4e9b9eaad70aec9a143, 'N', '2007-02-20 07:22:55'),
(999, 8, 0xc4b9a562a5d8a9cea440a6caa5d8a141a4a4bd4cbb7bbfe9a9ceb657aec9b1d1a141a662b5a5afc5a7efc5dca457a6b3a4b0bbf2ae74a74fa148, 'Y', '2007-06-07 17:26:19'),
(1000, 8, 0xb9efc073a4a7f9d6a6d3a8a5a141c4b9a440bd4cb4d1b44eac4fc4b9a440bd4cb4d1a141bfe9a440bd4cb4d1b44eac4fbfe9a440bd4cb4d1a143b5a5afc5a7efc5dcb3a3a440bccba143, 'Y', '2007-02-20 07:22:55'),
(1001, 8, 0xc073a4a7f9d6a670a6f3ad70aec9a148, 'Y', '2007-02-20 07:22:55'),
(1002, 8, '', 'Y', '2007-02-20 07:22:55'),
(1556, 10, 0xd3c3bba7b7d6c0e0, 'Y', '2012-01-08 18:36:55'),
(1004, 8, 0xa662bdd7bec2a6b3a6f3a6e6acb0b357bd64a148, 'N', '2007-02-20 07:22:55'),
(1005, 8, 0xa569a548b0d1a6d2203c6120687265663d22687474703a2f2f7777772e666171732e6f72672f726663732f726663313835352e68746d6c223ebaf4b8f4c2a7bbf6b357bd643c2f613ea1430d0a0d0ab8d3b357bd64a6b3c249a4beaaf8a143b17aa45da569a548b0d1a6d2b8fbc2b2b575aaba203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f70686f72756d2f726561642e7068703f663d3426693d3339323626743d33393236223e20bdd7bec2a544c3443c2f613ea143, 'N', '2007-02-20 07:22:55'),
(1006, 8, 0xc073a4a7f9d6aabaadeca96cbd58ac4fa75fa4bdb67da148, 'Y', '2007-02-20 07:22:55'),
(1007, 8, 0xaedabeda20474e55205075626c6963204c6963656e6365202847504c29aabaaa6babdfa141a569b1712043565320a455b8fcadeca96cbd58a147203c4120485245463d22687474703a2f2f736f75726365666f7267652e6e65742f70726f6a656374732f647261676f6e676f7365727665722f22205441524745543d5f626c616e6b3e536f75726365466f726765c073a4a7f9d6ace3b56fadb63c2f413ea143, 'N', '2007-02-20 07:22:55'),
(1008, 8, 0xc073a4a7f9d6aabaadeca96cbd58ace3b56fa662a6f3b342b051bdd7a148, 'Y', '2007-02-20 07:22:55'),
(1009, 8, 0xa662203c6120485245463d22687474703a2f2f6c697374732e736f75726365666f7267652e6e65742f6c697374732f6c697374696e666f2f647261676f6e676f7365727665722d646576656c22205441524745543d225f626c616e6b223ec073a4a7f9d6ace3b56fb971a46cb66ca5f3a643aaed3c2f613ea143abdcc577aaefb17ab5f9a555a55ba44aace3b56fa143, 'N', '2007-02-20 07:22:55'),
(1010, 8, 0xadfea8c7b9efa7bdb77cbc76c554a7daaabab5a5afc5a148, 'Y', '2007-02-20 07:22:55'),
(1011, 8, 0xc073a4a7f9d6aabab5fbb5a5a874b2cea575ad70bae2a548a455b4d1a7bda1470d0a0d0a2a20c2f9a4e8b4d1a4e2b3a3a650b74eb4d1a7bda6b3b5fbb5a5a141a548a4ce0d0a2a20a5d5a4e8a477b867a455a446a6dca4d6203520a4e2a143, 'N', '2007-02-20 07:22:55'),
(1012, 8, 0xa7daafe0a6a8acb0c073a4a7f9d6aabac2bdc4b6a448adfbb6dca148, 'Y', '2007-02-20 07:22:55'),
(1013, 8, 0xa569a548a143bdd0a662203c4120485245463d222f70686f72756d2f6c6973742e7068703f663d3722205441524745543d5f626c616e6b3ec2bdc4b6bdd7bec23c2f413e20b4a3a558a5d3bdd0a143badeb27aaaccb371b160b3a3b77cb35ca569a143, 'Y', '2007-02-20 07:22:55'),
(1016, 8, 0xc073a4a7f9d6a8cfa5cea4b0bbf2b3f2b4d1b357ab68a148, 'Y', '2007-02-20 07:22:55'),
(1017, 8, 0xc073a4a7f9d6a46aad50a8cfa5cea4e9a5bbb3f2b4d1b357ab6820a27720a4a3b94ca662c5fda46ca6ecb86da141b4d1bd4ca46aa470bb50aec9adadaabab35da977a457a141c073a4a7f9d6b977b35dbfefb6b5a8c3a4a3b2c5a658a5bfa6a1a4e9a5bbb3f2b4d1b357ab68a141a6fdac4fa6fca547a4f1b8fbbe41a658a65ea658a8eeb3f2b4d1a14b0d0a0d0ac2b2b3e6bba1a141c073a4a7f9d63c756c3e3c6c693eaedabedab4d1a4e2b9efb4d1bd4caabac249aac5a8d3ad70a4c0a1410d0a3c6c693ea853a6b3b657afc5a754b357ab68a1410d0a3c6c693eb854a4eea6dbb4a3a1410d0a3c6c693eae65b35ca6dba5d1a6ecb86dc5fda46ca1433c2f756c3e, 'N', '2007-02-20 07:22:55'),
(1019, 8, 0xa65ea658a8ee, 'Y', '2007-02-20 07:22:55'),
(1020, 8, 0x5475726e2d6261736564a147a65ea658a8eeaabab943c0b8ac4fab44a650aec9b669a6e6aabaa143c2f9a4e8a4a3bbddad6ea650aec9a662b3f5a141a569a548a6b3aec9b6a1aec9a47eaab1a143a8d2a670a65ea658a8eeb3f2b4d1a569b37ab94cab48a5f3a141b971a46cb66ca5f3a141a9cea662c073a4a7f9d6b36fb8ccaab1a143a45dbdd0b0d1a6d2203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f6661712e7068703f726561643d74266361743d3323456e747279313533223ea759aec9a8ee3c2f613ea143, 'Y', '2007-02-20 07:22:55'),
(1021, 8, 0xa759aec9a8ee, 'Y', '2007-02-20 07:22:55'),
(1022, 8, 0x5265616c2d74696d65a147a759aec9a8eeb943c0b8ac4fa650aec9b669a6e6aabaa143c2f9a4e8a5b2b6b7a650aec9a662b3f5a47eafe0aab1a143bee3b3f5b943c0b8a440a6b8b44eb5b2a7f4a143a8d2a670a759aec9b3f2b4d1ac4fa662af75aabab4d1bd4ca457b669a6e6a141a9ceb37ab94ca759aec9b3f2b4d1baf4afb8a8d3aab1a143a45dbdd0b0d1a6d220266c743b6120687265663d2671756f743b687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f6661712e7068703f726561643d7426616d703b6361743d3323456e7472793135322671756f743b2667743ba65ea658a8ee266c743b2f612667743ba143, 'Y', '2008-05-07 09:32:11'),
(1025, 8, '', 'Y', '2007-02-20 07:22:55'),
(1558, 10, 0xbcd3c8ebcab1bce4, 'Y', '2012-01-08 18:19:52'),
(1558, 33, 0xe58aa0e585a5e697b6e997b4, 'Y', '2012-01-08 18:20:08'),
(1554, 33, 0xe98089e9a1b9, 'Y', '2012-01-08 18:31:40'),
(1036, 8, 0xb54caca1b0caaabab4d1a4e2add3a448b8eaaec6a6f3aec9b77cb351b2beb0a3a148, 'N', '2007-10-01 06:29:12'),
(1037, 8, 0xa5c3bbb7a4a3b77ca143a54cadcca575b77cb351bcd0a5dcb54caca1b0caa141b171b9efa7bda4a4aabab4d1a4e2a643aaeda457aef8a5a2a143, 'N', '2007-10-01 06:29:12'),
(1038, 8, 0xa7daa569a548be61bbb2a755a8cfa6dba476b4d1a44fa7f3b16ab6dca148, 'Y', '2007-02-20 07:22:55'),
(1039, 8, 0xb7edb54da569a548a143c5aaaed1a141b8d7b4d1a141bb50b971b8a3b9efabb3a141bb50a8e4a54cb4d1a4e2b051bdd7a143bdd7bec2a569a548acdda8ecb36fb8ccb35ca668b4d1a4e2a277bba1a4a3a977a5feb3a1a277b77cbfefbedca548a457aabaa740aa6ba143, 'N', '2007-02-20 07:22:55'),
(1042, 8, 0xa7daad6ea670a6f3b56ea558a148, 'Y', '2007-02-20 07:22:55'),
(1043, 8, 0xa575ad6ec249bfefa5f4a6f3baf4adb6a56ba455a8a4aaba22b56ea55822a143a670aa4720333020a4e9a853b56ea44a2044475320a141a874b2ce20636f6f6b696520b44eb77cb94cb4c1a141b14eb17ab56ea558a143, 'Y', '2007-02-20 07:22:55'),
(3452, 11, 0x56657277696a64657220736a61626c6f6f6e, 'Y', '2016-07-27 17:27:18'),
(972, 10, 0x3c756c3e3c6c693ec7ebb2ecbfb4b3a3bcfbcecacce2d3ebc2dbccb3b9d8d3dac4fad3f6b5bdb5c4b3ccd0f2c3abb2a1a1a3cbd1d1b0c2dbccb3bfc9c4dcbbe1b1c8e4afc0c0b8fcd3d0d0a7c2caa9a4ccf9cec4cab5d4daccabb6e0a3acd3d0cab1baf2bfc9c4dcbbe1ccf9b4edc2dbccb3a1a30d0a3c6c693ecfeacfb8c3e8caf6c4fab5c4cecacce2a3acccf9b5bd203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f70686f72756d2f6c6973742e7068703f663d32223e537570706f727420666f72756d3c2f613ea3acc4fad2b2bfc9d2d40d0a3c6c693ebdabcecacce2bcc4d0c5b8f8203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f6661712e7068703f726561643d74266361743d313923456e7472793836223ed1d0b7a2c8cbd4b13c2f613ea1a33c2f756c3e, 'N', '2007-10-01 09:24:54'),
(1060, 10, 0xd2feb2d8, 'Y', '2007-02-25 08:18:27'),
(1091, 10, 0xcaa3d3e0cab1bce4, 'Y', '2007-02-25 08:18:27'),
(1125, 10, 0xb7d6c0e0, 'Y', '2007-02-25 08:18:27'),
(1088, 10, 0xcfc2d4d8c6e5c6d7baacc1f4d1d4, 'Y', '2007-08-05 13:31:26'),
(1087, 10, 0xc1f4d1d4, 'Y', '2007-02-25 08:22:48'),
(715, 8, 0xbaf4adb6aec9b6a1, 'Y', '2007-02-25 08:36:32'),
(5786, 40, 0x25732076656e63656d20706f722074656d706f, 'Y', '2014-04-13 17:43:02'),
(3174, 40, 0x46656368616461, 'Y', '2014-04-11 14:07:57'),
(719, 8, 0x257320252e316620a5d8b3d3, 'Y', '2007-06-03 13:42:48'),
(1085, 8, 0xbdd0c249bfefa6baa46ca141b54dabe1c249bfef20257327a7b9a6a8272573, 'Y', '2007-02-25 08:38:09'),
(1087, 8, 0xaf64a8a5, 'Y', '2007-02-25 08:38:09'),
(1211, 8, 0xa4e2bcc6, 'Y', '2007-02-25 08:39:30'),
(618, 8, 0xadeca8d3b5a5afc5, 'Y', '2007-02-25 08:39:30'),
(619, 8, 0xb5b2a7f4b5a5afc5, 'Y', '2007-02-25 08:39:30'),
(620, 8, 0xa7daa4e8bc57b4ee, 'Y', '2007-06-03 15:06:37'),
(163, 8, 0xbcf6a4dfa448, 'Y', '2007-02-25 08:51:25'),
(164, 8, 0xc073a4a7f9d6a8f3a755aacc, 'Y', '2007-02-25 08:51:25'),
(169, 8, 0xa670aa47b17ab751bed6a6b3a6dba476aabac073a4a7f9d6, 'Y', '2007-02-25 08:51:25'),
(2662, 17, 0x50727a657379b3616e7920706c696b205b25735d207a6f737461b320776772616e792074796c6b6f20637aeab663696f776f2e, 'Y', '2013-08-21 00:01:06'),
(173, 8, 0x736f75726365666f726765c073a4a7f9d6ace3b56fadb6, 'Y', '2009-05-19 11:44:23'),
(340, 8, 0xb160a8a3b0ddc344bd73bfe8, 'Y', '2007-10-01 07:37:38'),
(730, 8, 0xbd73bfe8b0b2b4c1, 'Y', '2007-02-25 08:51:25'),
(1228, 8, 0xb2cead70b9cf, 'Y', '2007-03-12 11:47:47'),
(1234, 8, 0xb8dcc344, 'Y', '2007-02-25 09:00:31'),
(1235, 8, 0xa65ea8ecb8dcc344, 'Y', '2007-02-25 09:00:31'),
(1237, 8, 0xb76ab44d, 'Y', '2007-02-25 09:00:31'),
(1241, 8, 0xbc66aed6a4a4, 'Y', '2007-02-25 09:04:08'),
(1243, 8, 0xa740aacc, 'Y', '2007-02-25 09:00:31'),
(1246, 8, 0xa477bd73bfe8, 'Y', '2007-02-25 09:00:31'),
(1251, 8, 0xaed6ade3, 'Y', '2007-02-25 09:00:31'),
(1253, 8, 0xb64ba4e5, 'Y', '2007-02-25 09:00:31'),
(1257, 8, 0xb8dcc344, 'Y', '2007-02-25 09:00:31'),
(1258, 8, 0xa740aacc, 'Y', '2007-02-25 09:00:31'),
(1259, 8, 0xb64ba4e5, 'Y', '2007-02-25 09:00:31'),
(1260, 8, 0xa457a6b8b64ba4e5, 'Y', '2007-02-25 09:00:31'),
(1263, 8, 0xadd7ad71befaa576, 'Y', '2007-02-25 09:00:31'),
(1267, 8, 0xb76ab44db5b2aa47, 'Y', '2007-02-25 09:00:31'),
(1252, 8, 0xa5bcb371b94c, 'Y', '2007-02-25 09:01:58'),
(1255, 8, 0xbdd7bec2, 'Y', '2007-02-26 13:04:45'),
(1256, 8, 0xbc66aed6, 'Y', '2007-02-25 09:01:58'),
(1244, 8, 0xb5a5abdd3c62723eaed6ade3, 'Y', '2007-02-25 09:04:08'),
(722, 8, 0xb8eaaec6a7a8, 'Y', '2007-02-26 04:56:52'),
(724, 8, 0xa752b0a3bcd0a5dcab48a5f3, 'Y', '2007-02-26 04:56:52'),
(726, 8, 0xbd73bfe8ab48bd63, 'Y', '2007-02-26 04:56:52'),
(727, 8, 0xb9efa7bdb35da9772573a574c4b32573, 'Y', '2007-02-26 04:57:40'),
(740, 8, 0xa5fea6aca8ec, 'Y', '2007-02-26 04:56:52'),
(741, 8, 0xa544ab48bd63, 'Y', '2007-02-26 04:56:52'),
(742, 8, 0xa955a7a3b1ed, 'Y', '2007-02-26 04:56:52'),
(743, 8, 0xa477b148a558, 'Y', '2007-02-26 04:56:52'),
(744, 8, 0xa65ec2d0aec9b2bea6dcb8eaaec6a7a8, 'Y', '2007-02-26 04:56:52'),
(745, 8, 0xb2bea6dcb8eaaec6a7a8, 'Y', '2007-02-26 04:56:52'),
(746, 8, 0xb8eaaec6a7a8a657bad9, 'Y', '2007-02-26 04:56:52'),
(755, 8, 0xa874b2ce, 'Y', '2007-02-26 04:56:52'),
(1106, 8, 0xa65eb5aaa643aaed, 'Y', '2007-02-26 04:56:52'),
(1108, 8, 0xa65ea8ecab48a5f3, 'Y', '2007-02-26 04:56:52'),
(1110, 8, 0xb54ca6b9a6aca5f3aacc, 'Y', '2007-02-26 04:56:52'),
(1121, 8, 0xab65a440ab68ab48a5f3, 'Y', '2007-02-26 04:56:52'),
(1122, 8, 0xa455a440ab68ab48a5f3, 'Y', '2007-02-26 04:56:52'),
(1124, 8, 0xa7daa4e8, 'Y', '2007-02-26 04:56:52'),
(956, 8, 0xa9eaba70a141b27ba662b54caa6ba7efc5dcb0b2b4c1aaf8abd7, 'Y', '2007-02-26 05:16:02'),
(957, 8, 0xb0b2b4c1aaf8abd7a7efc5dca149, 'Y', '2007-02-26 05:16:02'),
(958, 8, 0xbc57a55b, 'Y', '2007-02-26 05:16:02'),
(959, 8, 0xb2beb0a3, 'Y', '2007-02-26 05:16:02'),
(960, 8, 0xbfefbedcb0b2b4c1aaf8abd7, 'Y', '2007-02-26 05:16:02'),
(962, 8, 0xb0b2b4c1b472a7d6a149, 'Y', '2007-02-26 05:16:02'),
(1131, 8, 0xa9eaba70a141bbddad6ea6dca4d6202564a4d1b0b2b4c1a47eafe0b67da96cabd7b0b2, 'Y', '2007-02-26 05:16:02'),
(1273, 8, 0xb8eaaec6a7a8a5b2b6b7b24daac5a47eafe0a752b0a3a149, 'Y', '2007-02-26 05:16:02'),
(389, 8, 0xb773ab48a5f3, 'Y', '2007-02-26 05:17:32'),
(747, 8, 0xa9d2a6b3b6b5a5d8, 'Y', '2007-05-13 11:07:35'),
(1060, 8, 0xc1f4c2c3, 'Y', '2007-02-26 05:17:32'),
(1125, 8, 0xa4c0c3fe, 'Y', '2007-02-26 05:17:32'),
(1274, 8, 0xa4e9, 'Y', '2007-02-26 05:17:32'),
(1275, 8, 0xa4e9, 'Y', '2007-02-26 05:17:32'),
(1276, 8, 0xa470aec9, 'Y', '2007-02-26 05:17:32'),
(1277, 8, 0xa470aec9, 'Y', '2007-02-26 05:17:32'),
(337, 8, 0xc073a4a7f9d6aabaa8f3a755aacc, 'Y', '2007-02-26 13:02:03'),
(5773, 36, 0x41206a6567797a6574656b2076c3a16c746f7ac3a1736169206dc3a967206e696e6373656e656b206d656e74766521, 'Y', '2015-07-23 12:11:44'),
(1060, 2, 0x476a656d, 'Y', '2007-02-27 00:55:13'),
(1091, 2, 0x5469642069676a656e, 'Y', '2007-02-27 00:55:13'),
(1125, 2, 0x536f72746572, 'Y', '2007-02-27 00:55:13'),
(1583, 36, 0x48656e64696b65706573206ac3a174737a6dc3a16b20737ac3a16d61, 'Y', '2015-09-19 19:19:07'),
(1274, 2, 0x64, 'Y', '2007-02-27 00:55:56'),
(1275, 2, 0x64, 'Y', '2007-02-27 00:55:56'),
(1276, 2, 0x74, 'Y', '2007-02-27 00:55:56'),
(1277, 2, 0x74, 'Y', '2007-02-27 00:55:56'),
(1024, 2, 0x4c696b74207061727469, 'Y', '2007-02-27 01:00:57'),
(1076, 2, 0x507269766174652070617274696e6f7461746572, 'Y', '2007-02-27 01:00:57'),
(1083, 2, 0x5374616e6461726420706c6173736572696e6720617620666f72676176657374656e657220626c6520f86e736b65742e, 'Y', '2007-02-27 01:02:48'),
(1084, 2, 0x5374616e6461726420706c6173736572696e67, 'Y', '2007-02-27 01:00:57'),
(1085, 2, 0x4d61726b65722064f8646520737465696e65722c206f67206b6c696b6b20257327666572646967272573206ee572206665726469672e, 'Y', '2007-02-27 01:00:57'),
(1086, 2, 0x46616e676572, 'Y', '2007-02-27 01:00:57'),
(1087, 2, 0x4b6f6d6d656e7461726572, 'Y', '2007-02-27 01:00:57'),
(1088, 2, 0x4c617374206e656420736766206d656420616c6c65206b6f6d6d656e7461726572, 'Y', '2007-02-27 01:00:57'),
(1089, 2, 0x506f656e6762657265676e696e67, 'Y', '2007-02-27 01:00:57'),
(1090, 2, 0x5365207472656b6b, 'Y', '2007-02-27 01:00:57'),
(1092, 2, 0x5261746574207061727469, 'Y', '2007-02-27 01:00:57'),
(1093, 2, 0x566973206e6f7461746572, 'Y', '2007-02-27 01:00:57'),
(1094, 2, 0x4c61677265206e6f7461746572, 'Y', '2007-02-27 01:00:57'),
(1095, 2, 0x476a656d206e6f7461746572, 'Y', '2007-02-27 01:00:57'),
(1111, 2, 0x526174696e6767726166, 'Y', '2007-02-27 01:00:57'),
(1647, 17, 0x42b3ea646e61206a65646e6f73746b6120584d4c, 'Y', '2013-08-20 23:23:04'),
(3387, 11, 0x546f6f6e206765627275696b657273696e666f, 'Y', '2016-07-29 15:00:34'),
(1211, 2, 0x5472656b6b, 'Y', '2007-02-27 01:00:57'),
(1270, 2, 0x416c6c652076656e74656e64652070617274696572, 'Y', '2007-02-27 01:00:57'),
(1271, 2, 0x50617373656e64652076656e74656e64652070617274696572, 'Y', '2007-02-27 01:00:57'),
(1266, 8, 0xb36fac4fa440add3c3fea6fcb371ab48a455b4d1a141a6b3acfcc65bb4d1bd4caababaf4b8f4a4b6adb1a143b17aad6ea5fda5d3bdd0a440add33c6120687265663d2272656769737465722e706870223e20b162b8b9203c2f613ea143b54dabe1b17aa569a5483c6120687265663d22656469745f70726f66696c652e706870223e20bd73bfe8add3a448b35da977203c2f613e20bb50203c6120687265663d22656469745f62696f2e706870223e20bd73bfe8a470b6c7203c2f613ea14122b67da9f1b9efa7bd22a14122444753b5a5afc522bb5022b0d1a6d2b5a5afc522aabab8eaaec6b14ea6b3a755a9f3b17aa7e4a8ecb9efa4e2a143b54dabe1b17aa569b0d1a6d23c6120687265663d2275736572732e706870223e20a5cea4e1203c2f613e20a8c3a8cfa5ce3c6120687265663d22666f72756d2f696e6465782e706870223e20bdd7bec2203c2f613ea8d3b44da7e4be41a658aabab9efa4e2a141b54dabe1a5ce3c6120687265663d226d6573736167652e7068703f6d6f64653d496e76697465223e20c1dcbdd0203c2f613ea8d3bdd0a54cadccb9efa7bda143b17aa45da569a548aabdb1b5a8ecabdda7bdabc7a55ba44abe41b7edaabab9efa7bda143, 'Y', '2007-03-12 12:45:50'),
(1213, 8, 0xc577aaefa5fac17b2573a141202573a74bb64f2573aaba2573b3f2b4d12573baf4afb8a141a569a548c5fdb17ab260abe4bcf4bc7ba455b4d1a143, 'Y', '2007-03-04 08:12:05'),
(1082, 8, 0xb14bbd58b065a558, 'Y', '2007-03-04 08:18:15'),
(1097, 8, 0xa670aa47b17ab751b9eabbdaa457baf4aab1c073a4a7f9d6a141bdd0a457266c743b6120687265663d2671756f743b687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742671756f743b2667743b687474703a2f2f7777772e647261676f6e676f7365727665722e6e6574266c743b2f612667743ba143, 'Y', '2008-05-07 09:29:45'),
(1613, 17, 0x42b3ea646e792072616e6b696e67, 'Y', '2013-08-20 22:26:48'),
(1614, 17, 0x4b52414a, 'Y', '2013-08-20 23:10:15'),
(1099, 8, 0xb8d4b1a1bdd0c5aa2671756f743bb160a8a3b0ddc3442671756f743ba143, 'Y', '2008-05-07 09:43:19'),
(1112, 8, 0xb773a5cea4e1bdd0aa60b74ea147bdd0be5cc5aa22b160a8a3b0ddc34422a4a4c3f6a9f3b17aaabaaaeca96cb5a5afc5b35da977a143, 'Y', '2007-10-01 07:33:04'),
(1212, 8, 0xc577aaefa5fac17b202573a149, 'Y', '2007-03-04 08:18:15'),
(1227, 8, 0xb148a558b773b14bbd58a149, 'Y', '2007-03-04 08:18:15'),
(1223, 8, 0xc5e3a5dca662a5d8ab65b9efa7bdadb6, 'Y', '2007-03-10 08:29:21'),
(1225, 8, 0xb8eaaec6a7a8a477bdd5bee3a149, 'Y', '2007-03-10 08:29:21'),
(1096, 8, 0xc577aaefa5fac17bc073a4a7f9d6ace3b56faaa9a149, 'N', '2007-03-10 08:41:16'),
(1025, 18, 0x556e6120706172746974612073656e7a61203c6120687265663d226661712e7068703f726561643d74266361743d33353723456e7472793937223e68616e64696361703c2f613e2e203c6120687265663d226661712e7068703f726561643d74266361743d3323456e74727939223e496c206b6f6d693c2f613e20e820696d706f737461746f2064616c2067696f6361746f72652063686520696e766974612e, 'Y', '2007-03-16 15:18:40'),
(1021, 18, '', 'Y', '2012-08-22 20:48:45'),
(1036, 18, 0x5175616e646f2076656e676f6e6f2072696d6f73736920692070726f66696c69207574656e746520696e6174746976693f, 'N', '2007-03-16 15:21:08'),
(1037, 18, 0x4d61692e20457373692076656e676f6e6f20736f6c74616e746f20636f6e747261737365676e61746920636f6d6520696e6174746976692c20652070657274616e746f206e6f6e2076656e676f6e6f207069f92076697375616c697a7a617469206e656c6c61206c69737461206465676c69207574656e74692e, 'N', '2007-03-16 15:21:08'),
(1038, 18, 0x436f736120706f73736f206661726520706572206d69676c696f72617265206e656c2067696f636f2064656c20676f3f, 'Y', '2007-03-16 15:21:55'),
(1039, 18, 0x4e61747572616c6d656e74652e204c656767657265206c696272692c207269736f6c766572652070726f626c656d692c2067696f6361726520636f6e74726f20696c20636f6d70757465722c2064697363757465726520636f6e20616c7472692067696f6361746f72692e204c652064697363757373696f6e6920616c6c27696e7465726e6f2064656c20466f72756d2068616e6e6f206d6f73747261746f20636865206d6f6c746920286f206d65676c696f2074757474692920692067696f6361746f72692070726573656e74692073752044475320736920736572766f6e6f2064692071756573746920737472756d656e746920706572206d69676c696f726172652e0d0a0d0a416c63756e692070726f626c656d6920646920474f207574696c6920706f73736f6e6f206573736572652074726f76617469207175693a0d0a3c687474703a2f2f73656e736569732e786d702e6e65742f3f50726f626c656d73416e644578657263697365733e2e0d0a0d0a4d6f6c74692067696f6361746f726920636f6e7369646572616e6f20696e617070726f70726961746f20636f6e73756c74617265207175616c63756e6f2073756c6c61207061727469746120696e20636f72736f2e20416c747269206e6f6e207369206f70706f6e676f6e6f20612071756573746f2c207061727469636f6c61726d656e74652070657220692067696f6361746f7269206465626f6c692e20536520696e74656e646920636f6e73756c74617265207175616c63756e6f2073756c6c61207061727469746120696e20636f72736f20736172e020636f72746573652061767665727469726520696c2074756f206176766572736172696f20696e20616e74696369706f2c20696e207175616e746f20706f747265626265206e6f6e20766f6c65722067696f6361726520696e2071756573746520636f6e64697a696f6e692e205365206e6f6e20686169206368696573746f20696e20616e74696369706f206520766f7272616920636f6e73756c74617265207175616c63756e6f20647572616e746520696c2067696f636f2c2073617265626265206564756361746f20636869656465726520616c2074756f206176766572736172696f20696e206f67676574746f207072696d61206469206661726c6f2e, 'N', '2010-10-26 16:33:42'),
(1042, 18, 0x436f6d6520706f73736f20657365677569726520696c206c6f676f75742064616c206d696f206163636f756e743f, 'Y', '2007-03-16 15:26:13'),
(1043, 18, 0x53656d706c6963656d656e746520666163656e646f20636c69632073756c20636f6c6c6567616d656e746f20224c6f676f757422207369747561746f20696e20626173736f206120646573747261206469206f676e6920706167696e612e20496e6f6c7472652c20696c20636f6f6b69652064656c2073657276657220444753206861206475726174612033302067696f726e693a20616c6c612073636164656e7a6120696c206c6f676f7574207669656e6520657365677569746f2064616c20736572766572206175746f6d61746963616d656e74652e, 'Y', '2007-03-16 15:26:13');
INSERT INTO `Translations` (`Original_ID`, `Language_ID`, `Text`, `Translated`, `Updated`) VALUES
(1022, 18, 0x496c2067696f636f207265616c2d74696d6520e820756e206d6f646f2064692067696f6361726520696e20636f6e74656d706f72616e65612e20c8206e65636573736172696f2063686520656e7472616d626920692067696f6361746f7269207369616e6f2070726573656e7469206f707075726520636865207369616e6f20636f6e6e65737369206e656c6c6f2073746573736f206d6f6d656e746f2e20556e612070617274697461207669656e6520696e697a69617461206520706f72746174612061207465726d696e6520696e20756e6120736f6c61207365647574612e204573656d70692064692067696f636f207265616c2d74696d6520736f6e6f206c652070617274697465202264616c207669766f222c20737520756e20676f62616e207265616c652c206f207472616d69746520756e6f206465692074616e746920736572766572207265616c2d74696d652e2056656465726520616e636865203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f6661712e7068703f726561643d74266361743d3323456e747279313532223e47696f636f2061207475726e693c2f613e2e, 'Y', '2007-03-16 15:51:40'),
(1019, 18, 0x47696f636f2061207475726e69, 'Y', '2007-03-16 15:54:20'),
(1020, 18, 0x496c2067696f636f2061207475726e6920e820756e61206d6f64616c6974e02064692067696f636f206173696e63726f6e612e204e6f6e20e8206e65636573736172696f2063686520656e7472616d626920692067696f6361746f7269207369616e6f20707265656e7469206f20636f6e6e65737369206e656c6c6f2073746573736f206d6f6d656e746f2e204f676e692067696f6361746f7265207075f22065666665747475617265206c612070726f70726961206d6f737361207175616e646f206e6520686120696c2074656d706f2e204573656d70692064692067696f636f2061207475726e6920736f6e6f206c652070617274697465207472616d69746520736e61696c2d6d61696c2c207472616d69746520656d61696c2c206f2071756573746f2073746573736f207365727665722c20447261676f6e676f7365727665722e2056656465726520616e636865203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f6661712e7068703f726561643d74266361743d3323456e747279313533223e5265616c2d74696d653c2f613e2e, 'Y', '2007-03-16 15:54:20'),
(1210, 18, 0x4d6f646966696361206c6520696e666f726d617a696f6e692062696f6772616669636865, 'Y', '2007-03-16 16:01:29'),
(1212, 18, 0x42656e76656e757469206e656c20257321, 'Y', '2007-03-16 16:01:51'),
(1211, 18, 0x4d6f737361, 'Y', '2007-04-08 00:45:19'),
(1214, 18, 0x5574656e746920617474697669, 'Y', '2007-03-16 16:02:07'),
(1218, 18, '', 'Y', '2012-08-22 20:48:45'),
(1219, 18, 0x526f73736f, 'Y', '2007-03-16 16:04:42'),
(1220, 18, 0x5665726465, 'Y', '2007-03-16 16:04:49'),
(1221, 18, 0x426c75, 'Y', '2007-03-16 16:04:55'),
(1222, 18, 0x416c6661, 'Y', '2007-03-16 16:05:03'),
(1223, 18, 0x4d6f73747261206e656c6c6120706167696e612064656c6c6f20737461746f, 'Y', '2007-03-16 16:05:21'),
(1224, 18, 0x5072696d6f207069616e6f, 'Y', '2007-03-16 16:06:13'),
(1213, 18, 0x42656e76656e7574692073752025732c20696c20736572766572202573667265652573207065722067696f636172652061202573676f25732c20646f766520696c2067696f636f2074656e6465206120277472617363696e6172746927202864726167206f6e21292e, 'Y', '2007-03-16 16:07:43'),
(1225, 18, 0x4c652063617274656c6c6520736f6e6f207374617465206d6f6469666963617465, 'Y', '2007-03-16 16:07:43'),
(1226, 18, 0x416767696f726e61, 'Y', '2007-03-16 16:08:06'),
(1227, 18, 0x6c61206e756f76612070617373776f726420e82073746174612073706564697461, 'Y', '2007-03-16 16:08:06'),
(1228, 18, 0x4772616669636f207374617469737469636f, 'Y', '2007-03-16 16:08:28'),
(1097, 18, 0x53652076756f692067696f6361726520737520756e207665726f207365727665722c20636f6c6c656761746920696e766563652061203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e6574223e687474703a2f2f7777772e647261676f6e676f7365727665722e6e65743c2f613e2e, 'Y', '2007-03-16 16:09:34'),
(1234, 18, 0x436f6c6c6567616d656e7469, 'Y', '2007-03-16 16:09:53'),
(1235, 18, 0x496e64696574726f, 'Y', '2007-03-16 16:11:57'),
(1237, 18, 0x52696365726361, 'Y', '2007-03-16 16:11:57'),
(1012, 18, 0x506f73736f20646976656e7461726520756e20747261647574746f726520646920447261676f6e3f, 'Y', '2007-03-16 16:14:03'),
(1013, 18, 0x436572746f2e204261737461206661726e65207269636869657374612070726573736f20696c203c4120485245463d222f70686f72756d2f6c6973742e7068703f663d3722205441524745543d5f626c616e6b3e666f72756d2064656c6c652074726164757a696f6e693c2f413e2e20476c6920616d6d696e6973747261746f72692070726f767665646572616e6e6f206120666f726e696572206c276175746f72697a7a617a696f6e65206e6563657373617269612e, 'Y', '2007-03-16 16:14:03'),
(1243, 18, 0x6461, 'Y', '2007-03-16 16:15:00'),
(1244, 18, 0x496e206174746573612064693c62723e617070726f76617a696f6e65, 'Y', '2007-03-16 16:15:00'),
(1245, 18, 0x4e6173636f73746f, 'Y', '2007-03-16 16:15:00'),
(1246, 18, 0x6d6f646966696361746f, 'Y', '2007-03-16 16:15:24'),
(1251, 18, 0x417070726f7661, 'Y', '2007-03-16 16:15:40'),
(1252, 18, 0x52696669757461746f, 'Y', '2007-03-16 16:18:08'),
(1253, 18, 0x526963686965737461, 'Y', '2007-03-16 16:18:08'),
(1254, 18, 0x4d6573736167676920696e2061747465736120646920617070726f76617a696f6e65, 'Y', '2010-03-25 00:59:20'),
(1255, 18, 0x4c697374612064697363757373696f6e69, 'Y', '2010-03-25 00:56:08'),
(1256, 18, 0x4d6f64657261746f, 'Y', '2007-03-16 16:18:21'),
(1257, 18, 0x436f6c6c6567616d656e746f, 'Y', '2007-03-16 16:18:21'),
(1258, 18, 0x4175746f7265, 'Y', '2007-03-16 16:18:36'),
(1259, 18, 0x4d65737361676769, 'Y', '2010-03-25 00:59:20'),
(1260, 18, 0x556c74696d6120726963686965737461, 'Y', '2007-03-16 16:18:36'),
(1261, 18, 0x5370696163656e74652c206e6f6e20736569206175746f72697a7a61746f206164206566666574747561726520696e7365727a696f6e692073756c20666f72756d, 'Y', '2007-03-16 16:19:06'),
(993, 18, 0x506f73736f206566666574747561726520756e61206d6f737361206d656e74726520696c206d696f206f726f6c6f67696f20e820696e2070617573613f, 'Y', '2007-03-16 16:20:42'),
(994, 18, 0xc8203c693e73656d7072653c2f693e20706f73736962696c65206566666574747561726520756e61206d6f737361202d2d20616e63686520647572616e746520696c20706572696f646f206469207269706f736f2c20647572616e7465206c6120766163616e7a61206f206e65692066696e652073657474696d616e612e, 'Y', '2007-03-16 16:20:42'),
(1267, 18, 0x526973756c746174692064656c6c612072696365726361, 'Y', '2007-03-16 16:27:19'),
(987, 18, 0x4d6920736f6e6f20617070656e61207265676973747261746f20737520447261676f6e2e204368652076616c6f726520646f7672656920696d706f737461726520636f6d652072616e6b20696e697a69616c653f, 'Y', '2007-03-19 19:22:30'),
(988, 18, 0x5175616e646f20726567697374726920756e206e756f766f206163636f756e742c204447532074692063686965646520736520746920e8206769e020737461746f206174747269627569746f20756e2072616e6b20616c74726f76652e20284d6167617269207375207175616c63686520616c74726f207365727665722070657220696c20476f2c20696c2074756f20476f20636c7562206c6f63616c65206f206c276173736f6369617a696f6e652070657220696c20476f2064656c2074756f207061657365292e20426173746120636865207475206c6f20696e736572697363612c2065204447532070726f767665646572e0206120636f6d6d757461726c6f20696e20756e2072616e6b20696e697a69616c6520617070726f70726961746f2e0d0a0d0a4e6f74613a20447572616e7465206c27696d706f7374617a696f6e6520646920756e206e756f766f206163636f756e742c207365206e6f6e20636f6e6f736369206c612074756120666f727a612064692067696f636f204e4f4e20696e736572697265206e69656e7465206e656c2063616d706f2064656c20726174696e67207072696d612064692061766572207365677569746f20616c63756e6920636f6e7369676c6920737520636f6d6520696e64697669647561726c6f2e2051756573746f2076616c6f726520696e6661747469206e6f6e207075f2206573736572652063616d626961746f20756e6120766f6c746120696e73657269746f3b20652061207175656c2070756e746f20646f76726169206173706574746172652063686520696c2076616c6f7265207369206d6574746120612070756e746f206e656c20636f72736f2064656c2067696f636f2e, 'N', '2007-03-19 19:22:30'),
(1001, 18, 0x496e20636865206d616e6965726120447261676f6e207469656e6520747261636369612064656c2074656d706f206368652073636f7272653f, 'Y', '2007-03-19 19:25:51'),
(1002, 18, 0x4c27756e6974e0206d696e696d61203c693e76697375616c697a7a6174613c2f693e20e82031206f72612e203c693e496e7465726e616d656e74653c2f693e206c276f726f6c6f67696f2064656c6c6120706172746f7461207669656e6520616767696f726e61746f206f676e692035206d696e7574692e, 'Y', '2007-03-19 19:25:51'),
(1270, 18, 0x5475747465206c65207061727469746520696e20617474657361, 'Y', '2007-03-19 19:27:16'),
(1271, 18, 0x5061727469746520696e2061747465736120616461747465, 'Y', '2010-04-02 17:06:59'),
(1273, 18, 0x50657220706f7465722065737365726520656c696d696e6174612c20e8206e65636573736172696f20636865206c612063617274656c6c61207369612076756f7461, 'Y', '2007-03-19 19:28:40'),
(1274, 18, 0x67696f726e6f, 'Y', '2010-04-02 14:57:58'),
(1275, 18, 0x67696f726e69, 'Y', '2010-04-02 14:57:58'),
(1276, 18, 0x6f7261, 'Y', '2010-04-02 14:57:58'),
(1277, 18, 0x6f7265, 'Y', '2010-04-02 14:57:58'),
(5729, 25, 0x646570696e64652064652064696d656e7369756e6561207461626c6569, 'Y', '2014-11-26 10:18:16'),
(1279, 18, 0x43696e657365202854726164697a696f6e616c652920287574662d3829, 'Y', '2007-03-19 19:29:18'),
(1280, 18, 0x547572636f, 'Y', '2007-03-19 19:31:21'),
(1055, 18, '', 'Y', '2012-08-22 20:48:45'),
(1010, 18, 0x5175616c69207061727469746520696e666c756973636f6e6f2073756c206d696f206c6976656c6c6f3f, 'Y', '2007-03-19 19:33:04'),
(1011, 18, 0x496c2073697374656d612064656c20726174696e6720646920447261676f6e20636f6e73696465726120736f6c74616e746f206c6520706172746974650d0a3c756c3e0d0a3c6c693e7065722069207175616c6920656e7472616d626920692067696f6361746f72692068616e6e6f20756e20677261646f2c0d0a3c6c693e63686520656e7472616d626920692067696f6361746f72692068616e6e6f20636f6e76656e75746f20657373657265207061727469746520756666696369616c692c0d0a3c6c693e696e2063756920696c204269616e636f206861206566666574747561746f20616c6d656e6f2035206d6f73732028636865207369676e69666963612c20696c207069617a7a616d656e746f2064656c6c65207069657472652064692068616e6469636170206e6f6e20736f6e6f20636f6e7465676769617465207065722064657465726d696e61726520736520756e61207061727469746120e82076616c7574617461206f206e6f29, 'Y', '2010-04-02 19:23:28'),
(979, 18, 0x54757474692069206275672076656e676f6e6f206469736375737369206e656c6c65204641513f, 'Y', '2007-03-19 19:38:08'),
(980, 18, 0x4e6f2e2045206e6f6e206c6f20736172616e6e6f206d61692e2049206275672c20676c69206572726f7269206520692070726f626c616d69206465736372697474692071756920736f6e6f2062656e206e6f74692070726f626c656d69207269636f7272656e74692c206162626f6e64616e74656d656e7465206469736375737369206e656920666f72756d2e2049206275672076657272616e6e6f206669737361746920283c693e64616e646f20636f73ec207370617a696f20616420616c747269206275673f3c2f693e29206d61206e656c206672617474656d706f20616c63756e6920646920657373692076657272616e6e6f206469736375737369207175692e, 'Y', '2007-03-19 19:38:08'),
(971, 18, 0x436f6d65207365676e616c61726520756e206275673f, 'N', '2007-03-19 19:41:11'),
(972, 18, 0x3c756c3e3c6c693e416e7a69747574746f2c2063657263617265206e656c6c65204641512065206e656920666f72756d206e6f74697a6965206469207175656c206275672e20506f747265626520657373657265207574696c652063657263617265206e656920666f72756d2070697574746f73746f20636865206e61766967617263692064656e74726f2e202d436920736f6e6f206d6f6c7469206d65737361676769206368652076616e6e6f2073706573736f20612066696e697265206e656c20666f72756d20736261676c6961746f2e0d0a3c6c693e4c617363696120756e206d657373616767696f20636865207370696567686920696e206465747461676c696f20696c2074756f2070726f626c656d61206e656c203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f70686f72756d2f6c6973742e7068703f663d32223e466f72756d20646920737570706f72746f3c2f613e2c206f70707572650d0a3c6c693e4d616e646120756e206d657373616767696f20636865207370696567686920696e206465747461676c696f20696c2074756f2070726f626c656d6120616420756e6f206465676c69203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f6661712e7068703f726561643d74266361743d313923456e7472793836223e7376696c75707061746f72693c2f613e2e3c2f756c3e, 'N', '2007-03-19 19:41:11'),
(989, 18, 0xc82067726176652063686520696e697a6920612067696f6361726520636f6e20756e206c6976656c6c6f20736261676c6961746f3f, 'Y', '2007-03-19 19:51:24'),
(990, 18, 0x4e6f6e20e8206d6f6c746f20696d706f7274616e74652e203c693e284d6120616c63756e692067696f6361746f72692064697265626265726f3a20e8206d6f6c746f20696d706f7274616e74653b20616c74726920636865206e6f6e206861206e657373756e6120696d706f7274616e7a61292e3c2f693e20447261676f6e20636f72726567676520696c206c6976656c6c6f207261706964616d656e7465202d20696e206261736520616920726973756c746174692064656c6c65207061727469746520756666696369616c692066696e6974652e20446f706f206369726361203520706172746974652066696e69746520696c206c6976656c6f2063616c636f6c61746f20646120444753207075f220636f6e73696465726172736920616262617374616e7a612061666669646162696c652e0d0a0d0a536520696e697a69203c693e696e74656e7a696f6e616c6d656e74653c2f693e20636f6e20756e206c6976656c6c6f20736261676c6961746f206e6f206f7474657272616920616c74726f206566666574746f2063686520646920696e666173746964697265206465676c69207574656e74692c20666163656e646f20736369766f6c61726520696c203c693e6c6f726f3c2f693e206c6976656c6c6f20696e20626173736f20696e206d616e6965726120696d6d657269746174612e205269636f7264612063686520706f74726562626520726963617069746172746920646967696f6361726520636f6e206c6f726f2c20696e2066757475726f2e2e2e0d0a0d0a447261676f6e2070726f766120612073746162696c69726520756e206c6976656c6c6f207574696c652c206d61206369f220646970656e646520616e6368652064616c6c612074756120636f6c6c61626f72617a696f6e653a207175696e64692c206e6f6e20696d706f737461726520696c2074756f206c6976656c6c6f20696e697a69616c6520616420756e2076616c6f72652074726f70706f206469766572736f206461207175656c6c6f207265616c652e204772617a696521, 'N', '2007-03-19 19:51:24'),
(1263, 18, 0x53746f7269612064656c6c65207265766973696f6e69, 'Y', '2007-03-19 19:51:56'),
(975, 18, 0x436f6d6520706f73736f206566666574747561726520696c206c6f67696e2064656c206d696f206163636f756e743f, 'Y', '2007-03-19 19:57:28'),
(976, 18, 0x496c206c6f67696e207472616d697465206c61203c6120687265663d222f22207461726765743d225f626c616e6b223e706167696e61207072696e636970616c6520646920447261676f6e3c2f613e207075f2206573736565206566666574747561746f20696e736572656e646f206c612074756120757365722049442065206c61207475612070617373776f72642e20496c2073657276657220444753206372656572e020756e20636f6f6b6965206368652076657272e0206d656d6f72697a7a61746f2073756c2074756f20636f6d70757465722e2051756573746f20636f6f6b696520736172e02061747469766f207065722033302067696f726e692e, 'Y', '2007-03-19 19:57:28'),
(1241, 18, 0x496e20666173652064692064697363757373696f6e65, 'Y', '2007-03-19 19:58:47'),
(1262, 18, 0x51756573746f206d657373616767696f20e82061747475616c6d656e746520696e20666173652064692064697363757373696f6e652e2056657272e0206d6f73747261746f20696e207365677569746f20616c6c27617070726f76617a696f6e6520646120706172746520646569206d6f64657261746f72692e, 'Y', '2007-03-19 19:58:47'),
(991, 18, 0x496c2074656d706f2064656c206d696f206176766572736172696f2073636f727265207175616e646f20696c206d696f20e820696e2070617573613f, 'Y', '2007-03-19 20:11:43'),
(992, 18, 0x536520e820696c2074756f207475726e6f206469206d756f766572653a206e6f2e0d0a0d0a4d6120736520e820696c207475726e6f2064656c2074756f206176766572736172696f3a2073ec2c207365206e6f6e20736920e8206e656c2073756f20706572696f646f206e6f747475726e6f2c0d0a6e6f6e20e820756e2066696e6520736574746d69616e612028696e20756e612070617274697461206e656c6c61207175616c6520696c2074656d706f206e6f6e2073636f727265206e656c2066696e652073657474696d616e61292065642065676c69206e6f6e20686120696e697a6961746f20756e6120766163616e7a612e, 'Y', '2007-03-19 20:11:43'),
(981, 18, 0x436f736120736f6e6f2069206d6573736167676920646920447261676f6e3f, 'N', '2007-03-19 20:18:36'),
(982, 18, 0x492067696f6361746f726920706f73736f6e6f20636f6d756e696361726520696e2064697665727369206d6f646920747261206469206c6f726f2c20706572206573656d70696f207472616d697465203c554c3e0d0a3c6c693e6d65737361676769207072697661746920696e646972697a7a61746920616420756e207061727469636f6c617265207574656e74652c3c2f6c693e0d0a3c6c693e6f206d6573736167676920707562626c69636920696e736572697469206e6569203c6120687265663d222f70686f72756d2f22207461726765743d225f626c616e6b223e666f72756d2064692064697363757373696f6e653c2f613e2c3c2f6c693e0d0a3c6c693e6f2061676769756e67656e646f2028646976657273207469706920646929203c4120485245463d222f6661712e7068703f726561643d74266361743d33363523456e7472793735223e636f6d6d656e74693c2f413e20616c6c652070617274697465206174746976652e3c2f6c693e3c2f554c3e0d0a0d0a4e6f74612062656e653a204e657373756e6f20646920717565737469206d65737361676769207669656e65206d61692072696d6f73736f2e2049206d6573736167676920707269766174692076656e676f6e6f2072696d6f73736920736f6c6f2064616c2074756f20656c656e636f20706572206573736572652073706f7374617469206e656c206461626173652e204920636f6d6d656e746920616420756e6120706172746974612072657374616e6f206cec207065722073656d7072652c20636f73ec20636f6d652069206d657373616767692064656920666f72756d2e2049206e6f726d616c6920636f6d6d656e746920616420756e612070617274697461206e6f6e2076656e676f6e6f206d616920696e736572697469206e656c2066696c65205347462c206d612072696d616e676f6e6f206163636573736962696c692073756c20736572766572206169206475652067696f6361746f72692e, 'N', '2007-03-19 20:18:36'),
(999, 18, 0x4861207175616c63686520696d706f7274616e7a612c2073652076696e636f2070657220302e352070756e74692c203130302070756e74692c2070657220616262616e646f6e6f206f207065722074696d652d6f75743f, 'Y', '2007-03-19 20:20:26'),
(1000, 18, 0x506572207175616e746f2061747469656e6520616c206c6976656c6c6f20737520447261676f6e2c206e6f6e206861206e657373756e6120696d706f7274616e7a612e20556e6120706172746974612076696e746120e82073656d70726520756e6120706172746974612076696e74652c206520756e61207061727469746120706572736120e82073656d70726520756e6120706172746974612070657273612e, 'Y', '2007-03-19 20:20:26'),
(983, 18, 0x436f736120736f6e6f206c652063617274656c6c65204d657373616767696f3f, 'Y', '2007-03-19 20:25:39'),
(984, 18, 0x4c652063617274656c6c65204d657373616767696f20636f6e73656e746f6e6f206469206f7267616e697a7a6172652069206d65737361676769207365636f6e646f206c652070726f707269652065736967656e7a652e20c820706f73736962696c652073706f737461726520612070696163696d656e746f206d6573736167676920646120756e612063617274656c6c6120616c6c27616c7472612e0d0a0d0a447261676f6e20666f726e69736365206c652073656775656e74692063617274656c6c6520707265646566696e6974653a203c756c3e0d0a3c6c693e3c623e52696365767574693c2f623e3a20656c656e636f20646569206d657373616767692072696365767574692e0d0a3c6c693e3c623e5072696e636970616c653c2f623e3a20656c656e636f20646569206d657373616767692072696365767574692065206769e0206c657474692e0d0a3c6c693e3c623e4e756f766f3c2f623e3a20656c656e636f20646569206d657373616767692072696365767574692065206e6f6e20616e636f7261206c657474692e0d0a3c6c693e3c623e526973706f6e6469213c2f623e3a20656c656e636f20646569206d6573736167676920696e2061747465736120646920756e6120726973706f7374612e0d0a3c6c693e3c623e43657374696e6f3c2f623e3a20656c656e636f20646569206d6573736167676920636f6e747261737365676e61746920706572206c27656c696d696e617a696f6e652e0d0a3c6c693e3c623e496e76696174693c2f623e3a20656c656e636f20646569206d6573736167676920696e76696174692e0d0a3c2f756c3e0d0a0d0ac820706f73736962696c652063726165726520756c746572696f72692063617274656c6c65207472616d69746520696c20636f6c6c6567616d656e746f20226d6f6469666963612063617274656c6c6522207369747561746f20616c6c612066696e652064656c6c6120706167696e61203c6120687265663d222f6c6973745f6d657373616765732e70687022207461726765743d225f626c616e6b223e456c656e636f206d657373616767693c2f613e2e205365207369207574696c697a7a616e6f207475747465206c652063617274656c6c65206769e0206d65737365206120646973706f73697a696f6e652064616c207365727665722c20717565737427756c74696d6f206e652061676769756e676572e020756e27616c74726120616c2070726f7373696d6f206163636573736f20616c6c6120706167696e61204d6f6469666963612063617274656c6c652e, 'Y', '2007-03-19 20:25:39'),
(1016, 18, 0x5175616c69207265676f6c652076656e676f6e6f207574696c697a7a61746520737520447261676f6e3f, 'Y', '2007-03-19 20:28:45'),
(1017, 18, 0x466f6e64616d656e74616c6d656e746520447261676f6e20e82062617361746f2073756c6c65206572676f6c652067696170706f6e6573692e202d416420656363657a696f6e652064656c6c65206572676f6c652070657220696c20706f73697a696f6e616d656e746f2064656c6c65207069657472652064692068616e64696361702c206c61206772616e64657a7a612064656c20676f62616e2065642069206c696d6974692064692074656d706f2e0d0a0d0a496e2062726576652c20447261676f6e3c756c3e3c6c693e63616c636f6c6120696c2070756e74656767696f20696e206261736520616c6c612076616c7574617a696f6e65206465692067696f6361746f72692c0d0a3c6c693e6e6f6e206861207265676f6c652064692073757065726b6f2c0d0a3c6c693e70726f69626973636520696c20737569636964696f2c2065203c6c693e7065726d6574746520646920706f73697a696f6e61726520612070696163696d656e746f206c65207069657472652064692068616e64696361702e3c2f756c3e, 'N', '2007-03-19 20:28:45'),
(7, 36, 0x4e656d2068c3ad766861746a61206d65672073616ac3a174206d6167c3a1742e, 'Y', '2007-03-27 20:29:50'),
(12, 36, 0x4e656d2073696b6572c3bc6c7420617a206164617462c3a17a6973686f7a206b617063736f6cc3b3646e692e204bc3a972656d2076c3a1726a6f6e206ec3a968c3a16e79207065726365742c20c3a973207072c3b362c3a16c6b6f7a7a6f6e20c3ba6a72612e, 'Y', '2007-03-27 20:29:50'),
(18, 36, 0x417a206164617462c3a17a69736dc5b176656c65742073696b657274656c656e20766f6c742e204bc3a972656d2076c3a1726a6f6e206ec3a968c3a16e79207065726365742c20c3a973207072c3b362c3a16c6b6f7a7a6f6e20c3ba6a72612e, 'Y', '2007-03-27 20:29:50'),
(19, 36, 0x4e656d2073696b6572c3bc6c74206b6976c3a16c61737a74616e6920617a206164617462c3a17a6973742e204bc3a972656d2076c3a1726a6f6e206ec3a968c3a16e79207065726365742c20c3a973207072c3b362c3a16c6b6f7a7a6f6e20c3ba6a72612e, 'Y', '2007-03-27 20:29:50'),
(20, 36, 0x4e656d2073696b6572c3bc6c7420656c6b657a64656e692061206ac3a174c3a96b6f742e204bc3a972656d2076c3a1726a6f6e206ec3a968c3a16e79207065726365742c20c3a973207072c3b362c3a16c6b6f7a7a6f6e20c3ba6a72612e, 'Y', '2007-03-27 20:29:50'),
(22, 36, 0x4bc3b674656c657ac591206e65766574206d656761646e692e, 'Y', '2007-03-27 20:29:50'),
(32, 36, 0x4d6f7374206e656d20c3b66e206cc3a9702e, 'Y', '2007-03-27 20:29:50'),
(41, 36, 0x53616a6ec3a16c6f6d2c206465206e656d2074616cc3a16c6f6d20617a742061206ac3a174c3a96b6f742e, 'Y', '2007-03-27 20:29:50'),
(51, 36, 0x4e656d20637361746c616b6f7a68617420612073616ac3a174206ac3a174c3a96bc3a1686f7a2e, 'Y', '2007-03-27 20:29:50'),
(1281, 33, '', 'Y', '2007-04-04 09:04:48'),
(1281, 34, '', 'Y', '2007-03-31 07:34:11'),
(1, 36, 0x4e656d20706173737a6f6c686174737a2c206d69656cc591747420656c68656c79657a6ec3a920617a20c3b673737a657320656cc5916e796bc3b676c3a9742e, 'Y', '2007-04-08 16:22:18'),
(2, 36, 0x41206ac3a174c3a96b206dc3a1722076c3a967657420c3a972742e, 'Y', '2007-04-08 16:22:18'),
(3, 36, 0x41206ac3a174c3a96b206dc3a967206e656d206b657a64c59164c3b6747420656c2e, 'Y', '2007-04-08 16:22:18'),
(8, 36, 0x53616a6ec3a16c6f6d2c206465206e696e6373206d65672061206ac3a174c3a96b2c206d656c797265206d656768c3ad7674c3a16b2e204e656d2075746173c3ad746f747461206dc3a17220766973737a61206b6f72c3a16262616e2061206d656768c3ad76c3a173743f, 'Y', '2007-04-08 16:22:18'),
(9, 36, 0x4e656d20c3bc7468657420766973737a6120617a6f6e6e616c2c20686f677920617a20656cc5917ac5912068656c797a657420c3a16c6c6a6f6e20656cc59120612074c3a1626cc3a16e2e204ec3a97a7a65206d6567206120226b6f22206b756c6373737ac3b36ec3a16c206120737a6162c3a16c796f6b206bc3b67ac3b674742e, 'Y', '2007-04-08 16:22:18'),
(13, 36, 0x4e656d2073696b6572c3bc6c742074c3b672c3b66c6e692061206ac3a174c3a96b6f742e2056616cc3b3737ac3ad6ec5b16c656720657a206e656d206f6b6f7a20676f6e646f742e, 'Y', '2007-04-08 16:22:18'),
(14, 36, 0x53616a6ec3a16c6f6d2c20646520617a20c3bc7a656e6574206164617462c3a17a697362616e2076616cc3b32074c3a1726f6cc3a173612073696b657274656c656e6e656b2074c5b16e696b2e, 'Y', '2007-04-08 16:22:18'),
(15, 36, 0x53616a6ec3a16c6f6d2c2064652061206ac3a174c3a96b206164617462c3a17a697362616e2076616cc3b32074c3a1726f6cc3a173612073696b657274656c656e6e656b2074c5b16e696b2e, 'Y', '2007-04-08 16:22:18'),
(27, 36, 0xc3966e6e656b20c3a973206ac3a174c3a96b6f7374c3a17273c3a16e616b206265206b656c6c656e6520c3a16c6cc3ad74616e69756b2061206b657a646574692072616e67736f726f6cc3a173756b61742c20686f6779206b69207475646a616d20737ac3a16dc3ad74616e692061206d656766656c656cc59120656cc5916e796bc3b676656b20737ac3a16dc3a1742e, 'Y', '2007-04-08 16:22:18'),
(29, 36, 0x53616a6e6f7320657a206e656d206d6567656e6765646574742076656e64c3a967656b20737ac3a16dc3a172612c206bc3a972656d2072656769737a7472c3a16c6a6f6e2e, 'Y', '2007-04-08 16:22:18'),
(1084, 10, 0xd0c7cebb, 'Y', '2007-06-02 09:00:12'),
(442, 10, 0xcfc2, 'Y', '2007-04-19 13:03:28'),
(1092, 10, 0xc6c0b5c8, 'Y', '2007-04-19 13:11:55'),
(1120, 10, 0xb4ce, 'Y', '2007-04-19 13:11:55'),
(1274, 10, 0xc8d5, 'Y', '2007-04-19 13:19:27'),
(1275, 10, 0xc8d5, 'Y', '2007-04-19 13:19:27'),
(1276, 10, 0xd0a1cab1, 'Y', '2007-04-19 13:19:27'),
(1277, 10, 0xd0a1cab1, 'Y', '2007-04-19 13:19:27'),
(1266, 10, 0xd5e2cac7d2bbb8f6c0e0cbc6cda8d0c5cfc2c6e5a3acd3d0c3c0b9dbc6e5c5ccb5c4cdf8c2e7bdd3bfdaa1a3c4fad2aacfc8c9eac7ebd2bbb8f6203c6120687265663d2272656769737465722e706870223ed5cabac53c2f613ea1a3c8bbbaf3c4fabfc9d2d4b1e0bcad203c6120687265663d22656469745f70726f66696c652e706870223eb8f6c8cbd7cac1cf3c2f613e20d3eb203c6120687265663d22656469745f62696f2e706870223eb1e0bcadd0a1b4ab3c2f613ea3accceed0b422bfaab7c5b6d4bed622a3ac22444753b5c8bcb622d3eb22b2cebfbcb5c8bcb622b5c4d7cac1cfbdabd3d0d6fad3dac4fad5d2b5bdb6d4cad6a1a3c4fabfc9b2cebfbc203c6120687265663d2275736572732e706870223ec6e5cad63c2f613e20b2a2cab9d3c3203c6120687265663d22666f72756d2f696e6465782e706870223ec2dbccb33c2f613e20c0b4d1b0d5d2cacabacfb5c4b6d4cad6a3acc8bbbaf3203c6120687265663d226d6573736167652e7068703f6d6f64653d496e76697465223ed1fbc7eb3c2f613e20cbfbc3c7b6d4bed6a1a3c4fad2b2bfc9d2d4d6b1bdd3b5bdb4fdbed6cad2bcd3c8ebcacab5b1b5c4b6d4bed6a1a3, 'Y', '2007-10-01 07:15:13'),
(1270, 10, 0xcbf9d3d0c6e5bed6, 'Y', '2007-04-19 13:24:20'),
(1271, 10, 0xcacabacfc6e5bed6, 'Y', '2007-04-19 13:24:20'),
(1024, 10, 0xb2c2d7d3b7d6cfc8, 'Y', '2007-04-19 13:32:11'),
(1281, 5, 0x486f6e67726f6973, 'Y', '2007-04-24 22:26:54'),
(1156, 5, 0x436f6d6d656e7420666f6e6374696f6e6e65206c276f7074696f6e20ab266e6273703b4574726520696e666f726de92070617220452d6d61696c266e6273703bbb266e6273703b3f, 'Y', '2007-04-24 23:19:24'),
(1157, 5, 0x4c612070726f63e964757265206465206e6f74696669636174696f6e20636f6d6d656e6365206176656320756e2064657320e976e86e656d656e74732071756520766f7573206176657a2063686f6973697320706172206c276f7074696f6e20ab266e6273703b4574726520696e666f726de92070617220452d6d61696c266e6273703bbb20646520766f7472652070726f66696c2028756e20636f7570206a6f75e92070617220756e20646520766f73206164766572736169726573206f7520756e206d657373616765207265e775292e0d0a0d0a4120706575207072e97320756e6520686575726520617072e8732063657420e976e86e656d656e742c20657420736920766f7573206e276176657a20706173207669736974e9206c65207369746520656e7472652074656d70732c20756e20452d6d61696c207365726120656e766f79e920e0206c2761647265737365206669677572616e742064616e73206c276f7074696f6e20452d6d61696c20646520766f7472652070726f66696c2e20556e207365756c20452d6d61696c2065737420656e766f79e92c20766f757320696e666f726d616e7420717565207175656c7175652063686f736520766f757320617474656e642e20417072e873206365207072656d69657220452d6d61696c2c206c65732061757472657320e976e86e656d656e7473206e652070726f766f717565726f6e7420706c757320642761757472657320452d6d61696c2e0d0a0d0a4e2e422e3a20756e2070726f6772616d6d652028726f626f742920717569206c6974206465732070616765732064752073697465207065757420766f757320656d70e8636865722064652072656365766f69722063657320452d6d61696c206361722044475320696e7465727072e87465726120636573206c6563747572657320636f6d6d6520646573207669736974657320646520766f74726520706172742e20546f757420636520717569206d657420e0206a6f757220766f74726520686575726520646520ab266e6273703b4465726e69657220616363e873266e6273703bbb20616e6e756c657261206c612070726f63e964757265206465206e6f74696669636174696f6e2e20436f6e736964e972657a2c20706f75722073696d706c69666965722c207175652063656c612073652070726f6475697261206176656320746f75746573206c6573207061676573206ff920766f757320766f79657a20ab266e6273703b436f6e6e656374e920656e2074616e74207175653a266e6273703b766f7472655f70736575646f266e6273703bbb2e, 'N', '2007-04-24 23:31:32'),
(1158, 5, 0x506f757271756f6920646f69742d6f6e206175746f7269736572206c657320636f6f6b696573266e6273703b3f, 'Y', '2007-04-24 23:19:24'),
(1159, 5, 0x506f7572207361766f697220717569206c6974206c657320706167657320647520736974652c2044475320e0206265736f696e20646520766f7573206964656e7469666965722e20496c207574696c69736520706f75722063656c61206c657320636f6f6b6965732073746f636be9732070617220766f747265206e6176696761746575722e0d0a566f6972206175737369206c65732070726f63e9647572657320646520636f6e6e6578696f6e2065742064652064e9636f6e6e6578696f6e2064616e7320636574746520462e412e512e, 'Y', '2007-04-24 23:19:24'),
(1156, 33, 0xe794b5e982aee9809ae79fa5e698afe4bb80e4b9883f, 'Y', '2007-04-29 21:03:27'),
(1158, 33, 0xe4b8bae4bb80e4b988e99c80e8a68120636f6f6b696573203f, 'Y', '2007-04-29 21:02:57'),
(1159, 33, 0xe8aea4e8af8120636f6f6b69657320e698afe794a8e69da5e8bea8e8af86e682a8e79a84e8baabe4bbbde3808244475320e4bdbfe794a8e682a8e6b58fe8a788e599a8e4bca0e69da5e79a8420636f6f6b69657320e69da5e8bea8e8af86e698afe8b081e5bc80e590afe4ba86e7bd91e9a1b5e38082, 'Y', '2007-04-29 21:02:57'),
(1157, 34, 0xe795b6e682a8e59ca8e5808be4babae8a8ade5ae9ae981b8e5ae9ae79a84e4ba8be4bbb6efbc88e5a682e694b6e588b0e4bfa1e4bbb6efbc8ce5b08de6898be890bde5ad90efbc89e799bce7949fe69982efbc8ce58fafe4bba5e582b3e98081e99bbbe983b5e9809ae79fa5e380820d0a0d0ae5a682e69e9ce682a8e59ca8e4ba8be4bbb6e799bce7949fe5be8ce4b880e5b08fe69982e585a7e983bde6b292e69c89e4be86e588b0e98099e8a3a1efbc8ce7b3bbe7b5b1e5b0b1e69c83e582b3e98081e99bbbe983b5e588b0e682a8e59ca8e5808be4babae8b387e69699e68980e79599e4b88be79a84e99bbbe983b5e59cb0e59d80e380820d0a0d0ae7b3bbe7b5b1e58faae69c83e582b3e98081e4b880e5b081e99bbbe983b5e9809ae79fa5e682a8e69c89e4bfa1e4bbb6e68896e7ad89e5be85e682a8e890bde5ad90e38082e582b3e98081e983b5e4bbb6e4b98be5be8cefbc8ce88ba5e58fa6e69c89e694b6e4bfa1e68896e7ad89e5be85e890bde5ad90e799bce7949fefbc8ce4bd86e698afe682a8e5b09ae69caae799bbe585a5e98099e8a3a1e7b6b2e7ab99efbc8ce7b3bbe7b5b1e4b88de69c83e5868de582b3e98081e58fa6e4b880e5b081e99bbbe983b5e380820d0a0d0ae8a8bbefbc9ae5a682e69e9ce682a8e4bdbfe794a8e7a88be5bc8fefbc88e4be8be5a682e890bde5ad90e9809ae79fa5e8bb9fe9ab94efbc89e4be86e6aaa2e69fa52044475320e7b6b2e9a081efbc8ce682a8e58fafe883bde4b88de69c83e694b6e588b0e99bbbe983b5e9809ae79fa5efbc8ce59ba0e782ba2044475320e69c83e68a8ae7a88be5bc8fe79a84e68e83e79e84e8a696e782bae799bbe585a5e7b6b2e7ab99e380820d0a0d0ae69c83e5bdb1e99fbfe682a8e799bbe585a5e78b80e6b381e79a84e7b6b2e9a081e698afe982a3e4ba9be69c83e8aabfe695b4e682a82022e4b88ae6aca1e799bbe585a5e69982e996932220e79a84e7b6b2e9a081efbc88e59fbae69cace4b88aefbc8ce5a4a7e5a49ae695b8e69c892022e799bbe585a5e782ba3a203c7374726f6e673ee5b8b3e8999f3c2f7374726f6e673e2220e5ad97e6a8a3e79a84e7b6b2e9a081e5b0b1e69c83e5bdb1e99fbfe8a9b2203c7374726f6e673ee5b8b3e8999f3c2f7374726f6e673eefbc89e380820d0ae795b6e784b6efbc8ce98099e7a8aee68385e6b381e4b99fe981a9e794a8e696bce4babae9a19ee79a84e6938de4bd9ce38082, 'N', '2007-06-07 07:10:28'),
(1156, 34, 0xe99bbbe983b5e9809ae79fa5e698afe4bb80e9babcefbc9f, 'Y', '2007-04-29 20:59:31'),
(1158, 34, 0xe782bae4bd95e99c80e8a68120636f6f6b696573efbc9f, 'Y', '2007-04-29 20:59:31'),
(1159, 34, 0xe8aa8de8ad8920636f6f6b69657320e698afe794a8e4be86e8bea8e8ad98e682a8e79a84e8baabe4bbbde3808244475320e4bdbfe794a8e682a8e7808fe8a6bde599a8e582b3e4be86e79a8420636f6f6b69657320e4be86e8bea8e8ad98e698afe8aab0e9968be5959fe4ba86e7b6b2e9a081e38082, 'Y', '2007-04-29 20:59:31'),
(1157, 33, 0xe5bd93e682a8e59ca8e4b8aae4babae8aebee5ae9ae98089e5ae9ae79a84e4ba8be4bbb6efbc88e5a682e694b6e588b0e4bfa1e4bbb6efbc8ce5afb9e6898be890bde5ad90efbc89e58f91e7949fe697b6efbc8ce58fafe4bba5e4bca0e98081e794b5e982aee9809ae79fa5e380820d0a0d0ae5a682e69e9ce682a8e59ca8e4ba8be4bbb6e58f91e7949fe5908ee4b880e5b08fe697b6e58685e983bde6b2a1e69c89e69da5e588b0e8bf99e9878cefbc8ce7b3bbe7bb9fe5b0b1e4bc9ae4bca0e98081e794b5e982aee588b0e682a8e59ca8e4b8aae4babae8b584e69699e68980e79599e4b88be79a84e794b5e982aee59cb0e59d80e380820d0a0d0ae7b3bbe7bb9fe58faae4bc9ae4bca0e98081e4b880e5b081e794b5e982aee9809ae79fa5e682a8e69c89e4bfa1e4bbb6e68896e7ad89e5be85e682a8e890bde5ad90e38082e4bca0e98081e982aee4bbb6e4b98be5908eefbc8ce88ba5e58fa6e69c89e694b6e4bfa1e68896e7ad89e5be85e890bde5ad90e58f91e7949fefbc8ce4bd86e698afe682a8e5b09ae69caae799bbe585a5e8bf99e9878ce7bd91e7ab99efbc8ce7b3bbe7bb9fe4b88de4bc9ae5868de4bca0e98081e58fa6e4b880e5b081e794b5e982aee380820d0a0d0ae6b3a8efbc9ae5a682e69e9ce682a8e4bdbfe794a8e7a88be5ba8fefbc88e4be8be5a682e890bde5ad90e9809ae79fa5e8bdafe4bbb6efbc89e69da5e6a380e69fa52044475320e7bd91e9a1b5efbc8ce682a8e58fafe883bde4b88de4bc9ae694b6e588b0e794b5e982aee9809ae79fa5efbc8ce59ba0e4b8ba2044475320e4bc9ae68a8ae7a88be5ba8fe79a84e689abe79e84e8a786e4b8bae799bbe585a5e7bd91e7ab99e380820d0a0d0ae4bc9ae5bdb1e5938de682a8e799bbe585a5e78ab6e586b5e79a84e7bd91e9a1b5e698afe982a3e4ba9be4bc9ae8b083e695b4e682a82022e4b88ae6aca1e799bbe585a5e697b6e997b42220e79a84e7bd91e9a1b5efbc88e59fbae69cace4b88aefbc8ce5a4a7e5a49ae695b0e69c892022e799bbe585a5e4b8ba3a203c7374726f6e673ee5b890e58fb73c2f7374726f6e673e2220e5ad97e6a0b7e79a84e7bd91e9a1b5e5b0b1e4bc9ae5bdb1e5938de8afa5203c7374726f6e673ee5b890e58fb73c2f7374726f6e673eefbc89e380820d0ae5bd93e784b6efbc8ce8bf99e7a78de68385e586b5e4b99fe98082e794a8e4ba8ee4babae7b1bbe79a84e6938de4bd9ce38082, 'N', '2007-06-07 07:11:02'),
(985, 18, 0x436f6d6520706f73736f2061676769756e67657265206f2072696d756f766572652064656c6c6520636f6c6f6e6e653f, 'Y', '2007-05-01 07:18:30'),
(1281, 18, 0x556e67686572657365, 'Y', '2007-05-01 07:18:41'),
(1006, 18, 0x496c20636f6469636520646920447261676f6e20652720707562626c69636f3f, 'Y', '2007-05-01 07:19:25'),
(1157, 8, 0xb7edb17aa662add3a448b35da977bfefa977aabaa8c6a5f3a15da670a6aca8ecab48a5f3a141b9efa4e2b8a8a46ca15eb56fa5cdaec9a141a569a548b6c7b065b971b66cb371aabea1430d0a0d0aa670aa47b17aa662a8c6a5f3b56fa5cdabe1a440a470aec9a4bab3a3a853a6b3a8d3a8ecb36fb8cca141a874b2ceb44eb77cb6c7b065b971b66ca8ecb17aa662add3a448b8eaaec6a9d2af64a455aabab971b66ca661a77da1430d0a0d0aa874b2cea575b77cb6c7b065a440abcab971b66cb371aabeb17aa6b3ab48a5f3a9ceb5a5abddb17ab8a8a46ca143b6c7b065b66ca5f3a4a7abe1a141ad59a574a6b3a6acab48a9ceb5a5abddb8a8a46cb56fa5cda141a6fdac4fb17aa97ca5bcb56ea44ab36fb8ccbaf4afb8a141a874b2cea4a3b77ca641b6c7b065a574a440abcab971b66ca1430d0a0d0ab5f9a147a670aa47b17aa8cfa5ceb57ba6a1a15da8d2a670b8a8a46cb371aabeb36ec5e9a15ea8d3c0cbac642044475320baf4adb6a141b17aa569afe0a4a3b77ca6aca8ecb971b66cb371aabea141a65dacb02044475320b77ca7e2b57ba6a1aabab1bdbacbb5f8acb0b56ea44abaf4afb8a1430d0a0d0ab77cbc76c554b17ab56ea44aaaacaa70aababaf4adb6ac4fa8baa8c7b77cbdd5bee3b17a2022a457a6b8b56ea44aaec9b6a12220aababaf4adb6a15db0f2a5bba457a141a46aa668bcc6a6b32022b56ea44aacb03a203c7374726f6e673eb162b8b93c2f7374726f6e673e2220a672bccbaababaf4adb6b44eb77cbc76c554b8d3203c7374726f6e673eb162b8b93c2f7374726f6e673ea15ea1430d0ab7edb54da141b36fbad8b1a1aa70a45dbe41a5cea9f3a448c3feaababedea740a143, 'N', '2007-06-07 07:12:05'),
(1158, 8, 0xacb0a6f3bbddad6e20636f6f6b696573a148, 'Y', '2007-05-04 21:35:53'),
(1159, 8, 0xbb7bc3d220636f6f6b69657320ac4fa5cea8d3bfebc3d1b17aaabaa8ada5f7a14344475320a8cfa5ceb17ac273c4fdbeb9b6c7a8d3aaba20636f6f6b69657320a8d3bfebc3d1ac4fbdd6b67db1d2a446baf4adb6a143, 'Y', '2007-05-04 21:35:53'),
(955, 8, 0xb0b2b4c1, 'Y', '2007-05-11 20:58:06'),
(1067, 8, 0xa5c0bb79, 'Y', '2007-05-11 20:58:06'),
(1068, 8, 0xb371bee5bb79a4e5, 'Y', '2007-05-11 20:58:06'),
(1218, 8, 0xad49b4ba, 'Y', '2007-05-11 21:00:44'),
(1219, 8, 0xacf5, 'Y', '2007-05-11 21:00:44'),
(1220, 8, 0xbaf1, 'Y', '2007-05-11 21:00:44'),
(1221, 8, 0xc2c5, 'Y', '2007-05-11 21:00:44'),
(1222, 8, 0xc2d0bb5cabd7, 'Y', '2007-05-11 21:00:44'),
(1224, 8, 0xab65b4ba, 'Y', '2007-05-11 21:00:44'),
(450, 21, 0x257320706f72206d65746f206b616a20257320656b737472616a20706572696f646f6a, 'Y', '2007-05-14 20:31:10'),
(452, 21, 0x257320706f722025732026233334393b746f6e6f6a, 'Y', '2007-05-14 20:31:10'),
(1060, 21, 0x4b6126233334393b69, 'Y', '2007-05-14 20:31:10'),
(1091, 21, 0x54656d706f2072657374616e7461, 'Y', '2007-05-14 20:31:10'),
(1125, 21, 0x4f7264696769, 'Y', '2007-05-14 20:31:10'),
(1582, 36, 0x4a69676f206ac3a174737a6dc3a16b20737ac3a16d61, 'Y', '2015-09-19 19:18:23'),
(1274, 21, 0x7461676f, 'Y', '2007-05-14 20:31:10'),
(1275, 21, 0x7461676f6a, 'Y', '2007-05-14 20:31:10'),
(1276, 21, 0x686f726f, 'Y', '2007-05-14 20:31:10'),
(1277, 21, 0x686f726f6a, 'Y', '2007-05-14 20:31:10'),
(1055, 21, 0x5374617475736120525353, 'Y', '2007-05-14 20:33:18'),
(181, 21, 0x526574706ffe7461647265736f, 'Y', '2007-05-24 22:41:25'),
(190, 21, 0x4e6f766120706173766f72746f, 'Y', '2007-05-14 20:44:39'),
(242, 21, 0x426f6e766f6c75206b726569206b6f6e746f6e206b616a206c75646920676f6f6e2e, 'Y', '2007-05-14 20:44:39'),
(244, 21, 0x506f7220747261726967617264692c20757a752025732e, 'Y', '2007-05-14 20:44:39'),
(457, 21, 0x497269207265656e, 'Y', '2007-05-14 20:44:39'),
(478, 21, 0x506c6920646120696e666f726d6f2074726f7665626c617320656e206c61203c6120687265663d226661712e706870223e526573706f6e6461726120666f72756d6f6f3c2f613e206b696520766920706f766f7320616c646f6e69207669616a6e2070726f7072616a6e2064656d616e646f6a6e2e, 'Y', '2007-05-24 22:41:25'),
(1082, 21, 0x53656e646920706173766f72746f6e, 'Y', '2007-05-14 20:44:39'),
(1096, 21, 0x426f6e76656e6f6e20616c206c61207465737476657273696f206465206c6120676f736572766f20447261676f6e21, 'N', '2007-05-14 20:44:39'),
(1097, 21, 0x536520766920766f6c6173206c75646920706572206c61207265616c6120736572766f2c20626f6e766f6c752076697a697469203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e6574223e687474703a2f2f7777772e647261676f6e676f7365727665722e6e65743c2f613e2e, 'Y', '2007-05-14 20:44:39'),
(1099, 21, 0x54726172696761726475206c6120726573706f6e6461726f20706f7220706c6920646120696e666f726d6f2e, 'Y', '2007-05-24 22:41:25'),
(1212, 21, 0x426f6e76656e6f6e20616c206c6120257321, 'Y', '2007-05-14 20:44:39'),
(1227, 21, 0x4e6f766120706173766f72746f2065737469732073656e6469746121, 'Y', '2007-05-14 20:44:39'),
(234, 21, 0x52656b6f6d656e6369206c756469, 'Y', '2007-05-14 21:07:23'),
(236, 21, 0x456cfe75746920736766, 'Y', '2007-05-14 21:07:23'),
(237, 21, 0x49726920616c206c612073656b7661206c75646f, 'Y', '2007-05-24 22:50:30'),
(238, 21, 0x466f7269676920656c206f62736572766c6973746f, 'Y', '2007-05-14 21:07:23'),
(239, 21, 0x416c646f6e6920616c206f62736572766c6973746f, 'Y', '2007-05-14 21:07:23'),
(254, 21, 0x416c69f8697320616c206c75646f21, 'Y', '2007-05-14 21:07:23'),
(342, 21, 0x47726164686973746f72696f20706f72, 'Y', '2007-05-14 21:07:23'),
(343, 21, 0x54726f206d616c6d756c74616a2074616b736974616a206c75646f6a20706f72206b72656920686973746f72696f6e, 'Y', '2007-05-14 21:07:23'),
(348, 21, 0x46696e6974616a206c75646f6a, 'Y', '2007-05-14 21:07:23'),
(350, 21, 0x46696e6974616a206c75646f6a20706f72202573, 'Y', '2007-05-14 21:07:23'),
(351, 21, 0x416b7475616c616a206c75646f6a20706f72202573, 'Y', '2007-05-14 21:07:23'),
(396, 21, 0x53656e6469206d657361f86f6e20616c20757a616e746f, 'Y', '2007-05-14 21:07:23'),
(397, 21, 0x416b7475616c616a, 'Y', '2007-05-14 21:07:23'),
(398, 21, 0x46696e6974616a, 'Y', '2007-05-14 21:07:23'),
(406, 21, 0x4b6f6e76656e636961, 'Y', '2007-05-14 21:07:23'),
(407, 21, 0x5461fd6761, 'Y', '2007-05-14 21:07:23'),
(408, 21, 0x53656e68616e64696b617061206c75646f206b756e206e6967697269, 'Y', '2007-05-14 21:07:23'),
(409, 21, 0x44756f626c61206c75646f, 'Y', '2007-05-14 21:07:23'),
(412, 21, 0x4b6f6d656e746f, 'Y', '2007-05-14 21:07:23'),
(414, 21, 0x54656d706f6c696d6f, 'Y', '2007-05-14 21:07:23'),
(416, 21, 0x53656d616a6e66696e6120486f726c6ff86f, 'Y', '2007-05-14 21:07:23'),
(417, 21, 0x566572fe616a6e65206d616c706c656e6173206e756e2e, 'Y', '2007-05-24 22:50:30'),
(420, 21, 0x4b76616e746f206465206c75646f6a20706f7220616c646f6e69, 'Y', '2007-05-14 21:07:23'),
(423, 21, 0x506f7374756c692074616b736974616e206b6f6e747261fd756c6f6e, 'Y', '2007-05-14 21:07:23'),
(424, 21, 0x5365206a65732c20677261646f20696e746572, 'Y', '2007-05-14 21:07:23'),
(428, 21, 0x54656d706f2070617361732064756d2073656d616a6e66696e6f6a, 'Y', '2007-05-14 21:07:23'),
(432, 21, 0x4b6f6e76656e6369612068616e64696b61706f20286b6f6d6920302e35207365206e65206567616c6129, 'Y', '2007-05-14 21:07:23'),
(433, 21, 0x5461fd67612068616e64696b61706f, 'Y', '2007-05-14 21:07:23'),
(437, 21, 0xc66566612074656d706f, 'Y', '2007-05-14 21:07:23'),
(446, 21, 0x4b6f6c6f726f6a, 'Y', '2007-05-14 21:07:23'),
(447, 21, '', 'Y', '2011-03-29 20:29:29'),
(454, 21, 0x426f6e766f6c75206d657469207669616a6e2068616e64696b6170fe746f6e6f6a6e21, 'Y', '2007-05-14 21:07:23'),
(455, 21, 0x5375626d657469206b616a2069726920616c2073656b7661206c75646f, 'Y', '2007-05-14 21:07:23'),
(456, 21, 0x5375626d657469206b616a2069726920616c207374617475736f, 'Y', '2007-05-14 21:07:23'),
(458, 21, 0x4b6170746974616a20fe746f6e6f6a, 'Y', '2007-05-14 21:07:23'),
(1853, 7, 0x536eed6d656b, 'Y', '2016-07-20 16:20:15'),
(618, 21, 0x4b6f6d656e636120677261646f, 'Y', '2007-05-14 21:07:23'),
(619, 21, 0x46696e6120677261646f, 'Y', '2007-05-14 21:07:23'),
(620, 21, 0x4772616461206469666572656e636f, 'Y', '2007-05-14 21:07:23'),
(1024, 21, 0x4567616c61206c75646f, 'Y', '2007-05-14 21:07:23'),
(1076, 21, 0x507269766174616a207072696c7564616a206e6f746f6a, 'Y', '2007-05-14 21:07:23'),
(1083, 21, 0x4e6f726d6120706f7a6963696f2064652068616e64696b6170616a20fe746f6e6f6a206573746973207065746974612e, 'Y', '2007-05-14 21:07:23'),
(1084, 21, 0x4e6f726d6120706f7a6963696f, 'Y', '2007-05-14 21:07:23'),
(1085, 21, 0x426f6e766f6c75206d61726b69206d6f7274616a6e20fe746f6e6f6a6e206b616a207469616d206b6c616b69202246696e697461222e, 'Y', '2007-05-24 22:50:30'),
(1086, 21, 0x4b6170746974616a, 'Y', '2007-05-14 21:07:23'),
(1087, 21, 0x4b6f6d656e746f6a, 'Y', '2007-05-14 21:07:23'),
(1088, 21, 0x456cfe75746920736766206b756e20e669756a206b6f6d656e746f6a, 'Y', '2007-05-14 21:07:23'),
(1089, 21, 0x506f656e746b616c6b756c61646f, 'Y', '2007-05-24 22:50:30'),
(1090, 21, 0x56696469206d65746f6e, 'Y', '2007-05-14 21:07:23'),
(1092, 21, 0x54616b73697461206c75646f, 'Y', '2007-05-14 21:07:23'),
(1093, 21, 0x4d6f6e747269206e6f746f6a6e, 'Y', '2007-05-14 21:07:23'),
(1094, 21, 0x53617669206e6f746f6a6e, 'Y', '2007-05-14 21:07:23'),
(1095, 21, 0x4b61fe69206e6f746f6a6e, 'Y', '2007-05-14 21:07:23'),
(1111, 21, 0x477261646120686973746f72696f, 'Y', '2007-05-14 21:07:23'),
(3418, 11, 0x546f6f6e206765627275696b6572, 'Y', '2013-01-11 16:16:00'),
(1211, 21, 0x4d65746f, 'Y', '2007-05-14 21:07:23'),
(1270, 21, 0xc669756a206174656e64616e74616a206c75646f6a, 'Y', '2007-05-14 21:07:23'),
(1271, 21, 0x5461fd67616a206174656e64616e74616a206c75646f6a, 'Y', '2007-05-14 21:07:23'),
(122, 21, 0x526573706f6e646f, 'Y', '2007-05-14 21:16:44'),
(322, 21, 0x54697520257367616d65257320696e7669746f206a616d20657374697320616b636570746974612e, 'Y', '2007-05-14 21:16:44'),
(323, 21, 0x54697520696e7669746f206573746973206d616c616b636570746974612c2061fd206c61206c75646f20657374697320666f7269676974612e, 'Y', '2007-05-14 21:16:44'),
(326, 21, 0x53656e646920726573706f6e646f6e, 'Y', '2007-05-14 21:16:44'),
(327, 21, 0x4e6f7661206d657361f86f, 'Y', '2007-05-14 21:16:44'),
(328, 21, 0x416c2028757a616e746e6f6d6f29, 'Y', '2007-05-24 22:53:57'),
(329, 21, 0x53656e6469206d657361f86f6e, 'Y', '2007-05-14 21:16:44'),
(332, 21, 0x446973707574692070726920656c656b746f6a6e, 'Y', '2007-05-24 22:53:57'),
(333, 21, 0x416b6365707469, 'Y', '2007-05-14 21:16:44'),
(334, 21, 0x4d616c616b6365707469, 'Y', '2007-05-14 21:16:44'),
(335, 21, 0x496e76697461206d657361f86f, 'Y', '2007-05-14 21:16:44'),
(336, 21, 0x53656e646920696e7669746f6e, 'Y', '2007-05-14 21:16:44'),
(346, 21, 0x4d657361f86f2065737469732073656e6469746121, 'Y', '2007-05-14 21:16:44'),
(431, 21, 0x546162756c61206772616e6465636f, 'N', '2007-05-24 22:53:57'),
(436, 21, 0x6d6f6e61746f6a, 'Y', '2007-05-14 21:16:44'),
(439, 21, 0x6b756e, 'Y', '2007-05-14 21:16:44'),
(442, 21, 0x706f72, 'Y', '2007-05-14 21:16:44'),
(445, 21, 0x4c75646f2d4944, 'Y', '2007-05-14 21:16:44'),
(449, 21, 0x4a6170616e61, 'Y', '2007-05-14 21:16:44'),
(451, 21, 0x4b616e616461, 'Y', '2007-05-14 21:16:44'),
(453, 21, 0x656b7374726520706f72206d65746f, 'Y', '2007-05-14 21:16:44'),
(724, 21, 0x446574727569206d61726b6974616a6e206d657361f86f6a6e, 'Y', '2007-05-14 21:16:44'),
(726, 21, 0x526564616b746920646f736965726f6a6e, 'Y', '2007-05-14 21:16:44'),
(727, 21, 0x4c6120656c656b746f6a20706f7220746975206c7564696e7669746f20657374617320257364697370757465642573, 'Y', '2007-05-14 21:16:44'),
(740, 21, 0xc669756a2072696365766974616a, 'Y', '2007-05-14 21:16:44'),
(741, 21, 0xc6656661, 'Y', '2007-05-14 21:16:44'),
(742, 21, 0x527562756a6f, 'Y', '2007-05-14 21:16:44'),
(1106, 21, 0x4c6973746f20646520726573706f6e646f6a, 'Y', '2007-05-14 21:16:44'),
(1108, 21, 0x5265656e20616c206d657361f86f, 'Y', '2007-05-14 21:16:44'),
(1109, 21, 0x416e7461fd7669646f, 'Y', '2007-05-14 21:16:44'),
(1110, 21, 0x52696365766f6e746f206e652074726f76697461, 'Y', '2007-05-14 21:16:44'),
(1277, 17, 0x676f647a696e, 'Y', '2013-08-21 00:29:59'),
(1120, 21, 0x656b737472616a20706572696f646f6a, 'Y', '2007-05-14 21:16:44'),
(1121, 21, 0x416e7461fd61206d657361f86f, 'Y', '2007-05-14 21:16:44'),
(1122, 21, 0x53656b7661206d657361f86f, 'Y', '2007-05-14 21:16:44'),
(1124, 21, 0x4d69206d656d, 'Y', '2007-05-14 21:16:44'),
(156, 21, 0x42696f67726166696f20f86973646174696769746121, 'Y', '2007-05-14 21:34:18'),
(157, 21, 0x506173766f72746f20fe616ef869746121, 'Y', '2007-05-14 21:34:18'),
(158, 21, 0x557a616e74696e666f726d6f20fe616ef869746121, 'Y', '2007-05-14 21:34:18'),
(175, 21, 0x416c69613a, 'Y', '2007-05-14 21:34:18'),
(176, 21, 0x4c616e646f, 'Y', '2007-05-14 21:34:18'),
(177, 21, 0x5572626f, 'Y', '2007-05-14 21:34:18'),
(178, 21, 0xde7461746f, 'Y', '2007-05-14 21:34:18'),
(179, 21, 0x4b6c75626f, 'Y', '2007-05-14 21:34:18'),
(180, 21, 0x48656a6d2d7474742d656a6f, 'Y', '2007-05-14 21:34:18'),
(182, 21, 0x4943512d6e756d65726f, 'Y', '2007-05-14 21:34:18'),
(183, 21, 0x4c7564616a207072656665726f6a, 'Y', '2007-05-14 21:34:18'),
(184, 21, 0x486f62696f6a, 'Y', '2007-05-14 21:34:18'),
(185, 21, 0x44756e676f, 'Y', '2007-05-14 21:34:18'),
(187, 21, 0xde616ef8692062696f67726166696f6e, 'Y', '2007-05-14 21:34:18'),
(188, 21, 0x526564616b746920706173766f72746f6e, 'Y', '2007-05-14 21:34:18'),
(189, 21, 0x4d616c6e6f766120706173766f72746f, 'Y', '2007-05-14 21:34:18'),
(192, 21, 0xde616ef86920706173766f72746f6e, 'Y', '2007-05-14 21:34:18'),
(193, 21, 0x4d616c616b74697661, 'Y', '2007-05-14 21:34:18'),
(195, 21, 0x4d65746f6a206b616a206d657361f86f6a, 'Y', '2007-05-14 21:34:18'),
(196, 21, 0x506c656e6120746162756c6f206b616a206d657361f86f6a, 'Y', '2007-05-14 21:34:18'),
(197, 21, 0x56657274696b616c61, 'Y', '2007-05-14 21:34:18'),
(198, 21, 0x486f72697a6f6e74616c61, 'Y', '2007-05-14 21:34:18'),
(199, 21, 0x526564616b746920757a616e74696e666f726d6f6e, 'Y', '2007-05-14 21:34:18'),
(200, 21, 0x506572736f6e616a20656c656b746f6a, 'Y', '2007-05-14 21:34:18'),
(206, 21, 0x526574706ffe74616a206174656e7469676f6a, 'Y', '2007-05-14 21:34:18'),
(207, 21, 0x557a7520656c656b746f6a6e20646520726574756d696c6f, 'Y', '2007-05-14 21:34:18'),
(208, 21, 0x4c696e67766f, 'Y', '2007-05-14 21:34:18'),
(209, 21, 0x54656d706f7a6f6e6f, 'Y', '2007-05-14 21:34:18'),
(210, 21, 0x4e6f6b746f74656d706f, 'Y', '2007-05-14 21:34:18'),
(211, 21, 0x546162756c61206172746f, 'Y', '2007-05-14 21:34:18'),
(212, 21, 0xde746f6e61206772616e6465636f, 'Y', '2007-05-24 23:01:27'),
(213, 21, 0x4c69676e61206b6f6c6f726f, 'Y', '2007-05-14 21:34:18'),
(214, 21, 0x4b6f6f7264696e6174616a20666c616e6b6f6a, 'Y', '2007-05-14 21:34:18'),
(215, 21, 0x4d616c64656b73747261, 'Y', '2007-05-14 21:34:18'),
(216, 21, 0x5375707261, 'Y', '2007-05-14 21:34:18'),
(217, 21, 0x44656b73747261, 'Y', '2007-05-14 21:34:18'),
(218, 21, 0x4d616c7375707261, 'Y', '2007-05-14 21:34:18'),
(219, 21, 0x4562656e6120746162756c612072616e646f, 'Y', '2007-05-14 21:34:18'),
(220, 21, 0x4d656e756120646972656b746f, 'Y', '2007-05-14 21:34:18'),
(222, 21, 0xde616ef86920757a616e74696e666f726d6f6e, 'Y', '2007-05-14 21:34:18'),
(378, 21, 0x4d696120757a616e74696e666f726d6f, 'Y', '2007-05-14 21:34:18'),
(379, 21, 0x526564616b74692062696f67726166696f6e, 'Y', '2007-05-14 21:34:18'),
(393, 21, 0x5265676973747261206461746f, 'Y', '2007-05-14 21:34:18'),
(394, 21, 0x4c6173746120616c69726f, 'Y', '2007-05-14 21:34:18'),
(395, 21, 0x42696f67726166696f, 'Y', '2007-05-14 21:34:18'),
(399, 21, 0x47616a6e6973, 'Y', '2007-05-14 21:34:18'),
(400, 21, 0x4d616c67616a6e6973, 'Y', '2007-05-14 21:34:18'),
(6161, 40, 0x486572f369282529, 'Y', '2014-07-30 06:24:31'),
(402, 21, 0x416761646f, 'Y', '2007-05-14 21:34:18'),
(463, 21, 0x7376656461, 'Y', '2007-05-14 21:34:18'),
(464, 21, 0x6e6f7276656761, 'Y', '2007-05-14 21:34:18'),
(465, 21, 0x616e676c61, 'Y', '2007-05-14 21:34:18'),
(466, 21, 0x6765726d616e61, 'Y', '2007-05-14 21:34:18'),
(467, 21, 0x6672616e6361, 'Y', '2007-05-14 21:34:18'),
(468, 21, 0x68697370616e61, 'Y', '2007-05-14 21:34:18'),
(469, 21, 0xe665b661, 'Y', '2007-05-14 21:34:18'),
(470, 21, 0xe6696e612028747261646963696129, 'Y', '2007-05-14 21:34:18'),
(3190, 17, 0x5374726f6e61202573206f66202573, 'Y', '2013-08-21 00:42:54'),
(472, 21, 0xe6696e61202873696d706c696769746129, 'Y', '2007-05-14 21:34:18'),
(473, 21, 0x6e656465726c616e6461, 'Y', '2007-05-14 21:34:18'),
(479, 21, 0x74616a61, 'Y', '2007-05-14 21:34:18'),
(494, 21, 0x557a616e74696e666f726d6f20706f72202573, 'Y', '2007-05-14 21:34:18'),
(500, 21, 0x66696e6e61, 'Y', '2007-05-14 21:34:18'),
(736, 21, 0x47616a6e6974616a206c75646f6a, 'Y', '2007-05-14 21:34:18'),
(737, 21, 0x4d616c67616a6e6974616a206c75646f6a, 'Y', '2007-05-14 21:34:18'),
(738, 21, 0xde616ef8692066657269616e206c6f6e6765636f6e, 'Y', '2007-05-24 23:01:27'),
(739, 21, 0x4b6f6d656e636920666572696f6e, 'Y', '2007-05-24 23:01:27'),
(750, 21, 0x6b6f726561, 'Y', '2007-05-14 21:34:18'),
(954, 21, 0x72757361, 'Y', '2007-05-14 21:34:18'),
(955, 21, 0x466572696f, 'Y', '2007-05-24 23:01:27'),
(956, 21, 0x506172646f6e753b207669206e6520706f76617320fe616ef869206c612066657269616e206c6f6e6765636f6e206e756e2e, 'Y', '2007-05-24 23:01:27'),
(957, 21, 0x4665726961206c6f6e6765636f20fe616ef869746121, 'Y', '2007-05-24 23:01:27'),
(958, 21, 0x416c646f6e69, 'Y', '2007-05-14 21:34:18'),
(959, 21, 0x466f72696769, 'Y', '2007-05-14 21:34:18'),
(960, 21, 0x456c656b74692066657269616e206c6f6e6765636f6e, 'Y', '2007-05-24 23:01:27'),
(962, 21, 0x41677261626c616e20666572696f6e21, 'Y', '2007-05-24 23:01:27'),
(997, 21, 0x706f6c61, 'Y', '2007-05-14 21:34:18'),
(998, 21, 0x6974616c61, 'Y', '2007-05-14 21:34:18'),
(1003, 21, 0x65fd736b61, 'Y', '2007-05-14 21:34:18'),
(1018, 21, 0x736c6f76616b61, 'Y', '2007-05-14 21:34:18'),
(1023, 21, 0x72756d616e61, 'Y', '2007-05-14 21:34:18'),
(1028, 21, 0x686562726561, 'Y', '2007-05-14 21:34:18'),
(1030, 21, 0x766a65746e616d61, 'Y', '2007-05-14 21:34:18'),
(1031, 21, 0x7365726261, 'Y', '2007-05-14 21:34:18'),
(1032, 21, 0x6772656b61, 'Y', '2007-05-14 21:34:18'),
(1033, 21, 0x756b7261696e61, 'Y', '2007-05-14 21:34:18'),
(1034, 21, 0x6b6174616c61fd6e61, 'Y', '2007-05-14 21:34:18'),
(1035, 21, 0xe6696e61202873696d706c69676974612920285554462d3829, 'Y', '2007-05-14 21:34:18'),
(1067, 21, 0x64656e61736b61206c696e67766f, 'Y', '2007-05-14 21:34:18');
INSERT INTO `Translations` (`Original_ID`, `Language_ID`, `Text`, `Translated`, `Updated`) VALUES
(1068, 21, 0x6c696e677661206b6f6d706574656e7465636f, 'Y', '2007-05-14 21:34:18'),
(1069, 21, 0x737562, 'Y', '2007-05-14 21:34:18'),
(1073, 21, 0x4e756d657261646f206465206d65746f6a, 'Y', '2007-05-14 21:34:18'),
(1074, 21, 0x4e6520757a75206e756d65726f6a6e20737570657220313030, 'Y', '2007-05-14 21:34:18'),
(1077, 21, 0x4d616c6772616e64616a20746162756c6f6a, 'Y', '2007-05-14 21:34:18'),
(1079, 21, 0x506f7a6963696f, 'Y', '2007-05-14 21:34:18'),
(1080, 21, 0x416c7465636f, 'Y', '2007-05-24 23:01:27'),
(1081, 21, 0x4c6172f865636f, 'Y', '2007-05-24 23:01:27'),
(1113, 21, 0x54616b736974616a206c75646f6a, 'Y', '2007-05-14 21:34:18'),
(1131, 21, 0x506172646f6e753b2076692062657a6f6e617320616c6d656e61fd20256420666572697461676f6a6e20706f72206b6f6d656e63692066657269616e20706572696f646f6e2e, 'Y', '2007-05-24 23:01:27'),
(1210, 21, 0x526564616b74692062696f6772616669616e20696e666f726d6f6e, 'Y', '2007-05-24 23:34:06'),
(1214, 21, 0x416b746976616a20757a616e746f6a, 'Y', '2007-05-14 21:34:18'),
(1218, 21, 0x466f6e6f, 'Y', '2007-05-14 21:34:18'),
(1219, 21, 0x5275f861, 'Y', '2007-05-14 21:34:18'),
(1220, 21, 0x5665726461, 'Y', '2007-05-14 21:34:18'),
(1221, 21, 0x426c7561, 'Y', '2007-05-14 21:34:18'),
(1223, 21, 0x4d6f6e747269207375722073746174757361207061f86f, 'Y', '2007-05-14 21:34:18'),
(1224, 21, 0x4d616c666f6e6f, 'Y', '2007-05-14 21:34:18'),
(1225, 21, 0x446f736965726f6a20fe616ef86974616a21, 'Y', '2007-05-14 21:34:18'),
(1245, 21, 0x4b61fe6974616a, 'Y', '2007-05-14 21:34:18'),
(1273, 21, 0x446f736965726f6a20666f7269676f74612064657661732065737469206d616c706c656e6121, 'Y', '2007-05-14 21:34:18'),
(1279, 21, 0xe6696e61202874726164696369612920285554462d3829, 'Y', '2007-05-14 21:34:18'),
(1280, 21, 0x7475726b61, 'Y', '2007-05-14 21:34:18'),
(1281, 21, 0x68756e67617261, 'Y', '2007-05-14 21:34:18'),
(1, 8, 0xa9eaba70a141c5fda46ca5bca7b9a6a8a4a7ab65b54caa6bb5eaa4e2, 'Y', '2007-05-17 15:53:01'),
(2, 8, 0xa9eaba70a141b4d1a7bda477b5b2a7f4, 'Y', '2007-05-17 15:53:01'),
(3, 8, 0xa9eaba70a141b4d1a7bda97ca5bcb67da96c, 'Y', '2007-05-17 15:53:01'),
(7, 8, 0xa9eaba70a141a4a3afe0c1dcbdd0a6dba476b9efa7bd, 'Y', '2007-05-17 15:53:01'),
(8, 8, 0xa9eaba70a141a7e4a4a3a8ecb17ab351c1dcbdd0aabab4d1a7bda143a569afe0a477b351a65eb5b4a148, 'Y', '2007-05-17 15:53:01'),
(9, 8, 0xa9eaba70a141a4a3afe0a5dfa8e8a65eb4a3b9efa4e8ade8b4a3a46ca4a7a5dba141a65dacb0b77cadabbdc6a5fdab65aabab4d1bd4ca6ecb86da143bdd0be5cc5aa22a5b4a75422aabab357ab68a143, 'Y', '2007-05-17 15:53:01'),
(12, 8, 0xb54caa6bb373b1b5b8eaaec6ae77a143bdd0b579abe1a641b8d5a143, 'Y', '2007-05-17 15:53:01'),
(13, 8, 0xb54caa6ba752b0a3b4d1a7bda143a569afe0a853a6b3b0ddc344a143, 'Y', '2007-05-17 15:53:01'),
(14, 8, 0xa9eaba70a141c342a57eb054aea7a6fca547b54caa6bb373b1b5b8eaaec6ae77, 'Y', '2007-05-17 15:53:01'),
(15, 8, 0xa9eaba70a141b4d1a7bda6fca547b54caa6bb373b1b5b8eaaec6ae77, 'Y', '2007-05-17 15:53:01'),
(16, 8, 0xa6b9a4e2a6fca547b54caa6bb373b1b5b8eaaec6ae77a143a569afe0a853a6b3b0ddc344a141bdd0b579abe1a641a65ea8d3acdda6b9a4e2ac4fa75fb351b04fbffda143, 'Y', '2007-05-17 15:53:01'),
(17, 8, 0xb8eaaec6a6fca547b54caa6bb373b1b5b8eaaec6ae77a143a670aa47b17ab54caa6bb56ea44aa141bdd0a641b8d5a440a6b8a141a670aa47c1d9ac4fa5a2b1d1a141bdd0c170b5b8a4e4b4a9a143, 'Y', '2007-05-17 15:53:01'),
(18, 8, 0xb8eaaec6ae77ac64b8dfa5a2b1d1a143bdd0b579abe1a641b8d5a143, 'Y', '2007-05-17 15:53:01'),
(19, 8, 0xb54caa6bbfefbedcb8eaaec6ae77a143bdd0b579abe1a641b8d5a143, 'Y', '2007-05-17 15:53:01'),
(20, 8, 0xa9eaba70a141b54caa6bb67da96cb4d1a7bda143bdd0b579abe1a641b8d5a143, 'Y', '2007-05-17 15:53:01'),
(22, 8, 0xa9eaba70a141b17aa5b2b6b7b4a3a8d1a657bad9a143, 'Y', '2007-05-17 15:53:01'),
(27, 8, 0xa9eaba70a141b17abb50b17aaabab9efa4e2bbddad6eb35da977b5a5afc5a141a75fab68b54caa6bbd54a977be41b7edc5fda46c, 'Y', '2007-05-17 15:53:01'),
(29, 8, 0xa9eaba70a141b358abc8b854a4eea141bdd0a5fda5d3bdd0add3a448b162a4e1, 'Y', '2007-05-17 15:53:01'),
(32, 8, 0xa9eaba70a141c1d9a853bdfca8ecb17ab8a8a46c, 'Y', '2007-05-17 15:53:01'),
(33, 8, 0xb14bbd58a774a6b3a4a3a569a5cea672a4b8a141a569a5cea672a4b8acb0612d7a2c412d5a2c302d39bb502d5f2b2e2c3a3b3f21252ab5a5, 'Y', '2007-05-17 15:53:01'),
(35, 8, 0xb14bbd58a4a3a658a141bdd0a641b8d5a440a6b8a143, 'Y', '2007-05-17 15:53:01'),
(38, 8, 0xa9eaba70a141b17aac4fa75fa7d1b04fbfe9a44ab5a5afc5a148, 'Y', '2007-05-17 15:53:01'),
(39, 8, 0xa9eaba70a141a6b9b5fbb5a5a4e8a6a1bdd0a4c5a5ce22afc522a9ce22ac7122, 'Y', '2007-05-17 15:53:01'),
(40, 8, 0xa9eaba70a141a6b9b8a8a46cb77ca6dbb4a3a141a6fda5bba7bdb357ab68a4a3ae65b35ca6dbb4a3a143, 'Y', '2007-05-17 15:53:01'),
(41, 8, 0xa9eaba70a141a7e4a4a3a8ecb8d3b4d1a7bda143, 'Y', '2007-05-17 15:53:01'),
(42, 8, 0xa9eaba70a141a7e4a4a3a8ecb17ab751ad6eaababdd7bec2a143, 'Y', '2007-05-17 15:53:01'),
(43, 8, 0xadf8a141b36fadd3b054aea7a6fca547ac4fa65ec0b3a477a4a3a673a662aabab64ba4e5a143, 'Y', '2007-05-17 15:53:01'),
(44, 8, 0xa9eaba70a141a7e4a4a3a8ecb17ab751ad6eaabab054aea7a143, 'Y', '2007-05-17 15:53:01'),
(45, 8, 0xa9eaba70a141a7e4a4a3a8ecb8d3a5cea4e1a143, 'Y', '2007-05-17 15:53:01'),
(46, 8, 0xa9eaba70a141a6b9a5cea4e1b162b8b9a477b351a8cfa5cea141bdd0b9c1b8d5a8e4a54cb162b8b9a143, 'Y', '2007-05-17 15:53:01'),
(48, 8, 0xb54caa6ba662b669a6e6bfebc3d1aec9b1c0c25fbcc6adc8, 'Y', '2007-05-17 15:53:01'),
(49, 8, 0xa9eaba70a141a575afe0a752b0a3a6dba476aabab4d1a7bda143, 'Y', '2007-05-17 15:53:01'),
(50, 8, 0xa9eaba70a141b54caa6ba662abdda7bdabc7a7e4a8eca6b9b4d1a7bda143a569afe0a477a6b3a448a55ba44ab4d1a7bda143, 'Y', '2007-05-17 15:53:01'),
(51, 8, 0xa9eaba70a141b17ab54caa6ba55ba44aa6dba476aabab4d1a7bda143, 'Y', '2007-05-17 15:53:01'),
(52, 8, 0xa9eaba70a141b17aa4a3b2c5a658a6b9b4d1a7bdb5a5afc5bd64b3f2a143, 'Y', '2007-05-17 16:00:48'),
(54, 8, 0xa9eaba70a141a5bca5bfbd54bfe9a44ab14bbd58a143, 'Y', '2007-05-17 16:00:48'),
(55, 8, 0xb5a5afc5a4e8a6a1a4a3a9fa, 'Y', '2007-05-17 16:00:48'),
(56, 8, 0xa9eaba70a141b54ca6b9a5cea4e1b162b8b9a143, 'Y', '2007-05-17 16:00:48'),
(57, 8, 0xa9eaba70a141aaeca96cb5a5afc5a5b2b6b7a4b6a9f320333020afc5a8ec203620ac71a4a7b6a1a143, 'Y', '2007-05-17 16:00:48'),
(58, 8, 0xa9eaba70a141b17aa662bcc6adc8c4e6bfe9a44aa446ab44bcc6adc8a672a4b8a143, 'Y', '2007-05-17 16:00:48'),
(59, 8, 0xa9eaba70a141a575a6b3c2bdc4b6aacca47eafe0c2bdc4b6a143, 'Y', '2007-05-17 16:00:48'),
(60, 8, 0xa670aa47b17ab751a8f3a755c2bdc4b6c073a4a7f9d6a141bdd0a662202671756f743b5472616e736c6174696f6e2671756f743b20bdd7bec2b64ba457b054aea7a143, 'Y', '2008-05-07 09:29:45'),
(61, 8, 0xa9eaba70a141b17aa853a6b3b16fa8ecb35ca569c2bdc4b6b36fbad8bb79a4e5a143, 'Y', '2007-05-17 16:00:48'),
(63, 8, 0xa9eaba70a141b773c2bdc4b6bfe9a44ab8eaaec6ae77b56fa5cdbff9bb7ea143, 'Y', '2007-05-17 16:00:48'),
(66, 8, 0xa9eaba70a141a5bbadb6b6c8a8d1badeb27aaacca8cfa5cea143, 'Y', '2007-05-17 16:00:48'),
(69, 8, 0xa9eaba70a141b54caa6ba7e4a8ecb8d3b5a7bfe9a44aa143, 'Y', '2007-05-17 16:00:48'),
(75, 8, 0xa9eaba70a141a7e4a4a3a8ecb8d3a4f1c1c9a143, 'Y', '2007-05-17 16:00:48'),
(2944, 17, 0x4e65676f636a61636a65206f2073707261776965646c697765206b6f6d69, 'Y', '2013-08-21 00:36:57'),
(474, 8, 0xb0caa740a4a3a9faa141a9cea662a5d8ab65b4d1a7bdb54caa6bbe41a5cea143, 'Y', '2007-05-17 16:00:48'),
(475, 8, 0xb64ba5d8b657a558bd64b3f2a141bdd0bfefbedcb8fba658b27aaababcc6a5d8a143, 'Y', '2007-05-17 16:00:48'),
(476, 8, 0xa6b9a4e2b56fa5cdbff9bb7ea143bdd0a641b8d5a440a6b8a141ad59b54caa6bb8d1a84dbdd0b371aabea4e4b4a9a143, 'Y', '2007-05-17 16:00:48'),
(477, 8, 0xc5fda46cbcc6bff9bb7e, 'Y', '2007-05-17 16:00:48'),
(714, 8, 0xa9eaba70a141a7e4a4a3a8ecb8d3b054aea7b8eaaec6a7a8a143, 'Y', '2007-05-17 16:00:48'),
(1044, 8, 0xa6b9a4e2b948b357a143, 'Y', '2007-05-17 16:00:48'),
(1045, 8, 0xaec9adadb94cb575a141bdd0bfefbedca6dca4d6a440a470aec9a143, 'Y', '2007-05-17 16:00:48'),
(1046, 8, 0xa9eaba70a141b17aa97ca5bcb1d2a5cec273c4fdbeb9aaba636f6f6b6965a143, 'Y', '2007-05-17 16:00:48'),
(1047, 8, 0xa9eaba70a141a6b9a4e2a477b867b8a8a46ca143, 'Y', '2007-05-17 16:00:48'),
(1048, 8, 0xb54caa6ba7e4a8ecbaf4adb6a143bdd0b1b5aca2a6f8aa41beb9badeb27aadfba141a769b644a54cadccbff9bb7eb56fa5cdaabaaec9b6a1a141a548a4ceb17aa569afe0a4deb05fbff9bb7eaabaa740aa6ba143, 'Y', '2007-05-17 16:00:48'),
(1049, 8, 0xa6b9b162b8b9a6b3a4a3a658b357a977aabaa672a4b8a141a575a6b3612d7a2c20412d5a2c20302d3920bb50202d5f2b20a569a548a8cfa5cea141b2c4a440add3a672a4b8a5b2b6b7ac4f612d7a2c20412d5aa143, 'Y', '2007-05-17 16:00:48'),
(1050, 8, 0xa9eaba70a141b54caa6ba7e4a8ecb17ab751ad6eaabab64ba4e5a143, 'Y', '2007-05-17 16:00:48'),
(1051, 8, 0xa9eaba70a141b54caa6ba7e4a8ecb17ab751ad6ec2bdc4b6aababb79a8a5a9ceb873b2d5a143bdd0b1b5aca2a4e4b4a9a448adfba143, 'Y', '2007-05-17 16:00:48'),
(1053, 8, 0xa6b9a8cfa5ceaacca477b867ac4fbadeb27aadfba143, 'Y', '2007-05-17 16:00:48'),
(1, 21, 0x506172646f6e753b207669206e652072616a746173207061736920616e7461fd206f6c207669206d6574697320e669756a6e2068616e64696b6170616a6e20fe746f6e6f6a6e2e, 'Y', '2007-05-24 22:23:00'),
(2, 21, 0x506172646f6e753b206c61206c75646f206573746173206a616d2066696e6974612e, 'Y', '2007-05-24 22:23:00'),
(3, 21, 0x506172646f6e753b206c61206c75646f20616e6b6f7261fd206e6520656b69732e, 'Y', '2007-05-24 22:23:00'),
(7, 21, 0x506172646f6e753a207669206e6520706f76617320696e766974692076696e206d656d2e, 'Y', '2007-05-24 22:23:00'),
(8, 21, 0x506172646f6e753a206e652074726f7665626c617320746975206c75646f20616c206b697520766920657374617320696e7669746974612e2020c675207669206a616d206d616c616b6365707469733f, 'Y', '2007-05-24 22:23:00'),
(9, 21, 0x506172646f6e753a207669206e652072616a7461732072656b6170746920fe746f6e6f6e206b697520bc7573206b617074697320fe746f6e6f6e2c20e66172207469752072656b7265757320616e7461fd616e20706f7a6963696f6e2e202054656d61732070726920226b6f2220656e206c6120676f2d726567756c61726f2e, 'Y', '2007-05-24 22:23:00'),
(12, 21, 0x4b6f6e656b746f20616c20646174756d62617a6f206d616c73756b63657369732e2020426f6e766f6c7520726570726f766920706f7374206b656c6b616a206d696e75746f6a2e, 'Y', '2007-05-24 22:23:00'),
(13, 21, 0x4d616c73756b6365736973206c6120666f7269676f206465206c61206c75646f2e202050726f6261626c652074696f206e652065737461732070726f626c656d6f2e, 'Y', '2007-05-24 22:23:00'),
(14, 21, 0x506172646f6e753a20766572fe616a6e65206d616c73756b6365736973206c6120616c646f6e6f206465206c61206d657361f86f20616c206c6120646174756d62617a6f2e, 'Y', '2007-05-24 22:23:00'),
(15, 21, 0x506172646f6e753a20766572fe616a6e65206d616c73756b6365736973206c6120616c646f6e6f206465206c61206c75646f20616c206c6120646174756d62617a6f2e, 'Y', '2007-05-24 22:23:00'),
(16, 21, 0x566572fe616a6e65206d616c73756b6365736973206c6120616c646f6e6f206465206c61206d65746f20616c206c6120646174756d62617a6f2e202054696f2065626c652065737461732070726f626c656d6f3b20626f6e766f6c7520726576696469206c61206c75646f6e20706f72206b6f6e74726f6c6920e675206c61206d65746f206573746173206d656d6f726974612e, 'Y', '2007-05-24 22:23:00'),
(17, 21, 0x566572fe616a6e65206d616c73756b6365736973206c6120616c646f6e6f206465206c6120646174756d6f20616c206c6120646174756d62617a6f2e20205365207669206e6520706f76617320656e73616c7574692c20626f6e766f6c7520726570726f7669206b616a2c2073652074696f206d616c73756b6365736f732c206b6f6e74616b74692068656c706f6e2e, 'Y', '2007-05-24 22:23:00'),
(18, 21, 0x4d616c73756b636573697320646174756d62617a6120646174756d6d656e646f2e2020426f6e766f6c7520726570726f766920706f7374206b656c6b616a206d696e75746f6a2e, 'Y', '2007-05-24 22:23:00'),
(19, 21, 0x4d616c73756b636573697320656c656b746920646174756d62617a6f6e2e2020426f6e766f6c7520726570726f766920706f7374206b656c6b616a206d696e75746f6a2e, 'Y', '2007-05-24 22:23:00'),
(20, 21, 0x506172646f6e753a206d616c73756b6365736973206b6f6d656e6369206c61206c75646f6e2e2020426f6e766f6c7520726570726f766920706f7374206b656c6b616a206d696e75746f6a2e, 'Y', '2007-05-24 22:23:00'),
(22, 21, 0x506172646f6e753a20766920646576617320646f6e69206e6f6d6f6e2e, 'Y', '2007-05-24 22:23:00'),
(27, 21, 0x506172646f6e753a207669206b616a20766961206b6f6e747261fd756c6f20646576617320656c656b7469206b6f6d656e63616e20677261646f6e2c2061fd206d69206e6520706f76617320656c656b7469207461fd67616e2068616e64696b61706f6e2e, 'Y', '2007-05-24 22:23:00'),
(29, 21, 0x506172646f6e753a2074696f206e65206573746173207065726d657361746120616c20676173746f6a2e2020426f6e766f6c75206b7265692070726f7072616e206b6f6e746f6e2e, 'Y', '2007-05-24 22:23:00'),
(32, 21, 0x506172646f6e753a206e6520657374617320766961207669636f2e, 'Y', '2007-05-24 22:23:00'),
(33, 21, 0x4c6120706173766f72746f20656e6861766973206e657065726d65736174616a6e207369676e6f6a6e2e20204e757220612d7a2c20412d5a2c20302d392c206b616a202d5f2b2e2c3a3b3f21252a207461fd6761732e, 'Y', '2007-05-24 22:23:00'),
(35, 21, 0x4c61206b6f6e6669726d6120706173766f72746f206e65206b6f6e6772756973206b756e206c61206f726967696e616c6120706173766f72746f3b20626f6e766f6c75207265666172692e, 'Y', '2007-05-24 22:23:00'),
(1607, 17, 0x5779637a79b6e6, 'Y', '2013-08-20 23:09:41'),
(1610, 17, 0x54454b5354, 'Y', '2013-08-20 23:10:15'),
(1612, 17, 0x52414e4b494e47, 'Y', '2013-08-20 23:10:15'),
(1112, 21, 0x4174656e7475206b6f6d656e63616e746f6a3a207472616c656775206c6120726573706f6e6461726f6e207a6f7267652c20707265636970652070726920656c656b746f20646520766961206b6f6d656e636120677261646f207375722076696120757a616e74696e666f726d61207061f86f2e, 'Y', '2007-05-24 22:41:25'),
(194, 21, 0x4e7572206174656e74696769, 'Y', '2007-05-24 23:01:27'),
(1014, 21, '', 'Y', '2011-03-29 20:29:29'),
(1015, 21, '', 'Y', '2011-03-29 20:29:29'),
(1029, 21, '', 'Y', '2011-03-29 20:29:29'),
(1078, 21, 0x4772616e64616a20746162756c6f6a206465, 'Y', '2007-05-24 23:01:27'),
(1222, 21, 0x416c6661, 'Y', '2007-05-24 23:01:27'),
(1226, 21, 0xd86973646174696769, 'Y', '2007-05-24 23:01:27'),
(1234, 21, 0x466164656e6f6a, 'Y', '2007-05-24 23:12:40'),
(1235, 21, 0x5265656e20616c20666164656e6f, 'Y', '2007-05-24 23:12:40'),
(1237, 21, 0x536572e669, 'Y', '2007-05-24 23:12:40'),
(1238, 21, 0x496e7665727369676920666f72756d616e2063656e7a75726973746f6e, 'Y', '2007-05-24 23:12:40'),
(1241, 21, 0x43656e7a7572616e7461, 'Y', '2007-05-24 23:12:40'),
(1243, 21, 0x6465, 'Y', '2007-05-24 23:12:40'),
(1244, 21, 0x4174656e6461733c62723e6170726f626f6e, 'Y', '2007-05-24 23:12:40'),
(1246, 21, 0x726564616b74697461, 'Y', '2007-05-24 23:12:40'),
(1059, 21, 0x6d6f6e747269, 'Y', '2007-05-24 23:12:40'),
(1251, 21, 0x4170726f6269, 'Y', '2007-05-24 23:12:40'),
(1252, 21, 0x4d616c6170726f6269, 'Y', '2007-05-24 23:12:40'),
(1253, 21, 0x416669fe69, 'Y', '2007-05-24 23:12:40'),
(1254, 21, 0x4d657361f86f6a2062657a6f6e616e74616a206170726f626f6e, 'Y', '2007-05-24 23:12:40'),
(1255, 21, 0x466f72756d6c6973746f, 'Y', '2007-05-24 23:12:40'),
(1256, 21, 0x43656e7a7572617461, 'Y', '2007-05-24 23:12:40'),
(1257, 21, 0x466164656e6f, 'Y', '2007-05-24 23:12:40'),
(1258, 21, 0x41fd746f726f, 'Y', '2007-05-24 23:12:40'),
(1259, 21, 0x4d657361f86f6a, 'Y', '2007-05-24 23:12:40'),
(1260, 21, 0x4c61737461206d657361f86f, 'Y', '2007-05-24 23:12:40'),
(1261, 21, 0x506172646f6e753a207669206e652072616a74617320616669fe6920656e206c6120666f72756d6f2e, 'Y', '2007-05-24 23:12:40'),
(1262, 21, 0x546975206d657361f86f206b6f6e74726f6c656e6461732e2020d86920617065726173206e757220706f7374206170726f626f2064652063656e7a75726973746f6a2e, 'Y', '2007-05-24 23:12:40'),
(1263, 21, 0xde616ef8686973746f72696f, 'Y', '2007-05-24 23:12:40'),
(1267, 21, 0x536572e672657a756c746f, 'Y', '2007-05-24 23:12:40'),
(165, 21, 0x4c6967696c6f6a, 'Y', '2007-05-26 01:27:29'),
(168, 21, 0x496e7374616c6120696e737472756b63696f, 'Y', '2007-05-24 23:34:06'),
(169, 21, 0x736520766920766f6c6173207669616e2070726f7072616e20447261676f6e, 'Y', '2007-05-24 23:34:06'),
(170, 21, 0x456cfe75746920666f6e746b6f646f6e20646520447261676f6e, 'Y', '2007-05-24 23:34:06'),
(173, 21, 0x50726f6a656b747061f86f20646520447261676f6e20e66520736f75726365666f726765, 'Y', '2007-05-24 23:34:06'),
(256, 21, 0xd8656e6572616c6120696e666f726d6f, 'Y', '2007-05-24 23:34:06'),
(258, 21, 0x4d756c746120696e666f726d6f2070726920676f6f, 'Y', '2007-05-24 23:34:06'),
(266, 21, 0x4b756e6c61626f7261207265747061f861726f2e20204c656775206b616a20616c646f6e7521, 'Y', '2007-05-24 23:34:06'),
(272, 21, 0x4a6170616e612062696c6472616b6f6e746f2070726920676f6f21, 'Y', '2007-05-24 23:34:06'),
(274, 21, '', 'Y', '2011-03-29 20:29:29'),
(275, 21, 0x416661626c61207474742d656a6f20706f72206c65726e692e, 'Y', '2007-05-24 23:34:06'),
(276, 21, 0x426f6e65676120656e6b6f6e64756b6f206465206c6120427269746120476f2d41736f63696f, 'Y', '2007-05-24 23:34:06'),
(281, 21, '', 'Y', '2011-03-29 20:29:29'),
(284, 21, 0x5374756461646f20646520676f70726f626c656d6f6a20706f7661732068656c70692076696e2e, 'Y', '2007-05-24 23:34:06'),
(285, 21, '', 'Y', '2011-03-29 20:29:29'),
(286, 21, 0x5375626d657469207669616a6e206c75646f6a6e20706f72206b6f6d656e746f6a20707269206b69656c20706c6920626f6e65206c7564692e, 'Y', '2007-05-24 23:34:06'),
(287, 21, '', 'Y', '2011-03-29 20:29:29'),
(288, 21, 0x4f6674616a206a6170616e616a20676f7465726d696e6f6a, 'Y', '2007-05-24 23:34:06'),
(305, 21, 0x4c6973746f2064652073657276696c6f6a, 'Y', '2007-05-24 23:34:06'),
(306, 21, 0x506c6920616d706c656b7361206c6973746f2064652073657276696c6f6a, 'Y', '2007-05-24 23:34:06'),
(337, 21, 0x48656c70616e746f6a20616c20447261676f6e, 'Y', '2007-05-24 23:34:06'),
(5697, 36, 0x4cc3a97472612068656c79657ac3a973, 'Y', '2015-07-23 12:11:44'),
(6320, 36, 0x42726f6e7a204b6974c3bc6e746574c3a973, 'Y', '2015-07-23 11:44:45'),
(340, 21, 0x526564616b746f726f20646520726573706f6e6461726f, 'Y', '2007-05-24 23:34:06'),
(377, 21, 0x426f6e76656e696761207061f86f, 'Y', '2007-05-24 23:34:06'),
(380, 21, 0x4d6f6e747269206d657361f86f6e, 'Y', '2007-05-24 23:34:06'),
(383, 21, 0x466164656e6c6973746f, 'Y', '2007-05-24 23:34:06'),
(385, 21, 0x4e6f76612074656d6f, 'N', '2007-05-24 23:34:06'),
(730, 21, 0x526564616b746920666572696f6e, 'Y', '2007-05-24 23:34:06'),
(1102, 21, '', 'Y', '2011-03-29 20:29:29'),
(1103, 21, 0x4772616e646120646174756d62617a6f2064652070726f66657369616a206c75646f6a, 'Y', '2007-05-24 23:34:06'),
(1104, 21, '', 'Y', '2011-03-29 20:29:29'),
(1105, 21, 0x53656d616a6e6120676f6b6f6c756d6e6f20646520526f622056616e205a65696a7374, 'Y', '2007-05-24 23:34:06'),
(1228, 21, 0x53746174697374696b612067726166696b61bc6f, 'Y', '2007-05-24 23:34:06'),
(291, 21, 0x486973746f72696f, 'Y', '2007-05-26 01:23:51'),
(292, 21, '', 'Y', '2011-03-29 20:29:29'),
(293, 21, 0x4d616c6c6f6e676120686973746f72696f2e, 'Y', '2007-05-26 01:23:51'),
(294, 21, '', 'Y', '2011-03-29 20:29:29'),
(295, 21, 0x4c61206574656e6469746120686973746f72696f2e, 'Y', '2007-05-26 01:23:51'),
(296, 21, 0x476f616a206c6962726f6a2c206b6f6d706c65746f6a2c206b616a2070726f6772616d6f6a, 'Y', '2007-05-26 01:23:51'),
(297, 21, '', 'Y', '2011-03-29 20:29:29'),
(298, 21, 0x4772616e6461206b6f6c656b746f6a20646520676f6c696272616a20726563656e7a6f6a, 'Y', '2007-05-26 01:23:51'),
(300, 21, 0x416c69616a20676f73657276696c6f6a, 'Y', '2007-05-26 01:23:51'),
(301, 21, 0x53696d696c6520726574706ffe74652c206b616a206861766173206b656c6b616a6e20616c69616a6e206c75646f6a6e2e, 'Y', '2007-05-26 01:23:51'),
(303, 21, 0x4772616e64612073657276696c6f20706f722074756a61206c756461646f2e, 'Y', '2007-05-26 01:23:51'),
(299, 21, 0x45fd726f706120627574696b6f, 'Y', '2007-05-26 01:25:56'),
(1120, 11, 0x657874726120706572696f64656e, 'Y', '2007-06-04 14:57:29'),
(1109, 11, 0x566f6f726265656c64, 'Y', '2007-06-04 14:57:29'),
(1083, 10, 0xc7ebc7f3c8c3d7d3d3dad0c7cebb, 'Y', '2007-05-29 13:11:09'),
(1085, 10, 0xc7ebb5e3d1a1cbc0d7d3a3acc8bbbaf3b5e3d1a1257327cdeab3c9272573, 'Y', '2007-05-29 13:11:09'),
(1086, 10, 0xcce1d7d3, 'Y', '2007-05-29 13:11:09'),
(1089, 10, 0xbcc6b7d6, 'Y', '2007-05-29 13:11:09'),
(1090, 10, 0xb9dbc6e5, 'Y', '2007-05-29 13:11:09'),
(1093, 10, 0xcfd4cabeb1cabcc7, 'Y', '2007-05-31 11:26:53'),
(1094, 10, 0xb4a2b4e6b1cabcc7, 'Y', '2007-05-31 11:26:53'),
(1095, 10, 0xd2feb2d8b1cabcc7, 'Y', '2007-05-31 11:26:53'),
(1111, 10, 0xc6e5c1a6cdbc, 'Y', '2007-05-29 13:11:09'),
(1035, 17, 0x636869f1736b69287570726f737a637a6f6e7929287574662d3829, 'Y', '2013-08-20 22:13:08'),
(1211, 10, 0xcad6cafd, 'Y', '2007-05-29 13:11:09'),
(700, 10, 0xb0e2, 'N', '2007-05-30 11:27:37'),
(703, 10, 0x47657461a3babbf9b1bec9cfcac7b7e2d7a1b6d4cad6c6e5d7d3b5c4d2bbcad6a1a3, 'N', '2007-05-30 11:27:37'),
(704, 10, 0xc8fdc1acd0c7, 'N', '2007-05-30 11:27:37'),
(979, 10, 0xb3a3bcfbcecacce2cac7b7f1ccb8b5bdcbf9d3d0b5c4b3ccd0f2d0a1c3abb2a1a3bf, 'Y', '2007-10-01 09:24:54'),
(980, 10, 0xc3bbd3d0a3acd2b2d3c0d4b6cedeb7a8c8abb2bfccb8b5bda1a3d5e2c0efccb8b5bdb5c4d0a1c3abb2a1b6bccac7b3a3b7a2c9fabbf2d2d1d6aab5c4beb2ccacb4edcef3a3acd2d4bcb0d4dac2dbccb3d6d0cfeacfb8ccd6c2dbb9fdb5c4a1a3d0a1c3abb2a1bbe1b1bbd0dec0ed283c693ed5e2d1f9b2c5d3d0bfd5bce4c8ddc4c9c6e4cbfcd0a1c3abb2a1a3bf3c2f693e29a3acb5abcac7d4dad0dec0edbac3d6aec7b0a3acd5e2c0efd2b2bbe1bcd3d2d4ccd6c2dba1a3, 'Y', '2007-05-30 11:27:37'),
(981, 10, 0xc1fad6aeb39eb5c4d1b6cfa2d3d0c4c4d0a9a3bf, 'N', '2007-05-30 11:27:37'),
(982, 10, 0xc6e5cad6d3d0d2d4cfc2bcb8d6d6b7bdcabdbba5cfe0b4abcbcdd1b6cfa2a3ba0d0a3c554c3e0d0a3c6c693ebcc4b3f6cbbdc8cbd0c5bcfeb8f8ccd8b6a8b5c4c6e5cad6a1a33c2f6c693e0d0a3c6c693eccf9cec4b5bdc1fad6aeb39eb5c4203c6120687265663d222f70686f72756d2f22207461726765743d225f626c616e6b223ec2dbccb33c2f613e20d3ebd0edb6e0c6e5cad6ccd6c2dba1a33c2f6c693e0d0a3c6c693ed4dabdf8d0d0d6d0c6e5bed6b7a2b1ed28d3d0d0edb6e0d0cecabd29203c4120485245463d222f6661712e7068703f726561643d74266361743d33363523456e7472793735223ec1f4d1d43c2f413ea1a33c2f6c693e3c2f554c3e0d0a0d0ac7ebd7a2d2e2a3a1c3bbd3d0d1b6cfa2bbe1b1bbc9beb3fda1a3cbbdc8cbd1b6cfa2d6bbbbe1b4d3c4fab5c4c1d0b1edd2c6b3fda3acb5abcac7bbe1c1f4d4dacafdbeddbfe2d6d0a1a3c6e5bed6d6d0b5c4c1f4d1d4d2b2bbe1d3c0d4b6b1a3c1f4a3acbbb9d3d0c2dbccb3b5c4c1f4d1d4a1a3b6d4bed6d6d0b5c4d5fdb3a3d1b6cfa2b2bbbbe1cae4c8eb534746cec4bcfea3acb5abcac7bbe1c1f4d4dacfb5cdb3c9cfa3acb6d4bed6b5c4cbabb7bdbfc9d2d4b6c1c8a1a1a3, 'N', '2007-10-01 07:26:26'),
(987, 10, 0xced2b2c5b8d5bcd3c8ebc1fad6aeb39ea1a3ced2b8c3cae4c8ebcab2e7dbb3f5cabcb5c8bcb6a3bf, 'Y', '2007-05-30 11:27:37'),
(988, 10, 0xb5b1c4fad7a2b2e1d0c2d5cabac5cab1a3ac44475320bbe1d1afcecac4facac7b7f1d2d1d3d0c6e4cbfccea7c6e5b5c8bcb6a3a8d2b2d0edc0b4d7d4d3dac6e4cbfccea7c6e5cdf8d5bea3acbee3c0d6b2bfa3acbbf2cea7c6e5d0adbbe1a3a9a1a3d6bbd2aacae4c8ebb8c3b5c8bcb6a3ac44475320becdbbe1d7aab3c9cacab5b1b5c42044475320b3f5cabcb5c8bcb6a1a30d0a0d0ac7ebd7a2d2e2a3bad7a2b2e1d0c2d5cabac5cab1a3acc8e7b9fbc4fab2bbd6aab5c0d7d4bcbac6e5c1a6a3acc7eb3c623eb2bbd2aa3c2f623ecae4c8ebc8cebaceb5c8bcb6a3acc7ebcfc8b2cebfbccbb5c3f7b2e2cad4b3f6c4fab5c4c6e5c1a6a1a3d2bbb5a9cae4c8ebbaf3becdcedeb7a8b8c4b1e4a3bbc4fab1d8d0ebbfbfcfc2c6e5b2c5c4dcb5f7d5fbb5c8bcb6a1a3, 'N', '2007-05-30 11:27:37'),
(989, 10, 0xc8e7b9fbced2d2bbbfaacabccae4c8ebb4edcef3b5c4b3f5cabcb5c8bcb6a3acd3d0cab2e7dbb9d8cfb5a3bf, 'Y', '2007-05-30 11:27:37'),
(990, 10, 0xc6e4cab5c3bbcab2e7dbb9d8cfb5a1a33c693ea3a8b5abd3d0d0a9c8cbbef5b5c3badcd3d0b9d8cfb5a3bbd3d0d0a9c8cbb2bbd4dad2e2a1a3a3a93c2f693ec1fad6aeb39ebadcbfecbecdbbe1b8f9beddc4facdeab3c9b5c4c6c0b5c8b6d4bed6bcd3d2d4b5f7d5fba1a3beadb9fdb4f3d4bccee5b4ceb6d4bed6a3acc4fabecdbfc9d2d4b5c3b5bdcfe0b5b1bfc9bfbfb5c42044475320b5c8bcb6a1a30d0a0d0ac8e7b9fbc4fa3c693eb9cad2e23c2f693ec9e8b6a8b4edcef3b5c4b3f5cabcb5c8bcb6a3acc4fabbe1c8c7c4d5c6e4cbfcb6d4cad6a3acb5bcd6c23c693ecbfbc3c7b5c43c2f693eb5c8bcb6b2bbb9abc6bdb5d8cfc2bdb5a1a3b1f0cdfcc1cba3acc4fad2d4baf3bfc9c4dcbbb9bbe1d3ebcbfbc3c7b6d4bed6a1ad0d0a0d0ac1fad6aeb39ec5acc1a6cce1b9a9d3d0d0a7b5c4b5c8bcb6a3acb5abcac7d2b2d0e8d2aac4fab5c4bacfd7f7a3bac7ebb2bbd2aad4dad0c2d5cabac5c9e8b6a8d3ebc4fac6e5c1a6b2eeccabb6e0b5c4b5c8bcb6a1a3d0bbd0bba3a1, 'N', '2007-05-30 11:27:37'),
(991, 10, 0xb5b1ced2b5c4bcc6cab1d6d3d4ddcda3cab1a3acb6d4cad6b5c4d6d3cac7b7f1bbe1bfaacabcbcc6cab1a3bf, 'Y', '2007-05-30 11:27:37'),
(992, 10, 0xc8e7b9fbcac7bbbbc4facfc2a3bab2bbbbe1a1a30d0a0d0ac8e7b9fbcac7bbbbb6d4cad6cfc2a3babbe1b5c4a3acc7b0cce1cac7d5e2b2bbcac7cbafc3dfcab1bce4a3acd2b2b2bbcac7d6dcc4a9a3a8d4dac8a1cffbd6dcc4a9bcc6cab1b5c4b6d4bed6a3a9a3acb6d4cad6d2b2c3bbd3d0bfaacabcd0ddbcd9a1a3, 'Y', '2007-06-21 11:31:45'),
(993, 10, 0xced2c4dcb2bbc4dcd4dabcc6cab1d6d3d4ddcda3cab1cbcdb3f6c2e4d7d3a3bf, 'Y', '2007-05-30 11:27:37'),
(994, 10, 0xc4fa3c693ecbe6cab13c2f693eb6bcbfc9d2d4cbcdb3f6c2e4d7d3a9a4becdcbe3cac7d4dacbafc3dfcab1bce4a3acd0ddbcd9a3acbbf2d6dcc4a9a1a3, 'Y', '2007-06-21 11:31:45'),
(995, 10, 0xc1fad6aeb39eb5c4d6dcc4a9bcc6cab1d6d3cac7cab2e7dba3bf, 'Y', '2007-05-30 11:27:37'),
(996, 10, 0xb5b1c4fac9e8b6a8d0c2c6e5bed6cab1a3acc4fabfc9d2d4d1a1d4f1bcc6cab1d6d33c623eb2bbd2aa3c2f623ed4dad6dcc1f9d3ebd6dcc8d5cab5bcc6cab1a1a3, 'N', '2007-05-30 11:27:37'),
(999, 10, 0xd3aeb0ebc4bfbbf2d2bbb0d9c4bfa3acd6d0c5ccc8cfcae4bbf2b3accab1b0dca3acd4dab5c8bcb6b8c4b1e4c9cfd3d0cab2e7dbb2eeb1f0a3bf, 'Y', '2007-06-07 17:29:40'),
(1000, 10, 0xb6d4c1fad6aeb39eb6f8d1d4a3acd3aed2bbc5ccc6e5becdcac7d3aed2bbc5ccc6e5a3accae4d2bbc5ccc6e5becdcac7cae4d2bbc5ccc6e5a1a3b5c8bcb6b8c4b1e4b6bcd2bbd1f9a1a3, 'Y', '2007-05-30 11:27:37'),
(1001, 10, 0xc1fad6aeb39ec8e7bacebcc6cab1a3bf, 'Y', '2007-05-30 11:27:37'),
(1002, 10, '', 'Y', '2007-05-30 11:27:37'),
(1549, 10, 0xd3c3bba7b7d6c0e0, 'Y', '2012-01-08 18:36:55'),
(1004, 10, 0xd4dac2dbccb3d3d0baced0d0ceaab9e6b7b6a3bf, 'N', '2007-05-30 11:31:37'),
(1005, 10, 0xbfc9d2d4b2cebfbc203c6120687265663d22687474703a2f2f7777772e666171732e6f72672f726663732f726663313835352e68746d6c223ecdf8c2e7c0f1d2c7b9e6b7b63c2f613ea1a30d0a0d0ab8c3b9e6b7b6d3d0b5e3c8dfb3a4a1a3c4fad2b2bfc9d2d4b2cebfbcbdcfbcf2b6ccb5c4203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f70686f72756d2f726561642e7068703f663d3426693d3339323626743d33393236223e20c2dbccb3d6f7cce23c2f613ea1a3, 'N', '2007-05-30 11:31:37'),
(1006, 10, 0xc1fad6aeb39eb5c4d4adcabcc2ebcac7b7f1b9abbfaaa3bf, 'Y', '2007-05-30 11:31:37'),
(1007, 10, 0xb8f9bedd20474e55205075626c6963204c6963656e6365202847504c29b5c4b7a8c2c9a3acbfc9b4d32043565320cfc2d4d8d4adcabcc2eba3ba203c4120485245463d22687474703a2f2f736f75726365666f7267652e6e65742f70726f6a656374732f647261676f6e676f7365727665722f22205441524745543d5f626c616e6b3e536f75726365466f726765c1fad6aeb39ed1d0b7a2d2b33c2f413ea1a3, 'N', '2007-05-30 11:31:37'),
(1008, 10, 0xc1fad6aeb39eb5c4d4adcabcc2ebd1d0b7a2d4dabaceb4a6ccd6c2dba3bf, 'Y', '2007-05-30 11:31:37'),
(1009, 10, 0xd4da203c6120485245463d22687474703a2f2f6c697374732e736f75726365666f7267652e6e65742f6c697374732f6c697374696e666f2f647261676f6e676f7365727665722d646576656c22205441524745543d225f626c616e6b223ec1fad6aeb39ed1d0b7a2b5e7d7d3d3cabcfec1d0b1ed3c2f613ea1a3badcbbb6d3adc4fad7a2b2e1bcd3c8ebd1d0b7a2a1a3, 'N', '2007-05-30 11:31:37'),
(1010, 10, 0xc4c4d0a9b6d4bed6bbe1d3b0cfecced2b5c4b5c8bcb6a3bf, 'Y', '2007-05-30 11:31:37'),
(1011, 10, 0xc1fad6aeb39eb5c4c6c0b5c8cfb5cdb3d6bbbcc6cbe3d2d4cfc2c6e5bed6a3ba0d0a0d0a2a20cbabb7bdc6e5cad6b6bccdacd2e2c6e5bed6d3d0c6c0b5c8a3acd2d4bcb00d0a2a20b0d7b7bdd2d1beadcfc2c1cbd6c1c9d9203520cad6a1a3, 'N', '2007-05-30 11:31:37'),
(1012, 10, 0xced2c4dcb3c9ceaac1fad6aeb39eb5c4b7add2ebc8cbd4b1c2f0a3bf, 'Y', '2007-05-30 11:31:37'),
(1013, 10, 0xbfc9d2d4a1a3c7ebd4da203c4120485245463d222f70686f72756d2f6c6973742e7068703f663d3722205441524745543d5f626c616e6b3eb7add2ebc2dbccb33c2f413e20cce1b3f6c9eac7eba1a3b9dcc0edd5dfcda8b3a3b6bcbbe1d0edbfc9a1a3, 'Y', '2007-05-30 11:31:37'),
(1016, 10, 0xc1fad6aeb39ecab9d3c3cab2e7dbcea7c6e5b9e6d4f2a3bf, 'Y', '2007-05-30 11:31:37'),
(1017, 10, 0xc1fad6aeb39eb4f3d6c2cab9d3c3c8d5b1becea7c6e5b9e6d4f220a9a420b2bbb9fdd4dac8c3d7d3cebbd6c3a3acc6e5c5ccb4f3d0a1d3ebcab1cfdeb5c4c9e8b6a8c9cfa3acc1fad6aeb39ed4a4c9e8d1a1cfeeb2a2b2bbb7fbbacfd5fdcabdc8d5b1becea7c6e5b9e6d4f2a3acb5abcac7cbc6baf5b1c8bdcfcacabacfbbd8bacfd6c6cea7c6e5a1ad0d0a0d0abcf2b5a5cbb5a3acc1fad6aeb39e3c756c3e3c6c693eb8f9beddc6e5cad6b6d4c6e5c5ccb5c4b5e3bfd5c0b4bcc6b7d6a3ac0d0a3c6c693ec3bbd3d0b3acbcb6bdd9b9e6d4f2a3ac0d0a3c6c693ebdfbd6b9d7d4cce1a3ac0d0a3c6c693ec8ddd0edd7d4d3c9cebbd6c3c8c3d7d3a1a33c2f756c3e, 'N', '2007-05-30 11:31:37'),
(1019, 10, 0xbbd8bacfd6c6, 'Y', '2007-05-30 11:31:37'),
(1020, 10, 0x5475726e2d6261736564a3babbd8bacfd6c6b5c4d3cecfb7cac7b7c7cdaccab1bdf8d0d0a1a3cbabb7bdb2bbd0e8d2aacdaccab1d4dab3a1a3acbfc9d2d4d3d0cab1bce4cab1b2c5cde6a1a3c0fdc8e7bbd8bacfd6c6b5c4cea7c6e5bfc9cdb8b9fdd0c5bcfea3acb5e7d7d3d3cabcfea3acbbf2d4dac1fad6aeb39ed5e2c0efcde6a1a3d2b2c7ebb2cebfbc203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f6661712e7068703f726561643d74266361743d3323456e747279313533223ecab5cab1d6c63c2f613ea1a3, 'Y', '2007-05-30 11:31:37'),
(1021, 10, 0xcab5cab1d6c6, 'Y', '2007-05-30 11:31:37'),
(1022, 10, 0x5265616c2d74696d65a3bacab5cab1d6c6d3cecfb7cac7cdaccab1bdf8d0d0b5c4a1a3cbabb7bdb1d8d0ebcdaccab1d4dab3a1b2c5c4dccde6a1a3d5fbb3a1d3cecfb7d2bbb4cebecdbde1caf8a1a3c0fdc8e7cab5cab1cea7c6e5d2aad4dad2bbb8f6d5e6b5c4c6e5c5ccc9cfbdf8d0d0a3acbbf2cdb8b9fdcab5cab1cea7c6e5cdf8d5bec0b4cde6a1a3d2b2c7ebb2cebfbc203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f6661712e7068703f726561643d74266361743d3323456e747279313532223ebbd8bacfd6c63c2f613ea1a3, 'Y', '2007-05-30 11:31:37'),
(1025, 10, 0x4576656e2067616d65a3bac3bbd3d0203c6120687265663d226661712e7068703f726561643d74266361743d33353723456e7472793937223ec8c3d7d33c2f613e20b5c4c6e5bed6a1a3d3c9d1fbc7ebb5c4b6d4cad6c9e8b6a8203c6120687265663d226661712e7068703f726561643d74266361743d3323456e74727939223eccf9c4bf3c2f613ea1a3, 'Y', '2007-05-30 11:31:37'),
(1036, 10, 0xcedebbeeb6afb5c4c6e5cad6b8f6c8cbd7cac1cfbacecab1bbe1b1bbd2c6b3fda3bf, 'N', '2007-10-01 07:26:26'),
(1037, 10, 0xd3c0d4b6b2bbbbe1a1a3cbfbc3c7d6bbbbe1b1bbb1eacabecedebbeeb6afa3acb4d3b6d4bed6d6d0b5c4c6e5cad6c1d0b1edc9cfcffbcaa7a1a3, 'N', '2007-10-01 07:26:26'),
(1038, 10, 0xced2bfc9d2d4bfbfb8a8d6facab9d7d4bcbac6e5c1a6b8fcc7bfc2f0a3bf, 'Y', '2007-05-30 11:31:37'),
(1039, 10, 0xb5b1c8bbbfc9d2d4a1a3b6c1cae9a3acdab5c6e5a3acd3ebbcc6cbe3bbfab6d4dec8a3acd3ebc6e4cbfcc6e5cad6ccd6c2dba1a3c2dbccb3bfc9d2d4bfb4b5bdd5e2c0efd0edb6e0c6e5cad6a9a4cbb5b2bbb6a8c8abb2bfa9a4bbe1d1a1d4f1d2d4c9cfb5c4d7f7b7a8a1a3, 'N', '2007-05-30 11:31:37'),
(1042, 10, 0xced2d2aac8e7baceb5c7b3f6a3bf, 'Y', '2007-05-30 11:31:37'),
(1043, 10, 0xd6bbd2aab5e3d1a1c8cebacecdf8d2b3d3d2cfc2bdc7b5c422b5c7b3f622a1a3c8e7b9fb20333020c8d5c3bbb5c7c8eb2044475320a3accfb5cdb320636f6f6b696520becdbbe1b9fdc6daa3acbdabc4fab5c7b3f6a1a3, 'Y', '2007-05-30 11:31:37'),
(1156, 10, 0xb5e7d3cacda8d6aacac7cab2c3b43f, 'Y', '2007-05-30 11:31:37'),
(1157, 10, 0xb5b1c4fad4dab8f6c8cbc9e8b6a8d1a1b6a8b5c4cac2bcfea3a8c8e7cad5b5bdd0c5bcfea3acb6d4cad6c2e4d7d3a3a9b7a2c9facab1a3acbfc9d2d4b4abcbcdb5e7d3cacda8d6aaa1a30d0a0d0ac8e7b9fbc4fad4dacac2bcfeb7a2c9fabaf3d2bbd0a1cab1c4dab6bcc3bbd3d0c0b4b5bdd5e2c0efa3accfb5cdb3becdbbe1b4abcbcdb5e7d3cab5bdc4fad4dab8f6c8cbd7cac1cfcbf9c1f4cfc2b5c4b5e7d3cab5d8d6b7a1a30d0a0d0acfb5cdb3d6bbbbe1b4abcbcdd2bbb7e2b5e7d3cacda8d6aac4fad3d0d0c5bcfebbf2b5c8b4fdc4fac2e4d7d3a1a3b4abcbcdd3cabcfed6aebaf3a3acc8f4c1edd3d0cad5d0c5bbf2b5c8b4fdc2e4d7d3b7a2c9faa3acb5abcac7c4fac9d0ceb4b5c7c8ebd5e2c0efcdf8d5bea3accfb5cdb3b2bbbbe1d4d9b4abcbcdc1edd2bbb7e2b5e7d3caa1a30d0a0d0ad7a2a3bac8e7b9fbc4facab9d3c3b3ccd0f2a3a8c0fdc8e7c2e4d7d3cda8d6aac8edbcfea3a9c0b4bcecb2e92044475320cdf8d2b3a3acc4fabfc9c4dcb2bbbbe1cad5b5bdb5e7d3cacda8d6aaa3acd2f2ceaa2044475320bbe1b0d1b3ccd0f2b5c4c9a8c3e9cad3ceaab5c7c8ebcdf8d5bea1a30d0a0d0abbe1d3b0cfecc4fab5c7c8ebd7b4bff6b5c4cdf8d2b3cac7c4c7d0a9bbe1b5f7d5fbc4fa2022c9cfb4ceb5c7c8ebcab1bce42220b5c4cdf8d2b3a3a8bbf9b1bec9cfa3acb4f3b6e0cafdd3d02022b5c7c8ebceaa3a203c7374726f6e673ed5cabac53c2f7374726f6e673e2220d7d6d1f9b5c4cdf8d2b3becdbbe1d3b0cfecb8c3203c7374726f6e673ed5cabac53c2f7374726f6e673ea3a9a1a30d0ab5b1c8bba3acd5e2d6d6c7e9bff6d2b2cacad3c3d3dac8cbc0e0b5c4b2d9d7f7a1a3, 'N', '2007-06-07 07:11:35'),
(1158, 10, 0xceaacab2c3b4d0e8d2aa20636f6f6b696573203f, 'Y', '2007-05-30 11:31:37'),
(1159, 10, 0xc8cfd6a420636f6f6b69657320cac7d3c3c0b4b1e6cab6c4fab5c4c9edb7dda1a344475320cab9d3c3c4fae4afc0c0c6f7b4abc0b4b5c420636f6f6b69657320c0b4b1e6cab6cac7cbadbfaac6f4c1cbcdf8d2b3a1a3, 'Y', '2007-05-30 11:31:37'),
(1096, 10, 0xbbb6d3adb9e2c1d9c1fad6aeb39ed1d0b7a2b0e6a3a1, 'N', '2007-05-30 11:42:13'),
(1097, 10, 0xc8e7b9fbc4facfebcab5bccac9cfcdf8cde6c1fad6aeb39ea3acc7ebc9cf3c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e6574223e687474703a2f2f7777772e647261676f6e676f7365727665722e6e65743c2f613e, 'Y', '2007-05-30 11:42:13'),
(1602, 17, 0x4e6175637a796369656c, 'Y', '2013-08-20 22:23:16'),
(1606, 17, 0x537a756b616a, 'Y', '2013-08-20 23:09:41'),
(1099, 10, 0xcfeac7e9c7ebb6c122b3a3bcfbcecacce222a1a3, 'Y', '2007-10-01 09:15:58'),
(1112, 10, 0xd0c2d3c3bba7c7ebd7a2d2e2a3bac7ebd4c4b6c122b3a3bcfbcecacce222d6d0b9d8d3dac4fab5c4b3f5cabcb5c8bcb6c9e8b6a8a1a3, 'Y', '2007-10-01 09:15:58'),
(1212, 10, 0xbbb6d3adb9e2c1d9202573a3a1, 'Y', '2007-05-30 11:42:13'),
(1213, 10, 0xbbb6d3adb9e2c1d9202573a3ac202573c3e2b7d1257320b5c4202573cea7c6e5257320cdf8d5bea3acbfc9d2d4c8c3c4fac9eecbbccaecc2c7cfc2c6e5a1a3, 'Y', '2007-05-30 11:43:32'),
(1227, 10, 0xbcc4b3f6d0c2c3dcc2eba3a1, 'Y', '2007-05-30 11:43:32'),
(741, 10, 0xd6f7d0c5cfe4, 'Y', '2007-05-30 12:08:05'),
(742, 10, 0xc0acbbf8cdb0, 'Y', '2007-05-30 12:08:05'),
(744, 10, 0xbbd8b8b4cab1d2c6d6c1d7cac1cfbcd0, 'Y', '2007-05-30 12:08:05'),
(1106, 10, 0xbbd8b4f0c1d0b1ed, 'Y', '2007-05-30 12:08:05'),
(1108, 10, 0xbbd8b5bdd0c5bcfe, 'Y', '2007-05-30 12:08:05'),
(1109, 10, 0xd4a4c0c0, 'Y', '2007-05-30 12:08:05'),
(1110, 10, 0xcedeb4cbcad5bcfed5df, 'Y', '2007-05-30 12:08:05'),
(1276, 17, 0x676f647a696e61, 'Y', '2013-08-20 23:05:49'),
(1121, 10, 0xc7b0d2bbd4f2d0c5bcfe, 'Y', '2007-05-30 12:08:05'),
(1122, 10, 0xcfc2d2bbd4f2d0c5bcfe, 'Y', '2007-05-30 12:08:05'),
(1124, 10, 0xced2b7bd, 'Y', '2007-05-30 12:08:05'),
(1068, 10, 0xcda8cffed3efcec4, 'Y', '2007-05-30 12:22:26'),
(1069, 10, 0xcfc2, 'Y', '2007-05-30 12:22:26'),
(1073, 10, 0xcad6cafdbcc6cafd, 'Y', '2007-05-30 12:22:26'),
(1074, 10, 0xb2bbb3acb9fd313030, 'Y', '2007-05-30 12:22:26'),
(1077, 10, 0xd0a1c6e5c5ccb6d4bed6cab1, 'Y', '2007-05-30 12:22:26'),
(1078, 10, 0xc6e5c5ccc2b7cafdb4f3d3da, 'Y', '2007-05-30 12:22:26'),
(1079, 10, 0xcebbd6c3, 'Y', '2007-05-30 12:22:26'),
(1080, 10, 0xb8df, 'Y', '2007-05-30 12:22:26'),
(1081, 10, 0xbfed, 'Y', '2007-05-30 12:22:26'),
(1131, 10, 0xb1a7c7b8a3acd6c1c9d9d2aaa3a564ccecbcd9c6dab2c5c4dcd0ddbcd9a1a3, 'Y', '2007-05-30 12:22:26'),
(1210, 10, 0xb1e0bcadd0a1b4ab, 'Y', '2007-05-30 12:22:26'),
(1214, 10, 0xb6d4bed6d6d0b5c4c6e5cad6, 'Y', '2007-10-01 07:18:06'),
(1218, 10, 0xb1b3beb0, 'Y', '2007-05-30 12:22:26'),
(1223, 10, 0xcfd4cabed4dac4bfc7b0b6d4bed6, 'Y', '2007-05-30 12:22:26'),
(1225, 10, 0xd7cac1cfbcd0d2d1b5f7d5fba3a1, 'Y', '2007-05-30 12:22:26'),
(1226, 10, 0xb8fcd0c2, 'Y', '2007-05-30 12:22:26'),
(1245, 10, 0xd2feb2d8, 'Y', '2007-05-30 12:22:26'),
(1273, 10, 0xd7cac1cfbcd0d0e8c7e5bfd5b2c5c4dcc9beb3fda3a1, 'Y', '2007-05-30 12:22:26'),
(1279, 10, 0xd6d0cec428b7b1cce529287574662d3829, 'Y', '2007-05-30 12:22:26'),
(1280, 10, '', 'Y', '2007-05-30 12:22:26'),
(1281, 10, '', 'Y', '2007-05-30 12:22:26'),
(1234, 10, 0xbbb0cce2, 'Y', '2007-05-30 14:03:55'),
(1235, 10, 0xbbd8b5bdbbb0cce2, 'Y', '2007-05-30 14:03:55'),
(1237, 10, 0xcbd1d1b0, 'Y', '2007-05-30 14:03:55'),
(1238, 10, 0xc7d0bbbbc9f3bacb, 'Y', '2007-05-30 14:03:55'),
(1241, 10, 0xc9f3bacbd6d0, 'Y', '2007-05-30 14:03:55'),
(1243, 10, 0xd7f7d5df, 'Y', '2007-05-30 14:03:55'),
(1244, 10, 0xb5c8b4fd3c62723ebacbd7bc, 'Y', '2007-05-30 14:03:55'),
(1246, 10, 0xd2d1b1e0bcad, 'Y', '2007-05-30 14:03:55'),
(1251, 10, 0xbacbd7bc, 'Y', '2007-05-30 14:03:55'),
(1252, 10, 0xceb4cda8b9fd, 'Y', '2007-05-30 14:03:55'),
(1253, 10, 0xccf9cec4, 'Y', '2007-05-30 14:03:55'),
(1254, 10, 0xccf9cec4b5c8b4fdbacbd7bc, 'Y', '2007-05-30 14:03:55'),
(1255, 10, 0xc2dbccb3, 'Y', '2007-05-30 14:03:55'),
(1256, 10, 0xc9f3bacb, 'Y', '2007-05-30 14:03:55'),
(1257, 10, 0xbbb0cce2, 'Y', '2007-05-30 14:03:55'),
(1258, 10, 0xd7f7d5df, 'Y', '2007-05-30 14:03:55'),
(1259, 10, 0xccf9cec4, 'Y', '2007-05-30 14:03:55'),
(1260, 10, 0xd7eebaf3ccf9cec4, 'Y', '2007-05-30 14:03:55'),
(1261, 10, 0xb1a7c7b8a3acc4e3c3bbbbf1b5c3d0edbfc9d4dac2dbccb3ccf9cec4, 'Y', '2007-05-30 14:03:55'),
(1262, 10, 0xb4cbccf9cec4b1d8d0ebbdd3cadcc9f3bacba3acbacbd7bcbaf3becdbbe1cfd4cabea1a3, 'Y', '2007-05-30 14:03:55'),
(1263, 10, 0xd0deb6a9c0facab7, 'Y', '2007-05-30 14:03:55'),
(1267, 10, 0xcbd1d1b0bde1b9fb, 'Y', '2007-05-30 14:03:55'),
(5723, 25, 0x436f7461726520454c4f, 'Y', '2014-11-26 10:16:34'),
(472, 8, 0xc2b2c5e9a4a4a4e5, 'Y', '2007-06-02 08:26:29'),
(1035, 8, 0xc2b2c5e9a4a4a4e5a15d7574662d38a15e, 'Y', '2007-06-02 08:26:29'),
(1279, 8, 0xc163c5e9a4a4a4e5a15d7574662d38a15e, 'Y', '2007-06-02 08:26:29'),
(1158, 11, 0x576161726f6d20636f6f6b696573206e6f646967207a696a6e3f, 'Y', '2007-06-04 14:57:29'),
(1267, 11, 0x5a6f656b20726573756c74616174, 'Y', '2007-06-04 14:57:29'),
(1270, 11, 0x416c6c65207761636874656e64652070617274696a656e, 'Y', '2007-06-04 15:49:02'),
(1271, 11, 0x4765736368696b7465207761636874656e64652070617274696a656e, 'Y', '2016-07-27 18:54:20'),
(1273, 11, 0x45656e206d6170206d6f6574206c656567207a696a6e206f6d2064657a652074652076657277696a646572656e, 'Y', '2016-07-29 15:17:36'),
(1279, 11, 0x4368696e6565732028547261646974696f6e65656c2920287574662d3829, 'Y', '2007-06-04 15:49:02'),
(1280, 11, 0x5475726b73, 'Y', '2007-06-04 15:49:02'),
(1281, 11, 0x486f6e6761617273, 'Y', '2007-06-04 15:49:02'),
(1004, 18, 0x436f6d6520636920736920636f6d706f727461206e656c20666f72756d3f, 'Y', '2007-06-05 18:34:15'),
(1005, 18, 0xc820706f73736962696c652074726f76617265206465692076616c69646920737567676572696d656e7469206e656c6c65203c6120687265663d22687474703a2f2f7777772e666171732e6f72672f726663732f726663313835352e68746d6c223e4c696e656520677569646120616c6c61204e6574697175657474653c2f613e2e205475747461766961206573736520736f6e6f206d6f6c746f206c756e676865206461206c6567676572652e20556e612076657273696f6e65207269646f7474612c20636f6e74656e656e7465206c276964656120696e2067656e6572616c652c20e820646973706f6e6962696c6520717569203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f70686f72756d2f726561642e7068703f663d3426693d3339323626743d33393236223e207468697320666f72756d207468726561643c2f613e2e, 'N', '2007-06-05 18:34:15'),
(83, 36, 0x56c3a172c3b3746572656d, 'Y', '2014-02-16 21:30:20'),
(84, 36, 0x53616ac3a17420696e66c3b36b, 'Y', '2007-06-30 09:01:06'),
(88, 36, 0x46656c6861737a6ec3a16cc3b36b, 'Y', '2007-06-30 09:01:06'),
(89, 36, 0x4ac3a174737a6dc3a16b, 'Y', '2007-07-27 14:51:16'),
(100, 36, 0xc3a973, 'Y', '2007-06-30 09:01:06'),
(109, 36, 0x4ac3a174737a6d612066656c76c3a97665, 'Y', '2007-07-27 14:51:16'),
(132, 36, 0x4944, 'Y', '2007-06-30 09:01:06'),
(134, 36, 0x4ec3a976, 'Y', '2007-06-30 09:01:06'),
(201, 36, 0x417a6f6e6f73c3ad74c3b3, 'Y', '2007-06-30 09:01:06'),
(205, 36, 0x4265736f726f6cc3a173, 'Y', '2007-06-30 09:01:06'),
(230, 36, 0x4ac3a174737a6d61, 'Y', '2007-07-27 14:51:16'),
(231, 36, 0x506173737a6f6cc3a173, 'Y', '2007-06-30 09:01:06'),
(232, 36, 0x4ac3a174737a6d612074c3b6726cc3a97365, 'Y', '2007-07-27 14:51:16'),
(235, 36, 0x46656c6164c3a173, 'Y', '2007-06-30 09:01:06'),
(236, 36, 0x534746206c6574c3b66c74c3a97365, 'Y', '2007-06-30 09:01:06'),
(237, 36, 0x556772c3a1732061206bc3b6762e206ac3a174737a6dc3a17261, 'Y', '2007-07-27 14:51:16'),
(253, 36, 0x4ac3a174737a6d612074c3b672c3b66c766521, 'Y', '2007-07-27 14:51:16'),
(273, 36, 0x537a6162c3a16c796f6b, 'Y', '2007-06-30 09:01:06'),
(308, 36, 0x43c3ad6d7a657474, 'Y', '2007-06-30 09:01:06'),
(310, 36, 0x46656c6164c3b3, 'Y', '2007-06-30 09:01:06'),
(330, 36, 0x466568c3a972, 'Y', '2007-06-30 09:01:06'),
(331, 36, 0x46656b657465, 'Y', '2007-06-30 09:01:06'),
(348, 36, 0x426566656a657a657474206ac3a174737a6dc3a16b, 'Y', '2007-07-27 14:51:16'),
(349, 36, 0x467574c3b3206ac3a174737a6dc3a16b, 'Y', '2007-07-27 14:51:16'),
(352, 36, 0x736766, 'Y', '2007-06-30 09:01:06'),
(360, 36, 0x537ac3ad6e, 'Y', '2007-06-30 09:01:06'),
(361, 36, 0x4dc3a9726574, 'Y', '2007-06-30 09:01:06'),
(362, 36, 0x48656e64696b6570, 'Y', '2014-02-23 17:30:24'),
(363, 36, 0x4b6f6d69, 'Y', '2007-06-30 09:01:06'),
(364, 36, 0x4cc3a970c3a973656b, 'Y', '2007-06-30 09:01:06'),
(368, 36, 0x55746f6c73c3b3206cc3a970c3a973, 'Y', '2014-02-23 17:29:15'),
(370, 36, 0x4967656e, 'Y', '2007-06-30 09:01:06'),
(371, 36, 0x4e656d, 'Y', '2007-06-30 09:01:06'),
(374, 36, 0x467574c3b3206ac3a174737a6dc3a16b, 'Y', '2007-07-27 14:54:04'),
(375, 36, 0x426566656a657a657474206ac3a174737a6dc3a16b, 'Y', '2007-07-27 14:54:04'),
(396, 36, 0xc39c7a656e6574206bc3bc6c64c3a97365, 'Y', '2007-06-30 09:01:06'),
(397, 36, 0x467574c3b3, 'Y', '2007-06-30 09:01:06'),
(398, 36, 0x426566656a657a657474, 'Y', '2007-06-30 09:01:06'),
(409, 36, 0x4475706c61206ac3a174737a6d61, 'Y', '2007-07-27 14:52:41'),
(412, 36, 0x4d6567796a6567797ac3a973, 'Y', '2007-06-30 09:01:06'),
(414, 36, 0x4964c5916c696d6974, 'Y', '2007-06-30 09:01:06'),
(80, 36, 0x42656a656c656e746b657a7665, 'Y', '2007-06-30 09:03:25'),
(81, 36, 0x4e696e63732062656a656c656e746b657a7665, 'Y', '2007-06-30 09:03:17'),
(82, 36, 0x5374c3a17475737a, 'Y', '2007-06-30 09:03:17'),
(85, 36, 0xc39c7a656e6574656b, 'Y', '2007-06-30 09:03:17'),
(86, 36, 0xc39c7a656e65746bc3bc6c64c3a973, 'Y', '2007-06-30 09:03:17'),
(87, 36, 0x4d656768c3ad76c3a173, 'Y', '2007-06-30 09:03:17'),
(90, 36, 0x466f7264c3ad74c3a173, 'Y', '2007-06-30 09:03:17'),
(91, 36, 0x46c3b372756d6f6b, 'Y', '2007-06-30 09:03:17'),
(92, 36, 0x4759494b, 'Y', '2007-06-30 09:03:17'),
(93, 36, 0x4f6c64616c74c3a9726bc3a970, 'Y', '2014-02-16 21:30:43'),
(94, 36, 0x446f6b756d656e74c3a16369c3b3, 'Y', '2007-06-30 09:03:17'),
(96, 36, 0x41646d696e, 'Y', '2007-06-30 09:03:17'),
(97, 36, 0x4b696a656c656e746b657ac3a973, 'Y', '2007-06-30 09:03:17'),
(763, 36, 0x417267656e74c3ad6e61, 'Y', '2007-07-27 14:56:23'),
(765, 36, 0x4175737a7472c3a16c6961, 'Y', '2007-07-27 14:56:23'),
(766, 36, 0x4175737a74726961, 'Y', '2007-07-27 14:56:23'),
(767, 36, 0x417a657262616a647a73c3a16e, 'Y', '2007-07-27 14:56:23'),
(768, 36, 0x426168616dc3a16b, 'Y', '2007-07-27 14:56:23'),
(770, 36, 0x4261726261646f73, 'Y', '2007-07-27 14:56:23'),
(771, 36, 0x42616e676c61646573, 'Y', '2007-07-27 14:56:23'),
(773, 36, 0x42656c6769756d, 'Y', '2007-07-27 14:56:23'),
(780, 36, 0x4272617ac3ad6c6961, 'Y', '2007-07-27 14:56:23'),
(787, 36, 0x4b616e616461, 'Y', '2007-07-27 14:56:23'),
(790, 36, 0x4373c3a164, 'Y', '2007-07-27 14:56:23'),
(791, 36, 0x4368696c65, 'Y', '2007-07-27 14:56:23'),
(792, 36, 0x4bc3ad6e61, 'Y', '2007-07-27 14:56:23'),
(793, 36, 0x4b6f6c756d626961, 'Y', '2007-07-27 14:56:23'),
(797, 36, 0x436f7374612052696361, 'Y', '2007-07-27 14:56:23'),
(798, 36, 0x456c6566c3a16e7463736f6e7470617274, 'Y', '2007-07-27 14:56:23'),
(799, 36, 0x486f7276c3a1746f72737ac3a167, 'Y', '2007-07-27 14:56:23'),
(800, 36, 0x4b756261, 'Y', '2007-07-27 14:56:23'),
(801, 36, 0x436970727573, 'Y', '2007-07-27 14:56:23'),
(803, 36, 0x44c3a16e6961, 'Y', '2007-07-27 14:56:23'),
(1076, 23, 0xe980b2e5b195e58299e88083, 'Y', '2007-08-16 13:27:46'),
(1083, 23, 0xe7bdaee79fb3e381aee6a899e6ba96e9858de7bdaee381afe8a681e69c9be38195e3828ce381a6e38184e381bee38199e38082, 'Y', '2007-08-16 13:27:46'),
(1084, 23, 0xe6a899e6ba96e9858de7bdae, 'Y', '2007-08-16 13:27:46'),
(1085, 23, 0xe6adbbe381abe79fb3e38292e58db0e38197e381a6e4b88be38195e38184e38082e7b582e3828fe381a3e3819fe38289e380812573e3808ce5ae8ce4ba86e3808d2573e38292e68abce38197e381a6e4b88be38195e38184e38082, 'Y', '2007-08-16 13:29:02'),
(1086, 23, 0xe38182e38192e381afe381be, 'Y', '2007-08-16 13:27:46'),
(1087, 23, 0xe58299e88083, 'Y', '2007-08-16 13:27:46'),
(1088, 23, 0xe58299e88083e4bb98e3818de381ae534746e38292e38380e382a6e383b3e383ade383bce38389e38199e3828b, 'Y', '2007-08-16 13:27:46'),
(1089, 23, 0xe782b9e695b0, 'Y', '2007-08-16 13:27:46'),
(1090, 23, 0xe6898be795aae38292e8a1a8e7a4bae38199e3828b, 'Y', '2007-08-16 13:27:46'),
(1091, 23, 0xe6ae8be3828ae69982e99693, 'Y', '2007-08-16 13:27:46'),
(1092, 23, 0xe7ad89e7b49ae38199e3828be382b2e383bce383a0, 'Y', '2007-08-16 13:27:46'),
(1093, 23, 0xe58299e88083e38292e8a1a8e7a4ba, 'Y', '2007-08-16 13:27:46'),
(1094, 23, 0xe58299e88083e38292e4bf9de5ad98e38199e3828b, 'Y', '2007-08-16 13:27:46'),
(1095, 23, 0xe58299e88083e38292e99aa0e38199, 'Y', '2007-08-16 13:27:46'),
(1111, 23, 0xe7ad89e7b49ae382b0e383a9e38395, 'Y', '2007-08-16 13:27:46'),
(1034, 17, 0x6b6174616c6ff1736b69, 'Y', '2013-08-20 22:13:08'),
(5450, 11, 0x4d696a6e207761636874656e64652070617274696a656e, 'Y', '2016-07-27 19:38:22'),
(1211, 23, 0xe6898be795aa, 'Y', '2007-08-16 13:27:46'),
(1270, 23, 0xe794b3e38197e8bebce381bfe4b8ade382b2e383bce383a0, 'Y', '2007-08-16 13:27:46'),
(1271, 23, 0xe981a9e58887e381aae794b3e38197e8bebce381bfe4b8ade5afbee5b180e381aee381bfe38292e8a1a8e7a4bae38199e3828b, 'Y', '2007-08-16 13:27:46'),
(1008, 18, 0x446f7627e820636865207669656e6520646973637573736f206c6f207376696c7570706f2064656c20636f6469636520736f7267656e746520646920447261676f6e3f, 'Y', '2007-08-23 14:16:59'),
(1009, 18, 0x526563656e74656d656e74652c206c61206d616767696f722070617274652064656c6c652064697363757373696f6e692073756c6c6520636172617474657269737469636865207369206661206e656920666f72756d204447532c206f20646972657474616d656e74652074726120676c69207376696c75707061746f72692070657220652d6d61696c2c206f20696e20616c63756e6920666f72756d206469207376696c7570706f207370656369616c6520286e6f726d616c6d656e7465206e6173636f73746f29206469204447532e0d0a0d0a496e207061737361746f2c20e8207374617461207574696c697a7a617461206c61203c6120485245463d22687474703a2f2f6c697374732e736f75726365666f7267652e6e65742f6c697374732f6c697374696e666f2f647261676f6e676f7365727665722d646576656c22205441524745543d225f626c616e6b223e204d61696c696e676c69737420737520536f75726365466f7267652e6e6574203c2f20613e2c206d6120e820737461746f20757361746120756e20706f202764692074656d706f2066612e, 'Y', '2011-02-10 17:11:57'),
(1158, 18, 0x5065726368e920736f6e6f206e6563657373617269206920636f6f6b69653f, 'Y', '2007-08-23 14:18:47'),
(1159, 18, 0x4920636f6f6b696520646920617574656e746963617a696f6e6520736f6e6f206e65636573736172696f20706572207269636f6e6f7363657265206c277574656e74652e20444753207574696c697a7a61206920636f6f6b696520696e76696174692064616c2062726f7773657220706572206964656e746966696361726520636f6c756920636865207269636869656465206c6120706167696e612e, 'Y', '2007-08-23 14:18:47'),
(1038, 4, 0x44617266206963682048696c66736d697474656c2076657277656e64656e2c20756d207374e4726b6572207a752077657264656e3f, 'Y', '2007-12-07 02:09:42'),
(1039, 4, 0x4e6174fc726c6963682e2042fc63686572206c6573656e2c20476f2d50726f626c656d65206cf673656e2c205061727469656e20676567656e2064656e20526563686e657220737069656c656e2c204469736b757373696f6e656e206d697420616e646572656e20537069656c65726e2066fc6872656e202d2d206661737420616c6c65206d616368656e206461732065696e65206f64657220616e646572652e, 'Y', '2012-07-01 19:36:39'),
(1044, 4, 0x446965736572205a75672066fc687274207a752065696e6572206e696368742065726c61756274656e20537069656c706f736974696f6e2e, 'Y', '2007-08-28 02:53:47'),
(1045, 4, 0x446173205a6569746c696d697420697374207a75206e6965647269672e2020426974746520676562656e20536965207a756d696e646573742065696e65205374756e64652065696e2e, 'Y', '2007-08-28 02:53:47'),
(1046, 4, 0x446965204e75747a756e6720766f6e20436f6f6b69657320697374206175736765736368616c7465742e, 'Y', '2007-12-06 13:47:11'),
(1047, 4, 0x446572205a75672077757264652062657265697473206765737069656c742e, 'Y', '2007-08-28 02:53:47'),
(1048, 4, 0x5365697465206e6963687420676566756e64656e2e20204269747465206b6f6e74616b74696572656e205369652064656e2041646d696e6973747261746f722c20756e6420696e666f726d696572656e205369652069686e20766f6d205a65697470756e6b7420646573204665686c6572732c20756e64207765697465726520496e666f726d6174696f6e656e2c2077656c63686520666573747374656c6c656e2068656c66656e20646965205572736163686520646573204665686c657273207a752066696e64656e2e, 'Y', '2007-08-28 02:53:47'),
(1059, 4, 0x416e7a656967656e, 'Y', '2007-08-28 02:53:47'),
(1060, 4, 0x566572737465636b656e, 'Y', '2007-08-28 02:53:47'),
(1067, 4, 0x4d757474657273707261636865, 'Y', '2007-08-28 02:53:47'),
(1068, 4, 0x5370726163686b6f6d706574656e7a, 'Y', '2007-08-28 02:53:47'),
(1073, 4, 0x5a75676e756d6d6572696572756e67, 'Y', '2007-08-28 02:53:47'),
(1093, 4, 0x4e6f74697a656e20616e7a656967656e, 'Y', '2007-08-28 02:54:17'),
(1094, 4, 0x4e6f74697a656e2073706569636865726e, 'Y', '2007-08-28 02:54:17'),
(1095, 4, 0x4e6f74697a656e2076657262657267656e, 'Y', '2007-08-28 02:54:17'),
(1050, 4, 0x446965204e6163687269636874206b6f6e6e7465206e6963687420676566756e64656e2077657264656e2e, 'Y', '2007-08-28 02:57:48'),
(1053, 4, 0x4469657365722042656e75747a65722069737420626572656974732041646d696e6973747261746f722e, 'Y', '2007-08-28 02:57:48'),
(1055, 4, 0x537461747573205253532046656564, 'Y', '2007-08-28 02:57:48'),
(1076, 4, 0x50726976617465204e6f74697a656e207a757220506172746965, 'Y', '2007-08-28 02:57:48'),
(1079, 4, '', 'Y', '2007-08-28 02:57:48'),
(1080, 4, 0x48f66865, 'Y', '2007-08-28 02:57:48'),
(1081, 4, 0x427265697465, 'Y', '2007-08-28 02:57:48'),
(1082, 4, 0x53656e64652050617373776f7274, 'Y', '2007-08-28 02:57:48'),
(1084, 4, 0x5374616e64617264706c61747a696572756e67, 'Y', '2007-08-28 02:57:48'),
(1086, 4, 0x476566616e67656e65, 'Y', '2007-08-28 02:57:48'),
(1087, 4, 0x4b6f6d6d656e74617265, 'Y', '2007-08-28 02:57:48'),
(1088, 4, 0x5347462d4461746569206d6974204b6f6d6d656e746172656e20686572756e7465726c6164656e, 'Y', '2007-08-28 02:57:48'),
(1089, 4, 0x5ae4686c7765697365, 'Y', '2007-08-28 02:57:48'),
(1090, 4, 0x426574726163687465205a7567, 'Y', '2007-08-28 02:57:48'),
(1091, 4, 0xdc6272696765205a656974, 'Y', '2007-08-28 02:57:48'),
(1092, 4, 0x42657765727465746520506172746965, 'Y', '2007-08-28 02:57:48'),
(1042, 4, 0x576965206b616e6e20696368206d6963682061626d656c64656e3f, 'Y', '2007-08-28 03:01:50'),
(1043, 4, 0x4b6c69636b656e20536965206175662064656e204c696e6b2041626d656c64656e2072656368747320756e7465722065696e65722053656974652e202046616c6c7320536965206ce46e67657220616c73203330205461676520447261676f6e206e696368742076657277656e64656e2c2077657264656e20536965206175746f6d61746973636820616267656d656c6465742e, 'Y', '2007-12-07 02:09:42'),
(1049, 4, 0x4465722042656e75747a65726e616d6520656e7468e46c7420756e65726c6175627465205a65696368656e2e20204175737363686c6965df6c69636820612d7a2c20412d5a2c20302d3920756e64202d5f2b2073696e642065726c617562742c20776f626569206465722042656e75747a65726e616d65206d697420612d7a2c20412d5a20626567696e6e656e206d7573732e, 'Y', '2007-08-28 03:01:50'),
(1108, 4, 0x5a7572fc636b207a7572204e6163687269636874, 'Y', '2007-08-28 03:01:50'),
(1109, 4, 0x566f727363686175, 'Y', '2007-08-28 03:01:50'),
(1110, 4, 0x456d7066e46e676572206e6963687420676566756e64656e, 'Y', '2007-08-28 03:01:50'),
(1111, 4, 0x537069656c7374e4726b656e6772617068, 'Y', '2007-12-07 15:49:47'),
(1113, 4, 0x426577657274657465205061727469656e, 'Y', '2007-08-28 03:01:50'),
(1275, 17, 0x646e69, 'Y', '2013-08-20 23:05:49'),
(1121, 4, 0x566f72686572696765204e6163687269636874, 'Y', '2007-12-07 15:31:05'),
(1051, 4, 0x4c6569646572206b6f6e6e746520646965207a757220dc6265727365747a756e6720676577e4686c74652053707261636865206f64657220477275707065206e6963687420676566756e64656e2077657264656e2e202042697474652077656e64656e20536965207369636820616e2064656e20537570706f72742e, 'Y', '2007-09-01 20:08:00'),
(1069, 4, 0x446172756e746572, 'Y', '2007-09-01 20:08:00'),
(1074, 4, 0x4b65696e65205a61686c656e206772f6df657220616c73203130302076657277656e64656e2e, 'Y', '2007-12-07 15:47:08'),
(1077, 4, 0x4b6c65696e652042726574746572, 'Y', '2007-09-01 20:08:00'),
(1078, 4, 0x47726fdf65204272657474657220766f6e, 'Y', '2007-09-01 20:08:00');
INSERT INTO `Translations` (`Original_ID`, `Language_ID`, `Text`, `Translated`, `Updated`) VALUES
(1083, 4, 0x446965205374616e64617264706c61747a696572756e672064657220566f7267616265737465696e65207775726465206265616e74726167742e, 'Y', '2007-09-01 20:08:00'),
(1085, 4, 0x4269747465206d61726b696572656e205369652064696520746f74656e20537465696e6520756e64206b6c69636b656e205369652064616e6163682022466572746967222e, 'Y', '2007-12-06 11:18:02'),
(1096, 4, 0x57696c6c6b6f6d6d656e207a757220456e747769636b6c756e677376657273696f6e2064657320447261676f6e2d476f2d5365727665727321, 'Y', '2012-09-04 00:40:18'),
(1097, 4, 0x46616c6c7320536965206175662064656d20fc626c696368656e2053657276657220737069656c656e20776f6c6c656e2c207765636873656c6e20536965206269747465207a75203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e6574223e687474703a2f2f7777772e647261676f6e676f7365727665722e6e65743c2f613e2e, 'Y', '2007-12-07 15:14:28'),
(1521, 17, 0x506f6b61bf2077696572737a65, 'Y', '2013-08-20 22:23:16'),
(1557, 17, 0x4e6f7461746b69, 'Y', '2013-08-20 23:09:41'),
(1569, 17, 0x4f737461746e6961207a6d69616e61, 'Y', '2013-08-20 22:23:16'),
(1099, 4, 0x496e20646572204641512066696e64656e20536965207765697465726520496e666f726d6174696f6e656e2e, 'Y', '2007-12-07 15:14:28'),
(1102, 4, 0x476f476f4420446174656e62616e6b20756e6420456e7a796b6c6f70e4646965, 'Y', '2007-09-01 20:08:00'),
(1103, 4, 0x45696e652067726fdf6520446174656e62616e6b2070726f66657373696f6e656c6c6572205061727469656e2e, 'Y', '2007-09-01 20:08:00'),
(1104, 4, '', 'Y', '2012-07-29 12:52:42'),
(1105, 4, 0x45696e652077f66368656e746c69636865204b6f6c756d6d6e6520766f6e20526f622043616e205a65696a73742e, 'Y', '2007-09-01 20:08:00'),
(1106, 4, 0x4c697374652064657220416e74776f7274656e, 'Y', '2007-09-01 20:08:00'),
(1112, 4, 0x48696e776569732066fc7220416e66e46e6765723a204269747465206c6573656e2053696520646965204641512c20756d20496e666f726d6174696f6e656e20fc6265722064696520616e66e46e676c6963686520537069656c7374e4726b656e65696e7374656c6c756e67207a752062656b6f6d6d656e2e, 'Y', '2007-12-07 15:19:32'),
(1033, 17, 0x756b726169f1736b69, 'Y', '2013-08-20 22:13:08'),
(1120, 4, 0x506572696f64656e, 'Y', '2007-12-07 15:31:05'),
(1122, 4, 0x4ee463687374656e204e6163687269636874656e, 'Y', '2007-12-07 15:31:05'),
(1124, 4, 0x496368, 'Y', '2007-09-01 20:08:00'),
(1125, 4, 0x536f727469657265, 'Y', '2007-09-01 20:08:00'),
(1126, 4, 0x4e6f72646b6f726561, 'Y', '2007-09-01 20:08:00'),
(1127, 4, 0x53fc646b6f726561, 'Y', '2007-09-01 20:08:00'),
(1128, 4, '', 'Y', '2012-07-29 12:52:42'),
(1129, 4, 0x5365726269656e, 'Y', '2007-09-01 20:08:00'),
(1130, 4, 0x45726465, 'Y', '2007-09-01 20:08:00'),
(1131, 4, 0x5369652062656ef6746967656e206d696e64657374656e732025642055726c61756273746167652c20756d2065696e656e2055726c61756220626567696e6e656e207a75206bf66e6e656e2e, 'Y', '2007-12-07 15:49:47'),
(1156, 4, 0x5761732073696e6420452d4d61696c2d42656e61636872696368746967756e67656e3f, 'Y', '2007-12-06 14:24:39'),
(1157, 4, 0x4465722042656e61636872696368746967756e677370726f7a65737320626567696e6e74206d69742065696e656d2045726569676e6973202d2d2065696e65204e61636872696368742c2065696e205a7567206f64657220626569646573202d2d2c2064657373656e2041727420766f6e2049686e656e206175662049687265722050726f66696c736569746520617573676577e4686c742077757264652e2046616c6c732053696520696e6e657268616c622065696e6572205374756e646520447261676f6e206e6963687420626573756368656e2c20776972642065696e6520452d4d61696c20616e2064696520617566206465722050726f66696c736569746520616e6765676562656e6520416472657373652076657273616e64742c20696e2064657220616c6c652045726569676e697373652c2077656c636865207365697420496872656d206c65747a74656e2042657375636820616e6669656c656e2c2061756667656c69737465742077657264656e2e204a656465732045726569676e697320746175636874206e757220696e2065696e657220452d4d61696c206175662c206d65687266616368652042656e61636872696368746967756e67656e206572666f6c67656e206e696368742e0d0a0d0a48696e776569733a20536f6c6c74656e205369652065696e2050726f6772616d6d2076657277656e64656e2c20756d2065696e696765204447532d53656974656e207a75207363616e6e656e2c206b616e6e20657320766f726b6f6d6d656e2c206461737320536965206e69636874206469652042656e61636872696368746967756e67656e20657268616c74656e2c2077656c6368652053696520657277617274656e3b2044475320696e7465727072657469657274206469652050726f6772616d6d7a7567726966666520616c7320726567756ce472656e204265737563682e, 'N', '2007-12-07 02:09:42'),
(1282, 4, 0x447261676f6e2d5375636865, 'Y', '2007-12-07 02:09:42'),
(1158, 4, 0x576172756d2077657264656e20436f6f6b6965732062656ef6746967743f, 'Y', '2007-12-07 02:09:42'),
(1159, 4, 0x4461732041757468656e746966697a696572756e677373797374656d20697374206e6f7477656e6469672c20756d2053696520616c732064656e206b6f7272656b74656e2042656e75747a6572207a752065726b656e6e656e2e2044696520436f6f6b6965732077657264656e2062656ef6746967742c20756d20496872656e2042656e75747a65726e616d656e2066fc7220444753207a7567e46e676c696368207a75206d616368656e2e, 'Y', '2007-12-06 13:47:11'),
(1210, 4, 0x42696f677261666965206265617262656974656e, 'Y', '2007-12-07 15:49:47'),
(1156, 6, 0x5175e920736f6e206c6173206e6f74696669636163696f6e657320706f7220456d61696c3f, 'Y', '2007-09-04 09:04:55'),
(1158, 6, 0x506f72207175e9207365206e65636573697461207573617220636f6f6b6965733f, 'Y', '2007-09-04 09:04:55'),
(1159, 6, 0x4c617320636f6f6b69657320646520617574656e746963616369f36e20736f6e20726571756572696461732070617261207265636f6e6f63657274652e2044475320757361206c617320636f6f6b69657320656e76696164617320706f72207475206e6176656761646f722070617261206964656e7469666963617220717569e96e206861206361726761646f20756e612070e167696e612e, 'Y', '2007-09-04 09:04:55'),
(1279, 6, 0x4368696e6f2028547261646963696f6e616c2920285554462d3829, 'Y', '2007-09-04 09:04:55'),
(1280, 6, 0x547572636f, 'Y', '2007-09-04 09:04:55'),
(1281, 6, 0x48fa6e6761726f, 'Y', '2007-09-04 09:04:55'),
(1156, 18, 0x436f736120736f6e6f206c65206e6f7469666963686520706572206d61696c3f, 'Y', '2007-09-05 16:20:57'),
(996, 18, 0x5175616e646f206f6666726920646920696e697a6961726520756e61206e756f766120707261746974612c2068616920756e276f707a696f6e652c2063686520696c2074696d6572203c623e6e6f6e3c2f623e2073636f72726572612720696c2053616261746f2065206c6120446f6d656e696361, 'N', '2007-09-05 16:22:50'),
(169, 3, 0x57616e74696e6720796f7572206f776e20647261676f6e, 'Y', '2007-10-07 22:25:33'),
(478, 3, 0x4d6f726520696e666f726d6174696f6e2063616e20626520666f756e6420696e20746865203c6120687265663d226661712e706870223e4641513c2f613e2e205768656e20796f752068617665207175657374696f6e7320796f752061726520616c736f20656e636f75726167656420746f207375626d6974207468656d20696e206f6e65206f6620746865203c6120687265663d22666f72756d2f696e6465782e706870223e666f72756d733c2f613e2e, 'Y', '2007-10-07 22:34:46'),
(1412, 3, 0x416c6c, 'Y', '2007-10-07 22:55:01'),
(1630, 3, 0x416c6c, 'Y', '2007-10-07 22:57:24'),
(1631, 3, 0x596573, 'Y', '2007-10-07 22:57:24'),
(1632, 3, 0x4e6f, 'Y', '2007-10-07 22:57:24'),
(1413, 3, 0x42, 'Y', '2007-10-07 23:00:04'),
(1414, 3, 0x57, 'Y', '2007-10-07 23:00:04'),
(1520, 3, 0x4572726f72, 'Y', '2007-10-07 23:00:04'),
(1528, 3, 0x416c6c, 'Y', '2007-10-07 23:00:04'),
(1529, 3, 0x5465726d2072656c6576616e6365, 'Y', '2007-10-07 23:00:04'),
(1378, 5, 0x436f6e7461637473, 'Y', '2007-10-07 23:35:26'),
(1415, 5, 0x4eb0, 'Y', '2007-10-07 23:35:26'),
(1416, 5, 0x736766, 'Y', '2007-10-07 23:35:26'),
(1429, 5, 0x41647665727361697265, 'Y', '2007-10-07 23:35:26'),
(1430, 5, 0x50736575646f, 'Y', '2007-10-07 23:35:26'),
(1433, 5, 0x4e6976656175, 'Y', '2007-10-07 23:35:26'),
(1435, 5, 0x436f756c657572, 'Y', '2013-03-18 11:14:56'),
(1437, 5, 0x5461696c6c65, 'Y', '2007-10-07 23:35:26'),
(1438, 5, 0x48616e64692e, 'Y', '2007-10-07 23:35:26'),
(1439, 5, 0x4b6f6d69, 'Y', '2007-10-07 23:35:26'),
(1440, 5, 0x4e622e20636f757073, 'Y', '2013-04-23 14:40:28'),
(1443, 5, 0x436c617373e9, 'Y', '2007-10-07 23:35:26'),
(1444, 5, 0x4465726e69657220636f7570, 'Y', '2007-10-08 18:59:19'),
(1475, 5, 0x54656d70732072657374616e74, 'Y', '2007-10-07 23:35:26'),
(1520, 5, 0x457272657572, 'Y', '2007-10-07 23:35:26'),
(1521, 5, 0x4c69676e6573, 'Y', '2007-10-07 23:35:26'),
(1606, 5, 0x526563686572636865, 'Y', '2007-10-07 23:35:26'),
(1607, 5, 0x522e412e5a2e, 'Y', '2007-10-07 23:35:26'),
(1608, 5, 0x53796e74617865, 'Y', '2007-10-07 23:35:26'),
(1609, 5, 0x4e554d, 'Y', '2007-11-20 04:00:03'),
(1610, 5, 0x54455854, 'Y', '2007-11-20 04:00:03'),
(1611, 5, 0x636861ee6e65, 'Y', '2007-10-07 23:35:26'),
(1612, 5, 0x524154494e47, 'Y', '2007-11-20 04:00:03'),
(1613, 5, 0x6e697665617520696e636f7272656374, 'Y', '2007-10-07 23:35:26'),
(1614, 5, 0x434f554e545259, 'Y', '2007-11-20 04:00:03'),
(1617, 5, 0x546f75732070617973, 'Y', '2007-10-07 23:35:26'),
(1618, 5, 0x44415445, 'Y', '2007-10-07 23:35:26'),
(1619, 5, 0x6162736f6c7565, 'Y', '2007-10-07 23:39:25'),
(1620, 5, 0x616e6ee96573, 'Y', '2007-10-07 23:39:25'),
(1621, 5, 0x6d6f6973, 'Y', '2007-10-07 23:39:25'),
(1622, 5, 0x73656d61696e6573, 'Y', '2007-10-07 23:39:25'),
(1623, 5, 0x6a6f757273, 'Y', '2007-10-07 23:39:25'),
(1624, 5, 0x686575726573, 'Y', '2007-10-07 23:39:25'),
(1626, 5, 0x52454c44415445, 'Y', '2007-10-07 23:39:25'),
(1627, 5, 0x6162736f6c75, 'Y', '2007-10-07 23:39:25'),
(1628, 5, 0x6e6f6e2d6e756de97269717565, 'Y', '2007-10-07 23:39:25'),
(1629, 5, 0x756e652076616c657572206162736f6c756520706575742dea747265, 'Y', '2007-10-07 23:39:25'),
(1630, 5, 0x546f7574, 'Y', '2007-10-07 23:39:25'),
(1631, 5, 0x4f7569, 'Y', '2007-10-07 23:39:25'),
(1632, 5, 0x4e6f6e, 'Y', '2007-10-07 23:39:25'),
(1633, 5, 0x546f7574, 'Y', '2007-10-07 23:39:25'),
(1634, 5, 0x4f7569, 'Y', '2007-10-07 23:39:25'),
(1635, 5, 0x4e6f6e, 'Y', '2007-10-07 23:39:25'),
(1415, 3, '', 'Y', '2012-06-11 12:26:41'),
(1416, 3, '', 'Y', '2012-06-11 12:26:41'),
(1430, 3, '', 'Y', '2012-06-11 12:26:41'),
(1412, 5, 0x546f7574, 'Y', '2007-10-07 23:40:05'),
(1528, 5, 0x546f7574, 'Y', '2007-10-07 23:40:05'),
(1586, 5, 0x546f7574, 'Y', '2007-10-07 23:40:05'),
(1591, 5, 0x546f7574, 'Y', '2007-10-07 23:40:05'),
(1413, 5, 0x42, 'Y', '2007-10-08 01:11:04'),
(1414, 5, 0x57, 'Y', '2007-10-08 01:11:04'),
(1529, 5, 0x50657274696e656e6365, 'Y', '2007-10-08 01:11:04'),
(1532, 5, 0x546f7573206c657320656e766f6973, 'Y', '2007-10-08 01:11:04'),
(1533, 5, 0x5072656d69657220656e766f69, 'Y', '2007-10-08 01:11:04'),
(1537, 5, 0x4574656e647565, 'Y', '2007-10-08 01:35:28'),
(1538, 5, 0x44617465, 'Y', '2007-10-08 01:35:28'),
(1539, 5, 0x547269, 'Y', '2007-10-08 01:35:28'),
(1564, 5, 0x546f75746573, 'Y', '2007-10-08 01:35:28'),
(1565, 5, 0x456e20636f757273, 'Y', '2007-10-08 01:35:28'),
(1566, 5, 0x5465726d696ee96573, 'Y', '2007-10-08 01:35:28'),
(1587, 5, 0x4c69e973206175782070617274696573, 'Y', '2007-10-08 01:35:28'),
(1588, 5, 0x4e6f6e206c69e973206175782070617274696573, 'Y', '2007-10-08 01:35:28'),
(1637, 5, 0x4d6f6465206176616e63e9, 'Y', '2007-10-08 01:35:28'),
(1638, 5, 0x53434f5245, 'Y', '2007-11-20 04:00:03'),
(1640, 5, 0x74726f702064652073e9706172617465757273, 'Y', '2007-10-08 01:35:28'),
(1564, 3, '', 'Y', '2012-06-11 12:26:41'),
(1565, 3, '', 'Y', '2012-06-11 12:26:41'),
(1566, 3, '', 'Y', '2012-06-11 12:26:41'),
(1586, 3, '', 'Y', '2012-06-11 12:26:41'),
(1587, 3, '', 'Y', '2012-06-11 12:26:41'),
(1588, 3, '', 'Y', '2012-06-11 12:26:41'),
(1590, 3, '', 'Y', '2012-06-11 12:26:41'),
(1592, 3, '', 'Y', '2012-06-11 12:26:41'),
(5780, 36, 0x54c3b6626220696e666f726dc3a16369c3b3206d75746174c3a1736120657272c5916c3a205b25735d, 'Y', '2015-01-07 20:11:55'),
(1606, 3, '', 'Y', '2012-06-11 12:26:41'),
(1607, 3, '', 'Y', '2012-06-11 12:26:41'),
(1608, 3, '', 'Y', '2012-06-11 12:26:41'),
(1609, 3, '', 'Y', '2012-06-11 12:26:41'),
(1610, 3, '', 'Y', '2012-06-11 12:26:41'),
(1611, 3, '', 'Y', '2012-06-11 12:26:41'),
(1612, 3, '', 'Y', '2012-06-11 12:26:41'),
(1614, 3, '', 'Y', '2012-06-11 12:26:41'),
(1617, 3, '', 'Y', '2012-06-11 12:26:41'),
(1618, 3, '', 'Y', '2012-06-11 12:26:41'),
(1626, 3, '', 'Y', '2012-06-11 12:26:41'),
(1627, 3, '', 'Y', '2012-06-11 12:26:41'),
(1636, 3, '', 'Y', '2012-06-11 12:26:41'),
(1637, 3, '', 'Y', '2012-06-11 12:26:41'),
(1638, 3, '', 'Y', '2012-06-11 12:26:41'),
(1640, 3, '', 'Y', '2012-06-11 12:26:41'),
(1642, 3, '', 'Y', '2012-06-11 12:26:41'),
(1643, 3, '', 'Y', '2012-06-11 12:26:41'),
(1644, 3, '', 'Y', '2012-06-11 12:26:41'),
(1645, 3, '', 'Y', '2012-06-11 12:26:41'),
(1646, 3, '', 'Y', '2012-06-11 12:26:41'),
(415, 3, '', 'Y', '2012-06-11 12:26:41'),
(1577, 3, '', 'Y', '2012-06-11 12:26:41'),
(1578, 3, '', 'Y', '2012-06-11 12:26:41'),
(1579, 3, '', 'Y', '2012-06-11 12:26:41'),
(1580, 3, '', 'Y', '2012-06-11 12:26:41'),
(1581, 3, '', 'Y', '2012-06-11 12:26:41'),
(1582, 3, '', 'Y', '2012-06-11 12:26:41'),
(1583, 3, '', 'Y', '2012-06-11 12:26:41'),
(1591, 3, '', 'Y', '2012-06-11 12:26:41'),
(1619, 3, '', 'Y', '2012-06-11 12:26:41'),
(1620, 3, '', 'Y', '2012-06-11 12:26:41'),
(1621, 3, '', 'Y', '2012-06-11 12:26:41'),
(1622, 3, '', 'Y', '2012-06-11 12:26:41'),
(1623, 3, '', 'Y', '2012-06-11 12:26:41'),
(1624, 3, '', 'Y', '2012-06-11 12:26:41'),
(1629, 3, '', 'Y', '2012-06-11 12:26:41'),
(1633, 3, '', 'Y', '2012-06-11 12:26:41'),
(1634, 3, '', 'Y', '2012-06-11 12:26:41'),
(1635, 3, '', 'Y', '2012-06-11 12:26:41'),
(1647, 3, '', 'Y', '2012-06-11 12:26:41'),
(1648, 3, '', 'Y', '2012-06-11 12:26:41'),
(1650, 3, '', 'Y', '2012-06-11 12:26:41'),
(1651, 3, '', 'Y', '2012-06-11 12:26:41'),
(1516, 3, '', 'Y', '2012-06-11 12:26:41'),
(1517, 3, '', 'Y', '2012-06-11 12:26:41'),
(1518, 3, '', 'Y', '2012-06-11 12:26:41'),
(1519, 3, '', 'Y', '2012-06-11 12:26:41'),
(1532, 3, '', 'Y', '2012-06-11 12:26:41'),
(1533, 3, '', 'Y', '2012-06-11 12:26:41'),
(1535, 3, '', 'Y', '2012-06-11 12:26:41'),
(1537, 3, '', 'Y', '2012-06-11 12:26:41'),
(1538, 3, '', 'Y', '2012-06-11 12:26:41'),
(1539, 3, '', 'Y', '2012-06-11 12:26:41'),
(1507, 5, 0x446f7373696572, 'Y', '2007-10-08 02:33:44'),
(1592, 5, 0x43686f697820646520646f737369657273, 'Y', '2007-10-08 02:34:50'),
(1595, 5, 0x4c6973746520646573206d65737361676573, 'Y', '2007-10-08 02:33:44'),
(1378, 34, 0xe881afe7b5a1e5908de596ae, 'Y', '2007-10-08 08:42:36'),
(1379, 34, 0xe5a496e8a780, 'Y', '2007-10-08 08:42:36'),
(1378, 8, 0xc170b5b8a657b3e6, 'Y', '2007-10-08 08:46:38'),
(1378, 10, 0xc1aac2e7c3fbb5a5, 'Y', '2007-10-08 10:01:33'),
(1378, 33, 0xe88194e7bb9ce5908de58d95, 'Y', '2007-10-08 10:01:52'),
(1436, 5, 0x436f756c657572, 'Y', '2013-03-18 11:14:56'),
(1575, 5, 0x436f756c657572206475206a6f75657572, 'Y', '2007-10-30 20:26:47'),
(1479, 5, 0x4e6f6d, 'Y', '2007-10-08 18:34:58'),
(1421, 5, 0x4a6f7565757220626c616e63, 'Y', '2007-10-08 18:35:23'),
(1417, 5, 0x4a6f75657572206e6f6972, 'Y', '2007-10-08 18:35:45'),
(1480, 5, 0x50617973, 'Y', '2007-10-08 18:39:05'),
(1481, 5, 0x416e6e6f746174696f6e73, 'Y', '2007-10-08 18:40:24'),
(1482, 5, 0x446973706f2e266e6273703b3f, 'Y', '2007-10-08 18:42:48'),
(1483, 5, 0x4e62722e, 'Y', '2007-10-08 22:28:39'),
(1577, 5, 0x50726f706f7274696f6e20646520766963746f69726573, 'Y', '2007-10-08 18:53:14'),
(1578, 5, 0x566963746f69726573207c2064e9666169746573, 'Y', '2007-10-08 18:53:14'),
(1579, 5, 0x566963746f69726573207c2064e96661697465732061752073636f7265, 'Y', '2007-10-08 18:53:14'),
(1580, 5, 0x566963746f69726573207c2064e966616974657320706172206162616e646f6e, 'Y', '2007-10-08 18:53:14'),
(1581, 5, 0x566963746f69726573207c2064e96661697465732061752074656d7073, 'Y', '2007-10-08 18:53:14'),
(1582, 5, 0x50617274696573206e756c6c657320284a69676f29, 'Y', '2007-10-08 18:53:14'),
(1583, 5, 0x5061727469657320617665632068616e6469636170, 'Y', '2007-10-08 18:53:14'),
(1584, 5, 0x48616e6469636170206d6178696d756d, 'Y', '2007-10-08 19:11:59'),
(1505, 5, 0x48616e64696361702063616c63756ce920286b6f6d6920616a757374e929, 'Y', '2007-10-08 19:13:23'),
(1576, 5, 0x546f74, 'Y', '2007-10-08 19:14:39'),
(1397, 5, 0x416a6f757465722064752074656d707320e0206c2761647665727361697265, 'Y', '2007-10-08 19:17:00'),
(1447, 5, 0x54656d70732064e9636f6d7074e90d0a6c65207765656b656e64, 'Y', '2015-06-13 16:22:24'),
(1503, 5, 0x506c6163656d656e740d0a7374616e64617264, 'Y', '2015-06-13 16:22:24'),
(1417, 3, '', 'Y', '2012-06-11 12:26:41'),
(1418, 3, '', 'Y', '2012-06-11 12:26:41'),
(1419, 3, 0x422e5374617274205261742e, 'Y', '2007-10-09 01:40:35'),
(1420, 3, '', 'Y', '2012-06-11 12:26:41'),
(1421, 3, '', 'Y', '2012-06-11 12:26:41'),
(1422, 3, '', 'Y', '2012-06-11 12:26:41'),
(1423, 3, 0x572e5374617274205261742e, 'Y', '2007-10-09 01:40:35'),
(1424, 3, '', 'Y', '2012-06-11 12:26:41'),
(1425, 3, 0x422e456e64205261742e, 'Y', '2007-10-09 01:40:35'),
(1426, 3, 0x422e5261742e44696666, 'Y', '2007-10-09 01:40:35'),
(1427, 3, 0x572e456e64205261742e, 'Y', '2007-10-09 01:40:35'),
(1428, 3, 0x572e5261742e44696666, 'Y', '2007-10-09 01:40:35'),
(1429, 3, '', 'Y', '2012-06-11 12:26:41'),
(1433, 3, '', 'Y', '2012-06-11 12:26:41'),
(6358, 6, 0x42fa6c6761726f, 'Y', '2015-06-21 05:13:31'),
(1435, 3, 0x436f6c, 'Y', '2007-10-09 01:40:35'),
(1436, 3, 0x436f6c73, 'Y', '2007-10-09 01:40:35'),
(1437, 3, '', 'Y', '2012-06-11 12:26:41'),
(1438, 3, 0x48, 'Y', '2007-10-09 02:07:08'),
(1439, 3, '', 'Y', '2012-06-11 12:26:41'),
(1441, 3, '', 'Y', '2012-06-11 12:26:41'),
(1442, 3, '', 'Y', '2012-06-11 12:26:41'),
(1443, 3, '', 'Y', '2012-06-11 12:26:41'),
(1444, 3, '', 'Y', '2012-06-11 12:26:41'),
(1446, 3, 0x4f70702e4c617374204163632e, 'Y', '2015-05-14 17:12:37'),
(1447, 3, 0x576b2e436c6f636b, 'Y', '2007-10-09 01:42:29'),
(1475, 3, '', 'Y', '2012-06-11 12:26:41'),
(1479, 3, '', 'Y', '2012-06-11 12:26:41'),
(1480, 3, '', 'Y', '2012-06-11 12:26:41'),
(1481, 3, '', 'Y', '2012-06-11 12:26:41'),
(1482, 3, '', 'Y', '2012-06-11 12:26:41'),
(1483, 3, 0x2347, 'Y', '2007-10-09 01:42:29'),
(1484, 3, 0x52756e2e, 'Y', '2007-10-09 01:42:29'),
(1485, 3, 0x46696e2e, 'Y', '2007-10-09 01:42:29'),
(1486, 3, '', 'Y', '2012-06-11 12:26:41'),
(1487, 3, '', 'Y', '2012-06-11 12:26:41'),
(1489, 3, '', 'Y', '2012-06-11 12:26:41'),
(1490, 3, '', 'Y', '2012-06-11 12:26:41'),
(1497, 3, '', 'Y', '2012-06-11 12:26:41'),
(1498, 3, '', 'Y', '2012-06-11 12:26:41'),
(1499, 3, '', 'Y', '2012-06-11 12:26:41'),
(1502, 3, '', 'Y', '2012-06-11 12:26:41'),
(1503, 3, 0x5374642e506c6163656d2e, 'Y', '2007-10-09 01:43:51'),
(1507, 3, '', 'Y', '2012-06-11 12:26:41'),
(1508, 3, '', 'Y', '2012-06-11 12:26:41'),
(1509, 3, '', 'Y', '2012-06-11 12:26:41'),
(1510, 3, '', 'Y', '2012-06-11 12:26:41'),
(1511, 3, '', 'Y', '2012-06-11 12:26:41'),
(1512, 3, '', 'Y', '2012-06-11 12:26:41'),
(1513, 3, '', 'Y', '2012-06-11 12:26:41'),
(1562, 16, 0xd1efe8f1eeea20eaeeedf2e0eaf2eee2, 'Y', '2012-10-14 14:46:03'),
(1515, 3, '', 'Y', '2012-06-11 12:26:41'),
(1554, 3, '', 'Y', '2012-06-11 12:26:41'),
(1555, 3, '', 'Y', '2012-06-11 12:26:41'),
(1556, 3, '', 'Y', '2012-06-11 12:26:41'),
(1557, 3, '', 'Y', '2012-06-11 12:26:41'),
(1558, 3, '', 'Y', '2012-06-11 12:26:41'),
(1440, 3, 0x234d, 'Y', '2007-10-09 01:46:05'),
(1525, 5, 0x7072656d696572206e6f6e2d6c75, 'Y', '2013-06-17 08:35:15'),
(1396, 23, 0xe7a2bae8aa8de38197e381a6e3818fe381a0e38195e38184e38082e3808ce68f90e587bae3808de38292e68abce38197e381a6e4b88be38195e38184e38082, 'Y', '2007-10-11 04:58:08'),
(1397, 23, 0xe79bb8e6898be381aee69982e99693e38292e8bfbde58aa0e38199e3828b, 'Y', '2007-10-11 04:58:08'),
(1398, 23, 0xe8a68be5ada6e88085e38292e8a1a8e7a4bae38199e3828b, 'Y', '2007-10-11 04:58:08'),
(1399, 23, 0xe8bfbde58aa0e38199e3828be69982e99693e381aee9878fe38292e981b8e38293e381a7e4b88be38195e38184e38082, 'Y', '2007-10-11 04:58:08'),
(1400, 23, 0xe3818ce79bb8e6898be381aee69982e99693e381abe8bfbde58aa0e38195e3828ce381bee38197e3819fe38082, 'Y', '2007-10-11 04:58:08'),
(1401, 23, 0xe5868de585a5e58a9be38199e3828be69982e381abe7a792e8aaade381bfe381aee8a8ade5ae9ae38292e382afe383aae382a2e38199e3828b, 'Y', '2007-10-11 04:58:08'),
(1402, 23, 0xe69982e99693e38292e8bfbde58aa0e38199e3828b, 'Y', '2007-10-11 04:58:08'),
(1403, 23, 0xe4b8ade6ada2, 'Y', '2007-10-11 04:58:08'),
(1579, 36, 0x506f6e746f7ac3a17373616c206e79657274203a207665737a74657474206ac3a174737a6dc3a16b20737ac3a16d61, 'Y', '2015-09-19 19:18:23'),
(98, 36, 0x6e6170, 'Y', '2007-10-12 02:02:44'),
(99, 36, 0x6e6170, 'Y', '2014-02-06 17:16:58'),
(226, 36, 0x506173737a6f6cc3a173, 'Y', '2007-10-12 02:02:44'),
(227, 36, 0x4ac3a174c3a96b2074c3b6726cc3a97365, 'Y', '2007-10-12 02:02:44'),
(229, 36, 0x506f6e74737ac3a16d, 'Y', '2007-10-12 02:02:44'),
(233, 36, 0x4bc3a9737a, 'Y', '2007-10-12 02:02:44'),
(324, 36, 0x56c3a16c61737a, 'Y', '2007-10-12 02:02:44'),
(342, 36, 0x4265736f726f6cc3a1732d67726166696b6f6e3a, 'Y', '2015-07-23 14:24:47'),
(366, 36, 0xc3897274c3a96b656c74, 'Y', '2007-10-12 02:02:44'),
(325, 36, 0xc39c7a656e6574, 'Y', '2007-10-12 02:03:50'),
(350, 36, 0x257320626566656a657a657474206ac3a174c3a96b6169, 'Y', '2007-10-12 02:03:50'),
(351, 36, 0x257320666f6c79616d617462616e206cc3a976c591206ac3a174c3a96b6169, 'Y', '2007-10-12 02:03:50'),
(399, 36, 0x4e79657274, 'Y', '2007-10-12 02:03:50'),
(400, 36, 0x5665737a74657474, 'Y', '2007-10-12 02:03:50'),
(406, 36, 0x486167796f6dc3a16e796f73, 'Y', '2007-10-12 02:03:50'),
(408, 36, 0x456779656e6cc591206ac3a174c3a96b206e69676972692d76656c, 'Y', '2007-10-12 02:03:50'),
(225, 36, 0x46656c6164c3a173, 'Y', '2007-10-12 02:04:45'),
(416, 36, 0x48c3a97476c3a9676920c3b37261, 'Y', '2007-10-12 02:04:45'),
(419, 36, 0x6373616b202573, 'Y', '2007-10-12 02:04:45'),
(420, 36, 0x46656c7665656e64c591206ac3a174c3a96b6f6b20737ac3a16d61, 'Y', '2007-10-12 02:04:45'),
(421, 36, 0x64616e, 'Y', '2007-10-12 02:04:45'),
(422, 36, 0x6b7975, 'Y', '2007-10-12 02:04:45'),
(425, 36, 0x4ac3a174c3a96b2066656c76c3a974656c65, 'Y', '2007-10-12 02:05:26'),
(426, 36, 0x4ac3a174c3a96b6f73, 'Y', '2007-10-12 02:05:26'),
(427, 36, 0x4ac3a174c3a96b6f6b20737ac3a16d61, 'Y', '2007-10-12 02:05:26'),
(428, 36, 0x48c3a97476c3a967c3a96e206973206d65677920617a20c3b372613f, 'Y', '2007-10-12 02:05:26'),
(429, 36, 0x54c3b6726cc3a973, 'Y', '2007-10-12 02:05:26'),
(430, 36, 0x437361746c616b6f7ac3a173, 'Y', '2007-10-12 02:06:47'),
(432, 36, 0x486167796f6dc3a16e796f7320656cc5916e792028302c35206b6f6d692c206861206e656d20656779656e6cc59129, 'Y', '2007-10-12 02:06:47'),
(437, 36, 0x416c6170206964c591, 'Y', '2007-10-12 02:06:47'),
(446, 36, 0x537ac3ad6e656b, 'Y', '2007-10-12 02:06:47'),
(238, 36, 0x54c3b6726cc3a9732061206d656766696779656c74656b206c697374c3a16ac3a172c3b36c, 'Y', '2007-10-12 02:08:38'),
(359, 36, 0x456c6c656e66c3a96c, 'Y', '2007-10-12 02:08:38'),
(373, 36, 0x48c3ad7664206d656720657a7420612066656c6861737a6ec3a16cc3b374, 'Y', '2007-10-12 02:08:38'),
(411, 36, 0x496e666f, 'Y', '2007-10-12 02:08:38'),
(447, 36, 0x4e6967697269, 'Y', '2007-10-12 02:08:38'),
(449, 36, 0x6a6170c3a16e, 'Y', '2014-02-06 17:17:23'),
(451, 36, 0x4b616e61646169, 'Y', '2007-10-12 02:08:38'),
(454, 36, 0x4bc3a9726c656b2068656c79657a6420656c20617a20656cc5916e796bc3b676656964, 'Y', '2007-10-12 02:08:38'),
(484, 36, 0x4a616e, 'Y', '2007-10-12 02:09:08'),
(485, 36, 0x466562, 'Y', '2007-10-12 02:09:08'),
(486, 36, 0xc3817072, 'Y', '2007-10-12 02:09:08'),
(487, 36, 0x4dc3a16a, 'Y', '2007-10-12 02:09:08'),
(488, 36, 0x4ac3ba6e, 'Y', '2007-10-12 02:09:08'),
(489, 36, 0x417567, 'Y', '2007-10-12 02:09:08'),
(490, 36, 0x537a657074, 'Y', '2007-10-12 02:09:08'),
(491, 36, 0x4f6b74, 'Y', '2007-10-12 02:09:08'),
(492, 36, 0x446563, 'Y', '2007-10-12 02:09:08'),
(495, 36, 0x4dc3a17263, 'Y', '2007-10-12 02:09:23'),
(496, 36, 0x4ac3ba6c, 'Y', '2007-10-12 02:09:23'),
(497, 36, 0x4e6f76, 'Y', '2007-10-12 02:09:23'),
(1396, 18, 0x5072656d6572652022496e766961222070657220636f6e6665726d617265, 'Y', '2007-10-13 22:47:16'),
(1397, 18, 0x41756d656e746120696c2074656d706f2064656c6c276176766572736172696f, 'Y', '2007-10-13 22:48:06'),
(1398, 18, 0x4d6f7374726120676c69206f737365727661746f7269, 'Y', '2007-10-13 22:48:19'),
(1399, 18, 0x536365676c69207175616e746f2074656d706f2061676769756e6765726520616c6c276176766572736172696f, 'Y', '2007-10-13 22:48:40'),
(1400, 18, 0x61676769756e746f20616c2074656d706f207072696e636970616c652064656c6c276176766572736172696f2e, 'Y', '2007-10-13 22:48:58'),
(1401, 18, 0x417a7a657261206c6520696d706f7374617a696f6e692064656c2062796f796f6d6920616c6c276174746f2064656c6c61206e756f766120696d6d697373696f6e65, 'Y', '2007-10-13 22:49:27'),
(1402, 18, 0x41676769756e67692074656d706f, 'Y', '2007-10-13 22:49:39'),
(1403, 18, 0x43616e63656c6c61, 'Y', '2007-10-13 22:49:51'),
(1578, 36, 0x4e79657274203a207665737a74657474206ac3a174737a6dc3a16b20737ac3a16d61, 'Y', '2015-09-19 19:18:23'),
(6100, 36, 0x50726976c3a174202861206ac3a174737a6d612076c3a96765207574c3a16e29, 'Y', '2015-09-19 18:16:23'),
(1412, 18, 0x5475747469, 'Y', '2010-04-02 16:56:48'),
(1413, 18, 0x4e65726f, 'Y', '2010-04-02 16:58:36'),
(1414, 18, 0x4269616e636f, 'Y', '2010-04-02 16:58:36'),
(1415, 18, '', 'Y', '2012-08-22 20:48:45'),
(1416, 18, '', 'Y', '2012-08-22 20:48:45'),
(1417, 18, 0x4e6f6d65206469206e65726f, 'Y', '2010-04-02 15:04:49'),
(1418, 18, 0x557365726964206469206e65726f, 'Y', '2010-04-02 15:04:49'),
(1419, 18, 0x477261646f20696e697a69616c65206469206e65726f, 'Y', '2010-04-02 15:04:49'),
(1420, 18, 0x477261646f206469206e65726f, 'Y', '2010-04-02 15:04:49'),
(1421, 18, 0x4e6f6d65206469206269616e636f, 'Y', '2010-04-02 15:04:49'),
(1422, 18, 0x557365726964206469206269616e636f, 'Y', '2010-04-02 15:04:49'),
(1423, 18, 0x477261646f20696e697a69616c65206469206269616e636f, 'Y', '2010-04-02 15:04:49'),
(1424, 18, 0x477261646f206469206269616e636f, 'Y', '2010-04-02 15:04:49'),
(1425, 18, 0x477261646f2066696e616c65206469206e65726f, 'Y', '2010-04-02 15:04:49'),
(1426, 18, 0x446966666572656e7a6120677261646f206469206e65726f, 'Y', '2010-04-02 15:04:49'),
(1427, 18, 0x477261646f2066696e616c65206469206269616e636f, 'Y', '2010-04-02 15:04:49'),
(1428, 18, 0x446966666572656e7a6120677261646f206469206269616e636f, 'Y', '2010-04-02 15:04:49'),
(1429, 18, 0x4176766572736172696f, 'Y', '2010-04-02 15:04:49'),
(1430, 18, '', 'Y', '2012-08-22 20:48:45'),
(2704, 6, 0x416e74696c6c617320486f6c616e6465736173, 'Y', '2015-06-18 20:29:23'),
(1433, 18, 0x477261646f, 'Y', '2010-04-02 15:04:49'),
(2688, 6, 0x49736c6173204d616c76696e6173, 'Y', '2015-06-17 05:50:04'),
(1435, 18, 0x436f6c6f7265, 'Y', '2010-04-02 15:09:10'),
(1436, 18, 0x436f6c6f7269, 'Y', '2010-04-02 15:09:10'),
(1437, 18, 0x44696d656e73696f6e65, 'Y', '2010-04-02 15:09:10'),
(1438, 18, '', 'Y', '2012-08-22 20:48:45'),
(1439, 18, '', 'Y', '2012-08-22 20:48:45'),
(1440, 18, 0x4d6f737365, 'Y', '2010-04-02 15:09:10'),
(1441, 18, 0x50756e74656767696f, 'Y', '2010-04-02 15:09:10'),
(1443, 18, 0x556666696369616c65, 'Y', '2010-04-02 15:56:02'),
(1444, 18, 0x556c74696d61206d6f737361, 'Y', '2010-04-02 15:09:10'),
(1446, 18, 0x556c74696d6f206163636573736f2064656c6c276176766572736172696f, 'Y', '2010-04-02 15:09:10'),
(1378, 18, 0x436f6e7461747469, 'Y', '2007-10-13 23:04:08'),
(1475, 18, 0x54656d706f207265736964756f, 'Y', '2010-04-02 15:09:10'),
(1520, 18, 0x4572726f7265, 'Y', '2010-04-02 16:56:48'),
(1521, 18, 0x4d6f73747261207269676865, 'Y', '2007-10-13 23:04:08'),
(1606, 18, 0x52696365726361, 'Y', '2010-04-02 16:56:48'),
(1607, 18, 0x417a7a6572612072696365726361, 'Y', '2010-04-02 16:56:48'),
(1608, 18, 0x53696e7461737369, 'Y', '2010-04-02 16:56:48'),
(1613, 18, 0x72616e6b206e6f6e2076616c69646f, 'Y', '2007-10-13 23:04:08'),
(1614, 18, 0x5041455345, 'Y', '2010-04-02 16:56:48'),
(1617, 18, 0x54757474692069207061657369, 'Y', '2010-04-02 16:56:48'),
(1618, 18, 0x44415441, 'Y', '2010-04-02 16:56:48'),
(1620, 18, 0x616e6e69, 'Y', '2010-04-02 17:13:30'),
(1621, 18, 0x6d657369, 'Y', '2010-04-02 17:13:30'),
(1622, 18, 0x73657474696d616e65, 'Y', '2010-04-02 17:13:30'),
(1623, 18, 0x67696f726e69, 'Y', '2010-04-02 17:13:30'),
(1624, 18, 0x6f7265, 'Y', '2010-04-02 17:13:30'),
(1628, 18, 0x6e6f6e206e756d657269636f, 'Y', '2007-10-13 23:04:08'),
(1631, 18, 0x53ec, 'Y', '2010-04-02 17:14:13'),
(1632, 18, '', 'Y', '2012-08-22 20:48:45'),
(1634, 18, 0x53ec, 'Y', '2010-04-02 16:59:51'),
(1635, 18, '', 'Y', '2012-08-22 20:48:45'),
(1638, 18, 0x50554e54454747494f, 'Y', '2010-04-02 16:58:16'),
(1639, 18, 0x53656c657a696f6e61726520756e6f206f207069f920656c656d656e74692028616e636865206e657373756e6f29, 'Y', '2007-10-13 23:08:46'),
(1640, 18, 0x74726f70706920736570617261746f7269, 'Y', '2010-04-02 16:58:16'),
(1642, 18, 0x707265666973736f206e6f6e20636f6e73656e7469746f, 'Y', '2010-04-02 16:58:16'),
(1643, 18, 0x666f726d61746f2064617461206e6f6e2076616c69646f, 'Y', '2010-04-02 16:58:16'),
(1645, 18, 0x67696f726e6f206e6f6e2076616c69646f, 'Y', '2010-04-02 16:58:16'),
(1646, 18, 0x7574696c697a7a6f20696d70726f7072696f2064656c6c6520766972676f6c65747465, 'Y', '2010-04-02 16:58:16'),
(1647, 18, 0x6f67676574746f20584d4c206e6f6e2076616c69646f20616c6c6120706f73697a696f6e652023, 'Y', '2007-10-13 23:08:46'),
(1648, 18, 0x696e64696361746f726520584d4c206e6f6e2076616c69646f20616c6c6120706f73697a696f6e652023, 'Y', '2007-10-13 23:08:46'),
(1650, 18, 0x696e64696361746f72652066696e616c6520584d4c206e6f6e2076616c69646f20616c6c6120706f73697a696f6e652023, 'Y', '2007-10-13 23:08:46'),
(1379, 18, 0x50726f66696c6f, 'Y', '2007-10-13 23:12:30'),
(1389, 18, 0x4d6f646966696361206f7264696e652062696f6772616669636f, 'Y', '2007-10-13 23:12:30'),
(1390, 18, 0x6d6f64696669636120736f6c6f206c277264696e652c206e6f6e20e820706f73736962696c65206d6f64696669636172652071756920696c20746573746f2e, 'Y', '2007-10-13 23:12:30'),
(1393, 18, 0x4d6f646966696361206c276173706574746f20736f6c6f207065722071756573746f2062726f77736572, 'Y', '2007-10-13 23:12:30'),
(1464, 18, 0x4d6f7374726120617676657273617269, 'Y', '2007-10-13 23:12:30'),
(1467, 18, 0x4d6f737472612069206d69656920617676657273617269, 'Y', '2007-10-13 23:12:30'),
(1471, 18, 0x41676769756e6769206e756f766f20636f6e746174746f, 'Y', '2007-10-13 23:12:30'),
(1476, 18, 0x4d6f64696669636120636f6e746174746f, 'Y', '2007-10-13 23:12:30'),
(1477, 18, 0x41676769756e676920636f6e746174746f, 'Y', '2007-10-13 23:12:30'),
(1478, 18, 0x417474697661, 'Y', '2007-10-13 23:12:30'),
(1479, 18, 0x4e6f6d65, 'Y', '2010-04-02 15:09:10'),
(1480, 18, 0x5061657365, 'Y', '2010-04-02 15:09:10'),
(1482, 18, 0x446973706f6e6962696c6520612067696f636172653f, 'Y', '2010-04-02 15:09:10'),
(1483, 18, 0x2350617274697465, 'Y', '2010-04-02 15:09:10'),
(1484, 18, 0x496e20636f72736f, 'Y', '2010-04-02 15:47:29'),
(1485, 18, 0x46696e697465, 'Y', '2010-04-02 15:47:29'),
(1486, 18, 0x56696e7465, 'Y', '2010-04-02 15:47:29'),
(1487, 18, 0x5065727365, 'Y', '2010-04-02 15:47:29'),
(6148, 40, 0x506f7263656e746167656d20686572f369636120646520757375e172696f20e9206d7569746f206261697861, 'Y', '2014-07-30 06:24:04'),
(1489, 18, 0x41747469766974e0, 'Y', '2010-10-18 16:21:30'),
(1490, 18, 0x556c74696d6f206163636573736f, 'Y', '2010-04-02 15:47:29'),
(1492, 18, 0x4f737365727661746f72692064656c6c612070617274697461202573, 'Y', '2007-10-13 23:18:28'),
(1497, 18, 0x496e666f726d617a696f6e69, 'Y', '2010-04-02 15:47:29'),
(1540, 18, 0x496d706f73736962696c652061676769756e676572652073652073746573736920747261206920636f6e7461747469, 'Y', '2007-10-13 23:18:28'),
(1541, 18, 0x5574656e74652073636f6e6f73636975746f, 'N', '2007-10-13 23:18:28'),
(1542, 18, 0x436f6e746174746f2072696d6f73736f, 'Y', '2007-10-13 23:18:28'),
(1543, 18, 0x436f6e746174746f2073616c7661746f, 'Y', '2007-10-13 23:18:28'),
(1544, 18, 0x52696d6f7a696f6e6520636f6e746174746f, 'Y', '2007-10-13 23:18:28'),
(1545, 18, 0x4d6f64696669636120636f6e746174746f, 'Y', '2007-10-13 23:18:28'),
(1546, 18, 0x436f6e74726f6c6c6f20636f6e746174746f, 'Y', '2007-10-13 23:18:28'),
(1547, 18, 0x52696d6f7a696f6e6520636f6e746174746f, 'Y', '2007-10-13 23:18:28'),
(1548, 18, 0x43617465676f7269652064692073697374656d61, 'Y', '2007-10-13 23:18:28'),
(1549, 18, 0x43617465676f726965207574656e7465, 'Y', '2007-10-13 23:18:28'),
(1550, 18, 0x4e6f7465, 'Y', '2007-10-13 23:18:28'),
(1552, 18, 0x53616c766120636f6e746174746f, 'Y', '2007-10-13 23:18:28'),
(1553, 18, 0x4d6f7374726120636f6e7461747469, 'Y', '2007-10-13 23:18:28'),
(1554, 18, 0x417a696f6e69, 'Y', '2010-04-02 15:47:29'),
(1555, 18, 0x43617465676f7269652064692073697374656d61, 'Y', '2010-04-02 15:47:29'),
(1556, 18, 0x43617465676f726965207574656e7465, 'Y', '2010-04-02 15:47:29'),
(1557, 18, 0x4e6f7465, 'Y', '2010-04-02 15:47:29'),
(1558, 18, 0x43726561746f, 'Y', '2010-04-02 15:50:19'),
(1575, 18, 0x436f6c6f7265, 'Y', '2007-10-13 23:21:29'),
(1576, 18, 0x546f74616c65, 'Y', '2007-10-13 23:21:29'),
(1577, 18, 0x50657263656e7475616c6520646920766974746f726965207375202350617274697465, 'Y', '2007-10-13 23:21:29'),
(1578, 18, 0x23506172746974652076696e7465202f207065727365, 'Y', '2007-10-13 23:21:29'),
(1579, 18, 0x23506172746974652076696e7465202f2070657273652061692070756e7469, 'Y', '2007-10-13 23:21:29'),
(1580, 18, 0x23506172746974652076696e7465202f2070657273652070657220616262616e646f6e6f, 'Y', '2007-10-13 23:21:29'),
(1581, 18, 0x23506172746974652076696e7465202f20706572736520616c2074656d706f, 'Y', '2007-10-13 23:21:29'),
(1582, 18, 0x235061727469746520636f6e204a69676f, 'Y', '2007-10-13 23:21:29'),
(1583, 18, 0x235061727469746520636f6e2068616e6469636170, 'Y', '2007-10-13 23:21:29'),
(1584, 18, 0x68616e6469636170206d617373696d6f, 'Y', '2007-10-13 23:21:29'),
(1597, 18, 0x52696669757461206d65737361676769, 'Y', '2007-10-13 23:27:15'),
(1598, 18, 0x5269666975746120696e76697469, 'Y', '2007-10-13 23:27:15'),
(1599, 18, 0x436f6d7061676e6f, 'Y', '2007-10-13 23:27:15'),
(1600, 18, 0x416d69636f, 'Y', '2007-10-13 23:27:15'),
(1601, 18, 0x53747564656e7465, 'Y', '2007-10-13 23:27:15'),
(1602, 18, 0x4d61657374726f, 'Y', '2007-10-13 23:27:15'),
(1603, 18, '', 'Y', '2012-08-22 20:48:45'),
(1604, 18, '', 'Y', '2012-08-22 20:48:45'),
(1493, 18, 0x5475747465, 'Y', '2007-10-14 12:37:22'),
(1568, 16, 0xefeeebede0ff20f1f2e0f2e8f1f2e8eae020f2eeebfceaee20e4ebff20e7e0e2e5f0f8e5ededfbf520efe0f0f2e8e9, 'Y', '2012-10-14 14:46:03'),
(1503, 18, 0x506f73697a696f6e616d656e746f207374616e64617264, 'Y', '2010-04-02 15:47:29'),
(1396, 25, 0x41706173c48320225472696d697465222070656e747275206120636f6e6669726d612e, 'Y', '2007-12-02 23:03:15'),
(1237, 25, 0x43617574c483, 'Y', '2007-10-20 13:28:55'),
(1606, 25, 0x43617574c483, 'Y', '2007-10-20 13:28:30'),
(1607, 25, 0x416e756c65617ac4832063c483757461726561, 'Y', '2011-06-23 17:56:15'),
(1521, 25, 0x41726174c483206c696e69696c65, 'Y', '2007-10-20 13:28:04'),
(1090, 25, 0x416669c59f65617ac483206d757461726561, 'Y', '2007-10-20 13:30:11'),
(1091, 25, 0x54696d702072c4836d6173, 'Y', '2007-10-20 13:43:22'),
(1087, 25, 0x436f6d656e7461726969, 'Y', '2007-10-20 13:46:00'),
(1088, 25, 0x44657363617263c4832073666720637520636f6d656e7461726969, 'Y', '2007-10-20 13:46:00'),
(1397, 25, 0x4164617567c4832074696d702070656e747275206164766572736172, 'Y', '2007-10-20 13:47:06'),
(1076, 25, 0x41646e6f74c483726920706172746964c48320706572736f6e616c65, 'Y', '2007-10-20 16:44:20'),
(1093, 25, 0x416669c59f65617ac4832061646e6f74c48372696c65, 'Y', '2007-10-20 16:44:20'),
(1094, 25, 0x53616c7665617ac4832061646e6f74c48372696c65, 'Y', '2007-10-20 16:44:20'),
(1095, 25, 0x417363756e64652061646e6f74c48372696c65, 'Y', '2007-10-20 16:44:20'),
(1395, 34, 0xe5a682e69e9ce682a8e5bf98e8a898e5af86e7a2bcefbc8ce68891e58091e58fafe4bba5e5af84e696b0e5af86e7a2bce7b5a6e682a8e380823c62723ee696b0e5af86e7a2bce698afe99aa8e6a99fe794a2e7949fe79a84efbc8ce4bd86e682a8e58fafe4bba5e5be9ee5808be4babae8a8ade5ae9ae694b9e8ae8ae5af86e7a2bce380823c62723ee59ca8e5af86e7a2bce694b9e8ae8ae4b98be5898defbc8ce696b0e5af86e7a2bce88887e8888ae5af86e7a2bce983bde58fafe4bba5e4bdbfe794a8e38082, 'Y', '2007-10-26 11:43:45'),
(1395, 8, 0xa670aa47b17aa7d1b04fb14bbd58a141a7daadcca569a548b148b773b14bbd58b5b9b17aa143b773b14bbd58ac4fc048bef7b2a3a5cdaabaa141a6fdb17aa569a548b171add3a448b35da977a7efc5dcb14bbd58a143a662b14bbd58a7efc5dca4a7ab65a141b773b14bbd58bb50c2c2b14bbd58b3a3a569a548a8cfa5cea143, 'Y', '2008-08-26 05:23:47'),
(1157, 6, '', 'Y', '2013-01-26 14:16:03'),
(1282, 6, 0x42fa73717565646120656e20656c2064726167f36e, 'Y', '2007-10-31 03:17:38'),
(1283, 6, 0x536920656e6375656e74726f20756e2074e9726d696e6f20646520676f206e6f206c69737461646f20656e206c61204641512e205175e9207369676e69666963613f, 'Y', '2007-10-31 03:17:38'),
(1284, 6, '', 'N', '2007-11-03 16:08:38'),
(1285, 6, 0x5175e92073756365646520636f6e206d792072e16e6b696e6720656e20756e20656d7061746520286a69676f293f, 'Y', '2007-10-31 03:17:38'),
(1286, 6, '', 'Y', '2007-11-03 16:08:38'),
(1299, 6, '', 'Y', '2007-11-03 16:08:38'),
(1300, 6, '', 'N', '2007-11-03 16:08:38'),
(1311, 6, '', 'Y', '2007-11-03 16:08:38'),
(1338, 6, '', 'Y', '2007-11-03 16:08:38'),
(1339, 6, '', 'N', '2007-11-03 16:08:38'),
(1379, 33, 0xe5a496e8a782, 'Y', '2007-10-31 05:39:31'),
(1342, 6, '', 'Y', '2007-11-03 16:08:38'),
(1343, 6, '', 'N', '2007-11-03 16:08:38'),
(1344, 6, '', 'Y', '2007-11-03 16:08:38'),
(1345, 6, '', 'N', '2007-11-03 16:08:38'),
(1350, 6, '', 'Y', '2007-11-03 16:08:38'),
(1351, 6, '', 'N', '2007-11-03 16:08:38'),
(1360, 6, '', 'Y', '2015-06-28 01:11:12'),
(1361, 6, 0x54e9726d696e6f206a61706f6ee97320717565206465736372696265206c612073697475616369f36e20646520756e20656d706174653a20616d626f73206a756761646f726573207469656e656e206c61206d69736d612063616e74696461642064652070756e746f732e, 'Y', '2007-10-31 12:29:06'),
(1371, 6, '', 'Y', '2007-11-03 16:08:38'),
(1373, 6, '', 'Y', '2007-11-03 16:08:38'),
(1374, 6, '', 'Y', '2007-11-03 16:08:38'),
(1375, 6, '', 'Y', '2007-11-03 16:08:38'),
(1376, 6, '', 'Y', '2007-11-03 16:08:38'),
(1377, 6, '', 'Y', '2007-11-03 16:08:38'),
(1378, 6, 0x436f6e746163746f73, 'Y', '2015-06-15 04:21:05'),
(1379, 6, '', 'Y', '2007-11-03 16:08:38'),
(1382, 6, '', 'Y', '2007-11-03 16:08:38'),
(1383, 6, '', 'Y', '2007-11-03 16:08:38'),
(1384, 6, '', 'Y', '2007-11-03 16:08:38'),
(1385, 6, '', 'Y', '2007-11-03 16:08:38'),
(1386, 6, '', 'Y', '2007-11-03 16:08:38'),
(1387, 6, '', 'Y', '2007-11-03 16:08:38'),
(1388, 6, '', 'Y', '2007-11-03 16:08:38'),
(1505, 34, 0xe981a9e795b6e8ae93e5ad90efbc88e7b3bbe7b5b1e8aabfe695b4e8b2bce79baeefbc89, 'Y', '2007-11-01 09:40:58'),
(1505, 8, 0xbe41b7edc5fda46ca15da874b2cebdd5bee3b64ba5d8a15e, 'Y', '2007-11-01 09:42:22'),
(1505, 10, 0xcacab5b1c8c3d7d3a3a8cfb5cdb3b5f7d5fbccf9c4bfa3a9, 'Y', '2007-11-01 09:44:04'),
(1505, 33, 0xe98082e5bd93e8aea9e5ad90efbc88e7b3bbe7bb9fe8b083e695b4e8b4b4e79baeefbc89, 'Y', '2007-11-01 09:44:34'),
(1415, 34, 0xe7b7a8e8999f, 'Y', '2007-11-01 14:56:19'),
(1416, 34, 0xe6a38be8ad9c, 'Y', '2007-11-01 14:56:19'),
(1429, 34, 0xe5b08de6898b, 'Y', '2007-11-01 14:56:19'),
(1430, 34, 0xe5b8b3e8999f, 'Y', '2007-11-01 14:56:19'),
(1433, 34, 0xe7ad89e7b49a, 'Y', '2007-11-01 14:56:19'),
(1435, 34, 0xe7a281e889b2, 'Y', '2007-11-01 14:56:19'),
(1437, 34, 0xe5a4a7e5b08f, 'Y', '2007-11-01 14:56:19'),
(1438, 34, 0xe8ae93e5ad90, 'Y', '2007-11-01 14:56:19'),
(1439, 34, 0xe8b2bce79bae, 'Y', '2007-11-01 14:56:19'),
(1440, 34, 0xe6898be695b8, 'Y', '2007-11-01 14:56:19'),
(1443, 34, 0xe8a995e7ad89, 'Y', '2007-11-01 14:56:19'),
(1444, 34, 0xe69c80e5be8ce4b880e6898b, 'Y', '2007-11-01 14:56:19'),
(1475, 34, 0xe589a9e9a498e69982e99693, 'Y', '2007-11-01 14:56:19'),
(1415, 8, 0xbd73b8b9, 'Y', '2007-11-01 14:59:48'),
(1416, 8, 0xb4d1c3d0, 'Y', '2007-11-01 14:59:48'),
(1429, 8, 0xb9efa4e2, 'Y', '2007-11-01 14:59:48'),
(1430, 8, 0xb162b8b9, 'Y', '2007-11-01 14:59:48'),
(1433, 8, 0xb5a5afc5, 'Y', '2007-11-01 14:59:48'),
(1435, 8, 0xf9d6a6e2, 'Y', '2007-11-01 14:59:48'),
(1437, 8, 0xa46aa470, 'Y', '2007-11-01 14:59:48'),
(1438, 8, 0xc5fda46c, 'Y', '2007-11-01 14:59:48'),
(1439, 8, 0xb64ba5d8, 'Y', '2007-11-01 14:59:48'),
(1440, 8, 0xa4e2bcc6, 'Y', '2007-11-01 14:59:48'),
(1443, 8, 0xb5fbb5a5, 'Y', '2007-11-01 14:59:48'),
(1444, 8, 0xb3ccabe1a440a4e2, 'Y', '2007-11-01 14:59:48'),
(1475, 8, 0xb3d1be6caec9b6a1, 'Y', '2007-11-01 14:59:48'),
(1389, 6, 0x45646974617220656c206f7264656e2062696f6772e16669636f, 'Y', '2007-11-03 02:05:36'),
(1390, 6, 0x736f6c6f2063616d62696f206465206f7264656e2c206e6f20657320706f7369626c652063616d6269617220656c20746578746f20617175ed, 'Y', '2007-11-03 02:05:36'),
(1391, 6, 0x4de178696d6f2064652066696c617320656e206c61207461626c61, 'Y', '2007-11-03 02:05:36'),
(1392, 6, 0x656c6567697220756e2076616c6f722062616a6f20617975646120616c207365727669646f7220287665722046415129, 'Y', '2007-11-03 02:05:36'),
(1393, 6, 0x43616d62696172206c61206170617269656e63696120736f6c6f20706172612065737465206e6176656761646f72, 'Y', '2007-11-03 02:05:36'),
(1394, 6, 0x566f6c76657220616c20ed6e646963652064656c20464151, 'Y', '2007-11-03 02:05:36'),
(1395, 6, 0x5369206f6c7669646173746520747520636f6e7472617365f1612c20706f64656d6f7320656e76696172746520756e61206e7565766120706f72206d61696c2e203c62723e4c61206e7565766120636f6e7472617365f16120736572e12067656e657261646120616c20617a61722c207065726f20706f7220737570756573746f2c207075656465732063616d626961726c61206c7565676f2c206465736465206c612070e167696e612064652065646974617220656c2070657266696c2e203c62723e486173746120717565206c612063616d626965732c20616d62617320636f6e7472617365f1612c206c61206e756576612079206c61207669656a6120736572e16e20757361626c65732e, 'Y', '2007-11-03 02:05:36'),
(1396, 6, 0x4f7072696d652022656e7669617222207061726120636f6e6669726d6172, 'Y', '2007-11-03 16:08:38'),
(1211, 4, 0x5a7567, 'Y', '2007-11-03 20:26:21'),
(1214, 4, 0x416b7469766520537069656c6572, 'Y', '2007-11-03 20:26:21'),
(1397, 6, 0x41677265676172207469656d706f20616c206f706f6e656e7465, 'Y', '2007-11-03 02:05:36'),
(1398, 6, 0x4d6f7374726172206f627365727661646f726573, 'Y', '2007-11-03 02:05:36'),
(1399, 6, 0x456c696765206375e16e746f207469656d706f2061646963696f6e616c207175696572657320616772656761726c652061207475206f706f6e656e7465, 'Y', '2015-06-24 22:29:32'),
(1400, 6, 0x616772656761646f20616c207469656d706f207072696e636970616c206465207475206f706f6e656e7465, 'Y', '2007-11-03 02:05:36'),
(1401, 6, 0x5265736574656172206c6120636f6e6669677572616369f36e2064652062796f796f6d69206375616e646f207265696e67726573653c6e6f74653e206e6f206573746f792073656775726f206465206c612074726164756363696f6e2c20706f72717565206e6f20636f6e6f7a636f206269656e207175652068616365206573746520626f746f6e3c2f6e6f74653e, 'Y', '2007-11-03 02:05:36'),
(1402, 6, 0x41677265676172207469656d706f, 'Y', '2007-11-03 02:05:36'),
(1403, 6, 0x43616e63656c6172, 'Y', '2007-11-03 02:05:36'),
(1575, 36, 0x4ac3a174c3a96b6f736f6b20737ac3ad6e65, 'Y', '2015-09-19 18:26:30'),
(6099, 36, 0x54756c616a646f6e73c3a1676f6b, 'Y', '2015-09-19 18:16:23'),
(1406, 6, 0x4665646572616369f36e20496e7465726e6163696f6e616c20646520476f2028496e7465726e6174696f6e616c20476f2046656465726174696f6e292e20456e6375656e7472612066656465726163696f6e657320792061736f63696163696f6e657320656e20656c206d756e646f2e, 'Y', '2007-11-03 02:05:36'),
(1407, 6, 0x4f74726f207365727669646f7220706f72207475726e6f732e20456e666f6361646f20656e206a7565676f20646520746f726e656f73206f7267616e697a61646f732e, 'Y', '2007-11-03 02:05:36'),
(1408, 6, 0x5365727669646f7220646520476f204b69736569646f20284b47532920636f6e20696e74657266617a204a617661, 'Y', '2007-11-03 02:05:36'),
(1409, 6, 0x427573636172206d656e73616a6573, 'Y', '2007-11-03 02:05:36'),
(1412, 6, 0x546f646f73, 'Y', '2013-11-13 09:14:21'),
(1413, 6, 0x4e, 'Y', '2013-11-13 09:14:21'),
(1414, 6, 0x426c616e636f, 'Y', '2015-08-24 04:29:15'),
(1382, 34, 0xe9968be5a78b, 'Y', '2007-11-03 07:57:01'),
(1383, 34, 0xe696b0e8819e, 'Y', '2007-11-03 07:57:01'),
(1384, 34, 0xe69bb4e696b0e8a898e98c84, 'Y', '2007-11-28 08:07:38'),
(1385, 34, 0xe7b6b2e9a081e7b590e6a78b, 'Y', '2007-11-03 07:57:01'),
(1386, 34, 0xe585b6e4bb96e980a3e7b590, 'Y', '2012-01-14 10:42:33'),
(1387, 34, 0x44475320e8a8b1e9a198e596ae, 'Y', '2007-12-05 13:33:54'),
(1388, 34, 0xe794a8e688b6e683b3e8a681e79a84e694b9e980b2, 'Y', '2012-01-14 10:38:14'),
(1397, 34, 0xe5a29ee58aa0e5b08de6898be69982e99693, 'Y', '2007-11-03 07:57:01'),
(1398, 34, 0xe8a780e688b0e88085, 'Y', '2012-01-16 15:50:15'),
(1409, 34, 0xe6909ce5b08be4bfa1e4bbb6, 'Y', '2007-11-03 07:57:01'),
(1456, 34, 0xe9a1afe7a4bae6a38be5b180efbc88e5b8b3e8999fefbc89, 'Y', '2007-11-03 07:57:01'),
(1457, 34, 0xe4b88be8bc89e6a38be8ad9c, 'Y', '2007-11-03 07:57:01'),
(1462, 34, 0xe585b6e4bb96e6a38be6898be8b387e69699, 'Y', '2007-11-03 07:57:01'),
(1463, 34, 0xe6a38be58a9be59c96, 'Y', '2008-05-31 05:37:07'),
(1464, 34, 0xe9a1afe7a4bae5b08de6898b, 'Y', '2007-11-03 07:57:01'),
(1465, 34, 0xe98280e8ab8be6a38be6898b, 'Y', '2007-11-03 07:57:01'),
(1466, 34, 0xe5a29ee58aa02fe7b7a8e8bcafe881afe7b5a1e4baba, 'Y', '2007-11-03 07:57:01'),
(1467, 34, 0xe68891e79a84e5b08de6898b, 'Y', '2008-05-31 05:37:07'),
(1468, 34, 0xe9a1afe7a4bae99b99e696b9e6af94e8b3bde8b387e69699, 'Y', '2007-11-03 07:57:01'),
(1469, 34, 0xe5afabe4bfa1e7b5a6e881afe7b5a1e4baba, 'Y', '2009-10-12 16:18:54'),
(1470, 34, 0xe98280e8ab8be881afe7b5a1e4baba, 'Y', '2007-11-03 07:58:36'),
(1471, 34, 0xe5a29ee58aa0e696b0e881afe7b5a1e4baba, 'Y', '2007-11-03 07:58:36'),
(1473, 34, 0xe6909ce5b08be8ab96e5a387, 'Y', '2007-11-03 07:58:36'),
(1523, 34, 0xe6a38be58a9be6adb7e58fb2e59c96, 'Y', '2007-11-03 07:58:36'),
(1563, 34, 0xe9be8de4b98be7a281e696b0e8819e, 'Y', '2007-11-03 07:58:36'),
(1218, 4, 0x48696e7465726772756e64, 'Y', '2007-11-03 20:26:21'),
(1219, 4, 0x526f74, 'Y', '2007-11-03 20:26:21'),
(1220, 4, 0x4772fc6e, 'Y', '2007-11-03 20:26:21'),
(1221, 4, 0x426c6175, 'Y', '2007-11-03 20:26:21'),
(1222, 4, '', 'Y', '2012-07-29 12:52:42'),
(1223, 4, 0x4175662064657220537461747573736569746520616e7a656967656e, 'Y', '2007-11-03 20:26:21'),
(1224, 4, 0x566f726465726772756e64, 'Y', '2007-11-03 20:26:21'),
(1225, 4, 0x4f72646e657220616e6765706173737421, 'Y', '2007-12-07 15:49:47'),
(1226, 4, 0x416b7475616c6973696572656e, 'Y', '2007-11-03 20:39:47'),
(1227, 4, 0x4e657565732050617373776f727420676573616e647421, 'Y', '2007-12-07 15:19:32'),
(1234, 4, 0x5468656d656e, 'Y', '2007-11-03 20:39:47'),
(1235, 4, 0x5a756d205468656d61, 'Y', '2007-11-03 20:39:47'),
(1237, 4, 0x5375636865, 'Y', '2007-11-04 12:22:10'),
(1245, 4, 0x566572737465636b74, 'Y', '2007-11-04 12:22:10'),
(1246, 4, 0x6564697469657274, 'Y', '2007-12-07 22:03:47'),
(1244, 4, 0x416e6e61686d6520616277617274656e, 'Y', '2007-12-07 21:54:33'),
(1251, 4, 0x416e6e65686d656e, 'Y', '2007-11-04 12:24:06'),
(1252, 4, 0x41626c65686e656e, 'Y', '2007-12-07 22:03:47'),
(1255, 4, 0x466f72756d736c69737465, 'Y', '2007-11-04 12:24:06'),
(1256, 4, 0x4d6f64657269657274, 'Y', '2007-11-04 12:24:06'),
(1257, 4, 0x5468656d61, 'Y', '2007-11-04 12:24:06'),
(1258, 4, 0x45727374656c6c6572, 'Y', '2012-12-09 01:51:48'),
(1259, 4, 0x4265697472e46765, 'Y', '2007-12-07 22:03:47'),
(1260, 4, 0x4c65747a7465722042656974726167, 'Y', '2007-12-07 22:03:47'),
(1261, 4, 0x5369652064fc7266656e20696e2064696573656d20466f72756d206c6569646572206b65696e65204e6163687269636874656e2073636872656962656e2e, 'Y', '2007-11-04 12:24:06'),
(1263, 4, 0xc46e646572756e67736c69737465, 'Y', '2007-11-04 12:24:06'),
(1270, 4, 0x416c6c65206f6666656e656e205061727469656e, 'Y', '2007-11-04 12:25:03'),
(1271, 4, 0x50617373656e6465206f6666656e65205061727469656e, 'Y', '2007-11-04 12:25:03'),
(1273, 4, 0x4e7572206c65657265204f72646e6572206bf66e6e656e2067656cf6736368742077657264656e21, 'Y', '2007-11-04 12:25:03'),
(1253, 4, 0x566572f66666656e746c696368656e, 'Y', '2010-04-03 08:13:21'),
(1254, 4, 0x5a7520626577657274656e6465722042656974726167, 'Y', '2007-12-07 22:03:47'),
(1262, 4, 0x446572204265697472616720776972642065727374206e61636820646572205a756c617373756e672064757263682065696e656e204d6f64657261746f7220616e67657a656967742e, 'Y', '2007-12-07 22:03:47'),
(1267, 4, 0x5375636865726765626e6973, 'Y', '2007-11-04 15:43:37'),
(1311, 4, 0x416c7465726e617469766520447261676f6e2d5363686e6974747374656c6c656e, 'Y', '2007-12-07 02:38:44'),
(1338, 4, 0x576965206b616e6e206963682070726976617465204e6f74697a656e207a75206d65696e656e205061727469656e2073706569636865726e3f, 'Y', '2007-11-04 16:01:22'),
(1339, 4, 0x44617a7520686162656e20536965207a776569204df6676c6963686b656974656e2e2045727374656e73206bf66e6e656e20536965203c686f6d65206661712e7068703f726561643d743f6361743d33363523456e74727937353e766572737465636b7465204b6f6d6d656e746172653c2f686f6d653e207a75206a6564656d205a75672073706569636865726e3b206469657365204b6f6d6d656e746172652073696e64206175737363686c6965df6c69636820696e2064696573656d205a7567207a7520736568656e2e205a77656974656e73206bf66e6e656e205369652049687265204e6f74697a656e20696e206465722053656b74696f6e203c693e50726976617465204e6f74697a656e3c2f693e2073706569636865726e3b2064696520646f72742065696e6765676562656e656e204e6f74697a656e2073696e64206175737363686c6965df6c6963682066fc72205369652073696368746261722e0d0a0d0a496e2065696e657220506172746965206bf66e6e656e20536965204e6f74697a656e206d69742064656d204b6e6f7066203c693e4e6f74697a656e20616e7a656967656e3c2f693e2065696e626c656e64656e20756e64206d6974203c693e566572737465636b656e3c2f693e2077696564657220617573626c656e64656e2c20776f626569206e75722064696520416e7a65696765206175736765736368616c74657420776972642c206465722054657874206162657220657268616c74656e20626c656962742e0d0a0d0a57656e6e2053696520646965204e6f74697a656e20e46e6465726e2c203c623e6dfc7373656e3c2f623e2053696520646965736520c46e646572756e67656e206175736472fc636b6c696368206d6974203c693e4e6f74697a656e2073706569636865726e3c2f693e2062656920447261676f6e207369636865726e3b20616e6465726e66616c6c7320776972642064696520c46e646572756e67206e696368742067657370656963686572742c2064656e6e2064617320416e6c6567656e20766f6e204e6f74697a656e2069737420756e616268e46e67696720766f6d205365747a656e2064657220537465696e652e20536965206bf66e6e656e20736f204e6f74697a656e2073656c6273742064616e6e20e46e6465726e2c2077656e6e20536965206e6963687420616d205a75672073696e64206f6465722064617320537069656c2062657265697473206265656e6465742077757264652e0d0a0d0a46616c6c73206573206b65696e656e204b6e6f7066203c693e4e6f74697a656e20616e7a656967656e3c2f693e20676962742c206dfc7373656e20536965206469657365206572737420696e20696872656d203c686f6d6520656469745f70726f66696c652e7068703e42656e75747a657270726f66696c3c2f686f6d653e20616b746976696572656e2e20536368616c74656e205369652064617a7520646965204175737761686c203c693e566572737465636b743c2f693e2066fc722064696520656e74737072656368656e64656e20476f62616e2d4772f6df656e206175732e20446f7274206bf66e6e656e2053696520617563682064696520416e7a656967656e7374656c6c6520756e6420646965204772f6df6520646573204e6f74697a66656c64657320e46e6465726e2e, 'N', '2007-12-07 14:48:37'),
(1342, 4, 0x576965206b616e6e206963682065696e65204c6568727061727469652066696e64656e3f, 'Y', '2007-11-04 16:01:22');
INSERT INTO `Translations` (`Original_ID`, `Language_ID`, `Text`, `Translated`, `Updated`) VALUES
(1343, 4, 0x57656e6e205369652073696368207665726265737365726e20776f6c6c656e2c206bf66e6e656e205369652065696e656e207374e4726b6572656e20537069656c65722066726167656e2c206f622065722065696e65204c656872706172746965206d69742069686e656e20737069656c656e206df6636874652c206f646572205369652073756368656e206a656d616e64656e2c20646572206d69742069686e656e2067656d65696e73616d2065696e652050617274696520737069656c7420756e6420616e616c7973696572742e0d0a3c6f6c3e0d0a3c6c693e0d0a44617a75206bf66e6e652053696520696e2064617320466f72756d203c686f6d6520666f72756d2f6c6973742e7068703f666f72756d3d363e4765676e657273756368653c2f686f6d653e2065696e656e2042656974726167206d69742064656d20546974656c203c693e5265717565737420666f722061205465616368696e672047616d653c2f693e207374656c6c656e206f64657220646f7274206e61636820776569746572656e20496e666f726d6174696f6e656e207a752064696573656d205468656d612066726167656e2e0d0a3c2f6c693e0d0a3c6c693e0d0a496d2057617274657a696d6d6572206bf66e6e656e205369652065696e6520506172746965206d69742064656d204b6f6d6d656e746172203c693e52657175657374205465616368696e672047616d653c2f693e206572f666666e656e2e20446162656920697374206573207665726efc6e667469672c2065696e656e2065696e67657374756674656e204765676e6572207a75207665726c616e67656e20756e642065696e656e2073696e6e766f6c6c656e20537069656c7374e4726b6562657265696368206175737a7577e4686c656e2e0d0a3c2f6c693e0d0a3c6c693e0d0a4175df657264656d206769627420657320686965722061756620447261676f6e2065696e2067656d65696e73616d2067656e75747a7465732042656e75747a65726b6f6e746f203c693e3c75736572203d73656e7365693e3c2f693e2c20776f2065696e69676520667265756e646c69636865204c65757465204c656872737069656c6520616e62696574656e2e204c6573656e205369652064617a75206469652062696f6772616669736368656e20496e666f726d6174696f6e656e2c20696e2077656c6368656e20617563682065726ce4757465727420776972642c20776173205369652074756e206dfc7373656e2c20756d2065696e65204c656872706172746965207a752066696e64656e2e0d0a3c2f6c693e0d0a3c2f6f6c3e, 'N', '2007-12-10 01:05:47'),
(1344, 4, 0x576f206b616e6e20696368206e6163687363686175656e2c2077656c636865204e75747a657220676572616465206d69742064656d205365727665722076657262756e64656e2073696e643f, 'Y', '2007-12-07 14:48:37'),
(1375, 4, 0x556e67fc6c746967652042656e75747a65722d49442076657277656e6465742e, 'Y', '2007-11-04 16:01:22'),
(1376, 4, 0x556e67fc6c746967652042656e75747a65722d494420616c73204765676e657220617573676577e4686c742e, 'Y', '2007-11-04 16:01:22'),
(1377, 4, 0x45732067696274206c65696465722065696e2050726f626c656d206d697420696872656d205375636866696c7465722e, 'Y', '2007-11-04 16:01:22'),
(1378, 4, 0x4b6f6e74616b7465, 'Y', '2007-11-04 16:01:22'),
(1383, 4, 0x4e657569676b656974656e, 'Y', '2007-11-04 16:01:22'),
(1386, 4, 0x4c696e6b6c69737465, 'Y', '2007-11-04 16:01:22'),
(1342, 5, '', 'Y', '2011-10-26 12:06:49'),
(1520, 34, 0xe98cafe8aaa4, 'Y', '2007-11-16 10:16:43'),
(1606, 34, 0xe6909ce5b08b, 'Y', '2007-11-16 10:16:43'),
(1607, 34, 0xe9878de8a8ade6909ce5b08b, 'Y', '2007-11-16 10:16:43'),
(1613, 34, 0xe98cafe8aaa4e7ad89e7b49a, 'Y', '2007-11-16 10:16:43'),
(1614, 34, 0xe59c8be5aeb6, 'Y', '2007-11-16 10:16:43'),
(1618, 34, 0xe697a5e69c9f, 'Y', '2007-11-16 10:16:43'),
(1371, 34, 0xe98cafe8aaa4efbc8ce689bee4b88de588b0e682a8e58f97e98280e79a84e6a38be5b180e38082e4b99fe8a8b1e682a8e5b7b2e7b693e68ea5e58f97e4ba86efbc9f, 'Y', '2007-11-16 10:23:24'),
(1373, 34, 0xe68ab1e6ad89efbc8ce689bee4b88de588b0e694b6e4bfa1e4babae38082e8ab8be7a2bae5ae9ae698afe582b3e98081e7b5a6e794a8e688b6e5b8b3e8999fefbc8ce8808ce99d9ee794a8e688b6e5a793e5908de38082, 'Y', '2012-03-11 05:54:02'),
(1375, 34, 0xe68ab1e6ad89efbc8ce4bdbfe794a8e88085e5b8b3e8999fe69c89e8aaa4e38082, 'Y', '2007-11-16 10:23:24'),
(1376, 34, 0xe68ab1e6ad89efbc8ce5b08de6898be5b8b3e8999fe69c89e8aaa4e38082, 'Y', '2007-11-16 10:23:24'),
(1377, 34, 0xe68ab1e6ad89efbc8ce6909ce5b08be8a8ade5ae9ae69c89e5958fe9a18ce38082, 'Y', '2007-11-16 10:23:24'),
(1374, 34, 0xe68ab1e6ad89efbc8ce799bbe585a5e79a84e4bdbfe794a8e88085e4bcbce4b98ee799bbe587bae4ba86e38082, 'Y', '2007-11-16 10:24:25'),
(1282, 34, 0xe9be8de4b98be7a281e6909ce5b08b, 'Y', '2007-11-18 10:53:36'),
(1283, 34, 0xe68891e799bce78fbee4b880e5808be59c8de6a38be8a193e8aa9ee5b7b2e7b693e6b292e58897e59ca8e5b8b8e8a68be5958fe9a18ce4b8adefbc8ce98099e698afe4bb80e9babce6848fe6809defbc9f, 'Y', '2007-11-18 10:53:36'),
(1285, 34, 0xe5928ce5b180e5b08de68891e79a84e7ad89e7b49ae69c89e4bd95e5bdb1e99fbfefbc9f, 'Y', '2007-11-18 10:53:36'),
(1299, 34, 0xe782bae4bd95e68891e79a84e5b08de5b180e6b292e69c89e8a995e7ad89efbc9f, 'Y', '2007-11-18 10:53:36'),
(383, 17, 0x57b1746b69, 'Y', '2007-11-18 21:53:30'),
(384, 17, 0x437a7974616a20666f72756d, 'Y', '2007-11-18 21:53:30'),
(477, 17, 0x4e6965706f707261776e61206c69637a6261206b616d69656e692068616e64696b617075, 'Y', '2007-11-18 21:53:30'),
(508, 17, 0x446f6461746b6f77652070756e6b7479206a616b6965206f74727a796d756a6520426961b379283c686f6d65206661712e7068703f726561643d74266361743d3323456e747279383e6d6f6b753c2f686f6d653e292e204d6120746f206b6f6d70656e736f7761e6206a616bb1206d6120437a61726e792077796b6f6e756ab163207069657277737a7920727563682e, 'Y', '2007-11-18 21:53:30'),
(510, 17, 0x42b3ea647920447261676f6e61, 'Y', '2007-11-18 21:53:30'),
(1636, 5, 0x4d41544348494e444558, 'Y', '2007-11-20 04:00:03'),
(1371, 5, 0x4c6120706172746965206e27612070617320e974e92074726f7576e9652e204c27696e7669746174696f6e206120706575742dea7472652064e96ae020e974e920616363657074e9652e, 'Y', '2007-11-20 21:52:32'),
(1373, 5, 0x44e9736f6ce92c206c6520636f72726573706f6e64616e74207072e9636973e92065737420696e74726f757661626c652e20457465732d766f75732073fb7220642761766f697220646f6e6ee920736f6e2070736575646f6e796d6520286574206e6f6e20736f6e206e6f6d29266e6273703b3f, 'Y', '2007-11-20 21:52:32'),
(1521, 34, 0xe8a18ce695b8, 'Y', '2012-01-14 08:06:47'),
(1612, 34, 0xe7ad89e7b49a, 'Y', '2007-11-28 07:53:26'),
(1617, 34, 0xe68980e69c89e59c8be5aeb6, 'Y', '2007-11-28 07:53:26'),
(1620, 34, 0xe5b9b4, 'Y', '2007-11-28 07:53:26'),
(1621, 34, 0xe69c88, 'Y', '2007-11-28 07:53:26'),
(1622, 34, 0xe980b1, 'Y', '2007-11-28 07:53:26'),
(1623, 34, 0xe697a5, 'Y', '2007-11-28 07:53:26'),
(1624, 34, 0xe69982, 'Y', '2007-11-28 07:53:26'),
(1628, 34, 0xe99d9ee695b8e5ad97, 'Y', '2007-11-28 07:53:26'),
(1637, 34, 0xe5b088e5aeb6e6a8a1e5bc8f, 'Y', '2007-11-28 07:53:26'),
(1638, 34, 0xe8a888e58886, 'Y', '2007-11-28 07:53:26'),
(1639, 34, 0xe981b8e69387e784a1efbc8ce4b880efbc8ce68896e69bb4e5a49ae58583e7b4a0, 'Y', '2007-11-28 07:53:26'),
(1406, 34, 0xe59c8be99a9be59c8de6a38be58d94e69c83e38082e5b08be689bee4b896e7958ce59084e59cb0e79a84e58d94e69c83e88887e7b584e7b994e38082, 'Y', '2007-11-28 08:01:53'),
(1407, 34, 0xe58fa6e4b880e5808be59b9ee59088e588b6e79a84e59c8de6a38be7b6b2e7ab99e38082e4bba5e88889e8bea6e6a38be8b3bde782bae4b8bbe8a681e9a085e79baee38082, 'Y', '2007-11-28 08:01:53'),
(1408, 34, 0x4b69736569646f20e59c8de6a38be7b6b2e7ab99206a617661e4bb8be99da2, 'Y', '2007-11-28 08:01:53'),
(1474, 34, 0xe696b0e8819eefbc8ce69bb4e696b0e7b480e98c84, 'Y', '2012-01-14 10:32:39'),
(1525, 34, 0xe69c80e696b0, 'Y', '2007-11-28 08:10:18'),
(1525, 8, 0xb3ccb773, 'Y', '2007-11-28 08:10:47'),
(1525, 10, 0xd7eed0c2, 'Y', '2007-11-28 08:11:49'),
(1525, 33, 0xe69c80e696b0, 'Y', '2007-11-28 08:12:18'),
(1282, 18, 0x5269636572636120696e20447261676f6e, 'Y', '2007-11-28 17:36:34'),
(1283, 18, 0x486f2074726f7661746f20756e207465726d696e65206e6f6e20656c656e6361746f206e656c6c65204641512e20436f7361207369676e69666963613f, 'Y', '2007-11-28 17:36:34'),
(1391, 18, 0x4d617373696d6f206e756d65726f206469207269676865, 'Y', '2007-11-28 17:39:10'),
(1392, 18, 0x736365676c6965726520756e2076616c6f726520626173736f20616975746120696c2073657276657220287665646920616e636865206c652046415129, 'Y', '2007-11-28 17:39:10'),
(1481, 18, 0x496e666f20677261646f, 'Y', '2010-04-02 15:09:10'),
(1551, 18, 0x4163636f72636961206c65206e6f74652c206d61782e2032353520636172617474657269, 'Y', '2007-11-28 17:39:10'),
(1024, 25, 0x4c61207061726974617465, 'Y', '2007-12-02 22:38:17'),
(1498, 25, 0x4e6f746520616469c5a3696f6e616c65, 'Y', '2007-12-02 22:42:18'),
(1499, 25, 0x546970, 'Y', '2007-12-02 22:43:24'),
(1479, 25, 0x4e756d65, 'Y', '2007-12-02 22:44:02'),
(1437, 25, 0x44696d656e7369756e65, 'Y', '2012-08-17 10:38:03'),
(1480, 25, 0xc5a26172c483, 'Y', '2007-12-02 22:45:58'),
(1084, 25, 0x41c59f657a617265207374616e64617264, 'Y', '2007-12-02 22:49:29'),
(1092, 25, 0x506172746964c48320636f746174c483, 'Y', '2007-12-02 22:50:13'),
(1429, 25, 0x4164766572736172, 'Y', '2007-12-02 22:53:18'),
(1444, 25, 0x556c74696d61206d7574617265, 'Y', '2007-12-02 22:55:41'),
(1443, 25, 0x436f746174c483, 'Y', '2007-12-02 22:56:21'),
(1211, 25, 0x4d757461726561, 'Y', '2007-12-02 23:00:38'),
(1387, 8, 0x44475320b35cc440b3e6, 'Y', '2007-12-05 13:30:29'),
(1360, 4, '', 'Y', '2012-07-29 12:52:42'),
(1398, 4, 0x5a65696765205a7573636861756572, 'Y', '2007-12-06 10:21:33'),
(1397, 4, 0x5a6569742066fc722064656e204765676e65722068696e7a7566fc67656e, 'Y', '2007-12-06 10:33:15'),
(1399, 4, 0x57e4686c656e2053696520646965205a6569742c206469652053696520696872656d204765676e65722068696e7a7566fc67656e206df6636874656e, 'Y', '2007-12-06 10:33:15'),
(1400, 4, 0x7a75722048617570747a656974204968726573204765676e6572732068696e7a7566fc67656e2e, 'Y', '2007-12-06 10:33:15'),
(1401, 4, 0x42796f796f6d692d45696e7374656c6c756e67656e207a7572fc636b7365747a656e, 'Y', '2007-12-06 11:17:23'),
(1402, 4, 0x5a6569742068696e7a7566fc67656e, 'Y', '2007-12-06 10:33:15'),
(1403, 4, 0x41626272656368656e, 'Y', '2007-12-06 10:33:15'),
(1412, 4, 0x416c6c65, 'Y', '2007-12-06 10:44:05'),
(1413, 4, 0x53, 'Y', '2007-12-06 10:44:05'),
(1414, 4, '', 'Y', '2012-07-29 12:52:42'),
(1415, 4, 0x4944, 'Y', '2010-04-02 22:19:59'),
(1416, 4, 0x534746, 'Y', '2007-12-06 10:44:05'),
(1417, 4, 0x4e616d65205363687761727a, 'Y', '2007-12-06 10:44:05'),
(1418, 4, 0x4944205363687761727a, 'Y', '2007-12-06 10:44:05'),
(1419, 4, 0x416e66616e67737374e4726b65205363687761727a, 'Y', '2007-12-06 11:23:53'),
(1420, 4, 0x5374e4726b65205363687761727a, 'Y', '2007-12-06 11:23:53'),
(1421, 4, 0x4e616d6520576569df, 'Y', '2007-12-06 10:44:05'),
(1422, 4, 0x494420576569df, 'Y', '2007-12-06 10:44:05'),
(1423, 4, 0x416e66616e67737374e4726b6520576569df, 'Y', '2007-12-06 11:23:53'),
(1424, 4, 0x5374e4726b6520576569df, 'Y', '2007-12-06 11:23:53'),
(1425, 4, 0x456e647374e4726b65205363687761727a, 'Y', '2007-12-06 11:23:53'),
(1426, 4, 0x5374e4726b656ee46e646572756e67205363687761727a, 'Y', '2007-12-06 11:23:53'),
(1427, 4, 0x456e647374e4726b6520576569df, 'Y', '2007-12-06 11:23:53'),
(1428, 4, 0x5374e4726b65e46e646572756e6720576569df, 'Y', '2007-12-06 11:23:53'),
(1429, 4, 0x4765676e6572, 'Y', '2007-12-06 10:44:05'),
(1430, 4, 0x4e75747a65722d4944, 'Y', '2007-12-06 10:44:05'),
(2701, 6, 0x4d617274696e696361, 'Y', '2015-06-18 20:29:23'),
(1433, 4, 0x5374e4726b65, 'Y', '2007-12-06 11:23:53'),
(2687, 6, 0x556e69f36e204575726f706561, 'Y', '2015-06-17 05:50:04'),
(1435, 4, 0x4661726265, 'Y', '2007-12-06 10:44:05'),
(1436, 4, 0x46617262656e, 'Y', '2007-12-06 10:44:05'),
(1437, 4, 0x4772f6df65, 'Y', '2007-12-06 10:44:05'),
(1438, 4, 0x566f7267616265, 'Y', '2010-04-02 22:19:59'),
(1439, 4, '', 'Y', '2012-07-29 12:52:42'),
(1440, 4, 0x5afc6765, 'Y', '2007-12-06 10:45:50'),
(6098, 36, 0xc3816c6c61706f74, 'Y', '2015-09-19 18:16:23'),
(1441, 4, 0x45726765626e6973, 'Y', '2007-12-06 11:23:53'),
(1442, 4, 0x536965673f, 'Y', '2007-12-06 11:23:53'),
(1443, 4, 0x4765776572746574, 'Y', '2007-12-06 11:23:53'),
(1444, 4, 0x4c65747a746572205a7567, 'Y', '2007-12-06 11:23:53'),
(1446, 4, 0x4c65747a746572204765676e65727a756772696666, 'Y', '2007-12-06 11:23:53'),
(1447, 4, 0x57452d556872, 'Y', '2007-12-06 11:36:26'),
(1479, 4, '', 'Y', '2012-07-29 12:52:42'),
(1480, 4, 0x4c616e64, 'Y', '2013-02-28 16:14:38'),
(1483, 4, 0x537069656c65, 'Y', '2007-12-06 11:36:26'),
(1493, 4, 0x416c6c65, 'Y', '2007-12-06 11:36:26'),
(5423, 11, 0x50617274696a2062657661742062696a6765766f65676465205347462062657374616e64656e, 'Y', '2016-07-27 18:15:51'),
(1497, 4, '', 'Y', '2012-07-29 12:52:42'),
(1498, 4, 0x4b6f6d6d656e746172, 'Y', '2007-12-06 11:36:26'),
(1499, 4, 0x417274, 'Y', '2012-07-10 23:20:33'),
(1502, 4, 0x5a656974, 'Y', '2007-12-06 11:36:26'),
(1503, 4, 0x5374616e64617264706c61747a696572756e67, 'Y', '2007-12-06 11:36:26'),
(1528, 4, 0x416c6c65, 'Y', '2007-12-06 11:39:20'),
(1532, 4, 0x416c6c65204e6163687269636874656e, 'Y', '2007-12-06 11:39:20'),
(1564, 4, 0x416c6c6520537069656c65, 'Y', '2007-12-06 11:39:20'),
(1586, 4, 0x416c6c65, 'Y', '2007-12-06 11:39:20'),
(1591, 4, 0x416c6c65, 'Y', '2007-12-06 11:39:20'),
(1617, 4, 0x416c6c65204ce46e646572, 'Y', '2013-02-28 16:14:38'),
(1630, 4, 0x416c6c65, 'Y', '2007-12-06 11:39:20'),
(1633, 4, 0x416c6c65, 'Y', '2007-12-06 11:39:20'),
(1642, 4, 0x4e6963687420616c73205072656669782065726c61756274, 'Y', '2010-04-02 22:24:17'),
(1631, 4, 0x4a61, 'Y', '2007-12-06 11:42:33'),
(1634, 4, 0x4a61, 'Y', '2007-12-06 11:42:33'),
(1283, 4, 0x49636820686162652065696e656e20476f2d4265677269666620676566756e64656e2c20646572206e6963687420696e20646572204641512073746568742e205761732068617420646173207a7520626564657574656e3f, 'Y', '2007-12-06 11:48:29'),
(1299, 4, 0x576172756d20697374206d65696e20537069656c20756e67657765727465743f, 'Y', '2007-12-07 14:48:37'),
(1373, 4, 0x44657220456d7066e46e67657220646572204e6163687269636874206b616e6e206e6963687420676566756e64656e2077657264656e2e204269747465207072fc66656e205369652c206f622073696520646965204e75747a65722d4944206e75747a656e2c206e6963687420616265722064656e20766f6c6c656e204e616d656e2e, 'Y', '2007-12-06 11:48:29'),
(1384, 4, 0x56657273696f6e7368696e7765697365, 'Y', '2007-12-06 11:48:29'),
(1390, 4, 0x4e75722052656968656e666f6c67656e2d2c206b65696e652054657874e46e646572756e67206df6676c696368, 'Y', '2007-12-07 15:49:47'),
(1474, 4, 0x4e657569676b656974656e2c2056657273696f6e7368696e7765697365, 'Y', '2007-12-06 11:48:29'),
(1541, 4, 0x556e62656b616e6e746572204e75747a6572, 'Y', '2012-12-26 02:24:41'),
(1632, 4, 0x4e65696e, 'Y', '2007-12-06 11:48:29'),
(1635, 4, 0x4e65696e, 'Y', '2007-12-06 11:48:29'),
(1639, 4, 0x57e4686c656e20736965206b65696e2c2065696e206f646572206d65687220456c656d656e7465, 'Y', '2007-12-06 11:48:29'),
(1475, 4, 0xdc6272696765205a656974, 'Y', '2007-12-06 11:49:38'),
(1507, 4, 0x4f72646e6572, 'Y', '2007-12-06 11:51:38'),
(1592, 4, 0x57e4686c65204f72646e6572, 'Y', '2007-12-06 11:51:38'),
(1595, 4, 0x44757263687375636865204f72646e6572, 'Y', '2007-12-06 11:51:38'),
(1513, 4, 0x42657472656666, 'Y', '2007-12-06 11:52:09'),
(1538, 4, 0x446174756d, 'Y', '2007-12-06 11:54:31'),
(1618, 4, '', 'Y', '2012-07-29 12:52:42'),
(1619, 4, 0x6162736f6c7574, 'Y', '2007-12-06 11:54:31'),
(1620, 4, 0x4a61687265, 'Y', '2007-12-06 11:54:31'),
(1621, 4, 0x4d6f6e617465, 'Y', '2007-12-06 11:54:31'),
(1622, 4, 0x576f6368656e, 'Y', '2007-12-06 11:54:31'),
(1623, 4, 0x54616765, 'Y', '2007-12-06 11:54:31'),
(1624, 4, 0x5374756e64656e, 'Y', '2007-12-06 11:54:31'),
(1626, 4, '', 'Y', '2012-07-29 12:52:42'),
(1643, 4, 0x556e67fc6c746967657320446174756d73666f726d6174, 'Y', '2007-12-06 11:54:31'),
(1512, 4, 0x566f6e, 'Y', '2007-12-06 11:55:09'),
(1519, 4, 0x566f6e, 'Y', '2007-12-06 11:55:09'),
(1350, 4, 0x4bf66e6e656e20646965206c65747a74656e204e20537069656c7afc6765206d61726b69657274206f646572206e756d6d6572696572742077657264656e3f, 'Y', '2007-12-06 11:58:21'),
(1515, 4, 0x4d61726b696572756e67, 'Y', '2007-12-06 11:58:21'),
(1482, 4, 0x4f6666656e2066fc72205061727469656e3f, 'Y', '2007-12-06 12:02:11'),
(1481, 4, 0x53656c62737465696e73747566756e67, 'Y', '2007-12-06 12:02:48'),
(1489, 4, 0x416b7469766974e474, 'Y', '2007-12-06 12:03:31'),
(1478, 4, 0x416b746976, 'Y', '2007-12-06 12:03:57'),
(1521, 4, 0x5a65696765205a65696c656e, 'Y', '2007-12-06 12:05:07'),
(1527, 4, 0x466f72756d7375636865, 'Y', '2007-12-06 12:06:15'),
(1594, 4, 0x4e6163687269636874656e7375636865, 'Y', '2007-12-06 12:06:15'),
(1606, 4, 0x5375636865, 'Y', '2007-12-06 12:06:15'),
(1607, 4, 0x5375636865207a7572fc636b7365747a656e, 'Y', '2007-12-06 12:06:15'),
(1467, 4, 0x5a65696765206d65696e65204765676e6572, 'Y', '2007-12-06 12:07:15'),
(1562, 4, 0x4b6f6e74616b746c69737465, 'Y', '2007-12-06 12:09:29'),
(1471, 4, 0x4e6575656e204b6f6e74616b742068696e7a7566fc67656e, 'Y', '2007-12-06 12:09:58'),
(1387, 4, 0x4447532d57756e7363686c69737465, 'Y', '2007-12-06 12:26:57'),
(1388, 4, 0x57fc6e7363686520756e642042697474656e2c20766f6e2064656e656e204447532d4e75747a6572207472e4756d656e, 'Y', '2007-12-06 12:26:57'),
(1391, 4, 0x4d6178696d616c6520546162656c6c656e72656968656e, 'Y', '2007-12-06 13:47:11'),
(1392, 4, 0x45696e656e206e696564726967656e2057657274207a752077e4686c656e2c20656e746c61737465742064656e205365727665722028736965686520464151292e, 'Y', '2007-12-07 15:49:47'),
(1393, 4, 0x44617320417573736568656e206e75722066fc722064696573656e2042726f7773657220e46e6465726e2e, 'Y', '2007-12-06 12:26:57'),
(1394, 4, 0x5a7572fc636b207a756d204641512d496e646578, 'Y', '2007-12-06 12:26:57'),
(1395, 4, 0x46616c6c7320536965204968722050617373776f72742076657267657373656e20686162656e2c206bf66e6e656e207769722049686e656e2065696e206e657565732070657220452d4d61696c207a7573656e64656e2e3c62723e446173206e6575652050617373776f72742077697264207a7566e46c6c69672065727a657567742c206162657220536965206bf66e6e656e206573207370e474657220696e20496872656e2045696e7374656c6c756e67656e20e46e6465726e2e3c62723e536f206c616e67652c2062697320536965206461732050617373776f7274206765e46e6465727420686162656e2c2077657264656e206265696465205061737377f6727465722c2064617320616c746520756e6420646173206e6575652c2066756e6b74696f6e696572656e2e, 'Y', '2007-12-07 15:19:32'),
(1406, 4, 0x496e7465726e6174696f6e616c657220476f2d42756e642e2046696e64656e205369652056657262e46e646520696e206465722067616e7a656e2057656c742e, 'Y', '2007-12-06 12:26:57'),
(1407, 4, 0x45696e20616e64657265722072756e64656e626173696572746572205365727665722c207370657a69616c69736965727420617566206f7267616e69736965727465205475726e696572652e, 'Y', '2007-12-06 12:26:57'),
(1408, 4, 0x4b47532d476f2d536572766572206d6974204a6176612d5363686e6974747374656c6c65, 'Y', '2007-12-06 12:26:57'),
(1456, 4, 0x5a6569676520506172746965, 'Y', '2007-12-06 12:26:57'),
(1457, 4, 0x534746206465722050617274696520686572756e7465726c6164656e, 'Y', '2007-12-06 12:26:57'),
(1361, 4, 0x446572206a6170616e697363686520476f2d426567726966662066fc722065696e20556e656e74736368696564656e3b20626569646520537069656c657220686162656e2064696520676c65696368652050756e6b747a61686c2e, 'Y', '2007-12-07 14:48:37'),
(1371, 4, 0x44617320537069656c2c207a752064656d205369652065696e67656c6164656e2077757264656e2c206b6f6e6e7465206e6963687420676566756e64656e2077657264656e2e20486162656e20536965206573206265726569747320616b7a657074696572743f, 'Y', '2007-12-06 12:31:51'),
(1374, 4, 0x416e2064656d204e75747a65722073636865696e7420736963682077e46872656e642064656d20566f7267616e67206574776173206765e46e64657274207a7520686162656e2e, 'Y', '2007-12-06 12:31:51'),
(1465, 4, 0x4e75747a657220686572617573666f726465726e, 'Y', '2007-12-06 12:31:51'),
(1466, 4, 0x4b6f6e74616b742068696e7a7566fc67656e2fe46e6465726e, 'Y', '2007-12-06 12:31:51'),
(1468, 4, 0x5a656967652065696e6520537069656c73746174697374696b2066fc72207a77656920537069656c6572, 'Y', '2007-12-06 12:31:51'),
(1469, 4, 0x45696e65204e616368726963687420616e204b6f6e74616b742073656e64656e, 'Y', '2007-12-10 01:04:13'),
(1470, 4, 0x4b6f6e74616b7420686572617573666f726465726e, 'Y', '2007-12-06 12:31:51'),
(1476, 4, 0x4b6f6e74616b7420e46e6465726e, 'Y', '2007-12-06 12:31:51'),
(1477, 4, 0x4b6f6e74616b742068696e7a7566fc67656e, 'Y', '2007-12-06 12:31:51'),
(1484, 4, 0x4c617566656e64, 'Y', '2007-12-06 12:31:51'),
(1485, 4, 0x4265656e646574, 'Y', '2007-12-06 12:31:51'),
(1486, 4, 0x4765776f6e6e656e, 'Y', '2009-08-14 20:54:00'),
(1487, 4, 0x5665726c6f72656e, 'Y', '2007-12-06 12:31:51'),
(1540, 4, 0x536965206bf66e6e656e2073696368206e696368742073656c62737420616c73204b6f6e74616b742065696e74726167656e2e, 'Y', '2007-12-06 12:35:57'),
(1542, 4, 0x4b6f6e74616b7420656e746665726e7421, 'Y', '2007-12-06 12:35:57'),
(1543, 4, 0x4b6f6e74616b7420676573706569636865727421, 'Y', '2007-12-06 12:35:57'),
(1546, 4, 0x5072fc6665204b6f6e74616b74, 'Y', '2007-12-06 12:35:57'),
(1547, 4, 0x456e746665726e65204b6f6e74616b74, 'Y', '2007-12-06 12:35:57'),
(1548, 4, 0x53797374656d6772757070656e, 'Y', '2007-12-06 12:35:57'),
(1549, 4, 0x4e75747a65726772757070656e, 'Y', '2007-12-06 12:35:57'),
(1550, 4, 0x4e6f74697a656e, 'Y', '2007-12-06 12:35:57'),
(1551, 4, 0x42697474652068616c74656e2053696520646965204e6f74697a656e206b75727a2c206d6178696d616c20323535205a65696368656e2e, 'Y', '2007-12-06 12:35:57'),
(1552, 4, 0x537065696368657265204b6f6e74616b74, 'Y', '2007-12-06 12:35:57'),
(1553, 4, 0x5a65696765204b6f6e74616b7465, 'Y', '2007-12-06 12:35:57'),
(1555, 4, 0x53797374656d6772757070656e, 'Y', '2007-12-06 12:35:57'),
(1556, 4, 0x4e75747a65726772757070656e, 'Y', '2007-12-06 12:35:57'),
(1557, 4, 0x4e6f74697a656e, 'Y', '2007-12-06 12:35:57'),
(1558, 4, 0x45727374656c6c74, 'Y', '2007-12-06 12:35:57'),
(4651, 3, 0x4d7920502e, 'Y', '2012-09-18 14:36:57'),
(1578, 4, 0x235061727469656e206765776f6e6e656e203a207665726c6f72656e, 'Y', '2007-12-06 12:39:38'),
(1579, 4, 0x235061727469656e206765776f6e6e656e203a207665726c6f72656e2064757263682050756e6b7465, 'Y', '2007-12-06 12:39:38'),
(1580, 4, 0x235061727469656e206765776f6e6e656e203a207665726c6f72656e2064757263682041756667616265, 'Y', '2007-12-06 12:39:38'),
(1581, 4, 0x235061727469656e206765776f6e6e656e203a207665726c6f72656e206475726368205a656974, 'Y', '2007-12-06 12:39:38'),
(1582, 4, 0x235061727469656e206d6974204a69676f, 'Y', '2007-12-06 12:39:38'),
(1583, 4, 0x235061727469656e206d697420566f7267616265, 'Y', '2007-12-06 12:39:38'),
(1584, 4, 0x4d6178696d616c6520566f7267616265, 'Y', '2007-12-06 12:39:38'),
(6345, 3, 0x4f2e522d64696666, 'Y', '2015-05-14 17:12:44'),
(1596, 4, 0x536368fc747a65205061727469656e20696d2057617274657261756d, 'Y', '2007-12-06 12:39:38'),
(1597, 4, 0x4e6163687269636874656e2061626c65686e656e, 'Y', '2007-12-06 12:39:38'),
(1598, 4, 0x486572617573666f72646572756e67656e2061626c65686e656e, 'Y', '2007-12-06 12:39:38'),
(1599, 4, 0x4b756d70656c, 'Y', '2007-12-06 12:39:38'),
(1600, 4, 0x467265756e64, 'Y', '2007-12-06 12:39:38'),
(1601, 4, 0x536368fc6c6572, 'Y', '2007-12-06 12:39:38'),
(1602, 4, 0x4c6568726572, 'Y', '2007-12-07 15:59:20'),
(1603, 4, '', 'Y', '2012-07-29 12:52:42'),
(1604, 4, '', 'Y', '2012-07-29 12:52:42'),
(1608, 4, '', 'Y', '2012-07-29 12:52:42'),
(1609, 4, '', 'Y', '2012-07-29 12:52:42'),
(1610, 4, '', 'Y', '2012-07-29 12:52:42'),
(1612, 4, 0x52414e47, 'Y', '2010-04-02 22:43:37'),
(1613, 4, 0x556e67fc6c7469676520537069656c7374e4726b65, 'Y', '2007-12-06 12:39:38'),
(1660, 4, 0x576965206b616e6e2069636820646965205374616e64617264616e7a61686c206465722052656968656e20e46e6465726e2c206469652065696e6520546162656c6c65206861743f, 'Y', '2007-12-06 13:47:11'),
(1692, 4, 0x5761732073696e64204b6f6e74616b74653f, 'Y', '2007-12-06 12:40:54'),
(1284, 4, 0x44696520447261676f6e2d46415120697374206b65696e20766f6c6c7374e46e64696765732057f67274657262756368206d697420616c6c656e20476f2d42656772696666656e3b206c656469676c69636820626569206d6569737462656e75747a74656e20476f2d42656772696666652077657264656e2065726b6ce472742e0d0a0d0a57656e6e205369652065696e656e20476f2d4265677269666620696e2064657220447261676f6e2d464151206e696368742066696e64656e2c2066726167656e20536965206e6163682069686d20696d203c686f6d6520666f72756d2f6c6973742e7068703f666f72756d3d353e476f2d4469736b7573696f6e73666f72756d3c2f686f6d653e206f646572207363686175656e2053696520696e203c6120687265663d22687474703a2f2f73656e736569732e786d702e6e65742f223e53656e73656973204269626c696f7468656b3c2f613e206e6163682e, 'N', '2007-12-07 02:09:42'),
(1285, 4, 0x576173207061737369657274206d6974206d65696e656d2052616e67206265692065696e656d20556e656e74736368696564656e20284a69676f293f, 'Y', '2007-12-07 02:09:42'),
(1286, 4, 0x57656e6e20626569646520537069656c65722065696e6520676c656963686520416e7a61686c20616e2050756e6b74656e20696e2065696e65722070617373656e64656e2050617274696520686162656e2c20656e6465742073696520696e2065696e656d20556e656e74736368696564656e20283c686f6d65206661712e7068703f726561643d74266361743d3323456e7472793234303e6a69676f3c2f686f6d653e292e20496e2064696573656d2046616c6c20776972642064696520537069656c7374e4726b65e46e646572756e67207a7520676c65696368656e205465696c656e206175666765696c742e0d0a0d0a496e2065696e657220476c6569636861756670617274696520657268f668742073696368206265692065696e656d204a69676f206465722052616e67206465732073636877e463686572656e20537069656c6572733b2064657220646573207374e4726b6572656e20537069656c657273207665727363686c6563687465727420736963682e2044696520c46e646572756e67656e2066616c6c656e20676572696e676572206175732c20616c732077656e6e206465722073636877e4636865726520537069656c6572206765776f6e6e656e2068e47474652e, 'Y', '2007-12-07 02:38:44'),
(1300, 4, 0x45696e6520506172746965203c686f6d65206661712e7068703f726561643d74266361743d31303523456e7472793134393e626565696e666c757373742064656e2052616e673c2f686f6d653e2c2077656e6e2064696520666f6c67656e64656e20426564696e67756e67656e20657266fc6c6c742073696e643a0d0a3c756c3e0d0a3c6c693e44696520506172746965206d75df20616c732067657765727465746520506172746965206765737069656c742077657264656e2e0d0a3c6c693e426569646520537069656c6572206dfc7373656e20fc6265722065696e656e2052616e672076657266fc67656e2e20536965206bf66e6e656e20496872656e203c686f6d65206661712e7068703f726561643d74266361743d31303523456e74727935303e616e66e46e676c696368656e2052616e673c2f686f6d653e20696e20496872656d2042656e75747a657270726f66696c2065696e7374656c6c656e2e0d0a3c6c693e4d65687220616c732066fc6e6620537465696e65206dfc7373656e20766f6e20576569df2067657365747a7420776f7264656e207365696e2e0d0a3c2f756c3e, 'N', '2007-12-07 02:38:44'),
(1345, 4, 0x4e69656d616e642069737420617566206d69742064656d20447261676f6e2d476f2d5365727665722076657262756e64656e2e20457320657869737469657274206b65696e652056657262696e64756e67207a7769736368656e20537069656c65726e20756e64205365727665726e3b20737461747464657373656e20657268e46c7420447261676f6e206c656469676c6963682053656974656e616e66726167656e20756e64206265616e74776f727465742064696573652e204265692064657220416e2d20756e642041626d656c64756e672077657264656e206e7572207370656963686572742050726f66696c6461746569656e2c2064696520436f6f6b6965732c2061756620496872656d20526563686e65722067657370656963686572742e0d0a0d0a446965206c65747a746520416e66726167657a6569742069737420447261676f6e2062656b616e6e7420756e64207769726420616e67657a6569677420616c730d0a3c756c3e0d0a3c6c693e3c693e4c65747a746572205a7567726966663c2f693e2061756620646572205365697465203c686f6d652075736572696e666f2e7068703e42656e75747a6572696e666f3c2f686f6d653e0d0a3c6c693e496e666f726d6174696f6e20696e2064657220546162656c6c6520646572206c617566656e64656e205061727469656e20756e746572203c686f6d65207374617475732e7068703e5374617475733c2f686f6d653e202d2667743b203c686f6d652073686f775f67616d65732e7068703f7569643d616c6c3e4c617566656e6465205061727469656e3c2f686f6d653e2e20446965205370616c7465203c693e4c657a746572204765676e65727a7567726966663c2f693e206d75df20766f6e2049686e656e206576656e7475656c6c20657273742068696e7a75676566fc67742077657264656e2e0d0a3c2f756c3e, 'N', '2007-12-10 01:09:38'),
(1351, 4, 0x496e20496872656e203c686f6d6520656469745f70726f66696c652e7068703e70657273f66e6c696368656e2045696e7374656c6c756e67656e3c2f686f6d653e206bf66e6e656e2053696520646965205a75676e756d6d6572696572756e672065696e736368616c74656e2e0d0a0d0a45696e69676520416e6d65726b756e67656e207a75206469657365722046756e6b74696f6e3a0d0a3c756c3e0d0a3c6c693e446965205a75676e756d6d6572696572756e67206b616e6e2065732066fc72205369652076657265696e66616368656e2c2064696520537069656c656e747769636b6c756e67207a7520736568656e20756e64207769652049687265205374726174656769652068e4747465207365696e206bf66e6e656e2e204461626569206bf66e6e656e2049686e656e2061756368203c686f6d65206661712e7068703f726561643d74266361743d33363523456e7472793232393e7072697661746520537069656c6e6f74697a656e3c2f686f6d653e2068656c66656e2e0d0a3c6c693e4573206b616e6e2049686e656e2068656c66656e2c2064756d6d65204665686c657220696e204b6f6be46d7066656e207a75207665726d656964656e2e0d0a3c6c693e446965205a75676e756d6d6572696572756e67206b616e6e20756efc62657273696368746c69636820756e642076657277697272656e64207365696e2c2077657368616c62206d616e2073696520617573736368616c74656e206b616e6e2e0d0a3c6c693e446965204e756d6d696572756e6720766f6e205afc67656e20617566204447532066e46e677420696d6d6572206d6974203c74743e313c2f74743e20616e2e20417563682064696520566f7267616265737465696e652077657264656e206e756d6d6572696572742e0d0a3c2f756c3e0d0a0d0a4475726368206469652045696e676162652065696e6572205a61686c2077657264656e20646965206c65747a74656e203c74743e4e3c2f74743e205afc6765206e756d6d6572696572742e204d69742065696e6572203c74743e303c2f74743e20776972642064696573652046756e6b74696f6e20776965646572206175736765736368616c7465742e20446572206c65747a7465205a7567207769726420696d6d6572206d69742065696e656d204b72656973206d61726b696572742e0d0a0d0a57656e6e20536965203c693e536368776562656e643c2f693e20616e6b7265757a656e2c2064616e6e20657273636865696e7420646965205a75676e756d6d657220616c7320546578742c2077656e6e205369652064656e204d6175737a656967657220fc6265722064656e20537465696e2068616c74656e2e, 'N', '2007-12-07 14:48:37'),
(1661, 4, 0x476568656e2053696520696e20496872652042656e75747a657265696e7374656c6c756e67656e20756e6420e46e6465726e20536965203c693e4d6178696d616c6520546162656c6c656e72656968656e3c2f693e2e0d0a0d0a426974746520626561636874656e205369653a204a65206772f6df65722064696520416e7a61686c20646572205a65696c656e206973742c20646573746f206d656872206861742064657220536572766572207a75206c65697374656e2e2044616865722069737420657320656d70666f686c656e2c2065696e656e206e696564726967656e2057657274207a752076657277656e64656e2e, 'Y', '2007-12-07 14:48:37'),
(1693, 4, 0x44696573652046756e6b74696f6e2065726c617562742049686e656e2c2065696e6520417274204c6573657a65696368656e6c6973746520616e646572657220537069656c6572207a752065727374656c6c656e20756e6420736963682070726976617465204e6f74697a656e207a7520537069656c65726e206175667a7573636872656962656e2e20556e7465722064656e204b6f6e74616b74656e2066696e64656e205369652053797374656d2d20756e64204e75747a65726772757070656e3a204469652053797374656d6772757070656e20686162656e2065696e656e2045696e666c75df20617566206e657565205061727469656e206d697420616e646572656e20537069656c65726e2c206e657565204e6163687269636874656e20756e6420537069656c616e6765626f74653b206d69742064656e204e75747a65726772757070656e206c617373656e207369636820616e6465726520537069656c65726e2065696e65722062657374696d6d74656e20477275707065207a756f72646e656e2e0d0a0d0a46fc72207765697465726520496e666f726d6174696f6e656e207363686175656e2053696520626974746520696e2064656e20616e646572656e204641512d45696e7472e467656e20fc626572204b6f6e74616b7465206e6163683a0d0a3c756c3e0d0a3c6c693e3c686f6d65206661712e7068703f726561643d74266361743d33363123456e7472793236303e576965206b616e6e206963682065696e656e2042656e75747a6572207a75206d65696e656e204b6f6e74616b74656e2068696e7a7566fc67656e3f3c2f686f6d653e2028656e7468e46c742065696e6520426573636872656962756e6720616c6c6572204772757070656e290d0a3c6c693e3c686f6d65206661712e7068703f726561643d74266361743d33363123456e7472793236343e576965206b616e6e206963682065696e656e2042656e75747a657220766f6e206d65696e656e204b6f6e74616b74656e20656e746665726e656e3f3c2f686f6d653e0d0a3c6c693e3c686f6d65206661712e7068703f726561643d74266361743d33363123456e7472793236323e57617320626564657574656e206469652042656772696666652061756620646572204b6f6e74616b7473656974653f3c2f686f6d653e0d0a3c6c693e3c686f6d65206661712e7068703f726561643d74266361743d32303023456e7472793235353e576965206b616e6e2069636820696e206d65696e656e204b6f6e74616b74656e2073756368656e3f3c2f686f6d653e0d0a3c6c693e3c686f6d65206661712e7068703f726561643d74266361743d33363123456e7472793236353e4b616e6e20696368206d65696e65205061727469656e20696d2057617274657261756d2066fc722062657374696d6d74652042656e75747a6572207370657272656e3f3c2f686f6d653e0d0a3c6c693e3c686f6d65206661712e7068703f726561643d74266361743d33363123456e7472793236363e4b616e6e20696368204e6163687269636874656e2062657374696d6d7465722042656e75747a65726e2061626c65686e656e3f3c2f686f6d653e0d0a3c6c693e3c686f6d65206661712e7068703f726561643d74266361743d33363123456e7472793236373e4b616e6e2069636820537069656c616e6765626f74652062657374696d6d7465722042656e75747a65722061626c65686e656e3f3c2f686f6d653e0d0a3c2f756c3e, 'Y', '2007-12-07 14:48:37'),
(1379, 4, 0x48617574, 'Y', '2007-12-07 15:04:11'),
(1212, 4, 0x57696c6c6b6f6d6d656e2062656920257321, 'Y', '2007-12-07 15:19:32'),
(1213, 4, 0x57696c6c6b6f6d6d656e206265692025732c2065696e656d20257366726569656e257320536572766572207a756d20476f2d537069656c656e2c20776f20537069656c652064617a75206e656967656e2c2073696368202268696e7a757a696568656e222028656e676c2e3a2064726167206f6e292e, 'Y', '2007-12-07 15:19:32'),
(1266, 4, 0x4d616e206b616e6e20657320616c732065696e6520417274203c693e537069656c656e2070657220452d4d61696c3c2f693e206265747261636874656e2c20776f6265692065696e6520677261666973636865204f626572666ce46368652062656e75747a7420776972642c20756d2064617320537069656c62726574742061747472616b7469766572207a752067657374616c74656e2e20556d207a7520737069656c656e2c20736f6c6c74656e205369652073696368207a756ee4636873742065696e203c6120687265663d2272656769737465722e706870223e42656e75747a65726b6f6e746f3c2f613e20616e6c6567656e2c2066616c6c732053696520646173206e69636874207363686f6e20676574616e20686162656e2e2044616e616368206bf66e6e656e205369652049687265203c6120687265663d22656469745f70726f66696c652e706870223e45696e7374656c6c756e67656e206265617262656974656e3c2f613e20756e642065696e696765203c6120687265663d22656469745f62696f2e706870223e62696f67726166697363686520496e666f726d6174696f6e656e3c2f613e20616e676562656e2e204265736f6e64657273206469652046656c646572203c693e4265726569742066fc72205061727469656e3f3c2f693e2c203c693e537069656c7374e4726b653c2f693e20756e64203c693e53656c62737465696e73747566756e673c2f693e2073696e64206efc747a6c6963682c20756d204765676e6572207a752066696e64656e2e20556d2067656569676e657465204765676e65722066fc722065696e65203c6120687265663d226d6573736167652e7068703f6d6f64653d496e76697465223e486572617573666f72646572756e673c2f613e207a752066696e64656e2c206bf66e6e656e2053696520616e7363686c6965df656e6420646965203c6120687265663d2275736572732e706870223e42656e75747a65726c697374653c2f613e206265747261636874656e206f64657220646965203c6120687265663d2270686f72756d2f696e6465782e706870223e466f72656e3c2f613e2076657277656e64656e2e, 'Y', '2007-12-07 15:20:17'),
(1409, 4, 0x5375636865204e6163687269636874656e, 'Y', '2007-12-07 15:31:05'),
(1505, 4, 0x50617373656e646520566f72676162652028646173204b6f6d69207769726420766f6d2053797374656d2062657374696d6d7429, 'Y', '2007-12-07 15:31:05'),
(1506, 4, 0x417274, 'Y', '2007-12-07 15:31:05'),
(1508, 4, 0x417274, 'Y', '2007-12-07 15:31:05'),
(1509, 4, 0x5269636874756e67, 'Y', '2007-12-07 15:31:05'),
(1510, 4, 0x53636872656962706172746e6572, 'Y', '2007-12-07 15:31:05'),
(1511, 4, 0x416e, 'Y', '2007-12-07 15:33:16'),
(1516, 4, 0x496368, 'Y', '2007-12-07 15:33:16'),
(1517, 4, '', 'Y', '2012-07-29 12:52:42'),
(1518, 4, 0x416e, 'Y', '2007-12-07 15:33:16'),
(1585, 4, 0x5a65696765206e75722064696520416e66616e67736e6163687269636874656e, 'Y', '2007-12-07 15:33:16'),
(1587, 4, 0x537069656c62657a6f67656e, 'Y', '2007-12-07 15:33:16'),
(1588, 4, 0x537069656c756e62657a6f67656e, 'Y', '2007-12-07 15:33:16'),
(1590, 4, 0x5375636865204e75747a65722d4944, 'Y', '2007-12-07 15:33:16'),
(6245, 3, 0x542d4c617374204d76, 'Y', '2015-01-11 12:16:47'),
(1279, 4, 0x4368696e6573697363682028747261646974696f6e656c6c2c205554462d3829, 'Y', '2007-12-07 15:49:47'),
(1280, 4, 0x54fc726b69736368, 'Y', '2007-12-07 15:49:47'),
(1281, 4, 0x556e67617269736368, 'Y', '2007-12-07 15:49:47'),
(1389, 4, 0x52656968656e666f6c6765206465722042696f67726166696520e46e6465726e, 'Y', '2007-12-07 15:49:47'),
(1464, 4, 0x5a65696765204765676e6572, 'Y', '2007-12-07 15:51:59'),
(1490, 4, 0x4c65747a746572205a756772696666, 'Y', '2007-12-07 15:51:59'),
(1492, 4, 0x5a75736368617565722064657320537069656c6573202573, 'Y', '2007-12-07 15:51:59'),
(1544, 4, 0x4b6f6e74616b74656e746665726e756e67, 'Y', '2007-12-07 15:51:59'),
(1545, 4, 0x4b6f6e74616b746265617262656974756e67, 'Y', '2007-12-07 15:51:59'),
(1554, 4, 0x46756e6b74696f6e656e, 'Y', '2007-12-07 15:58:05'),
(1560, 4, 0x53756368652053797374656d6772757070656e, 'Y', '2007-12-07 15:58:05'),
(1561, 4, 0x5375636865204e75747a65726772757070656e, 'Y', '2007-12-07 15:58:05'),
(1565, 4, 0x4c617566656e6465205061727469656e, 'Y', '2007-12-07 15:58:05'),
(1566, 4, 0x4265656e64657465205061727469656e, 'Y', '2007-12-07 15:58:05'),
(1109, 7, 0x4ee1686c6564, 'Y', '2016-07-20 16:20:15'),
(1568, 4, 0x4b6f6d706c657474652053746174697374696b206e75722066fc72206265656e64657465205061727469656e, 'Y', '2007-12-07 15:58:05'),
(1569, 4, 0x4c65747a746520c46e646572756e67, 'Y', '2007-12-07 15:58:05'),
(1570, 4, 0x50617274696573746174697374696b2066fc7220537069656c6572202573, 'Y', '2007-12-07 15:58:05'),
(1572, 4, 0x4d69636820616c73204765676e657220616e7a656967656e, 'Y', '2007-12-07 15:58:05'),
(1573, 4, 0x416c73206d65696e656e204765676e657220616e7a656967656e, 'Y', '2007-12-07 15:58:05'),
(1574, 4, 0xc46e64657265204765676e6572726f6c6c65, 'Y', '2007-12-07 15:58:05'),
(1575, 4, 0x537069656c65726661726265, 'Y', '2007-12-07 15:58:05'),
(1576, 4, 0x53756d6d65, 'Y', '2007-12-07 15:58:05'),
(1577, 4, 0x5369656776657268e46c746e6973, 'Y', '2007-12-07 15:58:05'),
(1238, 4, 0x466f72756d6d6f64657261746f7220e46e6465726e, 'Y', '2007-12-07 21:54:33'),
(1241, 4, 0x4d6f646572696572656e, 'Y', '2007-12-07 21:54:33'),
(1243, 4, 0x766f6e, 'Y', '2007-12-07 21:54:33'),
(5751, 25, 0x436f7461726520454c4f204d696e202d204d6178, 'Y', '2014-11-26 10:16:34'),
(1525, 4, 0x657273746572206e657565722042656974726167, 'Y', '2007-12-07 22:03:47'),
(1526, 4, 0x676566756e64656e20696e20466f72756d, 'Y', '2007-12-07 22:03:47'),
(1529, 4, 0x426567726966667372656c6576616e7a, 'Y', '2007-12-07 22:03:47'),
(1533, 4, 0x4572737465204e6163687269636874, 'Y', '2007-12-07 22:05:30'),
(1535, 4, 0x42656772696666652073756368656e, 'Y', '2007-12-07 22:05:30'),
(1536, 4, 0x4175746f7220284e75747a65722d494429, 'Y', '2007-12-07 22:05:30'),
(1537, 4, 0x4e6163687269636874656e62657265696368, 'Y', '2007-12-07 22:05:30'),
(1539, 4, 0x52656968656e666f6c6765, 'Y', '2007-12-07 22:05:30'),
(1654, 4, 0x426573636872656962756e67, 'Y', '2007-12-07 22:05:30'),
(1228, 4, 0x53746174697374696b6772617068, 'Y', '2007-12-07 22:11:13'),
(1274, 4, 0x546167, 'Y', '2010-04-02 22:17:22'),
(1275, 4, 0x54616765, 'Y', '2010-04-02 22:19:59'),
(1276, 4, 0x537464, 'Y', '2013-12-31 11:15:15'),
(1277, 4, 0x5374756e64656e, 'Y', '2010-04-02 22:19:59'),
(1385, 4, 0x53656974656e737472756b747572, 'Y', '2007-12-07 22:11:13'),
(1463, 4, 0x5a6569676520537069656c7374e4726b656e6772617068, 'Y', '2007-12-07 22:11:13'),
(1563, 4, 0x4447532d4e6163687269636874656e, 'Y', '2007-12-07 22:11:13'),
(1627, 4, 0x6162736f6c7574, 'Y', '2007-12-07 22:11:13'),
(1628, 4, 0x6b65696e65205a61686c, 'Y', '2007-12-07 22:11:13'),
(1629, 4, 0x7669656c6c656963687420776f6c6c656e20536965206162736f6c75742077e4686c656e, 'Y', '2007-12-07 22:11:13'),
(1637, 4, 0x457870657274656e6d6f647573, 'Y', '2007-12-07 22:11:13'),
(1640, 4, 0x5a75207669656c65205472656e6e6572, 'Y', '2007-12-07 22:11:13'),
(1645, 4, 0x756e67fc6c746967657220546167, 'Y', '2007-12-07 22:15:44'),
(1647, 4, 0x756e67fc6c7469676520584d4c2d456e746974e47420616e20506f736974696f6e2023, 'Y', '2010-04-02 22:27:32'),
(1648, 4, 0x756e67fc6c7469676520584d4c2d4d61726b6520616e20506f736974696f6e2023, 'Y', '2010-04-02 22:27:32'),
(1650, 4, 0x756e67fc6c7469676520584d4c2d456e646d61726b6520616e20506f736974696f6e2023, 'Y', '2010-04-02 22:27:32'),
(1651, 4, 0x756e67fc6c746967657320584d4c2d417474726962757420616e20506f736974696f6e2023, 'Y', '2010-04-02 22:27:32'),
(1574, 36, 0x456c6c656e66c3a96c20737a65726570c3a96e656b2063736572c3a96a65, 'Y', '2015-09-19 18:26:30'),
(1473, 4, 0x4475726368737563686520466f72656e, 'Y', '2007-12-08 15:14:52'),
(1523, 4, 0x537069656c7374e4726b656e686973746f6772616d6d, 'Y', '2007-12-08 15:14:52'),
(1641, 4, 0x6d696e64657374656e732025312473205a65696368656e2077657264656e2062656ef6746967742c2077656e6e206465722054657874206d69742064656d20506c61747a68616c746572205b253224735d20626567696e6e74, 'Y', '2007-12-08 15:14:52'),
(1644, 4, 0x656e7468e46c7420756e67fc6c746967657320446174756d, 'Y', '2007-12-08 15:14:52'),
(1646, 4, 0x66616c736368652041757377657274756e6773756e7465726472fc636b756e6720282271756f74696e672229, 'Y', '2010-04-02 22:27:32'),
(1462, 4, 0x416e646572652042656e75747a6572696e666f, 'Y', '2007-12-10 01:09:38'),
(1725, 4, 0x4c697a656e7a, 'Y', '2007-12-19 18:41:34'),
(1731, 4, '', 'Y', '2012-07-29 12:52:42'),
(1520, 4, 0x4665686c6572, 'Y', '2010-04-02 22:19:59'),
(1726, 4, '', 'Y', '2012-07-29 12:52:42'),
(1396, 34, 0xe68c89e4b88be3808ce98081e587bae3808de7a2bae8aa8d, 'Y', '2007-12-20 07:09:02'),
(1399, 34, 0xe981b8e69387e5a29ee58aa0e5b08de6898be5a49ae5b091e69982e99693, 'Y', '2012-01-15 09:15:30'),
(1400, 34, 0xe5a29ee58aa0e5b08de6898be4b8bbe8a681e69982e99693, 'Y', '2012-01-15 09:16:28'),
(1401, 34, 0xe9878de696b0e980b2e585a5e69982e9878de8a8ade58092e695b8e8a888e69982, 'Y', '2012-02-08 16:33:12'),
(1402, 34, 0xe5a29ee58aa0e69982e99693, 'Y', '2007-12-20 07:09:02'),
(1403, 34, 0xe58f96e6b688, 'Y', '2007-12-20 07:09:02'),
(1573, 36, 0x4d75746173736f6e20656e67656d20617a20656c6c656e66656c656d6bc3a96e74, 'Y', '2015-09-19 18:26:30'),
(6097, 36, 0x56617269c3a16369c3b320656cc5916ec3a97a657465, 'Y', '2015-09-19 18:15:44'),
(1732, 4, 0x45727374656c6c756e6773646174756d20286e657565207a756572737429, 'Y', '2007-12-31 19:21:13'),
(1733, 4, 0x45727374656c6c756e6773646174756d2028616c7465207a756572737429, 'Y', '2007-12-31 19:21:13'),
(1734, 4, 0xc46e646572756e6773646174756d20286e657565207a756572737429, 'Y', '2007-12-31 19:21:13'),
(1735, 4, 0xc46e646572756e6773646174756d2028616c7465207a756572737429, 'Y', '2007-12-31 19:21:13'),
(1736, 4, 0x54726566666572616e7a61686c, 'Y', '2007-12-31 19:21:13'),
(1737, 4, 0x4d696e7574656e, 'Y', '2007-12-31 19:21:13'),
(1382, 4, 0x45696e7374696567, 'Y', '2007-12-31 19:26:13'),
(1374, 5, 0x44e9736f6ce92c206c277574696c6973617465757220636f6e6e656374e92073656d626c652061766f6972206368616e67e92070656e64616e74206c276f70e9726174696f6e2e, 'Y', '2008-01-02 22:14:24'),
(1375, 5, 0x44e9736f6ce92c206c652070736575646f6e796d65207574696c6973e9206e276573742070617320636f72726563742e, 'Y', '2008-01-02 22:14:24'),
(1376, 5, 0x44e9736f6ce92c206c652070736575646f6e796d65207574696c6973e920706f7572206c2761647665727361697265206e26233033393b6573742070617320636f72726563742e, 'Y', '2008-01-02 22:15:52'),
(1377, 5, 0x44e9736f6ce92c20696c2079206120756e2070726f626ce86d6520646520636f6e66696775726174696f6e2061766563206c652066696c747265206465207265636865726368652e, 'Y', '2008-01-02 22:14:24'),
(1393, 34, 0xe58385e694b9e8ae8ae6ada4e7808fe8a6bde599a8, 'Y', '2012-01-14 06:12:22'),
(1476, 34, 0xe7b7a8e8bcafe881afe7b5a1e4baba, 'Y', '2012-01-15 17:01:41'),
(1477, 34, 0xe58aa0e585a5e881afe7b5a1e4baba, 'Y', '2012-01-15 07:40:29'),
(1478, 34, 0xe6b4bbe8ba8d, 'Y', '2008-01-03 07:13:32'),
(1479, 34, 0xe5a793e5908d, 'Y', '2008-01-03 07:13:32'),
(1480, 34, 0xe59c8be5aeb6, 'Y', '2008-01-03 07:13:32'),
(1481, 34, 0xe58f83e88083e7ad89e7b49a, 'Y', '2012-01-14 10:17:31'),
(1482, 34, 0xe9968be694bee5b08de5b180, 'Y', '2008-01-03 07:13:32'),
(1484, 34, 0xe980b2e8a18c, 'Y', '2012-01-14 10:12:38'),
(1485, 34, 0xe7b590e69d9f, 'Y', '2012-01-14 10:21:12'),
(1486, 34, 0xe58b9d, 'Y', '2008-01-03 07:13:32'),
(1487, 34, 0xe8b2a0, 'Y', '2008-01-03 07:13:32'),
(1489, 34, 0xe6b4bbe8ba8de7a88be5baa6, 'Y', '2008-01-03 07:13:32'),
(1490, 34, 0xe4b88ae6aca1e799bbe585a5, 'Y', '2008-01-03 07:13:32'),
(1492, 34, 0xe8a780e79c8be6a38be5b180202573, 'Y', '2012-01-16 15:53:25'),
(1497, 34, 0xe8b387e8a88a, 'Y', '2008-01-03 07:13:32'),
(1540, 34, 0xe4b88de883bde68a8ae887aae5b7b1e58897e585a5e881afe7b5a1e5908de596ae, 'Y', '2008-01-03 07:13:32'),
(1541, 34, 0xe4b88de79fa5e5908de794a8e688b6, 'N', '2012-01-14 08:44:58'),
(1542, 34, 0xe5b7b2e5be9ee881afe7b5a1e5908de596aee7a7bbe999a4efbc81, 'Y', '2008-01-03 07:13:32'),
(1543, 34, 0xe584b2e5ad98e696bce881afe7b5a1e5908de596ae, 'Y', '2008-01-03 07:13:32'),
(1544, 34, 0xe7a7bbe999a4e881afe7b5a1e5908de596ae, 'Y', '2008-01-03 07:13:32'),
(1545, 34, 0xe7b7a8e8bcafe881afe7b5a1e4baba, 'Y', '2012-01-14 08:39:22'),
(1546, 34, 0xe5af9fe79c8be881afe7b5a1e4baba, 'Y', '2012-01-14 08:40:37'),
(1378, 7, 0x4b6f6e74616b7479, 'Y', '2008-01-08 15:28:39'),
(1415, 7, '', 'Y', '2008-01-08 15:28:39'),
(1416, 7, '', 'Y', '2008-01-08 15:28:39'),
(1429, 7, 0x50726f7469766eed6b, 'Y', '2008-01-08 15:28:39'),
(1433, 7, '', 'Y', '2008-01-08 15:28:39'),
(1435, 7, 0x4261727661, 'Y', '2008-01-08 15:28:39'),
(1437, 7, 0x56656c696b6f7374, 'Y', '2008-01-08 15:28:39'),
(1438, 7, 0x48656e64696b6570, 'Y', '2008-01-08 15:28:39'),
(1439, 7, '', 'Y', '2008-01-08 15:28:39'),
(128, 17, 0x446f2067f37279, 'Y', '2008-01-10 21:24:56'),
(129, 17, 0x572064f3b3, 'Y', '2008-01-10 21:24:56'),
(2, 27, 0x506172646f6e612c206c61206a7561206e6f2065732066696e6964612e, 'Y', '2008-01-20 11:59:25'),
(7, 27, 0x506172646f6e612c207475206e6f20706f746520696e76697461207475206d65736d612e, 'Y', '2008-01-20 11:59:25'),
(1342, 34, 0xe5a682e4bd95e689bee4babae4b88be68c87e5b08ee6a38befbc9f, 'Y', '2008-01-27 06:49:28'),
(1344, 34, 0xe5a682e4bd95e79fa5e98193e8aab0e6ada3e59ca8e7b79ae4b88aefbc9f, 'Y', '2008-01-27 06:49:28'),
(1360, 34, 0x4a69676f20e5928ce5b180, 'Y', '2008-01-27 06:49:28'),
(1361, 34, 0xe697a5e69cace8aa9eefbc8ce6848fe6809de698afe5b9b3e6898befbc8ce99b99e696b9e983bde69c89e79bb8e5908ce79a84e9bb9ee695b8e38082, 'Y', '2008-01-27 06:49:28'),
(1389, 34, 0xe5b08fe582b3e6aca1e5ba8f, 'Y', '2012-01-30 19:59:58'),
(1390, 34, 0xe58385e694b9e8ae8ae9a086e5ba8fefbc8ce784a1e6b395e694b9e8ae8ae69687e5ad97, 'Y', '2012-01-15 17:19:37'),
(1572, 36, 0x4d75746173736f6e20656e67656d20656c6c656e66c3a96c6bc3a96e74, 'Y', '2015-09-19 18:26:30'),
(6095, 36, 0x536f726f7a6174206dc3b3646f73c3ad74c3a17361, 'Y', '2015-09-19 18:15:44'),
(1281, 24, 0x4d61c48f6172736bc3bd, 'Y', '2008-02-04 00:11:30'),
(1283, 24, 0x4e61c5a169656c20736f6d207465726dc3ad6e20476f2c206b746f72c3bd207361206e656e616368c3a1647a612076204fc48c4b4f2e20c48c6f20746f207a6e616d656ec3a13f, 'Y', '2008-02-04 00:11:30'),
(1237, 17, 0x537a756b616a, 'Y', '2008-02-22 21:55:25'),
(1375, 24, 0x50726570c3a1c48d2c20706f75c5be696c6f207361206e65737072c3a1766e65204944206872c3a1c48d612e, 'Y', '2008-02-24 16:28:51'),
(1376, 24, 0x50726570c3a1c48d2c20706f75c5be696c6f207361206e65737072c3a1766e65204944207072652073c3ba706572612e, 'Y', '2008-02-24 16:28:51'),
(1360, 24, '', 'Y', '2009-06-22 11:09:03'),
(1361, 24, 0x4a61706f6e736bc3bd207465726dc3ad6e207072652072656dc3ad7a752e204f62616a61206872c3a1c48d69206d616ac3ba20726f766e616bc3bd20706fc48d657420626f646f762e, 'Y', '2008-02-24 16:30:21'),
(275, 8, 0xab44b160a66eaababec7b2dfbaf4afb8, 'Y', '2008-03-07 07:41:01'),
(276, 8, 0xad5eb0eab3f2b4d1a8f3b77cb8d4b2d3a4b6b2d0, 'Y', '2008-03-07 07:41:01'),
(1446, 8, 0xb9efa4e2a457a6b8b56ea44a, 'Y', '2008-03-16 06:36:13'),
(1446, 34, 0xe5b08de6898be4b88ae6aca1e799bbe585a5, 'Y', '2008-03-16 06:38:24'),
(1396, 8, 0xabf6a4552671756f743bb065a5582671756f743bbd54bb7b, 'Y', '2008-05-07 09:43:19'),
(1397, 8, 0xbc57a55bb9efa4e2aec9b6a1, 'Y', '2012-01-15 09:12:28'),
(1398, 8, 0xc65bbed4aacc, 'Y', '2012-01-16 15:50:27'),
(1467, 8, 0xa7daaabab9efa4e2, 'Y', '2008-05-07 07:20:14'),
(1464, 8, 0xc5e3a5dcb9efa4e2, 'Y', '2008-05-07 07:20:14'),
(1463, 8, 0xc5e3a5dcb4d1a44fb9cf, 'Y', '2008-05-07 07:20:14'),
(1497, 8, 0xb8eaaec6, 'Y', '2008-05-07 09:29:45'),
(1607, 8, 0xadabb773b76ab44d, 'Y', '2008-05-07 09:32:11'),
(1638, 8, 0xad70a4c0, 'Y', '2008-05-07 09:33:11'),
(1441, 8, 0xad70a4c0, 'Y', '2008-05-07 09:33:11'),
(1473, 8, 0xb76ab44dbdd7bec2, 'Y', '2008-05-07 09:33:11'),
(1409, 8, 0xb76ab44dab48bd63, 'Y', '2008-05-07 09:33:11'),
(1606, 8, 0xb76ab44d, 'Y', '2008-05-07 09:33:11'),
(1436, 8, 0xf9d6a6e2, 'Y', '2008-05-07 09:35:09'),
(1498, 8, 0xb3c6b5f9, 'Y', '2009-02-14 07:28:26'),
(1506, 8, 0xc3feabac, 'Y', '2008-05-07 09:37:16'),
(1508, 8, 0xc3feabac, 'Y', '2008-05-07 09:37:16'),
(1499, 8, 0xc3feabac, 'Y', '2008-05-07 09:37:16'),
(1502, 8, 0xaec9adad, 'Y', '2008-05-07 09:38:11'),
(1483, 8, 0xa7bdbcc6, 'Y', '2008-05-07 09:41:55'),
(1573, 8, 0xa7daaabab9efa4e2, 'Y', '2008-05-07 09:46:11'),
(1553, 8, 0xc5e3a5dcc170b5b8a657b3e6, 'Y', '2012-01-14 08:43:18'),
(1493, 8, 0xa5fe, 'Y', '2012-01-14 08:29:23'),
(1059, 8, 0xc5e3a5dc, 'Y', '2008-05-07 09:52:07'),
(1521, 8, 0xa6e6bcc6, 'Y', '2008-05-07 09:52:07'),
(1477, 8, 0xa55ba44ac170b5b8a448, 'Y', '2012-01-15 07:40:15'),
(1466, 8, 0xb773bc572fbd73bfe8c170b5b8a448, 'Y', '2008-06-09 16:43:13'),
(1476, 8, 0xbd73bfe8c170b5b8a448, 'Y', '2008-06-09 16:43:13'),
(675, 2, 0x4b616e206a656720737461727465206574206e797474207370696c6c20766564e5206c61737465206f707020656e205347462d66696c3f, 'Y', '2008-07-26 20:40:42'),
(676, 2, 0x4e65692e, 'N', '2008-07-26 20:40:42'),
(1393, 8, 0xb6c8a7efc5dca6b9c273c4fdbeb9, 'Y', '2012-01-14 06:12:32'),
(1391, 8, 0xb3cca668a6e6bcc6, 'Y', '2012-01-14 08:08:35'),
(1392, 8, 0xbfefbedcb8fba743bcc6a5d8a569c0b0a755a6f8aa41beb9a15dbdd0acddb160a8a3b0ddc344a15e, 'Y', '2008-07-28 13:19:57'),
(1471, 8, 0xb773bc57c170b5b8a448, 'Y', '2008-08-04 09:56:52'),
(1562, 8, 0xc170b5b8a657b3e6, 'Y', '2008-08-04 09:57:57'),
(1545, 8, 0xbd73bfe8c170b5b8a448, 'Y', '2008-08-04 09:59:04'),
(1156, 24, 0xc48c6f206a652075706f7a6f726e656e696520453d6d61696c6f6d3f, 'Y', '2008-08-27 15:33:03'),
(1243, 24, 0x6f, 'Y', '2008-08-27 15:33:03'),
(1378, 24, 0x4b6f6e74616b7479, 'Y', '2008-08-27 15:37:17'),
(1379, 24, 0x4b6fc5be61, 'Y', '2008-08-27 15:37:17'),
(1377, 24, 0x50726570c3a1c48d2c206dc3a16d2070726f626cc3a96d2073206b6f6e6669677572c3a163696f752070726568c4be6164c3a17661636965686f2066696c7472612e, 'Y', '2008-08-27 15:39:39'),
(1382, 24, 0x5a61c48dc3ad6e616d65, 'Y', '2008-08-27 15:39:39'),
(1383, 24, 0x4e6f76696e79, 'Y', '2008-08-27 15:39:39'),
(1384, 24, 0x506f7a6ec3a16d6b79206b20767964616e6975, 'Y', '2008-08-27 15:39:39'),
(1385, 24, 0xc5a07472756b74c3ba726120737472c3a16e6f6b, 'Y', '2008-08-27 15:39:39'),
(1374, 24, 0x5072657061c48d2c20707269686cc3a173656ec3bd2075c5bec3ad76617465c4be207361207a6d656e696c20706fc48d6173206f706572c3a16369652e, 'Y', '2008-08-27 15:41:47'),
(1386, 24, 0x5a6f7a6e616d206c696e69656b, 'Y', '2008-08-27 15:41:47'),
(1387, 24, 0x5a6f7a6e616d20c5be656c616ec3ad206b20444753, 'Y', '2008-08-27 15:41:47'),
(1388, 24, 0x5679736ec3ad76616ec3a920766c6173746e6f737469206120706fc5be69616461766b792075c5bec3ad76617465c4be6f7620444753, 'Y', '2008-08-27 15:41:47'),
(1447, 8, 0xb667a5bd, 'Y', '2009-02-28 03:07:14'),
(1419, 8, 0xb6c2a4e8c1c9ab65b5a5afc5, 'Y', '2009-01-16 13:33:14'),
(1423, 8, 0xa5d5a4e8c1c9ab65b5a5afc5, 'Y', '2009-01-16 13:33:14'),
(2723, 6, 0x536168617261204f63636964656e74616c2028526570fa626c69636120c1726162652053616861726175692044656d6f6372e17469636129, 'Y', '2015-06-18 20:49:08'),
(1503, 8, 0xac50a6ec, 'Y', '2009-01-31 17:24:42'),
(1480, 8, 0xb0eaae61, 'Y', '2009-01-31 17:22:47'),
(1614, 8, 0xb0eaae61, 'Y', '2009-01-31 17:22:47'),
(1479, 8, 0xa96da657, 'Y', '2009-01-31 17:23:23'),
(1776, 8, 0xaa41b0c8b1f8b4da, 'Y', '2009-02-04 12:56:42'),
(1383, 8, 0xb773bb44, 'Y', '2009-02-04 12:57:49');
INSERT INTO `Translations` (`Original_ID`, `Language_ID`, `Text`, `Translated`, `Updated`) VALUES
(1725, 8, 0xb0f5b7d3, 'Y', '2009-02-04 12:58:25'),
(38, 21, 0x506172646f6e752c206d692068617661732070726f626c656d6f6e20707269206c612072616e676f2c20e67520766920666f72676573697320737065636966696b6920276b7975272061fd202764616e273f, 'Y', '2009-02-10 14:00:13'),
(39, 21, 0x506172646f6e752c206d692068617661732070726f626c656d6f6e20707269206c612072616e676f2c207669206e6520757a7520276b7975272061fd202764616e2720706f7220746975207469706f2064652072616e676f2e, 'Y', '2009-02-10 14:00:13'),
(40, 21, 0x506172646f6e752c2074697520fe746f6e6f206d656d206d6f7274696775732073696e2c20736564206d656d206d6f727469676f206573746173206d616c7065726d657361746120646520e6692074697520726567756c61726f2e, 'Y', '2009-02-10 14:00:13'),
(41, 21, 0x506172646f6e752c206d69206e6520706f7661732074726f7669207469756e206c75646f6e2e, 'Y', '2009-02-10 14:00:13'),
(42, 21, 0x506172646f6e752c206d69206e6520706f7661732074726f7669207469756e20666f72756d6f6e206b69756e20766920766f6c697320766964692e, 'Y', '2009-02-10 14:00:13'),
(43, 21, 0x486f2c20fe616a6e6173206b6520e66920746975206d657361f86f20657374617320726573706f6e646f20616c206e65656b7a697374616e746120616669fe6f2e, 'Y', '2009-02-10 14:00:13'),
(44, 21, 0x506172646f6e752c206d69206e6520706f7661732074726f7669206c61206d657361f86f6e206b69756e20766920766f6c697320766964692e, 'Y', '2009-02-10 14:00:13'),
(45, 21, 0x506172646f6e752c206d69206e6520706f7661732074726f766920e669207469756e20757a616e746f6e2e, 'Y', '2009-02-10 14:00:13'),
(46, 21, 0x506172646f6e752c20e6692074697520757a616e746e6f6d6f206573746173206a616d20757a6174612c20626f6e766f6c75206b6c61706f64692074726f766920756e696b616e20757a616e746e6f6d6f6e2e, 'Y', '2009-02-10 14:00:13'),
(49, 21, 0x506172646f6e752c207669206e75722072616a74617320666f727669fe69207669616e2070726f7072616e206c75646f6e2e, 'Y', '2009-02-10 14:22:21'),
(50, 21, 0x506172646f6e752c20e66920746975206174656e64656a61206c75646f206e652074726f7665626c61732e20566572fe616a6e65206975206a616d20616c69f8697320616c20f8692e, 'Y', '2009-02-10 14:22:21'),
(51, 21, 0x506172646f6e752c207669206e6520706f76617320616c69f86920616c207669612070726f707261206c75646f2e, 'Y', '2009-02-10 14:22:21'),
(52, 21, 0x506172646f6e752c207669206e65206170617274656e617320616c206c6120737065636966696b6174612072616e676120696e74657276616c6f2e, 'Y', '2009-02-10 14:22:21'),
(54, 21, 0x506172646f6e752c207669206d616cf87573746520656e74616a706973207669616e20616b7475616c616e20706173766f72746f6e2e, 'Y', '2009-02-10 14:22:21'),
(55, 21, 0x4e656b6f6e6174612072616e6761207469706f, 'Y', '2009-02-10 14:22:21'),
(56, 21, 0x506172646f6e752c206d69206e65206b6f6e61732069756e20616a6e206b697520706f7365646173207469756e20757a616e746e6f6d6f6e2e, 'Y', '2009-02-10 14:22:21'),
(57, 21, 0x506172646f6e752c206c61206b6f6d656e63612072616e676f206465766173206573746920696e746572203330206b7975206b616a20362064616e2e, 'Y', '2009-02-10 14:22:21'),
(58, 21, 0x506172646f6e752c20766920656e74616a706973206e656e756d657261bc6f6e20656e206e756d657261206b616d706f2e, 'Y', '2009-02-10 14:22:21'),
(59, 21, 0x506172646f6e752c206e75722074726164756b6973746f6a2072616a7461732074726164756b692e, 'Y', '2009-02-10 14:22:21'),
(60, 21, 0x536520766920766f6c61732068656c70692074726164756b69206472616b6f6e2c20626f6e766f6c7520616669fe69206d657361f86f6e20656e206c6120666f72756d6f206465202774726164756b61646f272e, 'Y', '2009-02-10 14:22:21'),
(61, 21, 0x506172646f6e752c207669206e652072616a7461732074726164756b69206c6120737065636966696b6974616e206c696e67766f6e2e, 'Y', '2009-02-10 14:22:21'),
(63, 21, 0x506172646f6e752c20696f20666961736b69732064756d20656e6d657461646f206465206c61206e6f76616a2074726164756b6f6a20656e206c6120646174756d62617a6f6e2e, 'Y', '2009-02-10 14:22:21'),
(66, 21, 0x506172646f6e752c20e66920746975207061f86f206e757220646973706f6e617320616c20757a616e746f6a206b756e2061646d696e69737472616369616a207461736b6f6a2e, 'Y', '2009-02-11 10:24:44'),
(48, 21, 0x4e6520706f766973206578747261706f6c692076616c6f726f6e20656e2066756e6b63696f20646520696e746572706f6c6f, 'Y', '2009-02-11 10:44:27'),
(69, 21, 0x506172646f6e752c2074697520656c656d656e746f206e652074726f7665626c61732e, 'Y', '2009-02-11 10:54:29'),
(75, 21, 0x506172646f6e752c206d69206e6520706f7669732074726f7669206c6120646f6e6974616e207475726e69726f6e2e, 'Y', '2009-02-11 10:59:31'),
(3443, 17, '', 'Y', '2013-08-21 00:44:52'),
(3442, 17, 0x506f6b61bf2077737a7973746b69652028257329206e696570727a65637a7974616e65206b6f6d756e696b617479, 'Y', '2013-08-21 00:16:47'),
(2838, 17, 0x506f6b61bf2074796c6b6f20677279207769656c6f6f736f626f7765, 'Y', '2013-08-21 00:21:53'),
(127, 21, 0x526564616b7469, 'N', '2009-02-11 11:18:18'),
(128, 21, 0x4d6f766967692073757072656e, 'Y', '2009-02-11 11:18:18'),
(129, 21, 0x4d6f7669676920737562656e, 'Y', '2009-02-11 11:18:18'),
(135, 21, 0x54726164756b6973746f6a, 'Y', '2009-02-11 11:18:18'),
(474, 21, 0xc66920746975207469706f2064652061676f2065737461732061fd206e656b6f6e6174612061fd206e65207065726d657361746120757a6920656e20e6692074697520737461746f206465206c61206c75646f2e, 'Y', '2009-02-11 11:43:19'),
(475, 21, 0x4c61206b6f6d69206e6520657374617320656e206b6f6e76656e6120696e74657276616c6f2c20626f6e766f6c7520656c656b746920706c69207461fd67616e2076616c6f726f6e2e, 'Y', '2009-02-11 11:43:19'),
(477, 21, 0x4d616cf875737461206e6f6d62726f206465206b7269706c6967616a20fe746f6e6f6a, 'Y', '2009-02-11 11:54:03'),
(501, 21, 0x4472616b616a20757a616e746f6a206b616a20757a616e74696e666f726d6f6a, 'N', '2009-02-11 11:54:03'),
(502, 21, 0x476f616a207465726d696e6f6a, 'Y', '2009-02-11 11:54:03'),
(504, 21, 0x476f616a20726567756c6f6a, 'Y', '2009-02-11 11:54:03'),
(505, 21, '', 'Y', '2011-03-29 20:29:29'),
(506, 21, 0x53616d65206b69656c20706f656e746f2e20556e75206c6962657265636f20737572206c6120746162756c6f2e, 'N', '2009-02-11 12:05:51'),
(503, 21, 0x44697665727361bc6f6a, 'Y', '2009-02-11 12:03:54'),
(507, 21, '', 'Y', '2011-03-29 20:29:29'),
(508, 21, 0x4b726f6d616a20706f65746f6a20283c686f6d65206661712e7068703f726561643d74266361743d3323456e747279383e6d6f6b753c2f686f6d653e2920646f6e6974616a20616c20426c616e6b6f2e204c6120696e74656e636f2065737461732072656b6f6d70656e736920706f72206c61206176616e7461f86f206b69756e204e6967726f206861766173206d6574616e7465206c6120756e75616e20fe746f6e6f6e2e, 'N', '2009-02-11 12:03:54'),
(509, 21, 0x4472616b61206574696b65746f, 'Y', '2009-02-11 12:25:48'),
(510, 21, 0x4472616b616a2063696d6f6a, 'N', '2009-02-11 12:25:48'),
(511, 21, 0x4472616b616a206d656e756f6a206b616a20656c656b746f6a, 'Y', '2009-02-11 12:25:48'),
(512, 21, 0x4472616b616a206c75646f6a, 'Y', '2009-02-11 12:25:48'),
(513, 21, 0x4472616b612065766f6c7569676f, 'Y', '2009-02-11 12:25:48'),
(514, 21, 0x4d69206573746173207475746520656e737661726d697461212045737461732063696d6f6a20e6696521, 'Y', '2009-02-11 13:12:39'),
(515, 21, 0x5669206a616d20736964697320616e7461fd206c61206b6f6d707574696c6f2c206c7564616e746520676f6f6e20e665204447532c2074726f206c6f6e6774656d70652e204475fe75206b616a207665737469f8752070657220707572616a20766573746f6a2e20203a2d29, 'Y', '2009-02-11 12:25:48'),
(518, 21, '', 'N', '2011-03-29 20:29:29'),
(519, 21, 0x4e6967697269206573746173206d65746f646f20646563696469206b6975206c7564616e746f206c75646f73204e6967726f6e2e20506f72206b6f6d656e63692c20756e75206c7564616e746f207072656e6173206e6f6d62726f6e20646120626c616e6b616a20fe746f6e6f6a2e20506f7374652c206c6120616c6961206c7564616e746f206d6574617320756e752061fd206475206e696772616a6e20fe746f6e6f6a6e20737572206c6120676f746162756c6f20706f7220696e64696b6920e675206c69206b72656461732065737461732061fd20706172612061fd206d616c70617261206e6f6d62726f20646120626c616e6b616a20fe746f6e6f6a20656e206c61206d616e6f206465206c61206b6f6e747261fd756c6f2e205365206c6920646976656e69732070726176652c206c69206c75646f73204e6967726f6e2c20616c6965206c69206c75646f7320426c616e6b6f6e2e204b6f6d7072656e65626c652c20e6692074696520e665204447532c207469756e2070726f6365646f6e207472616b746173206c612073657276696c6f2e2046696e66696e652c206b6975207269636576617320426c616e6b6f6e20616e6b61fd207269636576617320362e35203c686f6d65206661712e7068703f726561643d74266361743d3323456e747279393e6b6f6d693c2f686f6d653e2e204e6967697269207072656665726520657374617320757a617461206b69616d206c61206c7564616e746f6a20706f7365646173206c612073616d616e20706f74656e636f6e2e, 'N', '2009-02-11 12:28:27'),
(533, 21, 0x4b6965206d692074726f766f7320706c75616a6e207265747061f86f6a6e2070726920476f6f3f, 'Y', '2009-02-11 13:23:38'),
(534, 21, 0xc665206c61203c686f6d65206c696e6b732e7068703e7061f86f206465206c6967696c6f6a3c2f686f6d653e20e665204447532e, 'Y', '2009-02-11 12:31:36'),
(525, 21, 0xc675206d692072616a7461732070726f706f6e69206e6f76616e207472616a746f6e3f, 'Y', '2009-02-11 12:39:45'),
(526, 21, 0x4a65732c206365727465212020426f6e766f6c7520616669fe69207669616e2070726f706f6e6f6e20616c206c61203c686f6d6520666f72756d2f6c6973742e7068703f666f72756d3d343e6469736b7574656a6f3c2f686f6d653e2e0d0a0d0a526573756d6f6a206465206a616d2070726f706f6e6974616a207472616a746f6a2065737461732068617665626c616a2070657220223c693e666f72756d756d6120736572e6696c6f206465204447533c2f693e222c20706572206c61203c4120485245463d22687474703a2f2f73656e736569732e786d702e6e65742f3f444753576973686c69737422205441524745543d225f626c616e6b223e224447532064657a697261206c6973746f20e6652053656e7365692773204c696272617279223c2f413e206b616a20706572206c61203c6120687265663d22687474703a2f2f647261676f6e676f7365727665722e6376732e736f75726365666f7267652e6e65742f647261676f6e676f7365727665722f447261676f6e476f5365727665722f736372697074732f4368616e67654c6f673f766965773d6d61726b7570223e2243565320de616ef8bc75726e616c6f2064652070726f6a656b7461207061f86f2064652044475320e66520536f75726365666f726765223c2f613e2e, 'N', '2009-02-11 12:39:45'),
(522, 21, 0xc67520657374617320656e206f72646f2064657a69726920616c2069752022626f6e616e20fe616e636f6e22206b69616d206f6e69206b6f6d656e636173206e6f76616e206c75646f6e3f, 'Y', '2009-02-11 13:04:10'),
(523, 21, 0x4a65732c206b6f6d7072656e65626c652e204b656c6b616a206c7564616e746f6a20fe61746173206c612074726164696369616e207465726d696e6f6e203c6120687265663d22687474703a2f2f73656e736569732e786d702e6e65742f3f4f6e656761697368696d61737522207461726765743d225f626c616e6b223e6f6e656761697368696d6173753c2f613e2c20616e6b61fd2e, 'Y', '2009-02-11 13:04:10'),
(529, 21, 0x4b6965206d6920706f766173206c65726e6920706c6920707269207370656369666120726567756c6f3f, 'Y', '2009-02-11 13:07:00'),
(530, 21, 0x4b6c6172696775207669616e2064656d616e646f6e20656e206c61203c686f6d6520666f72756d2f6c6973742e7068703f666f72756d3d353e476f61206469736b7574656a6f3c2f686f6d653e2e2020506c69626f6e61732c207365207669206d656e63696173206b616a206c61207469706f6e20646520726567756c6f20707269206b697520766920766f6c617320706c6920646120696e666f726d6f2c206b616a206c61207469706f6e20646520736974756163696f20616c206b697520f8692061706c696b6f732064756d206c756461646f2e, 'Y', '2009-02-11 13:07:00'),
(535, 21, '', 'Y', '2011-03-29 20:29:29'),
(536, 21, 0x46696e6c75646f2e204c61206c617374612066617a6f206465206c61206c75646f2c206b6965206f6e69206e6520706c75206174616b617320677275706f6a6e20706572207374726174656769616a206d65746f6a2c20736564206e757220736572e66173206c6120706c656a20626f6e616a6e206d65746f6a6e20706f7220706c69206574656e6469206c6120656b7a697374616e74616a6e2074657269746f72696f6a6e2e, 'Y', '2009-02-11 13:10:48'),
(541, 21, 0xc6752065626c6173207265766976696769206c75646f6e206b6965732074656d706f206a616d20656ce665727069733f, 'Y', '2009-02-11 13:21:12'),
(542, 21, 0x4e652e20426f6e766f6c75206b6f6d656e6369207669616a6e206e6f76616a6e206c75646f6a6e206b756e203c686f6d65206661712e7068703f726561643d74266361743d35363e7461fd67616a2074656d706c696d6f6a3c2f686f6d653e21, 'Y', '2009-02-11 13:21:12'),
(549, 21, 0x4b696f6d20646120666572697461676f6a206d6920686176617320e665204472616b6f3f, 'Y', '2009-02-11 13:21:12'),
(550, 21, 0xd8697320333020286d616b73696d756d6f20e669756a617265292e20c669756d6f6e6174652c20322e3520666572697461676f6a20657374617320616c646f6e6174616a20616c207669206b6f6e746f2e, 'Y', '2009-02-11 13:21:12'),
(476, 21, 0x457261726f206f6b617a69732070726f20e66920746975206d65746f2e204b7574696d6520f8692066756e6b63696f73207365207669206b6c61706f646f732064656e6f76652c20616c696b617a6520626f6e766f6c75206b6f6e74616b7469206c61207465616d6f6e2064652073756274656e6f2e, 'Y', '2009-02-12 13:28:45'),
(537, 21, '', 'N', '2011-03-29 20:29:29'),
(538, 21, 0x4174617269206573746173207572f861206d696e61636f20706f72206b6170746920fe746f6e6f6e2061fd20677275706f6e2e2052657374617320616c2074697520fe746f6e6f2061fd20677275706f206e757220756e75206c6962657265636f2e204f6e69206f6674652064697261732c206b65206c6120fe746f6e6f2061fd20677275706f2065737461732022656e206174617269222e20446972692022617461726922206b69616d206c7564616e746520737572207265616c6120746162756c6f206573746173206b656c6b666f6a65206b7574696d61206b616a20636572746520f8656e74696c612c20736564206e65206e6563657361732e204b7574696d65206c7564616e746f6a206b6f6e73656e746173206b69656c207472616b74692074696f6e20616e7461fd206f6c206c61206c75646f206b6f6d656e6369f861732e20506f7220696e7374727561206c75646f2061fd2070657a65206b7269706c6967697461206c75646f2c20706f76617320686176692073656e636f6e20736520426c616e6b6f2068656c706173204e6967726f6e2070657220656c766f6b61646f2064652061746172692e20446972692022617461726922206b69616d206f6e69206c756461732073757272657465206573746173206f7264696e617265206b6f6e7369646572617461206e656e65636573652e, 'N', '2009-02-12 13:28:45'),
(539, 21, '', 'Y', '2011-03-29 20:29:29'),
(540, 21, 0x4b6f20657374617320736974756163696f20737572206c6120746162756c6f206b696520756e7520736f6c6120fe746f6e6f20657374617320726970657465206b6170746974612e204b6f206c61fd766f727465207369676e696661732022657465726e65636f6e222e, 'Y', '2009-02-12 13:31:51'),
(570, 21, 0x4472616b616a207472616a746f6a207072692074656d706f, 'Y', '2009-02-12 13:34:40'),
(1481, 8, 0xb0d1a6d2b5a5afc5, 'Y', '2009-02-28 07:33:15'),
(1482, 8, 0xb67da9f1b9efa7bd, 'Y', '2009-02-28 07:34:11'),
(1484, 8, 0xb669a6e6, 'Y', '2009-02-28 07:37:17'),
(1565, 8, 0xb669a6e6a4a4b4d1a7bd, 'Y', '2009-02-28 07:35:21'),
(1486, 8, 0xb3d3, 'Y', '2009-02-28 07:37:58'),
(1487, 8, 0xad74, 'Y', '2009-02-28 07:38:22'),
(1489, 8, 0xaca1c544abd7, 'Y', '2009-02-28 07:39:06'),
(1490, 8, 0xa457a6b8b56ea44a, 'Y', '2009-02-28 07:41:33'),
(1485, 8, 0xb5b2a7f4, 'Y', '2009-02-28 07:43:55'),
(254, 17, 0x50727a79b3b1637a79b365b6207369ea20646f2067727921, 'Y', '2009-03-01 15:53:15'),
(417, 17, 0x577964616a65207369ea20707573746520772074656a20636877696c692e, 'Y', '2009-03-01 15:53:15'),
(430, 17, 0x50727a79b3b1637a207369ea, 'Y', '2009-03-01 15:53:15'),
(1211, 17, 0x72756368, 'Y', '2013-08-20 22:13:43'),
(1270, 17, 0x57737a7973746965206f637a656b756ab1636520677279, 'Y', '2009-03-01 15:53:15'),
(1271, 17, 0x4f64706f776965646e696520637a656b616ab1636520677279, 'Y', '2009-03-01 15:53:15'),
(1397, 17, 0x446f64616a20637a6173204f706f6e656e746f7769, 'Y', '2009-03-01 15:53:15'),
(1398, 17, 0x506f6b61bf206f6273657277756ab163796368206772ea, 'Y', '2009-03-01 15:53:15'),
(1403, 17, 0x416e756c756a, 'Y', '2009-03-01 15:53:15'),
(175, 17, 0x496e6e653a, 'Y', '2009-03-01 18:52:42'),
(185, 17, 0x5a6177f364, 'Y', '2009-03-01 18:52:42'),
(503, 17, 0x52f3bf6e65, 'Y', '2009-03-01 18:52:42'),
(1378, 17, 0x4b6f6e74616b7479, 'Y', '2009-03-01 18:55:57'),
(974, 18, 0x50756f692061636365646572652073656e7a6120696e73657269726520696c206e6f6d65207574656e746520652070617373776f7264206f676e6920766f6c74612c20626173746120696e736572697265206e6f6d65207574656e746520652070617373776f7264206e656c6c2755524c2e2042617374612063696f266567726176653b20696e766961726520696c2062726f7773657220616c6c6120706167696e61203c753e687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f6c6f67696e2e7068703f7573657269643d3c623e6e6f6d652d7574656e74653c2f623e267061737377643d3c623e70617373776f72643c2f623e3c2f753e2e0d0a0d0a4e6f74613a206d656d6f72697a7a61726520756e612070617373776f726420696e20756e61207269676120646920746573746f20706f6e6520756e20736572696f207269736368696f206469207369637572657a7a612e204e6f6e206469737472696275697265206c2755524c206469206c6f67696e2065206e6f6e206d656d6f72697a7a61726c6f20636f6d65207365676e616c6962726f20737520756e20636f6d707574657220707562626c69636f2e, 'Y', '2009-04-15 10:19:02'),
(986, 18, 0x51756573746f207269677561726461206c652073656775656e7469206c697374653a0d0a3c756c3e0d0a3c6c693e706172746974652073756c6c61203c686f6d65207374617475732e7068703e506167696e6120646920737461746f3c2f686f6d653e0d0a3c6c693e696e7669746920612070617274697465206e656c6c6120706167696e61203c686f6d652077616974696e675f726f6f6d2e7068703e5061727469746520696e206174746573613c2f686f6d653e0d0a3c6c693e7574656e7469206e656c6c61203c686f6d652075736572732e7068703e506167696e61207574656e74693c2f686f6d653e0d0a3c6c693e7574656e7469206e656c6c61203c686f6d65206c6973745f636f6e74616374732e7068703e506167696e612064656920636f6e74617474693c2f686f6d653e0d0a3c6c693e6c697374652064656c6c652070617274697465206174746976652c2066696e6974652065206f7373657276617465206e656c6c6120706167696e612064656c6c65203c686f6d652073686f775f67616d65732e7068703f7569643d616c6c3e506172746974653c2f686f6d653e0d0a3c2f756c3e0d0a0d0a5065722061676769756e6765726520756e6120636f6c6f6e6e612c2073656c657a696f6e617465207175656c6c612063686520696e74656e646574652061676769756e676572652064616c206d656e7520696e20666f6e646f20616c6c6120706167696e61206520636c69636361746520696c20626f74746f6e6520223c693e41676769756e676920636f6c6f6e6e613c2f693e222e205065722072696d756f7665726520756e6120636f6c6f6e6e6120636c6963636174652073756c6c612027782720726f73736120283c696d6167652072656d6f76652e6769663e2920766963696e6f20616c206e6f6d652064656c6c6120636f6c6f6e6e612e20506f747265626265726f206573736572636920636f6c6f6e6e65207374617469636865206e6f6e2072696d756f766962696c692e, 'N', '2009-04-15 10:19:02'),
(995, 18, 0x436f7327266567726176653b206c276f726f6c6f67696f207765656b656e6420646920447261676f6e3f, 'Y', '2009-04-15 10:22:32'),
(1007, 18, 0x496c20636f6469636520736f7267656e746520266567726176653b20646973706f6e6962696c6520736f74746f206c61203c686f6d65206c6963656e63652e7068703e474e55205075626c6963204c6963656e6365202847504c293c2f686f6d653e2065207363617269636162696c65207669612043565320616c6c61203c6120687265663d22687474703a2f2f736f75726365666f7267652e6e65742f70726f6a656374732f647261676f6e676f7365727665722f22205441524745543d5f626c616e6b3e706167696e61206469207376696c7570706f20646920447261676f6e20737520536f75726365466f7267653c2f613e2e, 'N', '2009-04-15 10:22:32'),
(1780, 8, 0xbdd7bec2badeb27aadfb, 'Y', '2012-01-14 08:33:39'),
(1781, 8, 0xbdd7bec2bc66ac64adfb, 'Y', '2009-05-06 04:18:18'),
(1779, 8, 0x464151bd73bfe8, 'Y', '2012-01-14 08:34:42'),
(135, 8, 0xc2bdc4b6, 'Y', '2009-05-06 04:20:15'),
(1723, 4, 0x4b616e6e2069636820646965205347462d44617465692065696e657320537069656c7320686572756e7465726c6164656e3f, 'Y', '2009-07-05 15:39:22'),
(1290, 4, 0x56657277656e64652064617320266c743b757365722667743b20447261676f6e207461672e2020486965722065696e69676520426569737069656c653a0d0a0d0a3c636f64653e3c7573657220313e3c2f636f64653e0d0a3c7573657220313e0d0a0d0a3c636f64653e3c75736572203d67756573743e3c2f636f64653e0d0a3c75736572203d67756573743e0d0a0d0a3c656d3e48696e776569733a0d0a4d697420223d22206d75737320646965204e75747a65722d494420616e6765676562656e2077657264656e2e0d0a4f686e6520223d22206d75737320646965204e75747a65722d4e756d6d657220616e6765676562656e2077657264656e2e0d0a3c2f656d3e, 'Y', '2009-07-05 16:26:46'),
(1776, 4, 0x447261676f6e2052696368746c696e69656e, 'Y', '2009-07-05 19:07:07'),
(1777, 4, 0x56657268616c74656e736b6f64657820756e6420446174656e73636875747a, 'Y', '2009-07-05 19:09:04'),
(1779, 4, 0x46415120456469746f72656e, 'Y', '2009-07-05 18:52:00'),
(1780, 4, 0x466f72756d736d6f64657261746f72656e, 'Y', '2009-07-05 18:52:00'),
(1781, 4, 0x466f72756d736d6f64657261746f72, 'Y', '2009-07-05 18:52:00'),
(1854, 4, 0x5363686e61707073636875737320646573205175656c6c636f646573, 'Y', '2010-04-02 22:51:16'),
(1861, 4, 0xc46c746572652056657273696f6e656e, 'Y', '2009-07-05 18:52:00'),
(1872, 4, 0x556e7465727374fc747a656e2053696520444753206d69742065696e6572205370656e6465, 'Y', '2009-07-05 18:52:00'),
(1873, 4, 0x5370656e6465, 'Y', '2009-07-05 18:52:00'),
(1874, 4, 0x447261676f6e2052696368746c696e69656e202d2056657268616c74656e736b6f64657820756e6420446174656e73636875747a, 'Y', '2009-07-05 19:07:07'),
(1853, 4, 0x5363686e617070736368757373, 'Y', '2010-04-02 22:51:16'),
(1875, 4, 0x5370656e64656e, 'Y', '2009-07-06 20:45:20'),
(1758, 4, 0x476562656e205369652062697474652065696e6520557365722d49442066fc722064656e20447261676f6e476f53657276657220736f7769652065696e6520652d4d61696c2041647265737365207a756d20456d7066616e6720646572204c6f67696e2d44657461696c7320616e, 'Y', '2009-07-11 16:49:32'),
(1756, 4, 0x45732074757420756e73206c6569642c2061626572206573206973742049686e656e206e69636874206765737461747465742065696e656e206e6575656e204163636f756e7420616e7a756c6567656e2e2044696520766f6e2049686e656e2076657277656e646574652049502d4164726573736520777572646520766f6e2064656e2041646d696e732067657370657272742e, 'Y', '2009-07-11 17:03:52'),
(1759, 4, 0x49502d416472657373656e2077657264656e206e75722067657370657272742c20756d204e75747a6572206d6974204665686c76657268616c74656e206665726e207a752068616c74656e2e, 'Y', '2009-07-11 17:10:08'),
(1760, 4, 0x416c736f20676562656e2053696520626974746520696d204b6f6d6d656e7461722d46656c6420616e2c20776172756d205369652064696520537065727265206465722049502d4164726573736520756d676568656e206df6636874656e2e, 'Y', '2009-07-11 17:10:08'),
(1761, 4, 0x446f7274206bf66e6e656e20536965206562656e66616c6c73206576656e7475656c6c652046726167656e2068696e7a7566fc67656e2e, 'Y', '2009-07-11 17:10:08'),
(1754, 4, 0x45732074757420756e73206c6569642c2061626572206573206973742049686e656e206e6963687420676573746174746574207369636820616c732047617374206175662064696573656d2053657276657220616e7a756d656c64656e2e204469652049502d416472657373652c20646965205369652076657277656e64656e2c20777572646520766f6e2064656e2041646d696e732067657370657272742e, 'Y', '2009-07-11 17:18:03'),
(1757, 4, 0x556d2065696e206e65756573204163636f756e742074726f747a20537065727265206465722049502d4164726573736520616e7a756d656c64656e2c206b616e6e2065696e204e75747a65722d4b6f6e746f20766f6e2065696e656d2041646d696e20616e67656c6567742077657264656e2e, 'Y', '2009-07-11 17:18:03'),
(1763, 4, 0x496368206861626520646965203c6120687265663d22257322207461726765743d22646773544f53223e4447532052696368746c696e69656e3c2f613e2067656c6573656e20756e6420616b7a657074696572742e, 'Y', '2009-08-02 01:44:26'),
(1764, 4, 0x53656e64656e205369652065696e656e2052656769737472696572756e6773616e74726167, 'Y', '2009-08-02 01:42:39'),
(1765, 4, 0x4c6569646572206973742065732049686e656e206e69636874206765737461747465742c2073696368206175662064696573656d2053657276657220616e7a756d656c64656e2e204968722042656e75747a65726b6f6e746f2077757264652061757320666f6c67656e64656e204772fc6e64656e20766f6e2064656e2041646d696e732067657370657272743a, 'Y', '2009-08-02 01:42:39'),
(1762, 4, 0x556d2064656e20416e747261672061627a7573636869636b656e2c206dfc7373656e2053696520616c6c652046656c6465722061757366fc6c6c656e2e, 'Y', '2009-08-02 02:02:42'),
(1766, 4, 0x4c6569646572206973742065732049686e656e206e69636874206765737461747465742073696368206175662064696573656d2053657276657220616e7a756d656c64656e2e204968722042656e75747a65726b6f6e746f20777572646520766f6e2064656e2041646d696e732067657370657272742e, 'Y', '2009-08-02 02:02:42'),
(1767, 4, 0x4c6569646572206973742065732049686e656e206e696368742067657374617474657420496872652042696f67726170686965207a7520e46e6465726e2e204469657365204df6676c6963686b65697420777572646520766f6e2064656e2041646d696e732067657370657272742e, 'Y', '2009-08-02 02:02:42'),
(1768, 4, 0x4c6573656e2053696520626974746520646965204447532052696368746c696e69656e20756e64206b6c69636b656e205369652064696520436865636b626f782c2077656e6e205369652073696520616b7a657074696572656e2e, 'Y', '2009-08-02 02:02:42'),
(1769, 4, 0x4c6569646572206973742065732049686e656e206e69636874206765737461747465742c2064696573657320466f72756d20616e7a75736568656e206f646572204265697472e467652068696e7a757a7566fc67656e2e, 'Y', '2012-12-13 03:55:34'),
(1740, 4, 0x576172756d207374617274656e2065696e696765204e75747a6572206d697420676562726f6368656e2d7a61686c6967656e2052e46e67656e3f, 'Y', '2009-08-09 13:54:24'),
(1741, 4, 0x57656e6e20646572204e75747a6572206265692064657220416e6d656c64756e67207365696e656e2052616e6720696e20466f726d20766f6e204547462d206f6465722049475320526174696e672050756e6b74656e20616e676962742c206b616e6e206461732050726f6772616d6d207a7572204447532d526174696e672d556d726563686e756e67205a7769736368656e7765727465206265692064656e2052e46e67656e206265726563686e656e2e, 'N', '2009-08-09 13:54:24'),
(1747, 4, 0x576965206b616e6e206963682065696e656e204c696e6b2065727a657567656e2c206465722065696e206e657565732046656e7374657220f666666e65743f, 'Y', '2009-08-09 13:54:24'),
(309, 20, 0x42616e646965726173, 'Y', '2009-08-17 17:39:29'),
(443, 20, 0x54656d706f72652046697363686572, 'Y', '2009-08-20 03:23:47'),
(1274, 20, '', 'Y', '2011-03-15 21:53:48'),
(1275, 20, '', 'Y', '2011-03-15 21:53:48'),
(1276, 20, '', 'Y', '2011-03-15 21:53:48'),
(1277, 20, '', 'Y', '2011-03-15 21:53:48'),
(1378, 20, 0x436f6e746163746f73, 'Y', '2009-08-17 17:39:29'),
(1415, 20, '', 'Y', '2011-03-15 21:53:48'),
(1416, 20, '', 'Y', '2011-03-15 21:53:48'),
(1429, 20, 0x4f70706f6e656e7465, 'Y', '2009-08-17 17:55:23'),
(1430, 20, 0x557361746f724944, 'Y', '2009-08-17 17:55:23'),
(1059, 20, 0x4d6f6e7374726172, 'Y', '2009-08-17 18:23:11'),
(1060, 20, 0x43656c6172, 'Y', '2009-08-17 18:23:11'),
(1091, 20, 0x54656d706f72652072656d616e656e7465, 'Y', '2009-08-17 18:23:11'),
(1125, 20, 0x4173736f72746972, 'Y', '2009-08-17 18:23:11'),
(450, 20, 0x257320706572206d6f76696d656e746f20652025732074726163746f73206164646974696f6e616c, 'Y', '2009-08-17 18:33:54'),
(452, 20, 0x257320706572202573206c617069646573, 'Y', '2009-08-17 18:33:54'),
(181, 20, 0x452d706f737461, 'Y', '2009-08-17 18:38:44'),
(393, 20, 0x44617461206465206d6174726963756c6174696f6e, 'Y', '2009-08-17 21:35:59'),
(32, 20, 0x506172646f6e6f2c2069737465206e6f6e20657320747520746f726e6f2e, 'Y', '2013-08-13 21:55:33'),
(1055, 20, 0x525353204665656420646520537461746f, 'Y', '2009-08-17 19:42:17'),
(1435, 20, '', 'Y', '2011-03-15 21:53:48'),
(1437, 20, 0x44696d2e, 'Y', '2009-08-17 19:42:17'),
(1438, 20, '', 'Y', '2011-03-15 21:53:48'),
(1439, 20, '', 'Y', '2011-03-15 21:53:48'),
(1440, 20, 0x4d76732e, 'Y', '2009-08-17 19:46:47'),
(736, 20, 0x50617274697461732076696e63697465, 'Y', '2009-08-17 19:58:55'),
(737, 20, 0x50617274697461732070657264697465, 'Y', '2009-08-17 20:00:59'),
(176, 20, 0x50616973, 'Y', '2009-08-17 20:02:35'),
(1480, 20, 0x50616973, 'Y', '2009-08-17 20:02:35'),
(402, 20, 0x41637469766974617465, 'Y', '2009-08-17 20:04:33'),
(394, 20, 0x556c74696d65206163636573736f, 'Y', '2009-08-18 17:05:59'),
(378, 20, 0x4d6920696e666f20646520757361746f72, 'Y', '2009-08-17 21:47:13'),
(494, 20, 0x496e666f20646520757361746f722070726f202573, 'Y', '2009-08-17 21:47:13'),
(1076, 20, 0x4e6f74617320707269766174652064656c2070617274697461, 'Y', '2009-08-18 00:35:43'),
(1093, 20, 0x5669646572206e6f746173, 'Y', '2009-08-18 01:03:03'),
(1095, 20, 0x43656c6172206e6f746173, 'Y', '2009-08-18 01:03:03'),
(1094, 20, 0x526567697374726172206e6f746173, 'Y', '2009-08-18 01:03:03'),
(420, 20, 0x5175616e7469746174652064652070617274697461732061206164646572, 'Y', '2009-08-18 01:02:02'),
(431, 20, 0x44696d656e73696f6e2064656c20746162756c6965726f, 'N', '2009-08-18 01:07:56'),
(1024, 20, 0x5061727469746120657175616c, 'Y', '2009-08-18 03:35:25'),
(273, 20, 0x526567756c6173, 'Y', '2009-08-18 16:46:22'),
(453, 20, 0x657874726120706572206d6f76696d656e746f, 'Y', '2009-08-20 03:30:38'),
(27, 37, '', 'Y', '2012-06-19 21:06:23'),
(29, 37, 0xd0a1d18ad0b6d0b0d0bbd18fd0b2d0b0d0bc2c20d182d0bed0b2d0b020d0bdd0b520d0b520d0bfd0bed0b7d0b2d0bed0bbd0b5d0bdd0be20d0bdd0b020d0b3d0bed181d182d0b8d182d0b52c20d0bcd0bed0bbd18f20d0bfd18ad180d0b2d0be20d181d0b520d180d0b5d0b3d0b8d181d182d180d0b8d180d0b0d0b9d182d0b52e, 'Y', '2009-12-31 00:31:24'),
(32, 37, 0xd0a1d18ad0b6d0b0d0bbd18fd0b2d0b0d0bc2c20d0bdd0b520d181d182d0b520d092d0b8d0b520d0bdd0b020d185d0bed0b42e, 'Y', '2009-12-31 00:21:53'),
(33, 37, '', 'Y', '2012-06-19 21:06:23'),
(96, 37, 0xd090d0b4d0bcd0b8d0bdd0b8d181d182d180d0b0d182d0bed180, 'Y', '2009-12-30 12:13:10'),
(160, 37, 0xd092d18ad0b2d0b5d0b4d0b5d0bdd0b8d0b520d0b220d094d180d0b0d0bad0bed0bd, 'Y', '2009-12-30 12:13:10'),
(181, 37, 0xd098d0bcd0b5d0b9d0bb, 'Y', '2009-12-30 12:13:10'),
(190, 37, 0xd09dd0bed0b2d0b020d0bfd0b0d180d0bed0bbd0b0, 'Y', '2009-12-30 12:13:10'),
(191, 37, 0xd09fd0bed182d0b2d18ad180d0b4d0b5d182d0b520d0bfd0b0d180d0bed0bbd0b0d182d0b0, 'Y', '2009-12-30 17:15:05'),
(201, 37, 0xd09fd0bed182d180d0b5d0b1d0b8d182d0b5d0bbd181d0bad0be20d0b8d0bcd0b5, 'Y', '2009-12-30 12:13:10'),
(202, 37, 0xd098d0bcd0b520d0b820d184d0b0d0bcd0b8d0bbd0b8d18f, 'Y', '2009-12-30 12:13:10'),
(223, 37, 0xd097d0b0d0b1d180d0b0d0b2d0b5d0bdd0b020d0bfd0b0d180d0bed0bbd0b03f, 'Y', '2009-12-30 12:13:10'),
(240, 37, 0xd09dd0b0d187d0b0d0bbd0be, 'Y', '2009-12-30 12:32:07'),
(242, 37, 0xd09cd0bed0bbd18f2c20d187d183d0b2d181d182d0b2d0b0d0b9d182d0b520d181d0b520d181d0b2d0bed0b1d0bed0b4d0bdd0b820d0b4d0b020d181d0b520d180d0b5d0b3d0b8d181d182d180d0b8d180d0b0d182d0b520d0b820d0b8d0b7d0b8d0b3d180d0b0d0b5d182d0b520d0bdd18fd0bad0bed0bbd0bad0be20d0b8d0b3d180d0b82e, 'Y', '2009-12-30 12:32:07'),
(244, 37, 0xd097d0b020d0b4d0b020d180d0b0d0b7d0b3d0bbd0b5d0b4d0b0d182d0b520d0bdd0b0d0bed0bad0bed0bbd0be2c20d0b8d0b7d0bfd0bed0bbd0b7d0b2d0b0d0b9d182d0b52025732e, 'Y', '2009-12-30 12:32:07'),
(245, 37, 0xd09fd0b0d180d0bed0bbd0b0, 'Y', '2009-12-30 12:32:07'),
(246, 37, 0xd092d0bbd0b5d0b7, 'Y', '2009-12-30 12:32:07'),
(247, 37, 0xd09dd0bed0b2d0b020d180d0b5d0b3d0b8d181d182d180d0b0d186d0b8d18f, 'Y', '2009-12-30 21:44:53'),
(248, 37, 0xd092d18ad0b2d0b5d0b4d0b5d0bdd0b8d0b5, 'Y', '2009-12-30 12:32:07'),
(252, 37, 0xd09ed189d0b520d0b2d0b5d0b4d18ad0b620d0b4d0bed0b1d180d0b520d0b4d0bed188d0bbd0b820d0b820d0bfd180d0b8d18fd182d0bdd0be20d0b8d0b7d0bad0b0d180d0b2d0b0d0bdd0b520d182d183d0ba21, 'Y', '2009-12-30 12:32:07'),
(344, 37, 0xd0a0d0b5d0b3d0b8d181d182d180d0b8d180d0b0d0b9d182d0b520d181d0b5, 'Y', '2009-12-30 12:32:07'),
(345, 37, 0xd09cd0bed0bbd18f20d0b2d18ad0b2d0b5d0b4d0b5d182d0b520d181d0bbd0b5d0b4d0bdd0bed182d0be, 'Y', '2009-12-30 16:58:27'),
(457, 37, 0xd092d18ad180d0bdd0b820d181d0b5, 'Y', '2009-12-31 10:31:22'),
(1082, 37, 0xd098d0b7d0bfd180d0b0d182d0b820d0bfd0b0d180d0bed0bbd0b0d182d0b0, 'Y', '2009-12-30 12:32:07'),
(1096, 37, 0xd094d0bed0b1d180d0b520d0b4d0bed188d0bbd0b820d0b2d18ad0b220d0b2d0b5d180d181d0b8d18fd182d0b020d0bdd0b020d094d180d0b0d0bad0bed0bd20d093d0be20d181d18ad180d0b2d18ad18020d0b7d0b020d180d0b0d0b7d180d0b0d0b1d0bed182d187d0b8d186d0b82e, 'N', '2009-12-30 12:32:07'),
(243, 37, 0xd09cd0bed0bbd18f20d0b7d0b0d0bfd0bed0b2d18fd0b4d0b0d0b9d182d0b52e, 'Y', '2009-12-30 16:58:27'),
(1227, 37, 0xd09dd0bed0b2d0b0d182d0b020d0bfd0b0d180d0bed0bbd0b020d0b520d0b8d0b7d0bfd180d0b0d182d0b5d0bdd0b021, 'Y', '2009-12-30 12:42:44'),
(82, 37, 0xd0a1d182d0b0d182d183d181, 'Y', '2009-12-30 12:54:56'),
(84, 37, 0xd097d0b020d0bcd0b5d0bd, 'Y', '2010-01-13 21:49:25'),
(86, 37, 0xd098d0b7d0bfd180d0b0d182d0b820d181d18ad0bed0b1d189d0b5d0bdd0b8d0b5, 'Y', '2009-12-30 12:54:56'),
(87, 37, 0xd09fd0bed0bad0b0d0bdd0b820d0bdd0b020d0b8d0b3d180d0b0, 'Y', '2009-12-30 12:58:39'),
(88, 37, 0xd09fd0bed182d180d0b5d0b1d0b8d182d0b5d0bbd0b8, 'Y', '2009-12-30 12:54:56'),
(89, 37, 0xd098d0b3d180d0b8, 'Y', '2009-12-30 12:54:56'),
(98, 37, 0xd0b4d0b5d0bd, 'Y', '2009-12-30 12:54:56'),
(99, 37, 0xd0b4d0bdd0b8, 'Y', '2009-12-30 12:54:56'),
(128, 37, 0xd09fd180d0b5d0bcd0b5d181d182d0b820d0bdd0b0d0b3d0bed180d0b520284d6f766520757029, 'Y', '2009-12-30 12:54:56'),
(129, 37, 0xd09fd180d0b5d0bcd0b5d181d182d0b820d0bdd0b0d0b4d0bed0bbd18320284d6f766520646f776e29, 'Y', '2009-12-30 12:54:56'),
(132, 37, '', 'Y', '2012-06-19 21:06:23'),
(134, 37, 0xd098d0bcd0b5, 'Y', '2009-12-30 12:54:56'),
(156, 37, 0xd091d0b8d0bed0b3d180d0b0d184d0b8d18fd182d0b020d0b520d0bed0b1d0bdd0bed0b2d0b5d0bdd0b021, 'Y', '2009-12-30 12:54:56'),
(158, 37, 0xd09fd180d0bed184d0b8d0bbd18ad18220d0b520d0bed0b1d0bdd0bed0b2d0b5d0bd21, 'Y', '2009-12-30 12:54:56'),
(175, 37, 0xd094d180d183d0b3d0be3a, 'Y', '2009-12-30 12:54:56'),
(176, 37, 0xd0a1d182d180d0b0d0bdd0b0, 'Y', '2009-12-30 12:54:56'),
(177, 37, 0xd093d180d0b0d0b4, 'Y', '2009-12-30 12:54:56'),
(178, 37, 0xd09ed0b1d0bbd0b0d181d182, 'Y', '2009-12-30 12:54:56'),
(179, 37, 0xd09ad0bbd183d0b1, 'Y', '2009-12-30 12:54:56'),
(180, 37, 0xd09bd0b8d187d0bdd0b020d181d182d180d0b0d0bdd0b8d186d0b0, 'Y', '2009-12-30 12:54:56'),
(182, 37, 0x49435120d0bdd0bed0bcd0b5d180, 'Y', '2009-12-30 12:54:56'),
(183, 37, 0xd09fd180d0b5d0b4d0bfd0bed187d0b8d182d0b0d0bdd0b8d18f20d0b7d0b020d0b8d0b3d180d0b0, 'Y', '2009-12-30 12:54:56'),
(184, 37, 0xd0a5d0bed0b1d0b8, 'Y', '2009-12-30 12:54:56'),
(185, 37, 0xd09fd180d0bed184d0b5d181d0b8d18f, 'Y', '2009-12-30 12:54:56'),
(187, 37, 0xd09fd180d0bed0bcd0b5d0bdd0b820d0b1d0b8d0bed0b3d180d0b0d184d0b8d18fd182d0b0, 'Y', '2009-12-30 12:54:56'),
(188, 37, 0xd09fd180d0bed0bcd0b5d0bdd0b820d0bfd0b0d180d0bed0bbd0b0, 'Y', '2009-12-30 12:54:56'),
(189, 37, 0xd0a1d182d0b0d180d0b020d0bfd0b0d180d0bed0bbd0b0, 'Y', '2009-12-30 12:54:56'),
(157, 37, 0xd09fd0b0d180d0bed0bbd0b0d182d0b020d0b520d0bfd180d0bed0bcd0b5d0bdd0b5d0bdd0b021, 'Y', '2009-12-30 13:07:29'),
(192, 37, 0xd09fd180d0bed0bcd0b5d0bdd0b820d0bfd0b0d180d0bed0bbd0b0, 'Y', '2009-12-30 13:07:29'),
(193, 37, 0xd098d0b7d0bad0bbd18ed187d0b5d0bdd0be, 'Y', '2009-12-30 13:27:29'),
(199, 37, 0xd09fd180d0bed0bcd0b5d0bdd0b820d0bfd180d0bed184d0b8d0bb, 'Y', '2009-12-30 13:07:29'),
(200, 37, 0xd09fd0bed182d180d0b5d0b1d0b8d182d0b5d0bbd181d0bad0b820d0bdd0b0d181d182d180d0bed0b9d0bad0b8, 'Y', '2009-12-30 13:07:29'),
(204, 37, 0xd0a0d0b0d0bdd0b3, 'Y', '2009-12-30 13:07:29'),
(205, 37, 0xd0a0d0b5d0b9d182d0b8d0bdd0b3, 'Y', '2009-12-30 13:07:29'),
(206, 37, 0xd098d0b7d0b2d0b5d181d182d18fd0b2d0b0d0bdd0b520d0bfd0be20d0b8d0bcd0b5d0b9d0bb, 'Y', '2009-12-30 13:07:29'),
(207, 37, 0xd098d0b7d0bfd0bed0bbd0b7d0b2d0b0d0b920d0bdd0b0d181d182d180d0bed0b9d0bad0b8d182d0b520d0bdd0b020d0b1d180d0b0d183d0b7d18ad180d0b0, 'Y', '2009-12-30 13:07:29'),
(208, 37, 0xd095d0b7d0b8d0ba, 'Y', '2009-12-30 13:07:29'),
(209, 37, 0xd092d180d0b5d0bcd0b5d0b2d0b020d0b7d0bed0bdd0b0, 'Y', '2009-12-30 13:07:29'),
(211, 37, 0xd098d0b7d0bed0b1d180d0b0d0b6d0b5d0bdd0b8d0b520d0bdd0b020d0b4d18ad181d0bad0b0d182d0b0, 'Y', '2009-12-30 13:07:29'),
(212, 37, 0xd0a0d0b0d0b7d0bcd0b5d18020d0bdd0b020d0bad0b0d0bcd0b0d0bdd0b8d182d0b5, 'Y', '2009-12-30 13:07:29'),
(213, 37, 0xd0a6d0b2d18fd18220d0bdd0b020d0b4d18ad180d0b2d0bed182d0be, 'Y', '2009-12-30 13:07:29'),
(214, 37, 0xd09ad0bed0bed180d0b4d0b8d0bdd0b0d182d0b820d0bfd0be20d181d182d180d0b0d0bdd0b8d182d0b5, 'Y', '2009-12-30 13:07:29'),
(215, 37, 0xd09bd18fd0b2d0be, 'Y', '2009-12-30 13:07:29'),
(216, 37, 0xd093d0bed180d0b5, 'Y', '2009-12-30 13:07:29'),
(217, 37, 0xd094d18fd181d0bdd0be, 'Y', '2009-12-30 13:07:29'),
(218, 37, 0xd094d0bed0bbd183, 'Y', '2009-12-30 13:07:29'),
(219, 37, 0xd097d0b0d0b3d0bbd0b0d0b4d0b5d0bdd0b820d18ad0b3d0bbd0b820d0bdd0b020d0b4d18ad181d0bad0b0d182d0b0, 'Y', '2009-12-30 13:07:29'),
(220, 37, 0xd09fd0bed181d0bed0bad0b020d0bdd0b020d0bcd0b5d0bdd18ed182d0be, 'Y', '2009-12-30 13:07:29'),
(222, 37, 0xd09fd180d0bed0bcd0b5d0bdd0b820d0bfd180d0bed184d0b8d0bb, 'Y', '2009-12-30 13:07:29'),
(307, 37, 0xd0a1d0bfd0b8d181d18ad0ba20d181d18ad18120d181d18ad0bed0b1d189d0b5d0bdd0b8d18f, 'Y', '2009-12-30 13:17:06'),
(342, 37, 0xd0a0d0b5d0b9d182d0b8d0bdd0b320d0b4d0b8d0b0d0b3d180d0b0d0bcd0b020d0b7d0b0, 'Y', '2009-12-30 13:17:06'),
(343, 37, 0xd0a1d18ad0b6d0b0d0bbd18fd0b2d0b0d0bc2c20d0b8d0b7d0b8d0b3d180d0b0d0bbd0b820d181d182d0b520d182d0b2d18ad180d0b4d0b520d0bcd0b0d0bbd0bad0be20d0b8d0b3d180d0b820d18120d180d0b5d0b9d182d0b8d0bdd0b320d0b7d0b020d0b4d0b020d0b1d18ad0b4d0b520d0bdd0b0d180d0b8d181d183d0b2d0b0d0bdd0b020d0b4d0b8d0b0d0b3d180d0b0d0bcd0b02e, 'Y', '2009-12-30 13:17:06'),
(348, 37, 0xd097d0b0d0b2d18ad180d188d0b8d0bbd0b820d0b8d0b3d180d0b8, 'Y', '2009-12-30 13:17:06'),
(349, 37, 0xd09dd0b0d181d182d0bed18fd189d0b820d0b8d0b3d180d0b8, 'Y', '2009-12-30 13:17:06'),
(359, 37, 0xd09ed0bfd0bed0bdd0b5d0bdd182, 'Y', '2009-12-30 13:17:06'),
(361, 37, 0xd0a0d0b0d0b7d0bcd0b5d180, 'Y', '2009-12-30 13:17:06'),
(364, 37, 0xd0a5d0bed0b4d0bed0b2d0b5, 'Y', '2009-12-30 13:17:06'),
(366, 37, 0xd0a120d180d0b5d0b9d182d0b8d0bdd0b3, 'Y', '2009-12-30 13:17:06'),
(368, 37, 0xd09fd0bed181d0bbd0b5d0b4d0b5d0bd20d0a5d0bed0b4, 'N', '2009-12-30 13:17:06'),
(373, 37, 0xd09fd0bed0bad0b0d0bdd0b820d182d0bed0b7d0b820d0bfd0bed182d180d0b5d0b1d0b8d182d0b5d0bb, 'Y', '2009-12-30 13:17:06'),
(374, 37, 0xd09fd0bed0bad0b0d0b6d0b820d09dd0b0d181d182d0bed18fd189d0b820d0b8d0b3d180d0b8, 'Y', '2010-01-01 14:17:34'),
(375, 37, 0xd09fd0bed0bad0b0d0b6d0b820d097d0b0d0b2d18ad180d188d0b8d0bbd0b820d0b8d0b3d180d0b8, 'Y', '2010-01-01 14:17:34'),
(378, 37, 0xd098d0bdd184d0bed180d0bcd0b0d186d0b8d18f20d0b7d0b020d0bcd0b5d0bd, 'Y', '2009-12-31 00:06:28'),
(379, 37, 0xd09fd180d0bed0bcd0b5d0bdd0b820d0b1d0b8d0be, 'Y', '2009-12-31 00:06:28'),
(388, 37, 0xd0a1d0b2d0bed0b1d0bed0b4d0b5d0bd20d0b7d0b020d0b8d0b3d180d0b83f, 'Y', '2009-12-30 13:17:06'),
(393, 37, 0xd094d0b0d182d0b020d0bdd0b020d180d0b5d0b3d0b8d181d182d180d0b0d186d0b8d18f, 'Y', '2009-12-30 13:17:06'),
(394, 37, 0xd09fd0bed181d0bbd0b5d0b4d0b5d0bd20d0b4d0bed181d182d18ad0bf, 'Y', '2009-12-30 13:17:06'),
(395, 37, 0xd091d0b8d0bed0b3d180d0b0d184d0b8d187d0bdd0b820d0b4d0b0d0bdd0bdd0b8, 'Y', '2009-12-30 13:17:06'),
(396, 37, 0xd098d0b7d0bfd180d0b0d182d0b820d181d18ad0bed0b1d189d0b5d0bdd0b8d0b520d0b4d0be20d182d0bed0b7d0b820d0bfd0bed182d180d0b5d0b1d0b8d182d0b5d0bb, 'Y', '2009-12-30 13:17:06'),
(397, 37, 0xd09dd0b0d181d182d0bed18fd189d0b8, 'Y', '2009-12-30 13:17:06'),
(398, 37, 0xd097d0b0d0b2d18ad180d188d0b8d0bbd0b8, 'Y', '2009-12-30 13:17:06'),
(210, 37, 0xd092d180d0b5d0bcd0b520d0b7d0b020d181d18ad0bd, 'Y', '2009-12-30 13:17:32'),
(194, 37, 0xd0a1d0b0d0bcd0be20d0bcd0b520d183d0b2d0b5d0b4d0bed0bcd0b8, 'Y', '2009-12-30 13:25:21'),
(195, 37, 0xd0a5d0bed0b4d0bed0b2d0b520d0b820d181d18ad0bed0b1d189d0b5d0bdd0b8d18f, 'Y', '2009-12-30 13:25:21'),
(196, 37, 0xd0a6d18fd0bbd0b0d182d0b020d0b4d18ad181d0bad0b020d0b820d181d18ad0bed0b1d189d0b5d0bdd0b8d18f, 'Y', '2009-12-30 13:25:21'),
(197, 37, 0xd092d0b5d180d182d0b8d0bad0b0d0bbd0bdd0be, 'Y', '2009-12-30 13:25:21'),
(198, 37, 0xd0a5d0bed180d0b8d0b7d0bed0bdd182d0b0d0bbd0bdd0be, 'Y', '2009-12-30 13:28:08'),
(399, 37, 0xd0a1d0bfd0b5d187d0b5d0bbd0b5d0bdd0b0, 'Y', '2009-12-30 13:35:05'),
(400, 37, 0xd097d0b0d0b3d183d0b1d0b5d0bdd0b0, 'Y', '2009-12-30 13:35:05'),
(402, 37, 0xd090d0bad182d0b8d0b2d0bdd0bed181d182, 'Y', '2009-12-31 00:47:54'),
(411, 37, 0xd098d0bdd184d0be, 'Y', '2009-12-31 00:45:46'),
(426, 37, 0xd098d0b3d180d0b0d187, 'Y', '2009-12-30 13:35:05'),
(449, 37, 0xd0afd0bfd0bed0bdd181d0bad0b8, 'Y', '2009-12-30 13:35:05'),
(463, 37, 0xd0a8d0b2d0b5d0b4d181d0bad0b8, 'Y', '2009-12-30 13:35:05'),
(464, 37, 0xd09dd0bed180d0b2d0b5d0b6d0bad0b8, 'Y', '2009-12-30 13:35:05'),
(465, 37, 0xd090d0bdd0b3d0bbd0b8d0b9d181d0bad0b8, 'Y', '2009-12-30 13:35:05'),
(466, 37, 0xd09dd0b5d0bcd181d0bad0b8, 'Y', '2009-12-30 13:35:05'),
(467, 37, 0xd0a4d180d0b5d0bdd181d0bad0b8, 'Y', '2009-12-30 13:35:05'),
(468, 37, 0xd098d181d0bfd0b0d0bdd181d0bad0b8, 'Y', '2009-12-30 13:35:05'),
(469, 37, 0xd0a7d0b5d188d0bad0b8, 'Y', '2009-12-30 13:35:05'),
(470, 37, 0xd09ad0b8d182d0b0d0b9d181d0bad0b82028d0a2d180d0b0d0b4d0b8d186d0b8d0bed0bdd0b5d0bd29, 'Y', '2009-12-30 13:35:05'),
(3189, 17, 0x7069657277737a61207374726f6e61, 'Y', '2013-08-21 00:42:54'),
(472, 37, 0xd09ad0b8d182d0b0d0b9d181d0bad0b82028d09ed0bfd180d0bed181d182d0b5d0bd29, 'Y', '2009-12-30 13:44:49'),
(473, 37, 0xd0a5d0bed0bbd0b0d0bdd0b4d181d0bad0b8, 'Y', '2009-12-30 13:44:49'),
(479, 37, 0xd0a2d0b0d0b9d0bbd0b0d0bdd0b4d181d0bad0b8, 'Y', '2009-12-30 13:44:49'),
(484, 37, 0xd0afd0bdd183, 'Y', '2009-12-30 13:44:49'),
(485, 37, 0xd0a4d0b5d0b2, 'Y', '2009-12-30 13:44:49'),
(486, 37, 0xd090d0bfd180, 'Y', '2009-12-30 13:44:49'),
(487, 37, 0xd09cd0b0d0b9, 'Y', '2009-12-30 13:44:49'),
(488, 37, 0xd0aed0bdd0b8, 'Y', '2009-12-30 13:44:49'),
(489, 37, 0xd090d0b2d0b3, 'Y', '2009-12-30 13:44:49'),
(490, 37, 0xd0a1d0b5d0bf, 'Y', '2009-12-30 13:44:49'),
(491, 37, 0xd09ed0bad182, 'Y', '2009-12-30 13:44:49'),
(492, 37, 0xd094d0b5d0ba, 'Y', '2009-12-30 13:44:49'),
(1569, 7, 0x4e61706f736c656479207a6dec6eec6e6f, 'Y', '2016-07-20 16:20:15'),
(494, 37, 0xd098d0bdd184d0bed180d0bcd0b0d186d0b8d18f20d0b7d0b020d0bfd0bed182d180d0b5d0b1d0b8d182d0b5d0bb202573, 'Y', '2009-12-30 13:50:42'),
(495, 37, 0xd09cd0b0d180, 'Y', '2009-12-30 13:44:49'),
(496, 37, 0xd0aed0bbd0b8, 'Y', '2009-12-30 13:44:49'),
(497, 37, 0xd09dd0bed0b2, 'Y', '2009-12-30 13:44:49'),
(500, 37, 0xd0a4d0b8d0bdd0bbd0b0d0bdd0b4d181d0bad0b8, 'Y', '2009-12-30 13:44:49'),
(503, 37, 0xd0a0d0b0d0b7d0bdd0b8, 'Y', '2009-12-30 13:44:49'),
(731, 37, 0xd0a0d0b5d0b4d0b0d0bad182d0b8d180d0b0d0b920d0bfd0b0d0bfd0bad0b8d182d0b520d0b7d0b020d181d18ad0bed0b1d189d0b5d0bdd0b8d18f, 'Y', '2009-12-30 13:44:49'),
(732, 37, 0xd09ed181d182d0b0d0b2d0b0d189d0b020d0b2d0b0d0bad0b0d0bdd186d0b8d18f, 'Y', '2009-12-30 14:11:37'),
(733, 37, 0xd092d18ad0b220d0b2d0b0d0bad0b0d0bdd186d0b8d18f, 'Y', '2009-12-30 13:44:49'),
(736, 37, 0xd0a1d0bfd0b5d187d0b5d0bbd0b5d0bdd0b820d0b8d0b3d180d0b8, 'Y', '2009-12-30 13:44:49'),
(737, 37, 0xd098d0b7d0b3d183d0b1d0b5d0bdd0b820d0b8d0b3d180d0b8, 'Y', '2009-12-30 14:10:13'),
(738, 37, 0xd09fd180d0bed0bcd0b5d0bdd0b820d0bfd180d0bed0b4d18ad0bbd0b6d0b8d182d0b5d0bbd0bdd0bed181d182d182d0b020d0bdd0b020d0b2d0b0d0bad0b0d0bdd186d0b8d18fd182d0b0, 'Y', '2009-12-30 14:10:13'),
(739, 37, 0xd098d0b7d0bbd0b5d0b720d0b2d0b0d0bad0b0d0bdd186d0b8d18f, 'Y', '2009-12-30 14:10:13'),
(746, 37, 0xd098d0bcd0b520d0bdd0b020d0bfd0b0d0bfd0bad0b0d182d0b0, 'Y', '2009-12-30 14:15:59'),
(750, 37, 0xd09ad0bed180d0b5d0b9d181d0bad0b8, 'Y', '2009-12-30 14:15:59'),
(782, 37, 0xd091d18ad0bbd0b3d0b0d180d0b8d18f, 'Y', '2009-12-30 23:19:02'),
(954, 37, 0xd0a0d183d181d0bad0b8, 'Y', '2009-12-30 14:15:59'),
(955, 37, 0xd092d0b0d0bad0b0d0bdd186d0b8d18f, 'Y', '2009-12-30 14:15:59'),
(956, 37, 0xd0a1d18ad0b6d0b0d0bbd18fd0b2d0b0d0bc2c20d0bdd0b520d0bcd0bed0b6d0b520d0b4d0b020d0bfd180d0bed0bcd0b5d0bdd0b8d182d0b520d0bfd180d0bed0b4d18ad0bbd0b6d0b8d182d0b5d0bbd0bdd0bed181d182d182d0b020d0bdd0b020d0b2d0b0d0bad0b0d0bdd186d0b8d18fd182d0b020d0b220d0bcd0bed0bcd0b5d0bdd182d0b02e, 'Y', '2009-12-30 14:15:59'),
(957, 37, 0xd09fd180d0bed0b4d18ad0bbd0b6d0b8d182d0b5d0bbd0bdd0bed181d182d182d0b020d0bdd0b020d0b2d0b0d0bad0b0d0bdd186d0b8d18fd182d0b020d0b520d0bfd180d0bed0bcd0b5d0bdd0b5d0bdd0b021, 'Y', '2009-12-30 14:15:59'),
(958, 37, 0xd094d0bed0b1d0b0d0b2d0b8, 'Y', '2009-12-30 14:15:59'),
(959, 37, 0xd09fd180d0b5d0bcd0b0d185d0bdd0b8, 'Y', '2009-12-30 14:15:59'),
(960, 37, 0xd098d0b7d0b1d0b5d180d0b5d182d0b520d0bfd180d0bed0b4d18ad0bbd0b6d0b8d182d0b5d0bbd0bdd0bed181d18220d0bdd0b020d0b2d0b0d0bad0b0d0bdd186d0b8d18fd182d0b0, 'Y', '2009-12-30 14:15:59'),
(962, 37, 0xd09fd180d0b8d18fd182d0bdd0b020d0b2d0b0d0bad0b0d0bdd186d0b8d18f21, 'Y', '2009-12-30 14:15:59'),
(997, 37, 0xd09fd0bed0bbd181d0bad0b8, 'Y', '2009-12-30 14:34:08'),
(998, 37, 0xd098d182d0b0d0bbd0b8d18fd0bdd181d0bad0b8, 'Y', '2009-12-30 14:34:08'),
(1003, 37, 0xd091d0b0d181d0bad0b8, 'Y', '2009-12-30 14:34:08'),
(1014, 37, 0xd098d0bdd182d0b5d180d0bbd0b8d0bdd0b3d0b2d0b0, 'Y', '2009-12-30 14:34:08'),
(1015, 37, 0xd095d181d0bfd0b5d180d0b0d0bdd182d0be, 'Y', '2009-12-30 14:34:08'),
(1018, 37, 0xd0a1d0bbd0bed0b2d0b0d188d0bad0b8, 'Y', '2009-12-30 14:34:08'),
(1023, 37, 0xd0a0d183d0bcd18ad0bdd181d0bad0b8, 'Y', '2009-12-30 14:34:08'),
(1030, 37, 0xd092d0b8d0b5d182d0bdd0b0d0bcd181d0bad0b8, 'Y', '2009-12-30 14:34:08'),
(1031, 37, 0xd0a1d180d18ad0b1d181d0bad0b8, 'Y', '2009-12-30 14:34:08'),
(1032, 37, 0xd093d180d18ad186d0bad0b8, 'Y', '2009-12-30 14:34:08'),
(1033, 37, 0xd0a3d0bad180d0b0d0b8d0bdd181d0bad0b8, 'Y', '2009-12-30 14:34:08'),
(1034, 37, 0xd09ad0b0d182d0b0d0bbd183d0bdd181d0bad0b8, 'Y', '2009-12-30 14:34:08'),
(1035, 37, 0xd09ad0b8d182d0b0d0b9d181d0bad0b82028d09ed0bfd180d0bed181d182d0b5d0bd2920287574662d3829, 'Y', '2009-12-30 14:34:08'),
(1067, 37, 0xd0a0d0bed0b4d0b5d0bd20d095d0b7d0b8d0ba, 'Y', '2009-12-30 14:34:08'),
(1068, 37, 0xd095d0b7d0b8d0bad0bed0b2d0b820d183d0bcd0b5d0bdd0b8d18f, 'Y', '2009-12-30 14:34:08'),
(1069, 37, 0xd09fd0bed0b4, 'Y', '2009-12-30 14:34:08'),
(1074, 37, 0xd09dd0b520d0b8d0b7d0bfd0bed0bbd0b7d0b2d0b0d0b920d187d0b8d181d0bbd0b020d0bdd0b0d0b420313030, 'Y', '2009-12-30 14:38:52'),
(1076, 37, 0xd09bd0b8d187d0bdd0b820d0b1d0b5d0bbd0b5d0b6d0bad0b820d0b7d0b020d0b8d0b3d180d0b0d182d0b0, 'Y', '2009-12-30 14:34:08'),
(1077, 37, 0xd09cd0b0d0bbd0bad0b820d0b4d18ad181d0bad0b8, 'Y', '2009-12-30 14:34:08'),
(1078, 37, 0xd09fd0be2dd0b3d0bed0bbd0b5d0bcd0b820d0b4d18ad181d0bad0b820d0bed182, 'Y', '2009-12-30 14:37:53'),
(1079, 37, 0xd09fd0bed0b7d0b8d186d0b8d18f, 'Y', '2009-12-30 14:34:08'),
(1080, 37, 0xd092d0b8d181d0bed187d0b8d0bdd0b0, 'Y', '2009-12-30 14:34:08'),
(1081, 37, 0xd0a8d0b8d180d0b8d0bdd0b0, 'Y', '2009-12-30 14:34:08'),
(1073, 37, 0xd09dd0bed0bcd0b5d180d0b8d180d0b0d0bdd0b520d0bdd0b020d185d0bed0b4d0bed0b2d0b5, 'Y', '2009-12-30 14:50:20'),
(1109, 37, 0xd09fd180d0b5d0b3d0bbd0b5d0b4, 'Y', '2009-12-30 15:06:51'),
(1111, 37, 0xd0a0d0b5d0b9d182d0b8d0bdd0b320d0b4d0b8d0b0d0b3d180d0b0d0bcd0b0, 'Y', '2009-12-30 15:06:51'),
(1113, 37, 0xd098d0b3d180d0b820d0b7d0b020d180d0b5d0b9d182d0b8d0bdd0b3, 'Y', '2009-12-30 15:06:51'),
(1210, 37, 0xd0a0d0b5d0b4d0b0d0bad182d0b8d180d0b0d0b920d0b1d0b8d0bed0b3d180d0b0d184d0b8d187d0bdd0b0d182d0b020d0b8d0bdd184d0bed180d0bcd0b0d186d0b8d18f, 'Y', '2009-12-30 15:06:51'),
(1214, 37, 0xd090d0bad182d0b8d0b2d0bdd0b820d0bfd0bed182d180d0b5d0b1d0b8d182d0b5d0bbd0b8, 'Y', '2009-12-30 15:06:51'),
(1218, 37, 0xd0a4d0bed0bd, 'Y', '2009-12-30 15:06:51'),
(1219, 37, 0xd0a7d0b5d180d0b2d0b5d0bdd0be, 'Y', '2009-12-30 15:06:51'),
(1220, 37, 0xd097d0b5d0bbd0b5d0bdd0be, 'Y', '2009-12-30 15:06:51'),
(1221, 37, 0xd0a1d0b8d0bdd18cd0be, 'Y', '2009-12-30 15:06:51'),
(1222, 37, 0xd090d0bbd184d0b0, 'Y', '2009-12-30 15:06:51'),
(1223, 37, 0xd09fd0bed0bad0b0d0b6d0b820d0bdd0b020d181d182d0b0d182d183d18120d181d182d180d0b0d0bdd0b8d186d0b0d182d0b0, 'Y', '2009-12-30 15:06:51'),
(1224, 37, 0xd09fd180d0b5d0b4d0b5d0bd20d0bfd0bbd0b0d0bd, 'Y', '2009-12-30 15:06:51'),
(1225, 37, 0xd09fd0b0d0bfd0bad0b8d182d0b520d181d0b020d0bdd0b0d0b3d0bbd0b0d181d0b5d0bdd0b8, 'Y', '2009-12-30 15:06:51'),
(1226, 37, 0xd09ed0b1d0bdd0bed0b2d18fd0b2d0b0d0bdd0b5, 'Y', '2009-12-30 15:06:51'),
(1245, 37, 0xd0a1d0bad180d0b8d182d0b8, 'Y', '2009-12-30 15:17:14'),
(1273, 37, 0xd09fd0b0d0bfd0bad0b0d182d0b020d182d180d18fd0b1d0b2d0b020d0b4d0b020d0b520d0bfd180d0b0d0b7d0bdd0b020d0b7d0b020d0b4d0b020d0b1d18ad0b4d0b520d0b8d0b7d182d180d0b8d182d0b021, 'Y', '2009-12-30 15:06:51'),
(1279, 37, 0xd09ad0b8d182d0b0d0b9d181d0bad0b82028d0a2d180d0b0d0b4d0b8d186d0b8d0bed0bdd0b5d0bd2920287574662d3829, 'Y', '2009-12-30 15:06:51'),
(1280, 37, 0xd0a2d183d180d181d0bad0b8, 'Y', '2009-12-30 15:06:51'),
(1281, 37, 0xd0a3d0bdd0b3d0b0d180d181d0bad0b8, 'Y', '2009-12-30 15:06:51'),
(1379, 37, 0xd0a1d0bad0b8d0bd, 'Y', '2009-12-30 15:06:51'),
(1389, 37, 0xd0a0d0b5d0b4d0b0d0bad182d0b8d180d0b0d0b920d0bfd0bed0b4d180d0b5d0b4d0b1d0b0d182d0b020d0bdd0b020d0b1d0b8d0bed0b3d180d0b0d184d0b8d18fd182d0b0, 'Y', '2009-12-31 00:41:04'),
(1390, 37, 0xd0bfd180d0bed0bcd0b5d0bdd0b5d182d0b520d181d0b0d0bcd0be20d0bdd0b0d180d0b5d0b4d0b1d0b0d182d0b02c20d0bfd180d0bed0bcd0b5d0bdd0b820d0b220d182d0b5d0bad181d182d0b020d0bdd0b520d181d0b020d0b2d18ad0b7d0bcd0bed0b6d0bdd0b820d182d183d0ba2e, 'Y', '2009-12-30 15:06:51'),
(1391, 37, 0xd09cd0b0d0bad181d0b8d0bcd0b0d0bbd0b5d0bd20d0b1d180d0bed0b920d180d0b5d0b4d0bed0b2d0b520d0b7d0b020d182d0b0d0b1d0bbd0b8d186d0b0, 'Y', '2009-12-30 15:06:51'),
(1392, 37, 0xd0b8d0b7d0b1d0b8d180d0b0d0bdd0b5d182d0be20d0bdd0b020d0bfd0be2dd0bcd0b0d0bbd0bad0b020d181d182d0bed0b9d0bdd0bed181d18220d0bfd0bed0bcd0b0d0b3d0b020d0bdd0b020d181d18ad180d0b2d18ad180d0b02028d0bfd0bed0b3d0bbd0b5d0b4d0bdd0b5d182d0b520d181d18ad189d0be20d0b820d0a7d097d09229, 'Y', '2009-12-30 15:06:51'),
(1393, 37, 0xd09fd180d0bed0bcd0b5d0bdd0b820d0b2d0b8d0b7d183d0b0d0bbd0bdd0b8d182d0b520d0bdd0b0d181d182d180d0bed0b9d0bad0b820d181d0b0d0bcd0be20d0b7d0b020d182d0bed0b7d0b820d0b1d180d0b0d183d0b7d18ad180, 'Y', '2009-12-30 15:06:51'),
(1403, 37, 0xd09ed182d0bcd0b5d0bdd0b8, 'Y', '2009-12-30 15:06:51'),
(1464, 37, 0xd09fd0bed0bad0b0d0b6d0b820d0bed0bfd0bed0bdd0b5d0bdd182d0b8d182d0b5, 'Y', '2009-12-30 15:21:30'),
(1467, 37, 0xd09fd0bed0bad0b0d0b6d0b820d0bcd0bed0b8d182d0b520d0bed0bfd0bed0bdd0b5d0bdd182d0b8, 'Y', '2009-12-30 15:21:30'),
(1471, 37, 0xd094d0bed0b1d0b0d0b2d0b820d0bdd0bed0b220d0bad0bed0bdd182d0b0d0bad182, 'Y', '2009-12-30 15:21:30'),
(1476, 37, 0xd0a0d0b5d0b4d0b0d0bad182d0b8d180d0b0d0b920d0bad0bed0bdd182d0b0d0bad182, 'Y', '2009-12-30 15:21:30'),
(1477, 37, 0xd094d0bed0b1d0b0d0b2d0b820d0b220d0bad0bed0bdd182d0b0d0bad182d0b8, 'Y', '2010-01-01 03:01:25'),
(1478, 37, 0xd090d0bad182d0b8d0b2d0b5d0bd, 'Y', '2009-12-30 15:21:30'),
(1540, 37, 0xd09dd0b520d0bcd0bed0b6d0b520d0b4d0b020d0b4d0bed0b1d0b0d0b2d0b8d182d0b520d181d0b5d0b1d0b520d181d0b820d0bad0b0d182d0be20d0bad0bed0bdd182d0b0d0bad182, 'Y', '2009-12-30 15:23:31'),
(1541, 37, 0xd09dd0b5d0bfd0bed0b7d0bdd0b0d18220d0bfd0bed182d180d0b5d0b1d0b8d182d0b5d0bb, 'N', '2009-12-30 15:23:31'),
(1542, 37, 0xd09ad0bed0bdd182d0b0d0bad182d18ad18220d0b520d0bfd180d0b5d0bcd0b0d185d0bdd0b0d18221, 'Y', '2009-12-30 15:23:31'),
(1547, 37, 0xd09fd180d0b5d0bcd0b0d185d0bdd0b820d0bad0bed0bdd182d0b0d0bad182, 'Y', '2009-12-30 15:28:46'),
(1548, 37, 0xd0a1d0b8d181d182d0b5d0bcd0bdd0b820d0bad0b0d182d0b5d0b3d0bed180d0b8d0b8, 'Y', '2009-12-30 15:28:46'),
(1549, 37, 0xd09fd0bed182d180d0b5d0b1d0b8d182d0b5d0bbd181d0bad0b820d0bad0b0d182d0b5d0b3d0bed180d0b8d0b8, 'Y', '2009-12-30 15:28:46'),
(1550, 37, 0xd091d0b5d0bbd0b5d0b6d0bad0b8, 'Y', '2009-12-30 15:28:46'),
(1551, 37, 0xd09fd0b0d0b7d0b5d182d0b520d0b1d0b5d0bbd0b5d0b6d0bad0b8d182d0b520d0bad180d0b0d182d0bad0b82c20d0bcd0b0d0bad1812e2032353520d0b7d0bdd0b0d0bad0b0, 'Y', '2009-12-30 15:28:46'),
(1552, 37, 0xd097d0b0d0bfd0b0d0b7d0b820d0bad0bed0bdd182d0b0d0bad182, 'Y', '2009-12-30 15:28:46'),
(1553, 37, 0xd09fd0bed0bad0b0d0b6d0b820d0bad0bed0bdd182d0b0d0bad182d0b8d182d0b5, 'Y', '2009-12-30 15:28:46'),
(1560, 37, 0xd0a2d18ad180d181d0b820d181d0b8d181d182d0b5d0bcd0bdd0b8d182d0b520d0bad0b0d182d0b5d0b3d0bed180d0b8d0b8, 'Y', '2009-12-30 15:28:46'),
(1561, 37, 0xd0a2d18ad180d181d0b820d0bfd0bed182d180d0b5d0b1d0b8d182d0b5d0bbd181d0bad0b8d182d0b520d0bad0b0d182d0b5d0b3d0bed180d0b8d0b8, 'Y', '2009-12-30 15:28:46'),
(1562, 37, 0xd0a1d0bfd0b8d181d18ad0ba20d18120d0bad0bed0bdd182d0b0d0bad182d0b8, 'Y', '2009-12-30 15:28:46'),
(1568, 37, 0xd09fd18ad0bbd0bdd0b020d181d182d0b0d182d0b8d181d182d0b8d0bad0b020d181d0b0d0bcd0be20d0b7d0b020d0b7d0b0d0b2d18ad180d188d0b8d0bbd0b8d182d0b520d0b8d0b3d180d0b8, 'Y', '2009-12-30 15:28:46'),
(1569, 37, 0xd09fd0bed181d0bbd0b5d0b4d0bdd0b020d0bfd180d0bed0bcd18fd0bdd0b0, 'Y', '2009-12-30 15:28:46'),
(1570, 37, 0xd0a1d182d0b0d182d0b8d181d182d0b8d0bad0b020d0b7d0b020d0b8d0b3d180d0b8d182d0b520d0bdd0b020d0b8d0b3d180d0b0d187202573, 'Y', '2009-12-30 15:28:46');
INSERT INTO `Translations` (`Original_ID`, `Language_ID`, `Text`, `Translated`, `Updated`) VALUES
(1572, 37, 0xd09fd0bed0bad0b0d0b6d0b820d0bcd0b5d0bd20d0bad0b0d182d0be20d0bed0bfd0bed0bdd0b5d0bdd182, 'Y', '2009-12-30 15:28:46'),
(1573, 37, 0xd09fd0bed0bad0b0d0b6d0b820d0bad0b0d182d0be20d0bcd0bed0b920d0bed0bfd0bed0bdd0b5d0bdd182, 'Y', '2009-12-30 15:28:46'),
(1574, 37, 0xd0a1d0bcd0b5d0bdd0b820d180d0bed0bbd18fd182d0b020d0bdd0b020d0bed0bfd0bed0bdd0b5d0bdd182d0b0, 'Y', '2009-12-30 15:28:46'),
(1575, 37, 0xd0a6d0b2d0b5d182d0bed0b2d0b520d0bdd0b020d0b8d0b3d180d0b0d187d0b8d182d0b5, 'Y', '2009-12-30 15:28:46'),
(1576, 37, 0xd09ed0b1d189d0be, 'Y', '2009-12-30 15:28:46'),
(1212, 37, 0xd094d0bed0b1d180d0b520d0b4d0bed188d0bbd0b820d0b220257321, 'Y', '2009-12-30 16:53:46'),
(1099, 37, 0xd09fd0bed0b3d0bbd0b5d0b4d0bdd0b5d182d0b520d0a7d097d09220d0b7d0b020d0bfd0bed0b2d0b5d187d0b520d0b8d0bdd184d0bed180d0bcd0b0d186d0b8d18f2e, 'Y', '2009-12-30 17:00:26'),
(1112, 37, 0xd091d0b5d0bbd0b5d0b6d0bad0b020d0b7d0b020d0bdd0b0d187d0b8d0bdd0b0d0b5d189d0b83a20d0bfd180d0bed187d0b5d182d0b5d182d0b520d0a7d097d09220d0bed181d0bed0b1d0b5d0bdd0be20d0b7d0b020d0bfd18ad180d0b2d0bed0bdd0b0d187d0b0d0bbd0bdd0b0d182d0b020d0bdd0b0d181d182d180d0bed0b9d0bad0b020d0bdd0b020d180d0b0d0bdd0b3d0b020d092d0b820d0b220d0bfd180d0bed184d0b8d0bb20d181d182d180d0b0d0bdd0b8d186d0b0d182d0b02e, 'Y', '2009-12-30 17:13:28'),
(1842, 37, 0xd09fd0bed0bbd0b8d182d0b8d0bad0b0, 'Y', '2009-12-30 17:39:16'),
(1843, 37, 0xd094d180d0b0d0bad0bed0bdd093d0bed0a1d18ad180d0b2d18ad18020d09fd0bed0bbd0b8d182d0b8d0bad0b0, 'Y', '2009-12-30 17:39:16'),
(1846, 37, 0x3c703ed09dd0b8d0b520d0bdd0b520d0bfd180d0b8d0b5d0bcd0b0d0bcd0b53a203c756c3e203c6c693ed094d0b8d181d0bad180d0b8d0bcd0b8d0bdd0b8d180d0b0d189d0b02c20d0bdd0b0d0bfd0b0d0b4d0b0d182d0b5d0bbd0bdd0b020d0b8d0bbd0b820d0b7d0bbd0bed0bdd0b0d0bcd0b5d180d0b5d0bdd0b020d180d0b5d1872e203c6c693e20d097d0b0d0bfd0bbd0b0d185d0b820d0b8d0bbd0b820d0bed0b1d0b8d0b4d0b820d0bdd0b0d181d0bed187d0b5d0bdd0b820d0bad18ad0bc20d0b4d180d183d0b3d0b820d187d0bbd0b5d0bdd0bed0b2d0b520d0b8d0bbd0b820d0b0d0b4d0bcd0b8d0bdd0b8d181d182d180d0b0d182d0bed180d0b82e203c6c693e20d09fd0bed180d0bdd0bed0b3d180d0b0d184d181d0bad0b820d182d0b5d0bad181d18220d0b8d0bbd0b820d0b2d180d18ad0b7d0bad0b820d0bad18ad0bc20d0bfd0bed180d0bdd0bed0b3d180d0b0d184d181d0bad0b820d183d0b5d0b120d181d0b0d0b9d182d0bed0b2d0b52e203c6c693e20d092d181d18fd0bad0b0d0bad0b2d0be20d180d0b5d0bad0bbd0b0d0bcd0b8d180d0b0d0bdd0b52c20d0bad0bed0b5d182d0be20d0bdd0b520d0b520d0b1d0b8d0bbd0be20d0b8d0b7d180d0b8d187d0bdd0be20d180d0b0d0b7d180d0b5d188d0b5d0bdd0be2e203c6c693e20d092d181d18fd0bad0b0d0bad0b2d0be20d0bfd0bed0b2d0b5d0b4d0b5d0bdd0b8d0b52c20d0bad0bed0b5d182d0be20d0b520d0bdd0b5d0b7d0b0d0bad0bed0bdd0bdd0be20d0b220d0a8d0b2d0b5d186d0b8d18f20d0b8d0bbd0b820d0b220d181d182d180d0b0d0bdd0b0d182d0b02c20d0b220d0bad0bed18fd182d0be20d181d0b520d0bdd0b0d0bcd0b8d180d0b0d182d0b52e3c2f756c3e, 'Y', '2010-01-01 03:33:31'),
(1844, 37, 0xd09fd180d0b0d0b2d0b8d0bbd0b020d0b7d0b020d09fd0bed0b2d0b5d0b4d0b5d0bdd0b8d0b5, 'Y', '2009-12-30 17:52:53'),
(1845, 37, 0xd094d180d0b0d0bad0bed0bdd093d0bed0a1d18ad180d0b2d18ad1802028d094d093d0a12920d0b520d0bcd18fd181d182d0be2c20d0bad18ad0b4d0b5d182d0be20d0b4d0b020d181d180d0b5d189d0bdd0b5d182d0b520d093d0be20d0bfd180d0b8d18fd182d0b5d0bbd0b820d0bed18220d186d18fd0bb20d181d0b2d18fd1822c20d18120d0bad0bed0b8d182d0be20d0b4d0b020d0b8d0b3d180d0b0d0b5d182d0b520d0b820d0b4d0b020d181d0b520d0bdd0b0d181d0bbd0b0d0b4d0b8d182d0b520d0bdd0b020d0bdd18fd0bad0bed0b820d0b4d0bed0b1d180d0b820d0bfd180d0b0d182d0b8d0b820d093d0be2e20d09dd0b8d0b520d181d0bcd0b520d0b4d0b5d184d0b8d0bdd0b8d180d0b0d0bbd0b820d0bdd18fd0bad0bed0b920d0bed181d0bdd0bed0b2d0bdd0b820d0bfd180d0b0d0b2d0b8d0bbd0b02c20d0bad0bed0b8d182d0be20d0b4d0b020d0bdd0b0d0bfd180d0b0d0b2d18fd18220d094d093d0a120d0bfd180d0b8d18fd182d0b5d0bbd181d0bad0be20d0b820d0bfd180d0bed186d18ad184d182d18fd0b2d0b0d189d0be20d0bcd18fd181d182d0be2e20d09ed189d0b520257320d0bdd0b5d184d0bed180d0bcd0b0d0bbd0b5d0bd20d094d180d0b0d0bad0bed0bd20d0b5d182d0b8d0bad0b5d18220257320d0bcd0bed0b6d0b520d0b4d0b020d0b1d18ad0b4d0b520d0bdd0b0d0bcd0b5d180d0b5d0bd20d0b220d0a7d097d0922e, 'Y', '2009-12-30 21:42:12'),
(1213, 37, 0xd094d0bed0b1d180d0b520d0b4d0bed188d0bbd0b820d0b22025732c202573d181d0b2d0bed0b1d0bed0b4d0b5d0bd257320d181d18ad180d0b2d18ad18020d0b7d0b020d0b8d0b3d180d0b020d0bdd0b0202573d093d0be25732c20d0bad18ad0b4d0b5d182d0be20d0b8d0b3d180d0b8d182d0b520d0b8d0bcd0b0d18220d181d0b2d0bed0b9d181d182d0b2d0bed182d0be20d0b4d0b020d0bfd180d0bed0b4d18ad0bbd0b6d0b0d0b2d0b0d18220282764726167206f6e272f27d0b4d180d0b0d0ba2dd0bed0bd2720266e646173683b2027d0b2d0bbd0b0d187d0b020d0bdd0b0d182d0b0d182d18ad0ba27292e, 'Y', '2009-12-30 21:42:12'),
(1763, 37, 0xd09fd180d0bed187d0b5d182d0bed18520d0b820d0bfd180d0b8d0b5d0bcd0b0d0bc203c6120687265663d22257322207461726765743d22646773544f53223ed09fd180d0b0d0b2d0b8d0bbd0b0d182d0b020d0b7d0b020d09fd0bed0b2d0b5d0b4d0b5d0bdd0b8d0b53c2f613e20d0bdd0b020d094d093d0a12e, 'Y', '2009-12-30 18:24:54'),
(35, 37, 0xd09fd0b0d180d0bed0bbd0b0d182d0b020d0b7d0b020d0bfd0bed182d0b2d18ad180d0b6d0b4d0b5d0bdd0b8d0b520d0bdd0b520d181d18ad0b2d0bfd0b0d0b4d0b020d18120d0b2d18ad0b2d0b5d0b4d0b5d0bdd0b0d182d0b020d0bfd180d0b5d0b4d0b820d182d0bed0b2d0b02c20d0bcd0bed0bbd18f20d0b2d18ad180d0bdd0b5d182d0b520d181d0b520d0bdd0b0d0b7d0b0d0b420d0b820d0bed0bfd0b8d182d0b0d0b9d182d0b520d0bed182d0bdd0bed0b2d0be2e, 'Y', '2009-12-30 19:58:50'),
(38, 37, 0xd098d0b7d0b2d0b8d0bdd0b5d182d0b52c20d0b8d0bcd0b020d0bfd180d0bed0b1d0bbd0b5d0bc20d18120d180d0b5d0b9d182d0b8d0bdd0b3d0b02c20d0b4d0b0d0bbd0b820d0bdd0b520d181d182d0b520d0b7d0b0d0b1d180d0b0d0b2d0b8d0bbd0b820d0b4d0b020d0bfd0bed181d0bed187d0b8d182d0b520276b79752720d0b8d0bbd0b8202764616e273f, 'Y', '2009-12-30 20:04:02'),
(39, 37, 0xd0a1d18ad0b6d0b0d0bbd18fd0b2d0b0d0bc2c20d0b8d0bcd0b020d0bfd180d0bed0b1d0bbd0b5d0bc20d18120d180d0b5d0b9d182d0b8d0bdd0b3d0b02c20d0bdd0b520d182d180d18fd0b1d0b2d0b020d0b4d0b020d0b8d0b7d0bfd0bed0bbd0b7d0b2d0b0d182d0b520276b79752720d0b8d0bbd0b8202764616e2720d0b7d0b020d182d0bed0b7d0b820d182d0b8d0bf20d180d0b5d0b9d182d0b8d0bdd0b3, 'Y', '2009-12-30 20:33:25'),
(40, 37, 0xd0a1d18ad0b6d0b0d0bbd18fd0b2d0b0d0bc2c20d182d0bed0b7d0b820d0bad0b0d0bcd18ad0ba20d189d0b5d188d0b520d0b4d0b020d181d0b520d181d0b0d0bcd0bed183d0b1d0b8d0b52c20d0b020d181d0b0d0bcd0bed183d0b1d0b8d0b9d181d182d0b2d0bed182d0be20d0bdd0b520d0b520d0bfd0bed0b7d0b2d0bed0bbd0b5d0bdd0be20d0bfd180d0b820d182d0b5d0bad183d189d0b8d182d0b520d0bfd180d0b0d0b2d0b8d0bbd0b02e, 'Y', '2009-12-30 20:33:25'),
(41, 37, 0xd0a1d18ad0b6d0b0d0bbd18fd0b2d0b0d0bc2c20d0bdd0b520d0bcd0bed0b3d0b020d0b4d0b020d0bdd0b0d0bcd0b5d180d18f20d182d0b0d0b7d0b820d0b8d0b3d180d0b02e, 'Y', '2009-12-30 20:33:25'),
(42, 37, 0xd0a1d18ad0b6d0b0d0bbd18fd0b2d0b0d0bc2c20d0bdd0b520d0bcd0bed0b3d0b020d0b4d0b020d0bdd0b0d0bcd0b5d180d18f20d184d0bed180d183d0bcd18ad1822c20d0bad0bed0b9d182d0be20d0b8d181d0bad0b0d182d0b520d0b4d0b020d181d0b520d0bfd0bed0bad0b0d0b6d0b52e, 'Y', '2009-12-30 20:33:25'),
(43, 37, 0xd0a5d0bcd0bc2c20d182d0bed0b2d0b020d181d18ad0bed0b1d189d0b5d0bdd0b8d0b520d0b8d0b7d0b3d0bbd0b5d0b6d0b4d0b020d0bad0b0d182d0be20d0bed182d0b3d0bed0b2d0bed18020d0bdd0b020d0bdd0b5d181d18ad189d0b5d181d182d0b2d183d0b2d0b0d189d0b020d0bfd183d0b1d0bbd0b8d0bad0b0d186d0b8d18f2e, 'Y', '2009-12-31 00:54:15'),
(44, 37, 0xd0a1d18ad0b6d0b0d0bbd18fd0b2d0b0d0bc2c20d0bdd0b520d183d181d0bfd18fd18520d0b4d0b020d0bdd0b0d0bcd0b5d180d18f20d181d18ad0bed0b1d189d0b5d0bdd0b8d0b5d182d0be2c20d0bad0bed0b5d182d0be20d0b8d181d0bad0b0d182d0b520d0b4d0b020d181d0b520d0bfd0bed0bad0b0d0b6d0b52e, 'Y', '2009-12-30 20:37:48'),
(45, 37, 0xd0a1d18ad0b6d0b0d0bbd18fd0b2d0b0d0bc2c20d0bdd0b520d0bcd0bed0b3d0b020d0b4d0b020d0bdd0b0d0bcd0b5d180d18f20d182d0bed0b7d0b820d0bfd0bed182d180d0b5d0b1d0b8d182d0b5d0bb2e, 'Y', '2009-12-30 20:37:48'),
(46, 37, 0xd0a1d18ad0b6d0b0d0bbd18fd0b2d0b0d0bc2c20d182d0bed0b2d0b020d0bfd0bed182d180d0b5d0b1d0b8d182d0b5d0bbd181d0bad0be20d0b8d0bcd0b520d0b2d0b5d187d0b520d181d0b520d0b8d0b7d0bfd0bed0bbd0b7d0b2d0b02c20d0bcd0bed0bbd18f20d0bed0bfd0b8d182d0b0d0b9d182d0b520d0b4d0b020d0bdd0b0d0bcd0b5d180d0b8d182d0b520d183d0bdd0b8d0bad0b0d0bbd0bdd0be20d0bfd0bed182d180d0b5d0b1d0b8d182d0b5d0bbd181d0bad0be20d0b8d0bcd0b52e, 'Y', '2009-12-30 20:37:48'),
(49, 37, 0xd0a1d18ad0b6d0b0d0bbd18fd0b2d0b0d0bc2c20d0bcd0bed0b6d0b520d0b4d0b020d0b8d0b7d182d180d0b8d0b2d0b0d182d0b520d0b5d0b4d0b8d0bdd181d182d0b2d0b5d0bdd0be20d181d0b2d0bed0b8d182d0b520d0b8d0b3d180d0b82e, 'Y', '2009-12-30 20:40:43'),
(51, 37, 0xd0a1d18ad0b6d0b0d0bbd18fd0b2d0b0d0bc2c20d0bdd0b520d0bcd0bed0b6d0b520d0b4d0b020d181d0b520d0bfd180d0b8d181d18ad0b5d0b4d0b8d0bdd0b8d182d0b520d0bad18ad0bc20d181d0b2d0bed18f20d0b8d0b3d180d0b02e, 'Y', '2009-12-30 20:40:43'),
(52, 37, 0xd0a1d18ad0b6d0b0d0bbd18fd0b2d0b0d0bc2c20d0b2d0b0d188d0b8d18fd18220d180d0b5d0b9d182d0b8d0bdd0b320d0b520d0b8d0b7d0b2d18ad0bd20d0b7d0b0d0b4d0b0d0b4d0b5d0bdd0b8d18f2e, 'Y', '2009-12-30 20:40:43'),
(55, 37, 0xd09dd0b5d0bfd0bed0b7d0bdd0b0d18220d182d0b8d0bf20d180d0b0d0bdd0b3, 'Y', '2009-12-30 20:48:42'),
(56, 37, 0xd0a1d18ad0b6d0b0d0bbd18fd0b2d0b0d0bc2c20d0bdd0b520d0b7d0bdd0b0d0bc20d0bdd0b8d0bad0bed0b920d18120d182d0bed0b2d0b020d0bfd0bed182d180d0b5d0b1d0b8d182d0b5d0bbd181d0bad0be20d0b8d0bcd0b5, 'Y', '2009-12-30 20:48:42'),
(57, 37, 0xd0a1d18ad0b6d0b0d0bbd18fd0b2d0b0d0bc2c20d0bfd18ad180d0b2d0bed0bdd0b0d187d0b0d0bbd0bdd0b8d18fd18220d180d0b5d0b9d182d0b8d0bdd0b320d182d180d18fd0b1d0b2d0b020d0b4d0b020d0b1d18ad0b4d0b520d0bcd0b5d0b6d0b4d183203330206b797520d0b820362064616e2e, 'Y', '2009-12-30 20:48:42'),
(58, 37, 0xd098d0b7d0b2d0b8d0bdd0b5d182d0b52c20d0b2d18ad0b2d0b5d0bbd0b820d181d182d0b520d0bdd0b52dd187d0b8d181d0bbd0be20d0b220d187d0b8d181d0bbd0bed0b2d0be20d0bfd0bed0bbd0b52e, 'Y', '2009-12-30 20:48:42'),
(59, 37, 0xd0a1d18ad0b6d0b0d0bbd18fd0b2d0b0d0bc2c20d181d0b0d0bcd0be20d0bdd0b020d0bfd180d0b5d0b2d0bed0b4d0b0d187d0b8d182d0b520d0b520d180d0b0d0b7d180d0b5d188d0b5d0bdd0be20d0b4d0b020d0bfd180d0b5d0b2d0b5d0b6d0b4d0b0d1822e, 'Y', '2009-12-30 20:48:42'),
(69, 37, 0xd0a1d18ad0b6d0b0d0bbd18fd0b2d0b0d0bc2c20d0bdd0b520d183d181d0bfd18fd18520d0b4d0b020d0bdd0b0d0bcd0b5d180d18f20d182d0bed0b7d0b820d0b7d0b0d0bfd0b8d1812e, 'Y', '2009-12-30 20:48:42'),
(80, 37, 0xd092d0bbd0b5d0b7d0bbd0b820d181d182d0b520d0bad0b0d182d0be, 'Y', '2009-12-30 20:50:05'),
(81, 37, 0xd09dd0b520d181d182d0b520d0b2d0bbd0b5d0b7d0bbd0b8, 'Y', '2009-12-30 20:50:05'),
(83, 37, 0xd0a7d0b0d0bad0b0d0bbd0bdd18f, 'Y', '2009-12-30 20:50:05'),
(85, 37, 0xd0a1d18ad0bed0b1d189d0b5d0bdd0b8d18f, 'Y', '2009-12-30 20:50:05'),
(90, 37, 0xd09fd180d0b5d0b2d0bed0b4, 'Y', '2010-01-01 00:52:53'),
(50, 37, 0xd0a1d18ad0b6d0b0d0bbd18fd0b2d0b0d0bc2c20d0bdd0b520d183d181d0bfd18fd18520d0b4d0b020d0bdd0b0d0bcd0b5d180d18f20d182d0b0d0b7d0b820d0b8d0b3d180d0b020d0b220d187d0b0d0bad0b0d0bbd0bdd18fd182d0b02e20d092d0b5d180d0bed18fd182d0bdd0be20d0bdd18fd0bad0bed0b920d0b2d0b5d187d0b520d181d0b520d0b520d0bfd180d0b8d181d18ad0b5d0b4d0b8d0bdd0b8d0bb20d0bad18ad0bc20d0bdd0b5d18f2e, 'Y', '2009-12-30 20:54:06'),
(54, 37, 0xd0a1d18ad0b6d0b0d0bbd18fd0b2d0b0d0bc2c20d0bdd0b520d181d182d0b520d0b2d18ad0b2d0b5d0bbd0b820d182d0b5d0bad183d189d0b0d182d0b020d181d0b820d0bfd0b0d180d0bed0bbd0b020d0bfd180d0b0d0b2d0b8d0bbd0bdd0be2e, 'Y', '2009-12-30 20:54:06'),
(60, 37, 0xd090d0bad0be20d0b8d181d0bad0b0d182d0b520d0b4d0b020d0bfd0bed0bcd0bed0b3d0bdd0b5d182d0b520d0bfd180d0b820d0bfd180d0b5d0b2d0bed0b4d0b020d0bdd0b020d094d180d0b0d0bad0bed0bd2c20d0bcd0bed0bbd18f20d0bed181d182d0b0d0b2d0b5d182d0b520d181d18ad0bed0b1d189d0b5d0bdd0b8d0b520d0b220277472616e736c6174696f6e2720d184d0bed180d183d0bcd0b02e, 'Y', '2009-12-30 20:54:06'),
(91, 37, 0xd0a4d0bed180d183d0bcd0b8, 'Y', '2009-12-30 20:54:06'),
(92, 37, 0xd0a7d097d092, 'Y', '2009-12-30 20:54:06'),
(93, 37, 0xd09ad0b0d180d182d0b020d0bdd0b020d181d0b0d0b9d182d0b0, 'Y', '2009-12-30 20:54:06'),
(94, 37, 0xd098d0bdd184d0be, 'Y', '2009-12-31 13:20:56'),
(95, 37, 0xd0a1d182d180d0b0d0bdd0b8d186d0b0d182d0b020d0b520d181d18ad0b7d0b4d0b0d0b4d0b5d0bdd0b020d0b7d0b0, 'Y', '2014-03-14 21:59:36'),
(97, 37, 0xd098d0b7d185d0bed0b4, 'Y', '2009-12-30 20:57:24'),
(100, 37, 0xd0b8, 'Y', '2009-12-30 20:57:24'),
(101, 37, 0xd187d0b0d181, 'Y', '2009-12-30 20:57:24'),
(102, 37, 0xd187d0b0d181d0b0, 'Y', '2009-12-30 20:57:24'),
(103, 37, 0xd0b1d0b5d0b720d0b1d0b8d0bed0b9d0bed0bcd0b8, 'Y', '2009-12-30 20:57:24'),
(104, 37, 0xd18120257320d0b4d0bed0bfd18ad0bbd0bdd0b8d182d0b5d0bbd0bdd0be20d0b7d0b020d185d0bed0b4, 'Y', '2009-12-31 13:55:29'),
(106, 37, 0xd0afd0bfd0bed0bdd181d0bad0be20d0b1d0b8d0bed0b9d0bed0bcd0b8, 'Y', '2009-12-30 20:57:24'),
(107, 37, 0xd0bad0b0d0bcd18ad0bad0b0, 'Y', '2009-12-31 17:53:36'),
(108, 37, 0xd09ad0b0d0bdd0b0d0b4d181d0bad0be20d0b1d0b8d0bed0b9d0bed0bcd0b8, 'Y', '2009-12-30 20:59:17'),
(109, 37, 0xd098d0b3d180d0b0d182d0b020d0b520d0b4d0bed0b1d0b0d0b2d0b5d0bdd0b021, 'Y', '2009-12-30 20:59:17'),
(478, 37, 0xd09fd0bed0b2d0b5d187d0b520d0b8d0bdd184d0bed180d0bcd0b0d186d0b8d18f20d0bcd0bed0b6d0b520d0b4d0b020d0b1d18ad0b4d0b520d0bdd0b0d0bcd0b5d180d0b5d0bdd0b020d0b2203c6120687265663d222f6661712e706870223ed0a7d097d0923c2f613e2e20d09ed181d0b2d0b5d0bd20d182d0bed0b2d0b02c20d0bad0bed0b3d0b0d182d0be20d0b8d0bcd0b0d182d0b520d0b2d18ad0bfd180d0bed181d0b820d092d0b820d0bdd0b0d181d18ad180d187d0b0d0b2d0b0d0bcd0b520d0b4d0b020d0b3d0b820d0bfd0bed181d182d0b0d0b2d0b8d182d0b520d0b220d0bdd18fd0bad0bed0b920d0bed182203c6120687265663d222f666f72756d2f696e6465782e706870223ed184d0bed180d183d0bcd0b8d182d0b53c2f613e2e, 'Y', '2009-12-30 21:15:29'),
(1395, 37, 0xd090d0bad0be20d181d182d0b520d0b7d0b0d0b1d180d0b0d0b2d0b8d0bbd0b820d0b2d0b0d188d0b0d182d0b020d0bfd0b0d180d0bed0bbd0b02c20d0bcd0bed0b6d0b520d0b4d0b020d092d0b820d0b8d0b7d0bfd180d0b0d182d0b8d0bc20d0bfd0be20d0b8d0bcd0b5d0b9d0bb20d0bdd0bed0b2d0b02e3c62723ed09dd0bed0b2d0b0d182d0b020d0bfd0b0d180d0bed0bbd0b020d189d0b520d0b1d18ad0b4d0b520d0b8d0b7d0b1d180d0b0d0bdd0b020d181d0bbd183d187d0b0d0b9d0bdd0be2c20d0bad0b0d182d0be20d180d0b0d0b7d0b1d0b8d180d0b020d181d0b520d0bfd0be2dd0bad18ad181d0bdd0be20d0bcd0bed0b6d0b520d0b4d0b020d18f20d181d0bcd0b5d0bdd0b8d182d0b520d0bed18220d181d182d180d0b0d0bdd0b8d186d0b0d182d0b020d0b7d0b020d180d0b5d0b4d0b0d0bad182d0b8d180d0b0d0bdd0b520d0bdd0b020d0bfd180d0bed184d0b8d0bbd0b020d092d0b82e3c62723ed094d0bed0bad0b0d182d0be20d18f20d181d0bcd0b5d0bdd0b8d182d0b52c20d189d0b520d180d0b0d0b1d0bed182d18fd18220d0b820d0b4d0b2d0b5d182d0b520d092d0b820d0bfd0b0d180d0bed0bbd0b82c20d181d182d0b0d180d0b0d182d0b020d0b820d0bdd0bed0b2d0b0d182d0b02e, 'Y', '2009-12-30 21:22:37'),
(1850, 37, 0x3c703e20d092d0b8d0b520d181d182d0b520d0bed182d0b3d0bed0b2d0bed180d0bdd0b820d0b7d0b020d0b2d0b0d188d0b8d182d0b520d0b4d0b5d0b9d181d182d0b2d0b8d18f20d0b820d0b8d0bdd184d0bed180d0bcd0b0d186d0b8d18fd182d0b02c20d0bad0bed18fd182d0be20d0b2d18ad0b2d0b5d0b6d0b4d0b0d182d0b520d0b220d182d0bed0b7d0b820d181d0b0d0b9d1822c20d0bad0b0d182d0be20d0b2d0b0d188d0b020d0b1d0b8d0bed0b3d180d0b0d184d0b8d18f2c20d0b2d18ad0b220d184d0bed180d183d0bcd0b8d182d0b520d0b8d0bbd0b820d0b220d181d18ad0bed0b1d189d0b5d0bdd0b8d18fd182d0b020d0b4d0be20d0b4d180d183d0b3d0b820d187d0bbd0b5d0bdd0bed0b2d0b52e, 'Y', '2010-01-01 14:13:49'),
(1852, 37, 0xd09fd0bed0bbd0b8d182d0b8d0bad0b0d182d0b020d0bdd0b020d094d180d0b0d0bad0bed0bdd093d0bed0a1d18ad180d0b2d18ad18020d0b2d0bbd0b8d0b7d0b020d0b220d181d0b8d0bbd0b020d0bdd0b02031342dd094d0b5d0ba2d323030382e20d09dd0b8d0b520d181d0b820d0b7d0b0d0bfd0b0d0b7d0b2d0b0d0bcd0b520d0bfd180d0b0d0b2d0bed182d0be20d0b4d0b020d0bfd180d0bed0bcd0b5d0bdd18fd0bcd0b520d182d0b0d0b7d0b820d0bfd0bed0bbd0b8d182d0b8d0bad0b020d0bed18220d0b2d180d0b5d0bcd0b520d0bdd0b020d0b2d180d0b5d0bcd0b52e20d092d181d18fd0bad0b0d0bad0b2d0b820d0bfd180d0bed0bcd0b5d0bdd0b820d189d0b520d0b1d18ad0b4d0b0d18220d181d18ad0bed0b1d189d0b0d0b2d0b0d0bdd0b820d0b2d18ad0b2203c686f6d6520666f72756d2f6c6973742e7068703f666f72756d3d313ed184d0bed180d183d0bcd0b020d09dd0bed0b2d0b8d0bdd0b83c2f686f6d653e2e, 'Y', '2010-01-01 01:31:01'),
(1847, 37, 0x3c703ed090d0bad0be20d0bdd0b520d181d0b520d0bfd180d0b8d0b4d18ad180d0b6d0b0d182d0b520d0bad18ad0bc20d0bdd18fd0bad0bed0b520d0bed18220d0bdd0b0d188d0b8d182d0b520d0bfd180d0b0d0b2d0b8d0bbd0b020d0b7d0b020d0bfd0bed0b2d0b5d0b4d0b5d0bdd0b8d0b52c20d0bdd0b8d0b520d181d0b820d0b7d0b0d0bfd0b0d0b7d0b2d0b0d0bcd0b520d0bfd180d0b0d0b2d0bed182d0be20d0b4d0b020d0bfd180d0b8d0b5d0bcd0b5d0bc20d0b2d181d18fd0bad0be20d0b4d0b5d0b9d181d182d0b2d0b8d0b52c20d0bad0bed0b5d182d0be20d181d0bcd0b5d182d0bdd0b5d0bc20d0b7d0b020d0bfd0bed0b4d185d0bed0b4d18fd189d0be20d0b220d0bad0bed0bdd0bad180d0b5d182d0bdd0b0d182d0b020d181d0b8d182d183d0b0d186d0b8d18f2e20d0a2d0bed0b2d0b020d0bcd0bed0b6d0b520d0b4d0b020d0b2d0bad0bbd18ed187d0b2d0b020d0bfd180d0b5d0bcd0b0d185d0b2d0b0d0bdd0b520d0bdd0b020d0b7d0b0d0bfd0b8d181d0b0d0bdd0b820d182d0b5d0bad181d182d0bed0b2d0b52c20d0bed0b3d180d0b0d0bdd0b8d187d0b0d0b2d0b0d0bdd0b520d0b8d0b7d0bfd0bed0bbd0b7d0b2d0b0d0bdd0b5d182d0be20d0bdd0b020d184d183d0bdd0bad186d0b8d0b82c20d0b1d0bbd0bed0bad0b8d180d0b0d0bdd0b520d0bdd0b020d0b2d0b0d188d0b8d18f20d0b4d0bed181d182d18ad0bf20d0b4d0be20d182d0bed0b7d0b820d181d0b0d0b9d18220d0b8d0bbd0b820d182d0b5d180d0bcd0b8d0bdd0b8d180d0b0d0bdd0b520d0bdd0b020d0b2d0b0d188d0b0d182d0b020d180d0b5d0b3d0b8d181d182d180d0b0d186d0b8d18f2e, 'Y', '2009-12-30 21:42:12'),
(1849, 37, 0x3c703ed09dd0b8d0b520d0bdd18fd0bcd0b020d0b4d0b020d181d0bfd0bed0b4d0b5d0bbd18fd0bcd0b520d0b8d0bdd184d0bed180d0bcd0b0d186d0b8d18f20d0b7d0b020d092d0b0d1812028d0b8d0bcd0b5d0b9d0bb20d0b0d0b4d180d0b5d1812c20495020d0b0d0b4d180d0b5d18120d0b820d181d18ad0bed0b1d189d0b5d0bdd0b8d18f292c20d0bad0bed0b8d182d0be20d181d0b520d0bdd0b0d0bcd0b8d180d0b0d18220d0bdd0b020d094d180d0b0d0bad0bed0bdd093d0bed0a1d18ad180d0b2d18ad1802c20d0b1d0b5d0b720d0b8d0b7d180d0b8d187d0bdd0be20d180d0b0d0b7d180d0b5d188d0b5d0bdd0b8d0b520d0bed18220d092d0b0d1812c20d0bed181d0b2d0b5d0bd20d0b0d0bad0be20d0bdd0b520d0b1d18ad0b4d0b520d0bfd0bed0b8d181d0bad0b0d0bdd0b020d0bed18220d0bfd0bed0bbd0b8d186d0b5d0b9d181d0bad0b820d181d0bbd183d0b6d0b1d0b82e, 'Y', '2010-01-01 01:35:26'),
(1851, 37, 0xd094d0b0d182d0b020d0bdd0b020d0b2d0bbd0b8d0b7d0b0d0bdd0b520d0b220d181d0b8d0bbd0b0, 'Y', '2010-01-01 01:27:10'),
(1848, 37, 0xd09fd0bed0bbd0b8d182d0b8d0bad0b020d0b7d0b020d0b7d0b0d189d0b8d182d0b020d0bdd0b020d0bbd0b8d187d0bdd0b8d182d0b520d0b4d0b0d0bdd0bdd0b8, 'Y', '2009-12-30 22:46:02'),
(309, 37, 0xd0a4d0bbd0b0d0b3d0bed0b2d0b5, 'Y', '2009-12-30 22:51:28'),
(310, 37, 0xd09ed182, 'Y', '2009-12-30 22:51:28'),
(311, 37, 0xd0a2d0b5d0bcd0b0, 'Y', '2009-12-30 22:51:28'),
(312, 37, 0xd094d0b0d182d0b0, 'Y', '2009-12-30 22:51:28'),
(314, 37, 0xd09dd0bed0b2d0be, 'Y', '2009-12-30 22:51:28'),
(316, 37, 0xd09ed182d0b3d0bed0b2d0bed180d0b5d182d0b521, 'Y', '2010-01-01 02:36:12'),
(330, 37, 0xd091d0b5d0bbd0b8, 'Y', '2009-12-30 22:51:28'),
(331, 37, 0xd0a7d0b5d180d0bdd0b8, 'Y', '2009-12-30 22:51:28'),
(352, 37, '', 'Y', '2012-06-19 21:06:23'),
(360, 37, 0xd0a6d0b2d18fd182, 'Y', '2009-12-30 22:51:28'),
(362, 37, 0xd0a5d0b5d0bdd0b4d0b8d0bad0b0d0bf, 'Y', '2009-12-30 22:51:28'),
(363, 37, 0xd09ad0bed0bcd0b8, 'Y', '2009-12-30 22:51:28'),
(370, 37, 0xd094d0b0, 'Y', '2009-12-30 22:51:28'),
(371, 37, 0xd09dd0b5, 'Y', '2009-12-30 22:51:28'),
(372, 37, 0xd0b6d0b8d0b3d0be, 'N', '2009-12-30 22:51:28'),
(389, 37, 0xd09dd0bed0b2d0b820d181d18ad0bed0b1d189d0b5d0bdd0b8d18f, 'Y', '2009-12-30 22:51:28'),
(390, 37, 0xd092d0b8d0b520d181d182d0b520d0bdd0b020d185d0bed0b420d0b220d181d0bbd0b5d0b4d0bdd0b8d182d0b520d0b8d0b3d180d0b83a, 'Y', '2009-12-30 22:56:59'),
(391, 37, 0xd09dd0b520d181d0b020d0bdd0b0d0bcd0b5d180d0b5d0bdd0b820d0b8d0b3d180d0b8, 'Y', '2009-12-30 22:56:59'),
(1289, 37, 0xd09ad0b0d0ba20d0bcd0bed0b3d0b020d0b4d0b020d181d18ad0b7d0b4d0b0d0bc20d0b2d180d18ad0b7d0bad0b020d0bad18ad0bc20d181d182d180d0b0d0bdd0b8d186d0b0d182d0b020d18120d0b8d0bdd184d0bed180d0bcd0b0d186d0b8d18f20d0bdd0b020d0b4d0b0d0b4d0b5d0bd20d0bfd0bed182d180d0b5d0b1d0b8d182d0b5d0bb, 'Y', '2010-01-01 01:21:24'),
(452, 37, 0x257320d0b7d0b020257320d0bad0b0d0bcd18ad0bad0b0, 'Y', '2009-12-30 22:56:59'),
(460, 37, 0xd181d0bbd0b5d0b4d0b2d0b0d189d0b020d181d182d180d0b0d0bdd0b8d186d0b0, 'Y', '2009-12-30 22:56:59'),
(461, 37, 0xd0bfd180d0b5d0b4d0bdd0b020d181d182d180d0b0d0bdd0b8d186d0b0, 'Y', '2009-12-30 22:56:59'),
(462, 37, 0xd094d0bed0b1d0b0d0b2d0b820d09ad0bed0bbd0bed0bdd0b0, 'Y', '2009-12-30 22:56:59'),
(715, 37, 0xd092d180d0b5d0bcd0b520d0bdd0b020d181d182d180d0b0d0bdd0b8d186d0b0d182d0b0, 'Y', '2009-12-31 01:06:14'),
(3172, 40, 0x4e6f7661, 'Y', '2014-04-11 14:07:57'),
(719, 37, 0x257320d0bfd0b5d187d0b5d0bbd18fd18220d18120252e3166, 'Y', '2010-01-01 21:13:58'),
(722, 37, 0xd09fd0b0d0bfd0bad0b0, 'Y', '2009-12-30 22:56:59'),
(747, 37, 0xd092d181d0b8d187d0bad0b820d0bad0bed0bbd0bed0bdd0b8, 'Y', '2009-12-30 22:56:59'),
(755, 37, 0xd0a1d18ad180d0b2d18ad180d0bdd0be20d181d18ad0bed0b1d189d0b5d0bdd0b8d0b5, 'Y', '2009-12-30 22:56:59'),
(1055, 37, 0xd0a1d182d0b0d182d183d1812052535320d0bad0b0d0bdd0b0d0bb, 'Y', '2009-12-30 22:56:59'),
(1059, 37, 0xd09fd0bed0bad0b0d0b6d0b8, 'Y', '2009-12-30 22:56:59'),
(1060, 37, 0xd0a1d0bad180d0b8d0b9, 'Y', '2009-12-30 22:56:59'),
(1091, 37, 0xd09ed181d182d0b0d0b2d0b0d189d0be20d0b2d180d0b5d0bcd0b5, 'Y', '2009-12-30 22:56:59'),
(1125, 37, 0xd0a1d0bed180d182d0b8d180d0b0d0b9, 'Y', '2009-12-30 22:56:59'),
(1581, 36, 0x4964c591206d69617474206e79657274203a207665737a74657474206ac3a174737a6dc3a16b20737ac3a16d61, 'Y', '2015-09-19 19:18:23'),
(1274, 37, 0xd0b4d0b5d0bd, 'Y', '2009-12-30 22:56:59'),
(1275, 37, 0xd0b4d0bdd0b8, 'Y', '2009-12-30 23:00:22'),
(1276, 37, 0xd187d0b0d181, 'Y', '2009-12-30 23:00:22'),
(1277, 37, 0xd187d0b0d181d0b0, 'Y', '2009-12-30 23:00:22'),
(1378, 37, 0xd09ad0bed0bdd182d0b0d0bad182d0b8, 'Y', '2009-12-30 23:00:22'),
(1415, 37, '', 'Y', '2012-06-19 21:06:23'),
(1416, 37, '', 'Y', '2012-06-19 21:06:23'),
(1429, 37, 0xd09ed0bfd0bed0bdd0b5d0bdd182, 'Y', '2009-12-30 23:00:22'),
(1430, 37, 0xd09fd0bed182d180d0b5d0b1d0b8d182d0b5d0bb, 'Y', '2009-12-30 23:00:22'),
(1433, 37, 0xd0a0d0b5d0b9d182d0b8d0bdd0b3, 'Y', '2009-12-30 23:00:22'),
(1435, 37, 0xd0a6d0b2d18fd182, 'Y', '2009-12-30 23:00:22'),
(1437, 37, 0xd0a0d0b0d0b7d0bcd0b5d180, 'Y', '2009-12-30 23:00:22'),
(1438, 37, 0xd0a5d0b5d0bdd0b42e, 'Y', '2010-01-01 02:39:40'),
(1439, 37, 0xd09ad0bed0bcd0b8, 'Y', '2009-12-30 23:00:22'),
(1440, 37, 0xd0a5d0bed0b4d0bed0b2d0b5, 'Y', '2009-12-30 23:00:22'),
(1443, 37, 0xd097d0b020d180d0b5d0b9d182d0b8d0bdd0b3, 'Y', '2009-12-30 23:00:22'),
(1444, 37, 0xd09fd0bed181d0bbd0b5d0b4d0b5d0bd20d185d0bed0b4, 'Y', '2009-12-30 23:00:22'),
(1475, 37, 0xd09ed181d182d0b0d0b2d0b0d189d0be20d0b2d180d0b5d0bcd0b5, 'Y', '2009-12-30 23:00:22'),
(1520, 37, 0xd093d180d0b5d188d0bad0b0, 'Y', '2009-12-30 23:00:22'),
(1521, 37, 0xd09fd0bed0bad0b0d0b6d0b820d0a0d0b5d0b4d0bed0b2d0b5, 'Y', '2009-12-30 23:00:22'),
(1606, 37, 0xd0a2d18ad180d181d0b8, 'Y', '2009-12-30 23:00:22'),
(1607, 37, 0xd098d0b7d187d0b8d181d182d0b820d182d18ad180d181d0b5d0bdd0b5d182d0be, 'Y', '2009-12-30 23:00:22'),
(1608, 37, 0xd0a1d0b8d0bdd182d0b0d0bad181d0b8d181, 'Y', '2009-12-30 23:00:22'),
(1613, 37, 0xd0bdd0b5d0b2d0b0d0bbd0b8d0b4d0b5d0bd20d180d0b0d0bdd0b3, 'Y', '2009-12-30 23:00:22'),
(1614, 37, 0xd0a1d0a2d0a0d090d09dd090, 'Y', '2009-12-30 23:00:22'),
(1619, 37, 0xd0b0d0b1d181d0bed0bbd18ed182d0bdd0be, 'Y', '2009-12-30 23:02:38'),
(1620, 37, 0xd0b3d0bed0b4d0b8d0bdd0b8, 'Y', '2009-12-30 23:02:38'),
(1621, 37, 0xd0bcd0b5d181d0b5d186d0b8, 'Y', '2009-12-30 23:02:38'),
(1622, 37, 0xd181d0b5d0b4d0bcd0b8d186d0b8, 'Y', '2009-12-30 23:02:38'),
(1623, 37, 0xd0b4d0bdd0b8, 'Y', '2009-12-30 23:02:38'),
(1624, 37, 0xd187d0b0d181d0bed0b2d0b5, 'Y', '2009-12-30 23:02:38'),
(1628, 37, 0xd0bdd0b520d187d0b8d181d0bbd0bed0b2, 'Y', '2009-12-30 23:02:38'),
(1629, 37, 0xd0bcd0bed0b6d0b520d0b1d0b820d0b8d181d0bad0b0d182d0b520d0b4d0b020d0b8d0b7d0b1d0b5d180d0b5d182d0b520d0b0d0b1d181d0bed0bbd18ed182d0bdd0b8, 'Y', '2009-12-30 23:02:38'),
(1630, 37, 0xd092d181d0b8d187d0bad0b8, 'Y', '2009-12-30 23:02:38'),
(1631, 37, 0xd094d0b0, 'Y', '2009-12-30 23:02:38'),
(1632, 37, 0xd09dd0b5, 'Y', '2009-12-30 23:02:38'),
(1634, 37, 0xd094d0b0, 'Y', '2009-12-30 23:02:38'),
(1635, 37, 0xd09dd0b5, 'Y', '2009-12-30 23:02:38'),
(1647, 37, 0xd09dd0b5d0b2d0b0d0bbd0b8d0b4d0b5d0bd20584d4c2d656e7469747920d0bdd0b020d0bfd0bed0b7d0b8d186d0b8d18f2023, 'Y', '2009-12-30 23:12:49'),
(1648, 37, 0xd09dd0b5d0b2d0b0d0bbd0b8d0b4d0b5d0bd20584d4c2d74616720d0bdd0b020d0bfd0bed0b7d0b8d186d0b8d18f2023, 'Y', '2009-12-30 23:12:49'),
(1650, 37, 0xd09dd0b5d0b2d0b0d0bbd0b8d0b4d0b5d0bd20584d4c2d656e642d74616720d0bdd0b020d0bfd0bed0b7d0b8d186d0b8d18f2023, 'Y', '2009-12-30 23:12:49'),
(1737, 37, 0xd0bcd0b8d0bdd183d182d0b8, 'Y', '2009-12-30 23:12:49'),
(1871, 37, 0xd094d0b0d180d0b8, 'Y', '2009-12-30 23:12:49'),
(1872, 37, 0xd09fd0bed0b4d0bad180d0b5d0bfd0b5d182d0b520d094d093d0a120d18120d0b4d0b0d180d0b5d0bdd0b8d0b5, 'Y', '2009-12-30 23:12:49'),
(1873, 37, 0xd094d0b0d180d0b5d0bdd0b8d0b5, 'Y', '2009-12-30 23:12:49'),
(1875, 37, 0xd094d0b0d180d0b5d0bdd0b8d18f, 'Y', '2009-12-30 23:12:49'),
(1879, 37, 0xd0a1d0bbd0b5d0b4d0b2d0b0d189d0b0d182d0b020d0b2d180d18ad0b7d0bad0b020d189d0b520d0b2d0b820d0bed182d0b2d0b5d0b4d0b520d0b4d0be2050617950616c, 'Y', '2009-12-30 23:12:49'),
(1880, 37, 0xd091d0bbd0b0d0b3d0bed0b4d0b0d180d0b8d0bc20d092d0b820d0b7d0b020d189d0b5d0b4d180d0bed182d0be20d0b4d0b0d180d0b5d0bdd0b8d0b520d0b220d0bfd0bed0b4d0bad180d0b5d0bfd0b020d0bdd0b020d094d093d0a1202121, 'Y', '2009-12-30 23:12:49'),
(756, 37, 0xd090d184d0b3d0b0d0bdd0b8d181d182d0b0d0bd, 'Y', '2009-12-30 23:19:02'),
(757, 37, 0xd090d0bbd0b1d0b0d0bdd0b8d18f, 'Y', '2009-12-30 23:19:02'),
(758, 37, 0xd090d0bbd0b6d0b8d180, 'Y', '2009-12-30 23:19:02'),
(759, 37, 0xd090d0bdd0b4d0bed180d0b0, 'Y', '2009-12-30 23:19:02'),
(760, 37, 0xd090d0bdd0b3d0bed0bbd0b0, 'Y', '2009-12-30 23:19:02'),
(761, 37, 0xd090d0bdd182d0b0d180d0bad182d0b8d0bad0b0, 'Y', '2009-12-30 23:19:02'),
(763, 37, 0xd090d180d0b6d0b5d0bdd182d0b8d0bdd0b0, 'Y', '2009-12-30 23:19:02'),
(764, 37, 0xd090d180d0bcd0b5d0bdd0b8d18f, 'Y', '2009-12-30 23:19:02'),
(765, 37, 0xd090d0b2d181d182d180d0b0d0bbd0b8d18f, 'Y', '2009-12-30 23:19:02'),
(766, 37, 0xd090d0b2d181d182d180d0b8d18f, 'Y', '2009-12-30 23:19:02'),
(767, 37, 0xd090d0b7d0b5d180d0b1d0b0d0b9d0b4d0b6d0b0d0bd, 'Y', '2009-12-30 23:19:02'),
(768, 37, 0xd091d0b0d185d0b0d0bcd0b8, 'Y', '2009-12-30 23:19:02'),
(769, 37, 0xd091d0b0d185d180d0b5d0b9d0bd, 'Y', '2009-12-30 23:19:02'),
(770, 37, 0xd091d0b0d180d0b1d0b0d0b4d0bed181, 'Y', '2009-12-30 23:19:02'),
(771, 37, 0xd091d0b0d0bdd0b3d0bbd0b0d0b4d0b5d188, 'Y', '2009-12-30 23:19:02'),
(772, 37, 0xd091d0b5d0bbd0b0d180d183d181, 'Y', '2009-12-30 23:19:02'),
(773, 37, 0xd091d0b5d0bbd0b3d0b8d18f, 'Y', '2009-12-30 23:19:02'),
(774, 37, 0xd091d0b5d0bbd0b8d0b7, 'Y', '2009-12-30 23:19:02'),
(776, 37, 0xd091d183d182d0b0d0bd, 'Y', '2009-12-30 23:19:02'),
(777, 37, 0xd091d0bed0bbd0b8d0b2d0b8d18f, 'Y', '2009-12-30 23:19:02'),
(780, 37, 0xd091d180d0b0d0b7d0b8d0bbd0b8d18f, 'Y', '2009-12-30 23:19:02'),
(783, 37, 0xd091d183d180d0bad0b8d0bdd0b020d0a4d0b0d181d0be, 'Y', '2009-12-30 23:19:02'),
(784, 37, 0xd091d183d180d183d0bdd0b4d0b8, 'Y', '2009-12-30 23:19:02'),
(785, 37, 0xd09ad0b0d0bcd0b1d0bed0b4d0b6d0b0, 'Y', '2009-12-30 23:19:02'),
(786, 37, 0xd09ad0b0d0bcd0b5d180d183d0bd, 'Y', '2009-12-30 23:22:26'),
(787, 37, 0xd09ad0b0d0bdd0b0d0b4d0b0, 'Y', '2009-12-30 23:22:26'),
(790, 37, 0xd0a7d0b0d0b4, 'Y', '2009-12-30 23:22:26'),
(791, 37, 0xd0a7d0b8d0bbd0b8, 'Y', '2009-12-30 23:22:26'),
(792, 37, 0xd09ad0b8d182d0b0d0b9, 'Y', '2009-12-30 23:22:26'),
(793, 37, 0xd09ad0bed0bbd183d0bcd0b1d0b8d18f, 'Y', '2009-12-30 23:22:26'),
(797, 37, 0xd09ad0bed181d182d0b020d0a0d0b8d0bad0b0, 'Y', '2009-12-30 23:22:26'),
(799, 37, 0xd0a5d18ad180d0b2d0b0d182d181d0bad0b0, 'Y', '2009-12-30 23:22:26'),
(800, 37, 0xd09ad183d0b1d0b0, 'Y', '2009-12-30 23:22:26'),
(801, 37, 0xd09ad0b8d0bfd18ad180, 'Y', '2009-12-30 23:22:26'),
(802, 37, 0xd0a7d0b5d188d0bad0b020d0a0d0b5d0bfd183d0b1d0bbd0b8d0bad0b0, 'Y', '2009-12-30 23:22:26'),
(803, 37, 0xd094d0b0d0bdd0b8d18f, 'Y', '2009-12-30 23:22:26'),
(808, 37, 0xd095d0bad0b2d0b0d0b4d0bed180, 'Y', '2009-12-30 23:22:26'),
(809, 37, 0xd095d0b3d0b8d0bfd0b5d182, 'Y', '2009-12-30 23:22:26'),
(813, 37, 0xd095d181d182d0bed0bdd0b8d18f, 'Y', '2009-12-30 23:22:26'),
(814, 37, 0xd095d182d0b8d0bed0bfd0b8d18f, 'Y', '2009-12-30 23:22:26'),
(815, 37, 0xd0a4d0b8d0b4d0b6d0b8, 'Y', '2009-12-30 23:22:26'),
(816, 37, 0xd0a4d0b8d0bdd0bbd0b0d0bdd0b4d0b8d18f, 'Y', '2009-12-30 23:25:16'),
(817, 37, 0xd0a4d180d0b0d0bdd186d0b8d18f, 'Y', '2009-12-30 23:25:16'),
(821, 37, 0xd093d0b5d180d0bcd0b0d0bdd0b8d18f, 'Y', '2009-12-30 23:25:16'),
(823, 37, 0xd093d18ad180d186d0b8d18f, 'Y', '2009-12-30 23:25:16'),
(830, 37, 0xd0a5d0bed0bdd0b4d183d180d0b0d181, 'Y', '2009-12-30 23:25:16'),
(831, 37, 0xd0a5d0bed0bdd0b320d09ad0bed0bdd0b3, 'Y', '2009-12-30 23:25:16'),
(832, 37, 0xd0a3d0bdd0b3d0b0d180d0b8d18f, 'Y', '2009-12-30 23:25:16'),
(833, 37, 0xd098d181d0bbd0b0d0bdd0b4d0b8d18f, 'Y', '2009-12-30 23:25:16'),
(834, 37, 0xd098d0bdd0b4d0b8d18f, 'Y', '2009-12-30 23:25:16'),
(835, 37, 0xd098d0bdd0b4d0bed0bdd0b5d0b7d0b8d18f, 'Y', '2009-12-30 23:25:16'),
(836, 37, 0xd098d180d0b0d0bd, 'Y', '2009-12-30 23:25:16'),
(837, 37, 0xd098d180d0b0d0ba, 'Y', '2009-12-30 23:25:16'),
(838, 37, 0xd098d180d0bbd0b0d0bdd0b4d0b8d18f, 'Y', '2009-12-30 23:25:16'),
(839, 37, 0xd098d0b7d180d0b0d0b5d0bb, 'Y', '2009-12-30 23:25:16'),
(840, 37, 0xd098d182d0b0d0bbd0b8d18f, 'Y', '2009-12-30 23:25:16'),
(842, 37, 0xd0afd0bfd0bed0bdd0b8d18f, 'Y', '2009-12-30 23:25:16'),
(843, 37, 0xd099d0bed180d0b4d0b0d0bdd0b8d18f, 'Y', '2009-12-30 23:25:16'),
(849, 37, 0xd09ad183d0b2d0b5d0b9d182, 'Y', '2009-12-30 23:28:07'),
(850, 37, 0xd09ad0b8d180d0b3d0b8d0b7d181d182d0b0d0bd, 'Y', '2009-12-30 23:28:07'),
(851, 37, 0xd09bd0b0d0bed181, 'Y', '2009-12-30 23:28:07'),
(852, 37, 0xd09bd0b0d182d0b2d0b8d18f, 'Y', '2009-12-30 23:28:07'),
(853, 37, 0xd09bd0b8d0b2d0b0d0bd, 'Y', '2009-12-30 23:28:07'),
(856, 37, 0xd09bd0b8d0b1d0b8d18f, 'Y', '2009-12-30 23:28:07'),
(861, 37, 0xd09cd0b0d0bad0b5d0b4d0bed0bdd0b8d18f, 'Y', '2009-12-30 23:28:07'),
(862, 37, 0xd09cd0b0d0b4d0b0d0b3d0b0d181d0bad0b0d180, 'Y', '2009-12-30 23:28:07'),
(867, 37, 0xd09cd0b0d0bbd182d0b0, 'Y', '2009-12-30 23:28:07'),
(871, 37, 0xd09cd0b5d0bad181d0b8d0bad0be, 'Y', '2009-12-30 23:28:07'),
(873, 37, 0xd09cd0bed0bbd0b4d0bed0b2d0b0, 'Y', '2009-12-30 23:28:07'),
(874, 37, 0xd09cd0bed0bdd0b0d0bad0be, 'Y', '2009-12-30 23:28:07'),
(875, 37, 0xd09cd0bed0bdd0b3d0bed0bbd0b8d18f, 'Y', '2009-12-30 23:28:07'),
(882, 37, 0xd0a5d0bed0bbd0b0d0bdd0b4d0b8d18f, 'Y', '2009-12-30 23:32:15'),
(883, 37, 0xd09dd0bed0b2d0b020d097d0b5d0bbd0b0d0bdd0b4d0b8d18f, 'Y', '2009-12-30 23:32:15'),
(887, 37, 0xd09dd0bed180d0b2d0b5d0b3d0b8d18f, 'Y', '2009-12-30 23:32:15'),
(889, 37, 0xd09fd0b0d0bad0b8d181d182d0b0d0bd, 'Y', '2009-12-30 23:32:15'),
(894, 37, 0xd09fd0b0d180d0b0d0b3d0b2d0b0d0b9, 'Y', '2009-12-30 23:32:15'),
(895, 37, 0xd09fd0b5d180d183, 'Y', '2009-12-30 23:32:15'),
(897, 37, 0xd09fd0bed0bbd188d0b0, 'Y', '2009-12-30 23:32:15'),
(900, 37, 0xd09ad0b0d182d0b0d180, 'Y', '2009-12-30 23:32:15'),
(901, 37, 0xd0a0d183d0bcd18ad0bdd0b8d18f, 'Y', '2009-12-30 23:32:15'),
(902, 37, 0xd0a0d183d181d0b8d18f, 'Y', '2009-12-30 23:32:15'),
(916, 37, 0xd0a1d0bbd0bed0b2d0b0d0bad0b8d18f, 'Y', '2009-12-30 23:35:55'),
(917, 37, 0xd0a1d0bbd0bed0b2d0b5d0bdd0b8d18f, 'Y', '2009-12-30 23:35:55'),
(918, 37, 0xd0a1d0bed0bbd0bed0bcd0bed0bdd0bed0b2d0b820d09ed181d182d180d0bed0b2d0b8, 'Y', '2009-12-30 23:35:55'),
(919, 37, 0xd0a1d0bed0bcd0b0d0bbd0b8d18f, 'Y', '2009-12-30 23:35:55'),
(920, 37, 0xd0aed0b6d0bdd0b020d090d184d180d0b8d0bad0b0, 'Y', '2009-12-30 23:35:55'),
(921, 37, 0xd098d181d0bfd0b0d0bdd0b8d18f, 'Y', '2009-12-30 23:35:55'),
(923, 37, 0xd0a1d183d0b4d0b0d0bd, 'Y', '2009-12-30 23:35:55'),
(926, 37, 0xd0a8d0b2d0b5d186d0b8d18f, 'Y', '2009-12-30 23:35:55'),
(927, 37, 0xd0a8d0b2d0b5d0b9d186d0b0d180d0b8d18f, 'Y', '2009-12-30 23:35:55'),
(937, 37, 0xd0a2d183d180d186d0b8d18f, 'Y', '2009-12-30 23:38:54'),
(938, 37, 0xd0a2d183d180d0bad0bcd0b5d0bdd0b8d181d182d0b0d0bd, 'Y', '2009-12-30 23:38:54'),
(941, 37, 0xd0a3d0bad180d0b0d0b9d0bdd0b0, 'Y', '2009-12-30 23:38:54'),
(942, 37, 0xd09ed0b1d0b5d0b4d0b8d0bdd0b5d0bdd0b820d090d180d0b0d0b1d181d0bad0b820d095d0bcd0b8d180d181d182d0b2d0b0, 'Y', '2009-12-30 23:38:54'),
(943, 37, 0xd09ed0b1d0b5d0b4d0b8d0bdd0b5d0bdd0be20d09ad180d0b0d0bbd181d182d0b2d0be, 'Y', '2009-12-30 23:38:54'),
(944, 37, 0xd0a1d18ad0b5d0b4d0b8d0bdd0b5d0bdd0b820d0a9d0b0d182d0b8, 'Y', '2009-12-30 23:38:54'),
(945, 37, 0xd0a3d180d183d0b3d0b2d0b0d0b9, 'Y', '2009-12-30 23:38:54'),
(946, 37, 0xd0a3d0b7d0b1d0b5d0bad0b8d181d182d0b0d0bd, 'Y', '2009-12-30 23:38:54'),
(950, 37, 0xd092d0b8d0b5d182d0bdd0b0d0bc, 'Y', '2009-12-30 23:38:54'),
(1126, 37, 0xd09ad0bed180d0b5d18f2cd0a1d0b5d0b2d0b5d180, 'Y', '2009-12-30 23:38:54'),
(1127, 37, 0xd09ad0bed180d0b5d18f2cd0aed0b3, 'Y', '2009-12-30 23:38:54'),
(1129, 37, 0xd0a1d18ad180d0b1d0b8d18f, 'Y', '2009-12-30 23:38:54'),
(1130, 37, 0xd097d0b5d0bcd18f, 'Y', '2009-12-30 23:38:54'),
(135, 37, 0xd09fd180d0b5d0b2d0bed0b4d0b0d187d0b8, 'Y', '2009-12-30 23:50:55'),
(136, 37, 0xd0a4d0bed180d183d0bc, 'Y', '2009-12-30 23:50:55'),
(159, 37, 0xd094d0bed0bad183d0bcd0b5d0bdd182d0b0d186d0b8d18f, 'Y', '2009-12-30 23:50:55'),
(161, 37, 0xd0a7d0b5d181d182d0be20d097d0b0d0b4d0b0d0b2d0b0d0bdd0b820d092d18ad0bfd180d0bed181d0b8, 'Y', '2009-12-30 23:50:55'),
(163, 37, 0xd0a5d0bed180d0b0, 'Y', '2009-12-30 23:50:55'),
(165, 37, 0xd092d180d18ad0b7d0bad0b8, 'Y', '2009-12-30 23:50:55'),
(168, 37, 0xd098d0bdd181d182d180d183d0bad186d0b8d0b820d0b7d0b020d0b8d0bdd181d182d0b0d0bbd0b8d180d0b0d0bdd0b5, 'Y', '2009-12-30 23:50:55'),
(169, 37, 0xd0b0d0bad0be20d0b8d181d0bad0b0d182d0b520d181d0b2d0bed0b920d181d0bed0b1d181d182d0b2d0b5d0bd20d0b4d180d0b0d0bad0bed0bd, 'Y', '2009-12-30 23:50:55'),
(170, 37, 0xd0a1d0b2d0b0d0bbd0b5d182d0b520d0b8d0b7d185d0bed0b4d0bdd0b8d18fd18220d0bad0bed0b420d0bdd0b020d0b4d180d0b0d0bad0bed0bd, 'Y', '2009-12-30 23:50:55'),
(173, 37, 0xd0a1d182d180d0b0d0bdd0b8d186d0b0d182d0b020d0bdd0b020d0bfd180d0bed0b5d0bad182d0b020d094d180d0b0d0bad0bed0bd20d0b220736f75726365666f726765, 'Y', '2009-12-30 23:50:55'),
(230, 37, 0xd098d0b3d180d0b0, 'Y', '2009-12-30 23:57:50'),
(256, 37, 0xd09ed0b1d189d0b020d0b8d0bdd184d0bed180d0bcd0b0d186d0b8d18f, 'Y', '2009-12-30 23:57:50'),
(340, 37, 0xd0a7d097d09220d180d0b5d0b4d0b0d0bad182d0bed180, 'Y', '2009-12-31 00:06:28'),
(377, 37, 0xd09fd180d0b8d0b2d0b5d182d181d182d0b2d0b0d189d0b020d181d182d180d0b0d0bdd0b8d186d0b0, 'Y', '2009-12-31 00:06:28'),
(380, 37, 0xd09fd0bed0bad0b0d0b6d0b820d181d18ad0bed0b1d189d0b5d0bdd0b8d0b5, 'Y', '2009-12-31 00:06:28'),
(385, 37, 0xd09dd0bed0b2d0b020d182d0b5d0bcd0b0, 'N', '2009-12-31 00:06:28'),
(726, 37, 0xd0a0d0b5d0b4d0b0d0bad182d0b8d180d0b0d0b920d0bfd0b0d0bfd0bad0b8, 'Y', '2009-12-31 00:06:28'),
(730, 37, 0xd0a0d0b5d0b4d0b0d0bad182d0b8d180d0b0d0b920d0b2d0b0d0bad0b0d0bdd186d0b8d18f, 'Y', '2009-12-31 00:06:28'),
(1104, 37, 0xd09cd0b0d0b3d0b8d18fd182d0b020d0bdd0b020d093d0be, 'Y', '2009-12-31 00:06:28'),
(1382, 37, 0xd09ad0b0d0ba20d0b4d0b020d0b7d0b0d0bfd0bed187d0bdd0b5d0bc, 'Y', '2009-12-31 00:06:28'),
(1383, 37, 0xd09dd0bed0b2d0b8d0bdd0b8, 'Y', '2009-12-31 00:12:59'),
(1397, 37, 0xd094d0b0d0b9d182d0b520d0b2d180d0b5d0bcd0b520d0bdd0b020d0bed0bfd0bed0bdd0b5d0bdd182d0b0, 'Y', '2010-01-01 14:33:41'),
(1398, 37, 0xd09fd0bed0bad0b0d0b6d0b820d0bdd0b0d0b1d0bbd18ed0b4d0b0d182d0b5d0bbd0b8d182d0b5, 'Y', '2009-12-31 00:12:59'),
(1406, 37, 0xd09cd0b5d0b6d0b4d183d0bdd0b0d180d0bed0b4d0bdd0b020d093d0be20d0a4d0b5d0b4d0b5d180d0b0d186d0b8d18f2028494746292e20d09dd0b0d0bcd0b5d180d0b5d182d0b520d184d0b5d0b4d0b5d180d0b0d186d0b8d0b820d0b820d0b0d181d0bed186d0b8d0b0d186d0b8d0b820d0bfd0be20d181d0b2d0b5d182d0b02e, 'Y', '2009-12-31 00:12:59'),
(1407, 37, 0xd09ed189d0b520d0b5d0b4d0b8d0bd20d0bfd0bed185d0bed0b4d0bed0b22e20d0a4d0bed0bad183d181d0b8d180d0b0d0bd20d0b2d18ad180d185d18320d0bed180d0b3d0b0d0bdd0b8d0b7d0b8d180d0b0d0bdd0b020d182d183d180d0bdd0b8d180d0bdd0b020d0b8d0b3d180d0b02e, 'Y', '2009-12-31 00:12:59'),
(1408, 37, 0xd09ad0b8d181d0b5d0b9d0b4d0be20d093d0be20d0a1d18ad180d0b2d18ad18020284b47532920d181204a61766120d0b8d0bdd182d0b5d180d184d0b5d0b9d181, 'Y', '2009-12-31 00:12:59'),
(1409, 37, 0xd0a2d18ad180d181d0b820d181d18ad0bed0b1d189d0b5d0bdd0b8d18f, 'Y', '2009-12-31 00:12:59'),
(1456, 37, 0xd09fd0bed0bad0b0d0b6d0b820d0b8d0b3d180d0b02028d181d0bbd0b5d0b4d0b2d0b0d0b920494429, 'Y', '2009-12-31 00:12:59'),
(1457, 37, 0xd0a1d0b2d0b0d0bbd0b5d182d0b52053474620d18120d0b8d0b3d180d0b0, 'Y', '2010-01-01 14:32:02'),
(1462, 37, 0xd098d0bdd184d0bed180d0bcd0b0d186d0b8d18f20d0b7d0b020d0b4d180d183d0b320d0bfd0bed182d180d0b5d0b1d0b8d182d0b5d0bb, 'Y', '2009-12-31 00:12:59'),
(1463, 37, 0xd09fd0bed0bad0b0d0b6d0b820d180d0b5d0b9d182d0b8d0bdd0b320d0b4d0b8d0b0d0b3d180d0b0d0bcd0b0, 'Y', '2009-12-31 00:12:59'),
(1465, 37, 0xd09fd0bed0bad0b0d0bdd0b820d0bfd0bed182d180d0b5d0b1d0b8d182d0b5d0bb, 'Y', '2009-12-31 00:12:59'),
(1466, 37, 0xd094d0bed0b1d0b0d0b2d0b82fd180d0b5d0b4d0b0d0bad182d0b8d180d0b0d0b920d0bad0bed0bdd182d0b0d0bad182, 'Y', '2009-12-31 00:12:59'),
(1468, 37, 0xd09fd0bed0bad0b0d0b6d0b820d181d182d0b0d182d0b8d181d182d0b8d0bad0b020d0b7d0b020d0b8d0b3d180d0b8d182d0b520d0bdd0b020d0b4d0b2d0b0d0bcd0b020d0b8d0b3d180d0b0d187d0b8, 'Y', '2009-12-31 00:12:59'),
(1469, 37, 0xd098d0b7d0bfd180d0b0d182d0b820d181d18ad0bed0b1d189d0b5d0bdd0b8d0b520d0b4d0be20d0bad0bed0bdd182d0b0d0bad182, 'Y', '2009-12-31 00:12:59'),
(1470, 37, 0xd09fd0bed0bad0b0d0bdd0b820d0bad0bed0bdd182d0b0d0bad182, 'Y', '2009-12-31 00:19:17'),
(1473, 37, 0xd0a2d18ad180d181d0b820d0b2d18ad0b220d184d0bed180d183d0bcd0b8d182d0b5, 'Y', '2009-12-31 00:19:17'),
(1523, 37, 0xd0a0d0b5d0b9d182d0b8d0bdd0b320d185d0b8d181d182d0bed0b3d180d0b0d0bcd0b0, 'Y', '2009-12-31 00:19:17'),
(1563, 37, 0xd094d180d0b0d0bad0bed0bdd093d0bed0a1d18ad180d0b2d18ad18020d09dd09ed092d098d09dd098, 'Y', '2009-12-31 00:19:17'),
(1725, 37, 0xd09bd0b8d186d0b5d0bdd0b7, 'Y', '2009-12-31 00:19:17'),
(1776, 37, 0xd0a3d181d0bbd0bed0b2d0b8d18f20d0b7d0b020d0bfd0bed0bbd0b7d0b2d0b0d0bdd0b5, 'Y', '2009-12-31 00:19:17'),
(1777, 37, 0xd09fd180d0b0d0b2d0b8d0bbd0b020d0b7d0b020d0bfd0bed0b2d0b5d0b4d0b5d0bdd0b8d0b520d0b820d09fd0bed0bbd0b8d182d0b8d0bad0b020d0b7d0b020d0b7d0b0d189d0b8d182d0b020d0bdd0b020d0bbd0b8d187d0bdd0b8d182d0b520d0b4d0b0d0bdd0bdd0b8, 'Y', '2009-12-31 00:19:17'),
(1779, 37, 0xd0a7d097d09220d180d0b5d0b4d0b0d0bad182d0bed180d0b8, 'Y', '2009-12-31 00:19:17'),
(1780, 37, 0xd0a4d0bed180d183d0bc20d0bcd0bed0b4d0b5d180d0b0d182d0bed180d0b8, 'Y', '2009-12-31 00:19:17'),
(1781, 37, 0xd0a4d0bed180d183d0bc20d0bcd0bed0b4d0b5d180d0b0d182d0bed180, 'Y', '2009-12-31 00:19:17'),
(1874, 37, 0xd0a3d181d0bbd0bed0b2d0b8d18f20d0b7d0b020d0bfd0bed0bbd0b7d0b2d0b0d0bdd0b5202d20d09fd180d0b0d0b2d0b8d0bbd0b020d0b7d0b020d0bfd0bed0b2d0b5d0b4d0b5d0bdd0b8d0b520d0b820d09fd0bed0bbd0b8d182d0b8d0bad0b020d0b7d0b020d0b7d0b0d189d0b8d182d0b020d0bdd0b020d0bbd0b8d187d0bdd0b8d182d0b520d0b4d0b0d0bdd0bdd0b8, 'Y', '2009-12-31 00:19:17'),
(627, 37, 0xd09ad0b0d0bad0b2d0be20d0bed0b7d0bdd0b0d187d0b0d0b2d0b020d0bfd0bed182d180d0b5d0b1d0b8d182d0b5d0bbd181d0bad0b0d182d0b02022d090d0bad182d0b8d0b2d0bdd0bed181d182223f, 'Y', '2009-12-31 00:47:54'),
(1489, 37, 0xd090d0bad182d0b8d0b2d0bdd0bed181d182, 'Y', '2009-12-31 00:47:54'),
(1253, 37, 0xd09fd183d0b1d0bbd0b8d0bad183d0b2d0b0d0bdd0b5, 'Y', '2009-12-31 00:54:56'),
(1254, 37, 0xd09fd183d0b1d0bbd0b8d0bad0b0d186d0b8d0b820d187d0b0d0bad0b0d189d0b820d0bed0b4d0bed0b1d180d0b5d0bdd0b8d0b5, 'Y', '2009-12-31 00:54:15'),
(1259, 37, 0xd09fd183d0b1d0bbd0b8d0bad0b0d186d0b8d0b8, 'Y', '2009-12-31 00:54:15'),
(1260, 37, 0xd09fd0bed181d0bbd0b5d0b4d0bdd0b020d0bfd183d0b1d0bbd0b8d0bad0b0d186d0b8d18f, 'Y', '2009-12-31 00:54:15'),
(1261, 37, 0xd0a1d18ad0b6d0b0d0bbd18fd0b2d0b0d0bc2c20d0bdd0b520d092d0b820d0b520d0bfd0bed0b7d0b2d0bed0bbd0b5d0bdd0be20d0b4d0b020d0bfd183d0b1d0bbd0b8d0bad183d0b2d0b0d182d0b520d0b2d18ad0b220d0a4d0bed180d183d0bcd0b02e, 'Y', '2009-12-31 00:54:15'),
(225, 37, 0xd09fd180d0b5d0b4d0b0d0b2d0b0d0bdd0b5, 'Y', '2009-12-31 01:01:54'),
(226, 37, 0xd09fd0b0d181d183d0b2d0b0d0bdd0b5, 'Y', '2009-12-31 01:01:54'),
(227, 37, 0xd098d0b7d182d180d0b8d0b2d0b0d0bdd0b520d0bdd0b020d0b8d0b3d180d0b0, 'Y', '2009-12-31 01:01:54'),
(229, 37, 0xd0a0d0b5d0b7d183d0bbd182d0b0d182, 'Y', '2009-12-31 01:01:54'),
(231, 37, 0xd09fd0b0d181, 'Y', '2009-12-31 01:01:54'),
(232, 37, 0xd098d0b7d182d180d0b8d0b920d0b8d0b3d180d0b0, 'Y', '2009-12-31 01:01:54'),
(233, 37, 0xd093d0bed182d0bed0b2d0be, 'Y', '2009-12-31 01:01:54'),
(234, 37, 0xd09fd180d0bed0b4d18ad0bbd0b6d0b820d0b4d0b020d0b8d0b3d180d0b0d0b5d188, 'Y', '2009-12-31 01:01:54'),
(235, 37, 0xd09fd180d0b5d0b4d0b0d0b920d181d0b5, 'Y', '2009-12-31 01:01:54'),
(236, 37, 0xd0a1d0b2d0b0d0bbd0b5d182d0b520736766, 'Y', '2010-01-01 14:32:02'),
(237, 37, 0xd09fd180d0b5d0bcd0b8d0bdd0b820d0bad18ad0bc20d181d0bbd0b5d0b4d0b2d0b0d189d0b020d0b8d0b3d180d0b0, 'Y', '2009-12-31 01:01:54'),
(238, 37, 0xd09fd180d0b5d0bcd0b0d185d0bdd0b820d0bed18220d181d0bfd0b8d181d18ad0bad18ad18220d18120d0bdd0b0d0b1d0bbd18ed0b4d0b0d0b2d0b0d0bdd0b8, 'Y', '2009-12-31 01:01:54'),
(239, 37, 0xd094d0bed0b1d0b0d0b2d0b820d0bad18ad0bc20d0bdd0b0d0b1d0bbd18ed0b4d0b0d0b2d0b0d0bdd0b8, 'Y', '2009-12-31 01:01:54'),
(253, 37, 0xd098d0b3d180d0b0d182d0b020d0b520d0b8d0b7d182d180d0b8d182d0b021, 'Y', '2009-12-31 01:01:54'),
(273, 37, 0xd09fd180d0b0d0b2d0b8d0bbd0b0, 'Y', '2009-12-31 01:01:54'),
(308, 37, 0xd094d0be, 'Y', '2009-12-31 01:01:54'),
(324, 37, 0xd09ed182d0b3d0bed0b2d0bed180d0b5d182d0b5, 'Y', '2010-01-01 02:36:12'),
(325, 37, 0xd0a1d18ad0bed0b1d189d0b5d0bdd0b8d0b5, 'Y', '2009-12-31 01:01:54'),
(1090, 37, 0xd092d0b8d0b620d185d0bed0b4, 'Y', '2009-12-31 10:11:30'),
(745, 37, 0xd09fd180d0b5d0bcd0b5d181d182d0b820d0b220d0bfd0b0d0bfd0bad0b0, 'Y', '2009-12-31 10:15:38'),
(1044, 37, 0xd0a2d0bed0b7d0b820d185d0bed0b420d0b2d0bed0b4d0b820d0b4d0be20d0bdd0b5d0b2d0b0d0bbd0b8d0b4d0bdd0b020d0bfd0bed0b7d0b8d186d0b8d18f20d0bdd0b020d0b4d18ad181d0bad0b0d182d0b02e, 'Y', '2009-12-31 10:17:33'),
(1211, 37, 0xd0a5d0bed0b4, 'Y', '2009-12-31 10:17:33'),
(1093, 37, 0xd09fd0bed0bad0b0d0b6d0b820d0b1d0b5d0bbd0b5d0b6d0bad0b8, 'Y', '2009-12-31 10:27:49'),
(1094, 37, 0xd097d0b0d0bfd0b0d0b7d0b820d0b1d0b5d0bbd0b5d0b6d0bad0b8, 'Y', '2009-12-31 10:27:49'),
(1095, 37, 0xd0a1d0bad180d0b8d0b920d0b1d0b5d0bbd0b5d0b6d0bad0b8, 'Y', '2009-12-31 10:27:49'),
(1557, 37, 0xd091d0b5d0bbd0b5d0b6d0bad0b8, 'Y', '2009-12-31 10:26:08'),
(1785, 37, 0xd091d095d09bd095d096d09ad090, 'Y', '2009-12-31 10:26:34'),
(1394, 37, 0xd092d18ad180d0bdd0b5d182d0b520d181d0b520d0bad18ad0bc20d181d18ad0b4d18ad180d0b6d0b0d0bdd0b8d0b5d182d0be20d0bdd0b020d0a7d097d092, 'Y', '2009-12-31 10:32:06'),
(455, 37, 0xd098d0b3d180d0b0d0b920d0b820d0bfd180d0b5d0bcd0b8d0bdd0b820d0b220d181d0bbd0b5d0b4d0b2d0b0d189d0b020d0b8d0b3d180d0b0, 'Y', '2009-12-31 10:34:02'),
(456, 37, 0xd098d0b3d180d0b0d0b920d0b820d0bfd180d0b5d0bcd0b8d0bdd0b820d0bad18ad0bc20d181d182d0b0d182d183d181, 'Y', '2009-12-31 10:53:59'),
(458, 37, 0xd09fd0bbd0b5d0bdd0bdd0b8d186d0b8, 'Y', '2009-12-31 11:55:18'),
(414, 37, 0xd092d180d0b5d0bcd0b5d0b2d0b020d0bad0bed0bdd182d180d0bed0bbd0b0, 'Y', '2009-12-31 13:50:52'),
(1502, 37, 0xd092d180d0b5d0bcd0b5d0b2d0b020d0bad0bed0bdd182d180d0bed0bbd0b0, 'Y', '2009-12-31 13:50:52'),
(1092, 37, 0xd098d0b3d180d0b020d0b7d0b020d180d0b5d0b9d182d0b8d0bdd0b3, 'Y', '2009-12-31 12:03:17'),
(450, 37, 0x257320d0b7d0b020d185d0bed0b420d0b820257320d0b4d0bed0bfd18ad0bbd0bdd0b8d182d0b5d0bbd0bdd0b820d0bfd0b5d180d0b8d0bed0b4d0b0, 'Y', '2009-12-31 12:04:46'),
(453, 37, 0xd0b4d0bed0bfd18ad0bbd0bdd0b8d182d0b5d0bbd0bdd0be20d0b7d0b020d185d0bed0b4, 'Y', '2009-12-31 13:55:29'),
(1417, 37, 0xd0a7d0b5d180d0bdd0b820d0b8d0bcd0b5, 'Y', '2009-12-31 13:29:53'),
(1418, 37, 0xd0a7d0b5d180d0bdd0b820d0bfd0bed182d180d0b5d0b1d0b8d182d0b5d0bb, 'Y', '2009-12-31 13:44:49'),
(1087, 37, 0xd09ad0bed0bcd0b5d0bdd182d0b0d180d0b8, 'Y', '2009-12-31 13:45:28'),
(1088, 37, 0xd0a1d0b2d0b0d0bbd0b5d182d0b52073676620d18120d0b2d181d0b8d187d0bad0b820d0bad0bed0bcd0b5d0bdd182d0b0d180d0b8, 'Y', '2009-12-31 13:45:28'),
(303, 37, 0xd093d0bed0bbd18fd0bc20d181d18ad180d0b2d18ad18020d0b7d0b020d0b8d0b3d180d0b020d0b220d180d0b5d0b0d0bbd0bdd0be20d0b2d180d0b5d0bcd0b5, 'Y', '2009-12-31 13:53:05'),
(437, 37, 0xd09ed181d0bdd0bed0b2d0bdd0be20d0b2d180d0b5d0bcd0b5, 'Y', '2009-12-31 13:53:05'),
(443, 37, 0xd182d0b8d0bf20d0a4d0b8d188d18ad180, 'Y', '2009-12-31 13:53:05'),
(127, 37, 0xd180d0b5d0b4d0b0d0bad182d0b8d180d0b0d0b9, 'Y', '2014-03-16 19:51:47'),
(346, 37, 0xd0a1d18ad0bed0b1d189d0b5d0bdd0b8d0b5d182d0be20d0b520d0b8d0b7d0bfd180d0b0d182d0b5d0bdd0be21, 'Y', '2009-12-31 16:45:43'),
(439, 37, 0xd181, 'Y', '2009-12-31 16:45:43'),
(1234, 37, 0xd094d0b8d181d0bad183d181d0b8d0b8, 'Y', '2010-01-01 23:13:00'),
(1235, 37, 0xd09ed0b1d180d0b0d182d0bdd0be20d0bad18ad0bc20d0b4d0b8d181d0bad183d181d0b8d18fd182d0b0, 'Y', '2010-01-01 23:13:00'),
(1237, 37, 0xd0a2d18ad180d181d0b8, 'Y', '2009-12-31 16:45:43'),
(1243, 37, 0xd0bed182, 'Y', '2009-12-31 16:45:43'),
(1266, 37, 0xd09cd0bed0b6d0b520d0b4d0b020d0b3d0bbd0b5d0b4d0b0d182d0b520d0bdd0b020d182d0bed0b2d0b020d0bad0b0d182d0be20d0b5d0b4d0b8d0bd20d0b2d0b8d0b420d0b8d0b3d180d0b0d0b92dd0bfd0be2dd0b8d0bcd0b5d0b9d0bb2c20d0bfd180d0b820d0bad0bed0b5d182d0be20d181d0b520d0b8d0b7d0bfd0bed0bbd0b7d0b2d0b020d183d0b5d0b12dd0b8d0bdd182d0b5d180d184d0b5d0b9d18120d0b7d0b020d0b4d0b020d0bdd0b0d0bfd180d0b0d0b2d0b820d0b4d18ad181d0bad0b0d182d0b020d0b4d0b020d0b8d0b7d0bbd0b3d0b5d0b6d0b4d0b020d0bfd0be2dd0bfd180d0b8d18fd182d0bdd0be2e20d097d0b020d0b4d0b020d0b7d0b0d0bfd0bed187d0bdd0b5d182d0b520d0b4d0b020d0b8d0b3d180d0b0d0b5d182d0b52c20d182d180d18fd0b1d0b2d0b020d0bfd18ad180d0b2d0be20d0b4d0b020d181d0b820d0bdd0b0d0bfd180d0b0d0b2d0b8d182d0b5203c6120687265663d2272656769737465722e706870223ed180d0b5d0b3d0b8d181d182d180d0b0d186d0b8d18f3c2f613e2c20d0b0d0bad0be20d0bdd0b520d181d182d0b520d0b3d0be20d0bdd0b0d0bfd180d0b0d0b2d0b8d0bbd0b820d0b2d0b5d187d0b52e20d09fd0bed181d0bbd0b520d0bcd0bed0b6d0b5d182d0b520d0b4d0b0203c6120687265663d22656469745f70726f66696c652e706870223ed180d0b5d0b4d0b0d0bad182d0b8d180d0b0d182d0b520d0b2d0b0d188d0b8d18f20d0bfd180d0bed184d0b8d0bb3c2f613e20d0b8203c6120687265663d22656469745f62696f2e706870223ed0b2d18ad0b2d0b5d0b4d0b5d182d0b520d0bdd18fd0bad0b0d0bad0b2d0b020d0b1d0b8d0bed0b3d180d0b0d184d0b8d187d0bdd0b020d0b8d184d0bdd0bed180d0bcd0b0d186d0b8d18f3c2f613e2c20d0bed0b1d18ad180d0bdd0b5d182d0b520d0b2d0bdd0b8d0bcd0b0d0bdd0b8d0b520d0bdd0b020d0bfd0bed0bbd0b5d182d0b0d182d0b02027d0a1d0b2d0bed0b1d0bed0b4d0b5d0bd20d0b7d0b020d0b8d0b3d180d0b03f272c2027d0a0d0b5d0b9d182d0b8d0bdd0b32720d0b82027d0a0d0b0d0bdd0b3272c20d182d0b520d181d0b020d0bfd0bed0bbd0b5d0b7d0bdd0b820d0b7d0b020d0bdd0b0d0bcd0b8d180d0b0d0bdd0b5d182d0be20d0bdd0b020d0bed0bfd0bed0bdd0b5d0bdd182d0b82e20d0a1d0bbd0b5d0b420d182d0bed0b2d0b020d0bcd0bed0b6d0b5d182d0b520d0b4d0b020d180d0b0d0b7d0b3d0bbd0b5d0b4d0b0d182d0b5203c6120687265663d2275736572732e706870223ed181d0bfd0b8d181d18ad0bad18ad18220d18120d0bfd0bed182d180d0b5d0b1d0b8d182d0b5d0bbd0b83c2f613e20d0b8203c6120687265663d2270686f72756d2f696e6465782e706870223ed184d0bed180d183d0bcd0b8d182d0b53c2f613e2c20d0bad18ad0b4d0b5d182d0be20d0b4d0b020d0bdd0b0d0bcd0b5d180d0b8d182d0b520d0bfd0bed0b4d185d0bed0b4d18fd189d0b820d0bed0bfd0bed0bdd0b5d0bdd182d0b82c20d0bad0bed0b8d182d0be20d0b4d0b0203c6120687265663d226d6573736167652e7068703f6d6f64653d496e76697465223ed0bfd0bed0bad0b0d0bdd0b8d182d0b53c2f613e20d0bdd0b020d0b8d0b3d180d0b02e, 'Y', '2010-01-03 01:24:36'),
(1255, 37, 0xd0a1d0bfd0b8d181d18ad0ba20d0bdd0b020d0a4d0bed180d183d0bcd0b8d182d0b5, 'Y', '2009-12-31 17:37:00'),
(335, 37, 0xd0a1d18ad0bed0b1d189d0b5d0bdd0b8d0b520d0bad18ad0bc20d0bfd0bed0bad0b0d0bdd0b0d182d0b0, 'Y', '2009-12-31 17:38:52'),
(431, 37, 0xd0a0d0b0d0b7d0bcd0b5d18020d0bdd0b020d0b4d18ad181d0bad0b0d182d0b0, 'N', '2009-12-31 17:40:07'),
(708, 37, 0xd0a0d0b0d0b7d0bcd0b5d180d18ad18220d0bdd0b020d0b4d18ad181d0bad0b0d182d0b020d0b2d0bbd0b8d18fd0b520d0bbd0b820d0b2d18ad180d185d18320d180d0b5d0b9d182d0b8d0bdd0b3d0b03f, 'Y', '2009-12-31 17:40:07'),
(408, 37, 0xd0a0d0b0d0b2d0bdd0b020d0b8d0b3d180d0b020d18120d0bdd0b8d0b3d0b8d180d0b8, 'Y', '2009-12-31 17:42:23'),
(633, 37, 0xd09ad0b0d0bad0b2d0be20d0b520d180d0b0d0b2d0bdd0b020d0b8d0b3d180d0b020d18120d0bdd0b8d0b3d0b8d180d0b83f, 'Y', '2009-12-31 17:42:23'),
(409, 37, 0xd094d0b2d0bed0b9d0bdd0b020d0b8d0b3d180d0b0, 'Y', '2009-12-31 17:46:25'),
(688, 37, 0xd09ad0b0d0bad0b2d0be20d0b520d0b4d0b2d0bed0b9d0bdd0b020d0b8d0b3d180d0b03f, 'Y', '2009-12-31 17:46:25'),
(689, 37, 0xd09fd180d0b8203c693ed0b4d0b2d0bed0b9d0bdd0b020d0b8d0b3d180d0b03c2f693e20d0b7d0b0d0bfd0bed187d0b2d0b0d182d0b5203c693ed0b4d0b2d0b53c2f693e20d0bdd0bed0b2d0b820d0b8d0b3d180d0b820d181d180d0b5d189d18320d181d18ad189d0b8d18fd18220d0bed0bfd0bed0bdd0b5d0bdd1822e20d092d0b8d0b520d0b8d0b3d180d0b0d0b5d182d0b520d18120d091d0b5d0bbd0b820d0b220d0b5d0b4d0bdd0b0d182d0b020d0b8d0b3d180d0b020d0b820d18120d0a7d0b5d180d0bdd0b820d0b220d0b4d180d183d0b3d0b0d182d0b02e20d098d0b7d0b1d180d0b0d0bdd0b8d18fd18220d185d0b5d0bdd0b4d0b8d0bad0b0d0bf20d0b820d0bad0bed0bcd0b820d189d0b520d0b1d18ad0b4d0b0d18220d0b8d0b7d0bfd0bed0bbd0b7d0b2d0b0d0bdd0b820d0b820d0b7d0b020d0b4d0b2d0b5d182d0b520d0b8d0b3d180d0b82e20d09220d187d0b0d0bad0b0d0bbd0bdd18fd182d0b02c20d0b1d180d0bed18fd18220d0bdd0b020d185d0b5d0bdd0b4d0b8d0bad0b0d0bf20d0bad0b0d0bcd18ad0bdd0b8d182d0b520d0b520d0bfd0bed0bad0b0d0b7d0b0d0bd20d0bdd0b020d0b8d0bdd184d0be20d181d182d180d0b0d0bdd0b8d186d0b0d182d0b020d0bad18ad0bc20d0bfd180d0b5d0b4d0bbd0bed0b6d0b5d0bdd0b8d0b5d182d0be20d0b7d0b020d0b8d0b3d180d0b02e, 'N', '2010-01-01 00:55:20'),
(1083, 37, 0xd09fd0bed0b8d181d0bad0b0d0bdd0be20d0b520d181d182d0b0d0bdd0b4d0b0d180d182d0bdd0be20d180d0b0d0b7d0bfd0bed0bbd0bed0b6d0b5d0bdd0b8d0b520d0bdd0b020d185d0b5d0bdd0b4d0b8d0bad0b0d0bf20d0bad0b0d0bcd18ad0bdd0b8d182d0b52e, 'Y', '2009-12-31 17:47:50'),
(1084, 37, 0xd0a1d182d0b0d0bdd0b4d0b0d180d182d0bdd0be20d180d0b0d0b7d0bfd0bed0bbd0bed0b6d0b5d0bdd0b8d0b5, 'Y', '2009-12-31 17:47:50'),
(1503, 37, 0xd0a1d182d0b0d0bdd0b4d0b0d180d182d0bdd0be20d180d0b0d0b7d0bfd0bed0bbd0bed0b6d0b5d0bdd0b8d0b5, 'Y', '2009-12-31 17:47:50'),
(436, 37, 0xd0bcd0b5d181d0b5d186d0b0, 'Y', '2009-12-31 17:48:52'),
(1120, 37, 0xd0b4d0bed0bfd18ad0bbd0bdd0b8d182d0b5d0bbd0bdd0b820d0bfd0b5d180d0b8d0bed0b4d0b0, 'Y', '2009-12-31 17:49:49'),
(350, 37, 0xd097d0b0d0b2d18ad180d188d0b8d0bbd0b820d0b8d0b3d180d0b820d0bdd0b0202573, 'Y', '2009-12-31 17:52:00'),
(351, 37, 0xd09dd0b0d181d182d0bed18fd189d0b820d0b8d0b3d180d0b820d0bdd0b0202573, 'Y', '2009-12-31 17:52:00'),
(384, 37, 0xd09fd180d0bed187d0b5d182d0b820d184d0bed180d183d0bc, 'Y', '2009-12-31 17:52:00'),
(442, 37, 0xd0b7d0b0, 'Y', '2009-12-31 17:52:00'),
(477, 37, 0xd093d180d0b5d188d0b5d0bd20d0b1d180d0bed0b920d0bdd0b020d185d0b5d0bdd0b4d0b8d0bad0b0d0bf20d0bad0b0d0bcd18ad0bdd0b8d182d0b52e, 'Y', '2009-12-31 17:53:36'),
(328, 37, 0xd094d0be2028d0bfd0bed182d180d0b5d0b1d0b8d182d0b5d0bbd181d0bad0be20d0b8d0bcd0b529, 'Y', '2009-12-31 17:54:32'),
(336, 37, 0xd098d0b7d0bfd180d0b0d182d0b820d0bfd0bed0bad0b0d0bdd0b0d182d0b0, 'Y', '2009-12-31 17:55:43'),
(1598, 37, 0xd09ed182d185d0b2d18ad180d0bbd0b820d0bfd0bed0bad0b0d0bdd0b8d182d0b5, 'Y', '2009-12-31 17:55:43'),
(122, 37, 0xd09ed182d0b3d0bed0b2d0bed180, 'Y', '2010-01-01 00:51:35'),
(1271, 37, 0xd09fd0bed0b4d185d0bed0b4d18fd189d0b820d0b8d0b3d180d0b820d0b220d187d0b0d0bad0b0d0bbd0bdd18fd182d0b0, 'Y', '2010-01-01 01:00:44');
INSERT INTO `Translations` (`Original_ID`, `Language_ID`, `Text`, `Translated`, `Updated`) VALUES
(412, 37, 0xd09ad0bed0bcd0b5d0bdd182d0b0d180, 'Y', '2010-01-01 01:04:18'),
(1498, 37, 0xd09ad0bed0bcd0b5d0bdd182d0b0d180, 'Y', '2010-01-01 01:04:18'),
(1499, 37, 0xd0a2d0b8d0bf, 'Y', '2010-01-01 01:05:02'),
(1506, 37, 0xd0a2d0b8d0bf, 'Y', '2010-01-01 01:05:02'),
(1508, 37, 0xd0a2d0b8d0bf, 'Y', '2010-01-01 01:05:02'),
(622, 37, 0xd094d180d0b0d0bad0bed0bd20d182d183d180d0bdd0b8d180d0b8, 'Y', '2010-01-01 01:08:09'),
(625, 37, 0xd098d0bcd0b020d0bbd0b820d182d183d180d0bdd0b8d180d0b82c20d0bad0bed0b8d182d0be20d181d0b520d0bfd0bed0b4d0b4d18ad180d0b6d0b0d18220d0b4d0b8d180d0b5d0bad182d0bdd0be20d0bed18220d094d180d0b0d0bad0bed0bd3f, 'Y', '2010-01-01 01:08:09'),
(748, 37, 0xd09cd0bed0b6d0b520d0bbd0b820d090d0b720d0b4d0b020d0b7d0b0d0bfd0bed187d0bdd0b020d0b8d0bbd0b820d0bed180d0b3d0b0d0bdd0b8d0b7d0b8d180d0b0d0bc20d182d183d180d0bdd0b8d1803f, 'Y', '2010-01-01 01:08:09'),
(924, 37, 0xd09fd180d0b5d0b7d0b8d0bcd0b5, 'Y', '2010-01-01 01:08:09'),
(1421, 37, 0xd091d0b5d0bbd0b820d0b8d0bcd0b5, 'Y', '2010-01-01 01:08:41'),
(1479, 37, 0xd098d0bcd0b5, 'Y', '2010-01-01 01:08:41'),
(258, 37, 0xd09cd0bdd0bed0b3d0be20d0b8d0bdd184d0bed180d0bcd0b0d186d0b8d18f20d0b7d0b020d093d0be, 'Y', '2010-01-01 01:14:30'),
(1481, 37, 0xd0a0d0b0d0bdd0b320d0b8d0bdd1842e, 'Y', '2010-01-01 01:21:24'),
(1497, 37, 0xd098d0bdd184d0bed180d0bcd0b0d186d0b8d18f, 'Y', '2010-01-01 01:22:05'),
(1784, 37, 0xd091d0b8d0bed0b3d180d0b0d184d0b8d18f2028d181d0bad180d0b8d182d0b029, 'Y', '2010-01-01 01:21:24'),
(1024, 37, 0xd0a0d0b0d0b2d0bdd0b020d0b8d0b3d180d0b0, 'Y', '2010-01-01 01:37:11'),
(406, 37, 0xd0a1d182d0b0d0bdd0b4d0b0d180d182d0bdd0b0, 'Y', '2010-01-01 01:44:50'),
(432, 37, 0xd0a1d182d0b0d0bdd0b4d0b0d180d182d0b5d0bd20d185d0b5d0bdd0b4d0b8d0bad0b0d0bf2028d0bad0bed0bcd0b820302e3520d0bfd180d0b820d0bdd0b5d180d0b0d0b2d0bdd0b020d0b8d0b3d180d0b029, 'Y', '2010-01-01 01:41:31'),
(663, 37, 0xd09ad0b0d0bad0b2d0b020d0b520d180d0b0d0b7d0bbd0b8d0bad0b0d182d0b020d0bcd0b5d0b6d0b4d18320d181d182d0b0d0bdd0b4d0b0d180d0b5d0bd20d0b820d182d0bed187d0b5d0bd20d185d0b5d0bdd0b4d0b8d0bad0b0d0bf3f, 'Y', '2010-01-01 01:42:26'),
(407, 37, 0xd0a2d0bed187d0bdd0b0, 'Y', '2010-01-01 01:44:27'),
(433, 37, 0xd0a2d0bed187d0b5d0bd20d185d0b5d0bdd0b4d0b8d0bad0b0d0bf, 'Y', '2010-01-01 01:43:39'),
(1505, 37, 0xd0a2d0bed187d0b5d0bd20d185d0b5d0bdd0b4d0b8d0bad0b0d0bf2028d0bad0bed0bcd0b820d0bdd0b0d0b3d0bbd0b0d181d0b5d0bdd0be20d0bed18220d181d0b8d181d182d0b5d0bcd0b0d182d0b029, 'Y', '2010-01-01 01:43:39'),
(1270, 37, 0xd092d181d0b8d187d0bad0b820d187d0b0d0bad0b0d189d0b820d0b8d0b3d180d0b8, 'Y', '2010-01-01 02:03:49'),
(420, 37, 0xd09ad0bed0bbd0bad0be20d0b8d0b3d180d0b820d0b4d0b020d181d0b520d0b4d0bed0b1d0b0d0b2d18fd182, 'Y', '2010-01-01 02:05:27'),
(428, 37, 0xd0a7d0b0d181d0bed0b2d0bdd0b8d0bad18ad18220d182d0b5d187d0b520d0bfd180d0b5d0b720d183d0b8d0bad0b5d0bdd0b4d0b0, 'Y', '2010-01-01 02:06:14'),
(423, 37, 0xd09dd0b0d181d182d0bed18fd0b2d0b0d0bdd0b520d0b7d0b020d0bed0bfd0bed0bdd0b5d0bdd18220d18120d180d0b5d0b9d182d0b8d0bdd0b3, 'Y', '2010-01-01 02:07:44'),
(424, 37, 0xd090d0bad0be20d0b4d0b02c20d180d0b5d0b9d182d0b8d0bdd0b3d18ad18220d0b4d0b020d0b520d0bcd0b5d0b6d0b4d183, 'Y', '2010-01-01 02:09:05'),
(295, 37, 0xd09220d181d0bbd183d187d0b0d0b92c20d187d0b520d181d182d0b520d0b0d0bcd0b1d0b8d186d0b8d0bed0b7d0bdd0b820d0b8d181d0bad0b0d0bc2dd0b2d181d0b8d187d0bad0be2dd0b4d0b02dd0b7d0bdd0b0d0bc, 'Y', '2010-01-01 02:12:23'),
(740, 37, 0xd092d181d0b8d187d0bad0b820d0bfd0bed0bbd183d187d0b5d0bdd0b8, 'Y', '2010-01-01 02:13:44'),
(979, 37, 0xd092d181d0b8d187d0bad0b820d0b1d18ad0b3d0bed0b2d0b520d0bbd0b820d181d0b020d0bed0b1d181d18ad0b4d0b5d0bdd0b820d0b220d0a7d097d0923f, 'Y', '2010-01-01 02:13:44'),
(1412, 37, 0xd092d181d0b8d187d0bad0b8, 'Y', '2010-01-01 02:14:27'),
(1493, 37, 0xd092d181d0b8d187d0bad0b8, 'Y', '2010-01-01 02:15:04'),
(425, 37, 0xd094d0bed0b1d0b0d0b2d0b820d098d0b3d180d0b0, 'Y', '2010-01-01 02:16:53'),
(1480, 37, 0xd0a1d182d180d0b0d0bdd0b0, 'Y', '2010-01-01 02:19:21'),
(427, 37, 0xd091d180d0bed0b920d0bdd0b020d0b8d0b3d180d0b8d182d0b5, 'Y', '2010-01-01 02:24:52'),
(254, 37, 0xd098d0b3d180d0b0d182d0b020d0b520d0bfd180d0b8d0b5d182d0b021, 'Y', '2010-01-01 02:26:06'),
(430, 37, 0xd09fd180d0b8d0b5d0bcd0b5d182d0b5, 'Y', '2010-01-01 02:26:06'),
(415, 37, 0x23d098d0b3d180d0b8, 'Y', '2010-01-01 02:29:49'),
(1483, 37, 0x23d098, 'Y', '2010-01-01 02:30:32'),
(1578, 37, 0x23d098d0b3d180d0b820d181d0bfd0b5d187d0b5d0bbd0b5d0bdd0b8203a20d0b7d0b0d0b3d183d0b1d0b5d0bdd0b8, 'Y', '2010-01-01 02:29:49'),
(1579, 37, 0x23d098d0b3d180d0b820d181d0bfd0b5d187d0b5d0bbd0b5d0bdd0b8203a20d0b7d0b0d0b3d183d0b1d0b5d0bdd0b820d18120d0a0d0b5d0b7d183d0bbd182d0b0d182, 'Y', '2010-01-01 02:29:49'),
(1580, 37, 0x23d098d0b3d180d0b820d181d0bfd0b5d187d0b5d0bbd0b5d0bdd0b8203a20d0b7d0b0d0b3d183d0b1d0b5d0bdd0b820d18120d09fd180d0b5d0b4d0b0d0b2d0b0d0bdd0b5, 'Y', '2010-01-01 02:29:49'),
(1581, 37, 0x23d098d0b3d180d0b820d181d0bfd0b5d187d0b5d0bbd0b5d0bdd0b8203a20d0b7d0b0d0b3d183d0b1d0b5d0bdd0b820d0bfd0be20d092d180d0b5d0bcd0b5, 'Y', '2010-01-01 02:29:49'),
(1582, 37, 0x23d098d0b3d180d0b820d0a0d0b0d0b2d0bdd0b8, 'Y', '2010-01-01 02:29:49'),
(1583, 37, 0x23d098d0b3d180d0b820d18120d185d0b5d0bdd0b4d0b8d0bad0b0d0bf, 'Y', '2010-01-01 02:29:49'),
(416, 37, 0xd0a3d0b8d0bad0b5d0bdd0b420d0a7d0b0d181d0bed0b2d0bdd0b8d0ba, 'Y', '2010-01-01 02:33:05'),
(1447, 37, 0xd0a3d0ba2ed0a7d0b0d181d0bed0b2d0bdd0b8d0ba, 'Y', '2010-01-01 02:33:05'),
(1510, 37, 0xd09ad0bed180d0b5d181d0bfd0bed0bdd0b4d0b5d0bdd182, 'Y', '2010-01-01 02:34:32'),
(326, 37, 0xd098d0b7d0bfd180d0b0d182d0b820d0bed182d0b3d0bed0b2d0bed180, 'Y', '2010-01-01 02:36:12'),
(744, 37, 0xd09fd180d0b5d0bcd0b5d181d182d0b820d0b220d0bfd0b0d0bfd0bad0b02c20d0bad0bed0b3d0b0d182d0be20d0bed182d0b3d0bed0b2d0bed180d18f, 'Y', '2010-01-01 02:36:12'),
(1584, 37, 0xd09cd0b0d0bad181d0b8d0bcd0b0d0bbd0b5d0bd20d185d0b5d0bdd0b4d0b8d0bad0b0d0bf, 'Y', '2010-01-01 02:39:40'),
(618, 37, 0xd09dd0b0d1872e20d180d0b5d0b9d182d0b8d0bdd0b3, 'Y', '2010-01-01 02:42:07'),
(619, 37, 0xd09ad1802e20d180d0b5d0b9d182d0b8d0bdd0b3, 'Y', '2010-01-01 02:42:07'),
(620, 37, 0xd0a0d0b5d0b9d182d0b8d0bdd0b320d180d0b0d0b7d0bb2e, 'Y', '2010-01-01 02:42:07'),
(677, 37, 0xd0a0d0b0d0bdd0b3d0bed0b2d0b520d0b820d180d0b5d0b9d182d0b8d0bdd0b3d0b820d0b220d094d180d0b0d0bad0bed0bd, 'Y', '2010-01-01 02:44:16'),
(680, 37, 0xd09ad0b0d0bad0b2d0be20d0bed0b7d0bdd0b0d187d0b0d0b2d0b0d182202b20d0b8d0bbd0b8202d20d181d0bbd0b5d0b420d180d0b5d0b9d182d0b8d0bdd0b3d0b03f, 'Y', '2010-01-01 02:44:16'),
(1032, 17, 0x677265636b69, 'Y', '2013-08-20 22:13:08'),
(1285, 37, 0xd09ad0b0d0bad0b2d0be20d181d0b520d181d0bbd183d187d0b2d0b020d18120d0bcd0bed18fd18220d180d0b5d0b9d182d0b8d0bdd0b320d0bfd180d0b820d180d0b5d0bcd0b82028d0b6d0b8d0b3d0be293f, 'Y', '2010-01-01 02:44:16'),
(1419, 37, 0xd0a7d0b5d180d0bdd0b820d0bdd0b0d1872e20d180d0b5d0b9d182d0b8d0bdd0b3, 'Y', '2010-01-01 02:44:16'),
(1420, 37, 0xd0a7d0b5d180d0bdd0b820d180d0b5d0b9d182d0b8d0bdd0b3, 'Y', '2010-01-01 02:46:10'),
(1423, 37, 0xd091d0b5d0bbd0b820d0bdd0b0d1872e20d180d0b5d0b9d182d0b8d0bdd0b3, 'Y', '2010-01-01 02:46:10'),
(1424, 37, 0xd091d0b5d0bbd0b820d180d0b5d0b9d182d0b8d0bdd0b3, 'Y', '2010-01-01 02:46:10'),
(1425, 37, 0xd0a7d0b5d180d0bdd0b820d0bad1802e20d180d0b5d0b9d182d0b8d0bdd0b3, 'Y', '2010-01-01 02:46:10'),
(1426, 37, 0xd0a7d0b5d180d0bdd0b820d180d0b5d0b9d182d0b8d0bdd0b320d180d0b0d0b7d0bb2e, 'Y', '2010-01-01 02:46:10'),
(1427, 37, 0xd091d0b5d0bbd0b820d0bad1802e20d180d0b5d0b9d182d0b8d0bdd0b3, 'Y', '2010-01-01 02:46:10'),
(1428, 37, 0xd091d0b5d0bbd0b820d180d0b5d0b9d182d0b8d0bdd0b320d180d0b0d0b7d0bb2e, 'Y', '2010-01-01 02:46:10'),
(2700, 6, '', 'Y', '2015-06-18 20:29:23'),
(1612, 37, 0xd0a0d095d099d0a2d098d09dd093, 'Y', '2010-01-01 02:46:10'),
(498, 37, 0xd09ed182, 'Y', '2010-01-01 02:48:04'),
(499, 37, 0xd094d0be, 'Y', '2010-01-01 02:49:57'),
(1782, 37, 0xd091d095d09bd095d096d09ad0903a20d09fd18ad0bbd0bdd0b8d18fd18220d181d0bfd0b8d181d18ad0ba20d18120d0b8d0b3d180d0b820d0bfd0be20d0bfd0bed0b4d180d0b0d0b7d0b1d0b8d180d0b0d0bdd0b520d0b520d0bed0b3d180d0b0d0bdd0b8d187d0b5d0bd20d0b4d0b020d0bfd0bed0bad0b0d0b7d0b2d0b020d181d0b0d0bcd0be20d181d0bad0bed180d0bed188d0bdd0b820d0b8d0b3d180d0b82c20d0b4d0be20257320d0b4d0b5d0bd28d0b4d0bdd0b8292e20d0a2d0bed0b2d0b020d0bcd0bed0b6d0b520d0b4d0b020d0b1d18ad0b4d0b520d0bfd180d0bed0bcd0b5d0bdd0b5d0bdd0be20d0bed18220d184d0b8d0bbd182d18ad180d18ad18220d0b7d0b0205b25735d2e, 'Y', '2010-01-01 02:58:17'),
(1554, 37, 0xd094d0b5d0b9d181d182d0b2d0b8d18f, 'Y', '2010-01-01 03:02:03'),
(1555, 37, 0xd0a1d0b8d181d1822e20d0bad0b0d182d0b5d0b3d0bed180d0b8d0b8, 'Y', '2010-01-01 03:04:06'),
(1556, 37, 0xd09fd0bed182d1802e20d0bad0b0d182d0b5d0b3d0bed180d0b8d0b8, 'Y', '2010-01-01 03:04:06'),
(1543, 37, 0xd09ad0bed0bdd182d0b0d0bad182d18ad18220d0b520d0b7d0b0d0bfd0b0d0b7d0b5d0bd21, 'Y', '2010-01-01 03:07:22'),
(1544, 37, 0xd09ad0bed0bdd182d0b0d0bad182d18ad18220d0b520d0bfd180d0b5d0bcd0b0d185d0bdd0b0d182, 'Y', '2010-01-01 03:07:22'),
(1545, 37, 0xd0a0d0b5d0b4d0b0d0bad182d0b8d180d0b0d0b920d0bad0bed0bdd182d0b0d0bad182, 'Y', '2010-01-01 03:07:22'),
(1546, 37, 0xd09fd180d0bed0b2d0b5d180d0b820d0bad0bed0bdd182d0b0d0bad182, 'Y', '2010-01-01 03:07:22'),
(1692, 37, 0xd09ad0b0d0bad0b2d0be20d0bfd180d0b5d0b4d181d182d0b0d0b2d0bbd18fd0b2d0b0d18220d09ad0bed0bdd182d0b0d0bad182d0b8d182d0b53f, 'Y', '2010-01-01 03:07:22'),
(1558, 37, 0xd0a1d18ad0b7d0b4d0b0d0b4d0b5d0bd, 'Y', '2010-01-01 03:09:22'),
(1422, 37, 0xd091d0b5d0bbd0b820d0bfd0bed182d180d0b5d0b1d0b8d182d0b5d0bb, 'Y', '2010-01-01 03:10:03'),
(1525, 37, 0xd0bfd18ad180d0b2d0be20d0bdd0bed0b2d0b8, 'Y', '2010-01-01 14:12:24'),
(1246, 37, 0xd180d0b5d0b4d0b0d0bad182d0b8d180d0b0d0bdd0be, 'Y', '2010-01-01 03:39:32'),
(1256, 37, 0xd09cd0bed0b4d0b5d180d0b8d180d0b0d0bd, 'Y', '2010-01-01 03:40:14'),
(1441, 37, 0xd0a0d0b5d0b7d183d0bbd182d0b0d182, 'Y', '2010-01-01 03:45:26'),
(1638, 37, 0xd0a0d095d097d0a3d09bd0a2d090d0a2, 'Y', '2010-01-01 03:45:26'),
(621, 37, 0xd09fd0bed0bad0b0d0b6d0b820d0b2d181d0b8d187d0bad0b820d0a7d097d09220d0bdd0b020d0b5d0b4d0bdd0b020d181d182d180d0b0d0bdd0b8d186d0b0, 'Y', '2010-01-01 12:15:33'),
(681, 37, 0xd092d18ad182d180d0b5d188d0bdd0be20d094d180d0b0d0bad0bed0bd20d0b8d0b7d0bfd0bed0bbd0b7d0b2d0b020d180d0b5d0b9d182d0b8d0bdd0b320d181d0b8d181d182d0b5d0bcd0b02c20d0b220d0bad0bed18fd182d0be20d180d0b0d0b7d0bbd0b8d0bad0b020d0bed18220d0b5d0b4d0b8d0bd20d093d0be20d180d0b0d0bdd0b320d0b520d180d0b0d0b2d0bdd0bed181d0b8d0bbd0bdd0b020d0bdd0b020d180d0b0d0b7d0bbd0b8d0bad0b020d0bed1822031303020d182d0bed187d0bad0b82e0d0a0d0ad09fd180d0b8d0bcd0b5d1803a0d0a36206b797520282020302529203d203135303020d182d0bed187d0bad0b80d0a36206b797520282d34382529203d203134353220d182d0bed187d0bad0b80d0a37206b797520282b33302529203d203134333020d182d0bed187d0bad0b80d0a37206b797520282020302529203d203134303020d182d0bed187d0bad0b8, 'N', '2010-01-01 12:45:18'),
(565, 37, 0xd092d18ad0b2d0b5d0b4d0b5d0bdd0b8d0b520d0b220d094d180d0b0d0bad0bed0bd, 'Y', '2010-01-01 12:53:15'),
(566, 37, 0xd09ad0b0d0bad0b2d0be20d0b520d182d0bed0b2d0b020d0bcd18fd181d182d0be3f, 'Y', '2010-01-01 12:57:38'),
(585, 37, 0xd09ad0b0d0bad0b2d0be20d0b520d0b2d180d0b5d0bcd0b520d0b7d0b020d181d18ad0bd3f, 'N', '2010-01-01 12:57:38'),
(595, 37, 0xd09ad0b0d0bad0b2d0be20d181d0b020d0b2d0b0d0bad0b0d0bdd186d0b8d0bed0bdd0bdd0b8d182d0b520d0b4d0bdd0b83f, 'Y', '2010-01-01 12:57:38'),
(599, 37, 0xd09ad0b0d0bad0b2d0b020d0b2d180d0b5d0bcd0b5d0b2d0b020d0b7d0bed0bdd0b020d181d0b520d0b8d0b7d0bfd0bed0bbd0b7d0b2d0b020d0b7d0b020d0b2d180d0b5d0bcd0b5d182d0be20d0bcd0b820d0b7d0b020d181d18ad0bd3f, 'Y', '2010-01-01 12:57:38'),
(629, 37, 0xd09ad0b0d0bad0b2d0be20d0bed0b7d0bdd0b0d187d0b0d0b2d0b020d0bfd0bed182d180d0b5d0bfd0b8d182d0b5d0bbd181d0bad0b8d18fd1822022d0bfd180d0bed186d0b5d0bdd182223f, 'Y', '2010-01-01 12:57:38'),
(637, 37, 0xd09ad0b0d0bad0b2d0be20d0b520d0bed181d0bdd0bed0b2d0bdd0be20d0b2d180d0b5d0bcd0b53f, 'Y', '2010-01-01 12:57:38'),
(661, 37, 0xd09ad0b0d0bad0b2d0be20d0b520d185d0b5d0bdd0b4d0b8d0bad0b0d0bf3f, 'Y', '2010-01-01 12:57:38'),
(684, 37, 0xd09ad0b0d0bad0b2d0be20d0bed0b7d0bdd0b0d187d0b0d0b2d0b020d181d0b8d0bdd18fd182d0b020d0b7d0bed0bdd0b020d0b220d180d0b5d0b9d182d0b8d0bdd0b320d0b4d0b8d0b0d0b3d180d0b0d0bcd0b0d182d0b03f, 'Y', '2010-01-01 12:57:38'),
(694, 37, 0xd09ad0b0d0bad0b2d0be20d181d0b020d09dd0b0d0b1d0bbd18ed0b4d0b0d0b2d0b0d0bdd0b8d182d0b520d0b8d0b3d180d0b83f, 'Y', '2010-01-01 12:57:38'),
(981, 37, 0xd09ad0b0d0bad0b2d0be20d181d0b020d181d18ad0bed0b1d189d0b5d0bdd0b8d18fd182d0b020d0b220d094d180d0b0d0bad0bed0bd3f, 'N', '2010-01-01 12:57:38'),
(983, 37, 0xd09ad0b0d0bad0b2d0be20d181d0b020d0bfd0b0d0bfd0bad0b8d182d0b520d0b7d0b020d0a1d18ad0bed0b1d189d0b5d0bdd0b8d18f, 'Y', '2010-01-01 12:57:38'),
(509, 37, 0xd095d182d0b8d0bad0b5d18220d0b220d094d180d0b0d0bad0bed0bd, 'Y', '2010-01-01 12:58:31'),
(512, 37, 0xd098d0b3d180d0b820d0b220d094d180d0b0d0bad0bed0bd, 'Y', '2010-01-01 12:58:56'),
(1004, 37, 0xd09ad0b0d0ba20d0b4d0b020d181d0b520d0b4d18ad180d0b6d0b8d0bc20d0b220d181d18ad180d0b2d18ad180d0b03f, 'N', '2010-01-01 13:00:15'),
(1723, 37, 0xd09cd0bed0b3d0b020d0bbd0b820d0b4d0b020d181d0b2d0b0d0bbd18f2053474620d0bed18220d0b8d0b3d180d0b03f, 'Y', '2010-01-01 14:32:02'),
(1258, 37, 0xd090d0b2d182d0bed180, 'Y', '2010-01-01 23:10:41'),
(1536, 37, 0xd090d0b2d182d0bed1802028d0bfd0bed182d180d0b5d0b1d0b8d182d0b5d0bb29, 'Y', '2010-01-01 23:10:41'),
(383, 37, 0xd0a1d0bfd0b8d181d18ad0ba20d18120d0b4d0b8d181d0bad183d181d0b8d0b8, 'Y', '2010-01-01 23:13:00'),
(1257, 37, 0xd094d0b8d181d0bad183d181d0b8d18f, 'Y', '2010-01-01 23:13:00'),
(1527, 37, 0xd0a2d18ad180d181d0b820d0b2d18ad0b220d184d0bed180d183d0bc, 'Y', '2010-01-01 23:16:01'),
(1736, 37, 0xd091d180d0bed0b920d0bdd0b020d181d18ad0b2d0bfd0b0d0b4d0b5d0bdd0b8d18fd182d0b0, 'Y', '2010-01-01 23:16:58'),
(1528, 37, 0xd092d181d0b8d187d0bad0b8, 'Y', '2010-01-01 23:20:56'),
(1532, 37, 0xd092d181d0b8d187d0bad0b820d181d18ad0bed0b1d189d0b5d0bdd0b8d18f, 'Y', '2010-01-01 23:20:56'),
(1533, 37, 0xd09fd18ad180d0b2d0b820d181d18ad0bed0b1d189d0b5d0bdd0b8d18f, 'Y', '2010-01-01 23:20:56'),
(1535, 37, 0xd0a2d18ad180d181d0b820d0b8d0b7d180d0b0d0b7, 'Y', '2010-01-01 23:20:56'),
(1538, 37, 0xd094d0b0d182d0b0, 'Y', '2010-01-01 23:20:56'),
(1539, 37, 0xd09fd0bed0b4d180d0b5d0b4d0b1d0b0, 'Y', '2010-01-01 23:20:56'),
(1732, 37, 0xd094d0b0d182d0b020d0bdd0b020d181d18ad0b7d0b4d0b0d0b2d0b0d0bdd0b52028d0bdd0bed0b2d0b8d182d0b520d0bfd18ad180d0b2d0be29, 'Y', '2010-01-01 23:20:56'),
(1733, 37, 0xd094d0b0d182d0b020d0bdd0b020d181d18ad0b7d0b4d0b0d0b2d0b0d0bdd0b52028d181d182d0b0d180d0b8d182d0b520d0bfd18ad180d0b2d0be29, 'Y', '2010-01-01 23:20:56'),
(1734, 37, 0xd094d0b0d182d0b020d0bdd0b020d0bcd0bed0b4d0b8d184d0b8d186d0b8d180d0b0d0bdd0b52028d0bdd0bed0b2d0b8d182d0b520d0bfd18ad180d0b2d0be29, 'Y', '2010-01-01 23:20:56'),
(1735, 37, 0xd094d0b0d182d0b020d0bdd0b020d0bcd0bed0b4d0b8d184d0b8d186d0b8d180d0b0d0bdd0b52028d181d182d0b0d180d0b8d182d0b520d0bfd18ad180d0b2d0be29, 'Y', '2010-01-01 23:20:56'),
(1787, 37, 0xd0a1d0bad180d0b8d182, 'Y', '2010-01-01 23:20:56'),
(1005, 37, 0xd092d181d0b5d0bad0b820d0b8d181d0bad0b020d0b4d0b020d0bcd18320d0b520d0bfd180d0b8d18fd182d0bdd0be20d0b4d0b020d0b1d18ad0b4d0b520d182d183d0ba20d0b7d0b020d0b4d0b020d0b8d0b3d180d0b0d0b520d182d0b0d0b7d0b820d0bad180d0b0d181d0b8d0b2d0b020d0b8d0b3d180d0b020d0bdd0b0d180d0b5d187d0b5d0bdd0b020d093d0be2e20d09dd0b020d182d0bed0b7d0b820d181d0b0d0b9d18220d0b8d0bcd0b020d0bdd0b0d0b1d0bed18020d0bed18220d0bed181d0bdd0bed0b2d0bdd0b820d0bfd180d0b0d0b2d0b8d0bbd0b020d0bfd0bed0b420d184d0bed180d0bcd0b0d182d0b020d0bdd0b0203c686f6d6520706f6c6963792e7068703ed094d180d0b0d0bad0bed0bd20d093d0be20d0a1d18ad180d0b2d18ad18020d09fd0bed0bbd0b8d182d0b8d0bad0b03c2f686f6d653e2e20416c6c2075736572732063616e2065787065637420746f20626520747265617465642077697468207468652073616d652070726f7065722072657370656374207468617420706c61796572732073686f77207768696c6520706c6179696e672067616d65732e204f6666656e64696e6720616e6420696e73756c74696e6720737065656368206973206d6973706c6163656420696e207072697661746520616e64207075626c6963206d6573736167696e672069662069742773206f7665727374657070696e672061206c696e652c20616e642077696c6c206e6f7420626520746f6c6572617465642069662062726f756768742075706f6e2074686520447261676f6e2066616d696c792e0d0a0d0a4120676f6f642073756767657374696f6e20697320746865203c6120687265663d22687474703a2f2f7777772e666171732e6f72672f726663732f726663313835352e68746d6c223e4e6574697175657474652047756964656c696e65733c2f613e2e20205468652047756964656c696e6573206973206120736f6d6577686174206c6f6e6720726561642e2020596f752063616e20676574207468652073686f72742076657273696f6e20616e642067656e6572616c20696465612066726f6d2072656164696e67203c686f6d6520666f72756d2f726561642e7068703f666f72756d3d34267468726561643d3735393923373539393e207468697320666f72756d207468726561643c2f686f6d653e2e0d0a0d0a3c6e6f74653e326e64206c696e6b2069732062726f6b656e2028616674657220417567323030362d72656c656173652077697468206e657720666f72756d2d737472756374757265292c0d0a6d617962652069742773206e6f7720746865206c696e6b202874686f75676820646f6e2774206b6e6f772c206966207468617420697320746865207269676874206f6e65293a20687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f666f72756d2f726561642e7068703f666f72756d3d34267468726561643d37353939266d61726b7465726d733d6e65746971756574746523373630340d0a3c2f6e6f74653e, 'N', '2010-01-04 00:06:51'),
(1089, 37, 0xd091d180d0bed0b5d0bdd0b520d0bdd0b020d180d0b5d0b7d183d0bbd182d0b0d182d0b0, 'Y', '2010-01-05 00:23:33'),
(1396, 37, 0xd09dd0b0d182d0b8d181d0bdd0b5d182d0b52022d098d0b3d180d0b0d0b92220d0b7d0b020d0b4d0b020d0bfd0bed182d0b2d18ad180d0b4d0b8d182d0b5, 'Y', '2010-01-07 00:07:43'),
(1085, 37, 0xd09cd0bed0bbd18f20d0bcd0b0d180d0bad0b8d180d0b0d0b9d182d0b520d0bcd18ad180d182d0b2d0b8d182d0b520d0bad0b0d0bcd18ad0bdd0b820d0b820d0bdd0b0d182d0b8d181d0bdd0b5d182d0b520257327d093d0bed182d0bed0b2d0be2725732c20d0bad0bed0b3d0b0d182d0be20d0bfd180d0b8d0bad0bbd18ed187d0b8d182d0b52e, 'Y', '2010-01-07 00:17:41'),
(281, 17, 0x537472617465676961206920646566696e69636a65, 'Y', '2010-01-20 20:55:09'),
(284, 17, 0x53747564696f77616e69652074796368207a616761646e6965f1206d6fbf6520706f6c6570737a79e62054776f6ab1206772ea2e, 'Y', '2010-01-20 20:55:09'),
(286, 17, 0x50727a656b61bf2073776f6a652067727920646f206b6f6d656e746f77616e696120616279207a6f6261637a79e62067647a6965206d6f67b365b6207a61677261e6206c657069656a2e, 'Y', '2010-01-20 20:55:09'),
(287, 17, 0x506f70756c61726e65206a61706ff1736b6965207465726d696e7920646f7479637ab1636520476f, 'Y', '2010-01-20 20:55:09'),
(1399, 17, 0x5779626965727a20696c6520646f6461746b6f7765676f20637a6173752063686365737a20646f6461e62073776f6a656d752070727a656369776e696b6f7769, 'Y', '2010-01-20 21:59:13'),
(1077, 17, 0x4d61b36520706c616e737a65, 'Y', '2010-01-20 22:05:13'),
(1078, 17, 0x4475bf6520706c616e737a65207a, 'Y', '2010-01-20 22:05:13'),
(1079, 17, 0x506f7a79636a61, 'Y', '2010-01-20 22:05:13'),
(1113, 17, 0x4772792072616e6b696e676f7765, 'Y', '2010-01-20 22:05:13'),
(1131, 17, 0x50727a65707261737a616d792c20706f74727a6562756a65737a20636f206e616a6d6e69656a20256420646e692075726c6f707520bf65627920726f7a706f637ab1e62075726c6f702e, 'Y', '2010-01-20 22:05:13'),
(1210, 17, 0x45647974756a20696e666f726d61636a652062696f6772616669637a6e65, 'Y', '2010-01-20 22:06:17'),
(1214, 17, 0x416b7479776e692075bf79746b6f776e696379, 'Y', '2010-01-20 22:06:17'),
(1218, 17, 0x54b36f, 'Y', '2010-01-20 22:06:17'),
(1219, 17, 0x437a6572776f6e79, 'Y', '2010-01-20 22:06:17'),
(1220, 17, 0x5a69656c6f6e79, 'Y', '2010-01-20 22:06:17'),
(1221, 17, 0x4e6965626965736b69, 'Y', '2010-01-20 22:06:48'),
(1223, 17, 0x506f6b617a756a206e61207374726f6e69652073746174757375, 'Y', '2010-01-20 22:06:48'),
(1273, 17, 0x416279207573756eb1e620666f6c646572206d757369206f6e206279e620707573747921, 'Y', '2010-01-20 22:11:40'),
(1464, 17, 0x506f6b61bf2070727a656369776e696bf377, 'Y', '2010-01-20 22:11:40'),
(1467, 17, 0x506f6b61bf206d6f6963682070727a656369776e696bf377, 'Y', '2010-01-20 22:11:40'),
(1471, 17, 0x446f64616a206e6f7779206b6f6e74616b74, 'Y', '2010-01-20 22:11:40'),
(1476, 17, 0x45647974756a206b6f6e74616b7479, 'Y', '2010-01-20 22:11:40'),
(1477, 17, 0x446f64616a206b6f6e74616b74, 'Y', '2010-01-20 22:11:40'),
(1482, 17, 0x50727a796a6d756a65206f666572747920676965723f23686561646572, 'Y', '2010-01-20 22:11:40'),
(1485, 17, 0x5a616b6ff1637a6f6e6523686561646572, 'Y', '2010-01-20 22:11:40'),
(1486, 17, 0x57796772616e6523686561646572, 'Y', '2010-01-20 22:11:40'),
(1487, 17, 0x50727a656772616e6523686561646572, 'Y', '2010-01-20 22:11:40'),
(61, 37, 0xd0a1d18ad0b6d0b0d0bbd18fd0b2d0b0d0bc2c20d0bdd0b520d092d0b820d0b520d0bfd0bed0b7d0b2d0bed0bbd0b5d0bdd0be20d0b4d0b020d0bfd180d0b5d0b2d0b5d0b6d0b4d0b0d182d0b520d182d0bed0b7d0b820d0b5d0b7d0b8d0ba2e, 'Y', '2010-02-06 12:28:54'),
(502, 37, 0xd093d0be20d182d0b5d180d0bcd0b8d0bdd0b8, 'Y', '2010-02-06 12:43:50'),
(504, 37, 0xd093d0be20d0bfd180d0b0d0b2d0b8d0bbd0b0, 'Y', '2010-02-06 12:43:50'),
(505, 37, 0xd09cd0bed0bad183, 'Y', '2010-02-06 12:43:50'),
(507, 37, 0xd09ad0bed0bcd0b8, 'Y', '2010-02-06 12:43:50'),
(518, 37, 0xd09dd0b8d0b3d0b8d180d0b8, 'N', '2010-02-06 12:43:50'),
(525, 37, 0xd09cd0bed0b3d0b020d0bbd0b820d0b4d0b020d0bfd180d0b5d0b4d0bbd0bed0b6d0b020d0bdd0bed0b2d0b020d184d183d0bdd0bad186d0b8d18f3f, 'Y', '2010-02-06 12:43:50'),
(526, 37, 0xd094d0b02c20d180d0b0d0b7d0b1d0b8d180d0b020d181d0b52120d09cd0bed0bbd18f20d0bfd183d0b1d0bbd0b8d0bad183d0b2d0b0d0b9d182d0b520d0bfd180d0b5d0b4d0bbd0bed0b6d0b5d0bdd0b8d18fd182d0b020d181d0b820d0b2d18ad0b220d184d0bed180d183d0bcd18ad18220d0b7d0b0203c686f6d6520666f72756d2f6c6973742e7068703f666f72756d3d343ed0b4d0b8d181d0bad183d181d0b8d0b83c2f686f6d653e2e0d0a0d0ad09ed0b1d0bed0b1d189d0b5d0bdd0b8d0b520d0bdd0b020d0b2d0b5d187d0b520d0bfd180d0b5d0b4d0bbd0bed0b6d0b5d0bdd0b8d182d0b520d184d183d0bdd0bad186d0b8d0b820d0b520d0b4d0bed181d182d18ad0bfd0bdd0be20d0bed18220223c693ed094d180d0b0d0bad0bed0bd20d184d183d0bdd0bad186d0b8d18fd182d0b020d0b7d0b020d182d18ad180d181d0b5d0bdd0b520d0b2d18ad0b220d184d0bed180d183d0bcd0b8d182d0b53c2f693e222c20d0bed182203c4120485245463d22687474703a2f2f73656e736569732e786d702e6e65742f3f444753576973686c69737422205441524745543d225f626c616e6b223e2244475320d181d0bfd0b8d181d18ad0bad18ad18220d18120d0b6d0b5d0bbd0b0d0bdd0b8d18f20d0bdd0b02053656e7365692773204c696272617279223c2f413e20d0b820d0bed182203c6120687265663d22687474703a2f2f647261676f6e676f7365727665722e6376732e736f75726365666f7267652e6e65742f647261676f6e676f7365727665722f447261676f6e476f5365727665722f736372697074732f4368616e67654c6f673f766965773d6d61726b7570223e22435653204368616e67654c6f6720d184d0b0d0b9d0bbd0b02c20d0bdd0b020d181d182d180d0b0d0bdd0b8d186d0b0d182d0b020d0bdd0b020d0bfd180d0bed0b5d0bad182d0b020d094d180d0b0d0bad0bed0bd20d0b220536f75726365666f726765223c2f613e2e, 'N', '2010-02-06 12:49:43'),
(1570, 36, 0x2573206ac3a174737a6d61207374617469737a74696bc3a169, 'Y', '2015-09-19 18:26:30'),
(315, 37, 0xd09ed182d0b3d0bed0b2d0bed180d0b5d0bdd0b8, 'Y', '2010-02-28 09:45:34'),
(327, 37, 0xd09dd0bed0b2d0be20d181d18ad0bed0b1d189d0b5d0bdd0b8d0b5, 'Y', '2010-02-28 09:45:34'),
(329, 37, 0xd098d0b7d0bfd180d0b0d182d0b820d181d18ad0bed0b1d189d0b5d0bdd0b8d0b5, 'Y', '2010-02-28 09:45:34'),
(333, 37, 0xd09fd180d0b8d0b5d0bcd0b8, 'Y', '2010-02-28 09:45:34'),
(334, 37, 0xd09ed182d185d0b2d18ad180d0bbd0b8, 'Y', '2010-02-28 09:45:34'),
(445, 37, 0x494420d0bdd0b020d0b8d0b3d180d0b0d182d0b0, 'Y', '2010-02-28 09:45:34'),
(446, 37, 0xd0a6d0b2d0b5d182d0bed0b2d0b5, 'Y', '2010-02-28 09:45:34'),
(447, 37, 0xd09dd0b8d0b3d0b8d180d0b8, 'Y', '2010-02-28 09:45:34'),
(741, 37, 0xd09ed181d0bdd0bed0b2d0bdd0b0, 'Y', '2010-02-28 09:45:34'),
(742, 37, 0xd09ad0bed188d187d0b5, 'Y', '2010-02-28 09:45:34'),
(743, 37, 0xd098d0b7d0bfd180d0b0d182d0b5d0bdd0b8, 'Y', '2010-02-28 09:45:34'),
(1507, 37, 0xd09fd0b0d0bfd0bad0b0, 'Y', '2010-02-28 09:47:05'),
(1512, 37, 0xd09ed182, 'Y', '2010-02-28 09:47:45'),
(1519, 37, 0xd09ed182, 'Y', '2010-02-28 09:47:45'),
(1108, 37, 0xd09ed0b1d180d0b0d182d0bdd0be20d0bad18ad0bc20d181d18ad0bed0b1d189d0b5d0bdd0b8d0b5, 'Y', '2010-02-28 09:48:45'),
(1511, 37, 0xd094d0be, 'Y', '2010-02-28 09:48:45'),
(1518, 37, 0xd094d0be, 'Y', '2010-02-28 09:48:45'),
(1513, 37, 0xd0a2d0b5d0bcd0b0, 'Y', '2010-02-28 09:50:05'),
(1553, 16, 0xcfeeeae0e7e0f2fc20eaeeedf2e0eaf2fb, 'Y', '2012-10-14 14:44:22'),
(1515, 37, 0xd09cd0b0d180d0bad0b8d180d0b0d0b9, 'Y', '2010-02-28 09:50:53'),
(724, 37, 0xd0a3d0bdd0b8d189d0bed0b6d0b820d0bcd0b0d180d0bad0b8d180d0b0d0bdd0b8d182d0b520d181d18ad0bed0b1d189d0b5d0bdd0b8d18f, 'Y', '2010-02-28 09:53:07'),
(322, 37, 0xd0a2d0b0d0b7d0b820d0bfd0bed0bad0b0d0bdd0b020d0b7d0b0202573d0b8d0b3d180d0b0257320d0b2d0b5d187d0b520d0b520d0bfd180d0b8d0b5d182d0b02e, 'Y', '2010-02-28 09:55:15'),
(523, 37, 0xd094d0b02c20d180d0b0d0b7d0b1d0b8d180d0b020d181d0b52e20d09dd18fd0bad0bed0b920d0b8d0b3d180d0b0d187d0b820d186d0b5d0bdd18fd18220d181d18ad189d0be20d0b820d182d180d0b0d0b4d0b8d186d0b8d0bed0bdd0bdd0b8d18fd1822020d182d0b5d180d0bcd0b8d0bd203c6120687265663d22687474703a2f2f73656e736569732e786d702e6e65742f3f4f6e656761697368696d61737522207461726765743d225f626c616e6b223e6f6e656761697368696d6173753c2f613e2e, 'Y', '2010-02-28 10:17:29'),
(1506, 18, 0x5469706f, 'Y', '2010-03-04 01:01:33'),
(1499, 18, 0x5469706f, 'Y', '2010-04-02 15:47:29'),
(1731, 18, 0x46697363686572, 'Y', '2010-03-04 01:05:27'),
(1885, 18, 0x4e6173636f73746f, 'Y', '2010-04-02 17:22:31'),
(1447, 18, 0x4f726f6c6f67696f206e656c2066696e652073657474696d616e61, 'Y', '2010-04-02 15:09:10'),
(1871, 18, 0x46616920756e20646f6e617a696f6e65, 'Y', '2010-03-04 01:20:03'),
(1872, 18, 0x537570706f7274612044475320636f6e20756e6120646f6e617a696f6e65, 'Y', '2010-03-04 01:20:03'),
(1873, 18, 0x446f6e617a696f6e65, 'Y', '2010-03-04 01:20:03'),
(1875, 18, 0x446f6e617a696f6e69, 'Y', '2010-03-04 01:20:03'),
(1764, 18, 0x5269636869657374612064692072656769737472617a696f6e652073706564697461, 'Y', '2010-03-04 01:21:56'),
(1782, 18, 0x4e4f54413a204c61206c697374612064656c6c65207061727469746520636f6d706c657465207065722064656661756c7420e8206c696d69746174612061206d6f73747261726520736f6c6f20692067696f63686920726563656e746920656e74726f2025732067696f726e692e2051756573746f207075f2206573736572652063616d626961746f206e656c2066696c74726f20706572205b25735d2e, 'Y', '2010-03-04 01:25:46'),
(1409, 18, 0x4365726361206d65737361676769, 'Y', '2010-03-04 01:31:16'),
(1505, 18, 0x48616e646963617020636f72726574746f20286b6f6d69207265676f6c61746f2064616c2073697374656d6129, 'Y', '2010-03-04 01:31:16'),
(1507, 18, 0x43617274656c6c61, 'Y', '2010-04-02 15:47:29'),
(1508, 18, 0x5469706f, 'Y', '2010-04-02 17:19:54'),
(1509, 18, 0x446972657a696f6e65, 'Y', '2010-04-02 17:19:54'),
(1510, 18, 0x44657374696e61746172696f, 'Y', '2010-04-02 15:47:29'),
(1511, 18, 0x41, 'Y', '2010-04-02 15:47:29'),
(1512, 18, 0x4461, 'Y', '2010-04-02 15:47:29'),
(1513, 18, 0x4f67676574746f, 'Y', '2010-04-02 15:47:29'),
(1517, 18, '', 'Y', '2012-08-22 20:48:45'),
(1518, 18, 0x41, 'Y', '2010-04-02 17:19:54'),
(1519, 18, 0x4461, 'Y', '2010-04-02 17:19:54'),
(1585, 18, 0x4d6f7374726120736f6c6f206c27616e74657072696d612064656c206d657373616767696f, 'Y', '2010-03-04 01:31:16'),
(1586, 18, 0x5475747469, 'Y', '2010-04-02 16:56:48'),
(1587, 18, 0x5061727469746520636f7272656c617465, 'Y', '2010-04-02 16:56:48'),
(1588, 18, 0x50617274697465206e6f6e20636f7272656c617465, 'Y', '2010-04-02 16:56:48'),
(1590, 18, 0x636572636120557365726964, 'Y', '2010-04-02 16:56:48'),
(1591, 18, 0x5475747469, 'Y', '2010-04-02 17:20:43'),
(1592, 18, 0x53656c657a696f6e612063617274656c6c65, 'Y', '2010-04-02 16:56:48'),
(1594, 18, 0x4365726361206d657373616767696f, 'Y', '2010-03-04 01:31:16'),
(1595, 18, 0x53666f676c69612063617274656c6c65, 'Y', '2010-03-04 01:31:16'),
(1515, 18, 0x5365676e61, 'Y', '2010-04-02 15:47:29'),
(1516, 18, 0x4d652073746573736f, 'Y', '2010-04-02 17:19:54'),
(1560, 18, 0x43657263612063617465676f7269652064692073697374656d61, 'Y', '2010-03-04 01:41:28'),
(1561, 18, 0x43657263612063617465676f7269652064656c6c277574656e7465, 'Y', '2010-03-04 01:41:28'),
(1562, 18, 0x4c6973746120636f6e7461747469, 'Y', '2010-03-04 01:41:28'),
(1564, 18, 0x5475747465206c652070617274697465, 'Y', '2010-04-02 16:56:48'),
(1565, 18, 0x5061727469746520696e20636f72736f, 'Y', '2010-04-02 16:56:48'),
(1566, 18, 0x506172746974652066696e697465, 'Y', '2010-04-02 16:56:48'),
(1568, 18, 0x737461746973746963686520636f6d706c65746520736f6c6f20706572206c6520706172746974652066696e697465, 'Y', '2010-03-04 01:41:28'),
(1569, 18, 0x556c74696d6f20616767696f726e616d656e746f, 'Y', '2010-03-04 01:41:28'),
(1570, 18, 0x53746174697374696368652064692067696f636f2070657220696c2067696f6361746f7265202573, 'Y', '2010-03-04 01:41:28'),
(1572, 18, 0x4d6f737472616d6920636f6d65206176766572736172696f, 'Y', '2010-03-04 01:41:28'),
(1573, 18, 0x4d6f7374726120636f6d6520696c206d696f206176766572736172696f, 'Y', '2010-03-04 01:41:28'),
(1574, 18, 0x43616d6269612072756f6c6f206176766572736172696f, 'Y', '2010-03-04 01:41:28'),
(1783, 18, 0x4163636f756e7420626c6f636361746f202d204163636573736f206e656761746f, 'Y', '2010-03-04 01:41:28'),
(1784, 18, 0x496e666f726d617a696f6e692062696f677261666963686520286e6173636f73746529, 'Y', '2010-03-04 01:41:28'),
(1596, 18, 0x50726f7465676769206c65207061727469746520696e206c69737461206427617474657361, 'Y', '2010-03-04 01:55:43'),
(1886, 18, 0x4e6173636f6e6469206c65207061727469746520696e206c69737461206427617474657361, 'Y', '2010-03-04 01:55:43'),
(1299, 18, 0x5065726368e920e820696c206d696f2067696f636f206e6f6e20e82076616c757461746f3f, 'Y', '2010-03-12 18:15:17'),
(1307, 18, 0x436f6d652066616363696f20612063726561726520756e206c696e6b206120756e6120706167696e61206172626974726172696120646920447261676f6e3f, 'Y', '2010-03-12 18:15:17'),
(1311, 18, 0x496e746572666163636520616c7465726e617469766520646920447261676f6e, 'Y', '2010-03-12 18:33:19'),
(1338, 18, 0x446f766520706f73736f206d656d6f72697a7a61726520617070756e7469207072697661746920646920756e6f20646569206d6965692067696f6368693f, 'Y', '2010-03-12 18:33:19'),
(1342, 18, 0x436f6d6520706f73736f206661726520756e2067696f636f20646920696e7365676e616d656e746f3f, 'Y', '2010-03-12 18:33:19'),
(1879, 18, 0x496c2073656775656e746520636f6c6c6567616d656e746f20766920706f72746572e020612050617950616c23646f6e617465, 'Y', '2010-03-12 18:40:31'),
(1880, 18, 0x4772617a696520706572206c61207475612067656e65726f736120646f6e617a696f6e65206120737570706f72746f20646920444753202121, 'Y', '2010-03-12 18:40:31'),
(1609, 18, '', 'Y', '2012-08-22 20:48:45'),
(1610, 18, 0x544553544f, 'Y', '2010-04-02 16:56:48'),
(1612, 18, 0x475241444f, 'Y', '2010-04-02 16:56:48'),
(1619, 18, 0x6173736f6c75746f, 'Y', '2010-04-02 17:13:30'),
(1627, 18, 0x6173736f6c75746f, 'Y', '2010-04-02 16:56:48'),
(1630, 18, 0x547574746f, 'Y', '2010-04-02 17:14:13'),
(1633, 18, 0x547574746f, 'Y', '2010-04-02 16:59:51'),
(1637, 18, 0x4d6f646f206573706572746f, 'Y', '2010-04-02 16:56:48'),
(1737, 18, 0x6d696e757469, 'Y', '2010-04-02 17:13:30'),
(1371, 18, 0x5370696163656e74652c206e6f6e20726975736369616d6f20612074726f7661726520696c2067696f636f2061206375692073656920737461746f20696e76697461746f2e204c6f20686169206769e02061636365747461746f3f, 'Y', '2010-03-12 19:03:36'),
(1373, 18, 0x5370696163656e74652c20696d706f73736962696c652074726f7661726520696c2064657374696e61746172696f2064656c206d657373616767696f2e204173736963757261727369206469207574696c697a7a617265206c61207573657269642c206e6f6e20696c206e6f6d6520636f6d706c65746f2e, 'Y', '2010-03-12 19:03:36'),
(1374, 18, 0x5370696163656e74652c206c277574656e746520636f6e6e6573736f2073656d627261206573736572652063616d626961746f20647572616e7465206c276f706572617a696f6e652e, 'Y', '2010-03-12 19:03:36'),
(1375, 18, 0x5370696163656e74652c2049442064656c2067696f6361746f7265207574696c697a7a61746f206e6f6e2076616c69646f2e, 'Y', '2010-03-12 19:03:36'),
(1376, 18, 0x5370696163656e74652c2049442064656c2067696f6361746f7265207574696c697a7a61746f206e6f6e2076616c69646f20636f6d65206176766572736172696f2e, 'Y', '2010-03-12 19:03:36'),
(1377, 18, 0x5370696163656e74652c206327e820756e2070726f626c656d6120646920636f6e6669677572617a696f6e6520636f6e20756e2066696c74726f20646920726963657263612e, 'Y', '2010-03-12 19:03:36'),
(1754, 18, 0x5370696163656e74652c206e6f6e20746920e8207065726d6573736f206661726520696c206c6f67696e20636f6d65206f737069746520696e2071756573746f207365727665722e204c27696e646972697a7a6f204950206368652073746169207574696c697a7a616e646f20e820737461746f20626c6f636361746f206461676c6920616d6d696e6973747261746f72692e, 'Y', '2010-03-12 19:03:36'),
(1756, 18, 0x5370696163656e74652c206e6f6e20746920e820636f6e73656e7469746f206469207265676973747261726520756e206e756f766f206163636f756e742e204c27696e646972697a7a6f204950206368652073746169207574696c697a7a616e646f20e820737461746f20626c6f636361746f206461676c6920616d6d696e6973747261746f72692e, 'Y', '2010-03-12 19:03:36'),
(1757, 18, 0x506572207265676973747261726520756e206e756f766f206163636f756e742c206e6f6e6f7374616e746520696c20426c6f63636f2d49502c20756e206163636f756e74207574656e7465207075f2206573736572652063726561746f20646120756e20616d6d696e6973747261746f72652e, 'Y', '2010-03-12 19:03:36'),
(1758, 18, 0x536920707265676120646920696e73657269726520756e20757365722d69642070657220447261676f6e476f5365727665722065206c612074756120652d6d61696c2070657220696e766961726520692064617469206469206c6f67696e2e, 'Y', '2010-03-12 19:03:36'),
(1759, 18, 0x556e20426c6f63636f2d495020e820757361746f20736f6c6f207065722074656e657265206c6f6e74616e6920676c69207574656e746920636f6e20756e20636f6d706f7274616d656e746f20616e6f6d616c6f2e, 'Y', '2010-03-12 19:03:36'),
(1760, 18, 0x5175696e64692c20706572206661766f72652061676769756e6769207065726368e92073692076756f6c652069676e6f7261726520696c20426c6f63636f2d4950206e656c2063616d706f20436f6d6d656e74692e, 'Y', '2010-03-12 19:03:36'),
(1761, 18, 0x5175692070756f6920616e6368652061676769756e6765726520646f6d616e64652063686520706f7472657374692061766572652e, 'Y', '2010-03-12 19:03:36'),
(1762, 18, 0x547574746920692063616d7069206465766f6e6f2065737365726520666f726e69746920616c2066696e6520646920736f6464697366617265206c61207269636869657374612e, 'Y', '2010-03-12 19:03:36'),
(1763, 18, 0x486f206c6574746f20652061636365747461746f206c65203c612044475320687265663d22257322207461726765743d22646773544f53223e205265676f6c6520646920436f6e646f7474613c2f613e2e, 'Y', '2010-03-12 19:03:36'),
(1765, 18, 0x5370696163656e74652c206e6f6e20736569206175746f72697a7a61746f20616420616363656465726520612071756573746f207365727665722e20496c2074756f206163636f756e7420e820737461746f20626c6f636361746f206461676c6920616d6d696e6973747261746f72692070657220692073656775656e7469206d6f746976693a, 'Y', '2010-03-12 19:03:36'),
(1766, 18, 0x5370696163656e74652c206e6f6e20736569206175746f72697a7a61746f20616420616363656465726520612071756573746f207365727665722e20496c2074756f206163636f756e7420e820737461746f20626c6f636361746f206461676c6920616d6d696e6973747261746f72692e, 'Y', '2010-03-12 19:03:36'),
(1767, 18, 0x5370696163656e74652c206e6f6e20746920e820636f6e73656e7469746f206469206d6f6469666963617265206c61207475612062696f6772616669612e2051756573746120636172617474657269737469636120e820737461746120626c6f6363617461206461676c6920616d6d696e6973747261746f72692e, 'Y', '2010-03-12 19:03:36'),
(1768, 18, 0x5369207072656761206469206c656767657265206c6120706167696e61205265676f6c616d656e746f20646920436f6e646f74746120652073656c657a696f6e617265206c6120636173656c6c61207365207369206465736964657261206163636574746172652e, 'Y', '2010-03-12 19:03:36'),
(1769, 18, 0x5370696163656e74652c206e6f6e20746920e820636f6e73656e7469746f2064692076697375616c697a7a617265206f2073637269766572652073752071756573746f20666f72756d2e, 'Y', '2010-03-12 19:03:36'),
(1842, 18, 0x506f6c6974696361, 'Y', '2010-03-12 19:06:46'),
(1843, 18, 0x506f6c697469636120447261676f6e476f536572766572, 'Y', '2010-03-12 19:06:46'),
(1844, 18, 0x5265676f6c6520646920436f6e646f747461, 'Y', '2010-03-12 19:06:46'),
(1848, 18, 0x506f6c6974696368652064692050726976616379, 'Y', '2010-03-12 19:06:46'),
(1851, 18, 0x4461746120656666657474697661, 'Y', '2010-04-02 17:22:31'),
(1395, 18, 0x5365206861692064696d656e74696361746f206c612070617373776f726420706f737369616d6f206d616e6461726e6520756e61206e756f76612e0d0a3c62723e4c61206e756f76612070617373776f726420736172e02067656e657261746120696e206d6f646f2063617375616c652c206d6120e820706f73736962696c65206e61747572616c6d656e74652063616d62696172656c6120696e20756e207365636f6e646f206d6f6d656e746f2064616c6c6120706167696e61206469206d6f6469666963612064656c2070726f66696c6f2e0d0a3c62723e66696e6f20616c6c612073756363657373697661206d6f6469666963612c20656e7472616d6265206c652070617373776f72642c20766563636869612065206e756f766120736172616e6e6f206f70657261746976652e, 'Y', '2010-03-12 19:18:24'),
(1850, 18, 0x3c703e54752073656920726573706f6e736162696c652064656c6c652074756520617a696f6e692065206c6520696e666f726d617a696f6e692063686520686169206d6573736f2073756c207369746f206e656c6c61207475612062696f6772616669612c20666f72756d206f206e6569206d6573736167676920616420616c747269206d656d6272692e, 'Y', '2010-03-12 19:18:24'),
(1383, 18, '', 'Y', '2012-08-22 20:48:45'),
(1384, 18, 0x4e6f74652064692072696c617363696f, 'Y', '2010-03-12 19:20:57'),
(1387, 18, 0x444753204c69737461206465736964657269, 'Y', '2010-03-12 19:20:57'),
(1725, 18, 0x4c6963656e7a61, 'Y', '2010-03-12 19:20:57'),
(1346, 18, 0x486f20696d706f737461746f206c61206c696e67756120736261676c696174612065206e6f6e20706f73736f207069f92074726f76617265206c6120207374726164612070657220746f726e61726520696e64696574726f2e20436f736120706f73736f20666172653f, 'N', '2010-03-13 12:57:40'),
(1528, 18, 0x547574746f, 'Y', '2010-04-02 17:19:54'),
(1532, 18, 0x54757474692069206d65737361676769, 'Y', '2010-04-02 17:20:43'),
(1344, 18, 0x436f6d652066616363696f2061207665646572652063686920e82061747475616c6d656e7465206f6e6c696e652073756c207365727665723f, 'Y', '2010-03-13 13:05:49'),
(1350, 18, 0x506f73736f6e6f20657373657265206c6520756c74696d65204e206d6f7373652064656c6c61207061727469746120657373657265206d617263617465206f206e756d657261746520696e207175616c636865206d6f646f3f, 'Y', '2010-03-13 13:05:49'),
(1360, 18, '', 'Y', '2012-08-22 20:48:45'),
(1361, 18, 0x5265676f6c652047696170706f6e65736920646920476f20646573637269766f6e6f206c612073697475617a696f6e652064692067696f636f20646920756e20706172656767696f3a20656e7472616d626920692067696f6361746f72692068616e6e6f206c6f2073746573736f206e756d65726f2064692070756e74692e, 'Y', '2010-03-13 13:52:57'),
(63, 37, 0xd098d0b7d0b2d0b8d0bdd0b5d182d0b52c20d0bdd0b5d189d0be20d181d0b520d0bed0b1d18ad180d0bad0b020d0b4d0bed0bad0b0d182d0be20d0bed0bfd0b8d182d0b2d0b0d185d0bcd0b520d0b4d0b020d0b2d18ad0b2d0b5d0b4d0b5d0bc20d0bdd0bed0b220d0bfd180d0b5d0b2d0bed0b420d0b220d0b1d0b0d0b7d0b0d182d0b020d0b4d0b0d0bdd0bdd0b82e, 'Y', '2010-03-15 21:27:39'),
(419, 37, 0xd181d0b0d0bcd0be202573, 'Y', '2010-03-15 21:32:34'),
(421, 37, 0xd0b4d0b0d0bd, 'Y', '2010-03-15 21:32:34'),
(422, 37, 0xd0bad18e, 'Y', '2010-03-15 21:32:34'),
(429, 37, 0xd098d0b7d182d180d0b8d0b9, 'Y', '2010-03-15 21:32:34'),
(451, 37, 0xd09ad0b0d0bdd0b0d0b4d181d0bad0be, 'Y', '2010-03-15 21:32:34'),
(454, 37, 0xd09cd0bed0bbd18f2c20d0bfd0bed181d182d0b0d0b2d0b5d182d0b520d0b2d0b0d188d0b8d182d0b520d185d0b5d0bdd0b4d0b8d0bad0b0d0bf20d0bad0b0d0bcd18ad0bdd0b821, 'Y', '2010-03-15 21:32:34'),
(1397, 11, 0x476565662065787472612074696a642061616e20746567656e7374616e646572, 'Y', '2013-01-11 16:10:25'),
(1402, 37, 0xd094d0bed0b1d0b0d0b2d0b820d0b2d180d0b5d0bcd0b5, 'Y', '2010-03-15 21:32:34'),
(1413, 37, 0xd0a7, 'Y', '2010-03-15 21:32:34'),
(1414, 37, 0xd091, 'Y', '2010-03-15 21:32:34'),
(1436, 37, 0xd0a6d0b2d0b5d182d0bed0b2d0b5, 'Y', '2010-03-15 21:32:34'),
(1442, 37, 0xd09fd0bed0b1d0b5d0b4d0b03f, 'Y', '2010-03-15 21:32:34'),
(1446, 37, 0xd09fd0bed181d0bb2e20d094d0bed181d182d18ad0bf20d0bdd0b020d09ed0bfd0bed0bdd0b5d0bdd182d0b8d182d0b5, 'Y', '2014-03-16 18:43:59'),
(1086, 37, 0xd09fd0bbd0b5d0bdd0bdd0b8d186d0b8, 'Y', '2010-03-15 21:33:16'),
(1731, 37, 0xd0a4d0b8d188d18ad180, 'Y', '2010-03-15 21:33:16'),
(1885, 37, 0xd0a1d0bad180d0b8d182, 'Y', '2010-03-15 21:33:16'),
(501, 37, 0xd094d180d0b0d0bad0bed0bd20d0bfd0bed182d180d0b5d0b1d0b8d182d0b5d0bbd0b820d0b820d0bfd0bed182d180d0b5d0b1d0b8d182d0b5d0bbd181d0bad0b820d0bfd180d0bed184d0b8d0bbd0b8, 'N', '2010-03-15 21:59:29'),
(506, 37, 0xd0a1d18ad189d0be20d0bad0b0d182d0be20d182d0bed187d0bad0b02e20d095d0b4d0bdd0b020d181d0b2d0bed0b1d0bed0b4d0b020d0bdd0b020d0b4d18ad181d0bad0b0d182d0b02e, 'N', '2010-03-15 21:59:29'),
(508, 37, 0xd094d0bed0b1d0bfd18ad0bbd0bdd0b8d182d0b5d0bbd0b5d0bd20d0b1d180d0bed0b920d182d0bed187d0bad0b82028283c686f6d65206661712e7068703f726561643d74266361743d3323456e747279383ed0bcd0bed0bad1833c2f686f6d653e2920d0b4d0b0d0b4d0b5d0bdd0b820d0bdd0b020d091d0b5d0bbd0b8d182d0b52c20d0bad0bed0b8d182d0be20d0bcd0bed0b3d0b0d18220d0b4d0b020d0b1d18ad0b4d0b0d18220d0b8d0b7d0bfd0bed0bbd0b7d0b2d0b0d0bdd0b820d0bfd0be20d180d0b0d0b7d0bbd0b8d187d0bdd0b820d0bdd0b0d187d0b8d0bdd0b83a0d0a3c6f6c3e0d0a3c6c693ed094d0b020d0bad0bed0bcd0bfd0b5d0bdd181d0b8d180d0b0d18220d0bfd180d0b5d0b4d0bfd0bed0bbd0b0d0b3d0b0d0b5d0bcd0bed182d0be20d0bfd180d0b5d0b4d0b8d0bcd181d182d0b2d0be2c20d0bad0bed0b5d182d0be20d0a7d0b5d180d0bdd0b8d182d0b520d0b8d0bcd0b0d18220d0b8d0b3d180d0b0d0b5d0b9d0bad0b820d0bfd18ad180d0b2d0b8d18f20d0bad0b0d0bcd18ad0ba2e0d0a3c6c693ed094d0b020d181d0b520d0b8d0b7d0b1d0b5d0b3d0bdd0b520d180d0b5d0bcd0b820283c686f6d65200d0a6661712e7068703f726561643d74266361743d3323456e7472793234303ed0b6d0b8d0b3d0be3c2f686f6d653e2920d0bad0b0d182d0be20d180d0b5d0b7d183d0bbd182d0b0d18220d0bed18220d0b8d0b3d180d0b0d182d0b02c20d0b8d0b7d0bfd0bed0bbd0b7d0b2d0b0d0b9d0bad0b820d0bdd0b520d186d18fd0bbd0be20d187d0b8d181d0bbd0be2028d0bdd0b020d0bfd180d0b8d0bcd0b5d18020362e3520d0bad0bed0bcd0b8292e0d0a3c6c693ed094d0b020d0b4d0b5d0b9d181d182d0b2d0b020d0bad0b0d182d0be20d184d0bed180d0bcd0b020d0bdd0b020d0bad0bed0bcd0bfd0b5d0bdd181d0b0d186d0b8d18f20d0bcd0b5d0b6d0b4d18320d0b8d0b3d180d0b0d187d0b820d18120d180d0b0d0b7d0bbd0b8d187d0bdd0b020d181d0b8d0bbd0b02e0d0ad097d0b020d0b4d0bed0bfd18ad0bbd0bdd0b8d182d0b5d0bbd0bdd0b820d0bed0b1d18fd181d0bdd0b5d0bdd0b8d18f20d0bfd0bed0b3d0bbd0b5d0b4d0bdd0b5d0bdd182d0b53a203c686f6d65206661712e7068703f726561643d74266361743d33353723456e74727939383ed09ad0b0d0bad0b2d0b020d0b520d180d0b0d0b7d0bbd0b8d0bad0b0d182d0b020d0bcd0b5d0b6d0b4d18320d181d182d0b0d0bdd0b4d0b0d180d182d0bdd0b8d18fd18220d0b820d0bfd0bed0b4d185d0bed0b4d18fd18920d185d0b5d0bdd0b4d0b8d0bad0b0d0bf3f3c2f686f6d653e, 'Y', '2010-03-15 21:59:29'),
(1293, 18, 0x436f6d652066616363696f20612063726561726520756e206c696e6b206120756e6120706172746974613f, 'Y', '2010-03-25 00:18:29'),
(1385, 18, 0x5374727574747572612064656c6c6120706167696e612064656c207369746f, 'Y', '2010-03-25 00:18:29'),
(1386, 18, 0x436f6c6c657a696f6e65206c696e6b, 'Y', '2010-03-25 00:19:21'),
(1388, 18, 0x436172617474657269737469636865206520726963686965737465206465676c69207574656e7469204447532063686520736f676e616e6f206469, 'Y', '2010-03-25 00:19:21'),
(1394, 18, 0x546f726e6120616c6c27696e6469636520464151, 'Y', '2010-03-25 00:20:56'),
(1406, 18, 0x4665646572617a696f6e6520496e7465726e617a696f6e616c6520476f2028494746292e2054726f7661206c65206665646572617a696f6e692065206c65206173736f6369617a696f6e69206e656c206d6f6e646f2e, 'Y', '2010-03-25 00:20:56'),
(1407, 18, 0x556e20616c74726f2062617361746f2061207475726e692e20466f63616c697a7a61746f206e656c6c276f7267616e697a7a617a696f6e652064692067696f636f20646920746f726e65692e, 'Y', '2010-03-25 00:23:01'),
(1408, 18, 0x4b69736569646f20476f2053657276657220636f6e20696e746572666163636961204a617661, 'Y', '2010-03-25 00:23:01'),
(1462, 18, 0x416c74726520696e666f726d617a696f6e69207574656e7465, 'Y', '2010-03-25 00:31:39'),
(1463, 18, 0x4d6f73747261206772616669636f2064656c20677261646f, 'Y', '2010-03-25 00:31:39'),
(1465, 18, 0x496e76697461207574656e7465, 'Y', '2010-03-25 00:31:39'),
(1466, 18, 0x41676769756e67692f6d6f64696669636120636f6e746174746f, 'Y', '2010-03-25 00:31:39'),
(1468, 18, 0x4d6f73747261206c652073746174697374696368652064656c6c652070617274697465206469206475652067696f6361746f7269, 'Y', '2010-03-25 00:31:39'),
(1469, 18, 0x4d616e646120756e206d657373616767696f20616420756e20636f6e746174746f, 'Y', '2010-03-25 00:31:39'),
(1470, 18, 0x496e7669746120636f6e746174746f, 'Y', '2010-03-25 00:31:39'),
(1473, 18, 0x4365726361206e656c20666f72756d, 'Y', '2010-03-25 00:31:39'),
(1474, 18, 0x4e6577732c204e6f74652064692072696c617363696f, 'Y', '2010-03-25 00:31:39'),
(1525, 18, 0x7072696d612069206e756f7669, 'Y', '2010-03-25 00:31:39'),
(1526, 18, 0x74726f7661746f206e656c20666f72756d, 'Y', '2010-03-25 00:31:39'),
(1527, 18, 0x4365726361206e656c20666f72756d, 'Y', '2010-03-25 00:31:39'),
(1529, 18, 0x52696c6576616e7a612064656c207465726d696e6523, 'Y', '2010-04-02 17:19:54'),
(1533, 18, 0x5072696d6f206d657373616767696f, 'Y', '2010-04-02 17:20:43'),
(1535, 18, 0x4365726361207465726d696e69, 'Y', '2010-04-02 17:20:43'),
(1536, 18, 0x4175746f7265202855736572696429, 'Y', '2010-03-25 00:31:39'),
(1537, 18, 0x4f67676574746f, 'Y', '2010-04-02 17:20:43'),
(1538, 18, 0x44617461, 'Y', '2010-04-02 17:20:43'),
(1539, 18, 0x4f7264696e65, 'Y', '2010-04-02 17:20:43'),
(1563, 18, '', 'Y', '2012-08-22 20:48:45'),
(1611, 18, 0x736f74746f737472696e6761, 'Y', '2010-04-02 16:56:48'),
(1626, 18, '', 'Y', '2012-08-22 20:48:45'),
(1629, 18, 0x666f7273652076756f6920736365676c6965726520696e206173736f6c75746f, 'Y', '2010-04-02 17:13:34'),
(1641, 18, 0x6327e8206269736f676e6f20646920616c6d656e6f202531247320636172617474657269207175616e646f207369207574696c697a7a6120746573746f20746573746f20636f6e2077696c6463617264205b253224735d, 'Y', '2010-03-25 00:44:11'),
(1644, 18, 0x686120756e612070617274652064656c6c612064617461206e6f6e2076616c696461, 'Y', '2010-04-02 16:58:16'),
(1651, 18, 0x41747472696275746f2074616720584d4c206e6f6e2076616c69646f20616c6c6120706f73697a696f6e652023, 'Y', '2010-03-25 00:44:11'),
(1654, 18, 0x4465736372697a696f6e65, 'Y', '2010-03-25 00:44:11'),
(1660, 18, 0x436f6d6520706f73736f2063616d626961726520696c206e756d65726f20707265646566696e69746f20646920726967686520706572206c61206c697374612064656c6c6120746162656c6c613f, 'Y', '2010-03-25 00:44:11'),
(1692, 18, 0x5175616c6920736f6e6f206920636f6e74617474693f, 'Y', '2010-03-25 00:44:11'),
(1723, 18, 0x436f6d6520706f73736f20736361726963617265206c2753474620646120756e6120706172746974613f, 'Y', '2010-03-25 00:44:11'),
(1726, 18, '', 'Y', '2012-08-22 20:48:45'),
(1732, 18, 0x4461746120646920637265617a696f6e6520286e756f7669207072696d6129, 'Y', '2010-04-02 17:21:40'),
(1733, 18, 0x4461746120646920637265617a696f6e652028766563636869207072696d6129, 'Y', '2010-04-02 17:21:40'),
(1734, 18, 0x44617461206469206d6f64696669636120286e756f7669207072696d6129, 'Y', '2010-04-02 17:21:40'),
(1735, 18, 0x44617461206469206d6f6469666963612028766563636869207072696d6129, 'Y', '2010-04-02 17:21:40'),
(1736, 18, 0x4e756d65726f2064692076697375616c697a7a617a696f6e69, 'Y', '2010-04-02 17:21:40'),
(1738, 18, 0x506f73736f2066617265206d6f73736520696e736572656e646f20756e612073657175656e7a61206469206d6f73736520636f6d6520756e61206c697374613f, 'Y', '2010-03-25 00:44:11'),
(1739, 18, 0x4e6f2e2051756573746f20e820737461746f206769e020646973637573736f2c20747261206c27616c74726f206e656c20636f72736f2064656c6c612064697363757373696f6e65203c686f6d6520666f72756d2f726561642e7068703f666f72756d3d33267468726561643d31383633323e73657175656e7a61206d6f737365207375676765726974653c2f686f6d653e2e, 'Y', '2010-03-25 00:44:11'),
(1740, 18, 0x5065726368e920616c63756e69206e756f7669207574656e74692068616e6e6f20756e612076616c7574617a696f6e65206672617a696f6e6174613f, 'Y', '2010-03-25 00:44:11'),
(1741, 18, 0x536520696c206e756f766f207574656e7465206861207574696c697a7a61746f20756e612076616c7574617a696f6e6520696e697a69616c65206469207469706f20276575726f70656127206f202769677327207175616e646f20736920756e6973636f6e6f2c20706f6920696c20646973706f73697469766f20646920636f6e76657273696f6e6520646920677261646f206469207075f22070726f6475727265207175616c63686520696e636f6e677275656e7a6120646920677261646f2e, 'N', '2010-03-25 00:47:53'),
(1743, 18, 0x506f73736f20757361726520676c692048544d4c207461677320737520447261676f6e3f, 'Y', '2010-03-25 00:47:53'),
(1745, 18, 0x5175616c692074616720646920447261676f6e20706f73736f2075736172653f, 'Y', '2010-03-25 00:47:53'),
(1747, 18, 0x436f6d652066616363696f20612063726561726520756e206c696e6b20636865206170726520756e61206e756f76612066696e65737472613f, 'Y', '2010-03-25 00:47:53'),
(1772, 18, 0x4d6f7374726120726567697374726f20666f72756d, 'N', '2010-03-25 00:54:37'),
(1785, 18, '', 'Y', '2012-08-22 20:48:45'),
(1787, 18, 0x4e6173636f73746f, 'Y', '2010-04-02 17:21:40'),
(1636, 18, '', 'Y', '2012-08-22 20:48:45'),
(1881, 18, 0x436f6d6520706f73736f2063657263617265206c6520766f6369207069f920726563656e74692064656c20666f72756d3f, 'Y', '2010-03-25 01:02:28'),
(1456, 18, 0x4d6f73747261207061727469746120287365677569206c27696429, 'Y', '2010-03-25 01:09:12'),
(1457, 18, 0x53636172696361206c275347462064656c6c612070617274697461, 'Y', '2010-03-25 01:09:12'),
(1776, 18, 0x436f6e64697a696f6e6920642755736f, 'Y', '2010-03-25 01:09:12'),
(1777, 18, 0x4e6f726d6520646920636f6d706f7274616d656e746f2065205072697661637920506f6c696379, 'Y', '2010-03-25 01:09:12'),
(1779, 18, 0x456469746f726920464151, 'Y', '2010-03-25 01:09:12'),
(1780, 18, 0x4d6f64657261746f726920666f72756d, 'Y', '2010-03-25 01:09:12'),
(1781, 18, 0x4d6f64657261746f726520666f72756d, 'Y', '2010-03-25 01:09:12'),
(1853, 18, '', 'Y', '2012-08-22 20:48:45'),
(1854, 18, 0x536e617073686f742064656c20636f6469636520736f7267656e7465, 'Y', '2010-03-25 01:09:12'),
(1860, 18, 0x4c612074726164757a696f6e65206465692064617469, 'Y', '2010-03-25 01:09:12'),
(1861, 18, 0x566563636869652076657273696f6e69, 'Y', '2010-03-25 01:09:12'),
(1874, 18, 0x5465726d696e692064692073657276697a696f202d204e6f726d6520646920636f6d706f7274616d656e746f2065205072697661637920506f6c696379, 'Y', '2010-03-25 01:09:12'),
(1523, 18, 0x56616c7574617a696f6e65206973746f6772616d6d61, 'Y', '2010-03-25 01:10:08'),
(1783, 4, 0x4b6f6e746f206765737065727274202d205a7567726966662076657277656967657274, 'Y', '2010-04-02 00:30:10'),
(1784, 4, 0x42696f6772616669652028766572737465636b7429, 'Y', '2010-04-02 00:30:10'),
(1886, 4, 0x566572737465636b652057617274657a696d6d65722d5061727469656e, 'Y', '2010-04-02 00:30:10'),
(1772, 4, 0x5a6569676520466f72756d7370726f746f6b6f6c6c, 'Y', '2012-09-01 21:23:00'),
(1787, 4, 0x566572737465636b74, 'Y', '2010-04-02 00:37:04'),
(1842, 4, 0x4772756e6473e4747a65, 'Y', '2010-04-02 00:50:29'),
(1843, 4, 0x447261676f6e476f536572766572204772756e6473e4747a65, 'Y', '2010-04-02 00:50:29'),
(1844, 4, 0x56657268616c74656e73726567656c6e, 'Y', '2010-04-02 00:50:29'),
(1845, 4, 0x447261676f6e476f536572766572202844475329206269657465742065696e656e20506c61747a2c20776f20476f2d467265756e64652061757320616c6c65722057656c7420537061df20616e206775746520476f2d5061727469656e20686162656e206bf66e6e656e2e202057697220686162656e2065696e6967652065696e666163686520526567656c6e2061756667657374656c6c742c2064616d6974204447532065696e20667265756e646c69636865722c206c6562656e646967657220506c61747a20776972642e202045696e65206568657220257320696e666f726d656c6c6520457469717565747465202573206b616e6e20696e206465722046415120676566756e64656e2077657264656e2e, 'Y', '2010-04-02 00:50:29');
INSERT INTO `Translations` (`Original_ID`, `Language_ID`, `Text`, `Translated`, `Updated`) VALUES
(1846, 4, 0x3c703e57697220616b7a657074696572656e206e696368743a0d0a3c756c3e0d0a3c6c693e4469736b72696d696572656e64652c206f6666656e736976652c206f6465722076657268f6686e656e646520c475df6572756e67656e0d0a3c6c693e44726f68756e67656e206f6465722042656c6569646967756e67656e20676567656e20616e6465726520537069656c6572206f6465722041646d696e6973747261746f72656e0d0a3c6c693e57657262756e672c2077656c636865206e69636874206578706c697a697420667265696765676562656e2077757264652e0d0a3c6c693e4a65676c69636865732056657268616c74656e2c2077656c6368657320696e20536368776564656e2c206f64657220696e20496872656d20576f686e6f727420766572626f74656e206973742e0d0a3c2f756c3e, 'Y', '2010-04-02 00:50:29'),
(1848, 4, 0x446174656e73636875747a62657374696d6d756e67656e, 'Y', '2010-04-02 00:50:29'),
(1849, 4, 0x3c703e45732077657264656e206b65696e652070657273f66e6c696368656e20496e666f726d6174696f6e656e20fc62657220536965202877696520452d4d61696c20416472657373652c20495020416472657373656e206f646572204e6163687269636874656e292c2077656c6368652061756620447261676f6e476f5365727665722067657370656963686572742073696e642c20616e6420447269747465207765697465726765676562656e2c206175df6572206469652057656974657267616265207775726465206578706c697a697420766f6e2049686e656e20667265696765676562656e2c206f6465722064696520446174656e2077657264656e2066fc7220706f6c697a65696c696368652045726d6974746c756e67656e2062656ef6746967742e, 'Y', '2010-04-02 00:50:29'),
(1850, 4, 0x3c703e5369652073696e642066fc7220496872652048616e646c756e67656e2c20756e642066fc722064696520496e666f726d6174696f6e656e2c2077656c636865205369652061756620447261676f6e476f53657276657220766572f66666656e746c696368656e2c2073656c62737420766572616e74776f72746c6963682e, 'Y', '2010-04-02 00:50:29'),
(1851, 4, 0x5769726b73616d6b656974, 'Y', '2010-04-02 00:50:29'),
(1852, 4, 0x44696520447261676f6e476f536572766572204772756e6473e4747a652073696e6420626567696e6e656e64206d69742031342e2044657a656d62657220323030382067fc6c7469672e202057697220626568616c74656e20756e732064617320526563687420766f722c206469657365204772756e6473e4747a65207a7520e46e6465726e2e2020c46e646572756e67656e2077657264656e20696d203c686f6d6520666f72756d2f6c6973742e7068703f666f72756d3d313e4e6577732d466f72756d3c2f686f6d653e2062656b616e6e746765676562656e2e, 'Y', '2010-04-02 00:50:29'),
(1614, 4, 0x4c414e44, 'Y', '2013-02-28 16:14:38'),
(1871, 4, 0x5370656e64656e, 'Y', '2010-04-02 00:52:32'),
(1879, 4, 0x44657220666f6c67656e6465204c696e6b207665727765697374206175662050617950616c2e, 'Y', '2010-04-02 00:52:32'),
(1880, 4, 0x5669656c656e2044616e6b2066fc7220496872652067726fdf7afc67696765205370656e646521, 'Y', '2010-04-02 00:52:32'),
(1887, 4, 0x4c6965626520476f2d467265756e64652c0d0a0d0a3c703e73656974206e756e206265696e61686520666173742073696562656e204a616872656e20285374616e643a20323030392920777572646520447261676f6e476f53657276657220667265756e646c6963686572776569736520766f6e2053616d7572616a44617461206b6f7374656e6c6f73206765686f737465742e205769722073696e6420736568722064616e6b6261722066fc7220646572656e20556e7465727374fc747a756e673b2064696573652077617220657373656e7469656c6c2066fc722064656e204572666f6c6720766f6e204447532e205365697420426567696e6e2073746965672064696520416b7469766974e47420617566204447532062657374e46e64696720616e2c20756e6420736f206d61636874652073696368202053616d7572616a4461746120476564616e6b656e20756d20646965206461647572636820656e7473746568656e64656e204b6f7374656e2e20204175666772756e642064657220686f68656e204c6173742c2077656c63686520647572636820444753207665727572736163687420776972642c2076657277656e646574656e20776972205265736f757263656e2c207a756d204e6163687465696c20646572207a61686c656e64656e204b756e64656e20766f6e2053616d7572616a446174612e2020556e6420736f207a6f6720444753206175662065696e656e2073657061726174656e2053657276657220756d3b20576569686e61636874656e2032303037207374656c6c74656e2073696520756e732065696e656e20e46c746572656e20536572766572207a7520756e736572657220616c6c65696e6967656e2056657277656e64756e67207a75722056657266fc67756e672e, 'Y', '2010-04-02 00:58:49'),
(1877, 4, 0x556e676cfc636b6c6963686572776569736520776172206469657365204d61736368696e6520616d20352e2046656272756172203230303920616d20456e64652c20756e6420736f207375636874656e20776972206e6163682065696e6572206e6575656e204cf673756e672e20205769722065726869656c74656e2c2066fc722065696e656e2067fc6e73746967656e20507265697320766f6e20323020802070726f204d6f6e61742c20646965204df6676c6963686b656974204447532061756620646572656e206e65756572656e204861726477617265206c617566656e207a75206c617373656e2e20205769722068616c74656e20646965732066fc722065696e20736568722067726fdf7afc676967657320416e6765626f742e, 'Y', '2010-04-02 01:05:02'),
(1878, 4, 0x44616865722062697474656e207769722053696520756e732065696e65206b6c65696e652053756d6d65207a7520fc62657277656973656e2c207a2e422e2031302080206f64657220323020802c20736f646173732077697220444753206f686e6520656967656e65204b6f7374656e2062657472656962656e206bf66e6e656e2e20204b6c65696e65722042657472e467652073696e642073656c6273747665727374e46e646c696368206175636820736568722068696c6672656963682e2020556e736572205a69656c206973742065732c206175737265696368656e642047656c642066fc722064656e20426574726965622064657320536572766572732066fc7220646965206ee463687374656e2064726569204a61687265207a752073616d6d656c6e2e0d0a0d0a3c703e5669656c656e2044616e6b2c0d0a3c703e4469652041646d696e6973747261746f72656e20766f6e20444753, 'Y', '2010-04-02 01:05:02'),
(1396, 4, 0x4472fc636b656e20536965202242657374e4746967656e22207a756d20466f72747365747a656e2e, 'Y', '2010-04-02 01:08:53'),
(1782, 4, 0x416e6d65726b756e673a20446965204c6973746520646572205061727469656e20697374207374616e646172646de4df69672061756620646965205061727469656e20696e6e657268616c6220646573646572206c65747a74656e20257320546167652873292065696e676573636872e46e6b742e202044696573206b616e6e20696d2046696c746572205b25735d20616e676570617373742077657264656e2e, 'Y', '2010-04-02 01:08:53'),
(1885, 4, 0x566572737465636b74, 'Y', '2010-04-02 01:08:53'),
(1738, 4, 0x4b616e6e20696368206d656872657265205afc6765207365747a656e2c20696e64656d2069636820646965736520616c73204c697374652065696e676562653f, 'Y', '2010-04-02 01:35:07'),
(1739, 4, 0x4e65696e2e20204469657320777572646520756e74657220616e646572656d20696d203c686f6d6520666f72756d2f726561642e7068703f666f72756d3d33267468726561643d31383633323e466f72756d20756e7465722022737567676573746564206d6f76652e73657175656e6365223c2f686f6d65206469736b7574696572742e, 'Y', '2010-04-02 01:35:07'),
(1382, 18, 0x436f6d6520696e697a69617265, 'Y', '2010-04-02 17:41:43'),
(1826, 18, 0x5269636172696361, 'Y', '2010-04-02 18:03:40'),
(1883, 18, 0x436f6e6e657373696f6e6520616c2064617461626173652066616c6c6974612e206c277574656e7465206861206d6f6c7465207069f920226d61785f757365725f636f6e6e656374696f6e7322202e2e2e, 'N', '2010-04-02 18:05:38'),
(1238, 18, 0x416c7465726e6120756e206d6f64657261746f72652064656c20666f72756d, 'Y', '2010-04-02 18:07:24'),
(1845, 18, 0x447261676f6e476f53657276657220284447532920e820756e206c756f676f20646920696e636f6e74726f20646920616d6963692064656c20474f20646120747574746f20696c206d6f6e646f207065722067696f63617265206520676f6465726520646920616c63756e692062756f6e69207061727469746520646920476f2e2041626269616d6f20646566696e69746f20616c63756e65207265676f6c6520646920626173652070657220666172652064692044475320756e206c756f676f206163636f676c69656e746520652066696f72656e74652e20556e2025732067616c6174656f207069f920696e666f726d616c6520257320646920447261676f6e207075f2206573736572652074726f7661746f206e656c6c65204641512e, 'Y', '2010-04-02 18:44:52'),
(1846, 18, 0x3c703e4e6f6e2061636365747469616d6f3a203c756c3e203c6c693e446973636f727369206469736372696d696e61746f72692c206f6666656e73697669206f20616275736976692e203c6c693e204d696e61636365206f20696e73756c74692064697265747465206120616c747269206d656d627269206f20616d6d696e6973747261746f72692e203c6c693e546573746920706f726e6f67726166696369206f206c696e6b206120736974692077656220706f726e6f677261666963692e203c6c693e4c6520707562626c69636974e020636865206e6f6e20736f6e6f20737461746520737072657373616d656e746520636f6e73656e746974652e203c6c693e4f676e6920636f6d706f7274616d656e746f20e820696c6c6567616c652073696120696e205376657a696120636865206e656c2074756f207061657365206469207265736964656e7a612e3c2f756c3e, 'Y', '2010-04-02 18:44:52'),
(1847, 18, 0x3c703e5365206e6f6e206163636f6e73656e74692061206e657373756e612064656c6c65206e6f73747265207265676f6c6520646920636f6d706f7274616d656e746f2c2063692072697365727669616d6f20696c206469726974746f20646920696e7472617072656e64657265206f676e6920617a696f6e652063686520726974656e69616d6f206e65636573736172696120696e206f676e692073697475617a696f6e65207061727469636f6c6172652e2051756573746f207075f220696e636c7564657265206c612072696d6f7a696f6e6520746573746920736372697474692c206c696d6974616e646f206c2775736f2064692066756e7a696f6e692c20626c6f6363616e646f206c276163636573736f20612071756573746f207369746f206f206c612063686975737572612064656c2074756f206163636f756e742e, 'Y', '2010-04-02 18:44:52'),
(1849, 18, 0x3c703e4e6f6e20646172656d6f20696e666f726d617a696f6e6920706572736f6e616c692028696e646972697a7a6f20652d6d61696c2c206c27696e646972697a7a6f2049502065206d65737361676769292c20636865207269736965646f6e692073756c20447261676f6e476f5365727665722073656e7a6120696c2074756f207065726d6573736f206573706c696369746f2c2061206d656e6f20636865206e6f6e207369612072696368696573746f20646120666f727a6520646920706f6c697a69612e, 'Y', '2010-04-02 18:44:52'),
(1852, 18, 0x4c6120706f6c697469636120447261676f6e476f536572766572206861206566666574746f2064616c2031342d4465632d323030382e2043692072697365727669616d6f20696c206469726974746f206469206d6f64696669636172652071756573746120706f6c697469636120646920766f6c746120696e20766f6c74612e204576656e7475616c692063616d6269616d656e746920736172616e6e6f20616e6e756e6369617469206e656c20666f72756d203c686f6d65203c666f72756d2f6c6973742e7068703f666f72756d3d313e204e6f766974e0203c2f686f6d653e2e, 'Y', '2010-04-02 18:44:52'),
(1464, 5, 0x566f6972206c6573206164766572736169726573, 'Y', '2010-05-17 09:58:00'),
(1467, 5, 0x566f6972206d6573206164766572736169726573, 'Y', '2010-05-17 09:58:00'),
(1305, 18, 0x506f73736f20696e76697461726520756e20616d69636f20612067696f636172653f, 'Y', '2010-05-21 19:56:04'),
(1312, 18, 0x447261676f6e20737570706f72746120475450206f20474d503f, 'Y', '2010-05-21 19:56:04'),
(1877, 18, 0x50757274726f70706f20696c203520666562627261696f202832303039292c20717565737461206d61636368696e612063616e746176610d0a202020202020202020696c2073756f20756c74696d6f20766572736574746f2c207175696e64692061626269616d6f20617675746f206269736f676e6f20646920756e61206e756f766120736f6c757a696f6e652e20416c2066696e652064692066617263690d0a2020202020202020207574696c697a7a61726520696c206c6f726f206861726477617265207069f920726563656e74652c206369207369616d6f206163636f7264617469207065722070616761726520756e6120706963636f6c612074617373610d0a202020202020202020283230302053454b2f6d6573652c2076616c6520612064697265206369726361203230206575726f2f6d657365292e0d0a20202020202020202050656e7369616d6f206368652071756573746f2073696120616e636f726120756e206f666665727461206d6f6c746f2067656e65726f7361206461206c6f726f2e, 'Y', '2010-04-02 18:57:12'),
(1878, 18, 0x50657274616e746f2076692063686965646f20646920646f6e61726520756e6120706963636f6c6120736f6d6d612c20706572206573656d70696f203130206f203230206575726f2c0d0a202020202020202020696e206d6f646f20646120706f74657220636f6e74696e75617265206c2765736563757a696f6e652064656c207365727665722073656e7a6120636f73746920706572736f6e616c692e0d0a202020202020202020496d706f727469206d696e6f726920736f6e6f20756775616c6d656e74652061707072657a7a6174692e0d0a202020202020202020496c206e6f7374726f206f626965747469766f20e8207175656c6c6f20646920726163636f676c6965726520616262617374616e7a6120736f6c6469207065722070616761726520696c2073657276697a696f207065720d0a202020202020202020616c6d656e6f2074726520616e6e692e0d0a0d0a2020202020202020203c703e0d0a202020202020202020436f726469616c692073616c7574692c0d0a0d0a2020202020202020203c703e0d0a202020202020202020476c6920616d6d696e6973747261746f726920646920444753, 'Y', '2010-04-02 18:57:12'),
(1887, 18, 0x4361726920616d616e74692064656c20474f2c0d0a0d0a2020202020202020203c703e0d0a20202020202020202070657220717561736920736574746520616e6e692c20696c20447261676f6e20476f2053657276657220e820737461746f2067656e74696c6d656e74650d0a2020202020202020206f7370697461746f2064612053616d7572616a4461746120696e206d616e6965726120636f6d706c6574616d656e746520677261747569746f2e205369616d6f2065737472656d616d656e74650d0a20202020202020202067726174692070657220696c206c6f726f20737570706f72746f2c20696c2073657276697a696f20666f726e69746f206461206c6f726f20e820737461746f206461767665726f0d0a202020202020202020657373656e7a69616c652070657220696c20737563636573736f206469204447532e2053696e2064616c6c27696e697a696f2c2044475320686120766973746f0d0a202020202020202020756e20636f7374616e74652061756d656e746f2064692061747469766974e02065206461207175616c63686520616e6e6f2066612053616d7572616a446174610d0a202020202020202020686120617675746f20756e20706963636f6c6f2070726f626c656d612061206d6f7469766172652069206e6f7374726920636f73746920646920686f7374696e672067726174756974692e0d0a202020202020202020412063617573612064656c6c6120616c74612061747469766974e0207375204447532c2061626269616d6f20757361746f206c65207269736f7273652070657220696c2076657273616d656e746f0d0a202020202020202020636c69656e74692c20636865206861207265736f206e65636573736172696f2073706f73746172636920737520756e61206d61636368696e612073657061726174612e0d0a20202020202020202041204e6174616c6520323030372c2068616e6e6f2074726f7661746f20756e207665636368696f2073657276657220706572206e6f690d0a20202020202020202070657220696c206e6f7374726f2075736f2e, 'Y', '2010-04-02 18:57:12'),
(3162, 4, 0x5475726e69657220232573205b25735d, 'Y', '2012-09-04 00:45:57'),
(3190, 4, 0x536569746520257320766f6e202573, 'Y', '2012-09-04 00:45:57'),
(3191, 4, 0x5365697465202573, 'Y', '2012-09-04 00:45:57'),
(3189, 4, 0x4572737465205365697465, 'Y', '2012-09-04 00:46:33'),
(3192, 4, 0x4c65747a7465205365697465, 'Y', '2012-09-04 00:46:33'),
(1290, 18, 0x55736120696c2074616720447261676f6e20266c743b757365722667743b2e2051756920636920736f6e6f20616c63756e69206573656d70693a0d0a0d0a3c636f64653e3c7573657220313e3c2f636f64653e0d0a3c7573657220313e0d0a0d0a3c636f64653e3c75736572203d67756573743e3c2f636f64653e0d0a3c75736572203d67756573743e0d0a0d0a3c656d3e4e6f74613a0d0a436f6e20756e20223d2220646576652065737365726520696e73657269746f206c6f20757365722d494420646920756e207574656e74652e0d0a53656e7a6120756e20223d22646576652065737365726520696e73657269746f206c2749442d6e756d657269636f20646920756e207574656e74652e0d0a3c2f656d3e0d0a3c2f656d3e, 'Y', '2010-04-02 19:23:28'),
(1292, 18, 0x55736120696c2074616720447261676f6e20266c743b757365722667743b2e2051756920636920736f6e6f20616c63756e69206573656d70693a0d0a0d0a3c636f64653e3c73656e6420313e3c2f636f64653e0d0a3c73656e6420313e0d0a0d0a3c636f64653e3c73656e64203d67756573743e3c2f636f64653e0d0a3c73656e64203d67756573743e0d0a0d0a3c656d3e204e4221204c277574656e746520477565737420e820757361746f20736f6c6f20636f6d65206573656d70696f2e204e6f6e207369207075f2206566666574746976616d656e746520696e766961726520756e206d657373616767696f20616c206c276163636f756e742047756573742e3c2f656d3e0d0a0d0a3c656d3e4e6f74613a0d0a436f6e20756e20223d2220646576652065737365726520696e73657269746f206c6f20757365722d494420646920756e207574656e74652e0d0a53656e7a6120756e20223d22646576652065737365726520696e73657269746f206c2749442d6e756d657269636f20646920756e207574656e74652e0d0a3c2f656d3e0d0a3c2f656d3e, 'Y', '2010-04-02 19:23:28'),
(1294, 18, 0x55736120696c2074616720447261676f6e20266c743b67616d652667743b2070657220636f6c6c656761726520756e6120706172746974612e0d0a55736120696c2074616720447261676f6e20266c743b67616d652667743b2c6d6f76652667743b2070657220636f6c6c6567617265206120756e61206d6f73736120646920756e6120706172746974612e2051756920636920736f6e6f20616c63756e69206573656d70693a0d0a0d0a0d0a3c636f64653e3c67616d652031333333393e3c2f636f64653e0d0a3c67616d652031333333393e0d0a0d0a3c636f64653e3c67616d652031333333392c35303e3c2f636f64653e0d0a3c67616d652031333333392c35303e, 'N', '2010-04-02 19:23:28'),
(1308, 18, 0x55736120692074616720447261676f6e20266c743b686f6d652667743b206520266c743b2f686f6d652667743b2e2051756920636920736f6e6f20616c63756e69206573656d70693a0d0a0d0a3c636f64653e3c686f6d652075736572696e666f2e7068703e506167696e612064656c6c6520696e666f726d617a696f6e69207574656e74653c2f686f6d653e3c2f636f64653e0d0a3c686f6d652075736572696e666f2e7068703e506167696e612064656c6c6520696e666f726d617a696f6e69207574656e74653c2f686f6d653e0d0a0d0a3c636f64653e3c686f6d6520666f72756d2f696e6465782e7068703e506167696e61207072696e636970616c6520666f72756d3c2f686f6d653e3c2f636f64653e0d0a3c686f6d6520666f72756d2f696e6465782e7068703e506167696e61207072696e636970616c6520666f72756d3c2f686f6d653e0d0a0d0a3c636f64653e3c686f6d65206661712e7068703e4641513c2f686f6d653e3c2f636f64653e0d0a3c686f6d65206661712e7068703e4641513c2f686f6d653e0d0a0d0a3c636f64653e3c686f6d652070656f706c652e7068703e436f6e7472696275746f726920646920447261676f6e3c2f686f6d653e3c2f636f64653e0d0a3c686f6d652070656f706c652e7068703e436f6e7472696275746f726920646920447261676f6e3c2f686f6d653e, 'Y', '2010-04-02 19:31:39'),
(1748, 18, 0x41676769756e676920225f222028756e64657273636f72652920616c206e6f6d652064656c2074616720447261676f6e2e0d0a0d0a517565737469206c696e6b207369206170726972616e6e6f206e656c6c6120706167696e6120636f7272656e74653a0d0a3c636f64653e0d0a3c686f6d65206661712e7068703e4641513c2f686f6d653e0d0a3c7573657220313e0d0a3c73656e6420313e0d0a3c67616d652031333333393e0d0a3c2f636f64653e0d0a3c686f6d65206661712e7068703e4641513c2f686f6d653e0d0a3c7573657220313e0d0a3c73656e6420313e0d0a3c67616d652031333333393e0d0a0d0a517565737469206c696e6b207369206170726972616e6e6f20696e20756e61206e756f76612066696e65737472613a0d0a3c636f64653e0d0a3c686f6d655f206661712e7068703e4641513c2f686f6d653e0d0a3c757365725f20313e0d0a3c73656e645f20313e0d0a3c67616d655f2031333333393e0d0a3c2f636f64653e0d0a3c686f6d655f206661712e7068703e4641513c2f686f6d653e0d0a3c757365725f20313e0d0a3c73656e645f20313e0d0a3c67616d655f2031333333393e0d0a3c656d3e447261676f6e20636f6c6f7261206175746f6d61746963616d656e746520717565737469206c696e6b203c666f6e7420636f6c6f723d226f6c697665223e6f6c6976613c2f666f6e743e207065722064697374696e677565726c6920646169206e6f726d616c69206c696e6b2e3c2f656d3e, 'N', '2010-04-02 19:31:39'),
(1292, 4, 0x56657277656e64656e205369652064656e20266c69743b73656e642667743b20447261676f6e205461672e202045696e207061617220426569737069656c653a0d0a0d0a3c636f64653e3c73656e6420313e3c2f636f64653e0d0a3c73656e6420313e0d0a0d0a3c636f64653e3c73656e64203d67756573743e3c2f636f64653e0d0a3c73656e64203d67756573743e0d0a0d0a3c656d3e44657220476173742d42656e75747a6572206973742068696572206e757220616c7320426569737069656c20616e6765676562656e3b20536965206bf66e6e656e206b65696e65204e616368726963687420616e20646965736573204b6f6e746f2073656e64656e213c2f656d3e0d0a0d0a3c656d3e576963687469673a2057656e6e205369652065696e20223d222076657277656e64656e2c206d757373206465722042656e75747a65722d4e69636b20616e6765676562656e2077657264656e2c206f686e6520223d2220646965206e756d6d657269736368652042656e75747a65722d49442e3c2f656d3e, 'Y', '2010-04-02 21:39:24'),
(1308, 4, 0x56657277656e64656e205369652064696520266c743b686f6d652667743b20756e6420266c743b2f686f6d652667743b20447261676f6e20546167732e202045696e69676520426569737069656c653a0d0a0d0a3c636f64653e3c686f6d652075736572696e666f2e7068703e42656e75747a6572696e666f726d6174696f6e3c2f686f6d653e3c2f636f64653e0d0a3c686f6d652075736572696e666f2e7068703e42656e75747a6572696e666f726d6174696f6e3c2f686f6d653e0d0a0d0a3c636f64653e3c686f6d6520666f72756d2f696e6465782e7068703e466f72756d3c2f686f6d653e3c2f636f64653e0d0a3c686f6d6520666f72756d2f696e6465782e7068703e466f72756d3c2f686f6d653e0d0a0d0a3c636f64653e3c686f6d65206661712e7068703e4641513c2f686f6d653e3c2f636f64653e0d0a3c686f6d65206661712e7068703e4641513c2f686f6d653e0d0a0d0a3c636f64653e3c686f6d652070656f706c652e7068703e4d69747769726b656e64653c2f686f6d653e3c2f636f64653e0d0a3c686f6d652070656f706c652e7068703e4d69747769726b656e64653c2f686f6d653e, 'Y', '2010-04-02 21:57:10'),
(1744, 4, 0x447261676f6e2065726c61756274206469652056657277656e64756e6720766f6e2065696e6967652048544d4c20546167732e2020416e6465726520546167732073696e6420447261676f6e2d7370657a6966697363682e202045696e20546167207a656963686e65742065696e656e205465696c206465732048544d4c20546578746573206d69742065696e65722062657374696d6d74656e20456967656e736368616674206175732c206d65697374656e732076657277656e6465742064657220496e7465726e65742d42726f7773657220646965736520756d20646965203c753e4461727374656c6c756e673c2f753e2065696e657320546578746573206f6465722064657373656e203c753e56657268616c74656e3c2f753e207a7520766572e46e6465726e2e20205461677320666f6c67656e2064696573656d20466f726d61743a0d0a3c636f64653e3c7461673e546578742c2077656c6368657220766f6e20227461672220626565696e666c7573737420776972643c2f7461673e3c2f636f64653e0d0a0d0a54616773206b616e6e206d616e2062656920447261676f6e20696e20666f6c67656e64656e2042657265696368656e2065696e7365747a656e3a0d0a3c756c3e0d0a3c6c693e696e206465722042656e75747a657262696f6772616669650d0a3c6c693e696d2046656c64202253656c62737465696e73747566756e67220d0a3c6c693e696d2046656c6420224265726569742066fc72205061727469656e3f220d0a3c6c693e696e204e6163687269636874656e20616e2065696e656e20616e646572656e2042656e75747a65720d0a3c6c693e696e204e6163687269636874656e20696e6e657268616c622065696e6572205061727469650d0a3c6c693e696e2064656e20466f72656e0d0a3c6c693e696e2064656e204b6f6d6d656e746172656e207a75206f6666656e656e205061727469656e20696d2057617274657a696d6d65720d0a3c2f756c3e0d0a0d0a46616c6c73205369652048544d4c20546167732076657277656e64656e2c2061636874656e205369652062697474652061756620646965206b6f7272656b74652053796e7461782c20766f7220616c6c656d206175662064656e206b6f7272656b74656e2041627363686c7573732065696e6573206a6564656e206765f666666e6574656e204265726569636865732028616c736f206469652056657277656e64756e6720266c743b2f7461672667743b202066fc72206a65646573206765f666666e65746520266c743b7461672667743b292e, 'Y', '2010-04-02 21:57:10'),
(1826, 4, 0x4e6575206c6164656e, 'Y', '2010-04-02 22:01:09'),
(1860, 4, 0xdc6265727365747a756e6773646174656e, 'Y', '2010-04-02 22:51:16'),
(1881, 4, 0x576965206b616e6e20696368206e6163682064656e206e6575657374656e20466f72656e6265697472e467656e2073756368656e3f, 'Y', '2010-04-02 22:06:18'),
(1883, 4, 0x56657262696e64656e207a757220446174656e62616e6b206665686c67657363686c6167656e2e202042656e75747a657220686174206d65687220616c7320276d61785f757365725f636f6e6e656374696f6e7327202e2e2e, 'N', '2010-04-02 22:06:18'),
(1611, 4, 0x5465696c7a65696368656e6b65747465, 'Y', '2010-04-02 22:43:37'),
(1785, 4, 0x416e6d65726b756e67, 'Y', '2010-04-03 08:12:06'),
(1746, 18, 0x3c636f64653e51756573746f20e820756e206c696e6b2073656d6f706c6963653a203c687474703a2f2f7777772e647261676f6e676f7365727665722e6e65743e3c2f636f64653e0d0a51756573746f20e820756e206c696e6b2073656d6f706c6963653a203c687474703a2f2f7777772e647261676f6e676f7365727665722e6e65743e0d0a0d0a3c636f64653e0d0a3c636f6c6f7220236330376633323e416c74726f20636f6c6f72653c2f636f6c6f723e0d0a3c636f6c6f7220236163616361633e416c74726f20636f6c6f72653c2f636f6c6f723e0d0a3c636f6c6f7220236630333537313e416c74726f20636f6c6f72653c2f636f6c6f723e0d0a3c636f6c6f7220233030333339393e416c74726f20636f6c6f723c2f636f6c6f723e0d0a3c2f636f64653e0d0a3c636f6c6f7220236330376633323e416c74726f20636f6c6f72653c2f636f6c6f723e0d0a3c636f6c6f7220236163616361633e416c74726f20636f6c6f72653c2f636f6c6f723e0d0a3c636f6c6f7220236630333537313e416c74726f20636f6c6f72653c2f636f6c6f723e0d0a3c636f6c6f7220233030333339393e416c74726f20636f6c6f723c2f636f6c6f723e0d0a3c656d3e556e6120636f6d706c657461206465736372697a696f6e6520646920636f6469636920636f6c6f726520646973706f6e6962696c6520717569203c687474703a2f2f68746d6c2d636f6c6f722d636f6465732e636f6d2f3e3c2f656d3e0d0a0d0a3c636f64653e3c71756f74653e51756573746f20e82064656c20746573746f2071756f7461746f3c2f71756f74653e3c2f636f64653e0d0a3c71756f74653e51756573746f20e82064656c20746573746f2071756f7461746f3c2f71756f74653e0d0a0d0a3c636f64653e0d0a3c696d61676520626f6172642f622e6769663e0d0a3c696d61676520626f6172642f772e6769663e0d0a3c696d61676520626f6172642f792e6769663e0d0a3c696d6167652073656e642e6769663e0d0a3c2f636f64653e0d0a3c696d61676520626f6172642f622e6769663e0d0a3c696d61676520626f6172642f772e6769663e0d0a3c696d61676520626f6172642f792e6769663e0d0a3c696d6167652073656e642e6769663e0d0a3c656d3e496c2074616720706572206c6520696d6d6167696e6920646920447261676f6e206d6f73747261206c6520696d6d6167696e692064616c6c612063617274656c6c6120696d6d6167696e6920646920447261676f6e2e20496c20626f72646f2d7072656669737361746f206d6f7374726120756e20626f72646f2d696d6d6167696e652064692064696d656e73696f6e652031372e204c6520696d6d6167696e692072656d6f7465206e6f6e20706f73736f6e6f20657373657265206d6f7374726174652e3c2f656d3e0d0a0d0a3c656d3e54757474692069207265747461676f6e6c6920677269676920736f6e6f2067656e6572617469207573616e646f20696c200d0a266c743b636f64652667743b207461672e20496c20746573746f2073656e7a6120692074616720266c743b636f64652667743b206520266c743b2f636f64652667743b20736f6e6f206d6f7374726174692022636f6d6520e82220636f6e20756e6120656363657a7a696f6e653b20696c2020206d65646573696d6f2074616720266c743b2f636f64652667743b2e3c2f656d3e0d0a266c743b636f64652667743b4573656d70696f20646920636f64696365266c743b2f636f64652667743b20736172e0206d6f73747261746f20636f6d653a0d0a3c636f64653e4573656d70696f20646920636f646963653c2f636f64653e, 'Y', '2010-04-03 13:00:58'),
(1744, 18, 0x447261676f6e20636f6e73656e7465206c277574696c697a7a6f20646920616c63756e69207461672048544d4c2e20436920736f6e6f20616e63686520616c63756e69207461672073706563696669636920646920447261676f6e2e20556e2074616720e820756e20636f64696365207370656369616c65206e656c20746573746f20646920756e6120706167696e61207765622e20556e207461672063686520696e6469636120616c2062726f7773657220776562203c753e636f6d652076697375616c697a7a6172653c2f753e206f203c753e636f7361206661726520636f6e203c2f753e20756e612064657465726d696e6174612070617274652064656c6c6120706167696e61207765622e204e6f726d616c6d656e746520756e207461672068612071756573746f20666f726d61746f3a0d0a3c636f64653e3c7461673e546573746f20636865207669656e6520696e636c75736f206e6569207461673c2f7461673e3c2f636f64653e0d0a0d0a546167207574696c697a7a6162696c6920696e20756e6f2064656c6c652073656775656e746920706167696e6520737520447261676f6e3a0d0a3c756c3e0d0a3c6c693e6e656c6c6520696e666f726d617a696f6e692062696f67726166696368653c2f6c693e0d0a3c6c693e6e656c6c6520696e666f726d617a696f6e692062696f67726166696368652c206e656c2063616d706f2022496e666f726d617a696f6e692073756c20677261646f220d0a3c6c693e6e656c6c6520696e666f726d617a696f6e692062696f67726166696368652c206e656c2063616d706f20224469706f6e6962696c6520612067696f63617265220d0a3c6c693e696e20756e206d657373616767696f206469726574746f20616420756e20616c74726f206d656d62726f0d0a3c6c693e6e6569206d6573736167676920696e20756e61207061727469746120696e20636f72736f0d0a3c6c693e6e656c20666f72756d0d0a3c6c693e6e656c20636f6d6d656e746f20646920756e61207061727469746120696e206174746573610d0a3c2f756c3e0d0a0d0a536520736920696e636c75646f6e6f2069207461672048544d4c2065206c6520656e746974e0206f207574696c697a7a61726520692074616720447261676f6e2c207269636f72646174692064692072697370657474617265206c65207265676f6c652065206c612073696e74617373692064656c206c696e6775616767696f2048544d4c2e205072696e636970616c6d656e74652071756573746f207369676e69666963686572e020757361726520616e6368652069207461672064692063686975737572612c20646f766520e820707265766973746f2e, 'Y', '2010-04-03 14:31:32'),
(1314, 18, 0x447261676f6e20737570706f72746120696c205741503f, 'Y', '2010-05-21 19:56:04'),
(1316, 18, 0x447261676f6e20737570706f72746120692066656564205253533f, 'Y', '2010-05-21 19:56:04'),
(1318, 18, 0x447261676f6e20686120756e27696e746572666163636961206175746f6d61746963613f, 'Y', '2010-05-21 19:56:04'),
(1297, 18, 0x436f7361207369676e6966696361206c2769636f6e6120636f6e206475652070696574726520636f6c6f72617465206e656c6c61206d6961206c697374612064656c6c65207061727469746520696e20636f72736f3f, 'Y', '2010-05-21 20:00:56'),
(1301, 18, 0x436f6d6520706f73736f2061676769756e6765726520756e61206e756f76612070617274697461206e656c6c612073657a696f6e65207061727469746520696e206174746573613f, 'Y', '2010-05-21 20:00:56'),
(1326, 18, 0x436f6d6520706f73736f2063657263617265206c65204641513f, 'N', '2010-05-21 20:00:56'),
(1328, 18, 0x436f6d6520706f73736f2063657263617265206c652064697363757373696f6e693f, 'Y', '2010-05-21 20:00:56'),
(1330, 18, 0x436f7327e8206c6120726963657263612066756c6c2d746578743f, 'Y', '2010-05-21 20:03:42'),
(1332, 18, 0x436f6d652066616363696f2061206365726361726520756e207574656e7465207061727469636f6c6172653f, 'Y', '2010-05-21 20:03:42'),
(1334, 18, 0x436f6d652066616363696f20612063616d6269617265206c276f7264696e652064656c6c6520706172746974653f, 'Y', '2010-05-21 20:03:42'),
(1336, 18, 0x506f73736f206d61726361726520756e6120726967612070657220617665726520756e206d69676c696f7265206f7269656e74616d656e746f206e656c6c61207461766f6c65206772616e64693f, 'Y', '2010-05-21 20:05:42'),
(1348, 18, 0x486f2064696d656e74696361746f206c61206d69612070617373776f72642e20436f736120706f73736f20666172653f, 'Y', '2010-05-21 20:12:24'),
(1364, 18, 0x436f6d6520706f73736f2066617265206c61207269636572636120646920756e612066726173653f, 'Y', '2010-05-21 20:12:24'),
(1662, 18, 0x506f73736f206365726361726520447261676f6e3f, 'Y', '2010-05-21 20:12:24'),
(1664, 18, 0x5175616c27e8206c612073696e746173736920646920756e2066696c74726f204d41544348494e4445583f, 'Y', '2010-05-21 20:12:24'),
(1666, 18, 0x5175616c27e8206c612073696e746173736920646920756e2066696c74726f2052454c444154453f, 'Y', '2010-05-21 20:12:24'),
(1668, 18, 0x5175616c27e8206c612073696e746173736920646920756e2066696c74726f20444154413f, 'Y', '2010-05-21 20:12:24'),
(1670, 18, 0x5175616c27e8206c612073696e746173736920646920756e2066696c74726f2050554e54454747494f3f, 'Y', '2010-05-21 20:12:24'),
(1672, 18, 0x5175616c27e8206c612073696e746173736920646920756e2066696c74726f20475241444f3f, 'Y', '2010-05-21 20:12:24'),
(1674, 18, 0x5175616c27e8206c612073696e746173736920646920756e2066696c74726f20544553544f3f, 'Y', '2010-05-21 20:12:24'),
(1676, 18, 0x5175616c27e8206c612073696e746173736920646920756e2066696c74726f204e554d45524f3f, 'Y', '2010-05-21 20:12:24'),
(1678, 18, 0x436f6d6520706f73736f206365726361726520756e6120706172746974613f, 'Y', '2010-05-21 20:12:24'),
(1680, 18, 0x436f6d6520706f73736f2063657263617265206e656c6c61206d6961206c6973746120636f6e74617474693f, 'Y', '2010-05-21 20:12:24'),
(1696, 18, 0x536f6e6f20626c6f636361746f2064616c6c276163636573736f2061204447532e20436f736120706f73736f20666172653f, 'Y', '2010-05-21 20:13:36'),
(1698, 18, 0x436f6d6520706f73736f2072696d756f7665726520756e207574656e74652064616c6c61206d6961206c6973746120636f6e74617474693f, 'Y', '2010-05-21 20:13:36'),
(1700, 18, 0x506f73736f2070726f74656767657265206c65207061727469746520696e2061747465736120646120616c63756e69207574656e74693f, 'Y', '2010-05-21 20:14:36'),
(1702, 18, 0x506f73736f20726966697574617265206175746f6d61746963616d656e74652069206d6573736167676920646920616c63756e69207574656e74693f, 'Y', '2010-05-21 20:19:27'),
(1704, 18, 0x506f73736f20726966697574617265206175746f6d61746963616d656e7465206c65207061727469746520646920616c63756e69207574656e74693f, 'Y', '2010-05-21 20:19:27'),
(1742, 18, 0x436f646963692065206d61726b757020447261676f6e, 'Y', '2010-05-21 20:19:27'),
(1749, 18, 0x496e7365676e616e7469206520626f7420447261676f6e, 'N', '2010-05-21 20:19:27'),
(1750, 18, 0x436f7327e820756e20496e7365676e616e746520476f3f, 'Y', '2010-05-21 20:19:27'),
(1752, 18, 0x436f7327e820756e20576869746520526f626f743f, 'N', '2010-05-21 20:19:27'),
(1682, 18, 0x436f6d6520706f73736f206365726361726520676c69207574656e74693f, 'Y', '2010-05-21 20:23:31'),
(1684, 18, 0x436f6d6520706f73736f20636572636172652069206d696569206d657373616767693f, 'Y', '2010-05-21 20:23:31'),
(1686, 18, 0x436f6d6520706f73736f2063657263617265206c65207061727469746520696e206174746573613f, 'Y', '2010-05-21 20:23:31'),
(1690, 18, 0x436f6d6520706f73736f2061676769756e6765726520756e207574656e746520616c6c61206d6961206c6973746120636f6e74617474693f, 'Y', '2010-05-21 20:23:31'),
(66, 37, 0xd0a1d18ad0b6d0b0d0bbd18fd0b2d0b0d0bc2c20d182d0b0d0b7d0b820d181d182d180d0b0d0bdd0b8d186d0b020d0b520d181d0b0d0bcd0be20d0b7d0b020d0bfd0bed182d180d0b5d0b1d0b8d182d0b5d0bbd0b820d18120d0b0d0b4d0bcd0b8d0bdd0b8d181d182d180d0b0d182d0b8d0b2d0bdd0b820d0b7d0b0d0b4d0b0d187d0b82e, 'Y', '2010-06-21 22:04:09'),
(164, 37, 0xd0bad0bed0b920d0b4d0bed0bfd180d0b8d0bdd0b0d181d18f20d0b7d0b020d094d180d0b0d0bad0bed0bd, 'Y', '2010-06-21 22:04:09'),
(1482, 37, 0xd0a1d0b2d0bed0b1d0bed0b4d0b5d0bd20d0b7d0b020d0b8d0b3d180d0b03f, 'Y', '2010-06-21 22:10:16'),
(1484, 37, 0xd0a2d0b5d0bad183d189d0b8, 'Y', '2010-06-21 22:10:16'),
(1485, 37, 0xd09cd0b8d0bdd0b0d0bbd0b8, 'Y', '2010-06-21 22:10:16'),
(1486, 37, 0xd0a1d0bfd0b5d187d0b5d0bbd0b5d0bdd0b8, 'Y', '2010-06-21 22:10:16'),
(1487, 37, 0xd097d0b0d0b3d183d0b1d0b5d0bdd0b8, 'Y', '2010-06-21 22:10:16'),
(6140, 40, 0x506f7263656e742e20686572f3696361206ded6e696d61, 'Y', '2014-07-30 06:24:04'),
(1490, 37, 0xd09fd0bed181d0bbd0b5d0b4d0b5d0bd20d0b4d0bed181d182d18ad0bf, 'Y', '2010-06-21 22:10:16'),
(1492, 37, 0xd09dd0b0d0b1d0bbd18ed0b4d0b0d182d0b5d0bbd0b820d0bdd0b020d0b8d0b3d180d0b0202573, 'Y', '2010-06-21 22:10:16'),
(2332, 25, 0x566f74617265, 'Y', '2012-09-18 10:36:36'),
(1564, 37, 0xd092d181d0b8d187d0bad0b820d0b8d0b3d180d0b8, 'Y', '2010-06-21 22:10:16'),
(1565, 37, 0xd0a2d0b5d0bad183d189d0b820d0b8d0b3d180d0b8, 'Y', '2010-06-21 22:10:16'),
(1566, 37, 0xd09cd0b8d0bdd0b0d0bbd0b820d0b8d0b3d180d0b8, 'Y', '2010-06-21 22:10:16'),
(1597, 37, 0xd09ed182d185d0b2d18ad180d0bbd0b820d181d18ad0bed0b1d189d0b5d0bdd0b8d0b5, 'Y', '2010-06-21 22:10:16'),
(1599, 37, 0xd094d180d183d0b3d0b0d180, 'Y', '2010-06-21 22:10:16'),
(1600, 37, 0xd09fd180d0b8d18fd182d0b5d0bb, 'Y', '2010-06-21 22:10:16'),
(1601, 37, 0xd0a1d182d183d0b4d0b5d0bdd182, 'Y', '2010-06-21 22:10:16'),
(1602, 37, 0xd0a3d187d0b8d182d0b5d0bb, 'Y', '2010-06-21 22:10:16'),
(1603, 37, 0xd09fd0bed187d0b8d182d0b0d182d0b5d0bb, 'Y', '2010-06-21 22:10:16'),
(1604, 37, 0xd0a2d180d0bed0bb, 'Y', '2010-06-21 22:10:16'),
(1783, 37, 0xd090d0bad0b0d183d0bdd182d18ad18220d0b1d0bbd0bed0bad0b8d180d0b0d0bd202d20d092d185d0bed0b420d0bed182d0bad0b0d0b7d0b0d0bd, 'Y', '2010-06-21 22:10:16'),
(1886, 37, 0xd0a1d0bad180d0b8d0b920d187d0b0d0bad0b0d189d0b8d182d0b520d0b8d0b3d180d0b8, 'Y', '2010-06-21 22:10:16'),
(1402, 25, 0x4164617567c4832074696d70, 'Y', '2010-06-23 13:44:33'),
(1085, 25, 0x546520727567c4836d2073c483206d61726368657a69207069657472656c65206d6f6172746520c59f692073c48320617065c59f6920257322476174612225732063c3a26e64207465726d696e692e, 'Y', '2010-06-23 13:53:56'),
(1111, 25, 0x477261666963756c20636f74c483726969, 'Y', '2010-06-23 13:53:56'),
(1271, 25, 0x5061727469646520646573636869736520706f74726976697465, 'Y', '2010-06-26 22:10:11'),
(5437, 11, 0x446f776e6c6f616420746f656765766f6567642070617274696a2d534746, 'Y', '2016-07-27 19:38:22'),
(1433, 25, 0x436f74617265, 'Y', '2010-06-26 23:03:13'),
(1507, 25, 0x446f736172, 'Y', '2010-06-27 19:32:30'),
(1512, 25, 0x4465206c61, 'Y', '2010-06-27 19:34:29'),
(1519, 25, 0x4465206c61, 'Y', '2010-06-27 19:53:19'),
(1513, 25, 0x53756269656374, 'Y', '2010-06-27 19:54:21'),
(1515, 25, 0x4d6172636174, 'Y', '2010-06-27 19:57:17'),
(1446, 25, 0x556c74696d61206163636573617265206164766572736172, 'Y', '2012-08-17 10:34:05'),
(1490, 25, 0x556c74696d61206163636573617265, 'Y', '2010-06-29 12:18:10'),
(1419, 25, 0x436f7461726520696e69c5a369616cc483206e65677275, 'Y', '2010-06-29 12:22:11'),
(1423, 25, 0x436f7461726520696e69c5a369616cc48320616c62, 'Y', '2010-06-29 12:22:11'),
(2721, 6, 0x49736c61732056ed7267656e6573202845737461646f7320556e69646f7329, 'Y', '2015-06-18 20:31:16'),
(1447, 25, 0x43656173205765656b656e64, 'Y', '2010-06-29 12:25:01'),
(1083, 25, 0x4120666f7374206365727574c483206f2061c59f657a617265207374616e6461726420612070696573656c6f722068616e64696361702e, 'Y', '2010-06-29 12:45:11'),
(1089, 25, 0x53746162696c6972652073636f72, 'Y', '2010-06-29 12:45:11'),
(1275, 25, 0x7a696c65, 'Y', '2010-06-29 12:48:01'),
(1623, 25, 0x7a696c65, 'Y', '2010-06-29 12:48:29'),
(1620, 25, 0x616e69, 'Y', '2010-06-29 12:49:46'),
(1621, 25, 0x6c756e69, 'Y', '2010-06-29 12:49:46'),
(1622, 25, 0x73c4837074c4836dc3a26e69, 'Y', '2010-06-29 12:49:46'),
(1624, 25, 0x6f7265, 'Y', '2010-06-29 12:49:46'),
(1737, 25, 0x6d696e757465, 'Y', '2010-06-29 12:49:46'),
(1630, 25, 0x4f726963617265, 'Y', '2010-06-29 12:52:40'),
(1631, 25, 0x4461, 'Y', '2010-06-29 12:52:40'),
(1632, 25, 0x4e75, 'Y', '2010-06-29 12:52:40'),
(1633, 25, 0x4f726963617265, 'Y', '2010-06-29 12:54:23'),
(1634, 25, 0x4461, 'Y', '2010-06-29 12:54:23'),
(1635, 25, 0x4e75, 'Y', '2010-06-29 12:54:23'),
(1412, 25, 0x4f726963617265, 'Y', '2010-06-29 12:59:11'),
(1413, 25, 0x4e, 'Y', '2010-06-29 12:59:11'),
(1414, 25, 0x41, 'Y', '2010-06-29 12:59:11'),
(1436, 25, 0x43756c6f617265, 'Y', '2010-06-29 13:28:56'),
(1435, 25, 0x43756c6f617265, 'Y', '2010-06-29 13:29:24'),
(1481, 25, 0x496e666f726d61c5a3696920636f74617265, 'Y', '2010-06-29 19:45:47'),
(1482, 25, 0x446973706f6e6962696c2070656e74727520706172746964653f, 'Y', '2010-06-29 19:46:31'),
(1489, 25, 0x41637469766974617465, 'Y', '2010-06-29 19:48:45'),
(1478, 25, 0x416374697669, 'Y', '2010-06-29 19:49:12'),
(1391, 25, 0x4e756dc48372206d6178696d2064652072c3a26e647572692070656e74727520746162656c65, 'Y', '2010-06-30 16:09:59'),
(1392, 25, 0x6f2076616c6f617265206d6169206d6963c48320616a7574c48320736572766572756c202876657a6920c59f692046415129, 'Y', '2010-06-30 16:12:17'),
(1073, 25, 0x4e756d65726f74617265206d7574c4837269, 'Y', '2010-06-30 16:14:22'),
(1074, 25, 0x4375206e756d6572652073756220313030, 'Y', '2010-06-30 16:18:19'),
(1467, 25, 0x41647665727361726969206d6569, 'Y', '2010-07-02 11:49:40'),
(1113, 25, 0x5061727469646520636f74617465, 'Y', '2010-07-02 11:50:41'),
(1442, 25, 0x43c3a2c59f7469676174c4833f, 'Y', '2010-07-02 11:53:52'),
(1425, 25, 0x436f746172652066696e616cc483206e65677275, 'Y', '2010-07-02 11:59:14'),
(1427, 25, 0x436f746172652066696e616cc48320616c62, 'Y', '2010-07-02 11:59:14'),
(2724, 6, 0x496d706572696f204b6c696e676f6e, 'Y', '2015-06-18 20:29:23'),
(1270, 25, 0x546f61746520706172746964656c65206465736368697365, 'Y', '2010-07-02 13:03:14'),
(1503, 25, 0x41c59f657a617265207374616e64617264, 'Y', '2010-07-02 13:35:58'),
(1502, 25, 0x54696d70206465206a6f63, 'Y', '2010-07-02 13:40:03'),
(1483, 25, 0x4e722e2064652070617274696465, 'Y', '2010-07-02 13:41:53'),
(1067, 25, 0x4c696d6261206d617465726ec483, 'Y', '2010-07-02 16:52:28'),
(1068, 25, 0x4c696d62692063756e6f7363757465, 'Y', '2010-07-02 17:04:46'),
(1210, 25, 0x4564697461726520696e666f726d61c5a369692062696f67726166696365, 'Y', '2010-07-02 17:05:51'),
(1464, 25, 0x416476657273617269, 'Y', '2010-07-02 17:07:24'),
(1568, 25, 0x7374617469737469636920636f6d706c65746520646f61722070656e74727520706172746964656c65207465726d696e617465, 'Y', '2010-07-06 19:04:52'),
(1566, 25, 0x50617274696465207465726d696e617465, 'Y', '2010-07-06 19:05:40'),
(1565, 25, 0x5061727469646520c3ae6e2064657366c483c59f7572617265, 'Y', '2010-07-06 19:06:14'),
(1564, 25, 0x546f61746520706172746964656c65, 'Y', '2010-07-06 19:07:13'),
(1569, 25, 0x556c74696d61206d6f6469666963617265, 'Y', '2010-07-06 19:07:38'),
(1486, 25, 0x43c3a2c59f746967617465, 'Y', '2010-07-07 13:51:04'),
(1487, 25, 0x5069657264757465, 'Y', '2010-07-07 15:36:29'),
(1077, 25, 0x5461626cc483206465206a6f63206d6963c483, 'Y', '2010-07-15 12:55:47'),
(1078, 25, 0x5461626cc483206465206a6f63206d6172652c206375206c6174757261206d696e696d, 'Y', '2010-07-15 12:55:12'),
(1079, 25, 0x506f7a69c5a36965, 'Y', '2010-07-15 12:56:35'),
(1069, 25, 0x4465646573756274, 'Y', '2010-07-15 12:59:46'),
(1245, 25, 0x417363756e7365, 'Y', '2010-07-15 13:00:47'),
(1080, 25, 0xc38e6ec4836cc5a3696d65, 'Y', '2010-07-15 13:02:55'),
(1081, 25, 0x4cc483c5a3696d65, 'Y', '2010-07-15 13:06:45'),
(1393, 25, 0x536368696d62c48320617370656374756c20646f61722070656e7472752062726f777365722d756c20637572656e742e, 'Y', '2010-07-15 13:09:44'),
(1417, 25, 0x4e756d65206e65677275, 'Y', '2010-07-15 13:31:35'),
(1421, 25, 0x4e756d6520616c62, 'Y', '2010-07-15 13:31:50'),
(1420, 25, 0x436f74617265206e65677275, 'Y', '2010-07-15 13:33:37'),
(1424, 25, 0x436f7461726520616c62, 'Y', '2010-07-15 13:33:53'),
(1418, 25, 0x436f6e74206e65677275, 'Y', '2010-07-15 13:35:08'),
(1422, 25, 0x436f6e7420616c62, 'Y', '2010-07-15 13:35:08'),
(1782, 25, 0x4154454ec89a49453a20496d706c69636974206c697374612074757475726f7220706172746964656c6f7220657374652072657374726963c5a3696f6e6174c4832061737466656c20c3ae6e63c3a27420636f6ec5a3696e6520646f617220706172746964656c652064696e20756c74696d656c65202573207a69286c65292e204163657374206c7563727520706f61746520666920736368696d62617420637520616a75746f72756c2066696c7472756c75692070656e747275205b25735d, 'Y', '2010-07-15 14:46:05'),
(1428, 25, 0x4469666572656ec5a3c48320636f7461726520616c62, 'Y', '2010-07-15 14:46:58'),
(1426, 25, 0x4469666572656ec5a3c48320636f74617265206e65677275, 'Y', '2010-07-15 14:47:23'),
(1251, 37, 0xd09ed0b4d0bed0b1d180d0b8, 'Y', '2010-07-28 20:49:38'),
(1252, 37, 0xd09ed182d185d0b2d18ad180d0bbd0b8, 'Y', '2010-07-28 20:49:38'),
(5718, 25, 0x536368696d62c4832063756c6f72696c65, 'Y', '2014-11-26 10:15:56'),
(1777, 8, 0xa6e6acb0c1f4a870b357bd64, 'Y', '2010-08-13 05:23:38'),
(1848, 8, 0xc1f4a870b357bd64, 'Y', '2010-08-13 05:23:38'),
(1874, 8, 0xaa41b0c8b1f8b4daa277a6e6acb0c1f4a870b357bd64, 'Y', '2010-08-13 05:23:38'),
(1763, 8, 0xa7daa477b867be5cc5aabb50b1b5a8fc444753a6e6acb0b357bd64a143, 'Y', '2010-08-13 05:27:02'),
(1768, 8, 0xbdd0be5cc5aaa6e6acb0b357bd64a141ad59b1b5a8fcbdd0a5b4a4c4a143, 'Y', '2010-08-13 05:27:02'),
(1844, 8, 0xa6e6acb0b357bd64, 'Y', '2010-08-13 05:27:02'),
(1847, 8, 0xa741ad59a4a3bfeda675a7daadccaabaa6e6acb0b357bd64a141a7daadccab4faf64b9efb8d3b1a1aa70b1c4a8faa6e6b0caaabac576a751a143a55dac41a752b0a3af64a8a5a141adada8eea55cafe0a141aafdc25fa8cfa5cea141a9ceb2d7a4eeb162b8b9a143, 'Y', '2010-08-13 05:51:41'),
(1845, 8, 0xc073a4a7f9d62844475329ac4fc5fda5feb279b3f2b4d1aab1ae61a5e6aa42a4cdbb50a455b4d1aabaa661a4e8a143a7daadccb357bd64a446a440a8c7b0f2a5bbb357ab68a141c5fd444753afe0a7f3a4cdb5bdbb50bcf6be78a143a7f3a5bfa6a1aabab357bd64a569a662b160a8a3b0ddc344a4a4a7e4a8eca143, 'Y', '2010-08-13 05:49:22'),
(1846, 8, 0x3c703ea7daadcca4a3b1b5a8fc3a203c756c3e2020203c6c693eaa5bb5f8a141ab5fa5c7a141bb50b463b74eaabaa8a5bdd7a1432020203c6c693eb9efa8e4a54ca6a8adfba9cebadeb27aadfbaabaabc2afd9a9ceab56b064a1432020203c6c693ea6e2b1a1a4e5a672a9ceb373b1b5a8eca6e2b1a1baf4afb8a1432020203c6c693ea5bcc0f2b35ca569aababc73a769a1432020203c6c693ea662b7e7a8e5a9cea741aabab0eaae61b351b5f8acb0ab44aa6baabaa6e6acb0a143203c2f756c3e, 'Y', '2010-08-13 05:34:05'),
(1849, 8, 0x3c703ea7daadcca4a3b77ca5bcb867a741aabab35ca569a6d3a57eacaac073a4a7f9d6a6f8aa41beb9a4a4aabaa870a448b8eab054a15db971b66ca661a77da1414950a661a77dbb50b054aea7a15ea141b0a3ab44ac4fc4b5a4e8a9d2ad6ea844a143, 'Y', '2010-08-13 05:38:15'),
(1850, 8, 0x3c703ea741ad6eacb0a741a662a6dbb6c7a141bdd7bec2a141a9ceb5b9a8e4a54ca6a8adfbaabab054aea7a4a4a9d2bc67aabaa4e5a672ad74b364a143, 'Y', '2010-08-13 05:41:12'),
(1851, 8, 0xa5cdaec4a4e9b4c1, 'Y', '2010-08-13 05:42:53'),
(1852, 8, 0xc073a4a7f9d6aa41b0c8b1f8b4dab17132303038a67e3132a4eb3134a4e9b05fa5cdaec4a143a7daadccab4faf64a7f3a7efa5bbb1f8b4daaabac576a751a143a5f4a6f3c5dca7f3b14ea6623c686f6d6520666f72756d2f6c6973742e7068703f666f72756d3d313e4e65777320666f72756d3c2f686f6d653ea4a4abc5a5aca143, 'Y', '2010-08-13 05:45:29'),
(1419, 5, 0x4e6976656175206e6f69720d0a61752064e9627574, 'Y', '2015-06-13 16:23:40'),
(1423, 5, 0x4e697665617520626c616e630d0a61752064e9627574, 'Y', '2015-06-13 16:23:40'),
(1643, 5, 0x666f726d6174206465206461746520696e76616c696465, 'Y', '2010-08-26 16:14:44'),
(1776, 5, 0x436f6e646974696f6e732064277574696c69736174696f6e, 'Y', '2010-08-26 16:24:49'),
(1874, 5, 0x436f6e646974696f6e732064277574696c69736174696f6e202d2052e8676c6520646520636f6d706f7274656d656e742065742070726f74656374696f6e206465206c61207669652070726976e965, 'Y', '2010-08-26 16:24:49'),
(5444, 11, 0x546f656765766f656764652053474673, 'Y', '2016-07-27 19:38:22'),
(1295, 18, 0x4d65737361676769206520636f6d6d656e7469206475706c6963617469, 'Y', '2010-09-06 08:58:42'),
(1498, 5, 0x436f6d6d656e7461697265, 'Y', '2010-09-07 10:02:31'),
(1502, 5, 0x4c696d6974652064652074656d7073, 'Y', '2010-09-07 10:03:06'),
(1048, 25, 0x506167696e61206e75206120666f73742067c483736974c4832e2056c48320727567c4836d2073c483206c7561c5a369206c6567c483747572612063752061646d696e6973747261746f72696920736572766572756c756920c59f692073c483206c6520636f6d756e696361c5a369206f7261206c6120636172652061c5a36920c3ae6e74c3a26c6e69742065726f6172656120c59f69206f726963652061c5a3692066c48363757420636172652061722066692070757475742d6f206361757a612e, 'Y', '2010-09-27 12:14:03'),
(173, 16, 0xcff0eee5eaf220447261676f6e20ede020536f75726365466f726765, 'Y', '2010-10-17 22:17:45'),
(193, 16, 0xcef2eaebfef7e5edee, 'Y', '2010-10-17 22:17:45'),
(194, 16, 0xd2eeebfceaee20f3e2e5e4eeecebe5ede8ff, 'Y', '2010-10-17 22:17:45'),
(197, 16, 0xc2e5f0f2e8eae0ebfcedee, 'Y', '2010-10-17 22:17:45'),
(198, 16, 0xc3eef0e8e7eeedf2e0ebfcedee, 'Y', '2010-10-17 22:17:45'),
(206, 16, 0xd3e2e5e4eeecebe5ede8ff20efee20652d6d61696c, 'Y', '2010-10-17 22:17:45'),
(215, 16, 0xd1ebe5e2e0, 'Y', '2010-10-17 22:17:45'),
(216, 16, 0xc2e2e5f0f5f3, 'Y', '2010-10-17 22:17:45'),
(217, 16, 0xd1eff0e0e2e0, 'Y', '2010-10-17 22:17:45'),
(218, 16, 0xc2ede8e7f3, 'Y', '2010-10-17 22:17:45'),
(219, 16, 0xd1e3ebe0e6e8e2e0f2fc20f3e3ebfb20e4eef1eae8, 'Y', '2010-10-17 22:17:45'),
(220, 16, 0xd0e0f1efeeebeee6e5ede8e520ece5edfe, 'Y', '2010-10-17 22:17:45'),
(501, 16, 0xcfeeebfce7eee2e0f2e5ebe820e820eff0eef4e8ebe8, 'N', '2010-10-17 22:45:18'),
(502, 16, 0xcde5eaeef2eef0fbe520f2e5f0ece8edfb20e3ee, 'Y', '2010-10-17 22:45:18'),
(503, 16, 0xd0e0e7edeee5, 'Y', '2010-10-17 22:45:18'),
(504, 16, 0xcff0e0e2e8ebe020e3ee, 'Y', '2010-10-17 22:45:18'),
(505, 16, 0xcceeeaf3, 'Y', '2010-10-17 22:45:18'),
(506, 16, 0xcff3edeaf220f2e5f0f0e8f2eef0e8e820e8ebe820eef7eaee2e, 'Y', '2010-10-17 22:45:18'),
(507, 16, 0xcaeeece8, 'Y', '2010-10-17 22:45:18'),
(508, 16, 0xcde5eaeef2eef0eee520eaeeebe8f7e5f1f2e2ee20e4eeefeeebede8f2e5ebfcedfbf520eef7eaeee2283c686f6d65206661712e7068703f726561643d74266361743d3323456e747279383eeceeeaf33c2f686f6d653e292c20eaeef2eef0fbe520efeeebf3f7e0fef220e1e5ebfbe520eee4edeeec20e8e720f1ebf3f7e0e5e23a0d0a3c6f6c3e0d0a3c6c693ec4ebff20eaeeecefe5edf1e0f6e8e820eff0e5e8ecf3f9e5f1f2e2e02c20eaeef2eef0eee520e8ece5fef220f7b8f0edfbe520e1ebe0e3eee4e0f0ff20eff0e0e2f320efe5f0e2eee3ee20f5eee4e02e200d0a3c6c693ed7f2eee1fb20e8f1eaebfef7e8f2fc20ede8f7e5e9edfbe5e920283c686f6d65200d0a6661712e7068703f726561643d74266361743d3323456e7472793234303ee4e7e8e3ee3c2f686f6d653e2920f0e5e7f3ebfcf2e0f220e8e3f0fb20e8f1efeeebfce7f3e5f2f1ff20ede5f6e5ebe0ff20e2e5ebe8f7e8ede020eaeeece82028ede0eff0e8ece5f02c20362e3520eef7eaeee2292e0d0a3c6c693ecae0ea20eee4ede020e8e720f4eef0ec20f4eef0fb202d20eaeeecefe5edf1e0f6e8e820f0e0e7ede8f6fb20e220f1e8ebe520e8e3f0fb20f1eeefe5f0ede8eaeee22e0d0acfeee4f0eee1ede5e520f1eceef2f0e8f2e53a203c686f6d65206661712e7068703f726561643d74266361743d33353723456e74727939383ec220f7b8ec20f0e0e7ebe8f7e8e520ece5e6e4f320eee1fbf7edeee920e820f3f2eef7edb8ededeee920f4eef0eee93f3c2f686f6d653e0d0a3c2f6f6c3e, 'Y', '2010-10-17 22:45:18'),
(509, 16, 0xddf2e8eae5f220447261676f6e27e0, 'Y', '2010-10-17 22:45:18'),
(510, 16, 0xcef8e8e1eae820e820eff0eee1ebe5ecfb20447261676f6e27e0, 'Y', '2010-10-17 22:45:18'),
(511, 16, 0xcce5edfe20e820ede0f1f2f0eee9eae820447261676f6e27e0, 'Y', '2010-10-17 22:45:18'),
(512, 16, 0xc8e3f0fb, 'Y', '2010-10-17 22:45:18'),
(513, 16, 0xd0e0e7f0e0e1eef2eae020447261676f6e27e0, 'Y', '2010-10-17 22:45:18'),
(514, 16, 0xc0e0e0e0e02120caf0f3e3eeec20f1efebeef8edfbe52062616727e821, 'Y', '2010-10-17 22:45:18'),
(515, 16, 0xc2eee7eceee6edee2c20c2fb20f1ebe8f8eaeeec20e4eeebe3ee20f1e8e4e5ebe820e7e020eaeeeceffcfef2e5f0eeec20e820e8e3f0e0ebe820e220e3ee20ede0204447532e20cff0e8ece8f2e520e4f3f820e820efe5f0e5eee4e5edfcf2e5f1fc203a2d29, 'Y', '2010-10-17 22:45:18'),
(518, 16, 0xcde8e3e8f0e8, 'Y', '2012-09-16 13:35:07'),
(519, 16, 0xcde8e3e8f0e820eee7ede0f7e0e5f220f1ebf3f7e0e9edfbe920e2fbe1eef020f6e2e5f2e020e2e0f8e8f520eae0ecede5e92e, 'Y', '2012-09-16 13:35:07'),
(522, 16, 0xcff0e0e2e8ebfcedee20ebe820e1f3e4e5f220efeee6e5ebe0f2fc20eff0eef2e8e2ede8eaf32022f3e4e0f7e82220efe5f0e5e420ede0f7e0ebeeec20edeee2eee920e8e3f0fb3f, 'Y', '2010-10-17 22:45:18'),
(523, 16, 0xc4e02c20eaeeede5f7edee2e20cde5eaeef2eef0fbe520e8e3f0eeeae820f2e0eae6e520e8f1efeeebfce7f3fef220f2f0e0e4e8f6e8eeededeee520ffefeeedf1eaeee5203c6120687265663d22687474703a2f2f73656e736569732e786d702e6e65742f3f4f6e656761697368696d61737522207461726765743d225f626c616e6b223e6f6e656761697368696d6173753c2f613e2e, 'Y', '2010-10-17 22:45:18'),
(525, 16, 0xcceee3f320ebe820ff20eff0e5e4ebeee6e8f2fc20edeee2f3fe20f4f3edeaf6e8fe20e8ebe820e2eee7eceee6edeef1f2fc3f, 'Y', '2010-10-17 22:45:18'),
(526, 16, 0xd0e0e7f3ece5e5f2f1ff212020cfeee6e0ebf3e9f1f2e02c20efeeece5f9e0e9f2e520e2e0f8e820efeee6e5ebe0ede8ff20ede0203c686f6d6520666f72756d2f6c6973742e7068703f666f72756d3d343ef4eef0f3ec3c2f686f6d653e2e0d0a0d0ad1e2e5e4e5ede8ff20eee120f3e6e520eff0e5e4ebeee6e5ededfbf520e8e7ece5ede5ede8fff520eceee6edee20ede0e9f2e820f120efeeeceef9fcfe2020223c693e447261676f6e277320666f72756d27732073656172636820666561747572653c2f693e222c20ede0203c4120485245463d22687474703a2f2f73656e736569732e786d702e6e65742f3f444753576973686c69737422205441524745543d225f626c616e6b223e2244475320776973686c6973742061742053656e7365692773204c696272617279223c2f413e20e820ede020203c6120687265663d22687474703a2f2f647261676f6e676f7365727665722e6376732e736f75726365666f7267652e6e65742f647261676f6e676f7365727665722f447261676f6e476f5365727665722f736372697074732f4368616e67654c6f673f766965773d6d61726b7570223e22435653204368616e67654c6f67206f6620447261676f6e27732070726f6a656374207061676520617420536f75726365666f726765223c2f613e2e, 'N', '2010-10-17 22:45:18'),
(8, 16, 0xc8e7e2e8ede8f2e52c20ede520ede0e9e4e5ede020eff0e5e4ebe0e3e0e2f8e0fff1ff20e2e0ec20e8e3f0e02e20c2eee7eceee6edee2c20eeede020f3e6e520eef2ece5ede5ede03f, 'Y', '2010-10-17 23:26:21'),
(13, 16, 0xcde520f3e4e0ebeef1fc20f3e4e0ebe8f2fc20e8e3f0f32e20c2e5f0eefff2edee2c20fdf2ee20ede520eef8e8e1eae02e, 'Y', '2010-10-17 23:26:21'),
(16, 16, 0xcff0e820e4eee1e0e2ebe5ede8e820f5eee4e020e220e1e0e7f320e4e0ededfbf520eff0eee8e7eef8ebe020eef8e8e1eae02e20ddf2ee20eceee6e5f220e1fbf2fc20e8ebe820ede520e1fbf2fc20eff0eee1ebe5eceee92e20cfeee6e0ebf3e9f1f2e02c20e2eee9e4e8f2e520e220e8e3f0f320e820f3e1e5e4e8f2e5f1fc2c20f7f2ee20f5eee420e1fbeb20e7e0f0e5e3e8f1f2f0e8f0eee2e0ed2e, 'Y', '2010-10-17 23:26:21');
INSERT INTO `Translations` (`Original_ID`, `Language_ID`, `Text`, `Translated`, `Updated`) VALUES
(17, 16, 0xcff0e820e4eee1e0e2ebe5ede8e820e2e0f8e8f520e4e0ededfbf520e220e1e0e7f320eff0eee8e7eef8ebe020eef8e8e1eae02e20c5f1ebe820e2fb20ede520eceee6e5f2e520e2eee9f2e82c20efeee6e0ebf3e9f1f2e02c20efeeeff0eee1f3e9f2e520e5f9b820f0e0e72c20e5f1ebe820fdf2ee20eeeffff2fc20ede520f3e4e0f1f2f1ff2c20eee1f0e0f2e8f2e5f1fc20ea20f1ebf3e6e1e520efeee4e4e5f0e6eae82e, 'Y', '2010-10-17 23:26:21'),
(22, 16, 0xc8e7e2e8ede8f2e52c20e2fb20e4eeebe6edfb20e2e2e5f1f2e820e8ecff2e, 'Y', '2010-10-17 23:26:21'),
(29, 16, 0xc8e7e2e8ede8f2e52c20fdf2e020eeefe5f0e0f6e8ff20ede520f0e0e7f0e5f8e5ede020e3eef1f2ffec2e20cfeee6e0ebf3e9f1f2e02c20f1ede0f7e0ebe020e7e0f0e5e3e8f1f2f0e8f0f3e9f2e5f1fc2e, 'Y', '2010-10-17 23:26:21'),
(43, 16, 0xd5ecec2c20fdf2ee20e2fbe3ebffe4e8f220eae0ea20eef2e2e5f220ede020ede5f1f3f9e5f1f2e2f3fef9e5e520f1eeeee1f9e5ede8e52e, 'Y', '2010-10-18 00:17:08'),
(48, 16, 0xcde520f1ebe5e4f3e5f220fdeaf1f2f0e0efeeebe8f0eee2e0f2fc20e7ede0f7e5ede8ff20f120efeeeceef9fcfe20f4f3edeaf6e8e820e8edf2e5f0efeeebfff6e8e8, 'Y', '2010-10-18 00:17:08'),
(50, 16, 0xc8e7e2e8ede8f2e52c20ede5e2eee7eceee6edee20ede0e9f2e820fdf2f320e8e3f0f320e220eaeeecede0f2e520eee6e8e4e0ede8ff2e20c2eee7eceee6edee2c20eaf2ee2df2ee20f3e6e520eff0e8f1eee5e4e8ede8ebf1ff20ea20ede5e92e, 'Y', '2010-10-18 00:17:08'),
(55, 16, 0xcde5e8e7e2e5f1f2edfbe920f2e8ef20f0e0ede3e0, 'Y', '2010-10-18 00:17:08'),
(56, 16, 0xc8e7e2e8ede8f2e52c20ede8f7e5e3ee20ede520e8e7e2e5f1f2edee20eff0ee20e4e0ededfbe920eff1e5e2e4eeede8ec2e, 'Y', '2010-10-18 04:31:06'),
(63, 16, 0xc8e7e2e8ede8f2e52c20f7f2ee2df2ee20efeef8ebee20ede520f2e0ea20eff0e820efeeeffbf2eae520efeeece5f1f2e8f2fc20edeee2fbe520efe5f0e5e2eee4fb20e220e1e0e7f320e4e0ededfbf52e, 'Y', '2010-10-18 00:17:08'),
(66, 16, 0xc8e7e2e8ede8f2e52c20fdf2e020f1f2f0e0ede8f6e020e4eef1f2f3efede020f2eeebfceaee20e4ebff20efeeebfce7eee2e0f2e5ebe5e920f120e0e4ece8ede8f1f2f0e0f2e8e2edfbece820eff0e0e2e0ece82e, 'Y', '2010-10-18 00:17:08'),
(69, 16, 0xc8e7e2e8ede8f2e52c20ede5e2eee7eceee6edee20ede0e9f2e820fdebe5ece5edf22e, 'Y', '2010-10-18 00:17:08'),
(529, 16, 0xc3e4e520ff20eceee3f320f3e7ede0f2fc20e1eeebfcf8e520eee120eeeff0e5e4e5ebb8ededfbf520eff0e0e2e8ebe0f53f, 'Y', '2010-10-18 00:50:52'),
(530, 16, 0xd0e0e7ece5f1f2e8f2e520f1e2eee920e7e0eff0eef120e2203c686f6d6520666f72756d2f6c6973742e7068703f666f72756d3d353ef4eef0f3ece53c2f686f6d653e2e20c6e5ebe0f2e5ebfcedee20f3f2eef7edfff2fc2c20eff0ee20eae0eae8e520e8ece5ededee20eff0e0e2e8ebe020e2fb20f5eef2e8f2e520f3e7ede0f2fc20e820ea20eae0eae8ec20e8e3f0eee2fbec20f1e8f2f3e0f6e8ffec20f1eee1e8f0e0e5f2e5f1fc20eff0e8ece5edfff2fc20e8f52e, 'Y', '2010-10-18 00:50:52'),
(531, 16, 0xcae0eaeee2fb20eef1edeee2edfbe520eff0e0e2e8ebe020e8e3f0fb20e3ee3f, 'Y', '2010-10-18 00:50:52'),
(532, 16, 0xc4e2e020e8e3f0eeeae020f1eef0e5e2edf3fef2f1ff20e220eeeaf0f3e6e5ede8e820f2e5f0f0e8f2eef0e8e820ede020eae2e0e4f0e0f2edeee920e8e3f0eee2eee920e4eef1eae52e20c4eef1eae020e8ece5e5f220f0e0e7ece5f0203139f5313920f2eef7e5ea2c20f2e0eae6e520eceee3f3f220eff0e8ece5edfff2fcf1ff20e4eef1eae820f0e0e7ece5f0e0ece8203133f5313320e82039f53920f2eef7e5ea2e20c8e3f0eeeae820f5eee4fff220efee20eef7e5f0e5e4e82c20f0e0e7ece5f9e0ff20eae0ecede820f1e2eee5e3ee20f6e2e5f2e020e220f2eef7eae0f520efe5f0e5f1e5f7e5ede8ff20ebe8ede8e920e4eef1eae82e20d7b8f0edfbe520f5eee4fff220efe5f0e2fbece82028e7e020e8f1eaebfef7e5ede8e5ec20f4eef0eee2fbf520e8e3f02c20e3e4e520f7b8f0edfbe520efeeebf3f7e0fef220e4eeefeeebede8f2e5ebfcedfbe520eae0ecede820e4ebff20eaeeecefe5edf1e0f6e8e820f1ebe0e1eef1f2e820e8e3f0eeeae0292e0d0a0d0ac5f1ebe820efeef1ebe520f5eee4e020e8e3f0eeeae020e3f0f3efefe020eae0ecede5e920eff0eef2e8e2ede8eae020ede520e8ece5e5f220ede820eee4edeee920f2eef7eae820f1e2eee1eee4fb2c20fdf2e020e3f0f3efefe020f1ede8ece0e5f2f1ff20f120e4eef1eae82028f1f2e0edeee2e8f2f1ff2022e7e0f5e2e0f7e5ededeee92220e8ebe82022efebe5ededeee922292e20c7e0eff0e5f9e5edee20e4e5ebe0f2fc20f5eee42c20e220f0e5e7f3ebfcf2e0f2e520eaeef2eef0eee3ee2c20efeef1ebe520f1edfff2e8ff20efebe5ededfbf520e3f0f3efef20eff0eef2e8e2ede8eae02c20f1e2eeff20e3f0f3efefe020ede520e8ece5e5f220ede820eee4edeee920f2eef7eae820f1e2eee1eee4fb2e0d0a0d0acaeee3e4e020eee1e020e8e3f0eeeae020efe0f1f3fef220efeee4f0ffe42c20e8e3f0e020e7e0e2e5f0f8e0e5f2f1ff20e820efeee4f1f7e8f2fbe2e0fef2f1ff20eef7eae83a20ede5e9f2f0e0ebfcedfbe520eff3edeaf2fb2028e4e0ecfd2920e7e0efeeebedfffef2f1ff2c20ecb8f0f2e2fbe520e3f0f3efeffb20f1ede8ece0fef2f1ff20f120e4eef1eae82e20d2e5f0f0e8f2eef0e8ff20f7b8f0edfbf520e820e1e5ebfbf520eeeff0e5e4e5ebffe5f2f1ff20eae0ea20eaeeebe8f7e5f1f2e2ee20eff3f1f2fbf520eff3edeaf2eee22c20eeeaf0f3e6b8ededfbf520f2eeebfceaee20f7b8f0edfbece820e8ebe820f2eeebfceaee20e1e5ebfbece820eae0ecedffece82c20ece8edf3f120eaeeebe8f7e5f1f2e2ee20eae0ecede5e92c20e7e0f5e2e0f7e5ededfbf520eff0eef2e8e2ede8eaeeec2e200d0a0d0ac1eeebe5e520efeee4f0eee1edeee520eeefe8f1e0ede8e520eff0e0e2e8eb3a203c6120687265663d22687474703a2f2f706c6179676f2e746f2f696e7465726163746976652f696e6465782e68746d6c22207461726765743d6e65773e54686520496e7465726163746976652057617920546f20476f3c2f613e2e, 'Y', '2010-10-18 00:50:52'),
(533, 16, 0xc3e4e520eceee6edee20ede0e9f2e820e1eeebfcf8e520e2e5e12df1f2f0e0ede8f62c20efeef1e2fff9b8ededfbf520e3ee3f, 'Y', '2010-10-18 00:50:52'),
(534, 16, 0xcde0203c686f6d65206c696e6b732e7068703ef1f2f0e0ede8f6e520f1f1fbebeeea3c2f686f6d653e2e, 'Y', '2010-10-18 00:50:52'),
(535, 16, 0xc9eef1fd, 'Y', '2010-10-18 00:50:52'),
(536, 16, 0xc7e0eaebfef7e8f2e5ebfcede0ff20f1f2e0e4e8ff20e8e3f0fb2e2020cde020fdf2eee920f1f2e0e4e8e820f3e6e520ede520eef1f2e0b8f2f1ff20f5eee4eee22c20e0f2e0eaf3fef9e8f520e3f0f3efeffb20eff0eef2e8e2ede8eaeee22c20edee20edf3e6edee20e2fbe1f0e0f2fc20ebf3f7f8e8e520f5eee4fb2c20f7f2eee1fb20f0e0f1f8e8f0e8f2fc20f3e6e520f1f3f9e5f1f2e2f3fef9e8e520f2e5f0f0e8f2eef0e8e82e, 'Y', '2010-10-18 00:50:52'),
(566, 16, 0xd7f2ee20fdf2ee20e7e020ece5f1f2ee3f, 'Y', '2010-10-18 00:53:59'),
(135, 16, 0xcfe5f0e5e2eee4f7e8eae8, 'Y', '2010-10-18 04:26:31'),
(75, 16, 0xc8e7e2e8ede8f2e52c20ede520f3e4e0b8f2f1ff20ede0e9f2e820f2e0eaeee920f2f3f0ede8f02e, 'Y', '2010-10-18 07:42:27'),
(3157, 17, 0x4b6f6d756e696b6174792061646d696e6973747261636a69, 'Y', '2013-08-21 00:15:09'),
(3351, 17, 0x4272616b206e6f77796368206b6f6d756e696b6174f377, 'Y', '2013-08-21 00:16:47'),
(3441, 17, 0x576961646f6d6fb6e620646e696120286e696570727a65637a7974616e6129, 'Y', '2013-08-22 05:27:49'),
(122, 16, 0xcef2e2e5f2, 'Y', '2010-10-18 07:42:27'),
(127, 16, 0xd0e5e4e0eaf2e8f0eee2e0f2fc, 'Y', '2012-10-14 14:25:25'),
(128, 16, 0xc2e2e5f0f5, 'Y', '2010-10-18 07:42:27'),
(129, 16, 0xc2ede8e7, 'Y', '2010-10-18 07:42:27'),
(271, 16, 0xd5e8eae0f0f320e820c3ee, 'Y', '2010-10-18 07:47:01'),
(272, 16, 0xcce0ede3e020eff0ee20e3ee2e20d0e5eaeeece5ede4f3e5ec21, 'Y', '2010-10-18 07:47:01'),
(273, 16, 0xcff0e0e2e8ebe0, 'Y', '2010-10-18 07:47:01'),
(415, 16, '', 'Y', '2010-10-18 08:58:48'),
(417, 16, 0xc2e8e4e8ecee2c20f1e5e9f7e0f120eff3f1f2fb2e, 'Y', '2010-10-18 07:55:32'),
(1024, 16, 0xd0e0e2ede0ff20e8e3f0e0, 'Y', '2010-10-18 08:24:48'),
(1076, 16, 0xcbe8f7edfbe520e7e0ece5f2eae8, 'Y', '2010-10-18 07:55:32'),
(1083, 16, 0xc7e0eff0eef8e5edee20f1f2e0ede4e0f0f2edeee520f0e0e7ece5f9e5ede8e520f4eef0eee2fbf520eae0ecede5e92e, 'Y', '2010-10-18 07:55:32'),
(1084, 16, 0xd1f2e0ede4e0f0f2edeee520f0e0e7ece5f9e5ede8e5, 'Y', '2010-10-18 07:55:32'),
(1085, 16, 0xcfeee6e0ebf3e9f1f2e02c20efeeece5f2fcf2e520ecb8f0f2e2fbe520eae0ecede820e820ede0e6ece8f2e520257327c3eef2eee2ee2725732c20eaeee3e4e020e7e0eaeeedf7e8f2e52e, 'Y', '2010-10-18 10:06:17'),
(1086, 16, 0xc7e0f5e2e0f7e5ededfbe5, 'Y', '2010-10-18 07:55:32'),
(1087, 16, 0xcaeeecece5edf2e0f0e8e8, 'Y', '2010-10-18 07:55:32'),
(1088, 16, 0xc7e0e3f0f3e7e8f2fc2053474620f1ee20e2f1e5ece820eaeeecece5edf2e0f0e8ffece8, 'Y', '2010-10-18 07:55:32'),
(1089, 16, 0xcfeee4f1f7b8f2, 'Y', '2010-10-18 07:55:32'),
(1092, 16, 0xd0e5e9f2e8ede3eee2e0ff20efe0f0f2e8ff, 'Y', '2014-05-01 20:32:14'),
(1093, 16, 0xcfeeeae0e7e0f2fc20eaeeecece5edf2e0f0e8e8, 'Y', '2010-10-18 07:55:32'),
(1094, 16, 0xd1eef5f0e0ede8f2fc20eaeeecece5edf2e0f0e8e8, 'Y', '2010-10-18 07:55:32'),
(1095, 16, 0xd1eaf0fbf2fc20eaeeecece5edf2e0f0e8e8, 'Y', '2010-10-18 07:55:32'),
(1111, 16, 0xc3f0e0f4e8ea20f0e5e9f2e8ede3e0, 'Y', '2010-10-18 07:55:32'),
(1031, 17, 0x73657262736b69, 'Y', '2013-08-20 22:11:05'),
(2401, 11, 0x546f6f6e207370656c2d696e666f, 'Y', '2016-07-27 18:55:34'),
(1090, 16, 0xcfeeeae0e7e0f2fc20f5eee4, 'Y', '2010-10-18 07:58:10'),
(1211, 16, 0xd5eee4, 'Y', '2010-10-18 08:12:15'),
(1270, 16, 0xc2f1e520eee6e8e4e0fef9e8e520e8e3f0fb, 'Y', '2010-10-18 08:12:15'),
(1271, 16, 0xcfeee4f5eee4fff9e8e520eee6e8e4e0fef9e8e520e8e3f0fb, 'Y', '2010-10-18 08:12:15'),
(1396, 16, 0xcde0e6ece8f2e520224f4b2220e4ebff20efeee4f2e2e5f0e6e4e5ede8ff, 'Y', '2010-10-18 09:10:23'),
(1397, 16, 0xc4eee1e0e2e8f2fc20e2f0e5ece5ede820eff0eef2e8e2ede8eaf3, 'Y', '2010-10-18 08:12:15'),
(1398, 16, 0xcfeeeae0e7e0f2fc20ede0e1ebfee4e0f2e5ebe5e9, 'Y', '2010-10-18 08:12:15'),
(1399, 16, 0xc2fbe1e5f0e8f2e52c20f1eaeeebfceaee20e2f0e5ece5ede820e4eee1e0e2e8f2fc20eff0eef2e8e2ede8eaf3, 'Y', '2010-10-18 08:12:15'),
(1400, 16, 0xe4eee1e0e2ebe5edee20e2e0f8e5ecf320eeefefeeede5edf2f32e, 'Y', '2010-10-18 08:12:15'),
(1401, 16, 0xd1e1f0eef1e8f2fc20f3f1f2e0edeee2eae820e1b8b8ece820eff0e820efeee2f2eef0edeeec20e2f5eee4e5, 'Y', '2010-10-18 08:12:15'),
(1402, 16, 0xc4eee1e0e2e8f2fc20e2f0e5ecff, 'Y', '2010-10-18 08:12:15'),
(1403, 16, 0xcef2ece5ede8f2fc, 'Y', '2010-10-18 08:12:15'),
(1493, 16, 0xc2f1e5, 'Y', '2010-10-18 08:17:31'),
(5449, 11, 0x546f656765766f6567646520534746, 'Y', '2016-07-27 19:38:22'),
(1540, 36, 0x53616ac3a174206d6167616d6174206e656d207465686574656d2061206ec3a9766a6567797ac3a96b656d6265, 'Y', '2015-09-19 18:23:21'),
(6094, 36, 0x536f726f7a6174, 'Y', '2015-09-19 18:15:44'),
(1439, 16, 0xcaeeece8, 'Y', '2010-10-18 09:08:12'),
(1412, 16, 0xc2f1e5, 'Y', '2010-10-18 09:02:29'),
(1413, 16, 0xd72e, 'Y', '2010-10-18 09:02:29'),
(1414, 16, 0xc12e, 'Y', '2010-10-18 09:02:29'),
(1415, 16, '', 'Y', '2012-07-15 21:20:17'),
(1416, 16, '', 'Y', '2012-07-15 21:20:17'),
(1417, 16, 0xd72e20c8ecff, 'Y', '2010-10-18 09:02:29'),
(1418, 16, 0xd72e20cff1e5e2e4eeede8ec, 'Y', '2010-10-18 09:02:29'),
(1419, 16, 0xd72e20cde0f72e20f0e5e9f2e8ede3, 'Y', '2010-10-18 09:02:29'),
(1420, 16, 0xd72e20d0e5e9f2e8ede3, 'Y', '2010-10-18 09:02:29'),
(1421, 16, 0xc12e20c8ecff, 'Y', '2010-10-18 09:02:29'),
(1422, 16, 0xc12e20cff1e5e2e4eeede8ec, 'Y', '2010-10-18 09:02:29'),
(1423, 16, 0xc12e20cde0f72e20f0e5e9f2e8ede3, 'Y', '2010-10-18 09:02:29'),
(1424, 16, 0xc12e20d0e5e9f2e8ede3, 'Y', '2010-10-18 09:02:29'),
(1425, 16, 0xd72e20caeeed2e20f0e5e9f2e8ede3, 'Y', '2010-10-18 09:02:29'),
(1426, 16, 0xd72e20c8e7ec2e20f0e5e9f2e8ede3e0, 'Y', '2010-10-18 09:02:29'),
(1427, 16, 0xc12e20caeeed2e20f0e5e9f2e8ede3, 'Y', '2010-10-18 09:02:29'),
(1428, 16, 0xc12e20c8e7ec2e20f0e5e9f2e8ede3e0, 'Y', '2010-10-18 09:02:29'),
(1429, 16, 0xd1eeefe5f0ede8ea, 'Y', '2010-10-18 09:02:29'),
(1430, 16, 0xcff1e5e2e4eeede8ec, 'Y', '2010-10-18 09:02:29'),
(2720, 6, 0x49736c61732056ed7267656e657320285265696e6f20556e69646f29, 'Y', '2015-06-18 20:31:16'),
(2694, 6, 0x47756164616c757065, 'Y', '2015-06-18 20:27:45'),
(1433, 16, 0xd0e5e9f2e8ede3, 'Y', '2010-10-18 09:02:29'),
(2683, 6, 0x49736c6173204361696de16e, 'Y', '2015-06-17 05:34:55'),
(1435, 16, 0xd6e2e5f2, 'Y', '2010-10-18 09:02:29'),
(1436, 16, 0xd6e2e5f2e0, 'Y', '2010-10-18 09:02:29'),
(1437, 16, 0xd0e0e7ece5f0, 'Y', '2010-10-18 09:02:29'),
(1438, 16, 0xd4eef0e0, 'Y', '2010-10-18 09:02:29'),
(1440, 16, 0xd5eee4eee2, 'Y', '2010-10-18 09:08:12'),
(1441, 16, 0xd1f7b8f2, 'Y', '2010-10-18 09:08:12'),
(1442, 16, 0xcfeee1e5e4e8eb3f, 'Y', '2010-10-18 09:08:12'),
(1443, 16, 0xd0e5e9f2e8ede3eee2e0ff, 'Y', '2010-10-18 09:08:12'),
(1444, 16, 0xcfeef1ebe5e4ede8e920f5eee4, 'Y', '2010-10-18 09:08:12'),
(6422, 40, 0x5175616e74696461646520646520616476657273e172696f73206469666572656e74657320656d20746f646f73206f73206a6f676f73, 'Y', '2016-05-02 04:58:50'),
(1446, 16, 0xd1eeefe5f0ede8ea20efeeffe2ebffebf1ff, 'Y', '2010-10-18 09:08:12'),
(1447, 16, 0xd7e0f1fb20efee20e2fbf5eee4edfbec, 'Y', '2010-10-18 09:08:12'),
(1479, 16, 0xc8ecff, 'Y', '2010-10-18 09:08:12'),
(1480, 16, 0xd1f2f0e0ede0, 'Y', '2010-10-18 09:08:12'),
(1483, 16, 0x23cfe0f0f2e8e8, 'Y', '2010-10-18 09:08:12'),
(1497, 16, 0xc8edf4ee, 'Y', '2010-10-18 09:08:12'),
(1498, 16, 0xcaeeecece5edf2e0f0e8e9, 'Y', '2010-10-18 09:08:12'),
(1499, 16, 0xd2e8ef, 'Y', '2010-10-18 09:08:12'),
(1502, 16, 0xcbe8ece8f220e2f0e5ece5ede8, 'Y', '2010-10-18 09:08:12'),
(1503, 16, 0xd1f2e0ede4e0f0f2edeee520f0e0e7ece5f9e5ede8e5, 'Y', '2010-10-18 09:08:12'),
(1885, 16, 0xd1eaf0fbf2fbe9, 'Y', '2010-10-18 09:08:12'),
(1731, 16, 0xcfee20d4e8f8e5f0f3, 'Y', '2010-10-18 09:16:59'),
(1782, 16, 0xc2cdc8ccc0cdc8c53a20d1efe8f1eeea20efe0f0f2e8e920efee20f3eceeebf7e0ede8fe20eee3f0e0ede8f7e5ed20efeeeae0e7eeec20f2eeebfceaee20efeef1ebe5e4ede8f520efe0f0f2e8e920e7e020257320e4ede5e92e20ddf2ee20eceee6e5f220e1fbf2fc20e8e7ece5ede5edee20f120efeeeceef9fcfe20f4e8ebfcf2f0e0205b25735d2e, 'Y', '2010-10-18 09:16:59'),
(537, 16, 0xc0f2e0f0e8, 'Y', '2010-10-18 09:45:14'),
(538, 16, 0xc0f2e0f0e8202d20fdf2ee20f1e8f2f3e0f6e8ff2c20eaeee3e4e020eae0ece5edfc20e8ebe820e3f0f3efefe020e8ece5e5f220f2eeebfceaee20eee4edf320f2eef7eaf320f1e2eee1eee4fb2e20c220f2e0eaeeec20efeeebeee6e5ede8e820eae0ece5edfc20e8ebe820e3f0f3efefe020eceee6e5f220e1fbf2fc20e2e7fff2e020f1ebe5e4f3fef9e8ec20f5eee4eeec20eff0eef2e8e2ede8eae02e, 'Y', '2010-10-18 09:45:14'),
(539, 16, 0xcaee, 'Y', '2010-10-18 09:45:14'),
(540, 16, 0xcaee202d20fdf2ee20efeeebeee6e5ede8e520ede020e4eef1eae52c20eaeee3e4e020eae0ecede820ede020eee4ede8f520e820f2e5f520e6e520eff3edeaf2e0f520efeeefe5f0e5ece5ededee20e1e5f0f3f2f1ff20f1eeefe5f0ede8eae0ece820e820e2fbf1f2e0e2ebfffef2f1ff20ede020e4eef1eaf32e2022caee2220e1f3eae2e0ebfcedee20eee7ede0f7e0e5f22022e2e5f7edeef1f2fc22202d20e2e7fff2e8e520e820efeef1f2e0edeee2eae020eae0ecede5e920eceee3f3f220eff0eee4eeebe6e0f2fcf1ff20ede5eeeff0e5e4e5ebb8ededee20e4eeebe3ee2e20cff0e0e2e8ebee20eaee20e7e0eff0e5f9e0e5f220f5eee42c20e5f1ebe820eeed20e2e5e4b8f220ea20efeee2f2eef0e5ede8fe20efeee7e8f6e8e82e, 'Y', '2010-10-18 09:45:14'),
(541, 16, 0xcceee6edee20ebe82022eee6e8e2e8f2fc2220efe0f0f2e8fe2c20e220eaeef2eef0eee920e7e0eaeeedf7e8ebeef1fc20e2f0e5ecff3f, 'Y', '2010-10-18 09:45:14'),
(542, 16, 0xcde5f22e20cfeee6e0ebf3e9f1f2e02c20ede0f7ede8f2e520edeee2f3fe20efe0f0f2e8fe20f1203c686f6d65206661712e7068703f726561643d74266361743d35363ef1eeeef2e2e5f2f1f2e2f3fef9e8ec20ebe8ece8f2eeec20e2f0e5ece5ede83c2f686f6d653e21, 'Y', '2010-10-18 09:45:14'),
(545, 16, 0xcafe, 'Y', '2010-10-18 09:45:14'),
(546, 16, 0xcafe202d20fdf2ee20ede8e7f8e8e520f0e0ede3e820e8e3f0eeeaeee220e220e3ee2e20ceede820eff0e8f1e2e0e8e2e0fef2f1ff20edeee2e8f7eae0ec2c20ede520e4eef1f2e8e3f8e8ec20f3f0eee2edff20ece0f1f2e5f0e02e20d8eae0ebe020f0e0ede3eee220eafe20f1eee4e5f0e6e8f220f0e0ede3e820eef22033306b20e4ee20316b2c20f0e0ede320316b202d20ede0e8e2fbf1f8e8e92e20ceeff0e5e4e5ebe5ede8e52033306b202d2022edeee2e8f7eeea2c20eaeef2eef0fbe920e2fbf3f7e8eb20eff0e0e2e8ebe02c20edee20ede520f1fbe3f0e0eb20e5f9b820ede820eee4edeee920e8e3f0fb222e20c220caeef0e5e520e2ece5f1f2ee2022eafe2220e8f1efeeebfce7f3e5f2f1ff20f2e5f0ece8ed2022e3e0ef222e200d0ac7ede0f7e5ede8ff20eafe20e1eeebe5e52031306b2c20e220e4e5e9f1f2e2e8f2e5ebfcedeef1f2e82c20ede520e2efeeebede520ede0e4b8e6edfb2e20c8e3f0eeea2031306b20e8e3f0e0e5f220f1f0e0e2ede8ecee20f120316b20e8ebe82031203c686f6d65206661712e7068703f726561643d74266361743d3323456e74727933393ee4e0edeeec3c2f686f6d653e2c20e8ece5ff203920eae0ecede5e9203c686f6d65206661712e7068703f726561643d74266361743d33353723456e74727939373ef4eef0fb3c2f686f6d653e20e220f4eef0eee2eee920e8e3f0e52e, 'Y', '2010-10-18 09:45:14'),
(547, 16, 0xc4e0ed, 'Y', '2010-10-18 09:45:14'),
(548, 16, 0xc4e0ed202d20fdf2ee20f0e0ede320ece0f1f2e5f0e020e8e3f0fb20e3ee2e20d0e0ede3e820e4e0ed20e8e4f3f220eef2203120e820e2fbf8e52c20e1ceebfcf8e8e920edeeece5f020f1eeeef2e2e5f2f1f2e2f3e5f220e1eeebe5e520f1e8ebfcedeeecf320e8e3f0eeeaf32e20c4e0edfb20eceee3f3f220e1fbf2fc20ebfee1e8f2e5ebfcf1eae8e520e820eff0eef4e5f1f1e8eeede0ebfcedfbe52e20cbfee1e8f2e5ebfc203520e4e0ede020eff0e8e1ebe8e7e8f2e5ebfcedee20f0e0e2e5ed20efee20f1e8ebe520eff0eef4e5f1f1e8eeede0ebf3203120eff0eef4e5f1f1e8eeede0ebfcedeee3ee20e4e0ede02028eceee6e5f220eee1eee7ede0f7e0f2fcf1ff20eae0ea203170292e20cff0eef4e5f1f1e8eeede0ebe0ec20ede520eff0e8f1e2e0e8e2e0fef2f1ff20f0e0ede3e8203c686f6d65206661712e7068703f726561643d74266361743d3323456e74727933383eeafe3c2f686f6d653e2e, 'Y', '2010-10-18 09:45:14'),
(549, 16, 0xd1eaeeebfceaee20e4ede5e920eef2eff3f1eae020f320ece5edff20eceee6e5f220e1fbf2fc20ede020447261676f6e27e53f, 'Y', '2010-10-18 09:45:14'),
(550, 16, 0xc4ee2033302028ece0eaf1e8ecf3ec20e7e020e3eee4292e20cae0e6e4fbe920ece5f1fff620e2e0ec20e4eee1e0e2ebffe5f2f1ff20322c3520e4edff20eef2eff3f1eae02e, 'Y', '2010-11-01 08:57:43'),
(551, 16, 0xd7f2ee20eee7ede0f7e0fef220fdebe5ece5edf2fb20ede020f1f2f0e0ede8f6e52022d1eef1f2eeffede8e5223f, 'N', '2010-10-18 09:47:56'),
(552, 16, 0xd1f2f0e0ede8f6e020f1eef1f2eeffede8ff20efeeebfce7eee2e0f2e5ebff20e4eef1f2f3efede020e4ebff20eff0eef1eceef2f0e020f2eeebfceaee20e5ecf32028e5e9292e200d0a0d0addebe5ece5edf2fb20e220f2e0e1ebe8f6e520e2e2e5f0f5f320f1f2f0e0ede8f6fb20f1eef1f2eeffede8ff202d20e8e7e2ebe5f7e5ede8e520e8e720203c686f6d65206661712e7068703f726561643d74266361743d313223456e7472793230333ed1f2f0e0ede8f6fb20e8edf4eef0ece0f6e8e820ee20efeeebfce7eee2e0f2e5ebe53c2f686f6d653e2e0d0a0d0ad1ebe5e4f3fef9e0ff20f1e5eaf6e8ff20efeeeae0e7fbe2e0e5f220edeee2fbe520e8ebe820ede5eef2e2e5f7e5ededfbe520203c686f6d65206661712e7068703f726561643d74266361743d33363023456e7472793133363ef1eeeee1f9e5ede8ff3c2f686f6d653e20e4ebff20efeeebfce7eee2e0f2e5ebff2e0d0a0d0ad1ebe5e4f3fef9e0ff20f1e5eaf6e8ff20f1eee4e5f0e6e8f220f1efe8f1eeea20e2f1e5f520e8e3f02c20e220eaeef2eef0fbf520e2e0f8e020eef7e5f0e5e4fc20f5eee4e8f2fc2e20d1f2eeebe1f6fb20f2e0e1ebe8f6fb20f1eee4e5f0e6e0f220f1ebe5e4f3fef9e8e520e4e0ededfbe520ee20efe0f0f2e8e83a0d0a3c756c3e0d0a3c6c693e3c623e49443a3c2f623e20cdeeece5f020efe0f0f2e8e82e0d0a3c6c693e3c623e7367663a3c2f623e20d1f1fbebeae020e4ebff20e7e0e3f0f3e7eae82028f2eeebfceaee20f5eee4fb2c20e1e5e720eaeeecece5edf2e0f0e8e5e2292e0d0a3c6c693e3c623ed1eeefe5f0ede8ea3a3c2f623e20cfeeebedeee520f0e5e0ebfcedeee520e8ecff20f1eeefe5f0ede8eae02e0d0a3c6c693e3c623ecff1e5e2e4eeede8ec3a3c2f623e20cff1e5e2e4eeede8ec20f1eeefe5f0ede8eae02e0d0a3c6c693e3c623ed0e5e9f2e8ede33a3c2f623e20d2e5eaf3f9e8e920f0e5e9f2e8ede320f1eeefe5f0ede8eae02e0d0a3c6c693e3c623ed6e2e5f23a3c2f623e20c2e0f820f6e2e5f220e220efe0f0f2e8e82e0d0a3c6c693e3c623ed0e0e7ece5f03a3c2f623e20d0e0e7ece5f020e4eef1eae82e0d0a3c6c693e3c623ed4eef0e03a3c2f623e20caeeebe8f7e5f1f2e2ee20f4eef0eee2fbf520eae0ecede5e92e0d0a3c6c693e3c623ecaeeece83a3c2f623e20d0e0e7ece5f020eaeeece82e0d0a3c6c693e3c623ed5eee4eee23a3c2f623e20caeeebe8f7e5f1f2e2ee20f3e6e520f1e4e5ebe0ededfbf520f5eee4eee22e0d0a3c6c693e3c623ed0e5e9f2e8ede3eee2e0ff3a3c2f623e20cfeeeae0e7fbe2e0e5f22c20ffe2ebffe5f2f1ff20ebe820efe0f0f2e8ff20f0e5e9f2e8ede3eee2eee92e0d0a3c6c693e3c623ecfeef1ebe5e4ede8e920f5eee43a3c2f623e20c4e0f2e020e820e2f0e5ecff2c20eaeee3e4e020f1eeefe5f0ede8ea20f1e4e5ebe0eb20efeef1ebe5e4ede8e920f5eee42e3c2f6c693e0d0a3c6c693e3c623ecef1f2e0ebeef1fc3a3c2f623e20c2f0e5ecff2c20eef1f2e0e2f8e5e5f1ff20f320e2e0f120e4ebff20e7e0e2e5f0f8e5ede8ff20efe0f0f2e8e82e20d4eef0ece0f220eef2eee1f0e0e6e5ede8ff20efeef5eee620ede020f4eef0ece0f220e220e8e3f0eee2eeec20e7e0ebe52028f1ec2e20223c693ecbe8ece8f220e2f0e5ece5ede83c2f693e2220e2203c686f6d65206661712e7068703f726561643d74266361743d33353723456e7472793231313eeeefe8f1e0ede8e820efe0f0e0ece5f2f0eee220eaeeecede0f2fb20eee6e8e4e0ede8ff3c2f686f6d653e292e20cef2ebe8f7e8e520f1eef1f2eee8f220e220f2eeec2c20f7f2ee20ede020f1f2f0e0ede8f6e520f1eef1f2eeffede8ff20efeeeae0e7fbe2e0e5f2f1ff20f2eeebfceaee20eef1edeee2edeee520e2f0e5ecff2e20caeee3e4e020eef1edeee2edeee520e2f0e5ecff20e8f1f2e5eae0e5f22c20e4eeefeeebede8f2e5ebfcedeee520f2e0eae6e520efeeeae0e7fbe2e0e5f2f1ff20e220f1eeeef2e2e5f2f1f2e2e8e820f120f4eef0ece0f2eeec20e8e3f0eee2eee3ee20e7e0ebe02e3c2f6c693e0d0a3c2f756c3e0d0a0d0acdf3e6edee20e7e0ece5f2e8f2fc2c20f7f2ee20ede020f1f2f0e0ede8f6e520f1eef1f2eeffede8ff20ede5f220e2eee7eceee6edeef1f2e8203c623ef1eef0f2e8f0eee2e0f2fc20f1efe8f1eeea20efe0f0f2e8e93c2f623e2c20efeef1eaeeebfceaf320efeef0ffe4eeea20efe0f0f2e8e920e4eeebe6e5ed20f1eeeef2e2e5f2f1f2e2eee2e0f2fc20efeef0ffe4eaf320efe5f0e5f5eee4e020efee20f1f1fbebeae0ec2022cfe5f0e5e9f2e820ea20f1ebe5e4f3fef9e5e920efe0f0f2e8e82220ede020f1eeeef2e2e5f2f1f2e2f3fef9e8f520f1f2f0e0ede8f6e0f520efe0f0f2e8e92c20f7f2ee20ede520f2e0ea20eff0eef1f2ee20f1e4e5ebe0f2fc3b20ea20f2eeecf320e6e520efeee4eee1edfbe520f1eef0f2e8f0eee2eae820ede520eef1eee1e5ededee20efeeebe5e7edfb2e, 'N', '2010-10-18 14:07:36'),
(1002, 16, 0xcde020ede0f8e5ec203c693eefeef8e0e3eee2eeec3c2f693e20f1e5f0e2e5f0e520e8e3f0eee2fbe520f7e0f1fb20edf3e6edfb2c20e3ebe0e2edfbec20eee1f0e0e7eeec2c20e4ebff20f2eee3ee2c20f7f2eee1fb20e8e7e1e5e6e0f2fc20ede5eeeaeeedf7e5ededfbf520e8e3f02e0d0a0d0ad1e5f0e2e5f020efeee4e4e5f0e6e8e2e0e5f220e8e3f0eee2fbe520f7e0f1fb20e7e0eff3f9e5ededfbece820ede5eff0e5f0fbe2edee2c20edee20ede0e8ece5edfcf8e8ec203c693eeef2eee1f0e0e6e0e5ecfbec3c2f693e20eef2f0e5e7eaeeec20e2f0e5ece5ede820ffe2ebffe5f2f1ff20eee4e8ed20f7e0f12e203c693ec2edf3f2f0e5edede8e53c2f693e20e8e3f0eee2fbe520f7e0f1fb20eee1edeee2ebfffef2f1ff20eae0e6e4fbe5203520ece8edf3f22e200d0ac2ede8ece0ede8e53a20fdf2ee20eee7ede0f7e0e5f22c20f7f2ee20eaeee3e4e020e2e0f8e820f7e0f1fb20efeeeae0e7fbe2e0fef220eee4e8ed20f7e0f120e4ee20e8f1f2e5f7e5ede8ff20ebe8ece8f2e020e2f0e5ece5ede82c20e2fb20eceee6e5f2e520e220e4e5e9f1f2e2e8f2e5ebfcedeef1f2e820e8ece5f2fc20ebe8f8fc20ede5f1eaeeebfceaee20f1e5eaf3ede42c20efeef1ebe520e8f1f2e5f7e5ede8ff20eaeef2eef0fbf520eeeae0e6e5f2f1ff2c20f7f2ee20e2fb20eff0eef1f0eef7e8ebe820e2f0e5ecff2e200d0a0d0ac8e3f0eee2fbe520f7e0f1fb20f1f2e0f0f2f3fef220ede5ece5e4ebe5ededee2c20eae0ea20f2eeebfceaee20eff0e8e3ebe0f8e5ede8e520ede020efe0f0f2e8fe20eff0e8edfff2ee2c20e820eef1f2e0ede0e2ebe8e2e0fef2f1ff2c20eaeee3e4e020eff0eee8e7e2e5e4b8ed20efeee4f1f7b8f220eef7eaeee22e200d0ac2ede8ece0ede8e53a20fdf2ee20eee7ede0f7e0e5f22c20f7f2ee20e2fb20e2f1b820e5f9b820eceee6e5f2e520e8f1f7e5f0efe0f2fc20ebe8ece8f220e2f0e5ece5ede82c20eaeee3e4e020e4e5ebe0e5f2e520f4e8ede0ebfcedfbe520efe0f1fb20e820efeee4f1f7b8f220eef7eaeee220e220efe0f0f2e8e82e, 'Y', '2010-10-18 10:37:30'),
(1475, 16, 0xcef1f2e0ebeef1fc, 'Y', '2010-10-18 10:37:30'),
(553, 16, 0xcaeee3e4e020eceee820e8e3f0eee2fbe520f7e0f1fb20e8e4f3f23f, 'Y', '2010-10-18 11:24:50'),
(554, 16, 0xc2e0f8e820e8e3f0eee2fbe520f7e0f1fb20e8e4f3f2203c623ef2eeebfceaee3c2f623e20f2eee3e4e02c20eaeee3e4e020e2e0f8e020eef7e5f0e5e4fc20f5eee4e8f2fc2e0d0a0d0ad7e0f1fb203c623eede520e8e4f3f23c2f623e3a0d0a3c756c3e0d0a3c6c693eeaeee3e4e020eff0eef2e8e2ede8ea20e5f9b820ede520efeee4f2e2e5f0e4e8eb20f1e2eee920eef7e5f0e5e4edeee920f5eee43b3c2f6c693e0d0a3c6c693ee220f2e5f7e5ede8e520e8edf2e5f0e2e0ebe020e2e0f8e5e3ee203c686f6d65206661712e7068703f726561643d74266361743d353623456e74727936313ee2f0e5ece5ede820f1ede03c2f686f6d653e3b3c2f6c693e0d0a3c6c693ee2ee20e2f0e5ecff20e2e0f8e5e3ee203c686f6d65206661712e7068703f726561643d74266361743d353623456e74727936363eeef2eff3f1eae03c2f686f6d653e3b3c2f6c693e0d0a3c6c693eede020e2fbf5eee4edfbf52028e5f1ebe820e2fb20e2fbe1f0e0ebe820fdf2f320ede0f1f2f0eee9eaf320eff0e8203c686f6d65206661712e7068703f726561643d74266361743d33353723456e74727934343ef1eee7e4e0ede8e820e8e3f0fb3c2f686f6d653e293c2f6c693e0d0a3c2f756c3e, 'N', '2010-10-18 11:24:50'),
(555, 16, 0xcae0ea20eff0eef1ece0f2f0e8e2e0f2fc20f4e0e9ebfb205347463f, 'Y', '2012-07-05 23:22:30'),
(556, 16, 0xd1f3f9e5f1f2e2f3e5f220ecedeee6e5f1f2e2ee20eff0eee3f0e0ecec20e4ebff20eff0eef1eceef2f0e020e820f0e5e4e0eaf2e8f0eee2e0ede8ff20f4e0e9ebeee2205347462e20cee4ede8ec20e8e720e2e0f0e8e0edf2eee220ffe2ebffe5f2f1ff203c6120687265663d22687474703a2f2f7777772e72656e652d67726f74686d616e6e2e64652f6a61676f2f223e4a61676f3c2f613e202d20e3ee2deaebe8e5edf22c20ede0efe8f1e0ededfbe920ede0204a6176612e0d0a0d0acde020f1f2f0e0ede8f6e520c1f0e8f2e0edf1eaeee920c0f1f1eef6e8e0f6e8e820e3ee20e8ece5e5f2f1ff20e4ebe8ededfbe9203c6120687265663d22687474703a2f2f7777772e62726974676f2e6f72672f676f70637265732f676f7063726573312e68746d6c23732d76696577223ef1efe8f1eeea20eff0eee3f0e0ecec3c2f613e20e4ebff20eff0eef1eceef2f0e020f4e0e9ebeee2205347462e0d0a0d0acaeee3e4e020e2fb20e2fbe1e5f0e5f2e520eff0eee3f0e0ececf320e4ebff20eff0eef1eceef2f0e0205347462c20e2fb20eceee6e5f2e520f1e2ffe7e0f2fc20e220e2e0f8e5ec20e1f0e0f3e7e5f0e5206d696d652df2e8ef20273c74743e6170706c69636174696f6e2f782d676f2d7367663c2f74743e2720f120fdf2eee920eff0eee3f0e0ececeee92c20f7f2ee20efeee7e2eeebe8f220e2e0ec20eef2eaf0fbe2e0f2fc205347462df4e0e9ebfb20eee4ede8ec20f9e5ebf7eaeeec20ecfbf8e82e0d0a0d0ac4eeefeeebede8f2e5ebfcedf3fe20e8edf4eef0ece0f6e8fe20eceee6edee20ede0e9f2e820ede020f1f2f0e0ede8f6e50d0a3c687474703a2f2f73656e736569732e786d702e6e65742f3f536d61727447616d65466f726d61743e, 'N', '2012-07-05 23:22:30'),
(559, 16, 0xcae0ea20e4e5ebe0f2fc20f5eee4fb20e220efe0f0f2e8e83f, 'Y', '2010-10-18 11:24:50'),
(560, 16, 0xcde0203c686f6d65207374617475732e7068703ef1f2f0e0ede8f6e520f1eef1f2eeffede8ff3c2f686f6d653e20ede0f5eee4e8f2f1ff20f1efe8f1eeea20e2f1e5f520efe0f0f2e8e92c20e220eaeef2eef0fbf520e2e0f8e020eef7e5f0e5e4fc20f5eee4e8f2fc2e20caebe8eaede8f2e520ecfbf8fcfe20ede020edeeece5f0e520efe0f0f2e8e82c20f7f2eee1fb20eef2eee1f0e0e7e8f2fc20e5b82e0d0a0d0acde020f1f2f0e0ede8f6e520eff0eef1eceef2f0e020efe0f0f2e8e820eae0ecede820f1f2e0e2fff2f1ff2028e82c20f1eeeef2e2e5f2f1f2e2e5ededee2c20f5eee4fb20e4e5ebe0fef2f1ff2920eff3f2b8ec20eaebe8eae020ecfbf8fcfe20ede020ebfee1eeec20f1e2eee1eee4edeeec20efe5f0e5f1e5f7e5ede8e820ebe8ede8e920e4eef1eae82e20c5f1ebe820fdf2eef220f5eee420eff0e8e2eee4e8f220ea20e2e7fff2e8fe20eae0ecede5e920eff0eef2e8e2ede8eae02c20fdf2e820eae0ecede820e1f3e4f3f220e0e2f2eeece0f2e8f7e5f1eae820f3e4e0ebe5edfb20f120e4eef1eae820f1e5f0e2e5f0eeec2e20d7f2eee1fb20f1e4e5ebe0f2fc20efe0f120e8ebe820f1e4e0f2fcf1ff2c20edf3e6edee20e8f1efeeebfce7eee2e0f2fc20f1f1fbebeae820f120f1eeeef2e2e5f2f1f2e2f3fef9e8ece820ede0e4efe8f1ffece82c20f0e0f1efeeebeee6e5ededfbe520efeee420e8e7eee1f0e0e6e5ede8e5ec20e4eef1eae82e200d0a0d0acaeee3e4e020efeef1ebe520f5eee4e020e4e8e0e3f0e0ecece020ede020f1f2f0e0ede8f6e520eee1edeee2e8ebe0f1fc20e820efeeeae0e7fbe2e0e5f220edeee2fbe920eae0ece5edfc20e8ebe820f1eeeee1f9e5ede8e520ee20efe0f1e5202f20f1e4e0f7e52c20edf3e6edee20ede0e6e0f2fc20eee4edf320e8e720eaedeeefeeea203c693e22ceca223c2f693e20e4ebff20efeee4f2e2e5f0e6e4e5ede8ff20f1e4e5ebe0ededeee3ee20f5eee4e02e20c5f1ebe820e2fb20e8e7ece5ede8ebe820f1e2eeb820ecede5ede8e52c20eceee6edee20ede0e6e0f2fc20eaedeeefeaf3203c693e22cef2ece5ede8f2fc20f5eee4223c2f693e2e, 'Y', '2010-10-18 11:24:50'),
(561, 16, 0xcae0ea20f3e4e0ebe8f2fc20e7e0eff3f9e5ededf3fe20e8e3f0f33f, 'Y', '2012-07-14 15:36:23'),
(562, 16, 0xc4ee20e4e5f1fff2eee3ee20f5eee4e02028e1e5e720eae0ecede5e920f4eef0fb292c20eaeee3e4e020e2e0f8e020eef7e5f0e5e4fc20f5eee4e8f2fc2c20efeee420e3eee1e0edeeec20e0eaf2e8e2e8e7e8f0f3e5f2f1ff20f1f1fbebeae02022d3e4e0ebe8f2fc20e8e3f0f3222e20c2fbf1f2e0e2ebe5ede8e520ede020e4eef1eaf320f4eef0eee2fbf520eae0ecede5e92028e2f0f3f7edf3fe20e8ebe820e0e2f2eeece0f2e8f7e5f1eae82920ede520e2f5eee4e8f220e220f7e8f1ebee20e4e5f1fff2e820f5eee4eee22e0d0a0d0ad3e4e0ebe5ede8e520e8e3f0fb20f2e0eae8ec20eee1f0e0e7eeec20ede8eae0ea20ede520e2ebe8ffe5f220ede020f0e5e9f2e8ede32e20cfeef1ebe520e4e5f1fff2eee3ee20f5eee4e020e8e3f0e020f3e6e520ede520eceee6e5f220e1fbf2fc20f3e4e0ebe5ede02e20cae0ea20e820e4f0f3e3e8e520e2e0e6edfbe520e4e5e9f1f2e2e8ff2c20f3e4e0ebe5ede8e520f1eef1f2eee8f220e8e720e4e2f3f520f8e0e3eee23a20e2fb20e4eeebe6edfb20efeee4f2e2e5f0e4e8f2fc20f1e2eee820e4e5e9f1f2e2e8ff2e, 'N', '2012-09-09 21:33:18'),
(1132, 16, 0xcfeef1ebe5e4ede5e520eee1edeee2ebe5ede8e53a20f7f2ee20edeee2eee3ee3f, 'Y', '2012-09-09 22:00:22'),
(563, 16, 0xcae0ea20e7e0e2e5f0f8e8f2fc20e8e3f0f33f, 'Y', '2012-07-14 15:36:23'),
(564, 16, 0xc7e0e2e5f0f8e8f2fc20e8e3f0f320eceee6edee20f2eeebfceaee20ede0203c693ef1e2eeb8ec3c2f693e20f5eee4e52e0d0a3c554c3e0d0a3c4c493ec4e2e020efeef1ebe5e4eee2e0f2e5ebfcedfbf520efe0f1e02c20e2e0f820e820e2e0f8e5e3ee20f1eeefe5f0ede8eae02e20ddf2ee202d20edeef0ece0ebfcedfbe920efeef0ffe4eeea20e7e0e2e5f0f8e5ede8ff20e8e3f0fb2e20c1f3e4e5f220e2fbe4e0ed20e7e0eff0eef120ede020efeeece5f2eaf320ecb8f0f2e2fbf520eae0ecede5e92c20efeef1ebe520f7e5e3ee20447261676f6e20efeee4f1f7e8f2e0e5f220f0e5e7f3ebfcf2e0f220e820eee1faffe2e8f220efeee1e5e4e8f2e5ebff2e20202020202020202020202020202020202020202020202020202020202020202020200d0a3c4c493ec8f1efeeebfce7eee2e0f2fc20eaedeeefeaf32022d1e4e0f2fcf1ff222e20c5f1ebe820e2fb20f1e4e0b8f2e5f1fc2c20e8e3f0e020eeeae0e7fbe2e0e5f2f1ff20eff0eee8e3f0e0ede020e820fdf2eef220eff0eee8e3f0fbf820f1eeeef2e2e5f2f1f2e2f3fef9e8ec20eee1f0e0e7eeec20eef2f0e0e6e0e5f2f1ff20ede020e2e0f8e5ec20f0e5e9f2e8ede3e52e200d0a3c4c493ecfeee4eee6e4e0f2fc2c20efeeeae020e8f1f2e5f7b8f220e2f0e5ecff2e203c693e28cdee2c20efeee6e0ebf3e9f1f2e02120c2fbe1e5f0e8f2e520eee4e8ed20e8e720e4f0f3e3e8f520e2e0f0e8e0edf2eee221293c2f693e20c5f1ebe820e2e0f8e020e8e3f0e020e7e0e2e5f0f8e8f2f1ff20e8f1f7e5f0efe0ede8e5ec20ebe8ece8f2e020e2f0e5ece5ede82c20e2e0f820f0e5e9f2e8ede320f2e0eae6e520efeeede8e7e8f2f1ff2e0d0a3c2f554c3e, 'N', '2011-02-03 11:34:58'),
(1740, 16, 0xcfeef7e5ecf320edeee2fbe920efeeebfce7eee2e0f2e5ebfc20eceee6e5f220efeeebf3f7e8f2fc20ede5f6e5ebfbe920f0e5e9f2e8ede33f, 'Y', '2011-02-03 22:34:53'),
(163, 16, 0xcbfee4e8, 'Y', '2010-10-18 11:43:00'),
(164, 16, 0xeaeef2eef0fbe520f0e0e7f0e0e1e0f2fbe2e0fef220447261676f6e, 'Y', '2010-10-18 11:43:00'),
(265, 16, 0x22c1e8e1ebe8eef2e5eae020f1fdedf1fdff22, 'Y', '2010-10-18 11:43:00'),
(267, 16, 0xcdeee2eef1f2e820e3ee, 'Y', '2010-10-18 11:43:00'),
(274, 16, 0xc8edf2e5f0e0eaf2e8e2edeee520e2e2e5e4e5ede8e5, 'Y', '2010-10-18 11:43:00'),
(275, 16, 0xddf2ee20eef2ebe8f7edfbe920f1e0e9f220e4ebff20eee1f3f7e5ede8ff2e, 'Y', '2010-10-18 11:43:00'),
(276, 16, 0xcef7e5edfc20f5eef0eef8ee20ede0efe8f1e0ededeee520e2e2e5e4e5ede8e520eef220c1f0e8f2e0edf1eaeee920e0f1f1eef6e8e0f6e8e820e3ee2e, 'Y', '2010-10-18 11:43:00'),
(291, 16, 0xc8f1f2eef0e8ff, 'Y', '2010-10-18 11:46:16'),
(292, 16, 0xcaf0e0f2eae0ff20e8f1f2eef0e8ff, 'Y', '2010-10-18 11:46:16'),
(296, 16, 0xcaede8e3e82c20e8ede2e5edf2e0f0fc20e820eff0eee3f0e0ececfb20efee20e3ee, 'Y', '2010-10-18 11:46:16'),
(297, 16, 0xc0ededeef2e8f0eee2e0edede0ff20e1e8e1ebe8eee3f0e0f4e8ff20e3ee, 'Y', '2010-10-18 11:46:16'),
(298, 16, 0xc1eeebfcf8e0ff20eaeeebebe5eaf6e8ff20eee1e7eef0eee220eaede8e320efee20e3ee, 'Y', '2010-10-18 11:46:16'),
(283, 16, 0xc3ee2de7e0e4e0f7e8, 'Y', '2010-10-18 11:46:59'),
(284, 16, 0xcff0eef0e0e1eef2eae020fdf2eee3ee20eceee6e5f220efeeeceef7fc20e2e0f8e5e920e8e3f0e52e, 'Y', '2010-10-18 11:53:35'),
(286, 16, 0xcef2eff0e0e2fcf2e520e2e0f8e820e8e3f0fb20ede020eaeeecece5edf2e8f0eee2e0ede8e52c20f7f2eee1fb20f3e7ede0f2fc2c20e3e4e520e2fb20eceee3ebe820f1fbe3f0e0f2fc20ebf3f7f8e52e, 'Y', '2010-10-18 11:53:35'),
(287, 16, 0xcef1edeee2edfbe520ffefeeedf1eae8e520e3ee2df2e5f0ece8edfb, 'Y', '2010-10-18 11:53:35'),
(294, 16, 0xd0e0f1f8e8f0e5edede0ff20e8f1f2eef0e8ff, 'Y', '2010-10-18 11:53:35'),
(301, 16, 0xd2e0eae6e520efeef8e0e3eee2fbe92e20cde5eaeef2eef0fbe520eef2ebe8f7e8ff20e220e8e3f0e52e, 'Y', '2010-10-18 11:53:35'),
(303, 16, 0xc1eeebfcf8eee920f1e5f0e2e5f020e4ebff20e8e3f0fb20e220f0e5e0ebfcedeeec20e2f0e5ece5ede8, 'Y', '2010-10-18 11:53:35'),
(463, 16, 0xd8e2e5e4f1eae8e9, 'Y', '2010-10-18 11:56:41'),
(464, 16, 0xcdeef0e2e5e6f1eae8e9, 'Y', '2010-10-18 11:56:41'),
(465, 16, 0xc0ede3ebe8e9f1eae8e9, 'Y', '2010-10-18 11:56:41'),
(466, 16, 0xcde5ece5f6eae8e9, 'Y', '2010-10-18 11:56:41'),
(467, 16, 0xd4f0e0edf6f3e7f1eae8e9, 'Y', '2010-10-18 11:56:41'),
(468, 16, 0xc8f1efe0edf1eae8e9, 'Y', '2010-10-18 11:56:41'),
(469, 16, 0xd7e5f8f1eae8e9, 'Y', '2010-10-18 11:56:41'),
(470, 16, 0xcae8f2e0e9f1eae8e920f2f0e0e4e8f6e8eeededfbe9, 'Y', '2010-10-18 11:56:41'),
(3188, 17, 0x282573206f637a656b756ab163796368206769657229, 'Y', '2013-08-22 05:31:23'),
(472, 16, 0xcae8f2e0e9f1eae8e920f3eff0eef9b8ededfbe9, 'Y', '2010-10-18 11:56:41'),
(473, 16, 0xc4e0f2f1eae8e9, 'Y', '2010-10-18 11:56:41'),
(479, 16, 0xd2e0e9f1eae8e9, 'Y', '2010-10-18 11:56:41'),
(500, 16, 0xd4e8edf1eae8e9, 'Y', '2010-10-18 11:56:41'),
(731, 16, 0xd0e5e4e0eaf2e8f0eee2e0f2fc20efe0efeae820f1eeeeeee1f9e5ede8e9, 'Y', '2010-10-18 11:56:41'),
(750, 16, 0xcaeef0e5e9f1eae8e9, 'Y', '2010-10-18 11:56:41'),
(782, 16, 0xc1eeebe3e0f0f1eae8e9, 'Y', '2010-10-18 11:56:41'),
(954, 16, 0xd0f3f1f1eae8e9, 'Y', '2010-10-18 11:56:41'),
(955, 16, 0xcef2eff3f1ea, 'Y', '2010-10-18 11:56:41'),
(997, 16, 0xcfeeebfcf1eae8e9, 'Y', '2010-10-18 11:56:41'),
(998, 16, 0xc8f2e0ebfcffedf1eae8e9, 'Y', '2010-10-18 11:56:41'),
(1003, 16, 0xc1e0f1eaf1eae8e9, 'Y', '2010-10-18 11:56:41'),
(1014, 16, 0xc8edf2e5f0ebe8ede3e2e0, 'Y', '2010-10-18 11:56:41'),
(1015, 16, 0xddf1efe5f0e0edf2ee, 'Y', '2010-10-18 11:56:41'),
(1018, 16, 0xd1ebeee2e0f6eae8e9, 'Y', '2010-10-18 11:56:41'),
(1023, 16, 0xd0f3ecfbedf1eae8e9, 'Y', '2010-10-18 11:56:41'),
(1028, 16, 0xc8e2f0e8f2, 'Y', '2010-10-18 11:56:41'),
(1029, 16, 0xcbe8ede3e2e020d4f0e0edeae020cdeee2e0, 'Y', '2010-10-18 11:56:41'),
(1030, 16, 0xc2fce5f2ede0ecf1eae8e9, 'Y', '2010-10-18 11:56:41'),
(1031, 16, 0xd1e5f0e1f1eae8e9, 'Y', '2010-10-18 11:56:41'),
(1032, 16, 0xc3f0e5f7e5f1eae8e9, 'Y', '2010-10-18 12:00:18'),
(1033, 16, 0xd3eaf0e0e8edf1eae8e9, 'Y', '2010-10-18 12:00:18'),
(1034, 16, 0xcae0f2e0ebeeedf1eae8e9, 'Y', '2010-10-18 12:00:18'),
(1035, 16, 0xcae8f2e0e9f1eae8e920f3eff0eef9b8ededfbe920285554462d3829, 'Y', '2010-10-18 12:00:18'),
(1067, 16, 0xd0eee4edeee920ffe7fbea, 'Y', '2010-10-18 12:00:18'),
(1068, 16, 0xc7ede0ede8e520ffe7fbeaeee2, 'Y', '2010-10-18 12:00:18'),
(1069, 16, 0xcde8e6e5, 'Y', '2010-10-18 12:00:18'),
(1073, 16, 0xcdf3ece5f0e0f6e8ff20f5eee4eee2, 'Y', '2010-10-18 12:00:18'),
(1074, 16, 0xcde520e8f1efeeebfce7eee2e0f2fc20edeeece5f0e020e1eeebe5e520313030, 'Y', '2010-10-18 12:00:18'),
(570, 16, 0xcef1eee1e5ededeef1f2e820f3f7b8f2e020e2f0e5ece5ede8, 'Y', '2010-10-18 12:38:14'),
(571, 16, 0xcfeef7e5ecf320e8f1efeeebfce7eee2e0ede8e520e4ede5e920eef2eff3f1eae020eee3f0e0ede8f7e5edee3f, 'Y', '2010-10-18 12:38:14'),
(572, 16, 0xc5f1ebe820e1fb20eee3f0e0ede8f7e5ede8e920ede520e1fbebee2c20f2ee20e2fb2028e8ebe820e2e0f820f1eeefe5f0ede8ea2920eceee3ebe820e1fb20f0e5e3f3ebfff0edee20e1f0e0f2fc20efee20eee4edeeecf320e4edfe20eef2eff3f1eae020e4ebff20efeeebf3f7e5ede8ff20f2e0e9ec2de0f3f2e020e220e8e3f0e52e20ddf2ee20f1e4e5ebe0ebee20e1fb20ebfee1fbe520eff0e5e4e2e0f0e8f2e5ebfcedfbe520ede0f1f2f0eee9eae820ebe8ece8f2e020e2f0e5ece5ede820e1e5f1f1ecfbf1ebe5ededfbece82e0d0a0d0acfeefdf2eeecf320447261676f6e20eee3f0e0ede8f7e8e2e0e5f220e8f1efeeebfce7eee2e0ede8e520e4ede5e920eef2eff3f1eae020f1ebe5e4f3fef9e8ece820eff0e0e2e8ebe0ece83a0d0a3c756c3e0d0a3c6c693eede0f7e0f2fbe920eef2eff3f1ea203c623eede5ebfce7ff3c2f623e20eef2ece5ede8f2fc3b3c2f6c693e0d0a3c6c693eede0f7e0e220eef2eff3f1ea2c20e2fb20f2e5ec20f1e0ecfbec20f3ece5edfcf8e0e5f2e520eaeeebe8f7e5f1f2e2ee20e4eef1f2f3efedfbf520eef2eff3f1eaedfbf520e4ede5e920efee20ece5edfcf8e5e920ece5f0e520ede020e4e2e020e4edff2e3c2f6c693e0d0a3c2f756c3e, 'Y', '2010-10-18 12:38:14'),
(575, 16, 0xc7e0f7e5ec20447261676f6e27f320eceee920e0e4f0e5f120fdebe5eaf2f0eeededeee920efeef7f2fb3f, 'Y', '2010-10-18 12:38:14'),
(576, 16, 0xd7f2eee1fb20eef2eff0e0e2e8f2fc20edeee2fbe920efe0f0eeebfc2028e5f1ebe820eeed20e1f3e4e5f220e7e0eff0eef8e5ed292e20cef2eff0e0e2eae020edeee2eee3ee20efe0f0eeebff20ede020652d6d61696c2c203c693ef3eae0e7e0ededfbe920e220eff0eef4e8ebe520efeeebfce7eee2e0f2e5ebff3c2f693e2c202d20eff0eef1f2e5e9f8e8e920ece5f2eee420eee1e5f1efe5f7e5ede8ff20e0f3f2e5edf2e8f4e8eae0f6e8e820efeeebfce7eee2e0f2e5ebff2e200d0a0d0a447261676f6e20eceee6e5f220eef2eff0e0e2ebfff2fc20ede020652d6d61696c20e8edf4eef0ece0f6e8fe20ee20efeeebf3f7e0e5ecfbf520f1eeeee1f9e5ede8fff520e820efe0f0f2e8fff52c20eaeee3e4e020ede0f1f2f3efe0e5f220e2e0f8e020eef7e5f0e5e4fc20f5eee4e02e20d4f3edeaf6e8ff203c686f6d65206661712e7068703f726561643d74266361743d313223456e7472793137333eefeef7f2eee2fbf520f3e2e5e4eeecebe5ede8e93c2f686f6d653e20eceee6e5f220e1fbf2fc20e2eaebfef7e5ede020e220e2e0f8e5ec203c686f6d6520656469745f70726f66696c652e7068703eeff0eef4e8ebe520efeeebfce7eee2e0f2e5ebff3c2f686f6d653e2e0d0a0d0a447261676f6e20f1eee1ebfee4e0e5f220eff0e8e2e0f2edeef1f2fc3a2044475320ede520f0e0f1f1fbebe0e5f220ede5eff0eef8e5ededfbf520efe8f1e5ec2e20c0e4f0e5f1e020ede520e2e8e4edfb20ede8eaeeecf32c20eeede820ede520eceee3f3f220e1fbf2fc20eaeeecf32debe8e1ee20eff0eee4e0edfb2e200d0a0d0a447261676f6e20efeee7e2eeebffe5f220efeeebfce7eee2e0f2e5ebffec203c693eede520f3eae0e7fbe2e0f2fc3c2f693e20e8f520652d6d61696c20e0e4f0e5f1e02e20c220fdf2eeec20f1ebf3f7e0e52c20efeee6e0ebf3e9f1f2e02c203c693ee1f3e4fcf2e520f3e2e5f0e5edfb3c2f693e2c20f7f2ee20ede520e7e0e1f3e4e5f2e520e2e0f820efe0f0eeebfc21, 'Y', '2010-10-18 12:38:14'),
(577, 16, 0xcae0ea20f0e0e1eef2e0e5f220f1e8f1f2e5ece020ffefeeedf1eaeee3ee20e1b8b8ece83f, 'Y', '2010-10-18 12:38:14'),
(578, 16, 0xcaeee3e4e020eef1edeee2edeee920ebe8ece8f220e2f0e5ece5ede820e8e3f0eeeae020efeeebedeef1f2fcfe20e8e7f0e0f1f5eee4eee2e0ed2c20e2fbe4e5ebffe5f2f1ff20ede5e1eeebfcf8eee920f4e8eaf1e8f0eee2e0ededfbe920eff0eeece5e6f3f2eeea20e2f0e5ece5ede820ede0203c623eeae0e6e4fbe920eef2e4e5ebfcedfbe920f5eee43c2f623e2e20c4eeefeeebede8f2e5ebfcedee20eceee6e5f220e1fbf2fc20eff0e5e4eef1f2e0e2ebe5edee20ede5f1eaeeebfceaee20efe5f0e8eee4eee23a200d0a3c554c3e0d0a3c4c493ec5f1ebe820e8e3f0eeea20f3f1efe5e2e0e5f220f1e4e5ebe0f2fc20f5eee420e7e020f3eae0e7e0ededeee520e2f0e5ecff20e1b8b8ece82c20f1f7b8f220e2f0e5ece5ede820f1e1f0e0f1fbe2e0e5f2f1ff20e820eaeeebe8f7e5f1f2e2ee20efe5f0e8eee4eee220eef1f2e0b8f2f1ff20f2e5ec20e6e52c20eae0eae8ec20e1fbebee2e3c2f4c493e0d0a3c4c493ecaeee3e4e020e8e3f0eeea20ede520f3f1efe5e2e0e5f220f1e4e5ebe0f2fc20f5eee420e7e020f3eae0e7e0ededeee520e2f0e5ecff20e1b8b8ece82c20edeeece5f020efe5f0e8eee4e020f3ece5edfcf8e0e5f2f1ff20ede020e5e4e8ede8f6f320e820eef2f1f7b8f220ede0f7e8ede0e5f2f1ff20f1edeee2e02e3c2f4c493e0d0a3c2f554c3e0d0a0d0acaeee3e4e020f320e8e3f0eeeae020ede520eef1f2e0b8f2f1ff20e1eeebfcf8e520e4eeefeeebede8f2e5ebfcedfbf520efe5f0e8eee4eee220e820e2f0e5ecff20f5eee4e020eff0eef1f0eef7e5edee2c20eeed20f1f7e8f2e0e5f2f1ff20eff0eee8e3f0e0e2f8e8ec2e, 'N', '2010-10-18 12:38:14'),
(579, 16, 0xcae0ea20f0e0e1eef2e0e5f220f1e8f1f2e5ece020eae0ede0e4f1eaeee3ee20e1b8b8ece83f, 'Y', '2010-10-18 12:38:14'),
(580, 16, 0xcaeee3e4e020e8e3f0eeea20e8e7f0e0f1f5eee4eee2e0eb20e2f1b820f1e2eeb820eef1edeee2edeee520e2f0e5ecff2c20eeed20efeeebf3f7e0e5f220ebe8ece8f220e2f0e5ece5ede8203c623eede020ede5f1eaeeebfceaee20f5eee4eee23c2f623e2e0d0a0d0acde0eff0e8ece5f03a20313020f5eee4eee220e7e020313520e4ede5e93a0d0ac5f1ebe820e8e3f0eeea20f3f1efe5e2e0e5f220efeee4f2e2e5f0e4e8f2fc2031302de920f5eee420e7e020e7e0e4e0ededeee520e2f0e5ecff2c20eef2f1f7b8f220ede0f7e8ede0e5f2f1ff20f1edeee2e02028313520e4ede5e920e4e0b8f2f1ff20ede020f1ebe5e4f3fef9e8e520313020f5eee4eee2292e0d0a0d0ac5f1ebe820e8e3f0eeea20ede520f3f1efe5eb20f1e4e5ebe0f2fc20f5eee4fb20e220e7e0e4e0ededeee520e2f0e5ecff2c20eeed20eff0eee8e3f0e0eb2e, 'N', '2010-10-18 12:38:14'),
(581, 16, 0xcae0ea20f0e0e1eef2e0e5f220f1e8f1f2e5ece020eef2f1f7b8f2e020e2f0e5ece5ede820efee20d4e8f8e5f0f33f, 'Y', '2010-10-18 12:38:14'),
(582, 16, 0xcfeef1ebe520f2eee3ee2c20eae0ea20e8e3f0eeea20f1e4e5ebe0eb20f5eee42c20ea20e5e3ee20e8e3f0eee2fbec20f7e0f1e0ec20e4eee1e0e2ebffe5f2f1ff20ede5eaeef2eef0eee520eee3eee2eef0e5ededeee52022e4eeefeeebede8f2e5ebfcedeee520e2f0e5ecff20e7e020eae0e6e4fbe920f5eee4222028edee20ede520eff0e5e2fbf8e0ff20ece0eaf1e8ece0ebfcedeee3ee20e7ede0f7e5ede8ff2c20f3eae0e7e0ededeee3ee20eae0ea203c686f6d65206661712e7068703f726561643d74266361743d353623456e74727938353eeef1edeee2edeee520e2f0e5ecff3c2f686f6d653e292e20d1ec2e20f2e0eae6e5203c686f6d65206661712e7068703f726561643d74266361743d353623456e74727934323eeef2f1f7e5f220e8e3f0eee2fbf520f7e0f1eee23c2f686f6d653e0d0a0d0acaeee3e4e020f320e8e3f0eeeae020ede5203c686f6d65206661712e7068703f726561643d74266361743d313823456e74727934313eeef1f2e0b8f2f1ff20e2f0e5ece5ede83c2f686f6d653e2c20eeed20f1f7e8f2e0e5f2f1ff20eff0eee8e3f0e0e2f8e8ec20efe0f0f2e8fe2e0d0a0d0ad2e0eae8ec20eee1f0e0e7eeec20f0e5e0ebe8e7f3e5f2f1ff2022eaeeedf2f0eeebfc20e2f0e5ece5ede820efee20d4e8f8e5f0f32220e8ebe820eff0eef1f2ee2022eaeeedf2f0eeebfc20d4e8f8e5f0e0222e, 'N', '2012-07-05 23:22:30'),
(583, 16, 0xcae0ea20e2f0e5ecff20f1ede020f1eef7e5f2e0e5f2f1ff20f120fdf4f4e5eaf2eeec20eef2f1f7b8f2e020efee20d4e8f8e5f0f33f, 'Y', '2010-10-18 12:38:14'),
(584, 16, 0xcff0e8ece5f020e4ebff20eee1fafff1ede5ede8ff3a0d0a0d0ac2fb20f5eef2e8f2e520e4e5ebe0f2fc20e220f1f0e5e4ede5ec20efee203320f5eee4e020e220ede5e4e5ebfe20f120f2e0e9ec2de0f3f2e0ece82020e220f1f3e1e1eef2f320e820e2eef1eaf0e5f1e5edfce52e200d0a0d0ad2eee3e4e0202837202d20322920e4ede5e9202a2028323420f72e202d203920f72e20e2f0e5ece5ede820f1ede029202f203320f5eee4e0203d20323520f7e0f1eee220e4eeefeeebede8f2e5ebfcedee20ede020eee4e8ed20f5eee420efee20d4e8f8e5f0f320f120e2fbeaebfef7e5ede8e5ec20f7e0f1eee220efee20e2fbf5eee4edfbec2e, 'Y', '2010-11-01 09:00:01'),
(585, 16, 0xd7f2ee20f2e0eaeee52022e2f0e5ecff20f1ede0223f, 'N', '2010-10-18 12:38:14'),
(586, 16, 0xc2ee20e2f0e5ecff2c20eeeff0e5e4e5ebb8ededeee520eae0ea2022e2f0e5ecff20f1ede02220e220e2e0f8e5ec203c686f6d6520656469745f70726f66696c652e7068703eeff0eef4e8ebe520efeeebfce7eee2e0f2e5ebff3c2f686f6d653e20e8e3f0eee2fbe520f7e0f1fb20eef1f2e0ede0e2ebe8e2e0fef2f1ff20e820fdf2ee20e2f0e5ecff20ede520e2eaebfef7e0e5f2f1ff20e220f0e0f1f7b8f22e, 'N', '2010-10-18 12:38:14'),
(300, 16, 0xc4f0f3e3e8e520e3ee2df1e5f0e2e5f0fb, 'Y', '2010-10-18 12:57:42'),
(305, 16, 0xd1efe8f1eeea20f1e5f0e2e5f0eee2, 'Y', '2010-10-18 12:57:42'),
(306, 16, 0xc1eeebe5e520efeeebedfbe920f1efe8f1eeea20f1e5f0e2e5f0eee2, 'Y', '2010-10-18 12:57:42'),
(6319, 36, 0x457ac3bc7374204b6974c3bc6e746574c3a973, 'Y', '2015-07-23 11:44:45'),
(340, 16, 0xd0e5e4e0eaf2eef020d7e0c2ee, 'Y', '2010-10-18 12:57:42'),
(377, 16, 0xcde0f7e0ebfcede0ff20f1f2f0e0ede8f6e0, 'Y', '2010-10-18 12:57:42'),
(380, 16, 0xcfeeeae0e7e0f2fc20f1eeeee1f9e5ede8e5, 'Y', '2010-10-18 12:57:42'),
(557, 16, 0xcae0ea20ede0f7e0f2fc20edeee2f3fe20efe0f0f2e8fe3f, 'Y', '2012-07-14 15:36:23'),
(558, 16, 0xc5f1f2fc20ede5f1eaeeebfceaee20f1efeef1eee1eee220ede0f7e0f2fc20edeee2f3fe20efe0f0f2e8fe3a3c554c3e0d0a3c4c493ecff0e8f1eee5e4e8ede8f2fcf1ff20ea20efe0f0f2e8e82c20eef2eaf0fbf2eee920e2203c686f6d652077616974696e675f726f6f6d2e7068703eeaeeecede0f2e520eee6e8e4e0ede8ff3c2f686f6d653e2e0d0a0d0ac8f1efeeebfce7f3e9f2e520fdf2eef220eff3f2fc2c20e5f1ebe820e2fb20e8f9e5f2e520edeee2eee3ee20f1eeefe5f0ede8eae02e20d1ede0f7e0ebe020eff0eee9e4e8f2e520efee20f1f1fbebeae5203c686f6d652077616974696e675f726f6f6d2e7068703ec8e3f0eee2eee920e7e0eb3c2f686f6d653e20e220ece5edfe2e20c2fbe1e5f0e8f2e520efe0f0f2e8fe2c20ea20eaeef2eef0eee920e2fb20f5eef2e5ebe820e1fb20eff0e8f1eee5e4e8ede8f2fcf1ff2c20e820ede0e6ece8f2e520ede020e3eeebf3e1f3fe20eaedeeefeaf32022c8edf4ee2220f1ebe5e2e020eef220ede5b82e20c220ede8e6ede5e920f7e0f1f2e820f1f2f0e0ede8f6fb20e1f3e4e5f220e2fbe2e5e4e5edee20e4e5f2e0ebfcedeee520eeefe8f1e0ede8e520f3f1ebeee2e8e920efe0f0f2e8e82e20c5f1ebe820e2fb20e4e5e9f1f2e2e8f2e5ebfcedee20f5eef2e8f2e520ea20ede5e920eff0e8f1eee5e4e8ede8f2fcf1ff2c20ede0e6ece8f2e520eaedeeefeaf32022cff0e8f1eee5e4e8ede8f2fcf1ff222e20ddf2ee20eef7e5edfc20eff0eef1f2ee2e20202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020200d0a0d0a3c4c493e3c686f6d65206661712e7068703f726561643d74266361743d33353723456e7472793231303ecef2eaf0eee9f2e520f1e2eefe20f1eee1f1f2e2e5ededf3fe20efe0f0f2e8fe3c2f686f6d653e20e2203c686f6d652077616974696e675f726f6f6d2e7068703ee8e3f0eee2eeec20e7e0ebe53c2f686f6d653e2e0d0a0d0ac5f1ebe820ede820eee4ede020e8e720f3e6e520eef2eaf0fbf2fbf520e2203c686f6d652077616974696e675f726f6f6d2e7068703ee8e3f0eee2eeec20e7e0ebe53c2f686f6d653e20efe0f0f2e8e920e2e0ec20ede520efeee4f5eee4e8f22c20e2fb20eceee6e5f2e520f1eee7e4e0f2fc20f1eee1f1f2e2e5ededf3fe20efe0f0f2e8fe2e20d7f2eee1fb20f1e4e5ebe0f2fc20fdf2ee2c20eff0eef1f2ee20e7e0efeeebede8f2e520f4eef0ecf320e2ede8e7f320f1f2f0e0ede8f6fb20e8e3f0eee2eee3ee20e7e0ebe02e20c7e0f2e5ec20ede0e6ece8f2e520eaedeeefeaf32022c4eee1e0e2e8f2fc20e8e3f0f32220e82020e6e4e8f2e52e20d1eaeef0e5e520e2f1e5e3ee2c20efe0f0f2e8ff20ede0f7edb8f2f1ff20e220e1ebe8e6e0e9f8e8e520e4ede82e0d0a3c4c493e3c686f6d65206661712e7068703f726561643d74266361743d33353723456e7472793231323ec2fbe7eee2e8f2e520e2e0f8e8f520e4f0f3e7e5e93c2f686f6d653e2e3c42523e0d0ac5f1ebe820e2e0ec20e8e7e2e5f1f2e5ed20eff1e5e2e4eeede8ec20f1eeefe5f0ede8eae02c20e2fb20eceee6e5f2e520eef2eff0e0e2e8f2fc20e5ecf320e2fbe7eee220f120efeeeceef9fcfe20f4f3edeaf6e8e8203c686f6d65206d6573736167652e7068703f6d6f64653d496e766974653e22e2fbe7eee2223c2f686f6d653e20e8e720ece5edfe2e20c7e0efeeebede8f2e520ede0f1f2f0eee9eae820e8e3f0fb20e820eef2eff0e0e2fcf2e520e8f52e20c2e0f820f1eeefe5f0ede8ea20eceee6e5f220eff0e8edfff2fc20e2fbe7eee220e8ebe820eef2eaebeeede8f2fc20e5e3ee2c20ebe8e1ee20e2f1f2f3efe8f2fc20e220efe5f0e5e3eee2eef0fb20efee20efeee2eee4f320f3f1ebeee2e8e920efe0f0f2e8e82e200d0ad2e0eae6e520f1f1fbebeae02022c2fbe7e2e0f2fc20efeeebfce7eee2e0f2e5ebff2220e8ece5e5f2f1ff20ede020eae0e6e4eee920f1f2f0e0ede8f6e520efeeebfce7eee2e0f2e5ebff2e20c5b820e8f1efeeebfce7eee2e0ede8e520efeee7e2eeebffe5f220f1e4e5ebe0f2fc20f2ee20e6e520f1e0eceee52c20edee20e1fbf1f2f0e5e52e0d0a3c2f554c3e, 'N', '2010-10-18 14:02:27'),
(631, 16, 0xcae0ea20ff20eceee3f320f3e4e0ebe8f2fc20eceeb820eff0e8e3ebe0f8e5ede8e520ede020e8e3f0f320e8e720e8e3f0eee2eee3ee20e7e0ebe03f, 'Y', '2010-10-18 14:07:36'),
(1326, 4, 0x576965206b616e6e20696368206469652046415120647572636873756368656e3f, 'N', '2010-10-18 17:04:24'),
(1327, 4, 0x4465727a6569742062696574657420447261676f6e206b65696e6520656967656e6520537563686df6676c6963686b6569742066fc72206469652046415120616e2e0d0a0d0a4d616e206b616e6e20737461747464657373656e20646965203c686f6d65206661712e7068703f726561643d74266361743d616c6c3e676573616d74652046415120696e2065696e65722053656974653c2f686f6d653e206c6164656e2c20756e64206d697468696c6665206465732042726f7773657273206e6163682064656d20676577fc6e73636874656e20426567726966662073756368656e2e, 'N', '2010-10-18 17:04:24'),
(1079, 16, 0xcfeee7e8f6e8ff, 'Y', '2010-10-18 21:57:16'),
(1080, 16, 0xc2fbf1eef2e0, 'Y', '2010-10-18 21:57:16'),
(1081, 16, 0xd8e8f0e8ede0, 'Y', '2010-10-18 21:57:16'),
(1109, 16, 0xcff0e5e4eff0eef1eceef2f0, 'Y', '2010-10-18 21:57:16'),
(1113, 16, 0xd0e5e9f2e8ede3eee2fbe520e8e3f0fb, 'Y', '2010-10-18 21:57:16'),
(1131, 16, 0xc8e7e2e8ede8f2e52c20e2e0ec20ede5eee1f5eee4e8ecee20ede520ece5ede5e520256420eef2eff3f1eaedfbf520e4ede5e92c20f7f2eee1fb20ede0f7e0f2fc20eef2eff3f1ea2e, 'Y', '2010-10-18 21:57:16'),
(1210, 16, 0xc8e7ece5ede8f2fc20ebe8f7edf3fe20e8edf4eef0ece0f6e8fe, 'Y', '2010-10-18 21:57:16'),
(1214, 16, 0xc0eaf2e8e2edfbe520efeeebfce7eee2e0f2e5ebe8, 'Y', '2010-10-18 21:57:16'),
(1218, 16, 0xd4eeed, 'Y', '2010-10-18 21:57:16'),
(1219, 16, 0xcaf0e0f1edfbe9, 'Y', '2010-10-18 21:57:16'),
(1220, 16, 0xc7e5ebb8edfbe9, 'Y', '2010-10-18 21:57:16'),
(1221, 16, 0xc3eeebf3e1eee9, 'Y', '2010-10-18 21:57:16'),
(1222, 16, 0xcff0eee7f0e0f7edeef1f2fc, 'Y', '2010-10-18 21:57:16'),
(1223, 16, 0xcfeeeae0e7e0f2fc20ede020f1f2f0e0ede8f6e520f1eef1f2eeffede8ff, 'Y', '2010-10-18 21:57:16'),
(1224, 16, 0xcfe5f0e5e4ede8e920efebe0ed, 'Y', '2010-10-18 21:57:16'),
(1225, 16, 0xcfe0efeae820e8e7ece5ede5edfb21, 'Y', '2010-10-18 21:57:16'),
(1226, 16, 0xcee1edeee2e8f2fc, 'Y', '2010-10-18 21:57:16'),
(1245, 16, 0xd1eaf0fbf2fbe9, 'Y', '2010-10-18 21:57:16'),
(1273, 16, 0xcfe0efeae020e4eeebe6ede020e1fbf2fc20eff3f1f2eee920eff0e820f3e4e0ebe5ede8e821, 'Y', '2010-10-18 21:57:16'),
(1481, 16, 0xc8edf4eef0ece0f6e8ff20ee20f0e0ede3e5, 'Y', '2010-10-18 22:01:02'),
(1482, 16, 0xc3eef2eee2fb20e8e3f0e0f2fc3f, 'Y', '2010-10-18 22:01:02'),
(1484, 16, 0xcff0eee4eeebe6e0fef9e8e5f1ff, 'Y', '2010-10-18 22:01:02'),
(1485, 16, 0xc7e0e2e5f0f8b8ededfbe5, 'Y', '2010-10-18 22:01:02'),
(1486, 16, 0xc2fbe8e3f0e0ededfbe5, 'Y', '2010-10-18 22:01:02'),
(1487, 16, 0xcff0eee8e3f0e0ededfbe5, 'Y', '2010-10-18 22:01:02'),
(1489, 16, 0xc0eaf2e8e2edeef1f2fc, 'Y', '2010-10-18 22:01:02'),
(1490, 16, 0xcfeef1ebe5e4ede5e520e4e5e9f1f2e2e8e5, 'Y', '2010-10-18 22:01:02'),
(1492, 16, 0xcde0e1ebfee4e0f2e5ebe820e7e020e8e3f0eee9202573, 'Y', '2010-10-18 22:01:02'),
(1464, 16, 0xcfeeeae0e7e0f2fc20eff0eef2e8e2ede8eaeee2, 'Y', '2010-10-18 22:03:40'),
(1467, 16, 0xcfeeeae0e7e0f2fc20eceee8f520eff0eef2e8e2ede8eaeee2, 'Y', '2010-10-18 22:03:40'),
(565, 16, 0xc7ede0eaeeecf1f2e2ee20f120447261676f6e27eeec, 'Y', '2010-10-19 12:06:55');
INSERT INTO `Translations` (`Original_ID`, `Language_ID`, `Text`, `Translated`, `Updated`) VALUES
(567, 16, 0x447261676f6e20476f20536572766572202844475329202d20fdf2ee20ece5f1f2ee2c20e3e4e520e2fb20eceee6e5f2e5203c686f6d65206661712e7068703f726561643d74266361743d3323456e7472793135323ee220efeef8e0e3eee2eeec20f0e5e6e8ece53c2f686f6d653e20e8e3f0e0f2fc20e220e3ee20f120e8e3f0eeeae0ece820f1ee20e2f1e5e3ee20ece8f0e02e20cff0e5e4eef1f2e0e2ebffe5ecfbe520e8ec20e2eee7eceee6edeef1f2e820e1eeebe5e520e8ebe820ece5ede5e520e0ede0ebeee3e8f7edfb20e8e3f0e520e220e3ee20efee20fdebe5eaf2f0eeededeee920efeef7f2e52c20edee20e4eeefeeebede8f2e5ebfcedee2044475320eee1e5f1efe5f7e8e2e0e5f220e3f0e0f4e8f7e5f1eaeee520eff0e5e4f1f2e0e2ebe5ede8e520e8e3f0eee2eee920e4eef1eae82c20f1ebe5e6e5ede8e520e7e020ebe8ece8f2e0ece820e2f0e5ece5ede82c20efeee4f1f7b8f220eef7eaeee220e820f0e5e9f2e8ede3eee22e200d0a0d0acee1fbf7edee20e8e3f0eeeae820ede02044475320e4e5ebe0fef220eeeaeeebee20effff2e820f5eee4eee220e220ede5e4e5ebfe2028e220eee4edeee920efe0f0f2e8e8292e20c220f2e0eae8f520f1ebf3f7e0fff520efe0f0f2e8e820e4ebfff2f1ff20efee20ede5f1eaeeebfceaee20ede5e4e5ebfc2e20cde5eaeef2eef0fbe520e8e3f0e0fef220ede0ecedeee3ee20e1fbf1f2f0e5e52c2044475320efeee7e2eeebffe5f220e8f1efeeebfce7eee2e0f2fc20eef7e5edfc20f8e8f0eeeae8e920e4e8e0efe0e7eeed20ebe8ece8f2eee220e2f0e5ece5ede82e20cee4ede0eaee20e8e3f0e020e220e3ee20e220f0e5e0ebfcedeeec20e2f0e5ece5ede820e7e4e5f1fc203c623eede5e2eee7eceee6ede03c2f623e2e20c8e3f0e020223c686f6d65206661712e7068703f726561643d74266361743d3323456e7472793135333ee220f0e5e0ebfcedeeec20e2f0e5ece5ede83c2f686f6d653e2220eff0e5e4efeeebe0e3e0e5f22c20f7f2ee20eee1e020e8e3f0eeeae020eee4edeee2f0e5ece5ededee20ede0f5eee4fff2f1ff20e220eeedebe0e9ede520e820eceee3f3f220e2e8e4e5f2fc20f5eee4fb20e4f0f3e320e4f0f3e3e020ede5ece5e4ebe5ededee2c20eae0ea20eff0e820ebe8f7edeee920e2f1f2f0e5f7e52e20cfe0f0f2e8ff20e220f0e5e0ebfcedeeec20e2f0e5ece5ede820e7e0ede8ece0e5f220eeeaeeebee20f7e0f1e020e8ebe820ede5ecedeee3e8ec20e1eeebfcf8e53b20e5f1ebe820eee1e020e8e3f0eeeae020fdf2eee3ee20f5eef2fff22c20fdf2ee20e2eee7eceee6edee20e820ede0204447532c20ede5f1eceef2f0ff20ede020f2ee2c20f7f2ee20fdf2eef220f1e5f0e2e5f020efeee4e4e5f0e6e8e2e0e5f220f2eeebfceaee20efeef8e0e3eee2f3fe20e8e3f0f32e20cdee20e5f1ebe820e2fb20eff0e5e4efeef7e8f2e0e5f2e520e8e3f0e0f2fc20e220e3ee20e220f0e5e0ebfcedeeec20e2f0e5ece5ede82c20e2e0ec20ebf3f7f8e520efeeeff0eee1eee2e0f2fc20e8e3f0e0f2fc20ede020eee4edeeec20e8e7203c6120687265663d22687474703a2f2f73656e736569732e786d702e6e65742f3f476f53657276657222207461726765743d225f626c616e6b223ef1e5f0e2e5f0eee23c2f613e2c20eff0e5e4eef1f2e0e2ebfffef9e8f520f2e0eaf3fe20e2eee7eceee6edeef1f2fc2c20f2e0eae8f520eae0ea203c6120687265663d22687474703a2f2f7777772e676f6b67732e636f6d2f22207461726765743d225f626c616e6b223e4b47533c2f613e20e8ebe8203c6120687265663d22687474703a2f2f7777772e70616e64616e65742e636f2e6a702f456e676c6973682f22207461726765743d225f626c616e6b223e4947533c2f613e2e0d0a0d0a44475320e8ece5e5f2203c686f6d65206661712e7068703f726561643d74266361743d33353623456e7472793237333ed1e8f1f2e5ecf320eae2eef2e8f0eee2e0ede8ff3c2f686f6d653e2c20eaeef2eef0e0ff20e2fbffe2ebffe5f220efeeebfce7eee2e0f2e5ebe5e92c20eee1f0e0f9e0fef9e8f5f1ff20ea20ede5ecf320f1ebe8f8eaeeec20f7e0f1f2ee2e20ddf2ee20ede520e2ebe8ffe5f220ede020e1eeebfcf8e8edf1f2e2ee20efeeebfce7eee2e0f2e5ebe5e92e0d0a0d0a44475320f2e0eae6e520eff0e5e4eef1f2e0e2ebffe5f2203c686f6d6520666f72756d2f3ee4e8f1eaf3f1f1e8eeededfbe520f4eef0f3ecfb3c2f686f6d653e2c20ede020eaeef2eef0fbf520eceee6edee20efeee3eee2eef0e8f2fc20ee20e3ee20e820eff0ee20f1e0ec204447532e, 'N', '2010-11-02 16:03:46'),
(568, 16, 0xd320ece5edff20ede5f220ede8eae0eae8f520e8e4e5e920eef2edeef1e8f2e5ebfcedee20eceee5e3ee20ede0f7e0ebfcedeee3ee20f0e0ede3e02e2e2e, 'Y', '2010-10-19 12:20:30'),
(569, 16, 0xc5f1ebe820e2fb20edeee2e8f7eeea20e220e3ee2c20e2eee7eceee6edee2c20e2e0ec20f1ebe5e4f3e5f220e2fbe1f0e0f2fc20eee4e8ed20e8e720f1ebe5e4f3fef9e8f520e2e0f0e8e0edf2eee23a0d0a3c756c3e0d0a20203c6c693e333020eafe3a20e5f1ebe820e2fb20e7ede0e5f2e520eff0e0e2e8ebe02c20edee20e5f9b820ede520e8e3f0e0ebe83b0d0a20203c6c693e32392d323820eafe3a20e5f1ebe820e2fb20f1fbe3f0e0ebe820ede5f1eaeeebfceaee20efe0f0f2e8e93b0d0a20203c6c693e32372d323620eafe3a20e5f1ebe820e2fb20e2fbe8e3f0e0ebe820ede5f1eaeeebfceaee20efe0f0f2e8e920eff0eef2e8e220e8e3f0eeeaeee220eff0e8e1ebe8e7e8f2e5ebfcedee20fdf2eee3ee20f3f0eee2edff3b0d0a20203c6c693e32352d323220eafe3a20e5f1ebe820e2fb20e2fbe8e3f0e0ebe820ede5f1eaeeebfceaee20efe0f0f2e8e920eff0eef2e8e220e8e3f0eeeaeee220eff0e8e1ebe8e7e8f2e5ebfcedee20fdf2eee3ee20f3f0eee2edff2e0d0a3c2f756c3e0d0ac5f1ebe820e2fb20e4f3ece0e5f2e52c20f7f2ee20e2e0f820f0e0ede320e2fbf8e52032326b2c20edee20ede520f3e2e5f0e5edfb20e220e5e3ee20e1eeebe5e520f2eef7edeeec20eeeff0e5e4e5ebe5ede8e82c20efeeeff0eee1f3e9f2e520eeeff0e5e4e5ebe8f2fc20e2e0f820f0e0ede320e220eeedebe0e9ede520f120efeeeceef9fcfe203c4120485245463d22687474703a2f2f706c61792e626164756b2e6f72672f223efdf2eee3ee20f1e0e9f2e03c2f413e2e0d0a0d0acfeee6e0ebf3e9f1f2e02c20e2eee7e4e5f0e6e8f2e5f1fc20eef220f3eae0e7e0ede8ff20e2fbf1eeeaeee3ee20f0e0ede3e02028ede0eff0e8ece5f02c20223620e4e0ed22292c20e5f1ebe820f2eeebfceaee20e2fb20ede520f3e2e5f0e5edfb2c20f7f2ee20e4e5e9f1f2e2e8f2e5ebfcedee20f1eeeef2e2e5f2f1f2e2f3e5f2e520f2e0eaeeecf320f3f0eee2edfe2e20cee4ede0e6e4fb20e7e0e4e0ededfbe92c20e2e0f820ede0f7e0ebfcedfbe920f0e0ede320e1eeebe5e5203c623eede520eceee6e5f23c2f623e20e1fbf2fc20e8e7ece5edb8ed2e20cbf3f7f8e520e2fbe1e8f0e0f2fc20f0e0ede320ede5f1eaeeebfceaee20ede8e6e520f1e2eee5e3ee20f0e5e0ebfcedeee3ee20f3f0eee2edff2c20e5f1ebe820e2fb20e5e3ee20e7ede0e5f2e52e20c5f1ebe820e2fb20e2f1b820e5f9b820ede520f3e2e5f0e5edfb2c20eae0eaeee920f0e0ede320f3eae0e7e0f2fc2c20eceee6e5f2e520efeeeff0eee1eee2e0f2fc20eee1f0e0f2e8f2fcf1ff20e7e020efeeeceef9fcfe20ede0203c686f6d6520666f72756d2f6c6973742e7068703f666f72756d3d323ef4eef0f3ec20efeee4e4e5f0e6eae83c2f686f6d653e, 'N', '2010-10-19 12:20:30'),
(591, 16, 0xcceee3f320ff20e4eee1e0e2e8f2fc20e2f0e5ecff20ede020f1e2eee8f520e8e3f0eee2fbf520f7e0f1e0f53f, 'Y', '2010-10-19 12:25:58'),
(592, 16, 0xcde5f22c20ede520eceee6e5f2e52c20edee20e2e0f820f1eeefe5f0ede8ea20eceee6e5f220e4eee1e0e2e8f2fc20e2e0ec20e2f0e5ece5ede82e200d0a0d0ad1f7e8f2e0e5f2f1ff20ede5eee1fbf7edfbec20e820ede5e2e5e6ebe8e2fbec20eff0eef1e8f2fc20e2f0e5ecff20f320f1eeefe5f0ede8eae020f2eeebfceaee20e4ebff20f2eee3ee2c20f7f2eee1fb20efeeebf3f7e8f2fc20e1eeebfcf8e520e2f0e5ece5ede820e4ebff20f0e0e7ecfbf8ebe5ede8e92c20f2e0ea20f7f2ee20ede520f3e4e8e2ebffe9f2e5f1fc20e820ede520eee1e8e6e0e9f2e5f1fc2c20e5f1ebe820f1eeefe5f0ede8ea20eef2eae0e6e5f220e2e0ec20e220f2e0eaeee920eff0eef1fce1e52e, 'Y', '2010-10-19 12:25:58'),
(573, 16, '', 'Y', '2012-07-15 21:20:17'),
(574, 16, '', 'Y', '2012-07-15 21:20:17'),
(587, 16, 0xcfeef7e5ecf320e2f0e5ecff20ede020eceee8f520e8e3f0eee2fbf520f7e0f1e0f520f3ece5edfcf8e8ebeef1fc20ede0203920f7e0f1eee220e7e020313020ece8edf3f23f, 'Y', '2010-10-21 13:00:46'),
(588, 16, 0xc5f1ebe820f1f2f0e5ebeae820f7e0f1eee220eff0fbe3e0fef22c20e7ede0f7e8f22c20c2e0ec20edf3e6edee20ede5ecedeee3ee20efeef1efe0f2fc203a2d290d0a0d0ac220e4e5e9f1f2e2e8f2e5ebfcedeef1f2e82c20e8e3f0eee2fbe520f7e0f1fb20f1f7e8f2e0fef220e2f0e5ecff20e220f7e0f1e0f52c20e020efeeeae0e7fbe2e0fef220eef1f2e0e2f8e5e5f1ff20e2f0e5ecff20e220e4edfff520e820f7e0f1e0f520f120f3f7b8f2eeec20e2f0e5ece5ede820f1ede020283920f7e0f1eee220e220f1f3f2eae8292e20cfeefdf2eeecf32c20eaeee3e4e020f7e0f1fb20efe5f0e5f5eee4fff220f7e5f0e5e72022f1f3f2eef7edeee52220e4e5ebe5ede8e52c20e220efeeeae0e7e0ede8fff520f1f0e0e7f320e6e520f3f7e8f2fbe2e0e5f2f1ff20e2f0e5ecff20f1ede020ede5f6e5ebfbf520f1f3f2eeea2e200d0a0d0acde0eff0e8ece5f03a0d0a0d0acde020e8e3f0eee2fbf520f7e0f1e0f520eef1f2e0b8f2f1ff20f0eee2edee203320e4edff20e2f0e5ece5ede82c20fdf2ee20eee7ede0f7e0e5f22c20f7f2ee20f320c2e0f120e5f1f2fc2033202a202832342d3929203d20343520f7e0f1eee220f120f3f7b8f2eeec20e2f0e5ece5ede820f1ede02e0d0a0d0acaeee3e4e020e8e3f0eee2fbe520f7e0f1fb20efeeeae0e7fbe2e0fef2203220e4edff20e820313420f7e0f1eee22c20fdf2ee20eee7ede0f7e0e5f22c20f7f2ee20f320e2e0f120eef1f2e0ebeef1fc2032202a202832342d3929202b203134203d2034342028f2e0eae6e520f120f3f7b8f2eeec20e2f0e5ece5ede820f1ede0292e0d0a0d0ad2e0eae8ec20eee1f0e0e7eeec2c20ece5edfcf8e520f7e5ec20e7e020f7e0f120efeeeae0e7e0ede8ff2022c720e4edff2220f1ece5edfff2f1ff20ede020223220e4edff20313420f7e0f1eee2222e, 'Y', '2010-10-21 13:00:46'),
(589, 16, 0xcfeef7e5ecf320ff20ede520eceee3f320ece5edfff2fc20e2f0e5ecff20f1ede020e220eceee8f520ede0f1f2f0eee9eae0f53f, 'Y', '2010-10-21 13:00:46'),
(590, 16, 0xcfeef2eeecf320f7f2ee20e8e7ece5ede5ede8e520e5e3ee20f2f0e8e6e4fb20e220f1f3f2eae820f0e0e2edeee7ede0f7edee20eef1f2e0edeee2eae520e2e0f8e8f520e8e3f0eee2fbf520f7e0f1eee22e20c2fb20eceee6e5f2e520e8e7ece5edfff2fc20e2f0e5ecff20f1ede020f2eeebfceaee20e220f2eeec20f1ebf3f7e0e52c20e5f1ebe820ede520e4e5ebe0ebe820fdf2eee3ee20ede5e4e0e2edee2e, 'Y', '2010-10-21 13:00:46'),
(593, 16, 0xcceee3f320ebe820ff20e4eee1e0e2e8f2fc20e2f0e5ece5ede820ede020e8e3f0eee2fbf520f7e0f1e0f520f1eeefe5f0ede8eae03f, 'Y', '2010-10-22 07:13:44'),
(594, 16, 0xc4e02c20e2fb20eceee6e5f2e520e4eee1e0e2e8f2fc20e2f0e5ecff20ede020e8e3f0eee2fbf520f7e0f1e0f520f1eeefe5f0ede8eae020e220ebfee1eee520e2f0e5ecff2e20c4ebff20fdf2eee3ee20eff0eee9e4e8f2e520efee20f1f1fbebeae520e2ede8e7f320f1f2f0e0ede8f6fb20e0eaf2e8e2edeee920efe0f0f2e8e82022c4eee1e0e2e8f2fc20e2f0e5ecff20eff0eef2e8e2ede8eaf3222e20c2fb20eceee6e5f2e520e4eee1e0e2e8f2fc20e4ede820ea20eef1edeee2edeeecf320e2f0e5ece5ede82c20e020f2e0eae6e520f1e1f0eef1e8f2fc20f1f7b8f2f7e8ea20e8e7f0e0f1f5eee4eee2e0ededfbf520e1b8b8ece82defe5f0e8eee4eee22c20e5f1ebe820e8f1efeeebfce7f3e5f2f1ff20eaeeedf2f0eeebfc20e2f0e5ece5ede820f120e1b8b8ece82028edee20ede520e4ebff20eaeeedf2f0eeebff20d4e8f8e5f0e0292e20c4eee1e0e2ebe5ededeee520e2f0e5ecff20e1f3e4e5f220eef2eee1f0e0e6e0f2fcf1ff20e220f0e0e7e4e5ebe520e8edf4eef0ece0f6e8e820eee120e8e3f0e520ede020f1f2f0e0ede8f6e520efe0f0f2e8e82e, 'N', '2010-10-22 07:13:44'),
(595, 16, 0xd7f2ee20f2e0eaeee520eef2eff3f1eaedfbe520e4ede83f, 'Y', '2010-10-22 07:13:44'),
(596, 16, 0xc2fb20eceee6e5f2e520eff0e8eef1f2e0edeee2e8f2fc20ede020ede5eaeef2eef0eee520e2f0e5ecff20e2f1e520f1e2eee820e8e3f0eee2fbe520f7e0f1fb20e2ee20e2f1e5f520e0eaf2e8e2edfbf520efe0f0f2e8fff52c20e5f1ebe820f5eef2e8f2e520f3f1f2f0eee8f2fc20f1e5e1e520efe5f0e5f0fbe220e220e8e3f0e0f520e8ebe820e220f1ebf3f7e0e520ede5eee6e8e4e0ededfbf520e6e8e7ede5ededfbf520eff0eee1ebe5ec2c20ece5f8e0fef9e8f520e2e0ec20e8e3f0e0f2fc2e200d0a0d0ad7f2eee1fb20e7e0efebe0ede8f0eee2e0f2fc20e820ede0f7e0f2fc20eef2eff3f1ea2c20e2eef1efeeebfce7f3e9f2e5f1fc20f1f1fbebeaeee9203c686f6d6520656469745f7661636174696f6e2e7068703e22cde0f7e0f2fc20eef2eff3f1ea223c2f686f6d653e2020ede020f1f2f0e0ede8f6e520e2e0f8e5e9203c686f6d652075736572696e666f2e7068703ee0edeae5f2fb3c2f686f6d653e2e20c2e0f820f1f2e0f2f3f12022c220eef2eff3f1eae52220e820eef1f2e0e2f8e5e5f1ff20e2f0e5ecff20eef2eff3f1eae020e1f3e4f3f220efeeeae0e7e0edfb20ede020f1f2f0e0ede8f6e520e0edeae5f2fb2c20ede0eff0e8ece5f03a203c74743e3420e4ede5e920e8203320f7e0f1eee220eef1f2e0ebeef1fc3c2f74743e2e, 'Y', '2010-10-22 07:13:44'),
(597, 16, 0xc1b8b8ece8, 'Y', '2010-10-22 07:30:24'),
(598, 16, 0xcee3f0e0ede8f7e5ede8e520e2f0e5ece5ede82c20eaeef2eef0eee520eff0e8ece5edffe5f2f1ff20efeef1ebe520f2eee3ee2c20eae0ea20eef1edeee2edeee520e2f0e5ecff20e7e0eaeeedf7e8ebeef1fc2e, 'Y', '2010-10-22 07:30:24'),
(599, 16, 0xcae0eaeee920f7e0f1eee2eee920efeefff120e8f1efeeebfce7f3e5f2f1ff20e4ebff20f3f7b8f2e020eceee5e3ee20e2f0e5ece5ede820f1ede03f, 'Y', '2010-10-22 07:30:24'),
(600, 16, 0x447261676f6e20e8f1efeeebfce7f3e5f220e2e0f820f1eee1f1f2e2e5ededfbe920f7e0f1eee2eee920efeefff12028e820ebe5f2ede5e52fe7e8ecede5e520e2f0e5ecff292c20eaeef2eef0fbe920e2fb20f1e0ece820f3eae0e7e0ebe820e220f1e2eee5e9203c686f6d6520656469745f70726f66696c652e7068703ee0edeae5f2e53c2f686f6d653e2e, 'Y', '2010-10-22 07:30:24'),
(601, 16, '', 'Y', '2012-07-15 21:20:17'),
(602, 16, 0x534746202d20fdf2ee20f1eeeaf0e0f9e5ede8e520eef22022536d6172742047616d6520466f726d617422202d20f4eef0ece0f220f4e0e9ebe020e4ebff20e7e0efe8f1e820efe0f0f2e8e920e220e3ee20e820e4f0f3e3e8e520ede0f1f2eeebfcedfbe520e8e3f0fb2e20cde5eaeef2eef0fbe520eff0eee3f0e0ececfb2c20efeee4e4e5f0e6e8e2e0fef9e8e520fdf2eef220f4eef0ece0f22c20efe5f0e5f7e8f1ebe5edfb203c686f6d65206661712e7068703f726561643d74266361743d33363523456e74727934333ee7e4e5f1fc3c2f686f6d653e2e0d0a0d0ac4ebff20efeeebf3f7e5ede8ff20e4eeefeeebede8f2e5ebfcedeee920e8edf4eef0ece0f6e8e820f1ec2e203c6120687265663d22687474703a2f2f7777772e7265642d6265616e2e636f6d2f7367662f22207461726765743d225f626c616e6b223eeef4e8f6e8e0ebfcedeee520eeefe8f1e0ede8e520f1efe5f6e8f4e8eae0f6e8e8203c74743e5347462046465b345d3c2f74743e3c2f613e2e, 'Y', '2010-10-22 07:30:24'),
(603, 16, 0xcfeef7e5ecf320447261676f6e20ede520eceee6e5f220f1eeeee1f9e8f2fc20ecede520e0e4f0e5f120fdebe5eaf2f0eeededeee920efeef7f2fb20eff0eef2e8e2ede8eae03f, 'Y', '2010-10-22 07:52:10'),
(604, 16, 0xcfeef2eeecf320f7f2ee20447261676f6e20f3e2e0e6e0e5f220eff0e0e2ee20e2e0f8e5e3ee20eff0eef2e8e2ede8eae02028eae0ea20e820e2e0f8e520eff0e0e2ee2920ede020ede5eff0e8eaeef1edeee2e5ededeef1f2fc20f7e0f1f2edeee920e6e8e7ede82e0d0a0d0ac5f1ebe820e2fb20f5eef2e8f2e520f3e7ede0f2fc20ee20e2e0f8e5ec20eff0eef2e8e2ede8eae520f7f2ee2debe8e1ee20f1e2e5f0f520f2eee3ee20f7f2ee20f3eae0e7e0edee20e220e5e3ee20e0edeae5f2e5202d20f1eff0eef1e8f2e520e5e3ee20eee120fdf2eeec20f1e0ece82e, 'Y', '2010-10-22 07:52:10'),
(607, 16, 0xcceee3f320ebe820ff20f3f7e0f1f2e2eee2e0f2fc20e220f0e0e7f0e0e1eef2eae520447261676f6e27e03f, 'Y', '2010-10-22 08:06:19'),
(608, 16, 0xc4e02c20eaeeede5f7edee2e20c2fb20e4eeebe6edfb20e4ebff20fdf2eee3ee20e7ede0f2fc20eff0e0e2e8ebe020e3ee2c2050485020e8204d7953514c2e0d0a0d0acfeee6e0ebf3e9f1f2e02c20eee1f0e0f2e8f2e5f1fc20ea203c4120485245463d22687474703a2f2f736f75726365666f7267652e6e65742f70726f6a656374732f647261676f6e676f73657276657222205441524745543d225f626c616e6b223ef1f2f0e0ede8f6e520f0e0e7f0e0e1eef2eae820447261676f6e27e020ede020536f75726365466f7267653c2f413e2e, 'N', '2010-10-22 08:06:19'),
(621, 16, 0xcfeeeae0e7e0f2fc20e2e5f1fc20d7e0c2ee20ede020eee4edeee920f1f2f0e0ede8f6e5, 'Y', '2010-10-22 08:06:19'),
(622, 16, 0xd2f3f0ede8f0fb20447261676f6e27e0, 'Y', '2010-10-22 08:06:19'),
(623, 16, '', 'Y', '2012-07-15 21:20:17'),
(624, 16, 0xcff0e8e2e5f2f1f2e2e8e520eff0eef2e8e2ede8eae020efe5f0e5e420ede0f7e0ebeeec20efe0f0f2e8e82c20e1f3eae2e0ebfcedee20eee7ede0f7e0e5f22022d5eef0eef8e5e920e8e3f0fb222e, 'Y', '2010-10-22 08:06:19'),
(625, 16, 0x447261676f6e20efeee4e4e5f0e6e8e2e0e5f220f2f3f0ede8f0fb20ede5efeef1f0e5e4f1f2e2e5ededee3f, 'Y', '2010-10-22 08:06:19'),
(626, 16, 0xcde5f22c20efeeeae020ede5f22e, 'Y', '2010-10-22 08:06:19'),
(627, 16, 0xc4ebff20f7e5e3ee20edf3e6e5ed20e8ede4e8eae0f2eef02022e0eaf2e8e2edeef1f2fc223f, 'Y', '2010-10-22 08:06:19'),
(628, 16, 0xceed20efeeeae0e7fbe2e0e5f22c20eae0ea20f7e0f1f2ee20e8e3f0eeea20efeef1e5f9e0e5f220447261676f6e20e820eae0ea20ecedeee3ee20f5eee4eee220f1e4e5ebe0edee20e7e020efeef1ebe5e4ede5e520e2f0e5ecff2e0d0a0d0a3220e7e5ebb8edfbe520e7e2b8e7e4eef7eae8202d20ecedeee3ee20f5eee4eee22028e1eeebe5e520373020f5eee4eee220e7e020ece5f1fff6290d0a3120eef0e0ede6e5e2e0ff20e7e2b8e7e4eef7eae0202d20f1f0e5e4ede5e520f7e8f1ebee20f5eee4eee22028eef2203520e4ee20373020e220ece5f1fff6290d0ae7e2b8e7e4eef7e5ea20ede5f2202d20eef7e5edfc20ece0ebee20f5eee4eee22028ece5ede5e5203520e220ece5f1fff629, 'Y', '2010-10-22 08:06:19'),
(629, 16, 0xd7f2ee20eee7ede0f7e0e5f220efe0f0e0ece5f2f02022cff0eef6e5edf22220f320efeeebfce7eee2e0f2e5ebff3f, 'Y', '2010-10-22 09:05:20'),
(630, 16, 0xddf2ee20eef2edeef8e5ede8e520f7e8f1ebe020e2fbe8e3f0e0ededfbf520e820eff0eee8e3f0e0ededfbf520e7e0e2e5f0f8b8ededfbf520f0e5e9f2e8ede3eee2fbf520efe0f0f2e8e92c20eeedee20eceee6e5f220e1fbf2fc20efeeebe5e7edee20e4ebff20efeeebf3f7e5ede8ff20ede5eaeef2eef0eee920e4eeefeeebede8f2e5ebfcedeee920e8edf4eef0ece0f6e8e820ee20f0e5e0ebfcedeeec20f0e5e9f2e8ede3e520e8e3f0eeeae02e20caeeebe8f7e5f1f2e2ee203c686f6d65206661712e7068703f726561643d74266361743d3323456e7472793234303eede8f7fce8f53c2f686f6d653e20f2e0eae6e520eff0e8ede8ece0e5f2f1ff20e2ee20e2ede8ece0ede8e52e0d0a0d0ac5f1ebe820f320e8e3f0eeeae020e4eef1f2e0f2eef7edeee520eaeeebe8f7e5f1f2e2ee20e7e0e2e5f0f8b8ededfbf520f0e5e9f2e8ede3eee2fbf520e8e3f02c20f2ee20e7ede0f7e5ede8e520efe0f0e0ece5f2f0e020efeef0ffe4eae02035302520efeeeae0e7fbe2e0e5f22c20f7f2ee20f0e5e9f2e8ede320e8e3f0eeeae020eef2f0e0e6e0e5f220e5e3ee20f0e5e0ebfcedf3fe20f1e8ebf32e20c7ede0f7e5ede8e520e1eeebe5e52037352520e3eee2eef0e8f220ee20f2eeec2c20f7f2ee20f0e5e9f2e8ede320e8e3f0eeeae020f1ebe8f8eaeeec20ede8e7eeea2c20e020e7ede0f7e5ede8e520ede8e6e520323525202d20f7f2ee20f0e5e9f2e8ede320f1ebe8f8eaeeec20e2fbf1eeea2e, 'Y', '2010-10-22 09:05:20'),
(645, 16, 0xd5eef1e8, 'Y', '2010-10-22 09:16:05'),
(646, 16, 0xd5eef1e8272028f3e4e0f0e5ede8e520ede020e2f2eef0eeec20f1ebeee3e529202d20e1f3eae2e0ebfcedee20efee2dffefeeedf1eae8202d2022e7e2e5e7e4e0222e20c220e3ee20e8ece5e5f220e4e2e020e7ede0f7e5ede8ff2e20c220eee1f9e5ec20f1ebf3f7e0e520fdf2ee20eee4e8ed20e8e7203920eff3edeaf2eee22c20eaf3e4e020f1f2e0e2fff2f1ff20f4eef0eee2fbe520eae0ecede82028eff3edeaf2fb20342d3420e220eae0e6e4eeec20f3e3ebf32c20342d313020ede020eae0e6e4eee920f1f2eef0eeede520e82031302d3130202d20f6e5edf2f020e4eef1eae8292e20c1eeebe5e520f1efe5f6e8f4e8f7e5f1eaeee520e7ede0f7e5ede8e5202d20f2eeebfceaee20eff3edeaf2fb20342d3420e220f3e3ebe0f520ede020e4eef1eae5203139783139, 'Y', '2010-10-22 09:16:05'),
(655, 16, 0xd2fdede3fded, 'Y', '2010-10-22 09:16:05'),
(656, 16, 0xd6e5edf2f0e0ebfcedfbe920eff3edeaf220e8e3f0eee2eee920e4eef1eae82e20c4ebff20e4eef1eae820313978313920fdf2ee20eff3edeaf22031302d31302e, 'Y', '2010-10-22 09:16:05'),
(657, 16, 0xc3eee1e0ed, 'Y', '2010-10-22 09:16:05'),
(658, 16, 0xc4eef1eae020e4ebff20e3ee2028f0e5e0ebfcede0ff20e8ebe820e2e8f0f2f3e0ebfcede0ff29, 'Y', '2010-10-22 09:16:05'),
(632, 16, 0xcde0e6ece8f2e520ede020e8edf4eef0ece0f6e8eeededf3fe20eaedeeefeaf3203c693ee2e0f8e5e3ee3c2f693e20e2fbe7eee2e020ede020e8e3f0f32e20c2ede8e7f320eef2eee1f0e0e6b8ededeee920f1f2f0e0ede8f6fb20e8ece5e5f2f1ff20eaedeeefeae020f3e4e0ebe5ede8ff20efe0f0f2e8e82e20c5f1ebe820ede8eaf2ee20ede520eff0e8edffeb20e2fbe7eee2e020ede020e8e3f0f320e220f2e5f7e5ede8e520ede5f1eaeeebfceae8f520ede5e4e5ebfc2c20e2fbe7eee220f3e4e0ebffe5f2f1ff20e0e2f2eeece0f2e8f7e5f1eae82e, 'Y', '2010-10-22 11:44:29'),
(633, 16, 0xd7f2ee20f2e0eaeee52022cde8e3e8f0e820e220f0e0e2edeee920e8e3f0e5223f, 'Y', '2010-10-22 11:44:29'),
(634, 16, 0x3c686f6d65206661712e7068703f726561643d74266361743d3323456e7472793135343ed0e0e2ede0ff20e8e3f0e03c2f686f6d653e20eff0e5e4efeeebe0e3e0e5f22c20f7f2ee20efe0f0f2e8ff20ede0f7e8ede0e5f2f1ff20e1e5e7203c686f6d65206661712e7068703f726561643d74266361743d33353723456e74727939373ef4eef0eee2fbf520eae0ecede5e93c2f686f6d653e2e203c686f6d65206661712e7068703f726561643d74266361743d3323456e74727932313ecde8e3e8f0e83c2f686f6d653e20eee7ede0f7e0e5f22c20f7f2ee20f6e2e5f220eae0ecede5e920e2fbe1e8f0e0e5f2f1ff20f1ebf3f7e0e9edfbec20eee1f0e0e7eeec2e, 'Y', '2010-10-22 11:44:29'),
(635, 16, 0xcfeef7e5ecf320ede5eaeef2eef0fbe520efeeebfce7eee2e0f2e5ebe820ede520f3eae0e7e0edfb20e220d1efe8f1eae520efeeebfce7eee2e0f2e5ebe5e93f, 'Y', '2010-10-22 11:44:29'),
(636, 16, 0xcfee20f3eceeebf7e0ede8fe20447261676f6e20ede520eef2eee1f0e0e6e0e5f220ede5e0eaf2e8e2edfbf520efeeebfce7eee2e0f2e5ebe5e92e20ddf2ee20efeee2e5e4e5ede8e520e7e0e4e0b8f2f1ff203c686f6d65206661712e7068703f726561643d74266361743d32303023456e7472793234363ef4e8ebfcf2f0eeec3c2f686f6d653e202d20e2fbefe0e4e0fef9e8ec20f1efe8f1eaeeec20e220e3f0e0f4e52022c0eaf2e8e2edfbe92220e7e0e3eeebeee2eae020f2e0e1ebe8f6fb20efeeebfce7eee2e0f2e5ebe5e92c20eaeef2eef0fbe920eceee6edee20efe5f0e5eaebfef7e0f2fc20ece5e6e4f320eef2eee1f0e0e6e5ede8e5ec20f2eeebfceaee20e0eaf2e8e2edfbf520ebe8e1ee20e2f1e5f52028e0eaf2e8e2edfbf520e820ede5e0eaf2e8e2edfbf52920efeeebfce7eee2e0f2e5ebe5e92e, 'Y', '2010-10-22 11:44:29'),
(637, 16, 0xd7f2ee20f2e0eaeee520eef1edeee2edeee520e2f0e5ecff3f, 'Y', '2010-10-22 11:44:29'),
(638, 16, 0xc8f1f5eee4edfbe920ebe8ece8f220e2f0e5ece5ede82c20e2fbe4e0e2e0e5ecfbe920eae0e6e4eeecf320e8e720f1eeefe5f0ede8eaeee220ede020e8e3f0f32e200d0a0d0acaeee3e4e020f320e8e3f0eeeae020e8f1f2e5eae0e5f220eef1edeee2edeee520e2f0e5ecff2c20efe0f0f2e8ff2e2e2e0d0a3c756c3e0d0a3c6c693e2e2e2e20f1f7e8f2e0e5f2f1ff20eff0eee8e3f0e0ededeee920fdf2e8ec20e8e3f0eeeaeeec2c20e5f1ebe820e220ede0f1f2f0eee9eae0f520ede520f3f1f2e0edeee2ebe5edee20e4eeefeeebede8f2e5ebfcedeee520e2f0e5ecff3b0d0a3c6c693e2e2e2e20eff0eee4eeebe6e0e5f2f1ff2c20e5f1ebe820e220ede0f1f2f0eee9eae0f520efe0f0f2e8e820e7e0e4e0edee20e4eeefeeebede8f2e5ebfcedeee520e2f0e5ecff2020e220e2e8e4e5203c686f6d65206661712e7068703f726561643d74266361743d3323456e74727936373effefeeedf1eaeee3ee20e1b8b8ece83c2f686f6d653e2c203c686f6d65206661712e7068703f726561643d74266361743d353623456e74727935383eeae0ede0e4f1eaeee3ee20e1b8b8ece83c2f686f6d653e20e8ebe8203c686f6d65206661712e7068703f726561643d74266361743d353623456e74727935393ee2f0e5ece5ede820efee20d4e8f8e5f0f33c2f686f6d653e2e0d0a3c2f756c3e, 'Y', '2010-10-22 11:44:29'),
(639, 16, 0xcaf2ee20f1f2eee8f220e7e020447261676f6e27eeec3f, 'Y', '2010-10-22 11:44:29'),
(640, 16, 0x447261676f6e20476f20536572766572202844475329202d20ede5eaeeecece5f0f7e5f1eae8e920eff0eee5eaf220f120eef2eaf0fbf2fbece820e8f1f5eee4edfbece820eaeee4e0ece82c20f0e0e7e2e8e2e0e5ecfbe920eaeeece0ede4eee920ebfee4e5e92c20eaeef2eef0fbec20edf0e0e2e8f2f1ff20efeef8e0e3eee2eee520e3ee2e0d0a0d0acff0eee5eaf22044475320e1fbeb20e8ede8f6e8e8f0eee2e0ed20e8203c6120687265663d22687474703a2f2f736f75726365666f7267652e6e65742f70726f6a6563742f6d656d6265726c6973742e7068703f67726f75705f69643d323939333322207461726765743d225f626c616e6b223eefeee4e4e5f0e6e8e2e0e5f2f1ff3c2f613e20efeeebfce7eee2e0f2e5ebe5ec203c75736572203d656a6c6f3e2e20c2f1e520e4f0f3e3e8e520f1eeeff0eee2eee6e4e0fef9e8e52c20e0e4ece8ede8f1f2f0e0f2eef0fb2c20f0e0e7f0e0e1eef2f7e8eae820e820efe5f0e5e2eee4f7e8eae820efe5f0e5f7e8f1ebe5edfb20ede0203c686f6d652070656f706c652e7068703e436f6e7472696275746f727320706167653c2f686f6d653e2e0d0a0d0ad7e0c2ee20eef1edeee2e0ed20ede0203c423ee2e0f8e8f53c2f423e20e7e0eff0eef1e0f520e23c686f6d6520666f72756d2f6c6973742e7068703f666f72756d3d333ef4eef0f3ece5204641513c2f686f6d653e2e, 'Y', '2010-10-22 11:44:29'),
(661, 16, 0xd7f2ee20f2e0eaeee520f4eef0e02028e3e0ede4e8eae0ef293f, 'Y', '2010-10-22 11:44:29'),
(662, 16, 0xc5f1ebe820f1eeefe5f0ede8eae820f1e8ebfcedee20f0e0e7ebe8f7e0fef2f1ff20efee20f3f0eee2edfe2c20eeede820eceee3f3f220e4eee3eee2eef0e8f2fcf1ff2c20f7f2ee20e8e3f0e020ede0f7e8ede0e5f2f1ff20f120ede5eaeef2eef0fbec20eaeeebe8f7e5f1f2e2eeec20e4eeefeeebede8f2e5ebfcedfbf52022f4eef0eee2fbf52220eae0ecede5e92c20eaeef2eef0fbe520f1ebe0e1e5e9f8e8e920e8e3f0eeea20e2fbf1f2e0e2ebffe5f220ede020e4eef1eaf320efe5f0e5e420ede0f7e0ebeeec20efe0f0f2e8e82e20d4eef0eee2fbe520eae0ecede820e2f1e5e3e4e020efeeebf3f7e0fef220f7b8f0edfbe52e20cff0e820eff0e0e2e8ebfcedeeec20e2fbe1eef0e520f7e8f1ebe020eae0ecede5e920eeede820eaeeecefe5edf1e8f0f3fef220f0e0e7ede8f6f320e220f1e8ebe520e8e3f0fb20e820eee1e020f1eeefe5f0ede8eae020efeeebf3f7e0fef220f0e0e2edfbe520f8e0edf1fb20ede020e2fbe8e3f0fbf82e0d0a0d0acde020e4eef1eae520313978313920f0e0e7ece5f020f4eef0fb20efee20f2f0e0e4e8f6e8e820f1eeeef2e2e5f2f1f2e2f3e5f220f0e0e7ede8f6e520e220f0e0ede3e0f52e20c4ebff20e4eef1eeea20e4f0f3e3e8f520f0e0e7ece5f0eee220447261676f6e20e8e7ece5edffe5f220f0e0e7ece5f020f4eef0fb20e220f1eeeef2e2e5f2f1f2e2f3fef9e8f520ece0f1f8f2e0e1e0f52e0d0a0d0acfee20f2f0e0e4e8f6e8e820f4eef0eee2fbe520eae0ecede820e4eeebe6edfb20f0e0e7ece5f9e0f2fcf1ff20e220f2eef7eae0f5203c686f6d65206661712e7068703f726561643d74266361743d3323456e74727938393ef5eef1e83c2f686f6d653e2c20e220f1eeeef2e2e5f2f1f2e2e8e820f120f8e0e1ebeeedeeec2c20eeeff0e5e4e5ebffe5ecfbec20f7e8f1ebeeec20eae0ecede5e92e20cde020447261676f6e27e520f7b8f0edfbe520f2e0eae6e520eceee3f3f220f0e0e7ece5f9e0f2fc20eae0ecede820f4eef0fb20eff0eee8e7e2eeebfcedfbec20eee1f0e0e7eeec2e0d0a0d0ac8ece5e9f2e520e220e2e8e4f32c20f7f2ee20ecedeee3e8e520e8e3f0eeeae820eff0e5e4efeef7e8f2e0fef220f0e0e7ece5f9e5ede8e520f4eef0eee2fbf520eae0ecede5e920e220eff3edeaf2e0f520f5eef1e82e20d2e0ea20f7f2ee20e5f1ebe820e2fb20efeeebf3f7e0e5f2e520f4eef0f32c20e2e0ec20f1ebe5e4f3e5f220e4eee3eee2eef0e8f2fcf1ff20f120f1eeefe5f0ede8eaeeec20eee120e8f1efeeebfce7eee2e0ede8e820f1e2eee1eee4edeee3ee20e8ebe820f2f0e0e4e8f6e8eeededeee3ee20f0e0e7ece5f9e5ede8ff20f4eef0eee2fbf520eae0ecede5e92e20cff0e5e4ebe0e3e0ff20e8e3f0f320e2203c686f6d652077616974696e675f726f6f6d2e7068703ee8e3f0eee2eeec20e7e0ebe53c2f686f6d653e2c20e2fb20eceee6e5f2e520f3eae0e7e0f2fc20eff0e5e4efeef7f2e8f2e5ebfcedfbe920e4ebff20e2e0f120f1efeef1eee120f0e0e7ece5f9e5ede8ff20f4eef0eee2fbf520eae0ecede5e92e, 'Y', '2010-10-22 11:44:29'),
(663, 16, 0xc220f7b8ec20f0e0e7ebe8f7e8e520ece5e6e4f320f2f0e0e4e8f6e8eeededeee920e820f3f2eef7edb8ededeee920f4eef0eee93f, 'Y', '2010-10-22 11:44:29'),
(664, 16, 0x3c693ed2f0e0e4e8f6e8eeedede0ff20f4eef0e03c2f693e20e8f1efeeebfce7f3e5f220f0e0e7ede8f6f320e220f0e0ede3e0f520f1eeefe5f0ede8eaeee220e4ebff20efeeebf3f7e5ede8ff20f0e0e7ece5f0e020f4eef0fb2028f120f3f7b8f2eeec20f0e0e7ece5f0e020e4eef1eae8292e20cff0e820fdf2eeec203c686f6d65206661712e7068703f726561643d74266361743d3323456e747279393eeaeeece83c2f686f6d653e20f1eef1f2e0e2ebffe5f220ebe8e1ee20302e352028e4ebff20e8e3f020f120f4eef0eee9292c20ebe8e1ee20362e352028e4ebff20f0e0e2edfbf520e8e3f0292c20eeedee20eee4e8ede0eaeee2ee20e4ebff20e2f1e5f520f0e0e7ece5f0eee220e4eef1eae82e0d0a0d0a3c693ed3f2eef7edb8edede0ff20f4eef0e03c2f693e20e8f1efeeebfce7f3e5f220f2ee20e6e520f7e8f1ebee20f4eef0eee2fbf520eae0ecede5e92c20edee20eceee6e5f220e2fbe1e8f0e0f2fc20eff0eeece5e6f3f2eef7edfbe520e7ede0f7e5ede8ff20eaeeece820282e2e2e2c20312e352c20322e302c20322e352c202e2e2e2920e4ebff20efeeebf3f7e5ede8ff20e1eeebe5e520f2eef7edeee920eaeeecefe5edf1e0f6e8e820f0e0e7ede8f6fb20e220f0e5e9f2e8ede3e0f520e820e4eef1f2e8e6e5ede8ff20f8e0edf1eee22035303a353020e4ebff20eee1eee8f520f1eeefe5f0ede8eaeee22e, 'Y', '2011-03-27 22:21:36'),
(665, 16, 0xc4e7b8f1fdeae8, 'Y', '2010-10-22 11:44:29'),
(666, 16, 0xc8e7e2e5f1f2ede0ff20efeef1ebe5e4eee2e0f2e5ebfcedeef1f2fc20f5eee4eee22c20eee1fbf7edee20e220f3e3ebf320e4eef1eae82c20f7e0f9e520e2f1e5e3ee20e4e0fef9e0ff20eff0e8ece5f0edee20f0e0e2edfbe520f0e5e7f3ebfcf2e0f2fb20eee1eee8ec20e8e3f0eeeae0ec2e, 'Y', '2010-10-22 11:44:29'),
(667, 16, 0xd4f3f1fdeae8, 'Y', '2010-10-22 11:44:29'),
(668, 16, 0xcfeef1ebe5e4eee2e0f2e5ebfcedeef1f2fc20efe5f0e2fbf520f5eee4eee220e220efe0f0f2e8e82e, 'Y', '2010-10-22 11:44:29'),
(669, 16, 0xd1fdeae8, 'Y', '2010-10-22 11:44:29'),
(670, 16, 0xd1fdeae820eee1eee7ede0f7e0e5f22022eee1eefee4edf3fe20e6e8e7edfc222e20d1fdeae8202d20ebeeeae0ebfcede0ff20efeee7e8f6e8ff2c20e220eaeef2eef0eee920e4e2e520e3f0f3efeffb20f0e0e7edfbf520e8e3f0eeeaeee220e2fbedf3e6e4e5edfb20f0e0e7e4e5ebfff2fc20eee4ede820e820f2e520e6e520f2eef7eae820f1e2eee1eee4fb20e820ede820eee4ede020e8e720ede8f520ede520eceee6e5f220e7e0f5e2e0f2e8f2fc20e4f0f3e3f3fe2e, 'Y', '2010-10-22 11:44:29'),
(671, 16, 0xcceee3f320ebe820ff20e4e5ebe0f2fc20f5eee4fb20efee20fdebe5eaf2f0eeededeee920efeef7f2e53f, 'Y', '2010-10-22 11:44:29'),
(672, 16, 0xcde5f22c20f5eee4e8f2fc20f120efeeeceef9fcfe20fdebe5eaf2f0eeededeee920efeef7f2fb20ede5e2eee7eceee6edee2e20c2fb20e4eeebe6edfb20e2eee9f2e820ede0203c6120687265663d222f223ee2e5e12df1e0e9f220447261676f6e27e03c2f613e2c20f7f2eee1fb20f1e4e5ebe0f2fc20f5eee42e, 'Y', '2010-10-22 11:44:29'),
(673, 16, 0xcceee6e5f220ebe820447261676f6e20f3e2e5e4eeecebfff2fc20ece5edff2c20eaeee3e4e020eceeff20eef7e5f0e5e4fc20f5eee4e8f2fc3f, 'Y', '2010-10-22 11:44:29'),
(674, 16, 0xc4e02c20e5f1ebe820e2fb20e2eaebfef7e8ebe8203c686f6d65206661712e7068703f726561643d74266361743d313223456e7472793137333eefeef7f2eee2fbe520f3e2e5e4eeecebe5ede8ff3c2f686f6d653e20e820e2e0f82028eaeeedf4e8e4e5edf6e8e0ebfcedfbe92920efeef7f2eee2fbe920e0e4f0e5f120f3eae0e7e0ed20e2203c686f6d6520656469745f70726f66696c652e7068703ee0edeae5f2e53c2f686f6d653e2e, 'Y', '2010-10-22 11:44:29'),
(675, 16, 0xcceee3f320ebe820ff20ede0f7e0f2fc20e8e3f0f32c20e7e0e3f0f3e7e8e220ede0f7e0ebfcedf3fe20efeee7e8f6e8fe20e220e2e8e4e5205347463f, 'Y', '2010-10-22 11:44:29'),
(676, 16, 0xcde5f2, 'N', '2010-10-22 13:30:28'),
(677, 16, 0xd0e0ede3e820e820f0e5e9f2e8ede3e820447261676f6e27e0, 'Y', '2010-10-22 13:30:28'),
(678, 16, 0xd7f2ee20eee1eee7ede0f7e0e5f220e7e0efe8f1fc20e220eaeeebeeedeae52022d0e5e9f2e8ede32220efeeebfce7eee2e0f2e5ebff3f, 'Y', '2010-10-22 13:30:28'),
(679, 16, 0xcfe5f0e2e0ff20f7e0f1f2fc20f0e5e9f2e8ede3e0202d20fdf2ee20f2e5eaf3f9e8e920f0e0ede3203c686f6d65206661712e7068703f726561643d74266361743d3323456e74727933393ee4e0ed3c2f686f6d653e20e8ebe8203c686f6d65206661712e7068703f726561643d74266361743d3323456e74727933383eeafe3c2f686f6d653e2e20c2f2eef0e0ff20f7e0f1f2fc2028e7e0eaebfef7b8edede0ff20e220f1eaeee1eae82920efeeeae0e7fbe2e0e5f22c20ede0f1eaeeebfceaee20f1e8ebb8ed20e8ebe820f1ebe0e120fdf2eef220f0e0ede32e0d0a0d0acde0eff0e8ece5f02c20223120eafe20282b3430252922202d20fdf2ee20f0e5e9f2e8ede320f1e8ebfcede5e5203120eafe2028e1ebe8e7eae8e920efee20f1e8ebe520ea20f1ebe0e1eeecf3203120e4e0edf3292e, 'N', '2010-10-22 13:30:28'),
(680, 16, 0xd7f2ee20eee7ede0f7e0e5f2202b20e8ebe8202d20efeef1ebe520e7ede0f7e5ede8ff20f0e5e9f2e8ede3e03f, 'Y', '2010-10-22 13:30:28'),
(681, 16, 0xd4e0eaf2e8f7e5f1eae820447261676f6e20e8f1efeeebfce7f3e5f2203c686f6d65206661712e7068703f726561643d74266361743d31303523456e7472793132333ef0e5e9f2e8ede3eee2f3fe20f1e8f1f2e5ecf33c2f686f6d653e2c20e220eaeef2eef0eee920f0e0e7ebe8f7e8e520ece5e6e4f320e4e2f3ecff20f1eef1e5e4ede8ece820f0e0ede3e0ece820fdeae2e8e2e0ebe5edf2edee20f0e0e7ede8f6e520e22031303020eef7eaeee220f0e5e9f2e8ede3e02e20c7ede0f7e5ede8e520efeef1ebe5202b20e8ebe8202d20efeeeae0e7fbe2e0e5f22c20ede020f1eaeeebfceaee20eef7eaeee220f0e5e9f2e8ede320eef2eaebeeedffe5f2f1ff20eef220f2eef7edeee3ee20e7ede0f7e5ede8ff2c20f1eeeef2e2e5f2f1f2e2f3fef9e5e3ee20f3eae0e7e0ededeeecf320f0e0ede3f32e0d0a0d0acde0eff0e8ece5f03a0d0a3620eafe20282020302529203d203135303020eef7eaeee22028f0eee2edee290d0a3620eafe20282d34382529203d203134353220eef7eaeee2202831353030202d203438290d0a3720eafe20282b33302529203d203134333020eef7eaeee2202831343030202b203330290d0a3720eafe20282020302529203d203134303020eef7eaeee22028f0eee2edee29, 'N', '2010-10-22 13:30:28'),
(684, 16, 0xd7f2ee20efeeeae0e7fbe2e0e5f220e3eeebf3e1e0ff20eee1ebe0f1f2fc20ede020e3f0e0f4e8eae520f0e5e9f2e8ede3e03f, 'Y', '2010-10-22 13:30:28'),
(685, 16, 0xceede020efeeeae0e7fbe2e0e5f22c20ede0f1eaeeebfceaee20f1e8ebfcedee20f0e5e0ebfcedfbe920f0e5e9f2e8ede320efeeebfce7eee2e0f2e5ebff20eceee6e5f220eef2ebe8f7e0f2fcf1ff20eef220f0e0ede3e020447261676f6e27e02e20caeee3e4e020edeee2fbe920efeeebfce7eee2e0f2e5ebfc20f3eae0e7fbe2e0e5f220f1e2eee920ede0f7e0ebfcedfbe920f0e0ede32c20447261676f6e20ede520eceee6e5f220e7ede0f2fc2c20ede0f1eaeeebfceaee20fdf2ee20ede0f7e0ebfcedeee520e7ede0f7e5ede8e520f1eeeef2e2e5f2f1f2e2f3e5f220f1e8f1f2e5ece520f0e0ede3eee220447261676f6e27e02e20cee1f9e5ece8f0eee2eee920f1e8f1f2e5ecfb20f1f2e0ede4e0f0f2e8e7e0f6e8e820f0e0ede3eee220e3ee20ede520f1f3f9e5f1f2e2f3e5f22e20447261676f6e20e4e5ebe0e5f220e2f1b820e2eee7eceee6edeee520e4ebff20eee1e5f1efe5f7e5ede8ff20ede0e4b8e6edeee920e820f1eee3ebe0f1eee2e0ededeee920f1e8f1f2e5ecfb20f0e5e9f2e8ede3eee22e20cde020e3f0e0f4e8eae520f0e5e9f2e8ede3e020efeeebfce7eee2e0f2e5ebff20f8e8f0e8ede020e3eeebf3e1eee920f4eeedeee2eee920efeeebeef1fb20f1eeeef2e2e5f2f1f2e2f3e5f220e4eee2e5f0e8f2e5ebfcedeeecf320e8edf2e5f0e2e0ebf32c20e220eff0e5e4e5ebe0f520eaeef2eef0eee3ee20f0e5e0ebfcedfbe920f0e5e9f2e8ede320efeeebfce7eee2e0f2e5ebff20eceee6e5f220eef2ebe8f7e0f2fcf1ff20eef220f3f1f2e0edeee2ebe5ededeee3ee20447261676f6e27eeec20f0e0ede3e02e20c4eee2e5f0e8f2e5ebfcedfbe920e8edf2e5f0e2e0eb20e8e3f0e0e5f220f0eeebfc20eff0e820eef6e5edeae520f0e5e7f3ebfcf2e0f2eee220efe0f0f2e8e820ece5e6e4f320e8e3f0eeeae0ece83a20f7e5ec20e1eeebfcf8e520e4eee2e5f0e8f2e5ebfcedfbe920e8edf2e5f0e2e0eb2c20f2e5ec20e1eeebfcf8e5e520e8e7ece5ede5ede8e52028f3e2e5ebe8f7e5ede8e520e8ebe820f3ece5edfcf8e5ede8e52920f0e5e9f2e8ede3e020fdf2eee3ee20e8e3f0eeeae020eff0eee8f1f5eee4e8f220eff0e820e2fbe8e3f0fbf8e520e8ebe820eff0eee8e3f0fbf8e520efe0f0f2e8e82e, 'Y', '2010-10-22 13:30:28'),
(686, 16, 0xd2fdedf3eae8, 'Y', '2010-10-22 13:30:28'),
(687, 16, 0xc8e3f0e020e220e4f0f3e3eeec20ece5f1f2e520e4eef1eae82e20c8e3f0eeea20e8e3f0e0e5f220f2fdedf3eae82c20eaeee3e4e020ede520eef2e2e5f7e0e5f220f1e2eee8ec20f5eee4eeec20ede020eff0e5e4fbe4f3f9e8e920f5eee420eff0eef2e8e2ede8eae020ede5efeef1f0e5e4f1f2e2e5ededee2c20e020e2ece5f1f2ee20fdf2eee3ee20e8e3f0e0e5f220e220e4f0f3e3eeec20ece5f1f2e520e4eef1eae82e, 'Y', '2010-10-22 13:30:28'),
(688, 16, 0xd7f2ee20f2e0eaeee520e4e2eee9ede0ff20e8e3f0e03f, 'Y', '2010-10-22 13:30:28'),
(689, 16, 0xc2203c693ee4e2eee9edeee920e8e3f0e53c2f693e20e2fb20e7e0eff3f1eae0e5f2e520eee4edeee2f0e5ece5ededee203c693ee4e2e53c2f693e20edeee2fbe520e8e3f0fb20f120eee4ede8ec20e820f2e5ec20e6e520eff0eef2e8e2ede8eaeeec2e2020c2fb20e8e3f0e0e5f2e520e1e5ebfbece820e220eee4edeee920e8e720fdf2e8f520e8e3f02c20e020f7b8f0edfbece8202d20e220e4f0f3e3eee92e20c2fbe1f0e0ededfbe520f4eef0e020e820eaeeece820e8f1efeeebfce7f3fef2f1ff20e220eee1e5e8f520efe0f0f2e8fff52e20c220e8e3f0eee2eeec20e7e0ebe520eaeeebe8f7e5f1f2e2ee20f4eef0eee2fbf520eae0ecede5e920efeeeae0e7e0edee20ede020e8edf4eef0ece0f6e8eeededeee920f1f2f0e0ede8f6e520eef2eaf0fbf2e8ff20e8e3f0fb2e, 'N', '2010-10-22 13:30:28'),
(690, 16, 0xd1fdedf2fd, 'Y', '2010-10-22 13:30:28'),
(691, 16, 0xd3e4e5f0e6e0ede8e520e8ede8f6e8e0f2e8e2fb2e20c8e3f0eeea20e8ece5e5f220f1fdedf2fd2c20eaeee3e4e020e5ecf320ede520f2f0e5e1f3e5f2f1ff20eef2e2e5f7e0f2fc20ede020eff0e5e4fbe4f3f9e8e920f5eee420eff0eef2e8e2ede8eae020e820eeed20eceee6e5f220e8e3f0e0f2fc20e220ebfee1eeec20ece5f1f2e520e4eef1eae820efee20f1e2eee5ecf320e2fbe1eef0f32e20d1fdedf2fd2df5eee4202d20fdf2ee20f5eee42c20ede020eaeef2eef0fbe920eff0eef2e8e2ede8ea20e4eeebe6e5ed20eef2e2e5f7e0f2fc20ede5ece5e4ebe5ededee2e20d1fdedf2fd20eff0eef2e8e2eeefeeebeee6edee203c61203c686f6d65206661712e7068703f726561643d74266361743d3323456e7472793131333ee3eef2fd3c2f686f6d653e2e, 'Y', '2012-09-09 21:33:18'),
(692, 16, 0xc3eef2fd, 'Y', '2010-10-22 13:30:28'),
(1890, 18, '', 'Y', '2012-08-22 20:48:45'),
(1891, 18, 0x5365206e652064697363757465207175693a203c6120687265663d222f6661712e7068703f726561643d74266361743d33353723456e7472793937223e48616e64696361703c2f613e, 'N', '2010-10-26 16:10:15'),
(1892, 18, '', 'Y', '2012-08-22 20:48:45'),
(1893, 18, 0x47696f636f207461747469636f206573706572746f2e, 'Y', '2010-10-26 16:10:15'),
(1894, 18, '', 'Y', '2012-08-22 20:48:45'),
(1896, 18, '', 'Y', '2012-08-22 20:48:45'),
(1895, 18, 0x496c207465726d696e652070657220756e20696e7365676e616e74652e20416e636865206c6120666f726d6120646920696e646972697a7a616d656e746f2c20636f6d6520696e20274772617a69652070657220617665726d6920696e7365676e61746f2c2053656e736569272e, 'Y', '2010-10-26 16:13:01'),
(1897, 18, 0x506f73736962696c6974e0206c6174656e7469206f20706f74656e7a69616c692e204e6f6e20636920706f73736f6e6f2065737365726520616a692062756f6e69206f206d616c20616a692e, 'Y', '2010-10-26 16:13:01'),
(1317, 18, 0x53ec2c207061727a69616c6d656e74652e204c6f20737461746f2064656c6c6120706167696e61207075f220657373657265207265637570657261746f207573616e646f20676c692052535320666565642e0d0a0d0a4c2755524c2070657220757361726c6920e83a203a203c687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f7273732f7374617475732e7068703e0d0a0d0a5072696d612063686520747520706f73736120757361726c692c20e8206e65636573736174696f206368652074752066616363696120696c206c6f67696e207472616d69746520756e6f206465692073656775656e7469206d65746f64693a203c756c3e0d0a3c6c693e436f6e73656e746920616c20736572766572206469206964656e746966696361727469207472616d69746520636f6f6b6965733a203c687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f7273732f7374617475732e7068703e3c2f6c693e0d0a3c6c693e52696368696573746120646920617574656e746963617a696f6e653a203c687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f7273732f7374617475732e7068703f6175746869643d67756573743e3c2f6c693e0d0a3c6c693e466f727a61206c6120636f6d706c657461206964656e7469666963617a696f6e65207472616d6974652055524c3a203c687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f7273732f7374617475732e7068703f7573657269643d6775657374267061737377643d67756573743e3c2f6c693e3c6272202f3e0d0a3c636f6c6f72207265643e203e3e3e2046616920617474656e7a696f6e652071756573746f206d65746f646f206573706f6e65206c61207475612070617373776f726420212121203c3c3c203c2f636f6c6f723e203c2f756c3e, 'Y', '2010-10-26 16:40:09'),
(1315, 18, 0x53ec2c207061727a69616c6d656e74652e204c6f20737461746f2064656c6c6120706167696e61207075f220657373657265207265637570657261746f207573616e646f20696c205741502e0d0a0d0a4c2755524c2070657220757361726c6920e83a203a203c687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f7761702f7374617475732e7068703e0d0a0d0a5072696d612063686520747520706f73736120757361726c692c20e8206e65636573736174696f206368652074752066616363696120696c206c6f67696e207472616d69746520756e6f206465692073656775656e7469206d65746f64693a203c756c3e0d0a3c6c693e436f6e73656e746920616c20736572766572206469206964656e746966696361727469207472616d69746520636f6f6b6965733a203c687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f7761702f7374617475732e7068703e3c2f6c693e0d0a3c6c693e52696368696573746120646920617574656e746963617a696f6e653a203c687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f7761702f7374617475732e7068703f6175746869643d67756573743e3c2f6c693e0d0a3c6c693e466f727a61206c6120636f6d706c657461206964656e7469666963617a696f6e65207472616d6974652055524c3a203c687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f7761702f7374617475732e7068703f7573657269643d6775657374267061737377643d67756573743e3c2f6c693e3c6272202f3e0d0a3c636f6c6f72207265643e203e3e3e2046616920617474656e7a696f6e652071756573746f206d65746f646f206573706f6e65206c61207475612070617373776f726420212121203c3c3c203c2f636f6c6f723e203c2f756c3e0d0a0d0a4164206f676e69206d6f646f2c20617672616920756e2070756c73616e7465207065722063616d6269617265206c6120747561206964656e746974e02e, 'Y', '2010-10-26 16:54:40'),
(693, 16, 0xc3eef2fd202d20fdf2ee20f5eee420f120efeef2e5f0e5e920e8ede8f6e8e0f2e8e2fb2c20ebe8e1ee20f1eef1f2eeffede8e52c20e220eaeef2eef0eeec20e8ede8f6e8e0f2e8e2e020eff0e8ede0e4ebe5e6e8f220eff0eef2e8e2ede8eaf32e20cae0ea20eff0e0e2e8ebee2c20fdf2ee20f5eee42c20ede020eaeef2eef0fbe920eff0eef2e8e2ede8ea20ede520eee1ffe7e0ed20eef2e2e5f7e0f2fc2c20e820eaeef2eef0fbe92c20f2e0eae8ec20eee1f0e0e7eeec2c20eef2e4e0b8f220eff0eef2e8e2ede8eaf3203c686f6d65206661712e7068703f726561643d74266361743d3323456e7472793131323ef1fdedf2fd3c2f686f6d653e2028eff0eef2e8e2eeefeeebeee6edeef1f2fc20e3eef2fd292e, 'Y', '2012-09-09 21:33:18'),
(696, 16, 0xc4e0ecfd, 'Y', '2010-10-29 15:10:00'),
(697, 16, 0xcde5e9f2f0e0ebfcedfbe920eff3edeaf220e8e3f0eee2eee920e4eef1eae82e2022cde8f7fcff20e7e5ecebff222c20eff3edeaf22c20eaeef2eef0fbe920ede520eff0e8edeef1e8f220eef7eaeee220ede820eee4edeeecf320e8e720eff0eef2e8e2ede8eaeee22e20ddf2e8ec20e6e520f2e5f0ece8edeeec20eceee6e5f220ede0e7fbe2e0f2fcf1ff2022d2eef7eae020f1e2eee1eee4fb222e, 'Y', '2010-10-29 15:10:00'),
(698, 16, 0xd1e2eee1eee4e02c20e8ebe820f2eef7eae020f1e2eee1eee4fb, 'Y', '2010-10-29 15:10:00'),
(699, 16, 0xcde5e7e0edfff2fbe920eff3edeaf22c20f1eef1e5e4f1f2e2f3fef9e8e920f120eae0ecede5ec20e8ebe820e3f0f3efefeee920eae0ecede5e92e, 'Y', '2010-10-29 15:10:00'),
(700, 16, 0xd5e0edfd, 'Y', '2010-10-29 15:10:00'),
(701, 16, 0xc4e8e0e3eeede0ebfcedeee520f1eee5e4e8ede5ede8e520eae0ecede5e92c20eaeee3e4e020e4e2e020eae0ecedff20e8e3f0eeeae020f1f2eefff220e220eff0eef2e8e2eeefeeebeee6edfbf520f3e3ebe0f520eee4edeee920eaebe5f2eae820e4eef1eae82c20eff0e8f7b8ec20e4e2e020e4f0f3e3e8f520f3e3ebe020fdf2eee920eaebe5f2eae820f1e2eee1eee4edfb2e, 'Y', '2010-10-29 15:10:00'),
(702, 16, 0xc3fdf2e0, 'Y', '2010-10-29 15:10:00'),
(703, 16, 0xcee4e8ed20e8e720e2e8e4eee220ebeee2f3f8eae820e4ebff20eae0ecede5e92e, 'Y', '2010-10-29 15:10:00'),
(704, 16, 0xd1e0edf0fdedf1fde9, 'Y', '2010-10-29 15:10:00'),
(705, 16, 0xd0e0f1eff0eef1f2f0e0edb8ededfbe920e2e0f0e8e0edf220ede0f7e0ebe020efe0f0f2e8e82c20eaeee3e4e020e8e3f0eeea20e7e0ede8ece0e5f220f2f0e820f2eef7eae820f5eef1e820efee20eee4edeee920f1f2eef0eeede520e4eef1eae82028e4e2e5202d20efee20f3e3ebe0ec2c2020eee4edf3202d20e220f6e5edf2f0e520f1f2eef0eeedfb292e, 'Y', '2010-10-29 15:10:00'),
(706, 16, 0xd1e8f2b8, 'Y', '2010-10-29 15:10:00'),
(707, 16, 0x22cbe5f1f2ede8f6e0222e20d1f2e0ede4e0f0f2edfbe920eff0e8b8ec20e7e0f5e2e0f2e020eae0ecede5e920eff0eef2e8e2ede8eae02e20cfeef1f2f0eee5ede8e520ede0efeeece8ede0e5f220ebe5f1f2ede8f6f32c20eef2eaf3e4e020eff0eee8f1f5eee4e8f220e5e3ee20ede0e7e2e0ede8e52e, 'Y', '2010-10-29 15:10:00'),
(708, 16, 0xc2ebe8ffe5f220ebe820f0e0e7ece5f020e4eef1eae820e220efe0f0f2e8e820ede020e8e7ece5ede5ede8e520f0e5e9f2e8ede3e03f, 'Y', '2010-10-29 15:10:00'),
(709, 16, 0xc4e02e200d0a0d0ac8e3f0e020ede020e4eef1eae520313978313920e4e0b8f220ede0e8e1eeebfcf8e5e520e8e7ece5ede5ede8e520f0e5e9f2e8ede3e02e20d2e0eae0ff20e4eef1eae020ffe2ebffe5f2f1ff20e1e0e7eee2eee920e4ebff20f0e0f1f7b8f2e020e8e7ece5ede5ede8ff20f0e5e9f2e8ede3e020e820e4e0b8f2203130302520fdf4f4e5eaf220e8f1efeeebfce7eee2e0ede8ff203c686f6d65206661712e7068703f726561643d74266361743d31303523456e7472793132333ef0e0e7ebe8f7e8ff20f0e5e9f2e8ede3eee23c2f686f6d653e2c20eaeee3e4e020f0e0f1f1f7e8f2fbe2e0e5f2f1ff20edeee2fbe920f0e5e9f2e8ede32e200d0a0d0ac8e3f0fb20ede020e1ceebfcf8e8f520e8ebe820ece5edfcf8e8f520e4eef1eae0f520e4e0fef220ece5edfcf8e8e920fdf4f4e5eaf22e20d2e0ea2c20e8e3f0e020ede020e4eef1eae520323578323520eff0e8e2eee4e8f220ea20e8e7ece5ede5ede8fe20f0e5e9f2e8ede3e020ebe8f8fc20e220f0e0e7ece5f0e52034372520eef220e8e7ece5ede5ede8ff20efee20f0e5e7f3ebfcf2e0f2e0ec20e8e3f0fb20ede020e4eef1eae52031397831392e0d0a0d0ac4e2e520e8e3f0fb20ede020e4eef1eae520313378313320f1eeeef2e2e5f2f1f2e2f3fef220eee4edeee920e8e3f0e520ede020efeeebedeee920e4eef1eae52e20d2e0eae8ec20eee1f0e0e7eeec2c20f0e0e7ece5f0edfbe920f4e0eaf2eef020e820e7e4e5f1fc20f1eef1f2e0e2ebffe5f2203437252e0d0a0d0ac4e2e520e8e3f0fb2039783920f1eeeef2e2e5f2f1f2e2f3fef220eee4edeee920e8e3f0e52031337831332e20d2ee20e5f1f2fc20f0e0e7ece5f0edfbe920f4e0eaf2eef020e4ebff20f2e0eaeee920e4eef1eae820f1eef1f2e0e2ebffe5f220e2f1e5e3ee203232252e0d0a0d0acee1f9e0ff20f4eef0ecf3ebe020e4ebff20e2fbf7e8f1ebe5ede8ff20f0e0e7ece5f0edeee3ee20f4e0eaf2eef0e020f1ebe5e4f3fef9e0ff3a203c74743e28203139202d207c73697a652d31397c20295e32202f2031395e323c2f74743e, 'Y', '2010-10-29 15:10:00'),
(710, 16, 0xc3e4e520ff20eceee3f320ede0f3f7e8f2fcf1ff20e8e3f0e0f2fc20e220e3ee3f, 'Y', '2010-10-29 15:10:00'),
(711, 16, 0xcee1f0e0f2e8f2e520e2ede8ece0ede8e520ede020f1e0e9f2203c6120687265663d22687474703a2f2f706c6179676f2e746f2f696e7465726163746976652f696e6465782e68746d6c22207461726765743d6e65773e54686520496e7465726163746976652057617920546f20476f3c2f613e2c20e020f2e0eae6e520ede020f1e0e9f2203c6120687265663d22687474703a2f2f7777772e62726974676f2e6f72672f696e74726f2f696e74726f2e68746d6c22207461726765743d6e65773e496e74726f64756374696f6e20746f207468652067616d65206f6620476f3c2f613e20c1f0e8f2e0edf1eaeee920e3ee20c0f1f1eef6e8e0f6e8e82e, 'Y', '2010-10-29 15:10:00'),
(1753, 18, 0x3c757365722032353536323e20e820756e2070726f6772616d6d61207265676973747261746f20636f6d65207574656e746520737520447261676f6e2c206361706163652064692067696f636172652070617274697465206e6f726d616c6920636f6e20636869756e7175652073696120696e74657265737361746f2e204527206d616e74656e75746f206461203c757365722031393236353e2e20576869746520526f626f7420e82062617361746f2073756c206d6f746f7265203c6120687265663d22687474703a2f2f7777772e676e752e6f72672f736f6674776172652f676e75676f2f223e476e75476f3c2f613e2e, 'N', '2010-10-29 15:20:09'),
(1298, 18, 0x4c652064756520706965747265206269616e63686520652f6f206e65726520696e2063696d6120756e6120616c6c27616c74726120283c696d61676520626f6172642f775f772e6769663e202f203c696d61676520626f6172642f775f622e6769663e202f203c696d61676520626f6172642f625f622e6769663e202f203c696d61676520626f6172642f625f772e6769663e29206e656c6c61206c69737461206465692067696f63686920696e20636f72736f20696e646963612c207175616c27e820696c2074756f20636f6c6f7265206e656c2067696f636f206520612063686920746f6363612067696f6361726520616c2070726f7373696d6f207475726e6f2e205175616e646f20736920706f73697a696f6e6120696c206d6f7573652028637572736f72652920736f707261206c27696d6d6167696e652c20756e20746573746f20616c2070617373616767696f2064656c206d6f75736520646573637269766520696c207369676e6966696361746f2e0d0a200d0a496c20636f6c6f72652064656c6c6120706965747261207375706572696f7265206d6f7374726120696c203c656d3e74756f3c2f656d3e20636f6c6f72652e0d0a496c20636f6c6f72652064656c6c612070696574726120736f74746f7374616e7465206d6f7374726120696c20636f6c6f72652063686520646576652066617265206c612070726f7373696d61206d6f7373612e0d0a436f73ec2c207175616e646f20656e7472616d6269206920636f6c6f726920736f6e6f20676c69207374657373692c20e820696c2074756f207475726e6f21, 'Y', '2010-10-29 15:28:07'),
(712, 16, 0xcae0ea20f0e0e1eef2e0e5f220f0e5e9f2e8ede3eee2e0ff20f1e8f1f2e5ece020447261676f6e27e03f, 'Y', '2010-10-30 09:49:31'),
(713, 16, 0x447261676f6e20e8f1efeeebfce7f3e5f220f1f5e5ecf320f0e0f1f7b8f2e020f0e5e9f2e8ede3e02c20eff0e8edfff2f3fe204547462e20c4e5f2e0ebfcedeee520eeefe8f1e0ede8e520f0e5e9f2e8ede3eee2eee920f1e8f1f2e5ecfb2045474620eceee6edee20ede0e9f2e820ede020f1f2f0e0ede8f6e5203c6120687265663d22687474703a2f2f7777772e6575726f7065616e676f64617461626173652e65752f4547442f4547465f726174696e675f73797374656d2e706870223e45474620476f20526174696e672050616765733c2f613e2e0d0a0d0ac8f1f5eee4ff20e8e720f0e0e7ece5f0e020e4eef1eae82c20f4eef0fb20e820eaeeece820eceee6e5f220e1fbf2fc20f0e0f1f1f7e8f2e0ede020ede0f7e0ebfcede0ff20f0e0e7ede8f6e020e220f0e5e9f2e8ede3e0f520e8e3f0eeeaeee22028f0e0e7ede8f6e02c20eaeef2eef0e0ff20e4e0ebe020e1fb20f1eeeef2e2e5f2f1f2e2f3fef9f3fe203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f6661712e7068703f726561643d74266361743d33353723456e747279393820223ef3f2eef7edb8ededf3fe20f4eef0f33c2f613e292e20ceede020f1f0e0e2ede8e2e0e5f2f1ff20f120eaeeede5f7edeee920f0e0e7edeef1f2fcfe20f0e5e9f2e8ede3eee22028ede020eceeece5edf220e7e0e2e5f0f8e5ede8ff20e8e3f0fb292c20f7f2eee1fb20eeeff0e5e4e5ebe8f2fc20f0e5e0ebfcedeee520eff0e5e8ecf3f9e5f1f2e2ee20e8e3f0eeeae02e20c2e5f0eefff2edeef1f2fc20f2eee3ee20e8ebe820e8edeee3ee20f0e5e7f3ebfcf2e0f2e020e8e3f0fb20e2fbf7e8f1ebffe5f2f1ff20efee20e0ebe3eef0e8f2ece0ec204547462c20e220eaeef2eef0fbf520e8f1efeeebfce7f3fef2f1ff20eaeeedf1f2e0edf2fb20e8e720f1f2e0f2e8f1f2e8eae8204547462e20c8e720fdf2eee920e2e5f0eefff2edeef1f2e820eeeff0e5e4e5ebffe5f2f1ff2c20f1fbe3f0e0eb20e8e3f0eeea20ebf3f7f8e520e8ebe820f5f3e6e52c20f7e5ec20eff0e5e4efeeebe0e3e0ebeef1fc2c20f1eeeef2e2e5f2f1f2e2e5ededee2c20e4eeebe6e5ed20e5e3ee20f0e5e9f2e8ede320e1fbf2fc20f3e2e5ebe8f7e5ed20e8ebe820f3ece5edfcf8e5ed2e20c2e5ebe8f7e8ede020e8e7ece5ede5ede8ff20f0e0f1f1f7e8f2fbe2e0e5f2f1ff20ede020eef1edeee2e0ede8e820e2e5f0eefff2edeef1f2e820e2fbe8e3f0fbf8e020e820eaeefdf4f4e8f6e8e5edf2eee22c20e7e0e2e8f1fff9e8f520eef220f0e0e7ece5f0e020e4eef1eae820e820eef2edeef8e5ede8ff20e4eee2e5f0e8f2e5ebfcedfbf520e8edf2e5f0e2e0ebeee22028f0e0e7ece5f0eee2203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f6661712e7068703f726561643d74266361743d31303523456e747279313039223ee3eeebf3e1eee920eee1ebe0f1f2e83c2f613e20ede020e3f0e0f4e8eae520f0e5e9f2e8ede3e02920eee1eee8f520f1eeefe5f0ede8eaeee22e0d0a200d0acde0eff0e8ece5f02c20e220f0e0e2edeee920e8e3f0e52c20eaeee3e4e020f0e5e9f2e8ede320f7b8f0edfbf520ece5edfcf8e52c20f7e5ec20e1e5ebfbf52c20e2e5f0eefff2edfbec20f0e5e7f3ebfcf2e0f2eeec20ffe2ebffe5f2f1ff20f2ee2c20f7f2ee20e1e5ebfbe520efeee1e5e4fff22e20cfeefdf2eeecf33a0d0a3c756c3e0d0a3c6c693ec5f1ebe820e1e5ebfbe520e2fbe8e3f0e0fef22c20e8f520f0e5e9f2e8ede320eceee6e5f220ede5e7ede0f7e8f2e5ebfcedee20f3e2e5ebe8f7e8f2fcf1ff20e8ebe82c20e2eee7eceee6edee2c20eef1f2e0f2fcf1ff20eff0e5e6ede8ec2c20f2e0ea20eae0ea20efeee1e5e4e020e1e5ebfbf520eee6e8e4e0ebe0f1fc2e20c8e720f2e5f520e6e520f1eeeee1f0e0e6e5ede8e92c20f0e5e9f2e8ede320f7b8f0edfbf520f3ece5edfcf8e8f2f1ff20ede5e7ede0f7e8f2e5ebfcedee20ebe8e1ee20eef1f2e0ede5f2f1ff20f2e5ec20e6e52e0d0a3c6c693ec5f1ebe820f7b8f0edfbe520efeee1e5e6e4e0fef22c20f0e5e9f2e8ede320f7b8f0edfbf520e1f3e4e5f220f3e2e5ebe8f7e5ed20f1f3f9e5f1f2e2e5ededee2c20f2e0ea20eae0ea20e8f520efeee1e5e4e020ede520eee6e8e4e0ebe0f1fc2e20cfee20fdf2eee920e6e520eff0e8f7e8ede520e1e5ebfbe520ebe8f8e0f2f1ff20eaf0f3efedeee3ee20e7ede0f7e5ede8ff20f1e2eee5e3ee20f0e5e9f2e8ede3e02e0d0a3c2f756c3e0d0a0d0ac2e5ebe8f7e8ede020e2fbe8e3f0fbf8e020ede520e8ece5e5f220e7ede0f7e5ede8ff2e20c8e3f0eeea20eceee6e5f220e2fbe8e3f0e0f2fc20efeeeb2deef7eae020e8ebe82031303020eef7eaeee22c20edee20f120f2eef7eae820e7f0e5ede8ff20f0e5e9f2e8ede3eee2eee920f1e8f1f2e5ecfb20fdf2e820efeee1e5e4fb20f1eee2e5f0f8e5ededee20f0e0e2edeef6e5ededfb20e820e4e0fef220eee4e8ede0eaeee2eee520e8e7ece5ede5ede8e520f0e5e9f2e8ede3e02c20e2fbf7e8f1ebe5ededeee5204447532e, 'Y', '2010-10-30 09:49:31'),
(999, 16, 0xc8ece5e5f220ebe820e7ede0f7e5ede8e52c20efeee1e5e6e4e0fe20ff20f120f0e0e7ede8f6e5e920e220302c3520eef7eae02c2031303020eef7eaeee22c20efee20f1e4e0f7e520eff0eef2e8e2ede8eae020e8ebe820efee20e2f0e5ece5ede83f, 'Y', '2010-10-30 10:12:49'),
(1000, 16, 0xd120f2eef7eae820e7f0e5ede8ff20f0e5e9f2e8ede3eee2eee920f1e8f1f2e5ecfb20447261676f6e27e020fdf2ee20ede5e2e0e6edee2e20c2fbe8e3f0e0edede0ff20e8e3f0e0202d20fdf2ee20efeee1e5e4e02c20eff0eee8e3f0e0edede0ff202d20efeef0e0e6e5ede8e52e, 'Y', '2010-10-30 10:12:49'),
(1001, 16, 0xcae0ea20ede020447261676f6e27e520eef2f1f7e8f2fbe2e0e5f2f1ff20e2f0e5ecff3f, 'Y', '2010-10-30 10:12:49'),
(1004, 16, 0xcae0ea20f1e5e1ff20e2e5f1f2e820ede020f1e5f0e2e5f0e53f, 'Y', '2012-07-14 15:43:54'),
(987, 16, 0xdf20edeee2e8f7eeea20ede020447261676f6e27e52e20cae0eaeee920ede0f7e0ebfcedfbe920f0e0ede320ff20e4eeebe6e5ed20e2e2e5f1f2e83f, 'Y', '2010-10-30 11:08:41');
INSERT INTO `Translations` (`Original_ID`, `Language_ID`, `Text`, `Translated`, `Updated`) VALUES
(988, 16, 0xcaeee3e4e020e2fb20f0e5e3e8f1f2f0e8f0f3e5f2e520edeee2f3fe20f3f7b8f2edf3fe20e7e0efe8f1fc2c2044475320e7e0eff0e0f8e8e2e0e5f22c20eae0eaeee920f0e0ede320e220e3ee20e2fb20f3e6e520e8ece5e5f2e520e3e4e52debe8e1ee20e5f9b82028ede0eff0e8ece5f02c20ede020e4f0f3e3eeec20e8e3f0eee2eeec20e3ee2df1e5f0e2e5f0e52c20e220e2e0f8e5ec20ece5f1f2edeeec20e3ee2deaebf3e1e520e8ebe820d4e5e4e5f0e0f6e8e820e3ee20e2e0f8e5e920f1f2f0e0edfb292e20cff0eef1f2ee20f3eae0e6e8f2e520fdf2eef220f0e0ede320e82c20eef1edeee2fbe2e0fff1fc20ede020edb8ec2c2044475320eff0e8f1e2eee8f220e2e0ec20f1e2eee920ede0f7e0ebfcedfbe920f0e0ede32e0d0a0d0ad7f2eee1fb20eeeff0e5e4e5ebe8f2fc20f0e0e7ede8f6f320e220f0e0ede3e0f52c20efeeebf3f7e5ededfbf520e220f0e0e7edfbf520ece5f1f2e0f52c20e2e7e3ebffede8f2e520ede0203c4120485245463d22687474703a2f2f73656e736569732e786d702e6e65742f3f52616e6b576f726c6477696465436f6d70617269736f6e223ef2e0e1ebe8f6f320f1f0e0e2ede5ede8ff20f0e0ede3eee23c2f413e2e0d0a0d0ac5f1ebe820ede020eceeece5edf220f1eee7e4e0ede8ff20f3f7b8f2edeee920e7e0efe8f1e820e2fb20ede520e7ede0e5f2e520f1e2eee5e3ee20f3f0eee2edff20f1e8ebfb20e220e3ee2c20cdc8d7c5c3ce20ede520f3eae0e7fbe2e0e9f2e520e220f1eeeef2e2e5f2f1f2e2f3fef9e5ec20efeeebe520e4ee20f2e5f520efeef02c20efeeeae020ede520eeeff0e5e4e5ebe8f2e520e5e3ee2c20f1ebe5e4f3ff20f0e5eaeeece5ede4e0f6e8ffec2e20cee4ede0e6e4fb20e2e2e5e4ff20f1e2eee920f0e0ede32c20e2fb20e1eeebe5e520ede520f1eceee6e5f2e520e5e3ee20e8e7ece5ede8f2fc2e20cfeee4eee6e4e8f2e52c20efeeeae020e2e0f820f0e5e9f2e8ede320ede520efeeeae0e6e5f22c20eae0ea20e2fb20e8e3f0e0e5f2e52e, 'N', '2010-10-30 11:08:41'),
(989, 16, 0xc8ece5e5f220ebe820e7ede0f7e5ede8e52c20f7f2ee20ff20ede0f7e0eb20e8e3f0e0f2fc20f120ede5eff0e0e2e8ebfcedfbec20ede0f7e0ebfcedfbec20f0e0ede3eeec3f, 'Y', '2010-10-30 11:08:41'),
(990, 16, 0xc4ebff20ecedeee6e5f1f2e2e020ebfee4e5e920e220fdf2eeec20ede5f220ede8f7e5e3ee20f1f2f0e0f8edeee3ee2c20edee20ede5eaeef2eef0fbe520e8e3f0eeeae820eceee3f3f220f1eae0e7e0f2fc2c20f7f2ee20fdf2ee20eef7e5edfc20e2e0e6edee2e20447261676f6e20e1f3e4e5f220eaeef0f0e5eaf2e8f0eee2e0f2fc20e2e0f820f0e5e9f2e8ede320e4eeebe3eee520e2f0e5ecff2c20eef1edeee2fbe2e0fff1fc20ede020f0e5e7f3ebfcf2e0f2e0f520e2e0f8e8f520e7e0e2e5f0f8b8ededfbf520e8e3f02e0d0a0d0ac2fb20eceee6e5f2e520e2e2e5f1f2e820f1e2eee920ede0f7e0ebfcedfbe920f0e0ede320f2eeebfceaee20eee4ede0e6e4fb2e20cfeef1ebe520f2eee3ee2c20eae0ea20e2fb20fdf2ee20f1e4e5ebe0ebe82c20e2fb20f3e6e520ede520f1eceee6e5f2e520e8e7ece5ede8f2fc20e5e3ee20e2f0f3f7edf3fe2e200d0a0d0ac5f1ebe820e2fb203c693eede0ece5f0e5ededee3c2f693e20ede0f7e8ede0e5f2e520e8e3f0e0f2fc20f120ede5e2e5f0edfbec20f0e0ede3eeec2c20fdf2e8ec20e2fb20eceee6e5f2e520f0e0e7e4f0e0e6e0f2fc20e4f0f3e3e8f520efeeebfce7eee2e0f2e5ebe5e92c20e020f2e0eae6e520f1f2e0f2fc20eff0e8f7e8edeee920ede5e2e5f0edeee3ee202fede5eeeff0e0e2e4e0ededeee3ee2f20efe0e4e5ede8ff20e8ebe820f0eef1f2e020e8f520f0e5e9f2e8ede3eee22e20cfeeecede8f2e52c20e2e0ec20e2e5e4fc20f1ede8ece820e5f9b820e8e3f0e0f2fc2e2e2e0d0a0d0a447261676f6e20effbf2e0e5f2f1ff20eff0e5e4eef1f2e0e2e8f2fc20eff0e8e5ecebe5ecf3fe20f0e0ede3eee2f3fe20f1e8f1f2e5ecf32c20edee20eeede020e2f1b820f0e0e2edee20e7e0e2e8f1e8f220eef220e2e0f8e5e920e3eef2eee2edeef1f2e820ea20f1eef2f0f3e4ede8f7e5f1f2e2f32e20cfeee6e0ebf3e9f1f2e02c20ede520f3eae0e7fbe2e0e9f2e520ede0f7e0ebfcedfbe920f0e0ede320e2e0f8e5e920edeee2eee920f3f7b8f2edeee920e7e0efe8f1e820ede020447261676f6e27e52c20f1e8ebfcedee20eef2ebe8f7e0fef9e8e9f1ff20eef220e2e0f8e5e920f0e5e0ebfcedeee920f1e8ebfb20e8e3f0fb2e20c5f1ebe820e2fb20ede520f3e2e5f0e5edfb20e220eeeff0e5e4e5ebe5ede8e820f1e2eee5e3ee20f0e0ede3e02c20e5f1f2fc20ecedeee3ee20f1efeef1eee1eee220efeeeceef7fc20e2e0ec2e20cfeee6e0ebf3e9f1f2e02c20eff0eef7f2e8f2e520ede8e6e5f1ebe5e4f3fef9e8e520f0e0e7e4e5ebfb20ee20f0e0ede3e0f520ede0f1f2eefff9e5e3ee20d7e0c2ee2e, 'Y', '2010-10-30 11:08:41'),
(991, 16, 0xc1f3e4f3f220ebe820f7e0f1fb20eceee5e3ee20f1eeefe5f0ede8eae020e8e4f2e82c20eaeee3e4e020eceee820f7e0f1fb20eff0e8eef1f2e0edeee2ebe5edfb3f, 'Y', '2010-10-30 11:08:41'),
(992, 16, 0xc5f1ebe820f1e5e9f7e0f120e2e0f820f5eee42c20f2ee20cdc5d22e0d0a0d0ac5f1ebe820f1e5e9f7e0f120f5eee420e2e0f8e5e3ee20eff0eef2e8e2ede8eae02c20f2ee20fdf2ee20e2eee7eceee6edee2c20e5f1ebe820f2eeebfceaee20e220fdf2eef220eceeece5edf220ede520e2f0e5ecff20f1ede020e820ede520e2fbf5eee4edfbe52028e5f1ebe820efe0f0f2e8ff20e8e3f0e0e5f2f1ff20f120eef1f2e0edeee2eaeee920f7e0f1eee220efee20e2fbf5eee4edfbec2920e820eeed20ede520e220eef2eff3f1eae520f1e0ec2e, 'Y', '2010-10-30 11:08:41'),
(993, 16, 0xcceee3f320ebe820ff20f1e4e5ebe0f2fc20f5eee42c20eaeee3e4e020eceee820f7e0f1fb20eff0e8eef1f2e0edeee2ebe5edfb3f, 'Y', '2010-10-30 11:08:41'),
(994, 16, 0xc2fb20eceee6e5f2e520f1e4e5ebe0f2fc20f5eee4203c693ee220ebfee1eee920eceeece5edf23c2f693e2c20e5f1ebe820f2eeebfceaee20e2e0f8e020eef7e5f0e5e4fc20f5eee4e8f2fc202d2d20e2ee20e2f0e5ecff20efe5f0e8eee4e020f1ede02c20e220e2fbf5eee4edfbe520e8ebe820e220eef2eff3f1eae52e, 'Y', '2010-10-30 11:08:41'),
(995, 16, 0xd7f2ee20f2e0eaeee520f7e0f1fb20efee20e2fbf5eee4edfbec3f, 'Y', '2010-10-30 11:08:41'),
(996, 16, 0xcaeee3e4e020e2fb20f1eee7e4e0b8f2e520eff0e8e3ebe0f8e5ede8e520ede020e8e3f0f32c20e2fb20eceee6e5f2e520e2eaebfef7e8f2fc20e8ebe820e2fbeaebfef7e8f2fc20ede0f1f2f0eee9eaf32022d7e0f1fb20e8e4f3f220efee20e2fbf5eee4edfbec222e20c220e7e0e2e8f1e8eceef1f2e820eef220ede5b820e8e3f0eee2fbe520f7e0f1fb20e1f3e4f3f220e8ebe820ede520e1f3e4f3f220e8e4f2e820efee20f1f3e1e1eef2e0ec20e820e2eef1eaf0e5f1e5edfcffec2e, 'N', '2010-10-30 11:08:41'),
(1010, 16, 0xcae0eae8e520e8e3f0fb20e2ebe8fffef220ede020eceee920f0e5e9f2e8ede33f, 'Y', '2010-10-30 11:08:41'),
(1011, 16, 0xd0e5e9f2e8ede3eee2e0ff20f1e8f1f2e5ece020447261676f6e27e020f3f7e8f2fbe2e0e5f220f2eeebfceaee20e8e3f0fb2c20f3e4eee2ebe5f2e2eef0fffef9e8e520f1ebe5e4f3fef9e8ec20f3f1ebeee2e8ffec3a0d0a3c756c3e0d0a3c6c693eeee1e020e8e3f0eeeae020e8ece5fef220f0e5e9f2e8ede32c0d0a3c6c693ee220ede0f1f2f0eee9eae0f520efe0f0f2e8e820e2eaebfef7b8ed20f4ebe0e32022f0e5e9f2e8ede3eee2e0ff222c0d0a3c6c693ee220efe0f0f2e8e820e1e5ebfbe520f1e4e5ebe0ebe820efee20ece5edfcf8e5e920ece5f0e520effff2fc20f5eee4eee22028fdf2ee20eee7ede0f7e0e5f22c20f7f2ee20f0e0e7ece5f9e5ede8e520ede020e4eef1eae520f4eef0eee2fbf520eae0ecede5e920ede520f3f7e8f2fbe2e0e5f2f1ff20eff0e820eef2ede5f1e5ede8e820e8e3f0fb20ea20f0e5e9f2e8ede3eee2eee9292e0d0a3c2f756c3e, 'Y', '2010-10-30 11:08:41'),
(1012, 16, 0xcceee3f320ebe820ff20f1f2e0f2fc20efe5f0e5e2eee4f7e8eaeeec20447261676f6e27e03f, 'Y', '2010-10-30 11:08:41'),
(1013, 16, 0xc4e02e20cfeee6e0ebf3e9f1f2e02c20eee1faffe2e8f2e520ee20f1e2eeb8ec20e6e5ebe0ede8e820ede0203c686f6d6520666f72756d2f6c6973742e7068703f666f72756d3d373ef4eef0f3ece520efe5f0e5e2eee4f7e8eaeee23c2f686f6d653e2e20c0e4ece8ede8f1f2f0e0f2eef0fb20e2fbe4e0e4f3f220e2e0ec20eff0e0e2e020efe5f0e5e2eee4f7e8eae02c20e5f1ebe820efe5f0e5e2eee4f7e8eae820f2f0e5e1f3fef2f1ff2e, 'Y', '2010-10-30 11:08:41'),
(1016, 16, 0xcae0eaeee920e8e720f1e2eee4eee220eff0e0e2e8eb20e3ee20e8f1efeeebfce7f3e5f2f1ff20ede020447261676f6e27e53f, 'Y', '2010-10-30 11:08:41'),
(1017, 16, 0xc220eef1edeee2edeeec20447261676f6e20eef1edeee2fbe2e0e5f2f1ff20ede020ffefeeedf1eaeeec20f1e2eee4e520eff0e0e2e8eb20e3ee2c20edee20e4eeeff3f1eae0e5f220ede5eaeef2eef0fbe520e2e0f0e8e0f6e8e82c20f2e0eae8e520eae0ea20f0e0e7ece5f9e5ede8e520f4eef0eee2fbf520eae0ecede5e92c20e8e7ece5ede5ede8e520f0e0e7ece5f0eee220e4eef1eae820e820ede0f1f2f0eee9eae820e2f0e5ece5ededdbf520ebe8ece8f2eee22e20ddf2e820f5e0f0e0eaf2e5f0edfbe520e4ebff20447261676f6e27e020eef2ebe8f7e8ff20ede520f1eeeef2e2e5f2f1f2e2f3fef220eef4e8f6e8e0ebfcedfbec20ffefeeedf1eae8ec20eff0e0e2e8ebe0ec2c20eee4ede0eaee2c20efee20ede0f8e5ecf320ecede5ede8fe2c20f3e4eee1edfb20e4ebff20efeef8e0e3eee2eee920e8e3f0fb2e0d0a0d0ac5f1ebe820eaeef0eef2eaee2c20447261676f6e0d0a3c756c3e3c6c693ee8f1efeeebfce7f3e5f220efeee4f1f7b8f220f2e5f0f0e8f2eef0e8e82c20eef1edeee2e0ededfbe920ede020eef6e5edeae520e8e3f0eeeaeee22c0d0a3c6c693eede520efeee4e4e5f0e6e8e2e0e5f220eff0e0e2e8ebee20f1f3efe5f0eaee2c0d0a3c6c693ee7e0eff0e5f9e0e5f220f1f3e8f6e8e42c0d0a3c6c693eefeee4e4e5f0e6e8e2e0e5f220f1e2eee1eee4edeee520f0e0e7ece5f9e5ede8e520f4eef0eee2fbf520eae0ecede5e92c20edee20efeee7e2eeebffe5f220e820f2f0e5e1eee2e0f2fc20e8f1efeeebfce7eee2e0ede8ff203c693ef1f2e0ede4e0f0f2edeee3ee20f0e0e7ece5f9e5ede8ff20f4eef0eee2fbf520eae0ecede5e93c2f693e2e203c2f756c3e, 'N', '2010-10-30 11:08:41'),
(1019, 16, 0xcfeef8e0e3eee2e0ff20e8e3f0e0, 'Y', '2010-10-30 11:08:41'),
(1020, 16, 0xcfeef8e0e3eee2e0ff20e8e3f0e0202d20fdf2ee20f1efeef1eee120e8e3f0fb2c20eff0e820eaeef2eef0eeec20eee1eee8ec20e8e3f0eeeae0ec20ede5f220ede5eee1f5eee4e8eceef1f2e820f1eee1e8f0e0f2fcf1ff20e4ebff20e8e3f0fb20e220eee4edee20e820f2ee20e6e520e2f0e5ecff2e20c2ece5f1f2ee20fdf2eee3ee20eae0e6e4fbe920e8e3f0eeea20eceee6e5f220e4e5ebe0f2fc20f5eee4fb20f2eee3e4e02c20eaeee3e4e020e8ece5e5f220e4ebff20fdf2eee3ee20e2f0e5ecff2e20cff0e8ece5f0e0ece820efeef8e0e3eee2eee920e8e3f0fb20ffe2ebfffef2f1ff20e8e3f0e020efee20fdebe5eaf2f0eeededeee920e8ebe820eee1fbf7edeee920efeef7f2e52c20e8ebe820e7e4e5f1fc2c20ede0204447532e0d0a0d0ad1ec2e20f2e0eae6e5203c686f6d65206661712e7068703f726561643d74266361743d3323456e7472793135333ec8e3f0e020e220f0e5e0ebfcedeeec20e2f0e5ece5ede83c2f686f6d653e2e, 'Y', '2010-10-30 11:08:41'),
(1021, 16, 0xc8e3f0e020e220f0e5e0ebfcedeeec20e2f0e5ece5ede8, 'Y', '2010-10-30 11:08:41'),
(975, 16, 0xcae0ea20ff20eceee3f320e2eee9f2e83f, 'Y', '2010-11-01 08:55:27'),
(976, 16, 0xc2eee9e4e8f2e520ede0203c6120687265663d222f22207461726765743d225f626c616e6b223e447261676f6e2773206d61696e20706167653c2f613e2c20e2e2e5e4ff20f1e2eee920eff1e5e2e4eeede8ec20e820efe0f0eeebfc2e20d1e5f0e2e5f02044475320f1eee7e4e0f1f220eaf3eae820ede020e2e0f8e5ec20eaeeeceffcfef2e5f0e52c20eaeef2eef0fbe520e4e0e4f3f220e2eee7eceee6edeef1f2fc20e0e2f2eeece0f2e8f7e5f1eaeee3ee20e2f5eee4e020e220f2e5f7e5ede8e520333020e4ede5e92e, 'Y', '2010-11-01 08:55:27'),
(605, 16, 0xcae0ea20efeeece5f1f2e8f2fc20f2e5eaf1f220e2205347463f, 'Y', '2010-11-01 09:22:51'),
(606, 16, 0xcfeeece5f1f2e8f2e520e2e0f820f2e5eaf1f220ece5e6e4f320f2fde3e0ece820266c743b636f6d6d656e742667743b20e820266c743b2f636f6d6d656e742667743b2e0d0a0d0a3c693ecff0e8ece5f03a3c2f693e0d0ac220eee4edeee920e8e720e2e0f8e8f520e7e0eff3f9e5ededfbf520e8e3f03a0d0a0d0a312e20c2e2e5e4e8f2e520e220efeeebe520f1eeeee1f9e5ede8ff2c20eef2eee1f0e0e6e0e5eceee520eff0e820efeee4f2e2e5f0e6e4e5ede8e820f5eee4e03a0d0a0d0a6f6e6c79206120746573742c20706c656173652069676e6f72650d0a266c743b636f6d6d656e742667743b0d0a7465737420636f6d6d656e742c2073686f756c642061707065617220696e20746865207367660d0a266c743b2f636f6d6d656e742667743b0d0a7465737420636f6d6d656e742c2073686f756c64206e6f742061707065617220696e20746865207367660d0a0d0a322e20cfeee4f2e2e5f0e4e8f2e520e2e0f820f5eee42e0d0a33e02e20c7e0e3f0f3e7e8f2e52053474620fdf2eee920e8e3f0fb2e0d0a33e12e20c7e0e3f0f3e7e8f2e52053474620f1ee20e2f1e5ece820eaeeecece5edf2e0f0e8ffece82e0d0a0d0a342e20cef2eaf0eee9f2e5205347462028e220e3ee2deaebe8e5edf2e520e8ebe820f2e5eaf1f2eee2eeec20f0e5e4e0eaf2eef0e5292e0d0a0d0a352e20caeeecece5edf2e0f0e8e920ea20efeef1ebe5e4ede5ecf320f5eee4f320e220efe5f0e2eeec20f4e0e9ebe5202833e0293a0d0a266c743be2e0f8e520e8ecff2667743b3a207465737420636f6d6d656e742c2073686f756c642061707065617220696e20746865207367660d0a0d0acaeeecece5edf2e0f0e8e920ea20f5eee4f320e2ee20e2f2eef0eeec20f4e0e9ebe5202833e12920e1f3e4e5f220f1eee4e5f0e6e0f2fc20e2e5f1fc20f2e5eaf1f22e0d0a0d0a362e20c5f1ebe820e2e0ec20edf3e6edee2c20f7f2eee1fb20e2e0f8e820eaeeecece5edf2e0f0e8e820e1fbebe820e2e8e4edfb20f1eeefe5f0ede8eaf320f2eeebfceaee20efeef1ebe520e7e0e2e5f0f8e5ede8ff20e8e3f0fb2c20e8f1efeeebfce7f3e9f2e520f2fde3e820266c743b68696464656e2667743b20266c743b2f68696464656e2667743b20e2ece5f1f2ee20266c743b636f6d6d656e742667743b20266c743b2f636f6d6d656e742667743b200d0a0d0ad2fde3e820266c743b636f6d6d656e742667743b20266c743b2f636f6d6d656e742667743b20e820266c743b68696464656e2667743b20266c743b2f68696464656e2667743b20eceee6edee20e7e0ece5edfff2fc20f1eeeaf0e0f9b8ededfbece83a20266c743b632667743b20266c743b2f632667743b20e820266c743b682667743b20266c743b2f682667743b2e0d0a0d0acee1fbf7edfbe920f2e5eaf1f22028cdc520efeeece5f9b8ededfbe920e220f2fde3e820266c743b636f6d6d656e742667743b20e820266c743b2f636f6d6d656e742667743b2920e2e8e4e5ed20f2eeebfceaee20f1e0ece8ec20f1eeefe5f0ede8eae0ec2c20e8e3f0e0fef9e8ec20e4e0ededf3fe20efe0f0f2e8fe2c20e820ede520e2e8e4e5ed20ede8eaeeecf320e4f0f3e3eeecf32e20ddf2e020eef1eee1e5ededeef1f2fc20e7e0f9e8f9e0e5f220e2e0f8f320f7e0f1f2edf3fe20efe5f0e5efe8f1eaf32e20cee4ede0eaee20f2e5eaf1f22c20efeeece5f9b8ededfbe920e220f2fde3e820266c743b636f6d6d656e742667743b20e820266c743b2f636f6d6d656e742667743b20f2e0eae6e520eceee6e5f220e2e8e4e5f2fc20ebfee1eee92c20ede0e1ebfee4e0fef9e8e920e7e020e2e0f8e5e920e8e3f0eee92e, 'N', '2010-11-01 09:22:51'),
(643, 16, 0xcae0eae8e52048544d4c2df2fde3e820eceee6edee20e8f1efeeebfce7eee2e0f2fc20ede020447261676f6e27e53f, 'Y', '2010-11-01 09:38:59'),
(644, 16, 0x3c656d3ec7e4e5f1fc20efeeece5f9b8ed20f1efe8f1eeea20f2fde3eee22048544d4c2c20eaeef2eef0fbe520eceee3f3f220e1fbf2fc20e8f1efeeebfce7eee2e0edfb20ede020447261676f6e27e52c20f120eff0e8ece5f0e0ece82e2020cff0e5e4eef1f2e0e2ebe5ede8e520efeeebedeee3ee20eeefe8f1e0ede8ff20e2f1e5f520f0e0e7ebe8f7edfbf520f2fde3eee22048544d4c20ede520e2f5eee4e8f220e220e7e0e4e0f7f320e4e0ededeee3ee20d7e0c2ee2e20c7e020eeefe8f1e0ede8e5ec2048544d4c2c20eee1f0e0f9e0e9f2e5f1fc20ede020f1f2f0e0ede8f6fb20203c6120687265663d22687474703a2f2f7777772e77332e6f72672f223ecaeeedf1eef0f6e8f3ece020576f726c64205769646520576562203c2f613e2e3c2f656d3e0d0a0d0a3c636f64653e3c623ecfeeebf3e6e8f0edfbe93c2f623e3c2f636f64653e0d0a3c623ecfeeebf3e6e8f0edfbe93c2f623e0d0a0d0a3c636f64653e3c753ecfeee4f7b8f0eae8e2e0ede8e53c2f753e3c2f636f64653e0d0a3c753ecfeee4f7b8f0eae8e2e0ede8e53c2f753e0d0a0d0a3c636f64653e3c693ecaf3f0f1e8e23c2f693e3c2f636f64653e0d0a3c693ecaf3f0f1e8e23c2f693e0d0a0d0a3c636f64653e3c656d3ec2fbe4e5ebe5ededfbe920f2e5eaf1f23c2f656d3e3c2f636f64653e0d0a3c656d3ec2fbe4e5ebe5ededfbe920f2e5eaf1f23c2f656d3e0d0a0d0a3c636f64653e3c7374726f6e673ec2fbe4e5ebe5ede8e520e6e8f0edfbec3c2f7374726f6e673e3c2f636f64653e0d0a3c7374726f6e673ec2fbe4e5ebe5ede8e520e6e8f0edfbec3c2f7374726f6e673e0d0a0d0a3c636f64653e3c74743ecee4edeef1f2f0eef7edfbe920f2e5eaf1f220eceeedeef8e8f0e8ededfbec20f8f0e8f4f2eeec3c2f74743e3c2f636f64653e0d0a3c74743ecee4edeef1f2f0eef7edfbe920f2e5eaf1f220eceeedeef8e8f0e8ededfbec20f8f0e8f4f2eeec3c2f74743e0d0a0d0a3c636f64653e3c7072653eccedeee3eef1f2f0eef7edfbe90d0aeff0e5e4e2e0f0e8f2e5ebfcedee20f4eef0ece0f2e8f0eee2e0ededfbe920f2e5eaf1f20d0aeceeedeef8e8f0e8ededfbec20f8f0e8f4f2eeec2e3c2f7072653e3c2f636f64653e0d0a3c7072653eccedeee3eef1f2f0eef7edfbe90d0aeff0e5e4e2e0f0e8f2e5ebfcedee20f4eef0ece0f2e8f0eee2e0ededfbe920f2e5eaf1f20d0aeceeedeef8e8f0e8ededfbec20f8f0e8f4f2eeec2e3c2f7072653e0d0a0d0a3c636f64653e0d0a3c666f6e7420636f6c6f723d22726564223ecaf0e0f1edfbe93c2f666f6e743e0d0a3c666f6e7420636f6c6f723d226f72616e6765223ecef0e0ede6e5e2fbe93c2f666f6e743e0d0a3c666f6e7420636f6c6f723d2279656c6c6f77223ec6b8ebf2fbe93c2f666f6e743e0d0a3c666f6e7420636f6c6f723d22677265656e223ec7e5ebb8edfbe93c2f666f6e743e0d0a3c666f6e7420636f6c6f723d22626c7565223ec3eeebf3e1eee93c2f666f6e743e0d0a3c666f6e7420636f6c6f723d22696e6469676f223ed1e8ede8e93c2f666f6e743e0d0a3c666f6e7420636f6c6f723d2276696f6c6574223ed4e8eeebe5f2eee2fbe93c2f666f6e743e0d0a3c666f6e7420636f6c6f723d227768697465223ec1e5ebfbe93c2f666f6e743e0d0a3c666f6e7420636f6c6f723d22626c61636b223ed7b8f0edfbe93c2f666f6e743e0d0a3c2f636f64653e0d0a3c666f6e7420636f6c6f723d22726564223ecaf0e0f1edfbe93c2f666f6e743e0d0a3c666f6e7420636f6c6f723d226f72616e6765223ecef0e0ede6e5e2fbe93c2f666f6e743e0d0a3c666f6e7420636f6c6f723d2279656c6c6f77223ec6b8ebf2fbe93c2f666f6e743e0d0a3c666f6e7420636f6c6f723d22677265656e223ec7e5ebb8edfbe93c2f666f6e743e0d0a3c666f6e7420636f6c6f723d22626c7565223ec3eeebf3e1eee93c2f666f6e743e0d0a3c666f6e7420636f6c6f723d22696e6469676f223ed1e8ede8e93c2f666f6e743e0d0a3c666f6e7420636f6c6f723d2276696f6c6574223ed4e8eeebe5f2eee2fbe93c2f666f6e743e0d0a3c666f6e7420636f6c6f723d227768697465223ec1e5ebfbe93c2f666f6e743e0d0a3c666f6e7420636f6c6f723d22626c61636b223ed7b8f0edfbe93c2f666f6e743e0d0a0d0a3c636f64653ed3e3ebeee2fbe520f1eaeee1eae83a20266c743b202667743b3c2f636f64653e0d0ad3e3ebeee2fbe520f1eaeee1eae83a20266c743b202667743b0d0a0d0a3c636f64653ec0ecefe5f0f1e0ede43a2026616d703b3c2f636f64653e0d0ac0ecefe5f0f1e0ede43a2026616d703b0d0a0d0a3c636f64653ecde5f0e0e7f0fbe2edfbe920eff0eee1e5eb3a203e266e6273703b3c3c2f636f64653e0d0acde5f0e0e7f0fbe2edfbe920eff0eee1e5eb3a202667743b266e6273703b266c743b0d0a0d0a3c636f64653e0d0a3c756c3e0d0a3c6c693ecce0f0eae8f0eee2e0ededfbe920f1efe8f1eeea3c2f6c693e0d0a3c6c693ecce0f0eae8f0eee2e0ededfbe920f1efe8f1eeea3c2f6c693e0d0a3c6c693ecce0f0eae8f0eee2e0ededfbe920f1efe8f1eeea3c2f6c693e0d0a3c6c693ecce0f0eae8f0eee2e0ededfbe920f1efe8f1eeea3c2f6c693e0d0a3c6c693ecce0f0eae8f0eee2e0ededfbe920f1efe8f1eeea3c2f6c693e0d0a3c2f756c3e0d0a3c2f636f64653e0d0a3c756c3e0d0a3c6c693ecce0f0eae8f0eee2e0ededfbe920f1efe8f1eeea3c2f6c693e0d0a3c6c693ecce0f0eae8f0eee2e0ededfbe920f1efe8f1eeea3c2f6c693e0d0a3c6c693ecce0f0eae8f0eee2e0ededfbe920f1efe8f1eeea3c2f6c693e0d0a3c6c693ecce0f0eae8f0eee2e0ededfbe920f1efe8f1eeea3c2f6c693e0d0a3c6c693ecce0f0eae8f0eee2e0ededfbe920f1efe8f1eeea3c2f6c693e0d0a3c2f756c3e0d0a0d0a3c636f64653e0d0a3c6f6c3e0d0a3c6c693ecdf3ece5f0eee2e0ededfbe920f1efe8f1eeea3c2f6c693e0d0a3c6c693ecdf3ece5f0eee2e0ededfbe920f1efe8f1eeea3c2f6c693e0d0a3c6c693ecdf3ece5f0eee2e0ededfbe920f1efe8f1eeea3c2f6c693e0d0a3c6c693ecdf3ece5f0eee2e0ededfbe920f1efe8f1eeea3c2f6c693e0d0a3c6c693ecdf3ece5f0eee2e0ededfbe920f1efe8f1eeea3c2f6c693e0d0a3c2f6f6c3e0d0a3c2f636f64653e0d0a3c6f6c3e0d0a3c6c693ecdf3ece5f0eee2e0ededfbe920f1efe8f1eeea3c2f6c693e0d0a3c6c693ecdf3ece5f0eee2e0ededfbe920f1efe8f1eeea3c2f6c693e0d0a3c6c693ecdf3ece5f0eee2e0ededfbe920f1efe8f1eeea3c2f6c693e0d0a3c6c693ecdf3ece5f0eee2e0ededfbe920f1efe8f1eeea3c2f6c693e0d0a3c6c693ecdf3ece5f0eee2e0ededfbe920f1efe8f1eeea3c2f6c693e0d0a3c2f6f6c3e0d0a0d0a3c636f64653ecee1fbf7ede0ff20f1f1fbebeae03a203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e6574223e447261676f6e20476f205365727665723c2f613e3c2f636f64653e0d0acee1fbf7ede0ff20f1f1fbebeae03a203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e6574223e447261676f6e20476f205365727665723c2f613e, 'N', '2010-11-01 09:38:59'),
(751, 16, 0xcae0ea20ff20eceee3f320f3e4e0ebe8f2fc20ecb8f0f2e2fbe520eae0ecede820efee20e7e0e2e5f0f8e5ede8e820e8e3f0fb3f, 'Y', '2010-11-01 09:56:23'),
(752, 16, 0xcfeef1ebe520f2eee3ee2c20eae0ea20eee1e020f1eeefe5f0ede8eae020efeee4f0ffe420efe0f1eee2e0ebe82c20ecb8f0f2e2fbe520eae0ecede820e4eeebe6edfb20e1fbf2fc20f3e4e0ebe5edfb20e2f0f3f7edf3fe2e20d9b8ebeaede8f2e520ecfbf8fcfe20efee20eae0ecedfe2c20f7f2eee1fb20efe5f0e5eaebfef7e8f2fc20e5e3ee20f1f2e0f2f3f120f120e6e8e2eee3ee20ede020ecb8f0f2e2fbe92028e8ebe820ede0eee1eef0eef2292e20cce0ebe5edfceae8e520e1e5ebfbe520e820f7b8f0edfbe520eae2e0e4f0e0f2edfbe520ece5f2eae820eff3edeaf2eee220efeeeae0e7fbe2e0fef22c20eaf2ee20ffe2ebffe5f2f1ff20e2ebe0e4e5ebfcf6e5ec20e4e0ededeee920f2e5f0f0e8f2eef0e8e82e0d0a0d0ad1eeefe5f0ede8eae820e4eeebe6edfb20e4eee3eee2eef0e8f2fcf1ff2c20eae0eae8e520eae0ecede820ece5f0f2e2fb20e820eaf2ee20e2ebe0e4e5e5f220f2e5f0f0e8f2eef0e8e5e92e20d7f2eee1fb20f1eee3ebe0f1e8f2fcf1ff20f120efeeebeee6e5ede8e5ec2c20eef2eee1f0e0e6b8ededfbec20ede020e4eef1eae52c20ede0e6ece8f2e520ede020f1f1fbebeaf32022cfeee4f2e2e5f0e4e8f2fc2220e2ede8e7f320f1f2f0e0ede8f6fb2e0d0a0d0ac5f1ebe820eee4e8ed20e8e720e8e3f0eeeaeee220ede520f1eee3ebe0f1e5ed2c20eeed20eceee6e5f220eff0eee9f2e820efee20f1f1fbebeae52022c2eee7eee1edeee2e8f2fc20e8e3f0f3222c20f7f2eee1fb20f0e0e7f0e5f8e8f2fc20f1efeef0edf3fe20efeee7e8f6e8fe2c20f1e4e5ebe0e220e5f9b820ede5eaeef2eef0eee520eaeeebe8f7e5f1f2e2ee20f5eee4eee22e20c4f0f3e3e8ec20f1efeef1eee1eeec20f0e5f8e5ede8ff20e2eeeff0eef1e020eceee6e5f220e1fbf2fc20eee1ece5ed20ebe8f7edfbece820f1eeeee1f9e5ede8ffece820e8ebe820eee1f1f3e6e4e5ede8e520ede0203c686f6d6520666f72756d2f6c6973742e7068703f666f72756d3d353ec4e8f1eaf3f1f1e8eeededeeec20f4eef0f3ece53c2f686f6d653e2e, 'Y', '2010-11-01 09:56:23'),
(753, 16, 0xd7f2ee20eee1eee7ede0f7e0fef220ece0ebe5edfceae8e520eaf0e0f1edfbe520e820e7e5ebb8edfbe520eae2e0e4f0e0f2edfbe520ece5f2eae820ede020e4eef1eae520efee20eeeaeeedf7e0ede8e820e8e3f0fb3f, 'Y', '2010-11-01 09:56:23'),
(754, 16, 0xcce0ebe5edfceae8e520eaf0e0f1edfbe520eae2e0e4f0e0f2edfbe520ece5f2eae820ede020eff3edeaf2e0f520efeeeae0e7fbe2e0fef22c20f7f2ee20447261676f6e20ede520eceee6e5f220eeeff0e5e4e5ebe8f2fc2c20eaeeecf320eff0e8ede0e4ebe5e6e8f220fdf2e020f2e5f0f0e8f2eef0e8ff2e20c2eee7eceee6edfbe520eff0e8f7e8edfb20fdf2eee3ee3a0d0a0d0a3c756c3e0d0a3c6c693ec2edf3f2f0e820f2e5f0f0e8f2eef0e8e820e8ece5fef2f1ff20eae0ecede820eff0eef2e8e2ede8eae02c20ede520efeeece5f7e5ededfbe520eae0ea20ecb8f0f2e2fbe52e20c5f1ebe820eae0ecede820e4e5e9f1f2e2e8f2e5ebfcedee20ece5f0f2e2fb2c20eaebe8eaede8f2e520efee20ede8ec20ecfbf8fcfe2c20f7f2eee1fb20efeeece5edfff2fc20e8f520f1f2e0f2f3f120ede02022ecb8f0f2e2fbe5222e3c2f6c693e0d0a0d0a3c6c693ec3f0e0ede8f6fb20f2e5f0f0e8f2eef0e8e920f7b8f0edfbf520e820e1e5ebfbf520ede520efeeebedeef1f2fcfe20e7e0eceaedf3f2fb2e20c4ebff20e8e3f0eeeaeee22debfee4e5e920f0e5f8e5ede8e520eceee6e5f220e1fbf2fc20eef7e5e2e8e4edee2c20edee20e4ebff20447261676f6e27e020f1ebe8f8eaeeec20f1ebeee6edee20eeeff0e5e4e5ebe8f2fc20eff0e8ede0e4ebe5e6edeef1f2fc20f2e5f520e8ebe820e8edfbf520eff3edeaf2eee22e20cfeee6e0ebf3e9f1f2e02c20ede0e6ece8f2e520ede02022c2eee7eee1edeee2e8f2fc20e8e3f0f32220e820e7e0e2e5f0f8e8f2e520e3f0e0ede8f6f32c20f1e4e5ebe0e220f1eeeef2e2e5f2f1f2e2f3fef9e8e520f5eee4fb2e3c2f6c693e0d0a0d0a3c6c693ecde020e4eef1eae5202d20efeee7e8f6e8ff203c686f6d65206661712e7068703f726561643d74266361743d3323456e7472793130313ef1fdeae83c2f686f6d653e2e20c220fdf2eeec20f1ebf3f7e0e520eaebe8eaede8f2e520ecfbf8fcfe20ede020efeeece5f7e5ededfbf520eaf0e0f1edfbec20eff3edeaf2e0f52c20ffe2ebfffef9e8f5f1ff203c686f6d65206661712e7068703f726561643d74266361743d3323456e7472793131353ee4e0ecfd3c2f686f6d653e2028eee1f9e8ece820f1f2e5efe5edffece820f1e2eee1eee4fb20e4ebff20eee1e5e8f520e3f0f3efef2c20ede0f5eee4fff9e8f5f1ff20e220f1fdeae8292e20447261676f6e20eef2ece5f2e8f220fdf2e820eff3edeaf2fb20ece0ebe5edfceae8ece820e7e5ebb8edfbece820eae2e0e4f0e0f2edfbece820ece5f2eae0ece82e20ddf2ee20efeee7e2eeebe8f220e2e0ec20f0e0e7f0e5f8e8f2fc20f1eeecede8f2e5ebfcedfbe520efeee7e8f6e8e820f1fdeae820e820efeeebf3f7e8f2fc20eff0e0e2e8ebfcedfbe920f0e5e7f3ebfcf2e0f220e8e3f0fb2e20d2e0eae8ec20eee1f0e0e7eeec2c20e7e5ebb8edfbe520ece5f2eae8202d20fdf2ee20e4e0ecfd2e0d0a3c2f756c3e, 'Y', '2010-11-01 09:56:23'),
(963, 16, 0xd7f2ee20eee7ede0f7e0e5f220eaf0e0f1edfbe920f4eeed20e220e8e3f0eee2eeec20e7e0ebe53f, 'Y', '2010-11-01 09:56:23'),
(964, 16, 0xc1ebe5e4edfbe920eaf0e0f1edfbe920f4eeed20e220f1f2eeebe1f6e52022c4e8e0efe0e7eeed20f0e5e9f2e8ede3eee22220eee7ede0f7e0e5f22c20f7f2ee20e2e0f820f2e5eaf3f9e8e920f0e5e9f2e8ede320ede520efeeefe0e4e0e5f220e220e7e0ffe2ebe5ededfbe920f1eee7e4e0f2e5ebe5ec20e8e3f0fb20e4e8e0efe0e7eeed2e20c2fb20ede520eceee6e5f2e520eff0e8edfff2fc20eff0e5e4ebeee6e5ede8e520ede020f2e0eaf3fe20e8e3f0f32e, 'N', '2010-11-01 09:56:23'),
(1006, 16, 0xc4eef1f2f3efe5ed20ebe820e8f1f5eee4edfbe920eaeee420447261676f6e27e03f, 'Y', '2012-07-14 15:43:54'),
(1007, 16, 0xc220f1eeeef2e2e5f2f1f2e2e8e820f120f2f0e5e1eee2e0ede8ffece820ebe8f6e5ede7e8e8203c686f6d65206c6963656e63652e7068703e474e55205075626c6963204c6963656e6365202847504c293c2f686f6d653e20e8f1f5eee4edfbe920eaeee420eef2eaf0fbf220e820e4eef1f2f3efe5ed20e4ebff20e7e0e3f0f3e7eae820e8e72043565320f1ee203c4120485245463d22687474703a2f2f736f75726365666f7267652e6e65742f70726f6a656374732f647261676f6e676f7365727665722f22205441524745543d5f626c616e6b3ed1f2f0e0ede8f6fb20f0e0e7f0e0e1eef2eae820447261676f6e27e020ede020536f75726365466f7267653c2f413e2e, 'N', '2010-11-01 10:02:29'),
(1022, 16, 0xc8e3f0e020e220f0e5e0ebfcedeeec20e2f0e5ece5ede8202d20fdf2ee20eee4edeee2f0e5ece5edede0ff2028f1e8edf5f0eeedede0ff2920e8e3f0e020f1eeefe5f0ede8eaeee220e220efe0f0f2e8e82e20cee1e020f1eeefe5f0ede8eae020e4eeebe6edfb20eff0e8f1f3f2f1f2e2eee2e0f2fc20eee4edeee2f0e5ece5ededee20e820e4e5ebe0f2fc20f5eee4fb2e20cfe0f0f2e8ff20e8e3f0e0e5f2f1ff20e220f2e5f7e5ede8e520eee4edeee920e2f1f2f0e5f7e82e20cff0e8ece5f0eeec20e8e3f0fb20e220f0e5e0ebfcedeeec20e2f0e5ece5ede820ffe2ebffe5f2f1ff20e8e3f0e020e7e020f0e5e0ebfcedeee920e4eef1eaeee920e8ebe820ede020eee4edeeec20e8e720ecedeee6e5f1f2e2e020e8e3f0eee2fbf520f1e5f0e2e5f0eee22e20d1ec2e20f2e0eae6e5203c686f6d65206661712e7068703f726561643d74266361743d3323456e7472793135323ecfeef8e0e3eee2e0ff20e8e3f0e03c2f686f6d653e2e, 'Y', '2010-11-01 10:02:29'),
(1025, 16, 0xcfe0f0f2e8ff20e1e5e7203c686f6d65206661712e7068703f726561643d74266361743d33353723456e74727939373ef4eef0fb3c2f686f6d653e2e206361743d3323456e747279393ecaeeece83c2f686f6d653e20e7e0e4e0b8f2f1ff20eff0e8e3ebe0f8e0fef9e8ec20e8e3f0eeeaeeec2e, 'Y', '2010-11-01 10:02:29'),
(2840, 4, 0x5761726e756e67, 'Y', '2012-09-04 00:42:48'),
(2986, 4, 0x576f6368656e656e6465202855544329, 'Y', '2012-09-04 00:44:36'),
(2988, 4, '', 'Y', '2012-09-04 00:44:36'),
(2989, 4, 0x4f6e6c696e65207365697420266c743b2573204d696e7574656e, 'Y', '2012-09-04 00:44:36'),
(2993, 4, 0x44617320537069656c2068617420766572737465636b7465204b6f6d6d656e746172652e, 'Y', '2012-09-04 00:44:36'),
(3144, 4, '', 'Y', '2012-09-04 00:44:36'),
(3145, 4, '', 'Y', '2012-09-04 00:44:36'),
(1036, 16, 0xcceee3f320ebe820ff20f3e4e0ebe8f2fc20f1e2eefe20f3f7b8f2edf3fe20e7e0efe8f1fc20e820f3e4e0ebfffef2f1ff20ebe820ede5e0eaf2e8e2edfbe520efeeebfce7eee2e0f2e5ebe83f, 'Y', '2012-07-05 23:37:05'),
(1037, 16, 0xd3f7b8f2edfbe520e7e0efe8f1e820efeeebfce7eee2e0f2e5ebe5e920ede520efeee4ebe5e6e0f220f3e4e0ebe5ede8fe2e20cde020f2ee20e5f1f2fc20ecedeee3ee20eff0e8f7e8ed2e0d0a0d0ac5f1ebe820f320e4e0ededeee3ee20efeeebfce7eee2e0f2e5ebff20e5f1f2fc20f1fbe3f0e0ededfbe520f0e5e9f2e8ede3eee2fbe520efe0f0f2e8e82c20f3e4e0ebe5ede8e520e5e3ee20f3f7b8f2edeee920e7e0efe8f1e820eee7ede0f7e0ebee20e1fb20f3e4e0ebe5ede8e520e7e0efe8f1e5e920ee20eae0e6e4eee920efe0f0f2e8e82c20eaeef2eef0f3fe20e4f0f3e3e8e520f3f7e0f1f2ede8eae82044475320f1fbe3f0e0ebe820eff0eef2e8e220ede5e3ee2e20c8f520f0e5e9f2e8ede3e820ede5eee1f5eee4e8ecee20e1fbebee20e1fb20eef2eaeef0f0e5eaf2e8f0eee2e0f2fc20f1eeeef2e2e5f2f1f2e2f3fef9e8ec20eee1f0e0e7eeec2c20f2e0ea20e6e520eae0ea20e820f0e5e9f2e8ede3e820e2f1e5f52c20f120eae5ec20eeede820e8e3f0e0ebe820efeef1ebe520f3e4e0ebe5ededeee3ee20efeeebfce7eee2e0f2e5ebff2e0d0a0d0ac5f1ebe820e4e0ededfbe920efeeebfce7eee2e0f2e5ebfc20f3f7e0f1f2e2eee2e0eb20e220eee1f1f3e6e4e5ede8fff520ede020d4eef0f3ece52c20edf3e6edee20e1fbebee20e1fb20f3e4e0ebe8f2fc20eae0e6e4f3fe20e7e0efe8f1fc2c20f1e4e5ebe0ededf3fe20fdf2e8ec20efeeebfce7eee2e0f2e5ebe5ec2c20e820eaeeecf32df2ee20edf3e6edee20e1fbebee20e1fb20eef2eaeef0f0e5eaf2e8f0eee2e0f2fc20e2f1e520f1e2ffe7e0ededfbe520f120ede5e920e7e0efe8f1e820e4f0f3e3e8f520f3f7e0f1f2ede8eaeee22e0d0a0d0ac0edeae5f2fb20efeeebfce7eee2e0f2e5ebe5e920ede520f3e4e0ebfffef2f1ff2028efee20f1f5eee4edfbec20eff0e8f7e8ede0ec292e20ceede820efeeece5f7e0fef2f1ff20eae0ea20ede5e0eaf2e8e2edfbe520e820e8f1eaebfef7e0fef2f1ff20e8e720eee1fbf7edeee3ee20f1efe8f1eae020efeeebfce7eee2e0f2e5ebe5e92c20edee20eeede820e2f1b820e5f9b820eceee3f3f220e1fbf2fc20eef2eee1f0e0e6e5edfb20e220203c686f6d6520757365722e7068703f73686f77616c6c3d313eefeeebedeeec20f1efe8f1eae520efeeebfce7eee2e0f2e5ebe5e93c2f686f6d653e2e, 'Y', '2012-07-06 11:33:59'),
(1505, 16, 0xd3f2eef7edb8edede0ff20f4eef0e02028eaeeece820e2fbf7e8f1ebffe5f2f1ff20f1e8f1f2e5eceee929, 'Y', '2010-11-01 21:46:53'),
(1697, 16, 0xc4ebff20eff0e5e4eef2e2f0e0f9e5ede8ff20ede5eaeef0f0e5eaf2edeee3ee20efeeebfce7eee2e0ede8ff20f1e5f0e2e5f0eeec20f1e8f1f2e5ece020eae2eef2e8f0eee2e0ede8ff20e1ebeeeae8f0f3e5f220efeeebfce7eee2e0f2e5ebe5e92c20efe5f0e5e3f0f3e6e0fef9e8f520e7e0e3f0f3e6e0fef9e8f52044475320f1ebe8f8eaeeec20e1eeebfcf8e8ec20eaeeebe8f7e5f1f2e2eeec20e7e0eff0eef1eee22e200d0a0d0addf2ee20f1f2e0ebee20ede5eee1f5eee4e8ecfbec20f1ee20e2f0e5ece5ede82c20eaeee3e4e020eff0eee2e0e9e4e5f02044475320f1f2e0eb20e2fbe4e2e8e3e0f2fc20eff0e5f2e5ede7e8e820ee20f1ebe8f8eaeeec20e1eeebfcf8eeec20eaeeebe8f7e5f1f2e2e520e8f1efeeebfce7f3e5ecfbf520f1e5f0e2e5f0eeec20f0e5f1f3f0f1eee22e20d1eef5f0e0edffe9f2e5203c693eeff0e8e5ecebe5ecf3fe3c2f693e20f7e0f1f2eef2f320eee1f0e0f9e5ede8e920ea20f1e5f0e2e5f0f32c20f7f2eee1fb20ede520e1fbf2fc20e7e0e1ebeeeae8f0eee2e0ededfbece82e20c2fb20eceee6e5f2e520eff0eee8e7e2e5f1f2e820ede520e1eeebe5e5203130303020e7e0eff0eef1eee220e220f7e0f12c20f7f2ee20f1eef1f2e0e2ebffe5f220eeeaeeebee20332c3620f1e5eaf3ede4fb20ece5e6e4f320eee1edeee2ebe5ede8ffece820f1f2f0e0ede8f6fb2e0d0a0d0ac5f1ebe820e2fb20eff0e5e2fbf1e8f2e520eae2eef2f320eee1f0e0f9e5ede8e92c20e2fb20eceee6e5f2e520e1fbf2fc20e7e0e1ebeeeae8f0eee2e0edfb20ede020e4e5edfc2e203c62723e20c5f1ebe820e2fb20f1f7e8f2e0e5f2e52c20f7f2ee20e1fbebe820e7e0e1ebeeeae8f0eee2e0edfb20eef8e8e1eef7edee20e8ebe820e1e5e7eef1edeee2e0f2e5ebfcedee2c20e2eee9e4e8f2e520ede020f1e5f0e2e5f020eae0ea20e3eef1f2fc20e820f1eeeee1f9e8f2e520eee120fdf2eeec20ede020f4eef0f3ece520f2e5f5efeee4e4e5f0e6eae82c20f3eae0e7e0e220eff1e5e2e4eeede8ec20e7e0e1ebeeeae8f0eee2e0ededeee3ee20efeeebfce7eee2e0f2e5ebff2e20cfeee6e0ebf3e9f1f2e02c20ede520ede0e4ee20eff3e1ebe8eaeee2e0f2fc20f1e2eee920652d6d61696c20e8ebe820ebfee1f3fe20e4f0f3e3f3fe20efe5f0f1eeede0ebfcedf3fe20e8edf4eef0ece0f6e8fe20e220f4eef0f3ece52e, 'N', '2010-11-03 06:58:47'),
(474, 16, 0xc4e5e9f1f2e2e8e520ede5e8e7e2e5f1f2edee20ebe8e1ee20ede5e4eeeff3f1f2e8ecee20e220fdf2eeec20f1eef1f2eeffede8e820efe0f0f2e8e82e, 'Y', '2010-11-03 07:13:32'),
(475, 16, 0xcaeeece820e2fbf5eee4e8f220e8e720e4eeeff3f1f2e8ecfbf520eff0e5e4e5ebeee22e20cfeee6e0ebf3e9f1f2e02c20e2fbe1e5f0e8f2e520e1eeebe5e520efeee4f5eee4fff9e5e520e7ede0f7e5ede8e52e, 'Y', '2010-11-03 07:13:32'),
(476, 16, 0xcef8e8e1eae020e2ee20e2f0e5ecff20f5eee4e02e20d1eaeef0e5e520e2f1e5e3ee2c20e2f1b820e1f3e4e5f220f0e0e1eef2e0f2fc2c20e5f1ebe820e2fb20efeeeff0eee1f3e5f2e520e5f9b820f0e0e72e20c220eff0eef2e8e2edeeec20f1ebf3f7e0e520eee1f0e0f2e8f2e5f1fc20ea20efeee4e4e5f0e6eae52e, 'Y', '2010-11-03 07:13:32'),
(477, 16, 0xcde5e2e5f0edeee520f7e8f1ebee20f4eef0eee2fbf520eae0ecede5e9, 'Y', '2010-11-03 07:13:32'),
(257, 16, '', 'Y', '2012-07-15 21:20:17'),
(281, 16, 0xd1f2f0e0f2e5e3e8ff20e820f2e5f0ece8edeeebeee3e8ff, 'Y', '2010-11-03 07:32:25'),
(285, 16, 0xcbe5f1f2ede8f6e020e8e7f3f7e5ede8ff20e3ee, 'Y', '2010-11-03 07:32:25'),
(293, 16, 0xc4ebff20f2e5f52c20eaf2ee20ede520eceee6e5f220e4eeebe3ee20eaeeedf6e5edf2f0e8f0eee2e0f2fc20e2ede8ece0ede8e52e, 'Y', '2010-11-03 07:32:25'),
(384, 16, 0xd7e8f2e0f2fc20f4eef0f3ec, 'Y', '2010-11-03 07:32:25'),
(385, 16, 0xcdeee2e0ff20f2e5ece0, 'Y', '2012-10-14 14:35:06'),
(694, 16, 0xd7f2ee20f2e0eaeee52022cde0e1ebfee4e0e5ecfbe520e8e3f0fb223f, 'Y', '2010-11-03 07:32:25'),
(695, 16, 0xddf2e020f4f3edeaf6e8ff20efeee7e2eeebffe5f220e2e0ec20f1eef5f0e0edfff2fc20f1efe8f1eeea20f1f1fbebeeea20ede020efe0f0f2e8e8203c623ee4f0f3e3e8f53c2f623e20e8e3f0eeeaeee22e200d0ac5f1ebe820e8e3f0e020ede0e1ebfee4e0e5f2f1ff20eae5ec2debe8e1ee2c20f1f1fbebeae0203c693e22cde0e1ebfee4e0f2e5ebe8223c2f693e20eef2eee1f0e0e6e0e5f2f1ff20e2ede8e7f320f1f2f0e0ede8f6fb20efe0f0f2e8e82e0d0a0d0ad7f2eee1fb20e4eee1e0e2e8f2fc20efe0f0f2e8fe20ea20f1efe8f1eaf320ede0e1ebfee4e0e5ecfbf52c20edf3e6edee20ede0e9f2e820eff0eee4eeebe6e0fef9f3fef1ff20e8e3f0f320e820eaebe8eaedf3f2fc20ede020f1f1fbebeae52022c4eee1e0e2e8f2fc20e220f1efe8f1eeea20ede0e1ebfee4e5ede8ff222e20d7f2eee1fb20f3e2e8e4e5f2fc20f1efe8f1eeea20ede0e1ebfee4e0e5ecfbf520e8e3f02c20f1ebe5e4f3e5f220eaebe8eaedf3f2fc20ede020f1f1fbebeae5203c686f6d65207374617475732e7068703e22d1eef1f2eeffede8e5223c2f686f6d653e20e8ebe8203c686f6d652073686f775f67616d65732e7068703f7569643d616c6c3e22c8e3f0fb223c2f686f6d653e20e820eff0eee9f2e820efee20f1f1fbebeae52022cde0e1ebfee4e0e5ecfbe520efe0f0f2e8e8222e0d0a0d0ac4ebff20f3e4e0ebe5ede8ff20efe0f0f2e8e820e8e720f1efe8f1eae020ede0e1ebfee4e5ede8ff20eef2eaf0eee9f2e520e5b820f1f2f0e0ede8f6f320e820eff0eee9e4e8f2e520efee20f1f1fbebeae52022d3e4e0ebe8f2fc20e8e720f1efe8f1eae020ede0e1ebfee4e5ede8ff222e200d0a0d0ac2fb20eceee6e5f2e520ede0e1ebfee4e0f2fc20f2eeebfceaee20eff0eee4eeebe6e0fef9e8e5f1ff20efe0f0f2e8e82c20eaeee3e4e020efe0f0f2e8ff20e7e0e2e5f0f8e0e5f2f1ff2c20eeede020e0e2f2eeece0f2e8f7e5f1eae820f3e4e0ebffe5f2f1ff20e8e720f1efe8f1eae020ede0e1ebfee4e0e5ecfbf52e20caeee3e4e020ede0e1ebfee4e0e5ece0ff20efe0f0f2e8ff20e7e0e2e5f0f8e0e5f2f1ff2c20447261676f6e20eef2eff0e0e2ebffe5f220e2e0ec20f1eeeee1f9e5ede8e520eee120fdf2eeec20f120f3eae0e7e0ede8e5ec20f1f7b8f2e02e, 'N', '2010-11-03 07:32:25'),
(240, 16, 0xc4eeece0f8edffff, 'Y', '2010-11-05 12:39:40'),
(266, 16, 0xd1e0e9f220e4ebff20f1eef2f0f3e4ede8f7e5f1f2e2e02e20d7e8f2e0e9f2e520e820f3f7e0f1f2e2f3e9f2e521, 'Y', '2010-11-05 12:39:40'),
(288, 16, 0xc2e0ec20f1ebe5e4f3e5f220e7ede0f2fc2c20f7f2ee20e3eee2eef0e8ebe820eee120fdf2eeec20e4f0f3e3e8e520e8e3f0eeeae82e, 'Y', '2010-11-05 12:39:40'),
(295, 16, 0xc4ebff20ede0f7e8ede0fef9e5e3ee20e2f1e5e7ede0e9eae82e, 'Y', '2010-11-05 12:39:40'),
(299, 16, '', 'Y', '2012-07-15 21:20:17'),
(337, 16, 0xd1eee7e4e0f2e5ebe820447261676f6e27e0, 'Y', '2010-11-05 12:39:40'),
(5681, 36, 0x6b616c6b756cc3a16c742068656e64696b6570, 'Y', '2015-07-23 12:11:44'),
(383, 16, 0xd1efe8f1eeea20f2e5ec, 'Y', '2010-11-05 12:39:40'),
(714, 16, 0xc8e7e2e8ede8f2e52c20ede520f3e4e0b8f2f1ff20ede0e9f2e820f3eae0e7e0ededf3fe20efe0efeaf320f1eeeee1f9e5ede8e92e, 'Y', '2010-11-05 12:39:40'),
(715, 16, 0xc2f0e5ecff20f1f2f0e0ede8f6fb, 'Y', '2010-11-05 12:39:40'),
(730, 16, 0xc8e7ece5ede8f2fc20eef2eff3f1ea, 'Y', '2010-11-05 12:39:40'),
(744, 16, 0xc2e5f0edf3f2fcf1ff20e220efe0efeaf320eff0e820efeee2f2eef0e5ede8e8, 'Y', '2010-11-05 12:39:40'),
(748, 16, 0xcceee3f320ff20ede0f7e0f2fc20e8ebe820eef0e3e0ede8e7eee2e0f2fc20f2f3f0ede8f03f, 'Y', '2010-11-05 12:39:40'),
(749, 16, 0xcef0e3e0ede8e7e0f6e8ff20f2f3f0ede8f0eee220eff0e8e2e5f2f1f2e2f3e5f2f1ff2e20c4ebff20e0edeeedf1e020f2f3f0ede8f0e02c20efeee6e0ebf3e9f1f2e02c20e8f1efeeebfce7f3e9f2e5203c686f6d6520666f72756d2f6c6973742e7068703f666f72756d3d343ec4e8f1eaf3f1f1e8eeededfbe920f4eef0f3ec20447261676f6e27e03c2f686f6d653e2e20447261676f6e20efeeeceee6e5f220e2e0ec20e220f0e0f1eff0eef1f2f0e0ede5ede8e820e8edf4eef0ece0f6e8e820eff3f2b8ec20e4eee1e0e2ebe5ede8ff20f1eeeef2e2e5f2f1f2e2f3fef9e8f520f1f1fbebeeea20e220d7e0c2ee2e, 'Y', '2010-11-05 12:39:40'),
(756, 16, 0xc0f4e3e0e3e8f1f2e0ed, 'Y', '2010-11-05 12:39:40'),
(757, 16, 0xc0ebe1e0ede8ff, 'Y', '2010-11-05 12:39:40'),
(759, 16, 0xc0ede4eef0f0e0, 'Y', '2010-11-05 12:39:40'),
(760, 16, 0xc0ede3eeebe0, 'Y', '2010-11-05 12:39:40'),
(761, 16, 0xc0edf2e0f0eaf2e8eae0, 'Y', '2010-11-05 12:39:40'),
(758, 16, 0xc0ebe6e8f0, 'Y', '2010-11-05 12:43:27'),
(762, 16, 0xc0edf2e8e3f3e020e820c1e0f0e1f3e4e0, 'Y', '2012-10-14 14:32:10'),
(763, 16, 0xc0f0e3e5edf2e8ede0, 'Y', '2010-11-05 12:43:27'),
(764, 16, 0xc0f0ece5ede8ff, 'Y', '2010-11-05 12:43:27'),
(765, 16, 0xc0e2f1f2f0e0ebe8ff, 'Y', '2010-11-05 12:43:27'),
(766, 16, 0xc0e2f1f2f0e8ff, 'Y', '2010-11-05 12:43:27'),
(767, 16, 0xc0e7e5f0e1e0e9e4e6e0ed, 'Y', '2010-11-05 12:43:27'),
(768, 16, 0xc1e0e3e0ecfb, 'Y', '2010-11-05 12:43:27'),
(769, 16, 0xc1e0f5f0e5e9ed, 'Y', '2010-11-05 12:43:27'),
(770, 16, 0xc1e0f0e1e0e4eef1, 'Y', '2010-11-05 12:43:27'),
(771, 16, 0xc1e0ede3ebe0e4e5f8, 'Y', '2010-11-05 12:43:27'),
(772, 16, 0xc1e5ebeef0f3f1f1e8ff, 'Y', '2010-11-05 12:43:27'),
(773, 16, 0xc1e5ebfce3e8ff, 'Y', '2010-11-05 12:43:27'),
(774, 16, 0xc1e5ebe8e7, 'Y', '2010-11-05 12:43:27'),
(775, 16, 0xc1e5ede8ed, 'Y', '2010-11-05 12:43:27'),
(776, 16, 0xc1f3f2e0ed, 'Y', '2010-11-05 12:43:27'),
(777, 16, 0xc1eeebe8e2e8ff, 'Y', '2010-11-05 12:43:27'),
(779, 16, 0xc1eef2f1e2e0ede0, 'Y', '2010-11-05 12:43:27'),
(780, 16, 0xc1f0e0e7e8ebe8ff, 'Y', '2010-11-05 12:43:27'),
(783, 16, 0xc1f3f0eae8ede02dd4e0f1ee, 'Y', '2010-11-05 12:43:27'),
(784, 16, 0xc1f3f0f3ede4e8, 'Y', '2010-11-05 12:43:27'),
(785, 16, 0xcae0ece1eee4e6e0, 'Y', '2010-11-05 12:43:27'),
(786, 16, 0xcae0ece5f0f3ed, 'Y', '2010-11-05 12:43:27'),
(787, 16, 0xcae0ede0e4e0, 'Y', '2010-11-05 12:43:27'),
(788, 16, 0xcae0efe52dc2e5f0e4e5, 'Y', '2010-11-05 12:43:27'),
(789, 16, 0xd6e5edf2f0e0ebfcedee2dc0f4f0e8eae0edf1eae0ff20f0e5f1eff3e1ebe8eae0, 'Y', '2010-11-05 12:43:27'),
(790, 16, 0xd7e0e4, 'Y', '2010-11-05 12:43:27'),
(791, 16, 0xd7e8ebe8, 'Y', '2010-11-05 12:43:27'),
(792, 16, 0xcae8f2e0e9, 'Y', '2010-11-05 12:49:18'),
(793, 16, 0xcaeeebf3ece1e8ff, 'Y', '2010-11-05 12:49:18'),
(794, 16, 0xcaeeeceef0f1eae8e520eef1f2f0eee2e0, 'Y', '2010-11-05 12:49:18'),
(795, 16, 0xcaeeede3ee2dc1f0e0e7e7e0e2e8ebebfc, 'Y', '2010-11-05 12:49:18'),
(796, 16, 0xcaeeede3ee2dcae8edf8e0f1e0, 'Y', '2010-11-05 12:49:18'),
(797, 16, 0xcaeef1f2e02dd0e8eae0, 'Y', '2010-11-05 12:49:18'),
(798, 16, 0xcaeef22de427c8e2f3e0f0, 'Y', '2010-11-05 12:49:18'),
(799, 16, 0xd5eef0e2e0f2e8ff, 'Y', '2010-11-05 12:49:18'),
(800, 16, 0xcaf3e1e0, 'Y', '2010-11-05 12:49:18'),
(801, 16, 0xcae8eff0, 'Y', '2010-11-05 12:49:18'),
(802, 16, 0xd7e5f8f1eae0ff20f0e5f1eff3e1ebe8eae0, 'Y', '2010-11-05 12:49:18'),
(803, 16, 0xc4e0ede8ff, 'Y', '2010-11-05 12:49:18'),
(804, 16, 0xc4e7e8e1f3f2e8, 'Y', '2010-11-05 12:49:18'),
(805, 16, 0xc4eeece8ede8eae0, 'Y', '2010-11-05 12:49:18'),
(806, 16, 0xc4eeece8ede8eae0edf1eae0ff20f0e5f1eff3e1ebe8eae0, 'Y', '2010-11-05 12:49:18'),
(808, 16, 0xddeae2e0e4eef0, 'Y', '2010-11-05 12:49:18'),
(809, 16, 0xc5e3e8efe5f2, 'Y', '2010-11-05 12:49:18'),
(810, 16, 0xddebfc2dd1e0ebfce2e0e4eef0, 'Y', '2010-11-05 12:49:18'),
(811, 16, 0xddeae2e0f2eef0e8e0ebfcede0ff20c3e2e8ede5ff, 'Y', '2010-11-05 12:49:18'),
(812, 16, 0xddf0e8f2f0e5ff, 'Y', '2010-11-05 12:49:18'),
(813, 16, 0xddf1f2eeede8ff, 'Y', '2010-11-05 12:49:18'),
(814, 16, 0xddf4e8eeefe8ff, 'Y', '2010-11-05 12:49:18'),
(815, 16, 0xd4e8e4e6e8, 'Y', '2010-11-05 12:49:18'),
(816, 16, 0xd4e8edebffede4e8ff, 'Y', '2010-11-05 12:49:18'),
(817, 16, 0xd4f0e0edf6e8ff, 'Y', '2010-11-05 12:49:18'),
(818, 16, 0xc3e0e1eeed, 'Y', '2010-11-05 12:49:18'),
(819, 16, 0xc3e0ece1e8ff, 'Y', '2010-11-05 12:49:18'),
(820, 16, 0xc3f0f3e7e8ff, 'Y', '2010-11-05 12:49:18'),
(821, 16, 0xc3e5f0ece0ede8ff, 'Y', '2010-11-05 12:49:18'),
(823, 16, 0xc3f0e5f6e8ff, 'Y', '2010-11-05 12:51:10'),
(824, 16, 0xc3f0e5ede0e4e0, 'Y', '2010-11-05 12:51:10'),
(825, 16, 0xc3e2e0f2e5ece0ebe0, 'Y', '2010-11-05 12:51:10'),
(826, 16, 0xc3e2e8ede5ff, 'Y', '2010-11-05 12:51:10'),
(827, 16, 0xc3e2e8ede5ff2dc1e8f1f1e0f3, 'Y', '2010-11-05 12:51:10'),
(830, 16, 0xc3eeede4f3f0e0f1, 'Y', '2010-11-05 12:51:10'),
(831, 16, 0xc3eeed20caeeede3, 'Y', '2010-11-05 12:51:10'),
(832, 16, 0xc2e5ede3f0e8ff, 'Y', '2010-11-05 12:51:10'),
(833, 16, 0xc8f1ebe0e4ede8ff, 'Y', '2010-11-05 12:51:10'),
(834, 16, 0xc8ede4e8ff, 'Y', '2010-11-05 12:51:10'),
(835, 16, 0xc8ede4eeede5e7e8ff, 'Y', '2010-11-05 12:51:10'),
(836, 16, 0xc8f0e0ed, 'Y', '2010-11-05 12:51:10'),
(837, 16, 0xc8f0e0ea, 'Y', '2010-11-05 12:51:10'),
(838, 16, 0xc8f0ebe0ede4e8ff, 'Y', '2010-11-05 12:51:10'),
(839, 16, 0xc8e7f0e0e8ebfc, 'Y', '2010-11-05 12:51:10'),
(840, 16, 0xc8f2e0ebe8ff, 'Y', '2010-11-05 12:51:10'),
(841, 16, 0xdfece0e9eae0, 'Y', '2010-11-05 12:51:10'),
(842, 16, 0xdfefeeede8ff, 'Y', '2010-11-05 12:51:10'),
(843, 16, 0xc8eef0e4e0ede8ff, 'Y', '2010-11-05 12:51:10'),
(845, 16, 0xcae5ede8ff, 'Y', '2010-11-05 12:51:10'),
(846, 16, 0xcae8f0e8e1e0f2e8, 'Y', '2010-11-05 12:51:10'),
(849, 16, 0xcaf3e2e5e9f2, 'Y', '2010-11-05 12:51:10'),
(850, 16, 0xcae8f0e3e8e7e8ff, 'Y', '2010-11-05 12:51:10'),
(851, 16, 0xcbe0eef1, 'Y', '2010-11-05 12:51:10'),
(829, 16, 0xc3e0e8f2e8, 'Y', '2010-11-05 12:53:15'),
(852, 16, 0xcbe0f2e2e8ff, 'Y', '2010-11-05 12:53:15'),
(854, 16, 0xcbe5f1eef2ee, 'Y', '2010-11-05 12:53:15'),
(855, 16, 0xcbe8e1e5f0e8ff, 'Y', '2010-11-05 12:53:15'),
(856, 16, 0xcbe8e2e8ff, 'Y', '2010-11-05 12:53:15'),
(857, 16, 0xcbe8f5f2e5edf8f2e5e9ed, 'Y', '2010-11-05 12:53:15'),
(858, 16, 0xcbe8f2e2e0, 'Y', '2010-11-05 12:53:15'),
(859, 16, 0xcbfeeaf1e5ece1f3f0e3, 'Y', '2010-11-05 12:53:15'),
(861, 16, 0xcce0eae5e4eeede8ff, 'Y', '2010-11-05 12:53:15'),
(862, 16, 0xcce0e4e0e3e0f1eae0f0, 'Y', '2010-11-05 12:53:15'),
(863, 16, 0xcce0ebe0e2e8, 'Y', '2010-11-05 12:53:15'),
(864, 16, 0xcce0ebe0e7e8ff, 'Y', '2010-11-05 12:53:15'),
(865, 16, 0xcce0ebfce4e8e2fb, 'Y', '2010-11-05 12:53:15'),
(866, 16, 0xcce0ebe8, 'Y', '2010-11-05 12:53:15'),
(867, 16, 0xcce0ebfcf2e0, 'Y', '2010-11-05 12:53:15'),
(868, 16, 0xcce0f0f8e0ebebeee2fb20cef1f2f0eee2e0, 'Y', '2010-11-05 12:53:15'),
(869, 16, 0xcce0e2f0e8f2e0ede8ff, 'Y', '2010-11-05 12:53:15'),
(870, 16, 0xcce0e2f0e8eae8e9, 'Y', '2010-11-05 12:53:15'),
(871, 16, 0xcce5eaf1e8eae0, 'Y', '2010-11-05 12:53:15'),
(872, 16, 0xcce8eaf0eeede5e7e8ff, 'Y', '2010-11-05 12:53:15'),
(873, 16, 0xcceeebe4e0e2e8ff, 'Y', '2010-11-05 12:53:15'),
(874, 16, 0xcceeede0eaee, 'Y', '2010-11-05 12:53:15'),
(875, 16, 0xcceeede3eeebe8ff, 'Y', '2010-11-05 12:53:15'),
(876, 16, 0xcce0f0eeeaeaee, 'Y', '2010-11-05 12:53:15'),
(877, 16, 0xcceee7e0ece1e8ea, 'Y', '2010-11-05 12:53:15'),
(878, 16, 0xccfcffedece0, 'Y', '2010-11-05 12:53:15'),
(879, 16, 0xcde0ece8e1e8ff, 'Y', '2010-11-05 12:55:21'),
(880, 16, 0xcde0f3f0f3, 'Y', '2010-11-05 12:55:21'),
(881, 16, 0xcde5efe0eb, 'Y', '2010-11-05 12:55:21'),
(882, 16, 0xcde8e4e5f0ebe0ede4fb, 'Y', '2010-11-05 12:55:21'),
(883, 16, 0xcdeee2e0ff20c7e5ebe0ede4e8ff, 'Y', '2010-11-05 12:55:21'),
(884, 16, 0xcde8eae0f0e0e3f3e0, 'Y', '2010-11-05 12:55:21'),
(885, 16, 0xcde8e3e5f0, 'Y', '2010-11-05 12:55:21'),
(886, 16, 0xcde8e3e5f0e8ff, 'Y', '2010-11-05 12:55:21'),
(887, 16, 0xcdeef0e2e5e3e8ff, 'Y', '2010-11-05 12:55:21'),
(888, 16, 0xceece0ed, 'Y', '2010-11-05 12:55:21'),
(889, 16, 0xcfe0eae8f1f2e0ed, 'Y', '2010-11-05 12:55:21'),
(892, 16, 0xcfe0ede0ece0, 'Y', '2010-11-05 12:55:21'),
(893, 16, 0xcfe0eff3e02dcdeee2e0ff20c3e2e8ede5ff, 'Y', '2010-11-05 12:55:21'),
(894, 16, 0xcfe0f0e0e3e2e0e9, 'Y', '2010-11-05 12:55:21'),
(895, 16, 0xcfe5f0f3, 'Y', '2010-11-05 12:55:21'),
(896, 16, 0xd4e8ebe8efefe8edfb, 'Y', '2010-11-05 12:55:21'),
(897, 16, 0xcfeeebfcf8e0, 'Y', '2010-11-05 12:55:21'),
(898, 16, 0xcfeef0f2f3e3e0ebe8ff, 'Y', '2010-11-05 12:55:21'),
(899, 16, 0xcff3fdf0f2ee2dd0e8eaee, 'Y', '2010-11-05 12:55:21'),
(900, 16, 0xcae0f2e0f0, 'Y', '2010-11-05 12:55:21'),
(901, 16, 0xd0f3ecfbede8ff, 'Y', '2010-11-05 12:55:21'),
(902, 16, 0xd0eef1f1e8ff, 'Y', '2010-11-05 12:55:21'),
(903, 16, 0xd0f3e0ede4e0, 'Y', '2010-11-05 12:55:21'),
(907, 16, 0xd1e0eceee0, 'Y', '2010-11-05 12:57:29'),
(908, 16, 0xd1e0ed2dcce0f0e8edee, 'Y', '2010-11-05 12:57:29'),
(910, 16, 0xd1e0f3e4eee2f1eae0ff20c0f0e0e2e8ff, 'Y', '2010-11-05 12:57:29'),
(911, 16, 0xd1e5ede5e3e0eb, 'Y', '2010-11-05 12:57:29'),
(913, 16, 0xd1e5e9f8e5ebfb, 'Y', '2010-11-05 12:57:29'),
(914, 16, 0xd1fce5f0f0e02dcbe5eeede5, 'Y', '2010-11-05 12:57:29'),
(915, 16, 0xd1e8ede3e0eff3f0, 'Y', '2010-11-05 12:57:29'),
(916, 16, 0xd1ebeee2e0eae8ff, 'Y', '2010-11-05 12:57:29'),
(917, 16, 0xd1ebeee2e5ede8ff, 'Y', '2010-11-05 12:57:29'),
(918, 16, 0xd1eeebeeeceeedeee2fb20eef1f2f0eee2e0, 'Y', '2010-11-05 12:57:29'),
(919, 16, 0xd1eeece0ebe8, 'Y', '2010-11-05 12:57:29'),
(920, 16, 0xdec0d0, 'Y', '2010-11-05 12:57:29'),
(921, 16, 0xc8f1efe0ede8ff, 'Y', '2010-11-05 12:57:29'),
(922, 16, 0xd8f0e82dcbe0edeae0, 'Y', '2010-11-05 12:57:29'),
(923, 16, 0xd1f3e4e0ed, 'Y', '2010-11-05 12:57:29'),
(924, 16, 0xd1f3f0e8ede0ec, 'Y', '2010-11-05 12:57:29'),
(925, 16, 0xd1e2e0e7e8ebe5ede4, 'Y', '2010-11-05 12:57:29'),
(926, 16, 0xd8e2e5f6e8ff, 'Y', '2010-11-05 12:57:29'),
(927, 16, 0xd8e2e5e9f6e0f0e8ff, 'Y', '2010-11-05 12:57:29'),
(928, 16, 0xd1e8f0e8ff, 'Y', '2010-11-05 12:57:29'),
(929, 16, 0xd2e0e9e2e0edfc, 'Y', '2010-11-05 12:57:29'),
(930, 16, 0xd2e0e4e6e8eae8f1f2e0ed, 'Y', '2010-11-05 12:59:44'),
(931, 16, 0xd2e0ede7e0ede8ff, 'Y', '2010-11-05 12:59:44'),
(932, 16, 0xd2e0e8ebe0ede4, 'Y', '2010-11-05 12:59:44'),
(933, 16, 0xd2eee3ee, 'Y', '2010-11-05 12:59:44'),
(934, 16, 0xd2eeede3e0, 'Y', '2010-11-05 12:59:44'),
(935, 16, 0xd2f0e8ede8e4e0e420e820d2eee1e0e3ee, 'Y', '2010-11-05 12:59:44'),
(936, 16, 0xd2f3ede8f1, 'Y', '2010-11-05 12:59:44'),
(937, 16, 0xd2f3f0f6e8ff, 'Y', '2010-11-05 12:59:44'),
(938, 16, 0xd2f3f0eaece5ede8f1f2e0ed, 'Y', '2010-11-05 12:59:44'),
(939, 16, 0xd2f3e2e0ebf3, 'Y', '2010-11-05 12:59:44'),
(940, 16, 0xd3e3e0ede4e0, 'Y', '2010-11-05 12:59:44'),
(941, 16, 0xd3eaf0e0e8ede0, 'Y', '2010-11-05 12:59:44'),
(942, 16, 0xcee1fae5e4e8edb8ededfbe520c0f0e0e1f1eae8e520ddece8f0e0f2fb, 'Y', '2010-11-05 12:59:44'),
(943, 16, 0xc2e5ebe8eaeee1f0e8f2e0ede8ff, 'Y', '2010-11-05 12:59:44'),
(944, 16, 0xd1d8c0, 'Y', '2010-11-05 12:59:44'),
(945, 16, 0xd3f0f3e3e2e0e9, 'Y', '2010-11-05 12:59:44'),
(946, 16, 0xd3e7e1e5eae8f1f2e0ed, 'Y', '2010-11-05 12:59:44'),
(947, 16, 0xc2e0edf3e0f2f3, 'Y', '2010-11-05 12:59:44'),
(948, 16, 0xc2e0f2e8eae0ed, 'Y', '2010-11-05 12:59:44'),
(949, 16, 0xc2e5ede5f1f3fdebe0, 'Y', '2010-11-05 12:59:44'),
(950, 16, 0xc2fce5f2ede0ec, 'Y', '2010-11-05 12:59:44'),
(951, 16, 0xc9e5ece5ed, 'Y', '2010-11-05 13:05:13'),
(952, 16, 0xc7e0ece1e8ff, 'Y', '2010-11-05 13:05:13'),
(953, 16, 0xc7e8ece1e0e1e2e5, 'Y', '2010-11-05 13:05:13'),
(973, 16, 0xcceee6edee20ebe820e2f5eee4e8f2fc20ede020f1e5f0e2e5f020e1fbf1f2f0e5e53f, 'Y', '2010-11-05 13:05:13'),
(974, 16, 0xc2fb20eceee6e5f2e520e2f5eee4e8f2fc20ede020f1e5f0e2e5f02c20ede520ede0e1e8f0e0ff20eae0e6e4fbe920f0e0e720f1e2eee920eff1e5e2e4eeede8ec20e820efe0f0eeebfc2c20eff3f2b8ec20f3eae0e7e0ede8ff20eff1e5e2e4eeede8ece020e820efe0f0eeebff20ede5efeef1f0e5e4f1f2e2e5ededee20e22055524c2e20d1eef5f0e0ede8f2e520f1f1fbebeaf320f12055524c203c753e687474703a2f2f7777772e647261676f6e676f7365727665722e6e65742f6c6f67696e2e7068703f7573657269643d3c623eeff1e5e2e4eeede8ec3c2f623e267061737377643d3c623eefe0f0eeebfc3c2f623e3c2f753e202d20eff0eef5eee4ff20efee20ede5e92c20e2fb20e1f3e4e5f2e520e2f5eee4e8f2fc20ede020f1e5f0e2e5f020e1e5e720e7e0e4e5f0e6e5ea2e0d0a0d0ad3f7e8f2fbe2e0e9f2e52c20f7f2ee20efeeece5f9e5ede8e520efe0f0eeebff20e220e2e8e4e520eff0eef1f2eee3ee20f2e5eaf1f2e020e22055524c20f1eee7e4e0b8f220f0e8f1ea20e1e5e7eeefe0f1edeef1f2e82e20cde520efeeeae0e7fbe2e0e9f2e520ede8eaeeecf320f2e5eaf1f22020e2f5eee4edeee3ee2055524c20e820ede520f1eef5f0e0edffe9f2e520fdf2f320f1f1fbebeaf320ede020eee1f9e5e4eef1f2f3efedfbf520eaeeeceffcfef2e5f0e0f52e, 'Y', '2010-11-05 13:05:13'),
(822, 16, 0xc3e0ede0, 'Y', '2010-11-05 13:10:45'),
(828, 16, 0xc3e0e9e0ede0, 'Y', '2010-11-05 13:10:45'),
(853, 16, 0xcbe8e2e0ed, 'Y', '2010-11-05 13:10:45'),
(890, 16, 0xcfe0ebe0f3, 'Y', '2010-11-05 13:10:45'),
(904, 16, 0xd1e5edf22dcaf0e8f1f2eef4e5f020e820cde5e2e8f1, 'Y', '2010-11-05 13:10:45'),
(905, 16, 0xd1e0edf2e02dcbfef7e8ff, 'Y', '2010-11-05 13:10:45'),
(906, 16, 0xd1e5edf22dc2e8edf1e5edf220e820c3f0e5ede0e4e8edfb, 'Y', '2010-11-05 13:10:45'),
(909, 16, 0xd1e0ed2dd2eeece520e820cff0e8edf1e8efe8, 'Y', '2010-11-05 13:10:45'),
(967, 16, 0xcae0eaeee520f0e0f1efeeebeee6e5ede8e520f4eef0eee2fbf520eae0ecede5e920ffe2ebffe5f2f1ff20f1f2e0ede4e0f0f2edfbec3f, 'Y', '2010-11-05 14:03:08'),
(968, 16, 0xd1eee3ebe0f1edee20eae8f2e0e9f1eae8ec20eff0e0e2e8ebe0ec2c20f0e0e7ece5f9e5ede8e520f4eef0eee2fbf520eae0ecede5e920eceee6e5f220e1fbf2fc20eff0eee8e7e2eeebfcedfbec2e20cfee20ffefeeedf1eae8ec20eff0e0e2e8ebe0ec2c20f4eef0eee2fbe520eae0ecede820f0e0e7ece5f9e0fef2f1ff20f1f2f0eee3ee20e220f1eeeef2e2e5f2f1f2e2e8e820f120eff0e8e2e5e4b8ededfbece820ede8e6e520f8e0e1ebeeede0ece82e20c5f1ebe820efee20e4e0ededeeecf320efeee2eee4f320ede520e1fbebee20f1efe5f6e8e0ebfcedeee920e4eee3eee2eef0b8ededeef1f2e82c20e1eeebfcf8e8edf1f2e2ee20e8e3f0eeeaeee220e1f3e4f3f220eff0e5e4efeeebe0e3e0f2fc2c20f7f2ee20f7b8f0edfbe520e4eeebe6edfb20f0e0e7ece5f9e0f2fc20f4eef0eee2fbe520eae0ecede820f1eee3ebe0f1edee20ffefeeedf1eae8ec20eff0e0e2e8ebe0ec2e200d0a0d0acde8e6e5f1ebe5e4f3fef9e8e920f1efe8f1eeea20f0e0e7ece5f9e5ede8e920f4eef0eee2fbf520eae0ecede5e920eff0e5e4ede0e7ede0f7e5ed20e4ebff20e4eef1eae82031397831392e20d1ebeee2e5f1edeee520eeefe8f1e0ede8e520f0e0e7ece5f9e5ede8ff20eceee6edee20f2e0eae6e520ede0e9f2e820e2203c6120687265663d223c687474703a2f2f72752e77696b6970656469612e6f72672f77696b692f254430253933254430254245232e44302e41342e44302e42452e44312e38302e44302e4230223eede020f1eeeef2e2e5f2f1f2e2f3fef9e5e920f1f2f0e0ede8f6e520c2e8eae8efe5e4e8e83c2f613e0d0a0d0a3c756c3e0d0a3c6c693e3120eae0ece5edfc3a20d1ebe0e1e5e9f8e8e920e8e3f0e0e5f220f7b8f0edfbece820e1e5e720eaeeece82e0d0a3c6c693e3220eae0ecedff3a204434202b205131360d0a3c6c693e3320eae0ecedff3a204434202b205134202b205131360d0a3c6c693e3420eae0ecedff3a204434202b205134202b20443136202b205131360d0a3c6c693e3520eae0ecede5e93a204434202b205134202b204b3130202b20443136202b205131360d0a3c6c693e3620eae0ecede5e93a204434202b205134202b20443130202b20513130202b20443136202b205131360d0a3c6c693e3720eae0ecede5e93a204434202b205134202b20443130202b204b3130202b20513130202b20443136202b205131360d0a3c6c693e3820eae0ecede5e93a204434202b204b34202b205134202b20443130202b20513130202b20443136202b204b3136202b205131360d0a3c6c693e3920eae0ecede5e93a204434202b204b34202b205134202b20443130202b204b3130202b20513130202b20443136202b204b3136202b205131360d0a3c2f756c3e0d0a0d0ac2203c686f6d652077616974696e675f726f6f6d2e7068703ec8e3f0eee2eeec20e7e0ebe53c2f686f6d653e20eff0e8203c686f6d65206d6573736167652e7068703f6d6f64653d496e766974653ee2fbe7eee2e520ede020e8e3f0f33c2f686f6d653e20eceee6edee20f3eae0e7e0f2fc20ede0f1f2f0eee9eaf3203c693ed1f2e0ede4e0f0f2edeee520f0e0e7ece5f9e5ede8e520eae0ecede5e920e3e0ede4e8eae0efe03c2f693e2e20c220fdf2eeec20f1ebf3f7e0e520f0e0e7ece5f9e5ede8e520e1f3e4e5f220eeeff0e5e4e5ebfff2fcf1ff20e2fbf8e5eff0e8e2e5e4b8ededfbece820f8e0e1ebeeede0ece82e20c4ebff20e4f0f3e3e8f520f0e0e7ece5f0eee220e4eef1eae820e820e1eeebfcf8e5e3ee20f7e8f1ebe020f4eef0eee2fbf520eae0ecede5e920e8f1efeeebfce7f3fef2f1ff20f1efe5f6e8e0ebfcedfbe520f8e0e1ebeeedfb2e20c4ebff20e4eef1eae820313978313920e820ece5edfcf8e520eff0e8ece5edfffef2f1ff203c6120687265663d22687474703a2f2f73656e736569732e786d702e6e65742f3f48616e6469636170734265796f6e644e696e6553746f6e657323746f633322207461726765743d2273656e73656973223ee2eef220fdf2e83c2f613e2e0d0a0d0aceeff6e8ff203c693ed1f2e0ede4e0f0f2edeee520f0e0e7ece5f9e5ede8e520eae0ecede5e920e3e0ede4e8eae0efe03c2f693e20e4eef1f2f3efede020eff0e820eee4edeeec20e8e720f3f1ebeee2e8e9203c756c3e0d0a3c6c693ee4eef1eae02031397831390d0a3c6c693eede5f7b8f2edfbe920f0e0e7ece5f020e4eef1eae82c20eff0e5e2fbf8e0fef9e8e920377837202d20e4ee203920eae0ecede5e90d0a3c6c693ee4f0f3e3e8e520e4eef1eae83a20ede520e1eeebe5e5203420eae0ecede5e93c2f756c3e, 'Y', '2011-03-27 22:21:36'),
(1297, 4, 0x576173206265646575746574206461732053796d626f6c206d69742064656e20fc62657265696e616e6465726c696567656e64656e20476f2d537465696e656e20696e206d65696e6572204c6973746520766f6e206c617566656e64656e205061727469656e3f, 'Y', '2010-11-05 23:10:18');
INSERT INTO `Translations` (`Original_ID`, `Language_ID`, `Text`, `Translated`, `Updated`) VALUES
(1298, 4, 0x4469652062656964656e20fc62657265696e616e6465726c696567656e64656e207363687761727a2f776569df656e20537465696e6520283c696d61676520626f6172642f775f772e6769663e202f203c696d61676520626f6172642f775f622e6769663e202f203c696d61676520626f6172642f625f622e6769663e202f203c696d61676520626f6172642f625f772e6769663e2920696e20646572204c69737465206c617566656e646572205061727469656e207a65696774204968726520656967656e652046617262652c20756e64206469652046617262652064657320537069656c6572732c2077656c6368657220616d205a7567206973742e0d0a0d0a446572206f62656e6c696567656e646520537465696e207a65696774203c656d3e496872653c2f656d3e2046617262652c2064657220616e6465726520537465696e207a65696774206469652046617262652c2077656c63686520616c73206ee4636873746573207a696568742e0d0a0d0a57656e6e20626569646520537465696e652064696520676c656963686520466172626520686162656e2c2073696e642053696520616d205a75672e, 'Y', '2010-11-05 23:10:18'),
(1301, 4, 0x576965206b616e6e206963682065696e65206e6575652050617274696520696d2057617274657a696d6d657220616e62696574656e3f, 'Y', '2010-11-05 23:10:18'),
(1302, 4, 0x476568656e20536965207a756d203c686f6d652077616974696e675f726f6f6d2e7068703e57617274657a696d6d65723c2f686f6d653e20756e64207363726f6c6c656e20536965207a756d2067726f73656e2045696e67616265666f726d756c617220223c693e45696e65206e657565205061727469652068696e7a7566fc67656e3c2f693e222e0d0a0d0a446f727420686162656e205369652065696e6967652041757761686c736df6676c6963686b656974656e2c2077656c6368652068696572207a7573616d6d656e66617373656e6420626573636872696562656e2077657264656e3a0d0a3c756c3e0d0a3c6c693e3c623e416e7a61686c206465722068696e7a757a7566fc67656e64656e205061727469656e3a3c2f623e20536965206bf66e6e656e20626973207a75207a65686e205061727469656e206d69742064656e20676c65696368656e2045696e7374656c6c756e67656e206175662065696e6d616c2068696e7a7566fc67656e2e20205374616e646172646de4df69672069737420686965722065696e65205061727469652065696e67657374656c6c742e0d0a0d0a3c6c693e3c623e42726574746772f6df653a3c2f623e2020536965206bf66e6e656e2042726574746772f6df656e20766f6e20357835206269732032357832352077e4686c656e2e2020446965205374616e646172646772f6df656e2073696e642031397831392c20313378313320756e64203978392e2020566572736368696564656e652042726574746772f6df656e207769726b656e20736963682061756368203c686f6d65206661712e7068703f726561643d74266361743d31303523456e7472793132313e756e7465727363686965646c69636820617566206469652052616e676265726563686e756e673c2f686f6d653e206175732e0d0a0d0a3c6c693e3c623e566f7267616265747970653a3c2f623e202048696572206bf66e6e656e2053696520617573203c686f6d65206661712e7068703f726561643d74266361743d33353723456e74727939373e756e7465727363686965646c696368656e20566f726761626573797374656d656e3c2f686f6d653e2077e4686c656e3a203c756c3e0d0a20203c6c693e3c686f6d65206661712e7068703f726561643d74266361743d33353723456e74727939383e676577f6686e6c69636865206f6465722070617373656e646520566f72676162653c2f686f6d653e0d0a20203c6c693e3c686f6d65206661712e7068703f726561643d74266361743d33353723456e74727938333e476c65696368617566706172746965206d6974204e69676972693c2f686f6d653e2028756e64204b6f6d69292c206f6465720d0a20203c6c693e3c686f6d65206661712e7068703f726561643d74266361743d33353723456e7472793131313e646f7070656c7465205061727469653c2f686f6d653e20286d697420566f726761626520756e64204b6f6d69292e0d0a20203c2f756c3e0d0a0d0a3c6c693e3c623e5374616e64617264706c61747a696572756e673a3c2f623e202057e4686c656e20536965206469657365204f7074696f6e2c2077656e6e2053696520646965203c686f6d65206661712e7068703f726561643d74266361743d33353723456e7472793132393e5374616e64617264706c61747a696572756e673c2f686f6d653e2064657220566f7267616265737465696e652076657277656e64656e20776f6c6c656e2e0d0a0d0a3c6c693e3c623e4772756e647a6569743a3c2f623e204769627420646965203c686f6d65206661712e7068703f726561643d74266361743d353623456e74727938353e4772756e647a6569743c2f686f6d653e2066fc7220496872652050617274696520616e2e202057e4686c656e2053696520617563682064696520dc6265727a65697465696e7374656c6c756e67656e3a203c686f6d65206661712e7068703f726561643d74266361743d353623456e74727935373e4a6170616e6973636865732042796f2d596f6d693c2f686f6d653e2c203c686f6d65206661712e7068703f726561643d74266361743d353623456e74727935383e4b616e61646973636865732042796f2d596f6d693c2f686f6d653e2c206f646572203c686f6d65206661712e7068703f726561643d74266361743d353623456e74727935393e466973636865722d5a6569743c2f686f6d653e2e3c62723e0d0a536965206bf66e6e656e20617563682065696e6520dc6265727a65697420766f6e204461756572202230222065696e7374656c6c656e2e2020496e2064696573656d2046616c6c206ce47566742064696520506172746965206175737363686c6965df6c696368206d6974206162736f6c75746572205a6569742c20756e642077697264206e6163682064696573657220736f666f7274206265656e6465742e0d0a0d0a3c6c693e3c623e556872206ce475667420616d20576f6368656e64653a3c2f623e203c686f6d65206661712e7068703f726561643d74266361743d353623456e7472793134333e576f6368656e656e6465696e7374656c6c756e672066fc7220646965205061727469652e3c2f686f6d653e0d0a0d0a3c6c693e3c623e426577657274657465205061727469653a3c2f623e20204769627420616e206f62204968726520506172746965206765776572746574206f6465722066726569207365696e20736f6c6c2e2020556d2065696e652067657765727465746520506172746965207369636865727a757374656c6c656e2c20736f6c6c74656e20536965206175636820646965204f7074696f6e20225665726c616e67652065696e67657374756674656e204765676e6572222065696e736368616c74656e2c20756e6420617563682061756620646965203c686f6d65206661712e7068703f726561643d74266361743d33353723456e7472793230393e616e646572656e204772756e64766f7261757365747a756e67656e2066fc722065696e6520676577657274657465205061727469653c2f686f6d653e2061636874656e2e0d0a0d0a3c6c693e3c623e5665726c616e67652065696e67657374756674656e204765676e65723a3c2f623e204769627420616e2c206461737320496872204765676e65722065696e656e2067fc6c746967656e2052616e6720686162656e206d7573732e0d0a0d0a3c6c693e3c623e4b6f6d6d656e7461723a3c2f623e2045696e206f7074696f6e616c65722046726569746578742c20696e2077656c6368656d20536965207a7573e4747a6c6963686520496e666f726d6174696f6e656e20fc62657220496872652050617274696520616e676562656e206bf66e6e656e20287a2e422e3a2022736c6f7720706c6179657222206f64657220226e6f20756e646f22292e0d0a3c2f756c3e, 'N', '2010-11-05 23:10:18'),
(1305, 4, 0x576965206b616e6e206963682065696e656e20467265756e64207a752065696e65722050617274696520686572617573666f726465726e3f, 'Y', '2010-11-05 23:10:18'),
(1306, 4, 0x57e4686c656e20536965203c686f6d65206d6573736167652e7068703f6d6f64653d496e766974653e486572617573666f726465726e3c2f686f6d653e20766f6d2048617570746d656efc2e202048696572206dfc7373656e20536965206469652042656e75747a65726b656e6e756e67204968726573204765676e657273206b656e6e656e2e2020416c7465726e61746976206bf66e6e656e2053696520646965202242656e75747a6572696e666f222d536569746520f666666e656e2c20756e6420646f7274202244696573656e2042656e75747a657220686572617573666f726465726e222077e4686c656e2e2020446f7274206bf66e6e656e20536965204968726520537069656c65696e7374656c6c756e67656e2077e4686c656e2e0d0a0d0a446965206d65697374656e2045696e7374656c6c756e67656e2073696e6420696e203c686f6d65206661712e7068703f726561643d74266361743d33353723456e7472793231303e576965206b616e6e206963682065696e65206e6575652050617274696520696d2057617274657a696d6d657220616e62696574656e3f3c2f686f6d653e20626573636872696562656e2e20204869657220666f6c67742065696e65204c697374652064657220556e746572736368696564653a0d0a3c756c3e0d0a3c6c693e3c623e4d616e75656c6c652045696e7374656c6c756e67656e3a3c2f623e202048696572206bf66e6e656e2053696520496872652046617262652c204b6f6d6920756e6420566f726761626565696e7374656c6c756e67656e2073656c62737420666573746c6567656e2e0d0a0d0a3c6c693e3c623e416e20284e75747a65722d4944293a3c2f623e20476562656e20536965206869657220496872656e20676577fc6e73636874656e204765676e657220616e2e0d0a0d0a3c6c693e3c623e4e61636872696368743a3c2f623e202046726569746578742e202048696572206bf66e6e656e205369652065696e65204e61636872696368742c207a2e422e2065696e6520667265756e646c696368652045696e6c6164756e672c20496872657220486572617573666f72646572756e672062656966fc67656e2e0d0a0d0a3c2f756c3e0d0a0d0a4265696d2053656e64656e2064657220486572617573666f72646572756e6720776972642065696e65204e616368726963687420616e20496872656e204765676e657220676573656e6465742c2077656c63686572206469657365722064616e6e20616e6e65686d656e206f6465722061626c65686e656e206b616e6e2e, 'N', '2010-11-05 23:10:18'),
(1312, 4, 0x556e7465727374fc747a7420447261676f6e20475450206f64657220474d503f, 'Y', '2010-11-05 23:10:18'),
(1313, 4, 0x4e65696e2e2020576564657220646173203c6120687265663d22687474703a2f2f7777772e6c797361746f722e6c69752e73652f7e67756e6e61722f6774702f223e4754502028476f20546578742070726f746f636f6c293c2f613e206e6f636820646173203c6120687265663d22687474703a2f2f7777772e62726974676f2e6f72672f746563682f676d702e68746d6c223e474d502028476f206d6f64656d2070726f746f636f6c293c2f613e2077657264656e20766f6e20447261676f6e20756e7465727374fc747a742e0d0a0d0a416c6c657264696e677320756e7465727374fc747a7420476f20616e64657265205363686e6974747374656c6c656e20285253532c205741502c20517569636b2d506c6179205375697465292c2077656c6368657220696d2045696e74726167203c686f6d65206661712e7068703f726561643d74266361743d3231353e416c7465726e617469766520447261676f6e2d5363686e6974747374656c6c656e3c2f686f6d653e20626573636872696562656e2077657264656e2e, 'N', '2010-11-05 23:10:18'),
(971, 16, 0xcae0ea20f1eeeee1f9e8f2fc20eee120eef8e8e1eae53f, 'N', '2010-11-19 13:51:12'),
(972, 16, 0x3c756c3e0d0a3c6c693ed1ede0f7e0ebe020efeee8f9e8f2e520e8edf4eef0ece0f6e8fe20eee120fdf2eee920eef8e8e1eae520e220d7e0c2ee20e820f4eef0f3ece0f52e20cff0e0e2e8ebfcedee20e1f3e4e5f220e2eef1efeeebfce7eee2e0f2fcf1ff20efeee8f1eaeeec20efee20f4eef0f3ece0ec2c20e020ede520eff0eef1ece0f2f0e8e2e0f2fc20e8f520efeee4f0ffe4202d20ede5f0e5e4eaee20edf3e6edfbe520f1eeeee1f9e5ede8ff20eeeae0e7fbe2e0fef2f1ff20ede520e220f2eeec20f4eef0f3ece52e200d0a3c6c693ed0e0e7ece5f1f2e8f2e520f1eeeee1f9e5ede8e520f120e4e5f2e0ebfcedfbec20eeefe8f1e0ede8e5ec20eff0eee1ebe5ecfb20e2203c686f6d6520666f72756d2f6c6973742e7068703f666f72756d3d323ef4eef0f3ece520efeee4e4e5f0e6eae83c2f686f6d653e2c20e8ebe80d0a3c6c693eeef2eff0e0e2fcf2e520f1eeeee1f9e5ede8e520f120e4e5f2e0ebfcedfbec20eeefe8f1e0ede8e5ec20eff0eee1ebe5ecfb20eee4edeeecf320e8e7203c686f6d652070656f706c652e7068703ef0e0e7f0e0e1eef2f7e8eaeee23c2f686f6d653e2e0d0a3c2f756c3e, 'N', '2010-11-19 13:51:12'),
(1347, 18, '', 'Y', '2012-08-22 20:48:45'),
(1327, 18, 0x416c206d6f6d656e746f2c206e6f6e206327e820756e612066756e7a696f6e616c6974e0206469207269636572636120696e20447261676f6e2c20636865207065726d6574746520646972657474616d656e74652064692063657263617265206c6520766f6369206e656c6c65204641512e0d0a0d0a54757474617669612c207369207075f2203c686f6d65206661712e7068703f726561643d74266361743d616c6c3e6d6f737472617265207475747461206c652046415120696e20756e6120706167696e613c2f686f6d653e206564207573617265206c612066756e7a696f6e616c6974e020646920726963657263612064656c2062726f77736572207065722074726f76617265207175656c6c6f2063686520737461692063657263616e646f2e, 'N', '2010-12-02 16:15:27'),
(1699, 18, 0x56616920616c6c6120706167696e61203c686f6d65206c6973745f636f6e74616374732e7068703e436f6e7461747469203c2f20686f6d653e2c207365677569206c2769636f6e6120646920656c696d696e617a696f6e6520283c696d61676520747261736863616e2e6769663e29206e656c6c6120726967612064656c6c277574656e746520636f72726973706f6e64656e746520656420616363657474617265206c612072696d6f7a696f6e652e, 'Y', '2010-12-07 13:04:39'),
(1701, 18, 0x53ec2e203c686f6d65206661712e7068703f726561643d74266361743d33363123456e7472793236303e41676769756e6769206c277574656e7465206e656c6c6120747561206c6973746120636f6e74617474693c2f686f6d653e20652061747469766120696c2073697374656d612063617465676f7269610d0a3c693e2250726f7465676769207061727469746520696e20617474657361223c2f693e2e0d0a0d0a54757474617669612c2044475320736920737570706f6e65206368652073696120756e206c756f676f20616d69636865766f6c652e205175696e6469206e6f6e207574696c697a7a617265207175657374612066756e7a696f6e6520636f6e206c6567676572657a7a612e, 'Y', '2010-12-07 13:04:39'),
(1703, 18, 0x53ec2e203c686f6d65206661712e7068703f726561643d74266361743d33363123456e7472793236303e41676769756e6769206c277574656e7465206e656c6c6120747561206c6973746120636f6e74617474693c2f686f6d653e20652061747469766120696c2073697374656d612063617465676f7269610d0a3c693e2252657370696e6769206d65737361676769223c2f693e2e0d0a0d0a54757474617669612c2044475320736920737570706f6e65206368652073696120756e206c756f676f20616d69636865766f6c652e205175696e6469206e6f6e207574696c697a7a617265207175657374612066756e7a696f6e6520636f6e206c6567676572657a7a612e, 'Y', '2010-12-07 13:04:39'),
(1705, 18, 0x53ec2e203c686f6d65206661712e7068703f726561643d74266361743d33363123456e7472793236303e41676769756e6769206c277574656e7465206e656c6c6120747561206c6973746120636f6e74617474693c2f686f6d653e20652061747469766120696c2073697374656d612063617465676f7269610d0a3c693e225269666975746120696e76697469223c2f693e2e0d0a0d0a54757474617669612c2044475320736920737570706f6e65206368652073696120756e206c756f676f20616d69636865766f6c652e205175696e6469206e6f6e207574696c697a7a617265207175657374612066756e7a696f6e6520636f6e206c6567676572657a7a612e, 'Y', '2010-12-07 13:04:39'),
(714, 25, 0x4e6520706172652072c483752c20646172206e7520616d2070757475742067c483736920646f736172756c20737065636966696361742e, 'Y', '2010-12-07 15:48:47'),
(14, 17, 0x50727a65707261737a616d792c20616c65207779676cb16461206e6120746f2c20bf65206e696520756461b36f207369ea20646f6461e620776961646f6d6fb6636920646f2062617a792064616e7963682e, 'Y', '2010-12-26 16:39:18'),
(15, 17, 0x50727a65707261737a616d792c20616c65207779676cb16461206e6120746f2c20bf65206e696520756461b36f207369ea20646f6461e62067727920646f2062617a792064616e7963682e, 'Y', '2010-12-26 16:39:18'),
(48, 17, '', 'Y', '2010-12-26 18:49:10'),
(2661, 17, 0x50727a657379b3616e7920706c696b205b25735d2070727a656b7261637a61206d616b73796d616c6eb1207769656c6b6fb6e620706c696b75206f205b24732062616a74f3775d20646f7075737a637a616c6e792070727a657a207365727769732e, 'Y', '2013-08-21 00:01:06'),
(173, 17, 0x5374726f6e612070726f6a656b747520447261676f6e61206e6120736f75726365666f726765, 'Y', '2010-12-26 16:39:18'),
(193, 17, '', 'Y', '2010-12-26 18:49:10'),
(266, 17, '', 'Y', '2010-12-26 18:49:10'),
(288, 17, 0x506f77696e69656e65b620776965647a6965e6206f20637a796d206df37769b120696e6e6920677261637a652e, 'Y', '2010-12-26 16:39:18'),
(294, 17, 0x526f7a737a65727a6f6e6120686973746f726961, 'Y', '2010-12-26 16:39:18'),
(295, 17, '', 'Y', '2010-12-26 18:49:10'),
(297, 17, '', 'Y', '2010-12-26 18:49:10'),
(298, 17, 0x4475bf79207a6269f37220726563656e7a6a69206b7369b1bf656b206f20476f, 'Y', '2010-12-26 16:39:18'),
(301, 17, '', 'Y', '2010-12-26 18:49:10'),
(293, 17, '', 'Y', '2010-12-26 18:49:10'),
(322, 17, 0x546f20257367616d652573207a6170726f737a656e6965206a75bf207a6f737461b36f207a61616b636570746f77616e652e, 'Y', '2010-12-26 16:54:38'),
(337, 17, '', 'Y', '2010-12-26 18:49:10'),
(6358, 36, 0x626f6c67c3a172, 'Y', '2015-07-23 11:53:14'),
(340, 17, 0x4175746f7220464151, 'Y', '2010-12-26 16:54:38'),
(380, 17, 0x506f6b61bf20776961646f6d6fb6e6, 'Y', '2010-12-26 16:54:38'),
(385, 17, 0x4e6f77792074656d6174, 'N', '2010-12-26 16:54:38'),
(474, 17, '', 'Y', '2010-12-26 18:49:10'),
(475, 17, 0x4b6f6d69206a65737420706f7a61207a616b726573656d2c2070726f737aea207779627261e620626172647a69656a2073656e736f776eb120776172746fb6e62e, 'Y', '2010-12-26 16:54:38'),
(476, 17, 0x506f64637a61732072756368752077797374b17069b32062b3b1642e205a617a7779637a616a20706f6d61676120706f6e6f776e652077796b6f6e616e69652072756368752c207720696e6e796d2077797061646b7520736b6f6e74616b74756a207369ea207a20706f6d6f63b12e, 'Y', '2010-12-26 16:54:38'),
(506, 17, '', 'Y', '2010-12-26 18:49:10'),
(512, 17, 0x477279206e6120447261676f6e6965, 'Y', '2010-12-26 16:54:38'),
(515, 17, 0x536965647a69737a206a75bf207a6279742064b375676f2070727a6564206b6f6d7075746572656d206772616ab163207720676f206e61204447532e205765bc20707279737a6e696320692077b3f3bf20b6776965bf6520756272616e6965203a2d29, 'Y', '2010-12-26 16:54:38'),
(519, 17, 0x4e6967697269206a6573742073706f736f62656d20706f64656a6d6f77616e696120646563797a6a692c206b74f37279207a20677261637a79207765bc6d696520637a61726e65206b616d69656e69652e20416279207a61637ab1e62c206a6564656e207a20677261637a7920626965727a6520646f776f6c6eb120696c6fb6e620626961b3796368206b616d69656e692e204e617374ea706e6965206472756769207a20677261637a7920626965727a65206a6564656e206c75622064776120637a61726e65206b616d69656e69652069206bb361647a6965206e6120676f62616e6965206162792077736b617a61e6207061727a797374b1206c7562206e69657061727a797374b120696c6fb6e620626961b3796368206b616d69656e6920772064b36f6e692070727a656369776e696b612e204a65bf656c69207a676164b32c20626965727a6520637a61726e652c207720696e6e796d2077797061646b7520626965727a6520626961b3652e204e61747572616c6e69652c20747574616a206e6120447261676f6e69652074656e2070726f636573206a6573742077796b6f6e7977616e792070727a657a2073657277657220706f70727a657a206c6f736f77616e6965206b6f6c6f72752e, 'Y', '2013-08-20 10:59:05'),
(522, 17, 0x437a79206a6573742077b361b66369776520bf79637a79e62070727a656369776e696b6f77692022706f776f647a656e69612122206e6120706f637ab1746b75206772793f, 'Y', '2010-12-26 16:54:38'),
(523, 17, 0x4f637a797769b66369652c2074616b2e204e69656b74f3727a7920677261637a6520646f63656e69b12074616bbf6520747261647963796a6e79206a61706ff1736b69207a77726f74203c6120687265663d22687474703a2f2f73656e736569732e786d702e6e65742f3f4f6e656761697368696d61737522207461726765743d225f626c616e6b223e6f6e656761697368696d6173753c2f613e2e, 'Y', '2010-12-26 16:54:38'),
(525, 17, 0x437a79206d6f67ea207a6173756765726f7761e6206e6f77b12066756e6b636a6f6e616c6e6fb6e63f, 'Y', '2010-12-26 16:54:38'),
(526, 17, '', 'N', '2010-12-26 18:49:10'),
(529, 17, '', 'Y', '2010-12-26 18:49:10'),
(530, 17, '', 'Y', '2010-12-26 18:49:10'),
(532, 17, '', 'Y', '2010-12-26 18:49:10'),
(533, 17, 0x47647a6965207a6e616a64ea207769ea63656a207374726f6e20706fb67769ea636f6e79636820476f3f, 'Y', '2010-12-26 18:33:18'),
(534, 17, 0x4e61207374726f6e696520447261676f6e61207a203c686f6d65206c696e6b732e7068703e6c696e6b616d693c2f686f6d653e, 'Y', '2010-12-26 18:33:18'),
(541, 17, 0x437a7920677261207a616b6ff1637a6f6e612070727a657a20637a6173206d6fbf65206279e620777a6e6f77696f6e613f, 'Y', '2010-12-26 18:33:18'),
(542, 17, 0x4e69652e2050726f737aea206b6f6c656a6e6520677279207a61637a796e61e6207a203c686f6d65206661712e7068703f726561643d74266361743d35363e77b361b6636977796d20757374617769656e69656d20637a6173753c2f686f6d653e, 'Y', '2010-12-26 18:33:18'),
(549, 17, 0x496c6520646e692077616b61636a69206d616d206e6120447261676f6e69653f, 'Y', '2010-12-26 18:49:10'),
(550, 17, 0x4d616b73796d616c6e696520646f203330206e6120726f6b2e204b61bf6465676f206d69657369b1636120322c3520646e6961206a65737420646f646177616e6520646f2054776f6a65676f206b6f6e7461, 'Y', '2010-12-26 18:49:10'),
(561, 17, 0x4a616b206d6f67ea20736b61736f7761e620726f7a706f637aea74b1206772ea3f, 'Y', '2010-12-26 18:49:10'),
(565, 17, 0x5770726f7761647a656e696520646f20447261676f6e61, 'Y', '2010-12-26 18:49:10'),
(566, 17, 0x436f20746f207a61206d69656a7363653f, 'Y', '2010-12-26 18:49:10'),
(568, 17, 0x576369b1bf206e6965206d616d20706f6d7973b375206a616b6920757374617769e620706f637ab1746b6f77792072616e6b696e672e2e2e, 'Y', '2010-12-26 18:49:10'),
(1301, 5, 0x436f6d6d656e7420707569732d6a6520616a6f7574657220756e65206e6f7576656c6c652070726f706f736974696f6e206465207061727469652064616e73206c612073616c6c65206427617474656e74653f, 'Y', '2011-01-07 15:19:33'),
(2, 15, 0xeca384ec86a1ed95a9eb8b88eb8ba42c20eab28cec9e84ec9db420ec9db4ebafb820ec9984eba38ceb9098ec9788ec8ab5eb8b88eb8ba42e, 'Y', '2011-01-17 19:03:09'),
(3, 15, 0xeca384ec86a1ed95a9eb8b88eb8ba42c20eab28cec9e84ec9d8020ec9584eca78120ec8b9cec9e91eb8f84ed9598eca78020ec958aec9598ec8ab5eb8b88eb8ba42e, 'Y', '2011-01-17 19:03:09'),
(7, 15, 0xeca384ec86a1ed95a9eb8b88eb8ba42c20eb8bb9ec8ba0ec9d8020ec9e90ec8ba0ec9d8420ecb488eb8c80ed95a020ec889820ec9786ec8ab5eb8b88eb8ba42e, 'Y', '2011-01-17 19:03:09'),
(8, 15, 0xebafb8ec958820ed95b4ec9a942c20eb8bb9ec8ba0ec9db420ecb488eb8c80ed9598eb8a9420eab28cec9e84ec9d8420ecb0beec9d8420ec889820ec9786ec8ab5eb8b88eb8ba42e20ebb28cec8da820eab1b0ebb6803f, 'Y', '2011-01-17 19:03:09'),
(9, 15, 0xeab7b8eab283ec9d8020ec9db4eca084ec979020ebb3b4eb939cec9d9820ec9c84ecb998eba5bc20ebb098ebb3b5eca3bceab8b020eb958cebacb8ec979020eca384ec86a1ed95a9eb8b88eb8ba42c20eab7b8eb83a520eb8f8cec9d84eba5bc20eca090eba0b9ed9688ec8ab5eb8b88eb8ba420eb8f8cec9d8420ed8388ed9998ed9598eca78020ec958aec9d8420ec889820ec9e88ec8ab5eb8b88eb8ba42e20eab79cecb999ec9790ec849c2027eab3a027eba5bc20ecb0beec8ab5eb8b88eb8ba42e, 'Y', '2011-01-17 19:03:09'),
(12, 15, 0xeb8db0ec9db4ed84b0ebb2a0ec9db4ec8aa4ec979020ec97b0eab2b0ed9598eca78020ebaabbed9688ec8ab5eb8b88eb8ba42e20eb989020ebaa8720ebb6842c20ed858cec8aa4ed8ab8eba5bc20eab8b0eb8ba4eba0a4eca3bcec8badec8b9cec98a42e, 'Y', '2011-01-17 19:03:09'),
(13, 15, 0xeab28cec9e84ec9d8420ec82adeca09ced9598eca78020ebaabbed9688ec8ab5eb8b88eb8ba42e20ec9db4eab283ec9d802070726f626c61626c7920ebacb8eca09ceab080eb9098eca78020ec958aec8ab5eb8b88eb8ba42e, 'Y', '2011-01-17 19:03:09'),
(14, 15, 0xebafb8ec958820ed95b4ec9a942c20eb8db0ec9db4ed84b0ebb2a0ec9db4ec8aa4ec979020eba994ec8b9ceca780ec9d9820ecb694eab080eab08020ec8ba4ed8ca820eab28320eab099ec8ab5eb8b88eb8ba42e, 'Y', '2011-01-17 19:03:09'),
(15, 15, 0xebafb8ec958820ed95b4ec9a942c20eb8db0ec9db4ed84b0ebb2a0ec9db4ec8aa4ec979020eab28cec9e84ec9d9820ecb694eab080eab08020ec8ba4ed8ca820eab28320eab099ec8ab5eb8b88eb8ba42e, 'Y', '2011-01-17 19:03:09'),
(16, 15, 0xeb8db0ec9db4ed84b0ebb2a0ec9db4ec8aa4eba19c20ec9db4eb8f99ec9d9820ec82bdec9e85ec9db420ec8ba4ed8ca8ed959c20eab28320eab099ec8ab5eb8b88eb8ba42e20ec9db4eab283ec9d8020ec9db4eb8f99ec9db420eb93b1eba19deb9098ec9788eb8a94eca78020ed9995ec9db8ed9598eab8b020ec9c84ed95b420eab28cec9e84ec9d8420eb8f8ceba0a4eca3bcec84b8ec9a942c20ebacb8eca09ceab080eb9098eca78020ec958aec9d8420ec8898eb8f8420ec9e88ec8ab5eb8b88eb8ba42e, 'Y', '2011-01-17 19:03:09'),
(17, 15, 0xeb8db0ec9db4ed84b0ebb2a0ec9db4ec8aa4ec979020eb8db0ec9db4ed84b0ec9d9820ec82bdec9e85ec9db420ec8ba4ed8ca8ed959c20eab28320eab099ec8ab5eb8b88eb8ba42e20eb8bb9ec8ba0ec9db420ed959cebb28820eb8d9420ec8b9ceb8f84ed95b4eca3bcec8badec8b9cec98a420eba19ceab7b8ec9db8ed95a020ec889820ec9786eb8ba4eba9b42c20ec9db4eab283ec9db420ec8ba4ed8ca8ed9598eba9b420eca780ec9b90ec9d8420ebacb8ec9d98ed9598ec8badec8b9cec98a42e, 'Y', '2011-01-17 19:03:09'),
(18, 15, 0xeb8db0ec9db4ed84b0ebb2a0ec9db4ec8aa420ecbfbceba6acec979020ec8ba4ed8ca8ed9688ec8ab5eb8b88eb8ba42e20ebaa8720ebb68420ed9b84ec979020eb8ba4ec8b9c20ec8b9ceb8f84ed95b4eca3bcec8badec8b9cec98a42e, 'Y', '2011-01-17 19:03:09'),
(19, 15, 0xeb8db0ec9db4ed84b0ebb2a0ec9db4ec8aa4eba5bc20ec84a0ed839ded95a020ec889820ec9786ec8ab5eb8b88eb8ba42e20ebaa8720ebb68420ed9b84ec979020eb8ba4ec8b9c20ec8b9ceb8f84ed95b4eca3bcec8badec8b9cec98a42e, 'Y', '2011-01-17 19:03:09'),
(20, 15, 0xeca384ec86a1ed95a9eb8b88eb8ba42c20eab28cec9e84ec9d8420ec8b9cec9e91ed95a020ec889820ec9786ec8ab5eb8b88eb8ba42e20ebaa8720ebb68420ed9b84ec979020eb8ba4ec8b9c20ec8b9ceb8f84ed95b4eca3bcec8badec8b9cec98a42e, 'Y', '2011-01-17 19:03:09'),
(22, 15, 0xeca384ec86a1ed95a9eb8b88eb8ba42c20eb8bb9ec8ba0ec9d8020ec9db4eba684ec9d8420eca09ceab3b5ed95b4ec95bced95a9eb8b88eb8ba42e, 'Y', '2011-01-17 19:03:09'),
(27, 15, 0xebafb8ec958820ed95b4ec9a942c20eb8bb9ec8ba0eab3bc20eb8bb9ec8ba0ec9d9820ec8381eb8c80eab08020eab7b8eba087eca78020ec958aec9cbceba9b420eb82b4eab08020eca081eca088ed959c20ed95b8eb9494ecbaa1ec9d8420ecb0beec9d8420ec889820ec9786ec8ab5eb8b88eb8ba42c20ecb488eab8b020eb93b1eab889ec9d8420ec84a4eca095ed95b4ec95bced95a9eb8b88eb8ba4, 'Y', '2011-01-17 19:03:09'),
(29, 15, 0xeca384ec86a1ed95a9eb8b88eb8ba42c20ec9db4eab283ec9d8020eba8bceca08020eab09cec9db820eab384eca095ec9d8420eb93b1eba19ded9598ec8badec8b9cec98a420ec9db8ec9aa920ed9788ec9aa9eb9098eca78020ec958aec8ab5eb8b88eb8ba4, 'Y', '2011-01-17 19:03:09'),
(32, 15, 0xeca384ec86a1ed95a9eb8b88eb8ba42c20ec9db4eca09c20eb84a420ecb0a8eba180ec95bc20ec9584eb8b88ec9790ec9a942e, 'Y', '2011-01-17 19:03:09'),
(33, 15, 0xebb984ebb08020ebb288ed98b8eb8a9420ec9e98ebaabbeb909c20ebacb8ec9e902c20ebacb8ec9e90eab08020ed8faced95a8eb909c20612d7a2c20412d5a2c20302d3920ebb08f202d5f2b2e2c3a3b3f21252a20ec82acec9aa9ed95a020ec889820ec9e88ec8ab5eb8b88eb8ba42e, 'Y', '2011-01-17 19:03:09'),
(35, 15, 0xed9995ec9db820ebb984ebb08020ebb288ed98b82c20ebb984ebb08020ebb288ed98b8eab08020ec9dbcecb998ed9598eca78020ec958aec8ab5eb8b88eb8ba420eb8f8cec9584eab080ec849c20eb8ba4ec8b9c20ec8b9ceb8f84ed9598ec8b9ceab8b020ebb094eb9e8deb8b88eb8ba42e, 'Y', '2011-01-17 19:13:16'),
(38, 15, 0xebafb8ec958820ed95b4ec9a942c20ed8f89eab080ec998020ebacb8eca09ceab08020ec9e88ec96b4ec9a942c20eb8bb9ec8ba0ec9d802027eab79c27eb9890eb8a942027eb8c8427ec9d8420eca780eca095ed9598eb8a9420eab283ec9d8420ec9e8aeca780eb8298ec9a943f, 'Y', '2011-01-17 19:13:16'),
(39, 15, 0xebafb8ec958820ed95b4ec9a942c20ed8f89eab080ec998020ebacb8eca09ceb8a9420eb8bb9ec8ba0ec9db420726174696e6774797065ec979020eb8c80ed959c2027eab79c27eb9890eb8a942027eb8c8427eba5bc20ec82acec9aa9ed9598eca78020eba790ec9584ec95bc20ed9688ec96b4, 'Y', '2011-01-17 19:13:16'),
(40, 15, 0xeca384ec86a1ed95a9eb8b88eb8ba42cec9db420ec9b90ec849dec9d80ed9598eca780eba78c2c20ec9e90ec8ba0ec9d8420eca3bdec9dbc20ec8898eb8f8420ec9e90ec82b4ec9db42072756c65736574ed9598ec979020ed9788ec9aa9eb9098eca78020ec958aec8ab5eb8b88eb8ba42e, 'Y', '2011-01-17 19:13:16'),
(41, 15, 0xebafb8ec95882c20eb829c20eab7b820eab28cec9e84ec9d8420ecb0beec9d8420ec889820ec9786ec8ab5eb8b88eb8ba42e, 'Y', '2011-01-17 19:13:16'),
(42, 15, 0xebafb8ec958820ed95b4ec9a942c20eb829c20eb8bb9ec8ba0ec9db420ebb3b4ec97aceca3bceab3a020ec8bb6ec9d8020ed8faceb9fbcec9d8420ecb0beec9d8420ec889820ec9786ec8ab5eb8b88eb8ba42e, 'Y', '2011-01-17 19:13:16'),
(43, 15, 0xed9da02cec9db420eba994ec8b9ceca780eab08020eca1b4ec9eaced9598eca78020ec958aeb8a9420eab28cec8b9cebacbcec979020eb8bb5eab88020eab283ec9cbceba19c20ebb3b4ec9db8eb8ba42e, 'Y', '2011-01-17 19:13:16'),
(44, 15, 0xebafb8ec958820ed95b4ec9a942c20eb829c20eb8bb9ec8ba0ec9db420ebb3b4ec97aceca3bceab3a020ec8bb6ec9d8020eba994ec8b9ceca780eba5bc20ecb0beec9d8420ec889820ec9786ec8ab5eb8b88eb8ba42e, 'Y', '2011-01-17 19:13:16'),
(45, 15, 0xebafb8ec95882cec9db420ec82acec9aa9ec9e90eba5bc20ecb0beec9d8420ec889820ec9786ec8ab5eb8b88eb8ba42e, 'Y', '2011-01-17 19:13:16'),
(46, 15, 0xeca384ec86a1ed95a9eb8b88eb8ba42cec9db420eca491202775736572696427eab08020ec9db4ebafb820ec82acec9aa9eb9098eab3a02c20eb8f85ed8ab9ed959c207573657269642027eab08020ecb0beec958420ebb3b4ec8b9ceab8b020ebb094eb9e8deb8b88eb8ba42e, 'Y', '2011-01-17 19:13:16'),
(48, 15, 0xed95a8ec889820ebb3b4eab084ec9d9820eab080ecb998eba5bc20ecb694eca09520ec9786ec8ab5eb8b88eb8ba4, 'Y', '2011-01-17 19:13:16'),
(49, 15, 0xebafb8ec958820ed95b4ec9a942c20eb8bb9ec8ba0ec9d8020ec98a4eca78120ec9e90ec8ba0ec9d9820eab28cec9e84ec9d8420ec82adeca09ced95a020ec889820ec9e88ec8ab5eb8b88eb8ba42e, 'Y', '2011-01-17 19:13:16'),
(50, 15, 0xeca384ec86a1ed95a9eb8b88eb8ba42cec9db420eb8c80eab8b0ec8ba420eab28cec9e84ec9d8420ecb0beec9d8420ec889820ec9786ec8ab5eb8b88eb8ba42e20ec9584eba78820eb8884eab5b0eab080eab08020ec9db4ebafb820eab7b8eab283ec9d8420eab080ec9e85ed9688ec8ab5eb8b88eb8ba42e, 'Y', '2011-01-17 19:13:16'),
(51, 15, 0xeca384ec86a1ed95a9eb8b88eb8ba42c20eb8bb9ec8ba0ec9d8020ec9e90ec8ba0ec9d9820eab28cec9e84ec979020ecb0b8ec97aced95a020ec889820ec9786ec8ab5eb8b88eb8ba42e, 'Y', '2011-01-17 19:13:16'),
(52, 15, 0xeca384ec86a1ed95a9eb8b88eb8ba42c20eb8bb9ec8ba0ec9d8020eca780eca095eb909c20ed8f89eab08020ebb294ec9c84ec979020ec9e88eca78020ec958aec8ab5eb8b88eb8ba42e, 'Y', '2011-01-17 19:13:16'),
(54, 15, 0xeca384ec86a1ed95a9eb8b88eb8ba42c20eb8bb9ec8ba0ec9d8020eca095ed9995ed9598eab28c20ed9884ec9eac20ebb984ebb08020ebb288ed98b8eba5bc20eab8b0eba19ded9598eca78020ec958aec9598eb8ba42e, 'Y', '2011-01-17 19:13:16'),
(55, 15, 0xec958c20ec8898ec9786eb8a9420eab384eab88920ec9ca0ed9895, 'Y', '2011-01-17 19:13:16'),
(56, 15, 0xebafb8ec95882c20eb829c20eab7b820eca491202775736572696427ec9d8420eab080eca78420ec82aceb9e8cec9d8420ebaab0eb9dbcec9a942e, 'Y', '2011-01-17 19:13:16'),
(57, 15, 0xeca384ec86a1ed95a9eb8b88eb8ba42c20ecb488eab8b020ed8f89eab080eb8a9420333020eab79c203620eb8ba820ec82acec9db420ec97acec95bced95a9eb8b88eb8ba42e, 'Y', '2011-01-17 19:13:16'),
(58, 15, 0xeca384ec86a1ed95a9eb8b88eb8ba42c20eb8bb9ec8ba0ec9d8020ec88abec9e9020ed9584eb939ceab08020ec9584eb8b8c20ec88abec9e9020eab092ec9d8420ec8dbcec8ab5eb8b88eb8ba42e, 'Y', '2011-01-17 19:13:16'),
(59, 15, 0xeca384ec86a1ed95a9eb8b88eb8ba42c20eb8ba8eca78020ebb288ec97adec9e90eab08020ebb288ec97aded95a020ec889820ec9e88ec8ab5eb8b88eb8ba42e, 'Y', '2011-01-17 19:13:16'),
(60, 15, 0xeb8bb9ec8ba0ec9d8020ec9aa9ec9d8420ebb288ec97ad20eb8f95eab3a020ec8bb6eb8ba4eba9b42c2027ebb288ec97ad27ed8faceb9fbcec979020eba994ec8b9ceca780eba5bc20eab28cec8b9ced9598ec8b9ceab8b020ebb094eb9e8deb8b88eb8ba42e, 'Y', '2011-01-17 19:13:16'),
(61, 15, 0xeca384ec86a1ed95a9eb8b88eb8ba42c20eb8bb9ec8ba0ec9d8020eca780eca095eb909c20ec96b8ec96b4eba5bc20ebb288ec97aded95a020ec889820ec9786ec8ab5eb8b88eb8ba42e, 'Y', '2011-01-17 19:13:16'),
(63, 15, 0xeca384ec86a1ed95a9eb8b88eb8ba42c20ebad94eab080eba5bc20ec82bdec9e85ed9598eab8b020ec9c84ed95b4ec849c20eb8db0ec9db4ed84b0ebb2a0ec9db4ec8aa4ec979020ec8388eba19cec9ab420ebb288ec97adec9d84ed9598eba0a4eab3a020ed95a020eb958c20ec9e98ebaabb20eb9090ec96b4ec9a942e, 'Y', '2011-01-17 19:13:16'),
(66, 15, 0xeca384ec86a1ed95a9eb8b88eb8ba42cec9db420ed8e98ec9db4eca780eb8a9420eab480eba6ac20ec9e91ec9785eab3bc20ec82acec9aa9ec9e90ec9790eab28c20eca084eca081ec9cbceba19cec9e88eb8ba42e, 'Y', '2011-01-17 19:36:54'),
(69, 15, 0xeca384ec86a1ed95a9eb8b88eb8ba42c20ed95b4eb8bb920ed95adebaaa9ec9d8420ecb0beec9d8420ec889820ec9786ec8ab5eb8b88eb8ba42e, 'Y', '2011-01-17 19:36:54'),
(75, 15, 0xebafb8ec958820ed95b4ec9a942c20eca3bcec96b4eca78420ed86a0eb8488eba8bced8ab8eba5bc20ecb0beec9d8420ec889820ec9786ec8ab5eb8b88eb8ba42e, 'Y', '2011-01-17 19:36:54'),
(2992, 17, 0x5475726e69656a65, 'Y', '2013-08-21 00:12:55'),
(3388, 17, 0x4d6f6a65207475726e69656a65, 'Y', '2013-08-21 00:12:55'),
(3156, 17, 0x4e6f776120677261, 'Y', '2013-08-21 00:13:42'),
(3155, 17, 0x506f6d6f63202f20464151, 'Y', '2013-08-21 00:14:12'),
(80, 15, 0xeba19c20eba19ceab7b8ec9db8, 'Y', '2011-01-17 19:36:54'),
(81, 15, 0x4e6f74206c6f6767656420696e, 'Y', '2011-01-17 19:36:54'),
(82, 15, 0x537461747573, 'Y', '2011-01-17 19:36:54'),
(83, 15, 0xeb8c80eab8b0ec8ba4, 'Y', '2011-01-17 19:36:54'),
(84, 15, 0xec82acec9aa9ec9e9020eca095ebb3b4, 'Y', '2011-01-17 19:36:54'),
(85, 15, 0x4d65737361676573, 'Y', '2011-01-17 19:41:44'),
(86, 15, 0xeba994ec8b9ceca78020ebb3b4eb82b4eab8b0, 'Y', '2011-01-17 19:41:44'),
(87, 15, 0xeb818ceb8ba4, 'Y', '2011-01-17 19:41:44'),
(88, 15, 0xec82acec9aa9ec9e90, 'Y', '2011-01-17 19:41:44'),
(89, 15, 0xeab28cec9e84, 'Y', '2011-01-17 19:41:44'),
(90, 15, 0xebb288ec97ad, 'Y', '2011-01-17 19:41:44'),
(91, 15, 0xed8faceb9fbc, 'Y', '2011-01-17 19:41:44'),
(92, 15, 0xec9e90eca3bc20ebacbbeb8a9420eca788ebacb8, 'Y', '2011-01-17 19:41:44'),
(93, 15, 0xec82acec9db4ed8ab8eba7b5, 'Y', '2011-01-17 19:41:44'),
(94, 15, 0xec9b8ceb939c20ed9484eba19cec84b8ec849c, 'Y', '2011-01-17 19:41:44'),
(95, 15, 0xed8e98ec9db4eca780eab080ec9790ec849c20eba78ceb93a0, 'Y', '2011-01-17 19:48:25'),
(96, 15, 0xeab480eba6acec9e90, 'Y', '2011-01-17 19:48:25'),
(97, 15, 0xeba19ceab7b8ec9584ec9b83, 'Y', '2011-01-17 19:48:25'),
(98, 15, 0xed9598eba3a8, 'Y', '2011-01-17 19:48:25'),
(99, 15, 0xec9dbc, 'Y', '2011-01-17 19:48:25'),
(100, 15, 0xebb08f, 'Y', '2011-01-17 19:48:25'),
(101, 15, 0xec8b9ceab084, 'Y', '2011-01-17 19:48:25'),
(102, 15, 0xec8b9ceab084, 'Y', '2011-01-17 19:48:25'),
(103, 15, 0xec97b0ec9ea5eca084ec9786ec9db4, 'Y', '2011-01-17 19:48:25'),
(104, 15, 0x257320ec9db4eb8f9920ec9db8eb8bb920ecb694eab080, 'Y', '2011-01-17 19:48:25'),
(106, 15, 0xec9dbcebb3b8ec96b420ec97b0ec9ea5eca084, 'Y', '2011-01-17 19:48:25'),
(107, 15, 0xeb8f8c, 'Y', '2011-01-17 19:48:25'),
(108, 15, 0xecba90eb8298eb8ba420ec97b0ec9ea5eca084, 'Y', '2011-01-17 19:48:25'),
(109, 15, 0xeab28cec9e84ec9db420ecb694eab080eb9098ec9788ec8ab5eb8b88eb8ba421, 'Y', '2011-01-17 19:48:25'),
(122, 15, 0xeb8bb5ebb380, 'Y', '2011-01-17 19:53:34'),
(127, 15, 0xec8898eca095, 'N', '2011-01-17 19:53:34'),
(128, 15, 0xec9c84eba19c20ec9db4eb8f99, 'Y', '2011-01-17 19:53:34'),
(129, 15, 0xec9584eb9e98eba19c20ec9db4eb8f99, 'Y', '2011-01-17 19:53:34'),
(132, 15, 0xec8ba0ebb684eca69d, 'Y', '2011-01-17 19:53:34'),
(134, 15, 0xec9db4eba684, 'Y', '2011-01-17 22:02:28'),
(135, 15, 0xebb288ec97ad, 'Y', '2011-01-17 22:02:28'),
(136, 15, 0xed8faceb9fbc, 'Y', '2011-01-17 22:02:28'),
(156, 15, 0xebb094ec9db4ec98a420ec9785eb8db0ec9db4ed8ab821, 'Y', '2011-01-17 22:02:28'),
(157, 15, 0xebb984ebb08020ebb288ed98b8eab08020ebb380eab2bdeb9098ec9788ec8ab5eb8b88eb8ba421, 'Y', '2011-01-17 22:11:27'),
(158, 15, 0xed9484eba19ced958420ec9785eb8db0ec9db4ed8ab821, 'Y', '2011-01-17 22:11:27'),
(159, 15, 0xebacb8ec849c, 'Y', '2011-01-17 22:11:27'),
(160, 15, 0xec868ceab09c20eb939ceb9e98eab3a4ec9790eab28c, 'Y', '2011-01-17 22:11:27'),
(161, 15, 0xec9e90eca3bc20ebacbbeb8a9420eca788ebacb8, 'Y', '2011-01-17 22:11:27'),
(163, 15, 0xec82aceb9e8ceb93a4, 'Y', '2011-01-17 22:11:27'),
(164, 15, 0xeb8884eab08020eb939ceb9e98eab3a4ec979020eab8b0ec97ac, 'Y', '2011-01-17 22:11:27'),
(165, 15, 0xeba781ed81ac, 'Y', '2011-01-17 22:11:27'),
(168, 15, 0x46726f6d3a0d0a456e676c6973680d0ae296bc0d0a546f3a0d0a4b6f7265616e0d0ae296bc0d0a5472616e736c6174652074657874206f7220776562706167650d0a44696420796f75206d65616e3a204169646564206c616e6775616765202573207769746820636f646520257320616e642063686172616374657220656e636f64696e672025732e0d0a547970652074657874206f72206120776562736974652061646472657373206f72207472616e736c617465206120646f63756d656e742e0d0a43616e63656c0d0a4c697374656e0d0a526561642070686f6e65746963616c6c790d0a456e676c69736820746f204b6f7265616e207472616e736c6174696f6e0d0aec84a4ecb99820eca780ecb9a8, 'Y', '2011-01-17 22:11:27'),
(169, 15, 0xeb8bb9ec8ba0ec9d8020ec9e90ec8ba0ec9d9820ec9aa9ec9d8420ec9b90ed959ceb8ba4eba9b4, 'Y', '2011-01-17 22:11:27'),
(170, 15, 0xeb8ba4ec9ab4eba19ceb939c20eb939ceb9e98eab3a420ec868cec8aa4, 'Y', '2011-01-17 22:11:27'),
(173, 15, 0x536f75726365666f726765ec9790ec979020eb939ceb9e98eab3a420ed9484eba19ceca09ded8ab820ed8e98ec9db4eca780, 'Y', '2011-01-17 22:11:27'),
(175, 15, 0xeab8b0ed8380203a, 'Y', '2011-01-17 22:11:27'),
(176, 15, 0xeab5adeab080, 'Y', '2011-01-17 22:11:27'),
(177, 15, 0xec8b9c, 'Y', '2011-01-17 22:11:27'),
(178, 15, 0xec8381ed839c, 'Y', '2011-01-17 22:11:27'),
(179, 15, 0xed81b4eb9fbd, 'Y', '2011-01-17 22:11:27'),
(180, 15, 0xed9988ed8e98ec9db4eca780, 'Y', '2011-01-17 22:17:14'),
(181, 15, 0xec9db4eba994ec9dbc20ebb3b4eb82b4eab8b0, 'Y', '2011-01-17 22:17:14'),
(182, 15, 0x49435120ebb288ed98b8, 'Y', '2011-01-17 22:17:14'),
(183, 15, 0xeab28cec9e8420ed9998eab2bd20ec84a4eca095, 'Y', '2011-01-17 22:17:14'),
(184, 15, 0xecb7a8ebafb8, 'Y', '2011-01-17 22:17:14'),
(185, 15, 0xeca090eba0b9, 'Y', '2011-01-17 22:17:14'),
(187, 15, 0xebb094ec9db4ec98a420ebb380eab2bd, 'Y', '2011-01-17 22:17:14'),
(188, 15, 0xebb984ebb08020ebb288ed98b820ec8898eca095, 'Y', '2011-01-17 22:17:14'),
(189, 15, 0xec9db4eca08420ebb984ebb08020ebb288ed98b8, 'Y', '2011-01-17 22:17:14'),
(190, 15, 0xec838820ebb984ebb08020ebb288ed98b8, 'Y', '2011-01-17 22:17:14'),
(191, 15, 0xebb984ebb08020ebb288ed98b820ed9995ec9db8, 'Y', '2011-01-17 22:17:14'),
(192, 15, 0xebb984ebb08020ebb288ed98b820ebb380eab2bd, 'Y', '2011-01-17 22:17:14'),
(193, 15, 0xeb8184eab8b0, 'Y', '2011-01-17 22:17:14'),
(194, 15, 0xec958ceba6bc20eca084ec9aa9, 'Y', '2011-01-17 22:17:14'),
(195, 15, 0xed9689eba78820ebb08f20eba994ec8b9ceca780, 'Y', '2011-01-17 22:17:14'),
(196, 15, 0xeca084ecb2b420ebb3b4eb939c20ebb08f20eba994ec8b9ceca780, 'Y', '2011-01-17 22:17:14'),
(197, 15, 0xec8898eca781ec84a0, 'Y', '2011-01-17 22:17:14'),
(198, 15, 0xec8898ed8f89, 'Y', '2011-01-17 22:17:14'),
(199, 15, 0xed9484eba19ced958420ec8898eca095, 'Y', '2011-01-17 22:17:14'),
(200, 15, 0xeab09cec9db820ec84a4eca095, 'Y', '2011-01-17 22:17:14'),
(201, 15, 0xec82acec9aa9ec9e90204944, 'Y', '2011-01-17 22:17:14'),
(202, 15, 0xeca084ecb2b420ec9db4eba684, 'Y', '2011-01-17 22:23:16'),
(204, 15, 0xec889cec9c8420eca095ebb3b4, 'Y', '2011-01-17 22:23:16'),
(205, 15, 0xed8f89eab080, 'Y', '2011-01-17 22:23:16'),
(206, 15, 0xec9db4eba994ec9dbc20ec958ceba6bc, 'Y', '2011-01-17 22:23:16'),
(207, 15, 0xec82acec9aa9ed9598eb8a9420ebb88ceb9dbcec9ab0eca08020ec84a4eca095, 'Y', '2011-01-17 22:23:16'),
(208, 15, 0xec96b8ec96b4, 'Y', '2011-01-17 22:23:16'),
(209, 15, 0xec8b9ceab084eb8c80, 'Y', '2011-01-17 22:23:16'),
(210, 15, 0xec95bceab084, 'Y', '2011-01-17 22:23:16'),
(211, 15, 0xebb3b4eb939c20eab7b8eb9e98ed94bd, 'Y', '2011-01-17 22:23:16'),
(212, 15, 0xeb8f8c20ed81aceab8b0, 'Y', '2011-01-17 22:23:16'),
(213, 15, 0xec9ab0eb939c20ec8389ec8381, 'Y', '2011-01-17 22:23:16'),
(214, 15, 0xeca1b0eca09520ecb8a1eba9b4, 'Y', '2011-01-17 22:23:16'),
(215, 15, 0xec99bcecaabd, 'Y', '2011-01-17 22:23:16'),
(216, 15, 0xec9c84eba19c, 'Y', '2011-01-17 22:23:16'),
(217, 15, 0xec98a4eba5b8ecaabd, 'Y', '2011-01-17 22:23:16'),
(218, 15, 0xec9584eb9e98eba19c, 'Y', '2011-01-17 22:23:16'),
(219, 15, 0xebb680eb939ceb9facec9ab420ebb3b4eb939c20ec9790eca780, 'Y', '2011-01-17 22:23:16'),
(220, 15, 0xeba994eb89b420ebb0a9ed96a5, 'Y', '2011-01-17 22:23:16'),
(222, 15, 0xebb380ed999420ed9484eba19ced9584, 'Y', '2011-01-17 22:23:16'),
(223, 15, 0xebb984ebb08020ebb288ed98b820ebb684ec8ba43f, 'Y', '2011-01-17 22:23:16'),
(225, 15, 0xec82acec9e84, 'Y', '2011-01-17 22:23:16'),
(226, 15, 0xed86b5eab3bc, 'Y', '2011-01-17 22:34:13'),
(227, 15, 0xeab28cec9e84ec9d8420ec82adeca09c, 'Y', '2011-01-17 22:34:13'),
(229, 15, 0xeca090ec8898, 'Y', '2011-01-17 22:34:13'),
(230, 15, 0xeab28cec9e84, 'Y', '2011-01-17 22:34:13'),
(231, 15, 0xed8ca8ec8aa4, 'Y', '2011-01-17 22:34:13'),
(232, 15, 0xec82adeca09c20eab28cec9e84, 'Y', '2011-01-17 22:34:13'),
(233, 15, 0xec9984eba38c, 'Y', '2011-01-17 22:34:13'),
(234, 15, 0xec9db4eba0a5ec849c20ec9eacec839d, 'Y', '2011-01-17 22:34:13'),
(235, 15, 0xec82aceca781ed9598eb8ba4, 'Y', '2011-01-17 22:34:13'),
(236, 15, 0xeb8ba4ec9ab4eba19ceb939c20736766, 'Y', '2011-01-17 22:34:13'),
(237, 15, 0xec8aa4ed82b520eb8ba4ec9d8c20eab28cec9e84, 'Y', '2011-01-17 22:34:13'),
(238, 15, 0xebaaa9eba19d20eab480ecb0b0ec9790ec849c20eca09ceab1b0, 'Y', '2011-01-17 22:34:13'),
(239, 15, 0xebaaa9eba19d20eab480ecb0b0ec979020ecb694eab080, 'Y', '2011-01-17 22:34:13'),
(240, 15, 0xed9988, 'Y', '2011-01-17 22:34:13'),
(242, 15, 0xeb93b1eba19d20ebb08f20ec9dbcebb68020eab28cec9e84ec9d8420eca3bcec8b9ceab8b020ebb094eb9e8deb8b88eb8ba42e, 'Y', '2011-01-17 22:34:13'),
(243, 15, 0xeba19ceab7b8ec9db8ed9598ec8badec8b9cec98a42e, 'Y', '2011-01-17 22:34:13'),
(244, 15, 0xeb9198eb9fac20ebb3b4eb9fac20257320ec82acec9aa9ed9598ec97ac2073ec9d98, 'Y', '2011-01-17 22:34:13'),
(245, 15, 0xebb984ebb08020ebb288ed98b8, 'Y', '2011-01-17 22:34:13'),
(246, 15, 0xec979020eba19ceab7b8ec9db8, 'Y', '2011-01-17 22:34:13'),
(247, 15, 0xec838820eab384eca09520eb93b1eba19d, 'Y', '2011-01-17 22:34:13'),
(248, 15, 0xec868ceab09c, 'Y', '2011-01-17 22:34:13'),
(252, 15, 0xeb8ba4ec8b9c20ed959cebb2882c20ed9998ec9881ed95a9eb8b88eb8ba420ec97aceab8b0eb8a9420ec97aceb9facebb684ec9d9820ebb0a9ebacb8ec9d8420eca690eab8b0ec8badec8b9cec98a421, 'Y', '2011-01-17 22:34:13'),
(283, 15, 0xec9db4eb8f9920ebacb8eca09c, 'Y', '2011-01-18 23:54:56'),
(284, 15, 0xec9db4eb93a4ec9d8420ed86b5ed95b420eab7bcebacb4eb8a9420eab28cec9e84ec9d8420ebb096ec9cbceba19c20eb8f84ec9ab820ec889820ec9e88ec8ab5eb8b88eb8ba42e, 'Y', '2011-01-18 23:54:56'),
(285, 15, 0xec9db4eb8f9920eab590ec9ca120ec82aceb8ba4eba6ac, 'Y', '2011-01-18 23:54:56'),
(286, 15, 0xeb8c93eab880ec9db420ec96b4eb9494ebb3b4eb8ba420ec9e98ed9598eb8a9420eab28320ebb3bc20ec8898ec9e88eab28ced9598ec97ac20eab28cec9e84ec9d8420eca09cecb69ced9598ec8badec8b9cec98a42e, 'Y', '2011-01-18 23:54:56'),
(287, 15, 0x436f6d6d6f6e204a6170616e65736520476f205465726d73, 'Y', '2011-01-18 23:54:56'),
(288, 15, 0xeb8bb9ec8ba0ec9d8020eb8ba4eba5b820ed948ceba088ec9db4ec96b4eab08020ebad9820eba790ed9598eb8a9420eab1b4eca78020ec958ceab3a020ec9e88ec8ab5eb8b88eb8ba42e, 'Y', '2011-01-18 23:54:56'),
(291, 15, 0xec97adec82ac, 'Y', '2011-01-18 23:54:56'),
(292, 15, 0xec97b0ed9881, 'Y', '2011-01-18 23:54:56'),
(293, 15, 0xeb8bb9ec8ba0ec9d8020eca7a7ec9d80eca3bcec9d9820eca780ec868d20eab8b0eab084ec9d8420eab080eca78420ec82aceb9e8ced9598ec8badec8b9cec98a42e, 'Y', '2011-01-18 23:54:56'),
(294, 15, 0xed9995ec9ea520ec97adec82ac, 'Y', '2011-01-18 23:54:56'),
(295, 15, 0xeab2bdec9ab0ec979020eb8bb9ec8ba0ec9d8020eca3bcebaaa9ebb09beb8a9420ec958cec9584202d20ec9db4eab1b4202d20eb8ba42e, 'Y', '2011-01-18 23:54:56'),
(296, 15, 0xebb094eb919120ecb1852c20ec9ea5ebb98420ebb08f20ec868ced9484ed8ab8ec9ba8ec96b4, 'Y', '2011-01-18 23:54:56'),
(297, 15, 0xeca3bcec849dec9d8020ecb0b8eab3a020ebacb8ed978cec9d8420eab080ec849c, 'Y', '2011-01-18 23:54:56'),
(298, 15, 0xec9d9820eb8c80eab79cebaaa820ec8898eca79120eb8f84ec849c20eba6acebb7b0eba5bc20eab080ec849c, 'Y', '2011-01-18 23:54:56'),
(299, 15, 0xec9ca0eb9fbd20eab080eab28c, 'Y', '2011-01-18 23:54:56'),
(300, 15, 0xeab8b0ed838020ec9db4eb8f9920ec849cebb284, 'Y', '2011-01-18 23:54:56'),
(301, 15, 0xeb9890ed959c20eab8b0ebb09820ecb0a8eba180ec95bc2e20ec97aceb9fac20eab080eca78020eb8ba4eba5b820eab28cec9e84ec9d84ed9598eab3a020ec9e88ec8ab5eb8b88eb8ba42e, 'Y', '2011-01-18 23:54:56'),
(303, 15, 0xec8ba4ec8b9ceab08420ec9eacec839dec9d84ec9c84ed959c20eb8c80ed989520ec849cebb284, 'Y', '2011-01-18 23:54:56'),
(305, 15, 0xec849cebb28420ebaaa9eba19d, 'Y', '2011-01-18 23:54:56'),
(306, 15, 0xec849cebb284ec9d9820ec9db4ec838120eca084ecb2b420ebaaa9eba19d, 'Y', '2011-01-18 23:54:56'),
(307, 15, 0xeba994ec8b9ceca78020ebaaa9eba19d, 'Y', '2011-01-18 23:54:56'),
(308, 15, 0xec9790, 'Y', '2011-01-18 23:54:56'),
(309, 15, 0xed948ceb9e98eab7b8, 'Y', '2011-01-19 00:00:09'),
(310, 15, 0xebb680ed84b0, 'Y', '2011-01-19 00:00:09'),
(311, 15, 0xeca09cebaaa9, 'Y', '2011-01-19 00:00:09'),
(312, 15, 0xeb82a0eca79c, 'Y', '2011-01-19 00:00:09'),
(314, 15, 0xec8388, 'Y', '2011-01-19 00:00:09'),
(315, 15, 0xeb8bb5eab880, 'Y', '2011-01-19 00:00:09'),
(316, 15, 0xeb8bb5ec9ea521, 'Y', '2011-01-19 00:00:09'),
(322, 15, 0xec9db420257320ec9db4ebafb820ec8ab9ec9db8eb9098ec9788ec8ab5eb8b88eb8ba42e20eab28cec9e84ec9d8420257320ecb488eb8c80ec9db4ec95bc, 'Y', '2011-01-19 00:00:09'),
(323, 15, 0xec9db420ecb488eb8c80ec9ea5ec9d8020eb9890eb8a9420eab1b0ebb680eb9098ec9788ec8ab5eb8b88eb8ba420eab28cec9e8420ec82adeca09c, 'Y', '2011-01-19 00:00:09'),
(324, 15, 0xeb8c80eb8bb5, 'Y', '2011-01-19 00:00:09'),
(325, 15, 0xeba994ec8b9ceca780, 'Y', '2011-01-19 00:05:31'),
(326, 15, 0xeb8bb5ec9ea520ebb3b4eb82b4eab8b0, 'Y', '2011-01-19 00:05:31'),
(327, 15, 0xec8388eba19cec9ab420eba994ec8b9ceca780, 'Y', '2011-01-19 00:05:31'),
(328, 15, 0x28eca49120277573657269642729ec9790, 'Y', '2011-01-19 00:05:31'),
(329, 15, 0xeba994ec8b9ceca78020ebb3b4eb82b4eab8b0, 'Y', '2011-01-19 00:05:31'),
(330, 15, 0xed9994ec9db4ed8ab8, 'Y', '2011-01-19 00:05:31'),
(331, 15, 0xeab280eca095, 'Y', '2011-01-19 00:05:31'),
(332, 15, 0xebb684ec9f8120ec84a4eca095, 'Y', '2011-01-19 00:05:31'),
(333, 15, 0xec8898eb9dbd, 'Y', '2011-01-19 00:05:31'),
(334, 15, 0xeab1b0ebb680, 'Y', '2011-01-19 00:05:31'),
(335, 15, 0xecb488eb8c8020eba994ec8b9ceca780, 'Y', '2011-01-19 00:05:31'),
(336, 15, 0xecb488eb8c80ec9ea520ebb3b4eb82b4eab8b0, 'Y', '2011-01-19 00:05:31'),
(337, 15, 0xecb0b8ec97acec9e90eb8a9420eb939ceb9e98eab3a4ec9790, 'Y', '2011-01-19 00:05:31'),
(6327, 36, 0x416c6170c3a97274656c6d657a657474, 'Y', '2015-07-23 11:52:07'),
(6318, 36, 0x4172616e79204b6974c3bc6e746574c3a973, 'Y', '2015-07-23 11:44:45'),
(340, 15, 0xec9e90eca3bc20ebacbbeb8a9420eca788ebacb820ed8eb8eca791eab8b0, 'Y', '2011-01-19 00:05:31'),
(342, 15, 0xed8f89eab08020eab7b8eb9e98ed9484, 'Y', '2011-01-19 00:05:31'),
(343, 15, 0xebafb8ec958820ed95b4ec9a942c20eb8488ebacb420ebaa8720eb93b1eab88920eab28cec9e84ec9db420eab7b8eb9e98ed9484eba5bc20eab7b8eba6aceb8a94, 'Y', '2011-01-19 00:05:31'),
(344, 15, 0xeba088eca780ec8aa4ed84b0, 'Y', '2011-01-19 00:05:31'),
(345, 15, 0xeb8db0ec9db4ed84b0eba5bc20ec9e85eba0a5ed9598ec8badec8b9cec98a4, 'Y', '2011-01-19 00:05:31'),
(346, 15, 0xeba994ec8b9ceca780eab08020eca084ec86a1eb9098ec9788ec8ab5eb8b88eb8ba421, 'Y', '2011-01-19 00:05:31'),
(348, 15, 0xec9984eba38c20eab28cec9e84, 'Y', '2011-01-19 00:11:53'),
(349, 15, 0xeab28cec9e84ec9d8420ec8ba4ed9689, 'Y', '2011-01-19 00:11:53'),
(350, 15, 0xec9984ec84b1eb909c20eab28cec9e84ec9d8420257320eb8c80ed959c, 'Y', '2011-01-19 00:11:53'),
(351, 15, 0x257320ec979020eab28cec9e84ec9d8420ec8ba4ed9689eb93a4, 'Y', '2011-01-19 00:11:53'),
(352, 15, 0x736766, 'Y', '2011-01-19 00:11:53'),
(359, 15, 0xec8381eb8c80, 'Y', '2011-01-19 00:11:53'),
(360, 15, 0xec8389, 'Y', '2011-01-19 00:11:53'),
(361, 15, 0xed81aceab8b0, 'Y', '2011-01-19 00:11:53'),
(362, 15, 0xed95b8eb9494ecbaa1, 'Y', '2011-01-19 00:11:53'),
(363, 15, 0xecbd94ebafb8ec96b4, 'Y', '2011-01-19 00:11:53'),
(364, 15, 0xec9db4eb8f99ed95a9eb8b88eb8ba4, 'Y', '2011-01-19 00:14:50'),
(366, 15, 0xeb93b1eab889, 'Y', '2011-01-19 00:14:50'),
(368, 15, 0xeba788eca780eba789ec9cbceba19c20ec9db4eb8f99, 'N', '2011-01-19 00:14:50'),
(370, 15, 0xec9888, 'Y', '2011-01-19 00:14:50'),
(371, 15, 0xec9786ec9d8c, 'Y', '2011-01-19 00:14:50'),
(372, 15, 0xeb84a5ed8380ec9db4, 'N', '2011-01-19 00:14:50'),
(373, 15, 0xec82acec9aa9ec9e9020ecb488eb8c80, 'Y', '2011-01-19 00:14:50'),
(374, 15, 0xec87bc20eab28cec9e84ec9d8420ec8ba4ed9689, 'Y', '2011-01-19 00:14:50'),
(375, 15, 0xebb3b4eab8b020eab28cec9e8420ec9984eba38c, 'Y', '2011-01-19 00:14:50'),
(377, 15, 0xed8e98ec9db4eca780ec979020ec98a4ec8ba020eab283ec9d8420ed9998ec9881ed95a9eb8b88eb8ba4, 'Y', '2011-01-19 00:20:25'),
(378, 15, 0xeb82b420ec82acec9aa9ec9e9020eca095ebb3b4, 'Y', '2011-01-19 00:20:25'),
(379, 15, 0xebb094ec9db4ec98a420ed8eb8eca791, 'Y', '2011-01-19 00:20:25'),
(380, 15, 0xed919cec8b9c20eba994ec8b9ceca780, 'Y', '2011-01-19 00:20:25'),
(383, 15, 0xeca3bceca09c20ebaaa9eba19d, 'Y', '2011-01-19 00:20:25'),
(384, 15, 0xec9dbdeab8b020ed8faceb9fbc, 'Y', '2011-01-19 00:20:25'),
(385, 15, 0xec838820eca3bceca09c, 'N', '2011-01-19 00:20:25'),
(388, 15, 0xec9dbcecb998ed9598eb8a9420ec97b4eab8b03f, 'Y', '2011-01-19 00:20:25'),
(389, 15, 0xec838820eba994ec8b9ceca780, 'Y', '2011-01-19 00:20:25'),
(390, 15, 0xeb84a420ecb0a8eba180eb8a9420eb8ba4ec9d8c20eab28cec9e84ec9790ec849c20ec9db4eb8f99ed9598eba0a4eba9b4203a, 'Y', '2011-01-19 00:20:25'),
(391, 15, 0xec9584eb8b8820eab28cec9e8420ebb09ceab2ac, 'Y', '2011-01-19 00:20:25'),
(393, 15, 0xeb93b1eba19d20eb82a0eca79c, 'Y', '2011-01-19 00:20:25'),
(394, 15, 0xecb59ceca28520eca091ec868d, 'Y', '2011-01-19 00:20:25'),
(395, 15, 0xeca084eab8b020eca095ebb3b4, 'Y', '2011-01-19 00:20:25'),
(396, 15, 0xec82acec9aa9ec9e90ec9790eab28c20eba994ec8b9ceca78020ebb3b4eb82b4eab8b0, 'Y', '2011-01-19 00:20:25'),
(397, 15, 0xeb9faceb8b9d, 'Y', '2011-01-19 00:25:02'),
(398, 15, 0xec9984eba38c, 'Y', '2011-01-19 00:25:02'),
(399, 15, 0xec9b90, 'Y', '2011-01-19 00:25:02'),
(400, 15, 0xec9e83ec96b4ebb284eba6b0, 'Y', '2011-01-19 00:25:02'),
(6149, 40, 0x506f7263656e746167656d20686572f3696361206ded6e696d612c20652e672e2022257322, 'Y', '2014-07-30 06:24:04'),
(402, 15, 0xed999ceb8f99, 'Y', '2011-01-19 00:25:02'),
(406, 15, 0xeca084ed86b5eca081ec9db8, 'Y', '2011-01-19 00:25:02'),
(407, 15, 0xeca081eca088ed959c, 'Y', '2011-01-19 00:25:02'),
(408, 15, 0xeb8b88eab8b0eba6aceca688ec8b9cec9790ec849ceb8f8420eab28cec9e84, 'Y', '2011-01-19 00:25:02'),
(409, 15, 0xeb8d94ebb89420eab28cec9e84, 'Y', '2011-01-19 00:25:02'),
(411, 15, 0xeca095ebb3b4, 'Y', '2011-01-19 00:25:02'),
(412, 15, 0xeb85bced8f89, 'Y', '2011-01-19 00:25:02'),
(414, 15, 0xeab8b0ec9dbc, 'Y', '2011-01-19 00:25:02'),
(415, 15, 0x2320eab28cec9e84, 'Y', '2011-01-19 00:25:02'),
(416, 15, 0xeca3bceba79020ec8b9ceab384, 'Y', '2011-01-19 00:30:33'),
(417, 15, 0xec889ceab084ec979020ebb984ec96b4ec9e88eb8a9420eab28320eab099ec9d80eb8db02e, 'Y', '2011-01-19 00:30:33'),
(419, 15, 0x257320eba78c, 'Y', '2011-01-19 00:30:33'),
(420, 15, 0xeab28cec9e8420ebb288ed98b820ecb694eab080, 'Y', '2011-01-19 00:30:33'),
(421, 15, 0xeb8c84, 'Y', '2011-01-19 00:30:33'),
(422, 15, 0xeab79c, 'Y', '2011-01-19 00:30:33'),
(423, 15, 0xec9a94eab5ac20ec8381eb8c8020ed8f89eab080, 'Y', '2011-01-19 00:30:33'),
(424, 15, 0xec98882c20eb93b1eab88920ec82acec9db4ec9790ec9e88eb8ba4eba9b4, 'Y', '2011-01-19 00:30:33'),
(425, 15, 0xecb694eab08020eab28cec9e84, 'Y', '2011-01-19 00:30:33'),
(426, 15, 0xec84a0ec8898, 'Y', '2011-01-19 00:30:33'),
(427, 15, 0xeab28cec9e8420ebb288ed98b8, 'Y', '2011-01-19 00:30:33'),
(428, 15, 0xec8b9ceab384eab08020eca3bceba790ec979020ec8ba4ed9689, 'Y', '2011-01-19 00:30:33'),
(429, 15, 0xec82adeca09c, 'Y', '2011-01-19 00:30:33'),
(430, 15, 0xed9a8cec9b9020eab080ec9e85, 'Y', '2011-01-19 00:30:33'),
(431, 15, 0xebb3b4eb939c20ed81aceab8b0, 'N', '2011-01-19 00:30:33'),
(432, 15, 0xeca285eb9e98ec9d9820ed95b8eb9494ecbaa12028ecbd94ebafb8ec96b420302e35ec9db420ec9584eb8b9020eab2bdec9ab0ec9790eb8f8429, 'Y', '2011-01-19 00:30:33'),
(433, 15, 0xeca081eca088ed959c20ed95b8eb9494ecbaa1, 'Y', '2011-01-19 00:30:33'),
(436, 15, 0xeab09cec9b94, 'Y', '2011-01-19 00:30:33'),
(437, 15, 0xeca3bcec9a9420ec8b9ceab084, 'Y', '2011-01-19 00:30:33'),
(439, 15, 0xec9980, 'Y', '2011-01-19 00:37:23'),
(442, 15, 0xec9aa9, 'Y', '2011-01-19 00:37:23'),
(443, 15, 0x4669736368657220ec8b9ceab084, 'Y', '2011-01-19 00:37:23'),
(445, 15, 0xeab28cec9e8420ec9584ec9db4eb9494, 'Y', '2011-01-19 00:37:23'),
(446, 15, 0xec8389ec8381, 'Y', '2011-01-19 00:37:23'),
(447, 15, 0xeb8b88eab8b0eba6aceca688ec8b9c, 'Y', '2011-01-19 00:37:23'),
(449, 15, 0xec9dbcebb3b8ec96b4, 'Y', '2011-01-19 00:37:23'),
(450, 15, 0x257320ec9db4eb8f9920ebb08f20257320ecb694eab08020eab8b0eab08420eb8bb9, 'Y', '2011-01-19 00:37:23'),
(451, 15, 0xecba90eb8298eb8ba4, 'Y', '2011-01-19 00:37:23'),
(452, 15, 0x257320eb8bb920257320eb8f8c, 'Y', '2011-01-19 00:37:23'),
(453, 15, 0xec9db4eb8f9920ec9db8eb8bb920ecb694eab080, 'Y', '2011-01-19 00:37:23'),
(454, 15, 0xeca09cebb09c2c20eb8bb9ec8ba0ec9d9820ed95b8eb9494ecbaa120eb8f8c20ec9ea5ec868c21, 'Y', '2011-01-19 00:37:23'),
(455, 15, 0xeca09cecb69ced9598eab3a020eb8ba4ec9d8c20eab2bdeab8b0eba19c20ec9db4eb8f99, 'Y', '2011-01-19 00:37:23'),
(456, 15, 0xeca09cecb69c20ebb08f20ec8381ed839ceba19c20ec9db4eb8f99, 'Y', '2011-01-19 00:37:23'),
(457, 15, 0xeb8f8cec9584eab080, 'Y', '2011-01-19 00:37:23'),
(458, 15, 0xeca384ec8898, 'Y', '2011-01-19 00:41:40'),
(460, 15, 0xeb8ba4ec9d8c20ed8e98ec9db4eca780, 'Y', '2011-01-19 00:41:40'),
(461, 15, 0xec9db4eca08420ed8e98ec9db4eca780, 'Y', '2011-01-19 00:41:40'),
(462, 15, 0xecb694eab08020ec97b4, 'Y', '2011-01-19 00:41:40'),
(463, 15, '', 'Y', '2011-01-19 00:53:35'),
(464, 15, '', 'Y', '2011-01-19 00:53:35'),
(465, 15, '', 'Y', '2011-01-19 00:53:35'),
(466, 15, '', 'Y', '2011-01-19 00:53:35'),
(467, 15, '', 'Y', '2011-01-19 00:53:35'),
(468, 15, '', 'Y', '2011-01-19 00:53:35'),
(469, 15, '', 'Y', '2011-01-19 00:53:35'),
(470, 15, '', 'Y', '2011-01-19 00:53:35'),
(3187, 17, '', 'Y', '2013-08-21 00:42:54'),
(472, 15, '', 'Y', '2011-01-19 00:53:35'),
(473, 15, '', 'Y', '2011-01-19 00:53:35');
INSERT INTO `Translations` (`Original_ID`, `Language_ID`, `Text`, `Translated`, `Updated`) VALUES
(474, 15, 0xed9689eb8f99ec9d98ec9db420ec9ca0ed9895eab1b0eb829820ec958c20ec8898ec9e88eb8a9420eab28cec9e84ec9db420ec8381ed839cec9790ec849c20ec82acec9aa9ed95a020ec889820ec9786ec8ab5eb8b88eb8ba42e, 'Y', '2011-01-19 00:41:40'),
(475, 15, 0xecbd94ebafb8ec96b420eca28020eb8d9420ed95a9eba6aceca081ec9db820eab080ecb998eba5bc20ec84a0ed839ded9598ec8badec8b9cec98a420ebb294ec9c8420ebb096ec9e85eb8b88eb8ba42e, 'Y', '2011-01-19 00:41:40'),
(476, 15, 0xec98a4eba598eab080ec9db420ec9db4eb8f99ed9598eab8b020ec9c84ed95b420ebb09cec839ded9688ec8ab5eb8b88eb8ba42e20ebb3b4ed86b520eb8bb9ec8ba0ec9db420eab7b8eba087eca78020ec958aec9cbceba9b420eca780ec9b90ed8c80ec979020ebacb8ec9d98ed9598ec8badec8b9cec98a42c20eb8ba4ec8b9c20ec8b9ceb8f84ed9598eb8a9420eab2bdec9ab020ec9e91eb8f99ed95a9eb8b88eb8ba42e, 'Y', '2011-01-19 00:41:40'),
(477, 15, 0xec9ea5ec95a0ec9db820eb8f8c20ec8898eab08020ec9e98ebaabbeb9098ec9788ec8ab5eb8b88eb8ba4, 'Y', '2011-01-19 00:41:40'),
(478, 15, '', 'Y', '2011-01-19 00:53:35'),
(479, 15, '', 'Y', '2011-01-19 00:53:35'),
(484, 15, '', 'Y', '2011-01-19 00:53:35'),
(485, 15, '', 'Y', '2011-01-19 00:53:35'),
(486, 15, '', 'Y', '2011-01-19 00:53:35'),
(487, 15, '', 'Y', '2011-01-19 00:53:35'),
(488, 15, '', 'Y', '2011-01-19 00:53:35'),
(489, 15, '', 'Y', '2011-01-19 00:53:35'),
(490, 15, '', 'Y', '2011-01-19 00:53:35'),
(491, 15, '', 'Y', '2011-01-19 00:53:35'),
(492, 15, '', 'Y', '2011-01-19 00:53:35'),
(1558, 7, 0x567974766ff8656e6f, 'Y', '2016-07-20 16:20:15'),
(494, 15, 0xec82acec9aa9ec9e9020eca095ebb3b4ec979020eb8c80ed959c202573, 'Y', '2011-01-19 00:42:44'),
(495, 15, '', 'Y', '2011-01-19 00:53:35'),
(496, 15, '', 'Y', '2011-01-19 00:53:35'),
(497, 15, '', 'Y', '2011-01-19 00:53:35'),
(498, 15, '', 'Y', '2011-01-19 00:53:35'),
(499, 15, '', 'Y', '2011-01-19 00:53:35'),
(500, 15, '', 'Y', '2011-01-19 00:53:35'),
(501, 15, 0xeb939ceb9e98eab3a420ec82acec9aa9ec9e9020ebb08f20ec82acec9aa9ec9e9020ed9484eba19ced9584, 'N', '2011-01-19 00:45:08'),
(502, 15, 0xebaa8720eab080eca78020ec9dbcebb098eca081ec9db820ebb094eb919120ec9aa9ec96b4, 'Y', '2011-01-19 00:45:08'),
(503, 15, 0xec97aceb9fac20eab080eca78020ec9ea1eb8ba4ed959c, 'Y', '2011-01-19 00:45:08'),
(504, 15, 0xebb094eb919120eab79cecb999, 'Y', '2011-01-19 00:45:08'),
(505, 15, '', 'Y', '2011-01-19 00:53:35'),
(506, 15, '', 'Y', '2011-01-19 00:53:35'),
(507, 15, '', 'Y', '2011-01-19 00:53:35'),
(508, 15, '', 'Y', '2011-01-19 00:53:35'),
(509, 15, '', 'Y', '2011-01-19 00:53:35'),
(510, 15, '', 'Y', '2011-01-19 00:53:35'),
(511, 15, '', 'Y', '2011-01-19 00:53:35'),
(512, 15, '', 'Y', '2011-01-19 00:53:35'),
(513, 15, '', 'Y', '2011-01-19 00:53:35'),
(514, 15, '', 'Y', '2011-01-19 00:53:35'),
(515, 15, '', 'Y', '2011-01-19 00:53:35'),
(518, 15, '', 'N', '2011-01-19 00:53:35'),
(519, 15, '', 'N', '2011-01-19 00:53:35'),
(522, 15, '', 'Y', '2011-01-19 00:53:35'),
(523, 15, '', 'Y', '2011-01-19 00:53:35'),
(525, 15, '', 'Y', '2011-01-19 00:53:35'),
(526, 15, '', 'N', '2011-01-19 00:53:35'),
(529, 15, '', 'Y', '2011-01-19 00:53:35'),
(530, 15, '', 'Y', '2011-01-19 00:53:35'),
(531, 15, '', 'Y', '2011-01-19 00:53:35'),
(532, 15, '', 'Y', '2011-01-19 00:53:35'),
(533, 15, '', 'Y', '2011-01-19 00:53:35'),
(534, 15, '', 'Y', '2011-01-19 00:53:35'),
(535, 15, '', 'Y', '2011-01-19 00:53:35'),
(536, 15, '', 'Y', '2011-01-19 00:53:35'),
(715, 15, 0xed8e98ec9db4eca78020ec8b9ceab084, 'Y', '2011-01-19 00:52:24'),
(5785, 40, 0x25732076656e63656d20706f7220646573697374ea6e636961, 'Y', '2014-04-13 17:43:02'),
(3171, 40, 0x4dfa6c7469706c61, 'Y', '2014-04-11 14:07:57'),
(719, 15, 0x257320ec8ab9eba6ac20252e3166, 'Y', '2011-01-19 00:52:24'),
(722, 15, 0xed8fb4eb8d94, 'Y', '2011-01-19 00:52:24'),
(732, 15, 0xed9cb4eab08020ec9dbc20ec99bcecaabd, 'Y', '2011-01-19 00:52:24'),
(733, 15, 0xed9cb4eab080, 'Y', '2011-01-19 00:52:24'),
(747, 15, 0xebaaa8eb93a020ec97b4, 'Y', '2011-01-19 00:52:24'),
(755, 15, 0xec849cebb28420eba994ec8b9ceca780, 'Y', '2011-01-19 00:52:24'),
(1055, 15, 0xec8381ed839c2052535320ed94bceb939c, 'Y', '2011-01-19 00:52:24'),
(1059, 15, 0xebb3b4eab8b0, 'Y', '2011-01-19 00:52:24'),
(1060, 15, 0xec88a8eab8b0eab8b0, 'Y', '2011-01-19 00:52:24'),
(1091, 15, 0xeb82a8ec9d8020ec8b9ceab084, 'Y', '2011-01-19 00:52:24'),
(1125, 15, 0xeca285eba598, 'Y', '2011-01-19 00:52:24'),
(1275, 15, '', 'Y', '2011-01-19 00:53:35'),
(1276, 15, '', 'Y', '2011-01-19 00:53:35'),
(1277, 15, '', 'Y', '2011-01-19 00:53:35'),
(1378, 15, 0xec97b0eb9dbdecb298, 'Y', '2011-01-19 00:52:24'),
(1415, 15, '', 'Y', '2011-01-19 00:53:35'),
(1416, 15, '', 'Y', '2011-01-19 00:53:35'),
(1429, 15, '', 'Y', '2011-01-19 00:53:35'),
(1430, 15, '', 'Y', '2011-01-19 00:53:35'),
(1433, 15, '', 'Y', '2011-01-19 00:53:35'),
(1274, 15, '', 'Y', '2011-01-19 00:53:35'),
(1435, 15, '', 'Y', '2011-01-19 00:53:35'),
(1437, 15, '', 'Y', '2011-01-19 00:53:35'),
(1438, 15, '', 'Y', '2011-01-19 00:53:35'),
(1439, 15, '', 'Y', '2011-01-19 00:53:35'),
(1440, 15, '', 'Y', '2011-01-19 00:53:35'),
(1443, 15, '', 'Y', '2011-01-19 00:53:35'),
(1444, 15, '', 'Y', '2011-01-19 00:53:35'),
(1475, 15, '', 'Y', '2011-01-19 00:53:35'),
(1520, 15, '', 'Y', '2011-01-19 00:53:35'),
(1521, 15, 0xed919cec8b9c20ed9689, 'Y', '2011-01-19 00:53:35'),
(1606, 15, '', 'Y', '2011-01-19 00:53:35'),
(1607, 15, '', 'Y', '2011-01-19 00:53:35'),
(1609, 15, '', 'Y', '2011-01-19 00:53:35'),
(1610, 15, '', 'Y', '2011-01-19 00:53:35'),
(1611, 15, '', 'Y', '2011-01-19 00:53:35'),
(1612, 15, '', 'Y', '2011-01-19 00:53:35'),
(1613, 15, '', 'Y', '2011-01-19 00:53:35'),
(1614, 15, '', 'Y', '2011-01-19 00:53:35'),
(1617, 15, '', 'Y', '2011-01-19 00:53:35'),
(1618, 15, '', 'Y', '2011-01-19 00:53:35'),
(1619, 15, '', 'Y', '2011-01-19 00:53:35'),
(1620, 15, '', 'Y', '2011-01-19 00:53:35'),
(1621, 15, '', 'Y', '2011-01-19 00:53:35'),
(1622, 15, '', 'Y', '2011-01-19 00:53:35'),
(1623, 15, '', 'Y', '2011-01-19 00:53:35'),
(1283, 16, 0xdf20e2f1f2f0e5f2e8ebf1ff20f120f2e5f0ece8edeeec20e3ee2c20eaeef2eef0fbe920ede520f3eae0e7e0ed20e220d7e0c2ee2e20d7f2ee20eeed20eee1eee7ede0f7e0e5f23f, 'Y', '2011-02-03 09:45:27'),
(1284, 16, 0xd7e0c2ee20447261676f6e27e0202d20ede520e8f1f7e5f0effbe2e0fef9e8e920f1ebeee2e0f0fc20f2e5f0ece8edeee220e3ee2e20c7e4e5f1fc20eee1fafff1ede5edfb20f2eeebfceaee20ede0e8e1eeebe5e520f7e0f1f2ee20e2f1f2f0e5f7e0fef9e8e5f1ff20f2e5f0ece8edfb2e200d0a0d0ac22022c1e8e1ebe8eef2e5eae520f1e5edf1e5ff2220eceee6edee20ede0e9f2e820eee1fab8ecedfbe920f1efe8f1eeea203c6120687265663d22687474703a2f2f73656e736569732e786d702e6e65742f3f476f5465726d73223ef2e5f0ece8edeee220e3ee3c2f613e2e0d0a0d0ac4f0f3e3e8e520efeeebe5e7edfbe520f1f1fbebeae820e2fb20eceee6e5f2e520ede0e9f2e820e220f0e0e7e4e5ebe520cee1f9e5e920e8edf4eef0ece0f6e8e820ede0203c686f6d65206c696e6b732e7068703ef1f2f0e0ede8f6e520f1f1fbebeeea3c2f686f6d653e2e0d0a0d0ad0e0e7f3ece5e5f2f1ff2c20e2fb20eceee6e5f2e520e7e0e4e0e2e0f2fc20e2eeeff0eef1fb20ede0203c686f6d6520666f72756d2f6c6973742e7068703f666f72756d3d353ef4eef0f3ece520eee1f1f3e6e4e5ede8e920e3ee3c2f686f6d653e2e, 'Y', '2012-09-23 20:59:19'),
(1285, 16, 0xd7f2ee20e1f3e4e5f220f120eceee8ec20f0e5e9f2e8ede3eeec20e220f0e5e7f3ebfcf2e0f2e520ede8f7fce5e92028e4e7e8e3ee293f, 'Y', '2011-02-03 09:45:27'),
(1286, 16, 0xcaeee3e4e020eee1e020e8e3f0eeeae020ede0e1e8f0e0fef220f0e0e2edeee520eaeeebe8f7e5f1f2e2ee20eef7eaeee22c20f7f2ee20e2eee7eceee6edee20eff0e820e8f1efeeebfce7eee2e0ede8e820f6e5ebeee3ee20e7ede0f7e5ede8ff20eaeeece82c20e8e3f0e020e7e0eae0edf7e8e2e0e5f2f1ff20ede8f7fce5e920283c686f6d65206661712e7068703f726561643d74266361743d3323456e7472793234303ee4e7e8e3ee3c2f686f6d653e292e20c220fdf2eeec20f1ebf3f7e0e520e2eee7e4e5e9f1f2e2e8e520f0e5e7f3ebfcf2e0f2e020e8e3f0fb20ede020f0e5e9f2e8ede3e820e8e3f0eeeaeee220eee4e8ede0eaeee2ee2e0d0a0d0ac5f1ebe820ede0f7e0ebfcede0ff20f0e0e7edeef1f2fc20f0e5e9f2e8ede3eee220edf3ebe5e2e0ff2c20e8e7ece5ede5ede8ff20f0e5e9f2e8ede3eee220ede520eff0eee8f1f5eee4e8f22028eee1e020f0e5e9f2e8ede3e020ece5edfffef2f1ff20ede0202b302c3030292e0d0a0d0acee4ede0eaee20e5f1ebe820f0e0e7ede8f6e020e220f0e5e9f2e8ede3e0f520eef2ebe8f7ede020eef220edf3ebff2c20ede0eff0e8ece5f02c20eaeee3e4e020e8e3f0eeea203120e4e0ede020e8e3f0e0e5f220f120313020eafe20ede020f0e0e2edfbf520e8ebe820ece5ede5e520f7e5ec20f1203920eae0ecedffece820f4eef0fb20e820eee1fbf7edfbec20eaeeece82c20f2eee3e4e020e820e2ebe8ffede8e520ede8f7fce5e920ede020f0e5e9f2e8ede3e820e1f3e4e5f220f0e0e7ebe8f7edfbec2e20cae0ea20e820e220f1ebf3f7e0e520efeee1e5e4fb2c20e220f0e5e7f3ebfcf2e0f2e520ede8f7fce5e920f0e5e9f2e8ede320e1eeebe5e520f1ebe0e1eee3ee20e8e3f0eeeae020f3e2e5ebe8f7e8e2e0e5f2f1ff2c20e020f0e5e9f2e8ede320e1eeebe5e520f1e8ebfcedeee3ee202d20f3ece5edfcf8e0e5f2f1ff2c20edee20e2e5ebe8f7e8ede020e8e7ece5ede5ede8ff20f0e5e9f2e8ede3eee220ece5edfcf8e52c20f7e5ec20e220f1ebf3f7e0e52c20e5f1ebe820e1fb20f1ebe0e1e5e9f8e8e920e8e3f0eeea20efeee1e5e4e8eb2e, 'Y', '2011-02-03 09:45:27'),
(1038, 16, 0xcceee3f320ebe820ff20efeeebfce7eee2e0f2fcf1ff20efeef1f2eef0eeedede5e920efeeeceef9fcfe2c20f7f2eee1fb20e8e3f0e0f2fc20f1e8ebfcede5e53f, 'Y', '2011-02-03 10:27:31'),
(1039, 16, 0xcfe5f0e5e420f2e5ec20eae0ea20e2fb20eff0eee4eeebe6e8f2e520e7ede0eaeeece8f2fcf1ff20f120e4e0ededfbec20f0e0e7e4e5ebeeec2c20f1efe5f0e2e020eff0eef7f2e8f2e520e1eeebe5e520eee1f9f3fe20e8edf4eef0ece0f6e8fe20efee20fdf2eeecf320e2eeeff0eef1f320e220f0e0e7e4e5ebe520d7e0c2ee3a0d0a3c756c3e0d0a3c6c693e3c686f6d65206661712e7068703f726561643d74266361743d313523456e7472793239383ecceee3f320ebe820ff20efeeebfce7eee2e0f2fcf1ff20e2f1efeeeceee3e0f2e5ebfcedfbece820f1f0e5e4f1f2e2e0ece820e2ee20e2f0e5ecff20e8e3f0fb3f3c2f686f6d653e0d0a3c2f756c3e0d0a0d0ad7f2e5ede8e520eaede8e32c20f0e5f8e5ede8e520e7e0e4e0f720efee20e3ee2c20e8e3f0e020eff0eef2e8e220eaeeeceffcfef2e5f0e02c20e020f2e0eae6e520eee1f1f3e6e4e5ede8e520efe0f0f2e8e920f120e4f0f3e3e8ece820e8e3f0eeeae0ece820e220eee1f9e5ec20e2f1e5f6e5ebee20efeeeef9f0fffef2f1ff2e20cae0ea20efeeeae0e7fbe2e0fef220eee1f1f3e6e4e5ede8ff20ede020f4eef0f3ece52c20ecedeee3e8e52028e2eee7eceee6edee2c20e2f1e52920e8e3f0eeeae820efeeebfce7f3fef2f1ff20efee20eaf0e0e9ede5e920ece5f0e520eee4edeee920e8e720e2fbf8e5f3eae0e7e0ededfbf520e2eee7eceee6edeef1f2e5e92e20cee4ede0eaee20ede5eaeef2eef0fbe520e8e3f0eeeae820eceee3f3f220e2eee7f0e0e6e0f2fc20eff0eef2e8e220e8f1efeeebfce7eee2e0ede8ff20eee4edeee3ee2c20ede5eaeef2eef0fbf520e8ebe820e2f1e5f520fdf2e8f520f1f0e5e4f1f2e220e220eff0e8ece5ede5ede8e820ea20f2e5eaf3f9e5e920efe0f0f2e8e820f120ede8ece82e20c7e0ece5f7e0ede8ff20efee20fdf2eeecf320e2eeeff0eef1f320f1ec2e20e4e0ebe5e52e0d0a0d0accedeee3e8e520e8e3f0eeeae820f1f7e8f2e0fef220ede5eaeef0f0e5eaf2edfbec20eee1f1f3e6e4e5ede8e520f120efeef1f2eef0eeedede8ece820efe0f0f2e8e82c20eaeef2eef0e0ff20e5f9b820ede520e4eee8e3f0e0ede02e20c4f0f3e3e8e520ede520e2eee7f0e0e6e0fef220eff0eef2e8e220fdf2eee3ee2c20eef1eee1e5ededee20e5f1ebe820eeefefeeede5edf2202d20f1ebe0e1fbe920e8e3f0eeea2e20cce0ebee20eaf2ee20e2eee7f0e0e7e8f220eff0eef2e8e220e8f1efeeebfce7eee2e0ede8ff20e2ee20e2f0e5ecff20e8e3f0fb20eaede8e320ebe8e1ee20f0e5e4e0eaf2eef0e0205347462e20c2fbe1eef020f5eee4eee220e2ece5f1f2ee20e2e0f120eff0eee3f0e0ececeee920e2fbe7e2e0eb20e1fb20ede5eee4eee1f0e8f2e5ebfcedf3fe20f0e5e0eaf6e8fe20f320ede5eaeef2eef0fbf520e8e3f0eeeaeee22c20f2eee3e4e020eae0ea20e4f0f3e3e8f520e1fb20fdf2ee20ede520eee1e5f1efeeeaeee8ebee2e20c4f0f3e3e8ec20f1f0e5e4f1f2e2eeec20ffe2ebffe5f2f1ff20e8f1efeeebfce7eee2e0ede8e520eaeeeceffcfef2e5f0e020e4ebff20ebf3f7f8e5e3ee20efeeede8ece0ede8ff20e2e0f0e8e0edf2eee220f120efeef1ebe5e4f3fef9e8ec20f1e0eceef1f2eefff2e5ebfcedfbec20e2fbe1eef0eeec20f5eee4e02c20edee20ede5eaeef2eef0fbec20e8e3f0eeeae0ec20e820fdf2ee20ede520efeeeae0e6e5f2f1ff20eff0e8e5ecebe5ecfbec2e0d0a0d0accedeee3e8e520e8e3f0eeeae820e7e0ede8ece0fef220f0e5f8e8f2e5ebfcedf3fe20efeee7e8f6e8fe20e220fdf2eeec20e2eeeff0eef1e52e20d320e4f0f3e3e8f520eeede020eef2ebe8f7e0e5f2f1ff20e220e7e0e2e8f1e8eceef1f2e820eef220f2eee3ee2c20f0e5e9f2e8ede3eee2e0ff20efe0f0f2e8ff2c20e8ebe820ede5f22c20e8ebe820e6e520eeede020ffe2ebffe5f2f1ff20fdf2e0efeeec20f2f3f0ede8f0e02e20c220f1ebf3f7e0e520ede5f0e5e9f2e8ede3eee2eee920f3f7e5e1edeee920efe0f0f2e8e820eaeeedf1f3ebfcf2e0f6e8ff20f120f0e0e7edeeeee1f0e0e7edfbece820e8f1f2eef7ede8eae0ece820efeeeceef9e820e220eff0eef6e5f1f1e520e8e3f0fb20eceee6e5f220e4e0e6e520efeeeef9f0fff2fcf1ff2e0d0a0d0ac5f1ebe820e2fb20f1eee1e8f0e0e5f2e5f1fc20e2eef1efeeebfce7eee2e0f2fcf1ff20eaeeeceffcfef2e5f0eeec20e8ebe820eaeeedf1f3ebfcf2e8f0eee2e0f2fcf1ff20f320e4f0f3e3e8f520e8e3f0eeeaeee220efee20efeee2eee4f320f2eee3ee2c20eae0ea20efeef5eee4e8f2fc20e220e4e0ededeeec20efe0f0f2e8e82c20e6e5ebe0f2e5ebfcedee20f3e2e5e4eeece8f2fc20eee120fdf2eeec20eff0e5e4efeeebe0e3e0e5eceee3ee20eff0eef2e8e2ede8eae020e7e0f0e0ede5e52c20f2e0ea20eae0ea20eeed20eceee6e5f220ede520e7e0f5eef2e5f2fc20e8e3f0e0f2fc20ede020f2e0eae8f520f3f1ebeee2e8fff52e20c5f1ebe820e2fb20ede520e4eee3eee2eef0e8ebe8f1fc20e7e0f0e0ede5e520e820f5eef2e5ebe820e1fb20e2eef1efeeebfce7eee2e0f2fcf1ff20eaeeeceffcfef2e5f0eeec20ebe8e1ee20eff0eeeaeeedf1f3ebfcf2e8f0eee2e0f2fcf1ff20f120eae5ec2df2ee20f3e6e520e2ee20e2f0e5ecff20e8e3f0fb2c20ebf3f7f8e520f1eff0eef1e8f2fc2c20ede520e2eee7f0e0e6e0e5f220ebe820e2e0f820eeefefeeede5edf22c20eff0e5e6e4e520f7e5ec20e4e5ebe0f2fc20fdf2ee2e20c5f1ebe820e2e0f820eeefefeeede5edf220e2eee7f0e0e7e8f22c20eff0e8edf6e8ef20f7e5f1f2edeee920e8e3f0fb20eff0e5e4efe8f1fbe2e0e5f220eff0eee4eeebe6e8f2fc20e8e3f0f320e1e5e720f2e0eaeee920efeeeceef9e82c20f2e0ea20eae0ea20eeefefeeede5edf220ede520e7ede0eb20ee20e2e0f8e8f520ede0ece5f0e5ede8fff52c20eaeee3e4e020f1eee3ebe0f8e0ebf1ff20ede020efe0f0f2e8fe2e0d0a0d0a3c693ecff0e820f0e0e7edeeeee1f0e0e7e8e820e2e7e3ebffe4eee220ede020f2ee2c20eae0eae8e520e2f1efeeeceee3e0f2e5ebfcedfbe520f1f0e5e4f1f2e2e020eaeef0f0e5eaf2edee20e8f1efeeebfce7eee2e0f2fc20e2ee20e2f0e5ecff20e8e3f0fb2028f3f7e8f2fbe2e0ff20e2e0f0e8e0edf22022ede8eae0eae8e522292c20eee1f9e5eff0e8e7ede0ededfbec20ffe2ebffe5f2f1ff20ecede5ede8e52c20f7f2ee20e2fb20ede520f1eceee6e5f2e520f1eee2e5f0f8e5edf1f2e2eee2e0f2fcf1ff2c20e5f1ebe820ede520efeee9ece5f2e520e820ede520e1f3e4e5f2e520f1e0ece820e2fbe1e8f0e0f2fc20f1eee1f1f2e2e5ededfbe520f5eee4fb2e3c2f693e0d0a0d0accedeee3eee520e8e720fdf2eee3ee20eeeff0e5e4e5ebffe5f2f1ff20eee1fbf7e0e5ec20e820eff0e0eaf2e8eaeee92c20eaf3ebfcf2f3f0eee920e820e8ede4e8e2e8e4f3e0ebfcedfbec20e2eef1eff0e8fff2e8e5ec20e8e3f0eeeaeee23a20f7f2ee20eff0e8e5ecebe5ecee2c20e020f7f2ee20ede5f22e0d0a0d0acee4ede0eaee20e220e8edf2e5f0e5f1e0f520f7e5f1f2edeee920e8e3f0fb20ecfb20eff0eef1e8ec20e2e0f120f0f3eaeee2eee4f1f2e2eee2e0f2fcf1ff20eff0e8edf6e8efe0ece82c20eeefe8f1e0ededfbece820e220f0e0e7e4e5ebe50d0a3c756c3e0d0a3c6c693e3c693e3c686f6d65206661712e7068703f726561643d74266361743d313523456e7472793239383ecceee3f320ebe820ff20efeeebfce7eee2e0f2fcf1ff20e2f1efeeeceee3e0f2e5ebfcedfbece820f1f0e5e4f1f2e2e0ece820e2ee20e2f0e5ecff20e8e3f0fb3f3c2f686f6d653e3c2f693e2c0d0a3c2f756c3e0d0a0d0ae020e5f1ebe820e2fb20f5eef2e8f2e520eef2eaebeeede8f2fcf1ff20eef220ede8f52c20e4eee3eee2e0f0e8e2e0f2fcf1ff20eee120eef2ebe8f7edfbf520eff0e0e2e8ebe0f520f1ee20f1e2eee8ece820eeefefeeede5edf2e0ece820e4ee20ede0f7e0ebe020efe0f0f2e8e82e0d0a0d0acde5eaeef2eef0fbe520e8e3f0eeeae820f3eae0e7fbe2e0fef220e220f1e2eee8f520c0edeae5f2e0f52c20eae0eae8ece820e2f1efeeeceee3e0f2e5ebfcedfbece820f1f0e5e4f1f2e2e0ece820eeede820efeeebfce7f3fef2f1ff2c20e820eae0eaeee3ee20efeee4f5eee4e020eeede820eee6e8e4e0fef220eef220e4f0f3e3e8f520e8e3f0eeeaeee22e0d0a0d0ac5f1ebe820fdf2eef220e2eeeff0eef120e7e0e8edf2e5f0e5f1eee2e0eb20e2e0f12c20e2fb20eceee6e5f2e520f2e0eae6e520eff0eef1ebe5e4e8f2fc20e7e020ede5eaeef2eef0fbece820eee1f1f3e6e4e5ede8ffece820ede020d4eef0f3ece52c20f1efe8f1eeea20eaeef2eef0fbf520ede0f5eee4e8f2f1ff20efee20f1ebe5e4f3fef9e5ecf320e0e4f0e5f1f320ede020f1f2f0e0ede8f6e52c20efeef1e2fff9e5ededeee920fdf2eee920e6e520f2e5ece53a0d0a3c756c3e0d0a3c6c693e3c686f6d6520666f72756d2f726561642e7068703f666f72756d3d32267468726561643d33303931352333303934303ec8f1efeeebfce7eee2e0ede8e520eaede8e320e820e1e0e720e4e0ededfbf53c2f686f6d653e0d0a3c2f756c3e, 'Y', '2012-07-08 21:41:28'),
(1042, 16, 0xcae0ea20ecede520e2fbe9f2e820f120447261676f6e27e03f, 'Y', '2011-02-03 10:27:31'),
(1043, 16, 0xcaebe8eaede8f2e520efee20f1f1fbebeae52022cfeeeae8edf3f2fc20f1e5f0e2e5f02220e220eff0e0e2eeec20ede8e6ede5ec20f3e3ebf320f1f2f0e0ede8f6fb2e20c5f1ebe820e2fb20e220f2e5f7e5ede8e520333020e4ede5e920ede520e1f3e4e5f2e520eff0eef1ece0f2f0e8e2e0f2fc20f1f2f0e0ede8f6fb20e820e4e5ebe0f2fc20f5eee4fb20ede020447261676f6e27e52c20f0e5e3e8f1f2f0e0f6e8eeededfbe520eaf3eae820e220e1f0e0f3e7e5f0e520f3f1f2e0f0e5fef220e820fdf2ee20e4e0f1f220f2eef220e6e520fdf4f4e5eaf22c20f7f2ee20e820e2fbf5eee42e, 'Y', '2011-02-03 10:27:31'),
(1158, 16, 0xc4ebff20f7e5e3ee20edf3e6edfb20eaf3eae83f, 'Y', '2011-02-03 10:27:31'),
(1159, 16, 0xd0e5e3e8f1f2f0e0f6e8eeededfbe520eaf3eae820edf3e6edfb20e4ebff20f0e0f1efeee7ede0e2e0ede8ff20efeeebfce7eee2e0f2e5ebff20f1e5f0e2e5f0eeec2e2044475320e8f1efeeebfce7f3e5f220eaf3eae82c20eef2eff0e0e2ebffe5ecfbe520e2e0f8e8ec20e1f0e0f3e7e5f0eeec2c20f7f2eee1fb20eeeff0e5e4e5ebfff2fc2c20eaf2ee20eee1f0e0f9e0e5f2f1ff20ea20e5e3ee20f1f2f0e0ede8f6e0ec2e, 'Y', '2011-02-03 10:27:31'),
(1282, 16, 0xcfeee8f1ea20447261676f6e27e0, 'Y', '2011-02-03 10:27:31'),
(1005, 16, 0xd1fee4e020eff0e8f5eee4fff220f2e52c20eaf2ee20f5eef7e5f220efeeebf3f7e0f2fc20f3e4eee2eeebfcf1f2e2e8e520eef220eff0e5eaf0e0f1edeee920e8e3f0fb20e3ee2e20c220eee1f9e5ec20e820f6e5ebeeec2c20e1eeebfcf8e8edf1f2e2ee20efeeebfce7eee2e0f2e5ebe5e920fdf2eee3ee20f1e0e9f2e020e2e5e4f3f220f1e5e1ff20f1eeeef2e2e5f2f1f2e2f3fef9e8ec20eee1f0e0e7eeec20e820eff0e8f5eee4fff220f1fee4e02c20f7f2eee1fb20eff0e8fff2edee20eff0eee2e5f1f2e820e2f0e5ecff2e20d2e0ea20eae0ea20fdf2eef220f1e0e9f220eee1f9e5e4eef1f2f3efe5ed2c20eeed20edf3e6e4e0e5f2f1ff20e220eeeff0e5e4e5ebb8ededfbf520eff0e0e2e8ebe0f520efeee2e5e4e5ede8ff2e20d5eef2ff2c20e2eeeee1f9e52df2ee2c20fdf2ee20eef7e5edfc20e4f0f3e6e5ebfee1edeee520ece5f1f2ee20e820efeee4e0e2ebfffef9e5ecf320e1eeebfcf8e8edf1f2e2f320efeeebfce7eee2e0f2e5ebe5e92044475320ede8eaeee3e4e020ede520eff0e8e4b8f2f1ff20f7e8f2e0f2fc20fdf2eee3ee2e200d0a0d0acef1edeee2edfbe520eff0e0e2e8ebe020efeee2e5e4e5ede8ff20ede02044475320e8e7ebeee6e5edfb20e2203c686f6d6520706f6c6963792e7068703ecff0e0e2e8ebe0f520447261676f6e20476f205365727665723c2f686f6d653e2e200d0a0d0a44475320f1ebe5e4f3e5f220eee1f9e8ec203c687474703a2f2f7777772e616c62696f6e2e636f6d2f6e6574697175657474652f636f726572756c65732e68746d6c207ccff0e0e2e8ebe0ec20f1e5f2e5e2eee3ee20fdf2e8eae5f2e03e2e0d0a0d0acef220efeeebfce7eee2e0f2e5ebff2044475320eee6e8e4e0e5f2f1ff20efeee2e5e4e5ede8e52c20f1eeeef2e2e5f2f1f2e2f3fef9e5e520e8e7ebeee6e5ededeeecf320e2fbf8e52e20cfeee6e0ebf3e9f1f2e02c20efeeecede8f2e52c20f7f2ee20fdf2e8ec20f1e0e9f2eeec20efeeebfce7f3fef2f1ff20ebfee4e820f1e0ecfbf520f0e0e7edfbf520e2eee7f0e0f1f2eee220e820eaf3ebfcf2f3f02e20cae0e6e4fbe920efeeebfce7eee2e0f2e5ebfc20e8ece5e5f220eff0e0e2ee20ede020f2ee2c20f7f2eee1fb20ea20ede5ecf320eef2edeef1e8ebe8f1fc20f120e4eeebe6edfbec20f3e2e0e6e5ede8e5ec2e, 'Y', '2012-10-14 14:32:10'),
(1379, 16, 0xd1eae8ed, 'Y', '2012-10-14 14:40:00'),
(1390, 16, 0xe8e7ece5ede8f2e520f2eeebfceaee20efeef0ffe4eeea2c20e8e7ece5ede5ede8ff20e220f2e5eaf1f2e520ede5e2eee7eceee6edfb, 'Y', '2012-10-14 14:40:00'),
(1392, 16, 0xe2fbe1eef020e1eeebe5e520ede8e7eaeee3ee20e7ede0f7e5ede8ff20eee1ebe5e3f7e0e5f220f0e0e1eef2f320f1e5f0e2e5f0e02028f1ec2e20f2e0eae6e520d7e0c2ee29, 'Y', '2012-10-14 14:40:00'),
(1393, 16, 0xc8e7ece5ede8f2fc20e2ede5f8ede8e920e2e8e420f2eeebfceaee20e4ebff20fdf2eee3ee20e1f0e0f3e7e5f0e0, 'Y', '2012-10-14 14:40:00'),
(1471, 16, 0xc4eee1e0e2e8f2fc20edeee2fbe920eaeeedf2e0eaf2, 'Y', '2012-10-14 14:40:00'),
(1476, 16, 0xd0e5e4e0eaf2e8f0eee2e0f2fc20eaeeedf2e0eaf2, 'Y', '2012-10-14 14:40:00'),
(1477, 16, 0xc4eee1e0e2e8f2fc20eaeeedf2e0eaf2, 'Y', '2012-10-14 14:41:44'),
(1478, 16, 0xc0eaf2e8e2edfbe9, 'Y', '2012-10-14 14:41:44'),
(1540, 16, 0xcde5ebfce7ff20e4eee1e0e2e8f2fc20f1e5e1ff20eae0ea20eaeeedf2e0eaf2, 'Y', '2012-10-14 14:41:44'),
(1541, 16, 0xcde5e8e7e2e5f1f2edfbe920efeeebfce7eee2e0f2e5ebfc, 'Y', '2012-10-14 14:41:44'),
(1542, 16, 0xcaeeedf2e0eaf220f3e4e0ebb8ed21, 'Y', '2012-10-14 14:41:44'),
(1543, 16, 0xcaeeedf2e0eaf220f1eef5f0e0edb8ed21, 'Y', '2012-10-14 14:41:44'),
(1544, 16, 0xd3e4e0ebe5ede8e520eaeeedf2e0eaf2e0, 'Y', '2012-10-14 14:42:52'),
(1545, 16, 0xd0e5e4e0eaf2e8f0eee2e0ede8e520eaeeedf2e0eaf2e0, 'Y', '2012-10-14 14:42:52'),
(1394, 16, 0xc2e5f0edf3f2fcf1ff20ea20eee3ebe0e2ebe5ede8fe20d7e0c2ee, 'Y', '2011-02-03 11:20:19'),
(1741, 16, 0xcaeee3e4e020edeee2fbe920efeeebfce7eee2e0f2e5ebfc20f3eae0e7e0eb20e4ebff20f1e2eee5e3ee20ede0f7e0ebfcedeee3ee20f0e5e9f2e8ede3e020f2e8ef20226575726f726174696e672220e8ebe82022696773222c2044475320eff0eee8e7e2eee4e8f220efe5f0e5f1f7b8f220fdf2eee3ee20f0e5e9f2e8ede3e020e220f1e2eee92c20eef1edeee2fbe2e0fff1fc20ede020e8e7e2e5f1f2edfbf520f1eeeef2edeef8e5ede8fff520fdf2e8f520f0e5e9f2e8ede3eee22e20c220f0e5e7f3ebfcf2e0f2e520e2efeeebede520eceee6e5f220efeeebf3f7e8f2fcf1ff20ede5f6e5ebfbe920f0e5e9f2e8ede3204447532e, 'N', '2011-02-03 22:38:03'),
(1696, 16, 0xdf20e7e0e1ebeeeae8f0eee2e0ed20e820ede520eceee3f320e2eee9f2e820ede0204447532e20d7f2ee20e4e5ebe0f2fc3f, 'Y', '2011-02-05 15:04:23'),
(1284, 18, 0x4c652046415120646920447261676f6e206e6f6e20e820756e207665726f20652070726f7072696f2064697a696f6e6172696f2064692074757474692069207465726d696e6920476f2e20536f6c6f2069207465726d696e69207069f920636f6d756e656d656e74652075736174692020736f6e6f20636f70657274692e0d0a0d0a4c61206c696272657269612053656e73656920666f726e6973636520756e61206c69737461206d6f6c746f207574696c6520646569203c6120687265663d22687474703a2f2f73656e736569732e786d702e6e65742f3f476f5465726d73223e207465726d696e6920476f3c2f20613e2e0d0a0d0a416c747269206c696e6b207574696c6920736f6e6f206e656c6c612073657a696f6e6520496e666f726d617a696f6e692067656e6572616c692073756c6c61203c686f6d65206c696e6b732e7068703e20706167696e61204c696e6b733c2f20686f6d653e2e0d0a0d0a4e6f6e20657369746174652061206661726520646f6d616e6465206e656c20666f72756d203c686f6d6520666f72756d2f6c6973742e7068703f666f72756d3d353e20476f20466f72756d3c2f20686f6d653e2e, 'N', '2011-02-10 17:11:57'),
(1313, 18, 0x4e6f2e20496c203c6120687265663d22687474703a2f2f7777772e6c797361746f722e6c69752e73652f7e67756e6e61722f6774702f223e204754502028476f20546578742070726f746f636f6c29203c2f20613e206f7070757265203c612068726566203d2022687474703a2f2f7777772e62726974676f202e6f7267202f2074656368202f20676d702e68746d6c20223e20474d502028476f206d6f64656d2070726f746f636f6c29203c2f20613e206e6f6e20736f6e6f20737570706f727461746920646120447261676f6e2e0d0a0d0a54757474617669612c20e820706f73736962696c6520617665726520756e6f207367756172646f2073756c6c6520616c74726520696e746572666163636520285253532c205741502c20737569746520717569636b2d706c61792920666f726e69746920646120447261676f6e2c206368652076656e676f6e6f20646973637573736920696e207175657374612063617465676f726961203c686f6d6520696e7465726661636365206661712e7068703f726561643d74266361743d3231353e20616c7465726e617469766120737520447261676f6e200d0a3c2f20686f6d65203e2e, 'N', '2011-02-10 17:11:57'),
(1723, 16, 0xcceee6edee20ebe820f1eae0f7e0f2fc20efe0f0f2e8fe20e220e2e8e4e520f4e0e9ebe0205347463f, 'Y', '2011-02-19 12:50:04'),
(1044, 16, 0xddf2eef220f5eee420eff0e8e2eee4e8f220ea20ede5e4eeeff3f1f2e8eceee920efeee7e8f6e8e820ede020e4eef1eae52e, 'Y', '2011-02-19 13:02:46'),
(1045, 16, 0xcbe8ece8f220e2f0e5ece5ede820f1ebe8f8eaeeec20ece0eb2c20efeee6e0ebf3e9f1f2e02c20f3eae0e6e8f2e520efee20eaf0e0e9ede5e920ece5f0e520eee4e8ed20f7e0f12e, 'Y', '2011-02-19 13:02:46'),
(1046, 16, 0xc8e7e2e8ede8f2e52c20f320c2e0f120e2fbeaebfef7e5edfb20eaf3eae820e220e1f0e0f3e7e5f0e52e, 'Y', '2011-02-19 13:02:46'),
(1047, 16, 0xc8e7e2e8ede8f2e52c20fdf2eef220f5eee420f3e6e520e1fbeb20f1e4e5ebe0ed2e, 'Y', '2011-02-19 13:02:46'),
(1048, 16, 0xd1f2f0e0ede8f6e020ede520ede0e9e4e5ede02e20cfeee6e0ebf3e9f1f2e02c20f1e2ffe6e8f2e5f1fc20f120e0e4ece8ede8f1f2f0e0f2eef0e0ece820f1e5f0e2e5f0e020e820f1eeeee1f9e8f2e520e8ec20e2f0e5ecff2c20eaeee3e4e020eff0eee8e7eef8ebe020fdf2e020eef8e8e1eae020e820e2f1b82c20f7f2ee20e2fb20eceee6e5f2e520f1eae0e7e0f2fc20ee20eff0e8f7e8ede520eef8e8e1eae82e, 'Y', '2011-02-19 13:02:46'),
(1049, 16, 0xcff1e5e2e4eeede8ec20efeeebfce7eee2e0f2e5ebff20f1eee4e5f0e6e8f220ede5e4eeeff3f1f2e8ecfbe520f1e8ece2eeebfb2e20d2eeebfceaee20f1e8ece2eeebfb20612d7a2c20412d5a2c20302d3920e8202d5f2b20f0e0e7f0e5f8e5edfb20ea20e8f1efeeebfce7eee2e0ede8fe2c20eff0e8f7b8ec20efe5f0e2fbec20f1e8ece2eeebeeec20e4eeebe6e5ed20e1fbf2fc20eee4e8ed20e8e720612d7a20e8ebe820412d5a2e, 'Y', '2011-02-19 13:02:46'),
(1050, 16, 0xc8e7e2e8ede8f2e52c20ede520f3e4e0b8f2f1ff20ede0e9f2e820f1eeeee1f9e5ede8e52c20eaeef2eef0eee520e2fb20f5eef2e8f2e520efeeeae0e7e0f2fc2e, 'Y', '2011-02-19 13:02:46'),
(1051, 16, 0xc8e7e2e8ede8f2e52c20ede520ede0e9e4e5ed20ffe7fbea20e8ebe820e3f0f3efefe02c20eaeef2eef0fbe520e2fb20f5eef2e5ebe820efe5f0e5e2e5f1f2e82e20cee1f0e0f2e8f2e5f1fc20e220f1ebf3e6e1f320efeee4e4e5f0e6eae82e, 'Y', '2011-02-19 13:02:46'),
(1053, 16, 0xddf2eef220efeeebfce7eee2e0f2e5ebfc20f3e6e520ffe2ebffe5f2f1ff20e0e4ece8ede8f1f2f0e0f2eef0eeec2e, 'Y', '2011-02-19 13:02:46'),
(979, 16, 0xc2f1e520ebe820eef8e8e1eae820eeefe8f1e0edfb20e220d7e0c2ee3f, 'Y', '2011-03-01 09:19:25'),
(980, 16, 0xcde5f22e20c820ede520e1f3e4f3f220eeefe8f1e0edfb2e20c7e4e5f1fc20f3efeeecffedf3f2fb20eef8e8e1eae820e820eff0eee1ebe5ecfb2c20eaeef2eef0fbe520f1e2ffe7e0edfb20f120f5eef0eef8ee20e8e7e2e5f1f2edfbece820efeee2f2eef0fffef9e8ece8f1ff20e8ebe820efeef1f2eeffededfbece820ede5e8f1eff0e0e2edeef1f2ffece82c20eaeef2eef0fbe520e1fbebe820f3e6e520e2f1e5f1f2eef0eeedede520e820ecedeee3eeeaf0e0f2edee20eee1f1f3e6e4e5edfb20ede020f4eef0f3ece0f52e20cef8e8e1eae820e1f3e4f3f220e8f1eff0e0e2ebfff2fcf1ff20283c693ee2eee7eceee6edee2c20f120e2ede5f1e5ede8e5ec20e4f0f3e3e8f520eef8e8e1eeea3f3c2f693e292c20edee2c20e220f2ee20e6e520e2f0e5ecff2c20ede5eaeef2eef0fbe520e8e720ede8f520e1f3e4f3f220f3efeeece8ede0f2fcf1ff20e7e4e5f1fc2e, 'Y', '2011-03-01 09:19:25'),
(981, 16, 0xcae0eae8e520f1eeeee1f9e5ede8ff20efeee4e4e5f0e6e8e2e0fef2f1ff20447261676f6e27eeec3f, 'N', '2011-03-01 09:19:25'),
(982, 16, 0xc8e3f0eeeae820eceee3f3f220e2e7e0e8eceee4e5e9f1f2e2eee2e0f2fc20f0e0e7ebe8f7edfbece820f1efeef1eee1e0ece82c20e220f2eeec20f7e8f1ebe53a200d0a0d0a3c554c3e0d0a3c6c693eeef2eff0e0e2ebfff2fc20ebe8f7edfbe520f1eeeee1f9e5ede8ff2c0d0a3c6c693ef0e0e7ece5f9e0f2fc20eee1f0e0f9e5ede8ff20eaee20ecedeee3e8ec20efeeebfce7eee2e0f2e5ebffec20ede0203c686f6d6520666f72756d2f3ef4eef0f3ece53c2f686f6d653e2c0d0a3c6c693ee4eee1e0e2ebfff2fc203c686f6d65206661712e7068703f726561643d74266361743d33363523456e74727937353eeaeeecece5edf2e0f0e8e83c2f686f6d653e20ea20f2e5eaf3f9e8ec20e8e3f0e0ec2e0d0a3c2f554c3e, 'N', '2011-03-01 09:19:25'),
(983, 16, 0xd7f2ee20f2e0eaeee520efe0efeae820f1eeeee1f9e5ede8e920e820e7e0f7e5ec20eeede83f, 'Y', '2011-03-01 09:19:25'),
(984, 16, 0xcfe0efeae820f1eeeee1f9e5ede8e920efeee7e2eeebfffef220e2e0ec20f0e0f1f1eef0f2e8f0eee2fbe2e0f2fc20f1eeeee1f9e5ede8ff20e220f1eeeef2e2e5f2f1f2e2e8e820f120e2e0f8e8ece820efeef2f0e5e1edeef1f2ffece82e20c2fb20eceee6e5f2e520efe5f0e5ece5f9e0f2fc20f1eeeee1f9e5ede8ff20e8e720efe0efeae820e220efe0efeaf32c20e5f1ebe820e2e0ec20fdf2ee20edf3e6edee2e200d0a0d0a447261676f6e20eff0e5e4eef1f2e0e2ebffe5f220efee20f3eceeebf7e0ede8fe20f1ebe5e4f3fef9e8e520efe0efeae820f1eeeee1f9e5ede8e93a0d0a0d0a3c756c3e0d0a3c6c693e3c623ecfeeebf3f7e5edfb3c2f623e3a20c2f1e520e2f5eee4fff9e8e520f1eeeee1f9e5ede8ff2e0d0a3c6c693e3c623ec3ebe0e2ede0ff3c2f623e3a20cff0eef7e8f2e0ededfbe520e2f5eee4fff9e8e520f1eeeee1f9e5ede8ff2e0d0a3c6c693e3c623ecdeee2eee53c2f623e3a20cde5eff0eef7e8f2e0ededfbe520e2f5eee4fff9e8e520f1eeeee1f9e5ede8ff2e0d0a3c6c693e3c623ecef2e2e5f2e8f2fc213c2f623e3a20d1efe8f1eeea20f1eeeee1f9e5ede8e92c20f2f0e5e1f3fef9e8f520eef2e2e5f2e02e0d0a3c6c693e3c623ed3e4e0ebe5edfb3c2f623e3a20d1eeeee1f9e5ede8ff2c20efeeece5f7e5ededfbe520e4ebff20f3e4e0ebe5ede8ff2e0d0a3c6c693e3c623ecef2eef1ebe0edfb3c2f623e3a20cef2eff0e0e2ebe5ededfbe520f1eeeee1f9e5ede8ff2e0d0a3c2f756c3e0d0a0d0ac2fb20eceee6e5f2e520f1eee7e4e0e2e0f2fc20ebfee1fbe520e4eeefeeebede8f2e5ebfcedfbe520efe0efeae820f1eeeee1f9e5ede8e92c20eff0eee9e4ff20efee20f1f1fbebeae52022cfe5f0e5e4e5ebeae020efe0efeeea2220e2ede8e7f320f1f2f0e0ede8f6fb203c686f6d65206c6973745f6d657373616765732e7068703ed1efe8f1eeea20f1eeeee1f9e5ede8e93c2f686f6d653e2e20c5f1ebe820e2fb20e7e0efeeebede8f2e520e2f1e520eff3f1f2fbe520efeeebff20ede020f1f2f0e0ede8f6e520f0e5e4e0eaf2e8f0eee2e0ede8ff20efe0efeeea2c20f2ee20eff0e820f1ebe5e4f3fef9e5ec20e2f5eee4e520ede020fdf2f320f1f2f0e0ede8f6f320f1e5f0e2e5f020e4eee1e0e2e8f2fc20e5f9b820eff3f1f2fbf520e7e0efe8f1e5e92e, 'Y', '2011-03-01 09:19:25'),
(1059, 16, 0xcfeeeae0e7e0f2fc, 'Y', '2011-03-01 09:48:44'),
(1060, 16, 0xd1eaf0fbf2fc, 'Y', '2011-03-01 09:48:44'),
(1108, 16, 0xc2e5f0edf3f2fcf1ff20ea20f1eeeee1f9e5ede8fe, 'Y', '2011-03-01 11:32:47'),
(1110, 16, 0xc0e4f0e5f1e0f220ede520ede0e9e4e5ed, 'Y', '2011-03-01 11:32:47'),
(1112, 16, 0xcff0e8ece5f7e0ede8e520e4ebff20edeee2e8f7eaeee23a20eff0eef7f2e8f2e520d7e0c2ee2c20eff0e5e6e4e520f7e5ec20f3eae0e7fbe2e0f2fc20ede0f7e0ebfcedfbe920f0e0ede320e220f1e2eee5e920e0edeae5f2e52e, 'Y', '2011-03-01 11:32:47'),
(1274, 17, 0x647a6965f1, 'Y', '2013-08-20 23:04:25'),
(1120, 16, 0xe4eeefeeebede8f2e5ebfcedfbe520efe5f0e8eee4fb, 'Y', '2011-03-01 11:32:47'),
(1121, 16, 0xcff0e5e4fbe4f3f9e5e520f1eeeee1f9e5ede8e5, 'Y', '2011-03-01 11:32:47'),
(1122, 16, 0xd1ebe5e4f3fef9e5e520f1eeeee1f9e5ede8e5, 'Y', '2011-03-01 11:32:47'),
(1124, 16, 0xd1e5e1e5, 'Y', '2011-03-01 11:32:47'),
(1125, 16, 0xd1eef0f2e8f0eee2eae0, 'Y', '2011-03-01 11:32:47'),
(1156, 16, 0xd7f2ee20f2e0eaeee520efeef7f2eee2fbe520f3e2e5e4eeecebe5ede8ff3f, 'Y', '2011-03-01 11:49:24'),
(1157, 16, 0xcfeef7f2eee2fbe520f3e2e5e4eeecebe5ede8ff20f0e0f1f1fbebe0fef2f1ff20f1e5f0e2e5f0eeec2c20eaeee3e4e020eff0eee8f1f5eee4e8f220f1eee1fbf2e8e52028e2f5eee4fff9e5e520f1eeeee1f9e5ede8e52c20f5eee420e220efe0f0f2e8e820e8ebe820e820f2ee2c20e820e4f0f3e3eee5292c20e4ebff20eaeef2eef0eee3ee20e220e2e0f8e5e920e0edeae5f2e520efeeebfce7eee2e0f2e5ebff20e2eaebfef7e5ede020f1eeeef2e2e5f2f1f2e2f3fef9e0ff20ede0f1f2f0eee9eae02e200d0ac5f1ebe820e2fb20ede520e2eee9e4b8f2e520ede020f1e0e9f220e220f2e5f7e5ede8e520f7e0f1e020efeef1ebe520f1eee1fbf2e8ff2c20f3e2e5e4eeecebe5ede8e520e1f3e4e5f220eef2eff0e0e2ebe5edee20ede020f3eae0e7e0ededfbe920e2e0ece820e220e0edeae5f2e520efeef7f2eee2fbe920e0e4f0e5f12e0d0ad2eeebfceaee20eee4edee20efe8f1fcecee20eef2eff0e0e2ebffe5f2f1ff20e4ebff20f3e2e5e4eeecebe5ede8ff20ee20f1eee1fbf2e8e82c20eff0eee8e7eef8e5e4f8e5ec20efeef1ebe520e2e0f8e5e3ee20efeef1ebe5e4ede5e3ee20e2f5eee4e020ede020f1e0e9f22e20cfeef1ebe5e4f3fef9e8e520f1eee1fbf2e8ff2c20eff0eee8e7eef8e5e4f8e8e520efeef1ebe520eef2eff0e0e2eae820efe5f0e2eee3ee20f3e2e5e4eeecebe5ede8ff20e820e4ee20e2e0f8e5e3ee20efeee2f2eef0edeee3ee20e2f5eee4e02c20ede520e2fbe7fbe2e0fef220eef2eff0e0e2eae820edeee2fbf520f3e2e5e4eeecebe5ede8e92e0d0a0d0acff0e8ece5f7e0ede8e53a20c5f1ebe820e2fb20e8f1efeeebfce7f3e5f2e520eff0eee3f0e0ececf32028f22eed2e20f0eee1eef2e02920e4ebff20f7e0f1f2eee3ee20e0e2f2eeece0f2e8f7e5f1eaeee3ee20f1eae0ede8f0eee2e0ede8ff20f1f2f0e0ede8f6204447532c20e2fb20eceee6e5f2e520ede520efeeebf3f7e0f2fc20efeef7f2eee2fbf520f3e2e5e4eeecebe5ede8e92c20f2e0ea20eae0ea2044475320e2eef1eff0e8ede8ece0e5f220ebfee1eee520eee1f0e0f9e5ede8e520ea20ebfee1eee920e8e720f1e2eee8f520f1f2f0e0ede8f620eef220e2e0f8e5e3ee20e8ece5ede820eae0ea20e2e0f820e2e8e7e8f220ede020f1e0e9f22e200d0ad1f2f0e0ede8f6fb2c20efeef1e5f9e5ede8e520eaeef2eef0fbf520e2eef1eff0e8ede8ece0e5f2f1ff20eae0ea2022e2e8e7e8f220ede020f1e0e9f2222c20f2e520e6e520f1e0ecfbe52c20eaeef2eef0fbe520e2ebe8fffef220ede020efe0f0e0ece5f2f02022cfeef1ebe5e4ede5e520efeef1e5f9e5ede8e5222028e2f5eee420ede020e1eeebfcf8e8edf1f2e2ee20f1f2f0e0ede8f62c20ede020eaeef2eef0fbf520eef2eee1f0e0e6e0e5f2f1ff20ece5f2eae02022c2e0f820eff1e5e2e4eeede8ec3a203c7374726f6e673e7573657269643c2f7374726f6e673e222c20e2ebe8ffe5f220ede020e4e0f2f320efeef1ebe5e4ede5e3ee20e4eef1f2f3efe020e4ebff20efeeebfce7eee2e0f2e5ebff203c7374726f6e673e7573657269643c2f7374726f6e673e292e0d0ac5f1f2e5f1f2e2e5ededee2c20e2fbf8e5f1eae0e7e0ededeee520eef2edeef1e8f2f1ff20e820ea20ebfee4ffec2e, 'N', '2011-03-01 11:49:24'),
(1212, 16, 0xc4eee1f0ee20efeee6e0ebeee2e0f2fc20ede020257321, 'Y', '2011-03-01 11:49:24'),
(1213, 16, 0xc4eee1f0ee20efeee6e0ebeee2e0f2fc20ede02025732c202573f1e2eee1eee4edfbe9257320f1e5f0e2e5f020e4ebff20e8e3f0fb20e2202573e3ee25732c20ede020eaeef2eef0eeec20e8e3f0e0fef220e220efeef8e0e3eee2eeec20f0e5e6e8ece52e, 'Y', '2011-03-01 11:49:24'),
(1096, 16, 0xc4eee1f0ee20efeee6e0ebeee2e0f2fc20ede020f0e0e7f0e0e1e0f2fbe2e0e5ecf3fe20e2e5f0f1e8fe20447261676f6e20676f2053657276657221, 'N', '2011-03-01 11:56:59'),
(1097, 16, 0xc5f1ebe820e2fb20f5eef2e8f2e520e8e3f0e0f2fc20ede020f1f2e0e1e8ebfcedeeec20f1e5f0e2e5f0e52c20eff0eee9e4e8f2e520efee20f1f1fbebeae53a203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e6574223e687474703a2f2f7777772e647261676f6e676f7365727665722e6e65743c2f613e2e, 'Y', '2011-03-01 11:56:59'),
(1475, 17, 0x506f7a6f737461b37920637a6173, 'Y', '2013-08-20 23:08:31'),
(1479, 17, 0x4e617a7769736b6f, 'Y', '2013-08-22 00:05:57'),
(1508, 17, 0x547970, 'Y', '2013-08-20 23:09:41'),
(1520, 17, 0x42b3b164, 'Y', '2013-08-20 23:09:41'),
(1099, 16, 0xcee1f0e0f2e8f2e5f1fc20ea20d7e0c2ee2c20f7f2eee1fb20f3e7ede0f2fc20e1eeebfcf8e52e, 'Y', '2011-03-01 11:56:59'),
(1102, 16, 0x476f476f44202d20e1e0e7e020e4e0ededfbf520e820fdedf6e8eaebeeefe5e4e8ff, 'Y', '2011-03-01 11:56:59'),
(1103, 16, 0xc1eeebfcf8e0ff20e1e0e7e020e4e0ededfbf520eff0eef4e5f1f1e8eeede0ebfcedfbf520efe0f0f2e8e9, 'Y', '2011-03-01 11:56:59'),
(1104, 16, '', 'Y', '2012-07-15 21:20:17'),
(1105, 16, 0xc5e6e5ede5e4e5ebfcede0ff20eaeeebeeedeae020e3ee20eef220526f622056616e205a65696a73742e, 'Y', '2011-03-01 11:56:59'),
(1106, 16, 0xd1efe8f1eeea20eef2e2e5f2eee2, 'Y', '2011-03-01 11:56:59'),
(1871, 20, 0x446f6e6172, 'Y', '2011-03-15 21:53:48'),
(1873, 20, '', 'Y', '2011-03-15 21:53:48'),
(1875, 20, 0x446f6e6174696f6e6573, 'Y', '2011-03-15 21:53:48'),
(1724, 16, 0xc4e02e20cde020f1f2f0e0ede8f6e520e8e3f0fb20e8ece5e5f2f1ff20f1f1fbebeae020223c693ec7e0e3f0f3e7e8f2fc205347463c2f693e222c20efee20eaeef2eef0eee920e7e0eff3f1eae0e5f2f1ff20e7e0e3f0f3e7eae020f4e0e9ebe02053474620f120e7e0efe8f1fcfe20eef2eee1f0e0e6e0e5eceee920e8e3f0fb2e20c5f1ebe820fdf2ee20e2e0f8e020e8e3f0e02c20e2fb20eceee6e5f2e520f2e0eae6e520e2eef1efeeebfce7eee2e0f2fcf1ff20e4eeefeeebede8f2e5ebfcedeee920f1f1fbebeaeee920223c693ec7e0e3f0f3e7e8f2fc2053474620f1ee20e2f1e5ece820eaeeecece5edf2e0f0e8ffece83c2f693e222c20f7f2eee1fb20efeeebf3f7e8f2fc205347462df4e0e9eb2c20f1eee4e5f0e6e0f9e8e920e2e0f8e820ebe8f7edfbe520eaeeecece5edf2e0f0e8e820ea20efe0f0f2e8e82c20e5f1ebe820eeede820e4e5ebe0ebe8f1fc2e0d0a0d0acfeee6e0ebf3e9f1f2e02c20e8ece5e9f2e520e220e2e8e4f32c20f7f2ee20e2eee7eceee6edee20f0e0e7ebe8f7e8e520e220edf3ece5f0e0f6e8e820f5eee4eee220ede020f1e0e9f2e520e820e220f4e0e9ebe5205347462c20e220eef1eee1e5ededeef1f2e820e4ebff20f4eef0eee2fbf520efe0f0f2e8e93a20f0e0f1f1f2e0edeee2eae020f4eef0eee2fbf520eae0ecede5e920eceee6e5f220eef2eee1f0e0e6e0f2fcf1ff20ede020f1e0e9f2e520eae0ea20f5eee42c20e020f4e0e9ebe52053474620266d646173683b20ede5f22e20ddf2e0effb20efeee4f1f7b8f2e020eef7eaeee220e220eaeeedf6e520efe0f0f2e8e820f2e0eae6e520eceee3f3f220efee2df0e0e7edeeecf320eef2f0e0e6e0f2fcf1ff20ede020f7e8f1ebe520f5eee4eee220ede020f1e0e9f2e520e820e2205347462e200d0ac2f1ebe5e4f1f2e2e8e520fdf2eee3ee20ede520f1ebe5e4f3e5f220f0e0f1f1f7e8f2fbe2e0f2fc20ede020e8e4e5edf2e8f7edeef1f2fc20edeeece5f0eee220f5eee4eee22c20ede0eff0e8ece5f02c20eff0e820f1eee7e4e0ede8e820eee1e7eef0e020e8e3f0fb2e, 'N', '2011-03-27 21:55:15'),
(1299, 16, 0xcfeef7e5ecf320eceeff20e8e3f0e020ede520ffe2ebffe5f2f1ff20f0e5e9f2e8ede3eee2eee93f, 'Y', '2011-03-27 21:56:38'),
(1300, 16, 0xcfe0f0f2e8ff20ffe2ebffe5f2f1ff20f0e5e9f2e8ede3eee2eee920e820203c686f6d65206661712e7068703f726561643d74266361743d31303523456e7472793134393eefeee2ebe8ffe5f220ede020f0e5e9f2e8ede3e820e8e3f0eeeaeee23c2f686f6d653e20f2eeebfceaee20eff0e820e2fbefeeebede5ede8e820e2f1e5f520ede8e6e5f1ebe5e4f3fef9e8f520f3f1ebeee2e8e93a0d0a3c756c3e0d0a3c6c693ecfe0f0f2e8ff20e4eeebe6ede020e1fbf2fc20f1eee7e4e0ede020eae0ea20f0e5e9f2e8ede3eee2e0ff20e220e8e3f0eee2eeec20e7e0ebe520e8ebe820eff0e820e2fbe7eee2e52e0d0a3c6c693ec1e5ebfbe520f1e4e5ebe0ebe820effff2fc20e8ebe820e1eeebe5e520f5eee4eee22e0d0a3c6c693ecee1e020e8e3f0eeeae020e4eeebe6edfb20e8ece5f2fc20f0e5e9f2e8ede32044475320ede020eceeece5edf220ede0f7e0ebe020efe0f0f2e8e82e3c2f756c3e0d0a0d0a223c693ed0e5e9f2e8ede3204447533c2f693e22202d20fdf2ee20ede520f2ee20e6e520f1e0eceee52c20f7f2ee20efeeebe520223c693ece20f0e5e9f2e8ede3e53c2f693e2220e220e0edeae5f2e53b20e8ece5e5f2f1ff20e220e2e8e4f320f0e5e9f2e8ede32c20eef2f1ebe5e6e8e2e0e5ecfbe920447261676f6e27eeec2e20c2fb20eceee6e5f2e520f3eae0e7e0f2fc20e220e0edeae5f2e520f1e2eee9203c686f6d65206661712e7068703f726561643d74266361743d31303523456e74727935303eede0f7e0ebfcedfbe920f0e5e9f2e8ede33c2f686f6d653e2e203c686f6d65206661712e7068703f726561643d74266361743d31303523456e7472793330313eddf2eef220f0e0e7e4e5eb20d7e0c2ee3c2f686f6d653e20eee1fafff1ede8f22c20eae0ea20e2e2e5f1f2e820f1e2eee920f0e5e9f2e8ede32c20e5f1ebe820e2fb20ede520f1e4e5ebe0ebe820fdf2eee3ee20f120f1e0eceee3ee20ede0f7e0ebe02e, 'Y', '2012-07-14 13:06:17'),
(531, 21, 0x4b696f206573746173206c612062617a616a20726567756c6f6a20646520476f6f3f, 'Y', '2011-03-29 20:29:29'),
(555, 21, 0x4b69656c206d6920706f7661732072656761726469205347462d646f736965726f6a6e, 'N', '2011-03-29 20:29:29'),
(557, 21, 0x4b69656c206d69206b6f6d656e6369206e6f76616e206c75646f6e3f, 'Y', '2011-03-29 20:29:29'),
(1738, 16, 0xcceee3f320ebe820ff20f5eee4e8f2fc2c20e2e2eee4ff20efeef1ebe5e4eee2e0f2e5ebfcedeef1f2fc20ede5f1eaeeebfceae8f520f5eee4eee220e220e2e8e4e520f1efe8f1eae03f, 'Y', '2011-06-12 12:57:12'),
(1739, 16, 0xcde5f22e20c4eee1e0e2ebe5ede8e520fdf2eee920e2eee7eceee6edeef1f2e820eee1f1f3e6e4e0e5f2f1ff20ede020f4eef0f3ece520e220e2e5f2eae5203c686f6d6520666f72756d2f726561642e7068703f666f72756d3d33267468726561643d31383633323e737567676573746564206d6f76652e73657175656e63653c2f686f6d653e2e, 'Y', '2011-06-12 12:59:07'),
(1295, 16, 0xc4f3e1ebe8f0f3fef9e8e5f1ff20f1eeeee1f9e5ede8ff20e820efe8f1fcece0, 'Y', '2011-06-12 13:11:45'),
(1296, 16, 0xcef8e8e1eae020e4f3e1ebe8f0eee2e0ede8ff20f5eee4eee220e8f1eff0e0e2ebe5ede02e0d0a0d0ad1e2ffe7e0ededfbe520f120ede5e920eff0eee1ebe5ecfb20e4f3e1ebe8f0eee2e0ede8ff20f1eeeee1f9e5ede8e920e820efe8f1e5ec20f1e2ffe7e0edfb20f120e4e5e9f1f2e2e8ffece820efeeebfce7eee2e0f2e5ebe5e93a0d0a0d0ac2f1e520fdf2e820eff0eee1ebe5ecfb20e220eef1edeee2edeeec20e2fbe7e2e0edfb20f2e5ec2c20f7f2ee20efeeebfce7eee2e0f2e5ebfc20e4e2e0e6e4fb20e8ebe820e1eeebe5e520ede0e6e8ece0e5f220ede020eaedeeefeaf32022cef2eff0e0e2e8f2fc222e20d2e0ea2c20e220f1ebf3f7e0e520e2ede5e7e0efedeee3ee20e7e0ece5e4ebe5ede8ff20f0e0e1eef2fb20f1e5f2e82c20eaeee3e4e020e2fb20ede0e6e8ece0e5f2e520ede020eaedeeefeaf320eef2eff0e0e2eae820f1eeeee1f9e5ede8ff2c20e2fb20eceee6e5f2e520ede520efeeebf3f7e8f2fc20ede5ece5e4ebe5ededfbe920eef2e2e5f22e20c2e0ec20eceee6e5f220efeeeae0e7e0f2fcf1ff2c20f7f2ee20e2fb20efebeef5ee20e8ebe820ede5f2eef7edee20ede0e6e0ebe820ede020eaedeeefeaf32022cef2eff0e0e2e8f2fc222e20c5f1ebe820e220f2e0eaeee920f1e8f2f3e0f6e8e820e2fb20ede0e6ecb8f2e520eaedeeefeaf320e2f2eef0eee920f0e0e72c20e2fb20eef2eff0e0e2e8f2e520f1eeeee1f9e5ede8e520f1edeee2e0210d0a0d0a3c623ecfeee4f1eae0e7eae03a3c2f623e20c220f2e0eaeee920f1e8f2f3e0f6e8e820efeeeff0eee1f3e9f2e520eef2eaf0fbf2fc20edeee2eee520eeeaedee20e1f0e0f3e7e5f0e02028f7f2eee1fb20ede520efeef2e5f0fff2fc20f1eeeee1f9e5ede8e52920e820efeef1eceef2f0e5f2fc20e220edb8ec20f1efe8f1eeea20eef2eff0e0e2ebe5ededfbf520e2e0ece820f1eeeee1f9e5ede8e920e820e2f0e5ecff20f4eef0ece8f0eee2e0ede8ff20f1f2f0e0ede8f6fb2e20cde5e7e0e2e8f1e8ecee20eef220f1eaeef0eef1f2e820f1e5f2e82c20ede0ebe8f7e8e520e2e0f8e5e3ee20f1eeeee1f9e5ede8ff20e220f1efe8f1eae520eef2eff0e0e2ebe5ededfbf520e1f3e4e5f220eee7ede0f7e0f2fc2c20f7f2ee20e2fb20f3e6e520eef2eff0e0e2e8ebe820f1eeeee1f9e5ede8e520e820e2f2eef0eee920f0e0e720ede0e6e8ece0f2fc20eaedeeefeaf32022cef2eff0e0e2e8f2fc2220ede520f1ebe5e4f3e5f22e, 'Y', '2011-06-12 13:11:45'),
(1319, 16, 0x43616e204920636f6d6d756e636174652077697468206d79206f70706f6e656e743f0d0a5965732e0d0a200d0a4f6e636520796f7520706c61636520612073746f6e6520696e20612067616d6520796f752077696c6c207365652061206d65737361676520626f782e20496620796f75207769736820746f2073656e642061206d657373616765207769746820796f7572206d6f766520796f752073686f756c6420747970652074686973206265666f726520636c69636b696e6720746865207375626d697420627574746f6e2e204d657373616765732066726f6d20796f7572206f70706f6e656e742073656e742077697468206d6f7665732077696c6c20617070656172206f6e73637265656e207768656e20796f75206f70656e20612067616d652e0d0a200d0a596f752063616e20616c736f2073656e64206d6573736167657320746f20796f7572206f7070656e656e7420286f7220616e796f6e6520656c7365206f6e20444753292076696120746865206d6573736167696e672073797374656d, 'N', '2011-06-12 15:43:47'),
(1326, 16, 0xcae0ea20ede0e9f2e820edf3e6edf3fe20e8edf4eef0ece0f6e8fe20e220d7e0c2ee3f, 'N', '2011-06-12 15:43:47'),
(1327, 16, 0xcde020e4e0ededfbe920eceeece5edf220447261676f6e20ede520e8ece5e5f220ece5f5e0ede8e7ece02c20eaeef2eef0fbe920eee1e5f1efe5f7e8eb20e1fb20efeee8f1ea20ede5efeef1f0e5e4f1f2e2e5ededee20efee20eff3edeaf2e0ec20d7e0c2ee2e200d0a0d0acee4ede0eaee20e2fb20eceee6e5f2e520e2eef1efeeebfce7eee2e0f2fcf1ff20f1f1fbebeaeee9203c686f6d65206661712e7068703f726561643d74266361743d616c6c3ecfeeeae0e7e0f2fc20e2e5f1fc20d7e0c2ee20ede020eee4edeee920f1f2f0e0ede8f6e53c2f686f6d653e20e820eff0e8ece5ede8f2fc20e4ebff20efeee8f1eae020efeee8f1eaeee2fbe520eaeeece0ede4fb20e1f0e0f3e7e5f0e02e, 'N', '2011-06-12 15:43:47'),
(1328, 16, 0xcae0ea20ede0e9f2e820edf3e6edf3fe20e8edf4eef0ece0f6e8fe20e220f4eef0f3ece0f53f, 'Y', '2011-06-12 15:43:47'),
(1330, 16, 0xd7f2ee20f2e0eaeee520efeeebedeef2e5eaf1f2eee2fbe920efeee8f1ea3f, 'Y', '2011-06-12 18:22:03'),
(1331, 16, 0xc2fb20eceee6e5f2e520e2eef1efeeebfce7eee2e0f2fcf1ff20efeee8f1eaeeec20ede020f1f2f0e0ede8f6e0f5203c686f6d6520666f72756d2f7365617263682e7068703e466f72756d207365617263683c2f686f6d653e2028efee20f3f1ebeee2e8ffec292c20ede020f1f2f0e0ede8f6e5203c686f6d65207365617263685f6d657373616765732e7068703e4d657373616765207365617263683c2f686f6d653e2028efee20f2e5ece520e820f1eee4e5f0e6e8eceeecf320f1eeeee1f9e5ede8ff2920e820f1f2f0e0ede8f6e5e9203c686f6d65206c6973745f636f6e74616374732e7068703ed16f6e74616374206c6973743c2f686f6d653e2028efee20e7e0ece5f2eae0ec292e0d0a0d0a3c623ecfeeebedeef2e5eaf1f2eee2fbe920efeee8f1ea3c2f623e20266d646173683b20fdf2ee20f1efe5f6e8e0ebfcedfbe920ece5f5e0ede8e7ec20efeee8f1eae020efee20e2f1e5e920e1e0e7e520e4e0ededfbf52028f120e8f1efeeebfce7eee2e0ede8e5ec20efeeebedeef2e5eaf1f2eee2eee3ee20e8ede4e5eaf1e0292e20ddf2e020f4f3edeaf6e8ff2c20e2eee7eceee6edee2c20ede520ffe2ebffe5f2f1ff20e8edf2f3e8f2e8e2edee20efeeedfff2edeee920e4ebff20ede5efeee4e3eef2eee2ebe5ededfbf520efeeebfce7eee2e0f2e5ebe5e92c20edee20e7e0f2ee20eeede020e3eef0e0e7e4ee20e1fbf1f2f0e5e520e820fdf4f4e5eaf2e8e2ede5e52c20f7e5ec2022eee1fbf7edfbe92220efeee8f1ea2e20cfeefdf2eeecf320eeede020e820e1fbebe020e2fbe1f0e0ede020e4ebff20447261676f6e27e02e0d0a0d0addf2eef220efeee8f1ea20e8f1efeeebfce7f3e5f220efeeebedeef2e5eaf1f2eee2fbe920e8ede4e5eaf120efee203c656d3ef2e5ece53c2f656d3e20e8203c656d3ef2e5ebf33c2f656d3e20f1eeeee1f9e5ede8e920ede020f4eef0f3ece52e20ddf2ee20efeef5eee6e520ede020efeee8f1ea20efee20f3eae0e7e0f2e5ebfe20e220eaede8e3e52c20e5f1ebe820eff0e5e4f1f2e0e2e8f2fc2c20f7f2ee20f1eeeee1f9e5ede8ff20e220f4eef0f3ece52028e8f520f2e5ecfb20e820f1eee4e5f0e6e8eceee52920266d646173683b20fdf2ee20f2e5eaf1f220eaede8e3e82c20e020e8ede4e5eaf120266d646173683b20f3eae0e7e0f2e5ebfc2c20efee20eaeef2eef0eeecf320ede0f5eee4e8f2f1ff20edf3e6edfbe920f4f0e0e3ece5edf22e20c7e0ece5f2e8ec2c20f7f2ee20f3eae0e7e0f2e5ebfc20e220eaede8e3e520ede8eaeee3e4e020ede520f1eee4e5f0e6e8f220e2f1e520f1ebeee2e02c20e2f1f2f0e5f7e0fef9e8e5f1ff20e220f2e5eaf1f2e52c20e020f2eeebfceaee20f1e0ecfbe520e2e0e6edfbe520e820ede0e8e1eeebe5e520f0e5ebe5e2e0edf2edfbe52028efeee4f5eee4fff9e8e520e4ebff20efeee8f1eae0292e0d0a0d0acae0e6e4eee520f1ebeee2ee20e220e8ede4e5eaf1e52c20e820e220e7e0eff0eef1e520e8ece5e5f220eeeff0e5e4e5ebb8ededfbe920e2e5f12c20e7e0e2e8f1fff9e8e920eef220e5e3ee20f3efeef2f0e5e1ebe5ede8ff20e220f1eeeee1f9e5ede8fff52e20d1ebeee2ee2c20eaeef2eef0eee520eff0e8f1f3f2f1f2e2f3e5f220e2ee20ecedeee3e8f520f1eeeee1f9e5ede8fff52c20e8ece5e5f220ece5edfcf8e8e920e2e5f12028e2eee7eceee6edee2c20e4e0e6e520edf3ebe5e2eee9292e20c5f1ebe820e6e520f1ebeee2ee20e2f1f2f0e5f7e0e5f2f1ff20f0e5e4eaee2c20eeedee20e8ece5e5f220e1eeebfcf8e8e920e2e5f12e20c8e720ede0e1eef0e020e2e5f1eee220f1ebeee220e2fbf7e8f1ebffe5f2f1ff203c623ef0e5ebe5e2e0edf2edeef1f2fc3c2f623e2c20eaeef2eef0e0ff20eef2eee1f0e0e6e0e5f2f1ff20eae0ea203c623ecef6e5edeae03c2f623e2028e2e5f120eaeeece1e8ede0f6e8e8292e0d0a0d0ad2e0eae8ec20eee1f0e0e7eeec2c203c623eede520e2f1e520f1ebeee2e020eceee3f3f220e1fbf2fc20ede0e9e4e5edfb3c2f623e2e20d2e0ea20e6e52c20eae0ea20e220eaede8e3e52c20ede8eaf2ee20ede520e1f3e4e5f220e2eaebfef7e0f2fc20e220f3eae0e7e0f2e5ebfc20f1ebeee2e02c20e2f1f2f0e5f7e0fef9e8e5f1ff20ede020eae0e6e4eee920f1f2f0e0ede8f6e52e20c8f1eaebfef7e0fef2f1ff20e8e720e8ede4e5eaf1e020f1ebeee2e03a0d0a0d0a3c756c3e0d0a3c6c693ed1ebeee2e02c20e2f1f2f0e5f7e0fef9e8e5f1ff20ede520ece5ede5e520f7e5ec20e22035302520f1eeeee1f9e5ede8e920f4eef0f3ece020ede520e2eaebfef7e0fef2f1ff20e220e8ede4e5eaf120e820ede520eceee3f3f220e1fbf2fc20ede0e9e4e5edfb2e20ddf2ee2c20e2eee7eceee6edee2c20ede0e8e1eeebe5e520eff0eef2e8e2eef0e5f7e0f9e8e920e8edf2f3e8f6e8e820eceeece5edf220e220efeeede8ece0ede8e820f2eee3ee2c20eae0ea20ede0e9f2e820f7f2ee2debe8e1ee2e20c2e0ec20efeeeceee6e5f220e0ede0ebeee3e8ff20f120eaede8e3eee93a2022cde520e2f1e520f1ebeee2e020efeeefe0e4e0fef220e220f3eae0e7e0f2e5ebfc222e0d0a0d0a3c6c693ed1ebeee2e020e8e720f1efe5f6e8e0ebfcedeee3ee20f1efe8f1eae02028e7e0efe8f1e0ededeee3ee20e220e1e0e7e5292c20ede0e7fbe2e0e5ecfbe520e5f9b82022f1f2eeef2df1ebeee2e0ece8222e20cfeeebedfbe920f1f2eeef2df1efe8f1eeea20ede0f5eee4e8f2f1ff20efee20e0e4f0e5f1f33a203c687474703a2f2f6465762e6d7973716c2e636f6d2f646f632f7265666d616e2f342e312f656e2f66756c6c746578742d73746f70776f7264732e68746d6c3e0d0a0d0a3c6c693ed1ebeee2e020e4ebe8edeee920ece5ede5e5203420f1e8ece2eeebeee220eee1fbf7edee20f2e0eae6e520ede520e2eaebfef7e0fef2f1ff20e220e8ede4e5eaf1fb2c20cdee2049542deff0eee2e0e9e4e5f020444753202853616d7572616a20446174612920eef2ece5ede8eb20fdf2ee20eee3f0e0ede8f7e5ede8e52028e0efebeee4e8f1ece5edf2fb21292c20e1ebe0e3eee4e0f0ff20f7e5ecf320e2fb20eceee6e5f2e520f2e0eae6e520e8f1eae0f2fc20f1ebeee2e02c20f1eef1f2eefff9e8e520ece5ede5e520f7e5ec20e8e7203420e1f3eae22028e2efebeef2fc20e4ee20eee4edeee1f3eae2e5ededfbf5203b2d290d0a3c2f756c3e0d0a0d0acde0eff0e8ece5f02c20e5f1ebe820e2fb20e8f9e5f2e520f4f0e0e7f320223c74743e6d7920676f20626f617264206973206f6e20666972653c2f74743e222c20fdeae2e8e2e0ebe5edf2edfbec20efeee8f1eaeee2fbec20e7e0eff0eef1eeec20e1f3e4e5f220223c74743e626f61726420666972653c2f74743e222028eef1f2e0ebfcedfbe520f1ebeee2e020266d646173683b20e8e720f1f2eeef2debe8f1f2e0292e0d0ac1f3e4e5f220eff0eee2e5f0e5edee2c20ede0f1eaeeebfceaee20f7e0f1f2ee20f1ebeee2ee2022626f6172642220e2f1f2f0e5f7e0e5f2f1ff20e220e8ede4e5eaf1e52028e220f2e5ece520e820f2e5ebe520f1eeeee1f9e5ede8ff292e20d7e5ec20f0e5e6e520eeedee20e2f1f2f0e5f7e0e5f2f1ff20f2e5ec20e1eeebfcf8e8e920e2e5f120e1f3e4e5f220e5ecf320eff0e8f1e2eee5ed2e20d2ee20e6e520f1e0eceee520e4ebff20f1ebeee2e020223c74743e666972653c2f74743e222e20ddf2ee20e4e5ebe0e5f2f1ff20e4ebff20eae0e6e4eee3ee20f1eeefeef1f2e0e2ebffe5eceee3ee20f1eeeee1f9e5ede8ff2e20c7e0f2e5ec20e2fbf7e8f1ebfffef2f1ff20e2e5f1e02028eef6e5edeae82920eaeeece1e8ede0f6e8e820f1ebeee220e4ebff20efeee4f5eee4fff9e8f520f1eeeee1f9e5ede8e920e820f1eeeee1f9e5ede8ff20f1eef0f2e8f0f3fef2f1ff20efee20e8f520eef6e5edeae0ec2e20ddf2ee20e820e5f1f2fc2022f1eef0f2e8f0eee2eae020efee20f0e5ebe5e2e0edf2edeef1f2e8222c20eaeef2eef0e0ff20e8f1efeeebfce7f3e5f2f1ff20eff0e820eef2eee1f0e0e6e5ede8e820f0e5e7f3ebfcf2e0f2eee220efeee8f1eae02e20290d0a0d0ad1ec2e20f2e0eae6e5203c623e3c686f6d65206661712e7068703f726561643d74266361743d32303023456e7472793234323ecff0e8ece5f0fb20e820f1e8edf2e0eaf1e8f120e7e0eff0eef1eee23c2f686f6d653e3c2f623e20efeeebedeef2e5eaf1f2eee2eee3ee20efeee8f1eae020f120e8f1efeeebfce7eee2e0ede8e5ec20e820e1e5e720e8f1efeeebfce7eee2e0ede8ff203c623efdeaf1efe5f0f2edeee3ee20f0e5e6e8ece03c2f623e2e0d0a0d0ac020e5f1ebe820e2fb20f5eef2e8f2e520e7ede0f2fc20e5f9b820e1eeebfcf8e52c20eceee6e5f2e520ede0e9f2e820ecedeee6e5f1f2e2ee20f2e5f5ede8f7e5f1eae8f520e4e5f2e0ebe5e920efeeebedeef2e5eaf1f2eee2eee3ee20efeee8f1eae020ede020f1e0e9f2e0f53a0d0a3c756c3e0d0a3c6c693e3c687474703a2f2f6465762e6d7973716c2e636f6d2f646f632f7265666d616e2f352e302f656e2f66756c6c746578742d7365617263682e68746d6c3e0d0a3c6c693e3c687474703a2f2f6465762e6d7973716c2e636f6d2f646f632f7265666d616e2f352e302f656e2f66756c6c746578742d626f6f6c65616e2e68746d6c3e0d0a3c2f756c3e, 'N', '2011-06-12 18:22:03'),
(1332, 16, 0xcae0ea20ede0e9f2e820eeeff0e5e4e5ebb8ededeee3ee20efeeebfce7eee2e0f2e5ebff3f, 'Y', '2011-06-12 18:22:03'),
(1336, 16, 0xcae0ea20efeeece5f2e8f2fc20f1f2f0eeeaf320e4ebff20ebf3f7f8e5e3ee20eef0e8e5edf2e8f0eee2e0ede8ff20e220e1eeebfcf8e8f520f2e0e1ebe8f6e0f53f, 'Y', '2011-06-12 18:59:22'),
(1337, 16, 0xddf2e020f4f3edeaf6e8ff20f0e0e1eef2e0e5f22c20e5f1ebe820f320e2e0f120e2eaebfef7b8ed204a61766153637269707420e220e1f0e0f3e7e5f0e52e200d0a0d0ac4e2eee9edeee920f9e5ebf7eeea20ecfbf8fcfe20ede020f1f2f0eeeae52c20e220ebfee1eeec20ece5f1f2e52c20eaf0eeece520f1f1fbebeeea2c20e220ebfee1eee920f2e0e1ebe8f6e52c20ede0eff0e8ece5f02c203c686f6d652073686f775f67616d65732e7068703f7569643d616c6c2666696e69736865643d313ec7e0e2e5f0f8b8ededfbe520e8e3f0fb3c2f686f6d653e2c20eff0e8e2eee4e8f220ea20e2fbe4e5ebe5ede8fe20f1f2f0eeeae82e20cfeee2f2eef0edfbe920e4e2eee9edeee920f9e5ebf7eeea20efe5f0e5eaebfef7e0e5f220e2fbe4e5ebe5ede8e52e20ddf2ee20f0e0e1eef2e0e5f220e820e4ebff20ede5f1eaeeebfceae8f520f1f2f0eeea20eee4edeee2f0e5ece5ededee2e200d0a0d0ac2fbe4e5ebe5ede8e520ede520f1eef5f0e0edffe5f2f1ff2c20eaeee3e4e020e2fb20efe5f0e5e7e0e3f0f3e6e0e5f2e520f1f2f0e0ede8f6f32c20e4e0e6e520e5f1ebe820e5b820f1eee4e5f0e6e8eceee520ede520ece5edffebeef1fc2e, 'N', '2011-06-12 18:59:22'),
(1346, 16, '', 'N', '2012-07-15 21:20:17'),
(1347, 16, '', 'Y', '2012-07-15 21:20:17'),
(1360, 16, 0xc4e7e8e3ee, 'Y', '2011-06-12 18:59:22'),
(1361, 16, 0xdfefeeedf1eae8e920e3ee2df2e5f0ece8ed2c20eee1eee7ede0f7e0fef9e8e920ede8f7fcfe20e220efe0f0f2e8e83a20eee1e020e8e3f0eeeae020ede0e1f0e0ebe820eee4e8ede0eaeee2eee520eaeeebe8f7e5f1f2e2ee20eef7eaeee22e, 'Y', '2011-06-12 18:59:22'),
(2416, 4, 0x526567656c7765726b, 'Y', '2012-12-09 01:11:33'),
(2404, 4, 0x285347462d5a756720257329, 'Y', '2012-12-09 01:08:32'),
(2407, 4, 0x566f7268657269676572205a7567, 'Y', '2012-12-09 01:09:58'),
(2408, 4, 0x4ee4636873746572205a7567, 'Y', '2012-12-09 01:09:58'),
(2414, 4, 0x537069656c617274, 'Y', '2012-12-09 01:09:58'),
(2415, 4, 0x4c65747a746572205a756720766f6e3a, 'Y', '2012-12-09 01:09:58'),
(2418, 4, 0x5475726e6965726c6569746572, 'Y', '2012-12-09 01:09:58'),
(2419, 4, 0x4b6f6d692d56657268616e646c756e672066fc7220676572656368746573204b6f6d69, 'Y', '2012-12-09 01:09:58'),
(1687, 16, 0x57686174206973207468652073796e746178206f662061204d41544348494e4445582d66696c7465723f090d0a756e7472616e736c61746564, 'N', '2011-06-12 19:27:09');
INSERT INTO `Translations` (`Original_ID`, `Language_ID`, `Text`, `Translated`, `Updated`) VALUES
(1700, 16, 0xcceee3f320ebe820ff20e7e0f9e8f2e8f2fc20f1e2eefe20e8e3f0f320e220e8e3f0eee2eeec20e7e0ebe520eef220efeee4eaebfef7e5ede8ff20ea20ede5e920eeeff0e5e4e5ebb8ededfbf520efeeebfce7eee2e0f2e5ebe5e93f, 'Y', '2011-06-12 19:27:09'),
(1701, 16, 0xc4e02e203c686f6d65206661712e7068703f726561643d74266361743d33363123456e7472793236303ec4eee1e0e2fcf2e520efeeebfce7eee2e0f2e5ebff20e220f1efe8f1eeea20eaeeedf2e0eaf2eee23c2f686f6d653e20e820e0eaf2e8e2e8f0f3e9f2e520f1e8f1f2e5ecedf3fe20eae0f2e5e3eef0e8fe203c693e2250726f746563742077616974696e67726f6f6d2067616d6573223c2f693e2e0d0a0d0acdee20efeeecede8f2e52c20f7f2ee2044475320e4eeebe6e5ed20e1fbf2fc20e4f0f3e6e5ebfee1edfbec20eaee20e2f1e5ec2c20f2e0ea20f7f2ee20ede520e8f1efeeebfce7f3e9f2e520e7e0f9e8f2f320eff0eef1f2ee20f2e0ea2c20e1e5e720f1f3f9e5f1f2e2e5ededfbf520eef1edeee2e0ede8e92e, 'Y', '2011-06-12 19:27:09'),
(1702, 16, 0xcceee3f320ebe820ff20e0e2f2eeece0f2e8f7e5f1eae820eef2eaebeeedfff2fc20f1eeeee1f9e5ede8ff20eef220eeeff0e5e4e5ebb8ededfbf520efeeebfce7eee2e0f2e5ebe5e93f, 'Y', '2011-06-12 19:27:09'),
(1703, 16, 0xc4e02e203c686f6d65206661712e7068703f726561643d74266361743d33363123456e7472793236303ec4eee1e0e2fcf2e520efeeebfce7eee2e0f2e5ebff20e220f1efe8f1eeea20eaeeedf2e0eaf2eee23c2f686f6d653e20e820e0eaf2e8e2e8f0f3e9f2e520f1e8f1f2e5ecedf3fe20eae0f2e5e3eef0e8fe203c693e2252656a656374206d65737361676573223c2f693e2e0d0a0d0acdee20efeeecede8f2e52c20f7f2ee2044475320e4eeebe6e5ed20e1fbf2fc20e4f0f3e6e5ebfee1edfbec20eaee20e2f1e5ec2c20f2e0ea20f7f2ee20ede520e8f1efeeebfce7f3e9f2e520e7e0f9e8f2f320eff0eef1f2ee20f2e0ea2c20e1e5e720f1f3f9e5f1f2e2e5ededfbf520eef1edeee2e0ede8e92e, 'Y', '2011-06-12 19:27:09'),
(1704, 16, 0xcceee3f320ebe820ff20e0e2f2eeece0f2e8f7e5f1eae820eef2eaebeeedfff2fc20eff0e8e3ebe0f8e5ede8ff20ede020e8e3f0f320eef220eeeff0e5e4e5ebb8ededfbf520efeeebfce7eee2e0f2e5ebe5e93f, 'Y', '2011-06-12 19:27:09'),
(1705, 16, 0xc4e02e203c686f6d65206661712e7068703f726561643d74266361743d33363123456e7472793236303ec4eee1e0e2fcf2e520efeeebfce7eee2e0f2e5ebff20e220f1efe8f1eeea20eaeeedf2e0eaf2eee23c2f686f6d653e20e820e0eaf2e8e2e8f0f3e9f2e520f1e8f1f2e5ecedf3fe20eae0f2e5e3eef0e8fe203c693e2252656a65637420696e7669746174696f6e73223c2f693e2e0d0a0d0acdee20efeeecede8f2e52c20f7f2ee2044475320e4eeebe6e5ed20e1fbf2fc20e4f0f3e6e5ebfee1edfbec20eaee20e2f1e5ec2c20f2e0ea20f7f2ee20ede520e8f1efeeebfce7f3e9f2e520e7e0f9e8f2f320eff0eef1f2ee20f2e0ea2c20e1e5e720f1f3f9e5f1f2e2e5ededfbf520eef1edeee2e0ede8e92e, 'Y', '2011-06-12 19:27:09'),
(1055, 16, 0xd1eef1f2eeffede8e520e220525353, 'Y', '2011-06-12 19:44:36'),
(1274, 16, 0xe4e5edfc, 'Y', '2011-06-12 19:44:36'),
(1275, 16, 0xe4ede5e9, 'Y', '2011-06-12 19:44:36'),
(1276, 16, 0xf7e0f1, 'Y', '2011-06-12 19:44:36'),
(1277, 16, 0xf7e0f1eee2, 'Y', '2011-06-12 19:44:36'),
(1378, 16, 0xcaeeedf2e0eaf2fb, 'Y', '2011-06-12 19:44:36'),
(1520, 16, 0xcef8e8e1eae0, 'Y', '2011-06-12 19:44:36'),
(1521, 16, 0xcfeeeae0e7e0f2fc20f1f2f0eeeae8, 'Y', '2011-06-12 19:44:36'),
(1606, 16, 0xcfeee8f1ea, 'Y', '2011-06-12 19:44:36'),
(1607, 16, 0xd1e1f0eef1e8f2fc, 'Y', '2011-06-12 19:44:36'),
(1608, 16, 0xd1e8edf2e0eaf1e8f1, 'Y', '2011-06-12 19:44:36'),
(1609, 16, '', 'Y', '2012-07-15 21:20:17'),
(1610, 16, '', 'Y', '2012-07-15 21:20:17'),
(1611, 16, 0xefeee4f1f2f0eeeae0, 'Y', '2011-06-12 19:44:36'),
(1612, 16, '', 'Y', '2012-07-15 21:20:17'),
(1613, 16, 0xede5e2e5f0edfbe920f0e0ede3, 'Y', '2011-06-12 19:44:36'),
(1614, 16, '', 'Y', '2012-07-15 21:20:17'),
(1617, 16, 0xc2f1e520f1f2f0e0edfb, 'Y', '2011-06-12 19:44:36'),
(1618, 16, '', 'Y', '2012-07-15 21:20:17'),
(1619, 16, 0xe0e1f1eeebfef2ede0ff, 'Y', '2011-06-12 19:44:36'),
(1620, 16, 0xebe5f2, 'Y', '2011-06-12 19:44:36'),
(1621, 16, 0xece5f1fff6e5e2, 'Y', '2011-06-12 19:44:36'),
(1622, 16, 0xede5e4e5ebfc, 'Y', '2011-06-12 19:44:36'),
(1623, 16, 0xe4ede5e9, 'Y', '2011-06-12 19:50:53'),
(1624, 16, 0xf7e0f1eee2, 'Y', '2011-06-12 19:50:53'),
(1626, 16, '', 'Y', '2012-07-15 21:20:17'),
(1627, 16, 0xe0e1f1eeebfef2ede0ff, 'Y', '2011-06-12 19:50:53'),
(1628, 16, 0xede520f7e8f1ebeee2eee9, 'Y', '2011-06-12 19:50:53'),
(1630, 16, 0xc2f1e5, 'Y', '2011-06-12 19:50:53'),
(1631, 16, 0xc4e0, 'Y', '2011-06-12 19:50:53'),
(1632, 16, 0xcde5f2, 'Y', '2011-06-12 19:50:53'),
(1633, 16, 0xc2f1e5, 'Y', '2011-06-12 19:50:53'),
(1634, 16, 0xc4e0, 'Y', '2011-06-12 19:50:53'),
(1635, 16, 0xcde5f2, 'Y', '2011-06-12 19:50:53'),
(1636, 16, '', 'Y', '2012-07-15 21:20:17'),
(1637, 16, 0xddeaf1efe5f0f2edfbe920f0e5e6e8ec, 'Y', '2011-06-12 19:50:53'),
(1638, 16, '', 'Y', '2012-07-15 21:20:17'),
(1639, 16, 0xc2fbe1e5f0e8f2e520eee4e8ed20e8ebe820ede5f1eaeeebfceaee20e8ebe820ede820eee4edeee3ee20fdebe5ece5edf2e0, 'Y', '2011-06-12 19:50:53'),
(1640, 16, 0xf1ebe8f8eaeeec20ecedeee3ee20f0e0e7e4e5ebe8f2e5ebe5e9, 'Y', '2011-06-12 19:50:53'),
(1641, 16, 0xede5eee1f5eee4e8ecee20ede520ece5ede5e5202531247320f1e8ece2eeebeee220e4ebff20e8f1efeeebfce7eee2e0ede8ff20f2e5eaf1f2e020f120ede0f7e0ebfcedeee920efeee4f1f2e0edeee2eaeee9205b253224735d, 'Y', '2011-06-12 19:50:53'),
(1642, 16, 0xede5e4eeeff3f1f2e8ecee20eae0ea20eff0e5f4e8eaf1, 'Y', '2011-06-12 19:50:53'),
(1643, 16, 0xede5e2e5f0edfbe920f4eef0ece0f220e4e0f2fb, 'Y', '2011-06-12 19:50:53'),
(1644, 16, 0xf1eee4e5f0e6e8f220ede5e2e5f0edf3fe20e4e0f2f3, 'Y', '2011-06-12 19:50:53'),
(1645, 16, 0xede5e2e5f0edfbe920e4e5edfc, 'Y', '2011-06-12 19:50:53'),
(1646, 16, 0xe8f1efeeebfce7f3e5f220ede5e2e5f0edf3fe20f0e0f1f1f2e0edeee2eaf320eae0e2fbf7e5ea, 'Y', '2011-06-12 19:50:53'),
(1647, 16, 0xede5e2e5f0edfbe920584d4c2dfdebe5ece5edf220e220efeee7e8f6e8e82023, 'Y', '2011-06-12 19:50:53'),
(1648, 16, 0xede5e2e5f0edfbe920584d4c2df2fde320e220efeee7e8f6e8e82023, 'Y', '2011-06-12 19:50:53'),
(1650, 16, 0xede5e2e5f0edfbe920584d4c2d656e642df2fde320e220efeee7e8f6e8e82023, 'Y', '2011-06-12 19:50:53'),
(1737, 16, 0xece8edf3f2, 'Y', '2011-06-12 20:15:43'),
(1871, 16, 0xcfeee6e5f0f2e2eee2e0f2fc, 'Y', '2011-06-12 20:15:43'),
(1872, 16, 0xcfeee4e4e5f0e6e8f2e52044475320efeee6e5f0f2e2eee2e0ede8e5ec, 'Y', '2011-06-12 20:15:43'),
(1873, 16, 0xcfeee6e5f0f2e2eee2e0ede8e5, 'Y', '2011-06-12 20:15:43'),
(1875, 16, 0xcfeee6e5f0f2e2eee2e0ede8ff, 'Y', '2011-06-12 20:15:43'),
(1877, 16, 0xca20f1eee6e0ebe5ede8fe2c203520f4e5e2f0e0ebff203230303920e3eee4e020fdf2e020ece0f8e8ede020f1efe5ebe020f1e2eefe20efeef1ebe5e4edfefe20efe5f1edfe2c20f2e0ea20f7f2ee20ede0ec20efeef2f0e5e1eee2e0ebeef1fc20edeee2eee520f0e5f8e5ede8e52e20d7f2eee1fb20ecfb20eceee3ebe820e8f1efeeebfce7eee2e0f2fc20edeee2eee520eee1eef0f3e4eee2e0ede8e52c20ecfb20e4eee3eee2eef0e8ebe8f1fc20eee120eeefebe0f2e520e220ede5e1eeebfcf8eeec20f0e0e7ece5f0e5202832303020f8e2e5e4f1eae8f520eaf0eeed20e220ece5f1fff62c20eeeaeeebee20323020e5e2f0ee292e20ccfb20f1f7e8f2e0e5ec2c20f7f2ee20fdf2ee20266d646173683b20e5f9b820eef7e5edfc20f9e5e4f0eee520eff0e5e4ebeee6e5ede8e52e, 'Y', '2011-06-12 20:15:43'),
(1878, 16, 0xcfeefdf2eeecf320ecfb20eff0eef1e8ec20e2e0f120efeee6e5f0f2e2eee2e0f2fc20ede5e1eeebfcf8f3fe20f1f3ececf32c20ede0eff0e8ece5f02c20313020e8ebe820323020e5e2f0ee2c20f7f2eee1fb20ecfb20eceee3ebe820efeee4e4e5f0e6e8e2e0f2fc20f0e0e1eef2f320f1e5f0e2e5f0e020e1e5e720ebe8f7edfbf520f0e0f1f5eee4eee22e20c7e020ece5edfcf8e8e520f1f3ececfb20ecfb20e1f3e4e5ec20f1f2eeebfc20e6e520e1ebe0e3eee4e0f0edfb2e20cde0f8e020f6e5ebfc20266d646173683b20f1eee1f0e0f2fc20e4eef1f2e0f2eef7edee20e4e5ede5e32c20f7f2eee1fb20e7e0efebe0f2e8f2fc20e7e020f3f1ebf3e3e820ede520ece5ede5e520f7e5ec20e7e020f2f0e820e3eee4e02e0d0a0d0a202020202020202020203c703e0d0a20202020202020202020d120f3e2e0e6e5ede8e5ec2c0d0a0d0a202020202020202020203c703e0d0a202020202020202020c0e4ece8ede8f1f2f0e0f2eef0fb20444753, 'Y', '2011-06-12 20:15:43'),
(1879, 16, 0xd1ebe5e4f3fef9e0ff20f1f1fbebeae020efeee7e2eeebe8f220e2e0ec20efe5f0e5e9f2e820ede02050617950616c, 'Y', '2011-06-12 20:15:43'),
(1880, 16, 0xd1efe0f1e8e1ee20e7e020e2e0f8e520f9e5e4f0eee520efeee6e5f0f2e2eee2e0ede8e520ede020efeee4e4e5f0e6eaf320444753202121, 'Y', '2011-06-12 20:15:43'),
(1887, 16, 0xd3e2e0e6e0e5ecfbe520ebfee1e8f2e5ebe820e3ee210d0a3c703e20c220f2e5f7e5ede8e520efeef7f2e820f1e5ece820ebe5f2202832303039292c20447261676f6e20476f2053657276657220ebfee1e5e7edee0d0af0e0e7ece5f9e0ebf1ff20eff0eee2e0e9e4e5f0eeec2053616d7572616a4461746120f1eee2e5f0f8e5ededee20e1e5f1efebe0f2edee2e20ccfb20eef7e5edfc20e1ebe0e3eee4e0f0edfb20e8ec20e7e020e8f520efeee4e4e5f0e6eaf33b20f3f1ebf3e3e82c20eff0e5e4eef1f2e0e2ebffe5ecfbe520e8ece82c20e8ece5ebe820e4e5e9f1f2e2e8f2e5ebfcedee20e2e0e6edeee520e7ede0f7e5ede8e520e4ebff20f3f1efe5f5e0204447532e20d120f1e0eceee3ee20ede0f7e0ebe02044475320efeeeae0e7fbe2e0eb20f3f1f2eee9f7e8e2fbe920f0eef1f220e0eaf2e8e2edeef1f2e820e820ede5f1eaeeebfceaee20ebe5f220ede0e7e0e42053616d7572616a4461746120f1f2e0ebee20e7e0f2f0f3e4ede8f2e5ebfcedee20eee1e5f1efe5f7e8e2e0f2fc20ede0ec20f5eef1f2e8ede320e1e5f1efebe0f2edee2e20c1ebe0e3eee4e0f0ff20e2fbf1eeeaeee920e0eaf2e8e2edeef1f2e820ede02044475320ecfb20e8f1efeeebfce7eee2e0ebe820f1f0e5e4f1f2e2e020efebe0f2b8e6e5f1efeef1eee1edfbf520eaebe8e5edf2eee22c20f7f2eee1fb20efe5f0e5ede5f1f2e820ede0f820f1e5f0e2e5f020ede020eef2e4e5ebfcedf3fe20ece0f8e8edf32e20cde020d0eee6e4e5f1f2e2ee203230303720e3eee4e020ede0ec20f3f1f2f0eee8ebe820efe5f0e5e5e7e420ede020ede0f820f1eee1f1f2e2e5ededfbe920f1e5f0e2e5f02e, 'Y', '2011-06-12 20:15:43'),
(1629, 16, 0xeceee6e5f220e1fbf2fc2c20e2e0ec20edf3e6edee20e2fbe1f0e0f2fc20e0e1f1eeebfef2edf3fe, 'Y', '2011-06-12 20:24:59'),
(1651, 16, 0xede5e2e5f0edfbe920e0f2f0e8e1f3f220584d4c2df2fde3e020e220efeee7e8f6e8e82023, 'Y', '2011-06-12 20:24:59'),
(1371, 16, 0xc8e7e2e8ede8f2e52c20ede520ede0e9e4e5edee20eff0e8e3ebe0f8e5ede8e520ede020e8e3f0f32e20d3e6e520eff0e8edfff2ee3f, 'Y', '2011-06-12 21:09:21'),
(1373, 16, 0xc8e7e2e8ede8f2e52c20ede520ede0e9e4e5ed20efeeebf3f7e0f2e5ebfc20e2e0f8e5e3ee20f1eeeee1f9e5ede8ff2e20d3e1e5e4e8f2e5f1fc2c20f7f2ee20e8f1efeeebfce7f3e5f2e520eff1e5e2e4eeede8ec20efeeebfce7eee2e0f2e5ebff2c20e020ede520e5e3ee20efeeebedeee520e8ecff2e, 'Y', '2011-06-12 21:09:21'),
(1374, 16, 0xc8e7e2e8ede8f2e52c20e2eef8e5e4f8e8e920efeeebfce7eee2e0f2e5ebfc20e2fbe3ebffe4e8f220eae0ea20e8e7ece5ede8e2f8e8e9f1ff20e2ee20e2f0e5ecff20e0e2f2eef0e8e7e0f6e8e82e, 'Y', '2011-06-12 21:09:21'),
(1375, 16, 0xc8e7e2e8ede8f2e52c20e8f1efeeebfce7f3e5f2f1ff20ede5e2e5f0edfbe920eff1e5e2e4eeede8ec20efeeebfce7eee2e0f2e5ebff2e, 'Y', '2011-06-12 21:09:21'),
(1376, 16, 0xc8e7e2e8ede8f2e52c20ede5e2e5f0edfbe920eff1e5e2e4eeede8ec20efeeebfce7eee2e0f2e5ebff20e8f1efeeebfce7f3e5f2f1ff20e220eae0f7e5f1f2e2e520eff0eef2e8e2ede8eae02e, 'Y', '2011-06-12 21:09:21'),
(1377, 16, 0xc8e7e2e8ede8f2e52c20eff0eee1ebe5ece020eaeeedf4e8e3f3f0e0f6e8e820efeee8f1eaeee2eee3ee20f4e8ebfcf2f0e02e, 'Y', '2011-06-12 21:09:21'),
(1754, 16, 0xc8e7e2e8ede8f2e52c20e2fb20ede520eceee6e5f2e520e2eee9f2e820ede020f1e5f0e2e5f020eae0ea20e3eef1f2fc2e20c4e0ededfbe92049502de0e4f0e5f120e7e0e1ebeeeae8f0eee2e0ed20e0e4ece8ede8f1f2f0e0f2eef0e0ece82e, 'Y', '2011-06-12 21:09:21'),
(1756, 16, 0xc8e7e2e8ede8f2e52c20e2fb20ede520eceee6e5f2e520e7e0f0e5e3e8f1f2f0e8f0eee2e0f2fc20edeee2f3fe20f3f7b8f2edf3fe20e7e0efe8f1fc2e20c2e0f82049502de0e4f0e5f120e1fbeb20e7e0e1ebeeeae8f0eee2e0ed20e0e4ece8ede8f1f2f0e0f2eef0e0ece82e, 'Y', '2011-06-12 21:09:21'),
(1757, 16, 0xc7e0f0e5e3e8f1f2f0e8f0eee2e0f2fc20edeee2f3fe20f3f7b8f2edf3fe20e7e0efe8f1fc2c20ede5f1eceef2f0ff20ede02049502de1ebeeea2c20eceee6e5f220e0e4ece8ede8f1f2f0e0f2eef02e, 'Y', '2011-06-12 21:09:21'),
(1758, 16, 0xcfeee6e0ebf3e9f1f2e02c20e2e2e5e4e8f2e520f1e2eee920eff1e5e2e4eeede8ec20ede020447261676f6e476f53657276657220e820e2e0f820652d6d61696c2c20f7f2eee1fb20e2fbf1ebe0f2fc20e2e0ec20f1e2e5e4e5ede8ff20ee20e2f5eee4e520ede020f1e5f0e2e5f02e, 'Y', '2011-06-12 21:09:21'),
(1759, 16, 0x49502de1ebeeeae8f0eee2eae020e8f1efeeebfce7f3e5f2f1ff20f2eeebfceaee20e4ebff20e7e0f9e8f2fb20eef220ede5e4eeeff3f1f2e8ecee20e2e5e4f3f9e8f520f1e5e1ff20efeeebfce7eee2e0f2e5ebe5e92e, 'Y', '2011-06-12 21:09:21'),
(1760, 16, 0xcfeefdf2eeecf32c20efeee6e0ebf3e9f1f2e02c20f3eae0e6e8f2e52c20efeef7e5ecf320e2fb20e6e5ebe0e5f2e520eee1eee9f2e82049502de1ebeeeae8f0eee2eaf32c20e220efeeebe520eaeeecece5edf2e0f0e8e5e22e, 'Y', '2011-06-12 21:09:21'),
(1761, 16, 0xd2e0ec20e2fb20eceee6e5f2e520f2e0eae6e520e7e0e4e0f2fc20e8ece5fef9e8e5f1ff20f320e2e0f120e2eeeff0eef1fb2e, 'Y', '2011-06-12 21:09:21'),
(1762, 16, 0xc2f1e520efeeebff20e4eeebe6edfb20e1fbf2fc20e7e0efeeebede5edfb20e4ebff20e2fbefeeebede5ede8ff20e7e0eff0eef1e02e, 'Y', '2011-06-12 21:09:21'),
(1763, 16, 0xdf20eff0eef7b8eb20e820eff0e8edffeb203c6120687265663d22257322207461726765743d22646773544f53223ecff0e0e2e8ebe020efeee2e5e4e5ede8ff3c2f613e204447532e, 'Y', '2011-06-12 21:09:21'),
(1764, 16, 0xcef2eff0e0e2e8f2fc20e7e0eff0eef120ede020f0e5e3e8f1f2f0e0f6e8fe, 'Y', '2011-06-12 21:09:21'),
(1765, 16, 0xc8e7e2e8ede8f2e52c20e2fb20ede520eceee6e5f2e520e2f5eee4e8f2fc20ede020fdf2eef220f1e5f0e2e5f02e20c2e0f8e020f3f7b8f2ede0ff20e7e0efe8f1fc20e1ebeeeae8f0eee2e0ede020e0e4ece8ede8f1f2f0e0f2eef0e0ece820ede020f1ebe5e4f3fef9e5ec20eef1edeee2e0ede8e83a, 'Y', '2011-06-12 21:09:21'),
(1766, 16, 0xc8e7e2e8ede8f2e52c20e2fb20ede520eceee6e5f2e520e2f5eee4e8f2fc20ede020fdf2eef220f1e5f0e2e5f02e20c2e0f8e020f3f7b8f2ede0ff20e7e0efe8f1fc20e1ebeeeae8f0eee2e0ede020e0e4ece8ede8f1f2f0e0f2eef0e0ece82e, 'Y', '2011-06-12 21:09:21'),
(1767, 16, 0xc8e7e2e8ede8f2e52c20e2fb20ede520eceee6e5f2e520f0e5e4e0eaf2e8f0eee2e0f2fc20e2e0f8f320e1e8eee3f0e0f4e8fe2e20ddf2e020f4f3edeaf6e8ff20e1ebeeeae8f0eee2e0ede020e0e4ece8ede8f1f2f0e0f2eef0e0ece82e, 'Y', '2011-06-12 21:09:21'),
(1768, 16, 0xcfeee6e0ebf3e9f1f2e02c20eff0eef7f2e8f2e520cff0e0e2e8ebe020efeee2e5e4e5ede8ff20e820f3f1f2e0edeee2e8f2e520e3e0ebeef7eaf32c20e5f1ebe820eff0e8ede8ece0e5f2e520e8f52e, 'Y', '2011-06-12 21:09:21'),
(1769, 16, 0xc8e7e2e8ede8f2e52c20e2e0ec20ede520f0e0e7f0e5f8e5edee20eff0eef1ece0f2f0e8e2e0f2fc20e8ebe820efe8f1e0f2fc20e220fdf2eef220f4eef0f3ec2e, 'Y', '2011-06-12 21:09:21'),
(1563, 16, 0xcdeee2eef1f2e820444753, 'Y', '2011-06-12 21:15:00'),
(1725, 16, 0xcbe8f6e5ede7e8ff, 'Y', '2011-06-12 21:15:00'),
(1726, 16, '', 'Y', '2012-07-15 21:20:17'),
(1776, 16, 0xd3f1ebeee2e8ff20eff0e5e4eef1f2e0e2ebe5ede8ff20f3f1ebf3e3, 'Y', '2011-06-12 21:15:00'),
(1777, 16, 0xcff0e0e2e8ebe020efeee2e5e4e5ede8ff20e820cfeeebe8f2e8eae020eff0e8e2e0f2edeef1f2e8, 'Y', '2011-06-12 21:15:00'),
(1779, 16, 0xd0e5e4e0eaf2eef0fb20d7e0c2ee, 'Y', '2011-06-12 21:15:00'),
(1780, 16, 0xcceee4e5f0e0f2eef0fb20f4eef0f3ece0, 'Y', '2011-06-12 21:15:00'),
(1781, 16, 0xcceee4e5f0e0f2eef020f4eef0f3ece0, 'Y', '2011-06-12 21:15:00'),
(1853, 16, 0xd1ede0eff8eef2, 'Y', '2011-06-12 21:15:00'),
(1854, 16, 0xd1ede0eff8eef2fb20e8f1f5eee4edfbf520eaeee4eee2, 'Y', '2011-06-12 21:15:00'),
(1861, 16, 0xd1f2e0f0fbe520e2e5f0f1e8e8, 'Y', '2011-06-12 21:15:00'),
(1874, 16, 0xd3f1ebeee2e8ff20eff0e5e4eef1f2e0e2ebe5ede8ff20f3f1ebf3e320266d646173683b20cff0e0e2e8ebe020efeee2e5e4e5ede8ff20e820cfeeebe8f2e8eae020eff0e8e2e0f2edeef1f2e8, 'Y', '2011-06-12 21:15:00'),
(1860, 16, 0xcfe5f0e5e2eee420e4e0ededfbf5, 'Y', '2011-06-12 21:15:33'),
(1409, 16, 0xcfeee8f1ea20f1eeeee1f9e5ede8e9, 'Y', '2011-06-12 21:21:22'),
(1506, 16, 0xd2e8ef, 'Y', '2011-06-12 21:21:22'),
(1507, 16, 0xcfe0efeae0, 'Y', '2011-06-12 21:21:22'),
(1508, 16, 0xd2e8ef, 'Y', '2011-06-12 21:21:22'),
(1509, 16, 0xcde0eff0e0e2ebe5ede8e5, 'Y', '2011-06-12 21:21:22'),
(1510, 16, 0xcaeef0f0e5f1efeeede4e5edf2, 'Y', '2011-06-12 21:21:22'),
(1511, 16, 0xcaeeecf3, 'Y', '2011-06-12 21:21:22'),
(1512, 16, 0xcef220eaeee3ee, 'Y', '2011-06-12 21:21:22'),
(1513, 16, 0xd2e5ece0, 'Y', '2011-06-12 21:21:22'),
(1551, 16, 0xe7e0ece5f2eae820ede520e4eeebe6edfb20eff0e5e2fbf8e0f2fc2032353520f1e8ece2eeebeee2, 'Y', '2012-10-14 14:44:22'),
(1515, 16, 0xcce5f2eae0, 'Y', '2011-06-12 21:21:22'),
(1516, 16, 0xd1e2eeb8, 'Y', '2011-06-12 21:21:22'),
(1517, 16, 0xd1e5f0e2e5f0, 'Y', '2011-06-12 21:21:22'),
(1518, 16, 0xcaeeecf3, 'Y', '2011-06-12 21:21:22'),
(1519, 16, 0xcef220eaeee3ee, 'Y', '2011-06-12 21:21:22'),
(1585, 16, 0xcfeeeae0e7fbe2e0f2fc20f2eeebfceaee20efe5f0e2fbe520f1eeeee1f9e5ede8ff, 'Y', '2011-06-12 21:21:22'),
(1586, 16, 0xc2f1e5, 'Y', '2011-06-12 21:21:22'),
(1587, 16, 0xd1e2ffe7e0ededfbe520f120e8e3f0e0ece8, 'Y', '2011-06-12 21:21:22'),
(1588, 16, 0xcde5e8e3f0eee2fbe5, 'Y', '2011-06-12 21:21:22'),
(5787, 36, 0x2573206e7965722066656c6164c3a17373616c, 'Y', '2015-01-07 20:11:55'),
(6104, 36, 0x412066656c74c3b66c74c3b674742066c3a16a6c74206e656d2073696b6572c3bc6c74206d65676e7969746e6920617a206f6c766173c3a173686f7a2e, 'Y', '2015-01-07 20:11:55'),
(1590, 16, 0xe8f1eae0f2fc20eff1e5e2e4eeede8ec, 'Y', '2011-06-12 21:21:22'),
(1591, 16, 0xc2f1e5, 'Y', '2011-06-12 21:21:22'),
(1592, 16, 0xc2fbe1f0e0f2fc20efe0efeaf3, 'Y', '2011-06-12 21:21:22'),
(2965, 25, 0x496e666f726d61c89b6969206465737072652066756e63c89b696920616c6520736974652d756c7569, 'Y', '2015-01-02 17:50:36'),
(1594, 16, 0xcfeee8f1ea20f1eeeee1f9e5ede8ff, 'Y', '2011-06-12 21:21:22'),
(1595, 16, 0xcff0eef1eceef2f020efe0efeeea, 'Y', '2011-06-12 21:21:22'),
(1845, 16, 0x447261676f6e476f536572766572202844475329266d646173683b20fdf2ee20ece5f1f2ee2c20e3e4e520e2f1f2f0e5f7e0fef2f1ff20ebfee1e8f2e5ebe820e3ee20f1ee20e2f1e5e3ee20ece8f0e02c20f7f2eee1fb20e8e3f0e0f2fc20e820ede0f1ebe0e6e4e0f2fcf1ff20f5eef0eef8e8ece820efe0f0f2e8ffece820e220e3ee2e20ccfb20eeeff0e5e4e5ebe8ebe820ede5eaeef2eef0fbe520eef1edeee2edfbe520eff0e0e2e8ebe02c20f7f2eee1fb20f1e4e5ebe0f2fc2044475320e4f0f3e6e5ebfee1edfbec20e820f0e0e7e2e8e2e0fef9e8ecf1ff2e20c1eeebe5e520257320ede5f4eef0ece0ebfcedfbe920fdf2e8eae5f220447261676f6e27e020257320eceee6edee20ede0e9f2e820e220d7e0c2ee2e, 'Y', '2011-06-12 21:30:21'),
(1846, 16, 0x3c703eccfb20e7e0eff0e5f9e0e5ec3a203c756c3e2020203c6c693ec4e8f1eaf0e8ece8ede0f6e8eeededfbe52c20ede5eff0e8f1f2eee9edfbe520e8ebe820eef1eaeef0e1e8f2e5ebfcedfbe520e2fbf1eae0e7fbe2e0ede8ff2e203c6c693ed3e3f0eee7fb20e8ebe820eef1eaeef0e1ebe5ede8ff20e220e0e4f0e5f120f3f7e0f1f2ede8eaeee220e8ebe820e0e4ece8ede8f1f2f0e0f2eef0eee22e203c6c693ecfeef0edeee3f0e0f4e8f7e5f1eae8e520f2e5eaf1f2fb20e8ebe820f1f1fbebeae820ede020efeef0edeee3f0e0f4e8f7e5f1eae8e520e2e5e12df1e0e9f2fb2e203c6c693ecbfee1f3fe20f0e5eaebe0ecf32c20eaeef2eef0e0ff20ede520e1fbebe020eff0e5e4e2e0f0e8f2e5ebfcedee20f0e0e7f0e5f8e5ede02e203c6c693ecbfee1eee520efeee2e5e4e5ede8e52c20eff0e8e7ede0e2e0e5eceee520ede5e7e0eaeeededfbec20e220d8e2e5f6e8e820e8ebe820e220f1f2f0e0ede520e2e0f8e5e3ee20eff0eee6e8e2e0ede8ff2e203c2f756c3e, 'Y', '2011-06-12 21:35:37'),
(1847, 16, 0x3c703ec220f1ebf3f7e0e520ede0f0f3f8e5ede8ff20e2e0ece820eae0eaeee3ee2debe8e1ee20e8e720ede0f8e8f520eff0e0e2e8eb20efeee2e5e4e5ede8ff20ecfb20eef1f2e0e2ebffe5ec20e7e020f1eee1eee920eff0e0e2ee20eff0e8ede8ece0f2fc20ece5f0fb20efee20f1e2eee5ecf320f3f1eceef2f0e5ede8fe2c20e220e7e0e2e8f1e8eceef1f2e820eef220eaeeedeaf0e5f2edeee920f1e8f2f3e0f6e8e82e20ceede820eceee3f3f220e2eaebfef7e0f2fc20f3e4e0ebe5ede8e520f2e5eaf1f2eee22c20eee3f0e0ede8f7e5ede8e520ede020e8f1efeeebfce7eee2e0ede8e520ede5eaeef2eef0fbf520f4f3edeaf6e8e92c20e1ebeeeae8f0eee2eaf320e4eef1f2f3efe020ea20f1e0e9f2f32044475320e8ebe820eff0e5eaf0e0f9e5ede8e520e4e5e9f1f2e2e8ff20e2e0f8e5e920f3f7b8f2edeee920e7e0efe8f1e82e, 'Y', '2011-06-12 21:39:24'),
(1844, 16, 0xcff0e0e2e8ebe020efeee2e5e4e5ede8ff, 'Y', '2011-06-12 21:40:08'),
(1848, 16, 0xcfeeebe8f2e8eae020eff0e8e2e0f2edeef1f2e8, 'Y', '2011-06-12 21:40:24'),
(1851, 16, 0xc4e0f2e020eff0e8edfff2e8ff, 'Y', '2011-06-12 21:41:00'),
(1849, 16, 0x3c703eccfb20ede8eaeeecf320ede520f1eeeee1f9e8ec20ebe8f7edf3fe20e8edf4eef0ece0f6e8fe20ee20e2e0f12028e0e4f0e5f120fdebe5eaf2f0eeededeee920efeef7f2fb2c2049502de0e4f0e5f1e020e820f1eeeee1f9e5ede8ff292c20ede0f5eee4fff9f3fef1ff20ede020447261676f6e476f5365727665722c20e1e5e720e2e0f8e5e3ee20ffe2edeee3ee20f0e0e7f0e5f8e5ede8ff20ebe8e1ee20e7e0eff0eef1e020eef0e3e0edeee220eef5f0e0edfb20eff0e0e2eeefeef0ffe4eae02e, 'Y', '2011-06-12 21:44:44'),
(1850, 16, 0x3c703ec2fb20f1e0ece820ede5f1b8f2e520eef2e2e5f2f1f2e2e5ededeef1f2fc20e7e020f1e2eee820e4e5e9f1f2e2e8ff20ede02044475320e820e8edf4eef0ece0f6e8fe2c20eaeef2eef0f3fe20f0e0e7ece5f1f2e8ebe820ede020f1e0e9f2e520e220e2e0f8e5e920e1e8eee3f0e0f4e8e82c20f4eef0f3ece520e8ebe820e220f1eeeee1f9e5ede8fff520e4f0f3e3e8ec20efeeebfce7eee2e0f2e5ebffec2e, 'Y', '2011-06-12 21:46:39'),
(1852, 16, 0xcde0f1f2eefff9e8e520cff0e0e2e8ebe020447261676f6e476f53657276657220e2fbeff3f9e5edfb20313420e4e5eae0e1f0ff203230303820e3eee4e02e20ccfb20eef1f2e0e2ebffe5ec20e7e020f1eee1eee920eff0e0e2ee20e8e7ece5edfff2fc20ede0f1f2eefff9e8e520eff0e0e2e8ebe020e2f0e5ecff20eef220e2f0e5ece5ede82e20cbfee1fbe520e8e7ece5ede5ede8ff20e1f3e4f3f220eee1faffe2ebe5edfb20e2203c686f6d6520666f72756d2f6c6973742e7068703f666f72756d3d313ed4eef0f3ece520edeee2eef1f2e5e93c2f686f6d653e2e, 'Y', '2011-06-12 21:48:37'),
(1843, 16, 0xcff0e0e2e8ebe020447261676f6e476f536572766572, 'Y', '2011-06-12 21:49:11'),
(1120, 25, 0x706572696f61646520c3ae6e20706c75732e, 'Y', '2011-06-23 11:15:00'),
(1505, 25, 0x48616e6469636170206164656376617420286b6f6d692063616c63756c61742064652073697374656d29, 'Y', '2011-06-23 11:17:43'),
(1218, 25, 0x46756e64616c, 'Y', '2011-06-23 11:26:28'),
(1224, 25, 0x54657874, 'Y', '2011-06-23 11:29:53'),
(1219, 25, 0x526fc59f75, 'Y', '2011-06-23 11:31:38'),
(1220, 25, 0x5665726465, 'Y', '2011-06-23 11:31:53'),
(1221, 25, 0x416c626173747275, 'Y', '2011-06-23 11:32:18'),
(1223, 25, 0x416669c59f65617ac48320c3ae6e20706167696e6120646520737461747573, 'Y', '2011-06-23 11:34:07'),
(1226, 25, 0x536368696d62c483, 'Y', '2011-06-23 11:36:05'),
(1575, 25, 0x43756c6f61726561206a7563c483746f72756c7569, 'Y', '2011-06-23 11:50:39'),
(1576, 25, 0x546f74616c, 'Y', '2011-06-23 11:51:08'),
(1577, 25, 0x50726f63656e7420646520706172746964652063c3a2c59f746967617465, 'Y', '2011-06-23 12:00:09'),
(1578, 25, 0x506172746964652063c3a2c59f746967617465203a207069657264757465, 'Y', '2011-06-23 12:04:26'),
(1579, 25, 0x506172746964652063c3a2c899746967617465203a207069657264757465206c612053636f72, 'Y', '2011-06-23 12:04:26'),
(1580, 25, 0x506172746964652063c3a2c59f746967617465203a207069657264757465207072696e204162616e646f6e, 'Y', '2011-06-23 12:04:26'),
(1581, 25, 0x506172746964652063c3a2c59f746967617465203a207069657264757465206c612054696d70, 'Y', '2011-06-23 12:04:26'),
(1582, 25, 0x52656d697a65, 'Y', '2011-06-23 12:04:26'),
(1583, 25, 0x506172746964652063752068616e6469636170, 'Y', '2011-06-23 12:04:26'),
(1584, 25, 0x48616e6469636170206d6178696d, 'Y', '2011-06-23 12:19:48'),
(1574, 25, 0x536368696d62c48320726f6c756c206164766572736172756c7569, 'Y', '2011-06-23 12:25:38'),
(1475, 25, 0x54696d702072c4836d6173, 'Y', '2011-06-23 14:20:23'),
(1570, 25, 0x5374617469737469636120706172746964656c6f722070656e747275207574696c697a61746f72756c202573, 'Y', '2011-06-23 14:26:21'),
(1409, 25, 0x43617574c483206d6573616a65, 'Y', '2011-06-23 14:30:01'),
(1594, 25, 0x43c4837574617265206d6573616a65, 'Y', '2011-06-23 14:30:53'),
(1592, 25, 0x416c656765c5a36920646f736172656c65, 'Y', '2011-06-23 14:51:35'),
(1586, 25, 0x546f617465, 'Y', '2011-06-23 15:23:10'),
(1587, 25, 0x4c65676174652064652070617274696465, 'Y', '2011-06-23 16:03:44'),
(1588, 25, 0x4e656c65676174652064652070617274696465, 'Y', '2011-06-23 16:04:21'),
(1585, 25, 0x416669c59f65617ac48320646f6172206d6573616a656c6520696e69c5a369616c65, 'Y', '2011-06-23 16:11:05'),
(5786, 36, 0x2573206e796572206964c59174c3ba6c6cc3a970c3a97373656c, 'Y', '2015-01-07 20:11:55'),
(1508, 25, 0x546970, 'Y', '2011-06-23 16:28:08'),
(1509, 25, 0x4469726563c5a36965, 'Y', '2011-06-23 17:01:10'),
(1591, 25, 0x546f617465, 'Y', '2011-06-23 17:07:01'),
(1518, 25, 0x43c483747265, 'Y', '2011-06-23 17:07:29'),
(1516, 25, 0x457520c3ae6e73756d69, 'Y', '2011-06-23 17:11:24'),
(6218, 40, 0x456e766961722065207065726d616e65636572, 'Y', '2014-12-31 22:30:18'),
(1595, 25, 0x52c48373666f6965c59f746520646f736172656c65, 'Y', '2011-06-23 17:20:25'),
(1415, 25, '', 'Y', '2012-08-17 10:38:03'),
(1416, 25, '', 'Y', '2012-08-17 10:38:03'),
(1438, 25, '', 'Y', '2012-08-17 10:38:03'),
(1439, 25, '', 'Y', '2012-08-17 10:38:03'),
(1441, 25, 0x53636f72, 'Y', '2011-06-23 18:18:54'),
(1430, 25, 0x436f6e74, 'Y', '2011-06-23 18:29:26'),
(498, 25, 0x4465206c61, 'Y', '2011-06-23 18:40:51'),
(499, 25, 0x50c3a26ec483206c61, 'Y', '2011-06-23 18:41:26'),
(1493, 25, 0x4f726963617265, 'Y', '2011-07-06 13:42:18'),
(1617, 25, 0x546f61746520c5a3c48372696c65, 'Y', '2011-07-06 13:44:30'),
(1782, 5, 0x4e4f54453a204c612076697375616c69736174696f6e20636f6d706ce8746520646573207061727469657320657374207061722064e96661757420726573747265696e746520617578202573206465726e696572287329206a6f75722873292e2043656c61207065757420ea747265206d6f64696669e92064616e73206c652066696c74726520706f7572205b25735d2e, 'Y', '2011-10-25 14:01:57'),
(1548, 5, 0x436174e9676f726965732073797374e86d6573, 'Y', '2011-10-26 11:36:53'),
(1555, 5, 0x436174e9676f726965732073797374e86d6573, 'Y', '2011-10-26 12:06:49'),
(1560, 5, 0x43686572636865722064616e73206c657320636174e9676f726965732073797374e86d6573, 'Y', '2011-10-26 11:36:53'),
(1691, 5, 0x496c207920612064657578206de974686f6465733a3c62723e0d0a3c6f6c3e0d0a3c6c693e537569767265206c65206c69656e203c686f6d6520656469745f636f6e746163742e7068703e416a6f7574657220756e206e6f757665617520636f6e746163743c2f686f6d653e206465206c61203c686f6d65206c6973745f636f6e74616374732e7068703e706167652064657320636f6e74616374733c2f686f6d653e2e20456e7472657220756e2070736575646f6e796d652076616c696465206574206c65203c693e2256e9726966696572223c2f693e2e0d0a3c6c693e416c6c657220737572206c612070616765206465206c277574696c697361746575722071756520766f757320766f756c657a20616a6f7574657220657420737569767265206c65206c69656e203c693e22416a6f7574657220636f6d6d6520636f6e74616374223c2f693e2e20536920766f7573206176657a2064e96ae020616a6f7574e920636574207574696c697361746575722c206c65206c69656e2064657669656e74203c693e22c96469746572206c6520636f6e74616374223c2f693e2e0d0a3c2f6f6c3e0d0a0d0a4163746976657a206c657320636174e9676f726965732073797374e86d6573206574207574696c697361746575727320646520766f7472652063686f697820657420e976656e7475656c6c656d656e7420616a6f7574657a20756e65206e6f7465207465787475656c6c6520706f757220636574207574696c697361746575722c20707569732070726573736572206c6520626f75746f6e203c693e22456e726567697374726572206c6520636f6e74616374223c2f693e20706f7572206c27616a6f7574657220766f747265206c697374652e0d0a3c756c3e0d0a3c6c693e3c623e53797374656d2063617465676f726965733c2f623e206861766520696e666c75656e6365206f6e2067616d657320616e64206d657373616765733a0d0a20203c756c3e0d0a20203c6c693e3c693e486964652077616974696e67726f6f6d2067616d65733a3c2f693e20486964652067616d652d6f666665727320696e207468652077616974696e67726f6f6d206f66206365727461696e207573657220666f7220746865207375697461626c652d766965772e205468652067616d652d6f66666572206973207374696c6c2073686f776e20666f722074686520616c6c2d67616d6573206c6973742e0d0a20203c6c693e3c693e50726f746563742077616974696e67726f6f6d2067616d65733a3c2f693e2050726576656e747320757365722066726f6d206a6f696e696e6720796f75722067616d657320696e207468652077616974696e6720726f6f6d0d0a20203c6c693e3c693e52656a656374206d657373616765733a3c2f693e2052656a656374206d657373616765732073656e7420746f20796f7520627920636f6e746163742d757365720d0a20203c6c693e3c693e52656a65637420696e7669746174696f6e733a3c2f693e2052656a6563742067616d6520696e7669746174696f6e732073656e7420746f20796f7520627920636f6e746163742d757365720d0a20203c2f756c3e0d0a0d0a3c6c693e3c623e557365722063617465676f726965733c2f623e2068656c707320696e2063617465676f72697a696e6720636f6e746163742d75736572733a0d0a20203c756c3e0d0a20203c6c693e3c693e42756464793a3c2f693e20676f6f6420667269656e640d0a20203c6c693e3c693e467269656e643a3c2f693e20667269656e642d6c696b650d0a20203c6c693e3c693e53747564656e743a3c2f693e2073747564656e7420636f6e746163740d0a20203c6c693e3c693e546561636865723a3c2f693e207465616368657220636f6e746163740d0a20203c6c693e3c693e46616e3a3c2f693e20776f727368697070656420636f6e746163740d0a20203c6c693e3c693e54726f6c6c3a3c2f693e206d61726b20636f6e746163742d757365722061732074726f6c6c2028666f7220776861746576657220726561736f6e290d0a20203c6c693e3c693e4447532d437265773a3c2f693e20636f6e7461637420737570706f7274696e672044475320696e20736f6d65207761790d0a20203c6c693e3c693e4d697363656c6c616e656f75733a3c2f693e20617320697420686173206265656e2064656369646564206e6f7420746f2070726f7669646520637573746f6d697a61626c6520757365722063617465676f726965732c20796f752063616e2075736520746869732063617465676f727920746f20616c6c6f7720616c6c206b696e64206f662063617465676f72697a6174696f6e206279207573696e67206b6579776f726473207769746820612073796e74617820796f75206c696b6520696e20746865204e6f7465732d6669656c6420796f752063616e2073656172636820666f72206f6e2074686520636f6e746163742d6c69737420706167652e0d0a20203c2f756c3e0d0a3c2f756c3e, 'Y', '2011-10-26 11:43:30'),
(1466, 5, 0x416a6f757465722fe96469746572206c6520636f6e74616374, 'Y', '2011-10-26 12:05:37'),
(1469, 5, 0x456e766f79657220756e206d6573736167657220617520636f6e74616374, 'Y', '2011-10-26 12:05:37'),
(1470, 5, 0x496e7669746572206c6520636f6e74616374, 'Y', '2011-10-26 12:05:37'),
(1471, 5, 0x416a6f7574657220756e206e6f757665617520636f6e74616374, 'Y', '2011-10-26 12:05:37'),
(1476, 5, 0xc96469746572206c6520636f6e74616374, 'Y', '2011-10-26 12:05:37'),
(1477, 5, 0x416a6f7574657220756e20636f6e74616374, 'Y', '2011-10-26 12:05:37'),
(1540, 5, 0x4a65206e652070657578206d27616a6f7574657220636f6d6d6520636f6e74616374, 'Y', '2011-10-26 12:05:37'),
(1542, 5, 0x436f6e7461637420656e6c6576e921, 'Y', '2011-10-26 12:05:37'),
(1543, 5, 0x436f6e7461637420656e72656769737472e921, 'Y', '2011-10-26 12:05:37'),
(1544, 5, 0x52657469726572206c6520636f6e74616374, 'Y', '2011-10-26 12:05:37'),
(1545, 5, 0xc96469746572206c6520636f6e74616374, 'Y', '2011-10-26 12:05:37'),
(1546, 5, 0x56e9726966696572206c6520636f6e74616374, 'Y', '2011-10-26 12:05:37'),
(1547, 5, 0x52657469726572206c6520636f6e74616374, 'Y', '2011-10-26 12:05:37'),
(1552, 5, 0x456e726567697374726572206c6520636f6e74616374, 'Y', '2011-10-26 12:05:37'),
(1553, 5, 0x566f6972206c657320636f6e7461637473, 'Y', '2011-10-26 12:05:37'),
(1562, 5, 0x4c697374652064657320636f6e7461637473, 'Y', '2011-10-26 12:05:37'),
(127, 8, 0xbd73bfe8, 'N', '2012-01-05 15:18:26'),
(128, 8, 0xa9b9a457, 'Y', '2012-01-05 15:18:26'),
(129, 8, 0xa9b9a455, 'Y', '2012-01-05 15:18:26'),
(1561, 10, 0xd3c3bba7b7d6c0e0, 'Y', '2012-01-08 18:36:55'),
(1549, 8, 0xa5cea4e1a4c0c3fe, 'Y', '2012-01-08 18:37:21'),
(1556, 8, 0xa5cea4e1a4c0c3fe, 'Y', '2012-01-08 18:37:21'),
(1561, 8, 0xa5cea4e1a4c0c3fe, 'Y', '2012-01-08 18:37:21'),
(1549, 34, 0xe794a8e688b6e58886e9a19e, 'Y', '2012-01-08 18:37:47'),
(1556, 34, 0xe794a8e688b6e58886e9a19e, 'Y', '2012-01-08 18:37:47'),
(1561, 34, 0xe794a8e688b6e58886e9a19e, 'Y', '2012-01-08 18:37:47'),
(1550, 34, 0xe8a8bbe8a898, 'Y', '2012-01-08 18:38:48'),
(1557, 34, 0xe8a8bbe8a898, 'Y', '2012-01-08 18:38:48'),
(1550, 8, 0xb5f9b04f, 'Y', '2012-01-08 18:40:08'),
(1551, 8, 0xb5f9b04fa4a3b16fb657b94c323535ad5ea4e5a672a4b8, 'Y', '2012-01-15 07:34:49'),
(1557, 8, 0xb5f9b04f, 'Y', '2012-01-08 18:40:08'),
(1551, 34, 0xe8a8bbe8a898e4b88de5be97e8b685e9818e323535e88bb1e69687e5ad97e58583, 'Y', '2012-01-15 07:35:03'),
(1550, 10, 0xd7a2bcc7, 'Y', '2012-01-08 18:41:50'),
(1557, 10, 0xd7a2bcc7, 'Y', '2012-01-08 18:41:50'),
(1550, 33, 0xe6b3a8e8aeb0, 'Y', '2012-01-08 18:42:18'),
(1557, 33, 0xe6b3a8e8aeb0, 'Y', '2012-01-08 18:42:18'),
(2277, 25, 0x556c74696d61206d6f6469666963617265, 'Y', '2012-09-18 10:34:28'),
(2093, 25, 0x437265617265, 'Y', '2012-09-18 10:33:47'),
(1654, 25, 0x446573637269657265, 'Y', '2012-09-18 10:33:47'),
(1547, 33, 0xe588a0e999a4, 'Y', '2012-01-08 18:48:12'),
(1547, 10, 0xc9beb3fd, 'Y', '2012-01-08 18:48:00'),
(1547, 8, 0xa752b0a3, 'Y', '2012-01-08 18:47:36'),
(1547, 34, 0xe588aae999a4, 'Y', '2012-01-08 18:47:23'),
(1562, 33, 0xe88194e7bb9ce5908de58d95, 'Y', '2012-01-08 18:49:45'),
(1562, 10, 0xc1aac2e7c3fbb5a5, 'Y', '2012-01-08 18:50:02'),
(1562, 34, 0xe881afe7b5a1e5908de596ae, 'Y', '2012-01-08 18:50:49'),
(1483, 34, 0xe5b180e695b8, 'Y', '2012-01-08 18:53:12'),
(1483, 10, 0xbed6cafd, 'Y', '2012-01-08 18:53:46'),
(1483, 33, 0xe5b180e695b0, 'Y', '2012-01-08 18:53:57'),
(1498, 34, 0xe58299e8a8bb, 'Y', '2012-01-08 18:56:04'),
(1498, 10, 0xb1b8d7a2, 'Y', '2012-01-08 18:57:02'),
(1498, 33, 0xe5a487e6b3a8, 'Y', '2012-01-08 18:57:38'),
(1499, 33, 0xe7b1bbe59e8b, 'Y', '2012-01-08 18:58:56'),
(1506, 33, 0xe7b1bbe59e8b, 'Y', '2012-01-08 18:58:56'),
(1508, 33, 0xe7b1bbe59e8b, 'Y', '2012-01-08 18:58:56'),
(1499, 10, 0xc0e0d0cd, 'Y', '2012-01-08 18:59:22'),
(1506, 10, 0xc0e0d0cd, 'Y', '2012-01-08 18:59:22'),
(1508, 10, 0xc0e0d0cd, 'Y', '2012-01-08 18:59:22'),
(1499, 34, 0xe9a19ee59e8b, 'Y', '2012-01-08 19:00:20'),
(1506, 34, 0xe9a19ee59e8b, 'Y', '2012-01-08 19:00:20'),
(1508, 34, 0xe9a19ee59e8b, 'Y', '2012-01-08 19:00:20'),
(1502, 34, 0xe69982e99990, 'Y', '2012-01-08 19:04:19'),
(1502, 10, 0xcab1cfde, 'Y', '2012-01-08 19:04:48'),
(1502, 33, 0xe697b6e99990, 'Y', '2012-01-08 19:05:02'),
(1430, 10, 0xd5cabac5, 'Y', '2012-01-08 19:08:12'),
(1430, 33, 0xe5b890e58fb7, 'Y', '2012-01-08 19:08:31'),
(1419, 33, 0xe9bb91e696b9e5bc80e5a78be7ad89e7baa7, 'Y', '2012-01-08 19:13:01'),
(1423, 33, 0xe5bc80e799bde696b9e5a78be7ad89e7baa7, 'Y', '2012-01-08 19:13:01'),
(1425, 33, 0xe9bb91e696b9e7bb93e69d9fe7ad89e7baa7, 'Y', '2012-01-08 19:13:01'),
(1427, 33, 0xe799bde696b9e7bb93e69d9fe7ad89e7baa7, 'Y', '2012-01-08 19:13:01'),
(2693, 6, 0x47726f656e6c616e646961, 'Y', '2015-06-18 20:27:45'),
(1433, 33, 0xe7ad89e7baa7, 'Y', '2012-01-08 19:13:01'),
(2682, 6, 0x4272756ee969, 'Y', '2015-06-17 05:33:58'),
(1523, 33, 0xe7ad89e7baa7e58e86e58fb2e59bbe, 'Y', '2012-01-08 19:13:01'),
(1419, 10, 0xbadab7bdbfaacabcb5c8bcb6, 'Y', '2012-01-08 19:15:54'),
(1423, 10, 0xb0d7b7bdbfaacabcb5c8bcb6, 'Y', '2012-01-08 19:15:54'),
(1425, 10, 0xbadab7bdbde1caf8b5c8bcb6, 'Y', '2012-01-08 19:15:54'),
(1427, 10, 0xb0d7b7bdbde1caf8b5c8bcb6, 'Y', '2012-01-08 19:15:54'),
(2725, 6, 0x4665646572616369f36e20646520506c616e657461732e, 'Y', '2015-06-18 20:31:16'),
(2692, 6, '', 'Y', '2015-06-18 20:27:45'),
(1433, 10, 0xb5c8bcb6, 'Y', '2012-01-08 19:15:54'),
(1523, 10, 0xb5c8bcb6c0facab7cdbc, 'Y', '2012-01-08 19:15:54'),
(1437, 10, 0xb4f3d0a1, 'Y', '2012-01-08 19:17:01'),
(1443, 33, 0xe8af84e7ad89, 'Y', '2012-01-08 19:18:55'),
(1443, 10, 0xc6c0b5c8, 'Y', '2012-01-08 19:19:29'),
(1447, 10, 0xd6dcc4a9, 'Y', '2012-01-08 19:22:30'),
(1447, 33, 0xe591a8e69cab, 'Y', '2012-01-08 19:22:51'),
(5412, 11, 0x53474620746f65766f6567656e, 'Y', '2016-07-27 19:38:22'),
(1446, 10, 0xc9cfb4cecab9d3c3, 'Y', '2012-01-08 19:28:34'),
(1490, 10, 0xc9cfb4cecab9d3c3, 'Y', '2012-01-08 19:28:34'),
(1446, 33, 0xe4b88ae6aca1e4bdbfe794a8, 'Y', '2012-01-08 19:28:51'),
(1490, 33, 0xe4b88ae6aca1e4bdbfe794a8, 'Y', '2012-01-08 19:28:51'),
(1480, 33, 0xe59bbde5aeb6, 'Y', '2012-01-08 19:29:41'),
(1614, 33, 0xe59bbde5aeb6, 'Y', '2012-01-08 19:29:41'),
(1480, 10, 0xb9fabcd2, 'Y', '2012-01-08 19:30:03'),
(1614, 10, 0xb9fabcd2, 'Y', '2012-01-08 19:30:03'),
(1479, 10, 0xd0d5c3fb, 'Y', '2012-01-08 19:31:18'),
(1479, 33, 0xe5a793e5908d, 'Y', '2012-01-08 19:31:41'),
(1467, 10, 0xced2b5c4b6d4cad6, 'Y', '2012-01-08 19:34:33'),
(1467, 33, 0xe68891e79a84e5afb9e6898b, 'Y', '2012-01-08 19:34:45'),
(1391, 10, 0xd7eeb6e0d0d0cafd, 'Y', '2012-01-14 08:09:22'),
(1391, 33, 0xe69c80e5a49ae8a18ce695b0, 'Y', '2012-01-14 08:09:38'),
(1382, 8, 0xb67da96c, 'Y', '2012-01-08 23:10:37'),
(1382, 10, 0xbfaacabc, 'Y', '2012-01-08 23:11:28'),
(1382, 33, 0xe5bc80e5a78b, 'Y', '2012-01-08 23:11:41'),
(1392, 10, 0xd1a1d4f1bdcfb5cdcafdc4bfbfc9b0efd6fab7fecef1c6f7a3a8c7ebbfb4b3a3bcfbcecacce2a3a9, 'Y', '2012-01-14 06:14:08'),
(1392, 33, 0xe98089e68ba9e8be83e4bd8ee695b0e79baee58fafe5b8aee58aa9e69c8de58aa1e599a8efbc88e8afb7e79c8be5b8b8e8a781e997aee9a298efbc89, 'Y', '2012-01-14 06:20:34'),
(1392, 34, 0xe981b8e69387e8bc83e4bd8ee695b8e79baee58fafe5b9abe58aa9e4bcbae69c8de599a8efbc88e8ab8be79c8be5b8b8e8a68be5958fe9a18cefbc89, 'Y', '2012-01-14 06:21:06'),
(1886, 8, 0xc1f4c2c3abdda7bd, 'Y', '2012-01-14 06:31:57'),
(1886, 34, 0xe99ab1e8978fe5be85e5b180, 'Y', '2012-01-14 06:32:16'),
(1886, 10, 0xd2feb2d8b4fdbed6, 'Y', '2012-01-14 06:32:47'),
(1886, 33, 0xe99a90e8978fe5be85e5b180, 'Y', '2012-01-14 06:33:06'),
(1596, 33, 0xe99990e588b6e5be85e5b180, 'Y', '2012-01-14 06:34:54'),
(1596, 10, 0xcfded6c6b4fdbed6, 'Y', '2012-01-14 06:35:07'),
(1596, 8, 0xadada8eeabdda7bd, 'Y', '2012-01-14 06:35:21'),
(1596, 34, 0xe99990e588b6e5be85e5b180, 'Y', '2012-01-14 06:35:36'),
(1597, 34, 0xe68b92e7b595e694b6e4bfa1, 'Y', '2012-01-14 06:36:35'),
(1597, 8, 0xa9dab5b4a6acab48, 'Y', '2012-01-14 06:36:50'),
(1597, 10, 0xbedcbef8cad5d0c5, 'Y', '2012-01-14 06:37:24'),
(1597, 33, 0xe68b92e7bb9de694b6e4bfa1, 'Y', '2012-01-14 06:37:37'),
(1598, 33, 0xe68b92e7bb9de98280e8afb7, 'Y', '2012-01-14 06:38:18'),
(1598, 10, 0xbedcbef8d1fbc7eb, 'Y', '2012-01-14 06:38:29'),
(1598, 8, 0xa9dab5b4c1dcbdd0, 'Y', '2012-01-14 06:38:42'),
(1598, 34, 0xe68b92e7b595e98280e8ab8b, 'Y', '2012-01-14 06:38:57'),
(1599, 34, 0xe5a5bde58f8b, 'Y', '2012-01-14 06:39:48'),
(1599, 8, 0xa66ea4cd, 'Y', '2012-01-14 06:40:02'),
(1599, 10, 0xbac3d3d1, 'Y', '2012-01-14 06:40:22'),
(1599, 33, 0xe5a5bde58f8b, 'Y', '2012-01-14 06:40:35'),
(1600, 33, 0xe8aea4e8af86, 'Y', '2012-01-29 05:36:39'),
(1600, 10, 0xc8cfcab6, 'Y', '2012-01-29 05:36:18'),
(1600, 8, 0xbb7bc3d1, 'Y', '2012-01-29 05:35:00'),
(1600, 34, 0xe8aa8de8ad98, 'Y', '2012-01-29 05:35:22'),
(1601, 34, 0xe5adb8e7949f, 'Y', '2012-01-14 06:42:28'),
(1601, 8, 0xbec7a5cd, 'Y', '2012-01-14 06:42:43'),
(1601, 10, 0xd1a7c9fa, 'Y', '2012-01-14 06:43:07'),
(1601, 33, 0xe5ada6e7949f, 'Y', '2012-01-14 06:43:21'),
(1602, 33, 0xe88081e5b888, 'Y', '2012-01-14 06:43:48'),
(1602, 10, 0xc0cfcaa6, 'Y', '2012-01-14 06:44:02'),
(1602, 8, 0xa6d1ae76, 'Y', '2012-01-14 06:44:16'),
(1602, 34, 0xe88081e5b8ab, 'Y', '2012-01-14 06:44:31'),
(1603, 34, 0xe6a38be8bfb7, 'Y', '2012-01-14 06:45:18'),
(1603, 8, 0xb4d1b067, 'Y', '2012-01-14 06:45:32'),
(1603, 10, 0xc6e5c3d4, 'Y', '2012-01-14 06:45:57'),
(1603, 33, 0xe6a38be8bfb7, 'Y', '2012-01-14 06:46:09'),
(1604, 33, 0xe68da3e89b8b, 'Y', '2012-01-14 06:52:13'),
(1604, 10, 0xb5b7b5b0, 'Y', '2012-01-14 06:52:27'),
(1604, 8, 0xb76fb34a, 'Y', '2012-01-14 06:52:42'),
(1604, 34, 0xe69097e89b8b, 'Y', '2012-01-14 06:53:42'),
(1415, 10, 0xb1e0bac5, 'Y', '2012-01-14 06:57:12'),
(1415, 33, 0xe7bc96e58fb7, 'Y', '2012-01-14 06:57:44'),
(1416, 33, 0xe6a38be8b0b1, 'Y', '2012-01-14 06:59:47'),
(1457, 33, 0xe4b88be8bdbde6a38be8b0b1, 'Y', '2012-01-14 06:59:47'),
(1416, 10, 0xc6e5c6d7, 'Y', '2012-01-14 07:00:10'),
(1457, 10, 0xcfc2d4d8c6e5c6d7, 'Y', '2012-01-14 07:00:10'),
(1444, 10, 0xd7eebaf3d2bbcad6, 'Y', '2012-01-14 07:29:16'),
(1444, 33, 0xe69c80e5908ee4b880e6898b, 'Y', '2012-01-14 07:29:36'),
(1782, 8, 0xb4d1a7bdb24db3e6acb0b3ccaaf120257320a4e9a141a569a5ce5b25735dbf7abfefa7efc5dc, 'Y', '2012-01-14 07:47:53'),
(1782, 34, 0xe6a38be5b180e6b885e596aee782bae69c80e8bf9120257320e697a5efbc8ce58fafe794a85b25735de7afa9e981b8e694b9e8ae8a, 'Y', '2012-01-14 07:48:13'),
(1782, 10, 0xc6e5bed6c7e5b5a5ceaad7eebdfc20257320c8d5a3acbfc9d3c35b25735dc9b8d1a1b8c4b1e4, 'Y', '2012-01-14 07:47:03'),
(1782, 33, 0xe6a38be5b180e6b885e58d95e4b8bae69c80e8bf9120257320e697a5efbc8ce58fafe794a85b25735de7ad9be98089e694b9e58f98, 'Y', '2012-01-14 07:46:26'),
(1429, 10, 0xb6d4cad6, 'Y', '2012-01-14 07:38:28'),
(1440, 10, 0xcad6cafd, 'Y', '2012-01-14 07:39:42'),
(1429, 33, 0xe5afb9e6898b, 'Y', '2012-01-14 07:42:36'),
(1440, 33, 0xe6898be695b0, 'Y', '2012-01-14 07:42:36'),
(1620, 10, 0xc4ea, 'Y', '2012-01-14 07:49:48'),
(1620, 33, 0xe5b9b4, 'Y', '2012-01-14 07:50:06'),
(1620, 8, 0xa67e, 'Y', '2012-01-14 07:50:23'),
(1621, 8, 0xa4eb, 'Y', '2012-01-14 07:51:01'),
(1621, 10, 0xd4c2, 'Y', '2012-01-14 07:51:21'),
(1621, 33, 0xe69c88, 'Y', '2012-01-14 07:51:32'),
(1622, 33, 0xe591a8, 'Y', '2012-01-14 07:52:00'),
(1622, 10, 0xd6dc, 'Y', '2012-01-14 07:52:13'),
(1623, 10, 0xc8d5, 'Y', '2012-01-14 07:52:48'),
(1623, 33, 0xe697a5, 'Y', '2012-01-14 07:53:02'),
(1623, 8, 0xa4e9, 'Y', '2012-01-14 07:53:21'),
(1624, 8, 0xaec9, 'Y', '2012-01-14 07:53:55'),
(1624, 10, 0xcab1, 'Y', '2012-01-14 07:54:17'),
(1624, 33, 0xe697b6, 'Y', '2012-01-14 07:54:30'),
(1737, 34, 0xe58886, 'Y', '2012-01-14 07:55:03'),
(1737, 8, 0xa4c0, 'Y', '2012-01-14 07:55:18'),
(1737, 10, 0xb7d6, 'Y', '2012-01-14 07:55:48'),
(1737, 33, 0xe58886, 'Y', '2012-01-14 07:57:02'),
(1412, 8, 0xa5fe, 'Y', '2012-01-14 08:00:01'),
(1528, 8, 0xa5fe, 'Y', '2012-01-14 08:00:01'),
(1586, 8, 0xa5fe, 'Y', '2012-01-14 08:00:01'),
(1591, 8, 0xa5fe, 'Y', '2012-01-14 08:00:01'),
(1630, 8, 0xa5fe, 'Y', '2012-01-14 08:00:01'),
(1633, 8, 0xa5fe, 'Y', '2012-01-14 08:00:01'),
(1412, 34, 0xe585a8, 'Y', '2012-01-14 08:00:47'),
(1528, 34, 0xe585a8, 'Y', '2012-01-14 08:00:47'),
(1586, 34, 0xe585a8, 'Y', '2012-01-14 08:00:47'),
(1591, 34, 0xe585a8, 'Y', '2012-01-14 08:00:47'),
(1630, 34, 0xe585a8, 'Y', '2012-01-14 08:00:47'),
(1633, 34, 0xe585a8, 'Y', '2012-01-14 08:00:47'),
(1412, 10, 0xc8ab, 'Y', '2012-01-14 08:01:30'),
(1528, 10, 0xc8ab, 'Y', '2012-01-14 08:01:30'),
(1586, 10, 0xc8ab, 'Y', '2012-01-14 08:01:30'),
(1591, 10, 0xc8ab, 'Y', '2012-01-14 08:01:30'),
(1630, 10, 0xc8ab, 'Y', '2012-01-14 08:01:30'),
(1633, 10, 0xc8ab, 'Y', '2012-01-14 08:01:30'),
(1412, 33, 0xe585a8, 'Y', '2012-01-14 08:01:53'),
(1528, 33, 0xe585a8, 'Y', '2012-01-14 08:01:53'),
(1586, 33, 0xe585a8, 'Y', '2012-01-14 08:01:53'),
(1591, 33, 0xe585a8, 'Y', '2012-01-14 08:01:53'),
(1630, 33, 0xe585a8, 'Y', '2012-01-14 08:01:53'),
(1633, 33, 0xe585a8, 'Y', '2012-01-14 08:01:53'),
(1631, 33, 0xe698af, 'Y', '2012-01-14 08:02:36'),
(1634, 33, 0xe698af, 'Y', '2012-01-14 08:02:36'),
(1631, 10, 0xcac7, 'Y', '2012-01-14 08:02:47'),
(1634, 10, 0xcac7, 'Y', '2012-01-14 08:02:47'),
(1631, 8, 0xac4f, 'Y', '2012-01-14 08:02:58'),
(1634, 8, 0xac4f, 'Y', '2012-01-14 08:02:58'),
(1631, 34, 0xe698af, 'Y', '2012-01-14 08:03:09'),
(1634, 34, 0xe698af, 'Y', '2012-01-14 08:03:09'),
(1632, 34, 0xe590a6, 'Y', '2012-01-14 08:03:27'),
(1635, 34, 0xe590a6, 'Y', '2012-01-14 08:03:27'),
(1632, 8, 0xa75f, 'Y', '2012-01-14 08:03:40'),
(1635, 8, 0xa75f, 'Y', '2012-01-14 08:03:40'),
(1632, 10, 0xb7f1, 'Y', '2012-01-14 08:04:05'),
(1635, 10, 0xb7f1, 'Y', '2012-01-14 08:04:05'),
(1632, 33, 0xe590a6, 'Y', '2012-01-14 08:04:23'),
(1635, 33, 0xe590a6, 'Y', '2012-01-14 08:04:23'),
(1521, 10, 0xd0d0cafd, 'Y', '2012-01-14 08:06:10'),
(1521, 33, 0xe8a18ce695b0, 'Y', '2012-01-14 08:06:23'),
(1391, 34, 0xe69c80e5a49ae8a18ce695b8, 'Y', '2012-01-14 08:09:57'),
(1527, 8, 0xbdd7bec2b76ab44d, 'Y', '2012-01-14 08:12:21'),
(1535, 8, 0xb76ab44da4e5a672, 'Y', '2012-01-15 17:12:55'),
(1594, 8, 0xb76ab44dab48a5f3, 'Y', '2012-01-15 08:06:04'),
(1607, 10, 0xd6d8c9e8cbd1d1b0, 'Y', '2012-01-14 08:13:28'),
(1607, 33, 0xe9878de8aebee6909ce5afbb, 'Y', '2012-01-14 08:13:43'),
(1606, 33, 0xe6909ce5afbb, 'Y', '2012-01-14 08:14:01'),
(1606, 10, 0xcbd1d1b0, 'Y', '2012-01-14 08:14:12'),
(1493, 10, 0xc8ab, 'Y', '2012-01-14 08:26:48'),
(1493, 33, 0xe585a8, 'Y', '2012-01-14 08:27:38'),
(1493, 34, 0xe585a8, 'Y', '2012-01-14 08:30:40'),
(1780, 10, 0xc2dbccb3b9dcc0edd4b1, 'Y', '2012-01-14 08:33:11'),
(1780, 33, 0xe8aebae59d9be7aea1e79086e59198, 'Y', '2012-01-14 08:33:23'),
(1780, 34, 0xe8ab96e5a387e7aea1e79086e593a1, 'Y', '2012-01-14 08:33:54'),
(1779, 34, 0x464151e7b7a8e8bcaf, 'Y', '2012-01-14 08:34:28'),
(1779, 10, 0x464151b1e0bcad, 'Y', '2012-01-14 08:35:05'),
(1779, 33, 0x464151e7bc96e8be91, 'Y', '2012-01-14 08:35:25'),
(1471, 10, 0xd0c2d4f6c1aac2e7c8cb, 'Y', '2012-01-14 08:37:07'),
(1471, 33, 0xe696b0e5a29ee88194e7bb9ce4baba, 'Y', '2012-01-14 08:37:18'),
(1545, 10, 0xb1e0bcadc1aac2e7c8cb, 'Y', '2012-01-14 08:38:55'),
(1545, 33, 0xe7bc96e8be91e88194e7bb9ce4baba, 'Y', '2012-01-14 08:39:06'),
(1546, 8, 0xb9eeacddc170b5b8a448, 'Y', '2012-01-14 08:40:22'),
(1546, 10, 0xb2ecbfb4c1aac2e7c8cb, 'Y', '2012-01-14 08:41:03'),
(1546, 33, 0xe5af9fe79c8be88194e7bb9ce4baba, 'Y', '2012-01-14 08:41:14'),
(1553, 33, 0xe698bee7a4bae88194e7bb9ce5908de58d95, 'Y', '2012-01-14 08:42:54'),
(1553, 10, 0xcfd4cabec1aac2e7c3fbb5a5, 'Y', '2012-01-14 08:43:03'),
(1553, 34, 0xe9a1afe7a4bae881afe7b5a1e5908de596ae, 'Y', '2012-01-14 08:43:31'),
(1541, 8, 0xa4a3aabea657a5cea4e1, 'N', '2012-01-14 08:45:13'),
(1541, 10, 0xb2bbd6aac3fbd3c3bba7, 'N', '2012-01-14 08:45:34'),
(1541, 33, 0xe4b88de79fa5e5908de794a8e688b7, 'N', '2012-01-14 08:45:44'),
(1622, 8, 0xb667, 'Y', '2012-01-14 08:48:11'),
(1482, 10, 0xbfaab7c5b6d4bed63f, 'Y', '2012-01-14 10:06:16'),
(1482, 33, 0xe5bc80e694bee5afb9e5b1803f, 'Y', '2012-01-14 10:06:37'),
(1489, 33, 0xe6b4bbe8b783e7a88be5baa6, 'Y', '2012-01-14 10:07:24'),
(1489, 10, 0xbbeed4beb3ccb6c8, 'Y', '2012-01-14 10:07:40'),
(1565, 10, 0xbdf8d0d0c6e5bed6, 'Y', '2012-01-14 10:08:39'),
(1484, 33, 0xe8bf9be8a18c, 'Y', '2012-01-14 10:12:13'),
(1565, 33, 0xe8bf9be8a18ce6a38be5b180, 'Y', '2012-01-14 10:09:44'),
(1484, 10, 0xbdf8d0d0, 'Y', '2012-01-14 10:12:02'),
(1478, 10, 0xbbeed4be, 'Y', '2012-01-14 10:13:43'),
(1478, 33, 0xe6b4bbe8b783, 'Y', '2012-01-14 10:14:01'),
(1478, 8, 0xaca1c544, 'Y', '2012-01-14 10:14:23'),
(1481, 10, 0xb2cebfbcb5c8bcb6, 'Y', '2012-01-14 10:16:55'),
(1481, 33, 0xe58f82e88083e7ad89e7baa7, 'Y', '2012-01-14 10:17:11'),
(1486, 10, 0xcaa4, 'Y', '2012-01-14 10:18:19'),
(1486, 33, 0xe8839c, 'Y', '2012-01-14 10:18:28'),
(1487, 10, 0xb8ba, 'Y', '2012-01-14 10:19:06'),
(1487, 33, 0xe8b49f, 'Y', '2012-01-14 10:19:15'),
(1485, 33, 0xe7bb93e69d9f, 'Y', '2012-01-14 10:19:59'),
(1485, 10, 0xbde1caf8, 'Y', '2012-01-14 10:20:13'),
(1776, 34, 0xe69c8de58b99e6a29de6acbe, 'Y', '2012-01-14 10:25:33'),
(1874, 34, 0xe69c8de58b99e6a29de6acbe2de8a18ce782bae99ab1e7a781e8a68fe7af84, 'Y', '2012-01-14 10:26:16'),
(1776, 10, 0xb7fecef1ccf5bfee, 'Y', '2012-01-14 10:27:01'),
(1874, 10, 0xb7fecef1ccf5bfee2dd0d0ceaad2fecbbdb9e6b7b6, 'Y', '2012-01-14 10:27:01'),
(1776, 33, 0xe69c8de58aa1e69da1e6acbe, 'Y', '2012-01-14 10:27:21'),
(1874, 33, 0xe69c8de58aa1e69da1e6acbe2de8a18ce4b8bae99a90e7a781e8a784e88c83, 'Y', '2012-01-14 10:27:21'),
(1777, 33, 0xe8a18ce4b8bae99a90e7a781e8a784e88c83, 'Y', '2012-01-14 10:28:35'),
(1777, 10, 0xd0d0ceaad2fecbbdb9e6b7b6, 'Y', '2012-01-14 10:28:46'),
(1383, 10, 0xd0c2cec5, 'Y', '2012-01-14 10:30:48'),
(1474, 10, 0xd0c2cec5a3acb8fcd0c2bccdc2bc, 'Y', '2012-01-14 10:33:05'),
(1383, 33, 0xe696b0e997bb, 'Y', '2012-01-14 10:31:24'),
(1474, 33, 0xe696b0e997bbefbc8ce69bb4e696b0e7baaae5bd95, 'Y', '2012-01-14 10:33:21'),
(1474, 8, 0xb773bb44a141a7f3b773acf6bffd, 'Y', '2012-01-14 10:32:22'),
(1384, 33, 0xe69bb4e696b0e7baaae5bd95, 'Y', '2012-01-14 10:34:30'),
(1384, 10, 0xb8fcd0c2bccdc2bc, 'Y', '2012-01-14 10:34:46'),
(1384, 8, 0xa7f3b773acf6bffd, 'Y', '2012-01-14 10:35:23'),
(1387, 10, 0x444753d0edd4b8b5a5, 'Y', '2012-01-14 10:36:30'),
(1387, 33, 0x444753e8aeb8e684bfe58d95, 'Y', '2012-01-14 10:36:43'),
(1388, 8, 0xa5cea4e1b751ad6eaabaa7efb669, 'Y', '2012-01-14 10:37:43'),
(1388, 10, 0xd3c3bba7cfebd2aab5c4b9a6c4dc, 'Y', '2012-01-14 10:38:43'),
(1388, 33, 0xe794a8e688b7e683b3e8a681e79a84e58a9fe883bd, 'Y', '2012-01-14 10:38:53'),
(1385, 33, 0xe7bd91e9a1b5e7bb93e69e84, 'Y', '2012-01-14 10:40:16'),
(1385, 10, 0xcdf8d2b3bde1b9b9, 'Y', '2012-01-14 10:40:30'),
(1385, 8, 0xbaf4adb6b5b2ba63, 'Y', '2012-01-14 10:40:41'),
(1386, 33, 0xe585b6e5ae83e8bf9ee7bb93, 'Y', '2012-01-14 10:42:01'),
(1386, 10, 0xc6e4cbfcc1acbde1, 'Y', '2012-01-14 10:42:09'),
(1386, 8, 0xa8e4a54cb373b5b2, 'Y', '2012-01-14 10:42:20'),
(1436, 10, 0xb39ec9ab, 'Y', '2012-01-16 16:10:11'),
(1436, 33, 0xe7a281e889b2, 'Y', '2012-01-14 14:33:19'),
(1436, 34, 0xe7a281e889b2, 'Y', '2012-01-14 14:33:36'),
(1277, 7, 0x68, 'Y', '2016-07-20 14:57:35'),
(1276, 7, 0x68, 'Y', '2016-07-20 14:57:35'),
(1275, 7, 0x646e79, 'Y', '2016-07-20 14:57:35'),
(1274, 7, 0x64656e, 'Y', '2016-07-20 14:57:35'),
(1564, 34, 0xe585a8e983a8e6a38be5b180, 'Y', '2012-01-14 14:53:25'),
(1564, 8, 0xa5feb3a1b4d1a7bd, 'Y', '2012-01-14 14:53:47'),
(1564, 10, 0xc8abb2bfc6e5bed6, 'Y', '2012-01-14 14:54:27'),
(1564, 33, 0xe585a8e983a8e6a38be5b180, 'Y', '2012-01-14 14:54:41'),
(1566, 33, 0xe7bb93e69d9fe6a38be5b180, 'Y', '2012-01-14 14:55:50'),
(1566, 10, 0xbde1caf8c6e5bed6, 'Y', '2012-01-14 14:56:13'),
(1569, 10, 0xc9cfb4ceb1e4b8fc, 'Y', '2012-01-14 14:57:24'),
(1569, 33, 0xe4b88ae6aca1e58f98e69bb4, 'Y', '2012-01-14 14:57:37'),
(1569, 8, 0xa457a6b8c5dca7f3, 'Y', '2012-01-14 14:57:48'),
(1569, 34, 0xe4b88ae6aca1e8ae8ae69bb4, 'Y', '2012-01-14 14:57:59'),
(1568, 34, 0xe7b590e69d9fe6a38be5b180e6898de58897e585a5e7b5b1e8a888, 'Y', '2012-01-14 14:58:57'),
(1568, 8, 0xb5b2a7f4b4d1a7bda47ea643a44ab2cead70, 'Y', '2012-01-14 14:59:06'),
(1568, 10, 0xbde1caf8c6e5bed6b2c5c1d0c8ebcdb3bcc6, 'Y', '2012-01-14 14:59:34'),
(1568, 33, 0xe7bb93e69d9fe6a38be5b180e6898de58897e585a5e7bb9fe8aea1, 'Y', '2012-01-14 14:59:44'),
(1441, 34, 0xe8a888e58886, 'Y', '2012-01-14 15:07:34'),
(1441, 10, 0xbcc6b7d6, 'Y', '2012-01-14 15:08:15'),
(1638, 10, 0xbcc6b7d6, 'Y', '2012-01-14 15:08:15'),
(1441, 33, 0xe8aea1e58886, 'Y', '2012-01-14 15:08:50'),
(1638, 33, 0xe8aea1e58886, 'Y', '2012-01-14 15:08:50'),
(6421, 40, 0x416476657273e172696f73206469666572656e74657320656d20746f646f73206f73206a6f676f73, 'Y', '2016-05-02 04:58:50'),
(1619, 8, 0xabfca977, 'Y', '2012-01-14 15:14:25'),
(1627, 8, 0xabfca977, 'Y', '2012-01-14 15:14:25'),
(1619, 34, 0xe68c87e5ae9a, 'Y', '2012-01-14 15:14:58'),
(1627, 34, 0xe68c87e5ae9a, 'Y', '2012-01-14 15:14:58'),
(1619, 10, 0xd6b8b6a8, 'Y', '2012-01-14 15:15:40'),
(1627, 10, 0xd6b8b6a8, 'Y', '2012-01-14 15:15:40'),
(1619, 33, 0xe68c87e5ae9a, 'Y', '2012-01-14 15:16:05'),
(1627, 33, 0xe68c87e5ae9a, 'Y', '2012-01-14 15:16:05'),
(1464, 10, 0xced2b5c4b6d4cad6, 'Y', '2012-01-15 07:28:56'),
(1464, 33, 0xe68891e79a84e5afb9e6898b, 'Y', '2012-01-15 07:29:09'),
(1477, 10, 0xbcd3c8ebc1aac2e7c8cb, 'Y', '2012-01-15 07:40:01'),
(1477, 33, 0xe58aa0e585a5e88194e7bb9ce4baba, 'Y', '2012-01-15 07:39:38'),
(1551, 33, 0xe6b3a8e8aeb0e4b88de5be97e8b685e8bf87323535e88bb1e69687e5ad97e7aca6, 'Y', '2012-01-15 07:35:24'),
(1551, 10, 0xd7a2bcc7b2bbb5c3b3acb9fd323535d3a2cec4d7d6b7fb, 'Y', '2012-01-15 07:35:14'),
(1552, 8, 0xc078a673c170b5b8a448, 'Y', '2012-01-15 07:36:14'),
(1552, 34, 0xe584b2e5ad98e881afe7b5a1e4baba, 'Y', '2012-01-15 07:36:32'),
(1552, 10, 0xb4a2b4e6c1aac2e7c8cb, 'Y', '2012-01-15 07:36:56'),
(1552, 33, 0xe582a8e5ad98e88194e7bb9ce4baba, 'Y', '2012-01-15 07:37:09'),
(1224, 10, 0xc7b0beb0, 'Y', '2012-01-15 07:48:00'),
(1507, 33, 0xe8b584e69699e5a4b9, 'Y', '2012-01-15 07:49:30'),
(1507, 10, 0xd7cac1cfbcd0, 'Y', '2012-01-15 07:49:49'),
(1507, 8, 0xb8eaaec6a7a8, 'Y', '2012-01-15 07:50:17'),
(1507, 34, 0xe8b387e69699e5a4be, 'Y', '2012-01-15 07:50:37'),
(1512, 34, 0xe4be86e887aa, 'Y', '2012-01-15 07:51:26'),
(1519, 34, 0xe4be86e887aa, 'Y', '2012-01-15 07:51:26'),
(1512, 8, 0xa8d3a6db, 'Y', '2012-01-15 07:51:46'),
(1519, 8, 0xa8d3a6db, 'Y', '2012-01-15 07:51:46'),
(1512, 10, 0xc0b4d7d4, 'Y', '2012-01-15 07:52:11'),
(1519, 10, 0xc0b4d7d4, 'Y', '2012-01-15 07:52:11'),
(1512, 33, 0xe69da5e887aa, 'Y', '2012-01-15 07:52:23'),
(1519, 33, 0xe69da5e887aa, 'Y', '2012-01-15 07:52:23'),
(1513, 33, 0xe4b8bbe9a298, 'Y', '2012-01-15 07:53:18'),
(1513, 10, 0xd6f7cce2, 'Y', '2012-01-15 07:53:26'),
(1513, 8, 0xa544c344, 'Y', '2012-01-15 07:53:38'),
(1513, 34, 0xe4b8bbe9a18c, 'Y', '2012-01-15 07:53:49'),
(1550, 16, 0xc7e0ece5f2eae8, 'Y', '2012-10-14 14:44:22'),
(1538, 34, 0xe697a5e69c9f, 'Y', '2012-01-15 07:54:31'),
(1538, 8, 0xa4e9b4c1, 'Y', '2012-01-15 07:54:53'),
(1552, 16, 0xd1eef5f0e0ede8f2fc20eaeeedf2e0eaf2, 'Y', '2012-10-14 14:43:12'),
(1538, 10, 0xc8d5c6da, 'Y', '2012-01-15 07:55:36'),
(1618, 10, 0xc8d5c6da, 'Y', '2012-01-15 07:55:36');
INSERT INTO `Translations` (`Original_ID`, `Language_ID`, `Text`, `Translated`, `Updated`) VALUES
(1538, 33, 0xe697a5e69c9f, 'Y', '2012-01-15 07:55:58'),
(1618, 33, 0xe697a5e69c9f, 'Y', '2012-01-15 07:55:58'),
(1618, 8, 0xa4e9b4c1, 'Y', '2012-01-15 07:56:29'),
(1515, 8, 0xbcd0a5dc, 'Y', '2012-01-15 07:57:00'),
(1515, 10, 0xb1eacabe, 'Y', '2012-01-15 07:57:19'),
(1515, 33, 0xe6a087e7a4ba, 'Y', '2012-01-15 07:57:29'),
(1515, 34, 0xe6a899e7a4ba, 'Y', '2012-01-15 07:57:42'),
(1409, 10, 0xcbd1d1b0d0c5bcfe, 'Y', '2012-01-15 07:58:48'),
(1409, 33, 0xe6909ce5afbbe4bfa1e4bbb6, 'Y', '2012-01-15 07:58:57'),
(1594, 10, 0xcbd1d1b0d0c5bcfe, 'Y', '2012-01-15 08:04:42'),
(1594, 33, 0xe6909ce5afbbe4bfa1e4bbb6, 'Y', '2012-01-15 08:04:59'),
(1594, 34, 0xe6909ce5b08be4bfa1e4bbb6, 'Y', '2012-01-15 08:06:25'),
(1592, 34, 0xe981b8e69387e8b387e69699e5a4be, 'Y', '2012-01-15 08:07:00'),
(1592, 8, 0xbfefbedcb8eaaec6a7a8, 'Y', '2012-01-15 08:07:11'),
(1592, 10, 0xd1a1d4f1d7cac1cfbcd0, 'Y', '2012-01-15 08:07:30'),
(1592, 33, 0xe98089e68ba9e8b584e69699e5a4b9, 'Y', '2012-01-15 08:07:41'),
(1537, 33, 0xe8aeafe681afe58886e7b1bb, 'Y', '2012-01-15 17:32:42'),
(1537, 10, 0xd1b6cfa2b7d6c0e0, 'Y', '2012-01-15 17:32:25'),
(1537, 8, 0xb054aea7a4c0c3fe, 'Y', '2012-01-15 17:32:02'),
(1537, 34, 0xe8a88ae681afe58886e9a19e, 'Y', '2012-01-15 17:31:38'),
(6217, 40, 0x4d6f737472617220626f74e36f207061726120656e76696172206a6f676164612065207065726d616e65636572206e612070e167696e6120646f206a6f676f, 'Y', '2014-12-31 22:30:18'),
(1587, 34, 0xe69c89e9979ce6a38be5b180, 'Y', '2012-01-15 08:11:29'),
(1587, 8, 0xa6b3c3f6b4d1a7bd, 'Y', '2012-01-15 08:11:42'),
(1587, 10, 0xd3d0b9d8c6e5bed6, 'Y', '2012-01-15 08:12:07'),
(1587, 33, 0xe69c89e585b3e6a38be5b180, 'Y', '2012-01-15 08:12:17'),
(1588, 33, 0xe697a0e585b3e6a38be5b180, 'Y', '2012-01-15 08:12:56'),
(1588, 10, 0xcedeb9d8c6e5bed6, 'Y', '2012-01-15 08:13:06'),
(1588, 8, 0xb54cc3f6b4d1a7bd, 'Y', '2012-01-15 08:13:18'),
(1588, 34, 0xe784a1e9979ce6a38be5b180, 'Y', '2012-01-15 08:13:30'),
(1509, 34, 0xe696b9e59091, 'Y', '2012-01-15 08:14:34'),
(1509, 8, 0xa4e8a656, 'Y', '2012-01-15 08:14:44'),
(1509, 10, 0xb7bdcff2, 'Y', '2012-01-15 08:15:00'),
(1509, 33, 0xe696b9e59091, 'Y', '2012-01-15 08:15:09'),
(1510, 33, 0xe5afb9e696b9, 'Y', '2012-01-15 08:16:07'),
(1510, 10, 0xb6d4b7bd, 'Y', '2012-01-15 08:16:16'),
(1510, 8, 0xb9efa4e8, 'Y', '2012-01-15 08:16:25'),
(1510, 34, 0xe5b08de696b9, 'Y', '2012-01-15 08:16:36'),
(1595, 34, 0xe7808fe8a6bde8b387e69699e5a4be, 'Y', '2012-01-15 08:17:12'),
(1595, 8, 0xc273c4fdb8eaaec6a7a8, 'Y', '2012-01-15 08:17:23'),
(1595, 10, 0xe4afc0c0d7cac1cfbcd0, 'Y', '2012-01-15 08:17:44'),
(1595, 33, 0xe6b58fe8a788e8b584e69699e5a4b9, 'Y', '2012-01-15 08:17:53'),
(1585, 33, 0xe58faae698bee7a4bae69c80e697a9e4bfa1e4bbb6, 'Y', '2012-01-15 08:20:05'),
(1585, 10, 0xd6bbcfd4cabed7eed4e7d0c5bcfe, 'Y', '2012-01-15 08:20:16'),
(1585, 8, 0xa575c5e3a5dcb3cca6adab48a5f3, 'Y', '2012-01-15 08:20:35'),
(1585, 34, 0xe58faae9a1afe7a4bae69c80e697a9e4bfa1e4bbb6, 'Y', '2012-01-15 08:20:49'),
(5785, 36, 0x2573206e79657220766973737a616cc3a970c3a97373656c, 'Y', '2015-01-07 20:11:55'),
(5784, 36, 0x4ac3a174737a6d6120657265646dc3a96e79653a206e696e637320657265646dc3a96e79, 'Y', '2015-01-07 20:11:55'),
(5783, 36, 0x486962612074c3b67274c3a96e74, 'Y', '2015-01-07 20:11:55'),
(5782, 36, 0x53696b65726573206d656e74c3a97321, 'Y', '2015-01-07 20:11:55'),
(1511, 33, 0xe98081e887b3, 'Y', '2012-01-15 08:23:55'),
(1518, 33, 0xe98081e887b3, 'Y', '2012-01-15 08:23:55'),
(1511, 10, 0xcbcdd6c1, 'Y', '2012-01-15 08:24:09'),
(1518, 10, 0xcbcdd6c1, 'Y', '2012-01-15 08:24:09'),
(1511, 8, 0xb065a6dc, 'Y', '2012-01-15 08:24:25'),
(1518, 8, 0xb065a6dc, 'Y', '2012-01-15 08:24:25'),
(1511, 34, 0xe98081e887b3, 'Y', '2012-01-15 08:24:39'),
(1518, 34, 0xe98081e887b3, 'Y', '2012-01-15 08:24:39'),
(1517, 34, 0xe7b3bbe7b5b1, 'Y', '2012-01-15 08:25:57'),
(1517, 8, 0xa874b2ce, 'Y', '2012-01-15 08:26:07'),
(1517, 10, 0xcfb5cdb3, 'Y', '2012-01-15 08:26:24'),
(1517, 33, 0xe7b3bbe7bb9f, 'Y', '2012-01-15 08:26:33'),
(1397, 10, 0xd4f6bcd3b6d4cad6cab1bce4, 'Y', '2012-01-15 09:13:06'),
(1397, 33, 0xe5a29ee58aa0e5afb9e6898be697b6e997b4, 'Y', '2012-01-15 09:13:16'),
(1399, 33, 0xe98089e68ba9e5a29ee58aa0e5afb9e6898be5a49ae5b091e697b6e997b4, 'Y', '2012-01-15 09:14:38'),
(1399, 10, 0xd1a1d4f1d4f6bcd3b6d4cad6b6e0c9d9cab1bce4, 'Y', '2012-01-15 09:14:48'),
(1399, 8, 0xbfefbedcbc57a55bb9efa4e2a668a4d6aec9b6a1, 'Y', '2012-01-15 09:15:04'),
(1400, 8, 0xbc57a55bb9efa4e2a544ad6eaec9b6a1, 'Y', '2012-01-15 09:16:38'),
(1400, 10, 0xd4f6bcd3b6d4cad6d6f7d2aacab1bce4, 'Y', '2012-01-15 09:16:59'),
(1400, 33, 0xe5a29ee58aa0e5afb9e6898be4b8bbe8a681e697b6e997b4, 'Y', '2012-01-15 09:17:09'),
(1401, 10, 0xd6d8d0c2bdf8c8ebcab1d6d8c9e8b5b9cafdbcc6cab1, 'Y', '2012-02-08 16:32:08'),
(1401, 33, 0xe9878de696b0e8bf9be585a5e697b6e9878de8aebee58092e695b0e8aea1e697b6, 'Y', '2012-02-08 16:32:35'),
(1401, 8, 0xadabb773b669a44aaec9adabb35da9b5aaf8ad70aec9, 'Y', '2012-01-15 09:19:41'),
(1402, 8, 0xbc57a55baec9b6a1, 'Y', '2012-01-15 09:20:09'),
(1402, 10, 0xd4f6bcd3cab1bce4, 'Y', '2012-01-15 09:20:32'),
(1402, 33, 0xe5a29ee58aa0e697b6e997b4, 'Y', '2012-01-15 09:20:45'),
(1403, 33, 0xe58f96e6b688, 'Y', '2012-01-15 09:21:14'),
(1403, 10, 0xc8a1cffb, 'Y', '2012-01-15 09:21:24'),
(1403, 8, 0xa8faaef8, 'Y', '2012-01-15 09:21:36'),
(1466, 10, 0xd0c2d4f62fb1e0bcadc1aac2e7c8cb, 'Y', '2012-01-15 17:02:08'),
(1476, 10, 0xb1e0bcadc1aac2e7c8cb, 'Y', '2012-01-15 17:00:19'),
(1466, 33, 0xe696b0e5a29e2fe7bc96e8be91e88194e7bb9ce4baba, 'Y', '2012-01-15 17:02:36'),
(1476, 33, 0xe7bc96e8be91e88194e7bb9ce4baba, 'Y', '2012-01-15 17:00:55'),
(1527, 10, 0xc2dbccb3cbd1d1b0, 'Y', '2012-01-15 17:10:17'),
(1527, 33, 0xe8aebae59d9be6909ce5afbb, 'Y', '2012-01-15 17:10:33'),
(1527, 34, 0xe8ab96e5a387e6909ce5b08b, 'Y', '2012-01-15 17:10:51'),
(1535, 10, 0xcbd1d1b0cec4d7d6, 'Y', '2012-01-15 17:12:01'),
(1535, 33, 0xe6909ce5afbbe69687e5ad97, 'Y', '2012-01-15 17:12:20'),
(1535, 34, 0xe6909ce5b08be69687e5ad97, 'Y', '2012-01-15 17:13:18'),
(1536, 34, 0xe4bd9ce88085efbc88e5b8b3e8999fefbc89, 'Y', '2012-01-15 17:14:43'),
(1536, 8, 0xa740aacca15db162b8b9a15e, 'Y', '2012-01-15 17:15:00'),
(1536, 10, 0xd7f7d5dfa3a8d5cabac5a3a9, 'Y', '2012-01-15 17:15:26'),
(1536, 33, 0xe4bd9ce88085efbc88e5b890e58fb7efbc89, 'Y', '2012-01-15 17:15:37'),
(1736, 33, 0xe7aca6e59088e695b0e79bae, 'Y', '2012-01-15 17:16:35'),
(1736, 10, 0xb7fbbacfcafdc4bf, 'Y', '2012-01-15 17:16:44'),
(1736, 8, 0xb2c5a658bcc6a5d8, 'Y', '2012-01-15 17:16:55'),
(1736, 34, 0xe7aca6e59088e695b8e79bae, 'Y', '2012-01-15 17:17:06'),
(1539, 34, 0xe9a086e5ba8f, 'Y', '2012-01-15 17:18:04'),
(1390, 8, 0xb6c8a7efc5dcb6b6a7c7a141b54caa6ba7efc5dca4e5a672, 'Y', '2012-01-15 17:18:53'),
(1539, 8, 0xb6b6a7c7, 'Y', '2012-01-15 17:18:53'),
(1390, 10, 0xbdf6b8c4b1e4cbb3d0f2a3accedeb7a8b8c4b1e4cec4d7d6, 'Y', '2012-01-15 17:20:27'),
(1539, 10, 0xcbb3d0f2, 'Y', '2012-01-15 17:20:27'),
(1390, 33, 0xe4bb85e694b9e58f98e9a1bae5ba8fefbc8ce697a0e6b395e694b9e58f98e69687e5ad97, 'Y', '2012-01-15 17:21:15'),
(1539, 33, 0xe9a1bae5ba8f, 'Y', '2012-01-15 17:21:15'),
(1637, 33, 0xe4b893e5aeb6e6a8a1e5bc8f, 'Y', '2012-01-15 17:24:05'),
(1637, 10, 0xd7a8bcd2c4a3cabd, 'Y', '2012-01-15 17:23:54'),
(1637, 8, 0xb14dae61bcd2a6a1, 'Y', '2012-01-15 17:23:25'),
(1532, 34, 0xe68980e69c89e8a88ae681af, 'Y', '2012-01-15 17:28:25'),
(1532, 8, 0xa9d2a6b3b054aea7, 'Y', '2012-01-15 17:28:40'),
(1532, 10, 0xcbf9d3d0d1b6cfa2, 'Y', '2012-01-15 17:29:07'),
(1532, 33, 0xe68980e69c89e8aeafe681af, 'Y', '2012-01-15 17:29:23'),
(1533, 33, 0xe69c80e697a9e8aeafe681af, 'Y', '2012-01-15 17:30:00'),
(1533, 10, 0xd7eed4e7d1b6cfa2, 'Y', '2012-01-15 17:30:09'),
(1533, 8, 0xb3cca6adb054aea7, 'Y', '2012-01-15 17:30:21'),
(1533, 34, 0xe69c80e697a9e8a88ae681af, 'Y', '2012-01-15 17:30:32'),
(1398, 10, 0xb9dbd5bdd5df, 'Y', '2012-01-16 15:50:56'),
(1398, 33, 0xe8a782e68898e88085, 'Y', '2012-01-16 15:51:07'),
(1492, 8, 0xc65bacddb4d1a7bd202573, 'Y', '2012-01-16 15:53:36'),
(1492, 10, 0xb9dbbfb4c6e5bed6202573, 'Y', '2012-01-16 15:54:10'),
(1492, 33, 0xe8a782e79c8be6a38be5b180202573, 'Y', '2012-01-16 15:54:21'),
(1442, 8, 0xb3d3ad74, 'Y', '2012-01-16 16:05:23'),
(1442, 34, 0xe58b9de8b2a0, 'Y', '2012-01-16 16:05:34'),
(1442, 10, 0xcaa4b8ba, 'Y', '2012-01-16 16:05:45'),
(1442, 33, 0xe8839ce8b49f, 'Y', '2012-01-16 16:05:55'),
(1435, 33, 0xe7a281e889b2, 'Y', '2012-01-16 16:06:58'),
(1437, 33, 0xe5a4a7e5b08f, 'Y', '2012-01-16 16:07:53'),
(1475, 33, 0xe589a9e4bd99e697b6e997b4, 'Y', '2012-01-16 16:07:53'),
(1435, 10, 0xb39ec9ab, 'Y', '2012-01-16 16:10:01'),
(1475, 10, 0xcaa3d3e0cab1bce4, 'Y', '2012-01-16 16:08:31'),
(1413, 10, 0xbada, 'Y', '2012-01-16 16:13:57'),
(1413, 33, 0xe9bb91, 'Y', '2012-01-16 16:14:08'),
(1413, 8, 0xb6c2, 'Y', '2012-01-16 16:14:23'),
(1413, 34, 0xe9bb91, 'Y', '2012-01-16 16:14:34'),
(1414, 34, 0xe799bd, 'Y', '2012-01-16 16:14:45'),
(1414, 8, 0xa5d5, 'Y', '2012-01-16 16:14:54'),
(1414, 10, 0xb0d7, 'Y', '2012-01-16 16:15:11'),
(1414, 33, 0xe799bd, 'Y', '2012-01-16 16:15:19'),
(1389, 10, 0xd0a1b4abb4ced0f2, 'Y', '2012-01-30 19:59:29'),
(1389, 33, 0xe5b08fe4bca0e6aca1e5ba8f, 'Y', '2012-01-30 19:59:43'),
(1781, 10, 0xc2dbccb3b9dcc0edd4b1, 'Y', '2012-01-31 05:54:19'),
(1781, 33, 0xe8aebae59d9be7aea1e79086e59198, 'Y', '2012-01-31 05:54:35'),
(1781, 34, 0xe8ab96e5a387e7aea1e79086e593a1, 'Y', '2012-01-31 05:54:54'),
(1238, 8, 0xa4c1b4abbc66aed6, 'Y', '2012-01-31 05:55:11'),
(1731, 34, 0xe8b2bbe99baa, 'Y', '2012-02-08 15:31:31'),
(1885, 34, 0xe99ab1e8978f, 'Y', '2012-02-08 15:32:08'),
(1390, 36, 0x497474206373616b206120736f7272656e642076c3a16c746f7a746174686174c3b32c206d616761206120737ac3b6766567206e656d2e, 'Y', '2015-09-19 18:23:21'),
(5530, 36, 0x28416c6170c3a972742e20257320656868657a2061206dc3a972657468657a3a20257329, 'Y', '2015-09-19 18:10:36'),
(792, 10, 0xd6d0b9fa, 'Y', '2012-02-10 05:07:58'),
(929, 8, 0xa578c657, 'Y', '2012-02-10 05:08:49'),
(1373, 8, 0xa9eaba70a141a7e4a4a3a8eca6acab48a448a143bdd0bd54a977ac4fb6c7b065b5b9a5cea4e1b162b8b9a141a6d3ab44a5cea4e1a96da657a143, 'Y', '2012-03-11 05:54:28'),
(1923, 33, 0xe799bbe585a5e9858de9a29d, 'Y', '2012-05-08 19:15:09'),
(2, 1, 0x547976e472722c207370656c657420e47220726564616e206176736c757461742e, 'Y', '2012-05-24 11:58:32'),
(3, 1, 0x547976e472722c207370656c65742068617220696e74652062f6726a617420e46e2e, 'Y', '2012-05-24 11:58:32'),
(7, 1, 0x4475206b616e20696e746520626a75646120696e2064696720736ae46c762e, 'Y', '2012-05-24 11:58:32'),
(8, 1, 0x547976e472722c2068697474617220696e7465207370656c657420647520e47220696e626a7564656e2074696c6c2e2048617220647520726564616e207461636b6174206e656a3f, 'Y', '2012-05-24 11:58:32'),
(9, 1, 0x547976e472722c206475206b616e20696e746520e5746572746120656e207374656e20736f6d207072656369732068617220746167697420656e207374656e206566746572736f6d2064657420736b756c6c65207570707265706120656e20706f736974696f6e2070e5206272e46465742e204c65746120656674657220276b6f272069207265676c65726e612e, 'Y', '2012-05-24 11:58:32'),
(12, 1, 0x416e736c75746e696e67656e2074696c6c2064617461626173656e206d6973736c79636b616465732e2056e46e6c6967656e2076e46e7461206ee5677261206d696e75746572206f63682066f67273f66b206967656e2e, 'Y', '2012-05-24 11:58:32'),
(13, 1, 0x4d6973736c79636b61646573206d65642061747420746120626f7274207370656c65742e20446574746120e4722074726f6c6967656e20696e7465206574742070726f626c656d2e, 'Y', '2012-05-24 11:58:32'),
(14, 1, 0x547976e472722c2074696c6ce467676574206176206d656464656c616e64657420692064617461626173656e207665726b6172206d6973736c79636b6174732e, 'Y', '2012-05-24 11:58:32'),
(15, 1, 0x547976e472722c2074696c6ce467676574206176207370656c657420692064617461626173656e207665726b6172206d6973736c79636b6174732e, 'Y', '2012-05-24 11:58:32'),
(16, 1, 0x54696c6ce467676574206176206472616765742074696c6c2064617461626173656e207665726b6172206d6973736c79636b6174732e204465747461206b616e2076617261206574742070726f626c656d2c2076e46e6c6967656e20e574657276e46e642074696c6c207370656c6574206f6368207365206f6d20647261676574207265676973747265726174732e, 'Y', '2012-05-24 11:58:32'),
(17, 1, 0x54696c6ce4676765742061762064696e20646174612074696c6c2064617461626173656e207665726b6172206d6973736c79636b6174732e204f6d20647520696e7465206b616e206c6f67676120696e2c207661722076e46e6c69672066f67273f66b20656e2067e56e672074696c6c2c206f6d2064657420696e74652066756e6765726172206b6f6e74616b746120737570706f7274656e2e, 'Y', '2012-05-24 11:58:32'),
(18, 1, 0x4461746162617366f6726672e5676e696e67656e206d6973736c79636b616465732e2056e46e6c6967656e2076e46e7461206ee5676f6e206d696e7574206f63682066f67273f66b206967656e2e, 'Y', '2012-05-24 11:58:32'),
(19, 1, 0x4b756e646520696e74652076e46c6a612064617461626173656e2e2056e46e6c6967656e2076e46e7461206ee5676f6e206d696e7574206f63682066f67273f66b206967656e2e, 'Y', '2012-05-24 11:58:32'),
(20, 1, 0x547976e472722c206b756e646520696e746520737461727461207370656c65742e2056e46e6c6967656e2076e46e7461206ee5676f6e206d696e7574206f63682066f67273f66b206967656e2e, 'Y', '2012-05-24 11:58:32'),
(22, 1, 0x4475206de573746520616e676520657474206e616d6e2e, 'Y', '2012-05-24 11:58:32'),
(27, 1, 0x547976e472722c206475206f63682064696e206d6f747370656c617265206de573746520616e676520656e20696e697469616c20726174696e672c20616e6e617273206b616e206a616720696e7465206869747461206574742070617373616e64652068616e64696b6170702e, 'Y', '2012-05-24 11:58:32'),
(29, 1, 0x547976e472722c20646574746120e47220696e74652074696c6ce57465742066f6722067e4737465722c2076e46e6c6967656e20726567697374726572612066f67273742065747420706572736f6e6c696774206b6f6e746f2e, 'Y', '2012-05-24 11:58:32'),
(32, 1, 0x547976e472722c2064657420e47220696e74652064696e207475722e, 'Y', '2012-05-24 11:58:32'),
(33, 1, 0x4cf673656e6f7264657420696e6e6568e56c6c6572206f67696c74696761207465636b656e2c206261726120612d7a2c20412d5a2c20302d39206f6368202d5f2b2e2c3a3b3f21252a2074696c6ce574732e, 'Y', '2012-05-24 11:58:32'),
(35, 1, '', 'Y', '2012-05-29 15:52:33'),
(38, 1, 0x547976e472722c206a6167206861722070726f626c656d206d65642064696e20726174696e672c20676cf66d646520647520616e676520276b79752720656c6c6572202764616e273f, 'Y', '2012-05-29 15:52:33'),
(39, 1, 0x547976e472722c206a6167206861722070726f626c656d206d65642064696e20726174696e672c20647520736b6120696e746520616e76e46e646120276b79752720656c6c6572202764616e272066f6722064656e6e6120747970656e2e, 'Y', '2012-05-29 15:52:33'),
(40, 1, 0x547976e472722c207374656e656e20686164652064f66461742073696720736ae46c76206d656e20736ae46c766d6f726420e47220696e74652074696c6ce574657420756e646572206465737361207265676c65722e, 'Y', '2012-05-29 15:52:33'),
(41, 1, 0x547976e472722c2068697474617220696e7465207370656c65742e, 'Y', '2012-05-29 15:52:33'),
(42, 1, 0x547976e472722c2068697474617220696e746520666f72756d65742064752076696c6c20766973612e, 'Y', '2012-05-29 15:52:33'),
(43, 1, 0x48756d6d2c206d656464656c616e646574207665726b617220766172612065747420737661722074696c6c206574742069636b652d65786973746572616e6465206d656464656c616e64652e, 'Y', '2012-05-29 15:52:33'),
(44, 1, 0x547976e472722c2068697474617220696e7465206d656464656c616e6465742064752076696c6c20766973612e, 'Y', '2012-05-29 15:52:33'),
(45, 1, 0x547976e472722c2068697474617220696e746520616e76e46e646172656e2e, 'Y', '2012-05-29 15:52:33'),
(46, 1, 0x547976e472722c20616e76e46e6461726964657420616e76e46e647320726564616e2c2076e46e6c6967656e2066f67273f66b2068697474612065747420756e696b742069642e, 'Y', '2012-05-29 15:52:33'),
(48, 1, '', 'Y', '2012-05-29 15:52:33'),
(49, 1, 0x547976e472722c206475206b616e2062617261206b617374612064696e612065676e61207370656c2e, 'Y', '2012-05-29 15:52:33'),
(50, 1, '', 'Y', '2012-05-29 15:52:33'),
(51, 1, '', 'Y', '2012-05-29 15:52:33'),
(52, 1, '', 'Y', '2012-05-29 15:52:33'),
(54, 1, '', 'Y', '2012-05-29 15:52:33'),
(55, 1, '', 'Y', '2012-05-29 15:52:33'),
(56, 1, '', 'Y', '2012-05-29 15:52:33'),
(57, 1, '', 'Y', '2012-05-29 15:52:33'),
(58, 1, '', 'Y', '2012-05-29 15:52:33'),
(59, 1, '', 'Y', '2012-05-29 15:52:33'),
(60, 1, '', 'Y', '2012-05-29 15:52:33'),
(61, 1, '', 'Y', '2012-05-29 15:52:33'),
(63, 1, '', 'Y', '2012-05-29 15:52:33'),
(1885, 3, 0x48, 'Y', '2012-06-10 10:12:44'),
(3097, 3, 0x2e30, 'Y', '2012-06-10 10:12:44'),
(3098, 3, '', 'Y', '2012-06-11 12:26:41'),
(3099, 3, 0x2e35, 'Y', '2012-06-10 10:12:44'),
(3100, 3, '', 'Y', '2012-06-11 12:26:41'),
(4518, 3, '', 'Y', '2012-06-11 12:26:41'),
(4519, 3, '', 'Y', '2012-06-11 12:26:41'),
(4520, 3, '', 'Y', '2012-06-11 12:26:41'),
(4521, 3, '', 'Y', '2012-06-11 12:26:41'),
(4522, 3, '', 'Y', '2012-06-11 12:26:41'),
(4523, 3, '', 'Y', '2012-06-11 12:26:41'),
(4524, 3, '', 'Y', '2012-06-11 12:26:41'),
(4525, 3, '', 'Y', '2012-06-11 12:26:41'),
(4526, 3, '', 'Y', '2012-06-11 12:26:41'),
(4527, 3, '', 'Y', '2012-06-11 12:26:41'),
(4528, 3, '', 'Y', '2012-06-11 12:26:41'),
(4533, 3, 0x5554797065, 'Y', '2012-06-10 10:12:44'),
(4534, 3, '', 'Y', '2012-06-11 12:26:41'),
(4536, 3, '', 'Y', '2012-06-11 12:26:41'),
(4537, 3, '', 'Y', '2012-06-11 12:26:41'),
(4538, 3, '', 'Y', '2012-06-11 12:26:41'),
(4539, 3, 0x28464829, 'Y', '2012-06-10 10:12:44'),
(5495, 4, 0x5665726966697a696572756e67732d4d61696c2066fc7220626573746568656e646520456d61696c20777572646520676573656e64657421, 'Y', '2013-08-11 19:27:25'),
(5494, 4, 0x5665726966697a696572756e67732d4d61696c2066fc7220456d61696c2dc46e646572756e6720777572646520676573656e64657421, 'Y', '2013-08-11 19:27:25'),
(5492, 4, 0x42656d65726b756e67656e20e46e6465726e, 'Y', '2013-08-11 19:27:25'),
(2326, 3, '', 'Y', '2012-06-11 12:26:41'),
(2327, 3, '', 'Y', '2012-06-11 12:26:41'),
(2330, 3, '', 'Y', '2012-06-11 12:26:41'),
(2335, 3, '', 'Y', '2012-06-11 12:26:41'),
(2336, 3, '', 'Y', '2012-06-11 12:26:41'),
(2337, 3, 0x2359, 'Y', '2012-06-10 10:18:56'),
(2338, 3, 0x234e, 'Y', '2012-06-10 10:18:56'),
(2516, 3, '', 'Y', '2012-06-11 12:26:41'),
(2517, 3, '', 'Y', '2012-06-11 12:26:41'),
(2519, 3, '', 'Y', '2012-06-11 12:26:41'),
(3106, 3, '', 'Y', '2012-06-11 12:26:41'),
(3107, 3, '', 'Y', '2012-06-11 12:26:41'),
(3224, 3, '', 'Y', '2012-06-11 12:26:41'),
(3226, 3, '', 'Y', '2012-06-11 12:26:41'),
(3228, 3, '', 'Y', '2012-06-11 12:26:41'),
(3259, 3, '', 'Y', '2012-06-11 12:26:41'),
(3297, 3, '', 'Y', '2012-06-11 12:26:41'),
(3298, 3, '', 'Y', '2012-06-11 12:26:41'),
(3300, 3, '', 'Y', '2012-06-11 12:26:41'),
(3358, 3, '', 'Y', '2012-06-11 12:26:41'),
(3360, 3, 0x54472d53742e, 'Y', '2013-08-16 20:01:15'),
(3361, 3, 0x234f62732e, 'Y', '2012-06-10 10:23:54'),
(3362, 3, '', 'Y', '2012-06-11 12:26:41'),
(2675, 6, 0x49736c61732041616c616e64, 'Y', '2015-06-17 05:00:43'),
(3366, 3, '', 'Y', '2012-06-11 12:26:41'),
(3367, 3, '', 'Y', '2012-06-11 12:26:41'),
(3368, 3, 0x4d792074696d652072656d2e, 'Y', '2012-06-10 10:23:54'),
(3369, 3, 0x4f70702e2074696d652072656d2e, 'Y', '2012-06-10 10:23:54'),
(3443, 3, '', 'Y', '2012-06-11 12:26:41'),
(3446, 3, 0x5072696f, 'Y', '2012-06-10 10:23:54'),
(3451, 3, '', 'Y', '2012-06-11 12:26:41'),
(3453, 3, '', 'Y', '2012-06-11 12:26:41'),
(4535, 3, '', 'Y', '2012-06-11 12:26:41'),
(3119, 3, 0x64, 'Y', '2012-06-10 20:58:51'),
(3120, 3, 0x6b, 'Y', '2012-06-10 20:59:01'),
(1332, 4, 0x576965206b616e6e206963682065696e656e2062657374696d6d74656e204e75747a65722066696e64656e3f, 'Y', '2012-06-10 23:22:40'),
(3156, 4, 0x4e6575657320537069656c, 'Y', '2012-06-10 23:29:18'),
(2906, 4, 0x566f726c6167656e, 'Y', '2012-06-10 23:45:36'),
(3251, 4, 0x416c7320566f726c6167652073706569636865726e, 'Y', '2012-06-10 23:45:36'),
(3448, 4, 0x566f726c6167652067657370656963686572742123746d706c, 'Y', '2012-06-10 23:45:36'),
(3449, 4, 0x566f726c6167652067656cf6736368742123746d706c, 'Y', '2012-06-10 23:45:36'),
(3450, 4, 0x566f726c6167656e2028257320766f6e206d61782e2025732062656e75747a7429, 'Y', '2012-06-10 23:45:36'),
(3452, 4, 0x566f726c616765206cf6736368656e, 'Y', '2012-06-10 23:45:36'),
(3456, 4, 0x4e65756520566f726c61676523746d706c, 'Y', '2012-06-10 23:45:36'),
(3459, 4, 0x4e616d652066fc7220566f726c616765206665686c7421, 'Y', '2012-06-10 23:45:36'),
(3460, 4, 0x446572204e616d652064657220566f726c616765206d7573732065696e646575746967207365696e21, 'Y', '2012-06-10 23:45:36'),
(3461, 4, 0x446965206d6178696d616c6520416e7a61686c20766f6e20566f726c6167656e206973742065727265696368742e204475206d757373742065696e65206578697374696572656e646520566f726c6167652065727365747a656e21, 'Y', '2012-06-10 23:45:36'),
(3464, 4, 0x566f726c616765206cf6736368656e, 'Y', '2012-06-10 23:45:36'),
(3467, 4, 0x536f6c6c2064696520566f726c616765207769726b6c6963682067656cf6736368742077657264656e3f, 'Y', '2012-06-10 23:45:36'),
(3265, 4, 0x4e6575657320537069656c20696e732057617274657a696d6d6572207374656c6c656e, 'Y', '2012-06-11 22:06:22'),
(3358, 25, 0x496420706172746964c483, 'Y', '2012-06-11 11:47:32'),
(2411, 25, 0x416e756c65617ac483206d757461726561, 'Y', '2012-06-11 11:50:06'),
(1109, 25, 0x50726576697a75616c697a617265, 'Y', '2012-06-11 11:55:49'),
(2401, 25, 0x496e666f726d61c5a3696920706172746964c483, 'Y', '2012-06-11 11:57:53'),
(3101, 3, 0x52475b25735d, 'Y', '2012-06-11 12:26:41'),
(2404, 25, 0x284d75746172656120257320c3ae6e2053474629, 'Y', '2012-06-11 13:22:20'),
(2416, 25, 0x53697374656d20646520726567756c69, 'Y', '2012-06-11 13:23:28'),
(2914, 25, 0x4a61706f6e657a, 'Y', '2012-06-11 13:24:45'),
(2915, 25, 0x4368696e657a657363, 'Y', '2012-06-11 13:24:45'),
(3156, 25, 0x506172746964c483206e6f75c483, 'Y', '2012-06-11 14:59:28'),
(1927, 4, 0x45726765626e6973, 'Y', '2012-06-11 21:52:19'),
(2153, 4, 0x5a6569742068696e7a75676566fc677421, 'Y', '2012-06-11 21:52:19'),
(2161, 4, 0x4447532d537069656c7374e4726b656e6b6f6e766572746572, 'Y', '2012-12-09 02:11:47'),
(2183, 4, 0x4665686c6572, 'Y', '2012-06-11 21:52:19'),
(2277, 4, 0x4c65747a746520c46e646572756e67, 'Y', '2012-06-11 21:52:19'),
(2396, 4, 0x46726167204465696e65205465616d6d6974676c6965646572, 'Y', '2012-06-11 21:52:19'),
(2406, 4, 0x457273746572205a7567, 'Y', '2012-12-26 02:15:42'),
(2524, 4, 0x4e6575657320537069656c20696e732057617274657a696d6d6572207374656c6c656e, 'Y', '2012-06-11 21:55:27'),
(2909, 4, 0x4e6575657320537069656c, 'Y', '2012-06-11 21:55:27'),
(2911, 4, 0x416c73206e6575657320537069656c206b6f70696572656e, 'Y', '2012-06-11 22:06:22'),
(3264, 4, 0x4e6575657320537069656c2068696e7a7566fc67656e, 'Y', '2012-06-11 21:55:27'),
(3267, 4, 0x4e657565732066616972657320537069656c, 'Y', '2012-06-11 21:55:27'),
(3268, 4, 0x4e657565204d656872737069656c6572706172746965, 'Y', '2012-12-09 19:07:55'),
(4567, 4, 0x4e6163687269636874656e20617573206465722057656c742064657320476f, 'Y', '2012-06-11 21:55:27'),
(2218, 4, 0x4465722064757263687363686e6974746c6963686520526174696e672d556e7465727363686965642062657472e4677420302c332066fc722065696e206175736765676c696368656e657320537069656c2e20442e682e206d616e206d7573732063612e20332d3420537069656c65206d69742065696e656d20537069656c657220676c65696368656e2052616e67657320737069656c656e20756d207365696e20526174696e6720756d20316b207a7520657268f668656e2e20416c6c657264696e67732068e46e6774206469657320766f6e2064657220556e736963686572686569742064657320526174696e67732c20646572205374e4726b6520756e642064656e2062656e75747a74656e2048616e646963617065696e7374656c6c756e67656e20616220756e64206b616e6e2064616865722076617269696572656e2c20616c736f206d656872206f6465722077656e6967657220537069656c652062656ef6746967656e2e, 'Y', '2013-02-28 18:57:20'),
(2349, 4, 0x44617320656967656e652050617373776f7274206b616e6e206e7572207a7572fc636b67657365747a742077657264656e2c2077656e6e20696d204e75747a657270726f66696c2065696e6520456d61696c616472657373652065696e676574726167656e206973742e, 'Y', '2012-06-11 22:03:55'),
(2424, 4, 0x537069656c65696e7374656c6c756e67656e, 'Y', '2012-06-11 22:03:55'),
(2441, 4, 0x5a65697465696e7374656c6c756e67656e20756e6420fc6272696765205a656974, 'Y', '2012-06-11 22:03:55'),
(2506, 4, 0x48616e6469636170, 'Y', '2012-06-11 22:03:55'),
(2507, 4, 0x5a656974, 'Y', '2012-06-11 22:03:55'),
(2918, 4, 0x66fc7220666169726573204b6f6d69, 'Y', '2012-06-11 22:03:55'),
(2919, 4, 0x4d656872737069656c6572, 'Y', '2012-12-09 01:44:33'),
(3096, 4, 0x5761687273636865696e6c696368652045696e7374656c6c756e67656e, 'Y', '2012-06-11 22:03:55'),
(3436, 4, 0x4ce46e64657265696e7374656c6c756e67, 'Y', '2012-06-11 22:03:55'),
(2545, 4, 0x4e616368726963687420616e20616c6c652062657465696c696774656e20537069656c65722073656e64656e, 'Y', '2012-06-11 22:34:26'),
(2858, 4, '', 'Y', '2012-07-29 12:52:42'),
(2859, 4, 0x5363687761727a20676577e4686c74, 'Y', '2012-06-11 22:56:54'),
(2860, 4, 0x576569df20676577e4686c74, 'Y', '2012-06-11 22:56:54'),
(2861, 4, 0x57e4686c65204661726265, 'Y', '2012-06-11 22:56:54'),
(2862, 4, 0x426973686572206b65696e204765626f74, 'Y', '2012-06-11 22:56:54'),
(2863, 4, 0x4963682077e4686c65205363687761727a, 'Y', '2012-06-11 22:56:54'),
(2864, 4, 0x4963682077e4686c6520576569df, 'Y', '2012-06-11 22:56:54'),
(2865, 4, 0x42697368657269676573204765626f74, 'Y', '2012-06-11 22:56:54'),
(2867, 4, 0x537069656c20626567696e6e656e, 'Y', '2012-06-11 22:56:54'),
(2868, 4, 0x537069656c657220676562656e2067656e61752065696e202867656865696d657329204b6f6d692d4765626f742061622e, 'Y', '2012-06-11 22:56:54'),
(2869, 4, 0x4b6f6d692d4765626f74652077657264656e2067656865696d676568616c74656e2e, 'Y', '2012-06-11 22:56:54'),
(2870, 4, 0x4e6163682064656d20322e204765626f7420626567696e6e742064617320537069656c2e, 'Y', '2012-06-11 22:56:54'),
(2871, 4, 0x44657220537069656c6572206d69742064656d2068f663687374656e204765626f7420737069656c74205363687761727a20756e64206769627420646965206765626f74656e6520566f726761626520616e20576569df2e, 'Y', '2012-06-11 22:56:54'),
(2872, 4, 0x57656e6e20646965204b6f6d692d4765626f746520676c656963682073696e642c2077657264656e206469652046617262656e206475726368205a205a7566616c6c2062657374696d6d7420284e6967697269292e, 'Y', '2012-06-11 22:56:54'),
(2873, 4, 0x44696520537069656c657220676562656e2069687265204b6f6d692d4765626f7420f66666656e746c6963682061622e, 'Y', '2012-06-11 22:56:54'),
(2874, 4, 0x446965204b6f6d692d4765626f74652077657264656e2064656d20616e646572656e20537069656c6572206d697467657465696c742e, 'Y', '2012-06-11 22:56:54'),
(2948, 4, 0x44752062657374696d6d7374204b6f6d692c2069636820646965204661726265, 'Y', '2012-12-25 21:24:39'),
(2949, 4, 0x4963682062657374696d6d65204b6f6d692c20447520646965204661726265, 'Y', '2012-12-25 21:24:39'),
(2953, 4, 0x44752062657374696d6d7374204b6f6d692c2069636820282573292077e4686c6520646965204661726265, 'Y', '2012-12-25 21:24:39'),
(2954, 4, 0x447520282573292062657374696d6d7374204b6f6d692c2069636820282573292077e4686c6520646965204661726265, 'Y', '2012-12-25 21:24:39'),
(2955, 4, 0x49636820282573292062657374696d6d65204b6f6d692c2044752077e4686c737420646965204661726265, 'Y', '2012-12-25 21:24:39'),
(2956, 4, 0x49636820282573292062657374696d6d65204b6f6d692c20447520282573292077e4686c737420646965204661726265, 'Y', '2012-12-25 21:24:39'),
(3057, 4, 0x476572656368746573204b6f6d6920286175736765676c696368656e657320537069656c29, 'Y', '2012-12-09 01:39:28'),
(3090, 4, 0x466169726573204b6f6d69, 'Y', '2012-06-11 23:01:32'),
(4532, 4, 0x466169726573204b6f6d69, 'Y', '2012-06-11 23:01:32'),
(4538, 4, 0x56657268616e64656c6e, 'Y', '2012-06-11 23:01:32'),
(2411, 4, 0x5a7572fc636b6e65686d656e, 'Y', '2012-06-11 23:20:58'),
(1348, 4, 0x49636820686162206d65696e2050617373776f72742076657267657373656e2e20576173206b616e6e206963682074756e3f, 'Y', '2012-06-11 23:23:46'),
(3385, 4, 0x4d65696e65206c617566656e64656e20537069656c65, 'Y', '2012-06-11 23:24:00'),
(3386, 4, 0x4d65696e65206265656e646574656e20537069656c65, 'Y', '2012-06-11 23:24:10'),
(3415, 4, 0x4765776f6e6e656e6520537069656c65, 'Y', '2012-06-11 23:24:59'),
(3416, 4, 0x5665726c6f72656e6520537069656c65, 'Y', '2012-06-11 23:24:59'),
(3371, 4, 0x4d65696e652062656f626163686574656e20537069656c65, 'Y', '2012-06-11 23:29:19'),
(2420, 4, 0x56657268616e646c756e672066fc7220222573223a23666169726b6f6d69, 'Y', '2012-12-09 01:09:58'),
(2006, 4, 0x5475726e696572737461747573, 'Y', '2012-12-09 01:07:35'),
(2154, 4, 0x4b6f6d692067657370656963686572742123666169726b6f6d69, 'Y', '2012-12-09 01:07:35'),
(2155, 4, 0x4b6f6d692067657370656963686572742c204b6f6d6920756e642046617262652062657374696d6d7420756e6420537069656c20676573746172746574, 'Y', '2012-12-09 01:07:35'),
(2397, 4, 0x5374656c6c656e20536965207369636865722c206461df20616c6c6520476562696574736772656e7a656e2067657363686c6f7373656e2073696e642c206265766f72205369652064617320537069656c206265656e64656e2e, 'Y', '2012-12-09 01:07:35'),
(3361, 4, 0x2342656f62616368746572, 'Y', '2012-06-11 23:34:03'),
(3370, 4, 0x416c6c652062656f62616368746574656e20537069656c65, 'Y', '2012-06-11 23:34:03'),
(2887, 4, 0x456e74736368756c646967756e672c20657320697374206e69636874206df6676c696368206d65687220616c7320257320537069656c65207a75207374617274656e21, 'Y', '2012-06-11 23:37:30'),
(3372, 4, 0x416c6c65206265656e646574656e20537069656c65, 'Y', '2012-06-11 23:37:30'),
(3373, 4, 0x416c6c65206c617566656e64656e20537069656c65, 'Y', '2012-06-11 23:37:30'),
(4315, 4, 0x416c6c6520537069656c6520616e7a756c6567656e206461756572742065696e65205765696c652e20476564756c7420626974746521, 'Y', '2012-06-11 23:37:30'),
(3068, 4, 0x426573636872e46e6b756e67656e, 'Y', '2012-06-11 23:42:16'),
(2875, 4, 0x4b6f6d692d4765626f74, 'Y', '2012-06-12 00:00:06'),
(2877, 4, 0x45696e20537069656c65722062657374696d6d7420646173204b6f6d692066fc7220576569df2e, 'Y', '2012-06-12 00:00:06'),
(2878, 4, 0x44616e6e2077e4686c742064657220616e6465726520537069656c6572207365696e6520466172626520756e642064617320537069656c20626567696e6e742e, 'Y', '2012-06-12 00:00:06'),
(2995, 4, 0x5a65696765204d656872737069656c6572706172746965, 'Y', '2012-12-09 19:07:55'),
(3651, 4, 0x5363687761727a, 'Y', '2012-06-12 00:00:06'),
(3652, 4, 0x576569df, 'Y', '2012-06-12 00:00:06'),
(2909, 8, 0xb773b4d1a7bd, 'Y', '2012-06-12 14:22:38'),
(3156, 8, 0xb773b4d1a7bd, 'Y', '2012-06-12 14:22:38'),
(3264, 8, 0xbc57a55bb773b4d1a7bd, 'Y', '2012-06-12 14:22:38'),
(3265, 8, 0xabdda7bdabc7bc57a55bb773b4d1a7bd, 'Y', '2012-06-12 14:22:38'),
(2524, 34, 0xe5be85e5b180e5aea4e5a29ee58aa0e696b0e6a38be5b180, 'Y', '2012-06-12 14:23:59'),
(2909, 34, 0xe696b0e6a38be5b180, 'Y', '2012-06-12 14:23:59'),
(3156, 34, 0xe696b0e6a38be5b180, 'Y', '2012-06-12 14:23:59'),
(3264, 34, 0xe5a29ee58aa0e696b0e6a38be5b180, 'Y', '2012-06-12 14:23:59'),
(3265, 34, 0xe5be85e5b180e5aea4e5a29ee58aa0e696b0e6a38be5b180, 'Y', '2012-06-12 14:23:59'),
(2911, 33, 0xe696b0e6a38be5b180, 'Y', '2012-06-12 14:25:10'),
(3156, 33, 0xe696b0e6a38be5b180, 'Y', '2012-06-12 14:25:10'),
(3264, 33, 0xe5a29ee58aa0e696b0e6a38be5b180, 'Y', '2012-06-12 14:25:10'),
(2909, 10, 0xd0c2c6e5bed6, 'Y', '2012-06-12 14:25:55'),
(3156, 10, 0xd0c2c6e5bed6, 'Y', '2012-06-12 14:25:55'),
(3264, 10, 0xd4f6bcd3d0c2c6e5bed6, 'Y', '2012-06-12 14:25:55'),
(2545, 8, 0xb148ab48b5b9a9d2a6b3b9efa4e2, 'Y', '2012-06-12 14:28:19'),
(2545, 34, 0xe5af84e4bfa1e7b5a6e68980e69c89e5b08de6898b, 'Y', '2012-06-13 08:47:26'),
(1943, 4, 0x4665686c6572, 'Y', '2012-06-13 23:28:35'),
(1944, 4, 0x4665686c65722073696e6420617566676574726574656e, 'Y', '2012-06-13 23:28:35'),
(2005, 4, '', 'Y', '2012-07-29 12:52:42'),
(1977, 4, 0x5061727469652d4944205b25735d206d757373206175662065696e204d656872737069656c65727061727469652076657277656973656e21, 'Y', '2012-12-09 19:03:33'),
(2175, 4, 0x4e757220646965205465696c6e65686d657220646572204d656872737069656c6572706172746965205b25735d206bf66e6e656e2065696e6520416e6bfc6e646967756e672065727374656c6c656e2e, 'Y', '2012-12-13 04:13:20'),
(2525, 4, 0x4573206b616e6e206e75722065696e656e2045696e7472616720696d2057617274657a696d6d65722066fc722065696e65204d656872737069656c657270617274696520676562656e21, 'Y', '2012-12-09 19:03:33'),
(2529, 4, 0x45696e6c6164656e207a7572204d656872737069656c6572706172746965, 'Y', '2012-12-09 19:03:33'),
(2536, 4, 0x5369652073696e64207a7520646965736572204d656872737069656c65727061727469652065696e67656c6164656e20776f7264656e2e, 'Y', '2012-12-09 19:03:33'),
(2547, 4, 0x526573657276696572756e67207a7572204d656872737069656c657270617274696520616e67656c6567742e, 'Y', '2012-12-09 19:03:33'),
(2550, 4, 0x4e75747a6572202573206861742064696520486572617573666f72646572756e67207a7572204d656872737069656c657270617274696520257320616e67656e6f6d6d656e2e, 'Y', '2012-12-09 19:03:33'),
(2552, 4, 0x4e75747a6572202573206861742064696520486572617573666f72646572756e67207a7572204d656872737069656c657270617274696520257320616267656c65686e742e, 'Y', '2012-12-09 19:03:33'),
(2755, 4, 0x5369652062656ef6746967656e2065696e652057657274756e672c20756d2065696e65204d656872737069656c657270617274696520626567696e6e656e207a75206bf66e6e656e2e, 'Y', '2012-12-09 19:04:03'),
(2756, 4, 0x45732067696274206b65696e65204e75747a65722066fc7220646965204d656872737069656c65727061727469652e, 'Y', '2012-12-09 19:07:05'),
(2757, 4, 0x46fc7220646965736520416b74696f6e206dfc7373656e205369652064657220537069656c6c656974657220646572204d656872737069656c6572706172746965207365696e2e, 'Y', '2012-12-09 19:07:05'),
(2758, 4, 0x44657220537069656c6572206973742066fc7220646965204d656872737069656c6572706172746965207765646572207265676973747269657274206e6f6368206865726175736765666f72646572742e, 'Y', '2012-12-09 19:07:05'),
(2759, 4, 0x446965205061727469652d4944206665686c742066fc7220646965204e6163687269636874207a7572204d656872737069656c65727061727469652e, 'Y', '2012-12-09 19:07:05'),
(2760, 4, 0x45696e65204e61636872696368742066fc722065696e65204d656872737069656c6572706172746965206b616e6e206e75722066fc722065696e65204d656872737069656c657270617274696520616e67656c6567742077657264656e2e, 'Y', '2012-12-09 19:07:05'),
(2761, 4, 0x457320676962742065696e656e2065696e67656c6164656e656e204e75747a6572207a7572204d656872737069656c65727061727469652c206465722064656d2053797374656d20756e62656b616e6e74206973742e2044617320736f6c6c74656e206e696368742070617373696572656e3b206269747465206b6f6e74616b74696572656e205369652065696e656e2041646d696e6973747261746f722e, 'Y', '2012-12-09 19:07:05'),
(2838, 4, 0x4e7572204d656872737069656c65727061727469656e20616e7a656967656e, 'Y', '2012-12-09 19:07:05'),
(2845, 4, 0x486572617573666f72646572756e67207a7572204d656872737069656c657270617274696520766f6e205b25735d, 'Y', '2012-12-09 19:07:05'),
(2846, 4, 0x44657220537069656c6c656974657220257320666f726465727420536965207a7572202573204d656872737069656c6572706172746965206865726175732e, 'Y', '2012-12-09 19:07:05'),
(3064, 4, 0x4d656872737069656c65722d45696e7374656c6c756e67656e, 'Y', '2012-12-09 01:44:33'),
(3082, 4, 0x466172626520766f6d20537069656c6c65697465722066fc72204d656872737069656c65727061727469652067657365747a742e, 'Y', '2012-12-09 19:07:55'),
(3112, 4, 0x4e75747a6572205b25735d206e696d6d74206e6963687420616e204d656872737069656c6572706172746965207465696c2e, 'Y', '2012-12-09 19:07:55'),
(3171, 4, '', 'Y', '2012-07-29 12:52:42'),
(3376, 4, 0x4e7572204d656872737069656c65727061727469656e, 'Y', '2012-12-09 19:07:55'),
(3389, 4, 0x4d65696e65206c617566656e64656e204d656872737069656c65727061727469656e, 'Y', '2012-12-09 19:07:55'),
(3390, 4, 0x4d65696e65206265656e646574656e204d656872737069656c65727061727469656e, 'Y', '2012-12-09 19:08:25'),
(3445, 4, 0x4175667a757365747a656e6465204d656872737069656c65727061727469656e3a, 'Y', '2012-12-09 19:08:25'),
(4552, 4, 0x42657265697473207a7572204d656872737069656c6572706172746965206865726175736765666f7264657274206f64657220626569676574726574656e21, 'Y', '2012-12-09 19:08:25'),
(2395, 4, 0x53696520736f6c6c74656e20646965205a757374696d6d756e6720616c6c6572204d6974676c6965646572204968726573205465616d7320686162656e2c206265766f722053696520646965204d656872737069656c657270617274696520617566676562656e21, 'Y', '2012-12-09 19:03:33'),
(3250, 4, 0x4e657565204e6163687269636874207a7572204d656872737069656c6572706172746965, 'Y', '2012-12-09 19:07:55'),
(2571, 4, 0x45696e69676520537069656c6572206665686c656e, 'Y', '2012-06-14 00:04:21'),
(2574, 4, 0x4469657320416e7a61686c2064657220537069656c6572202825732066fc722025732c2025732066fc7220257329207061737374206e69636874207a757220537069656c6b6f6e66696775726174696f6e205b25735d, 'Y', '2012-06-14 00:04:21'),
(2576, 4, 0x44696520537069656c6572616e7a61686c202825732066fc7220257329207374696d6d74206e69636874206d69742064657220537069656c6b6f6e66696775726174696f6e205b25735d20fc62657265696e, 'Y', '2012-06-14 00:04:21'),
(2904, 4, 0x556e67fc6c746967657220576572742066fc722064696520537069656c6b6f6e66696775726174696f6e205b25735d2e, 'Y', '2012-06-14 00:04:21'),
(3065, 4, 0x537069656c6b6f6e66696775726174696f6e, 'Y', '2012-06-14 00:04:21'),
(4683, 7, 0x4e65706c61746ee12076656c696b6f7374205b25735d, 'Y', '2016-07-20 16:29:41'),
(3113, 25, 0x53756269656374756c206d6573616a756c7569206c69707365c59f7465, 'Y', '2012-06-14 14:16:42'),
(2905, 25, 0xc59e61626c6f616e652070656e74727520636f6e74756c205b25735d, 'Y', '2012-06-14 14:22:13'),
(3251, 25, 0x53616c7665617ac48320c59f61626c6f6e756c, 'Y', '2012-06-14 14:23:28'),
(4499, 25, 0x50617274696465207069657264757465206c612074696d70, 'Y', '2012-06-14 14:59:21'),
(4493, 25, 0x467573206f726172, 'Y', '2012-06-14 15:24:06'),
(4494, 25, 0x4f7261206f66696369616cc4832061207574696c697a61746f72756c7569, 'Y', '2012-06-14 15:25:51'),
(2936, 25, 0x2e2e2e2043756c6f6172656120746120617220666920253124732063752048616e646963617020253224732c204b6f6d69202533242e3166, 'Y', '2012-06-14 15:32:59'),
(3056, 25, 0x436f6e6669677572617265206d616e75616cc48320286c61207061726974617465207361752063752068616e646963617029, 'Y', '2012-06-14 15:38:09'),
(2941, 25, 0x506172746964c483206475626cc483, 'Y', '2012-06-14 15:41:42'),
(2940, 25, '', 'Y', '2012-08-17 10:38:03'),
(2942, 25, 0x4e65677275, 'Y', '2012-06-14 15:44:58'),
(2943, 25, 0x416c62, 'Y', '2012-06-14 15:44:58'),
(3058, 25, 0x50696573652068616e6469636170, 'Y', '2012-06-14 15:46:22'),
(3067, 25, 0x467573756c206f72617220555443, 'Y', '2012-06-14 15:47:17'),
(3187, 25, 0x28257320c3ae6e7265676973747261726529, 'Y', '2012-06-14 15:51:16'),
(3440, 25, 0x53746174757320253124733a2025322473, 'Y', '2012-06-14 15:56:11'),
(3447, 25, 0x4f72646f6e65617ac483, 'Y', '2012-06-14 16:06:14'),
(2929, 25, 0x6465202573206f726920286163656561c89969206f66657274c48329, 'Y', '2014-11-14 11:27:32'),
(2644, 25, 0x4d7574c4837269, 'Y', '2012-06-14 16:08:56'),
(2645, 25, 0x5072696f726974617465, 'Y', '2012-06-14 16:08:56'),
(2646, 25, 0x54696d702072c4836d6173, 'Y', '2012-06-14 16:08:56'),
(3188, 25, 0x28257320c3ae6e72656769737472c483726929, 'Y', '2012-06-14 16:09:19'),
(2906, 25, 0xc59e61626c6f616e65, 'Y', '2012-06-14 19:44:44'),
(2397, 25, 0x417369677572c4832d74652063c4832066726f6e74696572656c652074757475726f722074657269746f7269696c6f722073756e7420c3ae6e636869736520c3ae6e61696e74652064652061207465726d696e61207061727469646121, 'Y', '2012-06-15 18:12:28'),
(2630, 25, '', 'Y', '2012-08-17 10:38:03'),
(2631, 25, '', 'Y', '2012-08-17 10:38:03'),
(2635, 25, '', 'Y', '2012-08-17 10:38:03'),
(2636, 25, 0x54657269746f726975, 'Y', '2012-06-15 22:02:43'),
(2637, 25, 0x5069657365206d6f61727465, 'Y', '2012-06-15 22:02:43'),
(2638, 25, 0x5069657365, 'Y', '2012-06-15 22:02:43'),
(2639, 25, 0x5072697a6f6e69657269, 'Y', '2012-06-15 22:02:43'),
(2641, 25, 0x53636f72, 'Y', '2012-06-15 22:02:43'),
(2642, 25, 0x52657a756c746174, 'Y', '2012-06-15 22:02:43'),
(2634, 25, 0x43616c63756c2073636f72, 'Y', '2012-06-15 22:03:23'),
(2985, 25, 0x5574696c697a61746f72756c206573746520c3ae6e2074696d70756c206f72656c6f72206465206f6469686ec483, 'Y', '2012-06-15 22:26:41'),
(2984, 25, 0x43656173756c2070617274696465692065737465206f70726974, 'Y', '2012-06-15 22:43:45'),
(2087, 4, 0x41646d696e20556d6672616765, 'Y', '2012-06-15 23:25:49'),
(2088, 4, 0x556d66726167656e204944, 'Y', '2012-06-15 23:25:49'),
(2089, 4, 0x556d6672616765206e6575206c6164656e, 'Y', '2012-06-15 23:25:49'),
(2090, 4, 0x556d667261676520616e736568656e, 'Y', '2013-02-07 14:28:23'),
(2091, 4, 0x4e45554520556d6672616765, 'Y', '2012-06-15 23:25:49'),
(2092, 4, 0x417574686f722064657220556d6672616765, 'Y', '2012-06-15 23:25:49'),
(2102, 4, 0x556d66726167656e6f7074696f6e656e, 'Y', '2012-06-15 23:25:49'),
(2105, 4, 0x556d66726167652073706569636865726e, 'Y', '2012-06-15 23:25:49'),
(2107, 4, 0x556d66726167656e, 'Y', '2012-06-15 23:25:49'),
(2108, 4, 0x4e65756520556d6672616765, 'Y', '2012-06-15 23:25:49'),
(2086, 4, 0x556d667261676520676573706569636865727421, 'Y', '2012-06-15 23:29:41'),
(1547, 16, 0xd3e4e0ebe8f2fc20eaeeedf2e0eaf2, 'Y', '2012-10-14 14:42:52'),
(2136, 4, 0x556d6672616765746974656c206665686c74206f64657220697374207a75206b75727a, 'Y', '2012-06-15 23:29:41'),
(2144, 4, 0x566572e46e646572756e672064657220556d6672616765206e69636874206df6676c6963682c2064612062657265697473205374696d6d656e2061626765676562656e2077757264656e, 'Y', '2012-06-15 23:29:41'),
(2827, 4, 0x456e74736368756c646967756e672c2064696520556d667261676520657869737469657274206e696368742e, 'Y', '2012-06-15 23:29:41'),
(3164, 4, 0x556d6672616765202325732028257329205b25735d, 'Y', '2012-06-15 23:29:41'),
(3165, 4, 0x556d667261676520232573205b25735d, 'Y', '2012-06-15 23:29:41'),
(3166, 4, '', 'Y', '2012-07-29 12:52:42'),
(3185, 4, 0x4465696e65205374696d6d65, 'Y', '2012-06-15 23:30:47'),
(3240, 4, 0x547970, 'Y', '2012-06-15 23:30:47'),
(3242, 4, 0x556d667261676520e46e6465726e, 'Y', '2012-06-15 23:30:47'),
(2336, 4, 0x235374696d6d656e, 'Y', '2012-06-15 23:34:56'),
(3245, 4, 0x235374696d6d656e, 'Y', '2012-06-15 23:35:42'),
(1934, 4, 0x416e6bfc6e646967756e6720676573706569636865727421, 'Y', '2012-12-13 04:06:04'),
(1935, 4, '', 'Y', '2012-12-13 04:06:04'),
(1936, 4, '', 'Y', '2012-12-13 04:06:04'),
(1937, 4, 0x4e65756520416e6bfc6e646967756e67, 'Y', '2012-12-13 04:06:04'),
(1938, 4, '', 'Y', '2012-12-13 04:06:04'),
(1961, 4, 0x416e6bfc6e646967756e672073706569636865726e, 'Y', '2012-12-13 04:09:35'),
(1964, 4, 0x416c6c6520416e6bfc6e646967756e67656e, 'Y', '2012-12-13 04:09:35'),
(1966, 4, 0x4e657565732041646d696e2d416e6bfc6e646967756e67656e, 'Y', '2012-12-13 04:09:35'),
(2167, 4, 0x4e65756520416e6bfc6e646967756e67, 'Y', '2012-12-13 04:11:45'),
(2169, 4, 0x4b617465676f726965, 'Y', '2012-06-15 23:46:53'),
(2170, 4, '', 'Y', '2012-07-29 12:52:42'),
(2172, 4, 0x4d65696e6520416e6bfc6e646967756e67656e, 'Y', '2012-12-13 04:13:20'),
(3157, 4, 0x416e6bfc6e646967756e67656e, 'Y', '2012-12-15 23:59:30'),
(3197, 4, 0x556e67656c6573656e, 'Y', '2012-06-15 23:46:53'),
(3198, 4, 0x47656c6573656e, 'Y', '2012-06-15 23:46:53'),
(3199, 4, 0x4d65696e65, 'Y', '2012-12-13 04:16:02'),
(3201, 4, 0x5a69656c, 'Y', '2012-06-15 23:46:53'),
(3202, 4, 0x416e6bfc6e646967756e6720e46e6465726e, 'Y', '2012-12-13 04:16:02'),
(3205, 4, 0x47656c6573656e, 'Y', '2012-06-15 23:46:53'),
(3206, 4, 0x416e7a656967656e, 'Y', '2012-06-15 23:46:53'),
(2168, 4, 0x537069656c, 'Y', '2012-06-15 23:49:41'),
(2825, 4, 0x44696520416e6bfc6e646967756e67206b6f6e6e7465206e6963687420676566756e64656e2077657264656e2e, 'Y', '2012-12-13 04:15:11'),
(2982, 4, 0x416c732067656c6573656e206d61726b696572656e, 'Y', '2012-09-02 00:54:39'),
(2983, 4, 0x416e6bfc6e646967756e6720616c732067656c6573656e206d61726b696572656e, 'Y', '2012-12-13 04:15:11'),
(3207, 4, '', 'Y', '2012-07-29 12:52:42'),
(3209, 4, 0x54726566666572, 'Y', '2012-12-13 04:16:02'),
(3212, 4, '', 'Y', '2012-07-29 12:52:42'),
(3215, 4, 0x4d65696e652042756c6c6574696e73, 'Y', '2012-06-15 23:49:41'),
(3219, 4, 0x42756c6c6574696e20616c732067656c6573656e206d61726b69657274, 'Y', '2012-06-15 23:49:41'),
(3223, 4, 0x556e67656c6573656e652042756c6c6574696e73, 'Y', '2012-06-15 23:49:41'),
(3351, 4, 0x4b65696e65206e6575656e2042756c6c6574696e73, 'Y', '2012-06-15 23:49:41'),
(1986, 4, 0x426574726566662064657220416e6bfc6e646967756e67206665686c74206f64657220697374207a75206b75727a, 'Y', '2012-12-13 04:11:45'),
(3208, 4, 0x42657472656666, 'Y', '2012-12-13 04:16:02'),
(3342, 4, 0x42756c6c6574696e20616e202573206d69742022257322, 'Y', '2012-06-15 23:52:36'),
(3217, 4, 0x5465787420616e7a656967656e, 'Y', '2012-06-15 23:53:11'),
(4500, 4, 0x4d532d5061727469656e, 'Y', '2012-12-16 03:10:55'),
(3432, 4, 0x416c6c65204e75747a6572, 'Y', '2012-06-15 23:57:55'),
(2978, 4, 0x4d532d506172746965, 'Y', '2012-12-15 23:57:05'),
(2974, 4, 0x416c6c65204e75747a6572, 'Y', '2012-06-15 23:59:20'),
(3196, 4, 0x416c6c65, 'Y', '2012-06-16 00:02:43'),
(2975, 4, 0x542d446972656b746f72, 'Y', '2012-06-16 00:02:43'),
(2976, 4, 0x542d5465696c6e65686d6572, 'Y', '2012-06-16 00:02:43'),
(2977, 4, 0x4e75747a65726c69737465, 'Y', '2012-06-16 00:02:43'),
(2496, 4, 0x537069656c65726b6f6e66696775726174696f6e, 'Y', '2012-06-16 20:02:43'),
(3076, 4, 0x416e7a61686c2064657220537069656c6572, 'Y', '2012-06-16 20:02:43'),
(2582, 4, 0x4175667365747a656e2064657320537069656c73, 'Y', '2012-06-16 20:03:11'),
(2173, 4, 0x5a6569676520537069656c6572, 'Y', '2012-06-16 20:06:50'),
(2401, 4, 0x5a6569676520537069656c696e666f, 'Y', '2012-06-16 20:06:50'),
(2459, 4, 0x5a6569676520537069656c, 'Y', '2012-06-16 20:06:50'),
(2439, 4, 0x5363687761727a20616d205a7567, 'Y', '2012-06-16 20:09:08'),
(2853, 4, 0x5363687761727a, 'Y', '2012-06-16 20:09:08'),
(2942, 4, 0x5363687761727a, 'Y', '2012-06-16 20:09:08'),
(2512, 4, 0x5a7573616765, 'Y', '2012-06-16 20:12:05'),
(3443, 4, 0x5a75676573616774, 'Y', '2012-06-16 20:12:05'),
(2511, 4, 0x52657365727669657274, 'Y', '2012-06-16 20:13:20'),
(2531, 4, 0x526573657276696572756e672066fc72206865726175736765666f7264657274656e206cf6736368656e, 'Y', '2012-06-16 20:13:20'),
(2501, 4, 0x4661726265207a7577656973656e, 'Y', '2012-06-16 20:14:57'),
(2500, 4, 0x46617262656e20262048616e6469636170207a7577656973656e, 'Y', '2012-06-16 20:14:17'),
(2502, 4, 0x52656968656e666f6c676520666573746c6567656e, 'Y', '2012-06-16 20:15:32'),
(2516, 4, 0x52656968656e666f6c6765, 'Y', '2012-06-16 20:16:03'),
(2508, 4, 0x4772757070656e2052616e6b696e67, 'Y', '2012-06-16 20:17:54'),
(2440, 4, 0x576569df20616d205a7567, 'Y', '2012-06-16 20:20:35'),
(2854, 4, 0x576569df, 'Y', '2012-06-16 20:20:35'),
(2943, 4, 0x576569df, 'Y', '2012-06-16 20:20:35'),
(3377, 4, 0x5b25735d2068617420576569df2c20576569df20616d205a7567, 'Y', '2012-06-16 20:21:46'),
(3378, 4, 0x5b25735d2068617420576569df2c205363687761727a20616d205a7567, 'Y', '2012-06-16 20:21:46'),
(3379, 4, 0x5b25735d20686174205363687761727a2c20576569df20616d205a7567, 'Y', '2012-06-16 20:21:46'),
(3382, 4, 0x576569df20616d205a7567, 'Y', '2012-06-16 20:21:46'),
(2497, 4, 0x5a656967652057617274657a696d6d657265696e74726167, 'Y', '2012-06-16 20:22:39'),
(2515, 4, 0x4cf67363686520537069656c65722074726f747a205a7573616765, 'Y', '2012-06-16 20:24:08'),
(3451, 4, 0x4c65747a746520c46e646572756e67, 'Y', '2012-06-16 20:33:06'),
(2842, 4, '', 'Y', '2012-12-09 01:38:11'),
(2937, 4, '', 'Y', '2012-07-29 12:52:42'),
(2938, 4, '', 'Y', '2012-07-29 12:52:42'),
(2939, 4, '', 'Y', '2012-07-29 12:52:42'),
(3366, 4, 0x537069656c747970, 'Y', '2012-06-16 20:34:00'),
(2503, 4, 0x537069656c207374617274656e, 'Y', '2012-06-16 20:35:08'),
(1305, 16, 0xcae0ea20eff0e8e3ebe0f1e8f2fc20e4f0f3e3e020ede020efe0f0f2e8fe3f, 'Y', '2012-09-23 20:59:19'),
(2962, 4, 0x41646d696e20416e6bfc6e646967756e67, 'Y', '2012-06-16 20:45:22'),
(2966, 4, 0x5072697661746520416e6bfc6e646967756e67, 'Y', '2012-06-16 20:45:22'),
(2971, 4, 0x416e7a65696765, 'Y', '2012-06-16 20:47:28'),
(2968, 4, 0x4e6575, 'Y', '2012-06-16 20:48:11'),
(2972, 4, 0x417263686976, 'Y', '2012-06-16 20:48:11'),
(2973, 4, 0x4cf6736368656e, 'Y', '2012-06-16 20:48:11'),
(3193, 4, 0xc46e646572626172, 'Y', '2012-06-16 20:48:11'),
(3195, 4, '', 'Y', '2012-07-29 12:52:42'),
(2961, 4, 0x57617274756e67, 'Y', '2012-06-16 20:51:18'),
(2967, 4, 0x57657262756e67, 'Y', '2012-06-16 20:51:18'),
(2644, 4, 0x5afc6765, 'Y', '2012-06-16 20:58:32'),
(2645, 4, 0x5072696f726974e474, 'Y', '2012-06-16 20:58:32'),
(2646, 4, 0xdc6272696765205a656974, 'Y', '2012-06-16 20:58:32'),
(2377, 4, 0x476f62616e2d456469746f72, 'Y', '2012-12-09 02:00:20'),
(2585, 4, 0x4e6575657320427265747420646965736572204772f6df6520616e6c6567656e, 'Y', '2012-06-16 21:12:08'),
(2586, 4, 0x427265697465, 'Y', '2012-06-16 21:14:17'),
(2587, 4, 0x48f66865, 'Y', '2012-06-16 21:14:17'),
(2588, 4, 0x427265747420616e6c6567656e, 'Y', '2012-06-16 21:14:17'),
(2589, 4, 0x42726574742061757320537069656c2065727a657567656e, 'Y', '2012-06-16 21:14:17'),
(2590, 4, '', 'Y', '2012-07-29 12:52:42'),
(2591, 4, 0x5a7567, 'Y', '2012-06-16 21:14:17'),
(2592, 4, 0x4c616465204447532d537069656c, 'Y', '2012-06-16 21:14:17'),
(2593, 4, 0x4c6164652042726574742061757320534746, 'Y', '2012-06-16 21:14:17'),
(2594, 4, 0x5347462d4461746569, 'Y', '2012-06-16 21:14:17'),
(2595, 4, 0x53474620686f63686c6164656e, 'Y', '2012-06-16 21:14:17'),
(2628, 4, 0x53796e746178626573636872656962756e67, 'Y', '2012-12-09 02:02:14'),
(2546, 4, 0x536f6c6c2064617320537069656c206a65747a74206765737461727465742077657264656e3f, 'Y', '2012-06-17 13:33:36'),
(4585, 16, 0xcef1f2e0ebeef1fc202573, 'Y', '2012-06-18 00:15:11'),
(3229, 25, 0x496e7665727365617ac483206d617263616a756c, 'Y', '2012-06-18 16:49:58'),
(3265, 25, 0x4164c483756761726520706172746964c483206e6f75c48320c3ae6e2063616d6572612064652061c59f74657074617265, 'Y', '2012-06-19 11:49:52'),
(2507, 25, 0x436f6e66696775726172652074696d70, 'Y', '2012-06-19 11:51:03'),
(3068, 25, 0x52657374726963c5a36969, 'Y', '2012-06-19 11:51:52'),
(259, 37, 0xd093d0be20d0a7d097d092, 'Y', '2012-06-19 20:55:14'),
(260, 37, 0xd0a7d0b5d181d182d0be20d0b7d0b0d0b4d0b0d0b2d0b0d0bdd0b820d0b2d18ad0bfd180d0bed181d0b820d0b7d0b020d093d0be20d0b2207265632e67616d65732e676f20d0bdd0bed0b2d0b8d0bdd0b0d180d181d0bad0b0d182d0b020d0b3d180d183d0bfd0b0, 'Y', '2012-06-19 20:55:14'),
(271, 37, 0xd0a5d0b8d0bad0b0d180d18320d09dd0be20d093d0be, 'Y', '2012-06-19 21:05:45'),
(272, 37, 0xd09cd0b0d0bdd0b3d0b020d0b7d0b020d093d0be2e20d09fd180d0b5d0bfd0bed180d18ad187d0b8d182d0b5d0bbd0bdd0be21, 'Y', '2012-06-19 21:05:45'),
(274, 37, 0xd098d0bdd182d0b5d180d0b0d0bad182d0b8d0b2d0bdd0be20d0b2d18ad0b2d0b5d0b4d0b5d0bdd0b8d0b5, 'Y', '2012-06-19 21:05:45'),
(281, 37, 0xd0a1d182d180d0b0d182d0b5d0b3d0b8d18f20d0b820d182d0b5d180d0bcd0b8d0bdd0bed0bbd0bed0b3d0b8d18f, 'Y', '2012-06-19 21:05:45'),
(283, 37, 0xd093d0be20d0b7d0b0d0b4d0b0d187d0b8, 'Y', '2012-06-19 21:05:45'),
(284, 37, 0xd0a0d0b5d188d0b0d0b2d0b0d0bdd0b5d182d0be2c20d0bdd0b020d0bad0bed0b8d182d0be20d0bcd0bed0b6d0b520d0b4d0b020d0bfd0bed0b4d0bed0b1d180d0b820d0b8d0b3d180d0b0d182d0b020d092d0b82e, 'Y', '2012-06-19 21:05:45'),
(291, 37, 0xd098d181d182d0bed180d0b8d18f, 'Y', '2012-06-19 21:05:45'),
(292, 37, 0xd09ad180d0b0d182d0bad0b020d098d181d182d0bed180d0b8d18f, 'Y', '2012-06-19 21:05:45'),
(293, 37, 0xd097d0b020d0b2d0b0d18120d185d0bed180d0b020d18120d0bad180d0b0d182d0bad0bed0b2d180d0b5d0bcd0b5d0bdd0bdd0be20d0b2d0bdd0b8d0bcd0b0d0bdd0b8d0b52e, 'Y', '2012-06-19 21:05:45'),
(294, 37, 0xd0a0d0b0d0b7d188d0b8d180d0b5d0bdd0b0d182d0b020d098d181d182d0bed180d0b8d18f, 'Y', '2012-06-19 21:05:45'),
(296, 37, 0xd093d0be20d0bad0bdd0b8d0b3d0b82c20d0bed0b1d0bed180d183d0b4d0b2d0b0d0bdd0b520d0b820d181d0bed184d182d183d0b5d180, 'Y', '2012-06-19 21:05:45'),
(300, 37, 0xd094d180d183d0b3d0b820d093d0be20d181d18ad180d0b2d18ad180d0b8, 'Y', '2012-06-19 21:05:45'),
(3440, 37, 0xd0a1d182d0b0d182d183d18120d0b7d0b020253124733a2025322473, 'Y', '2012-06-19 21:06:23'),
(1636, 4, '', 'Y', '2012-07-29 12:52:42'),
(1638, 4, '', 'Y', '2012-07-29 12:52:42'),
(1923, 4, '', 'Y', '2012-07-29 12:52:42'),
(1932, 4, 0x54656d706f72e47265205a7567616e6773626573636872e46e6b756e67, 'Y', '2012-07-02 12:35:38'),
(2145, 4, 0x50726f6669, 'Y', '2012-07-02 12:35:38'),
(2158, 4, 0x53746174697374696b, 'Y', '2012-07-02 12:35:38'),
(2174, 4, 0x5475726e69657220496e666f, 'Y', '2012-07-02 12:35:38'),
(2458, 4, 0x537069656c20496e666f726d6174696f6e, 'Y', '2012-07-02 12:35:38'),
(2669, 4, '', 'Y', '2012-07-29 12:52:42'),
(2670, 4, '', 'Y', '2012-07-29 12:52:42'),
(2671, 4, '', 'Y', '2012-07-29 12:52:42'),
(2992, 4, 0x5475726e69657265, 'Y', '2012-07-02 12:37:45');
INSERT INTO `Translations` (`Original_ID`, `Language_ID`, `Text`, `Translated`, `Updated`) VALUES
(3070, 4, 0x286665686c656e64657220546974656c29, 'Y', '2012-07-02 12:37:45'),
(3142, 4, '', 'Y', '2012-07-29 12:52:42'),
(3143, 4, 0x4c6568726572, 'Y', '2012-07-02 12:37:45'),
(3163, 4, '', 'Y', '2012-07-29 12:52:42'),
(3186, 4, '', 'Y', '2012-07-29 12:52:42'),
(2724, 4, 0x4b6c696e676f6e69736368657320496d70657269756d, 'Y', '2012-07-02 12:38:52'),
(2725, 4, 0x56657265696e696774652046f66465726174696f6e2064657220506c616e6574656e, 'Y', '2012-07-02 12:38:52'),
(3001, 4, 0x456e676c69736368, 'Y', '2012-07-03 00:30:48'),
(3002, 4, 0x4672616e7af67369736368, 'Y', '2012-07-03 00:30:48'),
(3003, 4, 0x4172616269736368, 'Y', '2012-07-03 00:30:48'),
(3004, 4, 0x5370616e6973636820284b6174616c616e6973636829, 'Y', '2012-07-03 00:30:48'),
(3005, 4, 0x5370616e6973636820284261736b6973636829, 'Y', '2012-07-03 00:30:48'),
(3006, 4, 0x5275737369736368, 'Y', '2012-07-03 00:30:48'),
(3007, 4, 0x506f7274756769657369736368, 'Y', '2012-07-03 00:30:48'),
(3008, 4, 0x44657574736368, 'Y', '2012-07-03 00:30:48'),
(3009, 4, 0x486f6c6ce46e6469736368, 'Y', '2012-07-03 00:30:48'),
(3010, 4, 0x4974616c69656e69736368, 'Y', '2012-07-03 00:30:48'),
(3011, 4, 0x4368696e65736973636820284b616e746f6e65736973636829, 'Y', '2012-07-03 00:30:48'),
(3012, 4, 0x4368696e65736973636820284d616e646172696e29, 'Y', '2012-07-03 00:30:48'),
(3013, 4, 0x5473636865636869736368, 'Y', '2012-07-03 00:30:48'),
(3014, 4, 0x44e46e69736368, 'Y', '2012-07-03 00:30:48'),
(3015, 4, 0x46696e6e69736368, 'Y', '2012-07-03 00:30:48'),
(3016, 4, 0x47726965636869736368, 'Y', '2012-07-03 00:30:48'),
(3017, 4, 0x48656272e469736368, 'Y', '2012-07-03 00:30:48'),
(3018, 4, 0x556e67617269736368, 'Y', '2012-07-03 00:30:48'),
(3019, 4, 0x4a6170616e69736368, 'Y', '2012-07-03 00:30:48'),
(3020, 4, 0x4b6f7265616e69736368, 'Y', '2012-07-03 00:30:48'),
(3021, 4, 0x4e6f7277656769736368, 'Y', '2012-07-03 00:30:48'),
(3022, 4, 0x506f6c6e69736368, 'Y', '2012-07-03 00:30:48'),
(3023, 4, 0x52756de46e69736368, 'Y', '2012-07-03 00:30:48'),
(3024, 4, 0x5365726269736368, 'Y', '2012-07-03 00:30:48'),
(3025, 4, 0x536c6f76616b69736368, 'Y', '2012-07-03 00:30:48'),
(3026, 4, 0x53636877656469736368, 'Y', '2012-07-03 00:30:48'),
(3027, 4, 0x546861696ce46e6469736368, 'Y', '2012-07-03 00:30:48'),
(3028, 4, 0x54fc726b69736368, 'Y', '2012-07-03 00:30:48'),
(3030, 4, 0x566965746e616d657369736368, 'Y', '2012-07-03 00:30:48'),
(3031, 4, '', 'Y', '2012-07-29 12:52:42'),
(3032, 4, 0x4d616c617969736368, 'Y', '2012-07-03 00:34:15'),
(3033, 4, 0x47656f726769736368, 'Y', '2012-07-03 00:34:15'),
(3034, 4, 0x4972697363682d47e46c69736368, 'Y', '2012-07-03 00:34:15'),
(3035, 4, 0x496e646f6e657369736368, 'Y', '2012-07-03 00:34:15'),
(3036, 4, '', 'Y', '2012-07-29 12:52:42'),
(3037, 4, 0x54616d696c69736368, 'Y', '2012-07-03 00:34:15'),
(3038, 4, '', 'Y', '2012-07-29 12:52:42'),
(3039, 4, 0x42656e67616c69736368, 'Y', '2012-07-03 00:34:15'),
(3040, 4, 0x426f736e69736368, 'Y', '2012-07-03 00:34:15'),
(3041, 4, 0x4b726f617469736368, 'Y', '2012-07-03 00:34:15'),
(3042, 4, 0x536c6f77656e69736368, 'Y', '2012-07-03 00:34:15'),
(3043, 4, '', 'Y', '2012-07-29 12:52:42'),
(3044, 4, 0x53756168656c69, 'Y', '2012-07-03 00:34:15'),
(3045, 4, 0x557362656b69736368, 'Y', '2012-07-03 00:34:15'),
(3046, 4, 0x4d6f6e676f6c69736368, 'Y', '2012-07-03 00:34:15'),
(3047, 4, 0x416c62616e69736368, 'Y', '2012-07-03 00:34:15'),
(3048, 4, 0x41726d656e69736368, 'Y', '2012-07-03 00:34:15'),
(3049, 4, 0x42756c67617269736368, 'Y', '2012-07-03 00:34:15'),
(3050, 4, 0x5065727369736368, 'Y', '2012-07-03 00:34:15'),
(3051, 4, '', 'Y', '2012-07-29 12:52:42'),
(2675, 4, 0x41616c616e6420496e73656c6e, 'Y', '2012-07-03 00:44:51'),
(2676, 4, 0x416d6572696b616e697363682053616d6f61, 'Y', '2012-07-03 00:44:51'),
(2677, 4, '', 'Y', '2012-07-29 12:52:42'),
(2678, 4, '', 'Y', '2012-07-29 12:52:42'),
(2679, 4, '', 'Y', '2012-07-29 12:52:42'),
(2680, 4, 0x426f736e69656e20756e64204865727a65676f77696e61, 'Y', '2012-07-03 00:44:51'),
(2681, 4, 0x42726974697363686573205465727269746f7269756d2028496e64697363686572204f7a65616e29, 'Y', '2012-07-03 00:44:51'),
(2682, 4, '', 'Y', '2012-07-29 12:52:42'),
(2683, 4, 0x4361796d616e20496e73656c6e, 'Y', '2012-07-03 00:44:51'),
(2684, 4, 0x576569686e6163687473696e73656c, 'Y', '2012-07-03 00:44:51'),
(2685, 4, 0x4b6f6b6f73696e73656c6e, 'Y', '2012-07-03 00:44:51'),
(2686, 4, 0x436f6f6b696e73656c6e, 'Y', '2012-07-03 00:44:51'),
(2687, 4, 0x4575726f70e4697363686520556e696f6e, 'Y', '2012-07-03 00:44:51'),
(2688, 4, 0x46616c6b6c616e64696e73656c6e, 'Y', '2012-07-03 00:44:51'),
(2689, 4, 0x46e472f66572, 'Y', '2012-07-03 00:44:51'),
(2690, 4, 0x4672616e7af673697363682d4775696e6561, 'Y', '2012-07-03 00:44:51'),
(2691, 4, 0x4672616e7af673697363682d506f6c796e657369656e, 'Y', '2012-07-03 00:44:51'),
(2692, 4, '', 'Y', '2012-07-29 12:52:42'),
(2693, 4, 0x4772f66e6c616e64, 'Y', '2012-07-03 00:44:51'),
(2694, 4, '', 'Y', '2012-07-29 12:52:42'),
(2695, 4, '', 'Y', '2012-07-29 12:52:42'),
(2696, 4, '', 'Y', '2012-07-29 12:52:42'),
(2697, 4, 0x496e73656c204d616e, 'Y', '2012-07-03 00:44:51'),
(2698, 4, '', 'Y', '2012-07-29 12:52:42'),
(2699, 4, 0x4b61736163687374616e, 'Y', '2012-07-03 00:44:51'),
(2700, 4, '', 'Y', '2012-07-29 12:52:42'),
(2701, 4, '', 'Y', '2012-07-29 12:52:42'),
(2702, 4, '', 'Y', '2012-07-29 12:52:42'),
(2703, 4, '', 'Y', '2012-07-29 12:52:42'),
(2704, 4, 0x4e69656465726ce46e64697363686520416e74696c6c656e, 'Y', '2012-07-03 00:44:51'),
(2705, 4, 0x4e65756b616c65646f6e69656e, 'Y', '2012-07-03 00:49:19'),
(2706, 4, '', 'Y', '2012-07-29 12:52:42'),
(2707, 4, 0x4e6f72666f6c6b696e73656c, 'Y', '2012-07-03 00:49:19'),
(2708, 4, 0x4ef672646c69636865204d617269616e656e, 'Y', '2012-07-03 00:49:19'),
(2709, 4, 0x50616ce47374696e656e736973636865204175746f6e6f6d696567656269657465, 'Y', '2012-07-03 00:49:19'),
(2710, 4, 0x506974636169726e696e73656c6e, 'Y', '2012-07-03 00:49:19'),
(2711, 4, 0x52e9756e696f6e, 'Y', '2012-07-03 00:49:19'),
(2712, 4, 0x53742e204261727468e96c656d79, 'Y', '2012-07-03 00:49:19'),
(2713, 4, 0x53742e2048656c656e61, 'Y', '2012-07-03 00:49:19'),
(2715, 4, 0x5361696e742d50696572726520756e64204d697175656c6f6e, 'Y', '2012-07-03 00:49:19'),
(2716, 4, 0x53fc6467656f726769656e20756e642053616e6477696368696e73656c6e, 'Y', '2012-07-03 00:49:19'),
(2717, 4, '', 'Y', '2012-07-29 12:52:42'),
(2718, 4, '', 'Y', '2012-07-29 12:52:42'),
(2719, 4, 0x5475726b732d20756e6420436169636f73696e73656c6e, 'Y', '2012-07-03 00:49:19'),
(2720, 4, 0x427269746973636865204a756e676665726e696e73656c6e, 'Y', '2012-07-03 00:49:19'),
(2722, 4, '', 'Y', '2012-07-29 12:52:42'),
(2723, 4, 0x57657374736168617261, 'Y', '2012-07-03 00:49:19'),
(2714, 4, 0x5361696e742d4d617274696e, 'Y', '2012-07-03 00:50:02'),
(2721, 4, 0x416d6572696b616e6973636865204a756e676665726e696e73656c6e, 'Y', '2012-07-03 00:50:02'),
(1919, 4, 0x46fc722064656e2046616c6c2c2064617373205369652065696e6520456d61696c6164726573736520696e20496872656d2042656e75747a657270726f66696c2067657365747a7420484142454e2c206bf66e6e656e205369652065696e206e657565732050617373776f727420616e204968726520456d61696c616472657373652073656e64656e206c617373656e206d69743a202573, 'Y', '2012-07-03 13:16:26'),
(1920, 4, 0x46fc722064656e2046616c6c2c206461737320536965206b65696e6520456d61696c6164726573736520696e20496872656d2042656e75747a657270726f66696c2067657365747a7420686162656e3a, 'Y', '2012-09-01 21:22:19'),
(1922, 4, 0x6d6568722044657461696c732066696e64656e2053696520696e2064656e2048696c66652d53656974656e2028464151293a, 'Y', '2012-07-03 13:16:26'),
(2733, 4, 0x44696520537069656c65722d4964732073696e642066fc72206469657365204f7065726174696f6e20696e6b6f7272656b742e20426974746520696e666f726d696572656e205369652064656e20537570706f727420fc626572206461732050726f626c656d2e, 'Y', '2012-07-03 13:16:26'),
(2734, 4, 0x44657220447261676f6e20476f2053657276657220626566696e646574207369636820696d2057617274756e67736d6f6475732e, 'Y', '2012-07-03 13:16:26'),
(2735, 4, 0x4e616d652064657220536572766572616e66726167652069737420756e67fc6c7469672e, 'Y', '2012-07-03 13:16:26'),
(2736, 4, 0x44696520416b7469766974e474204968726573204163636f756e747320697374207a752067726fdf2e2044616865722077757264652065696e652074656d706f72e47265205a7567616e6773626573636872e46e6b756e6720696e204b726166742067657365747a742e, 'Y', '2012-07-03 13:16:26'),
(2737, 4, 0x457320697374206e69636874206df6676c6963682c20646173732064657220476173742d42656e75747a6572204e6163687269636874656e20656d7066616e67656e206b616e6e2e, 'Y', '2012-07-03 13:16:26'),
(2738, 4, 0x44617320537069656c2069737420696e2065696e656d2066616c736368656e205a757374616e642c20756d20646965204f7065726174696f6e207a752065726df6676c696368656e2e, 'Y', '2012-07-03 13:16:26'),
(2739, 4, 0x4d656872666163682d4e6163687269636874656e202842756c6b2d6d6573736167652920616e206d6963682073656c6273742073696e64206e696368742065726c617562742e, 'Y', '2012-07-03 13:16:26'),
(2740, 4, 0x4573206973742049686e656e206e696368742065726c617562742c204d656872666163682d4e6163687269636874656e202862756c6b2d6d65737361676529207a752076657273656e64656e2e, 'Y', '2012-07-03 13:16:26'),
(2741, 4, 0x46fc722064696520537069656c686572617573666f72646572756e67206665686c742064696520537069656c2d4b6f6e66696775726174696f6e202867616d652d7365747570292e204269747465206b6f6e74616b74696572656e205369652064656e20537570706f72742e, 'Y', '2012-07-03 13:16:26'),
(2742, 4, 0x53696520686162656e20646965206d6178696d616c6520416e7a61686c20616e20676573746172746574656e20537069656c656e2065727265696368742e, 'Y', '2012-07-03 13:16:26'),
(2743, 4, 0x49687220476567656e737069656c65722068617420646965206d6178696d616c6520416e7a61686c20616e20676573746172746574656e20537069656c656e2065727265696368742e, 'Y', '2012-07-03 13:16:26'),
(2744, 4, 0x53696520686162656e20646965206d6178696d616c6520416e7a61686c20616e20676573746172746574656e20537069656c656e2066fc72205475726e6965722d52656769737472696572756e672065727265696368742e, 'Y', '2012-07-03 13:16:26'),
(2745, 4, 0x446965206d6178696d616c6520416e7a61686c20616e20676573746172746574656e20537069656c656e2066fc72205475726e6965722d52656769737472696572756e672077757264652066fc722064656e2042656e75747a65722065727265696368742e, 'Y', '2012-07-03 13:16:26'),
(2746, 4, 0x45696e20756e62656b616e6e74657320526567656c7765726b2077757264652076657277656e6465742e, 'Y', '2012-07-03 13:16:26'),
(2747, 4, 0x446965204e6163686b6f6d6d617374656c6c656e20766f6e204b6f6d69206bf66e6e656e206e757220646965205765727465202e30206f646572202e3520616e6e65686d656e2e, 'Y', '2012-07-03 13:16:26'),
(2748, 4, 0x44696520416e7a61686c20616e20566f7267616265737465696e656e20fc626572736368726569746574206461732065726c6175627465204d6178696d756d2e2042697474652077e4686c656e205369652065696e656e207665726efc6e66746967656e20576572742e, 'Y', '2012-07-03 13:16:26'),
(2749, 4, 0x45696e20616e64657265722042656e75747a657220686174206765726164652064696520446174656e206765e46e646572742c2064696520536965206765726164652073636872656962656e20776f6c6c74656e2028226f7074696d69737469632d6c6f636b696e6720636c61736822292e204269747465206c6164656e20536965206469652053656974652065726e65757420756e6420676562656e2064696520446174656e206e65752065696e2e, 'Y', '2012-07-03 13:16:26'),
(2750, 4, 0x457320777572646520626572656974732065696e206e657565732050617373776f727420616e2064696573656e2042656e75747a65722076657273636869636b742e2042697474652076657277656e64656e20536965206469657365732050617373776f727420616e73746174742065696e206e6575657320616e7a75666f726465726e2e, 'Y', '2012-07-03 13:16:26'),
(2751, 4, 0x4269747465206d656c64656e20536965207369636820616c73204761737462656e75747a657220616e20756e64207374656c6c656e205369652065696e6520416e667261676520696d20537570706f72742d466f72756d2028676562656e2053696520496872652042656e75747a65722d494420756e64204968726520452d4d61696c2d4164726573736520616e292e, 'Y', '2012-12-13 04:00:30'),
(2752, 4, 0x45696e2050617373776f7274206b616e6e206e696368742076657273636869636b742077657264656e2c206461206b65696e6520456d61696c6164726573736520616e6765676562656e2077757264652e, 'Y', '2012-07-03 13:16:26'),
(2753, 4, 0x44696520616e6765676562656e6520456d61696c6164726573736520736965687420756e67fc6c746967206175732e20426974746520fc6265727072fc66656e2053696520496872652045696e676162656e206f6465722076657277656e64656e205369652065696e6520616e646572652e, 'Y', '2012-07-03 13:16:26'),
(2754, 4, 0x4265696d2056657273656e64656e2064657220456d61696c206973742065696e204665686c657220617566676574726574656e2e, 'Y', '2012-07-03 13:16:26'),
(2762, 4, 0x44657220476173742d42656e75747a6572206b616e6e206e69636874206865726175736765666f72646572742077657264656e2e, 'Y', '2012-07-03 13:16:26'),
(2763, 4, 0x4665686c656e64652042656e75747a65726b656e6e756e67207a757220417573676162652064657220446174656e2e, 'Y', '2012-07-03 13:16:26'),
(2764, 4, 0x46616c6c732053696520fc6265727a657567742073696e642c2064617373206469652049502d4164726573732d426c6f636b696572756e67206e696368742049686e656e2067696c742c20736f2072656769737472696572656e205369652065696e656e204163636f756e7420fc62657220646965203c6120687265663d222573223e616c7465726e61746976652052656769737472696572756e67732d53656974653c2f613e2e, 'Y', '2012-07-03 13:16:26'),
(2765, 4, 0x46fc7220646965736520416b74696f6e206dfc7373656e2053696520616e67656d656c646574207365696e2e, 'Y', '2012-07-03 13:31:32'),
(2766, 4, 0x44696520557273616368656e2066fc72206469657365732050726f626c656d206bf66e6e656e207365696e3a, 'Y', '2012-07-03 13:31:32'),
(2767, 4, 0x5369652062657369747a656e206b65696e656e203c6120687265663d222531247372656769737465722e706870223e4163636f756e743c2f613e2c206f6465722053696520686162656e2073696368206e6f6368206e69636874203c6120687265663d2225312473696e6465782e706870223e616e67656d656c6465743c2f613e2e, 'Y', '2012-07-03 13:31:32'),
(2768, 4, 0x496872652042726f777365722d436f6f6b6965732073696e642061757367656c617566656e2e2044696573206b616e6e2065696e6d616c2070726f204d6f6e617420766f726b6f6d6d656e2e, 'Y', '2012-07-03 13:31:32'),
(2769, 4, 0x53696520686162656e20436f6f6b69657320696e20496872656d2042726f777365722066fc72206469657365205365697465206e6963687420616b746976696572742e, 'Y', '2012-07-03 13:31:32'),
(2770, 4, 0x4469657365732046656174757265207775726465206175662064656d20536572766572206465616b746976696572742e, 'Y', '2012-07-03 13:31:32'),
(2771, 4, 0x5a756d20486f63686c6164656e20766f6e204461746569656e206665686c7420646173206ef6746967652074656d706f72e4726573205665727a656963686e6973206175662064656d205365727665722e204269747465206b6f6e74616b74696572656e205369652065696e656e2041646d696e6973747261746f722e, 'Y', '2012-07-03 13:31:32'),
(2772, 4, 0x44617320486f63686c6164656e2064657220446174656920697374206665686c67657363686c6167656e2e, 'Y', '2012-07-03 13:31:32'),
(2773, 4, 0x5369652073696e64206b65696e20537069656c657220696e2064696573656d20537069656c2e, 'Y', '2012-07-03 13:31:32'),
(2774, 4, 0x4461732050617373776f7274206d757373206d696e64657374656e732036205a65696368656e206c616e67207365696e2e, 'Y', '2012-07-03 13:31:32'),
(2775, 4, 0x45696e6520416e74776f727420617566206469657365204e616368726963687420697374206e69636874206df6676c6963682e, 'Y', '2012-07-03 13:31:32'),
(2776, 4, 0x44617320616e6765676562656e6520526174696e672069737420756e67fc6c7469672e, 'Y', '2012-07-03 13:31:32'),
(2777, 4, 0x44696520616e6765676562656e656e205a75676b6f6f7264696e6174656e2073696e6420756e67fc6c7469672e, 'Y', '2012-07-03 13:31:32'),
(2778, 4, 0x44696520416e66616e6773737069656c657220696e2064696573656d20537069656c207374696d6d656e206e696368742e, 'Y', '2012-07-03 13:31:32'),
(2779, 4, 0x44696520466f726d2d49442069737420756e67fc6c7469672e, 'Y', '2012-12-09 01:55:17'),
(2780, 4, 0x44696520466f726d207775726465206e6963687420676566756e64656e2e, 'Y', '2012-12-09 01:56:04'),
(2781, 4, 0x4573206973742049686e656e206e696368742065726c617562742c20696e2064696573656d20466f72756d20417274696b656c207a752073636872656962656e2e, 'Y', '2012-12-13 04:00:30'),
(2782, 4, 0x4573206973742049686e656e206e696368742065726c617562742064696573656e20466f72756d73617274696b656c20616e7a757363686175656e2e, 'Y', '2012-07-03 13:31:32'),
(2783, 4, 0x4469652042656e75747a65722d4964206d757373206d696e64657374656e732033205a65696368656e206c616e67207365696e2e, 'Y', '2012-07-03 13:31:32'),
(2784, 4, 0x53696520686162656e206e696368742067656e75672067657765727465746520616267657363686c6f7373656e6520537069656c652c20756d20646965736520537069656c70617274696520616e7a756e65686d656e2e, 'Y', '2012-07-03 13:31:32'),
(2786, 4, 0x4175666772756e642065696e657320696e7465726e656e204665686c657273206b6f6e6e74656e205369652064696520537069656c706172746965206e6963687420616e6e65686d656e2e204269747465206b6f6e74616b74696572656e205369652065696e656e2041646d696e6973747261746f722e, 'Y', '2012-07-03 13:31:32'),
(2787, 4, 0x536965206b6f6d6d656e207a75207370e4742c20756d20646965736520537069656c70617274696520616e7a756e65686d656e2e, 'Y', '2012-07-03 13:31:32'),
(2788, 4, 0x46616c6c73205369652050617373776f72742076657267657373656e20686162656e2c206b616e6e2049686e656e2065696e206e65756573207a75676573636869636b742077657264656e2e, 'Y', '2012-07-03 13:31:32'),
(2792, 4, 0x4d69742064696573656d205475726e69657220697374206574776173206e6963687420696e204f72646e756e672e204269747465206b6f6e74616b74696572656e205369652065696e656e205475726e6965722041646d696e6973747261746f722e, 'Y', '2012-07-03 13:31:32'),
(2793, 4, 0x4573206973742049686e656e206e696368742065726c617562742c2065696e206e65756573205475726e69657220616e7a756c6567656e2e20446965736573204665617475726520777572646520766f6e2065696e656d2041646d696e6973747261746f7220626c6f636b696572742e, 'Y', '2012-07-03 13:31:32'),
(2794, 4, 0x4e75722065696e205475726e6965722041646d696e6973747261746f72206b616e6e2065696e206e65756573205475726e69657220616e6c6567656e2e, 'Y', '2012-07-03 13:31:32'),
(3440, 8, 0x253124733a202532247320a5d8ab65b5a5afc5, 'Y', '2012-07-13 08:25:29'),
(3440, 34, 0x253124733a202532247320e79baee5898de7ad89e7b49a, 'Y', '2012-07-13 08:26:19'),
(3440, 10, 0x253124733a202532247320c4bfc7b0b5c8bcb6, 'Y', '2012-07-13 08:25:49'),
(3440, 33, 0x253124733a202532247320e79baee5898de7ad89e7baa7, 'Y', '2012-07-13 08:26:04'),
(985, 16, 0xcae0ea20eff0fff2e0f2fc2fefeeeae0e7fbe2e0f2fc20f1f2eeebe1f6fb20e220f2e0e1ebe8f6e0f53f, 'Y', '2012-07-05 23:22:30'),
(986, 16, 0xddf2ee20eef2edeef1e8f2f1ff20eaee20e2f1e5ec20f1ebe5e4f3fef9e8ec20efe5f0e5f7edffec3a0d0a3c756c3e0d0a3c6c693eefe0f0f2e8e820ede020f1f2f0e0ede8f6e5203c686f6d65207374617475732e7068703ed1eef1f2eeffede8e53c2f686f6d653e0d0a3c6c693ef1efe8f1eeea20e2fbe7eee2eee220ede020f1f2f0e0ede8f6e5203c686f6d652077616974696e675f726f6f6d2e7068703ec8e3f0eee2eee920e7e0eb3c2f686f6d653e0d0a3c6c693ef1efe8f1eeea20efeeebfce7eee2e0f2e5ebe5e920ede020f1f2f0e0ede8f6e5203c686f6d652075736572732e7068703ed3f7e0f1f2ede8eae83c2f686f6d653e0d0a3c6c693ef1efe8f1eeea20efeeebfce7eee2e0f2e5ebe5e920ede020f1f2f0e0ede8f6e5203c686f6d65206c6973745f636f6e74616374732e7068703ecaeeedf2e0eaf2fb3c2f686f6d653e0d0a3c6c693ef1efe8f1eeea20eff0eee4eeebe6e0fef9e8f5f1ff2c20e7e0eaeeedf7e5ededfbf520e820eff0eef1ece0f2f0e8e2e0e5ecfbf520efe0f0f2e8e920ede020f1f2f0e0ede8f6e5203c686f6d652073686f775f67616d65732e7068703f7569643d616c6c3ec8e3f0fb3c2f686f6d653e0d0a3c2f756c3e0d0a0d0ad7f2eee1fb20e4eee1e0e2e8f2fc20f1f2eeebe1e5f62c20e2fbe1e5f0e5f2e520f2eef22c20eaeef2eef0fbe920e2fb20e6e5ebe0e5f2e520e4eee1e0e2e8f2fc2c20e220e2fbefe0e4e0fef9e5ec20ece5edfe20e2ede8e7f320f1f2f0e0ede8f6fb20e820ede0e6ece8f2e520eaedeeefeaf320223c693ec4eee1e0e2e8f2fc20eaeeebeeedeaf33c2f693e2220e2eee7ebe520ede5e3ee2e20d7f2eee1fb20f3e4e0ebe8f2fc20f1f2eeebe1e5f62c20eaebe8eaede8f2e520ede020eaf0e0f1edeeec2027782720283c696d6167652072656d6f76652e6769663e2920e2eee7ebe520e7e0e3eeebeee2eae020e4e0ededeee3ee20f1f2eeebe1f6e02e20cde5eaeef2eef0fbe520f1f2eeebe1f6fb20efeef1f2eeffededfbe520e820f3e4e0ebe5ede8fe20ede520efeee4ebe5e6e0f22e, 'N', '2012-07-05 23:22:30'),
(1008, 16, 0xc3e4e520eee1f1f3e6e4e0e5f2f1ff20f0e0e7f0e0e1eef2eae020e8f1f5eee4edeee3ee20eaeee4e020e4ebff20447261676f6e3f, 'Y', '2012-07-05 23:37:05'),
(1009, 16, 0xc220efeef1ebe5e4ede5e520e2f0e5ecff20f4f3edeaf6e8e820eff0e5e8ecf3f9e5f1f2e2e5ededee20eee1f1f3e6e4e0fef2f1ff20ede020f4eef0f3ece0f52044475320ebe8e1ee20ede5efeef1f0e5e4f1f2e2e5ededee20ece5e6e4f320f0e0e7f0e0e1eef2f7e8eae0ece820efee20fdebe5eaf2f0eeededeee920efeef7f2e52c20e8ebe820e6e520ede020f1efe5f6e8e0ebfcedeeec2028eae0ea20eff0e0e2e8ebee2c20f1eaf0fbf2eeec2920f4eef0f3ece520e4ebff20f0e0e7f0e0e1eef2f7e8eaeee220ede0204447532e, 'Y', '2012-07-05 23:37:05'),
(1126, 16, 0xcaeef0e5ff2c20d1e5e2e5f0ede0ff, 'Y', '2012-07-05 23:37:05'),
(1127, 16, 0xcaeef0e5ff2c20dee6ede0ff, 'Y', '2012-07-05 23:37:05'),
(1128, 16, 0xd7e5f0edeee3eef0e8ff, 'Y', '2012-07-05 23:37:05'),
(1129, 16, 0xd1e5f0e1e8ff, 'Y', '2012-07-05 23:37:05'),
(1130, 16, 0xc7e5ecebff, 'Y', '2012-07-05 23:37:05'),
(1237, 16, 0xcfeee8f1ea, 'Y', '2012-07-05 23:37:05'),
(1228, 16, 0xc3f0e0f4e8ea20f1f2e0f2e8f1f2e8eae8, 'Y', '2012-07-06 11:33:59'),
(1234, 16, 0xcee1f1f3e6e4e5ede8ff, 'Y', '2012-07-14 15:12:21'),
(1235, 16, 0xcde0e7e0e420ea20eee1f1f3e6e4e5ede8fe, 'Y', '2012-07-14 15:12:21'),
(2675, 16, 0xc0ebe0ede4f1eae8e520eef1f2f0eee2e0, 'Y', '2012-07-08 21:56:36'),
(2676, 16, 0xc0ece5f0e8eae0edf1eaeee520d1e0eceee0, 'Y', '2012-07-08 21:56:36'),
(2677, 16, 0xc0ede3e8ebfcff, 'Y', '2012-07-08 21:56:36'),
(2678, 16, 0xc0f0f3e1e0, 'Y', '2012-07-08 21:56:36'),
(2679, 16, 0xc1e5f0ecf3e4fb, 'Y', '2012-07-08 21:56:36'),
(2680, 16, 0xc1eef1ede8ff20e820c3e5f0f6e5e3eee2e8ede0, 'Y', '2012-07-08 21:56:36'),
(2687, 16, 0xc5e2f0eeefe5e9f1eae8e920d1eefee7, 'Y', '2012-07-08 21:56:36'),
(2690, 16, 0xd4f0e0edf6f3e7f1eae0ff20c3e2e8ede5ff, 'Y', '2012-07-08 21:56:36'),
(2691, 16, 0xd4f0e0edf6f3e7f1eae0ff20cfeeebe8ede5e7e8ff, 'Y', '2012-07-08 21:56:36'),
(2692, 16, 0xc3e8e1f0e0ebf2e0f0, 'Y', '2012-07-08 21:56:36'),
(2693, 16, 0xc3f0e5edebe0ede4e8ff, 'Y', '2012-07-08 21:56:36'),
(2697, 16, 0xcef1f2f0eee220ccfded, 'Y', '2012-07-08 21:56:36'),
(2698, 16, 0xc4e6e5f0f1e8, 'Y', '2012-07-08 21:56:36'),
(2699, 16, 0xcae0e7e0f5f1f2e0ed, 'Y', '2012-07-08 21:56:36'),
(2700, 16, 0xcce0eae0ee, 'Y', '2012-07-08 21:56:36'),
(3375, 4, 0x4c617566656e646520537069656c652066fc7220253124733a2025322473, 'Y', '2012-07-10 22:28:49'),
(4156, 40, 0x5061727469636970616e74657320646f20546f726e65696f20232564, 'Y', '2015-01-17 17:21:03'),
(4588, 4, 0x4c617566656e646520537069656c6520646573204e75747a657273, 'Y', '2012-07-10 22:28:49'),
(2361, 4, 0x25732045696e7472e46765, 'Y', '2012-07-10 22:29:48'),
(3188, 4, 0x2825732045696e7472e4676529, 'Y', '2012-07-10 22:29:48'),
(3374, 4, 0x4265656e6465746520537069656c652066fc7220253124733a2025322473, 'Y', '2012-07-10 22:31:35'),
(4589, 4, 0x4265656e6465746520537069656c6520646573204e75747a657273, 'Y', '2012-07-10 22:31:35'),
(4549, 4, 0x48696e7765697365207a756d2057617274657a696d6d6572, 'Y', '2012-07-10 22:33:21'),
(4548, 4, 0x45696e20537069656c20696d2057617274657a696d6d657220697374203c623e70617373656e643c2f623e2c2077656e6e20666f6c67656e646520426573636872e46e6b756e67656e20657266fc6c6c742073696e643a, 'Y', '2013-04-14 13:01:50'),
(2377, 11, '', 'Y', '2013-01-11 15:50:37'),
(3156, 11, 0x4e69657577652070617274696a, 'Y', '2013-01-11 15:55:13'),
(5497, 4, 0x536965206bf66e6e656e206e7572204968726520656967656e656e205665726966697a696572756e67656e20656e746665726e656e21, 'Y', '2013-08-11 19:28:21'),
(3097, 4, '', 'Y', '2012-07-29 12:52:42'),
(3098, 4, 0x4d6974204a69676f, 'Y', '2012-07-10 23:02:11'),
(3099, 4, '', 'Y', '2012-07-29 12:52:42'),
(3100, 4, 0x4f686e65204a69676f, 'Y', '2012-07-10 23:02:11'),
(2424, 18, 0x53657474616767692050617274697461, 'Y', '2012-08-27 16:35:54'),
(4534, 4, 0x45696e7374656c6c756e67, 'Y', '2012-07-10 23:08:51'),
(4536, 4, '', 'Y', '2012-07-29 12:52:42'),
(4537, 4, 0x257320676c65696368617566204b2573, 'Y', '2012-07-10 23:08:51'),
(4546, 4, 0x5370616c7465202745696e7374656c6c756e6727207a656967742064696520766f7261757373696368746c696368652046617262652c20566f726761626520756e64204b6f6d692e, 'Y', '2013-04-14 12:33:42'),
(4539, 4, 0x28464829, 'Y', '2012-07-10 23:11:20'),
(4547, 4, 0x48696e77656973206175662066726569207365747a6261726520566f7267616265737465696e65, 'Y', '2013-04-14 12:34:50'),
(4518, 4, 0x476577f6686e6c696368, 'Y', '2012-07-10 23:24:57'),
(4519, 4, 0x50617373656e64, 'Y', '2012-07-10 23:24:57'),
(4520, 4, '', 'Y', '2012-07-29 12:52:42'),
(4521, 4, 0x446f7070656c74, 'Y', '2012-07-10 23:24:57'),
(4524, 4, 0x4d616e75656c6c, 'Y', '2012-07-10 23:24:57'),
(2920, 4, 0x4d696e646573747a61686c206265656e64657465722c206765776572746574657220537069656c65, 'Y', '2012-07-10 23:39:57'),
(3102, 4, 0x6265656e646574652c2067657765727465746520537069656c65205b2667743b3d25735d, 'Y', '2012-07-10 23:38:37'),
(3580, 4, 0x44696520416e7a61686c20646572206265656e646574656e2c206765776572746574656e205061727469656e206d75737320706f7369746976207365696e2e, 'Y', '2013-04-14 12:44:31'),
(3911, 4, 0x4e75747a6572206d757373206d696e64657374656e73202573206265656e646574652067657765727465746520537069656c6520686162656e2c206861742061626572206e75722025732e, 'Y', '2012-07-10 23:38:37'),
(4487, 4, 0x4e75747a6572206d757373206d696e64657374656e73202573206265656e646574652067657765727465746520537069656c6520686162656e2e, 'Y', '2012-07-10 23:38:37'),
(2785, 4, 0x456e74736368756c646967756e672c206265692064696573656d20537069656c20676962742065732045696e73636872e46e6b756e672062657afc676c6963682064657220416e7a61686c206f64657220646572205a6569742066fc7220486572617573666f72646572756e67656e2064757263682064656e20676c65696368656e204765676e65722e, 'Y', '2012-07-10 23:48:53'),
(2922, 4, 0x416b7a6570746965726520676c6569636865204765676e6572, 'Y', '2012-07-10 23:48:53'),
(5490, 4, 0x416e2049687265206e65756520456d61696c2d4164726573736520776972642065696e65204e6163687269636874206d6974205665726966697a696572756e67732d436f646520676573656e6465742e, 'Y', '2013-08-11 19:27:25'),
(2925, 4, 0x496d6d6572, 'Y', '2012-07-10 23:50:55'),
(4717, 7, 0x4e6f76e920726f7a6573746176656eed2028456469746f7220676f62616e7529, 'Y', '2016-07-20 18:40:45'),
(2928, 4, 0x31206d616c202870726f20416e6765626f7429, 'Y', '2012-07-10 23:50:55'),
(2929, 4, 0x2573206d616c202870726f20416e6765626f7429, 'Y', '2012-07-10 23:50:55'),
(2932, 4, 0x6e616368203120546167, 'Y', '2012-07-10 23:50:55'),
(2933, 4, 0x6e61636820257320546167656e, 'Y', '2012-07-10 23:50:55'),
(2934, 4, 0x776172746520626973202573, 'Y', '2012-07-10 23:50:55'),
(2923, 4, 0x257320537069656c6520676573746172746574, 'Y', '2012-07-10 23:51:35'),
(2924, 4, 0x257320537069656c20676573746172746574, 'Y', '2012-07-10 23:51:35'),
(4711, 7, 0x4175746f72, 'Y', '2016-07-20 16:31:47'),
(3058, 4, 0x566f7267616265, 'Y', '2012-07-10 23:53:48'),
(3059, 4, 0x616e70617373656e20756d, 'Y', '2012-07-10 23:55:34'),
(3062, 4, 0x616e70617373656e20756d, 'Y', '2012-07-10 23:55:34'),
(2959, 4, 0x4a69676f207a756c617373656e, 'Y', '2012-07-10 23:57:48'),
(2960, 4, 0x4a69676f2076657262696574656e, 'Y', '2012-07-10 23:57:48'),
(3063, 4, 0x4a69676f2d4d6f647573, 'Y', '2012-12-09 01:47:16'),
(1306, 16, 0xcef2eaf0eee9f2e520f1f2f0e0ede8f6f3203c686f6d65206d6573736167652e7068703f6d6f64653d496e766974653ec2fbe7e2e0f2fc3c2f686f6d653e20e8e720e3ebe0e2edeee3ee20ece5edfe2e20c4ebff20fdf2eee3ee20e2e0ec20edf3e6edee20e7ede0f2fc20eff1e5e2e4eeede8ec20efeef2e5edf6e8e0ebfcedeee3ee20eff0eef2e8e2ede8eae02e20cae0ea20e2e0f0e8e0edf22c20e2fb20eceee6e5f2e520e7e0e9f2e820ede020f1f2f0e0ede8f6f320f120e8edf4eef0ece0f6e8e5e920ee20efeeebfce7eee2e0f2e5ebe520e820ede0e6e0f2fc20ede020e3e8efe5f0f1f1fbebeaf320223c693ec2fbe7e2e0f2fc20fdf2eee3ee20e8e3f0eeeae03c2f693e2220e2ede8e7f320f1f2f0e0ede8f6fb2e20c7e0f2e5ec20e2fb20eceee6e5f2e520f1f4eef0ece8f0eee2e0f2fc20eff0e8e3ebe0f8e5ede8e520ede020e8e3f0f32e0d0a0d0ac2e0ec20edf3e6edee20e2fbe1f0e0f2fc20e8e720ede5f1eaeeebfceae8f520e2e0f0e8e0edf2eee22e20c1eeebfcf8e8edf1f2e2ee20eff3edeaf2eee220f2e0eae8e520e6e52c20eae0ea20eff0e8203c686f6d65206661712e7068703f726561643d74266361743d33353723456e7472793231303ee4eee1e0e2ebe5ede8e820edeee2eee920efe0f0f2e8e83c2f686f6d653e20e220e8e3f0eee2eeec20e7e0ebe52c20e820e7e4e5f1fc20ecfb20e8f520efeee2f2eef0fff2fc20ede520e1f3e4e5ec2e20d2e0ea20f7f2ee20f1ebe5e4f3fef9e8e920f1efe8f1eeea20f1eef1f2eee8f220f2eeebfceaee20e8e720eaf0e0f2eaee20eee1fafff1ede5ededfbf520eef2ebe8f7e8e93a0d0a3c756c3e0d0a3c6c693e3c623ecaeeecf32028eff1e5e2e4eeede8ec293a3c2f623e20c2fbe1e5f0e8f2e520e8e3f0eeeae02c20eaeef2eef0eee3ee20f5eef2e8f2e520eff0e8e3ebe0f1e8f2fc2e0d0a3c6c693e3c623ed1eeeee1f9e5ede8e53a3c2f623e20cfeeebe520e4ebff20eff0eee8e7e2eeebfcedeee3ee20f2e5eaf1f2e02e20c2fb20eceee6e5f2e520ede0e1f0e0f2fc20e220ede5ec20e2e5e6ebe8e2eee520eff0e8e2e5f2f1f2e2e8e52c20eee1fafff1ede8e22c20efeef7e5ecf320e2fb20eff0e8e3ebe0f8e0e5f2e520fdf2eee3ee20e8e3f0eeeae02c20e8ebe820eff0eef1f2ee20f1eae0e7e0f2fc202268656c6c6f22203b2d290d0a3c6c693ecff3edeaf2fb203c623ecfe0f0f2ede5f020f2eeebfceaee20f120f0e5e9f2e8ede3eeec3c2f623e20e8203c623ecff0e8ece5f7e0ede8e53c2f623e2c20e8e7e2e5f1f2edfbe520efee20e8e3f0eee2eeecf320e7e0ebf32c20e4ebff20eff0e8e3ebe0f8e5ede8ff20ede520f2f0e5e1f3fef2f1ff2c20e820efeef2eeecf320e2fb20e8f520f2e0ec20e820ede520ede0e9e4e5f2e52e0d0a3c2f756c3e0d0a0d0acfeef1ebe5e4ede8e920f8e0e3202d20efeef1ebe0f2fc20eff0e8e3ebe0f8e5ede8e52e20c8e3f0eeea2c20efeeebf3f7e8e220e5e3ee2c20eceee6e5f220eff0e8edfff2fc20eff0e8e3ebe0f8e5ede8e52c20eef2eaebeeede8f2fc20e5e3ee20e8ebe820eef1efeef0e8f2fc20f3f1ebeee2e8ff20e8e3f0fb2e, 'N', '2012-09-23 20:59:19'),
(1289, 16, 0xcae0ea20f1eee7e4e0f2fc20f1f1fbebeaf320ede020f1f2f0e0ede8f6f320e0edeae5f2fb20efeeebfce7eee2e0f2e5ebff3f, 'Y', '2012-07-12 10:32:06'),
(1290, 16, 0xc2eef1efeeebfce7f3e9f2e5f1fc20f2fde3eeec20447261676f6e20266c743b757365722667743b2e20cde0eff0e8ece5f020f2e0eae8ec20eee1f0e0e7eeec3a0d0a0d0a3c636f64653e3c7573657220313e3c2f636f64653e0d0a3c7573657220313e0d0a0d0a3c636f64653e3c75736572203d67756573743e3c2f636f64653e0d0a3c75736572203d67756573743e0d0a0d0a3c656d3ed3f7f2e8f2e53a0d0ad120223d2220e2e0ec20edf3e6edee20e2e2e5f1f2e820efeeebfce7eee2e0f2e5ebfcf1eae8e92049442028ede8ea292e0d0ac1e5e720223d2220e2e0ec20edf3e6edee20e2e2e5f1f2e820f7e8f1ebeee2eee920494420efeeebfce7eee2e0f2e5ebff2e0d0a3c2f656d3e, 'Y', '2012-07-14 15:46:06'),
(1291, 16, 0xcae0ea20f1eee7e4e0f2fc20f1f1fbebeaf32c20f7f2eee1fb20efeef1ebe0f2fc20efeeebfce7eee2e0f2e5ebfe20f1eeeee1f9e5ede8e53f, 'Y', '2012-07-12 11:44:29'),
(1292, 16, 0xc2eef1efeeebfce7f3e9f2e5f1fc20f2fde3eeec20447261676f6e20266c743b73656e642667743b2e20cde0eff0e8ece5f020f2e0eae8ec20eee1f0e0e7eeec3a0d0a0d0a3c636f64653e3c73656e6420313e3c2f636f64653e0d0a3c73656e6420313e0d0a0d0a3c636f64653e3c73656e64203d67756573743e3c2f636f64653e0d0a3c73656e64203d67756573743e0d0a0d0a3c656d3e20c2ede8ece0ede8e52120cfeeebfce7eee2e0f2e5ebfc2047756573742028c3eef1f2fc2920e7e4e5f1fc20f2eeebfceaee20e220e2e8e4e520eff0e8ece5f0e02e20c2fb20ede520eceee6e5f2e520efeef1fbebe0f2fc20f1eeeee1f9e5ede8ff20ede020fdf2f320f3f7b8f2edf3fe20e7e0efe8f1fc2e3c2f656d3e0d0a0d0a3c656d3ed3f7f2e8f2e53a0d0ad120223d2220e2e0ec20edf3e6edee20e2e2e5f1f2e820efeeebfce7eee2e0f2e5ebfcf1eae8e92049442028ede8ea292e0d0ac1e5e720223d2220e2e0ec20edf3e6edee20e2e2e5f1f2e820f7e8f1ebeee2eee920494420efeeebfce7eee2e0f2e5ebff2e0d0a3c2f656d3e, 'Y', '2012-07-14 15:46:06'),
(1293, 16, 0xcae0ea20f1eee7e4e0f2fc20f1f1fbebeaf320ede020efe0f0f2e8fe3f, 'Y', '2012-07-12 11:48:42'),
(1294, 16, 0xc2eef1efeeebfce7f3e9f2e5f1fc20f2e5e3eeec20447261676f6e20266c743b67616d65204749442667743b2c20f7f2eee1fb20f1eee7e4e0f2fc20f1f1fbebeaf320ede020efe0f0f2e8fe2e200d0ac2eef1efeeebfce7f3e9f2e5f1fc20f2fde3eeec20447261676f6e20266c743b67616d65204749442c6d6f76652667743b2c20f7f2eee1fb20f1eee7e4e0f2fc20f1f1fbebeaf320ede020eaeeedeaf0e5f2edfbe920f5eee420e220efe0f0f2e8e82e0d0acde0eff0e8ece5f03a0d0a0d0a3c636f64653e3c67616d652031333333393e3c2f636f64653e0d0a3c67616d652031333333393e0d0a0d0a3c636f64653e3c67616d652031333333392c35303e3c2f636f64653e0d0a3c67616d652031333333392c35303e, 'N', '2012-07-14 15:46:06'),
(2362, 4, 0x416c6c6520616c732067656c6573656e206d61726b696572656e, 'Y', '2012-07-12 17:36:41'),
(3385, 8, 0xa7daaabab669a6e6a4a4b4d1a7bd, 'Y', '2012-07-13 07:59:22'),
(3385, 10, 0xced2b5c4bdf8d0d0d6d0c6e5bed6, 'Y', '2012-07-13 07:59:41'),
(3385, 33, 0xe68891e79a84e8bf9be8a18ce4b8ade6a38be5b180, 'Y', '2012-07-13 07:59:57'),
(3385, 34, 0xe68891e79a84e980b2e8a18ce4b8ade6a38be5b180, 'Y', '2012-07-13 08:00:17'),
(3386, 34, 0xe68891e79a84e5b7b2e7b590e69d9fe6a38be5b180, 'Y', '2012-07-13 08:00:59'),
(3386, 10, 0xced2b5c4d2d1bde1caf8c6e5bed6, 'Y', '2012-07-13 08:01:47'),
(3386, 33, 0xe68891e79a84e5b7b2e7bb93e69d9fe6a38be5b180, 'Y', '2012-07-13 08:02:04'),
(3386, 8, 0xa7daaabaa477b5b2a7f4b4d1a7bd, 'Y', '2012-07-13 08:03:12'),
(3371, 8, 0xa7dac65bacddaabab4d1a7bd, 'Y', '2012-07-13 08:04:15'),
(3371, 34, 0xe68891e8a780e79c8be79a84e6a38be5b180, 'Y', '2012-07-13 08:04:25'),
(3371, 10, 0xced2b9dbbfb4b5c4c6e5bed6, 'Y', '2012-07-13 08:04:48'),
(3371, 33, 0xe68891e8a782e79c8be79a84e6a38be5b180, 'Y', '2012-07-13 08:04:58'),
(3373, 8, 0xa9d2a6b3b669a6e6a4a4b4d1a7bd, 'Y', '2012-07-13 08:07:00'),
(3373, 34, 0xe68980e69c89e980b2e8a18ce4b8ade6a38be5b180, 'Y', '2012-07-13 08:07:19'),
(3373, 10, 0xcbf9d3d0bdf8d0d0d6d0c6e5bed6, 'Y', '2012-07-13 08:07:45'),
(3373, 33, 0xe68980e69c89e8bf9be8a18ce4b8ade6a38be5b180, 'Y', '2012-07-13 08:07:54'),
(3372, 33, 0xe68980e69c89e5b7b2e7bb93e69d9fe6a38be5b180, 'Y', '2012-07-13 08:08:30'),
(3372, 10, 0xcbf9d3d0d2d1bde1caf8c6e5bed6, 'Y', '2012-07-13 08:08:42'),
(3372, 8, 0xa9d2a6b3a477b5b2a7f4b4d1a7bd, 'Y', '2012-07-13 08:09:02'),
(3372, 34, 0xe68980e69c89e5b7b2e7b590e69d9fe6a38be5b180, 'Y', '2012-07-13 08:09:17'),
(3370, 10, 0xcbf9d3d0b9dbbfb4d6d0c6e5bed6, 'Y', '2012-07-13 08:11:44'),
(3370, 33, 0xe68980e69c89e8a782e79c8be4b8ade6a38be5b180, 'Y', '2012-07-13 08:11:54'),
(3370, 8, 0xa9d2a6b3c65bacdda4a4b4d1a7bd, 'Y', '2012-07-13 08:12:10'),
(3370, 34, 0xe68980e69c89e8a780e79c8be4b8ade6a38be5b180, 'Y', '2012-07-13 08:12:25'),
(3375, 8, 0x253124733a202532247320b669a6e6a4a4b4d1a7bd, 'Y', '2012-07-13 08:13:45'),
(3375, 34, 0x253124733a202532247320e980b2e8a18ce4b8ade6a38be5b180, 'Y', '2012-07-13 08:14:06'),
(3375, 10, 0x253124733a202532247320bdf8d0d0d6d0c6e5bed6, 'Y', '2012-07-13 08:14:40'),
(3375, 33, 0x253124733a202532247320e8bf9be8a18ce4b8ade6a38be5b180, 'Y', '2012-07-13 08:14:49'),
(3374, 8, 0x253124733a202532247320a477b5b2a7f4b4d1a7bd, 'Y', '2012-07-13 08:23:07'),
(3374, 34, 0x253124733a202532247320e5b7b2e7b590e69d9fe6a38be5b180, 'Y', '2012-07-13 08:23:17'),
(3374, 10, 0x253124733a202532247320d2d1bde1caf8c6e5bed6, 'Y', '2012-07-13 08:23:49'),
(3374, 33, 0x253124733a202532247320e5b7b2e7bb93e69d9fe6a38be5b180, 'Y', '2012-07-13 08:23:58'),
(1297, 16, 0xd7f2ee20eee7ede0f7e0e5f220e8eaeeedeae020f120e4e2f3f5f6e2e5f2edfbece820eae0ecedffece820e220eceeb8ec20f1efe8f1eae520f2e5eaf3f9e8f520e8e3f03f, 'Y', '2012-07-14 13:06:17'),
(1298, 16, 0xc4e2e020e1e5ebfbf520e82fe8ebe820f7b8f0edfbf520eae0ecedff2c20efe5f0e5eaf0fbe2e0fef9e8e520e4f0f3e320e4f0f3e3e020283c696d61676520626f6172642f775f772e6769663e202f203c696d61676520626f6172642f775f622e6769663e202f203c696d61676520626f6172642f625f622e6769663e202f203c696d61676520626f6172642f625f772e6769663e292c20e220f1efe8f1eae520f2e5eaf3f9e8f520e8e3f020f3eae0e7fbe2e0fef220ede020f2ee2c20eae0eae8ec20f6e2e5f2eeec20e2fb20e8e3f0e0e5f2e520e220e4e0ededeee920efe0f0f2e8e820e820f7e5e920f1e5e9f7e0f120f5eee42e20c5f1ebe820e2fb20ede0e2e5e4b8f2e520ecfbf8eaf32028eaf3f0f1eef02920ede020e8f520e8e7eee1f0e0e6e5ede8e52c20e2f1efebfbe2b8f220f2e5eaf1f22c20eee1fafff1edfffef9e8e920e5e3ee20e7ede0f7e5ede8e52e0d0a0d0ad6e2e5f220e2e5f0f5ede5e3ee20eae0ecedff202d20fdf2ee20f6e2e5f22c20eaeef2eef0fbec203c656d3ee2fb3c2f656d3e20e8e3f0e0e5f2e52e0d0ad6e2e5f220ede8e6ede5e3ee20eae0ecedff202d20f6e2e5f220f2eee3ee20e8e3f0eeeae02c20eaeef2eef0fbe920e4eeebe6e5ed20f1e5e9f7e0f120f5eee4e8f2fc2e0d0ad2e0eae8ec20eee1f0e0e7eeec2c20eaeee3e4e020f6e2e5f220eae0ecede5e920f1eee2efe0e4e0e5f2202d20fdf2ee20e2e0f820f5eee421, 'Y', '2012-07-14 13:06:17'),
(1826, 16, 0xcee1edeee2e8f2fc, 'Y', '2012-07-14 15:00:22'),
(2107, 16, 0xceeff0eef1fb, 'Y', '2012-07-14 15:00:22'),
(2362, 16, 0xcfeeece5f2e8f2fc20e2f1e520eff0eef7e8f2e0ededfbe5, 'Y', '2012-07-14 15:00:22'),
(2363, 16, 0xc0e4ece8ede8f1f2f0e0f2eef0fb20f1e5f0e2e5f0e020eceee3f3f220f0e0e7f0e5f8e8f2fc20ebe8e1ee20eef2eaebeeede8f2fc20ebfee1fbe520f1eeeee1f9e5ede8ff2c20eeeff3e1ebe8eaeee2e0ededfbe520ede020f4eef0f3ece520ede5e7e0f0e5e3e8f1f2f0e8f0eee2e0ededfbece820efeeebfce7eee2e0f2e5ebffece82e3c62723e0d0ac5f1ebe820e2e0ec20edf3e6e5ed20eff0e8e2e0f2edfbe92028eaeeedf4e8e4e5edf6e8e0ebfcedfbe92920eef2e2e5f22c20f3eae0e6e8f2e520f1e2eee920e0e4f0e5f120652d6d61696c20e820efeeeff0eef1e8f2e520ebe8f7edeee3ee20eaeeedf2e0eaf2e02e, 'Y', '2012-07-14 15:20:15'),
(1244, 16, 0xc6e4b8f23c62723ef0e0e7f0e5f8e5ede8ff, 'Y', '2012-07-14 15:05:00'),
(1246, 16, 0xeef2f0e5e4e0eaf2e8f0eee2e0edee, 'Y', '2012-07-14 15:05:00'),
(1251, 16, 0xd0e0e7f0e5f8e8f2fc, 'Y', '2012-07-14 15:05:00'),
(1252, 16, 0xcef2eaebeeede8f2fc, 'Y', '2012-07-14 15:05:00'),
(1253, 16, 0xceeff3e1ebe8eaeee2e0f2fc, 'Y', '2012-07-14 15:05:00'),
(1254, 16, 0xd1eeeee1f9e5ede8ff20e6e4f3f220f0e0e7f0e5f8e5ede8ff20ede020eff3e1ebe8eae0f6e8fe, 'Y', '2012-07-14 15:05:00'),
(1255, 16, 0xd1efe8f1eeea20f4eef0f3eceee2, 'Y', '2012-07-14 15:05:00'),
(1267, 16, 0xd0e5e7f3ebfcf2e0f220efeee8f1eae0, 'Y', '2012-07-14 15:05:00'),
(1527, 16, 0xcfeee8f1ea20efee20f4eef0f3ecf3, 'Y', '2012-07-14 15:05:00'),
(1257, 16, 0xcee1f1f3e6e4e5ede8e5, 'Y', '2012-07-14 15:11:13'),
(1258, 16, 0xc0e2f2eef0, 'Y', '2012-07-14 15:11:13'),
(1259, 16, 0xd1eeeee1f92e, 'Y', '2012-07-14 15:29:22'),
(1260, 16, 0xcfeef1eb2e20f1eeeee1f92e, 'Y', '2012-07-14 15:14:58'),
(1261, 16, 0xc8e7e2e8ede8f2e52c20f320e2e0f120ede5f220f0e0e7f0e5f8e5ede8ff20eff3e1ebe8eaeee2e0f2fcf1ff20ede020fdf2eeec20f4eef0f3ece5, 'Y', '2012-07-14 15:14:05'),
(1569, 16, 0xcfeef1ebe5e4ede5e520e8e7ece5ede5ede8e5, 'Y', '2012-07-14 15:17:24'),
(1654, 16, 0xceefe8f1e0ede8e5, 'Y', '2012-07-14 15:17:24'),
(2387, 16, 0xcef2e2e5f2e8f2fc20ede020efe5f0e2eee520f1eeeee1f9e5ede8e520fdf2eee3ee20eee1f1f3e6e4e5ede8ff, 'Y', '2012-07-14 15:23:19'),
(2375, 16, 0xd1eaf0fbf2fc20e0e2f2eef0e0, 'Y', '2012-07-14 15:27:08'),
(2376, 16, 0xcfeeeae0e72e20e0e2f2eef0e0, 'Y', '2012-07-14 15:28:28'),
(2377, 16, 0xd0e5e4e0eaf2eef020e3eee1e0ede0, 'Y', '2012-07-14 15:27:08'),
(2378, 16, 0xcff0eef1eceef2f0fb, 'Y', '2012-07-14 15:27:08'),
(2381, 16, 0xd1eeeee1f9e5ede8e520ede520f1eef5f0e0ede5edee2c20f2e0ea20eae0ea20eef2f1f3f2f1f2e2f3e5f220f2e5ece020e82fe8ebe820f2e5eaf1f220f1eeeee1f9e5ede8ff, 'Y', '2012-07-14 15:27:08'),
(2382, 16, 0xd1eeeee1f9e5ede8e520e8e7ece5ede5edee21, 'Y', '2012-07-14 15:27:08'),
(1933, 16, 0xc8e7e2e8ede8f2e52c20f1eef5f0e0edfff2fc20ede5f7e5e3ee, 'Y', '2012-07-14 15:33:42'),
(1943, 16, 0xcef8e8e1eae0, 'Y', '2012-07-14 15:33:42'),
(1944, 16, 0xc2eee7ede8eaebe820eef8e8e1eae8, 'Y', '2012-07-14 15:33:42'),
(2086, 16, 0xceeff0eef120f1eef5f0e0edb8ed21, 'Y', '2012-07-14 15:33:42'),
(2102, 16, 0xcfe0f0e0ece5f2f0fb20eeeff0eef1e0, 'Y', '2012-07-14 15:33:42'),
(2105, 16, 0xd1eef5f0e0ede8f2fc20eeeff0eef1, 'Y', '2012-07-14 15:33:42'),
(2108, 16, 0xcdeee2fbe920eeeff0eef1, 'Y', '2012-07-14 15:33:42'),
(1528, 16, 0xc2f1e520eee1f1f3e6e4e5ede8ff, 'Y', '2012-07-14 16:10:12'),
(1307, 16, 0xcae0ea20f1eee7e4e0f2fc20f1f1fbebeaf320ede020eff0eee8e7e2eeebfcedf3fe20f1f2f0e0ede8f6f320447261676f6e3f, 'Y', '2012-07-14 17:23:33'),
(1308, 16, 0xc2eef1efeeebfce7f3e9f2e5f1fc20f2fde3e0ece820447261676f6e20266c743b686f6d652667743b20e820266c743b2f686f6d652667743b2e2020cde0eff0e8ece5f020f2e0eae8ec20eee1f0e0e7eeec3a0d0a0d0a3c636f64653e3c686f6d652075736572696e666f2e7068703ecceeff20e0edeae5f2e03c2f686f6d653e3c2f636f64653e0d0a3c686f6d652075736572696e666f2e7068703ecceeff20e0edeae5f2e03c2f686f6d653e0d0a0d0a3c636f64653e3c686f6d6520666f72756d2f696e6465782e7068703ec3ebe0e2ede0ff20f1f2f0e0ede8f6e020f4eef0f3ece03c2f686f6d653e3c2f636f64653e0d0a3c686f6d6520666f72756d2f696e6465782e7068703ec3ebe0e2ede0ff20f1f2f0e0ede8f6e020f4eef0f3ece03c2f686f6d653e0d0a0d0a3c636f64653e3c686f6d65206661712e7068703ed7e0c2ee3c2f686f6d653e3c2f636f64653e0d0a3c686f6d65206661712e7068703ed7e0c2ee3c2f686f6d653e0d0a0d0a3c636f64653e3c686f6d652070656f706c652e7068703ed1eee7e4e0f2e5ebe820447261676f6e27613c2f686f6d653e3c2f636f64653e0d0a3c686f6d652070656f706c652e7068703ed1eee7e4e0f2e5ebe820447261676f6e27613c2f686f6d653e, 'Y', '2012-07-14 17:23:33'),
(1348, 16, 0xdf20e7e0e1fbeb20f1e2eee920efe0f0eeebfc2e20d7f2ee20e4e5ebe0f2fc3f, 'Y', '2012-07-14 18:05:39'),
(1349, 16, 0xd320e2e0f120e5f1f2fc20e4e2e020e2e0f0e8e0edf2e020e4e5e9f1f2e2e8e92e20c5f1ebe820e220e2e0f8e5e920f3f7b8f2edeee920e7e0efe8f1e820f3eae0e7e0ed203c693ee4e5e9f1f2e2e8f2e5ebfcedfbe93c2f693e20fdebe5eaf2f0eeededfbe920e0e4f0e5f12c20e7e0e9e4e8f2e520ede020f1f2f0e0ede8f6f320e2f5eee4e020e820efe5f0e5e9e4e8f2e520efee20f1f1fbebeae520223c686f6d6520666f72676f742e7068703ec7e0e1fbebe820efe0f0eeebfc3f3c2f686f6d653e222e20cde020fdf2eee920f1f2f0e0ede8f6e520e2e0ec20edf3e6edee20e2e2e5f1f2e820f1e2eee920eff1e5e2e4eeede8ec20e820447261676f6e20e2fbf8ebe5f220edeee2fbe920efe0f0eeebfc20ede020652d6d61696c2c20eaeef2eef0fbe920e2fb20f3eae0e7e0ebe820e220f1e2eee5e920f3f7b8f2edeee920e7e0efe8f1e82e20c7e0f2e5ec20e2eee9e4e8f2e520ede020f1e5f0e2e5f020f120efeeeceef9fcfe20efeeebf3f7e5ededeee3ee20efe0f0eeebff20e820efeeece5edffe9f2e520e5e3ee2e20cfeee6e0ebf3e9f1f2e02c20e1eeebfcf8e520ede520e7e0e1fbe2e0e9f2e520f1e2eee920efe0f0eeebfc210d0a0d0ac5f1ebe820e220e2e0f8e5e920f3f7b8f2edeee920e7e0efe8f1e820ede520f3eae0e7e0edee20e4e5e9f1f2e2e8f2e5ebfcedeee3ee20fdebe5eaf2f0eeededeee3ee20e0e4f0e5f1e02c20e2e0ec20efeee4eee9e4e5f220e2f2eef0eee920e2e0f0e8e0edf22c20eaeef2eef0fbe920f1eef1f2eee8f220e8e720f1ebe5e4f3fef9e8f520fdeaf1f2f0e5ededfbf520e4e5e9f1f2e2e8e93a0d0ac2eee9e4e8f2e520eae0ea20e3eef1f2fc20e820eeeff3e1ebe8eaf3e9f2e520223c656d3ee7e0eff0eef120edeee2eee3ee20efe0f0eeebff20287265717565737420666f722061206e65772070617373776f7264293c2f656d3e2220ede0203c686f6d6520666f72756d2f6c6973742e7068703f666f72756d3d323ef4eef0f3ece52022cfeee4e4e5f0e6eae02028537570706f727429223c2f686f6d653e2e20c220fdf2eeec20f1eeeee1f9e5ede8e820edf3e6edee20f3eae0e7e0f2fc20f1e2eee920eff1e5e2e4eeede8ec20287573657269642920c820e4e5e9f1f2e2e8f2e5ebfcedfbe928212920652d6d61696c2c20ede020eaeef2eef0fbe920e2e0ec20e2fbf8ebfef220edeee2fbe920efe0f0eeebfc2e0d0ad1eeeee1f9e5ede8ff2c20eeeff3e1ebe8eaeee2e0ededfbe520ede020f4eef0f3ece520e3eef1f2ffece82028ede5e7e0f0e5e3e8f1f2f0e8f0eee2e0ededfbece820efeeebfce7eee2e0f2e5ebffece8292c20ede520efeeeae0e7fbe2e0fef2f1ff2c20f2e0ea20eae0ea20e8f520f1efe5f0e2e020e4eeebe6e5ed20eee4eee1f0e8f2fc20e0e4ece8ed20f4eef0f3ece02e20cee4e8ed20e8e720e0e4ece8ede8f1f2f0e0f2eef0eee220447261676f6e20f1eee7e4e0f1f220edeee2fbe920efe0f0eeebfc20e4ebff20e2e0f8e5e920f3f7b8f2edeee920e7e0efe8f1e820e820e2fbf8ebe5f220e5e3ee20ede020eff0e5e4eef1f2e0e2ebe5ededfbe920e2e0ece820fdebe5eaf2f0eeededfbe920e0e4f0e5f12e20ddf2ee20eceee6e5f220e7e0edfff2fc20eef220ede5f1eaeeebfceae8f520f7e0f1eee220e4ee20ede5f1eaeeebfceae8f520e4ede5e920e220e7e0e2e8f1e8eceef1f2e820eef220f2eee3ee2c20eae0ea20f7e0f1f2ee20e0e4ece8ede8f1f2f0e0f2eef0fb20eff0eee2e5f0fffef220447261676f6e2e20ceede82c20eae0ea20eff0e0e2e8ebee2c20ede520e7e0e3ebffe4fbe2e0fef220eae0e6e4f3fe20ece8edf3f2f32c20e5f1ebe820f320ede8f520e5f1f2fc20f7e5ec20e7e0edfff2fcf1ff203b290d0a0d0acaeee3e4e020efeeebf3f7e8f2e520ede020f1e2eefe20efeef7f2f320edeee2fbe920efe0f0eeebfc2c20e2eee9e4e8f2e520ede020447261676f6e20e820e220f6e5ebfff520e1e5e7eeefe0f1edeef1f2e820ede5ece5e4ebe5ededee20efeeece5edffe9f2e520efe0f0eeebfc2e20c820e1eeebfcf8e520e5e3ee20ede520e7e0e1fbe2e0e9f2e5203b2d290d0a0d0ac5f1ebe820e2fb20ede520efeeebf3f7e8ebe820edeee2fbe920efe0f0eeebfc2c20f1eee7e4e0f2fc20e5e3ee20eceee6e5f220f2eeebfceaee20eee4e8ed20e8e720e0e4ece8ede8f1f2f0e0f2eef0eee22e20d2e0ea20f7f2ee20e1f3e4fcf2e520e2ede8ece0f2e5ebfcedfb2c20eaeee3e4e020ede0e1e8f0e0e5f2e520e4e5e9f1f2e2e8f2e5ebfcedfbe920fdebe5eaf2f0eeededfbe920e0e4f0e5f12e0d0a0d0ac220e2e8e4e520efeef1ebe5e4ede5e3ee20eaf0e0e9ede5e3ee20e2e0f0e8e0edf2e020e2fb20eceee6e5f2e520e7e0f0e5e3e8f1f2f0e8f0eee2e0f2fcf1ff20eae0ea20edeee2fbe920efeeebfce7eee2e0f2e5ebfc2e20cdee20fdf2e8ec20ede520f1ebe5e4f3e5f220e7ebeef3efeef2f0e5e1ebfff2fc2e, 'Y', '2012-07-14 18:05:39'),
(1266, 16, 0xc2fb20eceee6e5f2e520e2eef1eff0e8ede8ece0f2fc20fdf2ee20eae0ea20e8e3f0f320efee20efe5f0e5efe8f1eae520f120e8f1efeeebfce7eee2e0ede8e5ec20e2fde12de8edf2e5f0f4e5e9f1e020e4ebff20f1eee7e4e0ede8ff20f3e4eee1edeee920e8e3f0eee2eee920e4eef1eae82e20d7f2eee1fb20ede0f7e0f2fc20e8e3f0e0f2fc2c20f1efe5f0e2e020f1eee7e4e0e9f2e520f1eee1f1f2e2e5ededf3fe203c6120687265663d2272656769737465722e706870223ef3f7b8f2edf3fe20e7e0efe8f1fc3c2f613e2c20e5f1ebe820e2fb20e5f9b820fdf2eee3ee20ede520f1e4e5ebe0ebe82e20c7e0f2e5ec20e2fb20eceee6e5f2e5203c6120687265663d22656469745f70726f66696c652e706870223eeef2f0e5e4e0eaf2e8f0eee2e0f2fc20f1e2eee920eff0eef4e8ebfc20efeeebfce7eee2e0f2e5ebff3c2f613e20e8203c6120687265663d22656469745f62696f2e706870223ee2e2e5f1f2e820e1e8eee3f0e0f4e8f7e5f1eae8e520e4e0ededfbe53c2f613e2e20cfeeebff2027c3eef2eee2fb20e8e3f0e0f2fc3f272c2027d0e5e9f2e8ede32720e82027ce20f0e5e9f2e8ede3e52720eef1eee1e5ededee20efeeebe5e7edfb20eff0e820efeee8f1eae520eff0eef2e8e2ede8eaeee22e20c4e0ebe5e520eceee6e5f2e520e8e7f3f7e8f2fc203c6120687265663d2275736572732e706870223ef1efe8f1eeea20efeeebfce7eee2e0f2e5ebe5e93c2f613e20e820e2eef1efeeebfce7eee2e0f2fcf1ff203c6120687265663d22666f72756d2f696e6465782e706870223ef4eef0f3ece0ece83c2f613e20e4ebff20efeee8f1eae020efeee4f5eee4fff9e8f520eff0eef2e8e2ede8eaeee22c20eaeef2eef0fbf520eceee6edee203c6120687265663d226d6573736167652e7068703f6d6f64653d496e76697465223eeff0e8e3ebe0f1e8f2fc3c2f613e20f1fbe3f0e0f2fc20efe0f0f2e8fe2e, 'Y', '2012-07-14 20:11:01'),
(1395, 16, 0xc5f1ebe820e2fb20e7e0e1fbebe820f1e2eee920efe0f0eeebfc2c20ecfb20eceee6e5ec20e2fbf1ebe0f2fc20e2e0ec20efee20fdebe5eaf2f0eeededeee920efeef7f2e520edeee2fbe92e0d0a3c62723ecdeee2fbe920efe0f0eeebfc20e1f3e4e5f220f1ebf3f7e0e9edee20f1e3e5ede5f0e8f0eee2e0ed2c20edee20e2fb2c20f0e0e7f3ece5e5f2f1ff2c20f1eceee6e5f2e520e5e3ee20efeef2eeec20e8e7ece5ede8f2fc20f1ee20f1f2f0e0ede8f6fb20f0e5e4e0eaf2e8f0eee2e0ede8ff20eff0eef4e8ebff2e0d0a3c62723ec4ee20eceeece5edf2e02c20eaeee3e4e020e2fb20e5e3ee20efeeece5edffe5f2e52c20f0e0e1eef7e8ece820e1f3e4f3f220eae0ea20edeee2fbe92c20f2e0ea20e820f1f2e0f0fbe920efe0f0eeebfc2e, 'Y', '2012-07-14 20:20:56'),
(84, 39, 0x496e666f726d6174696f206c75736f72756d, 'Y', '2012-07-15 01:12:13'),
(85, 39, 0x4e756e636961, 'Y', '2012-07-15 01:12:13'),
(86, 39, 0x456d69747469206e756e6369756d, 'Y', '2012-07-15 01:12:13'),
(87, 39, 0x496e7669746174696f, 'Y', '2012-07-15 01:12:13'),
(88, 39, 0x4c75736f726573, 'Y', '2012-07-15 01:12:13'),
(89, 39, 0x4c756469, 'Y', '2012-07-15 01:12:13'),
(90, 39, 0x5265646469, 'Y', '2012-07-15 01:12:13'),
(91, 39, 0x466f7261, 'Y', '2012-07-15 01:12:13'),
(92, 39, 0x464151, 'Y', '2012-07-15 01:12:13'),
(97, 39, 0x4d69677261, 'Y', '2012-07-15 01:14:13'),
(82, 39, 0x537461747573, 'Y', '2012-07-15 01:23:50'),
(83, 39, 0x43616d657261, 'Y', '2012-07-15 01:23:50'),
(98, 39, 0x646965, 'Y', '2012-07-15 01:31:34'),
(99, 39, 0x64696569, 'Y', '2012-07-15 01:31:34'),
(100, 39, 0x6574, 'Y', '2012-07-15 01:31:34'),
(101, 39, 0x686f7261, 'Y', '2012-07-15 01:31:34'),
(102, 39, 0x686f726165, 'Y', '2012-07-15 01:31:34'),
(134, 39, 0x4e6f6d656e, 'Y', '2012-07-15 01:33:42'),
(136, 39, 0x466f7261, 'Y', '2012-07-15 01:33:42'),
(163, 39, 0x506f70756c6973, 'Y', '2012-07-15 01:36:09'),
(175, 39, 0x416c697573, 'Y', '2012-07-15 01:36:09'),
(176, 39, 0x506174726961, 'Y', '2012-07-15 01:36:09'),
(177, 39, 0x55726273, 'Y', '2012-07-15 01:36:09'),
(178, 39, 0x43697669746173, 'Y', '2012-07-15 01:36:09'),
(179, 39, 0x4d61636561, 'Y', '2012-07-15 01:36:09'),
(336, 39, 0x456d69747469206e756e6369756d, 'Y', '2012-07-15 01:37:42'),
(3155, 8, 0xb160a8a3b0ddc344, 'Y', '2012-07-15 06:11:03'),
(3155, 34, 0xe5b8b8e8a68be5958fe9a18c, 'Y', '2012-07-15 06:11:19'),
(3155, 10, 0xb3a3bcfbcecacce2, 'Y', '2012-07-15 06:11:51'),
(3155, 33, 0xe5b8b8e8a781e997aee9a298, 'Y', '2012-07-15 06:12:01'),
(3056, 8, 0xa4e2b0cab35da977a15da4c0a5fda9cec5fda46cb4d1a15e, 'Y', '2012-07-15 07:05:02'),
(3056, 34, 0xe6898be58b95e8a8ade5ae9aefbc88e58886e58588e68896e8ae93e5ad90e6a38befbc89, 'Y', '2012-07-15 07:05:28'),
(3056, 10, 0xcad6b6afc9e8b6a8a3a8b7d6cfc8bbf2c8c3d7d3c6e5a3a9, 'Y', '2012-07-15 07:05:12'),
(3056, 33, 0xe6898be58aa8e8aebee5ae9aefbc88e58886e58588e68896e8aea9e5ad90e6a38befbc89, 'Y', '2012-07-15 07:04:52'),
(2895, 8, 0xc5fda46c, 'Y', '2012-07-15 07:06:41'),
(3058, 8, 0xc5fda46c, 'Y', '2012-07-15 07:06:41'),
(2895, 34, 0xe8ae93e5ad90, 'Y', '2012-07-15 07:07:04'),
(3058, 34, 0xe8ae93e5ad90, 'Y', '2012-07-15 07:07:04'),
(2895, 10, 0xc8c3d7d3, 'Y', '2012-07-15 07:07:26'),
(3058, 10, 0xc8c3d7d3, 'Y', '2012-07-15 07:07:26'),
(2895, 33, 0xe8aea9e5ad90, 'Y', '2012-07-15 07:07:43'),
(3058, 33, 0xe8aea9e5ad90, 'Y', '2012-07-15 07:07:43'),
(484, 39, 0x49616e756172697573, 'Y', '2012-07-15 10:47:31'),
(485, 39, 0x46656272756172697573, 'Y', '2012-07-15 10:47:31'),
(486, 39, 0x417072696c6973, 'Y', '2012-07-15 10:47:31'),
(487, 39, 0x4d61697573, 'Y', '2012-07-15 10:47:31'),
(488, 39, 0x49756e697573, 'Y', '2012-07-15 10:47:31'),
(489, 39, 0x4175677573747573, 'Y', '2012-07-15 10:47:31'),
(490, 39, 0x53657074656d626572, 'Y', '2012-07-15 10:47:31'),
(495, 39, 0x4d617274697573, 'Y', '2012-07-15 10:48:50'),
(496, 39, 0x49756c697573, 'Y', '2012-07-15 10:48:50'),
(497, 39, 0x4e6f76656d626572, 'Y', '2012-07-15 10:48:50'),
(491, 39, 0x4f63746f626572, 'Y', '2012-07-15 10:49:27'),
(492, 39, 0x446563656d626572, 'Y', '2012-07-15 10:49:27'),
(107, 39, 0x6c617069646573, 'Y', '2012-07-15 11:05:58'),
(122, 39, 0x526573706f6e73756d, 'Y', '2012-07-15 11:11:41'),
(93, 39, 0x506167696e6120636861727461, 'Y', '2012-07-15 17:30:42'),
(94, 39, 0x4361756469636573, 'Y', '2012-07-15 17:30:42'),
(96, 39, 0x41646d696e6973747261746f72, 'Y', '2012-07-15 17:30:42'),
(103, 39, 0x73696e652062796f796f6d69, 'Y', '2012-07-15 17:30:42'),
(106, 39, 0x4961706f6e6963612062796f796f6d69, 'Y', '2012-07-15 17:30:42'),
(108, 39, 0x43616e616469616e2062796f796f6d69, 'Y', '2012-07-15 17:30:42'),
(132, 39, '', 'Y', '2012-07-23 12:00:27'),
(248, 39, 0x496e64756374696f, 'Y', '2012-07-15 17:30:42'),
(311, 39, 0x53756269656374756d, 'Y', '2012-07-15 17:30:42'),
(312, 39, 0x44696573, 'Y', '2012-07-15 17:30:42'),
(314, 39, 0x4e6f767573, 'Y', '2012-07-15 17:30:42'),
(330, 39, 0x416c627573, 'Y', '2012-07-15 17:30:42'),
(331, 39, 0x4e69676572, 'Y', '2012-07-15 17:30:42'),
(352, 39, '', 'Y', '2012-07-23 12:00:27'),
(359, 39, 0x4164766572736172697573, 'Y', '2012-07-15 17:30:42'),
(360, 39, 0x436f6c6f72, 'Y', '2012-07-15 17:30:42'),
(361, 39, 0x4d61676e697475646f, 'Y', '2012-07-15 17:30:42'),
(363, 39, '', 'Y', '2012-07-23 12:00:27'),
(372, 39, '', 'N', '2012-07-23 12:00:27'),
(463, 39, 0x537565636961, 'Y', '2012-07-15 17:40:57'),
(464, 39, 0x4e6f72766567696361, 'Y', '2012-07-15 17:40:57'),
(466, 39, 0x4765726d616e69, 'Y', '2012-07-15 17:40:57'),
(469, 39, 0x426f68656d696361, 'Y', '2012-07-15 17:40:57'),
(470, 39, 0x53657265732028547261646974756d29, 'Y', '2012-07-15 17:40:57'),
(3186, 17, '', 'Y', '2013-08-21 00:42:54'),
(472, 39, 0x5365726573202853696d706c6963696f7229, 'Y', '2012-07-15 17:40:57'),
(473, 39, 0x426174617669, 'Y', '2012-07-15 17:40:57'),
(750, 39, 0x436f7265616e696361, 'Y', '2012-07-15 17:40:57'),
(1031, 39, 0x53657262696165, 'Y', '2012-07-15 17:44:08'),
(1032, 39, 0x477261656361, 'Y', '2012-07-15 17:44:08'),
(1274, 39, 0x64, 'Y', '2012-07-15 17:44:08'),
(1275, 39, 0x64, 'Y', '2012-07-15 17:44:08');
INSERT INTO `Translations` (`Original_ID`, `Language_ID`, `Text`, `Translated`, `Updated`) VALUES
(1276, 39, 0x68, 'Y', '2012-07-15 17:44:08'),
(1277, 39, 0x68, 'Y', '2012-07-15 17:44:08'),
(1281, 39, 0x48756e676172696361, 'Y', '2012-07-15 17:44:08'),
(1415, 39, '', 'Y', '2012-07-23 12:00:27'),
(1416, 39, '', 'Y', '2012-07-23 12:00:27'),
(1429, 39, 0x4164766572736172697573, 'Y', '2012-07-15 17:47:58'),
(1435, 39, 0x436f6c, 'Y', '2012-07-15 17:44:08'),
(1602, 39, 0x4d61676973746572, 'Y', '2012-07-15 17:45:55'),
(1378, 39, 0x436f6e746163747573, 'Y', '2012-07-15 17:53:24'),
(3155, 39, 0x417578696c69756d202f20464151, 'Y', '2012-07-15 17:54:54'),
(3157, 39, 0x416e6e756e74696174696f6e6573, 'Y', '2012-07-15 17:56:09'),
(3158, 39, 0x5175616c697461746573, 'Y', '2012-07-15 17:59:16'),
(2506, 16, 0xd3f1ebeee2e8ff20f4eef0fb, 'Y', '2012-07-15 20:14:02'),
(2507, 16, 0xcde0f1f2f0eee9eae820e2f0e5ece5ede8, 'Y', '2012-07-15 20:14:02'),
(2558, 16, 0xcee1fbf7ede0ff20f4eef0e0, 'Y', '2012-07-15 20:15:22'),
(2581, 16, 0xcfe0f0f2e8ff20ede0f7e0ebe0f1fc21, 'Y', '2012-07-15 20:16:18'),
(3156, 16, 0xcdeee2e0ff20efe0f0f2e8ff, 'Y', '2012-07-15 20:24:31'),
(3251, 16, 0xd1eef5f0e0ede8f2fc20f8e0e1ebeeed, 'Y', '2012-07-15 20:24:31'),
(4682, 7, 0x43687962ed2076656c696b6f7374, 'Y', '2016-07-20 16:29:41'),
(3267, 16, 0xcdeee2e0ff20efe0f0f2e8ff20f1ee20f1eff0e0e2e5e4ebe8e2fbec20eaeeece8, 'Y', '2012-07-15 20:24:31'),
(3268, 16, 0xcdeee2e0ff20ecedeee3eeefeeebfce7eee2e0f2e5ebfcf1eae0ff20efe0f0f2e8ff, 'Y', '2012-07-15 20:24:31'),
(3333, 16, 0xd2f3f0ede8f0, 'Y', '2012-07-15 20:24:31'),
(3334, 16, 0xcff0e5eee1f0e0e7eee2e0f2e5ebfc20f0e5e9f2e8ede3e0, 'Y', '2012-07-15 20:24:31'),
(1457, 11, 0x5347462062657374616e64206f7068616c656e, 'Y', '2013-01-11 16:00:31'),
(2513, 11, 0x5665727374757572207569746e6f646967696e677362657269636874, 'Y', '2013-01-11 15:46:54'),
(2153, 16, 0xc2f0e5ecff20e4eee1e0e2ebe5edee21, 'Y', '2012-07-15 20:31:21'),
(2174, 16, 0xc8edf4eef0ece0f6e8ff20ee20f2f3f0ede8f0e5, 'Y', '2012-07-15 20:31:21'),
(2183, 16, 0xcef8e8e1eae8, 'Y', '2012-07-15 20:31:21'),
(2401, 16, 0xcfeeeae0e7e0f2fc20e8edf4eef0ece0f6e8fe20ee20efe0f0f2e8e8, 'Y', '2012-07-15 20:31:21'),
(5748, 4, 0x4672, 'Y', '2013-12-01 17:04:15'),
(2406, 16, 0xcfe5f0e2fbe920f5eee4, 'Y', '2014-05-01 18:12:41'),
(2407, 16, 0xcff0e5e4fbe4f3f9e8e920f5eee4, 'Y', '2014-05-01 18:12:41'),
(2408, 16, 0xd1ebe5e4f3fef9e8e920f5eee4, 'Y', '2014-05-01 18:12:41'),
(2411, 16, 0xcef2ece5ede8f2fc20f5eee4, 'Y', '2012-07-15 20:32:33'),
(2414, 16, 0xd2e8ef20e8e3f0fb, 'Y', '2014-05-01 20:29:08'),
(2427, 16, 0xcfeeeae0e7e0f2fc20eff0e8e3ebe0f8e5ede8e5, 'Y', '2012-07-15 20:37:21'),
(2432, 16, 0xd1f2e0ede4e0f0f2ede0ff20f4eef0e0, 'Y', '2012-07-15 20:37:21'),
(5745, 4, 0x4469, 'Y', '2013-12-01 17:04:15'),
(2435, 16, 0xd2e5eaf3f9e8e920f0e5e9f2e8ede3, 'Y', '2012-07-15 20:37:21'),
(2439, 16, 0xd5eee420f7b8f0edfbf5, 'Y', '2012-07-15 20:37:21'),
(2440, 16, 0xd5eee420e1e5ebfbf5, 'Y', '2012-07-15 20:37:21'),
(2441, 16, 0xcde0f1f2f0eee9eae820e2f0e5ece5ede820e820eef1f2e0e2f8e5e5f1ff20e2f0e5ecff, 'Y', '2012-07-15 20:37:21'),
(2444, 16, 0xd1f2e0f2f3f120e8e3f0eee2fbf520f7e0f1eee2, 'Y', '2012-07-15 20:37:21'),
(2445, 16, 0xd7e0f1fb20f1f2eefff2, 'Y', '2012-07-15 20:37:21'),
(2446, 16, 0xd7e0f1fb20e8e4f3f2, 'Y', '2012-07-15 20:37:21'),
(2458, 16, 0xc8edf4eef0ece0f6e8ff20ee20efe0f0f2e8e8, 'Y', '2012-07-15 20:40:18'),
(2459, 16, 0xcfeeeae0e7e0f2fc20efe0f0f2e8fe, 'Y', '2012-07-15 20:40:18'),
(2498, 16, 0xceeff3e1ebe8eaeee2e0f2fc20e220e8e3f0eee2eeec20e7e0ebe5, 'Y', '2012-07-15 20:40:18'),
(2499, 16, 0xc8e7ece5ede8f2fc20f4eef0f3, 'Y', '2012-07-15 20:40:18'),
(2500, 16, 0xc8e7ece5ede8f2fc20f6e2e5f220e820f4eef0f3, 'Y', '2012-07-15 20:40:18'),
(2501, 16, 0xc8e7ece5ede8f2fc20f6e2e5f2, 'Y', '2012-07-15 20:40:18'),
(2502, 16, 0xc8e7ece5ede8f2fc20efeef0ffe4eeea, 'Y', '2012-07-15 20:40:18'),
(2503, 16, 0xcde0f7e0f2fc20efe0f0f2e8fe, 'Y', '2012-07-15 20:40:18'),
(2508, 16, 0xd0e5e9f2e8ede320e3f0f3efeffb, 'Y', '2012-07-15 20:40:18'),
(2513, 16, 0xcfeef1ebe0f2fc20eff0e8e3ebe0f8e5ede8e5, 'Y', '2012-07-15 20:40:18'),
(2906, 16, 0xd8e0e1ebeeedfb, 'Y', '2012-07-15 20:43:08'),
(2912, 16, 0xc4e2eee9ede0ff20e8e3f0e02028e1e5ebfbece829, 'Y', '2012-07-15 20:46:35'),
(2913, 16, 0xc4e2eee9ede0ff20e8e3f0e02028f7b8f0edfbece829, 'Y', '2012-07-15 20:46:35'),
(2920, 16, 0xcce8ed2e20f7e8f1ebee20e7e0e2e5f0f8b8ededfbf520f0e5e9f2e8ede3eee2fbf520efe0f0f2e8e9, 'Y', '2012-07-15 20:46:35'),
(2921, 16, 0x28efee20e6e5ebe0ede8fe29, 'Y', '2012-07-15 20:46:35'),
(3265, 16, 0xceeff3e1ebe8eaeee2e0f2fc20edeee2fbe920e2fbe7eee220e220e8e3f0eee2eeec20e7e0ebe5, 'Y', '2012-07-15 20:48:54'),
(3359, 16, 0xd1eaf0fbf2fbe520e8e3f0eee2fbe520eaeeecece5edf2e0f0e8e8, 'Y', '2012-07-15 20:48:54'),
(3370, 16, 0xc2f1e520ede0e1ebfee4e0e5ecfbe520efe0f0f2e8e8, 'Y', '2012-07-15 20:48:54'),
(3371, 16, 0xcfe0f0f2e8e82c20e7e020eaeef2eef0fbece820ff20ede0e1ebfee4e0fe, 'Y', '2012-07-15 20:49:49'),
(3372, 16, 0xc2f1e520e7e0e2e5f0f8b8ededfbe520efe0f0f2e8e8, 'Y', '2012-07-15 20:49:49'),
(3373, 16, 0xc2f1e520eff0eee4eeebe6e0fef9e8e5f1ff20efe0f0f2e8e8, 'Y', '2012-07-15 20:49:49'),
(1301, 16, 0xcae0ea20e4eee1e0e2e8f2fc20edeee2fbe920e2fbe7eee220ede020efe0f0f2e8fe20e220e8e3f0eee2eeec20e7e0ebe53f, 'Y', '2012-07-15 21:20:17'),
(1302, 16, 0xcfe5f0e5e9e4e8f2e520ede020f1f2f0e0ede8f6f3203c686f6d652077616974696e675f726f6f6d2e7068703ec8e3f0eee2eee920e7e0eb3c2f686f6d653e2c20eff0eeeaf0f3f2e8f2e520e2ede8e72c20e7e0f2e5ec20e2fbe1e5f0e8f2e520223c693ecdeee2e0ff20efe0f0f2e8ff3c2f693e222e0d0a0d0ac2e0ec20edf3e6edee20e2fbe1f0e0f2fc20ece5e6e4f320ede5f1eaeeebfceae8ece820e2e0f0e8e0edf2e0ece82c20f1f3f2fc20eaeef2eef0fbf520eaf0e0f2eaee20eee1fafff1ede5ede020ede8e6e52e0d0a3c756c3e0d0a3c6c693e3c623ed7e8f1ebee20e4eee1e0e2ebffe5ecfbf520e8e3f03a3c2f623e20c2fb20eceee6e5f2e520eff0e5e4ebeee6e8f2fc20e4ee20313020efe0f0f2e8e920f120eee4e8ede0eaeee2fbece820f3f1ebeee2e8ffece82e20cfee20f3eceeebf7e0ede8fe20f3f1f2e0edeee2ebe5ede020312e0d0a3c6c693e3c623ed4eef0ece0f220e4eef1eae83a3c2f623e20c2fb20eceee6e5f2e520e2fbe1f0e0f2fc20f0e0e7ece5f020ece5e6e4f3203520e82032352e20d1f2e0ede4e0f0f2edfbe520f0e0e7ece5f0fb202d2031397831392c20313378313320e8203978392e20d0e0e7edfbe520f0e0e7ece5f0fb20efee2df0e0e7edeeecf3203c686f6d65206661712e7068703f726561643d74266361743d31303523456e7472793132313ee2ebe8fffef220ede020f0e5e9f2e8ede3e820e8e3f0eeeaeee23c2f686f6d653e2e0d0a3c6c693e3c623ec2e8e420f4eef0fb3a3c2f623e20d7f2eee1fb20e2fbe1f0e0f2fc203c686f6d65206661712e7068703f726561643d74266361743d33353723456e74727939373ee2e8e420f4eef0fb3c2f686f6d653e20e4ebff20efe0f0f2e8e82c20e2e0ec20edf3e6edee20e2fbe1f0e0f2fc203c686f6d65206661712e7068703f726561643d74266361743d33353723456e74727939383eeee1fbf7edf3fe20e8ebe820f3f2eef7edb8ededf3fe20f4eef0f33c2f686f6d653e2c20ebe8e1ee20203c686f6d6520206661712e7068703f726561643d74266361743d33353723456e7472793231323eede0f1f2f0eee9eae820e2f0f3f7edf3fe3c2f686f6d653e2e20c5f1ebe820e2fb20e2fbe1e5f0e5f2e520ede0f1f2f0eee9eae820e2f0f3f7edf3fe2c20e2fb20f1eceee6e5f2e520ede0f1f2f0eee8f2fc20f4eef0f320e8203c686f6d65206661712e7068703f726561643d74266361743d3323456e747279393eeaeeece83c2f686f6d653e2e20c2e0ec20edf3e6edee20e2fbe1f0e0f2fc2c20e8e3f0e0f2fc20f7b8f0edfbece82c20e1e5ebfbece82c20e2203c686f6d65206661712e7068703f726561643d74266361743d33353723456e7472793131313ee4e2eee9edf3fe20e8e3f0f33c2f686f6d653e20e8ebe8203c686f6d65206661712e7068703f726561643d74266361743d3323456e74727932313eede8e3e8f0e83c2f686f6d653e2e0d0a3c6c693e3c623ed1f2e0ede4e0f0f2edeee520f0e0e7ece5f9e5ede8e53a3c2f623e20c2fbe1e5f0e8f2e520fdf2f320eeeff6e8fe2c20eaeee3e4e020f5eef2e8f2e52c20f7f2eee1fb20eae0ecede820e2e0f8e5e920efeef2e5edf6e8e0ebfcedeee920f4eef0fb20e1fbebe83c686f6d65206661712e7068703f726561643d74266361743d33353723456e7472793132393ef0e0e7ece5f9e5edfb20e220f1f2e0ede4e0f0f2edfbf520efeeebeee6e5ede8fff53c2f686f6d653e2e0d0a3c6c693e3c623ecef1edeee2edeee520e2f0e5ecff3a3c2f623e20c2fbe1e5f0e8f2e5203c686f6d65206661712e7068703f726561643d74266361743d353623456e74727938353eeef1edeee2edeee520e2f0e5ecff3c2f686f6d653e20e4ebff20f1e2eee5e920efe0f0f2e8e82e20c7e0f2e5ec20e2fbe1e5f0e8f2e520eee4e8ed20e8e720e2e0f0e8e0edf2eee220eaeeedf2f0eeebff20e2f0e5ece5ede820eff0e820eff0e5e2fbf8e5ede8e83a203c686f6d65206661712e7068703f726561643d74266361743d353623456e74727935373edfefeeedf1eaeee520e1b8b8ece83c2f686f6d653e2c203c686f6d65206661712e7068703f726561643d74266361743d353623456e74727935383ecae0ede0e4f1eaeee520e1b8b8ece83c2f686f6d653e20ebe8e1ee203c686f6d65206661712e7068703f726561643d74266361743d353623456e74727935393ec2f0e5ecff20efee20d4e8f8e5f0f33c2f686f6d653e2e3c62723e20cceee6edee20e2fbe1f0e0f2fc20e4ebff20eff0e5e2fbf8e5ede8ff202230222e20c220fdf2eeec20f1ebf3f7e0e520efe0f0f2e8ff20eff0eee4eeebe6e0e5f2f1ff20e4ee20e8f1f2e5f7e5ede8ff20eef1edeee2edeee3ee20e2f0e5ece5ede82e0d0a3c6c693e3c623ed7e0f1fb20e8e4f3f220efee20e2fbf5eee4edfbec3a3c2f623e20ede0f1f2f0eee9eae020e8e3f0eee2fbf520f7e0f1eee22c20eaeef2eef0e0ff20eeeff0e5e4e5ebffe5f22c20e1f3e4e5f220ebe820e7e0f1f7e8f2fbe2e0f2fcf1ff203c686f6d65206661712e7068703f726561643d74266361743d353623456e7472793134333ee2f0e5ecff20ede020e2fbf5eee4edfbf53c2f686f6d653e2e0d0a3c6c693e3c623ed0e5e9f2e8ede3eee2e0ff20e8e3f0e03a3c2f623e20d3eae0e6e8f2e52c20e4eeebe6ede020ebe820e2e0f8e020efe0f0f2e8ff20e1fbf2fc20f0e5e9f2e8ede3eee2eee92e20d7f2eee1fb20e220f0e5e7f3ebfcf2e0f2e520efeeebf3f7e8f2fc20f0e5e9f2e8ede3eee2f3fe20efe0f0f2e8fe2c20e2fbe1e5f0e8f2e520f2e0eae6e520eff3edeaf22022cfe0f0f2ede5f020f2eeebfceaee20f120f0e5e9f2e8ede3eeec2220e820f3e4eef1f2eee2e5f0fcf2e5f1fc2c20f7f2ee20e4f0f3e3e8e5203c686f6d65206661712e7068703f726561643d74266361743d33353723456e7472793230393ef3f1ebeee2e8ff3c2f686f6d653e20f2eee6e520e2fbefeeebede5edfb2e0d0a3c6c693e3c623ecfe0f0f2ede5f020f2eeebfceaee20f120f0e5e9f2e8ede3eeec3a3c2f623e20c2fbe1e5f0e8f2e520fdf2f320eeeff6e8fe2c20e5f1ebe820e2e0ec20edf3e6e5ed20eff0eef2e8e2ede8ea20f120e4e5e9f1f2e2e8f2e5ebfcedfbec20f0e5e9f2e8ede3eeec2e0d0a3c6c693e3c623ecff0e8ece5f7e0ede8e53a3c2f623e20cde5eee1ffe7e0f2e5ebfcedfbe920f2e5eaf1f2eee2fbe920eaeeecece5edf2e0f0e8e9202d20f2ee2c20f7f2ee20e2fb20f5eef2e8f2e520f1eae0e7e0f2fc20ee20f1e2eeb8ec20e2fbe7eee2e52e20cde0eff0e8ece5f03a2022eff0e5e4ebe0e3e0fe20f3f7e5e1edf3fe20e8e3f0f320e4ebff2031302d3135eafe2220e8ebe82022efeee6e0ebf3e9f1f2e02c20eaeeecece5edf2e8f0f3e9f2e520f1e2eee820f5eee4fb222e0d0a3c2f756c3e0d0a0d0ad7f2eee1fb20e2e0f8e020efe0f0f2e8ff20e1fbebe020f0e5e9f2e8ede3eee2eee92c20f3e4eef1f2eee2e5f0fcf2e5f1fc2c20f7f2ee20e2fbefeeebedfffef2f1ff20e2f1e5203c686f6d65206661712e7068703f726561643d74266361743d33353723456e7472793230393ef3f1ebeee2e8ff20e4ebff20ede0f7e0ebe020f0e5e9f2e8ede3eee2eee920efe0f0f2e8e83c2f686f6d653e2e20c6e5ebe0f2e5ebfcedee20e2fbe1f0e0f2fc20eeeff6e8fe203c693ecfe0f0f2ede5f020f2eeebfceaee20f120f0e5e9f2e8ede3eeec3c2f693e2e, 'N', '2012-07-15 21:20:17'),
(182, 39, '', 'Y', '2012-07-23 12:00:27'),
(183, 39, '', 'Y', '2012-07-23 12:00:27'),
(184, 39, 0x4f746961, 'Y', '2012-07-20 12:16:01'),
(185, 39, 0x4f636375706174696f, 'Y', '2012-07-20 12:16:01'),
(187, 39, '', 'Y', '2012-07-23 12:00:27'),
(188, 39, '', 'Y', '2012-07-23 12:00:27'),
(189, 39, '', 'Y', '2012-07-23 12:00:27'),
(190, 39, '', 'Y', '2012-07-23 12:00:27'),
(191, 39, '', 'Y', '2012-07-23 12:00:27'),
(192, 39, '', 'Y', '2012-07-23 12:00:27'),
(193, 39, '', 'Y', '2012-07-23 12:00:27'),
(194, 39, '', 'Y', '2012-07-23 12:00:27'),
(195, 39, '', 'Y', '2012-07-23 12:00:27'),
(196, 39, '', 'Y', '2012-07-23 12:00:27'),
(197, 39, '', 'Y', '2012-07-23 12:00:27'),
(198, 39, '', 'Y', '2012-07-23 12:00:27'),
(199, 39, '', 'Y', '2012-07-23 12:00:27'),
(200, 39, '', 'Y', '2012-07-23 12:00:27'),
(201, 39, '', 'Y', '2012-07-23 12:00:27'),
(393, 39, 0x44696573206e6f746163756c69, 'Y', '2012-07-20 17:49:37'),
(394, 39, 0x41646d697373757320756c74756d7573, 'Y', '2012-07-20 17:49:37'),
(395, 39, 0x42696f67726170686961, 'Y', '2012-07-20 17:49:37'),
(204, 39, 0x4f72646f, 'Y', '2012-07-20 18:04:15'),
(205, 39, 0x41657374696d6961, 'Y', '2012-07-20 18:04:15'),
(208, 39, 0x4c696e677561, 'Y', '2012-07-20 18:04:15'),
(209, 39, 0x5a6f6e612074656d706f726973, 'Y', '2012-07-20 18:04:15'),
(210, 39, 0x54656e65627261, 'Y', '2012-07-20 18:04:15'),
(212, 39, 0x4d61676e697475646f206c617069646973, 'Y', '2012-07-20 18:04:15'),
(327, 39, 0x4e6f76756d206e756e6369756d, 'Y', '2012-07-23 11:59:56'),
(329, 39, 0x4d697369206e756e6369756d, 'Y', '2012-07-23 11:59:56'),
(325, 39, 0x4e756e6369756d, 'Y', '2012-07-23 12:00:27'),
(326, 39, 0x4d697369206e756e6369756d, 'Y', '2012-07-23 12:00:27'),
(1847, 4, 0x536f6c6c74656e2073696520756e736572652056657268616c74656e73726567656c6e206e69636874206265666f6c67656e2c20626568616c74656e2077697220756e732064617320526563687420766f722c2066fc7220646965206a657765696c69676520536974756174696f6e20616e67656d657373656e65204d61df6e61686d656e207a752065726772656966656e2e2044696573206bf66e6e746520626564657574656e2c206461737320676573636872696562656e6572205465787420656e746665726e742c20646572205a756772696666206175662062657374696d6d74652046756e6b74696f6e656e2065696e676573636872e46e6b742c20696872205a7567616e67207a75206469657365722057656273697465206765626c6f636b74206f64657220696872204e75747a65726b6f6e746f2067656bfc6e6469677420776972642e, 'Y', '2012-07-27 10:47:04'),
(2163, 4, 0x4469652052656769737472696572756e6773616e66726167652066fc722065696e206e657565732042656e75747a65726b6f6e746f20777572646520616e2065696e656e2041646d696e6973747261746f7220676573636869636b742e204469652052656769737472696572756e67206bf66e6e74652065696e65205765696c652064617565726e2e2057656e6e20616c6c657320696e204f72646e756e67206973742c20657268616c74656e2073696520646965204b6f6e746f696e666f726d6174696f6e656e206d69742065696e656d204c6f67696e2d50617373776f72742070657220452d4d61696c2e, 'Y', '2012-07-27 10:47:04'),
(2350, 4, 0x4c6f67696e2d5365697465207a656967656e, 'Y', '2012-07-27 10:47:04'),
(2055, 4, 0xc46e646572756e67656e2073706569636865726e, 'Y', '2012-07-27 11:03:29'),
(1059, 17, 0x506f6b61bf, 'Y', '2013-08-20 11:01:54'),
(2197, 4, 0x4a61766153637269707420616b746976696572656e, 'Y', '2012-07-27 11:03:29'),
(2181, 4, 0x50726f66696c62696c64206265617262656974656e, 'Y', '2012-07-27 11:11:31'),
(2182, 4, 0x42696c6420686f63686c6164656e, 'Y', '2012-07-27 11:11:31'),
(2184, 4, 0x416b7475656c6c65732042696c64, 'Y', '2012-07-27 11:11:31'),
(2185, 4, 0x42696c642073706569636865726e, 'Y', '2012-07-27 11:11:31'),
(2186, 4, 0x42696c6420656e746665726e656e, 'Y', '2012-07-27 11:11:31'),
(2188, 4, 0x556e7465727374fc747a7465204461746569666f726d6174653a204a5045472c204749462c20504e47, 'Y', '2012-07-27 11:11:31'),
(2189, 4, 0x50726f66696c62696c6420416e6d65726b756e67656e, 'Y', '2012-07-27 11:11:31'),
(2196, 4, 0x457273636865696e756e677362696c64, 'Y', '2012-07-27 11:11:31'),
(2204, 4, 0x52656c6174697665204e756d6d6572696572756e67, 'Y', '2012-07-27 11:11:31'),
(2205, 4, 0x556d67656b6568727465204e756d6d6572696572756e67, 'Y', '2012-07-27 11:11:31'),
(2206, 4, 0x4d61726b696572756e672066fc7220696d206c65747a74656e205a756720676566616e67656e6520537465696e65, 'Y', '2012-07-27 11:11:31'),
(2178, 4, 0x50726f66696c62696c6420656e746665726e7421, 'Y', '2012-07-27 11:16:23'),
(2179, 4, 0x50726f66696c62696c6420676573706569636865727421, 'Y', '2012-07-27 11:16:23'),
(2208, 4, 0x50726f66696c62696c64206265617262656974656e, 'Y', '2012-07-27 11:16:23'),
(2212, 4, 0x42656e75747a6572, 'Y', '2012-07-27 11:16:23'),
(2378, 4, 0x54726566666572, 'Y', '2012-07-27 11:17:19'),
(2059, 4, 0x537069656c7374e4726b6520756e642052616e6720e46e6465726e, 'Y', '2012-07-29 10:01:06'),
(2209, 4, 0x52616e6720616b7475616c69736965727421, 'Y', '2012-07-29 10:01:06'),
(2210, 4, 0x52616e67202620537069656c7374e4726b6520616b7475616c697369657274, 'Y', '2012-07-29 10:01:06'),
(2211, 4, 0x4447532d537069656c7374e4726b6520756e642052616e672d496e666f20e46e6465726e, 'Y', '2012-07-29 10:01:06'),
(2214, 4, 0x57e4686c656e20736965206968726520537069656c7374e4726b6520736f726766e46c7469672c2064656e6e206e6f726d616c657277656973652073696e64206b65696e6520c46e646572756e67656e206d656872206df6676c6963682c20736f62616c64207369652065696e206765776572746574657320537069656c206265676f6e6e656e20686162656e2e, 'Y', '2012-07-29 10:01:06'),
(3155, 4, 0x48696c6665202f20464151, 'Y', '2012-07-29 12:39:22'),
(2156, 4, 0x48696c6665, 'Y', '2012-07-29 12:50:10'),
(2157, 4, 0x53656974656e68696c66652026204e75747a65722d4c656974666164656e, 'Y', '2012-07-29 12:50:10'),
(2159, 4, 0x5765622d53746174697374696b656e, 'Y', '2012-07-29 12:50:10'),
(2160, 4, 0x53746174697374696b656e20fc62657220444753, 'Y', '2012-07-29 12:50:10'),
(2162, 4, 0x4b6f6e766572746965727420616e646572652052616e672d202620537069656c7374e4726b6573797374656d6520696e204447532d52616e67, 'Y', '2012-07-29 12:50:10'),
(2287, 4, 0xdc6265722046656174757265732061627374696d6d656e, 'Y', '2012-07-29 12:50:10'),
(3159, 4, 0x537069656c20456469746f72, 'Y', '2012-07-29 12:50:10'),
(1932, 18, 0x4163636573736f206e656761746f2074656d706f72616e65616d656e7465, 'Y', '2012-07-30 15:15:22'),
(1944, 18, 0x436920736f6e6f2074726f707069206572726f7269, 'Y', '2012-07-30 15:15:22'),
(2145, 18, 0x50726f66657373696f6e616c65, 'Y', '2012-07-30 15:15:22'),
(2146, 18, '', 'Y', '2012-08-22 20:48:45'),
(2158, 18, 0x5374617469737469636865, 'Y', '2012-07-30 15:15:22'),
(2173, 18, 0x4d6f737472612067696f6361746f7269, 'Y', '2012-07-30 15:15:22'),
(2174, 18, 0x496e666f726d617a696f6e6920746f726e656f, 'Y', '2012-07-30 15:15:22'),
(2183, 18, 0x4572726f7269, 'Y', '2012-07-30 15:15:22'),
(2458, 18, 0x496e666f726d617a696f6e692070617274697461, 'Y', '2012-07-30 15:15:22'),
(2659, 18, 0x4e657373756e2066696c652073656c657a696f6e61746f20706572206c2775706c6f6164, 'Y', '2012-07-30 15:15:22'),
(2660, 18, 0x4c612064696d656e73696f6e652064656c2066696c6520636172696361746f205b25735d20706572206c6520696d706f7374617a696f6e692064656c207365727665722e, 'Y', '2012-07-30 15:15:22'),
(2661, 18, 0x4c612064696d656e73696f6e652064656c2066696c6520636172696361746f205b25735d20737065636966696361746f206e656c20666f726d20646920696e7075742c20737570657261206469205b25732062797465735d2e, 'Y', '2012-07-30 15:15:22'),
(2662, 18, 0x496c2066696c65205b25735d20e820737461746f20636172696361746f207061727a69616c6d656e74652e, 'Y', '2012-07-30 15:15:22'),
(2663, 18, 0x496c2066696c65206e6f6e20e820737461746f20636172696361746f, 'Y', '2012-07-30 15:15:22'),
(2664, 18, 0x496c2066696c6520636172696361746f205b25735d20686120756e20666f726d61746f2073636f6e6f73636975746f2e, 'Y', '2012-07-30 15:15:22'),
(2668, 18, 0x496c2066696c6520636172696361746f205b25735d206e6f6e207075f2206573736572652073616c7661746f2e, 'Y', '2012-07-30 15:15:22'),
(2669, 18, '', 'Y', '2012-08-22 20:48:45'),
(2670, 18, '', 'Y', '2012-08-22 20:48:45'),
(2671, 18, '', 'Y', '2012-08-22 20:48:45'),
(2832, 18, '', 'Y', '2012-08-22 20:48:45'),
(2833, 18, '', 'Y', '2012-08-22 20:48:45'),
(2834, 18, '', 'Y', '2012-08-22 20:48:45'),
(1923, 18, '', 'Y', '2012-08-22 20:48:45'),
(2835, 18, '', 'Y', '2012-08-22 20:48:45'),
(2836, 18, 0x43697474e02064656c205661746963616e6f23636366696c746572, 'Y', '2012-07-30 15:21:09'),
(2837, 18, 0x4665646572617a696f6e6520756e69746120646569207069616e65746923636366696c746572, 'Y', '2012-07-30 15:21:09'),
(2838, 18, 0x4d6f7374726120736f6c6f2070617274697465206d756c74692d67696f6361746f72652366696c746572, 'Y', '2012-07-30 15:21:09'),
(2840, 18, 0x417474656e7a696f6e652366696c746572, 'Y', '2012-07-30 15:21:09'),
(2906, 18, 0x4d6f64656c6c69, 'Y', '2012-07-30 15:21:09'),
(2986, 18, 0x46696e652073657474696d616e61202855544329, 'Y', '2012-07-30 15:21:09'),
(2988, 18, '', 'Y', '2012-08-22 20:48:45'),
(2989, 18, 0x4f6e6c696e6520266c743b2573206d696e757469206661, 'Y', '2012-07-30 15:21:09'),
(2992, 18, 0x546f726e6569, 'Y', '2012-07-30 15:21:09'),
(2993, 18, 0x4c61207061727469746120686120636f6d6d656e7469206e6173636f737469, 'Y', '2012-07-30 15:21:09'),
(2995, 18, 0x4d6f737472612070617274697465206d756c74692d67696f6361746f7265, 'Y', '2012-07-30 15:21:09'),
(3070, 18, 0x286e657373756e206f67676574746f29, 'Y', '2012-07-30 15:21:09'),
(3142, 18, '', 'Y', '2012-08-22 20:48:45'),
(3143, 18, 0x496e7365676e616e74652375747970655f73686f7274, 'Y', '2012-07-30 15:24:38'),
(3144, 18, '', 'Y', '2012-08-22 20:48:45'),
(3145, 18, 0x53717561647261, 'Y', '2012-07-30 15:24:38'),
(3146, 18, 0x537175616472612375747970655f73686f7274, 'Y', '2012-07-30 15:24:38'),
(3147, 18, 0x507265666572697469, 'Y', '2012-07-30 15:42:25'),
(3148, 18, 0x556c74696d6920636f6d6d656e746920696e736572697469, 'Y', '2012-07-30 15:42:25'),
(3149, 18, 0x417676657273617269206f6e6c696e65, 'Y', '2012-07-30 15:42:25'),
(3150, 18, 0x5574656e7469206f6e6c696e65, 'Y', '2012-07-30 15:42:25'),
(3151, 18, 0x4d6f64696669636120766163616e7a61, 'Y', '2012-07-30 15:42:25'),
(3152, 18, 0x4d6f6469666963612070726f66696c6f, 'Y', '2012-07-30 15:42:25'),
(3153, 18, 0x4d6f73747261, 'Y', '2012-07-30 15:42:25'),
(3154, 18, 0x456e747261, 'Y', '2012-07-30 15:24:38'),
(3155, 18, 0x416975746f202f20464151, 'Y', '2012-07-30 15:24:38'),
(3156, 18, 0x4e756f76612050617274697461, 'Y', '2012-07-30 16:22:00'),
(3158, 18, 0x46756e7a696f6e616c6974e0, 'Y', '2012-07-30 15:24:38'),
(2985, 18, 0x5574656e746520696e206f726172696f206e6f747475726e6f, 'Y', '2012-07-30 15:27:18'),
(2987, 18, '', 'Y', '2012-08-22 20:48:45'),
(3161, 18, 0x4d6f7373612367616d65746167, 'Y', '2012-07-30 15:27:18'),
(3162, 18, 0x546f726e656f20232573205b25735d, 'Y', '2012-07-30 15:27:18'),
(3163, 18, '', 'Y', '2012-08-22 20:48:45'),
(3164, 18, 0x2325732028257329205b25735d, 'Y', '2012-07-30 15:27:18'),
(3165, 18, 0x536f6e64616767696f20232573205b25735d, 'Y', '2012-07-30 15:27:18'),
(3166, 18, '', 'Y', '2012-08-22 20:48:45'),
(3186, 18, '', 'Y', '2012-08-22 20:48:45'),
(3189, 18, 0x7072696d6120706167696e61, 'Y', '2012-07-30 15:27:18'),
(3190, 18, 0x2573206469202573237461626c656e617669, 'Y', '2012-07-30 15:27:18'),
(3191, 18, 0x506167696e61202573237461626c656e617669, 'Y', '2012-07-30 15:27:18'),
(2675, 18, '', 'Y', '2012-08-22 20:48:45'),
(2676, 18, '', 'Y', '2012-08-22 20:48:45'),
(2677, 18, '', 'Y', '2012-08-22 20:48:45'),
(2678, 18, '', 'Y', '2012-08-22 20:48:45'),
(2679, 18, '', 'Y', '2012-08-22 20:48:45'),
(2680, 18, '', 'Y', '2012-08-22 20:48:45'),
(2681, 18, '', 'Y', '2012-08-22 20:48:45'),
(2682, 18, '', 'Y', '2012-08-22 20:48:45'),
(2683, 18, 0x49736f6c65204361796d616e, 'Y', '2012-07-30 15:31:36'),
(2686, 18, 0x49736f6c6520436f6f6b, 'Y', '2012-07-30 15:31:36'),
(2687, 18, 0x556e696f6e65204575726f706561, 'Y', '2012-07-30 15:31:36'),
(2688, 18, 0x49736f6c652046616c6b6c616e64, 'Y', '2012-07-30 15:31:36'),
(2689, 18, 0x49736f6c65204661726f65, 'Y', '2012-07-30 15:31:36'),
(2690, 18, 0x4775696e6561204672616e63657365, 'Y', '2012-07-30 15:31:36'),
(2691, 18, 0x506f6c796e65736961204672616e63657365, 'Y', '2012-07-30 15:31:36'),
(2692, 18, '', 'Y', '2012-08-22 20:48:45'),
(2693, 18, '', 'Y', '2012-08-22 20:48:45'),
(2694, 18, '', 'Y', '2012-08-22 20:48:45'),
(2695, 18, '', 'Y', '2012-08-22 20:48:45'),
(2696, 18, '', 'Y', '2012-08-22 20:48:45'),
(2697, 18, 0x49736f6c61206469204d616e, 'Y', '2012-07-30 15:31:36'),
(2699, 18, '', 'Y', '2012-08-22 20:48:45'),
(2700, 18, '', 'Y', '2012-08-22 20:48:45'),
(2701, 18, '', 'Y', '2012-08-22 20:48:45'),
(2702, 18, '', 'Y', '2012-08-22 20:48:45'),
(2703, 18, '', 'Y', '2012-08-22 20:48:45'),
(2704, 18, 0x416e74696c6c6520646569205061657369204261737369, 'Y', '2012-07-30 15:31:36'),
(2684, 18, '', 'Y', '2012-08-22 20:48:45'),
(2685, 18, 0x49736f6c6520436f636f7320284b65656c696e6729, 'Y', '2012-07-30 15:36:15'),
(2698, 18, '', 'Y', '2012-08-22 20:48:45'),
(2705, 18, '', 'Y', '2012-08-22 20:48:45'),
(2706, 18, '', 'Y', '2012-08-22 20:48:45'),
(2707, 18, 0x49736f6c61204e6f72666f6c6b, 'Y', '2012-07-30 15:36:15'),
(2708, 18, 0x49736f6c65204e6f72746865726e204d617269616e61, 'Y', '2012-07-30 15:36:15'),
(2709, 18, 0x50616c657374696e61, 'Y', '2012-07-30 15:36:15'),
(2710, 18, '', 'Y', '2012-08-22 20:48:45'),
(2711, 18, '', 'Y', '2012-08-22 20:48:45'),
(2712, 18, '', 'Y', '2012-08-22 20:48:45'),
(2713, 18, '', 'Y', '2012-08-22 20:48:45'),
(2714, 18, '', 'Y', '2012-08-22 20:48:45'),
(2715, 18, '', 'Y', '2012-08-22 20:48:45'),
(2716, 18, 0x49736f6c6520536f7574682047656f7267696120652053616e6477696368, 'Y', '2012-07-30 15:36:15'),
(2717, 18, '', 'Y', '2012-08-22 20:48:45'),
(2718, 18, '', 'Y', '2012-08-22 20:48:45'),
(2719, 18, 0x49736f6c65205475726b73206520436169636f73, 'Y', '2012-07-30 15:36:15'),
(2720, 18, 0x49736f6c652056697267696e2028554b29, 'Y', '2012-07-30 15:36:15'),
(2721, 18, 0x49736f6c652056697267696e2028555329, 'Y', '2012-07-30 15:36:15'),
(2722, 18, 0x57616c6c6973206520467574756e61, 'Y', '2012-07-30 15:36:15'),
(2723, 18, 0x536168617261204f76657374, 'Y', '2012-07-30 15:36:15'),
(2724, 18, '', 'Y', '2012-08-22 20:48:45'),
(2725, 18, 0x4665646572617a696f6e652064656920706165736920756e697469, 'Y', '2012-07-30 15:36:15'),
(1964, 18, 0x547574746920426f6c6c657474696e69, 'Y', '2012-07-30 15:47:10'),
(2172, 18, 0x4d69656920426f6c6c657474696e69, 'Y', '2012-07-30 15:47:10'),
(3157, 18, 0x426f6c6c657474696e69, 'Y', '2012-07-30 15:47:10'),
(3215, 18, 0x4d69656920426f6c6c657474696e69, 'Y', '2012-07-30 15:47:10'),
(3223, 18, 0x426f6c6c657474696e69206e6f6e206c65747469, 'Y', '2012-07-30 15:47:10'),
(3351, 18, 0x53656e7a61206e756f766920426f6c6c657474696e69, 'Y', '2012-07-30 15:47:10'),
(3421, 18, 0x426f6c6c657474696e69206e6f6e206c6574746920286d6f7374726120746573746f29, 'Y', '2012-07-30 15:47:10'),
(3441, 18, 0x4d657373616767696f2064656c2067696f726e6f2028426f6c6c657474696e69206e6f6e206c6574746929, 'Y', '2012-07-30 15:47:10'),
(3442, 18, 0x4d6f737472612074757474692069202825732920426f6c6c657474696e69206e6f6e206c65747469, 'Y', '2012-07-30 15:47:10'),
(2998, 18, 0x4c61206c69737461207574656e7469206465766520636f6e74656e65726520616c6d656e6f206475652064657374696e61746172692c20696e7665636520696e206361736f20636f6e74726172696f20696e766961726520756e206d657373616767696f207072697661746f2e, 'Y', '2012-07-30 15:52:37'),
(3043, 18, '', 'Y', '2012-08-22 20:48:45'),
(3047, 18, '', 'Y', '2012-08-22 20:48:45'),
(3003, 18, '', 'Y', '2012-08-22 20:48:45'),
(3048, 18, '', 'Y', '2012-08-22 20:48:45'),
(3039, 18, '', 'Y', '2012-08-22 20:48:45'),
(3040, 18, '', 'Y', '2012-08-22 20:48:45'),
(3049, 18, '', 'Y', '2012-08-22 20:48:45'),
(3011, 18, '', 'Y', '2012-08-22 20:48:45'),
(3012, 18, '', 'Y', '2012-08-22 20:48:45'),
(3041, 18, '', 'Y', '2012-08-22 20:48:45'),
(3013, 18, '', 'Y', '2012-08-22 20:48:45'),
(3014, 18, '', 'Y', '2012-08-22 20:48:45'),
(3009, 18, '', 'Y', '2012-08-22 20:48:45'),
(3001, 18, '', 'Y', '2012-08-22 20:48:45'),
(3031, 18, '', 'Y', '2012-08-22 20:48:45'),
(3015, 18, '', 'Y', '2012-08-22 20:48:45'),
(3002, 18, '', 'Y', '2012-08-22 20:48:45'),
(3033, 18, '', 'Y', '2012-08-22 20:48:45'),
(3008, 18, '', 'Y', '2012-08-22 20:48:45'),
(3016, 18, '', 'Y', '2012-08-22 20:48:45'),
(3017, 18, '', 'Y', '2012-08-22 20:48:45'),
(3036, 18, '', 'Y', '2012-08-22 20:48:45'),
(3018, 18, '', 'Y', '2012-08-22 20:48:45'),
(3035, 18, '', 'Y', '2012-08-22 20:48:45'),
(3034, 18, '', 'Y', '2012-08-22 20:48:45'),
(3010, 18, 0x4974616c69616e6f, 'Y', '2012-07-30 15:57:41'),
(3019, 18, '', 'Y', '2012-08-22 20:48:45'),
(3020, 18, '', 'Y', '2012-08-22 20:48:45'),
(3032, 18, '', 'Y', '2012-08-22 20:48:45'),
(3046, 18, '', 'Y', '2012-08-22 20:48:45'),
(3021, 18, '', 'Y', '2012-08-22 20:48:45'),
(3051, 18, '', 'Y', '2012-08-22 20:48:45'),
(3050, 18, '', 'Y', '2012-08-22 20:48:45'),
(3022, 18, '', 'Y', '2012-08-22 20:48:45'),
(3007, 18, '', 'Y', '2012-08-22 20:48:45'),
(3023, 18, '', 'Y', '2012-08-22 20:48:45'),
(3006, 18, '', 'Y', '2012-08-22 20:48:45'),
(3024, 18, '', 'Y', '2012-08-22 20:48:45'),
(3025, 18, '', 'Y', '2012-08-22 20:48:45'),
(3042, 18, '', 'Y', '2012-08-22 20:48:45'),
(3005, 18, '', 'Y', '2012-08-22 20:48:45'),
(3004, 18, '', 'Y', '2012-08-22 20:48:45'),
(3044, 18, '', 'Y', '2012-08-22 20:48:45'),
(3026, 18, '', 'Y', '2012-08-22 20:48:45'),
(3037, 18, '', 'Y', '2012-08-22 20:48:45'),
(3027, 18, '', 'Y', '2012-08-22 20:48:45'),
(3028, 18, '', 'Y', '2012-08-22 20:48:45'),
(5531, 25, 0x636f6e666967757261c5a36965207374616e64617264, 'Y', '2014-11-14 11:20:29'),
(3038, 18, '', 'Y', '2012-08-22 20:48:45'),
(3045, 18, '', 'Y', '2012-08-22 20:48:45'),
(3030, 18, '', 'Y', '2012-08-22 20:48:45'),
(3440, 18, 0x537461746f20646920253124733a2025322473, 'Y', '2012-07-30 16:03:46'),
(4496, 18, 0x556c74696d6f206163636573736f2076656c6f6365, 'Y', '2012-07-30 16:05:00'),
(2192, 18, 0x5269666975746120766974746f726965207065722074696d656f7574, 'Y', '2012-07-30 16:06:19'),
(4497, 18, 0x4469736162696c697461746f, 'Y', '2012-07-30 16:07:15'),
(2770, 18, 0x5370696163656e74692c207175657374612066756e7a696f6e6520e8207374617461206469736162696c69746174612073752071756573746f207365727665722e, 'Y', '2012-07-30 16:07:15'),
(4493, 18, 0x4675736f206f726172696f, 'Y', '2012-07-30 16:07:57'),
(4494, 18, 0x4f726172696f206c6f63616c652064656c207574656e7465, 'Y', '2012-07-30 16:08:38'),
(2978, 18, 0x50617274697465204d50, 'Y', '2012-07-30 16:10:18'),
(4500, 18, 0x50617274697465204d50, 'Y', '2012-07-30 16:10:18'),
(2059, 18, 0x43616d6269612063617465676f726961202620677261646f, 'Y', '2012-07-30 16:11:29'),
(2208, 18, 0x4d6f64696669636120696d6d6167696e65207574656e7465, 'Y', '2012-07-30 16:12:24'),
(2909, 18, 0x4e756f7661205061727469746123746d706c, 'Y', '2012-07-30 16:22:00'),
(3265, 18, 0x41676769756e6769206e756f7661207061727469746120696e2073616c61206427617474657361, 'Y', '2012-07-30 16:17:47'),
(2524, 18, 0x41676769756e6769206e756f7661207061727469746120696e2073616c61206427617474657361, 'Y', '2012-07-30 16:17:47'),
(2507, 18, 0x496d706f7374617a696f6e69206f726172696f, 'Y', '2012-07-30 16:19:51'),
(2441, 18, 0x496d706f7374617a696f6e69206f726172696f20652054656d706f2072696d616e656e7465, 'Y', '2012-07-30 16:19:51'),
(3068, 18, 0x5265737472697a696f6e69, 'Y', '2012-07-30 16:20:33'),
(4535, 18, 0x5265737472697a696f6e69, 'Y', '2012-07-30 16:20:33'),
(3235, 18, 0x466967757265, 'Y', '2012-07-30 16:25:54'),
(3267, 18, 0x4e756f76612070617274697461206b6f6d692d6c65616c65, 'Y', '2012-07-30 16:27:11'),
(3251, 18, 0x53616c7661206d6f64656c6c6f, 'Y', '2012-07-30 16:27:41'),
(3268, 18, 0x4e756f76612070617274697461206d756c74692d67696f6361746f7265, 'Y', '2012-07-30 16:28:54'),
(3250, 18, 0x4e756f766f206d657373616767696f20696e2070617274697461206d756c74692d67696f6361746f7265, 'Y', '2012-07-30 16:28:54'),
(2922, 18, 0x5065726d65747469206c6f2073746573736f206176766572736172696f, 'Y', '2012-07-30 16:30:29'),
(4708, 7, 0x496e666f726d616365206f20726f7a6573746176656eed, 'Y', '2016-07-20 18:39:13'),
(2925, 18, 0x73656d707265, 'Y', '2012-07-30 16:31:57'),
(2928, 18, 0x3120766f6c74612028737465737361206f66666572746129, 'Y', '2012-07-30 16:33:07'),
(2929, 18, 0x257320766f6c74652028737465737361206f66666572746129, 'Y', '2012-07-30 16:33:40'),
(4498, 18, 0x25732067696f726e69, 'Y', '2012-07-30 16:34:38'),
(2933, 18, 0x646f706f2025732067696f726e69, 'Y', '2012-07-30 16:34:38'),
(3058, 18, 0x5069657472652048616e6469636170, 'Y', '2012-07-30 16:36:14'),
(2895, 18, 0x506f73697a696f6e616d656e746f205069657472652048616e6469636170, 'Y', '2012-07-30 16:36:14'),
(3056, 18, 0x496d706f7374617a696f6e65206d616e75616c65202870617269206f207061727469746120636f6e2068616e646963617029, 'Y', '2012-07-30 16:38:20'),
(2891, 18, 0x496d706f7374617a696f6e65206d616e75616c6520636f6e20696c204d696f20436f6c6f7265205b25735d2c2048616e64696361702025732c204b6f6d69202573, 'Y', '2012-07-30 16:38:20'),
(3089, 18, 0x496d706f7374617a696f6e65206d616e75616c65, 'Y', '2012-07-30 16:38:20'),
(3059, 18, 0x4d6f646966696361206469, 'Y', '2012-07-30 16:39:15'),
(3062, 18, 0x4d6f646966696361206469, 'Y', '2012-07-30 16:39:15'),
(2918, 18, 0x696d706f7374617a696f6e69206b6f6d692d6c65616c65, 'Y', '2012-07-30 16:41:36'),
(2919, 18, 0x696d706f7374617a696f6e69206d756c74692d67696f6361746f7265, 'Y', '2012-07-30 16:40:59'),
(4532, 18, 0x4b6f6d69204c65616c65, 'Y', '2012-07-30 16:56:46'),
(3057, 18, 0x4b6f6d69204c65616c6520287061727469746120616c6c61207061726929, 'Y', '2012-07-30 16:56:46'),
(2944, 18, 0x44697370757461204b6f6d69204c65616c65, 'Y', '2012-07-30 16:56:46'),
(2726, 18, 0x44697370757461204b6f6d69204c65616c65, 'Y', '2012-07-30 16:56:46'),
(3079, 25, 0x496e666f726d61c5a369692064657370726520706172746964c483, 'Y', '2012-07-30 23:58:27'),
(1506, 25, 0x546970, 'Y', '2012-07-31 00:04:42'),
(3385, 18, 0x4d6965207061727469746520696e20636f72736f, 'Y', '2012-07-31 15:54:37'),
(3386, 18, 0x4d696520706172746974652066696e697465, 'Y', '2012-07-31 15:54:59'),
(3371, 18, 0x5061727469746520636865206f73736572766f, 'Y', '2012-07-31 15:55:18'),
(2401, 18, 0x4d6f7374726120696e666f2070617274697461, 'Y', '2012-07-31 15:56:41'),
(2427, 18, 0x4d6f7374726120696e7669746f, 'Y', '2012-07-31 15:57:50'),
(2414, 18, 0x5469706f2050617274697461, 'Y', '2012-07-31 15:58:39'),
(2915, 18, 0x43696e657369, 'Y', '2012-07-31 16:00:26'),
(2914, 18, 0x47696170706f6e657369, 'Y', '2012-07-31 16:00:26'),
(2416, 18, 0x5265676f6c65, 'Y', '2012-07-31 16:00:26'),
(3367, 18, 0x5265676f6c65, 'Y', '2012-07-31 16:00:26'),
(2277, 18, 0x556c74696d61206d6f646966696361, 'Y', '2012-07-31 16:06:43'),
(2432, 18, 0x48616e6469636170205374616e64617264, 'Y', '2012-07-31 16:07:50'),
(2429, 18, 0x496e697a696f2050617274697461, 'N', '2012-07-31 16:09:03'),
(3640, 18, 0x496e697a696f20546f726e656f, 'Y', '2012-07-31 16:09:03'),
(2435, 18, 0x477261646f20636f7272656e7465, 'Y', '2012-07-31 16:09:44'),
(2206, 8, 0xbcd0b04fb3ccabe1b4a3a46c, 'Y', '2012-08-01 06:16:30'),
(2399, 8, 0xb3ccabe1b4a3a46c, 'Y', '2012-08-01 06:16:30'),
(2206, 34, 0xe6a899e8a898e69c80e5be8ce68f90e5ad90, 'Y', '2012-08-01 06:17:00'),
(2399, 34, 0xe69c80e5be8ce68f90e5ad90, 'Y', '2012-08-01 06:17:00'),
(2765, 18, 0x43692064697370696163652c206465766920657373657265207265676973747261746f20706572206661726c6f2e, 'Y', '2012-08-11 20:24:00'),
(2766, 18, 0x4c6520726167696f6e692064692071756573746f2070726f626c656d6120706f747265626265726f2065737365726520756e61207175616c73696173692064656c6c652073656775656e74693a, 'Y', '2012-08-11 20:24:44'),
(2767, 18, 0x4e6f6e2068616920616e636f726120756e203c6120687265663d222531247372656769737465722e706870223e6163636f756e743c2f613e2c206f206e6f6e2068616920616e636f7261203c6120687265663d2225312473696e6465782e706870223e6566666574747561746f206c276163636573736f3c2f613e2e, 'Y', '2012-08-11 20:26:16'),
(2768, 18, 0x4920636f6f6b696520736f6e6f20736361647574692e2051756573746f207375636365646520756e6120766f6c746120616c206d6573652e, 'Y', '2012-08-11 20:26:59'),
(2769, 18, 0x4e6f6e20686169206162696c697461746f206920636f6f6b696573206e656c2074756f2062726f777365722e, 'Y', '2012-08-11 20:30:25'),
(3249, 25, 0x56697a75616c697a617265206d6573616a, 'Y', '2012-08-17 09:55:55'),
(3075, 25, 0x4d657267692061636f6c6f20647570c483206d7574617265, 'Y', '2012-08-17 10:01:12'),
(3385, 25, 0x506172746964656c65206d656c6520c3ae6e2064657366c483c59f7572617265, 'Y', '2012-08-17 10:02:13'),
(3386, 25, 0x506172746964656c65206d656c65207465726d696e617465, 'Y', '2012-08-17 10:03:08'),
(3371, 25, 0x506172746964656c652070652063617265206c652075726dc48372657363, 'Y', '2012-08-17 10:03:56'),
(3368, 25, 0x54696d702072c4836d6173206d6965, 'Y', '2012-08-17 10:06:23'),
(3369, 25, 0x54696d702072c4836d6173206164766572736172756c7569, 'Y', '2012-08-17 10:07:17'),
(2842, 25, '', 'Y', '2012-08-17 10:38:03'),
(2843, 25, 0x4e657374616e64617264, 'Y', '2012-08-17 10:13:09'),
(2937, 25, '', 'Y', '2012-08-17 10:38:03'),
(2938, 25, 0x476f2d50657265636869, 'Y', '2012-08-17 10:13:09'),
(2939, 25, '', 'Y', '2012-08-17 10:38:03'),
(3366, 25, 0x54697020706172746964c483, 'Y', '2012-08-17 10:13:09'),
(3367, 25, 0x53697374656d20726567756c69, 'Y', '2012-08-17 10:19:51'),
(3373, 25, 0x546f61746520706172746964656c6520c3ae6e2064657366c483c59f7572617265, 'Y', '2012-08-17 10:24:47'),
(3372, 25, 0x546f61746520706172746964656c65207465726d696e617465, 'Y', '2012-08-17 10:25:06'),
(3370, 25, 0x546f61746520706172746964656c652075726dc48372697465, 'Y', '2012-08-17 10:25:29'),
(2679, 6, '', 'Y', '2015-06-17 05:08:18'),
(3375, 25, 0x5061727469646520c3ae6e2064657366c483c59f75726172652070656e74727520253124733a2025322473, 'Y', '2012-08-17 10:28:49'),
(1440, 25, 0x4d7574c4837269, 'Y', '2012-08-17 10:36:14'),
(2411, 18, 0x416e6e756c6c61206d6f737361, 'Y', '2012-08-22 20:48:45'),
(2839, 4, 0x4e6163682053746f702d57f6727465726e205b25735d206b616e6e206e6963687420676573756368742077657264656e21, 'Y', '2012-09-04 00:42:31'),
(2837, 4, 0x56657265696e696774652046f66465726174696f6e2064657220506c616e6574656e, 'Y', '2012-09-04 00:42:31'),
(3146, 4, '', 'Y', '2012-09-04 00:44:36'),
(2834, 4, '', 'Y', '2012-09-04 00:42:31'),
(2506, 18, 0x53657474616767692048616e6469636170, 'Y', '2012-08-27 16:35:54'),
(1932, 16, 0xc2f0e5ece5ededeee520eee3f0e0ede8f7e5ede8e520e4eef1f2f3efe0, 'Y', '2012-09-09 20:35:51'),
(2158, 16, 0xd1f2e0f2e8f1f2e8eae0, 'Y', '2012-09-09 20:35:51'),
(2659, 16, 0xcde520f3eae0e7e0ed20f4e0e9eb20e4ebff20e7e0e3f0f3e7eae8, 'Y', '2012-09-09 20:35:51'),
(2660, 16, 0xc7e0e3f0f3e6e5ededfbe920f4e0e9eb205b25735d20eff0e5e2fbf8e0e5f220f3f1f2e0edeee2ebe5ededfbe920f1e5f0e2e5f0eeec20ece0eaf1e8ece0ebfcedfbe920f0e0e7ece5f020f4e0e9ebe0, 'Y', '2012-09-09 20:35:51'),
(2661, 16, 0xc7e0e3f0f3e6e5ededfbe920f4e0e9eb205b25735d20eff0e5e2fbf8e0e5f220f3f1f2e0edeee2ebe5ededfbe920f4eef0eceee920e2e2eee4e020ece0eaf1e8ece0ebfcedfbe920f0e0e7ece5f020f4e0e9ebe0205b25732062797465735d, 'Y', '2012-09-09 20:35:51'),
(2662, 16, 0xc7e0e3f0f3e6e5ededfbe920f4e0e9eb205b25735d20e1fbeb20e7e0e3f0f3e6e5ed20f2eeebfceaee20f7e0f1f2e8f7edee, 'Y', '2012-09-09 20:35:51'),
(2663, 16, 0xd4e0e9eb20ede520e7e0e3f0f3e6e5ed, 'Y', '2012-09-09 20:41:03'),
(2664, 16, 0xc7e0e3f0f3e6e5ededfbe920f4e0e9eb205b25735d20f1eee4e5f0e6e8f220ede5e8e7e2e5f1f2edfbe920f4eef0ece0f220e8e7eee1f0e0e6e5ede8ff, 'Y', '2012-09-09 20:41:03'),
(2665, 16, 0xd2e8ef20e8e7eee1f0e0e6e5ede8ff205b25732c2025735d20e7e0e3f0f3e6e5ededeee3ee20f4e0e9ebe0205b25735d20ede520eef2e2e5f7e0e5f220ede820eee4edeeecf320e8e720eee6e8e4e0e5ecfbf520f2e8efeee220e8e7eee1f0e0e6e5ede8ff205b25735d2e, 'Y', '2012-09-09 20:41:03'),
(2666, 16, 0xd8e8f0e8ede0205b25735d20e7e0e3f0f3e6e5ededeee3ee20e8e7eee1f0e0e6e5ede8ff205b25735d20e2fbf5eee4e8f220e7e020f0e0eceae8205b257320706978656c735d2e, 'Y', '2012-09-09 20:41:03'),
(2667, 16, 0xc2fbf1eef2e0205b25735d20e7e0e3f0f3e6e5ededeee3ee20e8e7eee1f0e0e6e5ede8ff205b25735d20e2fbf5eee4e8f220e7e020f0e0eceae8205b257320706978656c735d2e, 'Y', '2012-09-09 20:41:03'),
(2668, 16, 0xc7e0e3f0f3e6e5ededfbe920f4e0e9eb205b25735d20ede520efeee4e4e0e5f2f1ff20f1eef5f0e0ede5ede8fe2e, 'Y', '2012-09-09 20:41:03'),
(2669, 16, '', 'Y', '2012-09-09 20:41:27'),
(2670, 16, '', 'Y', '2012-09-09 20:41:27'),
(2671, 16, '', 'Y', '2012-09-09 20:41:27'),
(2984, 16, 0xc8e3f0eee2fbe520f7e0f1fb20eef1f2e0edeee2ebe5edfb, 'Y', '2012-09-09 20:43:58'),
(2985, 16, 0xd320efeeebfce7eee2e0f2e5ebff20e2f0e5ecff20f1ede0, 'Y', '2012-09-09 20:43:58'),
(2986, 16, 0xc2fbf5eee4edfbe5202855544329, 'Y', '2012-09-09 20:43:58'),
(2988, 16, 0xceed2debe0e9ed, 'Y', '2012-09-09 20:43:58'),
(2989, 16, 0xc1fbeb20eeed2debe0e9ed20266c743b257320ece8ed2e20ede0e7e0e4, 'Y', '2012-09-09 20:49:09'),
(2992, 16, 0xd2f3f0ede8f0fb, 'Y', '2012-09-09 20:46:56'),
(2993, 16, 0xc220e8e3f0e520e5f1f2fc20f1eaf0fbf2fbe520eaeeecece5edf2e0f0e8e8, 'Y', '2012-09-09 20:46:56'),
(3070, 16, 0x28e1e5e720f2e5ecfb29, 'Y', '2012-09-09 20:46:56'),
(1311, 16, 0xc0ebfcf2e5f0ede0f2e8e2edfbe520e8edf2e5f0f4e5e9f1fb20447261676f6e2761, 'Y', '2012-09-09 22:00:22'),
(3157, 8, 0xa4bda769, 'Y', '2012-10-23 17:59:42'),
(3157, 34, 0xe585ace5918a, 'Y', '2012-10-23 18:01:09'),
(3157, 33, 0xe585ace5918a, 'Y', '2012-10-23 18:01:34'),
(2287, 8, 0xb773a55cafe0b2bcbfef, 'Y', '2012-10-26 06:17:30'),
(3158, 8, 0xb2bcbfefb773a55cafe0, 'Y', '2012-10-26 06:17:54'),
(2287, 34, 0xe7a5a8e981b8e696b0e58a9fe883bd, 'Y', '2012-10-26 06:18:20'),
(3158, 34, 0xe7a5a8e981b8e696b0e58a9fe883bd, 'Y', '2012-10-26 06:18:38'),
(2287, 10, 0xc6b1d1a1d0c2b9a6c4dc, 'Y', '2012-10-26 06:19:24'),
(3158, 10, 0xc6b1d1a1d0c2b9a6c4dc, 'Y', '2012-10-26 06:19:40'),
(2287, 33, 0xe7a5a8e98089e696b0e58a9fe883bd, 'Y', '2012-10-26 06:19:57'),
(3158, 33, 0xe7a5a8e98089e696b0e58a9fe883bd, 'Y', '2012-10-26 06:20:13'),
(2377, 8, 0xb4d1c3d0bd73bfe8beb9, 'Y', '2012-10-26 06:21:51'),
(2377, 34, 0xe6a38be8ad9ce7b7a8e8bcafe599a8, 'Y', '2012-10-26 06:22:07'),
(2377, 10, 0xc6e5c6d7b1e0bcadc6f7, 'Y', '2012-10-26 06:22:35'),
(2377, 33, 0xe6a38be8b0b1e7bc96e8be91e599a8, 'Y', '2012-10-26 06:22:52'),
(1077, 16, 0xcce0ebe5edfceae8e520e4eef1eae820e4ebff20e8e3f0fb, 'Y', '2012-10-27 14:55:47'),
(1238, 16, 0xcfe5f0e5eaebfef7e0e5f2f1ff20eceee4e5f0e0f2eef0eeec20f4eef0f3ece0, 'Y', '2012-10-27 14:55:47'),
(1316, 16, 0x447261676f6e20efeee4e4e5f0e6e8e2e0e5f2205253533f, 'Y', '2012-10-27 15:52:50'),
(1382, 16, 0xc4e0e2e0e920ede0f7ede5ec, 'Y', '2012-10-27 15:53:34'),
(1383, 16, 0xcdeee2eef1f2e8, 'Y', '2012-10-27 15:53:34'),
(1408, 16, 0xcae8f1e5e4ee20c3ee20d1e5f0e2e5f020f120ffe2e020e8edf2e5f0f4e5e9f1eeec, 'Y', '2012-10-27 15:54:40'),
(1465, 16, 0xcff0e8e3ebe0f1e8f2fc20efeeebfce7eee2e0f2e5ebff, 'Y', '2012-10-27 15:55:02'),
(1536, 16, 0xc0e2f2eef0202855736572696429, 'Y', '2012-10-27 15:55:41'),
(1575, 16, 0xd6e2e5f220e8e3f0eeeaeee2, 'Y', '2012-10-27 15:59:07'),
(3445, 16, 0xc2e0f8e820ecedeee3eeefeeebfce7eee2e0f2e5ebfcf1eae8e520e8e3f0fb20e4ebff20f3eff0e0e2ebe5ede8ff3a, 'Y', '2012-10-27 16:04:37'),
(3440, 16, 0xd0e5e9f2e8ede320253124733a2025322473, 'Y', '2012-10-27 16:06:39'),
(3385, 16, 0xcceee820f2e5eaf3f9e8e520e8e3f0fb, 'Y', '2012-10-27 16:07:24'),
(1078, 16, 0xc1eeebfcf8e8e520e4eef1eae8, 'Y', '2012-10-27 16:18:08'),
(1389, 16, 0xd0e5e4e0eaf2e8f0eee2e0f2fc20e1e8eee3f0e0f4e8fe, 'Y', '2012-10-27 16:18:08'),
(1391, 16, 0xcce0eaf12e20eaeeeb2de2ee20f1f2f0eeea20f2e0e1ebe8f6fb, 'Y', '2012-10-27 16:18:08'),
(1560, 16, 0xcfeee8f1ea20f1e8f1f2e5ecedfbf520eae0f2e5e3eef0e8e9, 'Y', '2012-10-27 16:18:50'),
(1561, 16, 0xcfeee8f1ea20eae0f2e5e3eef0e8e920efeeebfce7eee2e0f2e5ebff, 'Y', '2012-10-27 16:18:50'),
(1241, 16, 0xcde020eff0eee2e5f0eae5, 'Y', '2012-10-27 16:23:42'),
(1256, 16, 0xcff0eee2e5f0e5edee, 'Y', '2012-10-27 16:23:42'),
(2361, 16, 0x257320e7e0efe8f1e5e9, 'Y', '2012-10-27 16:24:52'),
(3188, 16, 0x28257320e7e0efe8f1e5e929, 'Y', '2012-10-27 16:25:33'),
(3358, 16, 0xb920e8e3f0fb, 'Y', '2012-10-27 16:27:10'),
(3366, 16, 0xd2e8ef20e8e3f0fb, 'Y', '2012-10-27 16:27:50'),
(2416, 16, 0xcff0e0e2e8ebe0, 'Y', '2012-10-27 16:28:44'),
(3367, 16, 0xcff0e0e2e8ebe0, 'Y', '2012-10-27 16:29:05'),
(2512, 16, 0xc8e3f0eeeaeee2, 'Y', '2012-10-27 16:40:40'),
(3386, 16, 0xc7e0eaeeedf7e5ededfbe520e8e3f0fb, 'Y', '2012-10-28 07:08:56'),
(1599, 16, 0xcff0e8fff2e5ebfc, 'Y', '2012-10-28 07:13:02'),
(1600, 16, 0xc4f0f3e3, 'Y', '2012-10-28 07:13:02'),
(1601, 16, 0xd1f2f3e4e5edf2, 'Y', '2012-10-28 07:13:02'),
(1602, 16, 0xd3f7e8f2e5ebfc, 'Y', '2012-10-28 07:14:08'),
(4617, 16, 0xd0e0e7edeee5, 'Y', '2012-10-28 07:15:27'),
(1312, 16, 0xc4f0e0e3eeed20efeee4e4e5f0e6e8e2e0e5f220eff0eef2eeeaeeebfb2047545020e8ebe820474d503f, 'Y', '2012-10-28 07:22:18'),
(1314, 16, 0xc4f0e0e3eeed20efeee4e4e5f0e6e8e2e0e5f2205741503f, 'Y', '2012-10-28 07:23:02'),
(1364, 16, 0xcae0ea20ff20eceee3f320e2fbefeeede8f2fc20efeeebedeef2e5eaf1f2eee2fbe920efeee8f1ea3f, 'Y', '2012-10-28 07:24:22'),
(2101, 4, 0x546974656c, 'Y', '2012-11-04 13:18:00'),
(3450, 25, 0xc59e61626c6f616e652028666f6c6f736974653a2025732064696e206d6178696d756d20257329, 'Y', '2012-11-26 14:37:21'),
(3451, 25, 0x556c74696d61206d6f6469666963617265, 'Y', '2012-11-26 14:38:01'),
(3452, 25, 0xc59e746572676520c59f61626c6f6e, 'Y', '2012-11-26 14:51:51'),
(2909, 25, 0x506172746964c483206e6f75c483, 'Y', '2012-11-26 14:42:06'),
(3109, 25, 0x4d6573616a756c206e75206172652064657374696e61746172, 'Y', '2012-11-26 14:45:24'),
(3252, 25, 0x496e76697461c5a3696520706172746964c483, 'Y', '2012-11-26 14:46:32'),
(3070, 25, 0x2866c48372c483207375626965637429, 'Y', '2012-11-26 14:47:20'),
(3255, 25, 0x50726576697a75616c697a617265206d6573616a, 'Y', '2012-11-26 14:48:12'),
(1942, 4, 0x41646d696e204e6f74697a, 'Y', '2012-11-27 00:15:23'),
(1959, 4, '', 'Y', '2012-11-27 00:16:42'),
(1970, 4, 0x5475726e6965722d4944206d757373206e756d657269736368207365696e21, 'Y', '2012-11-27 00:16:42'),
(1971, 4, 0x4573207775726465206b65696e205475726e696572206d697420646572204944205b25735d20676566756e64656e21, 'Y', '2012-11-27 00:16:42'),
(2364, 4, 0x4665686c6572, 'Y', '2012-11-27 00:19:00'),
(2367, 4, 0x566f7269676520416e74776f7274, 'Y', '2012-11-27 00:19:00'),
(2368, 4, 0x4ee4636873746520416e74776f7274, 'Y', '2012-11-27 00:19:00'),
(2371, 4, 0x457273746520416e74776f7274, 'Y', '2012-11-27 00:19:00'),
(2373, 4, 0x4d6f64657269657274657220496e68616c74, 'Y', '2012-11-27 00:19:59'),
(2375, 4, 0x4175746f7220766572737465636b656e, 'Y', '2012-11-27 00:19:59'),
(4619, 4, 0x45696e66fc6872756e67, 'Y', '2012-11-27 00:21:31'),
(4566, 4, '', 'Y', '2012-11-27 00:22:46'),
(4570, 4, 0x45696e66fc6872756e6720696e20476f, 'Y', '2012-11-27 00:22:46'),
(4572, 4, '', 'Y', '2012-11-27 00:22:46'),
(4574, 4, '', 'Y', '2012-11-27 00:22:46'),
(4575, 4, '', 'Y', '2012-11-27 00:22:46'),
(4576, 4, '', 'Y', '2012-11-27 00:22:46'),
(4577, 4, 0x495954202d204974277320796f7572207475726e20284475206269737420616d205a756729, 'Y', '2012-11-27 00:22:46'),
(4578, 4, '', 'Y', '2012-11-27 00:22:55'),
(4579, 4, '', 'Y', '2012-11-27 00:22:55'),
(4580, 4, '', 'Y', '2012-11-27 00:22:55'),
(4568, 4, '', 'Y', '2012-11-27 00:23:42'),
(4569, 4, 0x476f204e657569676b656974656e20766f6e20616e646572656e20476f205365727665726e, 'Y', '2012-11-27 00:23:42'),
(4571, 4, 0x476f206d6569737465726e20696e20313020546167656e, 'Y', '2012-11-27 00:23:42'),
(5212, 4, '', 'Y', '2012-12-03 01:45:27'),
(2423, 4, 0x4b6f6d692d56657268616e646c756e67, 'Y', '2012-12-09 01:11:33'),
(2427, 4, 0x5a656967652045696e6c6164756e67656e, 'Y', '2012-12-09 01:11:33'),
(5744, 4, 0x4d6f, 'Y', '2013-12-01 17:04:15'),
(2434, 4, 0x527568657a656974, 'Y', '2012-12-09 01:12:54'),
(2435, 4, 0x4465727a65697469676520426577657274756e67, 'Y', '2012-12-09 01:12:54'),
(2438, 4, 0x2573732052756e646523666169726b6f6d695f75736572, 'Y', '2012-12-09 01:12:54'),
(2442, 4, 0x5a65697473797374656d, 'Y', '2012-12-09 01:12:54'),
(2443, 4, 0x5a757361747a7a656974, 'Y', '2012-12-09 01:12:54'),
(2444, 4, 0x556872737461747573, 'Y', '2012-12-09 01:12:54'),
(2445, 4, 0x55687220616e676568616c74656e, 'Y', '2012-12-09 01:12:54'),
(2446, 4, 0x556872206ce4756674, 'Y', '2012-12-09 01:13:37'),
(2447, 4, 0x5568722076657277656e646574, 'Y', '2012-12-09 01:13:37'),
(2451, 4, 0x416b7475656c6c652052756e646523746f75726e6579, 'Y', '2012-12-09 01:13:37'),
(2462, 4, 0x5475726e6965722076657277616c74656e, 'Y', '2012-12-09 01:13:54'),
(2465, 4, 0x282573205afc67652c202573204b6f6d6d656e7461726529, 'Y', '2012-12-09 01:14:34'),
(2499, 4, 0x566f726761626520e46e6465726e, 'Y', '2012-12-09 01:14:34'),
(2504, 4, 0x537069656c207072fc66656e, 'Y', '2012-12-09 01:14:34'),
(2513, 4, 0x45696e6c6164756e672073656e64656e, 'Y', '2012-12-09 01:14:34'),
(4493, 4, 0x5a6569747a6f6e65, 'Y', '2012-12-09 01:14:55'),
(4494, 4, 0x4f7274737a656974, 'Y', '2012-12-09 01:15:33'),
(4496, 4, 0x4c65747a746572205363686e656c6c7a756772696666, 'Y', '2012-12-09 01:15:58'),
(3224, 4, 0x50726f66696c62696c6423686561646572, 'Y', '2012-12-09 01:17:30'),
(4502, 4, 0x50726f66696c62696c642028766572737465636b7429, 'Y', '2012-12-09 01:17:30'),
(4499, 4, 0x776567656e205a656974fc62657273636872656974756e67207665726c6f72656e, 'Y', '2012-12-09 01:19:39'),
(2192, 4, 0x53696567206475726368205a656974fc62657273636872656974756e67, 'Y', '2012-12-09 01:21:36'),
(4497, 4, 0x617573, 'Y', '2012-12-09 01:22:35'),
(3358, 4, 0x5061727469652d4944, 'Y', '2012-12-09 01:24:53'),
(2914, 4, 0x4a6170616e69736368, 'Y', '2012-12-09 01:28:04'),
(2915, 4, 0x4368696e657369736368, 'Y', '2012-12-09 01:28:04'),
(3367, 4, 0x526567656c6e, 'Y', '2012-12-09 01:28:04'),
(4535, 4, 0x426573636872e46e6b756e67, 'Y', '2012-12-09 01:29:04'),
(2652, 4, 0x416b7475656c6c65205765727465, 'Y', '2012-12-09 01:29:38'),
(2653, 4, 0x4cf673636865205765727465, 'Y', '2012-12-09 01:29:58'),
(2654, 4, 0x5365747a65205765727465207a7572fc636b, 'Y', '2012-12-09 01:30:13'),
(2655, 4, 0x416c73205374616e646172642073706569636865726e, 'Y', '2012-12-09 01:30:29'),
(2657, 4, 0x50726f66696c2073706569636865726e, 'Y', '2012-12-09 01:30:49'),
(3447, 4, 0x5365747a6520536f7274696572756e67, 'Y', '2012-12-09 01:31:49'),
(2891, 4, 0x456967656e652045696e7374656c6c756e67206d6974204661726265205b25735d2c20566f72676162652025732c204b6f6d69202573, 'Y', '2012-12-09 01:33:59'),
(3056, 4, 0x456967656e652045696e7374656c6c756e6720286175736765676c696368656e206f646572206d697420566f726761626529, 'Y', '2012-12-09 01:33:59'),
(3089, 4, 0x456967656e652045696e7374656c6c756e67, 'Y', '2012-12-09 01:33:59'),
(2425, 4, 0x446f7070656c737069656c2d4944, 'Y', '2012-12-09 01:35:05'),
(2912, 4, 0x446f7070656c737069656c2028576569df29, 'Y', '2012-12-09 01:35:05'),
(2913, 4, 0x446f7070656c737069656c20285363687761727a29, 'Y', '2012-12-09 01:35:05'),
(2941, 4, 0x446f7070656c, 'Y', '2012-12-09 01:35:05'),
(4529, 4, 0x446f7070656c, 'Y', '2012-12-09 01:35:05'),
(3067, 4, 0x5a6569747a6f6e6520555443, 'Y', '2012-12-09 01:36:47'),
(3066, 4, 0x7a2e20422e20323a32202852656e676f292c203320285a656e2d476f29, 'Y', '2012-12-09 01:38:11'),
(5218, 4, 0x4d656872737069656c6572706172746965, 'Y', '2012-12-09 19:08:25'),
(5181, 4, 0x4a69676f2065726c61756274, 'Y', '2012-12-09 01:47:43'),
(5182, 4, 0x4b65696e204a69676f2065726c61756274, 'Y', '2012-12-09 01:47:53'),
(2093, 4, 0x45727374656c6c74, 'Y', '2012-12-09 01:50:52'),
(4508, 4, 0x5175656c6c65, 'Y', '2012-12-09 01:52:53'),
(4674, 4, 0x4b6f6d6d656e746172, 'Y', '2012-12-09 01:53:23'),
(4677, 4, 0x466f726d, 'Y', '2012-12-09 01:53:48'),
(2234, 4, 0x4e6575, 'Y', '2012-12-09 01:55:17'),
(2241, 4, 0xd66666656e746c696368, 'Y', '2012-12-09 01:55:17'),
(2242, 4, 0x53746172746661726265, 'Y', '2012-12-09 01:55:17'),
(2598, 4, 0x466f726d2073706569636865726e, 'Y', '2012-12-09 01:55:17'),
(2647, 4, 0x4c454552, 'Y', '2012-12-09 01:55:17'),
(2648, 4, 0x4c45455245532d4252455454, 'Y', '2012-12-09 01:55:17'),
(2649, 4, 0x564f4c4c45532d4252455454, 'Y', '2012-12-09 01:55:17'),
(3235, 4, 0x466f726d656e, 'Y', '2012-12-09 01:56:04'),
(4669, 4, 0x45727374656c6c65206e65756520466f726d20286d697420566f727363686175292c206461205b25735d206465722045727374656c6c65722064657220466f726d2025732069737421, 'Y', '2012-12-09 01:57:13'),
(4670, 4, 0x466f726d206765737065696368657274, 'Y', '2012-12-09 01:57:13'),
(4671, 4, 0x466f726d2d4944, 'Y', '2012-12-09 01:57:13'),
(4672, 4, 0x466f726d6e616d65, 'Y', '2012-12-09 01:57:13'),
(4673, 4, 0xd66666656e746c6963686520466f726d, 'Y', '2012-12-09 01:57:13'),
(4676, 4, 0x466f726d20e46e6465726e, 'Y', '2012-12-09 01:57:13'),
(4700, 4, 0x466f726d737069656c, 'Y', '2012-12-09 01:57:26'),
(4707, 4, 0x466f726d, 'Y', '2012-12-09 01:57:45'),
(4708, 4, 0x466f726d696e666f726d6174696f6e, 'Y', '2012-12-09 01:57:45'),
(4709, 4, 0x466f726d737069656c2d4944, 'Y', '2012-12-09 01:57:45'),
(4710, 4, 0x466f726d737069656c, 'Y', '2012-12-09 01:57:45'),
(4715, 4, 0x416c6c6520466f726d656e, 'Y', '2012-12-09 01:57:45'),
(4716, 4, 0x4d65696e6520466f726d656e, 'Y', '2012-12-09 01:59:06'),
(4717, 4, 0x4e65756520466f726d2028476f62616e2d456469746f7229, 'Y', '2012-12-09 01:59:06'),
(4728, 4, 0x4e6575657320466f726d737069656c, 'Y', '2012-12-09 01:59:06'),
(5055, 4, 0x537069656c65696e7374656c6c756e67656e20e46e6465726e3a20466f726d2c20526567656c2c2042726574746772f6df652c20566f72676162652c205a6569742c206765776572746574, 'Y', '2012-12-09 01:59:06'),
(5195, 4, 0x466f726d2d494420232573, 'Y', '2012-12-09 01:59:06'),
(5197, 4, 0x4b65696e6520466f726d656e, 'Y', '2012-12-09 01:59:06'),
(4678, 4, 0x496e20476f62616e2d456469746f72207a656967656e, 'Y', '2012-12-09 01:59:36'),
(3024, 36, 0x737a657262, 'Y', '2015-09-19 12:52:13');
INSERT INTO `Translations` (`Original_ID`, `Language_ID`, `Text`, `Translated`, `Updated`) VALUES
(3023, 36, 0x726f6dc3a16e, 'Y', '2015-09-19 12:52:13'),
(2596, 4, 0x45696e6761626562657265696368, 'Y', '2012-12-09 02:00:34'),
(2244, 4, 0x4661726265207765636873656c6e, 'Y', '2012-12-09 02:00:47'),
(2597, 4, 0x4175737269636874656e, 'Y', '2012-12-09 02:01:35'),
(2629, 4, 0x4e6575657320476f62616e, 'Y', '2012-12-09 02:01:50'),
(3148, 4, 0x4c65747a746520466f72656e6265697472e46765, 'Y', '2012-12-13 04:00:30'),
(4819, 4, 0x4d65696e65206c617566656e64656e20537069656c652066fc72205475726e69657220232573, 'Y', '2012-12-09 02:04:48'),
(4820, 4, 0x4d65696e65206c617566656e64656e20537069656c65206d697420537069656c6572205b25735d2066fc72205475726e69657220232573, 'Y', '2012-12-09 02:04:48'),
(5228, 4, 0x4d65696e65206c617566656e64656e204d532d5061727469656e, 'Y', '2012-12-13 03:51:01'),
(3147, 4, 0x4c6573657a65696368656e, 'Y', '2012-12-09 02:05:08'),
(3149, 4, 0x4765676e6572206f6e6c696e65, 'Y', '2012-12-09 02:05:25'),
(3150, 4, 0x537069656c6572206f6e6c696e65, 'Y', '2012-12-09 02:06:44'),
(4605, 4, 0x537069656c6572206f6e6c696e652077e46872656e6420257320576f6368656e, 'Y', '2012-12-09 02:06:44'),
(3151, 4, 0x55726c617562206265617262656974656e, 'Y', '2012-12-09 02:07:18'),
(3152, 4, 0x50726f66696c206265617262656974656e, 'Y', '2012-12-09 02:07:38'),
(3153, 4, 0x7a656967656e, 'Y', '2012-12-09 02:09:18'),
(3334, 4, 0x537069656c7374e4726b656e6b6f6e766572746572, 'Y', '2012-12-09 02:11:47'),
(3118, 4, 0x6b6f6e76657274696572656e, 'Y', '2012-12-09 02:12:28'),
(3440, 4, 0x5374617475732066fc7220253124733a2025322473, 'Y', '2012-12-13 03:50:12'),
(1132, 4, 0x57617320777572646520696e20646572206c65747a74656e2056657273696f6e206765e46e646572743f, 'Y', '2012-12-13 03:52:37'),
(1328, 4, 0x576965206b616e6e206d616e2064696520466f72656e20647572636873756368656e3f, 'Y', '2012-12-13 03:55:04'),
(2379, 4, 0x5468656d656e616e7a61686c, 'Y', '2012-12-13 03:57:23'),
(2380, 4, 0x5a65696c656e207a656967656e, 'Y', '2012-12-13 03:57:23'),
(2388, 4, 0x416c6c6520616e67657a65696774656e204e6163687269636874656e, 'Y', '2012-12-13 03:57:23'),
(2389, 4, 0x416c6c6520766572737465636b74656e204e6163687269636874656e, 'Y', '2012-12-13 03:57:23'),
(2390, 4, 0x4d65696e6520766572737465636b74656e204e6163687269636874656e, 'Y', '2012-12-13 03:57:23'),
(2391, 4, 0x4175662046726569676162652077617274656e6465204e6163687269636874656e, 'Y', '2012-12-13 03:58:48'),
(2393, 4, 0x5a6569676520766572737465636b7465204265697472e46765, 'Y', '2012-12-13 04:00:30'),
(4621, 4, 0x6e6575, 'Y', '2012-12-13 04:00:30'),
(4622, 4, 0x616e74776f7274656e, 'Y', '2012-12-13 04:00:30'),
(4623, 4, 0x766572737465636b656e, 'Y', '2012-12-13 04:00:30'),
(4624, 4, 0x7a656967656e, 'Y', '2012-12-13 04:00:42'),
(1939, 4, 0x416e6bfc6e646967756e67656e2d466c616773, 'Y', '2012-12-13 04:06:04'),
(1945, 4, 0x416b7475656c6c65204b617465676f726965, 'Y', '2012-12-13 04:06:04'),
(1946, 4, 0x416b7475656c6c657220537461747573, 'Y', '2012-12-13 04:06:04'),
(1947, 4, 0x416b7475656c6c65205a69656c617274, 'Y', '2012-12-13 04:06:04'),
(1950, 4, 0x6e75722066fc72205a69656c617274205b25735d2c2042656e75747a65722d4944202854657874206f646572205a61686c29, 'Y', '2012-12-13 04:06:04'),
(1965, 4, 0x4e6575652042656e75747a6572616e6bfc6e646967756e67656e, 'Y', '2012-12-13 04:09:35'),
(1967, 4, 0x446965205a69656c617274205b25735d2066fc722064696520416e6bfc6e646967756e6720697374206e75722065696e20496e697469616c7765727420756e64206d75df206765e46e646572742077657264656e21, 'Y', '2012-12-13 04:09:35'),
(1968, 4, 0x416e6bfc6e646967756e67736b617465676f726965205b25735d2062656ef6746967742065696e65205475726e6965722d494421, 'Y', '2012-12-13 04:09:35'),
(1969, 4, 0x446965205a69656c617274205b25735d2064657220416e6bfc6e646967756e672062656ef6746967742065696e65205475726e6965722d494421, 'Y', '2012-12-13 04:09:35'),
(1979, 4, 0x45727374656c6c65722064657220416e6bfc6e646967756e67206665686c74, 'Y', '2012-12-13 04:11:45'),
(1983, 4, 0x566572f66666656e746c696368756e672064657220416e6bfc6e646967756e67, 'Y', '2012-12-13 04:11:45'),
(1985, 4, 0x41626c6175662064657220416e6bfc6e646967756e67, 'Y', '2012-12-13 04:11:45'),
(2166, 4, 0x416e6bfc6e646967756e672065646974696572656e, 'Y', '2012-12-13 04:11:45'),
(2171, 4, 0x5a69656c617274, 'Y', '2012-12-13 04:13:20'),
(2176, 4, 0x4e7572206465722042657369747a6572206f646572204c656974657220646573205475726e69657273205b25735d206b616e6e205475726e6965726e657569676b656974656e20616e6bfc6e646967656e2e, 'Y', '2012-12-13 04:13:20'),
(2191, 4, 0x5a6569676520416e6bfc6e646967756e67736b617465676f7269656e, 'Y', '2012-12-13 04:15:11'),
(2824, 4, 0x53696520686162656e206e69636874206469652045726c6175626e69732c2064696520416e6bfc6e646967756e67207a7520e46e6465726e2e, 'Y', '2012-12-13 04:15:11'),
(2826, 4, 0x5369652064fc7266656e20646965736520416e6bfc6e646967756e67206e6963687420616e736568656e2e, 'Y', '2012-12-13 04:15:11'),
(2981, 4, 0x5b25735d20766f6e202573, 'Y', '2012-12-13 04:15:11'),
(3200, 4, 0x416e64657265, 'Y', '2012-12-13 04:16:02'),
(3421, 4, 0x556e67656c6573656e6520416e6bfc6e646967756e67656e2028416e7a65696765206d6974205465787429, 'Y', '2012-12-15 23:58:53'),
(3441, 4, 0x4e6163687269636874206465732054616765732028756e67656c6573656e6520416e6bfc6e646967756e67656e29, 'Y', '2012-12-15 23:58:53'),
(3442, 4, 0x416c6c65202825732920756e67656c6573656e6520416e6bfc6e646967756e67656e, 'Y', '2012-12-15 23:58:53'),
(2634, 4, 0x537069656c65726765626e6973, 'Y', '2012-12-24 13:28:06'),
(2637, 4, 0x546f746520537465696e65, 'Y', '2012-12-24 13:35:13'),
(2639, 4, 0x476566616e67656e65, 'Y', '2012-12-24 13:29:35'),
(2632, 4, 0x476562696574737ae4686c756e67, 'Y', '2012-12-24 13:30:35'),
(2636, 4, 0x476562696574, 'Y', '2012-12-24 13:30:35'),
(2641, 4, 0x50756e6b7465, 'Y', '2012-12-24 13:31:46'),
(2731, 4, 0x50756e6b7465, 'Y', '2012-12-24 13:31:46'),
(2342, 40, 0x4469666963756c64616465, 'Y', '2014-04-11 14:06:24'),
(2642, 4, 0x476573616d74, 'Y', '2012-12-24 13:34:01'),
(3661, 4, 0x537069656c65726765626e6973207365747a656e, 'Y', '2012-12-24 13:34:01'),
(2432, 4, 0x5374616e64617264766f7267616265, 'Y', '2012-12-25 14:16:37'),
(2429, 4, 0x426567696e6e, 'Y', '2012-12-25 21:02:57'),
(3640, 4, 0x5475726e696572626567696e6e, 'Y', '2012-12-25 21:02:57'),
(2456, 4, 0x5374617475736c69737465, 'Y', '2012-12-25 21:03:59'),
(2457, 4, 0x5072696f726974e474207365747a656e, 'Y', '2012-12-25 21:04:35'),
(4706, 4, 0x52fc636b737069656c, 'Y', '2012-12-25 21:09:23'),
(4853, 4, 0x46fc722065696e2052fc636b737069656c206d69742064656d73656c62656e20537069656c6572206dfc7373656e206469652025732077617274656e2e, 'Y', '2012-12-25 21:09:23'),
(2936, 4, 0x53696520686162656e2025312473206d697420566f726761626520253224732c204b6f6d69202533242e3166, 'Y', '2012-12-25 21:12:31'),
(2946, 4, 0x4b6f6d6920f66666656e746c6963682062696574656e, 'Y', '2012-12-25 21:24:39'),
(2947, 4, 0x4b6f6d692067656865696d2062696574656e, 'Y', '2012-12-25 21:24:39'),
(2428, 4, 0x4b6f6d692d417274, 'Y', '2012-12-25 21:18:14'),
(2880, 4, 0x4665686c656e646520466172627761686c, 'Y', '2012-12-25 21:19:18'),
(2882, 4, 0x556e67fc6c74696765204661726265, 'Y', '2012-12-25 21:19:18'),
(2876, 4, 0x4a65646573204b6f6d692d4765626f74206d75df2068f668657220616c732064617320766f72686572696765204765626f7420646573204765676e657273207365696e2e, 'Y', '2012-12-25 21:20:59'),
(2881, 4, 0x4665686c656e646573204b6f6d692d4765626f74, 'Y', '2012-12-25 21:22:41'),
(2883, 4, 0x446173204b6f6d69206d75df2065696e65205a61686c207365696e2e, 'Y', '2012-12-25 21:22:41'),
(2884, 4, 0x446173204b6f6d69206d75df2067616e7a7a61686c6967207365696e2c206461204a69676f2065726c61756274206973742e, 'Y', '2012-12-25 21:22:41'),
(2885, 4, 0x446173204b6f6d692064617266206e696368742067616e7a7a61686c6967207365696e2c206461204a69676f20766572626f74656e206973742e, 'Y', '2012-12-25 21:22:41'),
(2886, 4, 0x496872204b6f6d692d4765626f74206d75df206772f6df6572207365696e20616c7320646173204968726573204765676e6572732e, 'Y', '2012-12-25 21:22:41'),
(2945, 4, 0x476572656368746573204b6f6d69, 'Y', '2012-12-25 21:24:39'),
(4584, 4, 0x4b6f6d692d56657268616e646c756e673a205b25735d, 'Y', '2012-12-25 21:25:50'),
(2879, 4, 0x57e46872656e6420646572204b6f6d692d56657268616e646c756e67206ce475667420646965205568722e, 'Y', '2012-12-25 21:26:23'),
(2944, 4, 0x4b6f6d692d56657268616e646c756e67, 'Y', '2012-12-25 21:26:23'),
(3252, 4, 0x537069656c65696e6c6164756e67, 'Y', '2012-12-25 21:27:39'),
(2905, 4, 0x566f726c6167656e206d6974204e75747a65722d4944205b25735d, 'Y', '2012-12-25 21:29:06'),
(2402, 4, '', 'Y', '2012-12-26 02:15:42'),
(2426, 4, 0x67656cf673636874, 'Y', '2012-12-26 02:16:27'),
(2509, 4, 0x416c6c65, 'Y', '2012-12-26 02:17:13'),
(2519, 4, 0x537069656c6572, 'Y', '2012-12-26 02:17:13'),
(2523, 4, 0x4ee463687374657220537069656c6572, 'Y', '2012-12-26 02:17:13'),
(1960, 4, 0x556e67657370656963686572746520c46e646572756e67656e, 'Y', '2012-12-26 02:19:51'),
(3141, 4, 0xd66666656e746c2e, 'Y', '2012-12-26 02:19:51'),
(4682, 4, 0x4772f6df65206665686c74, 'Y', '2012-12-26 02:19:51'),
(4683, 4, 0x556e67fc6c74696765204772f6df65205b25735d, 'Y', '2012-12-26 02:19:51'),
(4711, 4, 0x4175746f72, 'Y', '2012-12-26 02:20:23'),
(4714, 4, 0x4765e46e64657274, 'Y', '2012-12-26 02:20:23'),
(3060, 4, '', 'Y', '2012-12-26 02:21:18'),
(3061, 4, '', 'Y', '2012-12-26 02:21:18'),
(2165, 4, 0x44696520666f6c67656e64656e204665686c65722073696e6420617566676574726574656e, 'Y', '2012-12-26 02:23:11'),
(5041, 40, 0x4efa6d65726f206de178696d6f206465207061727469636970616e74657320646f20746f726e65696f20666f6920616c63616ee761646f2e, 'Y', '2015-01-17 17:23:08'),
(2327, 4, '', 'Y', '2012-12-26 02:24:41'),
(2335, 4, 0x50756e6b7465, 'Y', '2012-12-26 02:24:41'),
(2450, 4, 0x547970, 'Y', '2012-12-26 02:24:41'),
(3333, 4, 0x5475726e696572, 'Y', '2012-12-26 02:25:35'),
(3388, 4, 0x4d65696e65205475726e69657265, 'Y', '2012-12-26 02:25:35'),
(3401, 4, 0x53746174757320e46e6465726e, 'Y', '2012-12-26 02:25:35'),
(3409, 4, 0x5a65696765206d65696e65204b6f6e74616b7465, 'Y', '2012-12-26 02:27:00'),
(3410, 4, 0x5a65696765205475726e6965727465696c6e65686d6572, 'Y', '2012-12-26 02:27:00'),
(3411, 4, 0x5475726e6965727465696c6e65686d6572, 'Y', '2012-12-26 02:27:00'),
(3472, 4, 0x4e75747a6572207072fc66656e, 'Y', '2012-12-26 02:27:00'),
(3473, 4, 0x284b6f6d6d656e746172206b75727a2068616c74656e2c206d61782e20323535205a65696368656e29, 'Y', '2012-12-26 02:27:00'),
(3515, 4, 0x5761726e756e67656e2069676e6f72696572656e, 'Y', '2012-12-26 02:28:18'),
(3566, 4, '', 'Y', '2012-12-26 02:28:44'),
(3567, 4, '', 'Y', '2012-12-26 02:28:44'),
(2365, 4, 0x416e66616e67, 'Y', '2012-12-26 02:33:01'),
(2366, 4, 0x566f726967657220566f7267e46e676572, 'Y', '2012-12-26 02:33:01'),
(2369, 4, 0x4ee463687374657220566f7267e46e676572, 'Y', '2012-12-26 02:33:01'),
(2370, 4, 0x456e6465, 'Y', '2012-12-26 02:33:01'),
(2372, 4, 0x4d6f64657269657465722042657472656666, 'Y', '2013-02-27 11:05:05'),
(2376, 4, 0x5a65696765204175746f72, 'Y', '2012-12-26 02:33:01'),
(2268, 4, 0x546974656c20646573204665617475726573206665686c74, 'Y', '2012-12-26 02:37:23'),
(2269, 4, 0x466561747572652067656cf67363687421, 'Y', '2012-12-26 02:37:23'),
(2270, 4, 0x466561747572652067657370656963686572742120257320466561747572652d50756e6b746520616e2057e4686c6572207a7572fc636b6765676562656e21, 'Y', '2012-12-26 02:37:23'),
(2271, 4, 0x4665617475726520676573706569636865727421, 'Y', '2012-12-26 02:37:23'),
(2272, 4, 0x46656174757265206cf6736368656e, 'Y', '2012-12-26 02:37:23'),
(2273, 4, 0x4665617475726520e46e6465726e, 'Y', '2012-12-26 02:37:23'),
(2274, 4, 0x4665617475726520657267e46e7a656e, 'Y', '2012-12-26 02:37:23'),
(2275, 4, 0x537461747573e46e646572756e67207a75205b25735d206973742066696e616c21, 'Y', '2012-12-26 02:37:23'),
(2279, 4, 0x4665617475726520656e746665726e656e, 'Y', '2012-12-26 02:38:27'),
(2280, 4, 0x286d61782e20323535205a65696368656e29, 'Y', '2012-12-26 02:38:27'),
(2281, 4, 0x466561747572652073706569636865726e, 'Y', '2012-12-26 02:38:27'),
(2286, 4, 0x466561747572652042656d65726b756e67656e, 'Y', '2012-12-26 02:38:27'),
(2292, 4, 0x44696573657320466561747572652065646974696572656e, 'Y', '2012-12-26 02:39:40'),
(2293, 4, 0x416c6c65, 'Y', '2012-12-26 02:39:40'),
(2294, 4, 0x4e6575, 'Y', '2012-12-26 02:39:40'),
(2297, 4, 0x496e20417262656974, 'Y', '2012-12-26 02:39:40'),
(2298, 4, 0x466572746967, 'Y', '2012-12-26 02:39:40'),
(2299, 4, '', 'Y', '2012-12-26 02:39:40'),
(2300, 4, 0x416267656c65686e74, 'Y', '2012-12-26 02:39:40'),
(2301, 4, 0x416c6c65, 'Y', '2012-12-26 02:39:40'),
(2305, 4, '', 'Y', '2012-12-26 02:39:59'),
(2312, 4, 0x2573203d207a6569676520537461747573202573202b202573202b202573, 'Y', '2012-12-26 02:41:18'),
(2316, 4, 0x50756e6b7465205b25735d206dfc7373656e206e756d657269736368207365696e, 'Y', '2012-12-26 02:41:18'),
(2317, 4, 0x50756e6b7465205b253124735d206dfc7373656e20696d2042657265696368205b253224732c253324735d206c696567656e, 'Y', '2012-12-26 02:41:18'),
(2320, 4, 0x416c6c65, 'Y', '2012-12-26 02:41:18'),
(2323, 4, '', 'Y', '2012-12-26 02:41:32'),
(2324, 4, '', 'Y', '2012-12-26 02:41:32'),
(2325, 4, '', 'Y', '2012-12-26 02:41:40'),
(2334, 4, 0x466561747572652065646974696572656e, 'Y', '2012-12-26 02:42:17'),
(2337, 4, 0x234a, 'Y', '2012-12-26 02:42:17'),
(2338, 4, 0x234e, 'Y', '2012-12-26 02:42:17'),
(2344, 4, 0x50756e6b7465, 'Y', '2012-12-26 02:42:33'),
(4608, 4, 0x416c6c65204665617475726573, 'Y', '2012-12-26 02:43:31'),
(4645, 4, 0x63612e20257320546167652041756677616e64, 'Y', '2012-12-26 02:47:02'),
(4646, 4, 0x63612e202573204d6f6e6174652041756677616e64, 'Y', '2012-12-26 02:47:02'),
(4647, 4, 0x6765736368e4747a7465722041756677616e64, 'Y', '2012-12-26 02:43:31'),
(2347, 4, 0x25732050756e6b7465, 'Y', '2012-12-26 02:44:39'),
(3158, 4, '', 'Y', '2012-12-26 02:44:39'),
(4648, 4, 0x756e62656b616e6e7465204772f6df65, 'Y', '2012-12-26 02:44:39'),
(4649, 4, 0x736568722067726fdf2c203e36204d6f6e6174652041756677616e64, 'Y', '2012-12-26 02:44:39'),
(4651, 4, 0x4d65696e652050756e6b7465, 'Y', '2012-12-26 02:44:39'),
(3344, 4, 0x4e616368726963687420766f6e202573, 'Y', '2012-12-26 13:56:30'),
(3345, 4, 0x4e6163687269636874, 'Y', '2012-12-26 13:56:30'),
(3347, 4, 0x546974656c, 'Y', '2012-12-26 13:56:30'),
(3350, 4, 0x4c65657265204c697374656e, 'Y', '2012-12-26 13:56:30'),
(3454, 4, '', 'Y', '2012-12-26 13:56:39'),
(3465, 4, 0x547970, 'Y', '2012-12-26 13:57:00'),
(4590, 4, 0x4c617465696e, 'Y', '2012-12-26 13:57:00'),
(5220, 4, 0x5a6569676520616c6c65204e6163687269636874656e, 'Y', '2012-12-26 13:57:00'),
(4585, 4, 0x257320fc62726967, 'Y', '2012-12-26 13:57:14'),
(3263, 4, 0x496e68616c74737665727a656963686e6973, 'Y', '2012-12-26 13:58:30'),
(3304, 4, 0x5a65696765204e75747a6572, 'Y', '2012-12-26 13:58:30'),
(3395, 11, 0x42656b696a6b20746f65726e6f6f69, 'Y', '2013-08-16 19:27:01'),
(3396, 4, 0x5475726e696572646972656b746f72656e, 'Y', '2012-12-26 14:01:39'),
(3397, 4, 0x5475726e696572646972656b746f722068696e7a7566fc67656e, 'Y', '2012-12-26 14:01:39'),
(3398, 4, 0x5475726e696572646972656b746f722065646974696572656e, 'Y', '2012-12-26 14:01:39'),
(3399, 4, 0x5475726e696572646972656b746f7220656e746665726e656e, 'Y', '2012-12-26 14:01:39'),
(3400, 4, 0x5475726e69657276657277616c74756e67, 'Y', '2012-12-26 14:01:39'),
(3402, 4, 0x5475726e6965722065646974696572656e, 'Y', '2012-12-26 14:01:39'),
(3404, 4, 0x5a65696765205475726e6965726e657569676b656974656e, 'Y', '2012-12-27 22:10:09'),
(3403, 4, 0x4e657569676b656974656e2068696e7a7566fc67656e, 'Y', '2012-12-27 22:10:09'),
(3405, 4, 0x5a65696765205475726e696572646972656b746f72656e, 'Y', '2012-12-26 14:02:28'),
(3408, 4, 0x4564697469657265205465696c6e65686d656872, 'Y', '2012-12-26 14:02:28'),
(3426, 4, 0x566f7267e46e67657276657273696f6e202573, 'Y', '2012-12-26 14:03:26'),
(3427, 4, 0x56657273696f6e202573, 'Y', '2012-12-26 14:03:26'),
(3434, 4, 0x416e7a61686c, 'Y', '2012-12-26 14:03:26'),
(3435, 4, 0x466c61676765, 'Y', '2012-12-26 14:03:26'),
(5210, 4, '', 'Y', '2012-12-26 14:04:17'),
(3491, 4, 0x5475726e6965726e657569676b656974656e20676573706569636865727421, 'Y', '2012-12-27 22:10:09'),
(3496, 4, 0x5475726e6965726e657569676b656974656e2073706569636865726e, 'Y', '2012-12-27 22:10:09'),
(3497, 4, 0x5475726e6965726e657569676b656974656e, 'Y', '2012-12-27 22:10:09'),
(4133, 4, 0x5475726e6965726e657569676b656974656e20232564, 'Y', '2012-12-27 22:10:09'),
(3844, 4, 0x5b25735d20766f6e202573, 'Y', '2012-12-27 22:11:11'),
(4430, 4, 0x5475726e6965726e657569676b656974656e20766f6e205b25735d, 'Y', '2012-12-27 22:11:11'),
(4445, 4, 0x5475726e6965726e657569676b656974656e, 'Y', '2012-12-27 22:11:11'),
(3385, 37, 0xd09cd0bed0b8d182d0b520d182d0b5d0bad183d189d0b820d0b8d0b3d180d0b8, 'Y', '2012-12-31 10:48:39'),
(3389, 37, 0xd09cd0bed0b8d182d0b520d182d0b5d0bad183d189d0b820d0bcd183d0bbd182d0b8d0bfd0bbd0b5d18ad18020d0b8d0b3d180d0b8, 'Y', '2012-12-31 10:48:39'),
(4819, 37, 0xd09cd0bed0b8d182d0b520d182d0b5d0bad183d189d0b820d0b8d0b3d180d0b820d0b220d182d183d180d0bdd0b8d18020232573, 'Y', '2012-12-31 10:48:39'),
(4820, 37, 0xd09cd0bed0b8d182d0b520d182d0b5d0bad183d189d0b820d0b8d0b3d180d0b820d18120d0bfd0bed182d180d0b5d0b1d0b8d182d0b5d0bb205b25735d20d0b220d182d183d180d0bdd0b8d18020232573, 'Y', '2012-12-31 10:48:39'),
(5228, 37, 0xd09cd0bed0b8d182d0b520d182d0b5d0bad183d189d0b820d09cd09f2dd0b8d0b3d180d0b8, 'Y', '2012-12-31 10:49:47'),
(3386, 37, 0xd09cd0bed0b8d182d0b520d0b7d0b0d0b2d18ad180d188d0b8d0bbd0b820d0b8d0b3d180d0b8, 'Y', '2012-12-31 10:53:44'),
(3390, 37, 0xd09cd0bed0b8d182d0b520d0b7d0b0d0b2d18ad180d188d0b8d0bbd0b820d0bcd183d0bbd182d0b8d0bfd0bbd0b5d18ad18020d0b8d0b3d180d0b8, 'Y', '2012-12-31 10:53:44'),
(3371, 37, 0xd098d0b3d180d0b82c20d0bad0bed0b8d182d0be20d0bdd0b0d0b1d0bbd18ed0b4d0b0d0b2d0b0d0bc, 'Y', '2012-12-31 10:55:07'),
(3373, 37, 0xd092d181d0b8d187d0bad0b820d182d0b5d0bad183d189d0b820d0b8d0b3d180d0b8, 'Y', '2012-12-31 10:56:19'),
(4206, 37, 0xd09fd0bed0bad0b0d0b6d0b820d0b2d181d0b8d187d0bad0b820d182d0b5d0bad183d189d0b820d182d183d180d0bdd0b8d180d0bdd0b820d0b8d0b3d180d0b8, 'Y', '2012-12-31 10:56:19'),
(3370, 37, 0xd092d181d0b8d187d0bad0b820d0bdd0b0d0b1d0bbd18ed0b4d0b0d0b2d0b0d0bdd0b820d0b8d0b3d180d0b8, 'Y', '2012-12-31 10:57:15'),
(1923, 37, 0xd09ad0b2d0bed182d0b0, 'Y', '2012-12-31 11:03:12'),
(1929, 37, 0xd092d0b0d188d0b0d182d0b020d0bad0b2d0bed182d0b020d0b7d0b020d0b4d0bed181d182d18ad0bf20d0bdd0b0d0bcd0b0d0bbd18fd0b2d0b02e3c62723ed098d0bcd0b0d182d0b520d0bed181d182d0b0d0bdd0b0d0bbd0b820257320d181d182d180d0b0d0bdd0b8d186d0b820d0bfd180d0b5d0b4d0b820d0b4d0b020d0b1d18ad0b4d0b5d182d0b520d0b1d0bbd0bed0bad0b8d180d0b0d0bdd0b820d0b7d0b0202573202121, 'Y', '2012-12-31 11:03:12'),
(1930, 37, 0xd092d0b0d188d0b0d182d0b020d0bad0b2d0bed182d0b020d0b7d0b020d0b4d0bed181d182d18ad0bf20d0b520d0bdd0b0d0b4d0b2d0b8d188d0b5d0bdd0b02e, 'Y', '2012-12-31 11:03:12'),
(2842, 37, 0xd0a0d0b5d0bdd0b3d0be, 'Y', '2012-12-31 11:06:00'),
(2843, 37, 0xd09dd0b5d181d182d0b0d0bd2e, 'Y', '2012-12-31 11:06:00'),
(2937, 37, 0xd093d0be, 'Y', '2012-12-31 11:06:00'),
(2938, 37, 0xd09ed182d0b1d0bed180d0bdd0be2dd093d0be, 'Y', '2012-12-31 11:06:00'),
(2939, 37, 0xd097d0b5d0bd2dd093d0be, 'Y', '2012-12-31 11:06:00'),
(3366, 37, 0xd0a2d0b8d0bfd098d0b3d180d0b0, 'Y', '2012-12-31 11:06:00'),
(2173, 37, 0xd09fd0bed0bad0b0d0b6d0b820d0b8d0b3d180d0b02dd0b8d0b3d180d0b0d187d0b8, 'Y', '2012-12-31 11:08:45'),
(2401, 37, 0xd09fd0bed0bad0b0d0b6d0b820d0b8d0bdd184d0bed180d0bcd0b0d186d0b8d18f20d0b7d0b020d0b8d0b3d180d0b0d182d0b0, 'Y', '2012-12-31 11:08:45'),
(2459, 37, 0xd09fd0bed0bad0b0d0b6d0b820d0b8d0b3d180d0b0, 'Y', '2012-12-31 11:08:45'),
(2463, 37, 0xd09fd0bed0bad0b0d0b6d0b820d0b8d0b3d180d0b02dd0bad0b0d0bbd0ba2e, 'Y', '2012-12-31 11:08:45'),
(3372, 37, 0xd092d181d0b8d187d0bad0b820d0b7d0b0d0b2d18ad180d188d0b8d0bbd0b820d0b8d0b3d180d0b8, 'Y', '2012-12-31 11:09:19'),
(1704, 37, 0xd09cd0bed0b3d0b020d0bbd0b820d0b0d0b2d182d0bed0bcd0b0d182d0b8d187d0bdd0be20d0b4d0b020d0bed182d0bad0b0d0b7d0b2d0b0d0bc20d0bfd0bed0bad0b0d0bdd0b820d0b7d0b020d0b8d0b3d180d0b020d0bed18220d0bed0bfd180d0b5d0b4d0b5d0bbd0b5d0bdd0b820d0bfd0bed182d180d0b5d0b1d0b8d182d0b5d0bbd0b83f, 'Y', '2012-12-31 11:14:17'),
(3252, 37, 0xd09fd0bed0bad0b0d0bdd0b020d0b7d0b020d0b8d0b3d180d0b0, 'Y', '2012-12-31 11:14:17'),
(3253, 37, 0xd09ed181d0bfd0bed180d0b2d0b0d0bdd0b520d0bdd0b020d09fd0bed0bad0b0d0bdd0b0d182d0b020d0b7d0b020d0b8d0b3d180d0b0, 'Y', '2012-12-31 11:17:41'),
(727, 37, 0xd09dd0b0d181d182d180d0bed0b9d0bad0b8d182d0b520d0bdd0b020d182d0b0d0b7d0b820d0bfd0bed0bad0b0d0bdd0b020d0b7d0b020d0b8d0b3d180d0b020d0b1d18fd185d0b0202573d0bed181d0bfd0bed180d0b5d0bdd0b82573, 'Y', '2012-12-31 11:15:49'),
(332, 37, 0xd09ed181d0bfd0bed180d0b820d0bdd0b0d181d182d180d0bed0b9d0bad0b8d182d0b5, 'Y', '2012-12-31 11:17:41'),
(2632, 37, 0xd0a2d0b5d180d0b8d182d0bed180d0b8d0b0d0bbd0bdd0be20d182d0bed187d0bad183d0b2d0b0d0bdd0b5, 'Y', '2012-12-31 11:22:17'),
(2633, 37, 0xd0a2d0bed187d0bad183d0b2d0b0d0bdd0b520d0bfd0be20d0bfd0bbd0bed189, 'Y', '2012-12-31 11:22:17'),
(2634, 37, 0xd098d0bdd184d0bed180d0bcd0b0d186d0b8d18f20d0b7d0b020d182d0bed187d0bad183d0b2d0b0d0bdd0b5d182d0be, 'Y', '2012-12-31 11:22:17'),
(2397, 37, 0xd0a3d0b1d0b5d0b4d0b5d182d0b520d181d0b52c20d187d0b520d0b2d181d0b8d187d0bad0b820d0b3d180d0b0d0bdd0b8d186d0b820d0bdd0b020d0b2d0b0d188d0b0d182d0b020d182d0b5d180d0b8d182d0bed180d0b8d18f20d181d0b020d0b7d0b0d182d0b2d0bed180d0b5d0bdd0b820d0bfd180d0b5d0b4d0b820d0b4d0b020d0bfd180d0b8d0bad0bbd18ed187d0b8d182d0b520d0b8d0b3d180d0b0d182d0b021, 'Y', '2012-12-31 11:25:25'),
(2636, 37, 0xd0a2d0b5d180d0b8d182d0bed180d0b8d18f, 'Y', '2012-12-31 11:25:25'),
(2637, 37, 0xd09cd18ad180d182d0b2d0b820d0bad0b0d0bcd18ad0bdd0b8, 'Y', '2012-12-31 11:26:28'),
(2639, 37, 0xd09fd0bbd0b5d0bdd0bdd0b8d186d0b8, 'Y', '2012-12-31 11:27:15'),
(2443, 37, 0xd094d0bed0bfd18ad0bbd0bdd0b8d182d0b5d0bbd0bdd0be20d0b2d180d0b5d0bcd0b5, 'Y', '2012-12-31 11:28:03'),
(2640, 37, 0xd094d0bed0bfd18ad0bbd0bdd0b5d0bdd0b8d0b5, 'Y', '2012-12-31 11:28:03'),
(2641, 37, 0xd0a2d0bed187d0bad0b8, 'Y', '2012-12-31 11:28:45'),
(2635, 37, 0xd094d0b0d0bcd0b5, 'Y', '2012-12-31 11:29:18'),
(2638, 37, 0xd09ad0b0d0bcd18ad0bdd0b8, 'Y', '2012-12-31 11:29:18'),
(2642, 37, 0xd0a0d0b5d0b7d183d0bbd182d0b0d182, 'Y', '2012-12-31 11:29:18'),
(3156, 37, 0xd09dd0bed0b2d0b020d0b8d0b3d180d0b0, 'Y', '2012-12-31 12:05:31'),
(2524, 37, 0xd094d0bed0b1d0b0d0b2d0b820d0bdd0bed0b2d0b020d0b8d0b3d180d0b020d0b220d187d0b0d0bad0b0d0bbd0bdd18fd182d0b0, 'Y', '2012-12-31 12:07:37'),
(3265, 37, 0xd094d0bed0b1d0b0d0b2d0b820d0bdd0bed0b2d0b020d0b8d0b3d180d0b020d0b220d187d0b0d0bad0b0d0bbd0bdd18fd182d0b0, 'Y', '2012-12-31 12:07:37'),
(2441, 37, 0xd092d180d0b5d0bcd0b5d0b2d0b020d0bad0bed0bdd182d180d0bed0bbd0b020d0b820d09ed181d182d0b0d0b2d0b0d189d0be20d0b2d180d0b5d0bcd0b5, 'Y', '2012-12-31 12:08:36'),
(2507, 37, 0xd092d180d0b5d0bcd0b5d0b2d0b020d0bad0bed0bdd182d180d0bed0bbd0b0, 'Y', '2012-12-31 12:08:36'),
(3068, 37, 0xd09ed0b3d180d0b0d0bdd0b8d187d0b5d0bdd0b8d18f, 'Y', '2012-12-31 12:10:45'),
(3586, 37, 0xd097d0b020d0b4d0b020d0b8d0b7d0bad0bbd18ed187d0b8d182d0b520d0bed0b3d180d0b0d0bdd0b8d187d0b5d0bdd0b8d18fd182d0b02c20d0bcd0bed0b6d0b520d0b4d0b020d0b2d18ad0b2d0b5d0b4d0b5d182d0b520302dd0b5d0b2d0b020d181d182d0bed0b9d0bdd0bed181d18220d0b22028d0bdd18fd0bad0bed0b92920d0bfd0bed0bbd0b5d182d0b02e, 'Y', '2012-12-31 12:10:45'),
(3251, 37, 0xd097d0b0d0bfd0b0d0b7d0b820d188d0b0d0b1d0bbd0bed0bd, 'Y', '2012-12-31 12:11:53'),
(2905, 37, 0xd0a8d0b0d0b1d0bbd0bed0bdd0b820d18120d0bfd0bed182d180d0b5d0b1d0b8d182d0b5d0bb205b25735d, 'Y', '2012-12-31 12:15:01'),
(2906, 37, 0xd0a8d0b0d0b1d0bbd0bed0bdd0b8, 'Y', '2012-12-31 12:15:01'),
(3450, 37, 0xd0a8d0b0d0b1d0bbd0bed0bdd0b82028d0b8d0b7d0bfd0bed0bbd0b7d0b2d0b0d0bdd0b820257320d0bed18220d0bcd0b0d0bad1812e20257329, 'Y', '2012-12-31 12:15:01'),
(3461, 37, 0xd09cd0b0d0bad181d0b8d0bcd0b0d0bbd0bdd0b8d18fd18220d0bbd0b8d0bcd0b8d18220d0bdd0b020d188d0b0d0b1d0bbd0bed0bdd0b8d182d0b520d0b520d0b4d0bed181d182d0b8d0b3d0bdd0b0d1822e20d0a2d180d18fd0b1d0b2d0b020d0b4d0b020d0b7d0b0d0bcd0b5d0bdd0b8d182d0b520d181d18ad189d0b5d181d182d0b2d183d0b2d0b0d18920d0b7d0b0d0bfd0b8d18121, 'Y', '2012-12-31 12:15:01'),
(5299, 37, 0xd09ad0b0d0bad0b2d0be20d181d0b020d188d0b0d0b1d0bbd0bed0bdd0b8d182d0b53f, 'Y', '2012-12-31 12:15:01'),
(1826, 37, 0xd09ed0bfd180d0b5d181d0bdd0b8, 'Y', '2012-12-31 12:17:08'),
(1890, 37, 0xd0a5d0b5d0bdd0b4d0b8d0bad0b0d0bf, 'Y', '2012-12-31 12:58:28'),
(2432, 37, 0xd0a1d182d0b0d0bdd0b4d0b0d180d182d0b5d0bd20d185d0b5d0bdd0b4d0b8d0bad0b0d0bf, 'Y', '2012-12-31 12:58:28'),
(2499, 37, 0xd09fd180d0bed0bcd0b5d0bdd0b820d185d0b5d0bdd0b4d0b8d0bad0b0d0bf, 'Y', '2012-12-31 12:58:28'),
(2500, 37, 0xd09fd180d0bed0bcd0b5d0bdd0b820d186d0b2d18fd182202620d185d0b5d0bdd0b4d0b8d0bad0b0d0bf, 'Y', '2012-12-31 12:58:28'),
(2506, 37, 0xd0a5d0b5d0bdd0b4d0b8d0bad0b0d0bf20d0bdd0b0d181d182d180d0bed0b9d0bad0b8, 'Y', '2012-12-31 12:58:28'),
(2895, 37, 0xd0a5d0b5d0bdd0b4d0b8d0bad0b0d0bf20d0bad0b0d0bcd18ad0bdd0b820d180d0b0d0b7d0bfd0bed0bbd0bed0b6d0b5d0bdd0b8d0b5, 'Y', '2012-12-31 12:59:44'),
(3058, 37, 0xd0a5d0b5d0bdd0b4d0b8d0bad0b0d0bf20d0bad0b0d0bcd18ad0bdd0b8, 'Y', '2012-12-31 12:59:44'),
(3056, 37, 0xd0a0d18ad187d0bdd0b820d0bdd0b0d181d182d180d0bed0b9d0bad0b82028d180d0b0d0b2d0bdd0b020d0b8d0bbd0b820d185d0b5d0bdd0b4d0b8d0bad0b0d0bf20d0b8d0b3d180d0b029, 'Y', '2012-12-31 13:00:51'),
(3089, 37, 0xd0a0d18ad187d0bdd0b820d0bdd0b0d181d182d180d0bed0b9d0bad0b8, 'Y', '2012-12-31 13:00:51'),
(2529, 37, 0xd09fd0bed0bad0b0d0bdd0b820d0bdd0b020d0bcd183d0bbd182d0b8d0bfd0bbd0b5d18ad18020d0b8d0b3d180d0b0, 'Y', '2012-12-31 13:04:44'),
(2536, 37, 0xd092d0b8d0b520d0b1d18fd185d182d0b520d0bfd0bed0bad0b0d0bdd0b5d0bdd0b820d0bdd0b020d182d0b0d0b7d0b820d0bcd183d0bbd182d0b8d0bfd0bbd0b5d18ad18020d0b8d0b3d180d0b0, 'Y', '2012-12-31 13:04:44'),
(2550, 37, 0xd09fd0bed182d180d0b5d0b1d0b8d182d0b5d0bb20257320d0bfd180d0b8d0b520d0b2d0b0d188d0b0d182d0b020d0bfd0bed0bad0b0d0bdd0b020d0b7d0b020d0bcd183d0bbd182d0b8d0bfd0bbd0b5d18ad18020d0b8d0b3d180d0b02025732e, 'Y', '2012-12-31 13:04:44'),
(2552, 37, 0xd09fd0bed182d180d0b5d0b1d0b8d182d0b5d0bb20257320d0bed182d0bad0b0d0b7d0b020d0b2d0b0d188d0b0d182d0b020d0bfd0bed0bad0b0d0bdd0b020d0b7d0b020d0bcd183d0bbd182d0b8d0bfd0bbd0b5d18ad18020d0b8d0b3d180d0b02025732e, 'Y', '2012-12-31 13:04:44'),
(3093, 37, 0xd0a0d0b5d0b9d182d0b8d0bdd0b320d0bed0b3d180d0b0d0bdd0b8d187d0b5d0bdd0b8d18f, 'Y', '2012-12-31 13:07:15'),
(4535, 37, 0xd09ed0b3d180d0b0d0bdd0b8d187d0b5d0bdd0b8d18f, 'Y', '2012-12-31 13:07:39'),
(1509, 37, 0xd09fd0bed181d0bed0bad0b0, 'Y', '2012-12-31 13:10:23'),
(2326, 37, 0xd093d0bbd0b0d181204944, 'Y', '2012-12-31 13:10:23'),
(2327, 37, 0xd0a1d182d0b0d182d183d181, 'Y', '2012-12-31 13:10:23'),
(2330, 37, 0xd09fd0bed181d0bbd0b5d0b4d0bdd0bed0b3d0bbd0b0d181d183d0b2d0b0d0bd, 'Y', '2012-12-31 13:10:23'),
(2335, 37, 0xd0a2d0bed187d0bad0b8, 'Y', '2012-12-31 13:10:23'),
(2336, 37, 0x23d093d0bbd0b0d181d0bed0b2d0b5, 'Y', '2012-12-31 13:10:23'),
(4534, 37, 0xd09dd0b0d181d182d180d0bed0b9d0bad0b8, 'Y', '2012-12-31 13:11:14'),
(1378, 11, 0x436f6e74616374656e, 'Y', '2013-01-11 22:06:47'),
(1553, 11, 0x546f6f6e20636f6e74616374656e, 'Y', '2013-01-11 15:41:04'),
(1409, 11, 0x5a6f656b20696e2062657269636874656e, 'Y', '2013-01-11 15:44:35'),
(2411, 11, 0x5a657420616e6e756c6572656e, 'Y', '2016-07-27 18:55:34'),
(3440, 11, 0x53746174757320766f6f7220253124733a2025322473, 'Y', '2016-07-28 13:49:10'),
(3459, 11, 0x536a61626c6f6f6e206865656674206765656e206e61616d2123746d706c, 'Y', '2013-01-11 16:45:44'),
(3460, 11, 0x536a61626c6f6f6e6e61616d206265737461617420616c2123746d706c, 'Y', '2013-01-11 16:45:44'),
(3467, 11, 0x42656e206a65207a656b65722064697420736a61626c6f6f6e2074652076657277696a646572656e3f23746d706c, 'Y', '2013-01-11 16:47:18'),
(5299, 11, 0x576174207a696a6e20736a61626c6f6e656e3f, 'Y', '2013-01-11 16:47:18'),
(1396, 11, 0x4b6c696b20224765656620646f6f7222206f6d207465206265766573746967656e, 'Y', '2016-07-27 18:54:20'),
(1617, 11, 0x416c6c65206c616e64656e, 'Y', '2013-01-11 20:47:15'),
(2675, 11, '', 'Y', '2013-01-11 17:11:38'),
(2687, 11, 0x4575726f7065736520556e6965, 'Y', '2013-01-11 17:12:42'),
(2704, 11, 0x4e656465726c616e64736520416e74696c6c656e, 'Y', '2013-01-11 17:14:43'),
(2705, 11, 0x4e696575772d43616c65646f6e69eb, 'Y', '2013-01-11 17:15:37'),
(2709, 11, 0x50616c65737465696e736520676562696564656e, 'Y', '2013-01-11 17:16:16'),
(2836, 11, 0x566174696361616e73746164, 'Y', '2013-01-11 20:48:37'),
(4608, 11, 0x416c6c6520766f6f727374656c6c656e, 'Y', '2013-01-11 21:29:34'),
(2287, 11, 0x5374656d206f7020766f6f727374656c6c656e, 'Y', '2013-01-11 21:31:42'),
(2288, 11, 0x4d696a6e207374656d6d656e, 'Y', '2013-01-11 21:32:32'),
(2289, 11, 0x526573756c746161742076616e20616c6c65207374656d6d656e, 'Y', '2013-01-11 21:35:32'),
(2339, 11, 0x5374656d206f706765736c6167656e21, 'Y', '2013-01-11 21:32:32'),
(2344, 11, 0x70756e74656e, 'Y', '2013-01-11 21:33:11'),
(4609, 11, 0x4d696a6e207374656d6d656e, 'Y', '2013-01-11 21:34:34'),
(4645, 11, 0x6f6e672e2025732064616728656e29207765726b, 'Y', '2013-01-11 21:34:34'),
(4646, 11, 0x6f6e672e202573206d61616e6428656e29207765726b, 'Y', '2013-01-11 21:34:34'),
(5278, 11, 0x566f6f727374656c6c656e2076616e75697420646520447261676f6e2067656d65656e7363686170, 'Y', '2013-01-11 21:34:34'),
(2347, 11, 0x25732070756e74656e, 'Y', '2013-01-11 21:36:10'),
(4647, 11, 0x676573636861747465207765726b6c617374, 'Y', '2013-01-11 21:36:42'),
(1654, 11, 0x4f6d73636872696a76696e67, 'Y', '2013-01-11 21:38:47'),
(1943, 11, 0x466f7574, 'Y', '2013-01-11 21:38:47'),
(2268, 11, 0x766f6f727374656c206265766174206765656e2074656b7374, 'Y', '2013-01-11 21:38:47'),
(2269, 11, 0x566f6f727374656c2076657277696a6465726421, 'Y', '2013-01-11 21:38:47'),
(2270, 11, 0x566f6f727374656c206f706765736c6167656e212025732070756e74656e2074657275676765676576656e2061616e206465207374656d6d657273, 'Y', '2013-01-11 21:38:47'),
(2271, 11, 0x566f6f727374656c206f706765736c6167656e21, 'Y', '2013-01-11 21:38:47'),
(2278, 11, 0x566f6f727374656c206865656674206e6f67207374656d6d656e2c206b616e206e6965742076657277696a6465726420776f7264656e21, 'Y', '2013-01-11 21:40:03'),
(2279, 11, 0x56657277696a64657220766f6f727374656c, 'Y', '2013-01-11 21:40:03'),
(2280, 11, 0x286d6178696d756d20323535206b6172616b7465727329, 'Y', '2013-01-11 21:40:03'),
(2281, 11, 0x42657761617220766f6f727374656c, 'Y', '2013-01-11 21:40:03'),
(2290, 11, 0x4e6965757720766f6f727374656c, 'Y', '2013-01-11 21:40:03'),
(2296, 11, '', 'Y', '2013-01-11 21:41:28'),
(2297, 11, 0x42657a6967, 'Y', '2013-01-11 21:41:28'),
(2298, 11, 0x4265736368696b62616172, 'Y', '2013-01-11 21:41:28'),
(2299, 11, '', 'Y', '2013-01-11 21:41:28'),
(2300, 11, 0x566572776f7270656e, 'Y', '2013-01-11 21:41:28'),
(2302, 11, 0x42657065726b7465207374656d6d696e67, 'Y', '2013-01-11 21:41:28'),
(2305, 11, 0x546f657374616e6420766f6f727374656c, 'Y', '2013-01-11 21:41:28'),
(2316, 11, 0x70756e74656e205b25735d206d6f6574656e20676574616c6c656e207a696a6e, 'Y', '2013-01-11 21:43:42'),
(2317, 11, 0x706f696e7473205b253124735d206d6f6574656e2062696e6e656e205b253224732c253324735d206c696767656e, 'Y', '2013-01-11 21:43:42'),
(2319, 11, 0x4a65206265736368696b74206f7665722025732070756e74656e206f6d207465207374656d6d656e2e, 'Y', '2013-01-11 21:43:42'),
(2320, 11, 0x416c6c65, 'Y', '2013-01-11 21:43:42'),
(2321, 11, 0x4e6965742067657374656d64, 'Y', '2013-01-11 21:43:42'),
(2322, 11, 0x47657374656d64, 'Y', '2013-01-11 21:43:42'),
(2331, 11, 0x566f6f727374656c6c656e20776161726f70206b616e2067657374656d6420776f7264656e, 'Y', '2013-01-11 21:44:47'),
(2332, 11, 0x5374656d, 'Y', '2013-01-11 21:44:47'),
(2333, 11, 0x42656b696a6b207374656d, 'Y', '2013-01-11 21:44:47'),
(2346, 11, 0x426577616172207374656d, 'Y', '2013-01-11 21:45:54'),
(2348, 11, 0x257320286765656e207374656d29, 'Y', '2013-01-11 21:45:54'),
(4649, 11, 0x7a6565722067726f6f742c203e36206d61616e64656e207765726b, 'Y', '2013-01-11 21:45:54'),
(4651, 11, 0x4d696a6e2070756e74656e, 'Y', '2013-01-11 21:45:54'),
(2345, 11, 0x303d6e6575747261616c2c203c303d6e69657420676577656e73742c203e303d676577656e7374, 'Y', '2013-01-11 21:49:33'),
(1471, 11, 0x4e6965757720636f6e74616374, 'Y', '2013-01-11 22:05:27'),
(1476, 11, 0x436f6e746163742062657765726b656e, 'Y', '2013-01-11 22:08:08'),
(1477, 11, 0x436f6e7461637420746f65766f6567656e, 'Y', '2013-01-11 22:08:08'),
(1540, 11, 0x4b616e206d657a656c66206e69657420746f65766f6567656e20616c7320636f6e74616374, 'Y', '2016-07-29 14:29:03'),
(1542, 11, 0x436f6e746163742076657277696a6465726421, 'Y', '2013-01-11 22:08:08'),
(1469, 11, 0x53747575722062657269636874, 'Y', '2013-01-11 22:08:40'),
(1470, 11, 0x4e6f64696720636f6e7461637420756974, 'Y', '2013-01-11 22:08:40'),
(1543, 11, 0x436f6e74616374206f706765736c6167656e21, 'Y', '2013-01-11 22:09:16'),
(1546, 11, 0x436f6e74726f6c656572, 'Y', '2013-01-11 22:09:16'),
(1547, 11, 0x56657277696a64657220636f6e74616374, 'Y', '2013-01-11 22:09:16'),
(1545, 11, 0x42657765726b20636f6e74616374, 'Y', '2013-01-11 22:09:34'),
(1562, 11, 0x436f6e74616374656e, 'Y', '2013-01-11 22:10:05'),
(3409, 11, 0x546f6f6e206d696a6e20636f6e74616374656e, 'Y', '2013-01-11 22:10:45'),
(5316, 11, 0x436f6e74616374656e206f7020447261676f6e, 'Y', '2013-01-11 22:11:07'),
(1552, 11, 0x42657761617220636f6e74616374, 'Y', '2013-01-11 22:13:38'),
(1466, 11, 0x42657765726b, 'Y', '2013-01-11 22:14:05'),
(1400, 11, 0x746f656765766f6567642061616e20686f6f666474696a642076616e206a6520746567656e7374616e646572, 'Y', '2016-07-27 19:48:06'),
(1429, 11, 0x546567656e7374616e646572, 'Y', '2013-01-11 22:16:05'),
(1464, 11, 0x546f6f6e20746567656e7374616e64657273, 'Y', '2013-01-11 22:17:01'),
(1467, 11, 0x546f6f6e206d696a6e20746567656e7374616e64657273, 'Y', '2013-01-11 22:17:01'),
(1059, 7, 0x5a6f6272617a6974, 'Y', '2016-07-20 14:57:35'),
(1572, 11, 0x546f6f6e206d696a20616c7320746567656e7374616e646572, 'Y', '2013-01-11 22:17:01'),
(1573, 11, 0x546f6f6e20616c73206d696a6e20746567656e7374616e646572, 'Y', '2013-01-11 22:17:01'),
(1574, 11, 0x57697373656c20726f6c6c656e, 'Y', '2013-01-11 22:17:01'),
(3299, 11, 0x50617274696a656e206d65742064657a6520746567656e7374616e646572, 'Y', '2013-01-11 22:18:30'),
(3301, 11, 0x4c696e6b206e61617220616667656c6f70656e2070617274696a656e206d657420746567656e7374616e646572205b25735d, 'Y', '2016-07-27 17:26:07'),
(3302, 11, 0x4c696e6b206e616172206c6f70656e64652070617274696a656e206d657420746567656e7374616e646572205b25735d, 'Y', '2016-07-27 17:26:07'),
(3303, 11, 0x546567656e7374616e646572732076616e207370656c657220253124733a2025322473, 'Y', '2013-01-11 22:18:30'),
(3369, 11, 0x526573746572656e64652074696a6420766f6f7220746567656e7374616e646572, 'Y', '2013-01-11 22:19:45'),
(3798, 11, 0x536c656368747320e9e96e2070617274696a20746f656765737461616e2070657220746567656e7374616e6465722e, 'Y', '2013-01-11 22:19:45'),
(4929, 11, 0x4765627275696b657220656e20746567656e7374616e6465727320696e67656c6963687421, 'Y', '2013-01-11 22:19:45'),
(2416, 11, 0x526567656c73, 'Y', '2016-07-27 19:48:37'),
(2914, 11, 0x4a6170616e7365, 'Y', '2016-07-27 19:34:00'),
(2915, 11, 0x4368696e657365, 'Y', '2016-07-27 19:34:00'),
(3367, 11, 0x526567656c73, 'Y', '2013-01-11 22:25:47'),
(2746, 11, 0x536f7272792c206f6e62656b656e6465207370656c726567656c732e, 'Y', '2013-01-11 22:26:20'),
(1398, 11, 0x546f6f6e20746f657363686f7577657273, 'Y', '2013-01-11 22:30:52'),
(1492, 11, 0x546f657363686f75776572732076616e2070617274696a202573, 'Y', '2013-01-11 22:30:52'),
(3361, 11, 0x23546f657363686f7577657273, 'Y', '2013-01-11 22:30:52'),
(3370, 11, 0x416c6c652070617274696a656e206d657420746f657363686f7577657273, 'Y', '2013-08-19 20:41:55'),
(3371, 11, 0x50617274696a656e2064696520696b2062656b696a6b, 'Y', '2016-07-27 17:26:07'),
(5412, 4, 0x53474620616e68e46e67656e, 'Y', '2013-01-13 19:35:01'),
(1484, 11, 0x4c6f70656e64, 'Y', '2013-01-16 00:17:40'),
(1565, 11, 0x4c6f70656e64652070617274696a656e, 'Y', '2013-01-16 00:17:40'),
(3373, 11, 0x416c6c65206c6f70656e64652070617274696a656e, 'Y', '2013-01-16 00:18:20'),
(3385, 11, 0x4d696a6e206c6f70656e64652070617274696a656e, 'Y', '2013-01-16 00:18:20'),
(2732, 11, 0x416667656c6f70656e, 'Y', '2013-01-16 00:21:27'),
(3372, 11, 0x416c6c6520616667656c6f70656e2070617274696a656e, 'Y', '2013-01-16 00:21:27'),
(3386, 11, 0x4d696a6e20616667656c6f70656e2070617274696a656e, 'Y', '2013-01-16 00:21:52'),
(3699, 11, 0x416667656c6f70656e, 'Y', '2013-01-16 00:21:52'),
(1485, 11, 0x416667656c6f70656e, 'Y', '2013-01-16 00:22:36'),
(1566, 11, 0x416667656c6f70656e2070617274696a656e, 'Y', '2013-01-16 00:22:36'),
(1132, 6, 0x5175e920686179206465206e7565766f20656e206c6120fa6c74696d612061637475616c697a616369f36e3f, 'Y', '2013-01-26 14:16:03'),
(2397, 11, 0x5665727a656b6572206a6520657276616e2064617420616c6c6520676562696564656e207a696a6e206765736c6f74656e20766f6f72646174206a652064652070617274696a2065696e6469677421, 'Y', '2013-01-30 16:15:38'),
(1493, 5, 0x546f7574, 'Y', '2013-02-04 16:52:57'),
(1513, 5, 0x53756a6574, 'Y', '2013-02-04 16:52:57'),
(1569, 5, 0x4465726e69e87265206d6f64696669636174696f6e, 'Y', '2013-02-04 16:52:57'),
(1933, 5, 0x496c206e27792061207269656e20e0207361757665676172646572, 'Y', '2013-02-04 16:52:57'),
(1602, 5, 0x456e736569676e616e74, 'Y', '2013-02-04 16:59:10'),
(1639, 5, 0x53656c656374696f6e6e657220756e206f7520706c7573696575727320e96ce96d656e7473206f7520617563756e, 'Y', '2013-02-04 17:00:31'),
(1934, 5, 0x42756c6c6574696e20736175766567617264e9, 'Y', '2013-02-04 17:05:22'),
(1935, 5, 0x42756c6c6574696e2041646d696e, 'Y', '2013-02-04 17:05:22'),
(1936, 5, 0x4e6f2e2064752062756c6c6574696e, 'Y', '2013-02-04 17:05:22'),
(1937, 5, 0x4e6f7576656175206e756c6c6574696e, 'Y', '2013-02-04 17:05:22'),
(1938, 5, 0x417574657572, 'Y', '2013-02-04 17:05:22'),
(1939, 5, 0x4472617065617578, 'Y', '2013-02-04 17:05:22'),
(1943, 5, 0x457272657572, 'Y', '2013-02-04 17:05:22'),
(1944, 5, 0x496c2079206120756e652065727265757220737572206c6120706167652e, 'Y', '2013-02-04 17:05:22'),
(1942, 5, 0x4e6f74652061646d696e, 'Y', '2013-02-04 17:06:15'),
(1945, 5, 0x436174e9676f7269652061637475656c6c65, 'Y', '2013-02-04 17:06:15'),
(1946, 5, 0x5374617475742061637475656c, 'Y', '2013-02-04 17:06:15'),
(1947, 5, 0x4369626c65, 'Y', '2013-02-04 17:06:15'),
(1955, 5, 0x44617465206465207075626c69636174696f6e, 'Y', '2013-02-04 17:06:15'),
(1508, 5, 0x547970652064652068616e6469636170, 'Y', '2013-03-13 08:56:19'),
(1554, 5, 0x416374696f6e73, 'Y', '2013-02-04 17:07:06'),
(1557, 5, 0x4e6f746573, 'Y', '2013-02-04 17:07:06'),
(1842, 5, 0x506f6c697469717565, 'Y', '2013-02-04 17:08:19'),
(1871, 5, 0x466169726520756e20646f6e, 'Y', '2013-02-04 17:08:19'),
(1872, 5, 0x536f7574656e697220444753206176656320756e20646f6e2e, 'Y', '2013-02-04 17:08:19'),
(1873, 5, 0x446f6e2e, 'Y', '2013-02-04 17:08:19'),
(1875, 5, 0x446f6e732e, 'Y', '2013-02-04 17:08:19'),
(2765, 25, 0x4e6520706172652072c483752c20747265627569652073c48320746520617574656e7469666963692070656e74727520612066616365206163657374206c756372752e, 'Y', '2013-02-07 10:43:32'),
(2766, 25, 0x4361757a6520706f736962696c653a, 'Y', '2013-02-07 10:53:39'),
(2767, 25, 0x4e7520617665c5a36920756e203c6120687265663d222531247372656769737465722e706870223e636f6e743c2f613e2c2073617520c3ae6e63c483206e7520762d61c5a369203c6120687265663d2225312473696e6465782e706870223e617574656e746966696361743c2f613e2e, 'Y', '2013-02-07 10:48:34'),
(2768, 25, 0x436f6f6b69652d7572696c6520617520657870697261742028c3ae6e206d6f64206e6f726d616c2c206c756e6172292e, 'Y', '2013-02-07 10:52:57'),
(2769, 25, 0x4e752061c5a369206163746976617420636f6f6b69652d7572696c6520c3ae6e2062726f77736572756c2064756d6e6561766f61737472c4832e, 'Y', '2013-02-07 10:52:57'),
(2666, 4, 0x44696520427265697465205b25735d2064657320686f636867656c6164656e656e2042696c646573205b25735d20fc62657273746569677420646173204d6178696d756d205b257320506978656c5d2e, 'Y', '2013-02-07 13:44:21'),
(2667, 4, 0x4469652048f66865205b25735d2064657320686f636867656c6164656e656e2042696c646573205b25735d20fc62657273746569677420646173204d6178696d756d205b257320506978656c5d2e, 'Y', '2013-02-07 13:44:21'),
(2668, 4, 0x44696520686f636867656c6164656e652042696c646461746569205b25735d206b616e6e206e696368742067657370656963686572742077657264656e2e, 'Y', '2013-02-07 13:44:21'),
(2832, 4, 0x427269742e205465727269746f7269756d2028496e642e204f7a65616e29, 'Y', '2013-02-07 13:44:21'),
(2833, 4, 0x5361696e742d5069657272652026204d697175656c6f6e, 'Y', '2013-02-07 13:44:21'),
(2835, 4, 0x53fc6467656f726769656e20262053616e6477696368696e73656c6e, 'Y', '2013-02-07 13:44:21'),
(2836, 4, 0x566174696b616e, 'Y', '2013-02-07 13:44:21'),
(2984, 4, 0x537069656c7568722069737420676573746f707074, 'Y', '2013-02-07 13:54:27'),
(2985, 4, 0x4e75747a657220696e204e6163687472756865, 'Y', '2013-02-07 13:54:27'),
(3154, 4, 0x416e6d656c64756e67, 'Y', '2013-02-07 13:54:27'),
(3161, 4, 0x5a7567, 'Y', '2013-02-07 13:54:27'),
(3167, 4, 0x46616c736368657320446174756d73666f726d6174205b25735d2c2065726c61756274657320466f726d6174205b25735d2066fc72205b25735d, 'Y', '2013-02-07 13:54:27'),
(3187, 4, 0x2825732045696e7472616729, 'Y', '2013-02-07 13:54:27'),
(3226, 4, 0x4e75747a6572206f6e6c696e65, 'Y', '2013-02-07 13:54:27'),
(3227, 4, 0x496e64696b61746f722066fc72204f6e6c696e652d53746174757320626973207a752025204d696e7574656e207a75766f72, 'Y', '2013-02-07 13:54:27'),
(3338, 4, 0x4465722025732d53746174757320766f6e204e75747a6572205b25735d20777572646520776567656e207a75207669656c657220416266726167656e2074656d706f72e47220676573706572727421, 'Y', '2013-02-07 14:01:35'),
(3339, 4, 0x426974746520666f6c67656e205369652064656d20566572776569732c206c6573656e205369652064656e204641512d45696e7472616720756e642070617373656e205369652049687265202573204b6f6e66696775726174696f6e20656e74737072656368656e6420616e2e, 'Y', '2013-02-07 14:01:35'),
(3340, 4, 0x426974746520666f6c67656e205369652064657220416e77656973756e6720736f2062616c6420776965206df6676c6963682c20756d2064656e20536572766572207a7520656e746c617374656e2e, 'Y', '2013-02-07 14:01:35'),
(3341, 4, 0x5669656c656e2044616e6b2066fc722049687265204b6f6f7065726174696f6e2e, 'Y', '2013-02-07 14:01:35'),
(3343, 4, 0x566f6e, 'Y', '2013-02-07 14:01:35'),
(3346, 4, 0x566f6e, 'Y', '2013-02-07 14:01:35'),
(3348, 4, 0x537069656c20766f6e202573206d6974202573, 'Y', '2013-02-07 14:01:35'),
(3349, 4, 0x537069656c, 'Y', '2013-02-07 14:01:35'),
(3352, 4, 0x4b65696e652077617274656e64656e20537069656c65, 'Y', '2013-02-07 14:03:38'),
(3353, 4, 0x4b65696e652077617274656e64656e204e6163687269636874656e, 'Y', '2013-02-07 14:03:38'),
(3446, 4, 0x5072696f, 'Y', '2013-02-07 14:03:38'),
(2146, 4, 0x526f626f746572, 'Y', '2013-02-07 14:08:25'),
(2659, 4, 0x4573207775726465206b65696e65204461746569207a756d20486f63686c6164656e20616e6765676562656e2e, 'Y', '2013-02-07 14:08:25'),
(2660, 4, 0x44696520686f636867656c6164656e65204461746569205b25735d20fc6265727374656967742064696520766f6d20536572766572206d6178696d616c2065726c61756274652044617465696772f6df652e, 'Y', '2013-02-07 14:08:25'),
(2661, 4, 0x44696520686f636867656c6164656e65204461746569205b25735d20fc62657273746569677420646965206d6178696d616c2066fc72206461732045696e67616265666f726d756c61722065726c61756274652044617465696772f6df6520766f6e205b25732042797465735d2e, 'Y', '2013-02-07 14:08:25'),
(2662, 4, 0x44696520686f636867656c6164656e65204461746569205b25735d207775726465206e7572207465696c776569736520fc62657274726167656e2e, 'Y', '2013-02-07 14:08:25'),
(2663, 4, 0x4573207775726465206b65696e6520446174656920686f636867656c6164656e2e, 'Y', '2013-02-07 14:08:25'),
(2664, 4, 0x44696520686f636867656c6164656e65204461746569205b25735d206861742065696e20756e62656b616e6e746573204772617068696b666f726d61742e, 'Y', '2013-02-07 14:08:25'),
(2665, 4, 0x4465722054797020646572204772617068696b205b25732c2025735d2064657220686f636867656c6164656e656e204461746569205b25735d20656e7473707269636874206b65696e656d206465722065726c61756274656e204772617068696b666f726d617465205b25735d2e, 'Y', '2013-02-07 14:08:25'),
(2180, 4, 0x5b2044696d656e73696f6e656e3a20257320782025732c204772f6df653a202573204b42205d, 'Y', '2013-02-07 14:15:50'),
(2187, 4, 0x45696e73636872e46e6b756e67656e2066fc7220686f636867656c6164656e652042696c6464617465693a206d61782e202573207820257320506978656c20756e64206d61782e202573204b42, 'Y', '2013-02-07 14:15:50'),
(2650, 4, 0x50726f66696c20777572646520616c73205374616e6461726470726f66696c6520676573706569636865727421, 'Y', '2013-02-07 14:18:23'),
(2651, 4, 0x50726f66696c20777572646520676573706569636865727421, 'Y', '2013-02-07 14:18:23'),
(2656, 4, 0x50726f66696c206c6164656e, 'Y', '2013-02-07 14:18:23'),
(2658, 4, 0x50726f66696c206cf6736368656e, 'Y', '2013-02-07 14:18:23'),
(2672, 4, 0x4e75747a6572205b25735d206861742065696e2042696c64, 'Y', '2013-02-07 14:18:23'),
(2673, 4, 0x42696c6420766f6e204e75747a6572205b25735d, 'Y', '2013-02-07 14:18:23'),
(2996, 4, 0x45732077757264652065696e20756e67fc6c7469676573205a65696368656e20696e20646572204e75747a65722d4944205b25735d2076657277656e6465742e, 'Y', '2013-02-07 14:24:19'),
(2997, 4, 0x556e62656b616e6e746572204e75747a657220676566756e64656e205b25735d, 'Y', '2013-02-07 14:24:19'),
(2998, 4, 0x4e75747a65726c69737465206d757373206d696e64657374656e73207a77656920456d7066e46e67657220756d66617373656e2c20616e6465726e66616c6c732062697474652065696e652070726976617465204e61636872696368742073656e64656e2e, 'Y', '2013-02-07 14:24:19'),
(2999, 4, 0x4461732041627374696d6d656e20696e20556d66726167656e20777572646520766f6e2065696e656d2041646d696e6973747261746f722066fc72204e75747a6572205b25735d2067657370657272742e, 'Y', '2013-02-07 14:24:19'),
(3000, 4, 0x476173742d4e75747a6572205b25735d2073696e6420696e20646572204e75747a65726c69737465206e696368742065726c617562742e, 'Y', '2013-02-07 14:24:19'),
(3225, 4, 0x496e64696b61746f722066fc72206578697374696572656e646573204e75747a657262696c64, 'Y', '2013-02-07 14:24:19'),
(3295, 4, 0x5370657a69616c, 'Y', '2013-02-07 14:24:59'),
(3296, 4, '', 'Y', '2013-02-07 14:24:59'),
(3299, 4, 0x566572776569732061756620537069656c65206d6974204765676e6572, 'Y', '2013-02-07 14:24:59'),
(3537, 4, 0x41646d696e6973747261746f72, 'Y', '2013-02-07 14:26:17'),
(4498, 4, 0x25732054616765, 'Y', '2013-02-07 14:26:17'),
(4503, 4, 0x4e75747a657262696c64, 'Y', '2013-02-07 14:26:17'),
(4591, 4, 0x556e67fc6c74696765205a6569747a6f6e65205b25735d2076657277656e646574, 'Y', '2013-02-07 14:26:17'),
(4617, 4, 0x566572736368696564656e6573, 'Y', '2013-02-07 14:26:48'),
(1933, 4, 0x45732067696274206e6963687473207a752073706569636865726e2e, 'Y', '2013-02-07 14:28:23'),
(2097, 4, 0x50756e6b7465, 'Y', '2013-02-07 14:28:23'),
(2098, 4, 0x4175737761686c, 'Y', '2013-02-07 14:28:23'),
(2164, 4, 0x52656769737472696572756e672066fc722049502d6765626c6f636b7465204e75747a6572, 'Y', '2013-02-07 14:31:48'),
(3072, 4, 0x5a65696765204e6163687269636874656e6261756d, 'Y', '2013-02-07 14:37:49'),
(3315, 4, 0x28776172206f6e6c696e6520696e6e657268616c6220646572206c65747a74656e20257320576f6368656e29, 'Y', '2013-02-07 14:37:49'),
(3332, 4, 0x416e646572652050696b746f6772616d6d65, 'Y', '2013-02-07 14:37:49'),
(3383, 4, 0x4c617566656e646520537069656c6520646573204e75747a657273, 'Y', '2013-02-07 14:37:49'),
(3384, 4, 0x4265656e6465746520537069656c6520646573204e75747a657273, 'Y', '2013-02-07 14:37:49'),
(6381, 40, 0x312076657a206e6f20746f74616c20286a6f676f7320696e69636961646f7329, 'Y', '2016-05-01 01:18:39'),
(3394, 4, 0x45727a65756765206e65756573205475726e696572, 'Y', '2013-02-07 14:37:49'),
(3395, 4, 0x5a65696765205475726e696572, 'Y', '2013-02-07 14:38:23'),
(3429, 4, 0x5374616e64617264616e7369636874, 'Y', '2013-02-07 14:39:51'),
(3439, 4, 0xdc6272696765204ce46e646572, 'Y', '2013-02-07 14:39:51'),
(4586, 4, 0x44657220536f757263652d436f6465206465732053657276657273202856657273696f6e20257329, 'Y', '2013-02-07 14:39:51'),
(4612, 4, 0x416c6c65205475726e69657265, 'Y', '2013-02-07 14:39:51'),
(4723, 4, 0x556d6672616765, 'Y', '2013-02-07 14:40:06'),
(4727, 4, 0x52656769737472696572756e67, 'Y', '2013-02-07 14:42:13'),
(5207, 4, '', 'Y', '2013-02-07 14:42:13'),
(5208, 4, 0x45696e696765206efc747a6c69636865204772656173654d6f6e6b65792d536b72697074732066fc7220444753, 'Y', '2013-02-07 14:42:13'),
(5209, 4, '', 'Y', '2013-02-07 14:42:13'),
(5451, 4, 0x416c6c65206265656e646574656e20537069656c65206d6974207a7573e4747a6c696368656e205347467320285265766965777329, 'Y', '2013-02-07 14:42:13'),
(2811, 4, 0x45732077757264656e20756e67fc6c7469676520417267756d656e742076657277656e6465742e, 'Y', '2013-02-07 14:43:52'),
(2814, 4, 0x457320676962742065696e2050726f626c656d206d69742065696e657220646572204b6c617373656e2d4d6574686f64656e2e, 'Y', '2013-02-07 14:45:12'),
(2818, 4, 0x4465722045696e74726167206b6f6e6e7465206e6963687420676566756e64656e2077657264656e2e, 'Y', '2013-02-07 14:45:12'),
(2820, 4, 0x4573206973742065696e204665686c6572206265692064657220496e697469616c6973696572756e672064657220456e746974792d4b6c6173736520617566676574726574656e2e, 'Y', '2013-02-07 14:45:12'),
(2813, 4, 0x45732077757264652065696e20756e67fc6c746967657320517569636b2d5375697465204b6f6d6d616e646f2062656e75747a742e, 'Y', '2013-02-07 14:47:28'),
(2828, 4, 0x44696520556d6672616765206b616e6e20696d20616b7475656c6c656e20537461747573206e6963687420766f6e2049686e656e20626561726265697465742077657264656e2e, 'Y', '2013-02-07 14:47:28'),
(2829, 4, 0x4d697420496872656e204e75747a6572646174656e207374696d6d74206574776173206e696368742e204269747465206b6f6e74616b74696572656e205369652065696e656e2041646d696e6973747261746f7220756d206461732050726f626c656d207a75206265686562656e2e, 'Y', '2013-02-07 14:47:28'),
(2830, 4, 0x4461732076657277656e646574652050726f66696c20657869737469657274206e69636874206f646572207061737374206e696368742066fc72206469657365204f7065726174696f6e2e, 'Y', '2013-02-07 14:48:34'),
(4618, 4, 0x4963682068616265206d65696e2050617373776f72742076657267657373656e2e20576173206b616e6e206963682074756e3f, 'Y', '2013-02-07 14:48:34'),
(2802, 4, 0x5369652064fc7266656e2066fc7220646965736573205475726e696572206b65696e656e205475726e696572646972656b746f7220657267e46e7a656e2c206265617262656974656e206f646572206cf6736368656e2e, 'Y', '2013-02-07 14:55:58'),
(2803, 4, 0x5369652064fc7266656e2066fc7220646965736573205475726e696572206b65696e656e205475726e696572646972656b746f7220657267e46e7a656e206f646572206cf6736368656e2e, 'Y', '2013-02-07 14:55:58'),
(2804, 4, 0x4573206d757373206d696e64657374656e732065696e205475726e696572646972656b746f7220766572626c656962656e2e, 'Y', '2013-02-07 14:55:58'),
(2805, 4, 0x5369652064fc7266656e20736963682066fc7220646965736573205475726e696572206e6963687420616e6d656c64656e2e, 'Y', '2013-02-07 14:55:58'),
(2806, 4, 0x5369652064fc7266656e206469657365205475726e696572616e6d656c64756e67206e69636874206265617262656974656e2e, 'Y', '2013-02-07 14:55:58'),
(2807, 4, 0x45696e6520416b74696f6e2066fc722064656e205475726e6965727465696c6e65686d6572206973742066fc722064657373656e20616b7475656c6c656e20416e6d656c64657a757374616e64206e696368742065726c617562742e, 'Y', '2013-02-07 14:55:58'),
(2808, 4, 0x446965736572204e75747a6572206973742066fc722064617320616b7475656c6c65205475726e69657220756e62656b616e6e7420627a772e206e6963687420616e67656d656c6465742e, 'Y', '2013-02-07 14:55:58'),
(2809, 4, 0x446965736520416b74696f6e2066fc7220646173205475726e696572206973742066fc722064656e20616b7475656c6c656e205475726e6965722d537461747573206e696368742065726c617562742e, 'Y', '2013-02-07 14:55:58'),
(2812, 4, 0x45696e20417267756d656e74206665686c742e, 'Y', '2013-02-07 14:56:16'),
(3069, 4, 0x4d617373656e2d4e6163687269636874206d6974206d6568726572656e20456d7066e46e6765726e, 'Y', '2013-02-07 14:58:12'),
(3071, 4, 0x4e6163687269636874656e6261756d, 'Y', '2013-02-07 14:58:12'),
(3073, 4, 0x4572737465204e616368726963687420696d204e6163687269636874656e6261756d, 'Y', '2013-02-07 14:58:12'),
(3074, 4, 0x5a65696765205775727a656c20646573204e6163687269636874656e6261756d73, 'Y', '2013-02-07 14:58:12');
INSERT INTO `Translations` (`Original_ID`, `Language_ID`, `Text`, `Translated`, `Updated`) VALUES
(3054, 4, 0x46617262652064657320486572617573666f726465726572, 'Y', '2013-02-07 15:00:09'),
(3055, 4, 0x466172626520646573205374e4726b6572656e, 'Y', '2013-02-07 15:00:09'),
(4685, 7, 0x536eed6d656b20726f7a6573746176656eed206f62736168756a65206e65706c61746ee920706f7a696365206e61205b25735d2e, 'Y', '2016-07-20 18:39:13'),
(3079, 4, 0x537069656c20496e666f, 'Y', '2013-02-07 15:00:09'),
(3081, 4, 0x46617262652067657365747a7420647572636820537069656c2d4d656973746572, 'Y', '2013-02-07 15:00:09'),
(3083, 4, 0x4661726265205363687761727a, 'Y', '2013-02-07 15:00:09'),
(3084, 4, 0x4661726265205765697373, 'Y', '2013-02-07 15:01:39'),
(3085, 4, 0x466172626520486572617573666f726465726572205363687761727a, 'Y', '2013-02-07 15:01:39'),
(3086, 4, 0x466172626520486572617573666f726465726572205765697373, 'Y', '2013-02-07 15:01:39'),
(3087, 4, 0x4661726265205374e4726b65726572205363687761727a, 'Y', '2013-02-07 15:01:39'),
(3088, 4, 0x4661726265205374e4726b65726572205765697373, 'Y', '2013-02-07 15:01:39'),
(3091, 4, 0x416e70617373756e672064657220566f7267616265, 'Y', '2013-02-07 15:01:39'),
(3092, 4, 0x416e70617373756e6720646573204b6f6d69, 'Y', '2013-02-07 15:01:39'),
(3103, 4, 0x556e62656b616e6e746572204e6163687269636874656e656d7066e46e676572205b25735d, 'Y', '2013-02-07 15:02:47'),
(3104, 4, 0x45696e6c6164756e6720777572646520766f6e204e75747a6572205b25735d20616267656c65686e742021, 'Y', '2013-02-07 15:02:47'),
(3105, 4, 0x4e616368726963687420777572646520766f6e204e75747a6572205b25735d20616267656c65686e742021, 'Y', '2013-02-07 15:02:47'),
(3106, 4, 0x4e6163687269636874656e6261756d, 'Y', '2013-02-07 15:03:45'),
(3109, 4, 0x4665686c656e646572204e6163687269636874656e656d7066e46e676572, 'Y', '2013-02-07 15:03:45'),
(3110, 4, 0x5a75207669656c6520456d7066e46e67657220286d61782e20257329, 'Y', '2013-02-07 15:03:45'),
(3111, 4, 0x46fc722045696e6c6164756e67656e20697374206e75722065696e20456d7066e46e6765722065726c6175627421, 'Y', '2013-02-07 15:04:12'),
(3255, 4, 0x4e6163687269636874656e766f727363686175, 'Y', '2013-02-07 15:05:19'),
(3260, 4, 0x4e6163687269636874656e7465787420766572737465636b656e, 'Y', '2013-02-07 15:05:19'),
(3261, 4, 0x4e6163687269636874656e74657874207a656967656e, 'Y', '2013-02-07 15:06:01'),
(3262, 4, 0x416b7475656c6c65204e6163687269636874, 'Y', '2013-02-07 15:06:01'),
(2466, 4, 0x537069656c20456469746f72, 'Y', '2013-02-07 15:07:09'),
(2467, 4, 0x4772f6df65, 'Y', '2013-02-07 15:07:09'),
(2468, 4, 0x42726574746772f6df6520e46e6465726e, 'Y', '2013-02-07 15:07:09'),
(2471, 4, 0x537069656c656e, 'Y', '2013-02-07 15:07:09'),
(2473, 4, 0x427265697465, 'Y', '2013-02-07 15:07:09'),
(2474, 4, 0x48f66865, 'Y', '2013-02-07 15:07:09'),
(2475, 4, 0x4e65756573204272657474, 'Y', '2013-02-07 15:07:09'),
(2360, 4, 0x25732045696e74726167, 'Y', '2013-02-07 15:08:08'),
(2374, 4, 0x4e75722d4c6573656e64, 'Y', '2013-02-07 15:08:08'),
(4690, 4, 0x416c7465207a7565727374, 'Y', '2013-02-07 15:09:09'),
(4691, 4, 0x4e657565207a7565727374, 'Y', '2013-02-07 15:09:09'),
(4692, 4, 0x4261756d20416e7369636874, 'Y', '2013-02-07 15:09:09'),
(4693, 4, 0x4e722e, 'Y', '2013-02-07 15:09:09'),
(2363, 4, 0x45696e20466f72756d65696e747261672064657320476173742d4e75747a657273206b616e6e20766f6e2064656e20466f72756d732d4d6f64657261746f72656e20616267656c65686e742028766572737465636b7429206f6465722062657374e4746967742028616e67657a65696774292077657264656e2e3c62723e0d0a57656e6e205369652065696e65207072697661746520286e696368742d7075626c696b29204b6f6d6d756e696b6174696f6e2077fc6e736368656e2c20657267e46e7a656e2053696520696e2064656d20466f72756d7365696e74726167204968726520456d61696c20756e642066726167656e206e61636820707269766174656d204b6f6e74616b742e, 'Y', '2013-02-07 15:13:26'),
(2382, 4, 0x4e6163687269636874207775726465206765e46e6465727421, 'Y', '2013-02-07 15:13:26'),
(2384, 4, 0xdc626572736963687420766572737465636b656e, 'Y', '2013-02-07 15:13:26'),
(2386, 4, 0xdc6265727369636874207a656967656e, 'Y', '2013-02-07 15:13:26'),
(2392, 4, 0x286e7572204d6f64657261746f29, 'Y', '2013-02-07 15:13:26'),
(4587, 4, 0x25732054726566666572, 'Y', '2013-02-07 15:13:26'),
(2276, 4, '', 'Y', '2013-02-07 15:13:56'),
(3140, 4, 0x572d5a7565727374, 'Y', '2013-02-07 15:16:48'),
(4675, 4, 0x466f726d2073706569636865726e, 'Y', '2013-02-07 15:16:48'),
(4679, 4, 0x466f726d6e616d65206665686c74206f64657220697374207a75206b75727a, 'Y', '2013-02-07 15:16:48'),
(4680, 4, 0x466f726d6e616d6520697374207a75206c616e6720286d61782e202573205a65696368656e292e, 'Y', '2013-02-07 15:16:48'),
(4681, 4, 0x466f726d6e616d65205b25735d20697374206265726569747320696e2056657277656e64756e67206d75737320616265722065696e646575746967207365696e2e, 'Y', '2013-02-07 15:16:48'),
(4687, 4, 0x537069656c6661726265, 'Y', '2013-02-07 15:16:48'),
(5196, 4, 0x466f726d737069656c, 'Y', '2013-02-07 15:16:58'),
(2394, 4, 0x766f6e2041646d696e2067657365747a74, 'Y', '2013-02-07 15:17:53'),
(2460, 4, 0x4c6569746572207a656967656e, 'Y', '2013-02-07 15:18:54'),
(2461, 4, 0x5475726e696572737069656c2061646d696e69737472696572656e, 'Y', '2013-02-07 15:18:54'),
(2464, 4, 0x537069656c2061646d696e69737472696572656e, 'Y', '2013-02-07 15:18:54'),
(2510, 4, 0x4d656973746572, 'Y', '2013-02-07 15:19:17'),
(2514, 4, 0x526573657276696572756e67206cf6736368656e, 'Y', '2013-02-07 15:19:17'),
(2517, 4, 0x477275707065207365747a656e, 'Y', '2013-02-07 15:19:17'),
(2630, 4, '', 'Y', '2013-02-07 15:21:51'),
(2631, 4, '', 'Y', '2013-02-07 15:21:51'),
(2635, 4, '', 'Y', '2013-02-07 15:21:51'),
(2638, 4, 0x537465696e65, 'Y', '2013-02-07 15:21:51'),
(2640, 4, '', 'Y', '2013-02-07 15:21:51'),
(2855, 4, 0x477275707065202331, 'Y', '2013-02-07 15:22:43'),
(2856, 4, 0x477275707065202332, 'Y', '2013-02-07 15:22:50'),
(2857, 4, '', 'Y', '2013-02-07 15:22:57'),
(2888, 4, 0x53696520686162656e206265726569747320257320766f6e206d61782e20257320537069656c656e206765737461727465742e, 'Y', '2013-02-07 15:26:27'),
(2889, 4, 0x5475726e696572616e6d656c64756e6720697374206e75722065726c617562742066fc72203c257320537069656c652e, 'Y', '2013-02-07 15:26:27'),
(2892, 4, 0x5374616e646172642d566f7267616265, 'Y', '2013-02-07 15:26:27'),
(2893, 4, 0x467265696520566f7267616265, 'Y', '2013-02-07 15:26:27'),
(2896, 4, 0x5a656974, 'Y', '2013-02-07 15:26:27'),
(2898, 4, 0x556e67fc6c746967657220576572742066fc72204b6f6d69205b25735d2e, 'Y', '2013-02-07 15:26:27'),
(2899, 4, 0x556e67fc6c74696765205a6569747765727465205b25735d2c206d7573732067616e7a7a61686c696720756e64203e3d2030207365696e2e, 'Y', '2013-02-07 15:26:27'),
(2900, 4, 0x556e67fc6c746967657220576572742066fc7220416e70617373756e6720646573204b6f6d69205b25735d2e, 'Y', '2013-02-07 15:28:45'),
(2907, 4, 0x4e6163687269636874, 'Y', '2013-02-07 15:28:45'),
(2908, 4, 0x45696e6c6164756e67, 'Y', '2013-02-07 15:28:45'),
(2921, 4, '', 'Y', '2013-02-07 15:28:45'),
(2935, 4, 0x2e2e2e2049687265204661726265207769726420766f7261757373696368746c6963682025312473206d6974202532247320566f7267616265204b6f6d69202533242e3166, 'Y', '2013-02-07 15:28:45'),
(2940, 4, '', 'Y', '2013-02-07 15:29:08'),
(2950, 4, 0x5465696c652026204865727273636865, 'Y', '2013-02-07 15:29:08'),
(3114, 4, 0x53696568652061756368, 'Y', '2013-02-07 15:29:08'),
(3115, 4, 0x4447532d52616e67, 'Y', '2013-02-07 15:29:24'),
(3116, 4, '', 'Y', '2013-02-07 15:29:24'),
(3119, 4, 0x64, 'Y', '2013-02-07 15:30:22'),
(3120, 4, 0x6b, 'Y', '2013-02-07 15:30:22'),
(3124, 4, 0x4575726f70e46973636865722052616e67202845474629, 'Y', '2013-02-07 15:31:59'),
(3125, 4, 0x4575726f70e469736368657220526174696e67202845474629, 'Y', '2013-02-07 15:31:59'),
(3126, 4, 0x4147412052616e67, 'Y', '2013-02-07 15:31:59'),
(3127, 4, 0x41474120526174696e67, 'Y', '2013-02-07 15:31:59'),
(3128, 4, 0x4a6170616e6973636865722052616e67, 'Y', '2013-02-07 15:31:59'),
(3129, 4, 0x4368696e65736973636865722052616e67, 'Y', '2013-02-07 15:31:59'),
(3130, 4, 0x4b6f7265616e6973636865722052616e67, 'Y', '2013-02-07 15:31:59'),
(3131, 4, 0x4b47532052616e67, 'Y', '2013-02-07 15:31:59'),
(3132, 4, 0x4947532052616e67, 'Y', '2013-02-07 15:31:59'),
(3133, 4, 0x4447532052616e67, 'Y', '2013-02-07 15:33:23'),
(3134, 4, 0x44475320526174696e67, 'Y', '2013-02-07 15:33:23'),
(3135, 4, 0x46494347532052616e67, 'Y', '2013-02-07 15:33:23'),
(3136, 4, 0x4959542052616e67, 'Y', '2013-02-07 15:33:23'),
(3137, 4, 0x547967656d2052616e67, 'Y', '2013-02-07 15:33:23'),
(3138, 4, 0x57426164756b2052616e67, 'Y', '2013-02-07 15:33:23'),
(3359, 4, 0x566572737465636b6520537069656c6b6f6d6d656e74617265, 'Y', '2013-02-07 15:33:56'),
(3362, 4, 0x4d65696e65, 'Y', '2013-02-07 15:33:56'),
(4522, 4, 0x4661726265205363687761727a, 'Y', '2013-02-07 15:34:44'),
(4523, 4, 0x4661726265205765697373, 'Y', '2013-02-07 15:34:44'),
(4525, 4, 0x4f6666656e652041756b74696f6e, 'Y', '2013-02-07 15:34:44'),
(4526, 4, 0x47656865696d652041756b74696f6e, 'Y', '2013-02-07 15:34:44'),
(4554, 4, '', 'Y', '2013-02-07 15:35:27'),
(4559, 4, 0x49636820737069656c65205363687761727a, 'Y', '2013-02-07 15:35:27'),
(4564, 4, 0x53696520737069656c656e20766f7261757373696368746c696368205363687761727a, 'Y', '2013-02-07 15:36:28'),
(4565, 4, 0x53696520737069656c656e20766f7261757373696368746c696368205765697373, 'Y', '2013-02-07 15:36:28'),
(4583, 4, 0x55687220616d20576f6368656e656e646520676573746f707074, 'Y', '2013-02-07 15:36:28'),
(4613, 4, 0x4b65696e2046616972204b6f6d69, 'Y', '2013-02-07 15:36:28'),
(4625, 4, 0x5475726e6965722d537461747573, 'Y', '2013-02-07 15:36:28'),
(4696, 4, 0x486572617573666f726465726572, 'Y', '2013-02-07 15:36:28'),
(4705, 4, 0x4b6f6d6920616e70617373656e, 'Y', '2013-02-07 15:38:20'),
(5413, 4, 0x53706569636865726e2064657320534746207363686c7567206665686c21, 'Y', '2013-02-07 15:38:20'),
(5414, 4, 0x446174656920686174206b65696e205347462d466f726d617421, 'Y', '2013-02-07 15:38:20'),
(5416, 4, 0x42726574746772f6df65207061737374206e696368743a206572776172746574207761722025732c206162657220676566756e64656e207775726465202573, 'Y', '2013-02-07 15:38:20'),
(5421, 4, 0x537069656c7afc67652070617373656e206e696368743a204469736b726570616e7a20676566756e64656e20626569205a756720232573, 'Y', '2013-02-07 15:41:07'),
(5425, 4, 0x556e67fc6c7469676573204461746569656e6465, 'Y', '2013-02-07 15:41:07'),
(5426, 4, 0x556e67fc6c7469676572205775727a656c6b6e6f74656e, 'Y', '2013-02-07 15:41:07'),
(5427, 4, 0x4b65696e20476f2d537069656c2028474d5b315d29, 'Y', '2013-02-07 15:41:07'),
(5428, 4, 0x556e67fc6c74696765722053746172746b6e6f74656e, 'Y', '2013-02-07 15:41:07'),
(5430, 4, 0x4665686c656e6465207265636874652072756e6465204b6c616d6d6572, 'Y', '2013-02-07 15:41:07'),
(5431, 4, 0x4665686c656e6465207265636874652065636b696765204b6c616d6d6572, 'Y', '2013-02-07 15:41:07'),
(5432, 4, 0x4461746569206e6963687420676566756e64656e, 'Y', '2013-02-07 15:41:07'),
(5433, 4, 0x556e67fc6c746967657320566f72676162656d75737465722066fc72202573, 'Y', '2013-02-07 15:43:03'),
(5434, 4, 0x556e67656efc67656e64657320566f72676162656d75737465722066fc72202573, 'Y', '2013-02-07 15:43:03'),
(5435, 4, 0x53474620777572646520656e746665726e7421, 'Y', '2013-02-07 15:43:03'),
(5436, 4, 0x53474620777572646520676573706569636865727421, 'Y', '2013-02-07 15:43:03'),
(5439, 4, 0x42697474652062657374e4746967656e205369652064696520456e746665726e756e67204968726573205347467321, 'Y', '2013-02-07 15:43:03'),
(5440, 4, 0x53474620656e746665726e656e, 'Y', '2013-02-07 15:43:03'),
(5441, 4, 0x53474620686f63686c6164656e, 'Y', '2013-02-07 15:43:03'),
(5442, 4, 0x5347462073706569636865726e, 'Y', '2013-02-07 15:44:30'),
(5443, 4, 0x4d65696e2053474620656e746665726e656e, 'Y', '2013-02-07 15:44:30'),
(5446, 4, 0x4a65646572204e75747a6572206b616e6e206e75722065696e2053474620686f63686c6164656e2e, 'Y', '2013-02-07 15:44:30'),
(5447, 4, 0x4d6178696d616c65204772f6df652065696e657220686f636867656c6164656e656e205347462d44617465693a206d61782e202573204b42, 'Y', '2013-02-07 15:44:30'),
(5450, 4, 0x4d65696e652077617274656e64656e205061727469656e, 'Y', '2013-04-14 13:00:48'),
(5452, 4, 0x50617373656e6465, 'Y', '2013-02-07 15:44:58'),
(5453, 4, 0x4d65696e65, 'Y', '2013-02-07 15:44:58'),
(3455, 4, 0x57e4686c656e205369652065696e6520566f726c61676520756d2065696e656e20626573746568656e64656e2045696e74726167207a752065727365747a656e2e, 'Y', '2013-02-07 20:15:23'),
(3457, 4, 0x556e67fc6c746967657220566f726c6167656e74797020756d207a752073706569636865726e21, 'Y', '2013-02-07 20:15:23'),
(3458, 4, 0x44696520446174656e2066fc722064696520566f726c61676520fc62657273636872656974656e20646173207a756ce47373696765204d6178696d756d20766f6e2025732042797465732028766f6e2025732042797465732921, 'Y', '2013-02-07 20:15:23'),
(5423, 4, 0x537069656c20686174207a7573e4747a6c696368652053474673, 'Y', '2013-02-07 20:15:46'),
(1929, 4, 0x49687220fc627269676573205a756772696666736b6f6e74696e67656e74206973742066617374206175666765627261756368742e3c62723e53696520686162656e206e7572206e6f6368202573205a7567726966666520fc62726967206265766f72207369652066fc722025732067657370657272742077657264656e202121, 'Y', '2013-02-07 20:24:23'),
(1930, 4, 0x496872204b6f6e74696e67656e742066fc72205a7567726966666520697374206175666765627261756368742e, 'Y', '2013-02-07 20:24:23'),
(3453, 4, 0x45727365747a65, 'Y', '2013-02-07 20:24:23'),
(4604, 4, 0x44696520416b7469766974e474204968726573204e75747a65726b6f6e746f73202725732720776172207a7520686f636820756e6420686174207a757669656c2042616e6462726569746520756e64205265736f757263656e20696e20416e7370727563682067656e6f6d6d656e2e0d0a4269747465207061737369656e2053696520496872204e75747a756e677376657268616c74656e20646572205765627369746520616e2e0d0a446965736573204e75747a756e67736b6f6e746f20697374206269732025732067657370657272742e, 'Y', '2013-02-07 20:24:23'),
(5422, 4, 0x45732067696274202573207a7573e4747a6c6963686520534746732c206469652066fc722064617320537069656c207a756d20446f776e6c6f61642062657265697473746568656e2e, 'Y', '2013-02-07 20:24:23'),
(1924, 4, 0x537069656c6265726563686e756e67656e, 'Y', '2013-02-07 20:27:26'),
(1926, 4, 0x5a65696765204265726563686e756e67656e2064657220537069656c7374e4726b65, 'Y', '2013-02-07 20:27:26'),
(1928, 4, 0x4e65756520537069656c6265726563686e756e67656e, 'Y', '2013-02-07 20:27:26'),
(2400, 4, 0x4e6575206c6164656e, 'Y', '2013-02-07 20:27:26'),
(5747, 4, 0x446f, 'Y', '2013-12-01 17:04:15'),
(2422, 4, 0x45696e6c6164756e67, 'Y', '2013-02-07 20:27:26'),
(2437, 4, 0x4b6f6d692d4765626f74, 'Y', '2013-02-07 20:29:39'),
(2449, 4, 0x42657265696368, 'Y', '2013-02-07 20:29:39'),
(2454, 4, 0x6475726368205444, 'Y', '2013-02-07 20:29:39'),
(2463, 4, 0x5a6569676520537069656c6265726563686e756e67656e, 'Y', '2013-02-07 20:29:39'),
(3297, 4, 0x45696e6c6164656e, 'Y', '2013-02-07 20:32:40'),
(3300, 4, 0x5265672e, 'Y', '2013-02-07 20:32:40'),
(2430, 4, 0x617573676568616e64656c742066fc7220466169722d4b6f6d69, 'Y', '2013-02-07 20:35:23'),
(3080, 4, 0x566f7267616265737069656c206d6974204e6967697269, 'Y', '2013-02-07 20:35:23'),
(3093, 4, 0x45696e73636872e46e6b756e672064657220537069656c7374e4726b65, 'Y', '2013-02-07 20:35:23'),
(3113, 4, 0x4665686c656e6465722042657472656666, 'Y', '2013-02-07 20:35:23'),
(3230, 4, 0x5a69656c6f72646e6572, 'Y', '2013-02-07 20:35:23'),
(4588, 11, 0x4c6f70656e64652070617274696a656e2076616e2064657a65206765627275696b6572, 'Y', '2013-02-10 18:09:37'),
(3374, 11, 0x416667656c6f70656e2070617274696a656e20766f6f7220253124733a2025322473, 'Y', '2013-02-10 18:10:55'),
(2987, 4, 0x447261676f6e204d616e6e736368616674, 'Y', '2013-02-12 11:09:39'),
(3160, 4, 0x416e66616e6773666f726d, 'Y', '2013-02-12 11:09:39'),
(3462, 4, 0x446965204175737761686c207a756d2045727365747a656e2065696e657220566f726c61676520697374206665686c6572686166742c20646120646572207a752065727365747a656e64652045696e747261672066fc722064656e204e75747a6572206e69636874206d656872206578697374696572742e, 'Y', '2013-02-12 11:09:39'),
(2399, 4, 0x476566616e67656e6520646573204c65747a74656e205a756773, 'Y', '2013-02-12 11:21:21'),
(2403, 4, 0x416e66616e6773666f726d, 'Y', '2013-02-12 11:21:21'),
(2412, 4, 0x42656d65726b756e673a2042796f796f6d6920506572696f64656e2077657264656e207a7572fc636b67657365747a7420617563682062656920766f6c6c6572205a7572fc636b7365747a756e672e, 'Y', '2013-02-12 11:21:21'),
(2436, 4, 0x4772757070656e20416e66616e67737374e4726b65, 'Y', '2013-02-12 11:21:21'),
(2498, 4, 0x496e2057617274657a696d6d6572207374656c6c656e, 'Y', '2013-02-12 11:21:21'),
(2522, 4, 0x537069656c657220616d205a7567, 'Y', '2013-02-12 11:21:21'),
(2526, 4, 0x46fc722065696e6520c46e646572756e67206dfc7373656e205369652064656e206578697374696572656e64656e2045696e74726167206cf6736368656e20756e642064616e6e206e65752065696e74726167656e2e, 'Y', '2013-02-12 11:21:21'),
(2527, 4, 0x5a656967652045696e7472616720696e2057617274657a696d6d657220287a756d204cf6736368656e29, 'Y', '2013-02-12 11:21:21'),
(2528, 4, 0x537069656c65722d506ce4747a65, 'Y', '2013-02-12 11:21:21'),
(4684, 4, 0x466f726d61627a756720656e7468e46c7420756e67fc6c74696765205a65696368656e205b25735d2e, 'Y', '2013-02-12 11:26:33'),
(4685, 4, 0x466f726d61627a756720656e7468e46c7420756e67fc6c7469676520506f736974696f6e656e20626569205b25735d2e, 'Y', '2013-02-12 11:26:33'),
(4686, 4, 0x4665686c656e64657220466f726d61627a7567, 'Y', '2013-02-12 11:26:33'),
(4702, 4, 0x536368616c746572, 'Y', '2013-02-12 11:26:33'),
(1955, 4, 0x566572f66666656e746c696368756e6773646174756d, 'Y', '2013-02-12 11:30:40'),
(2558, 4, 0x476577f6686e6c6963686520566f7267616265, 'Y', '2013-02-12 11:30:40'),
(2584, 4, 0x6c617566656e64657320537069656c, 'Y', '2013-02-12 11:30:40'),
(3468, 4, 0x5475726e696572646972656b746f7220777572646520656e746665726e7421, 'Y', '2013-02-12 11:30:40'),
(3469, 4, 0x5475726e696572646972656b746f7220777572646520676573706569636865727421, 'Y', '2013-02-12 11:30:40'),
(3470, 4, 0x456e746665726e756e6720646573205475726e696572646972656b746f72732066fc72205b25735d, 'Y', '2013-02-12 11:30:40'),
(3471, 4, 0x4265617262656974756e6720646573205475726e696572646972656b746f72732066fc72205b25735d, 'Y', '2013-02-12 11:30:40'),
(3474, 4, 0x5475726e696572646972656b746f722073706569636865726e, 'Y', '2013-02-12 11:30:40'),
(3476, 4, 0x5475726e69657220777572646520676573706569636865727421, 'Y', '2013-02-12 11:30:40'),
(3477, 4, 0x5475726e6965727370657272656e20456469746f72, 'Y', '2013-02-12 11:30:40'),
(3479, 4, '', 'Y', '2013-02-12 11:34:09'),
(3481, 4, 0x537065727262656d65726b756e67, 'Y', '2013-02-12 11:34:09'),
(3483, 4, 0x4269747465206e75722064696520656967656e656e2042656d65726b756e67656e206265617262656974656e, 'Y', '2013-02-12 11:34:09'),
(3484, 4, 0x496872652042656d65726b756e67656e2077657264656e206d69742065696e205072e46669782061757320446174756d20756e64204e75747a65722d494420766572736568656e, 'Y', '2013-02-12 11:34:09'),
(3485, 4, 0x566f72736368617520537065727262656d65726b756e67, 'Y', '2013-02-12 11:34:09'),
(3487, 4, 0x5475726e6965727370657272656e62656d65726b756e67656e, 'Y', '2013-02-12 11:34:09'),
(3488, 4, 0x4968726520537065727262656d65726b756e6720726569636874206e6963687420617573207a756d205365747a656e20646572205370657272656e2e, 'Y', '2013-02-12 11:34:09'),
(3492, 4, 0x5475726e6965726e657569676b656974656e20456469746f72, 'Y', '2013-02-12 11:34:09'),
(3494, 4, 0x416b7475656c6c657220537461747573, 'Y', '2013-02-12 11:34:09'),
(3499, 4, 0x4665686c656e646572206f646572207a75206b75727a657220546974656c2066fc72205475726e6965726e657569676b656974656e, 'Y', '2013-02-12 11:34:09'),
(3501, 4, 0x476173742d4e75747a6572206b616e6e206e6963687420626561726265697465742077657264656e2e2042697474652077e4686c656e205369652065696e656e20616e646572656e204e75747a657221, 'Y', '2013-02-12 11:38:41'),
(3504, 4, 0x5475726e696572616e6d656c64756e6720646965736573204e75747a65727320777572646520766f6e2041646d696e6973747261746f72656e20616267656c65686e742e, 'Y', '2013-02-12 11:38:41'),
(3506, 4, 0x4e75747a6572206265617262656974656e, 'Y', '2013-02-12 11:38:41'),
(3507, 4, 0x5a65696765204e75747a65722066fc72204e75747a65722d4944, 'Y', '2013-02-12 11:38:41'),
(3508, 4, 0x5a65696765204e75747a65722066fc72204944, 'Y', '2013-02-12 11:38:41'),
(3510, 4, 0x5761726e756e67, 'Y', '2013-02-12 11:38:41'),
(3511, 4, 0x5761726e756e67656e2073696e6420617566676574726574656e, 'Y', '2013-02-12 11:38:41'),
(3513, 4, 0x5b4665686c65725d3a204e75747a657220646172662066fc7220646965736573205475726e696572206e6963687420616e67656d656c6465742077657264656e, 'Y', '2013-02-12 11:38:41'),
(3514, 4, 0x5b5761726e756e675d3a204e75747a65722064617266206e6f726d616c65727765697365206e696368742066fc7220646965736573205475726e69657220616e67656d656c6465742077657264656e, 'Y', '2013-02-12 11:38:41'),
(3518, 4, 0x416b7475656c6c6520536368616c746572, 'Y', '2013-02-12 11:38:41'),
(3519, 4, 0x4e65756520536368616c746572, 'Y', '2013-02-12 11:43:31'),
(3521, 4, 0x416b7475656c6c65204e75747a6572737069656c7374e4726b65, 'Y', '2013-02-12 11:43:31'),
(3523, 4, 0x537069656c7374e4726b65206b6f6e76657274696572656e, 'Y', '2013-02-12 11:43:31'),
(3524, 4, 0x5475726e696572737069656c7374e4726b65, 'Y', '2013-02-12 11:43:31'),
(3536, 4, 0x546f75726e616d656e74616e6d656c64756e6720456469746f722066fc72205b25735d, 'Y', '2013-02-12 11:43:31'),
(3544, 4, 0x46fc72205475726e69657220232573207775726465206469652041626d656c64756e67206475726368676566fc687274, 'Y', '2013-02-12 11:43:31'),
(3545, 4, 0x46fc722025732077757264656e2053696520766f6e205475726e696572646972656b746f7220257320616267656d656c6465742e, 'Y', '2013-02-12 11:43:31'),
(3547, 4, 0x44696520416e6d656c64756e672066fc72205475726e696572202325732077757264652062657374e474696774, 'Y', '2013-02-12 11:43:31'),
(3548, 4, 0x49687220416e6d656c64756e672066fc7220257320777572646520766f6e205475726e696572646972656b746f722025732062657374e4746967742e, 'Y', '2013-02-12 11:51:48'),
(3550, 4, 0x45696e6c6164756e672066fc72205475726e69657220232573, 'Y', '2013-02-12 11:51:48'),
(3551, 4, 0x5475726e6965726469726563746f72202532247320686174205369652066fc7220253124732065696e67656c6164656e2e2044696573652045696e6c6164756e67206d75737320766f6e2049686e656e20656e74776564657220647572636820416e6e61686d65206f6465722041626c65686e756e67207665726966697a696572742077657264656e2e, 'Y', '2013-02-12 11:51:48'),
(3552, 4, 0x5475726e696572616e6d656c64756e67206265617262656974656e, 'Y', '2013-02-12 11:51:48'),
(3554, 4, 0x5665726966697a696572756e672064657220416e6d656c64756e672066fc72205475726e69657220232573, 'Y', '2013-02-12 11:51:48'),
(3555, 4, 0x49687220416e747261672066fc7220257320777572646520766f6e205475726e696572646972656b746f7220257320fc6265727072fc667420756e6420696e2065696e652045696e6c6164756e6720756d676577616e64656c742c2064696520766f6e2049686e656e207665726966697a696572742077657264656e206d7573732e, 'Y', '2013-02-12 11:51:48'),
(3557, 4, 0x4968726520416e6d656c64756e672066fc7220257320777572646520766f6e205475726e696572646972656b746f7220257320fc6265727072fc667420756e6420696e2065696e652045696e6c6164756e6720756d676577616e64656c742c2064696520766f6e2049686e656e207665726966697a696572742077657264656e206d7573732e, 'Y', '2013-02-12 11:51:48'),
(3562, 4, 0x5475726e696572656967656e736368616674656e2077757264656e20676573706569636865727421, 'Y', '2013-02-12 11:51:48'),
(3563, 4, 0x5475726e69657220416e6d656c64756e6773656967656e736368616674656e20456469746f72, 'Y', '2013-02-12 11:51:48'),
(3569, 4, 0x4d696e696d756d206265656e64657465205061727469656e, 'Y', '2013-02-12 11:54:11'),
(3570, 4, 0x28676577657274657420756e6420756e676577657274657429, 'Y', '2013-02-12 11:54:11'),
(3571, 4, 0x286e757220676577657274657429, 'Y', '2013-02-12 11:54:11'),
(3572, 4, 0x5475726e696572656967656e736368616674656e2073706569636865726e, 'Y', '2013-02-12 11:54:11'),
(3573, 4, 0x566f7273636861752042656d65726b756e67656e, 'Y', '2013-02-12 11:54:11'),
(3574, 4, 0x42656d65726b756e67656e207a75205475726e696572656967656e736368616674656e, 'Y', '2013-02-12 11:54:11'),
(3139, 4, 0x44696573206973742065696e65206175746f6d6174697363682067656e6572696572746520416e66726167652066fc722065696e656e2049502d626c6f636b69657274656e204e75747a65722c20756d2065696e206e65756573204b6f6e746f206d69742064656e20666f6c67656e64656e20416e676162656e20616e7a756c6567656e3a, 'Y', '2013-02-12 12:20:19'),
(3404, 11, 0x546f6f6e20746f65726e6f6f696e6965757773, 'Y', '2013-08-16 19:27:01'),
(3337, 4, 0x44696520456d61696c616472657373652069737420766572747261756c6963682c2073696568652022446174656e73636875747a2220696d20444753203c6120687265663d22257322207461726765743d22646773544f53223e56657268616c74656e736b6f6465783c2f613e2e, 'Y', '2013-02-12 12:20:19'),
(2909, 5, 0x4e6f7576656c6c652050617274696523746d706c, 'Y', '2013-02-23 15:31:07'),
(3156, 5, 0x4e6f7576656c6c6520506172746965, 'Y', '2013-02-23 15:31:40'),
(5450, 5, 0x4d6573207061727469657320656e20617474656e7465, 'Y', '2013-02-23 15:32:20'),
(2524, 5, 0x416a6f7574657220756e65206e6f7576656c6c652070617274696520e0206c612073616c6c65206427617474656e7465236d7067, 'Y', '2013-02-23 15:33:35'),
(3265, 5, 0x416a6f7574657220756e65206e6f7576656c6c652070617274696520e0206c612073616c6c65206427617474656e7465, 'Y', '2013-02-23 15:33:35'),
(3385, 5, 0x4d6573207061727469657320656e20636f757273, 'Y', '2013-02-23 15:35:05'),
(3386, 5, 0x4d65732070617274696573207465726d696ee96573, 'Y', '2013-02-23 15:35:42'),
(3371, 5, 0x4d65732070617274696573206f6273657276e96573, 'Y', '2013-11-20 15:46:02'),
(3440, 5, 0x53746174757420706f757220253124733a2025322473, 'Y', '2013-02-23 15:36:46'),
(3153, 5, 0x566f6972, 'Y', '2013-02-23 15:51:22'),
(4549, 5, 0x4e6f74657320706f7572206c612073616c6c65206427617474656e7465, 'Y', '2013-02-23 15:56:24'),
(2530, 4, 0x6e7572204e75747a6572206d697420537069656c7374e4726b65, 'Y', '2013-02-24 12:19:04'),
(2532, 4, 0x4e75747a6572205b25735d207769726420fc62657220646965204cf6736368756e672062656e61636872696368746967742e, 'Y', '2013-02-24 12:19:04'),
(2533, 4, 0x53696e642053696520736963686572206469652072657365727669657274652045696e6c6164756e6720646573204e75747a657273207a7520656e746665726e656e3f, 'Y', '2013-02-24 12:19:04'),
(2534, 4, 0x53696e6420536965207369636865722064656e2061756667656e6f6d6d656e656e20537069656c6572207a7520656e746665726e656e3f, 'Y', '2013-02-24 12:19:04'),
(2535, 4, 0x42657374e4746967756e67206465722045696e6c6164756e67, 'Y', '2013-02-24 12:19:04'),
(2537, 4, 0x426974746520fc6265727072fc66656e205369652064696520537069656c2d20756e64205a65697465696e7374656c6c756e67656e20736f726766e46c7469673a, 'Y', '2013-02-24 12:19:04'),
(2538, 4, 0x4265766f7220536965207a757374696d6d656e206bf66e6e656e2053696520646965207661726961626c656e2045696e7374656c6c756e67656e206d69742064656d20537069656c6c6569746572206469736b7574696572656e2e, 'Y', '2013-02-24 12:19:04'),
(2539, 4, 0x446965204772757070696572756e672c20466172627761686c20756e6420566f72676162652066fc722064617320537069656c206bf66e6e656e206e757220766f6d20537069656c6c6569746572206765e46e646572742077657264656e2e, 'Y', '2013-02-24 12:19:04'),
(2540, 4, 0x536965206bf66e6e656e206469652045696e6c6164756e6720656e74776564657220616e6e65686d656e206f6465722061626c65686e656e2e, 'Y', '2013-02-24 12:19:04'),
(2541, 4, 0x44657220537069656c6c6569746572205b25735d207769726420fc626572204968726520456e74736368656964756e672062656e61636872696368746967742e, 'Y', '2013-02-24 12:21:54'),
(2542, 4, 0x4e65686d656e20536965206469652045696e6c6164756e6720616e3f, 'Y', '2013-02-24 12:21:54'),
(2548, 4, 0x44657220537069656c6c65697465722025732068617420496872652045696e6c6164756e672066fc722064617320537069656c2025732067656cf67363687421, 'Y', '2013-02-24 12:21:54'),
(2549, 4, 0x52657365727669657274652045696e6c6164756e672077757264652067656cf67363687421, 'Y', '2013-02-24 12:21:54'),
(2551, 4, 0x45696e6c6164756e6720777572646520616e67656e6f6d6d656e21, 'Y', '2013-02-24 12:21:54'),
(2553, 4, 0x45696e6c6164756e6720777572646520616267656c65686e7421, 'Y', '2013-02-24 12:21:54'),
(2554, 4, 0x44657220537069656c6c65697465722025732068617420496872652042657465696c6967756e6720616d20537069656c202573207a7572fc636b67657a6f67656e2e, 'Y', '2013-02-24 12:21:54'),
(2555, 4, 0x41756667656e6f6d6d656e657220537069656c657220777572646520656e746665726e7421, 'Y', '2013-02-24 12:21:54'),
(2556, 4, 0x4772757070656e2077757264656e20676573706569636865727421, 'Y', '2013-02-24 12:21:54'),
(2557, 4, 0x566f727363686c61672066fc7220566f72676162652066fc7220477275707065205b25735d, 'Y', '2013-02-24 12:26:47'),
(2559, 4, 0x44657220537069656c6c6569746572206e696d6d74206265726569747320616d20537069656c207465696c20756e64206b616e6e206e696368742065726e6575742065696e67656c6164656e2077657264656e2e, 'Y', '2013-02-24 12:26:47'),
(2560, 4, 0x46fc722065696e652045696e6c6164756e6720646573204e75747a65727320697374206b65696e2066726569657220506c61747a2076657266fc676261722e, 'Y', '2013-02-24 12:26:47'),
(2561, 4, 0x4e75747a6572205b25735d20686174206b65696e6520537069656c7374e4726b65, 'Y', '2013-02-24 12:26:47'),
(2562, 4, 0x4e75747a6572205b25735d20777572646520626572656974732065696e67656c6164656e206f6465722066fc722064617320537069656c2061756667656e6f6d6d656e, 'Y', '2013-02-24 12:26:47'),
(2563, 4, 0x44657220537069656c6c656974657220736f6c6c7465206b65696e6520526573657276696572756e6720686162656e20756e64206b616e6e206e6963687420656e746665726e742077657264656e2e, 'Y', '2013-02-24 12:26:47'),
(2564, 4, 0x5a75206cf6736368656e646572204e75747a6572206973742064656d20537069656c206265726569747320626569676574726574656e2e, 'Y', '2013-02-24 12:26:47'),
(2565, 4, 0x45696e652072657365727669657274652045696e6c6164756e672066fc722064656e204e75747a6572207775726465206e6963687420676566756e64656e2e, 'Y', '2013-02-24 12:26:47'),
(2566, 4, 0x526573657276696572756e6720646573207a75206cf6736368656e64656e204e75747a657273206b6f6e6e7465206e6963687420676566756e64656e2077657264656e2e, 'Y', '2013-02-24 12:26:47'),
(2581, 4, 0x537069656c2067657374617274657421, 'Y', '2013-02-24 12:28:17'),
(2583, 4, 0x537069656c206265656e646574, 'Y', '2013-02-24 12:28:17'),
(2728, 4, 0x45696e67656c6164656e, 'Y', '2013-02-24 12:28:17'),
(2729, 4, 0x537069656c656e, 'Y', '2013-02-24 12:28:17'),
(2730, 4, 0x50617373656e, 'Y', '2013-02-24 12:28:17'),
(2732, 4, 0x4265656e646574, 'Y', '2013-02-24 12:28:46'),
(2844, 4, 0x446172662069636820617566676562656e3f, 'Y', '2013-02-24 12:28:46'),
(3117, 4, 0x556e67fc6c7469676520537069656c7374e4726b65, 'Y', '2013-02-24 12:30:26'),
(3121, 4, '', 'Y', '2013-02-24 12:30:26'),
(3122, 4, 0x447261676f6e2052616e67, 'Y', '2013-02-24 12:30:26'),
(3123, 4, 0x447261676f6e20526174696e67, 'Y', '2013-02-24 12:30:26'),
(3356, 4, 0x4e75747a65727a7567, 'Y', '2013-02-24 12:30:26'),
(3357, 4, 0x4765676e65727a7567, 'Y', '2013-02-24 12:30:26'),
(3368, 4, 0x4d65696e6520fc6272696765205a656974, 'Y', '2013-02-24 12:31:34'),
(3369, 4, 0x4765676e657220fc6272696765205a656974, 'Y', '2013-02-24 12:31:34'),
(3380, 4, 0x5b25735d20686174205363687761727a2c205363687761727a20616d205a7567, 'Y', '2013-02-24 12:31:34'),
(3381, 4, 0x5363687761727a20616d205a7567, 'Y', '2013-02-24 12:32:04'),
(3387, 4, 0x5a65696765204e75747a6572696e666f, 'Y', '2013-02-24 12:32:04'),
(4530, 4, 0x4d616e75656c6c, 'Y', '2013-02-24 12:32:13'),
(4531, 4, 0x46697865204661726265, 'Y', '2013-02-24 12:32:36'),
(4555, 4, 0x4e6967697269202853696520737069656c656e207a7566e46c6c696720617573676577e4686c74205363687761727a206f64657220576569737329, 'Y', '2013-02-24 12:34:32'),
(4557, 4, 0x53696520737069656c656e205363687761727a20756e64205765697373, 'Y', '2013-02-24 12:34:32'),
(4561, 4, 0x53696520737069656c656e205765697373, 'Y', '2013-02-24 12:34:32'),
(4562, 4, 0x49636820737069656c65205765697373, 'Y', '2013-02-24 12:34:32'),
(4563, 4, 0x53696520737069656c656e205363687761727a, 'Y', '2013-02-24 12:36:26'),
(4650, 4, 0x4569646f476f20537069656c652d42726f77736572, 'Y', '2013-02-24 12:36:26'),
(4697, 4, 0x5665727465696469676572, 'Y', '2013-02-24 12:36:40'),
(5219, 4, 0x257320667265696520506ce4747a6520766f6e20257320537069656c65726e, 'Y', '2013-02-24 12:37:42'),
(5437, 4, 0x486572756e7465726c6164656e20646572207a7573e4747a6c696368656e205347462d44617465692064657220506172746965, 'Y', '2013-02-24 12:46:15'),
(5438, 4, 0x56657277616c74756e67207a7573e4747a6c696368657220534746732064657220506172746965, 'Y', '2013-02-24 12:42:15'),
(5444, 4, 0x5a7573e4747a6c69636865205347462d4461746569656e, 'Y', '2013-02-24 12:42:15'),
(5445, 4, 0x4b65696e65207a7573e4747a6c696368656e205347462d4461746569656e206765737065696368657274, 'Y', '2013-02-24 12:42:15'),
(5448, 4, 0x56657277616c7465205347462042656d65726b756e67656e, 'Y', '2013-02-24 12:42:15'),
(5449, 4, 0x5a7573e4747a6c69636865205347462d4461746569, 'Y', '2013-02-24 12:42:15'),
(5460, 4, 0x42697474652073747564696572656e2053696520646965204641512066fc7220496e737472756b74696f6e656e20776965205369652065696e65205347462d446174656920616d2062657374656e20686572756e7465726c6164656e2e, 'Y', '2013-02-24 12:46:15'),
(2789, 4, 0x446173206e6575652050617373776f72742077697264207a7566e46c6c69672065727a657567742c206b616e6e2061626572207370e4746572206e6174fc726c696368206765e46e646572742077657264656e2061756620646572205365697465207a756d2050726f66696c206265617262656974656e2e, 'Y', '2013-02-24 12:59:01'),
(5461, 4, 0x486572756e7465726c6164656e20646572205347462d4461746569204f484e45204b6f6d6d656e74617265, 'Y', '2013-02-24 12:45:20'),
(2790, 4, 0x536f776f686c20646173206e65756520616c7320617563682064617320616c74652050617373776f727420776972642067fc6c746967207365696e206269732053696520657320e46e6465726e2e, 'Y', '2013-02-24 12:59:01'),
(2791, 4, 0x4269747465206d656c64656e20536965207369636820616c7320476173742d4e75747a657220616e20756e642062656e75747a656e205369652064617320537570706f72742d466f72756d2c20756d2048696c6665207a7520657268616c74656e2028476562656e205369652049687265204e75747a65722d494420756e64204968726520456d61696c6164726573736520616e292e, 'Y', '2013-02-24 12:59:01'),
(2795, 4, 0x5369652064fc7266656e206b65696e65205475726e696572616e6d656c64756e6720647572636866fc6872656e2e20446965736573204665617475726520777572646520766f6e2041646d696e6973747261746f72656e20626c6f636b696572742e, 'Y', '2013-02-24 12:59:01'),
(2796, 4, 0x5369652064fc7266656e205475726e69657265206469657365732054797073206e696368742065727374656c6c656e2e, 'Y', '2013-02-24 12:59:01'),
(2797, 4, 0x5369652064fc7266656e20646965736573205475726e696572206e69636874206265617262656974656e2e, 'Y', '2013-02-24 12:59:01'),
(2798, 4, 0x5369652064fc7266656e206469652052756e64656e20646965736573205475726e69657273206e69636874206265617262656974656e2e, 'Y', '2013-02-24 12:59:01'),
(2799, 4, 0x45732073696e64204665686c657220626569206465722045727374656c6c756e6720646573205475726e6965727320617566676574726574656e2e, 'Y', '2013-02-24 12:59:01'),
(2800, 4, 0x44696520616e6765676562656e65205475726e6965726e657569676b6569742077757264656e206e6963687420676566756e64656e2c206f646572205369652064fc7266656e206469657365205475726e6965726e657569676b656974206e6963687420616e736568656e2e, 'Y', '2013-02-24 12:59:01'),
(2801, 4, 0x4d697420646572205475726e6965726e657569676b656974207374696d6d74206574776173206e696368742e204269747465206b6f6e74616b74696572656e205369652065696e656e205475726e6965722d41646d696e6973747261746f722e, 'Y', '2013-02-24 12:59:01'),
(1975, 4, 0x537069656c2d4944206d757373206e756d657269736368207365696e21, 'Y', '2013-02-24 13:01:04'),
(1976, 4, 0x4573207775726465206b65696e20537069656c20676566756e64656e2066fc722064696520537069656c2d4944205b25735d21, 'Y', '2013-02-24 13:01:04'),
(1957, 4, 0x56657266616c6c73646174756d, 'Y', '2013-02-24 13:01:12'),
(2177, 4, 0x4461732056657266616c6c73646174756d206d75737320696e6e657268616c6220766f6e20257320546167656e207365696e2e, 'Y', '2013-02-24 13:01:39'),
(2964, 4, 0x5475726e6965726e657569676b656974656e, 'Y', '2013-02-24 13:02:53'),
(2970, 4, 0x416267656c65686e74, 'Y', '2013-02-24 13:02:53'),
(2979, 4, 0x41646d696e2d45727374656c6c74, 'Y', '2013-02-24 13:02:53'),
(3213, 4, 0x41646d696e20416e7369636874, 'Y', '2013-02-24 13:02:53'),
(3214, 4, 0x41646d696e204e75747a65727369636874, 'Y', '2013-02-24 13:02:53'),
(3216, 4, 0x566572737465636b65205465787465, 'Y', '2013-02-24 13:02:53'),
(4653, 4, 0x4e75747a65726c69737465, 'Y', '2013-02-24 13:04:14'),
(4654, 4, 0x4e75747a65726c697374656e205761726e756e67, 'Y', '2013-02-24 13:04:14'),
(4655, 4, 0x49676e6f7269657265204e75747a65726c697374656e205761726e756e67, 'Y', '2013-02-24 13:04:14'),
(4656, 4, 0x6b616e6e206c656572207365696e, 'Y', '2013-02-24 13:04:14'),
(4658, 4, 0x5a69656c6e75747a6572, 'Y', '2013-02-24 13:04:14'),
(4659, 4, 0x4b65696e204e75747a657220676566756e64656e2066fc72204175746f72205b25735d, 'Y', '2013-02-24 13:04:14'),
(4660, 4, 0x566572f66666656e746c696368756e6773646174756d206665686c74, 'Y', '2013-03-03 14:21:30'),
(4661, 4, 0x4b617465676f726965, 'Y', '2013-02-24 13:04:14'),
(4712, 4, 0x566572f66666656e746c69636874, 'Y', '2013-02-24 13:04:48'),
(4713, 4, 0x76657266e46c6c74, 'Y', '2013-02-24 13:04:48'),
(5217, 4, 0x556e62656b616e6e746573205475726e696572205b25735d, 'Y', '2013-02-24 13:04:48'),
(5229, 4, 0x467269736368, 'Y', '2013-02-24 13:04:48'),
(3423, 4, 0x446965207363687761727a656e2056657277656973652066756e6b74696f6e696572656e2068696572206e696368742c20646120736965205661726961626c656e206572666f726465726e2e, 'Y', '2013-02-24 13:09:55'),
(3424, 4, 0x446965207363687761727a656e2056657277656973652066756e6b74696f6e696572656e2068696572206e696368742c206461207369652064696520416e6d656c64756e6720646573204e75747a657273206572666f726465726e2e, 'Y', '2013-02-24 13:09:55'),
(3417, 4, 0x5a65696765206d65696e656e20537069656c7374e4726b656e72616e67, 'Y', '2013-02-24 13:12:07'),
(3418, 4, 0x5a65696765204e75747a6572696e666f, 'Y', '2013-02-24 13:12:07'),
(3428, 4, 0x53616d6d6c756e6720646572206175662064656d205365727665722076657277656e646574656e204772617068696b656e, 'Y', '2013-02-24 13:12:07'),
(3430, 4, 0x4ce46e646572, 'Y', '2013-02-24 13:12:07'),
(4720, 4, '', 'Y', '2013-02-24 13:14:20'),
(4726, 4, 0x526567656c6e206265617262656974656e, 'Y', '2013-02-24 13:14:20'),
(5211, 4, 0x416268e46e67696720766f6e2049687265722056657273696f6e20766f6e204772656173654d6f6e6b65792c206dfc7373656e2053696520656e7477656465722064656e206e6f726d616c656e204b6c69636b206f646572205265636874732d4b6c69636b206175662064656d20676577fc6e73636874656e204e616d656e737665727765697320616e77656e64656e2c20756d2064617320536b72697074207a7520696e7374616c6c696572656e2e, 'Y', '2013-02-24 13:14:20'),
(2290, 4, 0x457267e46e7a65206e657565732046656174757265, 'Y', '2013-02-24 13:15:08'),
(2291, 4, 0x4cf6736368656e20646965736573204665617475726573, 'Y', '2013-02-24 13:15:08'),
(2567, 4, 0x45732067696274206b65696e652072657365727669657274652045696e6c6164756e672066fc7220536965207a756d2042657374e4746967656e2e, 'Y', '2013-02-25 21:33:06'),
(2568, 4, 0x44657220537069656c6c65697465722069737420756e656e74626568726c69636820756e64206b616e6e206d69742064696573657220416b74696f6e206e6963687420656e746665726e742077657264656e2e, 'Y', '2013-02-25 21:33:06'),
(2569, 4, 0x5a7520656e746665726e656e646572204e75747a6572206973742064656d20537069656c206e6963687420626569676574726574656e2e, 'Y', '2013-02-25 21:33:06'),
(2570, 4, 0x44657220626569676574726574656e6520537069656c65722c2064657220656e746665726e742077657264656e20736f6c6c2c207775726465206e6963687420676566756e64656e2e, 'Y', '2013-02-25 21:33:06'),
(2572, 4, 0x4e6963687420616c6c652072657365727669657274656e20506ce4747a652077757264656e20647572636820537069656c65722062656c656774, 'Y', '2013-02-25 21:33:06'),
(2573, 4, 0x537069656c6572205b25735d206973742064656d20537069656c206d65687220616c732065696e6d616c20626569676574726574656e, 'Y', '2013-02-25 21:33:06'),
(2575, 4, 0x446965204772757070656e205b25732c2025735d2073696e64206572666f726465726c6963682c206162657220676566756e64656e207775726465205b25735d, 'Y', '2013-02-25 21:33:06'),
(2577, 4, 0x4e7572206469652025732d477275707065206973742065726c617562742c206162657220676566756e64656e207775726465205b25735d, 'Y', '2013-02-25 21:33:06'),
(2578, 4, 0x4469652052656968656e666f6c67652064657220477275707065205b25735d206d7573732067657365747a742077657264656e, 'Y', '2013-02-25 21:33:06'),
(2579, 4, 0x4469652052656968656e666f6c67652064657220477275707065205b25735d206d75737320626569203120626567696e6e656e, 'Y', '2013-02-25 21:33:06'),
(2580, 4, 0x4469652052656968656e666f6c67652064657220477275707065205b25735d206d7573732065696e64657574696720756e642061756665696e616e646572666f6c67656e64207365696e3a20312c322c332c202e2e2e, 'Y', '2013-02-25 21:39:21'),
(2847, 4, 0x44617320537069656c206973742065696e20466f726d656e737069656c2028466f726d2023257329, 'Y', '2013-02-25 21:39:21'),
(2848, 4, 0x536965206bf66e6e656e206469652045696e6c6164756e672061756620646572204b6f6e66696775726174696f6e7373656974652064657320537069656c732062657374e4746967656e206f6465722061626c65686e656e3a202573, 'Y', '2013-02-25 21:39:21'),
(2849, 4, 0x556d206469652045696e6c6164756e672061627a756c65686e656e2c20696e666f726d696572656e205369652062697474652064656e20537069656c6c6569746572206475726368204265616e74776f7274656e20646965736572204e61636872696368742e, 'Y', '2013-02-25 21:39:21'),
(2850, 4, 0x5669656c6c6569636874206df6636874656e20536965206175636820646965205465616d6175667374656c6c756e672c204661726265206f64657220537069656c72656968656e666f6c6765206469736b7574696572656e2c2064696520536965206265766f727a7567656e202873747564696572656e205369652064617a752064696520464151292e, 'Y', '2013-02-25 21:39:21'),
(2851, 4, 0x4a65646572206265726569742064617320537069656c207a75207374617274656e3f, 'Y', '2013-02-25 21:39:21'),
(4501, 4, 0x257320286c617566656e64292c20257320284b6f6e66696775726174696f6e29, 'Y', '2013-12-31 09:51:17'),
(2421, 4, 0x4b6f6e66696775726174696f6e, 'Y', '2013-02-25 21:41:46'),
(2727, 4, 0x4d656872737069656c65727061727469652d4b6f6e6669672e, 'Y', '2013-02-25 21:41:46'),
(4698, 4, 0x5475726e696572737069656c2045726765626e6973, 'Y', '2013-02-25 21:43:34'),
(4699, 4, 0x5475726e696572737069656c20536368616c746572, 'Y', '2013-02-25 21:43:34'),
(4724, 4, 0x542d537069656c20526f6c6c65, 'Y', '2013-02-25 21:43:34'),
(5415, 4, 0x5347462d5061727365204665686c657220676566756e64656e3a202573, 'Y', '2013-02-25 21:43:34'),
(4695, 4, 0x5475726e696572737069656c20526f6c6c65, 'Y', '2013-02-25 21:43:47'),
(2963, 4, 0x5475726e69657220416e6bfc6e646967756e67, 'Y', '2013-02-25 21:45:45'),
(2965, 4, '', 'Y', '2013-02-25 21:45:53'),
(3218, 4, 0x4b617465676f72696520fc626572737072756e67656e, 'Y', '2013-02-25 21:46:22'),
(4668, 4, 0x5a69656c747970, 'Y', '2013-02-25 21:46:30'),
(3413, 4, 0x4d65696e20526174696e67204772617068, 'Y', '2013-02-25 21:47:31'),
(3414, 4, 0x4d65696e65206765776572746574656e20537069656c65, 'Y', '2013-02-25 21:47:31'),
(3438, 4, '', 'Y', '2013-02-25 21:47:31'),
(4719, 4, 0x41646d696e204d616e61676572, 'Y', '2013-02-25 21:47:31'),
(3431, 4, 0x53746174697374696b202d204ce46e646572, 'Y', '2013-02-25 21:48:03'),
(4721, 4, 0x537069656c202620537069656c7374e4726b65, 'Y', '2013-02-25 21:48:03'),
(2342, 4, 0x4772f6df65, 'Y', '2013-02-25 21:49:51'),
(2345, 4, 0x303d6e65757472616c2c203c303d6e6963687420657277fc6e736368742c203e303d657277fc6e7363687465732046656174757265, 'Y', '2013-02-25 21:49:51'),
(3229, 4, 0x4d61726b696572756e67207765636873656c6e, 'Y', '2013-02-25 21:49:51'),
(3168, 4, 0x50756e6b7465, 'Y', '2013-02-25 21:51:36'),
(3169, 4, 0x53756d6d65, 'Y', '2013-02-25 21:51:36'),
(3170, 4, 0x45696e7a656c, 'Y', '2013-02-25 21:51:36'),
(3172, 4, 0x4e6575, 'Y', '2013-02-25 21:51:36'),
(3173, 4, 0x416b746976, 'Y', '2013-02-25 21:51:36'),
(3174, 4, 0x47657363686c6f7373656e, 'Y', '2013-02-25 21:51:36'),
(3175, 4, 0x4cf6736368656e, 'Y', '2013-02-25 21:51:36'),
(3176, 4, 0x4e75747a65726c69737465, 'Y', '2013-02-25 21:51:51'),
(4662, 4, 0x416b7475656c6c657220537461747573, 'Y', '2013-02-25 21:52:06'),
(4663, 4, '', 'Y', '2013-02-25 21:52:11'),
(4664, 4, '', 'Y', '2013-02-25 21:52:14'),
(4665, 4, 0x4d696e2d50756e6b7465, 'Y', '2013-02-25 21:52:22'),
(4666, 4, 0x4d61782d50756e6b7465, 'Y', '2013-02-25 21:52:28'),
(4718, 4, 0x546974656c, 'Y', '2013-02-25 21:52:38'),
(3685, 4, '', 'Y', '2013-02-25 21:54:45'),
(3686, 4, 0xd66666656e746c696368, 'Y', '2013-02-25 21:54:45'),
(3687, 4, 0x507269766174, 'Y', '2013-02-25 21:54:45'),
(3694, 4, '', 'Y', '2013-02-25 21:54:57'),
(3695, 4, 0x4e6575, 'Y', '2013-02-25 21:54:57'),
(2633, 4, 0x466ce46368656e7ae4686c756e67, 'Y', '2013-02-27 10:07:24'),
(2726, 4, 0x46616972204b6f6d692056657268616e646c756e67, 'Y', '2013-02-27 10:07:24'),
(2841, 4, 0x556d205a656974206475726368204e75747a6572205b25735d2066fc722064617320537069656c205b25735d2068696e7a757a7566fc67656e2c2073696e642064696520426564696e67756e67656e206e6963687420657266fc6c6c742e, 'Y', '2013-02-27 10:07:24'),
(2843, 4, 0x4e696368742d537464, 'Y', '2013-02-27 10:07:24'),
(2852, 4, 0x5363687761727a2f5765697373206f646572206e696368742d67657365747a74, 'Y', '2013-02-27 10:07:24'),
(2866, 4, 0x4b6f6d696765626f742073706569636865726e, 'Y', '2013-02-27 10:07:24'),
(2895, 4, 0x5374616e64617264706c61747a696572756e672064657220566f7267616265737465696e65, 'Y', '2013-02-27 10:07:24'),
(2902, 4, 0x556e67fc6c746967657220576572742066fc72206d696e2e2067657765727465746520537069656c65205b25735d2e, 'Y', '2013-02-27 10:07:24'),
(2903, 4, 0x576572742066fc72206d696e2e2067657765727465746520537069656c6520697374206175df657268616c622064657320576572746562657265696368732e, 'Y', '2013-02-27 10:07:24'),
(2930, 4, 0x257320537069656c656e20626569676574726574656e, 'Y', '2013-02-27 10:07:24'),
(2931, 4, 0x257320537069656c20626569676574726574656e, 'Y', '2013-02-27 10:09:03'),
(3360, 4, 0x542d537069656c20537461747573, 'Y', '2013-02-27 10:09:03'),
(2678, 6, '', 'Y', '2015-06-17 05:03:21'),
(4533, 4, 0x4e75747a6572747970, 'Y', '2013-02-27 10:11:48'),
(5493, 4, 0x4e6f746966697a696572756e67656e206765e46e6465727421, 'Y', '2013-08-11 19:27:25'),
(4545, 4, 0x4b6f6e74616b746f7074696f6e2027566572737465636b652057617274657a696d6d65727061727469656e272c206d61726b69657274206d6974203c693e25733c2f693e, 'Y', '2013-04-14 12:57:17'),
(4553, 4, 0x4d616e75656c6c, 'Y', '2013-02-27 10:11:48'),
(4615, 4, 0x537069656c7374e4726b65626572656963682c207a756d20426569737069656c203c693e32356b2d32643c2f693e, 'Y', '2013-04-14 12:52:46'),
(4701, 4, 0x556872206ce475667420616d20576f6368656e6465, 'Y', '2013-02-27 10:13:36'),
(4704, 4, 0x566f7267616265747970, 'Y', '2013-02-27 10:14:26'),
(5226, 4, 0x536965206bf66e6e656e2064617320466f726d756c617220616c7320566f726c616765207a7572207370e4746572656e2056657277656e64756e672073706569636865726e2c2065696e20416e6765626f7420696d2057617274657261756d206cf6736368656e206f6465722077617274656e206269732065696e20416e6765626f7420616e67656e6f6d6d656e2077757264652e, 'Y', '2013-02-27 10:24:18'),
(5227, 4, 0x416e7a61686c2064657220537069656c652070726f20416e6765626f74206b616e6e2067657365747a742077657264656e206d69742027416e7a61686c206465722068696e7a757a7566fc67656e64656e205061727469656e272e, 'Y', '2013-02-27 10:24:18'),
(5417, 4, 0x566f7267616265204469736b726570616e7a3a2025732065727761727465742c206162657220257320676566756e64656e, 'Y', '2013-02-27 10:24:18'),
(5418, 4, 0x4b6f6d69204469736b726570616e7a3a202025732065727761727465742c206162657220257320676566756e64656e, 'Y', '2013-02-27 10:24:18'),
(5424, 4, 0x45696e676573636872e46e6b74, 'Y', '2013-02-27 10:24:18'),
(5458, 4, 0x556d2065696e65207a7573e4747a6c69636865205347462d4461746569206d69742065696e656d20537069656c2d526576696577207a752065727374656c6c656e207769726420656d70666f686c656e2c2064617320534746206f686e65204b6f6d6d656e7461726520686572756e7465727a756c6164656e2e, 'Y', '2013-02-27 10:24:18'),
(5459, 4, 0x536f6e7374206b616e6e2065732070617373696572656e2c2064617373204968726520707269766174656e204b6f6d6d656e74617265206f64657220707269766174656e205061727469656e6f74697a656e20696d207a7573e4747a6c696368656e2053474620f66666656e746c6963682065696e7365686261722073696e642e, 'Y', '2013-02-27 10:24:18'),
(3075, 4, 0x566572736368696562756e6720666f6c67656e, 'Y', '2013-02-27 10:33:02'),
(3107, 4, 0x4572737465204e616368726963687420696d204e6163687269636874656e6261756d, 'Y', '2013-02-27 10:33:02'),
(3108, 4, 0x56657277656e64656e205369652064656e206f626967656e20536368616c7465722066fc72206469657365204d656872666163682d4e6163687269636874, 'Y', '2013-02-27 10:33:02'),
(3231, 4, 0x4d61726b6965727465204e6163687269636874656e20766572736368696562656e, 'Y', '2013-02-27 10:33:02'),
(3249, 4, 0x4e6163687269636874656e7369636874, 'Y', '2013-02-27 10:33:02'),
(3253, 4, 0x45696e7374656c6c756e67656e2064657220537069656c65696e6c6164756e672076657268616e64656c6e, 'Y', '2013-02-27 10:33:02'),
(3256, 4, 0x537069656c65696e7374656c6c756e67656e206475726368, 'Y', '2013-02-27 10:33:02'),
(3257, 4, 0x6963682073656c627374, 'Y', '2013-02-27 10:33:02'),
(3258, 4, 0x446966666572656e7a656e206465722076657268616e64656c74656e2045696e7374656c6c756e67656e, 'Y', '2013-02-27 10:33:02'),
(3259, 4, 0x5374756665, 'Y', '2013-02-27 10:34:16'),
(3101, 4, 0x47535b25735d, 'Y', '2013-02-27 10:35:21'),
(2810, 4, 0x446965736572204f72646e6572206b616e6e2066fc72206469657365204f7065726174696f6e206e696368742076657277656e6465742077657264656e2e, 'Y', '2013-02-27 10:40:05'),
(2815, 4, 0x556e67fc6c7469676573205a65696368656e20696e20466f726d61627a756720676566756e64656e2e, 'Y', '2013-02-27 10:40:05'),
(2816, 4, 0x466f726d61627a75672068617420756e67fc6c746967657320466f726d61742e, 'Y', '2013-02-27 10:40:05'),
(2817, 4, 0x4469736b726570616e7a20696e20466f726d206f64657220466f726d61627a756720676566756e64656e2e, 'Y', '2013-02-27 10:40:05'),
(2819, 4, 0x4665686c656e6465204772f6df652066fc7220466f726d61627a75672064657320466f726d737069656c732e, 'Y', '2013-02-27 10:40:05'),
(2822, 4, 0x5369652064fc7266656e204665617475726573206e696368742068696e7a7566fc67656e2c206265617262656974656e206f646572206cf6736368656e2e, 'Y', '2013-02-27 10:40:05'),
(2823, 4, 0x5369652064fc7266656e20646173204665617475726520696e2064696573656d20537461747573206e69636874206265617262656974656e2e2e, 'Y', '2013-02-27 10:40:05'),
(5216, 4, 0x4573206973742049686e656e206e696368742065726c617562742c2066fc7220646965736573205468656d6120417274696b656c207a752073636872656962656e2e, 'Y', '2013-02-27 10:40:05'),
(2821, 4, 0x4461732046656174757265206b616e6e20776567656e20646166fc722061626765676562656e656e205374696d6d656e206e696368742067656cf6736368742077657264656e2e, 'Y', '2013-02-27 10:41:32'),
(2288, 4, 0x4d65696e6520466561747572657374696d6d656e, 'Y', '2013-02-27 10:58:20'),
(3316, 4, 0x4e6163687370616e6e, 'Y', '2013-02-27 10:58:20'),
(3422, 4, 0x466561747572657374696d6d656e2045726765626e6973, 'Y', '2013-02-27 10:58:20'),
(3437, 4, 0x4e696368742d67657365747a74, 'Y', '2013-02-27 10:58:20'),
(4725, 4, 0x416e6d656c64756e6773656967656e736368616674656e206265617262656974656e, 'Y', '2013-02-27 10:58:20'),
(6363, 4, 0x4772fc6e646572, 'Y', '2015-07-12 21:51:24'),
(4722, 4, 0x466561747572652d41627374696d6d756e67, 'Y', '2013-02-27 10:59:22'),
(2381, 4, 0x417274696b656c207775726465206e696368742067657370656963686572742c206461204265747265666620756e642f6f64657220546578746bf672706572206665686c742e, 'Y', '2013-02-27 11:04:47'),
(2383, 4, 0x5468656d6120dc6265727369636874, 'Y', '2013-02-27 11:04:47'),
(2385, 4, 0x5468656d6120417274696b656c, 'Y', '2013-02-27 11:04:47'),
(2387, 4, 0x45727374656e20417274696b656c20646573205468656d6173206265616e74776f7274656e, 'Y', '2013-02-27 11:04:47'),
(5215, 4, 0x4e75722d4c657365205468656d6120286e75722041646d696e204578656b7574697665206b616e6e20616e74776f7274656e29, 'Y', '2013-02-27 11:04:47'),
(1941, 4, 0x5472656666657220284c657365204d61726b657229, 'Y', '2013-02-27 11:14:56'),
(1953, 4, 0x446965204e75747a6572205b25735d20686162656e204b6f6e74616b7465696e7374656c6c756e67656e20274e6163687269636874656e2061626c65686e656e272066fc722064656e204175746f72205b25735d2064657220416e6bfc6e646967756e672067657365747a74, 'Y', '2013-02-27 11:14:56'),
(1972, 4, 0x5a69656c617274206d75737320617566205b2573206f6465722025735d2067657365747a74207365696e2c2066616c6c73204b617465676f726965205b25735d2069737421, 'Y', '2013-02-27 11:14:56');
INSERT INTO `Translations` (`Original_ID`, `Language_ID`, `Text`, `Translated`, `Updated`) VALUES
(1973, 4, 0x5475726e6965722d4944205b25735d206d757373206c656572207365696e2c2066616c6c73205a69656c617274206e69636874205b2573206f6465722025735d20756e64204b617465676f726965206e69636874205b25735d20656e747370726963687421, 'Y', '2013-02-27 11:14:56'),
(1974, 4, 0x416e6bfc6e646967756e6720646572205a69656c617274205b25735d206572666f72646572742065696e6520537069656c2d494421, 'Y', '2013-02-27 11:14:56'),
(1978, 4, 0x537069656c2d4944205b25735d206d757373206c656572207365696e2c2066616c6c73205a69656c617274206e69636874205b25735d2069737421, 'Y', '2013-02-27 11:14:56'),
(1981, 4, 0x4e75747a65726c69737465206d757373206c656572207365696e2c2066616c6c73207369636820646965205a69656c61727420e46e64657274, 'Y', '2013-02-27 11:14:56'),
(1982, 4, 0x45732073696e64205761726e756e67656e207a7572204e75747a65726c6973746520617566676574726574656e2c20646965207a7520fc6265727072fc66656e2073696e642c206265766f722064696520416e6bfc6e646967756e672067657370656963686572742077657264656e206b616e6e21, 'Y', '2013-02-27 11:14:56'),
(3220, 4, 0x556e67656c6573656e6520416e6bfc6e646967756e67656e, 'Y', '2013-02-27 11:15:23'),
(5411, 4, 0x416e736963687420626573636872e46e6b74206175662062657374696d6d7465204e75747a6572, 'Y', '2013-02-27 11:15:50'),
(1987, 4, 0x4665686c656e64652041646d696e2042656d65726b756e672066fc72204e75747a65722de46e6465726261726520416e6bfc6e646967756e67206d697420537461747573205b25735d2e, 'Y', '2013-02-27 11:30:52'),
(2969, 4, 0x556e65726c6564696774, 'Y', '2013-02-27 11:30:52'),
(2980, 4, 0x4e75747a65722dc46e646572626172, 'Y', '2013-02-27 11:30:52'),
(3194, 4, 0x5369636874626172, 'Y', '2013-02-27 11:30:52'),
(3221, 4, 0x4e75747a65722d5369636874626172, 'Y', '2013-02-27 11:30:52'),
(3222, 4, 0x53696368746261722066fc722041646d696e2c2061626572206e696368742066fc72204e75747a6572, 'Y', '2013-02-27 11:30:52'),
(4505, 4, 0x416e736963687420416e6bfc6e646967756e6720232564, 'Y', '2013-02-27 11:30:52'),
(4606, 4, 0x416e6bfc6e646967756e67206265617262656974656e, 'Y', '2013-02-27 11:30:52'),
(4607, 4, 0x416e6bfc6e646967756e672065727374656c6c656e, 'Y', '2013-02-27 11:30:52'),
(4657, 4, 0x4e75747a657220686174204b6f6e74616b7465696e7374656c6c756e67656e20274e6163687269636874656e2061626c65686e656e272066fc722064656e204175746f722064657220416e6bfc6e646967756e672067657365747a74, 'Y', '2013-02-27 11:31:42'),
(3354, 4, 0x4e75747a65722053, 'Y', '2013-02-27 11:33:46'),
(3355, 4, 0x4e75747a65722057, 'Y', '2013-02-27 11:33:46'),
(4527, 4, 0x536965207363686e656964656e2c204963682077e4686c65, 'Y', '2013-02-27 11:33:46'),
(4528, 4, 0x496368207363686e656964652c205369652077e4686c656e, 'Y', '2013-02-27 11:33:46'),
(4556, 4, 0x532b57, 'Y', '2013-02-27 11:33:46'),
(4558, 4, 0x53, 'Y', '2013-02-27 11:33:46'),
(4560, 4, 0x57, 'Y', '2013-02-27 11:33:46'),
(5225, 4, 0x446965206d61782e20416e7a61686c2064657220656967656e656e20416e6765626f746520696d2057617274657261756d205b25735d2077757264652065727265696368742e, 'Y', '2013-02-27 11:37:31'),
(5419, 4, 0x4469736b726570616e7a20696e20416e66616e6773666f726d20676566756e64656e20626569204b6f6f7264696e617465205b25735d, 'Y', '2013-02-27 11:37:31'),
(5420, 4, 0x4469736b726570616e7a20696e20416e66616e6773666f726d3a204665686c656e646520416e66616e6773737465696e6520696e20534746205b25735d, 'Y', '2013-02-27 11:37:31'),
(2951, 4, 0x537069656c666172626520776972642062657374696d6d742064757263682068f6686572657320f66666656e746c6963686573204b6f6d696765626f74, 'Y', '2013-02-27 11:39:44'),
(2952, 4, 0x537069656c666172626520776972642062657374696d6d742064757263682068f668657265732067656865696d6573204b6f6d696765626f74, 'Y', '2013-02-27 11:39:44'),
(2193, 4, 0x5072fc66756e6720616b746976696572656e2066fc722067657765727465746520537069656c65206d69742053696567206475726368205a656974fc62657273636872656974756e673a, 'Y', '2013-02-28 16:16:31'),
(2194, 4, 0x44657220536965672065696e657320537069656c73206475726368205a656974fc62657273636872656974756e672077697264207a7572fc636b676577696573656e2028696e64656d2064617320537069656c20696e2065696e206e69636874206765776572746574657320537069656c20fc62657266fc6872742077697264292c3c62723e77656e6e20646572205665726c696572657220696e2065696e65722062657374696d6d74656e205a65697420696e206b65696e656d207365696e657220537069656c652065696e656e205a75672067656d61636874206861742e, 'Y', '2013-02-28 16:16:31'),
(2195, 4, 0x4d696e696d756d20616e20546167656e2c20696e2064656e656e20646572205665726c696572657220696e206b65696e656d207365696e657220537069656c652067657a6f67656e20686174, 'Y', '2013-02-28 15:50:06'),
(2198, 4, 0x4b65696e2048696e7465726772756e6462696c64, 'Y', '2013-02-28 15:50:06'),
(2199, 4, 0x49442046656c6468696e7465726772756e6462696c64, 'Y', '2013-02-28 15:50:06'),
(2200, 4, 0x286e75722066fc722067656d757374657274652046617262652064657320486f6c7a657329, 'Y', '2013-02-28 15:50:06'),
(2201, 4, 0x536368776562656e20646572204d61757320285a65696765204b6f6f7264696e6174656e29, 'Y', '2013-02-28 15:50:06'),
(2202, 4, 0x53474620536368776562656e20646572204d61757320285a65696765205347462d4b6f6f7264696e6174656e29, 'Y', '2013-02-28 15:50:06'),
(2203, 4, 0x5a65696765204e756d6d65726e206e7572206265696d20536368776562656e, 'Y', '2013-02-28 15:50:06'),
(2207, 4, 0x5a75676d61726b696572756e67, 'Y', '2013-02-28 15:50:06'),
(2213, 4, 0x536965206dfc7373656e2065696e65203c623e27537069656c7374e4726b652720616e676562656e3c2f623e2066616c6c7320536965203c623e47455745525445544520537069656c6520737069656c656e3c2f623e20776f6c6c656e, 'Y', '2013-02-28 18:55:44'),
(2215, 4, 0x46616c6c7320536965204968726520537069656c7374e4726b6520766f6e2065696e657220616e646572656e205175656c6c652c207a2e422e20766f6e2065696e656d20616e646572656e20476f2d536572766572206f64657220766f6e2065696e6572206f6666697a69656c6c656e20526174696e676c69737465206b656e6e656e2c206bf66e6e656e205369652064656e20537069656c7374e4726b656e6b6f6e7665727465722076657277656e64656e2c20756d2065696e6520616e67656d657373656e6520537069656c7374e4726b652066fc7220444753207a752062657374696d6d656e2e, 'Y', '2013-02-28 16:04:59'),
(2216, 4, 0x536f6c6c74656e20536965204968726520537069656c7374e4726b6520fc6265726861757074206e69636874206b656e6e656e2c206bf66e6e656e2053696520696e2064656e20466f72656e20756d2048696c66652066726167656e2e2045696e20416e66e46e676572206b616e6e206d69742065696e657220537069656c7374e4726b65207a7769736368656e2032356b2d33306b20626567696e6e656e2e, 'Y', '2013-02-28 16:04:59'),
(2217, 4, 0x57697220656d706665686c656e2064656d20526174696e6773797374656d207a752076657274726175656e2c20646173206e61636820756e64206e616368204968726520537069656c7374e4726b6520616e70617373656e20776972642e20556d207363686e656c6c206175662049687265202277616872652220537069656c7374e4726b65207a75206b6f6d6d656e2068696c6674206573207669656c6520537069656c6520696e206b75727a6572205a656974207a7520737069656c656e2e, 'Y', '2013-02-28 18:56:44'),
(2219, 4, 0x3c623e2753656c62737465696e73747566756e67273c2f623e20697374206e75722065696e20696e666f726d656c6c65732046656c642c206461732064617a752067656e75747a742077657264656e206b616e6e2c204968726520537069656c7374e4726b652066fc7220616e646572652052616e672d53797374656d6520616e7a757a656967656e2c207a2e422e204b47532c204547462c2033642070726f2c206574632e, 'Y', '2013-02-28 16:04:59'),
(2220, 4, 0x446965203c623ec46e646572756e672065696e657220657461626c69657274656e20537069656c7374e4726b653c2f623e206b616e6e206e757220756e7465722062657374696d6d74656e20566f726175737365747a756e67656e20766f7267656e6f6d6d656e2077657264656e, 'Y', '2013-02-28 16:04:59'),
(2226, 4, 0x416e66726167652066fc7220c46e646572756e672064657220537069656c7374e4726b65, 'Y', '2013-02-28 16:06:23'),
(2227, 4, 0x57696368746967652042656d65726b756e67656e20fc62657220c46e646572756e67656e20616e20526174696e67202620537069656c7374e4726b65, 'Y', '2013-02-28 18:54:27'),
(2674, 4, '', 'Y', '2013-02-28 16:06:23'),
(3301, 4, 0x5665727765697320617566206265656e6465746520537069656c65206d6974204765676e6572205b25735d, 'Y', '2013-02-28 16:07:33'),
(3302, 4, 0x5665727765697320617566206c617566656e646520537069656c65206d6974204765676e6572205b25735d, 'Y', '2013-02-28 16:07:33'),
(3303, 4, 0x4765676e657220766f6e20537069656c657220253124733a2025322473, 'Y', '2013-02-28 16:07:33'),
(4595, 4, 0x556e62656b616e6e74652048617574205b25735d20617573676577e4686c74, 'Y', '2013-02-28 16:09:37'),
(4596, 4, 0x556e67fc6c7469676520537465696e6772f6df65205b25735d20617573676577e4686c742028777572646520617566205374616e6461726477657274206b6f7272696769657274292e, 'Y', '2013-02-28 16:09:37'),
(4597, 4, 0x556e67fc6c746967652046617262652064657320486f6c7a657320617573676577e4686c742028777572646520617566205374616e6461726477657274206b6f7272696769657274292e, 'Y', '2013-02-28 16:09:37'),
(5194, 4, 0x41646d696e204e75747a657220526174696e67, 'Y', '2013-02-28 16:09:49'),
(3228, 4, 0x566572e46e64657274, 'Y', '2013-02-28 16:50:41'),
(3298, 4, 0x4765676e6572697363686520537069656c65, 'Y', '2013-02-28 16:50:41'),
(4592, 4, 0x456d61696c61647265737365206665686c74207a757220416b746976696572756e6720766f6e20452d4d61696c2042656e61636872696368746967756e67656e2e, 'Y', '2013-02-28 16:50:41'),
(4593, 4, 0x556e67fc6c746967652054616765205b25735d2066fc722053696567206475726368205a656974fc62657273636872656974756e672077757264656e206b6f72726967696572742e, 'Y', '2013-02-28 16:50:41'),
(4581, 4, 0x4269747465207374656c6c656e20536965207369636865722c20646173732064617320686f636867656c6164656e652042696c64206672656920766f6e20436f707972696768742d5265636874656e20697374213c62723e416e6465726e66616c6c73206b616e6e20657320656e746665726e742077657264656e2e, 'Y', '2013-02-28 16:57:46'),
(4594, 4, 0x556e67fc6c746967652054616765205b25735d20287a752067726fdf292066fc72202753696567206475726368205a656974fc62657273636872656974756e6727207775726465206b6f72726967696572742e, 'Y', '2013-02-28 16:57:46'),
(4598, 4, 0x556e67fc6c74696765722057657274205b25735d2066fc72205a75676e756d6d6572696572756e672076657277656e646574202865726c61756274657220576572746562657265696368206973742025732e2e2573292e, 'Y', '2013-02-28 16:57:46'),
(4599, 4, 0x556e67fc6c74696765204772f6df652066fc72204e6f74697a656e20617573676577e4686c74207a756d205472656e6e656e20766f6e206b6c65696e656e20756e642067726fdf656e20427265747465726e2028777572646520617566205374616e6461726477657274206b6f7272696769657274292e, 'Y', '2013-02-28 16:57:46'),
(4600, 4, 0x556e67fc6c74696765204e6f74697a656e2d48f668652066fc72206b6c65696e65204272657474657220617573676577e4686c742028777572646520617566205374616e6461726477657274206b6f7272696769657274292e, 'Y', '2013-02-28 16:57:46'),
(2599, 4, 0x3c74743e266c743b69676f62616e20534c313e544954454c20425245545420252525252054455854266c743b2f69676f62616e3e3c2f74743e202d20476f2d4469616772616d206d697420266c743b69676f62616e3e2d746167, 'Y', '2013-02-28 17:06:20'),
(2600, 4, 0x42524554542d5a65696c656e20626567696e6e656e206d697420286f7074696f6e616c2920222424222c2065696e204c6565727a65696368656e2022202220686174205769726b756e67, 'Y', '2013-02-28 17:06:20'),
(2601, 4, 0x544558542d426c6f636b20697374206f7074696f6e616c2c2073746172746574206d6974206c6565726572205a65696c65206f6465722022252525252220756e7465722064656d204469616772616d6d, 'Y', '2013-02-28 17:06:20'),
(2602, 4, 0x544558542d426c6f636b20776972642072656368747320766f6d204469616772616d6d2067657a65696774206f64657220756e7465722069686d2066616c6c73202225252525222076657277656e6465742077697264, 'Y', '2013-02-28 17:06:20'),
(2603, 4, 0x544954454c2d466f726d61743a203c74743e24245b46617262655d5b635d5b4772f6df655d5b5a75674e725d5b546974656c5d3c2f74743e, 'Y', '2013-02-28 17:06:20'),
(2604, 4, 0x3c74743e46617262652022427c57223c2f74743e203d204661726265206465732065727374656e206e756d6d657269657274656e20537465696e73, 'Y', '2013-02-28 17:06:20'),
(2605, 4, 0x3c74743e2263223c2f74743e203d20616b746976696572742042726574746b6f6f7264696e6174656e, 'Y', '2013-02-28 17:06:20'),
(2493, 4, 0x486973746f726965, 'Y', '2013-02-28 17:14:11'),
(2494, 4, 0x5a7567, 'Y', '2013-02-28 17:14:11'),
(2495, 4, 0x5a756720737069656c656e, 'Y', '2013-02-28 17:14:11'),
(2606, 4, 0x3c74743e4772f6df653c2f74743e203d2042726574746772f6df65, 'Y', '2013-02-28 17:14:11'),
(2607, 4, 0x3c74743e5a75674e7220226d3939223c2f74743e203d205a756773746172746e756d6d657220285374616e64617264776572743a203129, 'Y', '2013-02-28 17:14:11'),
(2608, 4, 0x3c74743e546974656c3c2f74743e203d205465787420616d20756e746572656e20456e64652064657320427265747473, 'Y', '2013-02-28 17:14:11'),
(2609, 4, 0x42524554542d466f726d61742066fc72205261686d656e20756e6420427265747470756e6b74653a, 'Y', '2013-02-28 17:19:37'),
(2610, 4, 0x3c74743e222e223c2f74743e203d2066726569657220427265747470756e6b742c203c74743e222c223c2f74743e203d20486f73686920286175746f6d6174697363682c2066616c6c7320617566204272657474206e696368742076657277656e64657429, 'Y', '2013-02-28 17:19:37'),
(2611, 4, 0x4b65696e65204c6565727a65696368656e2065726c6175627420696e204b616e74656e2d646566696e696572656e6465205261686d656e6c696e69656e2c3c62723e3c74743e227c202b202d223c2f74743e203d20666f726d74204b616e74656e20696e2032746572205a65696c6520756e642042726574746b616e74652c203c74743e222b2b202d2b202b2d223c2f74743e203d204b75727a2d466f726d61742066fc72204b616e74656e, 'Y', '2013-02-28 17:14:11'),
(2612, 4, 0x3c74743e222d223c2f74743e203d206c6565727420427265747470756e6b7465206175662042726574742c203c74743e225f223c2f74743e203d20776965203c74743e222d223c2f74743e2061626572206e6963687420616e204b616e74656e, 'Y', '2013-02-28 17:19:37'),
(2613, 4, 0x42524554542d466f726d61742066fc72204469616772616d6d2d4d61726b696572756e67656e3a20223c74743e4469616772616d6d2d436f6465202d20546578742d436f64653c2f74743e203a203c74743e426573636872656962756e673c2f74743e223a, 'Y', '2013-02-28 17:19:05'),
(2614, 4, 0x3c74743e58204f202d20424f20574f3c2f74743e203a205363687761727a657220537465696e2c205765697373657220537465696e, 'Y', '2013-02-28 17:19:05'),
(2615, 4, 0x3c74743e427c57302e2e39202d20427c57312e3130303c2f74743e203a206e756d6d65726965727465207363687761727a657c77656973736520537465696e652c2057302f42303d5731302f423130, 'Y', '2013-02-28 17:19:05'),
(2616, 4, 0x3c74743e422057202d2042432057433c2f74743e203a207363687761727a65727c7765697373657220537465696e206d6974204b72656973, 'Y', '2013-02-28 17:19:05'),
(2617, 4, 0x3c74743e232040202d2042532057533c2f74743e203a207363687761727a65727c7765697373657220537465696e206d69742051756164726174, 'Y', '2013-02-28 17:19:05'),
(2618, 4, 0x3c74743e592051202d2042542057543c2f74743e203a207363687761727a65727c7765697373657220537465696e206d6974204472656965636b, 'Y', '2013-02-28 17:19:05'),
(2619, 4, 0x3c74743e5a2050202d2042582057583c2f74743e203a207363687761727a65727c7765697373657220537465696e206d6974204b7265757a, 'Y', '2013-02-28 17:19:05'),
(2620, 4, 0x3c74743e4320532054204d202d20454320455320455420454d3c2f74743e203a204b726569732051756164726174204472656965636b204b7265757a, 'Y', '2013-02-28 17:19:05'),
(2621, 4, 0x3c74743e612e2e7a202d20612e2e7a3c2f74743e203a204275636873746162656e20617566206c656572656e20427265747470756e6b74656e, 'Y', '2013-02-28 17:19:05'),
(2622, 4, 0x3c74743e412056202d2054412054563c2f74743e203a207363687761727a65737c776569737365732d5465727269746f7269756d, 'Y', '2013-02-28 17:19:05'),
(2623, 4, 0x3c74743e7e203d202d20547e20543d3c2f74743e203a206e65757472616c2d756e656e74736368696564656e6573205465727269746f7269756d2c2044616d652d5465727269746f7269756d, 'Y', '2013-02-28 17:29:29'),
(2624, 4, 0x42524554542d466f726d61742066fc72205370657a69616c6974e474656e3a, 'Y', '2013-02-28 17:29:29'),
(2625, 4, 0x3c74743e2424205b7265667c6c696e6b5d3c2f74743e203a205665727765697320657267e46e7a656e20617566203c74743e7265663c2f74743e2d4b656e6e7a656963686e756e67206175662042726574742c207a2e422e203c74743e2424205b617c4e61646172654a6f73656b695d3c2f74743e3c62723e6c696e6b203c74743e226467733a6661712e706870223c2f74743e203d205665727765697320617566204447532d53656974653c62723e6c696e6b203c74743e2223313233223c2f74743e203d205665727765697320617566204447532d5468656d656e2d416e6b657220696e204447532d466f72656e3c62723e6c696e6b203c74743e22687474703a2f2f73656e736569732e786d702e6e6574223c2f74743e203d2056657277656973206175662065787465726e652053656974653c62723e6c696e6b203c74743e224e61646172654a6f73656b69223c2f74743e203d2056657277656973206175662057696b692d5468656d61206175662053656e7365692773204c696272617279, 'Y', '2013-02-28 17:29:29'),
(2626, 4, 0x41627765696368756e67656e207a756d204f726967696e616c20534c2d466f726d61743a206b65696e652067656e61756520556e7465727374fc747a756e67206972726567756ce472657220427265747465722c2065696e66616368657265205261686d656e62696c64756e672c3c62723e5465727269746f7269756d732d4d61726b696572756e67656e2c206b65696e65204c696e69656e6d61726b696572756e67656e2c206b65696e6520506665696c6d61726b696572756e67656e2c206b65696e6520496e6c696e652d42696c646572, 'Y', '2013-02-28 17:29:29'),
(2627, 4, 0x736965686520617563682053656e7365692773204c6962726172793a203c687474703a2f2f73656e736569732e786d702e6e65742f3f486f774469616772616d73576f726b3e, 'Y', '2013-02-28 17:29:29'),
(5225, 36, 0x456cc3a97274656420612073616ac3a1742076c3a172c3b37465726d692062656a6567797ac3a973656b206d6178696dc3a16c697320737ac3a16dc3a174205b25735d2e, 'Y', '2015-09-19 18:05:23'),
(4680, 36, 0x417a20616c616b7a6174206e6576652074c3ba6c20686f73737ac3ba20286c656766656c6a656262202573206b6172616b746572206c65686574292e, 'Y', '2015-09-19 16:47:33'),
(5790, 36, 0x657265646dc3a96e7974656c656e, 'Y', '2015-09-19 16:07:18'),
(3050, 36, 0x7065727a7361, 'Y', '2015-09-19 12:54:36'),
(3047, 36, 0x616c62c3a16e, 'Y', '2015-09-19 12:54:09'),
(3041, 36, 0x686f7276c3a174, 'Y', '2015-09-19 12:53:22'),
(3031, 36, 0x65737a706572616e74c3b3, 'Y', '2015-09-19 12:52:53'),
(3020, 36, 0x6b6f72656169, 'Y', '2015-09-19 12:51:39'),
(4610, 4, 0x50617273696e672053474620676573746f7070743a204665686c6572205b25735d2062656920506f736974696f6e205b25735d20676566756e64656e21, 'Y', '2013-02-28 17:32:13'),
(3016, 36, 0x67c3b672c3b667, 'Y', '2015-09-19 12:51:39'),
(3013, 36, 0x63736568, 'Y', '2015-09-19 12:51:39'),
(2469, 4, 0x4265617262656974656e, 'Y', '2013-02-28 17:34:02'),
(2470, 4, 0x456469746965727765726b7a657567, 'Y', '2013-02-28 17:34:02'),
(2472, 4, 0x537069656c7765726b7a657567, 'Y', '2013-02-28 17:34:02'),
(2476, 4, 0x537465696e, 'Y', '2013-02-28 17:34:02'),
(2477, 4, 0x537465696e207765636873656c6e2028436c69636b3d5363687761727a2c2053686966742d436c69636b3d576569737329, 'Y', '2013-02-28 17:34:02'),
(2478, 4, 0x5365747a65207363687761727a656e20537465696e, 'Y', '2013-02-28 17:34:02'),
(2479, 4, 0x5365747a65207765697373656e20537465696e, 'Y', '2013-02-28 17:34:02'),
(2480, 4, 0x537465696e206cf6736368656e, 'Y', '2013-02-28 17:34:02'),
(2481, 4, 0x4d61726b696572756e67, 'Y', '2013-02-28 17:34:02'),
(2482, 4, 0x57656368736c65204b726569736d61726b696572756e67, 'Y', '2013-02-28 17:34:02'),
(2483, 4, 0x57656368736c652051756164726174736d61726b696572756e67, 'Y', '2013-02-28 17:35:42'),
(2484, 4, 0x57656368736c65204472656965636b736d61726b696572756e67, 'Y', '2013-02-28 17:35:42'),
(2485, 4, 0x57656368736c65204b7265757a6d61726b696572756e67, 'Y', '2013-02-28 17:35:42'),
(2486, 4, 0x57656368736c65204d61726b696572756e672066fc72207363687761727a6573205465727269746f7269756d, 'Y', '2013-02-28 17:35:42'),
(2487, 4, 0x57656368736c65204d61726b696572756e672066fc722077656973736573205465727269746f7269756d, 'Y', '2013-02-28 17:35:42'),
(2488, 4, 0x57656368736c65204d61726b696572756e672066fc722044616d652d5465727269746f7269756d, 'Y', '2013-02-28 17:35:42'),
(2489, 4, 0x57656368736c65204d61726b696572756e672066fc72206e65757472616c6573205465727269746f7269756d, 'Y', '2013-02-28 17:35:42'),
(2490, 4, 0x4b656e6e7a65696368656e, 'Y', '2013-02-28 17:35:42'),
(2491, 4, 0x57656368736c6520537465696e6e756d6d6572204b656e6e7a65696368656e, 'Y', '2013-02-28 17:35:42'),
(2492, 4, 0x57656368736c6520427563686573746162656e204b656e6e7a65696368656e, 'Y', '2013-02-28 17:35:42'),
(4717, 36, 0xc39a6a20616c616b7a61742028476f62616e20737a65726b65737a74c59162656e29, 'Y', '2015-09-19 16:50:55'),
(4715, 36, 0x4d696e64656e20616c616b7a6174, 'Y', '2015-09-19 16:50:03'),
(309, 36, 0x4265c3a16c6cc3ad74c3a1736f6b, 'Y', '2015-09-19 16:50:03'),
(4683, 36, 0xc3897276c3a96e7974656c656e206dc3a97265743a205b25735d, 'Y', '2015-09-19 16:47:33'),
(2278, 4, 0x46656174757265206b616e6e20776567656e2061626765676562656e6572205374696d6d656e206e696368742067656cf6736368742077657264656e21, 'Y', '2013-02-28 18:09:24'),
(2282, 4, 0x457267e46e7a656e205369652065696e656e204b617465676f7269652d507265666978206265696d202742657472656666272c207a2e422e2022537069656c3a204665617475726520426573636872656962756e6722, 'Y', '2013-02-28 17:53:54'),
(2283, 4, 0x457267e46e7a656e20536965207a75676568f672696765205665727765697365202855524c7329206d69742048696c66652064657320266c743b686f6d652667743b2d54616773206f64657220266c743b687474703a2f2f2e2e2e2667743b20696e2064657220426573636872656962756e67, 'Y', '2013-02-28 17:53:54'),
(2284, 4, 0x457267e46e7a656e20536965204772fc6e646520756e6420e46e6465726e205369652066fc7220537461747573e46e646572756e67656e2064696520426573636872656962756e6720656e74737072656368656e642e, 'Y', '2013-02-28 17:53:54'),
(2285, 4, 0x46726167656e205369652065696e656e20456e747769636b6c6572206e6163682064656d20496d706c656d656e74696572756e677361756677616e642066fc722064617320466561747572652e, 'Y', '2013-02-28 17:53:54'),
(2289, 4, 0x45726765626e6973736520466561747572652041627374696d6d756e67, 'Y', '2013-02-28 18:09:24'),
(2295, 4, 0x41627374696d6d656e, 'Y', '2013-02-28 17:53:54'),
(2296, 4, 0x4f6666656e, 'Y', '2013-02-28 17:53:54'),
(2302, 4, 0x41627374696d6d756e6720626573636872e46e6b74, 'Y', '2013-02-28 17:53:54'),
(2303, 4, 0x466561747572652d206f64657220566572626573736572756e6773766f727363686ce4676520736f6c6c74656e207a756572737420696e2064656e203c686f6d6520666f72756d2f696e6465782e7068703e466f72656e3c2f686f6d653e206469736b7574696572742077657264656e2e, 'Y', '2013-02-28 17:53:54'),
(2304, 4, 0x4665617475726573206bf66e6e656e2066fc72206469657365204c69737465206e757220766f6e2065696e656d20466561747572652d41646d696e20657267e46e7a742077657264656e2e, 'Y', '2013-02-28 17:59:58'),
(2306, 4, 0x2573203d204665617475726520696e204265617262656974756e67736d6f6475732c206e75722066fc7220466561747572652d41646d696e, 'Y', '2013-02-28 17:59:58'),
(2307, 4, 0x2573203d206e657565732046656174757265207a756d2041627374696d6d656e, 'Y', '2013-02-28 17:59:58'),
(2308, 4, 0x2573203d204665617475726520496d706c656d656e74696572756e6720766f6e20456e747769636b6c657220676573746172746574, 'Y', '2013-02-28 17:59:58'),
(2309, 4, 0x2573203d204665617475726520696d706c656d656e74696572742028756e64206765746573746574292c2061626572206e6f6368206e6963687420766572f66666656e746c69636874202872656c6561736529, 'Y', '2013-02-28 17:59:58'),
(2310, 4, 0x2573203d204665617475726520766572f66666656e746c69636874202872656c65617365642920756e6420696e7374616c6c69657274, 'Y', '2013-02-28 17:59:58'),
(2311, 4, 0x2573203d204665617475726520616267656c65686e74202877697264206e69636874206f646572206b616e6e206e6963687420756d67657365747a742077657264656e29, 'Y', '2013-02-28 17:59:58'),
(2313, 4, 0x41627374696d6d656e206973742066fc722064656e20476173742d4e75747a6572206e696368742065726c617562742e, 'Y', '2013-02-28 17:59:58'),
(2314, 4, 0x466561747572652d41627374696d6d756e6720777572646520766572776569676572742e, 'Y', '2013-02-28 17:59:58'),
(2318, 4, 0x50756e6b7465205b253124735d206dfc7373656e20696d20576572746562657265696368205b253224732c253324735d206c696567656e2028626573636872e46e6b742064757263682051756f74652066fc7220466561747572652d50756e6b746529, 'Y', '2013-02-28 18:04:38'),
(2319, 4, 0x53696520686162656e2025732050756e6b7465207a75722056657266fc67756e672066fc72206461732041627374696d6d656e206175662046656174757265732e, 'Y', '2013-02-28 18:04:38'),
(2321, 4, 0x4e6963687420416267657374696d6d74, 'Y', '2013-02-28 18:04:38'),
(2322, 4, 0x416267657374696d6d74, 'Y', '2013-02-28 18:04:38'),
(2326, 4, 0x41627374696d6d756e67732d4944, 'Y', '2013-02-28 18:04:38'),
(2329, 4, 0x4d65696e65205374696d6d65, 'Y', '2013-02-28 18:04:38'),
(2330, 4, 0x7a756c65747a7420616267657374696d6d74, 'Y', '2013-02-28 18:11:21'),
(2331, 4, 0x4665617475726573207a756d2041627374696d6d656e, 'Y', '2013-02-28 18:04:38'),
(2332, 4, 0x41627374696d6d656e, 'Y', '2013-02-28 18:04:38'),
(2333, 4, 0x416e73696368742041627374696d6d756e67, 'Y', '2013-02-28 18:11:21'),
(2339, 4, 0x466561747572652041627374696d6d756e6720676573706569636865727421, 'Y', '2013-02-28 18:06:28'),
(2340, 4, 0x466561747572652041627374696d6d756e67, 'Y', '2013-02-28 18:06:28'),
(2341, 4, 0x416e736963687420466561747572652041627374696d6d756e67, 'Y', '2013-02-28 18:11:21'),
(2343, 4, 0x7a756c65747a7420616267657374696d6d74, 'Y', '2013-02-28 18:12:14'),
(2346, 4, 0x41627374696d6d756e672073706569636865726e, 'Y', '2013-02-28 18:06:28'),
(2348, 4, 0x257320286b65696e65205374696d6d6529, 'Y', '2013-02-28 18:12:14'),
(4609, 4, 0x4d65696e652046656174757265205374696d6d656e, 'Y', '2013-02-28 18:06:28'),
(4652, 4, 0x4b65696e65205374696d6d65, 'Y', '2013-02-28 18:12:14'),
(5198, 4, 0x416b7475656c6c65205374696d6d65, 'Y', '2013-02-28 18:12:14'),
(5213, 4, 0x4d61726b69657265207a756d205365747a656e206e65757472616c65722041627374696d6d756e67, 'Y', '2013-02-28 18:06:28'),
(5214, 4, 0x4e65757472616c2061627374696d6d656e, 'Y', '2013-02-28 18:07:00'),
(2095, 4, 0x416b7475656c6c657220547970, 'Y', '2013-02-28 18:18:22'),
(2106, 4, 0x41627374696d6d756e6773204e75747a6572, 'Y', '2013-02-28 18:18:22'),
(2109, 4, 0x4665686c656e64657320266c743b6f70743e2d74616720696e20556d66726167656e2d4f7074696f6e73746578742e, 'Y', '2013-02-28 18:18:22'),
(2110, 4, 0x46616c736368652053796e74617820756d2025732e20266c743b6f70743e20676566756e64656e3a20266c743b6f70743e20756e766f6c6c7374e46e646967, 'Y', '2013-02-28 18:18:22'),
(2111, 4, 0x5461672d4b656e6e7a65696368656e205b25735d20696e2025732e20266c743b6f70743e20626572656974732076657277656e6465742e, 'Y', '2013-02-28 18:18:22'),
(2112, 4, 0x45727761727465204e756d6d65722066fc72205461672d4b656e6e7a65696368656e20696e2025732e20266c743b6f70743e20696d205765727465626572656963682025732c206162657220776172205b25735d2e, 'Y', '2013-02-28 18:18:22'),
(2113, 4, 0x45727761727465204e756d6d65722066fc72204d696e2d50756e6b746520696e2025732e20266c743b6f70743e20696d20576572746562657265696368202573206f646572206c656572657220576572742066fc72205374616e64617264776572742c206162657220776172205b25735d2e, 'Y', '2013-02-28 18:18:22'),
(2114, 4, 0x4e757220576572742030206973742066fc72204d696e2d50756e6b74652065726c6175627420696e2025732e20266c743b6f70743e2e, 'Y', '2013-02-28 18:18:22'),
(2115, 4, 0x576572742030206973742066fc72204d696e2d50756e6b7465206e696368742065726c6175627420696e2025732e20266c743b6f70743e2e, 'Y', '2013-02-28 18:22:11'),
(2116, 4, 0x4e757220576572742031206973742066fc72204d696e2d50756e6b74652065726c6175627420696e2025732e20266c743b6f70743e2e, 'Y', '2013-02-28 18:22:11'),
(2117, 4, 0x556d66726167652d4f7074696f6e732d546974656c20696e2025732e20266c743b6f70743e206665686c742e, 'Y', '2013-02-28 18:22:11'),
(2118, 4, 0x556e766f6c6c7374e46e64696765732054616720266c743b6f70743e20696e20fc62726967656d205465787420676566756e64656e, 'Y', '2013-02-28 18:22:11'),
(2119, 4, 0x45727761727465205461672d4b656e6e7a65696368656e20696d2065726c61756274656e205765727465626572656963682025732e, 'Y', '2013-02-28 18:22:11'),
(2120, 4, 0x4572776172746520257320556d66726167652d4f7074696f6e656e2c206162657220676566756e64656e2077757264656e205b25735d2e, 'Y', '2013-02-28 18:22:11'),
(2121, 4, 0xc46e646572756e672064657220556d66726167652d4f7074696f6e656e20697374206e69636874206df6676c69636820776567656e20626572656974732061626765676562656e6572204e75747a65722d5374696d6d656e2e, 'Y', '2013-02-28 18:22:11'),
(2122, 4, 0x446173204cf6736368656e2064657220556d66726167652d4f7074696f6e206d697420546167205b25735d20697374206e69636874206df6676c69636820776567656e20626572656974732061626765676562656e6572204e75747a65722d5374696d6d656e2e, 'Y', '2013-02-28 18:22:11'),
(2495, 40, 0x4d6f7374726172206a6f67616461, 'Y', '2014-04-11 14:07:57'),
(2493, 40, 0x48697374f37269636f, 'Y', '2014-04-11 14:07:57'),
(2125, 4, 0x4d696e2d50756e6b7465206dfc7373656e206b6c65696e657220616c73204d61782d50756e6b7465207365696e2e, 'Y', '2013-02-28 18:25:30'),
(2126, 4, 0x56657277656e64652025732d54797020616e73746174742c2066616c6c73204d696e2d50756e6b746520756e64204d61782d50756e6b746520676c656963682067726fdf2073696e642e, 'Y', '2013-02-28 18:25:30'),
(2127, 4, 0x56657277656e64652025732d54797020616e73746174742c2066616c6c732064696520446966666572656e7a20766f6e204d696e2d20756e64204d61782d50756e6b74656e206e757220312062657472e467742e, 'Y', '2013-02-28 18:25:30'),
(2128, 4, 0x56657277656e64652025732d54797020616e73746174742c2066616c6c73204d61782d50756e6b7465206e757220312062657472e467742e, 'Y', '2013-02-28 18:25:30'),
(2475, 40, 0x4e6f766f20746162756c6569726f, 'Y', '2014-04-11 14:06:24'),
(2472, 40, 0x46657272616d656e746173206465206a6f676f, 'Y', '2014-04-11 14:06:24'),
(3182, 4, 0x4d65696e65205374696d6d65, 'Y', '2013-02-28 18:27:50'),
(3183, 4, 0x416c6c65205374696d6d656e, 'Y', '2013-02-28 18:27:50'),
(3184, 4, 0x42656d65726b756e67656e3a2025732c202573, 'Y', '2013-02-28 18:27:50'),
(4511, 4, 0x41627374696d6d756e6720676573706569636865727421, 'Y', '2013-02-28 18:27:50'),
(4512, 4, 0x556d667261676520416e736963687420232564, 'Y', '2013-02-28 18:27:50'),
(4513, 4, 0x556d6672616765206265617262656974656e, 'Y', '2013-02-28 18:27:50'),
(4667, 4, 0x556d66726167652d4f7074696f6e656e, 'Y', '2013-02-28 18:28:03'),
(2094, 4, 0x41627374696d6d756e67205465696c6e65686d65727a61686c, 'Y', '2013-02-28 18:35:05'),
(2104, 4, 0x426573636872e46e6b756e6720766f6e204e75747a65726e207a756d2041627374696d6d656e20fc62657220556d66726167656e2c204e75747a65722d4944202854657874206f646572204e756d65726973636829, 'Y', '2013-02-28 18:35:05'),
(2131, 4, 0x4d696e2d4175737761686c206d757373206b6c65696e657220616c73204d61782d4175737761686c207365696e2e, 'Y', '2013-02-28 18:36:22'),
(2132, 4, 0x4d696e2d20756e64204d61782d4175737761686c2064fc7266656e206e6963687420676c65696368207365696e3a2065732069737420756e73696e6e696720616c6c65204f7074696f6e656e206175737a7577e4686c656e, 'Y', '2013-02-28 18:36:22'),
(2133, 4, 0x56657277656e64652025732d54797020616e73746174742c2066616c6c73204d61782d4175737761686c206e75722031206973742e, 'Y', '2013-02-28 18:36:22'),
(2134, 4, 0x45727761727465205765727420302066fc72204d696e2d50756e6b74652c206162657220776172205b25735d2e, 'Y', '2013-02-28 18:49:11'),
(2135, 4, 0x45727761727465205765727420302066fc72204d61782d50756e6b74652c206162657220776172205b25735d2e, 'Y', '2013-02-28 18:49:11'),
(2137, 4, 0x576572742066fc72204d61782d4175737761686c205b25735d206b616e6e2064696520416e7a61686c20616e20556d66726167652d4f7074696f6e656e205b25735d206e6963687420fc6265727374656967656e2e, 'Y', '2013-02-28 18:49:11'),
(3177, 4, 0x556d66726167652d41627374696d6d756e6720777572646520766572776569676572742e, 'Y', '2013-02-28 18:49:11'),
(3178, 4, 0x5369652073696e6420616e2064696573657220556d6672616765206e69636874207465696c6e61686d65626572656368746967742c20646120736965206175662065696e652062657374696d6d7465204175737761686c20616e204e75747a65726e20626573636872e46e6b74206973742e, 'Y', '2013-02-28 18:49:11'),
(3179, 4, 0x556d207465696c6e61686d6562657265636874696774207a756d2041627374696d6d656e20fc62657220646965736520556d6672616765207a75207365696e2c206dfc7373656e2053696520616b74697620737069656c656e2e, 'Y', '2013-02-28 18:49:11'),
(3180, 4, 0x536965206dfc7373656e20696e73676573616d742025732050756e6b7465206265696d2041627374696d6d656e20fc62657220616c6c65204f7074696f6e656e20766572676562656e2e, 'Y', '2013-02-28 18:49:11'),
(3181, 4, 0x536965206bf66e6e656e20626973207a7520257320416c7465726e61746976656e2066fc722049687265205374696d6d652061757377e4686c656e2e, 'Y', '2013-02-28 18:49:11'),
(4510, 4, 0x4469652041627374696d6d756e6720697374206e7572206df6676c6963682066fc7220556d66726167656e20617566202573205374617475732e, 'Y', '2013-02-28 18:49:11'),
(4514, 4, 0x536965206dfc7373656e20696e73676573616d74206d696e64657374656e732025732050756e6b74286529206265696d2041627374696d6d656e20766572676562656e2c20686162656e206a65646f6368206e75722025732050756e6b7428652920766572676562656e2e, 'Y', '2013-02-28 18:49:11'),
(4515, 4, 0x5369652064fc7266656e20696e73676573616d74206e69636874206d65687220616c732025732050756e6b7428652920766572676562656e2c20686162656e206a65646f63682025732050756e6b7428652920766572676562656e2e, 'Y', '2013-02-28 18:51:01'),
(4516, 4, 0x536965206dfc7373656e206d696e64657374656e7320257320416c7465726e61746976656e2061757377e4686c656e2c20686162656e206a65646f6368206e757220257320617573676577e4686c742e, 'Y', '2013-02-28 18:51:01'),
(4517, 4, 0x5369652064fc7266656e206e69636874206d65687220616c7320257320416c7465726e61746976656e2061757377e4686c656e2c20686162656e206a65646f636820257320617573676577e4686c742e, 'Y', '2013-02-28 18:51:01'),
(4601, 4, 0x556e67fc6c74696765204e6f74697a656e2d48f668652066fc722067726fdf65204272657474657220617573676577e4686c742028777572646520617566205374616e6461726477657274206b6f7272696769657274292e, 'Y', '2013-02-28 18:59:42'),
(4602, 4, 0x556e67fc6c74696765204e6f74697a656e2d4272656974652066fc72206b6c65696e65204272657474657220617573676577e4686c742028777572646520617566205374616e6461726477657274206b6f7272696769657274292e, 'Y', '2013-02-28 18:59:42'),
(4603, 4, 0x556e67fc6c74696765204e6f74697a656e2d4272656974652066fc722067726fdf65204272657474657220617573676577e4686c742028777572646520617566205374616e6461726477657274206b6f7272696769657274292e, 'Y', '2013-02-28 18:59:42'),
(2221, 4, 0x426974746520626561636874656e205369652c20646173732064617320526174696e672d53797374656d73206465732053657276657273207a75206265766f727a7567656e206973742c20756d204968726520537069656c7374e4726b6520616e70617373656e207a75206c617373656e2e204a65206d6568722067657765727465746520537069656c6520536965206265656e64656e2c20646573746f207363686e656c6c65722077657264656e2053696520617563682049687265202277616872652220537069656c7374e4726b652065727265696368656e2e, 'Y', '2013-02-28 20:21:51'),
(2222, 4, 0x45696e6520526174696e672d52fc636b7365747a756e672fc46e646572756e67206b616e6e206e6f726d616c657277656973652065696e6d616c2070726f204a61687220616e676566726167742077657264656e2e, 'Y', '2013-02-28 20:21:51'),
(3388, 25, 0x5475726e65656c65206d656c65, 'Y', '2014-11-15 22:10:27'),
(5581, 25, 0x63617574c48320c3ae6e20646f63756d656e7461c5a3696120736974652d756c7569, 'Y', '2014-11-15 22:14:20'),
(5584, 25, 0x616669c59f65617ac483206f666572746520646520706172746964652064696e2070617274656120616c746f72207574696c697a61746f7269, 'Y', '2014-11-15 22:15:59'),
(5714, 25, 0x416669c59f61726520736368696d62c483726920636f74617265, 'Y', '2014-11-26 10:14:07'),
(2920, 25, 0x4e722e206d696e2e206465207061727469646520636f74617465207465726d696e617465, 'Y', '2014-11-14 11:29:35'),
(4535, 25, 0x52657374726963c5a36969, 'Y', '2014-11-14 11:31:28'),
(2225, 4, 0x53636872656962656e205369652065696e6520416e667261676520696d20537570706f72742d466f72756d206d69742064656d204265747265666620222573222e2045696e20537069656c652d41646d696e20776972642064616e6e204968726520416e6672616765207072fc66656e20756e642061757366fc6872656e2e3c62723e0d0a4269747465206d616368656e205369652064617a752064696520666f6c67656e64656e20416e676162656e3a20496872206e65756572204447532d52616e673b205175656c6c656e2c2064696520496872656e2052616e67207665726966697a696572656e2c206265766f727a756774206d697420416e67616265206465722065787465726e656e204e75747a65722d4944732c207a2e422e20766f6e20616e646572656e20476f2d5365727665726e2c206f6666697a69656c6c656e20526174696e676c697374656e20284273703a204547462c204147412c20657463293b20456d706665686c756e67656e20766f6e20616e646572656e20537069656c65726e2f4c65687265726e206d69742068f6686572657220537069656c7374e4726b6520616c732049687265722e2046fc722052e46e676520756e6420526174696e677320766f6e20616e646572656e205365727665726e2c2076657277656e64656e20536965207a75657273742064656e206f626967656e20537069656c7374e4726b656e6b6f6e766572746572207a75722042657374696d6d756e672065696e65732052616e677320617566204447532e, 'Y', '2013-02-28 20:29:13'),
(3589, 4, 0x5475726e696572726567656c6e20676573706569636865727421, 'Y', '2013-02-28 20:32:03'),
(3590, 4, 0x5475726e696572726567656c20456469746f72, 'Y', '2013-02-28 20:32:03'),
(3591, 4, 0x5475726e696572726567656c6e2073706569636865726e, 'Y', '2013-02-28 20:32:03'),
(3603, 4, 0x5475726e6965722d53746174757320676573706569636865727421, 'Y', '2013-02-28 20:32:23'),
(3604, 4, 0x5475726e6965722d53746174757320456469746f72, 'Y', '2013-02-28 20:32:23'),
(3628, 4, 0x5475726e69657220456469746f72, 'Y', '2013-02-28 20:34:01'),
(3629, 4, 0x496e69746961746f72, 'Y', '2013-02-28 20:34:01'),
(3630, 4, 0x417373697374656e742d547970, 'Y', '2013-02-28 20:34:01'),
(3631, 4, 0x52756e64656e, 'Y', '2013-02-28 20:34:49'),
(3632, 4, 0x28c46e646572756e67206d697420536f726766616c742c206e75722064757263682041646d696e29, 'Y', '2013-02-28 20:34:49'),
(3633, 4, 0x456e647a65697470756e6b74, 'Y', '2013-02-28 20:34:49'),
(3634, 4, 0x5475726e6965722073706569636865726e, 'Y', '2013-02-28 20:35:08'),
(3635, 4, 0x566f72736368617520546974656c, 'Y', '2013-02-28 20:35:08'),
(3636, 4, 0x566f72736368617520426573636872656962756e67, 'Y', '2013-02-28 20:35:08'),
(3643, 4, 0x5475726e696572626573636872656962756e67206665686c74206f64657220697374207a75206b75727a, 'Y', '2013-02-28 20:36:13'),
(3649, 4, 0x5475726e696572737069656c2041646d696e, 'Y', '2013-02-28 20:36:13'),
(3660, 4, 0x537069656c65726765626e6973207365747a656e, 'Y', '2013-02-28 20:36:13'),
(3662, 4, 0x536965676520766f6e, 'Y', '2013-02-28 20:36:13'),
(3668, 4, 0x5a6569742068696e7a7566fc67656e2066fc72205475726e696572737069656c, 'Y', '2013-02-28 20:36:13'),
(3681, 4, 0x5369652073696e642065696e205475726e6965722d41646d696e2e, 'Y', '2013-02-28 20:36:55'),
(3682, 4, 0x5369652073696e642064657220496e69746961746f7220646573205475726e696572732e, 'Y', '2013-02-28 20:36:55'),
(3683, 4, 0x5369652073696e642065696e204c656974657220646965736573205475726e696572732e, 'Y', '2013-02-28 20:36:55'),
(3711, 4, 0x5475726e6965722069737420696d2057617274756e67736d6f6475732028257329, 'Y', '2013-02-28 20:37:28'),
(3718, 4, 0x496e6974, 'Y', '2013-02-28 20:38:41'),
(3719, 4, 0x537069656c, 'Y', '2013-02-28 20:38:41'),
(3720, 4, 0x45726765626e6973, 'Y', '2013-02-28 20:38:41'),
(3721, 4, 0x57617274656e, 'Y', '2013-02-28 20:38:41'),
(3722, 4, 0x466572746967, 'Y', '2013-02-28 20:38:41'),
(3736, 4, 0x506f6f6c20257320766f6e202573, 'Y', '2013-02-28 20:38:41'),
(2305, 40, 0x5369747561e7e36f2064612046756e63696f6e616c6964616465, 'Y', '2014-04-11 14:04:00'),
(3716, 4, 0x537069656c656e6465, 'Y', '2013-02-28 20:40:17'),
(3717, 4, 0x5a6569742068696e7a75676566fc6774, 'Y', '2013-02-28 20:40:17'),
(3738, 4, 0x257320537069656c652065727a657567742066fc7220506f6f6c20232573, 'Y', '2013-02-28 20:40:17'),
(3740, 4, 0x44696520616b7475656c6c65205475726e69657272756e6465206b616e6e206e6963687420656e746665726e742077657264656e2e, 'Y', '2013-02-28 20:40:17'),
(3743, 4, 0x536965206bf66e6e656e206e757220646965206c65747a7465205475726e69657272756e64652023257320656e746665726e656e2e, 'Y', '2013-02-28 20:40:17'),
(2299, 40, 0x4174697661, 'Y', '2014-04-11 14:04:00'),
(3760, 4, 0x456e746665726e756e6720766f6e205475726e69657220232573, 'Y', '2013-02-28 20:42:27'),
(3798, 4, 0x536965206bf66e6e656e206e75722065696e206c617566656e64657320537069656c2070726f204765676e657220686162656e2e, 'Y', '2013-02-28 20:42:27'),
(3807, 4, 0x31204d6f6e6174, 'Y', '2013-02-28 20:42:51'),
(3808, 4, 0x2573204d6f6e617465, 'Y', '2013-02-28 20:42:51'),
(3825, 4, 0x4772656e7a656e, 'Y', '2013-02-28 20:42:51'),
(3839, 4, 0x5a656967656e, 'Y', '2013-02-28 20:44:08'),
(3840, 4, 0x41726368697669657274, 'Y', '2013-02-28 20:44:08'),
(3841, 4, 0x4cf6736368656e, 'Y', '2013-02-28 20:44:08'),
(3842, 4, 0x566572737465636b74, 'Y', '2013-02-28 20:44:08'),
(3843, 4, 0x507269766174, 'Y', '2013-02-28 20:44:08'),
(3333, 11, 0x546f65726e6f6f69, 'Y', '2013-08-16 19:26:11'),
(1505, 11, 0x4a75697374652068616e646963617020286b6f6d692061616e67657061737420646f6f72207379737465656d29, 'Y', '2016-07-30 11:47:06'),
(3163, 11, '', 'Y', '2016-07-30 11:41:48'),
(3849, 4, 0x5369652073696e642066fc7220646965736573205475726e696572206e6963687420616e67656d656c6465742e, 'Y', '2013-02-28 20:44:08'),
(3851, 4, 0x5369652073696e642066fc7220646965736573205475726e69657220616e67656d656c6465742e, 'Y', '2013-02-28 20:44:38'),
(3853, 4, 0x45696e67656c6164656e, 'Y', '2013-02-28 20:44:38'),
(3862, 4, 0x45727761727465206d696e64657374656e732065696e656e20506f6f6c2e, 'Y', '2013-02-28 20:46:49'),
(3863, 4, 0x4572776172746520257320506f6f6c732c206162657220616b7475656c6c206769627420657320257320506f6f6c732e, 'Y', '2013-02-28 20:46:49'),
(3865, 4, 0x4573206769627420257320616e67656d656c6465746520537069656c65722c20646965206e6963687420696e2064656e20506f6f6c73206175667461756368656e2e, 'Y', '2013-02-28 20:46:49'),
(3866, 4, 0x45732067696274202573206e69636874207a7567657465696c746520537069656c65722e2042697474652077656973656e205369652064696573652065696e656d20506f6f6c207a7521, 'Y', '2013-02-28 20:46:49'),
(3872, 4, 0x45732067696274202573206c6565726520506f6f6c732e2042697474652066fc6c6c656e206f64657220656e746665726e656e2053696520646965736521, 'Y', '2013-02-28 20:46:49'),
(3891, 4, 0x537069656c6572206f686e6520506f6f6c2d5a757465696c756e67, 'Y', '2013-02-28 20:46:49'),
(3892, 4, '', 'Y', '2013-02-28 20:46:49'),
(3893, 4, 0x506f6f6c20257320286c65657229, 'Y', '2013-02-28 20:47:06'),
(3895, 4, 0x416e7a61686c, 'Y', '2013-02-28 20:47:06'),
(3926, 4, 0x5475726e69657272756e64656e2d537461747573, 'Y', '2013-02-28 20:47:36'),
(3929, 4, 0x4d6178696d756d20506f6f6c20416e7a61686c, 'Y', '2013-02-28 20:47:36'),
(3933, 4, '', 'Y', '2013-02-28 20:48:10'),
(3934, 4, '', 'Y', '2013-02-28 20:48:10'),
(3935, 4, 0x5061617262696c64756e67, 'Y', '2013-03-03 13:47:22'),
(3936, 4, 0x537069656c, 'Y', '2013-02-28 20:48:10'),
(3937, 4, 0x466572746967, 'Y', '2013-02-28 20:48:10'),
(3961, 4, 0x28206765e46e6465727420766f6e2025732029, 'Y', '2013-02-28 20:48:40'),
(3969, 4, 0x556e62656b616e6e7465204e75747a65722d4944, 'Y', '2013-02-28 20:48:40'),
(3983, 4, 0x536f727469657274206e616368, 'Y', '2013-02-28 20:49:15'),
(3988, 4, 0x4cf6736368756e672062657374e4746967656e, 'Y', '2013-02-28 20:49:15'),
(3991, 4, 0x5465696c6e65686d6572206265617262656974656e, 'Y', '2013-02-28 20:49:15'),
(4003, 4, 0x4e75747a6572207769726420646172fc626572204e494348542062656e61636872696368746967742e20416c6c65205475726e6965726c656974657220756e642064657220496e69746961746f722077657264656e2062656e61636872696368746967742e, 'Y', '2013-02-28 20:50:26'),
(4007, 4, 0x446572204e75747a657220776972642068696572fc6265722062656e61636872696368746967742e, 'Y', '2013-02-28 20:50:26'),
(4008, 4, 0x446572204e75747a657220776972642068696572fc626572204e494348542062656e61636872696368746967742e, 'Y', '2013-02-28 20:50:26'),
(4028, 4, 0x6c6565726c617373656e207a756d204465616b746976696572656e, 'Y', '2013-02-28 20:51:23'),
(4046, 4, 0x5765727420223022207a756d204162736368616c74656e206465732046656174757265732076657277656e64656e21, 'Y', '2013-02-28 20:51:23'),
(4049, 4, 0x566f72736368617520456967656e736368616674656e, 'Y', '2013-02-28 20:51:23'),
(4109, 4, 0x486965722073696e6420536965, 'Y', '2013-02-28 20:52:27'),
(4120, 4, 0x5475726e6965726c656974657220232564, 'Y', '2013-02-28 20:52:27'),
(4121, 4, 0x5475726e6965726c656974657220766f6e205b25735d, 'Y', '2013-02-28 20:52:27'),
(4123, 4, 0x5b5475726e696572202325645d, 'Y', '2013-02-28 20:52:27'),
(4180, 4, 0x4d65696e65205475726e69657220616c73205465696c6e65686d6572, 'Y', '2013-02-28 20:53:30'),
(4181, 4, 0x4d65696e65205475726e69657220616c73205475726e6965726c6569746572, 'Y', '2013-02-28 20:53:30'),
(4183, 4, 0x5475726e6965722056657277616c74756e67, 'Y', '2013-02-28 20:53:30'),
(4184, 4, 0x4968726520526f6c6c656e, 'Y', '2013-02-28 20:53:30'),
(4212, 4, 0x506f6f6c7320616e6c6567656e, 'Y', '2013-02-28 20:55:36'),
(4213, 4, 0x506f6f6c73206265617262656974656e, 'Y', '2013-02-28 20:55:36'),
(4214, 4, 0x506f6f6c7320616e736568656e, 'Y', '2013-02-28 20:55:36'),
(4218, 4, 0x537069656c205061617262696c64756e67206265617262656974656e, 'Y', '2013-03-03 13:47:22'),
(4222, 4, 0x537069656c2d49442065696e676562656e, 'Y', '2013-02-28 20:55:36'),
(4227, 4, 0x45696e6c6164756e6720616e67656e6f6d6d656e21, 'Y', '2013-02-28 20:55:36'),
(4228, 4, 0x45696e6c6164756e6720616267656c65686e7420756e6420696e20426577657262756e6720756d676577616e64656c7421, 'Y', '2013-02-28 20:55:36'),
(4229, 4, 0x5b4665686c65725d3a204573206973742049686e656e206e696368742065726c6175627420736963682066fc7220646965736573205475726e69657220616e7a756d656c64656e, 'Y', '2013-02-28 20:55:36'),
(4230, 4, 0x5b5761726e756e675d3a204573206973742049686e656e206e6f726d616c65727765697365206e696368742065726c617562742c20736963682066fc7220646965736573205475726e6965722065726e65757420616e7a756d656c64656e, 'Y', '2013-02-28 20:55:36'),
(4231, 4, 0x45696e6c6164756e6720616e6e65686d656e, 'Y', '2013-02-28 20:55:36'),
(4232, 4, 0x45696e6c6164756e67206265617262656974656e, 'Y', '2013-02-28 20:58:23'),
(4233, 4, 0x5475726e69657220416e6d656c64756e672066fc72205b25735d, 'Y', '2013-02-28 20:58:23'),
(4237, 4, 0x46726167656e20756e6420537570706f72742d416e66726167656e207a752064696573656d205475726e696572206bf66e6e656e20616e20646965205475726e6965726c6569746572206765726963687465742077657264656e2e, 'Y', '2013-02-28 20:58:23'),
(4248, 4, 0x45732067696274206b65696e65206578697374696572656e64656e20506f6f6c73207a756d204cf6736368656e, 'Y', '2013-02-28 20:58:23'),
(4253, 4, 0x506f6f6c7320766f72626572656974656e, 'Y', '2013-02-28 20:58:23'),
(4254, 4, 0x4573206769627420257320616267656c6567746520506f6f6c73206d697420257320537069656c65726e2066fc722064696520616b7475656c6c65205475726e69657272756e646520232573, 'Y', '2013-02-28 20:58:23'),
(4255, 4, 0x4cf67363686520616c6c6520626573746568656e64656e20506f6f6c73, 'Y', '2013-02-28 20:58:23'),
(4256, 4, 0x506f6f6c73206cf6736368656e, 'Y', '2013-02-28 20:58:23'),
(4257, 4, 0x42697474652062657374e4746967656e2053696520646965204cf6736368656e20616c6c657220506f6f6c73, 'Y', '2013-02-28 20:58:23'),
(4258, 4, 0x4cf6736368656e2062657374e4746967656e, 'Y', '2013-02-28 20:58:54'),
(4272, 4, 0x5475726e69657272756e646520676573706569636865727421, 'Y', '2013-02-28 21:01:32'),
(4276, 4, 0x506f6f6c732073706569636865726e, 'Y', '2013-02-28 21:01:32'),
(4278, 4, 0x5363686c61676520506f6f6c706172616d6574657220766f72, 'Y', '2013-02-28 21:01:32'),
(4279, 4, 0x5475726e696572706f6f6c204b6f6e66696775726174696f6e, 'Y', '2013-02-28 21:01:32'),
(4280, 4, 0x506f6f6c20566f727363686ce46765, 'Y', '2013-02-28 21:01:32'),
(4283, 4, 0x2573203d206d6178696d616c6520537069656c65722d4b6170617a6974e4742066fc7220617573676577e4686c746520506f6f6c6772f6df6520756e6420416e7a61686c, 'Y', '2013-02-28 21:01:32'),
(4285, 4, 0x2573203d20416e7a61686c206665686c656e64657220537069656c65722066fc7220566f6c6c6175736c617374756e6720616c6c657220506f6f6c73, 'Y', '2013-02-28 21:01:32'),
(6006, 40, 0x456d70617465, 'Y', '2014-04-09 08:30:31'),
(6015, 40, 0x417669736f73, 'Y', '2014-04-09 08:30:31'),
(4313, 4, 0x5475726e696572737069656c652065727374656c6c656e, 'Y', '2013-02-28 21:03:42'),
(4316, 4, 0x45696e6d616c206765737461727465742064617266206465722045727374656c6c756e677370726f7a657373206e69636874206162676562726f6368656e2077657264656e2e2044657220466f727473636872697474206465722045727374656c6c756e67207769726420616e67657a656967742e, 'Y', '2013-02-28 21:03:42'),
(5132, 40, 0x6e6120726f64616461, 'Y', '2015-02-04 13:49:41'),
(5860, 40, 0x706c6163617220646f206a6f676f, 'Y', '2014-04-09 08:29:21'),
(4323, 4, 0x56657273756368656e205369652065726e6575742064696520726573746c696368656e20537069656c65207a752065727374656c6c656e206f646572206b6f6e74616b74696572656e205369652065696e656e205475726e6965722d41646d696e2e, 'Y', '2013-02-28 21:07:04'),
(4324, 4, 0x506f6f6c706172616d65746572206dfc7373656e20646566696e696572742077657264656e206265766f72205369652064656e20506f6f6c7320537069656c6572207a7577656973656e206bf66e6e656e21, 'Y', '2013-02-28 21:07:04'),
(4325, 4, 0x506f6f6c6175737761686c20232573206d69742057657274205b25735d2069737420756e67fc6c7469672c206d75737320696d20576572746562657265696368202573206c696567656e, 'Y', '2013-02-28 21:07:04'),
(4326, 4, 0x506f6f6c205b25735d2066fc72205a757465696c756e672069737420756e67fc6c7469672c206d75737320696d20576572746562657265696368202573206c696567656e, 'Y', '2013-02-28 21:07:04'),
(4327, 4, 0x4175737761686c, 'Y', '2013-02-28 21:07:04'),
(4329, 4, 0x506f6f6c73207a656967656e, 'Y', '2013-02-28 21:07:04'),
(4330, 4, 0x5072fc66656e, 'Y', '2013-02-28 21:07:04'),
(4331, 4, 0x506f6f6c73207072fc66656e, 'Y', '2013-02-28 21:07:04'),
(4332, 4, 0x506f6f6c696e746567726974e474207072fc66656e20756e64205a7573616d6d656e66617373756e6720616e7a656967656e, 'Y', '2013-02-28 21:07:04'),
(4347, 4, 0x506f6f6c616e7a61686c205b25735d2c20506f6f6c2d4772f6df6520426572656963682025732c2042657374676577e4686c746520506f6f6c2d4772f6df65205b25735d, 'Y', '2013-02-28 21:09:05'),
(4348, 4, 0x556e62656b616e6e7465204e75747a65722d4944205b25735d, 'Y', '2013-02-28 21:09:05'),
(4349, 4, 0x537069656c6572205b25735d206e696d6d74206e69636874207465696c20616e205475726e696572205b25735d2052756e6465205b25735d, 'Y', '2013-02-28 21:09:05'),
(4361, 4, 0x41757366fc6872656e, 'Y', '2013-02-28 21:09:05'),
(4367, 4, 0x6f646572, 'Y', '2013-02-28 21:09:05'),
(4378, 4, 0x42697474652062657374e4746967656e20536965206461732048696e7a7566fc67656e2065696e6572206e6575656e205475726e69657272756e6465, 'Y', '2013-02-28 21:09:05'),
(4379, 4, 0x48696e7a7566fc67656e2062657374e4746967656e, 'Y', '2013-02-28 21:09:05'),
(4392, 4, 0x5475726e69657272756e64656e2d53746174757320676573706569636865727421, 'Y', '2013-02-28 21:11:56'),
(4393, 4, 0x5475726e69657272756e64656e2d53746174757320456469746f72, 'Y', '2013-02-28 21:11:56'),
(4395, 4, 0x5475726e69657272756e64656e2d5374617475732042656d65726b756e67656e, 'Y', '2013-02-28 21:11:56'),
(4397, 4, 0x416c6c6520616e67656d656c646574656e20537069656c6572206dfc7373656e2066fc722064696520616b7475656c6c65205475726e69657272756e64652065696e656d20506f6f6c207a75676577696573656e207365696e2e, 'Y', '2013-02-28 21:11:56'),
(4398, 4, 0x416c6c65205475726e696572737069656c652064657220616b7475656c6c656e205475726e69657272756e6465206dfc7373656e2066fc722064656e20537461727420626572656974207365696e2e, 'Y', '2013-02-28 21:11:56'),
(4399, 4, 0x416c6c65205475726e696572737069656c652064657220616b7475656c6c656e205475726e69657272756e6465206dfc7373656e206265656e646574207365696e2e, 'Y', '2013-02-28 21:11:56'),
(4400, 4, 0x5475726e6965722d41646d696e206b616e6e206a65676c696368656e2053746174757320e46e6465726e, 'Y', '2013-02-28 21:11:56'),
(4406, 4, 0x506f6f6c7320766f6e205475726e696572202325732066fc722052756e6465202573, 'Y', '2013-02-28 21:11:56'),
(4410, 4, 0x5475726e6965722d506f6f6c2042656d65726b756e67656e, 'Y', '2013-02-28 21:11:56'),
(4437, 4, 0x5475726e69657220426573636872656962756e67, 'Y', '2013-02-28 21:12:27'),
(4441, 4, 0x5475726e696572737069656c65, 'Y', '2013-02-28 21:12:27'),
(4449, 4, 0x5475726e69657272756e6465, 'Y', '2013-02-28 21:12:27'),
(4483, 4, 0x5475726e696572206572666f72646572743a206d696e2e202573205465696c6e65686d6572, 'Y', '2013-02-28 21:15:43'),
(4484, 4, 0x5475726e696572206572666f72646572743a206d61782e202573205465696c6e65686d6572, 'Y', '2013-02-28 21:15:43'),
(4485, 4, 0x4e75747a65722d537069656c7374e4726b65206d75737320696d2042657265696368205b2573202d2025735d206c696567656e2e, 'Y', '2013-02-28 21:15:43'),
(4486, 4, 0x537069656c6572206d757373206d696e64657374656e73202573206265656e6465746520537069656c6520686162656e2e, 'Y', '2013-02-28 21:15:43');
INSERT INTO `Translations` (`Original_ID`, `Language_ID`, `Text`, `Translated`, `Updated`) VALUES
(4488, 4, 0x556d20736963682066fc7220646965736573205475726e69657220616e7a756d656c64656e206dfc7373656e2064696520666f6c67656e64656e204b726974657269656e20657266fc6c6c74207365696e, 'Y', '2013-02-28 21:15:43'),
(4489, 4, 0x5475726e6965722065727374656c6c7421, 'Y', '2013-02-28 21:15:43'),
(4490, 4, 0x5475726e6965722d417373697374656e74, 'Y', '2013-02-28 21:15:43'),
(4491, 4, 0x57e4686c65205475726e696572747970, 'Y', '2013-02-28 21:15:43'),
(4492, 4, 0x5475726e6965722065727374656c6c656e, 'Y', '2013-02-28 21:15:43'),
(4729, 4, 0xc46e646572756e67206e75722064757263682041646d696e, 'Y', '2013-02-28 21:15:43'),
(4750, 4, 0x416e6d656c64756e672073706569636865726e, 'Y', '2013-02-28 21:18:15'),
(4751, 4, 0x416e6d656c64756e6720656e746665726e656e, 'Y', '2013-02-28 21:18:15'),
(4753, 4, 0x537461727472756e6465, 'Y', '2013-02-28 21:18:15'),
(4754, 4, 0x5465696c6e65686d6572205b25735d20656e746665726e7421, 'Y', '2013-02-28 21:18:15'),
(4755, 4, 0x426577657262756e6720766f6e20537069656c6572205b25735d20616e67656e6f6d6d656e7421, 'Y', '2013-02-28 21:18:15'),
(4756, 4, 0x537069656c6572205b25735d2077757264652065696e67656c6164656e21, 'Y', '2013-02-28 21:18:15'),
(4757, 4, 0x426577657262756e6720766f6e20537069656c6572205b25735d20777572646520696e2045696e6c6164756e6720756d676577616e64656c7421, 'Y', '2013-02-28 21:18:15'),
(4758, 4, 0x416e6d656c64756e6720766f6e20537069656c6572205b25735d20777572646520696e2045696e6c6164756e6720756d676577616e64656c7421, 'Y', '2013-02-28 21:18:15'),
(4761, 4, 0x4e616368726963687420616e204e75747a657220676573656e64657421, 'Y', '2013-02-28 21:18:55'),
(4766, 4, 0x5465696c6e65686d6572, 'Y', '2013-02-28 21:18:55'),
(4769, 4, 0x566f7267616265747970, 'Y', '2013-02-28 21:18:55'),
(4770, 4, 0x566f726761626520616e70617373656e, 'Y', '2013-02-28 21:19:42'),
(4771, 4, 0x42656d65726b756e67656e2062657374e4746967656e, 'Y', '2013-02-28 21:19:42'),
(4772, 4, 0x5265736572766965727465205374617475732dc46e646572756e67656e2066fc72205475726e6965722d41646d696e73, 'Y', '2013-02-28 21:19:42'),
(4773, 4, 0x4665686c656e6465204e75747a65722d49442066fc7220496e69746961746f72, 'Y', '2013-02-28 21:19:42'),
(4778, 4, 0x5475726e69657220537069656c6520496e666f, 'Y', '2013-02-28 21:21:34'),
(4779, 4, 0x556e6765776572746574, 'Y', '2013-02-28 21:21:34'),
(4780, 4, 0x537069656c6520496e666f, 'Y', '2013-02-28 21:21:34'),
(4781, 4, 0x537069656c736368616c746572, 'Y', '2013-02-28 21:21:34'),
(4575, 40, '', 'Y', '2014-04-09 08:27:24'),
(4783, 4, 0x5369652073696e64206e696368742064617a75206175746f7269736965727420646173205475726e696572737069656c207a75206265656e64656e2e, 'Y', '2013-02-28 21:21:34'),
(4784, 4, 0x5369652073696e64206e696368742064617a75206175746f726973696572742064656d205475726e696572737069656c205a6569742068696e7a757a7566fc67656e2e, 'Y', '2013-02-28 21:21:34'),
(4785, 4, 0x41756667616265, 'Y', '2013-02-28 21:21:34'),
(4786, 4, 0x5a656974fc62657273636872656974756e67, 'Y', '2013-02-28 21:21:34'),
(4787, 4, 0x42656d65726b756e67656e207a75204a69676f, 'Y', '2013-02-28 21:21:34'),
(4789, 4, 0x537069656c65726765626e69732073706569636865726e, 'Y', '2013-02-28 21:22:39'),
(4790, 4, 0x257320766f6e2025732052756e64656e, 'Y', '2013-02-28 21:22:39'),
(546, 40, 0x4b7975207369676e696669636120226eed76656c20646520696e696369616e746522206f7520226eed76656c20646520617072656e64697a222e204f73206eed76656973206b79752076e36f2064652033306b206174e920316b2c2073656e646f20316b206f206eed76656c206d61697320666f7274652e204120646566696e69e7e36f206465203330206b797520e920616c6775e96d2071756520617072656e646575206520656e74656e646575206173207265677261732c206d61732061696e6461206ee36f206a6f676f7520756d612070617274696461207365717565722e204f207465726d6f20636f7265616e6f207061726120226b79752220e92022677570222e204eed76656973206b7975206ee36f2073e36f2074e36f20636f6e6669e176656973206174e9206365726361206465203130206b79752c207175616e646f206120706573736f6120706f6465206a6f67617220636f6d20616c6775e96d206465206eed76656c2031203c686f6d65206661712e7068703f726561643d74266361743d3323456e74727933393e64616e3c2f686f6d653e206e756d206a6f676f20636f6d203920706564726173206465203c686f6d65206661712e7068703f726561643d74266361743d33353723456e74727939373e76616e746167656d3c2f686f6d653e2e, 'Y', '2014-04-04 04:08:53'),
(4793, 4, 0x5475726e6965726c6569746572205b25735d, 'Y', '2013-02-28 21:22:39'),
(4794, 4, 0x5475726e6965722d41646d696e, 'Y', '2013-02-28 21:22:39'),
(4803, 4, 0x416b746976, 'Y', '2013-02-28 21:24:00'),
(4804, 4, 0x4b65696e65, 'Y', '2013-02-28 21:24:00'),
(4330, 40, 0x566572696669636172, 'Y', '2014-04-09 08:27:24'),
(4812, 4, 0x257320537069656c6520657869737469657274656e2062657265697473, 'Y', '2013-02-28 21:24:00'),
(4817, 4, 0x537069656c6572202573207775726465206175732064656d205475726e69657220656e746665726e74, 'Y', '2013-02-28 21:25:37'),
(4818, 4, 0x4772756e64, 'Y', '2013-02-28 21:25:37'),
(4262, 40, 0x456e7669617220726f6461646173, 'Y', '2015-02-04 13:47:56'),
(4276, 40, 0x53616c76617220477275706f73, 'Y', '2015-02-04 13:59:48'),
(4327, 40, 0x53656c65e7e36f, 'Y', '2014-04-09 08:27:24'),
(4872, 4, 0x486572617573666f72646572657220756e6420566572746569646967657220617573746175736368656e, 'Y', '2013-02-28 21:27:03'),
(4878, 4, 0x5a7566e46c6c6967, 'Y', '2013-02-28 21:27:23'),
(4888, 4, 0x4665686c6572686166746520506f6f6c2d4e756d6d6572, 'Y', '2013-02-28 21:28:30'),
(4889, 4, 0x4e69636874207a7567657465696c746520537069656c6572, 'Y', '2013-02-28 21:28:30'),
(4890, 4, 0x506f6f6c6772f6df65207a75206b6c65696e, 'Y', '2013-02-28 21:28:30'),
(4891, 4, 0x506f6f6c6772f6df65207a752067726fdf, 'Y', '2013-02-28 21:28:30'),
(4892, 4, 0x506f6f6c206c656572, 'Y', '2013-02-28 21:28:30'),
(4893, 4, '', 'Y', '2013-02-28 21:28:30'),
(4894, 4, 0x506f6f6c204665686c6572, 'Y', '2013-02-28 21:28:30'),
(4887, 4, 0x4d65696e6520416e6d656c64756e67206265617262656974656e, 'Y', '2013-02-28 21:28:56'),
(4895, 4, '', 'Y', '2013-02-28 21:28:56'),
(4898, 4, 0x235369656765, 'Y', '2013-02-28 21:28:56'),
(4899, 4, '', 'Y', '2013-02-28 21:28:56'),
(4901, 4, 0x4265617262656974656e, 'Y', '2013-02-28 21:28:56'),
(4905, 4, 0x416e6d656c64756e6773706861736520656e6465746520756d205b25735d2e, 'Y', '2013-02-28 21:29:39'),
(4909, 4, 0x4d696e2e20506f6f6c204772f6df65, 'Y', '2013-02-28 21:30:29'),
(4910, 4, 0x4d61782e20506f6f6c204772f6df65, 'Y', '2013-02-28 21:30:29'),
(4911, 4, 0x506f6f6c20416e7a61686c, 'Y', '2013-02-28 21:30:29'),
(4933, 4, 0x4e75747a6572207a756d204265617262656974656e, 'Y', '2013-02-28 21:32:04'),
(4934, 4, 0x5475726e696572737069656c6520766f6e205b25735d, 'Y', '2013-02-28 21:32:04'),
(4938, 4, 0x537069656c657220756e64204765676e6572206c617566656e64657220537069656c652077657264656e20646172fc6265722062656e61636872696368746967742e, 'Y', '2013-02-28 21:32:04'),
(4941, 4, 0x5475726e696572737069656c2067657374617274657421, 'Y', '2013-02-28 21:32:04'),
(2466, 40, 0x456469746f72206465204a6f676f, 'Y', '2014-04-11 14:06:24'),
(2470, 40, 0x46657272616d656e74617320646520656469e7e36f, 'Y', '2014-04-11 14:06:24'),
(3578, 4, 0x5465696c6e65686d65722d4d6178696d756d206d757373206772f6df6572207365696e20616c7320646173205465696c6e65686d65722d4d696e696d756d, 'Y', '2013-03-01 10:08:33'),
(3579, 4, 0x4572776172746520706f736974697665205a61686c20616e206265656e646574656e205061727469656e2e, 'Y', '2013-03-01 10:08:33'),
(3586, 4, 0x556d2045696e73636872e46e6b756e67656e2061627a75736368616c74656e2c206bf66e6e656e205369652064656e2057657274203020696e202865696e6967656e292046656c6465726e2076657277656e64656e2e, 'Y', '2013-03-01 10:08:33'),
(3588, 4, 0x4573206769627420537069656c6572206f686e6520537069656c7374e4726b652c20776173206d69742065696e656d20226765776572746574656e22205475726e69657220756e76657265696e626172206973742e, 'Y', '2013-03-01 10:08:33'),
(3607, 4, 0x42657374e4746967656e20536965206e75722c2066616c6c73205369652064656e205374617475732074726f747a2064657220617566676574726574656e656e204665686c65726e20e46e6465726e20776f6c6c656e21, 'Y', '2013-03-01 10:08:33'),
(3608, 4, 0x53696e642053696520696d6d6572206e6f6368207369636865722064696520537461747573e46e646572756e672064757263687a7566fc6872656e3f, 'Y', '2013-03-01 10:08:33'),
(3609, 4, 0x426561636874656e205369652c206461df206e75722064696520756e74656e20646566696e69657274656e20537461747573fc62657267e46e6765206df6676c6963682073696e642e, 'Y', '2013-03-01 10:08:33'),
(3610, 4, 0x4573206b616e6e207365696e2c206461df2064696520537461747573e46e646572756e67206e6963687420756d6b656872626172206973742e, 'Y', '2013-03-01 10:51:10'),
(3612, 4, 0x537461747573e46e646572756e672062657374e4746967656e, 'Y', '2013-03-01 10:51:10'),
(3613, 4, 0x5475726e6965722d5374617475732042656d65726b756e67656e, 'Y', '2013-03-01 10:51:10'),
(3614, 4, 0x537461747573e46e646572756e67656e206475726368205475726e6965726c65697465722073696e642065726c61756274206d69742064656e20566f72626564696e67756e67656e3a3a, 'Y', '2013-03-01 10:51:10'),
(3615, 4, 0x5475726e6965726b6f6e66696775726174696f6e206d75737320766f6c6c7374e46e646967207365696e2e, 'Y', '2013-03-01 10:51:10'),
(3616, 4, 0x5475726e69657220416e6d656c6465626564696e67756e67656e206dfc7373656e20657266fc6c6c74207365696e2e, 'Y', '2013-03-01 10:51:10'),
(3617, 4, 0x416c6c65205475726e696572737069656c65206dfc7373656e206e6163682041627363686c75737320646572204b6f6e66696775726174696f6e207374617274626572656974207365696e2e, 'Y', '2013-03-01 10:51:10'),
(3618, 4, 0x416c6c65205475726e696572737069656c65206dfc7373656e206265656e646574207365696e206f6465722064fc7266656e206e6f6368206e69636874206265676f6e6e656e20686162656e2e, 'Y', '2013-03-01 10:51:10'),
(3619, 4, 0x526573657276696572746520537461747573e46e646572756e67656e2066fc72205475726e6965722d41646d696e733a, 'Y', '2013-03-01 10:51:10'),
(3620, 4, 0x45696e205475726e6965722d41646d696e206b616e6e206a65676c6963686520537461747573e46e646572756e67656e20647572636866fc6872656e20756e64205475726e696572652077696564657262656c6562656e2e, 'Y', '2013-03-01 10:51:10'),
(3641, 4, 0x5475726e69657220546974656c206665686c74206f64657220697374207a75206b75727a, 'Y', '2013-03-01 10:56:34'),
(3642, 4, 0x5475726e69657220546974656c2064617266206b65696e652072657365727669657274656e20447261676f6e2f4447532d576f72746520656e7468616c74656e205b25735d2e, 'Y', '2013-03-01 10:56:34'),
(2334, 40, 0x4564697461722066756e63696f6e616c6964616465, 'Y', '2014-04-11 14:06:24'),
(3658, 4, 0x5475726e696572737069656c206265656e64656e, 'Y', '2013-03-01 11:07:11'),
(3659, 4, 0x4469657365204f7065726174696f6e20697374206e696368742072fc636b67e46e676967207a75206d616368656e2c20616c736f20736569656e2053696520766f727369636874696721, 'Y', '2013-03-01 11:07:11'),
(3669, 4, 0x5a6569742068696e7a7566fc67656e2066fc72, 'Y', '2013-03-01 11:07:11'),
(3670, 4, 0x5370657a6966697a696572656e20536965207769657669656c207a7573e4747a6c69636865205a656974205369652064656d20617573676577e4686c74656e20537069656c657220676562656e20776f6c6c656e, 'Y', '2013-03-01 11:07:11'),
(3671, 4, 0x7a752048617570747a6569742068696e7a75676566fc6774, 'Y', '2013-03-01 11:07:11'),
(3673, 4, 0x4265617262656974756e6720756e74657262756e64656e2e, 'Y', '2013-03-01 11:07:11'),
(3674, 4, 0x312052756e6465, 'Y', '2013-03-01 11:07:11'),
(3688, 4, '', 'Y', '2013-03-01 11:07:11'),
(3689, 4, '', 'Y', '2013-03-01 11:07:11'),
(3690, 4, '', 'Y', '2013-03-01 11:08:12'),
(3691, 4, 0xd66666656e746c69636865204c6164646572, 'Y', '2013-03-01 11:08:12'),
(3692, 4, '', 'Y', '2013-03-01 11:08:12'),
(3693, 4, '', 'Y', '2013-03-01 11:08:12'),
(3696, 4, 0x416e6d656c64756e67, 'Y', '2013-03-01 11:08:12'),
(3697, 4, 0x5061617262696c64756e67, 'Y', '2013-03-03 13:47:22'),
(3698, 4, 0x537069656c, 'Y', '2013-03-01 11:08:12'),
(3699, 4, 0x4265656e646574, 'Y', '2013-03-01 11:08:12'),
(3700, 4, 0x4cf6736368656e, 'Y', '2013-03-01 11:08:12'),
(3701, 4, 0x41646d696e2d537065727265, 'Y', '2013-03-01 11:08:12'),
(3702, 4, 0x416e6d656c64652d537065727265, 'Y', '2013-03-01 11:10:33'),
(3703, 4, 0x5475726e6965726c65697465722d4172626569742d537065727265, 'Y', '2013-03-01 11:10:33'),
(3704, 4, 0x43726f6e2d537065727265, 'Y', '2013-03-01 11:10:33'),
(3705, 4, 0x41627363686c7573732d537065727265, 'Y', '2013-03-01 11:10:33'),
(3713, 4, 0x446965204265617262656974756e6720646572204c6164646572206572666f72646572742025732e, 'Y', '2013-03-01 11:10:33'),
(3739, 4, 0x446173204d6178696d756d20616e2065726c61756274656e205475726e69657272756e64656e20766f6e2025732077757264652065727265696368742e, 'Y', '2013-03-01 11:10:33'),
(3745, 4, 0x44696520617573676577e4686c7465205475726e69657272756e6465206d7573732065696e65206578697374696572656e64652052756e646520696d20576572746562657265696368202573207365696e2e, 'Y', '2013-03-01 11:12:55'),
(3747, 4, 0x44696520616b7475656c6c65205475726e69657272756e6465202573206d7573732065727374206265656e646574207365696e206265766f72207a7572206ee463687374656e2067657765636873656c742077657264656e206b616e6e2e, 'Y', '2013-03-01 11:12:55'),
(2300, 40, 0x52656a656974616461, 'Y', '2014-04-11 14:04:00'),
(2302, 40, 0x566f7461e7e36f207265737472697461, 'Y', '2014-04-11 14:04:00'),
(3741, 4, 0x4e7572205475726e69657272756e64656e2061756620537461747573205b25735d206bf66e6e656e20656e746665726e742077657264656e2e, 'Y', '2013-03-01 11:14:59'),
(2992, 33, 0xe6af94e8b59b, 'Y', '2013-08-15 14:23:35'),
(3388, 33, 0xe68891e79a84e6af94e8b59b, 'Y', '2013-08-15 14:23:35'),
(3752, 4, 0x5475726e69657265726765626e6973207775726465206765e46e6465727420766f6e2025732e, 'Y', '2013-03-01 11:14:59'),
(3757, 4, 0x537069656c6572205b25735d, 'Y', '2013-03-01 11:17:21'),
(3804, 4, 0x626569204a69676f, 'Y', '2013-03-01 11:17:21'),
(2295, 40, 0x566f746172, 'Y', '2014-04-11 14:04:00'),
(2296, 40, 0x4162726972, 'Y', '2014-04-11 14:04:00'),
(2294, 40, 0x4e6f7661, 'Y', '2014-04-11 14:04:00'),
(1910, 40, 0x506f73736f20766f6c74617220756d61206a6f676164613f, 'Y', '2014-04-11 14:02:18'),
(3838, 4, 0x4e6575, 'Y', '2013-03-01 11:21:21'),
(3845, 4, 0x44696520416e6d656c64756e67732d537461747573e46e646572756e67205b25735d206e616368205b25735d206973742066fc72205475726e6965722d537461747573205b25735d206e696368742065726c617562742e, 'Y', '2013-03-01 11:21:21'),
(3850, 4, 0x4968726520416e6d656c64756e67206d75737320766f6e2065696e656d205475726e6965726c6569746572207665726966697a696572742077657264656e2e, 'Y', '2013-03-01 11:21:21'),
(3852, 4, 0x4469652045696e6c6164756e672066fc7220646965736573205475726e696572206572666f72646572742049687265205665726966696b6174696f6e2e, 'Y', '2013-03-01 11:21:21'),
(3854, 4, 0x45696e6c6164756e672d4f4b, 'Y', '2013-03-01 11:21:21'),
(3855, 4, 0x426577657262756e672d4f4b, 'Y', '2013-03-01 11:21:21'),
(3856, 4, 0x416e6d656c64652d56657273746fdf, 'Y', '2013-03-01 11:21:21'),
(3858, 4, '', 'Y', '2013-03-01 11:21:21'),
(3859, 4, 0x506f6f6c732061756666fc6c6c656e, 'Y', '2013-03-01 11:21:21'),
(3860, 4, 0x4d616e75656c6c, 'Y', '2013-03-01 11:27:17'),
(3861, 4, 0x466174616c6572204665686c65723a204269747465206b6f6e74616b74696572656e205369652065696e656e205475726e6965722d41646d696e2c20756d20646965206d65687266616368656e204e75747a65722d45696e7472e46765205b25735d2066fc72205475726e696572202325642c2052756e6465202564207a75206b6f72726967696572656e2e, 'Y', '2013-03-01 11:27:17'),
(3870, 4, 0x4573206769627420257320506f6f6c732c206469652064656e2065726c61756274656e205765727465626572656963682025732065696e65722067fc6c746967656e20506f6f6c6772f6df65207665726c65747a656e2e, 'Y', '2013-03-01 11:27:17'),
(3903, 4, 0x5a7572205465696c6e61686d6520616e2064696573656d20707269766174656e205475726e696572206dfc7373656e205369652065696e67656c6164656e2077657264656e2e, 'Y', '2013-03-01 11:27:17'),
(2992, 34, 0xe6af94e8b3bd, 'Y', '2013-08-15 14:22:07'),
(3388, 34, 0xe68891e79a84e6af94e8b3bd, 'Y', '2013-08-15 14:22:07'),
(3908, 4, 0x446572204e75747a657220686174206b65696e6520447261676f6e20537069656c7374e4726b652c206469652066fc722064696573657320676577657274657465205475726e696572206572666f726465726c696368206973742e, 'Y', '2013-03-01 11:27:17'),
(3922, 4, 0x5475726e69657272756e64656e20506f6f6c6772f6df656e2d4d696e696d756d206d75737320696d20576572746562657265696368202573206c696567656e2e, 'Y', '2013-03-01 11:33:39'),
(3923, 4, 0x5475726e69657272756e64656e20506f6f6c6772f6df656e2d4d6178696d756d206d75737320696d20576572746562657265696368202573206c696567656e2e, 'Y', '2013-03-01 11:33:39'),
(3924, 4, 0x5475726e69657272756e64656e20506f6f6c6772f6df656e2d4d696e696d756d206d757373206b6c65696e657220616c7320506f6f6c6772f6df656e2d4d6178696d756d207365696e2e, 'Y', '2013-03-01 11:33:39'),
(3925, 4, 0x5475726e69657272756e64656e20506f6f6c616e7a61686c2d4d6178696d756d206d75737320696d20576572746562657265696368202573206c696567656e2e, 'Y', '2013-03-01 11:33:39'),
(2992, 8, 0xa4f1c1c9, 'Y', '2013-08-15 14:21:38'),
(3388, 8, 0xa7daaabaa4f1c1c9, 'Y', '2013-08-15 14:21:38'),
(3932, 4, 0x4b6f6e66696775726174696f6e2064657220616b7475656c6c656e205475726e69657272756e646520232573, 'Y', '2013-03-01 11:33:39'),
(3938, 4, 0xc46e646572756e6720646573205475726e69657272756e64656e2d537461747573206e616368205b25735d20697374206e75722066fc72205475726e6965722d41646d696e2065726c617562742e, 'Y', '2013-03-01 11:33:39'),
(3941, 4, 0x446965204265617262656974756e6720646965736572205475726e69657272756e64652061756620537461747573205b25735d2069737420766572626f74656e3b20657320697374206e75722065726c617562742066fc72205b25735d2021, 'Y', '2013-03-01 11:33:39'),
(2005, 11, 0x546f65726e6f6f696e756d6d6572, 'Y', '2013-08-14 20:14:38'),
(2174, 11, 0x546f65726e6f6f692d696e666f, 'Y', '2016-07-27 18:55:34'),
(3952, 4, 0x4665686c65722066fc72204e75747a6572202573, 'Y', '2013-03-01 11:35:09'),
(3953, 4, 0x4573206665686c74206d696e64657374656e732065696e205475726e6965726c6569746572, 'Y', '2013-03-01 11:35:09'),
(3954, 4, 0x446173205475726e69657220686174202573206c617566656e6465205475726e696572737069656c652c20646965207a7565727374206265656e6465742077657264656e206dfc7373656e2e, 'Y', '2013-03-01 11:35:09'),
(3970, 4, 0x4665686c656e6465205475726e696572737069656c657220416e6d656c64756e672066fc72204e75747a6572205b25735d2e, 'Y', '2013-03-01 11:36:55'),
(3980, 4, 0x4c616464657220766f72626572656974656e, 'Y', '2013-03-01 11:36:55'),
(3985, 4, 0x4c6164646572206cf6736368656e, 'Y', '2013-03-01 11:36:55'),
(3987, 4, 0x42697474652062657374e4746967656e2053696520646965204cf6736368756e6720646572204c6164646572, 'Y', '2013-03-01 11:36:55'),
(4006, 4, 0x4c6164646572206265617262656974656e, 'Y', '2013-03-01 11:38:57'),
(4009, 4, 0x486572617573666f726465726572206e696d6d7420616e204c6164646572206e69636874207465696c, 'Y', '2013-03-01 11:38:57'),
(4010, 4, 0x5665727465696469676572206e696d6d7420616e204c6164646572206e69636874207465696c, 'Y', '2013-03-01 11:38:57'),
(4017, 4, 0x28736965686520617563682042656d65726b756e67656e20756e74656e29, 'Y', '2013-03-01 11:38:57'),
(4019, 4, 0x4c61646465722d537069656c657220686572617573666f726465726e, 'Y', '2013-03-01 11:38:57'),
(4023, 4, 0x4e6163682042657374e4746967756e67207769726420736f666f72742065696e205475726e696572737069656c206765737461727465742e, 'Y', '2013-03-01 11:38:57'),
(4024, 4, 0x5475726e696572204c61646465722d456967656e736368616674656e20676573706569636865727421, 'Y', '2013-03-01 11:38:57'),
(4047, 4, 0x4c61646465722d456967656e736368616674656e2073706569636865726e, 'Y', '2013-03-01 11:39:40'),
(4048, 4, 0x5475726e696572204c61646465722d456967656e736368616674656e20456469746f72, 'Y', '2013-03-01 11:39:40'),
(4073, 4, 0x4c616464657220537069656c657220496e666f, 'Y', '2013-03-01 11:39:40'),
(4074, 4, 0x476573746172746574, 'Y', '2013-03-01 11:39:40'),
(4108, 4, 0x4265617262656974756e6720756e74657262756e64656e, 'Y', '2013-03-01 11:41:07'),
(4134, 4, 0x5475726e6965726e657569676b656974656e204172636869766520766f6e205b25735d, 'Y', '2013-03-01 11:41:07'),
(4156, 4, 0x5475726e6965727465696c6e65686d657220232564, 'Y', '2013-03-01 11:41:07'),
(4157, 4, 0x5475726e6965727465696c6e65686d657220766f6e205b25735d, 'Y', '2013-03-01 11:41:07'),
(4206, 4, 0x5a6569676520616c6c65206c617566656e64656e205475726e696572737069656c65, 'Y', '2013-03-01 11:41:29'),
(4209, 4, 0x52756e64656e206265617262656974656e, 'Y', '2013-03-01 11:41:29'),
(3621, 4, 0x5475726e696572204b6f6e66696775726174696f6e732d50686173652028496e666f732c20456967656e736368616674656e20756e6420526567656c6e20657267e46e7a656e29, 'Y', '2013-03-01 22:10:56'),
(3622, 4, 0x5475726e69657220416e6d656c64756e67732d50686173652028537069656c6572206bf66e6e656e207369636820616e6d656c64656e206f6465722065696e67656c6164656e2077657264656e29, 'Y', '2013-03-01 22:10:56'),
(3623, 4, 0x5475726e696572205061617262696c64756e67732d506861736520285475726e696572737069656c6520766f72626572656974656e20756e64206b6f6e6669677572696572656e29, 'Y', '2013-03-03 13:47:22'),
(3624, 4, 0x5475726e69657220537069656c2d506861736520285475726e6965727465696c6e65686d657220737069656c656e29, 'Y', '2013-03-01 22:10:56'),
(3625, 4, 0x5475726e6965722041627363686c75df2d5068617365202845726765626e697373652077657264656e207665726bfc6e6465742c205475726e69657220697374206265656e64657429, 'Y', '2013-03-01 22:10:56'),
(3626, 4, 0x5475726e6965722041646d696e2d50686173652077697264206e757220766f6e205475726e6965722d41646d696e2076657277616c7465742028766572737465636b74652c206172636869766965727465205475726e6965726529, 'Y', '2013-03-01 22:10:56'),
(3627, 4, 0x5475726e696572204cf67363682d50686173652077697264206e757220766f6e205475726e6965722d41646d696e2076657277616c74657420285475726e69657220626572656974207a7572204cf6736368756e6729, 'Y', '2013-03-01 22:10:56'),
(3639, 4, 0x556e62656b616e6e746572205475726e6965722d5261686d656e, 'Y', '2013-03-01 22:10:56'),
(2344, 40, 0x706f6e746f73, 'Y', '2014-04-11 14:06:24'),
(2340, 40, 0x566f746f732064652046756e63696f6e616c6964616465, 'Y', '2014-04-11 14:06:24'),
(3712, 4, 0x2573206973742067657365747a742c20756d204e75747a65726e207a752076657262696574656e207369636820616e7a756d656c64656e206f6465722064656d205475726e696572206265697a7574726574656e, 'Y', '2013-03-01 22:26:47'),
(3714, 4, 0x4265617262656974756e6720646573204c61646465722d5475726e696572732069737420766572626f74656e2064757263682025732e2042697474652077617274656e205369652065696e656e204d6f6d656e742e, 'Y', '2013-03-01 22:26:47'),
(3715, 4, 0x2573206973742067657365747a742c20756d204e75747a65726e207a752076657262696574656e2064656d205475726e696572206265697a7574726574656e206f64657220486572617573666f72646572756e67656e207a75207374617274656e2e, 'Y', '2013-03-01 22:26:47'),
(3724, 4, 0x52616e67, 'Y', '2013-03-01 22:26:47'),
(3746, 4, 0x416b7475656c6c65205475726e69657272756e64652069737420626572656974732061756620617573676577e4686c74652052756e64652067657365747a742e, 'Y', '2013-03-01 22:26:47'),
(3749, 4, 0x257320506f6f6c73207a756d204265656e64656e2077757264656e206964656e746966697a69657274206475726368205365747a656e2064657220506ce4747a652066fc7220506f6f6c733a202573, 'Y', '2013-03-01 22:26:47'),
(3753, 4, 0x537069656c6572205b2025322473205d206861742066fc7220253124732064656e2052616e67202325732066fc72205b25735d20676568616c74656e2c20756e642077697264206461686572207a756d2027426572676bf66e6967272067656b72f66e742e, 'Y', '2013-03-01 22:26:47'),
(3754, 4, 0x44696573652042656e61636872696368746967756e6720777572646520616e2064656e205475726e6965722d496e69746961746f7220756e6420616e20616c6c65205475726e6965726c656974657220676573656e6465742e, 'Y', '2013-03-01 22:26:47'),
(3755, 4, 0x426572676bf66e69672067656b72f66e742066fc72205475726e69657220232573, 'Y', '2013-03-01 22:26:47'),
(3756, 4, 0x416e67656d656c6465746572205475726e6965727465696c6e65686d657220676566756e64656e2c20646572206e6963687420696e20646572204c616464657220617566746175636874, 'Y', '2013-03-01 22:26:47'),
(9, 40, 0x44657363756c70652c20766f63ea206ee36f20706f646520636170747572617220756d61207065e76120736520656c6120616361626f75206465206361707475726172206f75747261207065e7612c206ae120717565206f20746162756c6569726f207365207265706574697269612e2050726f6375726520612070616c6176726120276b6f27206e6173207265677261732e, 'Y', '2013-10-20 18:16:42'),
(3784, 4, 0x6a6564657220fc626572204968726572204c61646465722d506f736974696f6e, 'Y', '2013-03-01 22:34:02'),
(6351, 3, 0x552e522d64696666, 'Y', '2015-05-14 17:11:56'),
(6335, 3, 0x4f70702e206e616d65, 'Y', '2015-05-14 17:12:37'),
(3811, 4, 0x446965204c616464657220697374206d69742064656e20666f6c67656e64656e20456967656e736368616674656e206b6f6e666967757269657274, 'Y', '2013-03-01 22:34:02'),
(2297, 40, 0x456d2070726f67726573736f, 'Y', '2014-04-11 14:04:00'),
(2298, 40, 0x5465726d696e616461, 'Y', '2014-04-11 14:04:00'),
(2292, 40, 0x45646974617220657373612066756e63696f6e616c6964616465, 'Y', '2014-04-11 14:02:18'),
(2286, 40, 0x4e6f7461732064652046756e63696f6e616c6964616465, 'Y', '2014-04-11 14:02:18'),
(2291, 40, 0x41706167617220657373612066756e63696f6e616c6964616465, 'Y', '2014-04-11 14:02:18'),
(2106, 40, 0x566f7461e7e36f20646520557375e172696f73, 'Y', '2014-04-11 14:02:18'),
(2102, 40, 0x4f70e7f56573206465205065737175697361, 'Y', '2014-04-11 14:02:18'),
(2105, 40, 0x53616c766172205065737175697361, 'Y', '2014-04-11 14:02:18'),
(3896, 4, 0x4e522d416e7a61686c, 'Y', '2013-03-01 22:40:53'),
(2992, 10, 0xb1c8c8fc, 'Y', '2013-08-15 14:23:06'),
(3388, 10, 0xced2b5c4b1c8c8fc, 'Y', '2013-08-15 14:23:06'),
(3898, 4, 0x506c61747a2027257327203d20506c61747a206e6f6368206e696368742067657365747a742066fc7220506f6f6c2d537069656c6572, 'Y', '2013-03-01 22:40:53'),
(3906, 4, 0x4e75747a657220686174206b65696e652067fc6c7469676520537069656c7374e4726b652c20646965206a65646f63682066fc722064656e205475726e6965722d526174696e676d6f6475732062656ef67469677420776972642e, 'Y', '2013-03-01 22:40:53'),
(3909, 4, 0x4e75747a657220537069656c7374e4726b65205b25735d206c69656774206e6963687420696d206765666f7264657274656e205765727465626572656963682025732e, 'Y', '2013-03-01 22:40:53'),
(3910, 4, 0x4e75747a6572206d757373206d696e64657374656e73202573206265656e6465746520537069656c6520686162656e2c206861742061626572206e75722025732e, 'Y', '2013-03-01 22:40:53'),
(3916, 4, 0x4b6f7069652d416e67657061737374, 'Y', '2013-03-01 22:40:53'),
(3917, 4, 0x4b6f7069652d466978, 'Y', '2013-03-01 22:40:53'),
(3918, 4, 0x416b7475656c6c2d466978, 'Y', '2013-03-01 22:40:53'),
(3921, 4, 0x44696520616b7475656c6c6520447261676f6e20537069656c7374e4726b6520776972642066fc72206461732067616e7a65205475726e6965722068696e64757263682076657277656e6465742e, 'Y', '2013-03-01 22:40:53'),
(2992, 11, 0x546f65726e6f6f69656e, 'Y', '2013-08-14 20:14:38'),
(3951, 4, 0x5475726e696572205465696c6e65686d65722d4d6178696d756d2028257320537069656c65722920777572646520647572636820257320416e6d656c64756e67656e20fc62657273636872697474656e2e, 'Y', '2013-03-01 22:47:57'),
(3955, 4, 0x4572776172746520616b7475656c6c656e205475726e6965722d537461747573205b25735d2066fc7220537461747573e46e646572756e67206e616368205b25735d, 'Y', '2013-03-01 22:47:57'),
(3956, 4, 0x4265617262656974756e672066fc72205475726e6965722061756620537461747573205b25735d2069737420766572626f74656e2c206e75722065726c617562742066fc72205b25735d2021, 'Y', '2013-03-01 22:47:57'),
(3957, 4, 0x416e736963687420766f6e205475726e6965722061756620537461747573205b25735d2069737420766572626f74656e2c206e75722065726c617562742066fc72205b25735d2021, 'Y', '2013-03-01 22:47:57'),
(3958, 4, 0x4572776172746520616b7475656c6c656e205475726e69657272756e64656e2d537461747573205b25735d2066fc7220537461747573e46e646572756e67, 'Y', '2013-03-01 22:47:57'),
(3959, 4, 0x45727761727465202573205475726e696572737069656c6520285453292c206162657220257320537069656c6520676566756e64656e3a205374617274656e20536965207a75657273742064696520726573746c696368656e20537069656c6521, 'Y', '2013-03-01 22:47:57'),
(3960, 4, 0x4572776172746520257320537069656c65202853292c206162657220257320537069656c6520676566756e64656e3a204b6f6e74616b74696572656e205369652065696e656e205475726e6965722d41646d696e207a756d204b6f72726967696572656e21, 'Y', '2013-03-01 22:47:57'),
(2522, 25, 0x4c61206d7574617265, 'Y', '2013-08-12 16:04:19'),
(5026, 3, 0x542d53697a65, 'Y', '2013-08-11 22:07:48'),
(5025, 3, 0x5265672d53742e, 'Y', '2013-08-11 23:39:49'),
(3992, 4, 0x537069656c6572205b25735d20617566204c61646465722065696e74726167656e, 'Y', '2013-03-01 22:51:16'),
(3993, 4, 0x416e67656d656c646574656e205475726e6965727465696c6e65686d657220617566204c61646465722028616d20756e746572656e20456e6465292065696e74726167656e2e, 'Y', '2013-03-01 22:51:16'),
(3994, 4, 0x42454d45524b554e473a204e75747a65722065696e74726167656e20697374206e75722065726c617562742066fc7220616e67656d656c64657465205475726e6965727465696c6e65686d65722e, 'Y', '2013-03-01 22:51:16'),
(3995, 4, 0x537069656c6572205b25735d20766f6e204c616464657220656e746665726e656e, 'Y', '2013-03-01 22:51:16'),
(4185, 4, 0x5370657272656e206265617262656974656e, 'Y', '2013-03-01 22:54:03'),
(6204, 40, 0x3f3f3f, 'Y', '2015-05-03 19:49:13'),
(6104, 40, 0x4f206172717569766f20656e766961646f206ee36f2070f46465207365722061626572746f2070617261206c6569747572612e, 'Y', '2015-05-03 19:51:39'),
(3154, 33, 0xe799bbe585a5, 'Y', '2014-04-10 13:48:18'),
(637, 40, 0x4f2071756520e92074656d706f207072696e636970616c3f, 'Y', '2014-04-11 14:02:18'),
(3154, 34, 0xe799bbe585a5, 'Y', '2014-04-10 13:47:06'),
(3154, 10, 0xb5c7c8eb, 'Y', '2014-04-10 13:47:56'),
(3154, 8, 0xb56ea44a, 'Y', '2014-04-10 13:46:30'),
(6375, 3, 0x572e2074696d652072656d2e, 'Y', '2015-09-13 23:12:40'),
(623, 40, 0x6f6e656761697368696d617375, 'Y', '2014-04-09 08:31:25'),
(626, 40, 0x4ee36f2c2061696e6461206ee36f2e, 'Y', '2014-04-09 08:31:25'),
(4083, 4, 0x537069656c65722052616e672044657461696c73, 'Y', '2013-03-02 10:46:34'),
(4090, 4, 0x52616e67206765e46e64657274, 'Y', '2013-03-02 10:46:34'),
(4092, 4, 0x5475726e6965722d4c616464657220232573, 'Y', '2013-03-02 10:46:34'),
(4103, 4, 0x4c61646465722061646d696e69737472696572656e, 'Y', '2013-03-02 10:46:34'),
(4188, 4, 0x52756e64656e2d53746174757320e46e6465726e, 'Y', '2013-03-02 10:46:34'),
(4201, 4, 0x4c61646465722d456967656e736368616674656e206265617262656974656e, 'Y', '2013-03-02 10:49:31'),
(4207, 4, 0x7369656865206175636820537069656c20496e666f2053656974656e, 'Y', '2013-03-02 10:49:31'),
(4210, 4, 0x5475726e69657272756e64656e2066fc7220506f6f6c2d20756e64205061617262696c64756e67206b6f6e6669677572696572656e, 'Y', '2013-03-03 13:48:46'),
(4211, 4, 0x506f6f6c7320646566696e696572656e, 'Y', '2013-03-02 10:49:31'),
(4247, 4, 0x506f6f6c706172616d65746572206dfc7373656e20646566696e696572742077657264656e206265766f722053696520506f6f6c732076657277616c74656e206bf66e6e656e21, 'Y', '2013-03-02 10:49:31'),
(4263, 4, 0x44696573206b616e6e2065696e65205765696c652064617565726e2c20686162656e2053696520646168657220657477617320476564756c6421, 'Y', '2013-03-02 10:49:31'),
(4264, 4, 0x4573206769627420257320616e67656d656c6465746520537069656c65722c20766f6e2064656e656e20257320537069656c6572206e6963687420696e2064656e20506f6f6c73206175667461756368656e2e, 'Y', '2013-03-02 10:49:31'),
(4266, 4, 0x4665686c656e646520537069656c65722064656d205374616e646172642d506f6f6c207a7577656973656e, 'Y', '2013-03-02 10:51:07'),
(4267, 4, 0x5475726e6965722d506f6f6c2056657277616c74756e67, 'Y', '2013-03-02 10:51:07'),
(4268, 4, 0x4c65747a74657220506f6f6c205b25735d206d7573732066fc72204cf6736368756e67206c656572207365696e21, 'Y', '2013-03-02 10:51:07'),
(4292, 4, 0x456d70666f686c656e65205665727465696c756e67656e20656e74737072656368656e2064656e20566f727363686ce467656e206d6974206d696e696d616c657220537069656c65722d446966666572656e7a20756e642065696e656d204d696e696d756d20616e20506f6f6c732c20646965206b6c65696e65722073696e6420616c732064696520617573676577e4686c746520506f6f6c6772f6df652e, 'Y', '2013-03-02 11:00:06'),
(4293, 4, 0x45732073746568742049686e656e206672656920616e64657265204b6f6d62696e6174696f6e656e207a752076657277656e64656e2c20736f6c616e6765207369652067fc6c7469672073696e642e, 'Y', '2013-03-02 11:00:06'),
(4295, 4, 0x4c65747a74656e646c69636820776972642064696520506f6f6c6772f6df6520616e676570617373742c20756d2065696e65206775746520506f6f6c2d5665727465696c756e67207a752066696e64656e2e, 'Y', '2013-03-02 11:00:06'),
(6061, 40, 0x6de1782e202573, 'Y', '2014-04-09 08:30:31'),
(6024, 40, 0x436f6e6669726d61, 'Y', '2014-04-09 08:30:31'),
(4298, 4, 0x48696e7a7566fc67656e20756e64204cf6736368656e20766f6e20506f6f6c732073696e642073696368206175737363686c6965df656e646520416b74696f6e656e3a204e75722065696e652061757377e4686c656e2e, 'Y', '2013-03-02 11:00:06'),
(4305, 4, 0x506f6f6c616e7a61686c205b25735d20697374207a752067726fdf2c2064617320506f6f6c616e7a61686c2d4d696e696d756d205b25735d2077fc726465206265696d2022536c6963696e6722207665726c65747a742077657264656e2e, 'Y', '2013-03-02 11:00:06'),
(4307, 4, 0x506f6f6c616e7a61686c205b25735d20697374207a75206b6c65696e2c2064617320506f6f6c616e7a61686c2d4d6178696d756d205b25735d2077fc726465207665726c65747a742077657264656e2e, 'Y', '2013-03-02 11:00:06'),
(4309, 4, 0x456e7477656465722064696520506f6f6c6772f6df65205b25735d206f6465722064696520506f6f6c616e7a61686c205b25735d20697374207a75206b6c65696e2c20756d20616c6c6520257320616e67656d656c646574656e20537069656c6572207a7520657266617373656e2e, 'Y', '2013-03-02 11:00:06'),
(4317, 4, 0x44696520537069656c652066fc7220616c6c65205061617262696c64756e67656e2077657264656e20736f666f72742067657374617274657420756e64206bf66e6e656e2064616e6e207765646572206765e46e64657274206e6f636820656e746665726e742077657264656e2e, 'Y', '2013-03-03 13:47:22'),
(4432, 4, 0x49687220616b7475656c6c6572204c61646465722d52616e67206973742023257320766f6e2025732e, 'Y', '2013-03-02 11:04:51'),
(4433, 4, 0x5475726e69657220232573, 'Y', '2013-03-02 11:04:51'),
(4434, 4, 0x5475726e69657220232573202d2047656e6572656c6c6520496e666f726d6174696f6e656e, 'Y', '2013-03-02 11:04:51'),
(4435, 4, 0x446965736520536569746520656e7468e46c7420616c6c65206e6f7477656e646967656e20496e666f726d6174696f6e656e20756e642056657277656973652c20756d20616e2064656d205475726e696572207465696c7a756e65686d656e2e, 'Y', '2013-03-02 11:04:51'),
(4436, 4, 0x4573206769627420766572736368696564656e652041627363686e697474653a, 'Y', '2013-03-02 11:04:51'),
(4438, 4, 0x5475726e69657220506c61747a696572756e67656e, 'Y', '2013-03-02 11:04:51'),
(4443, 4, 0x57656e6e205369652046726167656e20fc62657220646173205475726e69657220686162656e2c2073656e64656e205369652062697474652065696e65204e616368726963687420616e2065696e656e20646572205475726e6965726c6569746572206f6465722066726167656e2053696520696d203c686f6d6520666f72756d2f696e6465782e7068703e5475726e69657220466f72756d3c2f686f6d653e2e, 'Y', '2013-03-02 11:04:51'),
(4444, 4, 0x5475726e69657220496e666f206e6575206c6164656e, 'Y', '2013-03-02 11:04:51'),
(4448, 4, 0x5475726e696572205370657272656e, 'Y', '2013-03-02 11:07:51'),
(6246, 3, 0x5450, 'Y', '2015-01-11 12:18:15'),
(5498, 4, 0x5665726966697a696572756e6720777572646520656e746665726e7421, 'Y', '2013-08-11 19:28:21'),
(4482, 4, 0x5475726e696572206572666f72646572743a206d696e2e20257320756e64206d61782e202573205465696c6e65686d6572, 'Y', '2013-03-02 11:07:51'),
(4730, 4, 0x426974746520657267e46e7a656e2053696520646965204772fc6e64652066fc7220646965205370657272756e67202866fc7220616e64657265204c65697465722f41646d696e7329, 'Y', '2013-03-02 11:07:51'),
(4731, 4, 0x5370657272656e2073706569636865726e, 'Y', '2013-03-02 11:07:51'),
(4732, 4, 0x4e657569676b656974656e206e75722066fc72205475726e6965726c6569746572, 'Y', '2013-03-02 11:07:51'),
(4733, 4, 0x4e657569676b656974656e206e75722066fc72205475726e696572737069656c6572, 'Y', '2013-03-02 11:07:51'),
(5489, 4, 0x45696e65206e6575652067fc6c7469676520456d61696c2d416472657373652065696e74726167656e20756e64202245696e7374656c6c756e67656e2073706569636865726e22206472fc636b656e, 'Y', '2013-08-11 19:27:25'),
(4737, 4, 0x5475726e696572616e6d656c64756e6720676573706569636865727421, 'Y', '2013-03-02 11:08:06'),
(4776, 4, '', 'Y', '2013-03-02 11:10:35'),
(4777, 4, 0x52756e64652025732061756620537461747573205b25735d, 'Y', '2013-03-02 11:10:35'),
(4795, 4, 0x416e6d656c64756e672f4265617262656974756e672069737420696d204d6f6d656e7420756e74657262756e64656e, 'Y', '2013-03-02 11:10:35'),
(4796, 4, 0x556e74657262696e64657420616c6c652073636872656962656e64656e204f7065726174696f6e656e2066fc72205475726e6965722066fc72204e696368742d41646d696e732e, 'Y', '2013-03-02 11:10:35'),
(4774, 4, 0x556e62656b616e6e7465204e75747a65722d49442066fc7220496e69746961746f72, 'Y', '2013-03-02 11:11:37'),
(4775, 4, 0x5475726e696572737069656c2045726765626e69732067657365747a7421, 'Y', '2013-03-02 11:11:37'),
(4367, 40, 0x6f75, 'Y', '2014-04-09 08:27:24'),
(4361, 40, 0x4578656375746172, 'Y', '2014-04-09 08:27:24'),
(4815, 4, 0x4cf6736368756e6720766f6e20537069656c6572205b25735d20766f6e205475726e69657220232573, 'Y', '2013-03-02 11:12:50'),
(4816, 4, 0x5369652077757264656e20766f6d205475726e69657220656e746665726e74, 'Y', '2013-03-02 11:12:50'),
(4823, 4, 0x416b7475656c6c65722052616e67, 'Y', '2013-03-02 11:12:50'),
(4824, 4, 0x4265737465722052616e67, 'Y', '2013-03-02 11:12:50'),
(788, 36, 0x5ac3b66c642d666f6b69204bc3b67a74c3a172736173c3a167, 'Y', '2015-09-18 21:14:08'),
(4863, 4, 0x536965206bf66e6e656e206e757220537069656c657220fc62657220496872657220656967656e656e20506f736974696f6e20686572617573666f726465726e2e, 'Y', '2013-03-02 11:19:15'),
(4864, 4, 0x56657274656964696765722d52616e6720232573206c69656774206175df657268616c6220496872657220486572617573666f72646572756e67732d52656963687765697465205b2325732e2e2325735d2e, 'Y', '2013-03-04 11:27:46'),
(4865, 4, 0x5665727465696469676572206861742062657265697473206d61782e2025732065696e676568656e646520486572617573666f72646572756e67656e2e, 'Y', '2013-03-02 11:19:15'),
(4866, 4, 0x486572617573666f726465726572206861742062657265697473206d61782e202573206162676568656e646520486572617573666f72646572756e67656e2e, 'Y', '2013-03-02 11:19:15'),
(4867, 4, 0x4b65696e6520c46e646572756e67, 'Y', '2013-03-02 11:19:15'),
(4868, 4, 0x5363686965626520486572617573666f72646572657220fc626572205665727465696469676572, 'Y', '2013-03-02 11:19:15'),
(4869, 4, 0x5363686965626520486572617573666f72646572657220756e746572205665727465696469676572, 'Y', '2013-03-02 11:19:15'),
(4870, 4, 0x5363686965626520486572617573666f72646572657220616e7320756e74657265204c61646465722d456e6465, 'Y', '2013-03-02 11:19:15'),
(4871, 4, 0x456e746665726e6520486572617573666f72646572657220766f6e204c6164646572, 'Y', '2013-03-02 11:19:15'),
(4873, 4, 0x5363686965626520566572746569646967657220756e74657220486572617573666f726465726572, 'Y', '2013-03-02 11:24:40'),
(4874, 4, 0x5363686965626520566572746569646967657220616e7320756e74657265204c61646465722d456e6465, 'Y', '2013-03-02 11:24:40'),
(4875, 4, 0x456e746665726e6520566572746569646967657220766f6e204c6164646572, 'Y', '2013-03-02 11:24:40'),
(4879, 4, 0x5472616765206e6575656e20537069656c65722061756620506f736974696f6e2065696e2c20736f727469657274206e6163682064656d205475726e6965722d416e6d656c64657a65697470756e6b742028616d20756e746572656e20456e646520646572204c6164646572292e, 'Y', '2013-03-02 11:24:40'),
(1, 40, 0x44657363756c70652c206ee36f20e9207065726d697469646f2070617373617220612076657a20616e74657320646520706f736963696f6e617220746f646173206173207065e761732064652076616e746167656d2e, 'Y', '2013-10-20 18:16:42'),
(4881, 4, 0x5472616765206e6575656e20537069656c657220617566207a7566e46c6c69676572204c61646465722d506f736974696f6e2065696e2e, 'Y', '2013-03-02 11:24:40'),
(6048, 40, 0x4d6f73747261722f6f63756c746172206d61726361e7f5657320646520746572726974f372696f, 'Y', '2014-04-04 13:58:08'),
(4900, 4, 0x506c61747a, 'Y', '2013-03-02 11:25:53'),
(4913, 4, 0x4d616e75656c6c657320537069656c3a20486572617573666f72646572657220737069656c74205363687761727a, 'Y', '2013-03-02 11:28:10'),
(4914, 4, 0x4d616e75656c6c657320537069656c3a20486572617573666f72646572657220737069656c74205765697373, 'Y', '2013-03-02 11:28:10'),
(4915, 4, 0x4d616e75656c6c657320537069656c3a207374e4726b6572657220537069656c65722062656b6f6d6d74205363687761727a, 'Y', '2013-03-02 11:28:10'),
(4916, 4, 0x4d616e75656c6c657320537069656c3a207374e4726b6572657220537069656c65722062656b6f6d6d74205765697373, 'Y', '2013-03-02 11:28:10'),
(4920, 4, 0x5475726e696572736368616c746572, 'Y', '2013-03-02 11:28:10'),
(4921, 4, '', 'Y', '2013-03-02 11:28:10'),
(4919, 4, 0xc46e646572756e6720646573205475726e6965722d537461747573205b25735d20697374206e75722065726c617562742066fc72205475726e6965722d41646d696e2e, 'Y', '2013-03-02 11:29:46'),
(4922, 4, '', 'Y', '2013-03-02 11:29:46'),
(4923, 4, 0x4c61646465722067656cf67363687421, 'Y', '2013-03-02 11:29:46'),
(4925, 4, 0x4b65696e6520c46e646572756e6721, 'Y', '2013-03-02 11:29:46'),
(4926, 4, 0x537069656c6572205b25735d20617566204c61646465722065696e676574726167656e21, 'Y', '2013-03-02 11:29:46'),
(4927, 4, 0x5475726e6965726c656974657220286f6465722041646d696e292025732068617420537069656c657220656e746665726e74, 'Y', '2013-03-02 11:29:46'),
(4928, 4, 0x537069656c6572205b25735d20777572646520766f6e2064696573656d204c61646465722d5475726e69657220656e746665726e7421, 'Y', '2013-03-02 11:30:53'),
(4929, 4, 0x537069656c657220756e64204765676e65722077757264656e2062656e616368726963687469677421, 'Y', '2013-03-02 11:30:53'),
(4930, 4, 0x537069656c6572205b25735d2077757264652066fc7220646965736573204c61646465722d54756e69657220616c73204bf66e69672067656b72f66e7421, 'Y', '2013-03-02 11:38:32'),
(4936, 4, 0x426572676bf66e6967206b72f66e656e, 'Y', '2013-03-02 11:31:54'),
(4937, 4, 0x4b72f66e6520537069656c6572205b25735d20616c732027426572676bf66e696727, 'Y', '2013-03-02 11:31:54'),
(4724, 3, 0x54472d526f6c65, 'Y', '2013-09-16 16:38:57'),
(4944, 4, 0x486572617573666f72646572756e672042656d65726b756e67656e, 'Y', '2013-03-02 11:32:49'),
(4945, 4, 0x4c61646465722d52616e67, 'Y', '2013-03-02 11:32:49'),
(4946, 4, 0x426568616c74656e2066fc72202573, 'Y', '2013-03-02 11:32:49'),
(4951, 4, 0x4d61782e20566572746569646967756e67656e, 'Y', '2013-03-02 11:32:49'),
(4952, 4, 0x53746172742d52616e67, 'Y', '2013-03-02 11:32:49'),
(4953, 4, 0x284772757070652023257329, 'Y', '2013-03-02 11:32:49'),
(786, 36, 0x4b616d6572756e, 'Y', '2015-09-18 21:14:08'),
(4002, 4, 0x537069656c65722077697264207a756d204bf66e69672067656b72f66e742e2044696573207769726420616c73205475726e69657265726765626e697320616267657370656963686572742e, 'Y', '2013-03-02 11:38:32'),
(3017, 36, 0x68c3a9626572, 'Y', '2015-09-19 12:51:39'),
(3004, 36, 0x7370616e796f6c20286b6174616cc3a16e29, 'Y', '2015-09-19 12:51:03'),
(3005, 36, 0x7370616e796f6c20286261737a6b29, 'Y', '2015-09-19 12:51:03'),
(789, 36, 0x4bc3b67ac3a9702d616672696b6169204bc3b67a74c3a172736173c3a167, 'Y', '2015-09-18 21:14:08'),
(3001, 36, 0x616e676f6c, 'Y', '2015-09-19 12:51:03'),
(4269, 4, 0x506f6f6c706172616d65746572206bf66e6e656e206e757220646972656b74206765e46e646572742077657264656e2c2077656e6e20616c6c6520506f6f6c7320656e746665726e742077757264656e21, 'Y', '2013-03-02 11:43:01'),
(4274, 4, 0x506f6f6c2068696e7a7566fc67656e20286df6676c6963682066616c6c73206b65696e65205665726c65747a756e6729, 'Y', '2013-03-02 11:43:01'),
(4275, 4, 0x4cf673636865206c65747a74656e20506f6f6c20286df6676c6963682066616c6c7320506f6f6c206c65657220756e64206b65696e65205665726c65747a756e6729, 'Y', '2013-03-02 11:43:01'),
(4287, 4, 0x2573203d20626573746520676c656963686de4df6967207665727465696c746520526f756e642d526f62696e20506f6f6c7665727465696c756e672066fc7220616c6c6520257320616e67656d656c646574656e20537069656c6572, 'Y', '2013-03-02 11:43:01'),
(4289, 4, 0x5020782047203a2050203d20506f6f6c616e7a61686c2c2047203d20506f6f6c6772f6df653b205031202b205032203d20617573676577e4686c746520506f6f6c616e7a61686c, 'Y', '2013-03-02 11:43:01'),
(4290, 4, 0x2573203d20537069656c616e7a61686c2066fc7220626573746520506f6f6c7665727465696c756e67, 'Y', '2013-03-02 11:43:01'),
(4805, 3, 0x542d526174696e67, 'Y', '2013-08-11 22:07:48'),
(5009, 3, '', 'Y', '2013-08-15 11:35:15'),
(3971, 4, 0x457320697374206e696368742065726c6175627420696e20646173204c61646465722d5475726e696572206e696368742d616e67656d656c64657465204e75747a6572206175667a756e65686d656e2e, 'Y', '2013-03-03 13:41:57'),
(3981, 4, 0x4573206769627420257320616e67656d656c64657465205465696c6e65686d657220766f6e2064656e656e206265726569747320257320646572204c616464657220626569676574726574656e2073696e642e, 'Y', '2013-03-03 13:41:57'),
(3982, 4, 0x4c6164646572206d697420616c6c656e20616e67656d656c646574656e205475726e6965727465696c6e65686d65726e20766f7262656c6567656e, 'Y', '2013-03-03 13:41:57'),
(3984, 4, 0x4c616464657220766f7262656c6567656e, 'Y', '2013-03-03 13:41:57'),
(3989, 4, 0x41646d696e6973747269657265204c61646465722d5465696c6e65686d6572, 'Y', '2013-03-03 13:41:57'),
(4005, 4, 0x5475726e696572204c61646465722041646d696e697374726174696f6e, 'Y', '2013-03-03 13:41:57'),
(4036, 4, 0x48616e64686162756e6720537069656c656e6465, 'Y', '2013-03-03 13:41:57'),
(4259, 4, 0x566f7262656c6567656e2064657220506f6f6c7320697374206e75722066fc72206c6565726520506f6f6c732065726c6175627421, 'Y', '2013-03-03 13:41:57'),
(4260, 4, 0x506f6f6c732065727374656c6c656e20756e6420766f7262656c6567656e206d697420616c6c656e20257320616e67656d656c646574656e20537069656c65726e2066fc72205475726e69657272756e646520232573, 'Y', '2013-03-03 13:41:57'),
(4262, 4, 0x506f6f6c7320766f7262656c6567656e, 'Y', '2013-03-03 13:44:22'),
(4265, 4, 0x4665686c656e646520616e67656d656c6465746520537069656c65722064656d205374616e646172642d506f6f6c2068696e7a7566fc67656e20286d6974206e696368742d7a75676577696573656e656e20537069656c65726e29, 'Y', '2013-03-03 13:44:22'),
(4319, 4, 0x506f6f6c205a7573616d6d656e66617373756e67, 'Y', '2013-03-03 13:44:22'),
(4318, 4, 0x5475726e696572205061617262696c64756e67732d456469746f72, 'Y', '2013-03-03 13:47:22'),
(5149, 4, 0x5475726e69657272756e64656e2d4b6f6e66696775726174696f6e7370686173652028456967656e736368616674656e207365747a656e2c20646965206572666f726465726c6963682073696e642066fc7220506f6f6c62696c64756e6720756e6420537069656c656e29, 'Y', '2013-03-03 13:47:22'),
(5150, 4, 0x5475726e69657272756e64656e20506f6f6c62696c64756e67737068617365202845727374656c6c6520506f6f6c732c20537069656c65726e20506f6f6c73207a7577656973656e29, 'Y', '2013-03-03 13:48:46'),
(4333, 4, 0x416b74696f6e656e20626572617262656974656e, 'Y', '2013-03-03 13:49:35'),
(4334, 4, 0x426974746520626561636874656e2c206461737320617573676577e4686c7465204d61726b696572756e67206e696368742067657370656963686572742077657264656e21, 'Y', '2013-03-03 13:49:35'),
(4895, 40, 0x436f6e6669726d61, 'Y', '2014-04-09 08:29:21'),
(4900, 40, 0x436f6c6f6361e7e36f, 'Y', '2015-02-04 13:49:41'),
(4911, 40, 0x4efa6d65726f20646520477275706f73, 'Y', '2015-02-04 14:02:01'),
(5073, 40, 0x456469746172, 'Y', '2014-04-09 08:29:21'),
(5104, 40, 0x54616d616e686f20646f7320477275706f73, 'Y', '2015-02-04 14:12:59'),
(4337, 4, 0x506f6f6c206e6575207a7577656973656e, 'Y', '2013-03-03 13:55:12'),
(4339, 4, 0x5475726e69657220506f6f6c7320456469746f72, 'Y', '2013-03-03 13:55:12'),
(4340, 4, 0x417573676577e4686c746520506f6f6c73, 'Y', '2013-03-03 13:55:12'),
(4341, 4, 0x506f6f6c205b25735d2066fc72205a7577656973756e6720766f6e206e696368742d7a75676577696573656e656e20537069656c65726e2069737420756e7a756ce4737369672c206d75737320696d20576572746562657265696368202573206c696567656e, 'Y', '2013-03-03 13:55:12'),
(4342, 4, 0x506f6f6c205b25735d2066fc72204e65752d5a7577656973756e6720766f6e20506f6f6c737069656c65726e2069737420756e7a756ce4737369672c206d75737320696d20576572746562657265696368202573206c696567656e, 'Y', '2013-03-03 13:55:12'),
(4345, 4, 0x64656d20506f6f6c207a7577656973656e, 'Y', '2013-03-03 13:55:12'),
(4346, 4, 0x53696520686162656e2064696520666f6c67656e64656e20506f6f6c706172616d65746572206175662064657220257320536569746520617573676577e4686c743a, 'Y', '2013-03-03 13:55:12'),
(4357, 4, 0x506c61747a696572756e67656e2066fc72206265656e6465746520506f6f6c732062657374696d6d656e2e, 'Y', '2013-03-03 13:55:12'),
(4370, 4, 0x5475726e6965722d506f6f6c20506c61747a696572756e677320456469746f72, 'Y', '2013-03-03 13:57:46'),
(4381, 4, 0x42697474652062657374e4746967656e2053696520646965204cf6736368756e672064657220617573676577e4686c74656e205475726e69657272756e646520232573, 'Y', '2013-03-03 13:57:46'),
(4384, 4, 0x42697474652062657374e4746967656e2053696520646173205365747a656e2064657220616b7475656c6c656e205475726e69657272756e646520766f6e202325732061756620232573, 'Y', '2013-03-03 13:57:46'),
(5500, 4, 0x536965206bf66e6e656e206e7572204968726520656967656e656e205665726966697a696572756e67656e2065726e6575742073656e64656e21, 'Y', '2013-08-11 19:28:21'),
(4387, 4, 0x5475726e6965722052756e64656e20496e666f, 'Y', '2013-03-03 13:57:46'),
(4389, 4, 0x5475726e6965722052756e64656e20456469746f72, 'Y', '2013-03-03 13:57:46'),
(4390, 4, 0x5475726e6965722052756e64656e656967656e736368616674656e20456469746f72, 'Y', '2013-03-03 13:57:46'),
(4391, 4, 0x5475726e69657272756e64652073706569636865726e, 'Y', '2013-03-03 13:57:46'),
(4396, 4, 0x4b6f6e66696775726174696f6e2066fc72205475726e6965722052756e64656e656967656e736368616674656e206dfc7373656e20766f6c6c7374e46e646967207365696e2e, 'Y', '2013-03-03 13:57:46'),
(4739, 4, 0x416b7475656c6c657220416e6d656c64652d537461747573, 'Y', '2013-03-03 13:58:06'),
(4371, 4, 0x416b74696f6e73726573756c74617465, 'Y', '2013-03-03 14:24:36'),
(4412, 4, 0x506f6f6c732077657264656e2065696e67656f72646e6574206e616368204b6f6c6c6973696f6e73726567656c6e3a202573, 'Y', '2013-03-03 14:24:36'),
(4421, 4, 0x5b25735d20696e20466f726d617420225369656765203a205665726c7573746522203d20416e7a61686c20766f6e2053696567656e20756e64205665726c757374656e2070726f20537069656c6572, 'Y', '2013-03-03 14:24:36'),
(4892, 40, 0x477275706f2076617a696f, 'Y', '2015-02-04 14:01:25'),
(4893, 40, 0x477275706f, 'Y', '2015-02-04 14:02:01'),
(4423, 4, 0x5b25735d203d204b6f6c6c6973696f6e73726567656c20534f444f53203d2053756d206f66204465666561746564204f70706f6e656e74732053636f7265202853756d6d65206465722045726765626e6973736520626573696567746572204765676e657229, 'Y', '2013-03-03 14:24:36'),
(4429, 4, 0x5475726e6965726e657569676b656974656e20416e736963687420232564, 'Y', '2013-03-03 14:24:36'),
(4734, 4, 0x566572f66666656e746c696368756e6773646174756d2066fc72204e657569676b656974656e, 'Y', '2013-03-03 14:24:36'),
(5488, 4, 0x5363687269747465207a757220c46e646572756e6720496872657220456d61696c3a, 'Y', '2013-08-11 19:27:25'),
(4738, 4, 0x416e6d656c6465626573636872e46e6b756e67656e, 'Y', '2013-03-03 14:24:36'),
(4740, 4, 0x4e6575657220416e6d656c64652d537461747573, 'Y', '2013-03-03 14:24:36'),
(4741, 4, 0x537069656c7374e4726b656e76657277656e64756e67, 'Y', '2013-03-04 10:18:37'),
(4742, 4, 0x496e646976696475656c6c6520537069656c7374e4726b65, 'Y', '2013-03-04 10:18:37'),
(4743, 4, 0x456e746665726e6520696e646976696475656c6c6520537069656c7374e4726b65, 'Y', '2013-03-04 10:18:37'),
(4744, 4, 0x416b7475656c6c6520537461727472756e6465, 'Y', '2013-03-04 10:18:37'),
(4745, 4, 0x496e646976696475656c6c6520537461727472756e6465, 'Y', '2013-03-04 10:18:37'),
(4746, 4, 0xd66666656e746c6963686572204e75747a6572204b6f6d6d656e746172, 'Y', '2013-03-04 10:18:37'),
(4748, 4, 0x42657374e4746967652041626d656c64756e67, 'Y', '2013-03-04 10:18:37'),
(4749, 4, 0x416e6d656c64756e6720e46e6465726e, 'Y', '2013-03-04 10:18:37'),
(3162, 11, 0x546f75726e6f6f6920232573205b25735d, 'Y', '2013-08-16 19:26:11'),
(4763, 4, 0x5465696c6e65686d657220626573636872e46e6b656e, 'Y', '2013-03-04 10:29:21'),
(4764, 4, 0x4e75747a65722d537069656c7374e4726b652065696e73636872e46e6b656e, 'Y', '2013-03-04 10:29:21'),
(4765, 4, 0x456e64646174756d2066fc7220416e6d656c64756e67, 'Y', '2013-03-04 10:29:21'),
(2972, 25, 0x41726869766174, 'Y', '2014-12-05 11:44:20'),
(4768, 4, 0x4e75747a65722d537069656c65, 'Y', '2013-03-04 10:29:21'),
(4788, 4, 0x45726c61756265205365747a656e206465732045726765626e69732074726f747a207769646572737072fc63686c6963686572204a69676f2d426573636872e46e6b756e67656e, 'Y', '2013-03-04 10:29:21');
INSERT INTO `Translations` (`Original_ID`, `Language_ID`, `Text`, `Translated`, `Updated`) VALUES
(4797, 4, 0x56657262696574657420537069656c65726e206461732042656974726574656e20766f6e205475726e696572656e2028647572636820426577657262756e672c20416e6d656c64756e672c204f4b2d45696e6c6164756e67292e, 'Y', '2013-03-04 10:29:21'),
(4798, 4, 0x5374656c6c742065786b6c75736976656e20536368726569627a7567726966662066fc72205475726e6965726c6569746572206175662062657374696d6d74656e205475726e696572646174656e206265726569742e, 'Y', '2013-03-04 10:29:21'),
(4799, 4, 0x5374656c6c742065786b6c75736976656e20536368726569627a7567726966662066fc72205475726e6965722d43726f6e206175662062657374696d6d74656e205475726e696572646174656e206265726569742e, 'Y', '2013-03-04 10:29:21'),
(4800, 4, 0x56657262696574657420537069656c65726e206461732042656974726574656e20766f6e205475726e696572656e206f64657220646173205374617274656e20766f6e20486572617573666f72646572756e67656e2028566f72626572656974756e67207a756d2041627363686c6965df656e20646573205475726e69657273292e, 'Y', '2013-03-04 10:29:21'),
(4805, 4, 0x5475726e6965722d537069656c7374e4726b65, 'Y', '2013-03-04 10:35:08'),
(4806, 4, 0x52616e6720626568616c74656e, 'Y', '2013-03-04 10:35:08'),
(4808, 4, 0x506c61747a, 'Y', '2013-03-04 10:35:08'),
(4809, 4, 0x416b7475656c6c6520537069656c7374e4726b65, 'Y', '2013-03-04 10:35:08'),
(4810, 4, 0x45726765626e697320537069656c7374e4726b65, 'Y', '2013-03-04 10:35:08'),
(4811, 4, 0x45726765626e6973646174756d, 'Y', '2013-03-04 10:35:08'),
(4813, 4, 0x4573206d757373206d696e64657374656e732065696e65205475726e69657272756e646520676562656e, 'Y', '2013-03-04 10:35:08'),
(4814, 4, 0x4461732053797374656d206861742064656e20537069656c6572206175732064656d205475726e69657220656e746665726e74206175666772756e64206465722066fc72205475726e696572737069656c2d4265656e646967756e67656e20646566696e69657274656e204c61646465722d4b6f6e66696775726174696f6e2e, 'Y', '2013-03-04 10:35:08'),
(6201, 40, 0x4e6f766f7320746f726e65696f73, 'Y', '2015-05-03 19:49:13'),
(6203, 40, 0x46756e63696f6e616c6964616465202325733a202573, 'Y', '2015-05-03 19:49:13'),
(4825, 4, 0x506572696f64656e73746172742028c46e646572756e6729, 'Y', '2013-03-04 10:35:08'),
(4826, 4, 0x566f7269676520506572696f64652028c46e646572756e6729, 'Y', '2013-03-04 10:35:27'),
(4837, 4, 0x57656e6e2065696e6520477275707065206e696368742076657277656e6465742077757264652c20736f206d75737320657320477275707065202332207365696e2e, 'Y', '2013-03-04 10:36:20'),
(4843, 4, 0x257320506f736974696f6e656e20fc62657220496872657220656967656e656e, 'Y', '2013-03-04 10:37:19'),
(4848, 4, 0x257320486572617573666f72646572756e67656e2066fc722052e46e6765202325732e2e2573, 'Y', '2013-03-04 10:37:19'),
(4851, 4, 0x44696520416e7a61686c206162676568656e64657220486572617573666f72646572756e67656e2069737420626573636872e46e6b742061756620257320537069656c652e, 'Y', '2013-03-04 10:40:52'),
(4852, 4, 0x44696520416e7a61686c206162676568656e64657220486572617573666f72646572756e67656e20697374206e6963687420626573636872e46e6b742e, 'Y', '2013-03-04 10:40:52'),
(4854, 4, 0x5369652064fc7266656e2070726f204765676e6572206e75722065696e206c617566656e64657320537069656c20686162656e2e, 'Y', '2013-03-04 10:40:52'),
(4855, 4, 0x42656920537069656c656e646520776972642064696520666f6c67656e646520416b74696f6e206475726368676566fc6872743a, 'Y', '2013-03-04 10:40:52'),
(4856, 4, 0x66616c6c732064657220486572617573666f726465726572206d69742050756e6b74656e206f646572206475726368204175666761626520676577696e6e74, 'Y', '2013-03-04 10:40:52'),
(4074, 40, 0x496eed63696f, 'Y', '2014-04-09 08:22:04'),
(3825, 40, 0x4c696d69746573, 'Y', '2014-04-09 08:22:04'),
(3892, 40, 0x477275706f202573, 'Y', '2015-02-04 13:59:48'),
(4896, 4, 0x4e75747a657220537069656c7374e4726b65, 'Y', '2013-03-04 10:41:13'),
(4924, 4, 0x4c616464657220766f7262656c65677421, 'Y', '2013-03-04 10:42:58'),
(4940, 4, 0x486572617573666f72646572756e672066fc72205475726e6965722023257320676573746172746574, 'Y', '2013-03-04 10:42:58'),
(4942, 4, 0x42697474652062657374e4746967656e205369652c2064617373205369652064696573656e20537069656c657220686572617573666f726465726e206df6636874656e21, 'Y', '2013-03-04 10:42:58'),
(4943, 4, 0x486572617573666f72646572756e672062657374e4746967656e, 'Y', '2013-03-04 10:42:58'),
(4908, 4, 0x447261676f6e204e75747a65722d537069656c7374e4726b65207769726420626569205475726e696572616e6d656c64756e67206b6f706965727420756e64206b616e6e206e69636874206765e46e646572742077657264656e2e, 'Y', '2013-03-04 10:55:55'),
(4917, 4, 0x5475726e696572726567656c6e2065727a77696e67656e204a69676f2c20642e682e20537069656c65726765626e6973206d7573732065696e652047616e7a7a61686c207365696e2c20756e642064616d6974206e6963687420617566202e3520656e64656e, 'Y', '2013-03-04 10:55:55'),
(4918, 4, 0x5475726e696572726567656c6e2076657262696574656e204a69676f2c20642e682e20537069656c65726765626e6973206d7573732065696e6520476c65697470756e6b747a61686c207365696e2c2064696520617566202e3520656e646574, 'Y', '2013-03-04 10:55:55'),
(4935, 4, 0x537069656c6572207769726420766f6e204c6164646572207a7573616d6d656e206d6974205475726e696572616e6d656c64756e6720656e746665726e742e, 'Y', '2013-03-04 10:55:55'),
(4959, 4, 0x52656968656e666f6c67652062657374696d6d74206475726368204c61646465722d506f736974696f6e2066fc72206e657520626569676574726574656e656e20537069656c6572, 'Y', '2013-03-04 11:05:28'),
(4960, 4, 0x537069656c65722d4162776573656e686569747368616e64686162756e67, 'Y', '2013-03-04 11:05:28'),
(2418, 11, 0x546f65726e6f6f696c6569646572, 'Y', '2013-08-16 19:25:37'),
(776, 36, 0x42687574c3a16e, 'Y', '2015-09-18 21:14:08'),
(777, 36, 0x426f6cc3ad766961, 'Y', '2015-09-18 21:14:08'),
(772, 36, 0x466568c3a9726f726f737a6f72737ac3a167, 'Y', '2015-09-18 21:14:08'),
(556, 40, 0x4578697374656d206d7569746f732070726f6772616d6173207061726120766572206520656469746172206172717569766f73205347462e20556d6120706f7373ed76656c206573636f6c686120e9206f203c6120687265663d22687474703a2f2f6a61676f636c69656e742e736f75726365666f7267652e6e65742f223e4a61676f436c69656e743c2f613e2e0d0a0d0a41204173736f636961e7e36f2042726974e26e69636120646520476f2074656d20756d61206c6f6e6761203c6120687265663d22687474703a2f2f7777772e62726974676f2e6f72672f676f70637265732f676f7063726573312e68746d6c23732d76696577223e6c697374612064652070726f6772616d61733c2f613e2070617261206162726972206172717569766f73205347462e0d0a0d0a436f6d20756d2070726f6772616d6120646520766572206172717569766f732053474620696e7374616c61646f2c20766f63ea20706f646520636f6e66696775726172206f20736575206e6176656761646f722070617261206162726972207261706964616d656e7465206172717569766f7320646f207469706f204d494d4520273c74743e6170706c69636174696f6e2f782d676f2d7367663c2f74743e2720636f6d20656c652e20417373696d2c206f73206a6f676f7320736572e36f2061626572746f73206e656c6520656d20756d20fa6e69636f20636c697175652e0d0a0d0a566f63ea20706f6465206c6572206d61697320736f627265206973736f206e657374612070e167696e613a0d0a3c687474703a2f2f73656e736569732e786d702e6e65742f3f536d61727447616d65466f726d61743e, 'Y', '2014-04-04 12:24:47'),
(4966, 4, 0x45727761727465205a61686c2066fc722072656c617469766520486572617573666f72646572756e67732d5265696368776569746520696d2050726f7a656e74652d5765727465626572656963682025732e, 'Y', '2013-03-04 11:05:28'),
(4968, 4, 0x45727761727465205a61686c2066fc722052fc636b6b616d70662d57617274657a65697420696d205374756e64656e2d5765727465626572656963682025732e, 'Y', '2013-03-04 11:05:28'),
(4980, 4, 0x537069656c656e6465, 'Y', '2013-03-04 11:11:18'),
(4981, 4, 0x537069656c6572204162776573656e68656974, 'Y', '2013-03-04 11:11:18'),
(4988, 4, 0x417573676577e4686c74657220537069656c657220777572646520766f6e2052616e67205b25735d206e616368205b25735d207665727363686f62656e21, 'Y', '2013-03-04 11:11:18'),
(4989, 4, 0xc46e642e, 'Y', '2013-03-04 11:11:18'),
(4991, 4, 0x476573746172746574, 'Y', '2013-03-04 11:13:44'),
(4992, 4, 0x486572617573666f726465726e206765737065727274, 'Y', '2013-03-04 11:13:44'),
(4993, 4, 0x53696520686162656e20257320766f6e206d61782e202573206162676568656e64656e20537069656c686572617573666f72646572756e67656e20676573746172746574, 'Y', '2013-03-04 11:13:44'),
(4847, 4, 0x44696520416e7a61686c2065696e676568656e64657220486572617573666f72646572756e67656e2066fc72206a6564656e2056657274656964696765722069737420626573636872e46e6b7420617566, 'Y', '2013-03-04 11:16:59'),
(4849, 4, 0x257320486572617573666f72646572756e67656e2066fc7220fc62726967652052e46e6765, 'Y', '2013-03-04 11:16:59'),
(4850, 4, 0x257320486572617573666f72646572756e67656e2066fc7220616c6c652052e46e6765, 'Y', '2013-03-04 11:16:59'),
(2462, 11, 0x546f65726e6f6f69206265686572656e, 'Y', '2016-07-27 19:34:00'),
(4612, 11, 0x416c6c6520746f65726e6f6f69656e, 'Y', '2013-08-16 19:27:34'),
(4974, 4, 0x45727761727465205a61686c2066fc7220537069656c65722d4162776573656e6865697420696d2057657274656265726569636820766f6e20257320546167656e2e, 'Y', '2013-03-04 11:24:00'),
(4977, 4, 0x486572617573666f72646572756e67732d52656963687765697465, 'Y', '2013-03-04 11:24:00'),
(4978, 4, 0x486572617573666f72646572756e67732d52fc636b6b616d70662d57617274657a656974, 'Y', '2013-03-04 11:24:00'),
(4979, 4, 0x4d61782e20486572617573666f72646572756e67656e, 'Y', '2013-03-04 11:24:00'),
(4995, 4, 0x486572617573666f72646572756e67656e20616e676568616c74656e, 'Y', '2013-03-04 11:24:00'),
(4996, 4, 0x486572617573666f726465726e2065726c61756274, 'Y', '2013-03-04 11:24:00'),
(4997, 4, 0x49687220537461727472616e672028c46e646572756e672920696e2064657220616b7475656c6c656e20506572696f6465206973743a202573, 'Y', '2013-03-04 11:24:00'),
(4998, 4, 0x4968722052616e672028c46e646572756e672920696e2064657220766f726967656e20506572696f6465207761723a202573, 'Y', '2013-03-04 11:24:00'),
(4999, 4, 0x49687220616b7475656c6c65722052616e67206973742025732e, 'Y', '2013-03-04 11:24:00'),
(4827, 4, 0x4573206d757373206d696e64657374656e732065696e6520486572617573666f72646572756e67732d526569636877656974656e204b6f6e66696775726174696f6e2056455257454e4445542077657264656e2e, 'Y', '2013-03-04 11:27:46'),
(4828, 4, 0x486572617573666f72646572756e67732d526569636877656974652052656c61746976206d75737320696d2050726f7a656e742d576572746562657265696368202573206c696567656e2e, 'Y', '2013-03-04 11:27:46'),
(542, 40, 0x4ee36f2e20506f72206661766f7220636f6d6563652073657573207072f378696d6f73206a6f676f7320636f6d20756d203c686f6d65206661712e7068703f726561643d74266361743d35363e6c696d6974652064652074656d706f2072617a6fe176656c3c2f686f6d653e21, 'Y', '2014-04-04 04:08:53'),
(4947, 4, 0x486572617573666f72646572756e67732d52656963687765697465204162736f6c7574, 'Y', '2013-03-04 11:27:46'),
(4948, 4, 0x486572617573666f72646572756e67732d526569636877656974652052656c61746976, 'Y', '2013-03-04 11:27:46'),
(4949, 4, 0x486572617573666f72646572756e67732d5265696368776569746520537069656c7374e4726b65, 'Y', '2013-03-04 11:27:46'),
(4970, 4, 0x766f6e2047727570706520232573, 'Y', '2013-03-04 11:29:12'),
(5000, 4, 0x496872206265737465722052616e67206973742025732e, 'Y', '2013-03-04 11:29:12'),
(5002, 4, 0x4e657565722052616e67205b25735d20697374206175df657268616c62206465732067fc6c746967656e20576572746562657265696368732025732e, 'Y', '2013-03-04 11:29:12'),
(5004, 4, 0x52616e6720e46e6465726e, 'Y', '2013-03-04 11:29:12'),
(5010, 4, 0x41646d696e2d536368616c746572, 'Y', '2013-03-04 11:42:36'),
(5011, 4, 0x5475726e6965722d496e69746961746f72, 'Y', '2013-03-04 11:42:36'),
(5012, 4, 0x416e66726167652066fc722025733a0d0a0d0a4265696d204265617262656974656e2064657320426574726566667320756e64205465787465732066fc72204968726520416e667261676520626568616c74656e2053696520626974746520646965205265666572656e7a2061756620646173205475726e696572206265692e, 'Y', '2013-03-04 11:42:36'),
(5013, 4, 0x5475726e6965726e657567696b656974656e20616e736568656e, 'Y', '2013-03-04 11:42:36'),
(5014, 4, 0x4e657569676b656974656e2d5465787420766572737465636b656e, 'Y', '2013-03-04 11:42:36'),
(5015, 4, 0x4e657569676b656974656e2d54657874207a656967656e, 'Y', '2013-03-04 11:42:36'),
(5016, 4, 0x5475726e6965726e657569676b656974656e206265617262656974656e, 'Y', '2013-03-04 11:42:36'),
(5017, 4, '', 'Y', '2013-03-04 11:42:36'),
(5018, 4, 0x52756e6465, 'Y', '2013-03-04 11:42:36'),
(5019, 4, 0x416e67656d656c646574, 'Y', '2013-03-04 11:42:36'),
(5020, 4, 0x4e6163687269636874656e, 'Y', '2013-03-04 11:45:12'),
(5021, 4, 0x416e6d656c646520496e666f2066fc722025733a0d0a0d0a426561726265697465204265747265666620756e642054657874, 'Y', '2013-03-04 11:45:12'),
(5022, 4, 0x537069656c6572616e6d656c64756e67206265617262656974656e, 'Y', '2013-03-04 11:45:12'),
(5023, 4, 0x5261686d656e, 'Y', '2013-03-04 11:45:12'),
(5024, 4, 0x547970, 'Y', '2013-03-04 11:45:12'),
(5025, 4, 0x416e6d656c64652d53742e, 'Y', '2013-03-04 11:45:12'),
(5026, 4, 0x542d4772f6df65, 'Y', '2013-03-04 11:45:12'),
(5027, 4, 0x5374617274646174756d, 'Y', '2013-03-04 11:45:12'),
(5028, 4, 0x456e64646174756d, 'Y', '2013-03-04 11:45:12'),
(5029, 4, 0x5475726e69657220416e6d656c6465626573636872e46e6b756e67656e, 'Y', '2013-03-04 11:45:12'),
(5030, 4, 0x48696e7465726772756e6466617262656e, 'Y', '2013-03-04 11:51:34'),
(5031, 4, 0x44656d205475726e696572206b616e6e206e6963687420626569676574726574656e2077657264656e2e, 'Y', '2013-03-04 11:51:34'),
(5032, 4, 0x5475726e6965726175666e61686d65206b616e6e206e75722064757263682045696e6c6164756e67206572666f6c67656e2c20646965206162657220766f6e205475726e6965726c65697465726e20776567656e20426573636872e46e6b756e67656e20766572776569676572742077657264656e206b616e6e2e, 'Y', '2013-03-04 11:51:34'),
(5033, 4, 0x4e75722d45696e6c6164756e67732d5475726e696572206f686e6520426573636872e46e6b756e67656e2e, 'Y', '2013-03-04 11:51:34'),
(5034, 4, 0x44656d205475726e696572206b616e6e206f686e6520426573636872e46e6b756e67656e20626569676574726574656e2077657264656e2e, 'Y', '2013-03-04 11:51:34'),
(5035, 4, 0x5765727465, 'Y', '2013-03-04 11:51:34'),
(5036, 4, 0x4469652064756e6b656c7374652048696e7465726772756e6466617262652068617420566f7272616e672066fc7220616c6c6520426573636872e46e6b756e67656e2e, 'Y', '2013-03-04 11:51:34'),
(5037, 4, 0x5363686c656368746572205475726e6965722d537461747573207a756d2042656974726574656e2e, 'Y', '2013-03-04 11:51:34'),
(5038, 4, 0x416e7a61686c20496872657220676573746172746574656e20537069656c6520fc62657273636872656974657420646965205475726e6965722d4772656e7a656e2e, 'Y', '2013-03-04 11:51:34'),
(5039, 4, 0x5475726e696572206572666f72646572742065696e65204e75747a65722d537069656c7374e4726b652e, 'Y', '2013-03-04 11:51:34'),
(5040, 4, 0x4e75747a65722d537069656c7374e4726b65207061737374206e69636874207a75205475726e6965722d537069656c7374e4726b656e626572656963682e, 'Y', '2013-03-04 11:55:07'),
(5041, 4, 0x4d61782e20416e7a61686c20616e205475726e6965727465696c6e65686d65726e2077757264652065727265696368742e, 'Y', '2013-03-04 11:55:07'),
(5042, 4, 0x5475726e6965722d416e6d656c64756e6773656e64652077757264652065727265696368742e, 'Y', '2013-03-04 11:55:07'),
(5043, 4, 0x53696520686162656e207a752077656e6967206265656e6465746520537069656c6520286765776572746574206f64657220756e6765776572746574292e, 'Y', '2013-03-04 11:55:07'),
(5044, 4, 0x53696520686162656e207a752077656e696720676577657274657465206265656e6465746520537069656c652e, 'Y', '2013-03-04 11:55:07'),
(5045, 4, 0x50726976617465205475726e69657265206e7572206d69742045696e6c6164756e672e, 'Y', '2013-03-04 11:55:07'),
(5046, 4, 0x5370616c7465203c623e25733c2f623e207a656967742064696520616b7475656c6c20616e67656d656c646574656e205820756e642064696520696e73676573616d742065726c61756274656e2059205475726e6965727465696c6e65686d65723a2058202f20592e, 'Y', '2013-03-04 11:55:07'),
(5047, 4, 0x5475726e6965722042656d65726b756e67656e, 'Y', '2013-03-04 11:55:07'),
(5048, 4, 0x52756e64656e2d537461747573, 'Y', '2013-03-04 11:55:07'),
(5049, 4, 0x4b6f6e66696775726174696f6e732d5068617365, 'Y', '2013-03-04 11:55:07'),
(5050, 4, 0xc46e646572756e67205374617274646174756d2c20546974656c2c20426573636872656962756e67, 'Y', '2013-03-04 11:58:25'),
(5051, 4, 0x496e69746961746f722c205261686d656e, 'Y', '2013-03-04 11:58:25'),
(5052, 4, 0x6e757220647572636820496e69746961746f72, 'Y', '2013-03-04 11:58:25'),
(541, 40, 0x556d206a6f676f207465726d696e61646f20706f722074656d706f20706f6465207365722072657373757363697461646f3f, 'Y', '2014-04-04 04:08:53'),
(5054, 4, 0x4e75747a65722d62657a6f67656e3a204e75747a657220537069656c7374e4726b656e626572656963682c206d696e2e20537069656c65, 'Y', '2013-03-04 11:58:25'),
(5056, 4, 0x416e6d656c64652d5068617365, 'Y', '2013-03-04 11:58:25'),
(5057, 4, 0x56657277616c746520416e6d656c64756e6720766f6e20537069656c65726e3a204e75747a65722065696e6c6164656e2c20426577657262756e6720616e6e65686d656e206f6465722061626c65686e656e2c2061626d656c64656e, 'Y', '2013-03-04 11:58:25'),
(5058, 4, 0xc46e6465726e20766f6e205374617475732c20537461727472756e64652c204e616368726963687420766f6e204e75747a6572206c6573656e20756e64206d6974204e6163687269636874206265616e74776f7274656e, 'Y', '2013-03-04 11:58:25'),
(5059, 4, 0x53746172742d5068617365, 'Y', '2013-03-04 11:58:25'),
(5060, 4, 0x537069656c2d5068617365, 'Y', '2013-03-04 11:58:25'),
(5061, 4, 0x5a65696765205475726e6965722d50726f746f6b6f6c6c, 'Y', '2013-03-04 12:01:41'),
(5064, 4, 0x41646d696e6973747269657265204c616464657220284c616464657220766f7262656c6567656e2c20537069656c657220656e746665726e656e29, 'Y', '2013-03-04 12:01:41'),
(5065, 4, 0x4c6164646572206265617262656974656e2028537069656c657220656e746665726e656e2c2052616e672dc46e646572756e67656e29, 'Y', '2013-03-04 12:01:41'),
(5066, 4, 0x537069656c206265656e64656e2c205a6569742068696e7a7566fc67656e, 'Y', '2013-03-04 12:01:41'),
(5067, 4, 0x446566696e6965726520506f6f6c732028506f6f6c706172616d65746572207365747a656e3a20506f6f6c6772f6df652c20506f6f6c616e7a61686c29, 'Y', '2013-03-04 12:01:41'),
(5068, 4, 0x45727374656c6c6520506f6f6c732028506f6f6c732065727374656c6c652c20656e746665726e656e2c20766f7262656c6567656e29, 'Y', '2013-03-04 12:01:41'),
(5069, 4, 0x42656172626569746520506f6f6c7320287a7577656973656e20766f6e20537069656c65726e207a7520506f6f6c7329, 'Y', '2013-03-04 12:01:41'),
(5070, 4, 0x53746172746520537069656c652066fc7220616c6c6520506f6f6c73, 'Y', '2013-03-04 12:01:41'),
(5071, 4, 0x42656172626569746520506c61747a696572756e67656e, 'Y', '2013-03-04 12:03:02'),
(5073, 4, 0x426561726265697465, 'Y', '2013-03-04 12:03:02'),
(5121, 4, 0x4d61726b6965726520537069656c65722066fc7220506f6f6c2d416b74696f6e, 'Y', '2013-03-04 12:05:52'),
(5122, 4, 0x4e65752d5a7577656973656e20766f6e20537069656c6572207a75206e6575656d20506f6f6c, 'Y', '2013-03-04 12:05:52'),
(5123, 4, 0x506f6f6c207a756d205a7577656973656e20766f6e206d61726b69657274656e20537069656c65726e, 'Y', '2013-03-04 12:05:52'),
(5483, 4, 0x5665726966697a696572756e672065726e6575742073656e64656e, 'Y', '2013-08-11 19:22:03'),
(5127, 4, 0x506c61747a20656e746665726e656e, 'Y', '2013-03-04 12:05:52'),
(5130, 4, 0x506c61747a696572756e67656e2062657374696d6d656e, 'Y', '2013-03-04 12:08:42'),
(5131, 4, 0x66fc7220616c6c6520537069656c6572206d697420506c61747a696572756e67656e, 'Y', '2013-03-04 12:08:42'),
(5132, 4, 0x696e20506f6f6c, 'Y', '2013-03-04 12:08:42'),
(5133, 4, 0x42656172626569746520506c61747a20766f6e20506f6f6c732d537069656c6572205b202573205d206d697420537069656c7374e4726b65205b25735d20696e20506f6f6c202573, 'Y', '2013-03-04 12:08:42'),
(5134, 4, 0x416b7475656c6c657220506c61747a, 'Y', '2013-03-04 12:08:42'),
(5482, 4, 0x5665727375636865, 'Y', '2013-08-11 19:22:03'),
(5136, 4, 0x506c61747a207365747a656e, 'Y', '2013-03-04 12:08:42'),
(5137, 4, 0x5475726e69657272756e64652068696e7a75676566fc677421, 'Y', '2013-03-04 12:08:42'),
(5138, 4, 0x5475726e69657272756e64652023257320656e746665726e7421, 'Y', '2013-03-04 12:10:07'),
(5139, 4, 0x5475726e69657272756e64652023257320756d6765736368616c74657421, 'Y', '2013-03-04 12:10:07'),
(5140, 4, 0x52756e64652061757377e4686c656e, 'Y', '2013-03-04 12:10:07'),
(5141, 4, 0x52756e646520616e736568656e, 'Y', '2013-03-04 12:10:07'),
(5142, 4, 0x52756e646520657267e46e7a656e, 'Y', '2013-03-04 12:10:07'),
(5143, 4, 0x52756e646520656e746665726e656e, 'Y', '2013-03-04 12:10:07'),
(5144, 4, 0x4265617262656974652052756e64656e2d456967656e736368616674656e, 'Y', '2013-03-04 12:10:07'),
(5145, 4, 0x5365747a6520616b7475656c6c652052756e6465, 'Y', '2013-03-04 12:10:07'),
(5146, 4, 0x506f6f6c616e7a61686c2d4d6178696d756d, 'Y', '2013-03-04 12:10:43'),
(5147, 4, 0x52756e64656e206265617262656974656e, 'Y', '2013-03-04 12:10:43'),
(5148, 4, 0x416b7475656c6c65722052756e64656e2d537461747573, 'Y', '2013-03-04 12:10:43'),
(5154, 4, 0x52756e646520232573, 'Y', '2013-03-04 12:10:43'),
(5156, 4, 0x53696520737069656c656e20696e2025732e, 'Y', '2013-03-04 12:11:12'),
(5478, 4, 0x456d61696c2069737420756e7665726966697a6965727421, 'Y', '2013-08-11 19:22:03'),
(5158, 4, 0x506c61747a206265617262656974656e, 'Y', '2013-03-04 12:11:12'),
(5159, 4, 0x50756e6b7465, 'Y', '2013-03-04 12:11:12'),
(5161, 4, 0x73656c626572, 'Y', '2013-03-04 12:13:28'),
(5163, 4, 0x537069656c206765776f6e6e656e, 'Y', '2013-03-04 12:13:28'),
(5164, 4, 0x537069656c207665726c6f72656e, 'Y', '2013-03-04 12:22:10'),
(5165, 4, 0x537069656c20756e656e74736368696564656e, 'Y', '2013-03-04 12:22:10'),
(5785, 25, 0x25732063c3a2c59f746967c483207072696e206162616e646f6e2e, 'Y', '2014-03-31 12:19:58'),
(5166, 4, 0x5b25735d203d20506c61747a20766f6e20537069656c657220696e6e657268616c622065696e657320506f6f6c732028313d42657374657220506c61747a293b20466f726d6174202250202842502920257322, 'Y', '2013-03-04 12:27:07'),
(5167, 4, 0x50203d20286f7074696f6e616c2920506c61747a2067657365747a7420766f6e205475726e6965726c65697465722c20657273742066696e616c2062656920456e646520646572205475726e69657272756e6465, 'Y', '2013-03-04 12:27:07'),
(5169, 4, 0x4250203d20766f726ce475666967206265726563686e6574657220506c61747a2c20776972642077656767656c617373656e2066616c6c73206e6963687420626572656368656e626172206f646572206964656e7469736368207a7520506c61747a2050, 'Y', '2013-03-04 12:27:07'),
(5477, 4, 0x456d61696c20697374207665726966697a6965727421, 'Y', '2013-08-11 19:22:03'),
(5171, 4, 0x5475726e6965726e657569676b656974656e20417263686976, 'Y', '2013-03-04 12:27:07'),
(5172, 4, 0x506c61747a20257320696e20506f6f6c202573, 'Y', '2013-03-04 12:27:58'),
(5173, 4, 0x5475726e696572726567656c6e, 'Y', '2013-03-04 12:27:58'),
(5174, 4, 0x4b65696e65205475726e6965726e657569676b656974656e2e, 'Y', '2013-03-04 12:27:58'),
(5175, 4, 0x2573206265656e646574652c202573206765776f6e6e656e652c202573207665726c6f72656e65205475726e696572737069656c65, 'Y', '2013-03-04 12:27:58'),
(5183, 4, 0x616e6765706173737420647572636820257320566f7267616265737465696e65, 'Y', '2013-03-04 12:30:03'),
(5184, 4, 0x626573636872e46e6b74206475726368206d696e2e20257320756e64206d61782e20257320566f7267616265737465696e65, 'Y', '2013-03-04 12:30:03'),
(5185, 4, 0x626573636872e46e6b74206475726368206d696e2e20257320566f7267616265737465696e65, 'Y', '2013-03-04 12:30:03'),
(5186, 4, 0x626573636872e46e6b74206475726368206d61782e20257320566f7267616265737465696e65, 'Y', '2013-03-04 12:30:03'),
(5187, 4, 0x6265726563686e65746520566f7267616265737465696e65, 'Y', '2013-03-04 12:30:03'),
(5188, 4, 0x257320566f7267616265737465696e65, 'Y', '2013-03-04 12:30:03'),
(5189, 4, 0x6265726563686e65746573204b6f6d69, 'Y', '2013-03-04 12:30:03'),
(5190, 4, 0x25732050756e6b7465204b6f6d69, 'Y', '2013-03-04 12:30:03'),
(5191, 4, 0x286162736f6c757465205a65697429, 'Y', '2013-03-04 12:30:03'),
(5192, 4, 0x44696520666f6c67656e64656e20537069656c726567656c6e2067656c74656e2066fc7220646965736573205475726e696572, 'Y', '2013-03-04 12:30:03'),
(5193, 4, 0x416e6d656c64652d506861736520656e64657420756d205b25735d, 'Y', '2013-03-04 12:32:29'),
(5199, 4, '', 'Y', '2013-03-04 12:32:29'),
(5200, 4, 0x4f626a656b74, 'Y', '2013-03-04 12:32:29'),
(5201, 4, 0x416b74696f6e, 'Y', '2013-03-04 12:32:29'),
(5202, 4, 0x4e6163687269636874, 'Y', '2013-03-04 12:32:29'),
(5203, 4, 0x416b74696f6e73646174756d, 'Y', '2013-03-04 12:32:29'),
(5204, 4, 0x416b74696f6e732d4e75747a6572, 'Y', '2013-03-04 12:32:29'),
(5205, 4, 0x5475726e6965722d50726f746f6b6f6c6c, 'Y', '2013-03-04 12:32:29'),
(5206, 4, 0x5475726e6965722d50726f746f6b6f6c6c2042656d65726b756e67656e, 'Y', '2013-03-04 12:32:29'),
(5221, 4, 0x537069656c6572206f686e6520416e6d656c64756e6720617566204c61646465722061756667656e6f6d6d656e20284b6f6e74616b74696572656e205369652065696e656e205475726e6965722d41646d696e207a756d20466978656e2064657220496e6b6f6e73697374656e7a29, 'Y', '2013-03-04 12:32:29'),
(5222, 4, 0x5475726e69657262656d65726b756e67656e20766572737465636b656e, 'Y', '2013-03-04 12:32:46'),
(5223, 4, 0x5475726e69657262656d65726b756e67656e207a656967656e, 'Y', '2013-03-04 12:32:46'),
(4830, 4, 0x4d61782e20566572746569646967756e67656e2066fc7220fc62726967652052e46e6765206d75737320696d20576572746562657265696368202573206c696567656e2e, 'Y', '2013-03-04 12:50:07'),
(4831, 4, 0x4d61782e20566572746569646967756e67656e2066fc72204772757070656e206d75737320696d20576572746562657265696368202573206c696567656e2028302066616c6c73206e696368742076657277656e646574292e, 'Y', '2013-03-04 12:50:07'),
(4832, 4, 0x4d61782e20566572746569646967756e67656e20537461727472616e672066fc72204772757070656e206d7573732057657274203020686162656e202866616c6c73206e696368742076657277656e64657429206f64657220616e646572656e66616c6c73203e30207365696e2e, 'Y', '2013-03-04 12:50:07'),
(4833, 4, 0x4d61782e20566572746569646967756e67656e20756e6420537461727472616e672066fc722047727570706520232573206dfc7373656e2062656964652057657274203020686162656e202866616c6c73206e696368742076657277656e64657429206f646572206dfc7373656e20616e646572656e66616c6c7320626569646520616e6765676562656e207365696e2e, 'Y', '2013-03-04 12:50:07'),
(4834, 4, 0x4d61782e20566572746569646967756e67656e2066fc7220fc62726967652052e46e6765206d757373203c206d61782e20566572746569646967756e67656e2066fc722047727570706520232573207365696e2e, 'Y', '2013-03-04 12:50:07'),
(4835, 4, 0x4d61782e20566572746569646967756e67656e2066fc7220477275707065202331206d757373203e206d61782e20566572746569646967756e67656e2066fc7220477275707065202332207365696e2e, 'Y', '2013-03-04 12:50:07'),
(4836, 4, 0x4d61782e20566572746569646967756e67656e20537461727472616e672066fc7220477275707065202331206d757373203c20537461727472616e672066fc7220477275707065202332207365696e2e, 'Y', '2013-03-04 12:50:07'),
(4838, 4, 0x4d61782e206162676568656e646520486572617573666f72646572756e67656e206d75737320696d20576572746562657265696368202573206c696567656e2e, 'Y', '2013-03-04 12:50:07'),
(4839, 4, 0x537069656c65722d4162776573656e68656974206d75737320696d2057657274656265726569636820766f6e20257320546167656e206c696567656e2e, 'Y', '2013-03-04 12:50:07'),
(4840, 4, 0x52616e672d506572696f64656e6ce46e6765206d75737320696d2057657274656265726569636820766f6e202573204d6f6e6174656e206c696567656e2e, 'Y', '2013-03-04 12:50:07'),
(3002, 36, 0x6672616e636961, 'Y', '2015-09-19 12:51:03'),
(3003, 36, 0x61726162, 'Y', '2015-09-19 12:51:03'),
(8, 40, 0x44657363756c70652c206ee36f20666f6920656e636f6e747261646f206f206a6f676f2071756520766f63ea20666f6920636f6e76696461646f2e204f20636f6e7669746520666f6920726563757361646f3f, 'Y', '2013-10-20 18:16:42'),
(3, 40, 0x44657363756c70652c206f206a6f676f2061696e6461206ee36f20636f6d65e76f752e, 'Y', '2013-10-20 18:16:42'),
(7, 40, 0x44657363756c70652c20766f63ea206ee36f20706f646520636f6e76696461722061207369206d65736d6f2e, 'Y', '2013-10-20 18:16:42'),
(2, 40, 0x44657363756c70652c206f206a6f676f206ae1207465726d696e6f752e, 'Y', '2013-10-20 18:16:42'),
(3481, 40, 0x547261766172206e6f7461, 'Y', '2014-04-09 08:22:04'),
(3510, 40, 0x417669736f, 'Y', '2014-04-09 08:22:04'),
(4876, 4, 0x5475726e69657220416e6d656c6465646174756d, 'Y', '2013-03-04 13:01:13'),
(4877, 4, 0x416b7475656c6c65204e75747a65722d537069656c7374e4726b65, 'Y', '2013-03-04 13:01:13'),
(4885, 4, 0x4d61782e20566572746569646967756e67656e206d75737320696d20576572746562657265696368202573206c696567656e2c206162657220776172205b25735d2e, 'Y', '2013-03-04 13:01:13'),
(4902, 4, 0x6e696368742d67657365747a74, 'Y', '2013-03-04 13:01:13'),
(5486, 4, 0x4f6666656e65205665726966697a696572756e67656e, 'Y', '2013-08-11 19:27:25'),
(5487, 4, 0x556d204e6f746966697a696572756e67656e206f6465722065696e206e657565732050617373776f7274207a7520657268616c74656e202866616c6c732065732076657267657373656e20777572646529206973742065696e6520456d61696c2d41647265737365206572666f726465726c6963682e, 'Y', '2013-08-11 19:27:25'),
(4906, 4, 0x4e75747a657220627261756368742067fc6c7469676520447261676f6e20537069656c7374e4726b65206f64657220696e646976696475656c6c6520537069656c7374e4726b6520776567656e20646566696e69657274656d205475726e6965722d537069656c7374e4726b656e6d6f6475732e, 'Y', '2013-03-04 13:18:11'),
(4907, 4, 0x447261676f6e20537069656c7374e4726b6520776972642066fc72205475726e696572616e6d656c64756e672076657277656e6465742c2061626572206b616e6e20647572636820537069656c657220696e646976696475616c6973696572742077657264656e2e, 'Y', '2013-03-04 13:18:11'),
(4931, 4, 0x537069656c6572204175666e61686d6572656968656e666f6c6765, 'Y', '2013-03-04 13:18:11'),
(4932, 4, 0x4e6575616e6f72646e656e20626572656974732061756667656e6f6d6d656e657220537069656c65722028736f6e7374206e65756520537069656c657220756e74656e20616e68e46e67656e29, 'Y', '2013-03-04 13:18:11'),
(4950, 4, 0x486572617573666f72646572756e67732d52fc636b6b616d70662d57617274657a656974, 'Y', '2013-03-04 13:18:11'),
(4954, 4, 0x46fc7220fc62726967652052e46e676520626573636872e46e6b65206d61782e20566572746569646967756e67656e20617566, 'Y', '2013-03-04 13:18:11'),
(4955, 4, 0x4d61782e206162676568656e646520486572617573666f72646572756e67656e, 'Y', '2013-03-04 13:18:11'),
(4956, 4, 0x486572617573666f72646572657220676577696e6e742064757263682050756e6b7473696567206f6465722041756667616265, 'Y', '2013-03-04 13:18:11'),
(4971, 4, 0x4572776172746520416e7a61686c2066fc72206d61782e20566572746569646967756e67656e20766f6e204772757070652023257320696d205765727465626572656963682025732e, 'Y', '2013-03-04 13:26:30'),
(4972, 4, 0x4572776172746520416e7a61686c2066fc72206d61782e20566572746569646967756e67656e20537461727472616e6720766f6e20477275707065202325732e, 'Y', '2013-03-04 13:26:30'),
(5001, 4, 0x4665686c656e646520537069656c65726175737761686c2066fc722052616e67e46e646572756e67, 'Y', '2013-03-04 13:26:30'),
(5003, 4, 0x4b65696e6520c46e646572756e6720696e2052616e67205b25735d2066fc7220617573676577e4686c74656e20537069656c6572, 'Y', '2013-03-04 13:26:30'),
(5005, 4, 0x486572617573666f726465726e2064696573657320537069656c657273, 'Y', '2013-03-04 13:26:30'),
(5006, 4, 0x4265726569747320696e20257320486572617573666f72646572756e67656e, 'Y', '2013-03-04 13:26:30'),
(5007, 4, 0x57617274656e2066fc722052fc636b6b616d7066205b25735d, 'Y', '2013-03-04 13:26:30'),
(5008, 4, 0x57617274656e2066fc722052fc636b6b616d706620766f72626569, 'Y', '2013-03-04 13:26:30'),
(5009, 4, 0x5475726e6965726c6569746572, 'Y', '2013-03-04 13:26:30'),
(5062, 4, 0x486572617573666f72646572756e67732d526569636877656974652c206d61782e20566572746569646967756e67656e2c206d61782e20486572617573666f72646572756e67656e, 'Y', '2013-03-04 13:32:19'),
(5485, 4, 0x456d61696c2026204e6f746966697a696572756e67656e20e46e6465726e, 'Y', '2013-08-11 19:22:03'),
(5074, 4, 0x537069656c6572205b25735d20616267656d656c64657421, 'Y', '2013-03-04 13:32:19'),
(5484, 4, 0x5665726966697a696572756e6720656e746665726e656e, 'Y', '2013-08-11 19:22:03'),
(5077, 4, 0x416e6d656c64656e, 'Y', '2013-03-04 13:32:19'),
(5078, 4, 0x42656d65726b756e67656e20416e6d656c64756e67, 'Y', '2013-03-04 13:32:19'),
(5079, 4, 0x416e6d656c64756e6720626573636872e46e6b74, 'Y', '2013-03-04 13:32:19'),
(5080, 4, 0x5369652062656ef6746967656e2065696e6520696e646976696475616c6973696572746520537069656c7374e4726b652c2066616c6c7320536965206e6f6368206b65696e65204447532d537069656c7374e4726b6520686162656e206f646572206d697420496872657220616b7475656c6c656e204447532d537069656c7374e4726b65206e69636874207374617274656e20776f6c6c656e2e, 'Y', '2013-03-04 13:32:19'),
(5081, 4, 0x44696520696e646976696475656c6c6520537069656c7374e4726b6520756e642052756e6465206b616e6e206e75722077e46872656e642064657220416e6d656c64652d50686173652066726569206d6f646966697a696572742077657264656e2e, 'Y', '2013-03-04 13:42:03'),
(5082, 4, 0x46616c6c73205369652065696e6520696e646976696475616c6973696572746520537069656c7374e4726b65206f6465722065696e65204e696368742d7374616e6461726467656de4df6520537461727472756e64652065696e6765676562656e20686162656e2c206d757373204968726520426577657262756e6720766f6e2065696e656d205475726e6965726c6569746572207665726966697a696572742077657264656e2e, 'Y', '2013-03-04 13:42:03'),
(5084, 4, 0x416e6d656c64652d537461747573, 'Y', '2013-03-04 13:42:03'),
(5085, 4, 0x4e75747a6572206973742066fc72205475726e696572206e6963687420616e67656d656c646574, 'Y', '2013-03-04 13:42:03'),
(5086, 4, 0x4e75747a65722d426577657262756e67206572666f7264657274205665726966697a696572756e672065696e6573205475726e6965726c656974657273, 'Y', '2013-03-04 13:42:03'),
(5087, 4, 0x4e75747a6572207775726465206475726368205475726e6965726c65697465722065696e67656c6164656e20756e64206572666f72646572742065696e65205665726966697a696572756e672064757263682064656e204e75747a6572, 'Y', '2013-03-04 13:42:03'),
(5088, 4, 0x537069656c6572207775726465206572666f6c67726569636820616e67656d656c646574, 'Y', '2013-03-04 13:42:03'),
(5089, 4, 0x5475726e6965722d506f6f6c7320766f7262656c65677421, 'Y', '2013-03-04 13:42:03'),
(5090, 4, 0x5475726e6965722d506f6f6c7320656e746665726e7421, 'Y', '2013-03-04 13:42:03'),
(5091, 4, 0x5475726e696572205374616e646172642d506f6f6c207775726465206d6974206665686c656e64656e20537069656c65726e20617566676566fc6c6c7421, 'Y', '2013-03-04 13:45:21'),
(5092, 4, 0x536c696365206475726368, 'Y', '2013-03-04 13:45:21'),
(5093, 4, 0x506f6f6c6772f6df65, 'Y', '2013-03-04 13:45:21'),
(5094, 4, 0x426573746520506f6f6c7665727465696c756e67, 'Y', '2013-03-04 13:45:21'),
(5095, 4, 0x426173697320506f6f6c6772f6df65, 'Y', '2013-03-04 13:45:21'),
(5096, 4, 0x44696520546162656c6c65207a6569677420426569737069656c2d5665727465696c756e67656e2066fc722064696520257320616e67656d656c646574656e20537069656c657220766f6e2052756e6465202325732066fc722065726c617562746520506f6f6c6772f6df656e2e, 'Y', '2013-03-04 13:45:21'),
(5901, 3, 0x235347, 'Y', '2014-04-03 23:27:15'),
(538, 40, 0x417461726920e92061207369747561e7e36f206f6e646520756d61207065647261206f7520677275706f206465207065647261732074656d206170656e617320756d61206c69626572646164652e20417373696d2073656e646f2c2065737361207065647261206f7520677275706f20706f6465207365722063617074757261646f206e61207072f378696d61206a6f6761646120646f20616476657273e172696f2e, 'Y', '2014-04-04 04:08:53'),
(5098, 4, 0x4c6567656e652066fc7220506f6f6c2d5665727465696c756e67656e, 'Y', '2013-03-04 13:45:21'),
(5099, 4, 0x537069656c65720d0a4b6170617a6974e474, 'Y', '2013-03-04 13:45:21'),
(5100, 4, 0x537069656c65720d0a44696666, 'Y', '2013-03-04 13:45:21'),
(5101, 4, 0x426573746520506f6f6c0d0a5665727465696c756e67, 'Y', '2013-03-04 13:48:39'),
(5102, 4, 0x537069656c650d0a416e7a61686c, 'Y', '2013-03-04 13:48:39'),
(5103, 4, 0x44696520616b7475656c6c6520506172616d657465726175737761686c2064757263682064656e205475726e6965726c6569746572207775726465206d69742061756667656e6f6d6d656e2c20756e6420646965205a65696c652077697264206d61726b696572742c2066616c6c73207369652067fc6c746967206973742e, 'Y', '2013-03-04 13:48:39'),
(5104, 4, 0x506f6f6c6772f6df65, 'Y', '2013-03-04 13:48:39'),
(5105, 4, 0x506f6f6c0d0a4772f6df65, 'Y', '2013-03-04 13:48:39'),
(5106, 4, 0x506f6f6c0d0a416e7a61686c, 'Y', '2013-03-04 13:48:39'),
(5107, 4, 0x42656d65726b756e67656e20566f727363686c6167, 'Y', '2013-03-04 13:48:39'),
(5108, 4, 0x576964657273707269636874206d696e2e20506f6f6c6772f6df652062656920536c6963696e6721, 'Y', '2013-03-04 13:48:39'),
(5109, 4, 0x576964657273707269636874206d61782e20506f6f6c6772f6df6521, 'Y', '2013-03-04 13:48:39'),
(5110, 4, 0x506f6f6c6772f6df65206f646572202d616e7a61686c207a75206b6c65696e21, 'Y', '2013-03-04 13:48:39'),
(5111, 4, 0x544c2d4175737761686c, 'Y', '2013-03-04 13:54:23'),
(5112, 4, 0x456d70666f686c656e65205665727465696c756e6721, 'Y', '2013-03-04 13:54:23'),
(553, 40, 0x5175616e646f207061737361206f2074656d706f206e6f73206d657573206a6f676f733f, 'Y', '2014-04-04 04:08:53'),
(554, 40, 0x536575732074656d706f73206465206a6f676f2070617373616d203c623e6170656e61733c2f623e207175616e646f20657374e1206e61207375612076657a2e0d0a0d0a456c6573206ee36f2070617373616d0d0a3c756c3e0d0a3c6c693e7175616e646f2073657520616476657273e172696f2074656d207175652066617a65722061207072f378696d61206a6f676164610d0a3c6c693e647572616e7465206f20736575203c686f6d65206661712e7068703f726561643d74266361743d353623456e74727936313e686f72e172696f2064652064657363616e736f3c2f686f6d653e0d0a3c6c693e616f732066696e6169732064652073656d616e612028736520766f63ea206573636f6c6865752065737361206f70e7e36f206e6f203c686f6d65206661712e7068703f726561643d74266361743d33353723456e74727934343e636f6e7669746520646f206a6f676f3c2f686f6d653e290d0a3c2f756c3e0d0a0d0a506172612063616461206a6f676f2c206f2072656cf367696f2070617261646f20e920696e64696361646f20636f6d206f732073656775696e74657320ed636f6e6573206d6f73747261646f73206e61207365e7e36f20646520696e666f726d61e7f5657320646f73206a6f6761646f7265732c206e612070e167696e6120646f206a6f676f2c206f75206e612070e167696e6120646520696e666f726d61e7f56573206465206a6f676f206e61206c696e686120223c693e44657363616e736f3c2f693e223a0d0a3c756c3e0d0a3c6c693e3c696d616765206e696768742e6769663e203a20757375e172696f20656d203c686f6d65206661712e7068703f726561643d74266361743d353623456e74727936313e20686f72e172696f2064652064657363616e736f3c2f686f6d653e0d0a3c6c693e3c696d616765207661636174696f6e2e6769663e203a20757375e172696f206465203c686f6d65206661712e7068703f726561643d74266361743d353623456e74727936363e66e9726961733c2f686f6d653e0d0a3c6c693e3c696d6167652077636c6f636b5f73746f702e6769663e203a2070617261203c686f6d65206661712e7068703f726561643d74266361743d353626653d31343323456e7472793134333e66696e732064652073656d616e613c2f686f6d653e0d0a3c2f756c3e, 'Y', '2014-04-04 04:08:53'),
(550, 40, 0x4174e9203330206469617320286de178696d6f20706f7220616e6f292e20412063616461206dea7320322c3520646961732064652066e9726961732073e36f20616372657363656e7461646f7320e02073756120636f6e74612e, 'Y', '2014-04-04 04:08:53'),
(5115, 4, 0x5a65696765204e696368742d5a75676577696573656e65, 'Y', '2013-03-04 13:54:23'),
(5117, 4, 0x46fc72204e65752d5a7577656973756e672c206e6575656e20506f6f6c2065696e676562656e, 'Y', '2013-03-04 13:54:23'),
(5118, 4, 0x4e75747a65722d537069656c7374e4726b65, 'Y', '2013-03-04 13:54:23'),
(3388, 11, 0x4d696a6e20746f65726e6f6f69656e, 'Y', '2013-08-16 19:27:01'),
(5120, 4, 0x576569736520286e696368742d7a75676577696573656e656e2920537069656c6572206e6575656d20506f6f6c207a75, 'Y', '2013-03-04 13:54:23'),
(5128, 4, 0x5a6569676520506c61747a2053746174697374696b, 'Y', '2013-03-04 13:58:11'),
(5151, 4, 0x5475726e696572737069656c204b6f6e66696775726174696f6e732d50686173652028616c6c65205475726e696572737069656c6520766f72626572656974656e29, 'Y', '2013-03-04 13:58:11'),
(5481, 4, '', 'Y', '2013-08-11 19:22:03'),
(5479, 4, 0x456d61696c206665686c7421, 'Y', '2013-08-11 19:22:03'),
(5480, 4, 0x45696e7374656c6c756e67656e2073706569636865726e, 'Y', '2013-08-11 19:22:03'),
(5178, 4, 0x5475726e6965722d416e6d656c64756e67, 'Y', '2013-03-04 13:58:11'),
(5476, 4, 0x456d61696c2069737420756e67fc6c74696721, 'Y', '2013-08-11 19:22:03'),
(5180, 4, 0x616e676570617373742064757263682025732050756e6b7465, 'Y', '2013-03-04 13:58:11'),
(5176, 4, 0x5a757374616e6420537069656c65722045726765626e6973, 'Y', '2013-03-04 13:59:11'),
(5177, 4, 0x5475726e69657220506c61747a696572756e67656e2028544f5020257329, 'Y', '2013-03-04 13:59:11'),
(5412, 5, 0x4a6f696e64726520756e206669636869657220534746, 'Y', '2013-03-08 20:24:25'),
(2401, 5, 0x496e666f732073757220636574746520706172746965, 'Y', '2013-03-11 14:44:22'),
(3155, 5, 0x41696465202f20464151, 'Y', '2013-03-08 20:29:50'),
(2416, 5, 0x52e8676c6573, 'Y', '2013-03-08 20:35:42'),
(2914, 5, 0x4a61706f6e6169736573, 'Y', '2013-03-08 20:35:42'),
(2915, 5, 0x4368696e6f69736573, 'Y', '2013-03-08 20:35:42'),
(3367, 5, 0x52e8676c6573, 'Y', '2013-03-08 20:35:42'),
(2397, 5, 0x56e972696669657a2071756520746f7573206c6573207465727269746f6972657320736f6e74206269656e2064e96c696d6974e973206176616e7420646520636c6f7265206c61207061727469652021, 'Y', '2013-03-11 14:28:54'),
(2411, 5, 0x416e6e756c657220636f7570, 'Y', '2013-03-11 14:29:11'),
(1403, 5, 0x416e6e756c6572, 'Y', '2013-03-11 14:29:26'),
(1396, 5, 0x436c697175657a20737572202256616c696465722220706f757220636f6e6669726d6572, 'Y', '2013-03-11 14:31:05'),
(3075, 5, 0x416c6c6572207665727320636520646f7373696572, 'Y', '2013-03-11 14:36:17'),
(3249, 5, 0x4d657373616765, 'Y', '2013-03-11 14:38:12'),
(2905, 5, 0x4d6f64e86c657320706f7572206c652070736575646f205b25735d, 'Y', '2013-03-11 14:45:35'),
(2906, 5, 0x4d6f64e86c6573, 'Y', '2013-03-11 14:45:35'),
(3969, 5, 0x50736575646f20696e636f6e6e75, 'Y', '2013-03-11 14:46:13'),
(4348, 5, 0x50736575646f20696e636f6e6e75205b25735d, 'Y', '2013-03-11 14:46:13'),
(2458, 5, 0x496e666f726d6174696f6e7320737572206c6120706172746965, 'Y', '2013-03-11 14:47:17'),
(2459, 5, 0x566f6972206c6120706172746965, 'Y', '2013-03-11 14:49:13'),
(1763, 5, 0x4a276169207072697320636f6e6e61697373616e636520646573203c6120687265663d22257322207461726765743d22646773544f53223e52e8676c657320646520626f6e6e6520436f6e64756974653c2f613e2e, 'Y', '2013-03-11 14:57:43'),
(1768, 5, 0x4d65726369206465206c697265206c61207061676520737572206c65732052e8676c657320646520626f6e6e6520436f6e64756974652c20657420646520636f63686572206c61206361736520736920766f7573206c657320616363657074657a2e, 'Y', '2013-03-11 14:57:43'),
(546, 17, 0x4b7975206f7a6e61637a612022706f637ab1746b756ab16365676f222c206c756220706f2070726f737475206e69652d6d697374727a6f77736b6928637a6173656d206e617a7977616e792075637a6e696f77736b696d292072616e6b696e6728772070727a656369776965f1737477696520646f2064616e292e205a61637a796e61207369ea206f642033306b28637a6173656d206e6120696e6e79636820736572776572616368206a65737420746f203335292c20636f206f7a6e61637a61207a757065b36e696520706f637ab1746b756ab16365676f2c2061bf20646f20316b2e0d0a44616e61207369b361206e612072f3bf6e7963682073657277657261636820692077207265616c6e796d20b6776965636965207369ea2072f3bf6e692874616bbf65207a616c65bf6e6965206f64206b72616a75292c206e702e20376b206e61206467732c206d6fbf65206d6965e6206f6b6fb36f20346b206e61206b67732c20616c626f20396b2077207265616c6e796d20b6776965636965286567662f707364292e0d0a53797374656d2074656e20756d6fbf6c697769612070727a797a6e616e69652068616e6469636170752c20637a796c692075b361747769656e69612c206e702e20396b206772616ab163207a20376b20646f7374616e6965206e6120706f637ab174656b2064776120637a61726e65206b616d69656e69652c2061627920777972f3776e61e62072f3bf6e6963ea2c206d616b73796d616c6e61206c69637a62612068616e646920746f20392e0d0a0d0a57206b6f726561f1736b696d207a616d69617374206b7975206df37769207369ea2022677570222e, 'Y', '2013-08-20 10:59:05'),
(2350, 5, 0x416c6c657220e0206c6120706167652064276163637565696c, 'Y', '2013-03-11 15:01:47'),
(3396, 11, 0x546f65726e6f6f696c656964657273, 'Y', '2013-08-16 19:27:01'),
(3402, 11, 0x546f65726e6f6f692061616e70617373656e, 'Y', '2013-08-16 19:27:01'),
(3154, 5, 0x436f6e6e6578696f6e, 'Y', '2013-03-11 15:07:01'),
(3373, 5, 0x546f75746573206c6573207061727469657320656e20636f757273, 'Y', '2013-03-12 14:33:22'),
(3372, 5, 0x546f75746573206c65732070617274696573207465726d696ee96573, 'Y', '2013-03-12 14:33:38'),
(3370, 5, 0x546f75746573206c65732070617274696573206f6273657276e96573, 'Y', '2013-03-12 14:33:58'),
(3375, 5, 0x5061727469657320656e20636f75727320706f757220253124733a2025322473, 'Y', '2013-03-12 14:36:04'),
(3368, 5, 0x54656d70732072657374616e740d0a286d6f6929, 'Y', '2015-06-13 16:22:24'),
(3369, 5, 0x54656d70732072657374616e740d0a286164766572736169726529, 'Y', '2015-06-13 16:22:24'),
(3058, 5, 0x506965727265732064652068616e6469636170, 'Y', '2013-03-13 08:50:36'),
(3366, 5, 0x54797065206465206a6575, 'Y', '2013-03-13 08:52:59'),
(2424, 5, 0x506172616de874726573206465206c6120706172746965, 'Y', '2013-03-13 08:54:41'),
(4534, 5, 0x506172616de874726573, 'Y', '2013-03-13 08:54:59'),
(1499, 5, 0x43616c63756c2064750d0a68616e6469636170, 'Y', '2015-06-13 16:22:24'),
(4519, 5, 0x43616c63756ce9, 'Y', '2013-03-13 09:12:17'),
(4518, 5, 0x547261646974696f6e6e656c, 'Y', '2013-03-13 08:58:49'),
(4546, 5, 0x506f757220636861717565207061727469652c206c6120636f6c6f6e6e652027706172616de8747265732720696e646971756520766f74726520636f756c6575722c2061696e736920717565206c652068616e6469636170206574206c65206b6f6d692e, 'Y', '2013-04-09 18:22:20'),
(4547, 5, 0x706c6163656d656e74206c696272652064657320706965727265732064652068616e6469636170206175746f726973e9, 'Y', '2013-03-13 09:01:11'),
(4548, 5, 0x556e652070617274696520656e2073616c6c65206427617474656e746520657374206d61727175e965203c623e636f6d70617469626c653c2f623e20736920766f7472652070726f66696c2072656d706c6974206c657320636f6e646974696f6e732072e9636c616de9657320706172206c2761647665727361697265203a, 'Y', '2013-04-09 18:17:05'),
(5452, 5, 0x436f6d70617469626c6573, 'Y', '2013-03-13 09:08:48'),
(5453, 5, 0x4d65732070617274696573, 'Y', '2013-03-13 09:09:20'),
(3189, 5, 0x616c6c657220e0206c61207072656d69e872652070616765, 'Y', '2013-03-13 09:11:02'),
(3192, 5, 0x616c6c657220e0206c61206465726e69e872652070616765, 'Y', '2013-03-13 09:11:02'),
(548, 17, 0x44616e20746f20706f7a696f6d206e617a7977616e7920226d697374727a6f77736b696d222e20506f20316b20706f6a61776961207369ea2031642069207475207369b361206d61207369ea206f6477726f746e6965206e69bf2077206b79752c20316420746f206e616a73b36162737a792064616e2c2061203964206e616a6d6f636e656a737a792e0d0a44616e61207369b361206e612072f3bf6e7963682073657277657261636820692077207265616c6e796d20b6776965636965207369ea2072f3bf6e692874616bbf65207a616c65bf6e6965206f64206b72616a75292c206e702e203164206e61206467732c206d6fbf65206d6965e6206f6b6fb36f203364206e61206b67732c20616c626f2031642077207265616c6e796d20b6776965636965286567662f707364292e0d0a53797374656d2074656e20756d6fbf6c697769612070727a797a6e616e69652068616e6469636170752c20637a796c692075b361747769656e69612c206e702e203964206772616ab163207a20376420646f7374616e6965206e6120706f637ab174656b2064776120637a61726e65206b616d69656e69652c2061627920777972f3776e61e62072f3bf6e6963ea2c206d616b73796d616c6e61206c69637a62612068616e646920746f20392e205720b67769656369652070726f6665736a6f6e616c6e79636820677261637a792072616e6b696e67202264616e22206e69656d616c206e6965206461207369ea2070727a7972f3776e61e620646f20616d61746f72736b6965676f2072616e6b696e67752e20416d61746f72207a203164206e6965206d6120737a616e73207a2070726f6665736a6f6e616c697374b120706f73696164616ab163796d2074656e2073616d2072616e6b696e672e, 'Y', '2013-08-20 10:59:05'),
(2558, 5, 0x48616e646963617020747261646974696f6e6e656c, 'Y', '2013-03-13 09:14:19'),
(3056, 5, 0x506172616de97472616765206d616e75656c, 'Y', '2013-03-13 09:17:55'),
(3251, 5, 0x456e72656769737472657220636f6d6d65206d6f64e86c65, 'Y', '2013-03-13 09:19:00'),
(2853, 5, 0x4e6f6972, 'Y', '2013-03-13 09:21:42'),
(2942, 5, 0x4e6f6972, 'Y', '2013-03-13 09:21:58'),
(2854, 5, 0x426c616e63, 'Y', '2013-03-13 09:22:23'),
(2943, 5, 0x426c616e63, 'Y', '2013-03-13 09:22:23'),
(2941, 5, 0x50617274696520646f75626c65, 'Y', '2013-03-13 09:22:45'),
(2936, 5, 0x2e2e2e20766f74726520636f756c657572207365726120253124732c20617665632048616e64696361702025322473206574204b6f6d69202533242e3166, 'Y', '2013-03-13 09:28:25'),
(3057, 5, 0x4ee9676f63696174696f6e206475204b6f6d69, 'Y', '2013-03-13 09:30:41'),
(2946, 5, 0x456e6368e8726573206c6962726573, 'Y', '2013-03-13 09:31:27'),
(4525, 5, 0x456e6368e8726573206c6962726573, 'Y', '2013-03-13 09:31:27'),
(2947, 5, 0x456e6368e87265732073656372e8746573, 'Y', '2013-03-13 09:31:55'),
(4526, 5, 0x456e6368e87265732073656372e8746573, 'Y', '2013-03-13 09:31:55'),
(3252, 5, 0x496e766974657220756e206a6f7565757220e020756e65206e6f7576656c6c6520706172746965, 'Y', '2013-03-13 09:32:56'),
(2507, 5, 0x47657374696f6e2064752074656d7073, 'Y', '2013-03-13 09:34:02'),
(3067, 5, 0x46757365617520555443, 'Y', '2013-03-13 09:48:33'),
(1932, 5, 0x416363266567726176653b732074656d706f72616972656d656e74207265667573266561637574653b, 'Y', '2013-04-03 11:09:43'),
(1737, 5, 0x6d696e75746573, 'Y', '2013-04-03 11:10:01'),
(2145, 5, 0x50726f66657373696f6e6e656c, 'Y', '2013-04-03 11:10:28'),
(2146, 5, 0x526f626f74, 'Y', '2013-04-03 11:10:28'),
(2158, 5, 0x537461746973746971756573, 'Y', '2013-04-03 11:10:43'),
(2632, 5, 0x436f6d707461676520706172207465727269746f69726573, 'Y', '2013-04-03 15:02:23'),
(2633, 5, 0x436f6d707461676520706172207375726661636573, 'Y', '2013-04-03 15:02:23'),
(2634, 5, 0x436f6d70746167652064657320706f696e7473, 'Y', '2013-04-03 15:02:23'),
(2636, 5, 0x5465727269746f697265, 'Y', '2013-04-03 15:01:25'),
(2637, 5, 0x50696572726573206d6f72746573, 'Y', '2013-04-03 15:01:25'),
(2638, 5, 0x50696572726573, 'Y', '2013-04-03 15:01:25'),
(2639, 5, 0x507269736f6e6e69657273, 'Y', '2013-04-03 15:01:25'),
(2641, 5, 0x53636f7265, 'Y', '2013-04-03 15:01:38'),
(2642, 5, 0x52e973756c746174, 'Y', '2013-04-03 15:01:38'),
(4707, 7, 0x526f7a6573746176656eed, 'Y', '2016-07-20 18:39:13'),
(2644, 5, 0x436f757073, 'Y', '2013-04-03 15:05:19'),
(2645, 5, 0x5072696f726974e9, 'Y', '2013-04-03 15:05:19'),
(2646, 5, 0x54656d70732072657374616e74, 'Y', '2013-04-03 15:05:19'),
(2516, 5, 0x5472696572, 'Y', '2013-04-03 15:05:48'),
(3447, 5, 0x5472696572, 'Y', '2013-04-03 15:05:48'),
(1519, 5, 0x5265e775206465, 'Y', '2013-04-23 14:30:59'),
(1512, 5, 0x457870e9646974657572, 'Y', '2013-04-23 14:30:59'),
(1511, 5, 0x44657374696e617461697265, 'Y', '2013-04-23 14:32:00'),
(3230, 5, 0x56657273206c6520646f73736965723a, 'Y', '2013-04-23 14:32:27'),
(3231, 5, 0x44e9706c61636572206c6573206d6573736167657320636f6368e973, 'Y', '2013-04-23 14:32:48'),
(1515, 5, 0x53e96c6563742e, 'Y', '2013-04-23 14:34:05'),
(3229, 5, 0x496e766572736572206c612073e96c656374696f6e, 'Y', '2013-04-23 14:34:58'),
(1558, 5, 0x44617465, 'Y', '2013-04-23 14:35:22'),
(1510, 5, 0x496e7465726c6f637574657572, 'Y', '2013-04-23 14:37:03'),
(1518, 5, 0x456e766f79e920e0, 'Y', '2013-04-23 14:38:13'),
(3074, 5, 0x566f6972206c65207072656d696572206d657373616765206465206c6120636f6e766572736174696f6e, 'Y', '2013-04-23 14:38:59'),
(2435, 5, 0x4e69766561752061637475656c, 'Y', '2013-04-23 14:41:34'),
(4809, 5, 0x4e69766561752061637475656c, 'Y', '2013-04-23 14:41:40'),
(3358, 5, 0x4e6f2e20706172746965, 'Y', '2013-04-23 14:42:47'),
(4222, 5, 0x456e7472657220756e206e756de9726f20646520706172746965, 'Y', '2013-04-23 14:42:47'),
(2208, 5, 0x4368616e6765722064652070686f746f2064652070726f66696c, 'Y', '2013-04-25 14:49:18'),
(2414, 11, 0x5370656c74797065, 'Y', '2016-07-27 18:55:34'),
(2424, 11, 0x50617274696a2d696e7374656c6c696e67656e, 'Y', '2016-07-27 18:55:34'),
(3096, 11, 0x57616172736368696a6e6c696a6b6520696e7374656c6c696e67656e, 'Y', '2013-05-01 17:23:26'),
(3303, 37, 0xd09ed0bfd0bed0bdd0b5d0bdd182d0b820d0bdd0b020d0b8d0b3d180d0b0d18720253124733a2025322473, 'Y', '2013-05-09 11:15:06'),
(4493, 37, 0xd0a7d0b0d181d0bed0b2d0b020d0b7d0bed0bdd0b0, 'Y', '2013-05-09 21:06:49'),
(4494, 37, 0xd09cd0b5d181d182d0bdd0be20d0b2d180d0b5d0bcd0b5, 'Y', '2013-05-09 21:10:41'),
(3375, 37, 0xd0a2d0b5d0bad183d189d0b820d0b8d0b3d180d0b820d0bdd0b020253124733a2025322473, 'Y', '2013-05-09 21:15:30'),
(2581, 11, 0x50617274696a206765737461727421, 'Y', '2013-05-11 08:56:47'),
(2374, 5, 0x4c656374757265207365756c65, 'Y', '2013-05-15 17:46:45'),
(2178, 8, 0xacdba4f9b2beb0a3a149, 'Y', '2013-06-03 16:54:22'),
(2179, 8, 0xacdba4f9c078a673a149, 'Y', '2013-06-03 16:54:22'),
(2181, 8, 0xacdba4f9bd73bfe8, 'Y', '2013-06-03 16:54:22');
INSERT INTO `Translations` (`Original_ID`, `Language_ID`, `Text`, `Translated`, `Updated`) VALUES
(2189, 8, 0xacdba4f9bba1a9fa, 'Y', '2013-06-03 16:54:22'),
(2208, 8, 0xbd73bfe8acdba4f9, 'Y', '2013-06-03 16:54:22'),
(3224, 8, 0xa8cfa5ceaaccacdba4f9, 'Y', '2013-06-03 16:54:22'),
(4502, 8, 0xa8cfa5ceaaccacdba4f9a15dc1f4c2c3a15e, 'Y', '2013-06-03 16:56:38'),
(4503, 8, 0xa8cfa5ceaaccacdba4f9, 'Y', '2013-06-03 16:54:22'),
(2178, 34, 0xe79bb8e78987e7a7bbe999a4efbc81, 'Y', '2013-06-03 16:55:56'),
(2179, 34, 0xe79bb8e78987e584b2e5ad98efbc81, 'Y', '2013-06-03 16:55:56'),
(2181, 34, 0xe79bb8e78987e7b7a8e8bcaf, 'Y', '2013-06-03 16:55:56'),
(2189, 34, 0xe79bb8e78987e8aaaae6988e, 'Y', '2013-06-03 16:55:56'),
(2208, 34, 0xe7b7a8e8bcafe79bb8e78987, 'Y', '2013-06-03 16:55:56'),
(3224, 34, 0xe4bdbfe794a8e88085e79bb8e78987, 'Y', '2013-06-03 16:55:56'),
(4502, 34, 0xe4bdbfe794a8e88085e79bb8e78987efbc88e99ab1e8978fefbc89, 'Y', '2013-06-03 16:55:56'),
(4503, 34, 0xe4bdbfe794a8e88085e79bb8e78987, 'Y', '2013-06-03 16:55:56'),
(2059, 8, 0xadd7a7efb5a5afc5, 'Y', '2013-06-03 16:59:32'),
(2059, 34, 0xe4bfaee694b9e7ad89e7b49a, 'Y', '2013-06-03 16:59:51'),
(2375, 5, 0x436163686572206c27617574657572, 'Y', '2013-06-17 08:31:45'),
(2362, 5, 0x546f7574206d61727175657220636f6d6d65206c75, 'Y', '2013-06-17 08:35:40'),
(1826, 5, 0x41637475616c69736572, 'Y', '2013-06-17 08:35:58'),
(1642, 5, 0x7072e96669786520696e746572646974, 'Y', '2013-06-24 15:18:33'),
(1644, 5, 0x6461746520696e76616c696465, 'Y', '2013-06-24 15:18:33'),
(1645, 5, 0x6461746520696e76616c696465, 'Y', '2013-06-24 15:18:33'),
(1646, 5, 0x657272657572206465206775696c6c656d657473, 'Y', '2013-06-24 15:18:33'),
(2411, 8, 0xadaba455, 'Y', '2013-06-25 03:21:50'),
(2411, 34, 0xe9878de4b88b, 'Y', '2013-06-25 03:22:02'),
(2411, 10, 0xd6d8cfc2, 'Y', '2013-06-25 03:22:41'),
(2411, 33, 0xe9878de4b88b, 'Y', '2013-06-25 03:22:51'),
(1059, 25, 0x416669c59f65617ac483, 'Y', '2013-07-04 13:58:02'),
(3148, 25, 0x556c74696d656c65206d6573616a652064696e20666f72756d2d757269, 'Y', '2013-07-04 14:02:11'),
(3153, 25, 0x416669c59f65617ac483, 'Y', '2013-07-04 14:02:54'),
(3149, 25, 0x416476657273617269206f6e6c696e65, 'Y', '2013-07-04 14:05:36'),
(3150, 25, 0x5574696c697a61746f7269206f6e6c696e65, 'Y', '2013-07-04 14:07:43'),
(3151, 25, 0x536368696d62c48320766163616ec5a361, 'Y', '2013-07-04 14:19:41'),
(3152, 25, 0x4564697465617ac48320636f6e74, 'Y', '2013-07-04 14:19:57'),
(2383, 37, 0xd09fd180d0b5d0b3d0bbd0b5d0b420d0bdd0b020d182d0b5d0bcd0b0d182d0b0, 'Y', '2013-07-14 11:53:14'),
(2385, 37, 0xd09cd0bdd0b5d0bdd0b8d18f20d0b220d182d0b5d0bcd0b0d182d0b0, 'Y', '2013-07-14 11:54:27'),
(2384, 37, 0xd0a1d0bad180d0b8d0b920d0bfd180d0b5d0b3d0bbd0b5d0b4d0b0, 'Y', '2013-07-14 11:56:58'),
(2386, 37, 0xd09fd0bed0bad0b0d0b6d0b820d180d0b5d0b7d18ed0bcd0b5, 'Y', '2013-07-14 11:58:24'),
(4690, 37, 0xd09fd18ad180d0b2d0be20d181d182d0b0d180d0b8d182d0b5, 'Y', '2013-07-14 11:59:22'),
(4691, 37, 0xd09fd18ad180d0b2d0be20d0bdd0bed0b2d0b8d182d0b5, 'Y', '2013-07-14 11:59:39'),
(4692, 37, 0xd094d18ad180d0b2d0bed0b2d0b8d0b4d0bdd0be, 'Y', '2013-07-14 12:01:04'),
(2378, 37, 0xd09fd180d0b5d0b3d0bbd0b5d0b4d0b8, 'Y', '2013-07-14 12:03:44'),
(3209, 37, 0xd09fd180d0b5d0b3d0bbd0b5d0b4d0b8, 'Y', '2013-07-14 12:03:44'),
(4587, 37, 0x257320d0bfd180d0b5d0b3d0bbd0b5d0b4d0b0, 'Y', '2013-07-14 12:03:44'),
(5450, 37, 0xd09cd0bed0b8d182d0b520d187d0b0d0bad0b0d189d0b820d0b8d0b3d180d0b8, 'Y', '2013-07-14 13:07:45'),
(3352, 17, '', 'Y', '2013-08-21 00:43:55'),
(3353, 17, '', 'Y', '2013-08-21 00:43:55'),
(3358, 17, '', 'Y', '2013-08-21 00:44:21'),
(3366, 17, 0x54797020677279, 'Y', '2013-08-22 04:06:53'),
(3367, 17, 0x52656775b379, 'Y', '2013-08-22 04:07:56'),
(3371, 17, 0x477279206b74f37265206f6273657277756aea, 'Y', '2013-08-22 04:03:09'),
(3385, 17, 0x4d6f6a6520626965bfb1636520677279, 'Y', '2013-08-22 04:01:09'),
(3386, 17, 0x4d6f6a65207a616b6ff1637a6f6e6520677279, 'Y', '2013-08-22 04:01:53'),
(3440, 17, 0x5374617475732075bf79746b6f776e696b6120253124733a2025322473, 'Y', '2013-08-22 03:35:37'),
(3445, 17, '', 'Y', '2013-08-21 00:44:52'),
(3446, 17, '', 'Y', '2013-08-21 00:44:52'),
(3447, 17, '', 'Y', '2013-08-21 00:44:52'),
(3448, 17, '', 'Y', '2013-08-21 00:44:52'),
(3449, 17, '', 'Y', '2013-08-21 00:44:52'),
(3450, 17, '', 'Y', '2013-08-21 00:44:52'),
(3451, 17, '', 'Y', '2013-08-21 00:44:52'),
(3452, 17, '', 'Y', '2013-08-21 00:44:52'),
(3453, 17, '', 'Y', '2013-08-21 00:44:52'),
(3454, 17, '', 'Y', '2013-08-21 00:45:17'),
(3455, 17, '', 'Y', '2013-08-21 00:45:17'),
(3456, 17, '', 'Y', '2013-08-21 00:45:17'),
(3457, 17, '', 'Y', '2013-08-21 00:45:17'),
(3458, 17, '', 'Y', '2013-08-21 00:45:17'),
(3459, 17, '', 'Y', '2013-08-21 00:45:17'),
(3460, 17, '', 'Y', '2013-08-21 00:45:17'),
(3461, 17, '', 'Y', '2013-08-21 00:45:17'),
(3462, 17, '', 'Y', '2013-08-21 00:45:17'),
(3464, 17, '', 'Y', '2013-08-21 00:45:17'),
(3465, 17, '', 'Y', '2013-08-21 00:46:50'),
(3467, 17, '', 'Y', '2013-08-21 00:46:50'),
(4585, 17, '', 'Y', '2013-08-21 00:46:50'),
(4590, 17, '', 'Y', '2013-08-21 00:46:50'),
(4604, 17, '', 'Y', '2013-08-21 00:46:50'),
(4619, 17, '', 'Y', '2013-08-21 00:46:50'),
(4707, 17, '', 'Y', '2013-08-21 00:46:50'),
(4708, 17, '', 'Y', '2013-08-21 00:46:50'),
(5218, 17, '', 'Y', '2013-08-21 00:46:50'),
(5220, 17, '', 'Y', '2013-08-21 00:46:50'),
(5228, 17, '', 'Y', '2013-08-21 00:47:20'),
(5422, 17, '', 'Y', '2013-08-21 00:47:20'),
(5423, 17, '', 'Y', '2013-08-21 00:47:20'),
(5534, 17, '', 'Y', '2013-08-21 00:47:20'),
(5581, 17, '', 'Y', '2013-08-21 00:47:20'),
(5582, 17, '', 'Y', '2013-08-21 00:47:20'),
(5583, 17, '', 'Y', '2013-08-21 00:47:20'),
(5584, 17, '', 'Y', '2013-08-21 00:47:20'),
(5585, 17, '', 'Y', '2013-08-21 00:47:20'),
(5586, 17, '', 'Y', '2013-08-21 00:47:20'),
(5587, 17, '', 'Y', '2013-08-21 00:47:42'),
(5588, 17, '', 'Y', '2013-08-21 00:47:42'),
(5589, 17, '', 'Y', '2013-08-21 00:47:42'),
(5590, 17, '', 'Y', '2013-08-21 00:47:42'),
(5591, 17, '', 'Y', '2013-08-21 00:47:42'),
(5592, 17, '', 'Y', '2013-08-21 00:47:42'),
(5593, 17, '', 'Y', '2013-08-21 00:47:42'),
(5602, 17, '', 'Y', '2013-08-21 00:47:42'),
(5667, 17, '', 'Y', '2013-08-21 00:47:42'),
(5668, 17, '', 'Y', '2013-08-21 00:47:42'),
(5693, 17, 0x6c7562206e612075726c6f706965, 'Y', '2013-08-21 00:48:03'),
(1416, 17, 0x2e736766, 'Y', '2013-08-21 00:49:26'),
(1085, 17, 0x5a617a6e61637a206d61727477652067727570792069206b6c696b6e696a20257327676f746f7765272573, 'Y', '2015-07-19 13:18:16'),
(1109, 17, 0x50727a656a727a796a206772ea, 'Y', '2013-08-22 00:01:09'),
(1252, 17, 0x4f64727a75e6, 'Y', '2013-08-22 00:01:09'),
(1396, 17, 0x4e616369b66e696a202270727a65b66c696a222061627920706f7477696572647a69e62072756368, 'Y', '2013-08-22 00:01:09'),
(1412, 17, 0x57737a7973746b6f, 'Y', '2013-08-22 00:02:29'),
(1413, 17, 0x42, 'Y', '2013-08-22 00:02:29'),
(1414, 17, 0x57, 'Y', '2013-08-22 00:02:29'),
(1417, 17, 0x4e617a7769736b6f20637a61726e65676f, 'Y', '2013-08-22 00:05:57'),
(1418, 17, 0x494420637a61726e65676f, 'Y', '2013-08-22 00:03:36'),
(1419, 17, 0x52616e6b696e672073746172746f777920637a61726e65676f, 'Y', '2013-08-22 00:03:36'),
(1420, 17, 0x52616e6b696e6720637a61726e65676f, 'Y', '2013-08-22 00:03:36'),
(1421, 17, 0x4e617a7769736b6f20626961b365676f, 'Y', '2013-08-22 00:05:57'),
(2006, 17, 0x53746174757320677279207475726e69656a6f77656a, 'Y', '2013-08-22 00:05:57'),
(3333, 17, 0x5475726e69656a, 'Y', '2013-08-22 00:05:57'),
(4672, 17, 0x4e617a7761206b737a7461b37475, 'Y', '2013-08-22 00:09:44'),
(4679, 17, 0x4e6965206d61206e617a7779206b737a7461b37475206c7562206a657374207a61206b72f3746b612e, 'Y', '2013-08-22 00:09:44'),
(4680, 17, 0x4e617a7761206b737a7461b37475206a657374207a612064b3756761286d6178202573206368617273292e, 'Y', '2013-08-22 00:09:44'),
(4681, 17, 0x4e617a7761206b737a7461b374755b25735d206a657374206a75bf20772075bf796369752e, 'Y', '2013-08-22 00:09:44'),
(2418, 17, 0x447972656b746f72207475726e69656a75, 'Y', '2013-08-22 00:12:55'),
(2889, 17, 0x52656a6573747261636a6120646f207475726e69656a7520706f7a77616c612074796c6b6f206e61203c257320676965722e, 'Y', '2013-08-22 00:12:55'),
(4625, 17, 0x537461747573207475726e69656a75, 'Y', '2013-08-22 00:13:47'),
(4698, 17, 0x57796e696b20677279207475726e69656a6f77656a, 'Y', '2013-08-22 00:13:47'),
(547, 17, 0x44616e, 'Y', '2013-08-22 03:20:33'),
(1258, 17, 0x4175746f72, 'Y', '2013-08-22 03:22:10'),
(1415, 17, 0x49442075bf79746b6f776e696b61, 'Y', '2013-08-22 03:22:10'),
(1960, 17, 0x4e69657a61706973616e65207a6d69616e79, 'Y', '2013-08-22 03:22:10'),
(2234, 17, 0x4e6f7765, 'Y', '2013-08-22 03:22:10'),
(2241, 17, 0x5075626c69637a6e65, 'Y', '2013-08-22 03:22:10'),
(3235, 17, 0x4b737a7461b37479, 'Y', '2013-08-22 03:24:23'),
(2629, 17, 0x4e6f776120706c616e737a61, 'Y', '2013-08-22 03:25:59'),
(1081, 17, 0x537a65726f6b6fb6e6, 'Y', '2013-08-22 03:29:16'),
(2473, 17, 0x537a65726f6b6fb6e6, 'Y', '2013-08-22 03:29:16'),
(2586, 17, 0x537a65726f6b6fb6e6, 'Y', '2013-08-22 03:29:16'),
(1080, 17, 0x5779736f6b6fb6e6, 'Y', '2013-08-22 03:30:27'),
(2474, 17, 0x5779736f6b6fb6e6, 'Y', '2013-08-22 03:30:27'),
(2587, 17, 0x5779736f6b6fb6e6, 'Y', '2013-08-22 03:30:27'),
(2059, 17, 0x5a6d6965f12072616e6b696e67, 'Y', '2013-08-22 03:39:32'),
(1389, 17, 0x45647974756a2062696f6772616669ea, 'Y', '2013-08-22 03:40:30'),
(5485, 17, 0x5a6d6965f120656d61696c206920706f776961646f6d69656e6961, 'Y', '2013-08-22 03:44:44'),
(4496, 17, 0x4f737461746e6961206b72f3746b612077697a797461, 'Y', '2013-08-22 03:46:45'),
(4493, 17, 0x53747265666120637a61736f7761, 'Y', '2013-08-22 03:47:15'),
(4494, 17, 0x4c6f6b616c6e7920637a61732075bf79746b6f776e696b61, 'Y', '2013-08-22 03:47:44'),
(4500, 17, 0x4772792074797075204d50, 'Y', '2013-08-22 03:48:48'),
(2192, 17, 0x57796772616e612070727a657a20637a6173, 'Y', '2013-08-22 03:49:16'),
(1484, 17, 0x5720746f6b75, 'Y', '2013-08-22 03:50:32'),
(1565, 17, 0x477279207720746f6b75, 'Y', '2013-08-22 03:50:32'),
(4501, 17, 0x257320285720746f6b75292c2025732028536574757029, 'Y', '2013-08-22 03:51:19'),
(2933, 17, 0x706f20257320646e69616368, 'Y', '2013-08-22 03:52:32'),
(4498, 17, 0x257320646e69, 'Y', '2013-08-22 03:52:54'),
(1480, 17, 0x4b72616a, 'Y', '2013-08-22 04:04:20'),
(1498, 17, 0x4b6f6d656e7461727a, 'Y', '2013-08-22 04:06:00'),
(2939, 17, 0x5a656e2d476f, 'Y', '2013-08-22 04:06:53'),
(2416, 17, 0x52656775b379, 'Y', '2013-08-22 04:07:56'),
(2914, 17, 0x4a61706ff1736b6965, 'Y', '2013-08-22 04:07:56'),
(2915, 17, 0x436869f1736b6965, 'Y', '2013-08-22 04:07:56'),
(1499, 17, 0x547970, 'Y', '2013-08-22 04:08:58'),
(1506, 17, 0x547970, 'Y', '2013-08-22 04:08:58'),
(2424, 17, 0x557374617769656e696120677279, 'Y', '2013-08-22 04:10:23'),
(2506, 17, 0x557374617769656e69612068616e646963617075, 'Y', '2013-08-22 04:10:23'),
(2507, 17, 0x557374617769656e696120637a617375, 'Y', '2013-08-22 04:10:23'),
(4534, 17, 0x557374617769656e6961, 'Y', '2013-08-22 04:10:46'),
(3068, 17, 0x50727a65647a6961b3, 'Y', '2013-08-22 04:11:25'),
(4535, 17, 0x50727a65647a6961b3, 'Y', '2013-08-22 04:12:35'),
(1502, 17, 0x4c696d697420637a617375, 'Y', '2013-08-22 04:13:47'),
(1447, 17, 0x5a6567617220647a6961b3612077207765656b656e6479, 'Y', '2013-08-22 04:15:57'),
(5450, 17, 0x4d6f6a65206f637a656b756ab1636520677279, 'Y', '2013-08-22 05:13:38'),
(2652, 17, 0x4f6265636e6520776172746fb66369, 'Y', '2013-08-22 05:19:50'),
(2653, 17, 0x5779637a79b6e620776172746fb66369, 'Y', '2013-08-22 05:20:17'),
(2654, 17, 0x5265736574756a20776172746fb66369, 'Y', '2013-08-22 05:20:17'),
(5035, 17, 0x576172746fb66369, 'Y', '2013-08-22 05:19:29'),
(2655, 17, 0x5a617069737a206a616b6f20646f6d79b66c6e65, 'Y', '2013-08-22 05:20:55'),
(2656, 17, 0x57637a7974616a2070726f66696c, 'Y', '2013-08-22 05:21:32'),
(2657, 17, 0x5a617069737a2070726f66696c, 'Y', '2013-08-22 05:21:51'),
(2658, 17, 0x536b6173756a2070726f66696c, 'Y', '2013-08-22 05:22:15'),
(1503, 17, 0x5374616e646172646f776520726f7a6d6965737a637a656e69652068616e646963617075, 'Y', '2013-08-22 05:26:28'),
(2982, 17, 0x5a617a6e61637a206a616b6f2070727a65637a7974616eb1, 'Y', '2013-08-22 05:28:11'),
(2361, 17, 0x2573206f637a656b756ab1637963682067696572, 'Y', '2013-08-22 05:29:45'),
(2460, 17, 0x5a6f6261637a2064726162696e6bea, 'Y', '2013-08-22 05:33:00'),
(2287, 17, 0x47b36f73756a206e612066756e6b636a65, 'Y', '2013-08-22 11:35:10'),
(563, 17, 0x4a616b206d616d207a616b6ff1637a79e6206772ea3f, 'Y', '2013-08-26 22:03:07'),
(2992, 25, 0x5475726e6565, 'Y', '2013-08-27 10:36:06'),
(5450, 25, 0x506172746964656c65206d656c65206465736368697365, 'Y', '2013-08-27 10:38:25'),
(5503, 11, 0x44657a652070617274696a206765627275696b7420676562696564732d74656c6c696e672c206475732064616d6520286e65757472616c652070756e74656e292074656c6c656e206d656521, 'Y', '2016-07-27 19:38:22'),
(5504, 11, 0x5665727a656b6572206a6520657220616c736a65626c696566742076616e20646174206a65206765656e206f6e6576656e2061616e74616c2064616d65206163687465726c61617421, 'Y', '2016-07-27 19:38:22'),
(12, 40, 0x4120636f6e6578e36f20636f6d206f2062616e636f206465206461646f732066616c686f752e2045737065726520616c67756e73206d696e75746f732065207465737465206465206e6f766f2e, 'Y', '2013-10-20 18:16:42'),
(13, 40, 0x46616c686120616f20617061676172206f206a6f676f2e204973736f2070726f766176656c6d656e7465206ee36f20e920756d2070726f626c656d612e, 'Y', '2013-10-20 18:16:42'),
(14, 40, 0x44657363756c70652c207061726563652071756520686f75766520756d612066616c686120616f2061646963696f6e61722061206d656e736167656d206e6f2062616e636f206465206461646f732e, 'Y', '2013-10-20 18:16:42'),
(15, 40, 0x44657363756c70652c207061726563652071756520686f75766520756d612066616c686120616f2061646963696f6e6172206f206a6f676f206e6f2062616e636f206465206461646f732e, 'Y', '2013-10-20 18:16:42'),
(32, 40, 0x44657363756c70652c206ee36f20e92061207375612076657a206465206a6f6761722e, 'Y', '2013-10-20 18:18:20'),
(51, 40, 0x44657363756c70652c20766f63ea206ee36f20706f64652061636569746172206f20636f6e7669746520646520756d206a6f676f2071756520e9207365752e, 'Y', '2013-10-20 18:34:13'),
(52, 40, 0x44657363756c70652c20766f63ea206ee36f20657374e12064656e74726f20646f206c696d697465206465206eed76656c20646573656a61646f2e, 'Y', '2013-10-20 18:34:13'),
(57, 40, 0x44657363756c70652c206f20736575206eed76656c20696e696369616c207072656369736120657374617220656e747265203330206b7975206520362064616e2e, 'Y', '2013-10-20 18:34:13'),
(59, 40, 0x44657363756c70652c206170656e6173207472616475746f72657320706f64656d2074726164757a69722e, 'Y', '2013-10-20 18:34:13'),
(80, 40, 0x4163657373616e646f20636f6d6f, 'Y', '2013-11-24 14:49:35'),
(81, 40, 0x4ee36f20616365737361646f, 'Y', '2013-10-20 18:38:53'),
(83, 40, 0x53616c6120646520657370657261, 'Y', '2013-10-20 18:40:00'),
(84, 40, 0x50657266696c, 'Y', '2014-01-26 11:54:11'),
(85, 40, 0x4d656e736167656e73, 'Y', '2013-10-20 18:40:00'),
(86, 40, 0x456e7669617220756d61206d656e736167656d, 'Y', '2013-10-20 18:40:00'),
(87, 40, 0x436f6e7669646172, 'Y', '2013-10-20 18:40:36'),
(88, 40, 0x557375e172696f73, 'Y', '2014-02-07 08:09:41'),
(89, 40, 0x4a6f676f73, 'Y', '2013-10-20 18:40:36'),
(90, 40, 0x54726164757a6972, 'Y', '2013-10-20 18:41:35'),
(91, 40, 0x46f372756e73, 'Y', '2014-08-12 08:30:54'),
(92, 40, 0x464151, 'Y', '2013-11-24 16:52:51'),
(93, 40, 0x4d6170612064612070e167696e61, 'Y', '2013-10-20 18:41:35'),
(94, 40, 0x446f63756d656e7461e7e36f, 'Y', '2013-11-24 17:48:39'),
(95, 40, 0x50e167696e612067657261646120656d, 'Y', '2013-10-20 18:42:17'),
(96, 40, 0x41646d696e2e, 'Y', '2015-05-03 19:44:54'),
(97, 40, 0x53616972, 'Y', '2013-10-20 18:42:17'),
(98, 40, 0x646961, 'Y', '2013-10-20 18:42:17'),
(99, 40, 0x64696173, 'Y', '2015-05-03 19:44:54'),
(100, 40, 0x65, 'Y', '2013-10-20 18:43:26'),
(101, 40, 0x686f7261, 'Y', '2013-10-20 18:43:26'),
(102, 40, 0x686f726173, 'Y', '2015-05-03 19:45:25'),
(103, 40, 0x73656d2062796f796f6d69, 'Y', '2013-10-20 18:43:26'),
(104, 40, 0x636f6d20257320657874726120706f72206a6f67616461, 'Y', '2013-10-20 18:43:26'),
(106, 40, 0x42796f796f6d69206a61706f6eea73, 'Y', '2013-10-20 18:43:26'),
(107, 40, 0x7065e76173, 'Y', '2013-10-20 18:44:46'),
(108, 40, 0x42796f796f6d692063616e6164656e7365, 'Y', '2013-10-20 18:44:46'),
(109, 40, 0x4a6f676f2061646963696f6e61646f21, 'Y', '2013-10-20 18:44:46'),
(122, 40, 0x526573706f6e646572, 'Y', '2013-10-20 18:44:46'),
(127, 40, 0x656469746172, 'Y', '2013-10-20 18:44:46'),
(128, 40, 0x4d6f76657220706172612063696d61, 'Y', '2013-10-20 18:44:46'),
(129, 40, 0x4d6f766572207061726120626169786f, 'Y', '2013-10-20 18:44:46'),
(132, 40, 0x4944, 'Y', '2014-01-19 14:17:09'),
(134, 40, 0x4e6f6d65, 'Y', '2013-10-20 18:46:45'),
(135, 40, 0x5472616475746f726573, 'Y', '2013-10-20 18:46:45'),
(136, 40, 0x46f372756d, 'Y', '2013-10-20 18:46:45'),
(156, 40, 0x42696f67726166696120617475616c697a61646121, 'Y', '2014-01-26 16:40:36'),
(157, 40, 0x53656e6861206d756461646121, 'Y', '2013-10-20 18:46:45'),
(158, 40, 0x50657266696c20617475616c697a61646f21, 'Y', '2013-10-20 18:46:45'),
(159, 40, 0x446f63756d656e7461e7e36f, 'Y', '2013-10-20 18:46:45'),
(160, 40, 0x496e74726f6475e7e36f20616f20447261676f6e, 'Y', '2013-10-20 18:46:45'),
(161, 40, 0x50657267756e746173204672657175656e746573, 'Y', '2014-04-08 03:54:53'),
(163, 40, 0x506573736f6173, 'Y', '2013-10-20 18:49:28'),
(164, 40, 0x5175656d20636f6e7472696275692070617261206f20447261676f6e, 'Y', '2013-10-20 18:49:28'),
(165, 40, 0x5669736974652074616d62e96d, 'Y', '2014-03-08 01:05:39'),
(168, 40, 0x496e73747275e7f5657320646520696e7374616c61e7e36f, 'Y', '2013-10-20 18:49:28'),
(169, 40, 0x536520766f63ea207175657220736575207072f37072696f202264726167e36f22, 'Y', '2013-10-20 18:49:28'),
(170, 40, 0x426169786172206f2063f36469676f20666f6e746520646f20447261676f6e, 'Y', '2013-10-20 18:49:28'),
(173, 40, 0x50e167696e6120646f2070726f6a65746f20447261676f6e206e6120736f75726365666f726765, 'Y', '2013-10-20 18:49:28'),
(175, 40, 0x4f7574726f3a, 'Y', '2013-10-20 18:50:57'),
(176, 40, 0x5061ed73, 'Y', '2013-10-20 18:50:57'),
(177, 40, 0x436964616465, 'Y', '2013-10-20 18:50:57'),
(178, 40, 0x45737461646f, 'Y', '2013-10-20 18:50:57'),
(179, 40, 0x436c756265, 'Y', '2013-10-20 18:50:57'),
(181, 40, 0x456e64657265e76f20656c657472f46e69636f, 'Y', '2014-01-19 20:26:58'),
(182, 40, 0x4efa6d65726f20646f20494351, 'Y', '2013-10-20 18:50:57'),
(183, 40, 0x507265666572ea6e63696173206465206a6f676f, 'Y', '2013-10-20 18:50:57'),
(180, 40, 0x50e167696e6120706573736f616c, 'Y', '2013-10-20 18:52:57'),
(184, 40, 0x506173736174656d706f73, 'Y', '2013-10-20 18:52:57'),
(185, 40, 0x4f63757061e7e36f, 'Y', '2013-10-20 18:52:57'),
(187, 40, 0x4d756461722062696f677261666961, 'Y', '2013-11-24 18:34:22'),
(188, 40, 0x4d756461722073656e6861, 'Y', '2013-10-20 18:52:57'),
(189, 40, 0x53656e68612076656c6861, 'Y', '2013-10-20 18:52:57'),
(190, 40, 0x53656e6861206e6f7661, 'Y', '2013-10-20 18:52:57'),
(191, 40, 0x436f6e6669726d6520612073656e6861, 'Y', '2013-10-20 18:52:57'),
(192, 40, 0x4d756461722073656e6861, 'Y', '2013-10-20 18:54:14'),
(194, 40, 0x4170656e617320617669736f73, 'Y', '2014-01-19 18:15:14'),
(195, 40, 0x4a6f67616461732065206d656e736167656e73, 'Y', '2013-10-20 18:54:14'),
(196, 40, 0x546162756c6569726f20636f6d706c65746f2065206d656e736167656e73, 'Y', '2013-10-20 18:54:14'),
(197, 40, 0x566572746963616c, 'Y', '2013-10-20 18:54:14'),
(198, 40, 0x486f72697a6f6e74616c, 'Y', '2013-10-20 18:54:14'),
(199, 40, 0x45646974617220636f6e666967757261e7f56573, 'Y', '2014-02-01 23:07:00'),
(200, 40, 0x436f6e666967757261e7f5657320706573736f616973, 'Y', '2013-10-20 18:55:48'),
(201, 40, 0x557375e172696f, 'Y', '2013-10-20 18:55:48'),
(202, 40, 0x4e6f6d6520636f6d706c65746f, 'Y', '2013-10-20 18:55:48'),
(204, 40, 0x496e666f726d61e7f56573206465206eed76656c, 'Y', '2014-01-26 13:38:31'),
(205, 40, 0x4eed76656c, 'Y', '2013-10-20 18:55:48'),
(206, 40, 0x417669736f7320706f7220656d61696c, 'Y', '2013-10-20 18:59:03'),
(207, 40, 0x5573617220636f6e666967757261e7e36f20646f206e6176656761646f72, 'Y', '2013-10-20 18:59:03'),
(208, 40, 0x4964696f6d61, 'Y', '2014-02-18 20:52:51'),
(209, 40, 0x4675736f20686f72e172696f, 'Y', '2013-10-20 18:59:03'),
(210, 40, 0x4e6f697465, 'Y', '2013-10-20 18:59:03'),
(211, 40, 0x496d6167656e7320646f20746162756c6569726f, 'Y', '2013-10-20 18:59:03'),
(212, 40, 0x54616d616e686f206461207065e761, 'Y', '2013-10-20 18:59:03'),
(213, 40, 0x436f72206461206d616465697261, 'Y', '2013-10-20 18:59:03'),
(214, 40, 0x436f6f7264656e61646173206c61746572616973, 'Y', '2013-10-20 18:59:03'),
(215, 40, 0x4573717565726461, 'Y', '2013-10-20 19:04:10'),
(216, 40, 0x4163696d61, 'Y', '2013-10-20 19:04:10'),
(217, 40, 0x44697265697461, 'Y', '2013-10-20 19:04:10'),
(218, 40, 0x41626169786f, 'Y', '2013-10-20 19:04:10'),
(219, 40, 0x546162756c6569726f20636f6d2062656972616461207375617665, 'Y', '2013-10-20 19:04:10'),
(220, 40, 0x44697265e7e36f20646f206d656e75, 'Y', '2013-10-20 19:04:10'),
(222, 40, 0x416c74657261722070657266696c, 'Y', '2013-10-20 19:04:10'),
(223, 40, 0x457371756563657520612073656e68613f, 'Y', '2013-10-20 19:04:10'),
(193, 40, 0x4465736174697661646f73, 'Y', '2014-01-19 18:16:30'),
(225, 40, 0x446573697374ea6e636961, 'Y', '2013-10-20 19:06:57'),
(226, 40, 0x50617373616e646f20612076657a, 'Y', '2013-10-20 19:06:57'),
(227, 40, 0x41706167616e646f206f206a6f676f, 'Y', '2014-02-08 13:31:09'),
(229, 40, 0x506c61636172, 'Y', '2013-10-20 19:06:57'),
(230, 40, 0x4a6f676f, 'Y', '2013-10-20 19:06:57'),
(231, 40, 0x506173736172, 'Y', '2013-10-20 19:06:57'),
(232, 40, 0x417061676172206a6f676f, 'Y', '2013-10-20 19:09:20'),
(233, 40, 0x5465726d696e61646f, 'Y', '2013-10-20 19:09:20'),
(234, 40, 0x566f6c7461722061206a6f676172, 'Y', '2013-10-20 19:09:20'),
(235, 40, 0x4465736973746972, 'Y', '2014-02-18 23:50:32'),
(236, 40, 0x42616978617220534746, 'Y', '2013-11-30 00:03:04'),
(237, 40, 0x5072f378696d6f206a6f676f, 'Y', '2013-10-20 19:09:20'),
(238, 40, 0x52657469726172206461206c69737461206465206f627365727661e7f56573, 'Y', '2013-10-20 19:09:20'),
(239, 40, 0x41646963696f6e6172206e61206c69737461206465206f627365727661e7f56573, 'Y', '2013-10-20 19:09:20'),
(240, 40, 0x496eed63696f, 'Y', '2013-10-20 19:09:20'),
(242, 40, 0x506f72206661766f722c2073696e74612d736520e020766f6e74616465207061726120637269617220756d6120636f6e74612065206a6f67617220756d20706f75636f2e, 'Y', '2013-11-24 11:59:10'),
(243, 40, 0x456e74726520706f72206661766f722e, 'Y', '2013-10-20 19:10:25'),
(244, 40, 0x3c62723e44ea20756d61206f6c6861646120636f6d6f20636f6e76696461646f2e2041636573736520636f6d2025732e, 'Y', '2014-02-06 11:26:36'),
(245, 40, 0x53656e6861, 'Y', '2013-10-20 19:10:25'),
(246, 40, 0x456e74726172, 'Y', '2014-03-20 03:32:41'),
(247, 40, 0x4372696172206e6f766120636f6e7461, 'Y', '2013-11-24 11:59:10'),
(248, 40, 0x496e74726f6475e7e36f, 'Y', '2013-10-20 19:10:25'),
(252, 40, 0x42656d2076696e646f206465206e6f766f2c2065206170726f7665697465207375612076697369746121, 'Y', '2013-11-24 11:55:59'),
(253, 40, 0x4a6f676f206170616761646f21, 'Y', '2013-10-20 19:14:47'),
(254, 40, 0x436f6e766974652061636569746f21, 'Y', '2013-10-20 19:14:47'),
(256, 40, 0x496e662e20476572616c, 'Y', '2013-10-20 19:14:47'),
(257, 40, 0x50e167696e6173204a616e2076616e2064657220537465656e73, 'Y', '2013-10-20 19:14:47'),
(258, 40, 0x4d7569746120696e666f726d61e7e36f20736f627265206f20676f, 'Y', '2013-10-20 19:14:47'),
(259, 40, 0x46415120646520476f, 'Y', '2013-10-20 19:14:47'),
(260, 40, 0x50657267756e746173206672657175656e74657320736f62726520676f206e6f20677275706f206465206e6f74ed6369617320286e65777367726f7570297265632e67616d65732e676f, 'Y', '2013-10-20 19:14:47'),
(265, 40, 0x4269626c696f7465636120646f2053656e736569, 'Y', '2014-03-08 01:05:39'),
(266, 40, 0x556d612070e167696e6120646520636f6c61626f7261e7e36f2e204c656961206520616a75646521, 'Y', '2013-10-20 19:14:47'),
(267, 40, 0x4e6f74ed6369617320536f62726520476f, 'Y', '2013-10-20 19:17:22'),
(271, 40, '', 'Y', '2013-10-20 19:17:22'),
(272, 40, 0x556d206d616e67e120736f62726520676f2e205265636f6d656e6461646f21, 'Y', '2013-10-20 19:17:22'),
(273, 40, 0x5265677261, 'Y', '2013-11-24 14:56:24'),
(274, 40, 0x556d6120496e74726f6475e7e36f20496e7465726174697661, 'Y', '2013-10-20 19:17:22'),
(275, 40, 0x4573736120e920756d612070e167696e61206d7569746f206c6567616c2070617261206f20617072656e64697a61646f2e, 'Y', '2013-10-20 19:17:22'),
(276, 40, 0x496e74726f6475e7e36f206d7569746f2062656d20657363726974612070656c61204173736f636961e7e36f2042726974e26e69636120646520476f2e, 'Y', '2013-10-20 19:17:22'),
(281, 40, 0x5465726d6f73206520657374726174e967696173, 'Y', '2013-10-20 19:17:22'),
(283, 40, 0x50726f626c656d617320646520476f, 'Y', '2013-10-20 19:17:22'),
(284, 40, 0x4573747564616e646f20657374657320706f646520616a7564617220636f6d2073657573206a6f676f732e, 'Y', '2016-08-06 20:46:22'),
(285, 40, 0x436f6d756e696461646520646520456e73696e6f20646520476f, 'Y', '2014-03-08 01:09:35'),
(287, 40, 0x5465726d6f73206a61706f6e6573657320636f6d756e73, 'Y', '2013-10-20 19:20:41'),
(288, 40, 0x566f63ea207072656369736120736162657220736f627265206f20717565206f7574726f73206a6f6761646f72657320657374e36f20636f6e76657273616e646f2e, 'Y', '2013-10-20 19:20:41'),
(291, 40, 0x48697374f3726961, 'Y', '2013-10-20 19:20:41'),
(292, 40, 0x556d612042726576652048697374f3726961, 'Y', '2013-10-20 19:20:41'),
(293, 40, 0x5061726120706573736f6173206d6169732061707265737361646173, 'Y', '2014-03-08 01:12:03'),
(294, 40, 0x41204c6f6e67612048697374f3726961, 'Y', '2013-10-20 19:20:41'),
(305, 40, 0x4c69737461206465207365727669646f726573, 'Y', '2013-10-20 19:21:25'),
(306, 40, 0x556d61206c69737461206d61697320636f6d706c657461206465207365727669646f726573, 'Y', '2013-10-20 19:22:03'),
(307, 40, 0x4c69737461206465206d656e736167656e73, 'Y', '2013-10-20 19:23:42'),
(308, 40, 0x50617261, 'Y', '2013-10-20 19:23:42'),
(309, 40, 0x496e64696361646f726573, 'Y', '2013-10-20 19:23:42'),
(310, 40, 0x4465, 'Y', '2013-10-20 19:23:42'),
(311, 40, 0x417373756e746f, 'Y', '2013-10-20 19:23:42'),
(314, 40, 0x4e6f7661, 'Y', '2013-10-20 19:28:20'),
(315, 40, 0x526573706f6e64696461, 'Y', '2013-10-20 19:28:20'),
(316, 40, 0x526573706f6e64657221, 'Y', '2013-10-20 19:28:20'),
(322, 40, 0x4f20636f6e76697465207061726120257365737465206a6f676f257320666f692061636569746f2e, 'Y', '2016-08-06 20:46:22'),
(323, 40, 0x4573736520636f6e7669746520666f692072656a65697461646f206f75206f206a6f676f20666f69206170616761646f2e, 'Y', '2013-10-20 19:28:20'),
(324, 40, 0x526573706f6e646572, 'Y', '2013-10-20 19:28:20'),
(325, 40, 0x4d656e736167656d, 'Y', '2013-10-20 19:28:20'),
(326, 40, 0x456e7669617220526573706f737461, 'Y', '2013-10-20 19:28:20'),
(327, 40, 0x4e6f7661206d656e736167656d, 'Y', '2013-10-20 19:28:20'),
(328, 40, 0x506172612028757375e172696f29, 'Y', '2013-10-20 19:28:49'),
(329, 40, 0x456e76696172206d656e736167656d, 'Y', '2013-10-20 19:28:49'),
(330, 40, 0x4272616e636173, 'Y', '2014-01-25 09:35:48'),
(331, 40, 0x507265746173, 'Y', '2014-02-02 12:07:15'),
(332, 40, 0x446973637574697220726567726173, 'Y', '2013-10-20 19:30:37'),
(333, 40, 0x41636569746172, 'Y', '2013-10-20 19:30:37'),
(334, 40, 0x52656a6569746172, 'Y', '2013-10-20 19:30:37'),
(335, 40, 0x4d656e736167656d20646f20636f6e76697465, 'Y', '2013-10-20 19:34:04'),
(336, 40, 0x456e7669617220436f6e76697465, 'Y', '2013-10-20 19:34:04'),
(337, 40, 0x436f6c61626f7261646f72657320646f20447261676f6e, 'Y', '2013-10-20 19:34:04'),
(6357, 40, 0x436f646966696361e7e36f, 'Y', '2015-07-17 20:28:59'),
(340, 40, 0x456469746f7220646f20464151, 'Y', '2013-11-24 16:52:51'),
(342, 40, 0x4772e16669636f206465206eed76656c2070617261, 'Y', '2013-10-20 19:34:04'),
(343, 40, 0x44657363756c70652c2073656d206a6f676f7320612076616c657220737566696369656e746573207061726120646573656e68617220756d206772e16669636f, 'Y', '2013-10-20 19:34:04'),
(344, 40, 0x496e73637269e7e36f, 'Y', '2014-02-20 16:37:25'),
(346, 40, 0x4d656e736167656d20656e766961646121, 'Y', '2013-10-20 19:36:01'),
(348, 40, 0x4a6f676f73207465726d696e61646f73, 'Y', '2013-10-20 19:36:01'),
(349, 40, 0x4a6f676f7320656d2070726f67726573736f, 'Y', '2013-10-20 19:36:01'),
(350, 40, 0x4a6f676f73207465726d696e61646f732070617261202573, 'Y', '2013-10-20 19:36:01'),
(351, 40, 0x4a6f676f7320656d2070726f67726573736f2070617261202573, 'Y', '2013-10-20 19:36:01'),
(352, 40, 0x736766, 'Y', '2013-12-08 07:11:24'),
(359, 40, 0x416476657273e172696f, 'Y', '2013-10-20 19:39:54'),
(360, 40, 0x436f72, 'Y', '2013-10-20 19:39:54'),
(361, 40, 0x54616d616e686f, 'Y', '2013-10-20 19:39:54'),
(362, 40, 0x56616e746167656d, 'Y', '2013-10-20 19:44:53'),
(363, 40, 0x4b6f6d69, 'Y', '2014-01-19 14:18:20'),
(364, 40, 0x4a6f6761646173, 'Y', '2013-11-30 20:30:38'),
(366, 40, 0x4176616c6961646f, 'Y', '2013-10-20 19:45:40'),
(368, 40, 0xda6c74696d61206a6f67616461, 'Y', '2013-10-20 19:45:40'),
(370, 40, 0x53696d, 'Y', '2013-10-20 19:45:40'),
(345, 40, 0x506f72206661766f7220666f726e65e7612073657573206461646f73, 'Y', '2014-02-05 18:48:04'),
(371, 40, 0x4ee36f, 'Y', '2013-10-20 20:00:27'),
(372, 40, 0x4a69676f, 'Y', '2013-12-08 07:11:24'),
(373, 40, 0x436f6e76696461722065737465206a6f6761646f72, 'Y', '2016-08-06 20:44:00'),
(374, 40, 0x4d6f7374726172206a6f676f7320617475616973, 'Y', '2013-10-20 20:21:51'),
(375, 40, 0x4d6f7374726172206a6f676f73207465726d696e61646f73, 'Y', '2013-10-20 20:21:51'),
(377, 40, 0x50e167696e6120646520626f61732076696e646173, 'Y', '2013-10-20 20:21:51'),
(378, 40, 0x4d657573206461646f7320646520757375e172696f, 'Y', '2013-10-20 20:21:51'),
(379, 40, 0x4564697461722062696f677261666961, 'Y', '2014-01-26 16:38:41'),
(380, 40, 0x4d6f7374726172206d656e736167656d, 'Y', '2013-10-20 20:21:51'),
(383, 40, 0x4c697374612064652064697363757373f56573, 'Y', '2013-10-20 20:21:51'),
(384, 40, 0x4c65722066f372756d, 'Y', '2013-10-20 20:21:51'),
(385, 40, 0x4e6f76612064697363757373e36f, 'Y', '2013-10-20 21:07:36'),
(388, 40, 0x446973706f6eed76656c2070617261206e6f766f73206a6f676f733f, 'Y', '2013-10-20 21:07:36'),
(389, 40, 0x4e6f766173206d656e736167656e73, 'Y', '2013-10-20 21:07:36'),
(390, 40, 0xc9207375612076657a206465206a6f676172206e6573746573206a6f676f733a, 'Y', '2016-02-26 04:05:11'),
(391, 40, 0x4e656e68756d206a6f676f20656e636f6e747261646f, 'Y', '2013-10-20 21:07:36'),
(393, 40, 0x4461746120646120696e73637269e7e36f, 'Y', '2014-02-20 16:37:25'),
(394, 40, 0xda6c74696d6f2061636573736f, 'Y', '2013-10-20 21:07:36'),
(395, 40, 0x496e666f726d61e7e36f2062696f6772e166696361, 'Y', '2014-01-26 16:40:36'),
(396, 40, 0x456e76696172206d656e736167656d2070617261206f20757375e172696f, 'Y', '2013-10-20 21:08:38'),
(397, 40, 0x456d2070726f67726573736f, 'Y', '2013-10-20 21:08:38'),
(398, 40, 0x5465726d696e61646f73, 'Y', '2013-10-20 21:08:38'),
(399, 40, 0x56656e636575, 'Y', '2013-10-20 21:08:38'),
(400, 40, 0x506572646575, 'Y', '2013-10-20 21:08:38'),
(402, 40, 0x417469766964616465, 'Y', '2013-10-20 21:08:38'),
(406, 40, 0x436f6e76656e63696f6e616c, 'Y', '2013-10-20 21:10:34'),
(407, 40, 0x5072f37072696f, 'Y', '2013-10-20 21:10:34'),
(408, 40, 0x4a6f676f20657175696c69627261646f20636f6d206e6967697269, 'Y', '2013-10-20 21:10:34'),
(409, 40, 0x4a6f676f206475706c6f, 'Y', '2013-10-20 21:10:34'),
(411, 40, 0x496e662e, 'Y', '2014-01-19 14:19:24'),
(412, 40, 0x436f6d656e74e172696f, 'Y', '2013-10-20 21:10:34'),
(414, 40, 0x4c696d6974652064652074656d706f, 'Y', '2013-10-20 21:11:47'),
(415, 40, 0x234a6f676f73, 'Y', '2013-10-20 21:11:47'),
(416, 40, 0x52656cf367696f206e6f732066696e732064652073656d616e61, 'Y', '2013-10-20 21:11:47'),
(417, 40, 0x5061726563652065737461722076617a696f206e6f206d6f6d656e746f2e, 'Y', '2013-10-20 21:11:47'),
(419, 40, 0x736f6d656e7465202573, 'Y', '2013-10-20 21:11:47'),
(420, 40, 0x4efa6d65726f206465206a6f676f7320706172612061646963696f6e6172, 'Y', '2013-10-20 21:11:47'),
(421, 40, 0x64616e, 'Y', '2014-01-19 14:19:24'),
(422, 40, 0x6b7975, 'Y', '2014-01-19 14:19:24'),
(423, 40, 0x45786967697220616476657273e172696f20636f6d206eed76656c, 'Y', '2013-11-25 19:17:43'),
(424, 40, 0x4361736f2073656a612c206eed76656c20656e747265, 'Y', '2013-10-20 21:24:58'),
(425, 40, 0x41646963696f6e6172206a6f676f, 'Y', '2013-10-20 21:24:58'),
(426, 40, 0x4a6f6761646f72, 'Y', '2013-10-20 21:24:58'),
(427, 40, 0x4efa6d65726f206465206a6f676f73, 'Y', '2013-10-20 21:24:58'),
(428, 40, 0x54656d706f207061737361206e6f2066696d2064652073656d616e61, 'Y', '2013-12-06 21:00:09'),
(429, 40, 0x417061676172, 'Y', '2013-10-20 21:26:55'),
(430, 40, 0x41636569746172, 'Y', '2013-10-20 21:26:55'),
(431, 40, 0x54616d616e686f20646f20746162756c6569726f, 'Y', '2013-10-20 21:26:55'),
(432, 40, 0x56616e746167656d20636f6e76656e63696f6e616c20286b6f6d6920e920302c35207365206ee36f20686f757665722076616e746167656d29, 'Y', '2013-10-20 21:26:55'),
(433, 40, 0x56616e746167656d207072f370726961, 'Y', '2014-02-07 01:26:30'),
(436, 40, 0x6dea7328657329, 'Y', '2014-02-11 14:05:33'),
(437, 40, 0x54656d706f207072696e636970616c, 'Y', '2013-10-20 21:28:13'),
(439, 40, 0x636f6d, 'Y', '2013-10-20 21:28:13'),
(442, 40, 0x70617261, 'Y', '2013-10-20 21:28:13'),
(443, 40, 0x52656cf367696f2046697363686572, 'Y', '2013-10-20 21:28:13'),
(445, 40, 0x494420646f206a6f676f, 'Y', '2013-10-20 21:33:10'),
(446, 40, 0x436f726573, 'Y', '2013-10-20 21:33:10'),
(447, 40, 0x4e6967697269, 'Y', '2013-10-20 21:33:10'),
(449, 40, 0x6a61706f6eea73, 'Y', '2013-12-07 13:17:33'),
(450, 40, 0x257320706f72206a6f67616461206520257320706572ed6f646f7320657874726173, 'Y', '2013-10-20 21:33:10'),
(451, 40, 0x63616e6164656e7365, 'Y', '2013-12-07 13:18:20'),
(452, 40, 0x257320612063616461202573206a6f6761646173, 'Y', '2014-01-25 10:12:31'),
(453, 40, 0x657874726120706f72206a6f67616461, 'Y', '2013-10-20 21:35:51'),
(454, 40, 0x506f72206661766f722c20706f736963696f6e6520737561207065e761732064652076616e746167656d21, 'Y', '2013-10-20 21:35:51'),
(455, 40, 0x456e7669617220652069722070617261206f207072f378696d6f206a6f676f, 'Y', '2013-10-20 21:35:51'),
(456, 40, 0x456e76696172206520697220706172612061207369747561e7e36f, 'Y', '2013-10-20 21:35:51'),
(457, 40, 0x566f6c746172, 'Y', '2013-10-20 21:35:51'),
(458, 40, 0x50726973696f6e6569726f73, 'Y', '2013-10-20 21:35:51'),
(460, 40, 0x5072f378696d612070e167696e61, 'Y', '2013-11-26 00:38:06'),
(461, 40, 0x50e167696e6120416e746572696f72, 'Y', '2013-10-20 21:35:51'),
(462, 40, 0x41646963696f6e617220636f6c756e61, 'Y', '2013-10-20 21:36:39'),
(463, 40, 0x737565636f31, 'Y', '2015-06-19 05:04:41'),
(465, 40, 0x696e676cea73, 'Y', '2013-12-08 09:35:12'),
(466, 40, 0x616c656de36f, 'Y', '2013-12-08 09:47:22'),
(467, 40, 0x6672616e63ea73, 'Y', '2013-12-08 09:47:22'),
(468, 40, 0x657370616e686f6c, 'Y', '2013-12-08 09:47:22'),
(477, 40, 0x4efa6d65726f2065727261646f206465207065e761732064652076616e746167656d, 'Y', '2013-10-20 21:41:44'),
(478, 40, 0x4d61696f72657320696e666f726d61e7f565732073e36f20656e636f6e747261646173206e6f203c6120687265663d222f6661712e706870223e4641513c2f613e2e205175616e646f2074697665722070657267756e74617320766f63ea2074616d62e96d20e920656e636f72616a61646f20612066617aea2d6c61732028656d20696e676cea732920656d20756d20646f73206e6f73736f73203c6120687265663d222f666f72756d2f696e6465782e706870223e66f372756d733c2f613e2e, 'Y', '2014-02-05 18:46:29'),
(485, 40, 0x666576, 'Y', '2013-10-20 21:43:51'),
(486, 40, 0x616272, 'Y', '2013-10-20 21:43:51'),
(487, 40, 0x6d6169, 'Y', '2013-10-20 21:43:51'),
(488, 40, 0x6a756e, 'Y', '2013-10-20 21:43:51'),
(489, 40, 0x61676f, 'Y', '2013-10-20 21:43:51'),
(490, 40, 0x736574, 'Y', '2013-10-20 21:43:51'),
(491, 40, 0x6f7574, 'Y', '2013-10-20 21:43:51'),
(492, 40, 0x64657a, 'Y', '2013-10-20 21:43:51'),
(1550, 7, 0x506f7a6ee16d6b79, 'Y', '2016-07-20 16:20:15'),
(494, 40, 0x496e666f726d61e7f5657320646f20757375e172696f202573, 'Y', '2014-01-26 14:17:05'),
(495, 40, 0x6d6172, 'Y', '2013-10-20 21:51:04'),
(496, 40, 0x6a756c, 'Y', '2013-10-20 21:51:04'),
(497, 40, 0x6e6f76, 'Y', '2013-10-20 21:51:04'),
(498, 40, 0x4465, 'Y', '2013-11-25 19:38:21'),
(499, 40, 0x4174e9, 'Y', '2013-11-25 19:39:41'),
(501, 40, 0x507265666572ea6e6369617320646520757375e172696f20646f20447261676f6e, 'Y', '2013-10-20 21:51:04'),
(502, 40, 0x416c67756e73207465726d6f7320636f6d756e7320646f20476f, 'Y', '2013-10-20 21:51:04'),
(503, 40, 0x4469766572736f73, 'Y', '2013-10-20 21:51:04'),
(504, 40, 0x52656772617320646f20476f, 'Y', '2013-10-20 21:52:38'),
(506, 40, 0x556d20706f6e746f20646520746572726974f372696f2e, 'Y', '2013-10-20 21:52:38'),
(507, 40, 0x6b6f6d69, 'Y', '2014-02-17 04:42:48'),
(509, 40, 0x4564756361e7e36f20646f20447261676f6e, 'Y', '2013-10-20 21:52:38'),
(510, 40, 0x50726f626c656d61732065206572726f7320646f20447261676f6e, 'Y', '2013-10-20 21:52:38'),
(511, 40, 0x4d656e75732065206f70e7f5657320646f20447261676f6e, 'Y', '2013-10-20 21:52:38'),
(512, 40, 0x4a6f676f7320646f20447261676f6e, 'Y', '2013-10-20 21:52:38'),
(518, 40, 0x6e6967697269, 'Y', '2014-02-17 04:42:48'),
(519, 40, 0x4e6967697269207369676e6966696361207175652073756120636f72206e6f206a6f676f20736572e120736f7274656164612e, 'Y', '2013-10-20 21:56:06'),
(522, 40, 0x457374e1207475646f20636572746f20616f20646573656a61722022626f6120736f72746522207061726120616c6775e96d207175616e646f20636f6d65e7616d6f7320756d206a6f676f3f, 'Y', '2013-10-20 21:56:06'),
(523, 40, 0x53696d2c20636c61726f2e20416c67756e73206a6f6761646f7265732074616d62e96d20676f7374616d20646f207465726d6f20747261646963696f6e616c203c6120687265663d22687474703a2f2f73656e736569732e786d702e6e65742f3f4f6e656761697368696d61737522207461726765743d225f626c616e6b223e6f6e656761697368696d6173753c2f613e2e, 'Y', '2013-10-20 21:56:06'),
(531, 40, 0x51756169732073e36f206173207265677261732062e1736963617320646f20476f3f, 'Y', '2013-10-20 22:03:37'),
(533, 40, 0x4f6e646520706f73736f20656e636f6e74726172206d6169732070e167696e617320736f62726520476f206e6120726564653f, 'Y', '2013-10-20 22:03:37'),
(534, 40, 0x4e61203c686f6d65206c696e6b732e7068703e70e167696e61206465206c696e6b733c2f686f6d653e20646f20447261676f6e2e, 'Y', '2013-10-20 22:03:37'),
(537, 40, 0x6174617269, 'Y', '2014-02-17 04:42:48'),
(539, 40, 0x6b6f, 'Y', '2014-02-17 04:42:48'),
(540, 40, 0x556d206b6f20e920756d61207369747561e7e36f206465206a6f676f206f6e64652065786973746520612063617074757261207265706574697469766120646520756d6120fa6e6963612070656472612e204f207369676e6966696361646f206c69746572616c20646520226b6f2220e92022657465726e6964616465222e, 'Y', '2013-10-20 22:03:37'),
(549, 40, 0x5175616e746f7320646961732064652066e97269617320657520706f73736f20746572206e6f20447261676f6e3f, 'Y', '2013-10-20 22:05:41'),
(551, 40, 0x51756169732073e36f206f73206974656e73206e612070e167696e61205369747561e7e36f3f, 'Y', '2013-10-20 22:05:41'),
(557, 40, 0x436f6d6f20706f73736f20636f6d65e7617220756d206a6f676f3f, 'Y', '2013-11-24 15:20:11'),
(563, 40, 0x436f6d6f206575207465726d696e6f20756d206a6f676f3f, 'Y', '2013-10-20 22:08:31'),
(565, 40, 0x496e74726f6475e7e36f20616f20447261676f6e, 'Y', '2013-10-20 22:08:31'),
(566, 40, 0x4f2071756520e92065737465206c756761723f, 'Y', '2016-08-06 20:46:22'),
(568, 40, 0x45207365206575206ee36f207469766572206e656e68756d61206e6fe7e36f20736f627265207175616c206465766520736572206f206d6575206eed76656c20696e696369616c3f, 'Y', '2013-10-20 22:08:31'),
(570, 40, 0x4361726163746572ed7374696361732064652074656d706f206e6f20447261676f6e, 'Y', '2013-10-20 22:08:31'),
(571, 40, 0x506f72717565206f2075736f20646520646961732064652066e97269617320e9206c696d697461646f3f, 'Y', '2013-10-20 22:08:31'),
(755, 40, 0x4d656e736167656d20646f207365727669646f72, 'Y', '2013-10-20 22:11:47'),
(780, 40, 0x42726173696c, 'Y', '2014-02-16 13:10:23'),
(1042, 40, 0x436f6d6f206575207361696f206461206d696e686120636f6e74613f, 'Y', '2013-10-20 22:18:15'),
(1046, 40, 0x44657363756c70652c20766f63ea206ee36f20686162696c69746f75206f73203c693e636f6f6b6965733c2f693e206e6f20736575206e6176656761646f722e, 'Y', '2014-02-06 14:45:20'),
(1047, 40, 0x44657363756c70652c2065737361206a6f67616461206ae120666f692066656974612e, 'Y', '2013-10-20 22:18:15'),
(1059, 40, 0x4d6f7374726172, 'Y', '2013-10-20 22:21:21'),
(1060, 40, 0x4f63756c746172, 'Y', '2013-10-20 22:21:21'),
(1067, 40, 0x4964696f6d61204e617469766f, 'Y', '2014-02-18 20:53:08'),
(1068, 40, 0x436f6d706574ea6e63696173206465206964696f6d6173, 'Y', '2014-02-18 20:52:51'),
(1069, 40, 0x41626169786f, 'Y', '2013-10-20 22:21:21'),
(1073, 40, 0x4e756d657261e7e36f20646173206a6f6761646173, 'Y', '2013-10-20 22:21:21'),
(1074, 40, 0x4ee36f20757365206efa6d65726f73206d61696f7265732071756520313030, 'Y', '2013-10-20 22:21:21'),
(1076, 40, 0x416e6f7461e7f5657320706573736f61697320646f206a6f676f, 'Y', '2013-11-24 15:24:13'),
(1077, 40, 0x546162756c6569726f732070657175656e6f73, 'Y', '2013-10-20 22:23:00'),
(1078, 40, 0x546162756c6569726f73206772616e646573206465, 'Y', '2013-10-20 22:23:00'),
(1079, 40, 0x506f7369e7e36f, 'Y', '2013-10-20 22:23:00'),
(1080, 40, 0x416c74757261, 'Y', '2013-10-20 22:23:00'),
(1081, 40, 0x4c617267757261, 'Y', '2013-10-20 22:23:00'),
(1082, 40, 0x456e766961722073656e6861, 'Y', '2013-10-20 22:23:00'),
(1083, 40, 0x466f692070656469646f206f20706f736963696f6e616d656e746f2070616472e36f20646173207065e761732064652076616e746167656d2e, 'Y', '2013-10-20 22:23:00'),
(1084, 40, 0x506f736963696f6e616d656e746f2070616472e36f, 'Y', '2013-10-20 22:23:00'),
(1085, 40, 0x506f72206661766f72206d6172717565206173207065e76173206d6f72746173206520636c6971756520656d202573277465726d696e61646f272573207175616e646f206163616261722e, 'Y', '2013-10-20 22:25:38'),
(1086, 40, 0x4361707475726173, 'Y', '2013-10-20 22:25:38'),
(1087, 40, 0x436f6d656e74e172696f73, 'Y', '2013-10-20 22:25:38'),
(1088, 40, 0x4261697861722053474620636f6d20746f646f73206f7320636f6d656e74e172696f73, 'Y', '2013-11-30 00:03:04'),
(1089, 40, 0x506f6e747561e7e36f, 'Y', '2013-10-20 22:25:38'),
(1090, 40, 0x566572206a6f67616461, 'Y', '2013-10-20 22:25:38'),
(1091, 40, 0x54656d706f2072657374616e7465, 'Y', '2013-10-20 22:25:38'),
(1092, 40, 0x4a6f676f206176616c6961646f, 'Y', '2013-11-24 15:09:04'),
(1093, 40, 0x4d6f7374726172206e6f746173, 'Y', '2013-10-20 22:33:43'),
(1094, 40, 0x53616c766172206e6f746173, 'Y', '2013-10-20 22:33:43'),
(1095, 40, 0x4f63756c746172206e6f746173, 'Y', '2013-10-20 22:33:43'),
(1099, 40, 0x44ea20756d61206f6c68616461206e6f204641512070617261206d61696f72657320696e666f726d61e7f565732e, 'Y', '2014-02-05 19:15:26'),
(1102, 40, 0x42616e636f206465206461646f73206520656e6369636c6f70e964696120476f476f44, 'Y', '2013-10-20 22:33:43'),
(1106, 40, 0x4c6973746120646520726573706f73746173, 'Y', '2013-10-20 22:34:33'),
(1108, 40, 0x566f6c74617220e0206d656e736167656d, 'Y', '2013-10-20 22:34:33'),
(1109, 40, 0x507265766572, 'Y', '2015-06-21 02:33:31'),
(1111, 40, 0x4772e16669636f206465206eed76656c, 'Y', '2013-10-20 22:35:20'),
(1113, 40, 0x4a6f676f73206176616c6961646f73, 'Y', '2013-10-20 22:35:20'),
(1120, 40, 0x706572ed6f646f7320657874726173, 'Y', '2013-10-20 22:35:46'),
(1121, 40, 0x4d656e736167656d20616e746572696f72, 'Y', '2013-10-20 22:35:46'),
(1122, 40, 0x5072f378696d6173206d656e736167656e73, 'Y', '2013-10-20 22:36:11'),
(1124, 40, 0x4d696d206d65736d6f, 'Y', '2014-08-17 04:24:17'),
(1125, 40, 0x4f7264656e6172, 'Y', '2013-10-20 22:36:36'),
(1130, 40, 0x5465727261, 'Y', '2013-10-20 22:37:32'),
(1211, 40, 0x4a6f67616461, 'Y', '2013-10-20 22:39:21'),
(1212, 40, 0x42656d2076696e646f20616f20257321, 'Y', '2013-10-20 22:39:21'),
(1214, 40, 0x557375e172696f7320617469766f73, 'Y', '2014-02-07 08:08:23'),
(1218, 40, 0x496d6167656d2064652066756e646f, 'Y', '2013-10-20 22:39:21'),
(1219, 40, 0x5665726d656c686f, 'Y', '2013-10-20 22:39:21'),
(1220, 40, 0x5665726465, 'Y', '2013-10-20 22:39:21'),
(1221, 40, 0x417a756c, 'Y', '2013-10-20 22:39:21'),
(1222, 40, 0x416c6661, 'Y', '2013-10-20 22:39:21'),
(1223, 40, 0x4d6f7374726172206e612070e167696e61206465207369747561e7e36f, 'Y', '2013-10-21 00:52:13'),
(1224, 40, 0x496d6167656d206465206672656e7465, 'Y', '2013-10-21 00:52:13'),
(1225, 40, 0x50617374617320616a7573746164617321, 'Y', '2013-10-21 00:52:13'),
(1226, 40, 0x417475616c697a6172, 'Y', '2013-10-21 00:52:13'),
(1227, 40, 0x4e6f76612073656e686120656e766961646121, 'Y', '2013-10-21 00:52:13'),
(1228, 40, 0x4772e16669636f206465206573746174ed737469636173, 'Y', '2014-02-07 08:50:39'),
(1580, 36, 0x46656c6164c3a17373616c206e79657274203a207665737a74657474206ac3a174737a6dc3a16b20737ac3a16d61, 'Y', '2015-09-19 19:18:23'),
(1234, 40, 0x44697363757373f56573, 'Y', '2013-10-21 00:52:13'),
(1235, 40, 0x566f6c74617220e02064697363757373e36f, 'Y', '2013-10-21 00:52:13'),
(1237, 40, 0x50726f6375726172, 'Y', '2013-10-21 00:53:15'),
(1243, 40, 0x706f72, 'Y', '2013-10-21 00:53:15'),
(1244, 40, 0x4573706572616e646f3c62723e6170726f7661e7e36f, 'Y', '2013-10-21 00:53:15'),
(1245, 40, 0x4f63756c746f, 'Y', '2013-10-21 00:53:15'),
(1246, 40, 0x6d756461646f, 'Y', '2013-10-21 00:53:15'),
(1267, 40, 0x526573756c7461646f206461206275736361, 'Y', '2013-10-21 01:55:16'),
(1270, 40, 0x546f646f73206f73206a6f676f7320e020657370657261, 'Y', '2013-10-21 01:55:16'),
(1271, 40, 0x4a6f676f73207669e17665697320e020657370657261, 'Y', '2013-10-21 01:55:16'),
(1273, 40, 0x556d6120706173746120707265636973612065737461722076617a6961207061726120736572206170616761646121, 'Y', '2013-10-21 01:55:16'),
(1274, 40, 0x64, 'Y', '2013-11-25 23:48:50'),
(1275, 40, 0x64, 'Y', '2013-11-25 23:48:50'),
(1276, 40, 0x68, 'Y', '2013-11-25 23:48:50'),
(1277, 40, 0x68, 'Y', '2013-11-25 23:51:26'),
(1282, 40, 0x427573636120646f20447261676f6e, 'Y', '2013-10-21 01:58:36'),
(1283, 40, 0x416368656920756d207465726d6f20646520476f20717565206ee36f20657374e1206e6f204641512e204f2071756520656c65207369676e69666963613f, 'Y', '2013-10-21 01:58:36'),
(1287, 40, 0x4f207175652073e36f206f73206974656e73206e612070e167696e612050657266696c3f, 'Y', '2014-01-26 14:17:05'),
(1375, 40, 0x44657363756c70652c20696420646520757375e172696f20696e76e16c6964612e, 'Y', '2013-10-21 02:14:22'),
(1376, 40, 0x44657363756c70652c20696420646520757375e172696f20696e76e16c69646120757361646120636f6d6f20616476657273e172696f2e, 'Y', '2013-10-21 02:14:22'),
(1378, 40, 0x436f6e7461746f73, 'Y', '2013-10-21 02:14:22'),
(1379, 40, 0x41706172ea6e636961, 'Y', '2013-10-21 02:14:22'),
(1382, 40, 0x44616e646f206f73206f72696d6569726f7320706173736f73, 'Y', '2013-10-21 02:14:22'),
(1383, 40, 0x4e6f74ed63696173, 'Y', '2013-10-21 02:14:22'),
(1385, 40, 0x4573747275747572612064612070e167696e61, 'Y', '2013-10-21 02:16:10'),
(1387, 40, 0x4c6973746120646520646573656a6f7320646f20444753, 'Y', '2013-10-21 02:16:10'),
(1388, 40, 0x5265637572736f7320652070656469646f7320717565206f7320757375e172696f7320646f2044475320736f6e68616d, 'Y', '2013-10-21 02:16:10'),
(1389, 40, 0x456469746172206f7264656d2062696f6772e166696361, 'Y', '2013-10-21 02:16:10'),
(1396, 40, 0x436c6971756520656d2022456e7669617222207061726120636f6e6669726d6172, 'Y', '2013-10-21 02:30:35'),
(1397, 40, 0x41646963696f6e61722074656d706f2070617261206f20616476657273e172696f, 'Y', '2013-10-21 02:30:35'),
(1398, 40, 0x4d6f7374726172206f627365727661646f726573, 'Y', '2013-10-21 02:30:35'),
(1399, 40, 0x4573636f6c6861207175616e746f2074656d706f2061646963696f6e616c20766f63ea20646573656a61206461722070617261206f2073657520616476657273e172696f, 'Y', '2013-10-21 02:30:35'),
(1400, 40, 0x61646963696f6e61646f20616f2074656d706f20646f2073657520616476657273e172696f, 'Y', '2013-10-21 02:30:35'),
(1401, 40, '', 'Y', '2013-10-21 02:30:35'),
(1402, 40, 0x41646963696f6e61722054656d706f, 'Y', '2013-10-21 02:32:17'),
(1403, 40, 0x43616e63656c6172, 'Y', '2013-10-21 02:32:17'),
(1389, 36, 0xc3896c657472616a7a6920736f7272656e64206dc3b3646f73c3ad74c3a17361, 'Y', '2015-09-19 18:23:21'),
(5526, 36, 0xc3897276c3a96e7974656c656e206bc5916d656e6e796973c3a9672061206b616e616461692062796f796f6d692d686f7a, 'Y', '2015-09-19 18:10:36'),
(1394, 40, 0x566f6c7461722070617261206f20ed6e6469636520646f20464151, 'Y', '2013-11-24 16:52:51'),
(1395, 40, 0x536520766f63ea206573717565636575207375612073656e6861206ef37320706f64656d6f7320746520656e7669617220756d61206e6f76612e3c62723e0d0a41206e6f76612073656e686120e920616c656174f37269612c206d617320e920636c61726f2071756520766f63ea20706f6465206d7564617220656c612065646974616e646f207375617320636f6e666967757261e7f565732e3c62723e0d0a3c623e4174656ee7e36f213c2f623e204174e920766f63ea206d75646172207375612073656e6861206465206e6f766f2c2074616e746f20612073656e686120616e74696761207175616e746f20612073656e686120616c656174f372696120736572e36f2076e16c696461732e, 'Y', '2014-02-01 23:07:00'),
(1406, 40, '', 'Y', '2013-10-21 02:33:21'),
(1407, 40, '', 'Y', '2013-10-21 02:33:21'),
(1408, 40, '', 'Y', '2013-10-21 02:33:21'),
(1409, 40, 0x50726f6375726172206d656e736167656e73, 'Y', '2013-10-21 02:33:21'),
(1412, 40, 0x546f646f73, 'Y', '2014-01-25 10:15:09'),
(1413, 40, 0x50, 'Y', '2014-01-25 10:15:09'),
(1414, 40, 0x42, 'Y', '2014-01-25 10:15:09'),
(1415, 40, 0x4944, 'Y', '2013-11-24 20:59:23'),
(1416, 40, 0x736766, 'Y', '2013-11-24 13:24:04'),
(1417, 40, 0x4e6f6d65202870726574617329, 'Y', '2013-11-24 13:25:03'),
(1418, 40, 0x494420646520757375e172696f202870726574617329, 'Y', '2013-11-24 13:25:03'),
(1419, 40, 0x4eed76656c20696e696369616c202870726574617329, 'Y', '2013-11-24 13:25:03'),
(1443, 40, 0x4176616c2e, 'Y', '2013-11-30 09:14:57'),
(1444, 40, 0xda6c74696d61206a6f672e, 'Y', '2015-08-13 01:41:53'),
(6420, 40, 0x416476657273e172696f73206469666572656e746573, 'Y', '2016-05-02 04:58:50'),
(1446, 40, 0xda6c74696d6f2061636573736f20286164762e29, 'Y', '2014-01-24 23:07:48'),
(1447, 40, 0x52656cf367696f206e6f2066696d2064652073656d616e61, 'Y', '2013-11-24 13:32:47'),
(1456, 40, '', 'Y', '2013-10-21 04:23:56'),
(1457, 40, 0x4261697861722053474620646f206a6f676f, 'Y', '2013-10-21 04:23:56'),
(1462, 40, 0x4f757472617320696e666f726d61e7f5657320646f20757375e172696f, 'Y', '2013-10-21 04:23:56'),
(1465, 40, 0x436f6e766964617220757375e172696f, 'Y', '2013-10-21 04:33:13'),
(1466, 40, 0x41646963696f6e61722f65646974617220636f6e7461746f, 'Y', '2013-10-21 04:33:13'),
(1467, 40, 0x4d6f7374726172206d65757320616476657273e172696f73, 'Y', '2013-10-21 04:33:13'),
(1468, 40, 0x4d6f7374726172206573746174ed737469636173206465206a6f676f207061726120646f6973206a6f6761646f726573, 'Y', '2013-10-21 04:33:13'),
(1469, 40, 0x456e76696172206d656e736167656d2070617261206f20636f6e7461746f, 'Y', '2013-10-21 04:33:13'),
(1470, 40, 0x436f6e766964617220636f6e7461746f, 'Y', '2013-10-21 04:33:13'),
(1471, 40, 0x41646963696f6e6172206e6f766f20636f6e7461746f, 'Y', '2013-10-21 04:33:13'),
(1473, 40, 0x506573717569736172206e6f732066f372756e73, 'Y', '2013-11-24 17:09:08'),
(1474, 40, '', 'Y', '2013-10-21 04:36:15'),
(1475, 40, 0x54656d706f2072657374616e7465, 'Y', '2013-11-24 13:32:27'),
(1476, 40, 0x45646974617220636f6e7461746f, 'Y', '2013-10-21 04:36:15'),
(1477, 40, 0x41646963696f6e617220636f6e7461746f, 'Y', '2013-10-21 04:36:15'),
(1478, 40, 0x417469766f, 'Y', '2013-10-21 04:36:15'),
(1479, 40, 0x4e6f6d65, 'Y', '2013-11-24 13:32:27'),
(1480, 40, 0x5061ed73, 'Y', '2013-11-24 13:34:44'),
(1481, 40, 0x496e662e206465206eed76656c, 'Y', '2014-01-26 13:38:31'),
(1482, 40, 0x446973706f6eed76656c2070617261206a6f6761723f, 'Y', '2013-11-24 13:34:44'),
(1483, 40, 0x234a6f676f73, 'Y', '2014-01-25 11:57:28'),
(1484, 40, 0x456d2070726f636573736f, 'Y', '2013-11-24 13:39:09'),
(1485, 40, 0x5465726d696e61646f73, 'Y', '2013-11-24 13:39:09'),
(1486, 40, 0x47616e686f75, 'Y', '2013-11-24 13:39:09'),
(1487, 40, 0x506572646575, 'Y', '2013-11-24 13:39:09'),
(6139, 40, 0x56616c6f7220696e76e16c69646f207061726120706f7263656e746167656d20686572f3696361206ded6e696d61205b25735d20286170656e617320696e746569726f732064652030206174e92031303029, 'Y', '2014-07-30 06:24:04'),
(1489, 40, 0x417469766964616465, 'Y', '2013-11-24 13:39:09'),
(1490, 40, 0xda6c74696d6f2061636573736f, 'Y', '2013-11-24 13:40:17'),
(1492, 40, 0x4f627365727661646f72657320646f206a6f676f202573, 'Y', '2013-10-21 04:43:50'),
(1493, 40, 0x546f646f73, 'Y', '2013-10-21 04:54:04'),
(1497, 40, 0x496e666f, 'Y', '2013-11-24 13:40:17'),
(1498, 40, 0x436f6d656e74e172696f, 'Y', '2013-11-24 13:40:17'),
(1499, 40, 0x5469706f, 'Y', '2013-11-24 13:40:17'),
(1502, 40, 0x54656d706f, 'Y', '2015-04-21 02:59:46');
INSERT INTO `Translations` (`Original_ID`, `Language_ID`, `Text`, `Translated`, `Updated`) VALUES
(1503, 40, 0x506f7369e7f565732070616472e36f, 'Y', '2013-11-24 13:40:17'),
(1505, 40, 0x56616e746167656d207072f37072696120286b6f6d6920616a75737461646f2070656c6f2073697374656d6129, 'Y', '2013-10-21 04:54:58'),
(1506, 40, 0x5469706f, 'Y', '2013-10-21 04:54:58'),
(1507, 40, 0x5061737461, 'Y', '2013-11-24 13:45:30'),
(1508, 40, 0x5469706f, 'Y', '2013-11-24 13:45:30'),
(1509, 40, 0x44697265e7e36f, 'Y', '2013-11-24 13:45:30'),
(1510, 40, 0x52656d6574656e7465, 'Y', '2013-11-24 13:45:30'),
(1511, 40, 0x50617261, 'Y', '2013-11-24 13:45:30'),
(1512, 40, 0x4465, 'Y', '2013-11-24 13:45:30'),
(1513, 40, 0x417373756e746f, 'Y', '2013-11-24 13:49:42'),
(1515, 40, 0x4d61726361, 'Y', '2013-11-24 13:49:42'),
(1516, 40, 0x4d696d206d65736d6f, 'Y', '2014-08-17 04:24:17'),
(1576, 40, 0x536f6d61, 'Y', '2013-10-21 06:04:34'),
(1577, 40, 0x4170726f76656974616d656e746f20656d202347616d6573, 'Y', '2013-10-21 06:04:34'),
(1578, 40, 0x2347616d65732067616e686f73203a207065726469646f73, 'Y', '2013-10-21 06:04:34'),
(1579, 40, 0x2347616d65732067616e686f73203a207065726469646f7320706f7220506f6e747561e7e36f, 'Y', '2013-10-21 06:04:34'),
(1580, 40, 0x236a6f676f732067616e686f73203a207065726469646f7320706f7220646573697374ea6e636961, 'Y', '2014-02-18 23:50:32'),
(1581, 40, 0x2347616d65732067616e686f73203a207065726469646f7320706f722054656d706f, 'Y', '2013-10-21 06:04:34'),
(1582, 40, 0x234a6f676f7320636f6d204a69676f, 'Y', '2013-12-06 20:49:43'),
(1583, 40, 0x2347616d657320636f6d2076616e746167656d, 'Y', '2013-10-21 06:04:34'),
(1584, 40, 0x56616e746167656d206de178696d61, 'Y', '2013-10-21 06:04:34'),
(82, 40, 0x5369747561e7e36f, 'Y', '2013-10-21 08:02:17'),
(618, 40, 0x4eed76656c20696e696369616c, 'Y', '2013-10-21 08:02:17'),
(619, 40, 0x4eed76656c2066696e616c, 'Y', '2013-10-21 08:02:17'),
(620, 40, 0x4469666572656ee761206465206eed76656c, 'Y', '2013-10-21 08:02:17'),
(733, 40, 0x44652066e972696173, 'Y', '2013-10-21 08:02:17'),
(1024, 40, 0x4a6f676f20657175696c69627261646f, 'Y', '2013-10-21 08:02:17'),
(1252, 40, 0x52656a6569746172, 'Y', '2013-10-21 08:02:17'),
(1420, 40, 0x4eed76656c202870726574617329, 'Y', '2014-02-22 07:34:45'),
(1421, 40, 0x4e6f6d6520286272616e63617329, 'Y', '2013-11-24 13:25:56'),
(1422, 40, 0x496420646520757375e172696f20286272616e63617329, 'Y', '2013-11-24 13:25:56'),
(1423, 40, 0x4eed76656c20696e696369616c20286272616e63617329, 'Y', '2013-11-24 13:25:56'),
(1424, 40, 0x4eed76656c20286272616e63617329, 'Y', '2013-11-24 13:25:56'),
(1425, 40, 0x4eed76656c2066696e616c202870726574617329, 'Y', '2013-11-24 13:25:56'),
(1426, 40, 0x4469666572656ee76120646f206eed76656c202870726574617329, 'Y', '2013-11-24 13:25:56'),
(1427, 40, 0x4eed76656c2066696e616c20286272616e63617329, 'Y', '2013-11-24 13:25:56'),
(1428, 40, 0x4469662e206465206eed76656c20286272616e63617329, 'Y', '2014-01-25 09:35:48'),
(1429, 40, 0x416476657273e172696f, 'Y', '2013-11-24 13:25:56'),
(1430, 40, 0x557375e172696f, 'Y', '2013-11-24 13:28:21'),
(2717, 6, 0x54696d6f72204f7269656e74616c, 'Y', '2015-06-18 20:31:16'),
(2691, 6, 0x506f6c696e65736961204672616e63657361, 'Y', '2015-06-18 20:27:45'),
(1433, 40, 0x4eed76656c, 'Y', '2013-11-24 13:26:55'),
(2681, 6, 0x5465727269746f72696f2042726974e16e69636f2064656c204f63e9616e6f20cd6e6469636f, 'Y', '2015-06-17 05:33:58'),
(1435, 40, 0x436f72, 'Y', '2013-11-24 13:29:05'),
(1436, 40, 0x436f726573, 'Y', '2013-11-26 01:03:25'),
(1437, 40, 0x54616d2e, 'Y', '2013-11-26 01:06:10'),
(1438, 40, 0x56616e742e, 'Y', '2013-11-26 01:04:30'),
(1439, 40, 0x4b6f6d69, 'Y', '2013-11-24 13:30:02'),
(1440, 40, 0x4a6f672e, 'Y', '2013-11-30 20:30:38'),
(1441, 40, 0x506f6e746f73, 'Y', '2013-11-26 01:04:30'),
(1442, 40, 0x56656e6365753f, 'Y', '2013-11-24 13:30:02'),
(1554, 40, 0x41e7f56573, 'Y', '2013-11-24 13:49:42'),
(1557, 40, 0x4e6f746173, 'Y', '2013-11-24 13:50:32'),
(1731, 40, 0x52656cf367696f2046697363686572, 'Y', '2013-12-07 13:21:16'),
(1782, 40, 0x415649534f3a2041206c6973746120636f6d706c657461206465206a6f676f7320e920706f722070616472e36f207265737472696e676964612061206d6f737472617220736f6d656e7465206a6f676f73206465202573206469612873292e204973736f20706f646520736572206d756461646f206e6f2066696c74726f2070617261205b25735d2e, 'Y', '2013-10-21 10:03:19'),
(1826, 40, 0x417475616c697a6172, 'Y', '2013-10-21 10:03:19'),
(1924, 40, 0x43e16c63756c6f73206465206a6f676f, 'Y', '2013-10-21 10:03:19'),
(1926, 40, 0x4d6f73747261722063e16c63756c6f73206465206eed76656c, 'Y', '2013-10-21 10:03:19'),
(1927, 40, 0x526573756c7461646f, 'Y', '2013-10-21 10:03:19'),
(1928, 40, 0x43e16c63756c6f206465206e6f766f206a6f676f, 'Y', '2013-10-21 10:03:19'),
(1944, 40, 0x4578697374656d20616c67756e73206572726f73, 'Y', '2013-10-21 10:03:19'),
(2006, 40, 0x5369747561e7e36f206465204a6f676f7320646f20546f726e65696f, 'Y', '2014-02-16 09:51:45'),
(2101, 40, 0x54ed74756c6f, 'Y', '2013-10-21 10:05:45'),
(2153, 40, 0x54656d706f2061646963696f6e61646f21, 'Y', '2013-10-21 10:05:45'),
(2154, 40, '', 'Y', '2013-10-21 10:05:45'),
(2155, 40, '', 'Y', '2013-10-21 10:05:45'),
(2161, 40, 0x436f6e766572736f72206465206eed76656c20646f20444753, 'Y', '2013-10-21 10:05:45'),
(2167, 40, 0x4e6f766f20626f6c6574696d, 'Y', '2013-10-21 10:05:45'),
(2173, 40, 0x4d6f7374726172206a6f6761646f726573, 'Y', '2013-10-21 10:05:45'),
(2174, 40, 0x496e666f726d61e7f5657320646f20746f726e65696f, 'Y', '2013-10-21 10:05:45'),
(2183, 40, 0x4572726f73, 'Y', '2013-10-21 10:09:59'),
(2277, 40, 0xda6c74696d6120616c74657261e7e36f, 'Y', '2013-10-21 10:09:59'),
(2394, 40, '', 'Y', '2013-10-21 10:09:59'),
(2395, 40, 0x566f63ea206465766520746572206f20636f6e73656e74696d656e746f2064612073756120657175697065207061726120646573697374697220656d20756d206a6f676f2d6dfa6c7469706c6f21, 'Y', '2014-02-18 23:50:32'),
(2397, 40, 0x566572696669717565207365206f73207365757320746572726974f372696f7320657374e36f20636f6d2061732066726f6e74656972617320746f74616c6d656e746520666563686164617320616e746573206465207465726d696e6172206f206a6f676f21, 'Y', '2013-10-21 10:09:59'),
(2399, 40, 0x4361707475726120646120da6c74696d61204a6f67616461, 'Y', '2013-10-21 10:09:59'),
(2400, 40, 0x417475616c697a61722367616d6570616765, 'Y', '2013-10-21 10:09:59'),
(2401, 40, 0x496e666f726d61e7f5657320646f206a6f676f, 'Y', '2013-12-07 23:24:02'),
(1966, 40, 0x4e6f766f20626f6c6574696d2061646d696e69737472617469766f, 'Y', '2014-01-31 09:29:15'),
(2396, 40, '', 'Y', '2013-10-21 10:11:02'),
(2402, 40, '', 'Y', '2013-10-21 10:11:02'),
(2403, 40, 0x43726961723a20466f726d61, 'Y', '2014-01-25 09:44:36'),
(2404, 40, 0x284a6f67616461206e6f205347463a20257329, 'Y', '2013-11-24 16:47:54'),
(5746, 4, 0x4d69, 'Y', '2013-12-01 17:04:15'),
(2406, 40, 0x5072696d65697261206a6f67616461, 'Y', '2013-10-21 10:17:29'),
(2407, 40, 0x4a6f6761646120616e746572696f72, 'Y', '2013-10-21 10:17:29'),
(2408, 40, 0x5072f378696d61206a6f67616461, 'Y', '2013-10-21 10:17:29'),
(2411, 40, 0x43616e63656c6172206a6f67616461, 'Y', '2013-10-21 10:17:29'),
(2414, 40, 0x56617269616e746520646f206a6f676f, 'Y', '2015-04-21 03:03:40'),
(2415, 40, 0xda6c74696d61206a6f6761646120706f723a, 'Y', '2013-10-21 10:17:29'),
(2416, 40, 0x5265677261, 'Y', '2013-11-24 15:07:04'),
(5524, 36, 0x4373616b20c3a97274c3a96b656cc3a97373656c2072656e64656c6b657ac59120656c6c656e66c3a96c206ac3a174737a68617420c3a97274c3a96b656c74206ac3a174737a6dc3a1742e, 'Y', '2015-09-19 18:10:36'),
(5535, 25, 0x6b6f6d6920696d706c69636974, 'Y', '2013-10-22 18:22:12'),
(5682, 25, 0x43756c6f61726561206d6561, 'Y', '2013-10-22 18:22:32'),
(5538, 25, 0x416a757374c48372696c652073756e742076616c69646520646f61722070656e7472752068616e6469636170756c20636f6e76656ec89b696f6e616c20c899692068616e6469636170756c206164656376617421, 'Y', '2013-10-22 18:25:07'),
(5539, 25, 0x416a757374617265207069657472652068616e6469636170, 'Y', '2013-10-22 18:26:01'),
(5540, 25, 0x416a757374617265206b6f6d69, 'Y', '2013-10-22 18:26:27'),
(3059, 25, 0x416a75737465617ac483206375, 'Y', '2013-10-22 18:27:41'),
(3062, 25, 0x416a75737465617ac483206375, 'Y', '2013-10-22 18:27:41'),
(5530, 25, 0x28496d706c696369742025732070656e7472752064696d656e7369756e656120257329, 'Y', '2013-10-22 18:28:37'),
(5527, 25, 0x496d706c69636974, 'Y', '2013-10-22 18:29:12'),
(5532, 25, 0x496d706c69636974, 'Y', '2013-10-22 18:29:42'),
(3063, 25, 0x436f6e66696775726172652072656d697ac483, 'Y', '2013-10-22 18:51:40'),
(5533, 25, 0x46c48372c4832072657374726963c5a36969206c65676174652064652072656d697ac483, 'Y', '2013-10-22 18:33:54'),
(2959, 25, 0x52656d697ac48320706f736962696cc483, 'Y', '2013-10-22 18:51:22'),
(2960, 25, 0x52656d697ac48320696d706f736962696cc483, 'Y', '2013-10-22 18:53:25'),
(5593, 4, '', 'Y', '2013-10-30 21:21:50'),
(5667, 4, 0x506f7274756769657369736368202842726173696c69656e29, 'Y', '2013-10-30 21:21:50'),
(5668, 4, 0x506f727475676965736973636820284575726f706129, 'Y', '2013-10-30 21:21:50'),
(5693, 4, 0x6f64657220696e2055726c617562, 'Y', '2013-10-30 21:21:50'),
(5602, 4, 0x537069656c6d6173746572, 'Y', '2013-10-30 21:22:07'),
(5599, 4, 0x4e6f74697a, 'Y', '2013-10-30 21:22:52'),
(5601, 4, 0x456d61696c20fc6265727072fc66656e, 'Y', '2013-10-30 21:22:52'),
(5508, 4, 0x537069656c206cf6736368656e, 'Y', '2013-10-30 21:25:04'),
(5509, 4, 0x44696520616e646572656e20537069656c65722077657264656e20fc62657220646965204cf6736368756e672062656e61636872696368746967742e, 'Y', '2013-10-30 21:25:04'),
(5510, 4, 0x53696e6420536965207369636865722c2064617373205369652064696573657320537069656c206a65747a74206cf6736368656e20776f6c6c656e3f, 'Y', '2013-10-30 21:25:04'),
(5519, 4, 0x566f726761626520616e70617373656e, 'Y', '2013-10-30 21:25:04'),
(5520, 4, 0x4b6f6d6920616e70617373656e, 'Y', '2013-10-30 21:25:23'),
(5527, 4, 0x5374616e64617264, 'Y', '2013-10-30 21:27:55'),
(5529, 4, 0x5374616e64617264204d61782e, 'Y', '2013-10-30 21:27:55'),
(5530, 4, 0x285374642e206973742025732066fc72204772f6df6520257329, 'Y', '2013-10-30 21:27:55'),
(5531, 4, 0x5374616e6461726465696e7374656c6c756e67656e, 'Y', '2013-10-30 21:27:55'),
(5679, 4, 0x5370616c74652027257327207a656967742064696520566f7267616265206f64657220646572656e20426573636872e46e6b756e67656e2c207a2e422e2035206f646572205b302c395d206f646572205b302c44395d206f646572202573, 'Y', '2013-10-30 21:27:55'),
(5681, 4, 0x6265726563686e65746520566f7267616265, 'Y', '2013-10-30 21:28:16'),
(5535, 4, 0x76657277656e6465205374616e64617264204b6f6d69, 'Y', '2013-10-30 21:29:53'),
(5539, 4, 0x566f7267616265737465696e6520416e70617373756e67656e, 'Y', '2013-10-30 21:29:53'),
(5540, 4, 0x4b6f6d6920416e70617373756e67656e, 'Y', '2013-10-30 21:29:53'),
(5541, 4, 0x537069656c65722d496e666f, 'Y', '2013-10-30 21:29:53'),
(5720, 4, '', 'Y', '2013-10-30 21:31:56'),
(5726, 4, 0x42657265696368202d3230302e2e323030, 'Y', '2013-10-30 21:31:56'),
(5727, 4, 0x566f72676162653a202564, 'Y', '2013-10-30 21:31:56'),
(5728, 4, '', 'Y', '2013-10-30 21:31:56'),
(5729, 4, 0x68e46e677420616220766f6e2042726574746772f6df65, 'Y', '2013-10-30 21:31:56'),
(6389, 40, 0x6d65736d6f20636f6e76697465, 'Y', '2016-05-01 01:18:39'),
(1348, 5, 0x4a276169206f75626c69e9206d6f6e206d6f742064652070617373652e2051756520646f69732d6a65206661697265203f, 'Y', '2013-11-11 21:04:04'),
(3385, 6, 0x4d697320706172746964617320656e20637572736f, 'Y', '2015-06-20 00:51:53'),
(4819, 6, 0x4d6973206a7565676f7320656e20637572736f2064656c20746f726e656f20232573, 'Y', '2013-11-11 22:25:30'),
(4820, 6, 0x4d6973206a7565676f7320656e20637572736f20636f6e20656c207573756172696f205b25735d20656e20656c20746f726e656f20232573, 'Y', '2013-11-11 22:25:30'),
(1416, 6, '', 'Y', '2013-11-11 22:31:50'),
(1429, 6, 0x4f706f6e656e7465, 'Y', '2013-11-11 22:31:50'),
(1430, 6, 0x49442064656c207573756172696f, 'Y', '2015-06-24 22:27:57'),
(1433, 6, 0x52616e676f, 'Y', '2015-06-23 21:15:29'),
(1435, 6, '', 'Y', '2013-11-11 22:31:50'),
(1437, 6, 0x54616d, 'Y', '2013-12-07 15:24:36'),
(1438, 6, 0x48, 'Y', '2015-08-04 05:37:11'),
(1439, 6, '', 'Y', '2013-11-11 22:31:50'),
(1440, 6, 0x234a75672e, 'Y', '2015-08-04 05:38:02'),
(1444, 6, 0xda6c74696d61206a7567616461, 'Y', '2015-08-04 18:51:08'),
(1475, 6, 0x5469656d706f2072657374616e7465, 'Y', '2013-11-11 22:33:20'),
(1479, 6, 0x4e6f6d627265, 'Y', '2013-11-11 22:33:20'),
(1508, 6, 0x5469706f, 'Y', '2013-11-11 22:33:20'),
(1520, 6, '', 'Y', '2013-11-11 22:33:20'),
(1521, 6, 0x4d6f73747261722066696c6173, 'Y', '2013-11-11 22:33:20'),
(1554, 6, 0x416363696f6e6573, 'Y', '2013-11-11 22:33:20'),
(1557, 6, 0x4e6f746173, 'Y', '2013-11-11 22:33:20'),
(1569, 6, 0xda6c74696d6f2063616d62696f, 'Y', '2013-11-11 22:33:20'),
(1606, 6, 0x427573636172, 'Y', '2015-06-16 18:10:17'),
(1607, 6, 0x426f72726172206c612062fa737175656461, 'Y', '2013-11-11 22:45:20'),
(1608, 6, 0x53696e7461786973, 'Y', '2013-11-11 22:45:20'),
(1609, 6, '', 'Y', '2013-11-11 22:45:20'),
(1610, 6, 0x544558544f, 'Y', '2013-11-11 22:45:20'),
(1611, 6, 0x737562636164656e61, 'Y', '2013-11-11 22:45:20'),
(1613, 6, 0x52e174696e6720696e76e16c69646f, 'Y', '2013-11-11 22:45:20'),
(1602, 6, 0x5475746f72, 'Y', '2013-11-11 22:49:07'),
(1612, 6, 0x52414e474f53, 'Y', '2015-06-23 21:15:17'),
(1614, 6, 0x5041cd53, 'Y', '2013-11-11 22:49:07'),
(1617, 6, 0x546f646f73206c6f73207061ed736573, 'Y', '2013-11-11 22:49:07'),
(1618, 6, 0x4645434841, 'Y', '2013-11-11 22:49:07'),
(1620, 6, 0x61f16f73, 'Y', '2013-11-11 22:49:07'),
(1621, 6, 0x6d65736573, 'Y', '2013-11-11 22:49:07'),
(1622, 6, 0x73656d616e6173, 'Y', '2013-11-11 22:49:07'),
(1619, 6, 0x6162736f6c757461, 'Y', '2013-11-11 22:51:47'),
(1623, 6, 0x64ed6173, 'Y', '2013-11-11 22:51:47'),
(1624, 6, 0x686f726173, 'Y', '2013-11-11 22:51:47'),
(1628, 6, 0x6e6f206e756de97269636f, 'Y', '2013-11-11 22:51:47'),
(1629, 6, 0x7175697ae1732071756965726173206573636f676572206162736f6c757461, 'Y', '2013-11-11 22:51:47'),
(1626, 6, '', 'Y', '2013-11-11 22:53:23'),
(1627, 6, 0x6162736f6c757461, 'Y', '2013-11-11 22:53:23'),
(1737, 6, 0x6d696e75746f73, 'Y', '2013-11-11 22:55:25'),
(3161, 6, 0x4d6f76696d69656e746f, 'Y', '2013-11-11 23:03:06'),
(1443, 6, 0x506f722070756e746f73, 'Y', '2013-11-11 23:11:22'),
(1630, 6, 0x546f646f73, 'Y', '2013-11-11 23:11:22'),
(1631, 6, 0x53ed, 'Y', '2013-11-11 23:11:22'),
(1632, 6, 0x4e6f, 'Y', '2013-11-11 23:11:22'),
(1633, 6, 0x546f646f73, 'Y', '2013-11-11 23:11:22'),
(1634, 6, 0x53ed, 'Y', '2013-11-11 23:11:22'),
(1635, 6, 0x4e6f, 'Y', '2013-11-11 23:11:22'),
(1637, 6, 0x4d6f646f206578706572746f, 'Y', '2013-11-11 23:11:22'),
(1636, 6, 0x494e444943454a5545474f, 'Y', '2013-11-12 22:18:24'),
(1638, 6, 0x50554e5455414349d34e, 'Y', '2013-11-12 22:18:24'),
(1639, 6, 0x53656c656363696f6e61206e696e67756e6f2c20756e6f206f20766172696f7320656c656d656e746f732e, 'Y', '2013-11-12 22:18:24'),
(1640, 6, 0x44656d61736961646f7320736570617261646f726573, 'Y', '2013-11-12 22:18:24'),
(1641, 6, 0x416c206d656e6f73202531247320636172e163746572657320736f6e206e656365736172696f7320656e20746578746f732071756520656d70696563656e20706f7220636172e16374657220657370656369616c205b253224735d, 'Y', '2013-11-12 22:18:24'),
(1642, 6, 0x6e6f20657320616365707461626c6520636f6d6f2070726566696a6f, 'Y', '2013-11-12 22:18:24'),
(1643, 6, 0x666f726d61746f20646520666563686120657272f36e656f, 'Y', '2013-11-12 22:18:24'),
(1644, 6, 0x6461746f20646520666563686120657272f36e656f, 'Y', '2013-11-12 22:18:24'),
(1645, 6, 0x64ed6120657272f36e656f, 'Y', '2013-11-12 22:18:24'),
(1646, 6, 0x75736f20646520636f6d696c6c617320657272f36e656f, 'Y', '2013-11-12 22:18:24'),
(1647, 6, 0x656e746964616420584d4c20696e76e16c69646120656e206c6120706f73696369f36e2023, 'Y', '2013-11-13 21:05:34'),
(1648, 6, 0x657469717565746120584d4c20696e76e16c69646f20656e206c6120706f73696369f36e2023, 'Y', '2013-11-13 21:05:34'),
(1650, 6, 0x65746971756574612064652063696572726520584d4c20696e76e16c69646f20656e206c6120706f73696369f36e2023, 'Y', '2013-11-13 21:05:34'),
(1651, 6, 0x617472696275746f20584d4c20696e76e16c69646f20656e206c6120706f73696369f36e2023, 'Y', '2013-11-13 21:05:34'),
(1842, 6, 0x506f6ced74696361, 'Y', '2013-11-13 21:05:34'),
(1871, 6, 0x446f6e6172, 'Y', '2013-11-13 21:05:34'),
(1872, 6, 0x41706f79612044475320636f6e20756e6120646f6e616369f36e, 'Y', '2013-11-13 21:05:34'),
(1873, 6, 0x446f6e616369f36e, 'Y', '2013-11-13 21:05:34'),
(1875, 6, 0x446f6e6163696f6e6573, 'Y', '2013-11-13 21:05:34'),
(1879, 6, 0x456c207369677569656e746520656e6c616365206c65206c6c65766172e120612050617950e26c, 'Y', '2013-11-13 21:21:58'),
(1880, 6, 0xa14772616369617320706f722073752067656e65726f736120646f6e616369f36e2064652061706f796f20612044475321, 'Y', '2013-12-07 11:25:38'),
(1923, 6, 0x43756f7461, 'Y', '2013-11-13 21:21:58'),
(1929, 6, 0xa154752063756f74612064652061636365736f20736520657374e12061676f74616e646f2e203c62723e53f36c6f2074652071756564616e202573206869747320616e7465732064652073657220626c6f71756561646f20706f722025732021, 'Y', '2013-12-07 11:25:38'),
(1930, 6, 0x48617320657863656469646f2074752063756f74612064652061636365736f, 'Y', '2013-11-13 21:21:58'),
(1932, 6, 0x526573747269636369f36e2074656d706f72616c2064652061636365736f, 'Y', '2013-11-13 21:21:58'),
(1944, 6, 0x48612068616269646f206572726f726573, 'Y', '2013-11-13 21:21:58'),
(2145, 6, 0x50726f666573696f6e616c, 'Y', '2013-11-13 21:25:28'),
(2146, 6, '', 'Y', '2015-06-15 17:40:32'),
(2158, 6, 0x4573746164ed737469636173, 'Y', '2013-11-13 21:25:28'),
(2174, 6, 0x496e666f726d616369f36e2064656c20746f726e656f, 'Y', '2013-11-13 21:25:28'),
(2183, 6, 0x4572726f726573, 'Y', '2013-11-13 21:25:28'),
(2377, 6, 0x456469746f7220646520476f62e16e, 'Y', '2015-06-28 00:13:44'),
(2173, 6, 0x4d6f7374726172206a756761646f726573, 'Y', '2013-11-13 21:35:38'),
(2458, 6, 0x496e666f726d616369f36e206465206c612070617274696461, 'Y', '2015-10-13 05:01:33'),
(2659, 6, 0x4e6f2073652068612065737065636966696361646f206e696e67fa6e206669636865726f20706172612073756269722e, 'Y', '2013-11-13 21:35:38'),
(2660, 6, 0x456c206669636865726f2073756269646f205b25735d2065786365646520656c206de178696d6f2074616d61f16f206465206669636865726f2064656c207365727669646f722e, 'Y', '2013-11-13 21:35:38'),
(2661, 6, 0x456c206669636865726f2073756269646f205b25735d2065786365646520656c206de178696d6f2074616d61f16f206465206669636865726f205b25732062797465735d2065737065636966696361646f20706f7220656c20666f726d756c6172696f2e, 'Y', '2013-11-13 21:35:38'),
(2662, 6, 0x456c206669636865726f205b25735d20736f6c616d656e7465206861207369646f2073756269646f207061726369616c6d656e74652e, 'Y', '2013-11-13 21:35:38'),
(2663, 6, 0x4e696e67fa6e206669636865726f206861207369646f2073756269646f2e, 'Y', '2013-11-13 21:35:38'),
(2664, 6, 0x456c206669636865726f2073756269646f205b25735d207469656e6520756e20666f726d61746f20646520696d6167656e20646573636f6e6f6369646f2e, 'Y', '2013-11-14 23:42:30'),
(2665, 6, 0x456c20666f726d61746f20646520696d6167656e205b25732c2025735d2064656c206669636865726f2073756269646f205b25735d206e6f20656e63616a6120636f6e206c6f7320666f726d61746f7320657370657261646f73205b25735d2e, 'Y', '2013-11-14 23:42:30'),
(2666, 6, 0x456c20616e63686f205b25735d206465206c6120696d6167656e20737562696461205b25735d2065786365646520656c206ced6d697465206465205b25732070ed78656c65735d2e, 'Y', '2013-11-14 23:42:30'),
(2667, 6, 0x456c20616c746f205b25735d206465206c6120696d6167656e20737562696461205b25735d2065786365646520656c206ced6d697465206465205b25732070ed78656c65735d2e, 'Y', '2013-11-14 23:42:30'),
(2668, 6, 0x456c206669636865726f2073756269646f205b25735d206e6f2070756564652073657220616c6d6163656e61646f2e, 'Y', '2013-11-14 23:42:30'),
(2669, 6, '', 'Y', '2013-11-14 23:42:30'),
(2670, 6, '', 'Y', '2013-11-14 23:42:30'),
(2671, 6, '', 'Y', '2013-11-14 23:42:46'),
(2988, 6, 0x436f6e65637461646f, 'Y', '2013-11-14 23:45:50'),
(2989, 6, 0x436f6e65637461646f206861636520266c743b2573206d696e75746f73, 'Y', '2013-11-14 23:45:50'),
(3149, 6, 0x4164766572736172696f7320636f6e65637461646f, 'Y', '2013-11-14 23:45:50'),
(3150, 6, 0x5573756172696f7320636f6e65637461646f73, 'Y', '2013-11-14 23:45:50'),
(3226, 6, 0x5573756172696f7320636f6e65637461646f73, 'Y', '2013-11-14 23:45:50'),
(3227, 6, 0x496e64696361646f722064652068616265722065737461646f20636f6e65637461646f2068616365206d656e6f73206465202573206d696e75746f73, 'Y', '2015-09-03 04:37:46'),
(4589, 5, 0x50617274696573207465726d696ee96573206465206c277574696c69736174657572, 'Y', '2013-11-20 15:27:10'),
(4588, 5, 0x5061727469657320656e20636f757273206465206c277574696c69736174657572, 'Y', '2013-11-20 15:27:38'),
(3374, 5, 0x50617274696573207465726d696ee9657320646520253124733a2025322473, 'Y', '2013-11-20 15:28:54'),
(3388, 5, 0x4d657320746f75726e6f6973, 'Y', '2013-11-20 15:29:48'),
(5714, 5, 0x566f6972206c65206368616e67656d656e74206465206e6976656175, 'Y', '2013-11-20 15:36:51'),
(5743, 4, 0x536f, 'Y', '2013-12-01 17:04:15'),
(2992, 5, 0x546f75726e6f6973, 'Y', '2013-11-20 15:37:55'),
(4612, 5, 0x546f7573206c657320746f75726e6f6973, 'Y', '2013-11-20 15:38:23'),
(4496, 5, 0x4465726e69657220616363e87320726170696465, 'Y', '2013-11-20 15:39:15'),
(3909, 5, 0x4c65206e6976656175206465206c277574696c69736174657572205b25735d206e6520636f72726573706f6e642070617320e020696e74657276616c6c65206465206e6976656175207265717569732025732e, 'Y', '2013-11-20 15:59:34'),
(4615, 5, 0x496e74657276616c65206465206e697665617520286c65206e6976656175206465206c277574696c6973617465757220646f697420ea7472652064616e73206c27696e74657276616c6c65206465206e697665617520726571756973292c2065782e202232356b2d326422, 'Y', '2013-11-20 16:00:35'),
(5040, 5, 0x4c65206e6976656175206465206c277574696c69736174657572206e6520636f72726573706f6e642070617320e0206c27696e74657276616c6c65206465206e697665617520647520746f75726e6f69732e, 'Y', '2013-11-20 15:59:34'),
(4689, 5, 0x656e206c616e6775652028257329, 'Y', '2013-11-21 09:32:22'),
(1305, 5, 0x436f6d6d656e7420707569732d6a6520696e766974657220756e20616d6920706f757220756e6520706172746965203f, 'Y', '2013-11-21 09:33:27'),
(1877, 6, 0x44657361666f7274756e6164616d656e746520656c2035206465204665627265726f20646520323030392065737461206de17175696e6120706173f32061206d656a6f7220766964612c20706f72206c6f207175652068697a6f2066616c746120756e61206e7565766120736f6c756369f36e2e20412063616d62696f206465207065726d697469726e6f732075736172206e7565766f2068617264776172652c2061636f7264616d6f7320706167617220756e61207065717565f1612063756f7461202832303053454b2f6d65732c206170726f78696d6164616d656e7465203230802f6d6573292e20437265656d6f732071756520657320756e61206772616e206f666572746120706f722073752070617274652e, 'Y', '2013-11-21 09:57:16'),
(1878, 6, 0x506f72206573746f207465206573746f792070696469656e646f20756e61207065717565f16120646f6e616369f36e2c20702e656a2e203130206f203230206575726f732c20646520666f726d612071756520706f64616d6f7320636f6e74696e756172206d616e74656e69656e646f206573746f73207365727669646f7265732e0d0a3c2f62723e0d0a4375616c71756965722073756d612c20706f72207065717565f16120717565207365612c20736572e1206465206167726164656365722e0d0a3c2f62723e0d0a4e75657374726f206f626a657469766f206573206c6f6772617220737566696369656e74652064696e65726f20636f6d6f20706167617220656c20736572766963696f20706f7220616c206d656e6f7320332061f16f732e0d0a3c2f62723e0d0a53616c75646f7320636f726469616c65732c0d0a3c2f62723e0d0a456c2061646d696e6973747261646f7220646520444753, 'Y', '2013-11-21 09:57:16'),
(1887, 6, 0x5175657269646f7320616d616e7465732064656c20476f2c0d0a3c2f62723e0d0a447572616e7465206c6f7320fa6c74696d6f732061f16f7320286de17320646520372c2064657364652032303039292c20656c20447261676f6e20476f20536572766572206861207369646f2067656e74696c6d656e746520616c6f6a61646f20706f722053616d7572616a4461746120636f6d706c6574616d656e7465206772617469732e20457374616d6f732065787472616f7264696e617269616d656e7465206167726164656369646f7320706f722073752061706f796f2c207920656c20736572766963696f206f6672656369646f206861207369646f206573656e6369616c2070617261206e75657374726f20e97869746f2e0d0a3c2f62723e0d0a446573646520656c207072696e636970696f2c204447532068612069646f206372656369656e646f20646520666f726d6120636f6e74696e75612c207375706f6e69656e646f20636164612076657a20756e6f732072657175697369746f73206d61796f7265732070617261206e75657374726f73207365727669646f7265732e0d0a3c2f62723e0d0a456e206c6173204e61766964616465732064656c20323030372c2053616d7572616a44617461206e6f7320686162696c6974f320756e207365727669646f72206573706563ed666963616d656e74652070617261206e6f736f74726f732e, 'Y', '2013-11-21 09:57:16'),
(35, 40, 0x412073656e686120646520636f6e6669726d61e7e36f20657374e1206469666572656e74652064612073656e68612c20706f72206661766f7220766f6c746520652074656e7465206e6f76616d656e74652e, 'Y', '2013-11-24 11:15:50'),
(1213, 40, 0x42656d2076696e646f20616f2025732c20756d207365727669646f722025736c6976726525732070617261206a6f676172202573676f25732c206f6e6465206f73206a6f676f73202274656e64656d20612073657220696e66696e69746f73222e, 'Y', '2014-02-05 18:46:29'),
(1266, 40, 0x456c6520e920706172656369646f20636f6d206a6f67617220706f7220636f72726573706f6e64ea6e6369612c206d61732074656d20756d612070e167696e6120626f6e69746120706172612066617a6572206973736f20646520666f726d61206d6169732066e163696c2e205061726120636f6d65e761722061206a6f67617220766f63ea2070726563697361203c6120687265663d2272656769737465722e706870223e637269617220756d6120636f6e74613c2f613e2c20736520766f63ea2061696e6461206ee36f2074656d20756d612e204465706f697320646973736f20766f63ea20706f6465203c6120687265663d22656469745f70726f66696c652e706870223e656469746172207365752070657266696c3c2f613e206520636f6c6f63617220616c67756d61203c6120687265663d22656469745f62696f2e706870223e62696f6772616669613c2f613e2c20657370656369616c6d656e7465206e6f732063616d706f732027446973706f6eed76656c2070617261206e6f766f73206a6f676f73272c20274eed76656c2720652027496e666f2e206465206eed76656c27207175652073e36f20fa74656973207061726120616368617220626f6e7320616476657273e172696f732e2046696e616c6d656e74652c20766f63ea20706f646520766572206e6f737361203c6120687265663d2275736572732e706870223e6c6973746120646520757375e172696f733c2f613e206520636f6e766572736172206e6f73203c6120687265663d22666f72756d2f696e6465782e706870223e66f372756e733c2f613e207061726120656e636f6e74726172206f73206d656c686f72657320616476657273e172696f732070617261203c6120687265663d226d6573736167652e7068703f6d6f64653d496e76697465223e636f6e76696461722070726120756d6120706172746964613c2f613e2e, 'Y', '2013-11-24 12:56:25'),
(4619, 40, 0x496e74726f6475e7e36f, 'Y', '2013-11-24 11:42:07'),
(29, 40, 0x44657363756c70652c206973736f206ee36f20e9207065726d697469646f207061726120636f6e76696461646f732c20706f72206661766f72206372696520756d6120636f6e74612070726120766f63ea20616e7465732e, 'Y', '2013-11-24 12:56:25'),
(988, 40, 0x5175616e646f20766f63ea206372696120756d61206e6f766120636f6e74612c206f204447532070657267756e746120736520766f63ea206ae120706f7373756920756d206eed76656c20646520476f20656d206f7574726f206c756761722e20506f72206578656d706c6f2c20766f63ea20706f6465206a6f67617220656d206f7574726f207365727669646f7220646520476f206f75207061727469636970617220646520756d20636c75626520646520476f206f75206173736f636961e7e36f20646520476f206e6f20736575207061ed732e20566f63ea20706f646520636f6c6f6361722065737365206eed76656c20652c206261736561646f206e656c652c20766f63ea20746572e120756d206eed76656c20696e696369616c206e6f204447532e0d0a0d0a436f6d6f20616c7465726e61746976612c20766f63ea20706f6465206f6c686172206573736120746162656c61206465203c5f687474703a2f2f73656e736569732e786d702e6e65742f3f52616e6b576f726c6477696465436f6d70617269736f6e207c636f6d70617261e7e36f206d756e6469616c206465206eed766569733e2028656d20696e676cea7329206520636f6c6f6361722061717569206e6f20444753206f206571756976616c656e746520646f20736575206eed76656c20656d206f7574726f206c756761722e20566f63ea20706f64652075736172206e6f73736f203c686f6d652072616e6b5f636f6e7665727465722e7068703e636f6e766572736f72206465206eed76656c3c2f686f6d653e207061726120636f6e766572746572206eed7665697320646520476f206465206f7574726f73207365727669646f7265732070617261206f206eed76656c20636f72726573706f6e64656e7465206e6f204447532e0d0a0d0a4d617320736520766f63ea206ee36f20736f75626572206f20736575206eed76656c207175616e646f20766f63ea20657374e120637269616e646f20756d61206e6f766120636f6e74612c20204ec34f20434f4c4f515545204e414441206e6f732063616d706f7320736f62726520656c65206174e92071756520766f63ea206661e76120616c67756d617320636f69736173207265636f6d656e6461646173207061726120646573636f6272ed2d6c6f2e20456c65206ee36f20706f646520736572206d756461646f20666163696c6d656e7465206465706f69732071756520766f63ea206f20707265656e6368652c206520766f63ea20746572e120717565206573706572617220656c6520736520616a757374617220e0206d65646964612071756520666f72206a6f67616e646f2e, 'N', '2013-11-24 12:56:25'),
(1349, 40, 0x4578697374656d2064756173207369747561e7f565732e20536520766f63ea20636f6c6f636f7520756d20656e64657265e76f20646520656d61696c203c693e76e16c69646f3c2f693e206e612073756120636f6e74612c2076e1207061726120612070e167696e612064652061636573736f206520636c6971756520656d20223c686f6d6520666f72676f742e7068703e457371756563657520612073656e68613f3c2f686f6d653e222e204e657373612070e167696e6120766f63ea207072656369736172e120636f6c6f6361722073657520494420646520757375e172696f2065206f20447261676f6e2076616920656e7669617220756d61206d656e736167656d2070726120766f63ea20636f6d20756d61206e6f76612073656e6861206e6f20656e64657265e76f20766f63ea20746976657220636f6c6f6361646f2070617261206120636f6e74612e20416365737365206f2044475320636f6d2061206e6f76612073656e686120652061206d7564652e20506f72206661766f72206ee36f206573717565e76120656c61206465206e6f766f210d0a0d0a4e6120736567756e6461207369747561e7e36f2c206465206ee36f2074657220756d20656e64657265e76f20646520656d61696c20636f6c6f6361646f206e6120636f6e74612c20766f63ea20706f64652066617a6572206f2073656775696e74652070726f636564696d656e746f20656d657267656e6369616c3a2061636573736520636f6d6f20636f6e76696461646f2065206661e76120756d20223c656d3e70656469646f206465206e6f76612073656e68613c2f656d3e22206e6f203c686f6d6520666f72756d2f6c6973742e7068703f666f72756d3d323e46f372756d206465207375706f7274653c2f686f6d653e2c20666f726e6563656e646f2073657520494420646520757375e172696f20287573657269642920652074616d62e96d20756d20656e64657265e76f20646520656d61696c203c623e76e16c69646f3c2f623e2070617261206f207175616c2061206e6f76612073656e686120736572e120656e76696164612e0d0a44697363757373f56573206e6f732066f372756e732066656974617320706f7220636f6e76696461646f73206ee36f2073e36f206d6f737472616461732c20706f7271756520616e74657320656c61732074ea6d2071756520736572206c6964617320706f7220756d2061646d696e6973747261646f722064652066f372756d2e20556d20646f732061646d696e6973747261646f72657320646f20447261676f6e206972e120637269617220756d61206f757472612073656e686120706172612073756120636f6e74612c2065206120656e76696172e12070617261206f20656e64657265e76f20656c657472f46e69636f2071756520766f63ea20666f726e656365752e204973736f20706f64652064656d6f72617220646520616c67756d617320686f726173206174e92076e172696f7320646961732e20446570656e646520646f732061646d696e6973747261646f7265732063756964616e646f20646f20447261676f6e2e20456c657320706f64656d206ee36f206f6c686172206973736f20612063616461206d696e75746f2c2073652065786973746972206d61697320616c67756d6120636f697361207061726120656c65732066617a6572656d2e20203b290d0a0d0a5175616e646f20766f63ea20726563656265722061206d656e736167656d20636f6d2061206e6f76612073656e68612c20616365737365206f20447261676f6e2065206d756465207375612073656e686120696d6564696174616d656e74652c20636f6d6f206d6564696461206465207365677572616ee7612e204ee36f206573717565e76120656c612064657373612076657a2e203b2d290d0a0d0a536520766f63ea206ee36f20726563656265722061206e6f76612073656e68612c20612063726961e7e36f206465206f757472612073656e6861206e6f76612073f320706f64652073657220666569746120706f7220756d2061646d696e6973747261646f722e2054656e6861206375696461646f2070617261207573617220756d20656e64657265e76f2076e16c69646f2e0d0a0d0a436f6d6f20fa6c74696d6120736f6c75e7e36f2c20766f63ea20706f646520637269617220756d61206e6f766120636f6e74612e204d6173206973736f20e920756d6120636f6973612071756520766f63ea206ee36f20646576657269612066617a657220666163696c6d656e74652e, 'Y', '2013-11-24 12:56:25'),
(1753, 40, 0x3c757365722032353536323e20e920756d2070726f6772616d6120646520636f6d70757461646f72207265676973747261646f20636f6d6f20757375e172696f206e6f20447261676f6e2c206520636170617a206465206a6f676172206e6f726d616c6d656e746520636f6d207175616c7175657220756d20696e74657265737361646f2e20456c6520e9206d616e7469646f2070656c6f20757375e172696f203c757365722031393236353e2e204f203c757365722032353536323e20e9206261736561646f206e6f2070726f6772616d61203c687474703a2f2f7777772e676e752e6f72672f736f6674776172652f676e75676f2f207c474e5520476f3e2e, 'Y', '2013-11-24 13:15:23'),
(1756, 40, 0x44657363756c70652c20766f63ea206ee36f2074656d207065726d697373e36f207061726120637269617220756d61206e6f766120636f6e74612e2053657520656e64657265e76f20495020666f6920626c6f71756561646f2070656c6f732061646d696e6973747261646f7265732e, 'Y', '2013-11-24 13:15:23'),
(1757, 40, 0x5061726120637269617220756d61206e6f766120636f6e74612061706573617220646f20626c6f717565696f20646520656e64657265e76f2049502c20756d6120636f6e746120706f6465207365722063726961646120706f7220756d2061646d696e6973747261646f722e, 'Y', '2013-11-24 13:15:23'),
(2163, 40, 0x556d2070656469646f207061726120637269617220756d61206e6f766120636f6e746120666f6920656e766961646f2070617261206f732061646d696e6973747261646f7265732e204973736f20706f6465206c6576617220756d2074656d706f2e205365207475646f206573746976657220636572746f2c206f73206461646f7320646120636f6e7461206520612073656e68612073e36f20656e766961646f7320706172612073657520656d61696c2e, 'Y', '2013-11-24 13:15:23'),
(2164, 40, 0x4372696172206e6f766120636f6e7461207061726120757375e172696f7320636f6d20495020626c6f71756561646f, 'Y', '2013-11-24 13:15:23'),
(2764, 40, 0x536520766f63ea206163686120717565206f20626c6f717565696f206465204950206ee36f20e920706f72207375612063617573612c20706f72206661766f7220637269652073756120636f6e746120636f6d2061203c6120687265663d222573223e70e167696e6120616c7465726e617469766120646520726567697374726f3c2f613e2e, 'Y', '2013-11-24 13:15:23'),
(2767, 40, 0x566f63ea206ee36f20706f7373756920756d61203c6120687265663d222531247372656769737465722e706870223e636f6e74613c2f613e2c206f752061696e6461206ee36f2061636573736f752e, 'Y', '2013-11-24 13:17:38'),
(2795, 40, 0x44657363756c70652c20766f63ea206ee36f2074656d207065726d697373e36f207061726120656e7472617220656d20756d20746f726e65696f2e204973736f20666f6920626c6f71756561646f20706f722061646d696e6973747261646f7265732e, 'Y', '2013-11-24 13:15:23'),
(2805, 40, 0x44657363756c70652c20766f63ea206ee36f2074656d207065726d697373e36f207061726120656e74726172206e6573746520746f726e65696f2e, 'Y', '2014-02-20 16:40:53'),
(1555, 40, 0x43617465676f7269617320646f2073697374656d61, 'Y', '2013-11-24 13:49:42'),
(1556, 40, 0x43617465676f7269617320646f20757375e172696f, 'Y', '2013-11-24 13:50:32'),
(1558, 40, 0x43726961646f, 'Y', '2013-11-24 13:50:32'),
(2326, 40, 0x494420646f20766f746f, 'Y', '2013-11-24 13:50:32'),
(2327, 40, 0x5369747561e7e36f, 'Y', '2013-11-24 13:51:41'),
(2330, 40, 0xda6c74696d6f20766f746f, 'Y', '2013-11-24 13:51:41'),
(2335, 40, 0x506f6e746f73, 'Y', '2013-11-24 13:51:41'),
(2336, 40, '', 'Y', '2013-11-24 13:51:41'),
(2337, 40, '', 'Y', '2013-11-24 13:51:41'),
(2338, 40, '', 'Y', '2013-11-24 13:51:41'),
(2516, 40, 0x446566696e6972206f7264656d, 'Y', '2013-11-24 13:53:18'),
(2517, 40, 0x446566696e697220677275706f, 'Y', '2013-11-24 13:53:18'),
(2519, 40, 0x4a6f6761646f72, 'Y', '2013-11-24 13:53:18'),
(3106, 40, 0x44697363757373e36f, 'Y', '2013-11-24 13:53:18'),
(3107, 40, 0x5072696d65697261206d656e736167656d206e612064697363757373e36f, 'Y', '2013-11-24 13:53:18'),
(3224, 40, 0x466f746f, 'Y', '2014-01-26 13:41:56'),
(3226, 40, 0x557375e172696f20636f6e65637461646f, 'Y', '2013-11-24 13:53:18'),
(3228, 40, 0x4d6f646966696361646f, 'Y', '2013-11-24 13:53:18'),
(3259, 40, 0x4eed76656c, 'Y', '2013-11-24 13:57:21'),
(3297, 40, 0x436f6e7669646172, 'Y', '2013-11-24 13:57:21'),
(3298, 40, 0x4a6f676f7320646f20616476657273e172696f, 'Y', '2013-11-24 13:57:21'),
(3300, 40, 0x496e73637269746f, 'Y', '2014-02-20 16:40:53'),
(3358, 40, 0x494420646f206a6f676f, 'Y', '2013-11-24 13:57:21'),
(3360, 40, '', 'Y', '2013-11-24 13:57:21'),
(3361, 40, 0x4f627365727661646f726573, 'Y', '2014-01-25 11:57:28'),
(3362, 40, 0x4d657573, 'Y', '2013-12-07 12:55:15'),
(2677, 6, 0x416e6775696c61, 'Y', '2015-06-17 05:00:43'),
(3049, 6, 0x42fa6c6761726f, 'Y', '2015-06-16 18:28:44'),
(3366, 40, 0x56617269616e7465, 'Y', '2015-04-21 03:02:02'),
(3367, 40, 0x5265677261, 'Y', '2013-11-24 13:59:01'),
(3368, 40, 0x54656d706f2072657374616e7465, 'Y', '2014-01-24 23:49:39'),
(3369, 40, 0x54656d706f2072657374616e746520286164762e29, 'Y', '2014-01-24 23:10:09'),
(3443, 40, 0x41636569746f75, 'Y', '2013-11-24 13:59:01'),
(3446, 40, 0x5072696f726964616465, 'Y', '2013-11-24 14:00:53'),
(3451, 40, 0xda6c74696d61206d7564616ee761, 'Y', '2013-11-24 14:00:53'),
(3453, 40, 0x53756273746974756972, 'Y', '2013-11-24 14:00:53'),
(4533, 40, 0x5469706f, 'Y', '2015-04-21 03:03:03'),
(4534, 40, 0x4f70e7f56573, 'Y', '2013-11-24 14:00:53'),
(4535, 40, 0x526573747269e7f56573, 'Y', '2013-11-24 14:00:53'),
(4651, 40, 0x4d696e686120706f6e747561e7e36f, 'Y', '2013-11-24 14:02:06'),
(4702, 40, 0x496e64696361646f726573, 'Y', '2013-11-24 14:02:06'),
(4711, 40, 0x4175746f72, 'Y', '2013-11-24 14:02:06'),
(4712, 40, 0x5075626c696361646f, 'Y', '2013-11-24 14:03:34'),
(4713, 40, 0x56616c6964616465, 'Y', '2014-02-06 13:45:13'),
(4714, 40, 0x417475616c697a61646f, 'Y', '2013-11-24 14:03:34'),
(4718, 40, 0x54ed74756c6f, 'Y', '2013-11-24 14:03:34'),
(4724, 40, '', 'Y', '2013-11-24 14:05:18'),
(4805, 40, '', 'Y', '2013-11-24 14:05:18'),
(4806, 40, 0x506f7369e7e36f206d616e74696461, 'Y', '2014-02-22 23:55:15'),
(4809, 40, 0x4eed76656c20617475616c, 'Y', '2013-11-24 14:05:18'),
(4810, 40, 0x4eed76656c20646520526573756c7461646f, 'Y', '2014-01-30 22:16:24'),
(4811, 40, 0x4461746120646f20526573756c7461646f, 'Y', '2014-01-30 22:16:24'),
(4894, 40, '', 'Y', '2013-11-24 14:05:18'),
(4896, 40, 0x4eed76656c20646f20557375e172696f, 'Y', '2013-11-24 14:05:18'),
(4901, 40, 0x456469746172, 'Y', '2013-11-24 14:05:18'),
(4991, 40, 0x436f6d65e76f75, 'Y', '2013-11-24 14:22:20'),
(5009, 40, 0x44697265746f7220646f20746f726e65696f, 'Y', '2013-11-24 14:22:20'),
(5010, 40, 0x496e64696361646f7265732064652041646d696e6973747261e7e36f, 'Y', '2014-02-06 15:37:15'),
(5018, 40, 0x526f64616461, 'Y', '2014-02-14 00:24:29'),
(5026, 40, 0x5061727469636970616e746573, 'Y', '2014-02-14 01:12:06'),
(5027, 40, 0x496eed63696f, 'Y', '2013-12-06 09:23:21'),
(5028, 40, 0x486f72612064652074e9726d696e6f, 'Y', '2013-11-24 14:22:20'),
(5199, 40, '', 'Y', '2013-11-24 14:22:20'),
(5200, 40, 0x4f626a65746f, 'Y', '2013-11-24 14:22:20'),
(5201, 40, 0x41e7e36f, 'Y', '2013-11-24 14:22:20'),
(5202, 40, 0x4d656e736167656d, 'Y', '2013-11-24 14:23:56'),
(5203, 40, 0x446174612064612061e7e36f, 'Y', '2013-11-24 14:23:56'),
(5204, 40, 0x41e7e36f20646f20757375e172696f, 'Y', '2013-11-24 14:23:56'),
(5481, 40, 0x456d61696c, 'Y', '2014-01-19 20:26:58'),
(5482, 40, 0x54656e74617469766173, 'Y', '2013-11-24 14:23:56'),
(5602, 40, 0x4d657374726520646f206a6f676f, 'Y', '2013-11-24 14:23:56'),
(5665, 40, 0x536f6d61, 'Y', '2013-11-24 14:23:56'),
(5666, 40, 0x526f64616461202573, 'Y', '2014-02-14 00:24:44'),
(5693, 40, 0x6f752064652066e972696173, 'Y', '2013-11-24 14:23:56'),
(3385, 40, 0x4d657573206a6f676f7320617475616973, 'Y', '2013-11-24 14:35:33'),
(3389, 40, '', 'Y', '2013-11-24 14:35:33'),
(3386, 40, 0x4d657573206a6f676f73207465726d696e61646f73, 'Y', '2013-11-24 14:38:13'),
(3390, 40, '', 'Y', '2013-11-24 14:38:13'),
(5705, 40, 0x4d657573206a6f676f7320646520746f726e65696f207465726d696e61646f73, 'Y', '2013-11-24 14:38:13'),
(3371, 40, 0x4a6f676f7320717565206f62736572766f, 'Y', '2013-11-24 14:40:01'),
(3388, 40, 0x4d65757320746f726e65696f73, 'Y', '2013-11-24 14:41:20'),
(4180, 40, 0x4d65757320746f726e65696f7320636f6d6f207061727469636970616e7465, 'Y', '2013-11-24 14:41:20'),
(4181, 40, 0x4d65757320746f726e65696f7320636f6d6f2064697265746f72, 'Y', '2013-11-24 14:41:20'),
(5698, 40, 0x4d657520506170656c206e6f204a6f676f20646520546f726e65696f, 'Y', '2014-02-16 10:02:45'),
(3440, 40, 0x5369747561e7e36f20646520253124733a2025322473, 'Y', '2013-11-24 14:43:34'),
(994, 40, 0x566f63ea203c693e73656d7072653c2f693e20706f64652066617a657220756d61206a6f67616461206e61207375612076657a202d2d206d65736d6f206e617320686f7261732064652064657363616e736f2c206e61732066e972696173206f75206e6f732066696e732064652073656d616e612e, 'Y', '2013-11-24 14:48:24'),
(1361, 40, 0x5465726d6f206a61706f6eea73206e6f20476f2071756520646566696e652061207369747561e7e36f20646520756d20656d706174653a20616d626f73206a6f6761646f7265732074ea6d206f206d65736d6f206efa6d65726f20646520706f6e746f732e, 'Y', '2013-11-24 15:01:05'),
(2914, 40, 0x6a61706f6e657361, 'Y', '2013-11-24 15:01:05'),
(3019, 40, 0x6a61706f6e657361, 'Y', '2013-11-24 15:01:05'),
(3128, 40, 0x4eed76656c206a61706f6eea73, 'Y', '2013-11-25 11:09:54'),
(5525, 40, 0x506572ed6f646f7320657874726120696e76e16c69646f7320706172612062796f796f6d69206a61706f6eea73, 'Y', '2013-11-24 15:01:05'),
(3414, 40, 0x4d657573206a6f676f73206176616c6961646f73, 'Y', '2013-11-24 15:09:04'),
(5546, 40, 0x4f20757375e172696f206ee36f207465726d696e6f75206a6f676f73206176616c6961646f7320737566696369656e746573, 'Y', '2013-11-24 15:09:04'),
(3101, 40, 0x4176616c6961646f735b25735d, 'Y', '2013-12-07 13:13:58'),
(2524, 40, 0x41646963696f6e6172206e6f766f206a6f676f206e612073616c6120646520657370657261, 'Y', '2013-11-24 15:20:11'),
(2909, 40, 0x4e6f766f204a6f676f, 'Y', '2013-11-24 15:20:11'),
(2911, 40, 0x436f7069617220636f6d6f20756d206e6f766f206a6f676f, 'Y', '2013-11-24 15:20:11'),
(3156, 40, 0x4e6f766f204a6f676f, 'Y', '2013-11-24 15:20:11'),
(3264, 40, 0x41646963696f6e6172206e6f766f206a6f676f, 'Y', '2013-11-24 15:20:11'),
(3265, 40, 0x41646963696f6e6172206e6f766f206a6f676f206e612073616c6120646520657370657261, 'Y', '2013-11-24 15:21:34'),
(5584, 40, 0x4d6f7374726172206e6f766f73206a6f676f73206465206f7574726f73206a6f6761646f726573, 'Y', '2013-11-24 15:21:34'),
(3119, 40, 0x64, 'Y', '2013-11-25 23:48:50'),
(3120, 40, 0x6b, 'Y', '2013-11-25 23:48:50'),
(573, 40, 0x5175616973206173206d7564616ee7617320726563656e746573206e6f204641513f, 'Y', '2013-11-24 16:52:51'),
(621, 40, 0x4d6f737472617220746f646f206f2046415120656d20756d612070e167696e61, 'Y', '2013-11-24 16:52:51'),
(979, 40, 0x546f646f73206f732070726f626c656d61732073e36f2064697363757469646f73206e6f204641513f, 'Y', '2013-11-24 16:52:51'),
(1326, 40, 0x436f6d6f2065752070726f6375726f206e612070e167696e6120646520416a756461202f204641513f, 'Y', '2013-11-24 16:52:51'),
(1779, 40, 0x456469746f72657320646f20464151, 'Y', '2013-11-24 16:55:08'),
(1922, 40, 0x70617261206d61697320646574616c6865732076656a61206f204641513a, 'Y', '2013-11-24 16:55:08'),
(2267, 40, 0x4e61646120666f6920656e636f6e747261646f206e6f204641512e, 'Y', '2013-11-24 16:55:08'),
(3155, 40, 0x416a756461202f20464151, 'Y', '2013-11-24 16:55:08'),
(5257, 40, 0xcd636f6e657320646f20456469746f722d646f2d464151, 'Y', '2013-11-24 16:55:08'),
(5582, 40, 0x4d6f7374726120706f6ced746963612064652075736f2c206e6f746173206465206c616ee7616d656e746f2c206c696e6b732c206372e96469746f732c2066657272616d656e7461732c2063f36469676f20666f6e74652c206c6963656ee761, 'Y', '2013-12-01 00:37:27'),
(1328, 40, 0x436f6d6f20706573717569736172206e6f732066f372756e733f, 'Y', '2013-11-24 17:09:08'),
(1354, 40, 0x5175616973206f73206974656e73206e612070e167696e6120646f732066f372756e733f, 'Y', '2013-11-24 17:09:08'),
(1529, 40, 0x52656c6576e26e63696120646f207465726d6f, 'Y', '2013-11-24 17:09:08'),
(1732, 40, 0x446174612064652063726961e7e36f20286e6f766173207072696d6569726f29, 'Y', '2013-12-08 09:42:17'),
(1733, 40, 0x446174612064652063726961e7e36f202876656c686173207072696d6569726f29, 'Y', '2013-12-08 09:42:17'),
(1734, 40, 0x44617461206465206d6f646966696361e7e36f20286e6f766f73207072696d6569726f29, 'Y', '2013-11-24 17:11:19'),
(1735, 40, 0x44617461206465206d6f646966696361e7e36f202876656c686f73207072696d6569726f29, 'Y', '2013-11-24 17:11:19'),
(5262, 40, 0x436f6d6f20706f73736f20637269617220756d20746162756c6569726f20646f206a6f676f206e6f732066f372756e73206f75206d656e736167656e733f, 'Y', '2013-11-24 17:11:19'),
(5589, 40, 0x4d6f73747261722066f372756e73206465207375706f72746520652064697363757373e36f, 'Y', '2015-12-09 01:45:44'),
(5590, 40, 0x6d6f73747261722066f372756e7320636f6d206e6f766173206d656e736167656e73, 'Y', '2013-11-24 17:11:19'),
(622, 40, 0x546f726e65696f7320646f20447261676f6e, 'Y', '2013-11-24 17:17:53'),
(625, 40, 0x4578697374656d20746f726e65696f73206d616e7469646f73206469726574616d656e74652070656c6f20447261676f6e3f, 'Y', '2013-11-24 17:17:53'),
(2992, 40, 0x546f726e65696f73, 'Y', '2013-11-24 17:17:53'),
(3620, 40, 0x4f2041646d696e6973747261646f7220646f20546f726e65696f20706f64652066617a6572207175616c71756572206d7564616ee7612064652065737461646f20652072657374617572617220746f726e65696f732e, 'Y', '2013-11-24 17:36:46'),
(4612, 40, 0x546f646f73206f7320746f726e65696f73, 'Y', '2013-11-24 17:36:46'),
(5040, 40, 0x4eed76656c20646f20757375e172696f20657374e120666f726120646f73206c696d6974657320646573746520746f726e65696f2e, 'Y', '2016-08-06 20:54:30'),
(5042, 40, 0x5465726d696e6f75206f20706572ed6f646f207061726120656e74726172206e6573746520746f726e65696f2e, 'Y', '2016-08-06 20:55:58'),
(5045, 40, 0x546f726e65696f732070726976617469766f732073e36f20736f6d656e7465207061726120636f6e76696461646f732e, 'Y', '2013-11-24 17:36:46'),
(1964, 40, 0x546f646f73206f7320626f6c6574696e73, 'Y', '2013-11-24 17:44:47'),
(2172, 40, 0x4d65757320426f6c6574696e73, 'Y', '2014-01-31 09:18:07'),
(3157, 40, 0x426f6c6574696e732028656d20696e676cea7329, 'Y', '2014-02-04 01:40:18'),
(3215, 40, 0x4d65757320426f6c6574696e73, 'Y', '2013-11-24 17:44:47'),
(3223, 40, 0x426f6c6574696e73206ee36f206c69646f73, 'Y', '2013-11-24 17:44:47'),
(3351, 40, 0x4e656e68756d206e6f766f20626f6c6574696d, 'Y', '2013-11-24 17:44:47'),
(3421, 40, 0x426f6c6574696e73206ee36f206c69646f7320286d6f737472617220636f6d20746578746f29, 'Y', '2013-11-24 17:44:47'),
(3441, 40, 0x4d656e736167656d20646f204469612028626f6c6574696e73206ee36f206c69646f7329, 'Y', '2013-11-24 17:44:47'),
(3442, 40, 0x4d6f737472617220746f646f73206f73202825732920626f6c6574696e73206ee36f206c69646f73, 'Y', '2013-11-24 17:46:11'),
(5285, 40, 0x4f207175652073e36f20626f6c6574696e733f, 'Y', '2013-11-24 17:46:11'),
(2287, 40, 0x566f74617220656d2066756e63696f6e616c696461646573, 'Y', '2013-11-24 17:53:02'),
(2304, 40, 0x46756e63696f6e616c6964616465732073f320706f64656d207365722061646963696f6e61646173206e65737361206c6973746120706f7220756d2061646d696e6973747261646f722064652066756e63696f6e616c6964616465732e, 'Y', '2013-11-24 17:53:02'),
(2319, 40, 0x566f63ea2074656d20257320706f6e746f7320646973706f6eed76656973207061726120766f74617220656d2066756e63696f6e616c6964616465732e, 'Y', '2013-11-24 17:53:02'),
(2331, 40, 0x46756e63696f6e616c696461646573207061726120766f7461e7e36f, 'Y', '2013-11-24 17:53:02'),
(2822, 40, 0x44657363756c70652c20766f63ea206ee36f2074656d207065726d697373e36f20706172612061646963696f6e61722c20656469746172206f75206170616761722066756e63696f6e616c6964616465732e, 'Y', '2013-11-24 17:53:02'),
(3158, 40, 0x4d656c686f726961732028656d20696e676cea7329, 'Y', '2014-02-04 01:58:29'),
(4046, 40, 0x557365206f2076616c6f72202230222070617261206465736162696c697461722066756e63696f6e616c69646164657321, 'Y', '2013-11-24 18:05:37'),
(4608, 40, 0x546f6461732061732066756e63696f6e616c696461646573, 'Y', '2013-11-24 18:05:37'),
(5278, 40, 0x46756e63696f6e616c69646164657320646120636f6d756e696461646520646f20447261676f6e, 'Y', '2013-11-24 18:05:37'),
(5592, 40, 0x766f74617220656d206e6f7661732066756e63696f6e616c696461646573, 'Y', '2013-11-24 18:05:37'),
(2377, 40, 0x456469746f7220646520676f62616e, 'Y', '2013-11-24 20:54:30'),
(5593, 40, 0x56657273e36f, 'Y', '2014-08-06 18:26:36'),
(715, 40, 0x486f72e172696f2064612070e167696e61, 'Y', '2013-11-24 18:10:46'),
(1716, 40, 0x5175616c20e9206d696e686120636f74612064652061636573736f7320646520757375e172696f3f, 'Y', '2013-11-24 18:13:42'),
(1923, 40, 0x436f7461, 'Y', '2013-11-24 18:13:42'),
(1929, 40, 0x53756120636f74612064652061636573736f7320657374e1207465726d696e616e646f213c62723e566f63ea2074656d206170656e6173206d6169732025732061636573736f7320616e7465732064652073657220626c6f71756561646f20706f72202573202121, 'Y', '2013-11-24 18:13:42'),
(1930, 40, 0x53756120636f74612064652061636573736f7320616361626f752e, 'Y', '2013-11-24 18:13:42'),
(732, 40, 0x446961732064652066e972696173206e6f206d6f6d656e746f, 'Y', '2013-11-24 18:17:45'),
(736, 40, 0x566974f372696173, 'Y', '2013-11-24 18:19:24'),
(3415, 40, 0x4d657573206a6f676f73207669746f72696f736f73, 'Y', '2013-11-24 18:19:24'),
(599, 40, 0x5175616c206675736f20686f72e172696f20e920757361646f2070617261206d657520706572ed6f646f20646520736f6e6f3f, 'Y', '2013-11-24 18:22:35'),
(600, 40, 0x4f20447261676f6e20757361206f20736575206675736f20686f72e172696f2028636f6d20686f72e172696f20646520766572e36f292c20636f6e666967757261646f20706f7220766f63ea206d65736d6f206e6f20736575203c686f6d6520656469745f70726f66696c652e7068703e70657266696c20646520757375e172696f3c2f686f6d653e2e, 'Y', '2013-11-24 18:22:35'),
(4493, 40, 0x4675736f20686f72e172696f, 'Y', '2013-11-24 18:22:35'),
(4494, 40, 0x486f72e172696f206c6f63616c20646f20757375e172696f, 'Y', '2013-11-24 18:23:30'),
(737, 40, 0x446572726f746173, 'Y', '2013-11-24 18:25:21'),
(3416, 40, 0x4d657573206a6f676f73207065726469646f73, 'Y', '2013-11-24 18:25:21'),
(2192, 40, 0x52656a656974617220766974f37269617320706f722074656d706f, 'Y', '2013-11-24 18:27:03'),
(3190, 40, 0x50e167696e61202573206465202573, 'Y', '2013-11-24 18:28:53'),
(61, 40, 0x44657363756c70652c20766f63ea206ee36f2074656d207065726d697373e36f20706172612074726164757a6972206e65737361206ced6e6775612e, 'Y', '2013-11-24 18:33:06'),
(1051, 40, 0x44657363756c70652c206575206ee36f20636f6e736567756920656e636f6e747261722061206ced6e677561206f7520677275706f2071756520766f63ea20717565722074726164757a69722e20506f72206661766f7220636f6e74617465206f207375706f7274652e, 'Y', '2013-11-24 18:33:06'),
(4925, 40, 0x4e656e68756d61206d7564616ee76121, 'Y', '2013-11-24 18:34:22'),
(1569, 40, 0xda6c74696d61206d7564616ee761, 'Y', '2013-11-24 18:35:23'),
(2266, 40, 0x627573636172206170656e6173206e6f20464151206f726967696e616c20656d20696e676cea7320286e6f206361736f206465207365e7f56573206ee36f2074726164757a6964617329, 'Y', '2013-11-24 18:37:14'),
(3147, 40, 0x4661766f7269746f73, 'Y', '2013-11-24 18:42:05'),
(5236, 40, 0x4f207175652073e36f206f73204661766f7269746f733f, 'Y', '2014-01-26 22:20:20'),
(2209, 40, 0x4eed76656c20617475616c697a61646f21, 'Y', '2013-11-24 18:43:37'),
(2382, 40, 0x4d656e736167656d20617475616c697a61646121, 'Y', '2013-11-24 18:43:37'),
(2556, 40, 0x477275706f7320617475616c697a61646f7321, 'Y', '2013-11-24 18:43:37'),
(3148, 40, 0xda6c74696d6173206d656e736167656e73206e6f732066f372756e73, 'Y', '2013-11-24 18:48:39'),
(3149, 40, 0x416476657273e172696f7320636f6e65637461646f73, 'Y', '2013-11-24 18:49:50'),
(3150, 40, 0x557375e172696f7320636f6e65637461646f73, 'Y', '2013-11-24 18:50:31'),
(4605, 40, 0x557375e172696f7320636f6e65637461646f7320656d2025732073656d616e6173, 'Y', '2013-11-24 18:50:31'),
(3152, 40, 0x45646974617220636f6e666967757261e7f56573, 'Y', '2014-02-01 23:07:00'),
(730, 40, 0x4564697461722066e972696173, 'Y', '2013-11-24 18:58:07'),
(3151, 40, 0x4564697461722066e972696173, 'Y', '2013-12-08 12:20:34'),
(5412, 40, 0x416e6578617220534746, 'Y', '2013-11-24 19:11:40');
INSERT INTO `Translations` (`Original_ID`, `Language_ID`, `Text`, `Translated`, `Updated`) VALUES
(5422, 40, 0x4578697374656d2025732053474673206465206a6f676f20616e657861646f732070617261206261697861722e, 'Y', '2013-11-24 19:11:40'),
(5423, 40, 0x4f206a6f676f2074656d205347467320616e657861646f732e, 'Y', '2013-11-30 00:05:22'),
(5437, 40, 0x426169786172206f20534746206465206a6f676f20616e657861646f, 'Y', '2013-11-24 19:11:40'),
(5438, 40, 0x476572656e636961722053474673206465206a6f676f20616e657861646f73, 'Y', '2013-11-24 19:11:40'),
(5444, 40, 0x5347467320616e657861646f73, 'Y', '2013-11-24 19:11:40'),
(5445, 40, 0x4e656e68756d20616e65786f205347462061726d617a656e61646f, 'Y', '2013-11-24 19:11:40'),
(5449, 40, 0x53474620616e657861646f, 'Y', '2013-11-24 19:11:40'),
(5451, 40, 0x546f646f73206f73206a6f676f73207465726d696e61646f7320636f6d205347467320616e657861646f732028636f6d656e74e172696f7329, 'Y', '2013-11-24 19:11:40'),
(5456, 40, 0x436f6d6f20657520706f73736f20616368617220636f6d656e74e172696f73206465206a6f676f2028534746732920616e657861646f732061206a6f676f733f, 'Y', '2013-11-24 19:27:25'),
(2361, 40, 0x2573206c696e686173, 'Y', '2013-11-24 21:02:00'),
(3188, 40, 0x282573206c696e68617329, 'Y', '2013-11-24 21:02:00'),
(2059, 40, 0x416c7465726172206eed76656c20646520686162696c6964616465, 'Y', '2014-01-26 17:13:21'),
(2211, 40, 0x4d75646172206eed76656c206e6f2044475320286f20224447532d726174696e672229206520617320696e666f726d61e7f5657320646f20736575206eed76656c, 'Y', '2014-02-20 18:42:52'),
(2212, 40, 0x557375e172696f, 'Y', '2013-11-25 11:05:34'),
(3304, 40, 0x4d6f737472617220757375e172696f73, 'Y', '2013-11-25 11:06:59'),
(3432, 40, 0x546f646f73206f7320757375e172696f73, 'Y', '2013-11-25 11:06:59'),
(3472, 40, 0x4578616d696e617220757375e172696f, 'Y', '2013-11-25 11:06:59'),
(3506, 40, 0x45646974617220757375e172696f, 'Y', '2013-11-25 11:06:59'),
(3537, 40, 0x41646d696e6973747261646f72, 'Y', '2013-11-25 11:06:59'),
(4653, 40, 0x4c6973746120646520757375e172696f73, 'Y', '2013-11-25 11:06:59'),
(4768, 40, 0x4a6f676f732d64652d557375e172696f, 'Y', '2013-11-25 11:07:47'),
(5247, 40, 0xcd636f6e657320646520757375e172696f, 'Y', '2013-11-25 11:07:47'),
(3114, 40, 0x56656a612074616d62e96d, 'Y', '2013-11-25 11:08:16'),
(3122, 40, 0x4eed76656c20447261676f6e, 'Y', '2013-11-25 11:21:20'),
(3123, 40, 0x486162696c696461646520447261676f6e, 'Y', '2013-11-25 11:21:20'),
(3124, 40, 0x4eed76656c204575726f202845474629, 'Y', '2013-11-25 11:21:20'),
(3125, 40, 0x486162696c6964616465204575726f202845474629, 'Y', '2013-11-25 11:21:20'),
(3126, 40, 0x4eed76656c20414741, 'Y', '2013-11-25 11:21:20'),
(3127, 40, 0x486162696c696461646520414741, 'Y', '2013-11-25 11:21:20'),
(3129, 40, 0x4eed76656c206368696eea73, 'Y', '2013-11-25 11:11:23'),
(3130, 40, 0x4eed76656c20636f7265616e6f, 'Y', '2013-11-25 11:11:23'),
(3131, 40, 0x4eed76656c204b4753, 'Y', '2013-11-25 11:11:23'),
(3132, 40, 0x4eed76656c20494753, 'Y', '2013-11-25 11:12:36'),
(3133, 40, 0x4eed76656c204f4753, 'Y', '2013-11-25 11:12:36'),
(3134, 40, 0x486162696c6964616465204f4753, 'Y', '2013-11-25 11:12:36'),
(3135, 40, 0x4eed76656c204649434753, 'Y', '2013-11-25 11:12:36'),
(3136, 40, 0x4eed76656c20495954, 'Y', '2013-11-25 11:12:36'),
(3137, 40, 0x4eed76656c20547967656d, 'Y', '2013-11-25 11:12:36'),
(3138, 40, 0x4eed76656c2057426164756b, 'Y', '2013-11-25 11:12:36'),
(2055, 40, 0x53616c766172206d7564616ee76173, 'Y', '2013-11-25 11:17:50'),
(1258, 40, 0x4175746f72, 'Y', '2013-11-25 11:53:22'),
(1536, 40, 0x4175746f722028494420646520757375e172696f29, 'Y', '2013-11-25 11:53:22'),
(1938, 40, 0x4175746f7220646f20426f6c6574696d, 'Y', '2013-11-25 11:53:22'),
(2375, 40, 0x4f63756c746172206175746f72, 'Y', '2013-11-25 11:53:22'),
(2376, 40, 0x4d6f7374726172206175746f72, 'Y', '2013-11-25 11:53:22'),
(3343, 40, 0x4465, 'Y', '2013-11-25 11:53:58'),
(470, 40, 0x6368696eea732028747261646963696f6e616c29, 'Y', '2013-12-08 09:47:22'),
(472, 40, 0x6368696eea73202873696d706c6966696361646f29, 'Y', '2013-12-08 09:47:22'),
(1035, 40, 0x6368696eea73202873696d706c6966696361646f2920287574662d3829, 'Y', '2013-12-08 10:26:28'),
(1279, 40, 0x6368696eea732028747261646963696f6e616c2920287574662d3829, 'Y', '2013-12-08 10:33:51'),
(2915, 40, 0x6368696e657361, 'Y', '2013-11-25 17:56:07'),
(3012, 40, 0x6368696eea7320286d616e646172696d29, 'Y', '2013-11-25 17:56:07'),
(1521, 40, 0x4d6f7374726172206c696e686173, 'Y', '2013-11-25 18:59:33'),
(2459, 40, 0x4d6f7374726172206a6f676f, 'Y', '2013-11-25 18:59:33'),
(3217, 40, 0x4d6f737472617220746578746f73, 'Y', '2013-11-25 18:59:33'),
(4624, 40, 0x6d6f7374726172, 'Y', '2013-11-25 18:59:33'),
(1463, 40, 0x4d6f7374726172206772e16669636f206465206eed76656c, 'Y', '2013-11-25 19:00:09'),
(1464, 40, 0x4d6f737472617220616476657273e172696f73, 'Y', '2013-11-25 19:00:57'),
(1553, 40, 0x4d6f737472617220636f6e7461746f73, 'Y', '2013-11-25 19:00:57'),
(1572, 40, 0x4d6f73747261722061206d696d20636f6d6f20616476657273e172696f, 'Y', '2013-11-25 19:00:57'),
(1573, 40, 0x4d6f737472617220636f6d6f206d657520616476657273e172696f, 'Y', '2013-11-25 19:00:57'),
(1772, 40, 0x4d6f7374726172206c6f6720646f2066f372756d, 'Y', '2013-11-25 19:00:57'),
(2350, 40, 0x4d6f73747261722070e167696e612064652061636573736f, 'Y', '2014-02-05 20:13:06'),
(2380, 40, 0x4d6f7374726172204c696e686173, 'Y', '2013-11-25 19:01:29'),
(2427, 40, 0x4d6f737472617220636f6e76697465, 'Y', '2013-11-25 19:01:29'),
(2971, 40, 0x4d6f7374726172, 'Y', '2013-11-25 19:02:31'),
(3153, 40, 0x4d6f7374726172, 'Y', '2013-11-25 19:02:31'),
(3261, 40, 0x4d6f737472617220746578746f20646173206d656e736167656e73, 'Y', '2013-11-25 19:02:31'),
(3409, 40, 0x4d6f7374726172206d65757320636f6e7461746f73, 'Y', '2013-11-25 19:04:04'),
(3418, 40, 0x4d6f73747261722070657266696c, 'Y', '2014-01-26 14:17:05'),
(3508, 40, 0x4d6f737472617220757375e172696f2070656c6f204944, 'Y', '2013-11-25 19:04:04'),
(3839, 40, 0x4d6f7374726172, 'Y', '2013-11-25 19:04:39'),
(5220, 40, 0x4d6f737472617220746f646173206173206d656e736167656e73, 'Y', '2013-11-25 19:04:39'),
(5714, 40, 0x4d6f7374726172206d7564616ee76173206465206eed76656c, 'Y', '2013-11-25 19:04:39'),
(5522, 40, 0x4f20757375e172696f206ee36f2074656d206eed76656c206176616c6961646f, 'Y', '2014-02-07 01:28:43'),
(3089, 40, 0x436f6e666967757261e7e36f206d616e75616c, 'Y', '2013-11-25 19:07:09'),
(3056, 40, 0x436f6e666967757261e7e36f206d616e75616c20286a6f676f20657175696c69627261646f206f7520636f6d2076616e746167656d29, 'Y', '2013-11-25 19:07:58'),
(967, 40, 0x4f6e646520736572e36f20636f6c6f63616461732028706f722070616472e36f29206173207065647261732064652076616e746167656d3f, 'Y', '2013-11-25 19:11:14'),
(2895, 40, 0x436f6c6f6361e7e36f20646173207065647261732064652076616e746167656d, 'Y', '2013-11-25 19:11:14'),
(3058, 40, 0x5065647261732064652076616e746167656d, 'Y', '2013-11-25 19:11:14'),
(5535, 40, 0x757361206f206b6f6d692070616472e36f3a, 'Y', '2013-11-25 19:13:13'),
(5682, 40, 0x4d696e686120636f72, 'Y', '2013-11-25 19:14:08'),
(5531, 40, 0x636f6e666967757261e7f565732070616472e36f, 'Y', '2013-11-25 19:15:57'),
(2921, 40, 0x286f7063696f6e616c29, 'Y', '2013-11-25 19:17:06'),
(2920, 40, 0x4ded6e696d6f206465206a6f676f73206176616c6961646f73207465726d696e61646f73, 'Y', '2013-12-07 13:12:09'),
(3102, 40, 0x4a6f676f73206176616c6961646f73207465726d696e61646f735b2667743b3d25735d, 'Y', '2013-12-07 13:13:58'),
(2922, 40, 0x41636569746172206f206d65736d6f20616476657273e172696f, 'Y', '2013-11-25 19:20:01'),
(3251, 40, 0x53616c766172206d6f64656c6f, 'Y', '2013-11-25 19:20:38'),
(2906, 40, 0x4d6f64656c6f73, 'Y', '2013-11-25 19:21:08'),
(1518, 40, 0x50617261, 'Y', '2013-11-25 19:39:41'),
(3031, 40, 0x4573706572616e746f, 'Y', '2013-11-25 19:38:50'),
(1624, 40, 0x686f726173, 'Y', '2014-02-11 14:09:13'),
(3154, 40, 0x456e74726172, 'Y', '2014-03-20 03:26:15'),
(5228, 40, 0x4a6f676f732d6dfa6c7469706c6f7320656d2070726f67726573736f, 'Y', '2014-01-26 14:14:09'),
(2362, 40, 0x4d6172636172207475646f206c69646f, 'Y', '2013-11-26 00:19:03'),
(1254, 40, 0x4d656e736167656e7320636f6d206170726f7661e7e36f2070656e64656e7465, 'Y', '2013-11-26 00:21:20'),
(1259, 40, 0x4d736773, 'Y', '2013-11-26 00:21:20'),
(2385, 40, 0x4d656e736167656e732064612064697363757373e36f, 'Y', '2013-12-01 12:47:19'),
(2393, 40, 0x4d6f7374726172206d656e736167656e73206f63756c746173, 'Y', '2013-11-26 00:21:20'),
(1260, 40, 0xda6c74696d61206d73672e, 'Y', '2013-11-26 00:36:42'),
(1257, 40, 0x44697363757373e36f, 'Y', '2013-11-26 00:24:00'),
(2379, 40, 0x4efa6d65726f2064652064697363757373f56573, 'Y', '2013-11-26 00:24:00'),
(4587, 40, 0x2573206c65697475726173, 'Y', '2013-11-26 00:28:12'),
(4690, 40, 0x416e74696761207072696d6569726f, 'Y', '2013-11-26 00:28:12'),
(4691, 40, 0x4e6f7661207072696d6569726f, 'Y', '2013-11-26 00:28:12'),
(1736, 40, 0x4efa6d65726f206465206c65697475726173, 'Y', '2013-11-26 00:34:48'),
(1941, 40, 0x4c6569747572617320286d61726361e7f5657329, 'Y', '2014-01-31 09:33:32'),
(2378, 40, 0x4c696461, 'Y', '2013-11-26 00:34:48'),
(3209, 40, 0x4c69646f, 'Y', '2013-11-26 00:34:48'),
(484, 40, 0x6a616e, 'Y', '2013-11-26 00:42:24'),
(5538, 40, 0x416a7573746573207175652073f32076616c656d20706172612076616e746167656d20636f6e76656e63696f6e616c206f75207072f37072696121, 'Y', '2013-11-26 01:14:42'),
(5539, 40, 0x416a7573746520646173207065647261732064652076616e746167656d, 'Y', '2013-11-26 01:15:32'),
(5540, 40, 0x416a7573746573206465206b6f6d69, 'Y', '2014-01-25 09:38:57'),
(3059, 40, 0x416a757374617220636f6d, 'Y', '2013-11-26 01:17:22'),
(3062, 40, 0x416a757374617220656d, 'Y', '2013-11-26 01:17:22'),
(4539, 40, 0x2856616e746167656d206c6976726529, 'Y', '2013-11-26 01:22:11'),
(5183, 40, 0x616a75737461646f20636f6d202573207065647261287329, 'Y', '2013-11-26 01:22:11'),
(5529, 40, 0x4de1782e2070616472e36f, 'Y', '2013-11-26 01:22:11'),
(5530, 40, 0x286f2070616472e36f20e9202573206e6f2074616d616e686f20257329, 'Y', '2015-08-05 00:11:02'),
(5527, 40, 0x50616472e36f, 'Y', '2013-11-26 01:24:30'),
(5532, 40, 0x50616472e36f, 'Y', '2013-11-26 01:24:30'),
(3060, 40, 0x4ded6e2e, 'Y', '2013-11-26 01:25:26'),
(2280, 40, 0x286de1782e20323535206c657472617329, 'Y', '2013-11-26 01:26:30'),
(3061, 40, 0x4de1782e, 'Y', '2013-11-26 01:26:30'),
(3067, 40, 0x6675736f2d686f72e172696f20555443, 'Y', '2013-11-26 01:31:41'),
(1388, 5, 0x466f6e6374696f6e6e616c6974e9732065742072657175ea746573206175787175656c732072ea76656e74206c6573207574696c697361746575727320646520444753, 'Y', '2013-11-26 16:35:04'),
(1767, 5, 0x44e9736f6ce92c20766f7573206e27ea74657320706173206175746f726973e920e020e9646974657220766f7472652062696f677261706869652e20436574746520666f6e6374696f6e6e616c6974e9206120e974e920626c6f7175e920706172206c65732061646d696e697374726174657572732e, 'Y', '2013-11-26 16:36:12'),
(2269, 5, 0x466f6e6374696f6e6e616c6974e9207265746972e96521, 'Y', '2013-11-26 16:37:28'),
(2271, 5, 0x466f6e6374696f6e6e616c6974e920656e72656769737472e921, 'Y', '2013-11-26 16:37:28'),
(2268, 5, 0x53756a6574206f7520666f6e6374696f6e6e616c6974e9206d616e7175616e7465, 'Y', '2013-11-26 16:39:28'),
(2270, 5, 0x466f6e6374696f6e6e616c6974e920656e72656769737472e92120257320706f696e747320646520666f6e6374696f6e6e616c6974e9732072656d69732061757820766f74616e74732e, 'Y', '2013-11-26 16:39:28'),
(2272, 5, 0x466f6e6374696f6e6e616c6974e9206566666163e965, 'Y', '2013-11-26 16:39:28'),
(2287, 5, 0x566f74657a20706f7572206c657320666f6e6374696f6e6e616c6974e973, 'Y', '2013-11-26 16:40:33'),
(3158, 5, 0x466f6e6374696f6e6e616c6974e973, 'Y', '2013-11-26 16:40:33'),
(4608, 5, 0x546f75746573206c657320666f6e6374696f6e6e616c6974e973, 'Y', '2013-11-26 16:40:33'),
(1442, 5, 0x4761676ee93f, 'Y', '2013-11-26 16:46:23'),
(1747, 5, 0x436f6d6d656e7420707569732d6a6520666169726520717527756e206c69656e206f7576726520756e65206e6f7576656c6c652066656eea7472653f, 'Y', '2013-11-26 16:46:23'),
(2165, 5, 0x4c276572726575722073756976616e7465206120e974e92064e974656374e965, 'Y', '2013-11-26 16:46:23'),
(2192, 5, 0x52656a65746572206c657320766963746f697265732061752074656d7073206176616e74, 'Y', '2014-12-24 16:37:16'),
(3662, 5, 0x6761676ee97320706172, 'Y', '2013-11-26 16:46:23'),
(2832, 6, 0x5465727269746f72696f2042726974e16e69636f2064656c204f63e9616e6f20cd6e6469636f, 'Y', '2013-11-28 21:19:47'),
(2833, 6, 0x53616e20506564726f2079204d697175656cf36e, 'Y', '2013-11-28 21:19:47'),
(2834, 6, 0x53616e20566963656e74652079206c6173204772616e6164696e6173, 'Y', '2013-11-28 21:19:47'),
(2835, 6, 0x49736c61732047656f72676961732064656c2053757220792053616e64776963682064656c20537572, 'Y', '2013-11-28 21:19:47'),
(2836, 6, 0x4369756461642064656c205661746963616e6f202853616e7461205365646529, 'Y', '2013-11-28 21:19:47'),
(2837, 6, 0x4665646572616369f36e20646520506c616e6574617320556e69646f73, 'Y', '2013-11-28 21:19:47'),
(2838, 6, 0x4d6f73747261722073f36c6f207061727469646173206d756c74696a756761646f72, 'Y', '2013-11-28 21:19:47'),
(2839, 6, 0xa14e6f207365207075656465206275736361722073f36c6f20706f722073746f70776f726473205b25735d21, 'Y', '2013-11-28 21:19:47'),
(2840, 6, 0x416476657274656e636961, 'Y', '2013-11-28 21:19:47'),
(2906, 6, 0x506c616e74696c6c61, 'Y', '2013-11-28 21:19:47'),
(2944, 6, 0x4e65676f6369616369f36e206465206b6f6d6920657175696c69627261646f, 'Y', '2015-08-06 04:23:57'),
(2984, 6, 0x52656c6f6a206465206a7565676f2070617261646f, 'Y', '2013-11-28 21:47:49'),
(2985, 6, 0x5573756172696f20656e20686f72617320646520737565f16f, 'Y', '2013-11-28 21:47:49'),
(2986, 6, 0x46696e2064652073656d616e61202855544329, 'Y', '2013-11-28 21:47:49'),
(2987, 6, 0x456a6563757469766f20646520444753, 'Y', '2013-11-28 21:47:49'),
(2992, 6, 0x546f726e656f73, 'Y', '2013-11-28 21:47:49'),
(2993, 6, 0x456c206a7565676f207469656e6520636f6d656e746172696f73206f63756c746f73, 'Y', '2013-11-28 21:47:49'),
(2995, 6, 0x4d6f7374726172207061727469646173206d756c74696a756761646f72, 'Y', '2015-06-20 00:51:00'),
(3070, 6, 0x2873696e206173756e746f29, 'Y', '2013-11-28 21:47:49'),
(3142, 6, '', 'Y', '2013-11-28 21:47:49'),
(3143, 6, 0x5475746f72, 'Y', '2013-11-28 22:02:02'),
(3144, 6, '', 'Y', '2015-06-24 01:30:47'),
(3145, 6, 0x45717569706f, 'Y', '2013-11-28 22:02:02'),
(3146, 6, 0x45717569706f, 'Y', '2013-11-28 22:02:02'),
(3147, 6, 0x4d61726361646f726573, 'Y', '2013-11-28 22:02:02'),
(3148, 6, 0xda6c74696d6f73206d656e73616a65732064656c20666f726f, 'Y', '2013-11-28 22:02:02'),
(3151, 6, 0x456469746172207661636163696f6e6573, 'Y', '2013-11-28 22:02:02'),
(3152, 6, 0x4564697461722070657266696c, 'Y', '2013-11-28 22:02:02'),
(3153, 6, 0x4d6f7374726172, 'Y', '2013-11-28 22:02:02'),
(3154, 6, 0x496e69636961722073657369f36e, 'Y', '2015-06-27 05:11:05'),
(3155, 6, 0x4179756461202f20464151, 'Y', '2013-11-28 22:04:53'),
(3156, 6, 0x4e756576612070617274696461, 'Y', '2013-11-28 22:04:53'),
(3157, 6, 0x426f6c6574696e6573, 'Y', '2013-11-28 22:04:53'),
(3158, 6, 0x46756e63696f6e616c696461646573, 'Y', '2013-11-28 22:04:53'),
(3162, 6, 0x546f726e656f20232573205b25735d, 'Y', '2013-11-28 22:04:53'),
(3163, 6, '', 'Y', '2013-11-28 22:04:53'),
(3164, 6, 0x456e637565737461202325732028257329205b25735d, 'Y', '2013-11-28 22:04:53'),
(3165, 6, 0x456e63756573746120232573205b25735d, 'Y', '2013-11-28 22:04:53'),
(3166, 6, '', 'Y', '2013-11-28 22:06:43'),
(3167, 6, 0x456c20666f726d61746f206465206665636861206465205b25735d20657320657272f36e656f2c207365206573706572616261205b25735d20656e2076657a206465205b25735d, 'Y', '2013-11-28 22:06:43'),
(3186, 6, '', 'Y', '2013-11-28 22:06:43'),
(3189, 6, 0x7072696d6572612070e167696e61, 'Y', '2013-11-28 22:06:43'),
(3190, 6, 0x50e167696e61202573206465202573, 'Y', '2013-11-28 22:06:43'),
(3191, 6, 0x50e167696e61202573, 'Y', '2013-11-28 22:06:43'),
(3187, 6, 0x28257320656e747261646129, 'Y', '2013-11-29 00:11:24'),
(3188, 6, 0x28257320656e74726164617329, 'Y', '2013-11-29 00:11:24'),
(3192, 6, 0xfa6c74696d612070e167696e61, 'Y', '2013-11-29 00:11:24'),
(3208, 6, 0x4173756e746f, 'Y', '2013-11-29 00:11:24'),
(3341, 6, 0x4772616369617320646520616e74656d616e6f20706f7220737520636f6c61626f72616369f36e2e, 'Y', '2013-11-29 00:12:21'),
(3343, 6, 0x4465, 'Y', '2013-11-29 00:12:21'),
(3344, 6, 0x4d656e73616a65206465202573, 'Y', '2013-11-29 00:12:21'),
(3159, 6, 0x456469746f72206465206a7565676f, 'Y', '2013-11-29 16:21:34'),
(3160, 6, 0x466967757261, 'Y', '2013-11-29 16:21:34'),
(3251, 6, 0x4775617264617220506c616e74696c6c61, 'Y', '2013-11-29 16:21:34'),
(1255, 40, 0x4c697374612064652066f372756e73, 'Y', '2013-11-29 23:43:41'),
(555, 40, 0x436f6d6f20706f73736f206162726972206172717569766f73205347463f, 'Y', '2013-11-30 00:03:04'),
(601, 40, '', 'Y', '2013-11-30 00:03:04'),
(2593, 40, 0x436172726567617220746162756c6569726f20646520534746, 'Y', '2013-11-30 00:05:22'),
(2594, 40, 0x4172717569766f20534746, 'Y', '2014-02-04 05:33:22'),
(2595, 40, 0x456e7669617220534746, 'Y', '2013-11-30 00:05:22'),
(3019, 36, 0x6a6170c3a16e, 'Y', '2015-09-19 12:51:39'),
(5413, 40, 0x46616c686120616f2073616c766172206f2053474621, 'Y', '2013-11-30 00:05:22'),
(5415, 40, 0x4572726f20616f2070726f636573736172205347463a202573, 'Y', '2013-11-30 00:05:22'),
(5425, 40, 0x46696d206465206172717569766f20696e76e16c69646f, 'Y', '2013-11-30 00:09:09'),
(5426, 40, 0x4ef3207261697a20696e76e16c69646f, 'Y', '2013-11-30 00:09:09'),
(5427, 40, 0x4ee36f20e920756d206a6f676f20646520476f2028474d5b315d29, 'Y', '2013-11-30 00:09:09'),
(5428, 40, 0x496eed63696f206465206ef320696e76e16c69646f, 'Y', '2013-11-30 00:09:09'),
(5430, 40, 0x46616c746120756d20666563686120706172ea6e74657365, 'Y', '2013-11-30 00:09:09'),
(5431, 40, 0x46616c746120756d20666563686120636f6c6368657465, 'Y', '2013-11-30 00:09:09'),
(5435, 40, 0x534746206170616761646f21, 'Y', '2013-11-30 00:09:09'),
(5436, 40, 0x5347462073616c766f21, 'Y', '2013-11-30 00:09:09'),
(5440, 40, 0x41706167617220534746, 'Y', '2013-11-30 00:11:00'),
(5441, 40, 0x456e7669617220534746, 'Y', '2013-11-30 00:11:00'),
(5442, 40, 0x53616c76617220534746, 'Y', '2013-11-30 00:11:00'),
(5443, 40, 0x417061676172206d657520534746, 'Y', '2013-11-30 00:11:00'),
(5448, 40, 0x476572656e6369617220616e6f7461e7f56573206e6f20534746, 'Y', '2013-11-30 00:11:00'),
(5461, 40, 0x42616978617220534746203c753e73656d3c2f753e20636f6d656e74e172696f73, 'Y', '2013-11-30 00:11:00'),
(2465, 40, 0x282573206a6f67616461732c20257320636f6d656e74e172696f7329, 'Y', '2013-11-30 20:29:33'),
(2644, 40, 0x4a6f6761646173, 'Y', '2013-11-30 20:29:33'),
(5588, 40, 0x4f66657265636572206e6f766f73206a6f676f73206e612053616c6120646520457370657261, 'Y', '2013-11-30 20:36:03'),
(1725, 40, 0x4c6963656ee761, 'Y', '2013-12-01 00:37:27'),
(2383, 40, 0x526573756d6f2064612064697363757373e36f, 'Y', '2013-12-01 12:47:19'),
(2384, 40, 0x4f63756c74617220726573756d6f, 'Y', '2013-12-01 12:49:20'),
(2387, 40, 0x526573706f6e6465722061207072696d65697261206d656e736167656d2064612064697363757373e36f, 'Y', '2013-12-01 12:52:02'),
(2360, 40, 0x257320656e747261646173, 'Y', '2013-12-01 14:07:18'),
(3187, 40, 0x28257320656e74726164617329, 'Y', '2013-12-01 14:07:18'),
(5749, 4, 0x5361, 'Y', '2013-12-01 17:04:15'),
(5743, 40, 0x646f6d, 'Y', '2013-12-02 01:35:39'),
(5744, 40, 0x736567, 'Y', '2013-12-02 01:36:18'),
(5745, 40, 0x746572, 'Y', '2013-12-02 01:37:30'),
(5746, 40, 0x717561, 'Y', '2013-12-02 01:37:55'),
(5747, 40, 0x717569, 'Y', '2013-12-02 01:38:11'),
(5748, 40, 0x736578, 'Y', '2013-12-02 01:39:12'),
(5749, 40, 0x73e162, 'Y', '2013-12-02 01:39:37'),
(2146, 40, 0x526f62f4, 'Y', '2013-12-02 01:43:46'),
(3145, 40, 0x54696d65, 'Y', '2013-12-02 01:43:46'),
(5750, 40, 0x486f7370656461646f20706f72, 'Y', '2013-12-02 04:19:13'),
(5743, 6, 0x446f, 'Y', '2013-12-02 09:17:00'),
(5744, 6, 0x4c75, 'Y', '2013-12-02 09:17:00'),
(5745, 6, 0x4d61, 'Y', '2013-12-02 09:17:00'),
(5746, 6, 0x4d69, 'Y', '2013-12-02 09:17:00'),
(5747, 6, 0x4a75, 'Y', '2013-12-02 09:17:00'),
(5748, 6, 0x5669, 'Y', '2013-12-02 09:17:22'),
(5749, 6, 0x5361, 'Y', '2013-12-02 09:17:22'),
(5750, 6, 0x416c6f6a61646f20706f72, 'Y', '2013-12-02 09:17:22'),
(5593, 6, 0x5665727369f36e, 'Y', '2013-12-02 09:18:14'),
(5667, 6, 0x506f7274756775e973202842726173696c29, 'Y', '2013-12-02 09:18:14'),
(5668, 6, 0x506f7274756775e97320284575726f706129, 'Y', '2013-12-02 09:18:14'),
(3345, 6, 0x4d656e73616a65, 'Y', '2013-12-02 09:26:04'),
(3346, 6, 0x4465, 'Y', '2013-12-02 09:26:04'),
(3347, 6, 0x4173756e746f, 'Y', '2013-12-02 09:26:04'),
(4619, 6, 0x496e74726f6475636369f36e, 'Y', '2013-12-02 09:27:41'),
(4707, 6, 0x466f726d61, 'Y', '2013-12-02 09:27:41'),
(4708, 6, 0x496e666f726d616369f36e206465206c6120666f726d61, 'Y', '2013-12-02 09:27:41'),
(5218, 6, 0x50617274696461206d756c74696a756761646f72, 'Y', '2015-06-20 00:50:02'),
(3352, 6, 0x4e6f2068617920706172746964617320656e20657370657261, 'Y', '2015-06-20 00:48:58'),
(3353, 6, 0x4e6f20686179206d656e73616a6573206e7565766f73, 'Y', '2013-12-02 09:29:56'),
(3358, 6, 0x49442064656c204a7565676f, 'Y', '2013-12-02 09:29:56'),
(3366, 6, 0x5469706f, 'Y', '2013-12-07 15:22:02'),
(3367, 6, 0x5265676c6173, 'Y', '2013-12-02 09:29:56'),
(3386, 6, 0x4d6973207061727469646173207465726d696e61646173, 'Y', '2015-06-21 06:01:28'),
(3388, 6, 0x4d697320746f726e656f73, 'Y', '2013-12-02 09:29:56'),
(3301, 6, 0x5061727469646173207465726d696e6164617320636f6e20656c20636f6e7472696e63616e7465205b25735d, 'Y', '2015-06-20 00:50:02'),
(3302, 6, 0x506172746964617320656e206d617263686120636f6e20656c20636f6e7472696e63616e7465205b25735d, 'Y', '2015-06-20 00:50:02'),
(3338, 6, 0x25732d456c2065737461646f206465205b25735d2074656d706f72616c6d656e746520646573686162696c697461646f20706f722075736f20657863657369766f2123616c74, 'Y', '2013-12-04 22:12:57'),
(3339, 6, 0x506f72206661766f72207369676120656c206c696e6b2c206c6561206c6120656e747261646120656e206c6173204641512079207265636f6e6669677572652073752025732e, 'Y', '2013-12-04 22:12:57'),
(3340, 6, 0x506f72206661766f722c2068e167616c6f206c6f20616e74657320706f7369626c6520706172612072656475636972206c612063617267612064656c207365727669646f722e, 'Y', '2013-12-04 22:12:57'),
(3342, 6, 0x426f6c6574ed6e207061726120257320636f6e2022257322, 'Y', '2013-12-04 22:12:57'),
(3348, 6, 0x4a7565676f20646520257320636f6e202573, 'Y', '2013-12-04 22:12:57'),
(3349, 6, 0x50617274696461, 'Y', '2015-06-20 00:50:02'),
(3350, 6, 0x4c697374617320766163ed6173, 'Y', '2013-12-04 22:12:57'),
(3351, 6, 0x4e6f20686179206e7565766f7320626f6c6574696e6573, 'Y', '2013-12-04 22:12:57'),
(2429, 40, 0x4461746120646520696eed63696f, 'Y', '2013-12-06 09:23:21'),
(2435, 40, 0x4eed76656c20617475616c, 'Y', '2013-12-06 09:26:56'),
(2443, 40, 0x54656d706f206578747261, 'Y', '2013-12-06 09:27:34'),
(2444, 40, 0x5369747561e7e36f20646f2072656cf367696f, 'Y', '2013-12-06 09:29:29'),
(2446, 40, 0x54656d706f2070617373616e646f, 'Y', '2013-12-06 09:30:49'),
(2442, 40, 0x436f6e74726f6c652064652074656d706f, 'Y', '2013-12-06 09:32:42'),
(4706, 40, 0x526576616e636865, 'Y', '2013-12-06 09:57:12'),
(2432, 40, 0x56616e746167656d2070616472e36f, 'Y', '2013-12-06 10:03:04'),
(2458, 40, 0x496e666f726d61e7f5657320646f206a6f676f, 'Y', '2013-12-06 10:05:01'),
(783, 36, '', 'Y', '2015-09-18 21:08:14'),
(2424, 40, 0x436f6e666967757261e7e36f20646f206a6f676f, 'Y', '2013-12-06 10:05:43'),
(2441, 40, 0x496e666f726d61e7f565732064652074656d706f, 'Y', '2013-12-06 10:09:15'),
(2439, 40, 0x56657a2064617320707265746173, 'Y', '2013-12-06 10:11:16'),
(2440, 40, 0x56657a20646173206272616e636173, 'Y', '2013-12-06 10:11:16'),
(2522, 40, 0x56657a20646f206a6f6761646f72, 'Y', '2013-12-06 10:11:16'),
(3381, 40, 0x56657a2064617320707265746173, 'Y', '2013-12-06 10:11:16'),
(3382, 40, 0x56657a20646173206272616e636173, 'Y', '2013-12-06 10:11:16'),
(5742, 40, 0x496e666f726d61e7f5657320646f73204a6f6761646f726573, 'Y', '2013-12-06 10:12:23'),
(633, 40, 0x4f2071756520e920756d206a6f676f20657175696c69627261646f20636f6d206e69676972693f, 'Y', '2013-12-06 20:34:42'),
(3057, 40, 0x4b6f6d69206a7573746f20286a6f676f20657175696c69627261646f29, 'Y', '2013-12-06 20:34:42'),
(2946, 40, 0x4c65696ce36f2061626572746f206465206b6f6d69, 'Y', '2013-12-06 20:37:43'),
(2947, 40, 0x4c65696ce36f207365637265746f206465206b6f6d69, 'Y', '2013-12-06 20:37:43'),
(4525, 40, 0x4c65696ce36f2061626572746f, 'Y', '2013-12-06 20:37:43'),
(4526, 40, 0x4c65696ce36f207365637265746f, 'Y', '2013-12-06 20:37:43'),
(2948, 40, 0x566f63ea206573636f6c6865206b6f6d692c206575206573636f6c686f20636f72, 'Y', '2013-12-06 20:39:05'),
(2949, 40, 0x4575206573636f6c686f206b6f6d692c20766f63ea206573636f6c686520636f72, 'Y', '2013-12-06 20:38:55'),
(5537, 40, 0x2b20636f6e66696775726172206f207469706f206465204a69676f202861626169786f29, 'Y', '2013-12-06 20:58:12'),
(3063, 40, 0x5469706f206465204a69676f, 'Y', '2013-12-06 20:57:14'),
(5518, 40, 0x4b6f6d69206a7573746f20646f207469706f205b25735d2c207469706f206465204a69676f205b25735d, 'Y', '2013-12-06 20:57:14'),
(3371, 6, 0x506172746964617320717565206573746f79206f6273657276616e646f, 'Y', '2015-06-20 00:50:02'),
(1360, 40, 0x6a69676f, 'Y', '2014-02-17 04:44:07'),
(2959, 40, 0x466f72e76172204a69676f, 'Y', '2013-12-06 20:49:43'),
(2960, 40, 0x50726f69626972204a69676f, 'Y', '2013-12-06 20:49:43'),
(3098, 40, 0x5065726d69746972204a69676f, 'Y', '2013-12-06 20:51:47'),
(3100, 40, 0x53656d204a69676f, 'Y', '2013-12-06 20:51:47'),
(2329, 40, 0x4d657520566f746f, 'Y', '2014-04-11 14:04:00'),
(3804, 40, 0x656d204a69676f, 'Y', '2013-12-06 20:51:47'),
(4787, 40, 0x4e6f74617320736f627265204a69676f, 'Y', '2013-12-06 20:51:47'),
(5181, 40, 0x4a69676f207065726d697469646f, 'Y', '2013-12-06 20:51:47'),
(5182, 40, 0x4a69676f206ee36f207065726d697469646f, 'Y', '2013-12-06 20:51:47'),
(5533, 40, 0x53656d20726573747269e7e36f206465204a69676f, 'Y', '2013-12-06 20:51:47'),
(5733, 40, 0x4469666572656ee761206465206eed76656c20656d204a69676f, 'Y', '2013-12-06 20:51:47'),
(2507, 40, 0x436f6e666967757261e7e36f2064652072656cf367696f, 'Y', '2013-12-06 20:54:00'),
(3252, 40, 0x436f6e766974652070617261206a6f676172, 'Y', '2013-12-06 20:55:19'),
(3253, 40, 0x4469737075746120646f20636f6e766974652070617261206a6f676172, 'Y', '2013-12-06 20:55:19'),
(3440, 6, 0x45737461646f207061726120253124733a2025322473, 'Y', '2013-12-07 11:22:07'),
(3441, 6, 0x4d656e73616a652064656c2044ed612028626f6c6574696e65732073696e206c65657229, 'Y', '2013-12-07 11:22:07'),
(3442, 6, 0x4d6f737472617220746f646f73206c6f7320626f6c6574696e65732073696e206c6565722028257329, 'Y', '2013-12-07 11:22:07'),
(3443, 6, 0x556e69646f, 'Y', '2013-12-07 11:22:07'),
(3445, 6, 0x5061727469646173206d756c74696a756761646f7220706172612067657374696f6e61723a, 'Y', '2015-06-20 00:51:00'),
(3446, 6, 0x5072696f, 'Y', '2013-12-07 15:26:36'),
(3447, 6, 0x4f7264656e6172, 'Y', '2015-08-06 19:51:33'),
(3448, 6, 0xa1506c616e74696c6c6120677561726461646121, 'Y', '2013-12-07 11:25:44'),
(3449, 6, 0xa1506c616e74696c6c6120626f727261646121, 'Y', '2013-12-07 11:25:38'),
(3450, 6, 0x506c616e74696c6c6173202875736164617320257320646520257329, 'Y', '2013-12-07 11:25:08'),
(3451, 6, 0xda6c74696d6f2063616d62696f, 'Y', '2013-12-07 11:25:08'),
(3452, 6, 0x426f7272617220706c616e74696c6c61, 'Y', '2013-12-07 11:25:08'),
(3453, 6, 0x5265656d706c617a6172, 'Y', '2013-12-07 11:25:08'),
(3454, 6, 0x4e6f6d627265, 'Y', '2013-12-07 11:25:08'),
(3455, 6, 0x53656c656363696f6e6520756e6120706c616e74696c6c612070617261207265656d706c617a617220756e6120656e7472616461206578697374656e7465, 'Y', '2013-12-07 11:25:08'),
(3456, 6, 0x4e7565766120706c616e74696c6c61, 'Y', '2013-12-07 11:25:08'),
(3457, 6, 0xa15469706f20646520706c616e74696c6c6120696e76e16c69646f2070617261206775617264617221, 'Y', '2013-12-07 11:25:08'),
(3458, 6, 0xa14c6120696e666f726d616369f36e206465206c6120706c616e74696c6c612065786365646520656c206ced6d6974652064652025732062797465732028706f722025732062797465732921, 'Y', '2013-12-07 11:25:08'),
(3459, 6, 0xa146616c746120656c206e6f6d627265206465206c6120706c616e74696c6c6121, 'Y', '2013-12-07 11:25:08'),
(4622, 40, 0x726573706f6e646572, 'Y', '2013-12-07 12:39:37'),
(2425, 40, 0x494420646f204a6f676f204475706c6f, 'Y', '2013-12-07 12:41:47'),
(2912, 40, 0x4a6f676f206475706c6f20286272616e63617329, 'Y', '2013-12-07 12:41:47'),
(2913, 40, 0x4a6f676f206475706c6f202870726574617329, 'Y', '2013-12-07 12:41:47'),
(2941, 40, 0x4475706c6f, 'Y', '2013-12-07 12:41:47'),
(4521, 40, 0x4a6f676f206475706c6f, 'Y', '2013-12-07 12:41:47'),
(4529, 40, 0x4475706c6f, 'Y', '2013-12-07 12:41:47'),
(2842, 40, 0x52656e676f, 'Y', '2013-12-07 12:44:24'),
(2843, 40, 0x4ee36f2d70616472e36f, 'Y', '2013-12-07 12:44:24'),
(2937, 40, 0x476f, 'Y', '2013-12-07 12:44:24'),
(2938, 40, 0x476f2d64652d657175697065, 'Y', '2013-12-07 12:44:24'),
(2939, 40, 0x476f2d7a656e, 'Y', '2013-12-07 12:44:24'),
(3460, 6, 0xa1456c206e6f6d627265206465206c6120706c616e74696c6c6120646562652073657220fa6e69636f21, 'Y', '2013-12-07 12:47:21'),
(3461, 6, 0x536520686120616c63616e7a61646f20656c206de178696d6f20646520706c616e74696c6c61732e20a15469656e657320717565207265656d706c617a617220616c67756e6121, 'Y', '2013-12-07 12:47:21'),
(3462, 6, 0x4c6120656e74726164612061207265656d706c617a6172206e6f2065786973746520706172612065737465207573756172696f2e, 'Y', '2013-12-07 12:47:21'),
(3464, 6, 0x426f7272617220706c616e74696c6c61, 'Y', '2013-12-07 12:47:21'),
(3465, 6, 0x5469706f, 'Y', '2013-12-07 12:47:21'),
(3467, 6, 0xbf457374e1732073656775726f2064652071756572657220626f72726172206573746120706c616e74696c6c613f, 'Y', '2013-12-07 12:47:21'),
(4585, 6, 0x25732072657374616e746573, 'Y', '2013-12-07 12:47:21'),
(4590, 6, 0x4c6174ed6e, 'Y', '2013-12-07 12:47:21'),
(4604, 6, 0x4c6120616374697669646164206465206c61206375656e746120272573272061756d656e74f32064656d61736961646f207920626c6f717565f3206e75657374726f73207265637572736f732e0d0a506f72206661766f722c20636f7272696a6120e973746520636f6d706f7274616d69656e746f2e0d0a45737461206375656e746120736572e120626c6f7175656164612068617374612025732e, 'Y', '2013-12-07 12:47:21'),
(5220, 6, 0x4d6f737472617220746f646f73206c6f73206d656e73616a65732e, 'Y', '2013-12-07 12:47:21'),
(4536, 40, 0x25732056616e742e202573204b2573, 'Y', '2013-12-07 12:50:15'),
(4537, 40, 0x257320457175696c2e204b2573, 'Y', '2013-12-07 12:48:44'),
(5452, 40, 0x416465717561646f73, 'Y', '2013-12-07 12:54:29'),
(3199, 40, 0x4d657573, 'Y', '2013-12-07 12:55:15'),
(5423, 6, 0x456c206a7565676f207469656e6520534746732061646a756e746f73, 'Y', '2013-12-07 12:56:35'),
(5581, 6, 0x62757363617220656e206c6120646f63756d656e74616369f36e, 'Y', '2013-12-07 12:56:35'),
(5582, 6, 0x6d6f7374726172206c6120706f6ced746963612c206e6f746173206465206c61207665727369f36e2c20656e6c616365732c20636f6c61626f7261646f7265732c2068657272616d69656e7461732c206675656e7465732c206c6963656e636961, 'Y', '2013-12-07 12:56:35'),
(5583, 6, 0x6d6f737472617220746f646173206c61732070e167696e6173, 'Y', '2013-12-07 12:56:35'),
(5584, 6, 0x6d6f7374726172206e756576617320696e7669746163696f6e6573206465206f74726f73206a756761646f726573, 'Y', '2013-12-07 12:56:35'),
(5585, 6, 0x6d6f737472617220737573206d656e73616a65732079206361727065746173, 'Y', '2013-12-07 12:56:35'),
(5586, 6, 0x6d6f7374726172206e7565766f73206d656e73616a6573, 'Y', '2013-12-07 12:56:35'),
(5453, 40, 0x4d657573, 'Y', '2013-12-07 12:57:20'),
(4519, 40, 0x5072f37072696f, 'Y', '2013-12-07 12:58:36'),
(4520, 40, 0x4e6967697269, 'Y', '2013-12-07 12:59:51'),
(4522, 40, 0x507265746173, 'Y', '2013-12-07 12:59:51'),
(4523, 40, 0x4272616e636173, 'Y', '2013-12-07 12:59:51'),
(4524, 40, 0x4d616e75616c, 'Y', '2013-12-07 12:59:51'),
(4531, 40, 0x436f722066697861, 'Y', '2013-12-07 13:00:43'),
(2945, 40, 0x4b6f6d69206a7573746f, 'Y', '2013-12-07 13:01:54'),
(3090, 40, 0x4b6f6d69206a7573746f, 'Y', '2013-12-07 13:01:54'),
(4532, 40, 0x4b6f6d69204a7573746f, 'Y', '2013-12-07 13:01:54'),
(4613, 40, 0x53656d204b6f6d69204a7573746f, 'Y', '2013-12-07 13:04:40'),
(4547, 40, 0x696e64696361646f7220646520636f6c6f6361e7e36f206c6976726520646173207065647261732064652076616e746167656d, 'Y', '2013-12-07 13:09:42'),
(1256, 40, 0x4d6f64657261646f, 'Y', '2013-12-07 13:10:55'),
(1299, 40, 0x506f72717565206d6575206a6f676f206ee36f20657374e1206176616c6961646f3f, 'Y', '2013-12-07 13:10:55'),
(1633, 40, 0x546f646f73, 'Y', '2013-12-07 13:12:09'),
(1634, 40, 0x53696d, 'Y', '2013-12-07 13:12:09'),
(1635, 40, 0x4ee36f, 'Y', '2013-12-07 13:12:09'),
(2372, 40, 0x617373756e746f206d6f64657261646f, 'Y', '2013-12-07 13:12:09'),
(2373, 40, 0x436f6e7465fa646f206d6f64657261646f, 'Y', '2013-12-07 13:12:09'),
(2530, 40, 0x736f6d656e746520757375e172696f73206176616c6961646f73, 'Y', '2013-12-07 13:12:09'),
(3570, 40, 0x286176616c6961646f73206f75206ee36f29, 'Y', '2013-12-07 13:13:58'),
(3571, 40, 0x286170656e6173206176616c6961646f7329, 'Y', '2013-12-07 13:13:58'),
(4779, 40, 0x4ee36f206176616c6961646f, 'Y', '2013-12-07 13:13:58'),
(4499, 40, 0x4a6f676f73207065726469646f7320706f722074656d706f, 'Y', '2013-12-07 13:25:02'),
(299, 40, 0x4c6f6a61206575726f70e96961, 'Y', '2013-12-07 13:26:12'),
(2687, 40, 0x556e69e36f204575726f70e96961, 'Y', '2013-12-07 13:26:12'),
(5668, 40, 0x706f7274756775ea7320284575726f706129, 'Y', '2014-02-18 23:54:47'),
(4496, 40, 0xda6c74696d6f2061636573736f2072e17069646f, 'Y', '2013-12-07 13:28:44'),
(464, 40, 0x6e6f7275656775ea73, 'Y', '2013-12-08 09:35:12'),
(1526, 40, 0x656e636f6e7472616461206e6f2066f372756d, 'Y', '2013-12-08 09:35:45'),
(1527, 40, 0x427573636172206e6f732066f372756e73, 'Y', '2013-12-08 09:38:48'),
(1535, 40, 0x50616c617672617320706172612070726f6375726172, 'Y', '2013-12-08 09:40:30'),
(4688, 40, 0x50616c6176726173204275736361646173, 'Y', '2013-12-08 09:40:30'),
(1528, 40, 0x546f646f73, 'Y', '2013-12-08 09:42:17'),
(1532, 40, 0x546f646173206173206d656e736167656e73, 'Y', '2013-12-08 09:42:17'),
(1533, 40, 0x5072696d6569726173206d656e736167656e73, 'Y', '2013-12-08 09:42:17'),
(1537, 40, 0x4573636f706f206461206d656e736167656d, 'Y', '2013-12-08 09:42:17'),
(1538, 40, 0x44617461, 'Y', '2013-12-08 09:42:17'),
(1539, 40, 0x4f7264656d, 'Y', '2013-12-08 09:42:17'),
(1787, 40, 0x4f63756c7461, 'Y', '2013-12-08 09:43:21'),
(2364, 40, 0x4572726f, 'Y', '2013-12-08 09:43:21'),
(2388, 40, 0x546f646173206173206d656e736167656e73206d6f73747261646173, 'Y', '2013-12-08 09:43:21'),
(2389, 40, 0x546f646173206173206d656e736167656e73206f63756c746173, 'Y', '2013-12-08 09:43:21'),
(2390, 40, 0x4d696e686173206d656e736167656e73206f63756c746173, 'Y', '2013-12-08 09:43:21'),
(2391, 40, 0x4d656e736167656e7320636f6d206170726f7661e7e36f2070656e64656e7465, 'Y', '2013-12-08 09:44:10'),
(4621, 40, 0x6e6f7661, 'Y', '2014-05-07 20:51:34'),
(4623, 40, 0x6f63756c746172, 'Y', '2013-12-08 09:44:10'),
(469, 40, 0x74636865636f, 'Y', '2013-12-08 09:47:22'),
(473, 40, 0x686f6c616e64ea73, 'Y', '2013-12-08 09:47:22'),
(479, 40, 0x7461696c616e64ea73, 'Y', '2013-12-08 09:47:22'),
(500, 40, 0x66696e6c616e64ea73, 'Y', '2013-12-08 09:53:36'),
(719, 40, 0x25732076656e636572616d20706f7220252e3166, 'Y', '2014-02-03 03:14:43'),
(747, 40, 0x546f64617320617320636f6c756e6173, 'Y', '2013-12-08 09:53:36'),
(750, 40, 0x636f7265616e6f, 'Y', '2013-12-08 09:53:36'),
(782, 40, 0x42756c67e1726961, 'Y', '2015-06-16 18:32:30'),
(954, 40, 0x727573736f, 'Y', '2013-12-08 10:19:15'),
(997, 40, 0x706f6c6f6eea73, 'Y', '2013-12-08 10:19:15'),
(998, 40, 0x6974616c69616e6f, 'Y', '2013-12-08 10:19:15'),
(1003, 40, 0x4964696f6d6120626173636f, 'Y', '2015-08-06 06:04:25'),
(1014, 40, 0x4964696f6d6120696e7465726ced6e677565, 'Y', '2015-08-06 06:07:41'),
(1015, 40, 0x4964696f6d61206573706572616e746f, 'Y', '2015-08-06 06:07:41'),
(1018, 40, 0x65736c6f7661636f, 'Y', '2013-12-08 10:19:15'),
(1023, 40, 0x726f6d656e6f, 'Y', '2013-12-08 10:19:15'),
(1028, 40, 0x686562726575, 'Y', '2013-12-08 10:19:15'),
(1029, 40, 0x4964696f6d61204ced6e677561204672616e6361204e6f7661, 'Y', '2015-08-06 06:07:41'),
(1030, 40, 0x766965746e616d697461, 'Y', '2013-12-08 10:26:28'),
(1031, 40, 0x73e97276696f, 'Y', '2013-12-08 10:26:28'),
(1032, 40, 0x677265676f, 'Y', '2013-12-08 10:26:28'),
(1033, 40, 0x756372616e69616e6f, 'Y', '2013-12-08 10:26:28'),
(1034, 40, 0x4964696f6d6120636174616ce36f, 'Y', '2015-08-06 06:07:41'),
(1055, 40, 0x2d207369747561e7e36f207573616e646f20756d205253532046656564, 'Y', '2014-02-06 22:12:16'),
(1280, 40, 0x747572636f, 'Y', '2013-12-08 10:33:51'),
(1281, 40, 0x68fa6e6761726f, 'Y', '2013-12-08 10:33:51'),
(1520, 40, 0x4572726f, 'Y', '2013-12-08 10:35:38'),
(1602, 40, 0x50726f666573736f72, 'Y', '2013-12-08 10:35:38'),
(1606, 40, 0x50726f6375726172, 'Y', '2015-06-16 17:58:41'),
(1607, 40, 0x5265636f6d65e76172206275736361, 'Y', '2013-12-08 10:37:26'),
(5581, 40, 0x50726f637572617220646f63756d656e7461e7e36f20646f2073697465, 'Y', '2015-12-09 01:45:44'),
(1608, 40, 0x53696e74617865, 'Y', '2013-12-08 10:42:03'),
(1609, 40, 0x4eda4d, 'Y', '2013-12-08 10:42:03'),
(1610, 40, 0x544558544f, 'Y', '2013-12-08 10:42:03'),
(1611, 40, 0x7061726369616c, 'Y', '2013-12-08 10:42:03'),
(1612, 40, 0x4ecd56454c, 'Y', '2013-12-08 10:42:03'),
(1613, 40, 0x6eed76656c20696e76e16c69646f, 'Y', '2013-12-08 10:42:03'),
(1614, 40, 0x5041cd53, 'Y', '2013-12-08 10:42:03'),
(1617, 40, 0x546f646f73206f73207061ed736573, 'Y', '2013-12-08 10:42:03'),
(1618, 40, 0x44415441, 'Y', '2013-12-08 10:42:03'),
(1637, 40, 0x4d6f646f206176616ee761646f, 'Y', '2013-12-08 10:42:58'),
(1619, 40, 0x6162736f6c75746f, 'Y', '2013-12-08 10:46:50'),
(1620, 40, 0x616e6f73, 'Y', '2014-02-11 14:09:13'),
(1621, 40, 0x6d65736573, 'Y', '2014-02-11 14:09:13'),
(1622, 40, 0x73656d616e6173, 'Y', '2014-02-11 14:09:13'),
(1623, 40, 0x64696173, 'Y', '2014-02-11 14:09:13'),
(1626, 40, 0x444154412d52454c4154495641, 'Y', '2013-12-08 10:46:50'),
(1627, 40, 0x6578617461, 'Y', '2013-12-08 10:46:50'),
(1628, 40, 0x6ee36f206e756de97269636f, 'Y', '2013-12-08 10:46:50'),
(1629, 40, 0x74616c76657a20766f63ea20717565697261206573636f6c686572206162736f6c75746f, 'Y', '2014-02-11 14:08:21'),
(1630, 40, 0x546f646f73, 'Y', '2013-12-08 10:50:38'),
(1631, 40, 0x53696d, 'Y', '2013-12-08 10:50:38'),
(1632, 40, 0x4ee36f, 'Y', '2013-12-08 10:50:38'),
(1636, 40, 0xcd4e444943452d444f2d524553554c5441444f, 'Y', '2013-12-08 10:50:38'),
(1638, 40, 0x504c41434152, 'Y', '2013-12-08 10:50:38'),
(1639, 40, 0x4573636f6c6861206e656e68756d2c20756d206f75206d61697320656c656d656e746f73, 'Y', '2013-12-08 10:50:38'),
(1640, 40, 0x6578636573736f20646520736570617261646f726573, 'Y', '2013-12-08 10:55:57'),
(1641, 40, 0x707265636973612d736520616f206d656e6f732064652025312473206c6574726173207175616e646f2073652075736120746578746f2071756520636f6d65e76120636f6d206f2073ed6d626f6c6f205b253224735d, 'Y', '2013-12-08 10:55:57'),
(1642, 40, 0x7072656669786f206ee36f207065726d697469646f, 'Y', '2013-12-08 10:55:57'),
(1643, 40, 0x666f726d61746f206465206461746120696e76e16c69646f, 'Y', '2013-12-08 10:55:57'),
(1644, 40, 0x666f726d61746f206465206461746120696e76e16c69646f2028706172746529, 'Y', '2013-12-08 10:55:57'),
(1645, 40, 0x64696120696e76e16c69646f, 'Y', '2013-12-08 10:55:57'),
(1646, 40, 0x7573616e646f2063697461e7e36f207275696d, 'Y', '2013-12-08 10:55:57'),
(1647, 40, 0x656e74696461646520584d4c20696e76e16c696461206e6120706f7369e7e36f, 'Y', '2013-12-08 10:55:57'),
(1648, 40, 0x657469717565746120584d4c20696e76e16c696461206e6120706f7369e7e36f, 'Y', '2013-12-08 10:55:57'),
(1650, 40, 0x657469717565746120584d4c2066696e616c20696e76e16c696461206e6120706f7369e7e36f, 'Y', '2013-12-08 10:55:57'),
(1651, 40, 0x617472696275746f20584d4c20696e76e16c69646f206e6120706f7369e7e36f, 'Y', '2013-12-08 11:03:13'),
(1737, 40, 0x6d696e75746f73, 'Y', '2014-02-11 14:09:13'),
(1842, 40, 0x506f6ced74696361, 'Y', '2013-12-08 11:03:13'),
(1871, 40, 0x436f6e74726962756972, 'Y', '2013-12-08 11:03:13'),
(1872, 40, 0x41706f6965206f2044475320636f6d20756d6120636f6e747269627569e7e36f, 'Y', '2013-12-08 11:03:13'),
(1873, 40, 0x436f6e747269627569e7e36f, 'Y', '2013-12-08 11:03:13'),
(1875, 40, 0x436f6e747269627569e7f56573, 'Y', '2013-12-08 11:03:13'),
(1879, 40, 0x4f206c696e6b206120736567756972206c65766120e02070e167696e612050617950616c, 'Y', '2013-12-08 11:03:13'),
(1880, 40, 0x4d7569746f206f6272696761646f2070656c612067656e65726f736120646f61e7e36f207061726120616a75646172206f204447532121, 'Y', '2013-12-08 11:08:56'),
(1932, 40, 0x526573747269e7e36f2064652061636573736f2074656d706f72e1726961, 'Y', '2013-12-08 11:08:56'),
(2145, 40, 0x50726f66697373696f6e616c, 'Y', '2013-12-08 11:08:56'),
(2158, 40, 0x4573746174ed737469636173, 'Y', '2014-02-06 15:22:52'),
(2659, 40, 0x4e656e68756d206172717569766f2065737065636966696361646f207061726120656e766961722e, 'Y', '2013-12-08 11:12:47'),
(2660, 40, 0x4f206172717569766f205b25735d20656e766961646f20756c7472617061737361206f2074616d616e686f206de178696d6f207065726d697469646f2070656c6f207365727669646f722e, 'Y', '2013-12-08 11:12:47'),
(2661, 40, 0x4f206172717569766f205b25735d20656e766961646f20756c7472617061737361206f2074616d616e686f206de178696d6f206465205b25732062797465735d20646f20666f726d756ce172696f2e, 'Y', '2013-12-08 11:12:47'),
(2662, 40, 0x4f206172717569766f205b25735d20666f6920656e766961646f206170656e6173207061726369616c6d656e74652e, 'Y', '2013-12-08 11:12:47'),
(2664, 40, 0x4f206172717569766f205b25735d20656e766961646f206ee36f2074656d20756d20666f726d61746f20646520696d6167656d207265636f6e68656369646f2e, 'Y', '2013-12-08 11:59:45'),
(2665, 40, 0x4f20666f726d61746f20646120696d6167656d205b25732c2025735d20646f206172717569766f20656e766961646f206ee36f20657374e12064656e74726f20646f7320666f726d61746f7320657370657261646f73205b25735d2e, 'Y', '2013-12-08 11:59:45'),
(2666, 40, 0x41206c617267757261206465205b25735d20646120696d6167656d205b25735d20656e766961646120657863656465206f206c696d697465206465205b257320706978656c735d2e, 'Y', '2013-12-08 11:59:45'),
(2667, 40, 0x4120616c74757261206465205b25735d20646120696d6167656d205b25735d20656e766961646120657863656465206f206c696d697465206465205b257320706978656c735d2e, 'Y', '2013-12-08 11:59:45'),
(2668, 40, 0x4f206172717569766f205b25735d20656e766961646f206ee36f20706f6465207365722061726d617a656e61646f2e, 'Y', '2013-12-08 11:59:45'),
(2669, 40, 0x474946, 'Y', '2013-12-08 11:59:45'),
(2670, 40, 0x4a504547, 'Y', '2013-12-08 11:59:45'),
(2671, 40, 0x504e47, 'Y', '2013-12-08 11:59:45'),
(2832, 40, 0x5465722e20627269742e20646f206f632e20ed6e6469636f, 'Y', '2014-02-16 13:13:11'),
(2833, 40, 0x53e36f20506564726f2065204d697175656ce36f, 'Y', '2013-12-08 11:59:45'),
(2834, 40, 0x53e36f20566963656e74652065204772616e6164696e6173, 'Y', '2013-12-08 12:13:03'),
(2835, 40, 0x492e204765f37267696120532e20652053616e6475ed63686520532e, 'Y', '2014-02-16 13:17:52'),
(2836, 40, 0x5661746963616e6f, 'Y', '2013-12-08 12:13:03'),
(2837, 40, 0x4665642e20556e69646120646f7320506c616e65746173, 'Y', '2014-02-16 13:14:27'),
(2838, 40, 0x4d6f7374726173206170656e6173206a6f676f73206d756c74696a6f6761646f726573, 'Y', '2013-12-08 12:13:03'),
(2839, 40, 0x4ee36f20e920706f7373ed76656c207065737175697361722070656c61732070616c6176726173205b25735d21, 'Y', '2013-12-08 12:13:03'),
(2840, 40, 0x417669736f, 'Y', '2013-12-08 12:13:03'),
(2944, 40, 0x4e65676f636961e7e36f206465204b6f6d69204a7573746f, 'Y', '2013-12-08 12:13:03'),
(2984, 40, 0x52656cf367696f20646f206a6f676f2070617261646f, 'Y', '2013-12-08 12:13:03'),
(2985, 40, 0x557375e172696f206e6120686f72612064652064657363616e736f, 'Y', '2013-12-08 12:16:54'),
(2986, 40, 0x46696d2064652073656d616e61202855544329, 'Y', '2013-12-08 12:16:54'),
(2987, 40, 0x45786563757469766f2064726167e36f, 'Y', '2013-12-08 12:16:54'),
(2988, 40, 0x436f6e65637461646f, 'Y', '2013-12-08 12:16:54'),
(2989, 40, 0x436f6e6563746f75206120266c743b2573206d696e75746f73, 'Y', '2013-12-08 12:16:54'),
(2993, 40, 0x4f206a6f676f2074656d20636f6d656e74e172696f73206f63756c746f73, 'Y', '2013-12-08 12:16:54'),
(2995, 40, 0x4d6f7374726172206a6f676f73206d756c74696a6f6761646f72, 'Y', '2013-12-08 12:16:54'),
(3070, 40, 0x2873656d20617373756e746f29, 'Y', '2013-12-08 12:16:54'),
(3142, 40, 0x50726f2e, 'Y', '2013-12-08 12:17:47'),
(3143, 40, 0x50726f666573736f72, 'Y', '2013-12-08 12:20:34'),
(3144, 40, 0x526f62f4, 'Y', '2013-12-08 12:20:34'),
(3146, 40, 0x54696d65, 'Y', '2013-12-08 12:20:34'),
(3159, 40, 0x456469746f72206465204a6f676f, 'Y', '2013-12-08 12:22:09'),
(3161, 40, 0x4a6f67616461, 'Y', '2013-12-08 12:22:09'),
(3162, 40, 0x546f726e65696f20232573205b25735d, 'Y', '2013-12-08 12:22:09'),
(5505, 40, 0x50726f76e176656c20706c61636172, 'Y', '2013-12-10 21:51:50'),
(2374, 40, 0x536f6d656e74652d6c656974757261, 'Y', '2013-12-14 21:20:45'),
(5215, 40, 0x44697363757373e36f2070617261206c6569747572612028736f6d656e74652061646d696e6973747261646f72657320706f64656d20726573706f6e64657229, 'Y', '2013-12-14 21:20:45'),
(1525, 6, 0x6e7565766f73207072696d65726f, 'Y', '2015-06-28 00:11:37'),
(1526, 6, 0x656e636f6e747261646f20656e20656c20666f726f, 'Y', '2013-12-20 22:07:09'),
(1527, 6, 0x42fa737175656461, 'Y', '2013-12-20 22:07:09'),
(1528, 6, 0x546f646f73, 'Y', '2013-12-20 22:07:09'),
(1529, 6, 0x52656c6576616e6369612064656c2074e9726d696e6f, 'Y', '2013-12-20 22:07:09'),
(1532, 6, 0x546f646f73206c6f73206d656e73616a6573, 'Y', '2013-12-20 22:07:09'),
(1533, 6, 0x5072696d65726f73206d656e73616a6573, 'Y', '2013-12-20 22:07:09'),
(1535, 6, 0x54e9726d696e6f732064652062fa737175656461, 'Y', '2013-12-20 22:07:09'),
(1536, 6, 0x4175746f72202855736572494429, 'Y', '2013-12-20 22:07:09'),
(1537, 6, 0x416c63616e63652064656c206d656e73616a65, 'Y', '2013-12-20 22:07:09'),
(1538, 6, 0x4665636861, 'Y', '2013-12-20 22:10:56'),
(1539, 6, 0x4f7264656e, 'Y', '2013-12-20 22:10:56'),
(1732, 6, 0x466563686120646520637265616369f36e20286e7565766f73207072696d65726f29, 'Y', '2013-12-20 22:10:56'),
(1733, 6, 0x466563686120646520637265616369f36e2028616e746967756f73207072696d65726f29, 'Y', '2013-12-20 22:10:56'),
(1734, 6, 0x4665636861206465206d6f6469666963616369f36e20286e7565766f73207072696d65726f29, 'Y', '2013-12-20 22:10:56'),
(1735, 6, 0x4665636861206465206d6f6469666963616369f36e2028616e746967756f73207072696d65726f29, 'Y', '2013-12-20 22:10:56'),
(1736, 6, 0x4efa6d65726f2064652076697369746173, 'Y', '2013-12-20 22:10:56'),
(1772, 6, 0x4d6f737472617220726567697374726f2064656c20666f726f, 'Y', '2013-12-20 22:10:56'),
(1785, 6, 0x4e4f5441, 'Y', '2013-12-20 22:10:56'),
(1787, 6, 0x4f63756c746f, 'Y', '2013-12-20 22:10:56'),
(1826, 6, 0x41637475616c697a6172, 'Y', '2013-12-20 22:12:34'),
(2107, 6, 0x456e63756573746173, 'Y', '2013-12-20 22:12:34'),
(2360, 6, 0x257320656e7472616461, 'Y', '2013-12-20 22:12:34'),
(2361, 6, 0x257320656e747261646173, 'Y', '2013-12-20 22:12:34'),
(2362, 6, 0x4d617263617220746f646f7320636f6d6f206c65ed646f73, 'Y', '2013-12-20 22:12:34'),
(2364, 6, 0x4572726f72, 'Y', '2013-12-20 22:12:34'),
(2365, 6, 0x417272696261, 'Y', '2013-12-20 22:12:34'),
(2367, 6, 0x52657370756573746120616e746572696f72, 'Y', '2013-12-20 22:12:34'),
(5505, 25, 0x53636f72207072656c696d696e6172, 'Y', '2013-12-23 21:27:16'),
(3154, 37, 0xd092d185d0bed0b4, 'Y', '2014-01-06 11:07:48'),
(545, 21, '', 'Y', '2014-01-06 12:34:15'),
(547, 21, '', 'Y', '2014-01-06 12:34:15'),
(5597, 37, 0xd097d0b020d0b4d0b020d0b0d0bad182d0b8d0b2d0b8d180d0b0d182d0b520d0b2d0b0d188d0b8d18fd18220d0b0d0bad0b0d183d0bdd18220d0b820d0bfd0bed182d0b2d18ad180d0b4d0b8d182d0b520d180d0b5d0b3d0b8d181d182d180d0b0d186d0b8d18fd182d0b02c20d189d0b520d092d0b820d0b1d18ad0b4d0b520d0bfd180d0b0d182d0b5d0bd20d0bad0bed0b420d0b7d0b020d0b2d0b0d0bbd0b8d0b4d0b0d186d0b8d18f20d0bdd0b020d0b8d0bcd0b5d0b9d0bbd0b02e, 'Y', '2014-01-09 09:29:26'),
(5596, 37, 0xd090d0bad0b0d183d0bdd18220d0b7d0b020d0b2d0bbd0b8d0b7d0b0d0bdd0b5, 'Y', '2014-01-09 09:31:37'),
(66, 1, 0x547976e472722c2064656e6e61207369646120e47220656e626172742066f67220616e76e46e646172652065642061646d696e697374726174697661207570706769667465722e, 'Y', '2014-01-11 14:23:00'),
(69, 1, '', 'Y', '2014-01-11 14:23:00'),
(75, 1, 0x4b756e646520696e746520686974746120616e676976656e207475726e6572696e672e, 'Y', '2014-01-11 14:23:00'),
(109, 1, 0x5370656c2074696c6c61677421, 'Y', '2014-01-11 14:23:00'),
(122, 1, 0x53766172, 'Y', '2014-01-11 14:23:00'),
(127, 1, 0xc46e647261, 'Y', '2014-01-11 14:23:00'),
(128, 1, 0x466c7974746120757070, 'Y', '2014-01-11 14:23:00'),
(129, 1, 0x466c79747461206e6572, 'Y', '2014-01-11 14:23:00'),
(135, 1, 0xd676657273e47474617265, 'Y', '2014-01-11 14:23:00'),
(156, 1, 0x50726f66696c207570706461746572616421, 'Y', '2014-01-11 14:23:00'),
(160, 1, 0x496e74726f64756b74696f6e2074696c6c20447261676f6e, 'Y', '2014-01-11 14:24:15'),
(161, 1, 0x4f667461207374e46c6c6461206672e5676f72202846415129, 'Y', '2014-01-11 14:24:15'),
(163, 1, '', 'Y', '2014-01-11 14:24:15'),
(164, 1, 0x76656d206269647261722074696c6c20447261676f6e, 'Y', '2014-01-11 14:24:15'),
(165, 1, 0x4ce46e6b6172, 'Y', '2014-01-11 14:24:15'),
(168, 1, 0x496e7374616c6c6174696f6e7320696e737472756b74696f6e6572, 'Y', '2014-01-11 14:24:15'),
(169, 1, 0x6f6d2064752076696c6c2068612064696e206567656e20447261676f6e, 'Y', '2014-01-11 14:24:15'),
(170, 1, 0x4c61646461206e657220447261676f6e206be46c6c61, 'Y', '2014-01-11 14:25:28'),
(173, 1, 0x447261676f6e2070726f6a656b74736964612070e520736f75726365666f726765, 'Y', '2014-01-11 14:25:28'),
(175, 1, 0x416e6e61743a, 'Y', '2014-01-11 14:25:28'),
(176, 1, 0x4c616e64, 'Y', '2014-01-11 14:25:28'),
(177, 1, 0x53746164, 'Y', '2014-01-11 14:25:28'),
(178, 1, 0x4ce46e, 'Y', '2014-01-11 14:25:28'),
(182, 1, 0x4943512d6e756d6d6572, 'Y', '2014-01-11 14:25:28'),
(183, 1, 0x5370656c20696e7374e46c6c6e696e676172, 'Y', '2014-01-11 14:25:28'),
(179, 1, 0x4b6c756262, 'Y', '2014-01-11 14:26:47'),
(180, 1, 0x48656d73696461, 'Y', '2014-01-11 14:26:47'),
(184, 1, 0x486f6262696573, 'Y', '2014-01-11 14:26:47'),
(185, 1, 0x53797373656c73e474746e696e67, 'Y', '2014-01-11 14:26:47'),
(187, 1, 0xc46e6472612070726f66696c, 'Y', '2014-01-11 14:26:47'),
(193, 1, 0x4176, 'Y', '2014-01-11 14:26:47'),
(194, 1, '', 'Y', '2014-01-11 14:26:47'),
(195, 1, 0x44726167206f6368206d656464656c616e64656e, 'Y', '2014-01-11 14:26:47'),
(196, 1, 0x48656c61206272e4646574206f6368206d656464656c616e64656e, 'Y', '2014-01-11 14:26:47'),
(197, 1, 0x56657274696b616c, 'Y', '2014-01-11 14:26:47'),
(198, 1, 0x486f7269736f6e74656c6c, 'Y', '2014-01-11 14:28:02'),
(206, 1, '', 'Y', '2014-01-11 14:28:02'),
(207, 1, 0x416e76e46e6420776562626ce4736172656e7320696e7374e46c6c6e696e676172, 'Y', '2014-01-11 14:28:02'),
(210, 1, 0x4e61747465746964, 'Y', '2014-01-11 14:28:02'),
(212, 1, '', 'Y', '2014-01-11 14:28:02'),
(213, 1, '', 'Y', '2014-01-11 14:28:02'),
(214, 1, '', 'Y', '2014-01-11 14:28:02'),
(216, 1, 0x557070, 'Y', '2014-01-11 14:28:02'),
(217, 1, 0x48f6676572, 'Y', '2014-01-11 14:28:02'),
(218, 1, 0x4e6572, 'Y', '2014-01-11 14:28:02'),
(40, 40, 0x44657363756c70652c2065737361207065647261207465726961207365206d617461646f2c206d61732073756963ed64696f206ee36f20e9207065726d697469646f206e657373612072656772612e, 'Y', '2014-01-19 14:14:45'),
(2746, 40, 0x44657363756c70652c20756d6120726567726120646573636f6e68656369646120666f692075736164612e, 'Y', '2014-01-19 14:14:45'),
(5055, 40, 0x4d756461206120636f6e666967757261e7e36f20646f206a6f676f3a2072656772612c2074616d616e686f20646f20746162756c6569726f2c2076616e746167656d2c2074656d706f2c206176616c6961e7e36f, 'Y', '2014-01-19 14:14:45'),
(5528, 40, 0x7265677261202573, 'Y', '2014-01-19 14:14:45'),
(2634, 40, 0x496e666f726d61e7f5657320646f20706c61636172, 'Y', '2014-01-19 14:16:01'),
(2418, 40, 0x44697265746f7220646f20746f726e65696f, 'Y', '2014-01-19 14:22:48'),
(2420, 40, 0x4e65676f636961e7e36f207061726120222573223a, 'Y', '2014-01-19 14:22:48'),
(2421, 40, 0x5072657061726f, 'Y', '2014-01-19 14:22:48'),
(2422, 40, 0x436f6e766964616e646f, 'Y', '2014-01-19 14:22:48'),
(2426, 40, 0x6170616761646f, 'Y', '2014-01-19 14:22:48'),
(2438, 40, 0x766572206465202573, 'Y', '2014-01-19 14:23:45'),
(2445, 40, 0x52656cf367696f2070617261646f, 'Y', '2014-01-19 14:23:45'),
(2447, 40, 0x52656cf367696f20757361646f, 'Y', '2014-01-19 14:24:09'),
(2449, 40, 0x4573636f706f, 'Y', '2014-01-19 14:24:09'),
(2456, 40, 0x4c69737461206465207369747561e7e36f206465206a6f676f73, 'Y', '2014-01-19 14:25:33');
INSERT INTO `Translations` (`Original_ID`, `Language_ID`, `Text`, `Translated`, `Updated`) VALUES
(2457, 40, 0x446566696e6972207072696f726964616465, 'Y', '2014-01-19 14:25:33'),
(2581, 40, 0x4f206a6f676f20636f6d65e76f7521, 'Y', '2014-01-19 14:35:42'),
(2582, 40, 0x50726570617261e7e36f20646f206a6f676f, 'Y', '2014-01-19 14:35:42'),
(2583, 40, 0x4a6f676f207465726d696e61646f, 'Y', '2014-01-19 14:35:42'),
(2584, 40, 0x4a6f676f20656d2070726f67726573736f, 'Y', '2014-01-19 14:35:42'),
(2630, 40, 0x285629, 'Y', '2014-01-19 16:51:32'),
(2631, 40, 0x284b29, 'Y', '2014-01-19 14:37:36'),
(2632, 40, 0x506f6e747561e7e36f20706f7220746572726974f372696f, 'Y', '2014-01-19 14:37:36'),
(2633, 40, 0x506f6e747561e7e36f20706f7220e1726561, 'Y', '2014-01-19 14:37:36'),
(2635, 40, 0x44616d65, 'Y', '2014-01-19 14:37:36'),
(2636, 40, 0x546572726974f372696f, 'Y', '2014-01-19 14:37:36'),
(2637, 40, 0x506564726173206d6f72746173, 'Y', '2014-01-19 14:37:36'),
(2638, 40, 0x506564726173, 'Y', '2014-01-19 14:37:36'),
(2639, 40, 0x50726973696f6e6569726f73, 'Y', '2014-01-19 14:37:36'),
(2640, 40, 0x4578747261, 'Y', '2014-01-19 14:37:36'),
(2641, 40, 0x506c61636172, 'Y', '2014-01-19 14:37:47'),
(2642, 40, 0x526573756c7461646f, 'Y', '2014-01-19 14:37:47'),
(5485, 40, 0x4d7564617220656d61696c206520617669736f73, 'Y', '2014-01-19 16:52:55'),
(731, 40, 0x45646974617220706173746173, 'Y', '2014-01-19 16:55:33'),
(738, 40, 0x4d756461722064757261e7e36f2064652066e972696173, 'Y', '2014-01-19 16:55:33'),
(739, 40, 0x456e747261722064652066e972696173, 'Y', '2014-01-19 16:55:33'),
(746, 40, 0x4e6f6d65206461207061737461, 'Y', '2014-01-19 16:55:33'),
(955, 40, 0x46e972696173, 'Y', '2014-01-19 16:55:33'),
(956, 40, 0x44657363756c70652c20766f63ea206ee36f20706f6465206d7564617220612064757261e7e36f206461732066e972696173206e6f206d6f6d656e746f2e, 'Y', '2014-01-19 16:55:33'),
(957, 40, 0x44757261e7e36f206461732066e972696173206d756461646121, 'Y', '2014-01-19 16:55:33'),
(958, 40, 0x41646963696f6e6172, 'Y', '2014-01-19 16:55:33'),
(959, 40, 0x417061676172, 'Y', '2014-01-19 17:02:18'),
(960, 40, 0x4573636f6c686120612064757261e7e36f206461732066e972696173, 'Y', '2014-01-19 16:55:33'),
(962, 40, 0x426f61732066e97269617321, 'Y', '2014-01-19 16:58:17'),
(1131, 40, 0x44657363756c70652c20766f63ea207072656369736120746572206e6f206ded6e696d6f202564206469617320646973706f6eed76656973207061726120656e747261722064652066e9726961732e, 'Y', '2014-01-19 16:58:17'),
(1210, 40, 0x4564697461722062696f677261666961206520696e666f726d61e7f5657320706573736f616973, 'Y', '2014-01-26 16:40:36'),
(1391, 40, 0x4de178696d6f206465206c696e686173206e6120746162656c61, 'Y', '2014-01-19 16:58:17'),
(1392, 40, 0x6573636f6c68657220756d2076616c6f72206d656e6f7220616a756461206f207365727669646f72202876656a61206f2046415129, 'Y', '2014-01-19 16:58:17'),
(1393, 40, 0x4d756461722061706172ea6e63696120736f6d656e7465206e65737465206e6176656761646f72, 'Y', '2014-01-19 16:58:17'),
(1540, 40, 0x4ee36f20706f73736f2061646963696f6e6172206575206d65736d6f20636f6d6f20636f6e7461746f, 'Y', '2014-01-19 16:58:17'),
(1541, 40, 0x557375e172696f20646573636f6e68656369646f, 'Y', '2014-01-19 16:58:17'),
(1542, 40, 0x436f6e7461746f206170616761646f21, 'Y', '2014-01-19 17:02:18'),
(1543, 40, 0x436f6e7461746f2073616c766f21, 'Y', '2014-01-19 16:59:12'),
(1544, 40, 0x41706167617220636f6e7461746f, 'Y', '2014-01-19 16:59:12'),
(1547, 40, 0x41706167617220636f6e7461746f, 'Y', '2014-01-19 16:59:12'),
(2178, 40, 0x466f746f206170616761646121, 'Y', '2014-01-19 17:02:18'),
(2186, 40, 0x41706167617220666f746f, 'Y', '2014-01-19 17:02:18'),
(4581, 40, 0x506f72206661766f722074656e68612063657274657a6120717565206120666f746f20656e7669616461206ee36f2074656e68612070726f626c656d6173206175746f726169732120446f20636f6e7472e172696f20656c6120736572e120617061676164612e, 'Y', '2014-01-26 13:46:13'),
(5715, 40, 0x4f20757375e172696f20636f6d204944205b25735d206ee36f20666f6920656e636f6e747261646f, 'Y', '2014-01-19 17:06:34'),
(5716, 40, 0x46616c7461206f206e6f6d6520646f20757375e172696f2064617320707265746173, 'Y', '2014-01-19 17:06:34'),
(5717, 40, 0x46616c7461206f206e6f6d6520646f20757375e172696f20646173206272616e636173, 'Y', '2014-01-19 17:06:34'),
(5718, 40, 0x54726f63617220636f72, 'Y', '2014-01-19 17:06:34'),
(5719, 40, 0x5369747561e7e36f206465206eed76656c, 'Y', '2014-02-06 15:49:03'),
(5720, 40, 0x4d7564616ee761, 'Y', '2014-01-19 17:06:34'),
(5722, 40, 0x496e74657276616c6f20646520636f6e6669616ee761, 'Y', '2014-01-19 17:06:34'),
(5723, 40, 0x4eed76656c20454c4f, 'Y', '2014-01-19 17:06:34'),
(5492, 40, 0x4f627365727661e7f56573, 'Y', '2014-01-19 18:19:38'),
(5493, 40, 0x417669736f7320617475616c697a61646f7321, 'Y', '2014-01-19 17:08:15'),
(5479, 40, 0x46616c74612073657520656e64657265e76f21, 'Y', '2014-01-19 20:44:00'),
(5480, 40, 0x53616c766172206d7564616ee761, 'Y', '2014-01-19 18:18:55'),
(1843, 40, 0x506f6ced7469636120646f20447261676f6e476f536572766572202844475329, 'Y', '2014-02-05 19:57:33'),
(1852, 40, 0x4120706f6ced7469636120646f20447261676f6e476f5365727665722076616c652061207061727469722064652031342f64657a2f323030382e204ef37320726573657276616d6f73206f206469726569746f206465206d75646172206573736120706f6ced7469636120706572696f646963616d656e74652e205175616c71756572206d7564616ee76120736572e12061766973616461206e6f203c686f6d6520666f72756d2f6c6973742e7068703f666f72756d3d313e66f372756d206465206e6f74ed6369617328656d20696e676cea73293c2f686f6d653e202e, 'Y', '2014-02-05 20:11:00'),
(1777, 40, 0x52656772617320646520636f6e64757461206520506f6ced74696361206465205072697661636964616465, 'Y', '2014-01-19 18:26:59'),
(1848, 40, 0x506f6ced74696361206465205072697661636964616465, 'Y', '2014-01-19 18:26:59'),
(1851, 40, 0x446174612064652065666574697661e7e36f, 'Y', '2014-01-19 18:26:59'),
(1874, 40, 0x5465726d6f7320646f205365727669e76f202d2052656772617320646520436f6e64757461206520506f6ced74696361206465205072697661636964616465, 'Y', '2014-01-19 18:26:59'),
(3337, 40, 0x4f20656e64657265e76f20656c657472f46e69636f20e9206d616e7469646f20636f6e666964656e6369616c2c2076656a61206120506f6ced7469636120646520507269766163696461646520646f20444753206e6173203c6120687265663d22257322207461726765743d22646773544f53223e52656772617320646520436f6e647574613c2f613e2e, 'Y', '2014-02-05 23:51:19'),
(5578, 40, 0x53657520656e64657265e76f20656c657472f46e69636f2028656d61696c2920e920757361646f207061726120656e76696172206120766f63ea206e6f7661732073656e686173206f75207061726120696e666f726d617220736f627265206f207365727669646f722e, 'Y', '2014-01-19 20:24:39'),
(5487, 40, 0x50617261207265636562657220617669736f73206f7520756d61206e6f76612073656e686120286361736f206573717565e761292c20756d20656e64657265e76f20656c657472f46e69636f207072656369736120736572206361646173747261646f2e, 'Y', '2014-01-19 20:24:12'),
(5488, 40, 0x506173736f73207061726120616c74657261722073657520656e64657265e76f3a, 'Y', '2014-01-19 20:22:34'),
(5489, 40, 0x436f6c6f71756520756d206e6f766f20656e64657265e76f2076e16c69646f206520636c6971756520656d202253616c766172206d7564616ee76122, 'Y', '2014-01-19 20:00:03'),
(5490, 40, 0x556d61206d656e736167656d20636f6d20756d2063f36469676f2064652076616c696461e7e36f20736572e120656e766961646120616f20736575206e6f766f20656e64657265e76f2e, 'Y', '2014-01-19 20:02:22'),
(5597, 40, 0x50617261206174697661722073756120636f6e7461206520636f6e6669726d61722073657520636164617374726f2c20756d2063f36469676f2064652076616c696461e7e36f20736572e120656e766961646f20616f2073657520656e64657265e76f2e, 'Y', '2014-01-19 20:22:09'),
(5491, 40, 0x416f206163657373617220612070e167696e6120656e7669616461206e65737361206d656e736167656d20766f63ea2076616c696461206f206e6f766f20656e64657265e76f2c206520656e74e36f20656c652073756273746974756972e1206f20656e64657265e76f20616e7469676f2e, 'Y', '2014-01-19 20:07:36'),
(5673, 40, 0x556d61206d656e736167656d20636f6d20756d2063f36469676f2064652076616c696461e7e36f20666f6920656e766961646120616f20656e64657265e76f2071756520766f63ea2070656469752e0d0a416f20616272697220612070e167696e6120656e7669616461206e65737361206d656e736167656d206f2073657520656e64657265e76f20656c657472f46e69636f20e92076616c696461646f2065206120726573706563746976612061e7e36f202825732920736572e1206578656375746164612e, 'Y', '2014-02-06 11:54:23'),
(5579, 40, 0x4361736f206f636f7272616d2070726f626c656d617320616f206d7564617220646520656e64657265e76f3a, 'Y', '2014-01-19 20:08:55'),
(5580, 40, 0x506f72206661766f722072656c617465206f207365752070726f626c656d61206e6f203c686f6d652025733e66f372756d206465207375706f7274653c2f686f6d653e20286520736520646573656a61722066617aea2d6c6f2074616d62e96d20656d20696e676cea732c20e92062656d2076696e646f292e, 'Y', '2014-01-19 20:18:39'),
(5476, 40, 0x456e64657265e76f20696e76e16c69646f21, 'Y', '2014-01-19 20:26:58'),
(5477, 40, 0x456e64657265e76f2076616c696461646f21, 'Y', '2014-01-19 20:26:58'),
(5478, 40, 0x456e64657265e76f206ee36f2076616c696461646f21, 'Y', '2014-01-19 20:26:58'),
(5601, 40, 0x56616c6964617220656d61696c, 'Y', '2014-01-19 20:26:58'),
(5670, 40, 0x456e64657265e76f2076616c696461646f21, 'Y', '2014-02-06 11:54:23'),
(5675, 40, 0x416c746572617220656e64657265e76f, 'Y', '2014-01-19 20:27:34'),
(3370, 40, 0x546f646f73206f73206a6f676f73206f627365727661646f73, 'Y', '2014-01-24 23:44:27'),
(1564, 40, 0x546f646f73206f73206a6f676f73, 'Y', '2014-01-24 23:33:59'),
(1586, 40, 0x546f646173, 'Y', '2014-01-24 23:33:59'),
(1591, 40, 0x546f646f73, 'Y', '2014-01-24 23:33:59'),
(2293, 40, 0x546f646f73, 'Y', '2014-01-24 23:40:26'),
(2301, 40, 0x546f646f73, 'Y', '2014-01-24 23:40:26'),
(2320, 40, 0x546f646173, 'Y', '2014-01-24 23:40:26'),
(2509, 40, 0x546f646173, 'Y', '2014-01-24 23:41:39'),
(2974, 40, 0x546f646f7320557375e172696f73, 'Y', '2014-01-24 23:41:39'),
(3183, 40, 0x546f646f73206f7320766f746f73, 'Y', '2014-01-24 23:41:39'),
(3196, 40, 0x546f646f73206f73207469706f73, 'Y', '2014-01-24 23:41:39'),
(3372, 40, 0x546f646f73206f73206a6f676f73207465726d696e61646f73, 'Y', '2014-01-24 23:43:57'),
(3373, 40, 0x546f646f73206f73206a6f676f7320656d2070726f67726573736f, 'Y', '2014-01-24 23:43:57'),
(2646, 40, 0x54656d706f2072657374616e7465, 'Y', '2014-01-24 23:49:39'),
(3439, 40, 0x5061ed7365732072657374616e746573, 'Y', '2014-01-24 23:49:39'),
(3186, 40, 0x23, 'Y', '2014-01-25 08:17:58'),
(3245, 40, 0x23566f746f73, 'Y', '2014-01-25 08:17:58'),
(4898, 40, 0x23566974f372696173, 'Y', '2014-01-25 08:17:58'),
(4680, 7, 0x4ee17a657620726f7a6573746176656eed206a652070f8ed6c69b920646c6f7568fd20286d61782e202573207a6e616bf9292e, 'Y', '2016-07-20 18:39:13'),
(2348, 40, 0x2573202873656d20766f746f29, 'Y', '2014-01-25 08:17:58'),
(4501, 40, 0x25732028617469766f73292c202573202870726120636f6d65e7617229, 'Y', '2014-01-26 16:36:56'),
(2307, 40, 0x2573203d206e6f766f207265637572736f207061726120766f746172, 'Y', '2014-01-25 08:17:58'),
(2312, 40, 0x2573203d206d6f7374726172207369747561e7e36f202573202b202573202b202573, 'Y', '2014-01-25 08:17:58'),
(4498, 40, 0x25732064696173, 'Y', '2014-01-25 08:17:58'),
(2924, 40, 0x2573206a6f676f20636f6d65e76f75, 'Y', '2014-01-25 08:17:58'),
(4812, 40, 0x2573206a6f676f73206ae120657869737469616d, 'Y', '2014-01-25 08:22:46'),
(2923, 40, 0x2573206a6f676f7320636f6d65e76172616d, 'Y', '2014-01-25 08:22:46'),
(4585, 40, 0x25732064652066e972696173, 'Y', '2014-01-25 08:22:46'),
(3808, 40, 0x2573206d65736573, 'Y', '2014-01-25 08:22:46'),
(4790, 40, 0x257320646520257320726f64616461287329, 'Y', '2014-06-04 17:36:10'),
(5190, 40, 0x257320706f6e746f73206465206b6f6d69, 'Y', '2014-01-25 08:22:46'),
(2347, 40, 0x257320706f6e746f73, 'Y', '2014-01-25 08:22:46'),
(5188, 40, 0x257320706564726173, 'Y', '2014-01-25 08:22:46'),
(2929, 40, 0x25732076657a657320286d65736d6f20636f6e7669746529, 'Y', '2014-01-25 08:22:46'),
(4702, 7, '', 'Y', '2016-07-20 16:29:41'),
(4922, 40, 0x546f726e65696f206465202573, 'Y', '2014-01-25 08:49:11'),
(4921, 40, 0x546f726e65696f205072697661646f206465202573, 'Y', '2014-01-25 08:49:11'),
(3961, 40, 0x2820616c74657261646f20706f722025732029, 'Y', '2014-01-25 08:49:11'),
(5191, 40, 0x2874656d706f206162736f6c75746f29, 'Y', '2014-01-25 08:49:11'),
(4017, 40, 0x2876656a612074616d62e96d206f62732e2061626169786f29, 'Y', '2014-01-25 08:49:11'),
(4953, 40, 0x28477275706f2023257329, 'Y', '2014-01-25 08:49:11'),
(3567, 40, 0x284de178696d6f29, 'Y', '2014-01-25 08:49:11'),
(3566, 40, 0x284ded6e696d6f29, 'Y', '2014-01-25 08:51:18'),
(2392, 40, 0x28736f6d656e7465206d6f64657261646f7229, 'Y', '2014-01-25 08:51:18'),
(3807, 40, 0x31206dea73, 'Y', '2014-01-25 08:51:18'),
(3674, 40, 0x3120726f64616461, 'Y', '2014-01-25 08:51:18'),
(2928, 40, 0x312076657a2028706f7220636f6e7669746529, 'Y', '2014-01-25 08:51:18'),
(4716, 7, 0x4de920726f7a6573746176656eed, 'Y', '2016-07-20 18:40:45'),
(3097, 40, 0x2c30, 'Y', '2014-02-18 23:36:02'),
(3099, 40, 0x2c35, 'Y', '2014-02-18 23:36:02'),
(5731, 40, 0x31303020706f6e746f7320454c4f203d2031206b7975, 'Y', '2014-01-25 08:53:13'),
(2323, 40, 0x3c303e, 'Y', '2014-01-25 10:17:41'),
(2324, 40, 0x3d30, 'Y', '2014-01-25 08:53:13'),
(2325, 40, 0x3e30, 'Y', '2014-01-25 08:53:13'),
(3166, 40, 0x3f3f3f, 'Y', '2014-01-25 08:53:13'),
(3163, 40, 0x3f3f3f, 'Y', '2014-01-25 08:53:13'),
(707, 40, 0x556d612065736361646120646520706564726173, 'Y', '2014-01-25 08:53:13'),
(703, 40, 0x556d61207265646520646520706564726173, 'Y', '2014-01-25 08:53:13'),
(2675, 40, 0x496c68617320416c616e6461, 'Y', '2014-01-25 09:01:46'),
(4231, 40, 0x4163656974617220636f6e76697465, 'Y', '2014-01-25 09:01:46'),
(5669, 40, 0x436f6e7461206174697661646121, 'Y', '2014-01-25 09:01:46'),
(5674, 40, 0x4174697661e7e36f20646520636f6e7461, 'Y', '2014-01-25 09:01:46'),
(1783, 40, 0x436f6e746120626c6f717565616461202d2061636573736f206e656761646f, 'Y', '2014-01-25 09:01:46'),
(5595, 40, 0x436f6e74612063726961646121, 'Y', '2014-01-25 09:01:46'),
(5596, 40, 0x436f6e746120706172612061636573736172, 'Y', '2014-01-25 09:01:46'),
(3855, 40, '', 'Y', '2014-01-25 09:01:46'),
(3854, 40, 0x436f6e6669726d61722d636f6e76697465, 'Y', '2014-02-19 22:12:27'),
(4371, 40, 0x526573756c7461646f732064612041e7e36f, 'Y', '2014-01-30 22:15:36'),
(5653, 40, 0x41e7f56573, 'Y', '2014-01-25 09:03:13'),
(3173, 40, 0x417469766f, 'Y', '2014-01-25 09:03:13'),
(4803, 40, 0x417469766f, 'Y', '2014-01-25 09:03:13'),
(2290, 40, 0x41646963696f6e6172206e6f766f207265637572736f, 'Y', '2014-01-25 09:03:13'),
(3403, 40, 0x41646963696f6e6172206e6f74ed636961, 'Y', '2014-01-25 09:03:13'),
(5142, 40, 0x41646963696f6e617220726f64616461, 'Y', '2014-01-25 09:03:13'),
(3669, 40, 0x41646963696f6e61722074656d706f2070617261, 'Y', '2014-01-25 09:03:13'),
(3668, 40, 0x41646963696f6e61722074656d706f2070617261206a6f676f20646f20746f726e65696f, 'Y', '2014-02-16 09:51:45'),
(3717, 40, 0x41646963696f6e61722054656d706f, 'Y', '2014-01-25 09:03:13'),
(2498, 40, 0x41646963696f6e617220e02073616c6120646520657370657261, 'Y', '2014-01-25 09:05:55'),
(3397, 40, 0x41646963696f6e61722064697265746f7220646520746f726e65696f, 'Y', '2014-01-25 09:05:55'),
(3992, 40, 0x41646963696f6e6172206f20757375e172696f205b25735d20616f20746f726e65696f, 'Y', '2014-01-25 09:05:55'),
(3671, 40, 0x61646963696f6e61646f28732920616f2074656d706f2e, 'Y', '2014-01-25 09:05:55'),
(4770, 40, 0x416a75737461722056616e746167656d, 'Y', '2014-01-25 09:05:55'),
(5519, 40, 0x416a75737461722056616e746167656d, 'Y', '2014-01-25 09:05:55'),
(4705, 40, 0x416a7573746172204b6f6d69, 'Y', '2014-01-25 09:05:55'),
(5520, 40, 0x416a7573746172204b6f6d69, 'Y', '2014-01-25 09:05:55'),
(2434, 40, 0x44657363616e736f, 'Y', '2014-01-25 09:11:10'),
(2652, 40, 0x56616c6f72657320617475616973, 'Y', '2014-01-25 09:15:11'),
(2653, 40, 0x4170616761722076616c6f726573, 'Y', '2014-01-25 09:16:18'),
(2654, 40, 0x4c696d7061722076616c6f726573, 'Y', '2014-01-25 09:16:18'),
(5035, 40, 0x76616c6f726573, 'Y', '2014-01-25 09:16:18'),
(2658, 40, 0x4170616761722070657266696c, 'Y', '2014-01-25 09:19:04'),
(1590, 40, 0x656e636f6e747261722049442d64652d757375e172696f, 'Y', '2014-01-25 09:19:04'),
(1566, 40, 0x4a6f676f73207465726d696e61646f73, 'Y', '2014-01-25 09:19:04'),
(1587, 40, 0x52656c6163696f6e61646f2d612d6a6f676f73, 'Y', '2014-01-25 09:19:04'),
(1588, 40, 0x4ee36f2d72656c6163696f6e61646f2d612d6a6f676f73, 'Y', '2014-01-25 09:19:04'),
(2656, 40, 0x43617272656761722070657266696c, 'Y', '2014-01-25 09:19:04'),
(3357, 40, 0x4a6f6761646120646f206164762e, 'Y', '2014-01-25 09:19:04'),
(1565, 40, 0x4a6f676f7320656d2070726f67726573736f, 'Y', '2014-01-25 09:19:04'),
(2655, 40, 0x53616c76617220636f6d6f2070616472e36f, 'Y', '2014-01-25 09:19:04'),
(2657, 40, 0x53616c7661722070657266696c, 'Y', '2014-01-25 09:20:26'),
(1592, 40, 0x53656c6563696f6e617220706173746173, 'Y', '2014-01-25 09:20:26'),
(2321, 40, 0x4ee36f20766f74616461, 'Y', '2014-01-25 09:20:26'),
(3354, 40, 0x557375e172696f2064617320502e, 'Y', '2014-01-25 09:20:26'),
(3356, 40, 0x56657a20646f20757375e172696f, 'Y', '2014-01-25 09:20:26'),
(3355, 40, 0x557375e172696f2064617320422e, 'Y', '2014-01-25 09:20:26'),
(2322, 40, 0x566f74616461, 'Y', '2014-01-25 09:20:26'),
(3093, 40, 0x526573747269e7f56573206465206eed76656c, 'Y', '2014-01-25 09:21:45'),
(3068, 40, 0x526573747269e7f56573, 'Y', '2014-01-25 09:21:45'),
(2925, 40, 0x73656d707265, 'Y', '2014-01-25 09:22:08'),
(2933, 40, 0x6465706f69732064652025732064696173, 'Y', '2014-01-25 09:23:28'),
(2932, 40, 0x6465706f6973206465203120646961, 'Y', '2014-01-25 09:23:28'),
(2931, 40, 0x61636569746f75202573206a6f676f, 'Y', '2014-01-25 09:23:54'),
(2930, 40, 0x61636569746f75202573206a6f676f73, 'Y', '2014-01-25 09:24:33'),
(2934, 40, 0x657370657265206174e9202573, 'Y', '2014-01-25 09:24:33'),
(2859, 40, 0x4573636f6c68657520707265746173, 'Y', '2014-01-25 09:26:07'),
(3651, 40, 0x4a6f6761646f722064617320707265746173, 'Y', '2014-01-25 09:26:07'),
(2853, 40, 0x507265746173, 'Y', '2014-01-25 09:26:37'),
(2942, 40, 0x507265746173, 'Y', '2014-01-25 09:26:37'),
(2852, 40, 0x5072657461732f4272616e636173206f7520696e646566696e696461, 'Y', '2014-01-25 09:29:03'),
(3083, 40, 0x507265746173, 'Y', '2014-01-25 09:29:03'),
(3087, 40, 0x436f7220507265746120466f727465, 'Y', '2014-01-25 09:29:03'),
(2863, 40, 0x4575206573636f6c686f20707265746173, 'Y', '2014-01-25 09:29:03'),
(4559, 40, 0x536f7520617320707265746173, 'Y', '2014-01-25 09:29:03'),
(2478, 40, 0x436f6c6f636172207065647261207072657461, 'Y', '2014-01-25 09:29:03'),
(4557, 40, 0x566f63ea206a6f676120636f6d206173206272616e636173206520707265746173, 'Y', '2014-01-25 11:55:21'),
(4563, 40, 0x566f63ea206a6f676120636f6d20617320707265746173, 'Y', '2014-01-25 09:29:03'),
(4564, 40, 0x566f63ea2070726f766176656c6d656e7465206a6f676120636f6d20617320707265746173, 'Y', '2014-01-25 09:29:25'),
(3088, 40, 0x436f72204272616e636120466f727465, 'Y', '2014-01-25 09:33:27'),
(3084, 40, 0x4272616e636173, 'Y', '2014-01-25 09:33:27'),
(2864, 40, 0x4575206573636f6c686f206272616e636173, 'Y', '2014-01-25 09:33:27'),
(4562, 40, 0x536f75206173206272616e636173, 'Y', '2014-01-25 09:33:27'),
(2479, 40, 0x436f6c6f636172207065647261206272616e6361, 'Y', '2014-01-25 09:33:27'),
(1752, 40, 0x5175656d20e920576869746520526f626f743f, 'N', '2014-01-25 09:33:27'),
(2860, 40, 0x4573636f6c686575206272616e636173, 'Y', '2014-01-25 09:35:48'),
(3652, 40, 0x4a6f6761646f7220646173206272616e636173, 'Y', '2014-01-25 09:35:48'),
(4714, 36, 0x4672697373c3ad747665, 'Y', '2015-09-19 16:50:03'),
(2854, 40, 0x4272616e636173, 'Y', '2014-01-25 09:36:41'),
(2943, 40, 0x4272616e636173, 'Y', '2014-01-25 09:36:41'),
(4561, 40, 0x566f63ea206a6f676120636f6d206173206272616e636173, 'Y', '2014-01-25 09:36:41'),
(4565, 40, 0x566f63ea2070726f766176656c6d656e7465206a6f676120636f6d206173206272616e636173, 'Y', '2014-01-25 09:37:03'),
(3092, 40, 0x416a75737465206465206b6f6d69, 'Y', '2014-01-25 09:38:57'),
(5186, 40, 0x6c696d697461646f20706f722025732070656472617320286de1782e29, 'Y', '2014-01-25 09:40:27'),
(5185, 40, 0x6c696d697461646f20706f722025732070656472617320286ded6e2e29, 'Y', '2014-01-25 09:40:27'),
(5187, 40, 0x7065647261732063616c63756c61646173, 'Y', '2014-01-25 09:41:03'),
(3952, 40, 0x4572726f2070617261206f20757375e172696f202573, 'Y', '2014-01-25 09:41:58'),
(4946, 40, 0x4d616e7469646f20706f72202573, 'Y', '2014-08-09 09:21:45'),
(5766, 40, 0x4a6f6761646120417475616c, 'Y', '2014-01-25 09:43:19'),
(2925, 25, 0xc3ae6e746f74646561756e61, 'Y', '2014-11-14 11:23:30'),
(5506, 40, 0x4a6f676164612023257320656d205b25735d, 'Y', '2014-01-25 09:44:11'),
(2555, 40, 0x4a6f6761646f722072656d6f7669646f21, 'Y', '2014-01-25 10:02:32'),
(3377, 40, 0x5b25735d20636f6d206173206272616e6361732c2076657a20646173206272616e636173, 'Y', '2014-04-23 20:36:55'),
(3378, 40, 0x5b25735d20636f6d206173206272616e6361732c2076657a2064617320707265746173, 'Y', '2014-04-23 20:36:55'),
(3379, 40, 0x5b25735d20636f6d206173207072657461732c2076657a20646173206272616e636173, 'Y', '2014-04-23 20:36:55'),
(3380, 40, 0x5b25735d20636f6d206173207072657461732c2076657a2064617320707265746173, 'Y', '2014-04-23 20:36:55'),
(5421, 40, 0x4a6f6761646120696e6170726f7072696164613a2064697363726570e26e636961206e61206a6f6761646120232573, 'Y', '2014-01-25 10:02:32'),
(5439, 40, 0x506f72206661766f7220636f6e6669726d652071756520766f63ea20717565722072656d6f766572207365752053474621, 'Y', '2014-01-25 10:02:32'),
(5758, 40, 0x4a6f67616461205b25735d206465202573, 'Y', '2014-01-25 10:02:32'),
(5767, 40, 0x4d6f737472617220636f6d656e74e172696f206461206a6f6761646120617475616c, 'Y', '2014-01-25 10:02:32'),
(2650, 40, 0x50657266696c2073616c766f20636f6d6f2070616472e36f21, 'Y', '2014-01-25 10:04:58'),
(2651, 40, 0x50657266696c2073616c766f21, 'Y', '2014-01-25 10:04:58'),
(5291, 40, 0x4f207175652073e36f205065726669732064652042757363613f, 'Y', '2014-01-25 10:05:16'),
(3417, 40, 0x4d6f7374726172206d696e686120636c6173736966696361e7e36f, 'Y', '2014-01-25 10:50:23'),
(4558, 40, 0x50, 'Y', '2014-01-25 11:54:42'),
(4556, 40, 0x502b42, 'Y', '2014-01-25 11:54:42'),
(3082, 40, 0x436f72206573636f6c686964612070656c6f206d65737472652d64652d6a6f676f2070617261206a6f676f2d6dfa6c7469706c6f, 'Y', '2014-01-25 11:54:42'),
(3081, 40, 0x436f72206573636f6c686964612070656c6f206d65737472652d64652d6a6f676f, 'Y', '2014-01-25 11:54:42'),
(4553, 40, 0x4d616e75616c, 'Y', '2014-01-25 11:54:42'),
(4555, 40, 0x4e69676972692028736f7274656172206272616e636173206f752070726574617329, 'Y', '2014-01-25 11:54:42'),
(4554, 40, 0x4e6967697269, 'Y', '2014-01-25 11:54:42'),
(4560, 40, 0x42, 'Y', '2014-01-25 11:55:21'),
(5219, 40, 0x25732065737061e76f287329206c69767265287329206465202573206a6f6761646f726573, 'Y', '2014-01-25 11:57:28'),
(2935, 40, 0x2e2e2e2073756120636f722070726f76e176656c20e9202531247320636f6d20253224732064652076616e746167656d2c202533242e3166206465206b6f6d69, 'Y', '2014-02-20 21:24:43'),
(2936, 40, 0x2e2e2e2073756120636f72207365726961202531247320636f6d20253224732064652076616e746167656d2065202533242e3166206465206b6f6d69, 'Y', '2014-02-20 21:24:43'),
(4548, 40, 0x556d206a6f676f20e02065737065726120e9203c623e7669e176656c3c2f623e207175616e646f20756d206a6f6761646f72206174656e646520617320726573747269e7f56573207065646964617320656d3a, 'Y', '2014-02-07 23:52:11'),
(2464, 40, 0x41646d696e2e206a6f676f, 'Y', '2014-01-25 12:08:19'),
(2461, 40, 0x41646d696e697374726172206a6f676f7320646f20746f726e65696f, 'Y', '2014-02-16 09:51:45'),
(2870, 40, 0x4465706f697320646f2032ba206c616e6365206465206b6f6d69206f206a6f676f20636f6d65e76172e1, 'Y', '2014-01-25 12:08:19'),
(4552, 40, 0x436f6e76697465206ae120726563656269646f206f75206ae12061636569746f20706172612065737465206a6f676f2d6dfa6c7469706c6f21, 'Y', '2016-08-06 20:54:30'),
(5609, 3, 0x506f732e, 'Y', '2014-03-27 20:57:05'),
(2535, 40, 0x4170726f7661e7e36f20646520636f6e76697465, 'Y', '2014-01-25 12:08:19'),
(2533, 40, 0x5265616c6d656e7465207175657220617061676172206f20636f6e766974652072657365727661646f20646573746520757375e172696f3f, 'Y', '2016-08-06 20:49:45'),
(5510, 40, 0x5265616c6d656e74652071756572206170616761722065737465206a6f676f2061676f72613f, 'Y', '2016-08-06 20:55:58'),
(2534, 40, 0x5265616c6d656e74652071756572206170616761722065737465206a6f6761646f722061636569746f3f, 'Y', '2016-08-06 20:49:45'),
(5433, 40, 0x45736372697461207275696d2064652076616e746167656d2070617261202573, 'Y', '2014-01-25 12:15:18'),
(5416, 40, 0x436f6e666c69746f2064652074616d616e686f20646f20746162756c6569726f3a2065737065726176612d7365202573206d617320656e636f6e74726f752d7365202573, 'Y', '2014-01-25 12:15:18'),
(2857, 40, 0x5042, 'Y', '2014-01-25 12:15:18'),
(5681, 40, 0x76616e746167656d2063616c63756c616461, 'Y', '2014-01-25 12:15:18'),
(4696, 40, 0x446573616669616e7465, 'Y', '2014-02-19 00:02:45'),
(2501, 40, 0x4d7564617220636f72, 'Y', '2014-01-25 12:15:18'),
(2500, 40, 0x4d7564617220636f7220652076616e746167656d, 'Y', '2014-01-25 12:15:18'),
(2499, 40, 0x4d756461722076616e746167656d, 'Y', '2014-01-25 12:15:18'),
(2502, 40, 0x4d75646172206f7264656d, 'Y', '2014-01-25 12:19:49'),
(2504, 40, 0x4d6172636172206a6f676f, 'Y', '2014-01-25 12:19:49'),
(2861, 40, 0x4573636f6c68657220636f72, 'Y', '2014-01-25 12:19:49'),
(4701, 40, 0x52656cf367696f20617469766f20656d2066696e732064652073656d616e61, 'Y', '2014-01-25 12:19:49'),
(4583, 40, 0x52656cf367696f2070617261646f20656d2066696e732064652073656d616e61, 'Y', '2014-01-25 12:19:49'),
(2951, 40, 0x52656cf367696f2064657465726d696e61646f2070656c6f206d61696f72206c616e63652041424552544f206e6f206b6f6d69, 'Y', '2014-01-25 12:19:49'),
(2952, 40, 0x436f722064657465726d696e6164612070656c6f206d61696f72206c616e6365205345435245544f206e6f206b6f6d69, 'Y', '2014-01-25 12:19:49'),
(5679, 40, 0x4120636f6c756e612027257327206d6f7374726120612076616e746167656d206f7520737561206c696d697461e7e36f2c20706f72206578656d706c6f3a203c623e353c2f623e206f75203c623e5b302c395d3c2f623e206f75203c623e25733c2f623e, 'Y', '2014-01-25 12:19:49'),
(4546, 40, 0x4120636f6c756e612027436f6e666967757261e7f5657327206d6f7374726120612070726f76e176656c20636f722c2076616e746167656d2065206b6f6d692e, 'Y', '2014-01-25 12:19:49'),
(1568, 40, 0x7369747561e7e36f20636f6d706c657461206170656e61732070617261206a6f676f73207465726d696e61646f73, 'Y', '2014-01-25 12:35:37'),
(3303, 40, 0x416476657273e172696f7320646f206a6f6761646f7220253124733a2025322473, 'Y', '2014-01-25 12:39:04'),
(4929, 40, 0x557375e172696f206520616476657273e172696f7320666f72616d206e6f746966696361646f7321, 'Y', '2014-01-25 12:39:04'),
(2841, 40, 0x436f6e6469e7f56573206ee36f2073617469736665697461732070617261207065726d697469722061646963696f6e61722074656d706f2070656c6f20757375e172696f205b25735d206e6f206a6f676f205b25735d, 'Y', '2014-01-25 14:37:06'),
(2558, 40, 0x56616e746167656d20636f6e76656e63696f6e616c, 'Y', '2014-01-25 14:37:06'),
(4518, 40, 0x436f6e76656e63696f6e616c, 'Y', '2014-01-25 14:37:06'),
(3118, 40, 0x436f6e766572746572, 'Y', '2014-01-25 14:37:06'),
(2865, 40, 0x4c616e636520617475616c, 'Y', '2014-01-25 14:37:06'),
(2451, 40, 0x526f6461646120617475616c, 'Y', '2014-01-25 14:37:06'),
(4697, 40, 0x446566656e736f72, 'Y', '2014-01-25 14:37:06'),
(5508, 40, 0x417061676172206a6f676f, 'Y', '2014-01-25 14:37:06'),
(2515, 40, 0x417061676172206a6f6761646f722061636569746f, 'Y', '2014-01-25 14:37:06'),
(2514, 40, 0x4170616761722072657365727661, 'Y', '2014-01-25 16:50:11'),
(2531, 40, 0x41706167617220636f6e766974652072657365727661646f, 'Y', '2014-01-25 16:50:11'),
(4786, 40, 0x54656d706f206573676f7461646f, 'Y', '2014-04-09 08:27:24'),
(3116, 40, 0x4447532d454c4f, 'Y', '2014-01-25 16:50:11'),
(3115, 40, 0x6eed76656c2d444753, 'Y', '2014-01-25 16:50:11'),
(2950, 40, 0x446976696469722065204573636f6c686572, 'Y', '2014-01-25 16:50:11'),
(2542, 40, 0x566f63ea20616365697461206f20636f6e766974653f, 'Y', '2014-01-25 16:50:11'),
(2546, 40, 0x566f63ea20636f6e636f72646120656d20636f6d65e76172206f206a6f676f2061676f72613f, 'Y', '2014-01-25 16:50:11'),
(2879, 40, 0x447572616e74652061206e65676f636961e7e36f206465206b6f6d692d6a7573746f206f2072656cf367696f206669636120617469766f2e, 'Y', '2014-01-25 16:50:11'),
(2876, 40, 0x43616461206c616e6365206465206b6f6d69207072656369736120736572206d61697320616c746f20717565206f20fa6c74696d6f206c616e636520646f20616476657273e172696f2e, 'Y', '2014-01-25 16:54:16'),
(5446, 40, 0x4361646120757375e172696f20706f646520656e76696172206170656e617320756d205347462e, 'Y', '2014-01-25 16:54:16'),
(4650, 40, 0x4a6f6761646f72204569646f476f, 'Y', '2014-01-25 16:54:16'),
(3121, 40, 0x454c4f, 'Y', '2014-01-25 16:54:16'),
(2647, 40, 0x56415a4941, 'Y', '2014-01-25 16:54:16'),
(2648, 40, 0x544142554c4549524f2d56415a494f, 'Y', '2014-01-25 16:54:16'),
(2851, 40, 0x546f646f732070726570617261646f73207061726120636f6d65e76172206f206a6f676f3f, 'Y', '2014-01-25 16:54:16'),
(2726, 40, 0x4e65676f636961e7e36f206465204b6f6d69204a7573746f, 'Y', '2014-01-25 16:54:16'),
(4584, 40, 0x4e65676f636961e7e36f206465204b6f6d69204a7573746f3a205b25735d207072f378696d6f, 'Y', '2014-01-25 16:54:16'),
(2428, 40, 0x5469706f206465204b6f6d69204a7573746f, 'Y', '2014-01-25 17:03:33'),
(2918, 40, 0x636f6e666967757261e7e36f206465206b6f6d692d6a7573746f, 'Y', '2014-01-25 17:03:33'),
(5414, 40, 0x4f206172717569766f206ee36f20e920756d205347462076e16c69646f21, 'Y', '2014-01-25 17:03:33'),
(5432, 40, 0x4172717569766f206ee36f20656e636f6e747261646f, 'Y', '2014-01-25 17:03:33'),
(3374, 40, 0x4a6f676f73207465726d696e61646f73207061726120253124733a2025322473, 'Y', '2014-01-25 17:03:33'),
(2732, 40, 0x5465726d696e61646f, 'Y', '2014-01-25 17:03:33'),
(5460, 40, 0x506f72206661766f72206c656961206f204641512070617261207361626572206f206d656c686f72206a6569746f2064652062616978617220756d205347462e, 'Y', '2014-01-25 17:03:33'),
(2893, 40, 0x56616e746167656d2d6c69767265, 'Y', '2014-01-25 17:03:33'),
(2649, 40, 0x544142554c4549524f2d434845494f, 'Y', '2014-01-25 17:03:33'),
(2645, 40, 0x5072696f726964616465, 'Y', '2014-01-25 21:37:22'),
(764, 36, 0xc396726dc3a96e796f72737ac3a167, 'Y', '2015-09-18 21:14:08'),
(2548, 40, 0x4f206d65737472652d64652d6a6f676f20257320617061676f75206f2073657520636f6e766974652070617261206f206a6f676f2025732e, 'Y', '2014-01-26 11:05:06'),
(2846, 40, 0x4f206d65737472652d64652d6a6f676f20257320636f6e7669646120766f63ea207061726120756d202573206a6f676f2d6dfa6c7469706c6f2e, 'Y', '2014-01-26 11:05:06'),
(2554, 40, 0x4f206d65737472652d64652d6a6f676f202573207265766f676f752073756120706172746963697061e7e36f206e6f206a6f676f2025732e, 'Y', '2014-01-26 11:05:06'),
(2559, 40, 0x4f206d65737472652d64652d6a6f676f206ae120657374e1206e65737465206a6f676f2065206ee36f20706f64652073657220636f6e76696461646f2e, 'Y', '2016-08-06 20:50:56'),
(2568, 40, 0x4f206d65737472652d64652d6a6f676f20e9206e6563657373e172696f2065206ee36f20706f646520736572206170616761646f20636f6d20657373612061e7e36f2e, 'Y', '2014-01-26 11:05:06'),
(2563, 40, 0x4f206d65737472652d64652d6a6f676f206ee36f20646576652074657220726573657276612065206ee36f20706f646520736572206170616761646f2e, 'Y', '2014-01-26 11:05:06'),
(2496, 40, 0x496e666f726d61e7e36f20646f73206a6f6761646f726573, 'Y', '2014-01-26 11:05:06'),
(2855, 40, 0x477275706f202331, 'Y', '2014-01-26 11:05:06'),
(3302, 40, 0x41706f6e74612070617261206f73206a6f676f7320656d2070726f67726573736f20636f6d206f20616476657273e172696f205b25735d, 'Y', '2014-01-26 11:37:12'),
(3375, 40, 0x4a6f676f7320656d2070726f67726573736f20646520253124733a2025322473, 'Y', '2014-01-26 11:37:12'),
(3383, 40, 0x4a6f676f7320656d2070726f67726573736f20646f7320757375e172696f73, 'Y', '2014-01-26 11:37:12'),
(5885, 40, 0x2c206eed76656c2d54205b25735d5b454c4f2025312e32665d, 'Y', '2015-01-17 17:02:04'),
(4588, 40, 0x4a6f676f7320656d2070726f67726573736f20646f20757375e172696f, 'Y', '2014-01-26 11:37:12'),
(4819, 40, 0x4d657573206a6f676f7320656d2070726f67726573736f206e6f20746f726e65696f20232573, 'Y', '2014-01-26 11:37:12'),
(4820, 40, 0x4d657573206a6f676f7320656d2070726f67726573736f20636f6d206f20616476657273e172696f205b25735d206e6f20746f726e65696f20232573, 'Y', '2014-01-26 11:37:12'),
(3301, 40, 0x41706f6e74612070617261206f73206a6f676f73207465726d696e61646f7320636f6d206f20616476657273e172696f205b25735d, 'Y', '2014-01-26 11:46:56'),
(3384, 40, 0x4a6f676f73207465726d696e61646f7320646f7320757375e172696f73, 'Y', '2014-01-26 11:46:56'),
(3569, 40, 0x4ded6e696d6f206465206a6f676f73207465726d696e61646f73, 'Y', '2014-01-26 11:46:56'),
(3579, 40, 0x4de178696d6f206465206a6f676f73207465726d696e61646f73, 'Y', '2014-01-26 11:46:56'),
(3580, 40, 0x45737065726120756d206efa6d65726f20706f73697469766f206465206a6f676f73206176616c6961646f73207465726d696e61646f73, 'Y', '2014-01-26 11:46:56'),
(4486, 40, 0x4f20757375e172696f207072656369736120746572206e6f206ded6e696d6f202573206a6f676f73207465726d696e61646f732e, 'Y', '2014-01-26 11:46:56'),
(4487, 40, 0x4f20757375e172696f207072656369736120746572206e6f206ded6e696d6f202573206a6f676f73206176616c6961646f73207465726d696e61646f732e, 'Y', '2014-01-26 11:46:56'),
(4589, 40, 0x4a6f676f73207465726d696e61646f7320646f20757375e172696f, 'Y', '2014-01-26 11:46:56'),
(5044, 40, 0x566f63ea2074656d20706f75636f73206a6f676f73206176616c6961646f73207465726d696e61646f732e, 'Y', '2014-01-26 11:46:56'),
(5548, 40, 0x4efa6d65726f206465206a6f676f73206176616c6961646f73207465726d696e61646f732c20706f72206578656d706c6f2022257322, 'Y', '2014-01-26 11:46:56'),
(4073, 40, 0x496e662e20646520757375e172696f206e6f20746f726e65696f, 'Y', '2014-01-26 11:49:30'),
(3387, 40, 0x496e666f726d61e7f5657320646573746520757375e172696f, 'Y', '2016-08-06 20:54:30'),
(629, 40, 0x4f20717565207369676e6966696361206f20226170726f76656974616d656e746f2220646520756d20757375e172696f3f, 'Y', '2014-01-26 11:56:41'),
(630, 40, 0xc920612072617ae36f20646f206efa6d65726f20646520766974f372696173206520646f206efa6d65726f206465206a6f676f73206176616c6961646f732064697370757461646f7320706f7220756d206a6f6761646f722e204973736f20706f6465206e6f7320646172206d61697320696e666f726d61e7e36f20736f627265206f206eed76656c20617475616c20646520756d206a6f6761646f722e204f203c686f6d65206661712e7068703f726561643d74266361743d3323456e7472793234303e6a69676f3c2f686f6d653e2074616d62e96d20e9206c657661646f20656d20636f6e74612e0d0a0d0a5175616e646f20756d206a6f6761646f72207465726d696e6120616c67756e73206a6f676f73206176616c6961646f732c20756d206170726f76656974616d656e746f20706572746f2064652035302520696e646963612071756520736575206eed76656c206465766520657374617220636f727265746f2e20556d206170726f76656974616d656e746f206d61696f7220717565203735252070726f766176656c6d656e746520696e6469636120756d206eed76656c206d7569746f2061626169786f20646f20636f727265746f2c206520756d2076616c6f72206d656e6f7220717565203235252070726f766176656c6d656e746520696e6469636120756d206eed76656c206d7569746f20616c746f2e, 'Y', '2014-01-26 13:18:21'),
(2179, 40, 0x466f746f2073616c766121, 'Y', '2014-01-26 13:41:56'),
(2181, 40, 0x45646974617220666f746f, 'Y', '2014-01-26 13:41:56'),
(2189, 40, 0x4f627365727661e7f5657320736f627265206120666f746f, 'Y', '2014-01-26 13:52:44'),
(2208, 40, 0x45646974617220666f746f, 'Y', '2014-01-26 13:41:56'),
(3225, 40, 0x496e64696361646f722070617261206578697374ea6e63696120646520666f746f, 'Y', '2014-01-26 13:41:56'),
(4502, 40, 0x466f746f20646520757375e172696f20286f63756c746129, 'Y', '2014-01-26 13:41:56'),
(4503, 40, 0x466f746f20646520757375e172696f, 'Y', '2014-01-26 13:41:56'),
(2187, 40, 0x4c696d6974657320646f206172717569766f20646520666f746f6772616669613a20612064696d656e73e36f206de178696d6120e920257320782025732070ed786569733b206f2074616d616e686f206de178696d6f20646f206172717569766f20e9202573204b422e, 'Y', '2014-01-26 13:50:51'),
(2188, 40, 0x466f726d61746f7320646520696d6167656d207375706f727461646f733a206a7065672c206769662c20706e67, 'Y', '2014-01-26 13:52:13'),
(2185, 40, 0x53616c76617220666f746f, 'Y', '2014-01-26 13:53:43'),
(2184, 40, 0x466f746f20617475616c, 'Y', '2014-01-26 13:54:04'),
(2182, 40, 0x456e7669617220666f746f, 'Y', '2014-01-26 13:54:20'),
(4500, 40, 0x4a6f676f732d6dfa6c7469706c6f73, 'Y', '2014-01-26 14:13:36'),
(3338, 40, 0x7374617475732d2573206465205b25735d2074656d706f72617269616d656e7465206465736174697661646f206578636573736f2064652075736f21, 'Y', '2014-01-26 14:19:48'),
(4497, 40, 0x6ee36f, 'Y', '2014-01-26 14:20:51'),
(2770, 40, 0x44657363756c70652c20657373612066756e63696f6e616c696461646520666f692064657361746976616461206e65737465207365727669646f722e, 'Y', '2016-08-06 20:52:31'),
(2193, 40, 0x41746976612072656a6569e7e36f2061206a6f676f73206176616c6961646f732067616e686f7320706f722074656d706f2028666f726120646520746f726e65696f7329, 'Y', '2014-01-26 16:19:21'),
(2195, 40, 0x6ded6e696d6f20646520646961732073656d206f20757375e172696f206a6f67617220656d207175616c71756572206a6f676f, 'Y', '2014-01-26 16:19:21'),
(2194, 40, 0x4120766974f372696120646520756d206a6f676f2067616e686f20706f722074656d706f20736572e120226465737072657a6164612220286973746f20e92c206f206a6f676f206ee36f20736572e1206176616c6961646f292c207365206f207065726465646f72206ee36f2066657a206e656e68756d61206a6f6761646120656d207175616c71756572206a6f676f20706f7220756d2064657465726d696e61646f2074656d706f2e, 'Y', '2014-01-26 16:19:21'),
(1784, 40, 0x496e666f726d61e7e36f2062696f6772e16669636120286f63756c746129, 'Y', '2014-01-26 16:40:36'),
(1390, 40, 0x6d756465206170656e61732061206f7264656d2c20616c7465726172206f20746578746f206ee36f20e920706f7373ed76656c2061717569, 'Y', '2014-01-26 16:51:43'),
(312, 40, 0x44617461, 'Y', '2014-01-26 17:56:11'),
(505, 40, 0x6d6f6b75, 'Y', '2014-01-26 17:56:11'),
(535, 40, 0x796f7365, 'Y', '2014-01-26 17:56:11'),
(545, 40, 0x6b7975, 'Y', '2014-01-26 17:56:11'),
(547, 40, 0x64616e, 'Y', '2014-01-26 17:56:11'),
(597, 40, 0x62796f2d796f6d69, 'Y', '2014-01-26 17:56:11'),
(645, 40, 0x686f736869, 'Y', '2014-01-26 17:56:11'),
(655, 40, 0x74656e67656e, 'Y', '2014-01-26 17:56:11'),
(657, 40, 0x676f62616e, 'Y', '2014-01-26 17:56:11'),
(665, 40, 0x6a6f73656b69, 'Y', '2014-01-26 17:56:11'),
(667, 40, 0x667573656b69, 'Y', '2014-01-26 17:56:54'),
(669, 40, 0x73656b69, 'Y', '2014-01-26 17:56:54'),
(686, 40, 0x74656e756b69, 'Y', '2014-01-26 17:56:54'),
(690, 40, 0x73656e7465, 'Y', '2014-01-26 17:56:54'),
(692, 40, 0x676f7465, 'Y', '2014-01-26 17:56:54'),
(696, 40, 0x64616d65, 'Y', '2014-01-26 17:56:54'),
(698, 40, 0x6c6962657264616465287329, 'Y', '2014-01-26 17:56:54'),
(700, 40, 0x68616e65, 'Y', '2014-01-26 17:56:54'),
(702, 40, 0x67657461, 'Y', '2014-01-26 17:56:54'),
(704, 40, 0x73616e72656e736569, 'Y', '2014-01-26 17:56:54'),
(706, 40, 0x73686963686f, 'Y', '2014-01-26 18:54:45'),
(722, 40, 0x5061737461, 'Y', '2014-01-26 18:54:45'),
(741, 40, 0x456e7472616461, 'Y', '2014-01-26 18:54:45'),
(742, 40, 0x4c697865697261, 'Y', '2014-01-26 18:54:45'),
(743, 40, 0x456e766961646173, 'Y', '2014-01-26 18:54:45'),
(2503, 40, 0x436f6d65e76172206a6f676f, 'Y', '2014-01-26 19:02:49'),
(3235, 40, 0x466f726d6173, 'Y', '2014-01-26 19:02:49'),
(3333, 40, 0x546f726e65696f, 'Y', '2014-01-26 19:02:49'),
(4530, 40, 0x4d616e75616c, 'Y', '2014-01-26 19:02:49'),
(4700, 40, 0x4a6f676f2d64652d666f726d61, 'Y', '2014-01-26 19:02:49'),
(4710, 40, 0x4a6f676f20646520466f726d61, 'Y', '2014-01-26 19:02:49'),
(5197, 40, 0x53656d20666f726d6173, 'Y', '2014-01-26 19:02:49'),
(5738, 40, 0x4f627365727661e7f56573, 'Y', '2014-01-26 19:02:49'),
(1550, 40, 0x416e6f7461e7f56573, 'Y', '2014-01-26 19:08:00'),
(1853, 40, 0x4d696e696174757261, 'Y', '2014-01-26 19:08:00'),
(2093, 40, 0x43726961646f, 'Y', '2014-01-26 19:08:00'),
(2234, 40, 0x4e4f5641, 'Y', '2014-01-26 19:08:00'),
(4671, 40, 0x494420646120466f726d61, 'Y', '2014-01-26 19:08:00'),
(4672, 40, 0x4e6f6d6520646120466f726d61, 'Y', '2014-01-26 19:08:00'),
(4675, 40, 0x53616c76617220466f726d61, 'Y', '2014-01-26 19:08:00'),
(4676, 40, 0x45646974617220466f726d61, 'Y', '2014-01-26 19:08:00'),
(4677, 40, 0x56697375616c697a617220466f726d61, 'Y', '2014-01-26 19:08:00'),
(4707, 40, 0x466f726d61, 'Y', '2014-01-26 19:08:00'),
(4715, 40, 0x546f64617320617320666f726d6173, 'Y', '2014-01-26 19:08:23'),
(4716, 40, 0x4d696e68617320666f726d6173, 'Y', '2014-01-26 19:08:23'),
(5196, 40, 0x466f726d612070617261204a6f676f, 'Y', '2014-02-08 09:50:25'),
(1942, 40, 0x4f627365727661e7e36f2064652041646d696e2e, 'Y', '2014-01-31 09:33:32'),
(1943, 40, 0x4572726f, 'Y', '2014-01-26 19:09:19'),
(1959, 40, 0x546578746f, 'Y', '2014-01-26 19:09:19'),
(3216, 40, 0x4f63756c74617220746578746f73, 'Y', '2014-01-26 19:09:19'),
(4661, 40, 0x43617465676f726961, 'Y', '2014-01-26 19:09:19'),
(3189, 40, 0x7072696d656972612070e167696e61, 'Y', '2014-01-26 19:10:03'),
(3192, 40, 0xfa6c74696d612070e167696e61, 'Y', '2014-01-26 19:10:03'),
(3349, 40, 0x4a6f676f, 'Y', '2014-01-26 19:10:03'),
(3447, 40, 0x446566696e6972204f7264656d, 'Y', '2014-01-26 19:10:03'),
(3454, 40, 0x4e6f6d65, 'Y', '2014-01-26 19:10:03'),
(3465, 40, 0x5469706f, 'Y', '2014-01-26 19:10:03'),
(4590, 40, 0x6c6174696d, 'Y', '2014-02-18 23:59:34'),
(3352, 40, 0x53656d206a6f676f7320e020657370657261, 'Y', '2014-01-26 19:51:57'),
(3353, 40, 0x53656d206e6f766173206d656e736167656e73, 'Y', '2014-01-26 19:51:57'),
(3448, 40, 0x4d6f64656c6f2073616c766f21, 'Y', '2014-01-26 19:51:57'),
(3452, 40, 0x417061676172206d6f64656c6f, 'Y', '2014-01-26 19:51:57'),
(3456, 40, 0x4e6f766f206d6f64656c6f, 'Y', '2014-01-26 19:51:57'),
(3464, 40, 0x417061676172206d6f64656c6f, 'Y', '2014-01-26 19:51:57'),
(4708, 40, 0x496e666f726d61e7e36f20646120466f726d61, 'Y', '2014-01-26 19:51:57'),
(5218, 40, 0x4a6f676f2d6dfa6c7469706c6f, 'Y', '2014-01-26 19:51:57'),
(5667, 40, 0x706f7274756775ea73202842726173696c29, 'Y', '2014-02-18 23:54:47'),
(2107, 40, 0x506573717569736173, 'Y', '2014-01-26 20:10:07'),
(2156, 40, 0x416a756461, 'Y', '2014-01-26 20:10:07'),
(3434, 40, 0x5175616e746964616465, 'Y', '2014-02-06 16:29:23'),
(3437, 40, 0x4ee36f206573636f6c6869646f, 'Y', '2014-02-06 15:40:22'),
(4720, 40, 0x50e167696e61, 'Y', '2014-01-26 20:10:07'),
(4723, 40, 0x5065737175697361, 'Y', '2014-01-26 20:10:07'),
(5207, 40, 0x4d696d6f73, 'Y', '2014-01-26 20:10:07'),
(5599, 40, 0x4f627365727661e7e36f, 'Y', '2014-01-26 20:10:07'),
(2276, 40, 0x456469746f72, 'Y', '2014-01-26 20:11:15'),
(2332, 40, 0x566f746172, 'Y', '2014-01-26 20:11:15'),
(2333, 40, 0x56657220766f746f, 'Y', '2014-01-26 20:11:15'),
(2343, 40, 0xda6c74696d6f20766f746f, 'Y', '2014-01-26 20:11:15'),
(2346, 40, 0x53616c76617220766f746f, 'Y', '2014-01-26 20:11:15'),
(4652, 40, 0x73656d20766f746f73, 'Y', '2014-01-26 20:11:15'),
(1241, 40, 0x4d6f646572616e646f, 'Y', '2014-01-26 20:12:37'),
(1251, 40, 0x4170726f766172, 'Y', '2014-01-26 20:12:37'),
(1253, 40, 0x456e76696172, 'Y', '2014-01-26 20:12:37'),
(1525, 40, 0x6d616973206e6f7661, 'Y', '2014-01-26 20:12:37'),
(1785, 40, 0x4f42532e, 'Y', '2014-01-26 20:12:37'),
(2365, 40, 0x546f706f, 'Y', '2014-01-26 20:12:37'),
(2370, 40, 0x46696e616c, 'Y', '2014-01-26 20:12:37'),
(4693, 40, 0x4e756d2e, 'Y', '2014-01-26 20:12:37'),
(2467, 40, 0x54616d616e686f, 'Y', '2014-01-26 20:13:41'),
(2469, 40, 0x456469746172, 'Y', '2014-01-26 20:13:41'),
(2471, 40, 0x4a6f676172, 'Y', '2014-01-26 20:13:41'),
(2473, 40, 0x4c617267757261, 'Y', '2014-01-26 20:13:41'),
(2474, 40, 0x416c74757261, 'Y', '2014-01-26 20:13:41'),
(2476, 40, 0x5065647261, 'Y', '2014-01-26 20:13:41'),
(2481, 40, 0x4d61726361646f72, 'Y', '2014-01-26 20:13:41'),
(2490, 40, 0x4574697175657461, 'Y', '2014-01-26 20:13:41'),
(2494, 40, 0x4a6f67616461, 'Y', '2014-01-26 20:13:41'),
(2629, 40, 0x4e6f766f20476f62616e, 'Y', '2014-01-26 20:13:41'),
(5226, 36, 0x417a20697474656e6920616461746f6b617420656c6d656e746865746564207361626c6f6e6bc3a96e74206bc3a973c591626272652c2074c3b672c3b66c68657465642076616c616d656c79696b20616ac3a16e6c61746f64617420612076c3a172c3b3746572656d62656e20766167792076c3a1726e6f64206b656c6c2c20616dc3ad672076616c616b6920656c666f6761642065677965742e, 'Y', '2015-09-19 18:05:23'),
(5196, 36, 0x4ac3a174737a6d6120616c616b7a6174, 'Y', '2015-09-19 16:50:55'),
(4728, 36, 0xc39a6a20616c616b7a61742d6ac3a174737a6d61, 'Y', '2015-09-19 16:50:55'),
(4711, 36, 0x537a65727ac591, 'Y', '2015-09-19 16:49:20'),
(3040, 36, 0x626f736e79c3a16b, 'Y', '2015-09-19 12:53:22'),
(3015, 36, 0x66696e6e, 'Y', '2015-09-19 12:51:39'),
(3010, 36, 0x6f6c61737a, 'Y', '2015-09-19 12:51:03'),
(3079, 40, 0x496e662e20646f206a6f676f, 'Y', '2014-01-26 20:16:46'),
(5542, 40, 0x4d6575204eed76656c, 'Y', '2014-01-26 20:16:46'),
(2088, 40, 0x4944206461207065737175697361, 'Y', '2014-01-26 20:17:56'),
(2108, 40, 0x4e6f7661207065737175697361, 'Y', '2014-01-26 20:17:56'),
(3169, 40, 0x536f6d61, 'Y', '2014-01-26 20:17:56'),
(4663, 40, 0x4ded6e2e, 'Y', '2014-01-26 20:17:56'),
(4664, 40, 0x4de1782e, 'Y', '2014-01-26 20:17:56'),
(4665, 40, 0x506f6e746f732d6ded6e, 'Y', '2014-01-26 20:17:56'),
(4666, 40, 0x506f6e746f732d6de178, 'Y', '2014-01-26 20:17:56'),
(1599, 40, 0x43616d6172616461, 'Y', '2014-01-26 20:21:34'),
(1600, 40, 0x416d69676f, 'Y', '2014-01-26 20:21:34'),
(1601, 40, 0x4573747564616e7465, 'Y', '2014-01-26 20:21:34'),
(1603, 40, 0x46e3, 'Y', '2014-01-26 20:21:34'),
(1604, 40, 0x4f67726f, 'Y', '2014-01-26 20:21:34'),
(2196, 40, 0x41706172ea6e636961, 'Y', '2014-01-26 20:21:34'),
(2198, 40, 0x53656d20626f74e36f, 'Y', '2014-01-26 20:21:34'),
(2199, 40, 0x494420646f20626f74e36f, 'Y', '2014-01-26 20:21:34'),
(2674, 40, 0x506573736f612064612050e167696e61, 'Y', '2014-01-26 20:21:34'),
(3295, 40, 0x457370656369616c, 'Y', '2014-01-26 20:21:34'),
(3296, 40, 0x5072f3, 'Y', '2014-01-26 20:21:45'),
(757, 40, 0x416c62e26e6961, 'Y', '2014-01-26 20:44:57'),
(758, 40, 0x417267e96c6961, 'Y', '2014-01-26 20:44:57'),
(759, 40, 0x416e646f727261, 'Y', '2014-01-26 20:44:57'),
(760, 40, 0x416e676f6c61, 'Y', '2014-01-26 20:44:57'),
(761, 40, 0x416e74e17274696361, 'Y', '2014-01-26 20:44:57'),
(763, 40, 0x417267656e74696e61, 'Y', '2014-01-26 20:44:57'),
(764, 40, 0x41726dea6e6961, 'Y', '2014-01-26 20:44:57'),
(765, 40, 0x4175737472e16c6961, 'Y', '2014-01-26 20:44:57'),
(766, 40, 0xc1757374726961, 'Y', '2014-01-26 20:44:57'),
(767, 40, 0x417a65726261696ae36f, 'Y', '2014-01-26 20:44:57'),
(768, 40, 0x426168616d6173, 'Y', '2014-01-26 21:54:59'),
(769, 40, 0x42617265696e, 'Y', '2014-01-26 21:54:59'),
(770, 40, 0x4261726261646f73, 'Y', '2014-01-26 21:54:59'),
(771, 40, 0x42616e676c616465636865, 'Y', '2014-01-26 21:54:59'),
(772, 40, 0x4269656c6f72fa73736961, 'Y', '2014-01-26 21:54:59'),
(773, 40, 0x42e96c67696361, 'Y', '2014-01-26 21:54:59'),
(774, 40, 0x42656c697a65, 'Y', '2014-01-26 21:54:59'),
(775, 40, 0x42656e696d, 'Y', '2014-01-26 21:54:59'),
(776, 40, 0x427574e36f, 'Y', '2014-01-26 21:54:59'),
(777, 40, 0x426f6ced766961, 'Y', '2014-01-26 21:54:59'),
(785, 40, 0x43616d626f6a61, 'Y', '2014-01-26 21:55:35'),
(786, 40, 0x43616d6172f56573, 'Y', '2014-01-26 21:55:35'),
(787, 40, 0x43616e6164e1, 'Y', '2014-01-26 21:55:35'),
(788, 40, 0x4361626f205665726465, 'Y', '2014-01-26 21:55:35'),
(791, 40, 0x4368696c65, 'Y', '2014-01-26 21:55:35'),
(792, 40, 0x4368696e61, 'Y', '2014-01-26 21:55:35'),
(793, 40, 0x436f6cf46d626961, 'Y', '2014-01-26 21:55:35'),
(797, 40, 0x436f7374612052696361, 'Y', '2014-01-26 21:56:01'),
(799, 40, 0x43726fe1636961, 'Y', '2014-01-26 21:56:01'),
(800, 40, 0x43756261, 'Y', '2014-01-26 21:56:01'),
(803, 40, 0x44696e616d61726361, 'Y', '2014-01-26 21:56:01'),
(808, 40, 0x45717561646f72, 'Y', '2014-01-26 21:56:19'),
(809, 40, 0x456769746f, 'Y', '2014-01-26 21:56:19'),
(813, 40, 0x457374f46e6961, 'Y', '2014-01-26 21:56:37'),
(814, 40, 0x457469f3706961, 'Y', '2014-01-26 21:56:37'),
(816, 40, 0x46696e6ce26e646961, 'Y', '2014-01-26 21:56:52'),
(817, 40, 0x4672616ee761, 'Y', '2014-01-26 21:57:02'),
(821, 40, 0x416c656d616e6861, 'Y', '2014-01-26 21:57:35'),
(823, 40, 0x4772e9636961, 'Y', '2014-01-26 21:57:35'),
(825, 40, 0x47756174656d616c61, 'Y', '2014-01-26 21:57:35'),
(834, 40, 0xcd6e646961, 'Y', '2014-01-26 21:58:26'),
(835, 40, 0x496e646f6ee9736961, 'Y', '2014-01-26 21:58:26'),
(836, 40, 0x4972e3, 'Y', '2014-01-26 21:58:26'),
(837, 40, 0x497261717565, 'Y', '2014-01-26 21:58:26'),
(838, 40, 0x49726c616e6461, 'Y', '2014-01-26 21:58:26'),
(839, 40, 0x49737261656c, 'Y', '2014-01-26 21:58:26'),
(840, 40, 0x4974e16c6961, 'Y', '2014-01-26 21:58:26'),
(841, 40, 0x4a616d61696361, 'Y', '2014-01-26 21:58:26'),
(842, 40, 0x4a6170e36f, 'Y', '2014-01-26 21:58:26'),
(845, 40, 0x4bea6e6961, 'Y', '2014-01-26 21:58:47'),
(859, 40, 0x4c7578656d627572676f, 'Y', '2014-01-26 21:59:19'),
(862, 40, 0x4d616461676173636172, 'Y', '2014-01-26 21:59:19'),
(864, 40, 0x4d616ce1736961, 'Y', '2014-01-26 21:59:19'),
(871, 40, 0x4de97869636f, 'Y', '2014-01-26 21:59:40'),
(1129, 40, 0x53e972766961, 'Y', '2014-01-26 22:00:38'),
(941, 40, 0x556372e26e6961, 'Y', '2014-01-26 22:01:14'),
(945, 40, 0x55727567756169, 'Y', '2014-01-26 22:01:14'),
(949, 40, 0x56656e657a75656c61, 'Y', '2014-01-26 22:01:14'),
(950, 40, 0x566965746ee3, 'Y', '2014-01-26 22:01:14'),
(937, 40, 0x54757271756961, 'Y', '2014-01-26 22:01:45'),
(919, 40, 0x536f6de16c6961, 'Y', '2014-01-26 22:02:12'),
(921, 40, 0x457370616e6861, 'Y', '2014-01-26 22:02:12'),
(923, 40, 0x537564e36f, 'Y', '2014-01-26 22:02:12'),
(926, 40, 0x5375e9636961, 'Y', '2014-01-26 22:02:12'),
(898, 40, 0x506f72747567616c, 'Y', '2014-01-26 22:02:51'),
(901, 40, 0x526f6dea6e6961, 'Y', '2014-01-26 22:02:51'),
(902, 40, 0x52fa73736961, 'Y', '2014-01-26 22:02:51'),
(886, 40, 0x4e6967e9726961, 'Y', '2014-01-26 22:04:53'),
(887, 40, 0x4e6f7275656761, 'Y', '2014-01-26 22:04:53'),
(889, 40, 0x50617175697374e36f, 'Y', '2014-01-26 22:04:53'),
(892, 40, 0x50616e616de1, 'Y', '2014-01-26 22:04:53'),
(894, 40, 0x5061726167756169, 'Y', '2014-01-26 22:04:53'),
(895, 40, 0x50657275, 'Y', '2014-01-26 22:04:53'),
(897, 40, 0x506f6cf46e6961, 'Y', '2014-01-26 22:04:53'),
(911, 40, 0x53656e6567616c, 'Y', '2014-01-26 22:06:26'),
(915, 40, 0x53696e676170757261, 'Y', '2014-01-26 22:06:26'),
(874, 40, 0x4df46e61636f, 'Y', '2014-01-26 22:07:46'),
(875, 40, 0x4d6f6e67f36c6961, 'Y', '2014-01-26 22:07:46'),
(876, 40, 0x4d6172726f636f73, 'Y', '2014-01-26 22:07:46'),
(877, 40, 0x4d6fe7616d6269717565, 'Y', '2014-01-26 22:07:46'),
(881, 40, 0x4e6570616c, 'Y', '2014-01-26 22:07:46'),
(884, 40, 0x4e69636172e1677561, 'Y', '2014-01-26 22:07:46'),
(856, 40, 0x4ced626961, 'Y', '2014-01-26 22:08:27'),
(858, 40, 0x4c697475e26e6961, 'Y', '2014-01-26 22:08:27'),
(861, 40, 0x4d61636564f46e6961, 'Y', '2014-01-26 22:08:27'),
(865, 40, 0x4d616c6469766173, 'Y', '2014-01-26 22:08:27'),
(833, 40, 0x49736ce26e646961, 'Y', '2014-01-26 22:09:27'),
(740, 40, 0x546f64617320526563656269646173, 'Y', '2014-01-26 22:14:51'),
(3230, 40, 0x50617374612064652064657374696e6f3a, 'Y', '2014-01-26 22:15:35'),
(2207, 40, 0x4d6f766572206d61726361646f72, 'Y', '2014-01-26 22:16:06'),
(3231, 40, 0x4d6f7665722073656c6563696f6e61646173, 'Y', '2014-01-26 22:21:57'),
(3229, 40, 0x496e7665727465722073656c65e7e36f, 'Y', '2014-01-26 22:21:23'),
(3075, 40, 0x4972207061726120612070617374612064652064657374696e6f, 'Y', '2014-01-26 22:23:13'),
(726, 40, 0x45646974617220706173746173, 'Y', '2014-01-26 22:23:54'),
(724, 40, 0x4465737472756972206d656e736167656e732073656c6563696f6e61646173, 'Y', '2014-01-26 22:27:12'),
(744, 40, 0x4d6f76657220706172612061207061737461207175616e646f20726573706f6e646572, 'Y', '2014-01-26 22:28:09'),
(745, 40, 0x4d6f76657220706172612061207061737461, 'Y', '2014-01-26 22:28:09'),
(756, 40, 0x41666567616e697374e36f, 'Y', '2014-01-28 02:03:29'),
(2289, 40, 0x526573756c7461646f7320646120566f7461e7e36f206465204d656c686f726961, 'Y', '2014-01-30 22:15:36'),
(3422, 40, 0x526573756c7461646f20646120566f7461e7e36f206465204d656c686f726961, 'Y', '2014-01-30 22:15:36'),
(3660, 40, 0x436f6c6f63617220726573756c7461646f20646f206a6f676f, 'Y', '2014-01-30 22:15:36'),
(3661, 40, 0x56657220726573756c7461646f20646f206a6f676f, 'Y', '2014-01-30 22:15:36'),
(4789, 40, 0x53616c76617220526573756c7461646f20646f204a6f676f, 'Y', '2014-01-30 22:15:36'),
(4808, 40, 0x436f6c6f6361e7e36f, 'Y', '2014-01-30 22:16:24'),
(2341, 40, 0x56657220566f746f732064652046756e63696f6e616c6964616465, 'Y', '2014-04-11 14:06:24');
INSERT INTO `Translations` (`Original_ID`, `Language_ID`, `Text`, `Translated`, `Updated`) VALUES
(2339, 40, 0x566f746f2064652066756e63696f6e616c69646164652073616c766f21, 'Y', '2014-04-11 14:06:24'),
(4775, 40, 0x526573756c7461646f20646f204a6f676f2064652043616d70656f6e61746f206d756461646f21, 'Y', '2014-01-30 22:19:41'),
(3249, 40, 0x4d656e736167656d, 'Y', '2014-01-30 22:21:48'),
(5217, 40, 0x546f726e65696f20646573636f6e68656369646f205b25735d, 'Y', '2014-01-31 01:53:54'),
(5411, 40, 0x56697375616c697a61e7e36f207265737472697461207061726120757375e172696f73206573706563ed6669636f73, 'Y', '2014-01-31 01:53:54'),
(5229, 40, 0x4e6f766f, 'Y', '2014-01-31 01:54:06'),
(4654, 40, 0x417669736f206461204c6973746120646520557375e172696f73, 'Y', '2014-01-31 08:56:55'),
(4655, 40, 0x49676e6f72617220417669736f206461204c6973746120646520557375e172696f73, 'Y', '2014-01-31 08:56:55'),
(4656, 40, 0x706f6465207365722076617a696f, 'Y', '2014-01-31 08:56:55'),
(4657, 40, 0x4f20757375e172696f2074656d206120636f6e666967757261e7e36f2d64652d636f6e7461746f2072656a65697461722d6d656e736167656d20636f6d206175746f722d64652d626f6c6574696d, 'Y', '2014-01-31 08:56:55'),
(4658, 40, 0x557375e172696f7320416c766f, 'Y', '2014-01-31 08:56:55'),
(4659, 40, 0x557375e172696f206ee36f20656e636f6e747261646f2070617261206f206175746f72205b25735d, 'Y', '2014-01-31 08:56:55'),
(4660, 40, 0x46616c746120612064617461206465207075626c696361e7e36f, 'Y', '2014-01-31 08:56:55'),
(4668, 40, 0x5469706f20646520616c766f, 'Y', '2014-01-31 08:56:55'),
(3219, 40, 0x426f6c6574696d206d61726361646f20636f6d6f206c69646f, 'Y', '2014-01-31 08:58:47'),
(3220, 40, 0x426f6c6574696d206ee36f206c69646f, 'Y', '2014-01-31 08:58:47'),
(3221, 40, 0x566973ed76656c20636f6d6f20757375e172696f, 'Y', '2014-01-31 08:58:47'),
(3222, 40, 0x566973ed76656c20706f722061646d696e6973747261646f7265732c206d6173206ee36f20706f7220766f63ea20636f6d6f20757375e172696f, 'Y', '2014-01-31 08:58:47'),
(4505, 40, 0x56657220426f6c6574696d, 'Y', '2014-01-31 08:58:47'),
(4606, 40, 0x45646974617220426f6c6574696d, 'Y', '2014-01-31 08:58:47'),
(4607, 40, 0x4e6f766f20426f6c6574696d, 'Y', '2014-01-31 08:58:47'),
(3206, 40, 0x566572, 'Y', '2014-01-31 09:02:48'),
(3207, 40, 0x496e666f726d61e7f56573, 'Y', '2014-01-31 09:02:48'),
(3212, 40, 0x51756164726f20646520426f6c6574696e73, 'Y', '2014-01-31 09:02:48'),
(3213, 40, 0x56657220636f6d6f2041646d696e2e, 'Y', '2014-01-31 09:02:48'),
(3214, 40, 0x56657220757375e172696f7320636f6d6f2041646d696e2e, 'Y', '2014-01-31 09:02:48'),
(3218, 40, 0x50756c61722063617465676f726961, 'Y', '2014-01-31 09:02:48'),
(3194, 40, 0x566973ed76656c, 'Y', '2014-01-31 09:04:23'),
(3195, 40, 0x41646d696e69737472617469766f, 'Y', '2014-01-31 09:04:23'),
(3197, 40, 0x4ee36f206c69646f73, 'Y', '2014-01-31 09:04:23'),
(3198, 40, 0x4c69646f73, 'Y', '2014-01-31 09:04:23'),
(3200, 40, 0x4f7574726f73, 'Y', '2014-01-31 09:04:23'),
(3201, 40, 0x416c766f, 'Y', '2014-01-31 09:04:23'),
(3202, 40, 0x45646974617220426f6c6574696d, 'Y', '2014-01-31 09:04:23'),
(3205, 40, 0x566572, 'Y', '2014-01-31 09:04:23'),
(2975, 40, 0x44697265746f722d64652d54, 'Y', '2014-01-31 09:06:22'),
(2976, 40, 0x5061727469636970616e74652d64652d54, 'Y', '2014-01-31 09:06:22'),
(2977, 40, 0x4c697374614465557375e172696f73, 'Y', '2014-01-31 09:06:22'),
(2978, 40, 0x4a6f676f2d6dfa6c7469706c6f, 'Y', '2014-01-31 09:06:22'),
(2979, 40, 0x41646d696e6973747261646f722d43726961646f, 'Y', '2014-01-31 09:06:22'),
(2980, 40, 0x557375e172696f2d65646974e176656c, 'Y', '2014-01-31 09:06:22'),
(2981, 40, 0x5b25735d20706f72202573, 'Y', '2014-01-31 09:06:22'),
(2982, 40, 0x4d617263617220636f6d6f206c69646f, 'Y', '2014-01-31 09:06:22'),
(2983, 40, 0x4d617263617220626f6c6574696d20636f6d6f206c69646f, 'Y', '2014-01-31 09:06:22'),
(3193, 40, 0x45646974e176656c, 'Y', '2014-01-31 09:06:22'),
(2965, 40, 0x496e666f726d61e7f565732064652046756e63696f6e616c696461646573, 'Y', '2015-06-19 06:21:00'),
(2966, 40, 0x4e6f74ed6369612050726976616461, 'Y', '2014-01-31 09:07:59'),
(2967, 40, 0x416efa6e63696f73, 'Y', '2014-01-31 09:07:59'),
(2968, 40, 0x4e6f766f, 'Y', '2014-01-31 09:07:59'),
(2969, 40, 0x50656e64656e7465, 'Y', '2014-01-31 09:07:59'),
(2970, 40, 0x52656a65697461646f, 'Y', '2014-01-31 09:07:59'),
(2972, 40, 0x4172717569766f, 'Y', '2014-01-31 09:07:59'),
(2973, 40, 0x417061676172, 'Y', '2014-01-31 09:07:59'),
(2175, 40, 0x536f6d656e7465207061727469636970616e74657320646f206a6f676f2d6dfa6c7469706c6f205b25735d20706f64656d20637269617220756d20626f6c6574696d2d4a4d2e, 'Y', '2014-01-31 09:12:59'),
(2176, 40, 0x4170656e6173206f20646f6e6f206f7520756d2064697265746f7220646f20746f726e65696f205b25735d20706f64656d20637269617220756d20626f6c6574696d2d64652d6e6f74ed6369612d64652d746f726e65696f2e, 'Y', '2014-01-31 09:12:59'),
(2177, 40, 0x412056616c6964616465207072656369736120736572206174e920257320646961732e, 'Y', '2014-01-31 09:12:59'),
(2961, 40, 0x4d616e7574656ee7e36f, 'Y', '2014-01-31 09:12:59'),
(2962, 40, 0x416efa6e63696f2041646d696e69737472617469766f, 'Y', '2014-01-31 09:12:59'),
(2963, 40, 0x416efa6e63696f20646520546f726e65696f, 'Y', '2014-01-31 09:12:59'),
(2964, 40, 0x4e6f74ed63696120646520546f726e65696f, 'Y', '2014-01-31 09:12:59'),
(1985, 40, 0x56616c696461646520646f20626f6c6574696d, 'Y', '2014-01-31 09:18:07'),
(1986, 40, 0x54ed74756c6f20646f20626f6c6574696d20617573656e7465206f75206d7569746f20637572746f, 'Y', '2014-01-31 09:18:07'),
(1987, 40, 0x4f62732d64652d61646d696e20617573656e7465207061726120626f6c6574696d2065646974e176656c2d706f722d757375e172696f206e61207369747561e7e36f205b25735d2e, 'Y', '2014-01-31 09:18:07'),
(2005, 40, 0x494420646520546f726e65696f, 'Y', '2014-01-31 09:18:07'),
(2166, 40, 0x45646974617220426f6c6574696d, 'Y', '2014-01-31 09:18:07'),
(2168, 40, 0x4a6f676f, 'Y', '2014-01-31 09:18:07'),
(2169, 40, 0x43617465676f726961, 'Y', '2014-01-31 09:18:07'),
(2170, 40, 0x5369747561e7e36f, 'Y', '2014-01-31 09:18:07'),
(2171, 40, 0x5469706f20646520416c766f, 'Y', '2014-01-31 09:18:07'),
(1973, 40, 0x4f2049442d64652d746f726e65696f205b25735d207072656369736120736572206465636c617261646f207175616e646f206f207469706f2d64652d616c766f206ee36f20e9205b2573206f752025735d206520612063617465676f726961206ee36f20e9205b25735d21, 'Y', '2014-01-31 09:25:09'),
(1974, 40, 0x4f207469706f2d64652d616c766f20646f20626f6c6574696d205b25735d206e656365737369746120646520756d2049442d64652d6a6f676f, 'Y', '2014-01-31 09:25:09'),
(1975, 40, 0x49442d64652d6a6f676f207072656369736120736572206e756de97269636f21, 'Y', '2014-01-31 09:25:09'),
(1976, 40, 0x4a6f676f206ee36f20656e636f6e747261646f2070617261206f2049442d64652d6a6f676f205b25735d21, 'Y', '2014-01-31 09:25:09'),
(1977, 40, 0x4f2049442d64652d6a6f676f205b25735d20707265636973612073657220646520756d206a6f676f2d6dfa6c7469706c6f21, 'Y', '2014-01-31 09:25:09'),
(1978, 40, 0x4f2049442d64652d6a6f676f205b25735d20707265636973612065737461722076617a696f207175616e646f206f207469706f2d64652d616c766f206ee36f20e9205b25735d21, 'Y', '2014-01-31 09:25:09'),
(1979, 40, 0x46616c7461206f206175746f7220646f20626f6c6574696d, 'Y', '2014-01-31 09:25:09'),
(1981, 40, 0x41206c697374612d64652d757375e172696f73207072656369736120736572206c696d7061207175616e646f206f207469706f2d64652d616c766f20e9206d756461646f, 'Y', '2014-01-31 09:25:09'),
(1982, 40, 0x4578697374656d20617669736f73206465206c6973746120646520757375e172696f732071756520707265636973616d2073657220766973746f7320706172612073616c766172206f20626f6c6574696d21, 'Y', '2014-01-31 09:25:09'),
(1983, 40, 0x44617461206461207075626c696361e7e36f20646f20626f6c6574696d, 'Y', '2014-01-31 09:25:09'),
(1961, 40, 0x53616c76617220626f6c6574696d, 'Y', '2014-01-31 09:29:15'),
(1965, 40, 0x4e6f766f20626f6c6574696d20646520757375e172696f, 'Y', '2014-01-31 09:29:15'),
(1967, 40, 0x4f207469706f2d64652d616c766f20646520626f6c6574696d205b25735d20e920736f6d656e746520756d2076616c6f7220696e696369616c2065207072656369736120736572206d756461646f21, 'Y', '2014-01-31 09:29:15'),
(1968, 40, 0x412063617465676f72696120646520626f6c6574696d205b25735d207072656369736120646520756d2049442d64652d746f726e65696f21, 'Y', '2014-01-31 09:29:15'),
(1969, 40, 0x4f207469706f2d64652d616c766f20646520626f6c6574696d205b25735d207072656369736120646520756d2049442d64652d746f726e65696f21, 'Y', '2014-01-31 09:29:15'),
(1970, 40, 0x556d2049442d64652d746f726e65696f207072656369736120736572206e756de97269636f21, 'Y', '2014-01-31 09:29:15'),
(1971, 40, 0x4ee36f20666f6920656e636f6e747261646f20756d20746f726e65696f20636f6d2049442d64652d746f726e65696f205b25735d21, 'Y', '2014-01-31 09:29:15'),
(1972, 40, 0x4f207469706f2d64652d616c766f207072656369736120736572205b2573206f752025735d20736520612063617465676f72696120e9205b25735d21, 'Y', '2014-01-31 09:29:15'),
(1945, 40, 0x43617465676f72696120617475616c, 'Y', '2014-01-31 09:32:10'),
(1946, 40, 0x5369747561e7e36f20417475616c, 'Y', '2014-02-06 15:22:52'),
(1947, 40, 0x5469706f20646520616c766f20617475616c, 'Y', '2014-01-31 09:32:10'),
(1950, 40, 0x6170656e61732070617261206f207469706f2d64652d616c766f205b25735d2c2049442d64652d757375e172696f20287465787475616c206f75206e756de97269636f29, 'Y', '2014-01-31 09:32:10'),
(1953, 40, 0x4f7320757375e172696f73205b25735d2072656a6569746172616d2061206d656e736167656d20646520636f6e666967757261e7e36f2d64652d636f6e7461746f2070617261206f206175746f722d64652d626f6c6574696d205b25735d, 'Y', '2014-01-31 09:32:10'),
(1955, 40, 0x44617461206465207075626c696361e7e36f, 'Y', '2014-01-31 09:32:10'),
(1957, 40, 0x56616c6964616465, 'Y', '2014-01-31 09:32:10'),
(1960, 40, 0x4d7564616ee76173206ee36f2073616c766173, 'Y', '2014-02-04 01:38:59'),
(1934, 40, 0x426f6c6574696d2073616c766f21, 'Y', '2014-01-31 09:33:32'),
(1935, 40, 0x41646d696e6973747261646f7220646520426f6c6574696d, 'Y', '2014-01-31 09:33:32'),
(1936, 40, 0x494420646520426f6c6574696d, 'Y', '2014-01-31 09:33:32'),
(1937, 40, 0x4e6f766f20626f6c6574696d, 'Y', '2014-01-31 09:33:32'),
(1939, 40, 0x496e64696361646f72657320646520426f6c6574696d, 'Y', '2014-01-31 09:33:32'),
(1933, 40, 0x44657363756c70652c206ee36f20657869737465206e61646120706172612073616c7661722e, 'Y', '2014-01-31 09:34:04'),
(2789, 40, 0x41206e6f76612073656e686120736572e120736f7274656164612c206d617320766f63ea20706f6465203c623e6520646576653c2f623e206d7564617220656c61206465706f69732065646974616e646f20617320636f6e666967757261e7f56573206e6f207365752070657266696c2e, 'Y', '2014-02-01 23:07:00'),
(1348, 40, 0x45737175656369206d696e68612073656e68612e204f2071756520706f73736f2066617a65723f, 'Y', '2014-02-02 11:51:47'),
(4618, 40, 0x45737175656369206d696e68612073656e68612e204f2071756520706f73736f2066617a65723f, 'Y', '2014-02-02 11:51:47'),
(1226, 36, 0x4dc3b3646f73c3ad74, 'Y', '2015-09-19 18:23:21'),
(3170, 40, 0xda6e696361, 'Y', '2014-04-11 14:07:57'),
(3662, 40, 0x76656e63657520706f72, 'Y', '2014-02-03 03:14:43'),
(3983, 40, 0x4f7264656e617220706f72, 'Y', '2014-04-09 08:22:04'),
(4956, 40, 0x4f20646573616669616e74652076656e636520706f7220706f6e746f73206f7520706f7220646573697374ea6e636961, 'Y', '2014-02-18 23:51:21'),
(2241, 40, 0x50fa626c696361, 'Y', '2014-02-04 00:16:14'),
(2244, 40, 0x496e76657274657220436f726573, 'Y', '2014-02-04 00:16:14'),
(3140, 40, 0x422d436f6d65e761, 'Y', '2014-02-04 00:16:14'),
(3141, 40, 0x50fa626c696361, 'Y', '2014-02-04 00:16:14'),
(4508, 40, 0x466f6e7465, 'Y', '2014-02-04 00:16:14'),
(4669, 40, 0x4372696172206e6f766120666f726d612028636f6d206d696e696174757261292c20706f72717565205b25735d20e9206175746f7220646120666f726d6120257321, 'Y', '2014-02-04 00:16:14'),
(4670, 40, 0x466f726d612073616c766121, 'Y', '2014-02-04 00:16:14'),
(4673, 40, 0x466f726d612050fa626c696361, 'Y', '2014-02-04 00:16:14'),
(4674, 40, 0x4f627365727661e7f56573, 'Y', '2014-02-04 00:16:14'),
(4678, 40, 0x4d6f7374726172206e6f20456469746f7220646520476f62616e, 'Y', '2014-02-04 00:22:20'),
(4679, 40, 0x4f206e6f6d6520646120666f726d6120657374e12066616c74616e646f206f7520e9206d7569746f2070657175656e6f2e, 'Y', '2014-02-04 00:22:20'),
(4680, 40, 0x4f206e6f6d6520646120666f726d6120e9206d7569746f206772616e646520286de1782e202573206c6574726173292e, 'Y', '2014-02-04 00:22:20'),
(4681, 40, 0x4f206e6f6d6520646520666f726d61205b25735d206ae1206578697374652c206d617320707265636973612073657220fa6e69636f2e, 'Y', '2014-02-04 00:22:20'),
(4682, 40, 0x46616c7461206f2074616d616e686f, 'Y', '2014-02-04 00:22:20'),
(4683, 40, 0x54616d616e686f20696e76e16c69646f3a205b25735d, 'Y', '2014-02-04 00:22:20'),
(4684, 40, 0x4461646f7320646120666f726d6120636f6e74ea6d206361726163746572657320696e76e16c69646f73205b25735d2e, 'Y', '2014-02-04 00:22:20'),
(4685, 40, 0x4461646f7320646120666f726d6120636f6e74ea6d20706f7369e7f5657320696c656761697320656d205b25735d2e, 'Y', '2014-02-04 00:22:20'),
(4686, 40, 0x46616c7461206461646f7320646120666f726d61, 'Y', '2014-02-04 00:22:20'),
(4717, 40, 0x4e6f766120666f726d612028456469746f7220646520476f62616e29, 'Y', '2014-02-04 00:24:33'),
(4728, 40, 0x4e6f766f206a6f676f2d64652d666f726d61, 'Y', '2014-02-04 00:24:33'),
(5195, 40, 0x494420646520666f726d6120232573, 'Y', '2014-02-04 00:24:33'),
(2242, 40, 0x5072696d65697261206a6f67616461, 'Y', '2014-02-04 01:35:58'),
(4687, 40, 0x436f72206461206a6f67616461, 'Y', '2014-02-04 01:35:58'),
(5793, 40, 0x4d6f7374726120746f646f73206f7320726573756c7461646f7320646f20746f726e65696f, 'Y', '2014-08-12 08:54:44'),
(2288, 40, 0x4d65757320566f746f7320656d204d656c686f72696173, 'Y', '2014-02-04 01:57:54'),
(2586, 40, 0x4c617267757261, 'Y', '2014-02-04 05:33:22'),
(2587, 40, 0x416c74757261, 'Y', '2014-02-04 05:33:22'),
(2588, 40, 0x437269617220546162756c6569726f, 'Y', '2014-02-04 05:33:22'),
(2590, 40, 0x49442d646f2d6a6f676f, 'Y', '2014-02-04 05:33:22'),
(2591, 40, 0x4a6f67616461, 'Y', '2014-02-04 05:33:22'),
(2596, 40, 0x45646974617220c1726561, 'Y', '2014-02-04 05:33:22'),
(2597, 40, 0x53696d706c696669636172, 'Y', '2014-02-04 05:33:22'),
(2598, 40, 0x53616c76617220466f726d61, 'Y', '2014-02-04 05:33:22'),
(2589, 40, 0x436172726567617220746162756c6569726f20646520756d206a6f676f, 'Y', '2014-02-04 05:37:29'),
(2592, 40, 0x4361727265676172206172717569766f20444753, 'Y', '2014-02-04 05:37:29'),
(2628, 40, 0x446573637269e7e36f2064612053696e74617865, 'Y', '2014-02-04 05:37:29'),
(2585, 40, 0x4372696172206e6f766f20746162756c6569726f20646520756d206461646f2074616d616e686f, 'Y', '2014-02-04 05:39:55'),
(2606, 40, 0x3c74743e74616d616e686f3c2f74743e203d2074616d616e686f2d646f2d746162756c6569726f, 'Y', '2014-02-04 05:39:55'),
(2624, 40, 0x466f726d61746f2d64652d626f7264612070617261206361736f73206573706563696169733a, 'Y', '2014-02-04 05:39:55'),
(2605, 40, 0x3c74743e2263223c2f74743e203d20686162696c69746120636f6f7264656e61646173206e6120626f726461, 'Y', '2014-02-04 05:42:30'),
(2608, 40, 0x3c74743e74ed74756c6f3c2f74743e203d20746578746f206e6f20696e666572696f7220646120626f726461, 'Y', '2014-02-04 05:42:30'),
(1096, 40, 0x42656d2076696e646f20e02076657273e36f20646520646573656e766f6c7665646f72657320646f20447261676f6e20476f2053657276657221, 'Y', '2014-02-05 18:48:04'),
(1097, 40, 0x536520766f63ea20717569736572206a6f676172206e6f207365727669646f72206f66696369616c2c20706f72206661766f7220766973697465203c6120687265663d22687474703a2f2f7777772e647261676f6e676f7365727665722e6e6574223e687474703a2f2f7777772e647261676f6e676f7365727665722e6e65743c2f613e202e, 'Y', '2014-02-05 19:15:26'),
(1112, 40, 0x4e6f7461207061726120696e696369616e7465733a206c656961206f204641512c20657370656369616c6d656e74652070617261206f206e6976656c616d656e746f20696e696369616c20646f207365752070657266696c2e, 'Y', '2014-02-05 19:15:26'),
(1758, 40, 0x506f72206661766f7220656e74726520636f6d20756d2069642d64652d757375e172696f20646f20447261676f6e476f5365727665722065206f2073657520656e64657265e76f20656c657472f46e69636f207061726120656e766961726d6f73206f73206461646f732064652061636573736f2e, 'Y', '2014-02-05 19:15:26'),
(1759, 40, 0x556d20626c6f717565696f20646520495020e920757361646f206170656e61732070617261206d616e74657220757375e172696f73206d616c20636f6d706f727461646f73206c6f6e67652e, 'Y', '2014-02-05 19:15:26'),
(1760, 40, 0x506f72206661766f722064696761206f206d6f7469766f20646520766f63ea2071756572657220706173736172206f20626c6f717565696f206465204950206e6f2063616d706f207061726120636f6d656e74e172696f732e, 'Y', '2014-02-05 19:15:26'),
(1761, 40, 0x4ce120766f63ea2074616d62e96d20706f64652066617a65722061732070657267756e74617320717565207175697365722e, 'Y', '2014-02-05 19:57:33'),
(1762, 40, 0x546f646f73206f732063616d706f7320707265636973616d2073657220707265656e636869646f7320706172612066617a6572207365752070656469646f2e, 'Y', '2014-02-05 19:57:33'),
(1763, 40, 0x4575206c69206520636f6e636f7264656920636f6d206173203c6120687265663d22257322207461726765743d22646773544f53223e52656772617320646520436f6e647574613c2f613e20646f204447532e, 'Y', '2014-02-05 19:57:33'),
(1764, 40, 0x456e766961722070656469646f20646520726567697374726f, 'Y', '2014-02-05 19:57:33'),
(1844, 40, 0x52656772617320646520436f6e64757461, 'Y', '2014-02-05 19:57:33'),
(1845, 40, 0x447261676f6e476f53657276657220284447532920e920756d206c75676172207061726120636f6e686563657220616d69676f7320646520476f20646f206d756e646f20696e746569726f2070617261206a6f676172206520736520646976657274697220636f6d20626f617320706172746964617320646520476f2e204ef37320646566696e696d6f7320616c67756d6173207265677261732062e1736963617320706172612066617a657220646f2044475320756d206c7567617220616d6967e176656c2065207472616e7175696c6f2e20556d61202573207265677261206465206574697175657461206d61697320696e666f726d616c20257320736520656e636f6e747261206e6f204641512e, 'Y', '2014-02-05 19:57:33'),
(1846, 40, 0x3c703e4ef373206ee36f207065726d6974696d6f733a3c756c3e0d0a3c6c693e4c696e67756167656d206469736372696d696e6174f37269612c206f66656e73697661206f7520696e636f76656e69656e74652e0d0a3c6c693e416d6561e76173206f7520696e73756c746f7320666569746f732061206f7574726f7320757375e172696f73206f752061646d696e6973747261646f7265732e0d0a3c6c693e546578746f7320706f726e6f6772e16669636f73206f75206c696e6b73207061726120636f6e7465fa646f20706f726e6f6772e16669636f2e0d0a3c6c693e5175616c717565722070726f706167616e646120717565206ee36f2074656e6861207369646f2065787072657373616d656e7465206175746f72697a6164612e0d0a3c6c693e5175616c7175657220636f6d706f7274616d656e746f207175652073656a6120696c6567616c206e61205375e9636961206f75206e6f207061ed73206f6e646520766f63ea206d6f72612e3c2f756c3e, 'Y', '2014-02-05 19:57:33'),
(1847, 40, 0x3c703e536520766f63ea206ee36f20726573706569746172206e6f737361732072656772617320646520636f6e64757461206ef37320726573657276616d6f73206f206469726569746f20646520746f6d61722061e7f565732070657274696e656e74657320612063616461207369747561e7e36f20706172746963756c61722e204973736f20696e636c75692061706167617220746578746f73206573637269746f732c207265737472696e676972206f2075736f2064652066756e63696f6e616c6964616465732c20626c6f7175656172206f207365752061636573736f20e02065737465207365727669646f72206f75206f2074e9726d696e6f2064612073756120636f6e74612e, 'Y', '2014-02-05 19:57:33'),
(1849, 40, 0x3c703e4ef373206ee36f20666f726e65636572656d6f73207375617320696e666f726d61e7f5657320706573736f6169732028656e64657265e76f20656c657472f46e69636f2c20656e64657265e76f2049502065206d656e736167656e73292071756520657374e36f206e6f20447261676f6e476f5365727665722073656d206175746f72697a61e7e36f206578706ced6369746120646520766f63ea2c2065786365746f20656d2070656469646f73206461206a75737469e761206f7520666f72e76120706f6c696369616c2e, 'Y', '2014-02-05 20:11:00'),
(1850, 40, 0x3c703e566f63ea20e920726573706f6e73e176656c20706f7220736575732061746f7320652070656c6f2071756520766f63ea20636f6c6f6361206e6173207375617320696e666f726d61e7f565732062696f6772e166696361732c206e6f732066f372756e73206520656d206d656e736167656e732070617261206f7574726f7320757375e172696f732e, 'Y', '2014-02-05 20:11:00'),
(1920, 40, 0x4e6f206361736f20646520766f63ea206ee36f2074657220656e64657265e76f20656c657472f46e69636f206e612073756120636f6e74613a, 'Y', '2014-02-05 20:11:00'),
(2165, 40, 0x4f732073656775696e746573206572726f7320666f72616d2064657465637461646f73, 'Y', '2014-02-05 20:11:00'),
(2349, 40, 0x4d7564617220612073656e686120706f7220766f63ea206d65736d6f2073f320e920706f7373ed76656c20736520766f63ea20636f6c6f6361722073657520656e64657265e76f20656c657472f46e69636f206e612073756120636f6e74612e, 'Y', '2014-02-05 20:11:00'),
(5212, 40, '', 'Y', '2014-02-05 20:13:06'),
(5567, 40, 0x42656d2076696e646f20616f20447261676f6e20476f20536572766572, 'Y', '2014-02-05 20:13:58'),
(5678, 40, 0x536f6c75e7e36f2064652070726f626c656d6173, 'Y', '2014-02-05 20:15:32'),
(3139, 40, 0x4973746f20e920756d2070656469646f206175746f6de17469636f206465207375706f72746520706172612072656769737472617220756d61206e6f766120636f6e7461207061726120756d20757375e172696f20636f6d20495020626c6f71756561646f20636f6d206f732073656775696e746573206461646f733a, 'Y', '2014-02-05 23:51:19'),
(5511, 40, 0x526567697374726f2d64652d557375e172696f, 'Y', '2014-02-05 23:51:19'),
(5512, 40, 0x4d7564616ee7612d64652d656d61696c, 'Y', '2014-02-05 23:51:19'),
(5553, 40, 0x46616c746f7520756d2069642076e16c69646f20706172612070726f63657373617220612076616c696461e7e36f2070617261206f20757375e172696f205b25735d2e, 'Y', '2014-02-05 23:51:19'),
(5554, 40, 0x41636573736f7520636f6d206f20757375e172696f2065727261646f205b25735d20706172612070726f63657373617220612076616c696461e7e36f20646f206964205b25735d2070617261206f20757375e172696f205b25735d2e, 'Y', '2014-02-05 23:51:19'),
(5555, 40, 0x4ee36f20657869737465206e61646120706172612076616c696461722070617261206f20757375e172696f205b25735d2e, 'Y', '2014-02-05 23:51:19'),
(5556, 40, 0x46616c746f75206f2063f36469676f20706172612070726f63657373617220612076616c696461e7e36f20646f206964205b25735d2e, 'Y', '2014-02-05 23:51:19'),
(5557, 40, 0x456e74726164612064652076616c696461e7e36f206ee36f20656e636f6e74726164612070617261206f2069642d64652d76616c696461e7e36f205b25735d2e, 'Y', '2014-02-06 10:14:47'),
(5558, 40, 0x456e636f6e74726f75206f20757375e172696f2065727261646f205b25735d20706172612070726f6365737361722076616c696461e7e36f20636f6d206964205b25735d, 'Y', '2014-02-06 09:20:48'),
(5559, 40, 0x412076616c696461e7e36f20636f6d206964205b25735d206ae120666f692070726f636573736164612065206ee36f20e9206d6169732076e16c6964612e, 'Y', '2014-02-06 09:20:48'),
(5560, 40, 0x506f72206661766f722066616c6520636f6d206f207375706f727465207061726120616a7564617220636f6d2073756120696e73637269e7e36f2e, 'Y', '2014-02-20 17:02:58'),
(5562, 40, 0x43f36469676f2064652076616c696461e7e36f2065787069726f75206465706f697320646520257320646961732e, 'Y', '2014-02-06 09:20:48'),
(5563, 40, 0x43f36469676f2064652076616c696461e7e36f20696e76e16c69646f21, 'Y', '2014-02-06 09:20:48'),
(5564, 40, 0x4f2069642d64652d757375e172696f2064612073756120636f6e746120e93a, 'Y', '2014-02-06 09:20:48'),
(5565, 40, 0x4f2063f36469676f2064652076616c696461e7e36f2073f320706f64652073657220757361646f20756d612076657a206520657870697261, 'Y', '2014-02-06 09:20:48'),
(5566, 40, 0x506f72206661766f72206ee36f20726573706f6e64612065737361206d656e736167656d206175746f6de17469636121, 'Y', '2014-02-06 09:20:48'),
(5568, 40, 0x41676f726120766f63ea2074656d20756d6120636f6e746120706172612061636573736172206f20447261676f6e20476f205365727665722c20257321, 'Y', '2014-02-06 11:44:14'),
(5569, 40, 0x416e74657320646520706f64657220757361722073756120636f6e746120766f63ea20707265636973612061746976e12d6c612e, 'Y', '2014-02-06 11:44:14'),
(5570, 40, 0x566f63ea20706f6465207365722072656469726563696f6e61646f2070617261206163657373617220636f6d20612073656e6861206573636f6c686964612e, 'Y', '2014-02-06 11:44:14'),
(5571, 40, 0x50617261206174697661722073756120636f6e74612c20706f72206661766f72206162726120657373612070e167696e613a, 'Y', '2014-02-06 11:44:14'),
(5572, 40, 0x4361736f2068616a612070726f626c656d61732c20706f72206661766f722061636573736520636f6d6f20636f6e76696461646f2065207065e76120616a756461206e6f2066f372756d2022537570706f7274222e, 'Y', '2014-02-06 11:44:14'),
(5573, 40, 0x496e666f726d652073657520696420646520757375e172696f2065206465736372657661206f2070726f626c656d61206e6f2070726f636573736f20646520637269617220636f6e74612e, 'Y', '2014-02-06 11:44:14'),
(5574, 40, 0x56616c696465206f20656e64657265e76f20656c657472f46e69636f2070617261205b25735d, 'Y', '2014-02-06 11:44:14'),
(5575, 40, 0x50617261207573617220736575206e6f766f20656e64657265e76f20656c657472f46e69636f20656c652070726563697361207365722076616c696461646f21, 'Y', '2014-02-06 11:44:14'),
(5576, 40, 0x506172612076616c6964617220736575206e6f766f20656e64657265e76f205b25735d2c20706f72206661766f72206162726120657373612070e167696e613a, 'Y', '2014-02-06 11:44:14'),
(5577, 40, 0x4361736f2068616a612070726f626c656d617320706f72206661766f72207065e76120616a756461206e6f2066f372756d206465207375706f7274652e, 'Y', '2014-02-06 11:48:40'),
(5594, 40, 0x4e6f74613a20706f722065737465207365727669646f7220657374617220726f64616e646f206e6f206d6f646f2053434d2c206572726f732065206174e9206d65736d6f20706572646173206465206461646f7320706f64656d2061636f6e74656365722061207175616c71756572206d6f6d656e746f2e20456e74e36f206ee36f20736520617065677565206d7569746f20616f732073657573206a6f676f7321203b2d29, 'Y', '2016-08-06 20:55:58'),
(5598, 40, 0x4e6f76612073656e68612070617261205b25735d, 'Y', '2014-02-06 11:48:40'),
(5671, 40, 0x46616c7461206f2069642070617261206964656e7469666963617220757375e172696f206e6f2070726f636573736f2064652076616c696461e7e36f2e, 'Y', '2014-02-06 11:54:23'),
(5672, 40, 0x56616c6964617220656e64657265e76f20656c657472f46e69636f2070617261206f20757375e172696f205b25735d, 'Y', '2014-02-06 11:54:23'),
(5676, 40, 0x4361736f2068616a612070726f626c656d617320636f6d2061206174697661e7e36f2064612073756120636f6e74613a, 'Y', '2014-02-06 11:54:23'),
(5677, 40, 0x506f72206661766f72203c686f6d652025733e61636573736520636f6d6f20636f6e76696461646f3c2f686f6d653e2065207065e76120616a756461206e6f203c686f6d652025733e66f372756d206465207375706f7274653c2f686f6d653e2e, 'Y', '2014-02-06 11:54:23'),
(5561, 40, 0x506f72206661766f72207265706974612061206d7564616ee76120646520656e64657265e76f2070617261207265636562657220756d206e6f766f2063f36469676f2064652076616c696461e7e36f2c206f7520656e74e36f207065e761206e6f73736120616a7564612e, 'Y', '2014-02-06 11:56:37'),
(2663, 40, 0x4e656e68756d206172717569766f20666f6920656e766961646f2e, 'Y', '2014-02-06 13:49:15'),
(3160, 40, 0x436f6e666967757261722d466f726d61, 'Y', '2014-02-06 13:49:15'),
(3164, 40, 0x5065737175697361202325732028257329205b25735d, 'Y', '2014-02-06 13:49:15'),
(3165, 40, 0x506573717569736120232573205b25735d, 'Y', '2014-02-06 13:49:15'),
(3167, 40, 0x466f726d61746f20646520646174612065727261646f20656d205b25735d2e204573706572612d7365205b25735d2070617261206f205b25735d2e, 'Y', '2014-02-06 13:49:15'),
(3191, 40, 0x50e167696e61202573, 'Y', '2014-02-06 13:49:15'),
(3208, 40, 0x417373756e746f, 'Y', '2014-02-06 13:49:15'),
(3227, 40, 0x496e64696361e7e36f207175652065737465766520636f6e65637461646f206174e9202573206d696e75746f7320617472e173, 'Y', '2014-02-06 13:49:15'),
(3339, 40, 0x506f72206661766f72206162726120612070e167696e612c206c656961206f2074726563686f20646f204641512065207265636f6e666967757265205b25735d2073656775696e646f206973736f2e, 'Y', '2014-02-06 13:49:15'),
(3340, 40, 0x506f72206661766f72206661e761206973736f206f206d6169732072e17069646f20706f7373ed76656c207061726120726564757a69722061206361726761206e6f207365727669646f722e, 'Y', '2014-02-06 13:49:15'),
(3341, 40, 0x4f6272696761646f206465736465206ae120706f722073756120636f6f70657261e7e36f2e, 'Y', '2014-02-06 13:51:12'),
(3342, 40, 0x426f6c6574696d207061726120257320636f6d2022257322, 'Y', '2014-02-06 13:51:12'),
(3344, 40, 0x4d656e736167656d206465202573, 'Y', '2014-02-06 13:51:12'),
(3345, 40, 0x4d656e736167656d, 'Y', '2014-02-06 13:51:12'),
(3346, 40, 0x52656d6574656e7465, 'Y', '2014-02-06 13:51:12'),
(3347, 40, 0x417373756e746f, 'Y', '2014-02-06 13:51:12'),
(3348, 40, 0x4a6f676f20646520257320636f6d202573, 'Y', '2014-02-06 13:51:12'),
(3350, 40, 0x4c69737461732076617a696173, 'Y', '2014-02-06 13:51:12'),
(3445, 40, 0x53657573206a6f676f73206dfa6c7469706c6f73207061726120676572656e636961723a, 'Y', '2014-02-06 13:51:12'),
(3449, 40, 0x4d6f64656c6f206170616761646f21, 'Y', '2014-02-06 13:51:12'),
(3450, 40, 0x4d6f64656c6f7320287573616e646f20257320646f206de1782e20646520257329, 'Y', '2014-02-06 14:32:07'),
(3455, 40, 0x4573636f6c686120756d206d6f64656c6f2070617261207375627374697475697220756d6120656e7472616461206578697374656e7465, 'Y', '2014-02-06 14:32:07'),
(3457, 40, 0x5469706f20696e76e16c69646f206465206d6f64656c6f20706172612073616c76617221, 'Y', '2014-02-06 14:32:07'),
(3458, 40, 0x4f73206461646f732070617261206775617264617220646f206d6f64656c6f206578636564656d206f206c696d69746520646520257320627974657320656d20257320627974657321, 'Y', '2014-02-06 14:32:07'),
(3459, 40, 0x46616c7461206f206e6f6d6520646f206d6f64656c6f21, 'Y', '2014-02-06 14:32:07'),
(3460, 40, 0x4f206e6f6d6520646f206d6f64656c6f20707265636973612073657220fa6e69636f21, 'Y', '2014-02-06 14:32:07'),
(3461, 40, 0x4f206c696d697465206de178696d6f206465206d6f64656c6f7320666f6920616c63616ee761646f2e20566f63ea2064657665207375627374697475697220616c67756d2064656c65732e, 'Y', '2014-02-06 14:32:07'),
(3462, 40, 0x41206573636f6c6861207061726120737562737469747569e7e36f206465752065727261646f20706f72717565206120656e7472616461206ee36f206578697374652070617261206573746520757375e172696f2e, 'Y', '2016-08-06 20:54:30'),
(3467, 40, 0x54656d2063657274657a61207175652071756572206170616761722065737465206d6f64656c6f3f, 'Y', '2016-08-06 20:54:30'),
(5534, 40, 0x56656e6365646f7220646120457461706120286176616ee76120706172612061207072f378696d6120726f64616461206f752070617261206f20726573756c7461646f2066696e616c29, 'Y', '2014-02-06 14:32:07'),
(5583, 40, 0x4d6f7374726120746f6461732061732070e167696e61732064657374652073ed74696f, 'Y', '2016-08-06 20:55:58'),
(5585, 40, 0x4d6f737472612073756173206d656e736167656e73206520706173746173, 'Y', '2015-12-09 01:45:44'),
(5586, 40, 0x4d6f73747261206e6f766173206d656e736167656e73, 'Y', '2015-12-09 01:45:44'),
(5587, 40, 0x456e7669617220756d20636f6e766974652070617261206a6f67617220636f6d206f7574726f20757375e172696f, 'Y', '2015-12-09 01:44:40'),
(5591, 40, 0x4d6f7374726120766f7461e7f565732070617261206d656c686f72696173, 'Y', '2015-12-09 01:45:44'),
(2765, 40, 0x44657363756c70652c20766f63ea20707265636973612061636573736172206f207365727669646f7220706172612066617a6572206973736f2e, 'Y', '2014-02-06 14:42:00'),
(2766, 40, 0x41732072617af56573207061726120657374652070726f626c656d6120706f64656d20657374617220656e7472652061732073656775696e7465733a, 'Y', '2016-08-06 20:52:06'),
(2768, 40, 0x53657573203c693e636f6f6b6965733c2f693e20706572646572616d20612076616c69646164652e204973736f2061636f6e7465636520756d612076657a20706f72206dea732e, 'Y', '2014-02-06 14:44:37'),
(2769, 40, 0x566f63ea206465736162696c69746f75206f73203c693e636f6f6b6965733c2f693e206e6f20736575206e6176656761646f722e, 'Y', '2014-02-06 14:46:06'),
(2751, 40, 0x506f72206661766f722061636573736520636f6d6f20636f6e76696461646f206520757365206f2066f372756d206465207375706f727465207061726120746520616a756461722028696e666f726d65206f2073657520696420646520757375e172696f2065206f2073657520656e64657265e76f20656c657472f46e69636f292e, 'Y', '2014-02-06 14:53:07'),
(944, 40, 0x45737461646f7320556e69646f73, 'Y', '2014-02-06 15:22:52'),
(948, 40, 0x5661746963616e6f202853616e74612053e929, 'Y', '2014-02-06 15:22:52'),
(1570, 40, 0x4573746174ed737469636173206465206a6f676f2070617261202573, 'Y', '2014-02-06 15:22:52'),
(2160, 40, 0x4573746174ed73746963617320736f627265206f20447261676f6e, 'Y', '2014-02-06 15:23:17'),
(2159, 40, 0x4573746174ed7374696361732064652072656465, 'Y', '2014-02-06 15:24:01'),
(3431, 40, 0x4573746174ed737469636173202d205061ed73657320646f7320757375e172696f73, 'Y', '2014-02-06 15:24:01'),
(5756, 40, 0x4573746174ed737469636173206465205472616475e7e36f, 'Y', '2014-02-06 15:24:01'),
(3429, 40, 0x56697375616c697a61e7e36f2070616472e36f, 'Y', '2014-02-06 15:24:44'),
(3430, 40, 0x5061ed73657320646f7320757375e172696f73, 'Y', '2014-02-06 15:25:06'),
(1523, 40, 0x486973746f6772616d61206465206eed76656973, 'Y', '2014-02-06 15:27:28'),
(3436, 40, 0x436f6e666967757261e7e36f20646f207061ed73, 'Y', '2014-02-06 15:34:57'),
(2510, 40, 0x4d6573747265, 'Y', '2014-02-06 15:35:42'),
(2511, 40, 0x52657365727661646f, 'Y', '2014-02-06 15:35:42'),
(3435, 40, 0x42616e6465697261, 'Y', '2014-02-06 15:36:25'),
(3518, 40, 0x496e64696361646f72657320617475616973, 'Y', '2014-02-06 15:36:25'),
(3519, 40, 0x4e6f766f7320496e64696361646f726573, 'Y', '2014-02-06 15:36:25'),
(3716, 40, 0x46696d206465204a6f676f, 'Y', '2014-02-06 15:36:25'),
(4781, 40, 0x496e64696361646f726573206465204a6f676f, 'Y', '2014-02-06 15:37:15'),
(4920, 40, 0x496e64696361646f72657320646520546f726e65696f, 'Y', '2014-02-06 15:37:15'),
(3479, 40, 0x5369747561e7e36f, 'Y', '2014-02-06 15:48:03'),
(4776, 40, 0x5369747561e7e36f205b25735d, 'Y', '2014-02-06 15:48:46'),
(101, 36, 0xc3b37261, 'Y', '2014-02-06 16:46:04'),
(102, 36, 0xc3b37261, 'Y', '2014-02-06 16:46:04'),
(103, 36, 0x62796f796f6d69206ec3a96c6bc3bc6c, 'Y', '2014-02-06 16:46:04'),
(106, 36, 0x6a6170c3a16e2062796f796f6d69, 'Y', '2014-02-06 16:46:04'),
(108, 36, 0x6b616e616461692062796f796f6d69, 'Y', '2014-02-06 16:46:04'),
(248, 36, 0x426576657a6574c3a973, 'Y', '2014-02-06 16:46:04'),
(329, 36, 0xc39c7a656e65746bc3bc6c64c3a973, 'Y', '2014-02-06 16:46:04'),
(344, 36, 0x52656769737a7472c3a16369c3b3, 'Y', '2014-02-06 16:46:04'),
(95, 36, 0x4f6c64616c206cc3a9747265686f7ac3a173c3a16e616b20686f73737a613a, 'Y', '2014-02-06 17:04:25'),
(389, 36, 0xc39a6a20c3bc7a656e6574656b, 'Y', '2014-02-06 17:04:25'),
(390, 36, 0x4ac3a174737a6dc3a16b2061686f6c2061207465206cc3a970c3a9736564206bc3b67665746b657a696b3a, 'Y', '2014-02-06 17:04:25'),
(391, 36, 0x4e656d2074616cc3a16c686174c3b3206ac3a174737a6d61, 'Y', '2014-02-06 17:04:25'),
(460, 36, 0x4bc3b67665746b657ac591206f6c64616c, 'Y', '2014-02-06 17:04:25'),
(461, 36, 0x456cc5917ac591206f6c64616c, 'Y', '2014-02-06 17:06:19'),
(462, 36, 0x4f737a6c6f7020686f7a7ac3a16164c3a17361, 'Y', '2014-02-06 17:06:19'),
(463, 36, 0x7376c3a964, 'Y', '2014-02-06 17:17:49'),
(464, 36, 0x6e6f7276c3a967, 'Y', '2014-02-06 17:17:49'),
(465, 36, 0x616e676f6c, 'Y', '2014-02-06 17:17:49'),
(372, 36, '', 'Y', '2014-02-06 17:11:24'),
(466, 36, 0x6ec3a96d6574, 'Y', '2014-02-06 17:17:49'),
(467, 36, 0x6672616e636961, 'Y', '2014-02-06 17:17:49'),
(468, 36, 0x7370616e796f6c, 'Y', '2014-02-06 17:17:49'),
(469, 36, 0x63736568, 'Y', '2014-02-06 17:17:49'),
(470, 36, 0x6bc3ad6e61692028686167796f6dc3a16e796f7329, 'Y', '2014-02-06 17:18:29'),
(472, 36, 0x6bc3ad6e61692028656779737a6572c5b173c3ad7465747429, 'Y', '2014-02-06 17:18:29'),
(473, 36, 0x686f6c6c616e64, 'Y', '2014-02-06 17:18:29'),
(479, 36, '', 'Y', '2014-02-06 17:12:17'),
(500, 36, 0x66696e6e, 'Y', '2014-02-06 17:18:47'),
(715, 36, 0x4f6c64616c20626574c3b66c747665, 'Y', '2014-02-06 17:24:07'),
(747, 36, 0x4d696e64656e206f737a6c6f70, 'Y', '2014-02-06 17:14:08'),
(750, 36, 0x6b6f72656169, 'Y', '2014-02-06 17:18:47'),
(954, 36, 0x6f726f737a, 'Y', '2014-02-06 17:19:16'),
(997, 36, 0x6c656e6779656c, 'Y', '2014-02-06 17:19:16'),
(998, 36, 0x6f6c61737a, 'Y', '2014-02-06 17:19:16'),
(1003, 36, 0x6261737a6b, 'Y', '2014-02-06 17:19:16'),
(1014, 36, '', 'Y', '2014-02-06 17:15:23'),
(1015, 36, 0x65737a706572616e74c3b3, 'Y', '2014-02-06 17:19:16'),
(1018, 36, 0x737a6c6f76c3a16b, 'Y', '2014-02-06 17:19:16'),
(1023, 36, 0x726f6dc3a16e, 'Y', '2014-02-06 17:19:16'),
(1028, 36, 0x68c3a9626572, 'Y', '2014-02-06 17:19:16'),
(1030, 36, 0x766965746ec3a16d69, 'Y', '2014-02-06 17:16:21'),
(1031, 36, 0x737a657262, 'Y', '2014-02-06 17:16:21'),
(1032, 36, 0x67c3b672c3b667, 'Y', '2014-02-06 17:16:21'),
(1033, 36, 0x756b72c3a16e, 'Y', '2014-02-06 17:16:21'),
(1034, 36, 0x6b6174616cc3a16e, 'Y', '2014-02-06 17:16:21'),
(1035, 36, 0x6bc3ad6e61692028656779737a6572c5b173c3ad746574742920287574662d3829, 'Y', '2014-02-06 17:16:21'),
(1059, 36, 0x4d75746174, 'Y', '2014-02-06 17:16:21'),
(1060, 36, 0x456c72656a74, 'Y', '2014-02-06 17:16:21'),
(1029, 36, '', 'Y', '2014-02-06 17:20:55'),
(1125, 36, 0x52656e64657ac3a973, 'Y', '2014-02-06 17:20:55'),
(1274, 36, 0x6e, 'Y', '2014-02-06 17:20:55'),
(1275, 36, 0x6e, 'Y', '2014-02-06 17:20:55'),
(1276, 36, 0xc3b3, 'Y', '2014-02-06 17:20:55'),
(1277, 36, 0xc3b3, 'Y', '2014-02-06 17:20:55'),
(1279, 36, 0x6bc3ad6e61692028686167796f6dc3a16e796f732920287574662d3829, 'Y', '2014-02-06 17:20:55'),
(1280, 36, 0x74c3b672c3b66b, 'Y', '2014-02-06 17:20:55'),
(1281, 36, 0x6d6167796172, 'Y', '2014-02-06 17:21:08'),
(762, 40, 0x416e74ed67756120652042617262756461, 'Y', '2014-02-06 18:12:22'),
(779, 40, 0x426f747375616e61, 'Y', '2014-02-06 18:12:22'),
(783, 40, 0x4275727175696e61204661736f, 'Y', '2014-02-06 18:12:22'),
(784, 40, 0x427572fa6e6469, 'Y', '2014-02-06 18:12:22'),
(790, 40, 0x4368616465, 'Y', '2014-02-06 18:12:22'),
(794, 40, 0x436f6d6f726573, 'Y', '2014-02-06 18:12:22'),
(795, 40, 0x526570fa626c69636120646f20436f6e676f, 'Y', '2014-02-16 13:06:47'),
(796, 40, 0x5265702e2044656d6f632e20646f20436f6e676f, 'Y', '2014-02-16 13:15:53'),
(798, 40, 0x436f73746120646f204d617266696d, 'Y', '2014-02-06 18:12:22'),
(801, 40, 0x436869707265, 'Y', '2014-02-06 18:12:22'),
(802, 40, 0x526570fa626c69636120546368656361, 'Y', '2014-02-06 18:22:58'),
(804, 40, 0x446a6962757469, 'Y', '2014-02-06 18:22:58'),
(805, 40, 0x446f6ded6e696361, 'Y', '2014-02-06 18:22:58'),
(806, 40, 0x526570fa626c69636120446f6d696e6963616e61, 'Y', '2014-02-06 18:22:58'),
(810, 40, 0x456c2053616c7661646f72, 'Y', '2014-02-06 18:22:58'),
(811, 40, 0x4775696ee92045717561746f7269616c, 'Y', '2014-02-06 18:22:58'),
(812, 40, 0x4572697472656961, 'Y', '2014-02-06 18:22:58'),
(815, 40, 0x46ed6a69, 'Y', '2014-02-06 18:22:58'),
(818, 40, 0x476162e36f, 'Y', '2014-02-06 18:22:58'),
(819, 40, 0x47e26d626961, 'Y', '2014-02-06 18:22:58'),
(820, 40, 0x4765f372676961, 'Y', '2014-02-06 18:29:33'),
(822, 40, 0x47616e61, 'Y', '2014-02-06 18:29:33'),
(824, 40, 0x4772616e616461, 'Y', '2014-02-06 18:29:33'),
(826, 40, 0x4775696ee9, 'Y', '2014-02-06 18:29:33'),
(827, 40, 0x4775696ee92d426973736175, 'Y', '2014-02-06 18:29:33'),
(828, 40, 0x477569616e61, 'Y', '2014-02-06 18:29:33'),
(829, 40, 0x4861697469, 'Y', '2014-02-06 18:29:33'),
(830, 40, 0x486f6e6475726173, 'Y', '2014-02-06 18:29:33'),
(831, 40, 0x486f6e67204b6f6e67, 'Y', '2014-02-06 18:29:33'),
(832, 40, 0x48756e67726961, 'Y', '2014-02-06 18:29:33'),
(104, 36, 0x2573206578747261206964c59176656c206cc3a970c3a973656e6bc3a96e74, 'Y', '2014-02-06 18:42:11'),
(443, 36, 0x4669736368657220c3b37261, 'Y', '2014-02-06 18:42:11'),
(450, 36, 0x2573206cc3a970c3a973656e6bc3a96e7420c3a973202573206578747261206964c59174617274616d, 'Y', '2014-02-06 18:42:11'),
(452, 36, 0x2573202573206bc3b676656e6bc3a96e74, 'Y', '2014-02-06 18:42:11'),
(5784, 40, 0x4f206a6f676f207465726d696e612073656d20726573756c7461646f, 'Y', '2014-04-13 17:43:02'),
(3168, 40, 0x506f6e746f73, 'Y', '2014-04-11 14:07:57'),
(732, 36, 0x4d65676d61726164742076616bc3a16369c3b36e61706f6b, 'Y', '2014-02-06 18:42:11'),
(733, 36, 0x56616bc3a16369c3b37a696b, 'Y', '2014-02-06 18:42:11'),
(782, 36, 0x42756c67c3a1726961, 'Y', '2014-02-06 18:42:11'),
(1416, 36, '', 'Y', '2014-02-06 18:44:56'),
(1429, 36, 0x456c6c656e66c3a96c, 'Y', '2014-02-06 18:44:56'),
(1430, 36, 0x46656c682e617a6f6e2e, 'Y', '2014-02-06 18:44:56'),
(1433, 36, 0xc3897274c3a96b656cc3a973, 'Y', '2014-02-06 18:44:56'),
(1435, 36, 0x537ac3ad6e, 'Y', '2014-02-06 18:44:56'),
(1437, 36, 0x4dc3a9726574, 'Y', '2014-02-06 18:44:56'),
(1438, 36, 0x48656e64696b6570, 'Y', '2014-02-06 18:46:57'),
(1439, 36, '', 'Y', '2014-02-06 18:46:57'),
(1440, 36, 0x4cc3a970c3a973656b, 'Y', '2014-02-06 18:46:57'),
(1443, 36, 0xc3897274c3a96b656c74, 'Y', '2014-02-06 18:46:57'),
(1444, 36, 0x55746f6c73c3b3206cc3a970c3a973, 'Y', '2014-02-06 18:46:57'),
(1475, 36, 0x48c3a17274616c6576c591206964c591, 'Y', '2014-02-06 18:46:57'),
(1479, 36, 0x4ec3a976, 'Y', '2014-02-06 18:47:42'),
(1508, 36, 0x54c3ad707573, 'Y', '2014-02-06 18:47:42'),
(1521, 36, 0x536f726f6b206d75746174c3a17361, 'Y', '2014-02-06 18:47:42'),
(1923, 36, 0x4b76c3b37461, 'Y', '2014-02-06 18:53:41'),
(2145, 36, 0x50726f6669, 'Y', '2014-02-06 18:53:41'),
(2146, 36, '', 'Y', '2014-02-06 18:53:41'),
(2158, 36, 0x5374617469737a74696b61, 'Y', '2014-02-06 18:53:41'),
(2174, 36, 0x56657273656e7920696e666f726dc3a16369c3b3, 'Y', '2014-02-06 18:54:31'),
(2183, 36, 0x486962c3a16b, 'Y', '2014-02-06 18:54:31'),
(2377, 36, 0x476f62616e20737a65726b2e, 'Y', '2014-02-23 18:25:08'),
(2458, 36, 0x4ac3a174737a6d6120696e666f726dc3a16369c3b3, 'Y', '2014-02-06 18:54:59'),
(2669, 36, '', 'Y', '2014-02-06 18:55:37'),
(2670, 36, '', 'Y', '2014-02-06 18:55:37'),
(2671, 36, '', 'Y', '2014-02-06 18:55:37'),
(843, 40, 0x4a6f7264e26e6961, 'Y', '2014-02-06 18:55:51'),
(846, 40, 0x4b69726962617469, 'Y', '2014-02-06 18:55:51'),
(849, 40, 0x4b7561697465, 'Y', '2014-02-06 18:55:51'),
(850, 40, 0x517569726775697374e36f, 'Y', '2014-02-06 18:55:51'),
(851, 40, 0x4c617573, 'Y', '2014-02-06 18:55:51'),
(852, 40, 0x4c6574f46e6961, 'Y', '2014-02-06 18:55:51'),
(853, 40, 0x4ced62616e6f, 'Y', '2014-02-06 18:55:51'),
(854, 40, 0x4c65736f746f, 'Y', '2014-02-06 18:55:51'),
(855, 40, 0x4c6962e9726961, 'Y', '2014-02-06 18:55:51'),
(857, 40, 0x4c6965636874656e737465696e, 'Y', '2014-02-06 18:55:51'),
(1055, 36, 0x5374c3a17475737a2052535320637361746f726e61, 'Y', '2014-02-06 19:03:04'),
(1378, 36, 0x4ec3a9766a6567797ac3a96b, 'Y', '2014-02-06 19:03:04'),
(1520, 36, 0x48696261, 'Y', '2014-02-06 19:03:04'),
(1557, 36, 0x4d65676a6567797ac3a973, 'Y', '2014-02-06 19:03:04'),
(1569, 36, 0x55746f6c73c3b3206dc3b3646f73c3ad74c3a173, 'Y', '2014-02-06 19:03:04'),
(1602, 36, 0x54616ec3a172, 'Y', '2014-02-06 19:03:04'),
(1842, 36, 0x537a6162c3a16c797a6174, 'Y', '2014-02-06 19:07:35'),
(1871, 36, 0x41646f6dc3a16e796f7a7a, 'Y', '2014-02-06 19:07:35'),
(1872, 36, 0x54c3a16d6f676173642061204447532d74206567792061646f6dc3a16e6e79616c, 'Y', '2014-02-06 19:07:35'),
(1873, 36, 0x41646f6dc3a16e79, 'Y', '2014-02-06 19:07:35'),
(863, 40, 0x4d616c617769, 'Y', '2014-02-06 19:08:24'),
(866, 40, 0x4de16c69, 'Y', '2014-02-06 19:08:24'),
(867, 40, 0x4d616c7461, 'Y', '2014-02-06 19:08:24'),
(868, 40, 0x496c686173204d61727368616c6c, 'Y', '2014-02-06 19:08:24'),
(869, 40, 0x4d6175726974e26e6961, 'Y', '2014-02-06 19:08:24'),
(870, 40, 0x4d617572ed63696f, 'Y', '2014-02-06 19:08:24'),
(872, 40, 0x4d6963726f6ee9736961, 'Y', '2014-02-06 19:08:24'),
(873, 40, 0x4d6f6c64e1766961, 'Y', '2014-02-06 19:08:24'),
(878, 40, 0x4269726de26e6961, 'Y', '2014-02-06 19:08:24'),
(879, 40, 0x4e616ded626961, 'Y', '2014-02-06 19:08:24'),
(1875, 36, 0x41646f6dc3a16e796f6b, 'Y', '2014-02-06 19:08:50'),
(1879, 36, 0x417a20616cc3a1626269206c696e6b20612050617950616c2d726520666f6720c3a1746972c3a16e79c3ad74616e69, 'Y', '2014-02-06 19:08:50'),
(1880, 36, 0x4bc3b6737ac3b66e6ac3bc6b2c20686f6779206e616779766f6e616cc3ba2061646f6dc3a16e796f6464616c2074c3a16d6f6761746f642061204447532d7421, 'Y', '2014-02-06 19:10:55'),
(880, 40, 0x4e61757275, 'Y', '2014-02-06 19:21:38'),
(882, 40, 0x486f6c616e6461, 'Y', '2014-02-06 19:21:38'),
(883, 40, 0x4e6f7661205a656ce26e646961, 'Y', '2014-02-06 19:21:38'),
(885, 40, 0x4eed676572, 'Y', '2014-02-06 19:21:38'),
(888, 40, 0x4f6de3, 'Y', '2014-02-06 19:21:38'),
(890, 40, 0x50616c6175, 'Y', '2014-02-06 19:21:38'),
(893, 40, 0x50617075612d4e6f7661204775696ee9, 'Y', '2014-02-06 19:21:38'),
(896, 40, 0x46696c6970696e6173, 'Y', '2014-02-06 19:21:38'),
(899, 40, 0x506f72746f205269636f, 'Y', '2014-02-06 19:21:38'),
(900, 40, 0x4361746172, 'Y', '2014-02-06 19:21:38'),
(903, 40, 0x5275616e6461, 'Y', '2014-02-06 19:32:11'),
(905, 40, 0x53616e7461204cfa636961, 'Y', '2014-02-06 19:32:11'),
(907, 40, 0x53616d6f61, 'Y', '2014-02-06 19:32:11'),
(908, 40, 0x53e36f204d6172696e686f, 'Y', '2014-02-06 19:32:11'),
(910, 40, 0x4172e16269612053617564697461, 'Y', '2014-02-06 19:32:11'),
(913, 40, 0x5365696368656c6573, 'Y', '2014-02-06 19:32:11'),
(914, 40, 0x5365727261204c656f61, 'Y', '2014-02-06 19:32:11'),
(916, 40, 0x45736c6f76e171756961, 'Y', '2014-02-06 19:32:11'),
(917, 40, 0x45736c6f76ea6e6961, 'Y', '2014-02-06 19:32:11'),
(918, 40, 0x496c6861732053616c6f6de36f, 'Y', '2014-02-06 19:32:11'),
(1930, 36, 0x54c3ba6c6cc3a9707465642061206cc3a1746f676174c3a17369206b76c3b374c3a16461742e, 'Y', '2014-02-06 19:33:11'),
(1932, 36, 0x456cc3a972c3a97320c3a1746d656e6574696c6567206b6f726cc3a1746f7a7661, 'Y', '2014-02-06 19:33:11'),
(2659, 36, 0x4e696e6373206d6567616476612066c3a16a6c20612066656c74c3b66c74c3a97368657a2e, 'Y', '2014-02-06 19:33:11'),
(2660, 36, 0x412066656c74c3b66c74c3b674742066c3a16a6c205b25735d206dc3a972657465206d656768616c61646a61206120737a657276657220c3a16c74616c206d656761646f74742066c3a16a6c6dc3a9726574206b6f726cc3a1746f742e, 'Y', '2014-02-06 19:33:11'),
(2661, 36, 0x412066656c74c3b66c74c3b674742066c3a16a6c205b25735d206dc3a972657465206d656768616c61646a6120612062656d656e65746920c5b1726c617020c3a16c74616c20656e6765646574742066c3a16a6c6dc3a9726574206b6f726cc3a1746f74205b25732062c3a16a745d2e, 'Y', '2014-02-06 19:33:11'),
(2662, 36, 0x412066656c74c3b66c74c3b674742066c3a16a6c74205b25735d206373616b2072c3a9737a62656e2073696b6572c3bc6c742066656c74c3b66c74656e692e, 'Y', '2014-02-06 19:33:11'),
(2663, 36, 0x4e656d206c6574742066656c74c3b66c7476652066c3a16a6c2e, 'Y', '2014-02-06 19:33:11'),
(2664, 36, 0x412066656c74c3b66c74c3b674742066c3a16a6c205b25735d206bc3a970666f726dc3a174756d612069736d657265746c656e2e, 'Y', '2014-02-06 19:33:11'),
(2668, 36, 0x412066656c74c3b66c74c3b674742066c3a16a6c74205b25735d206e656d2073696b6572c3bc6c7420656c74c3a1726f6c6e692e, 'Y', '2014-02-06 19:34:14'),
(2906, 36, 0x5361626c6f6e6f6b, 'Y', '2014-02-06 19:35:39'),
(2984, 36, 0x4ac3a174c3a96bc3b37261206d6567c3a16c6cc3ad747661, 'Y', '2014-02-06 19:35:39'),
(2985, 36, 0x46656c6861737a6ec3a16cc3b320616c76c3a17369206964c591737a616b62616e2076616e, 'Y', '2014-02-06 19:35:39'),
(2986, 36, 0x48c3a97476c3a96765202855544329, 'Y', '2014-02-06 19:35:39'),
(2987, 36, 0x447261676f6e2076657a6574c591, 'Y', '2014-02-06 19:35:39'),
(2988, 36, 0x456cc3a972686574c591, 'Y', '2014-02-06 19:37:36'),
(2989, 36, 0x456cc3a972686574c59120766f6c7420266c743b2573207065726363656c20657a656cc5917474, 'Y', '2014-02-06 19:37:36'),
(2992, 36, 0x56657273656e79656b, 'Y', '2014-02-06 19:37:36'),
(2993, 36, 0x52656a7465747420686f7a7ac3a1737ac3b36cc3a1736f6b20746172746f7a6e616b2061206ac3a174737a6dc3a1686f7a, 'Y', '2014-02-06 19:37:36'),
(3070, 36, 0x286e696e63732074c3a172677929, 'Y', '2014-02-06 19:37:56'),
(3147, 36, 0x4bc3b66e79766a656c7ac5916b, 'Y', '2014-02-06 19:40:10'),
(3148, 36, 0x4c6567c3ba6a6162622066c3b372756d686f7a7ac3a1737ac3b36cc3a1736f6b, 'Y', '2014-02-06 19:40:10'),
(3149, 36, 0x456cc3a972686574c59120656c6c656e66656c656b, 'Y', '2014-02-06 19:40:10'),
(3150, 36, 0x456cc3a972686574c5912066656c6861737a6ec3a16cc3b36b, 'Y', '2014-02-06 19:40:10'),
(3151, 36, 0x56616bc3a16369c3b3206dc3b3646f73c3ad74c3a17361, 'Y', '2014-02-06 19:40:10'),
(3152, 36, 0x50726f66696c206dc3b3646f73c3ad74c3a17361, 'Y', '2014-02-06 19:40:10'),
(3153, 36, 0x556772c3a173, 'Y', '2014-02-06 19:40:10'),
(3154, 36, 0x42656cc3a970c3a973, 'Y', '2014-02-06 19:40:10'),
(3155, 36, 0x53c3ba67c3b3202f204759494b, 'Y', '2014-02-06 19:40:10'),
(3156, 36, 0xc39a6a206ac3a174737a6d61, 'Y', '2014-02-06 19:42:47'),
(3157, 36, 0x48c3ad72656b, 'Y', '2014-02-06 19:42:47'),
(3159, 36, 0x4ac3a174737a6d6120737a65726b65737a74c591, 'Y', '2014-02-06 19:42:47'),
(920, 40, 0xc1667269636120646f2053756c, 'Y', '2014-02-06 19:43:47'),
(922, 40, 0x537269204c616e6361, 'Y', '2014-02-06 19:43:47'),
(924, 40, 0x537572696e616d65, 'Y', '2014-02-06 19:43:47'),
(925, 40, 0x5375617a696ce26e646961, 'Y', '2014-02-06 19:43:47'),
(927, 40, 0x5375ede761, 'Y', '2014-02-06 19:43:47'),
(928, 40, 0x53ed726961, 'Y', '2014-02-06 19:43:47'),
(929, 40, 0x54616975e3, 'Y', '2014-02-06 19:43:47'),
(930, 40, 0x54616a697175697374e36f, 'Y', '2014-02-06 19:43:47'),
(931, 40, 0x54616e7ae26e6961, 'Y', '2014-02-06 19:43:47'),
(932, 40, 0x5461696ce26e646961, 'Y', '2014-02-06 19:43:47'),
(3189, 36, 0x656c73c591206f6c64616c, 'Y', '2014-02-06 19:44:10'),
(3192, 36, 0x75746f6c73c3b3206f6c64616c, 'Y', '2014-02-06 19:44:10'),
(3208, 36, 0x54c3a1726779, 'Y', '2014-02-06 19:44:10'),
(3341, 36, 0x456cc5917265206973206bc3b6737ac3b66e6ac3bc6b20617a20656779c3bc74746dc5b16bc3b664c3a973656465742e, 'Y', '2014-02-06 19:45:59'),
(3351, 36, 0x4e696e637320c3ba6a2068c3ad72, 'Y', '2014-02-06 19:48:02'),
(3358, 36, 0x4ac3a174737a2e617a6f6e2e, 'Y', '2014-02-06 19:48:02'),
(3367, 36, 0x537a6162c3a16c796f6b, 'Y', '2014-02-06 19:48:02'),
(3371, 36, 0x4d656766696779656c74206ac3a174737a6dc3a16b, 'Y', '2014-02-06 19:48:02'),
(3385, 36, 0x467574c3b3206ac3a174737a6dc3a1696d, 'Y', '2014-02-06 19:48:02'),
(3386, 36, 0x426566656a657a657474206ac3a174737a6dc3a1696d, 'Y', '2014-02-06 19:48:48'),
(3388, 36, 0x56657273656e7965696d, 'Y', '2014-02-06 19:48:48'),
(3441, 36, 0x41206e61702068c3ad726520286f6c76617361746c616e2068c3ad72656b29, 'Y', '2014-02-06 19:48:48'),
(3446, 36, 0x5072696f726974c3a173, 'Y', '2014-02-06 19:49:05'),
(3448, 36, 0x5361626c6f6e20656c6d656e74766521, 'Y', '2014-02-06 19:49:57'),
(3449, 36, 0x5361626c6f6e2074c3b672c3b66c766521, 'Y', '2014-02-06 19:49:57'),
(3452, 36, 0x5361626c6f6e2074c3b6726cc3a97365, 'Y', '2014-02-06 19:49:57'),
(3454, 36, 0x4ec3a976, 'Y', '2014-02-06 19:49:57'),
(3456, 36, 0xc39a6a207361626c6f6e, 'Y', '2014-02-06 19:49:57'),
(4585, 36, 0x25732076616e2068c3a1747261, 'Y', '2014-02-06 19:50:58'),
(4590, 36, '', 'Y', '2014-02-06 19:50:58'),
(4619, 36, 0x426576657a6574c3a973, 'Y', '2014-02-06 19:50:58'),
(4707, 36, 0x416c616b7a6174, 'Y', '2014-02-06 19:50:58'),
(5593, 36, 0x5665727a69c3b3, 'Y', '2014-02-06 19:52:36'),
(5667, 36, 0x706f72747567c3a16c20286272617a696c29, 'Y', '2014-02-06 19:52:36'),
(5668, 36, 0x706f72747567c3a16c2028657572c3b370616929, 'Y', '2014-02-06 19:52:36'),
(5743, 36, 0x56, 'Y', '2014-02-06 19:53:59'),
(5744, 36, 0x48, 'Y', '2014-02-06 19:53:59'),
(5745, 36, 0x4b, 'Y', '2014-02-06 19:53:25'),
(5746, 36, 0x537a65, 'Y', '2014-02-06 19:53:25'),
(5747, 36, 0x4373, 'Y', '2014-02-06 19:53:25'),
(5748, 36, 0x50, 'Y', '2014-02-06 19:53:25'),
(5749, 36, 0x537a6f, 'Y', '2014-02-06 19:53:25'),
(933, 40, 0x546f676f, 'Y', '2014-02-06 19:53:36'),
(934, 40, 0x546f6e6761, 'Y', '2014-02-06 19:53:36'),
(935, 40, 0x5472696e64616465206520546f6261676f, 'Y', '2014-02-06 19:53:36'),
(936, 40, 0x54756eed736961, 'Y', '2014-02-06 19:53:36'),
(938, 40, 0x5475727175656d656e697374e36f, 'Y', '2014-02-06 19:53:36'),
(939, 40, 0x547576616c75, 'Y', '2014-02-06 19:53:36'),
(940, 40, 0x5567616e6461, 'Y', '2014-02-06 19:53:36'),
(942, 40, 0x456d697261646f7320c1726162657320556e69646f73, 'Y', '2014-02-06 19:53:36'),
(943, 40, 0x5265696e6f20556e69646f, 'Y', '2014-02-06 19:53:36'),
(946, 40, 0x557362657175697374e36f, 'Y', '2014-02-06 19:55:06'),
(947, 40, 0x56616e75617475, 'Y', '2014-02-06 19:59:27'),
(951, 40, 0x49ea6d656e, 'Y', '2014-02-06 19:59:27'),
(952, 40, 0x5ae26d626961, 'Y', '2014-02-06 19:59:27'),
(953, 40, 0x5a696d62e1627565, 'Y', '2014-02-06 19:59:27'),
(1126, 40, 0x436f7265696120646f204e6f727465, 'Y', '2014-02-06 19:59:27'),
(1127, 40, 0x436f7265696120646f2053756c, 'Y', '2014-02-06 19:59:27'),
(1128, 40, 0x4d6f6e74656e6567726f, 'Y', '2014-02-06 19:59:27'),
(2676, 40, 0x53616d6f6120416d65726963616e61, 'Y', '2014-02-06 19:59:27'),
(2677, 40, 0x416e6775696c61, 'Y', '2014-02-06 19:59:27'),
(2678, 40, 0x4172756261, 'Y', '2014-02-06 19:59:27'),
(2679, 40, 0x4265726d75646173, 'Y', '2014-02-06 20:27:28'),
(2682, 40, 0x4272756e6569, 'Y', '2014-02-06 20:27:28'),
(2683, 40, 0x496c686173204361696de3, 'Y', '2014-02-06 20:27:28');
INSERT INTO `Translations` (`Original_ID`, `Language_ID`, `Text`, `Translated`, `Updated`) VALUES
(2684, 40, 0x496c686120646f204e6174616c, 'Y', '2014-02-06 20:27:28'),
(2686, 40, 0x496c68617320436f6f6b, 'Y', '2014-02-06 20:27:28'),
(2688, 40, 0x496c686173204d616c76696e6173, 'Y', '2014-02-06 20:27:28'),
(2689, 40, 0x496c686173204661726fe9, 'Y', '2014-02-06 20:27:28'),
(2690, 40, 0x4775696ee9204672616e63657361, 'Y', '2014-02-06 20:27:28'),
(2691, 40, 0x506f6c696ee9736961204672616e63657361, 'Y', '2014-02-06 20:27:28'),
(2692, 40, 0x47696272616c746172, 'Y', '2014-02-06 20:27:28'),
(2693, 40, 0x47726f656ce26e646961, 'Y', '2014-02-06 20:52:53'),
(2694, 40, 0x47756164616c757065, 'Y', '2014-02-06 20:52:53'),
(2695, 40, 0x4775616d65, 'Y', '2014-02-06 20:52:53'),
(2696, 40, 0x4775e9726e65736569, 'Y', '2014-02-06 20:52:53'),
(2697, 40, 0x496c6861206465204d616e, 'Y', '2014-02-06 20:52:53'),
(2698, 40, 0x4ae972736961, 'Y', '2014-02-06 20:52:53'),
(2699, 40, 0x43617a617175697374e36f, 'Y', '2014-02-06 20:52:53'),
(2700, 40, 0x4d61636175, 'Y', '2014-02-06 20:52:53'),
(2701, 40, 0x4d617274696e696361, 'Y', '2014-02-06 20:52:53'),
(2702, 40, 0x4d61696f7465, 'Y', '2014-02-06 20:52:53'),
(2703, 40, 0x4d6f6e73657272617465, 'Y', '2014-02-06 21:06:11'),
(2704, 40, 0x416e74696c68617320486f6c616e6465736173, 'Y', '2014-02-06 21:06:11'),
(2705, 40, 0x4e6f76612043616c6564f46e6961, 'Y', '2014-02-06 21:06:11'),
(2706, 40, 0x4e6975ea, 'Y', '2014-02-06 21:06:11'),
(2707, 40, 0x496c6861204e6f72666f6c717565, 'Y', '2014-02-06 21:06:11'),
(2710, 40, 0x496c68617320506963e1726e6961, 'Y', '2014-02-06 21:06:11'),
(2711, 40, 0x5265756e69e36f, 'Y', '2014-02-06 21:06:11'),
(2712, 40, 0x53e36f20426172746f6c6f6d6575, 'Y', '2014-02-06 21:06:11'),
(2713, 40, 0x53616e74612048656c656e61, 'Y', '2014-02-06 21:06:11'),
(2714, 40, 0x53e36f204d617274696e686f, 'Y', '2014-02-06 21:06:11'),
(2717, 40, 0x54696d6f722d4c65737465, 'Y', '2014-02-06 21:13:28'),
(2718, 40, 0x546f7175656c6175, 'Y', '2014-02-06 21:13:28'),
(2721, 40, 0x496c6861732056697267656e7320646f7320452e20552e20412e, 'Y', '2014-02-16 13:08:44'),
(2722, 40, 0x57616c6c6973206520467574756e61, 'Y', '2014-02-06 21:13:28'),
(2723, 40, 0x5361617261204f636964656e74616c, 'Y', '2014-02-06 21:13:28'),
(2724, 40, 0x496d70e972696f204b6c696e676f6e, 'Y', '2014-02-06 21:13:28'),
(5686, 40, 0x50656469646f73, 'Y', '2014-02-22 23:58:52'),
(5687, 40, 0x496e73637269746f, 'Y', '2014-08-05 00:28:21'),
(5688, 40, 0x436f6e76696461646f73, 'Y', '2014-02-22 23:58:52'),
(4625, 40, 0x5369747561e7e36f20646f20546f726e65696f, 'Y', '2014-06-04 17:40:33'),
(4662, 40, 0x5369747561e7e36f20417475616c, 'Y', '2014-02-06 23:22:06'),
(5048, 40, 0x5369747561e7e36f20646120526f64616461, 'Y', '2014-02-06 23:22:06'),
(789, 40, 0x526570fa626c6963612043656e74726f6166726963616e61, 'Y', '2014-02-07 00:18:28'),
(904, 40, 0x53e36f204372697374f376e36f2065204e65766573, 'Y', '2014-02-07 00:18:28'),
(906, 40, 0x53e36f20566963656e74652065204772616e6164696e6173, 'Y', '2014-02-07 00:18:28'),
(909, 40, 0x53e36f20546f6de92065205072ed6e63697065, 'Y', '2014-02-07 00:18:28'),
(2680, 40, 0x42f3736e69612065204865727a65676f76696e61, 'Y', '2014-02-07 00:18:28'),
(2681, 40, 0x546572726974f372696f2062726974e26e69636f20646f206f6365616e6f20cd6e6469636f, 'Y', '2015-08-06 06:13:41'),
(2685, 40, 0x496c68617320436f636f73, 'Y', '2014-02-07 00:18:28'),
(2708, 40, 0x496c686173204d617269616e617320536574656e7472696f6e616973, 'Y', '2015-08-06 06:13:06'),
(2709, 40, 0x546572726974f372696f732070616c657374696e6f73, 'Y', '2015-08-06 06:13:06'),
(2715, 40, 0x53e36f20506564726f2065204d697175656ce36f, 'Y', '2014-02-07 00:18:28'),
(2716, 40, 0x496c686173204765f37267696120646f2053756c20652053616e6475ed63686520646f2053756c, 'Y', '2014-02-16 13:17:52'),
(2719, 40, 0x496c68617320547572636173206520436169636f73, 'Y', '2015-08-06 06:17:11'),
(2720, 40, 0x496c6861732056697267656e732062726974e26e69636173, 'Y', '2015-08-06 06:17:11'),
(2725, 40, 0x466564657261e7e36f20646f7320506c616e6574617320556e69646f73, 'Y', '2014-02-07 00:22:49'),
(727, 40, 0x4120636f6e666967757261e7e36f20646573746520636f6e76697465206465206a6f676f20666f6920257364697370757461646125732e, 'Y', '2016-08-06 20:47:38'),
(1110, 40, 0x44657374696e6174e172696f206ee36f20656e636f6e747261646f, 'Y', '2014-02-07 00:28:44'),
(1517, 40, 0x5365727669646f72, 'Y', '2014-02-07 00:28:44'),
(1519, 40, 0x4465, 'Y', '2014-02-07 00:28:44'),
(1585, 40, 0x4d6f7374726172206170656e6173206d656e736167656e7320696e696369616973, 'Y', '2014-02-07 00:28:44'),
(5781, 36, 0x417a20656cc3a972c3a97369206b76c3b374c3a1642068616d61726f73616e20656c666f677921, 'Y', '2015-01-07 20:11:55'),
(1594, 40, 0x50726f6375726172206d656e736167656d, 'Y', '2014-02-07 00:28:44'),
(1595, 40, 0x4e617665676172206e617320706173746173, 'Y', '2014-02-07 00:28:44'),
(1885, 40, 0x4f63756c746f, 'Y', '2014-02-07 00:28:44'),
(2430, 40, 0x6e65676f636961646f20706f72204b6f6d69204a7573746f, 'Y', '2014-02-07 00:28:44'),
(3064, 40, 0x436f6e666967757261e7f56573206465206a6f676f206dfa6c7469706c6f, 'Y', '2014-02-07 00:52:45'),
(3065, 40, 0x4a6f6761646f726573, 'Y', '2014-02-07 00:52:45'),
(3066, 40, 0x652e672e20323a32202852656e676f292c203320285a656e2d476f29, 'Y', '2014-02-07 00:52:45'),
(3069, 40, 0x4d616c612064697265746120636f6d206f7574726f732064657374696e6174e172696f73, 'Y', '2014-02-07 00:52:45'),
(3071, 40, 0x44697363757373e36f, 'Y', '2014-02-07 00:52:45'),
(3072, 40, 0x4d6f73747261722064697363757373e36f, 'Y', '2014-02-07 00:52:45'),
(3073, 40, 0x5072696d65697261206d656e736167656d2064612064697363757373e36f, 'Y', '2014-02-07 00:52:45'),
(3074, 40, 0x4d6f7374726172206d656e736167656d20696e696369616c2064612064697363757373e36f, 'Y', '2014-02-07 00:52:45'),
(5536, 40, 0x7072656369736120646520756d206eed76656c20646520757375e172696f207061726120736572206174697661646f, 'Y', '2014-02-07 01:28:43'),
(5541, 40, 0x496e662e20646f73206a6f6761646f726573, 'Y', '2014-02-07 01:28:43'),
(5543, 40, 0x4eed76656c20646f20416476657273e172696f, 'Y', '2014-02-07 01:28:43'),
(5545, 40, 0x4eed76656c20646520757375e172696f20657374e120666f726120646f206c696d697465, 'Y', '2014-02-07 01:28:43'),
(5547, 40, 0x4f20757375e172696f206ae120636f6d65e76f75206a6f676f73, 'Y', '2014-02-07 01:28:43'),
(5549, 40, 0x4f206efa6d65726f206465206a6f676f7320706f7220616476657273e172696f206ee36f20706f64652065786365646572206f206c696d6974652c206d61726361646f20706f722022257322, 'Y', '2014-02-07 01:28:43'),
(4679, 7, 0x4ee17a657620726f7a6573746176656eed2063687962ed2c206e65626f206a652070f8ed6c69b9206b72e1746bfd2e, 'Y', '2016-07-20 18:39:13'),
(5551, 40, 0x5469706f2064652076616e746167656d2028646f73207469706f7320636f6e76656e63696f6e616c2065207072f37072696120707265636973616d20646520756d206eed76656c207061726120736572656d2063616c63756c6164617329, 'Y', '2014-02-07 01:28:43'),
(4709, 40, 0x4944206465206a6f676f2d64652d666f726d61, 'Y', '2014-02-07 01:35:54'),
(5259, 40, 0x4a6f676f7320646520666f726d6120646f20447261676f6e, 'Y', '2014-02-07 01:36:44'),
(3255, 40, 0x507265766973e36f206461206d656e736167656d, 'Y', '2014-02-07 01:37:39'),
(3256, 40, 0x436f6e666967757261e7e36f206465206a6f676f20706f72, 'Y', '2014-02-07 01:37:39'),
(3257, 40, 0x6575206d65736d6f, 'Y', '2014-02-07 01:37:39'),
(3258, 40, 0x4469666572656ee76173206e612044697363757373e36f, 'Y', '2014-02-07 01:37:39'),
(3260, 40, 0x4573636f6e64657220746578746f73206461206d656e736167656d, 'Y', '2014-02-07 01:37:39'),
(3262, 40, 0x4d656e736167656d20617475616c, 'Y', '2014-02-07 01:37:39'),
(4545, 40, 0x4f70e7e36f20646520636f6e7461746f20274f63756c746172206a6f676f732064612073616c6120646520657370657261272c206d61726361646120636f6d2022257322, 'Y', '2014-02-07 01:37:39'),
(4615, 40, 0x4c696d69746573206465206eed76656c20286f206eed76656c20646520757375e172696f20707265636973612065737461722064656e74726f20646f73206c696d697465732070656469646f73292c20652e672e202232356b2d326422, 'Y', '2014-02-07 01:37:39'),
(5424, 40, 0x526573747269746f, 'Y', '2014-02-07 01:37:39'),
(3104, 40, 0x436f6e7669746520726563757361646f2070656c6f20757375e172696f205b25735d2021, 'Y', '2014-02-07 01:56:26'),
(3105, 40, 0x4d656e736167656d2072656375736164612070656c6f20757375e172696f205b25735d2021, 'Y', '2014-02-07 01:56:26'),
(3108, 40, 0x557365206120696e76657273e36f206163696d6120706172612065737361206d656e736167656d206465206d616c6120646972657461, 'Y', '2014-02-07 01:56:26'),
(3109, 40, 0x46616c7461206f2064657374696e6174e172696f206461206d656e736167656d, 'Y', '2014-02-07 01:56:26'),
(3110, 40, 0x4578636573736f2064652064657374696e6174e172696f7320286de1782e20e920257329, 'Y', '2014-02-07 01:56:26'),
(3111, 40, 0x4170656e617320756d2064657374696e6174e172696f20706f7220636f6e7669746520e9207065726d697469646f21, 'Y', '2014-02-07 01:56:26'),
(3112, 40, 0x4f20757375e172696f205b25735d206ee36f20657374e1207061727469636970616e646f206465206a6f676f2d6dfa6c7469706c6f2e, 'Y', '2014-02-07 01:56:26'),
(3113, 40, 0x46616c7461206f20617373756e746f206461206d656e736167656d, 'Y', '2014-02-07 01:56:26'),
(3250, 40, 0x4e6f7661206d656e736167656d206465206a6f676f2d6dfa6c7469706c6f, 'Y', '2014-02-07 01:56:26'),
(5313, 40, 0x557375e172696f7320447261676f6e, 'Y', '2014-02-07 08:11:57'),
(5611, 40, 0x2573203d206efa6d65726f20646520757375e172696f7320636f6d20756d206eed76656c20646566696e69646f, 'Y', '2014-02-07 08:11:57'),
(4549, 40, 0x4f627365727661e7f565732064612073616c6120646520657370657261, 'Y', '2014-02-07 23:46:26'),
(5450, 40, 0x4d657573206a6f676f7320e020657370657261, 'Y', '2014-02-07 23:47:05'),
(5680, 40, 0x696e646963612076616e746167656d2070616472e36f206de178696d612c2063616c63756c6164612070617261206f2074616d616e686f20646f20746162756c6569726f, 'Y', '2014-02-08 00:54:20'),
(1692, 40, 0x4f207175652073e36f206f7320436f6e7461746f733f, 'Y', '2014-04-11 14:02:18'),
(1662, 40, 0x506f73736f2066617a657220627573636173206e6f20447261676f6e3f, 'Y', '2014-04-11 14:02:18'),
(4574, 40, 0x6b69736569646f, 'Y', '2014-04-09 08:27:24'),
(4980, 40, 0x46696d20646f204a6f676f, 'Y', '2014-02-08 09:50:25'),
(5245, 40, 0xcd636f6e6573206465206a6f676f, 'Y', '2014-02-08 09:50:49'),
(1044, 40, 0x45737361206a6f67616461206c657661206120756d6120706f7369e7e36f206ee36f207065726d6974696461206e6f20746162756c6569726f2e, 'Y', '2014-02-08 11:05:27'),
(55, 40, 0x5469706f206465206eed76656c20646573636f6e68656369646f, 'Y', '2014-02-08 11:39:55'),
(41, 40, 0x44657363756c70652c206ee36f20636f6e736567756920656e636f6e747261722065737465206a6f676f2e, 'Y', '2016-08-06 20:57:07'),
(1053, 40, 0x4573736520757375e172696f206ae120e920756d2061646d696e6973747261646f722e, 'Y', '2014-02-08 11:50:38'),
(2735, 40, 0x4e6f6d65206465207365727669646f7220696e76e16c69646f206e6f2070656469646f2e, 'Y', '2014-02-08 11:50:38'),
(2772, 40, 0x44657363756c70652c206f20656e76696f206465206172717569766f2066616c686f752e, 'Y', '2014-02-08 11:50:38'),
(2811, 40, 0x44657363756c70652c20617267756d656e746f7320696e76e16c69646f7320666f72616d20757361646f732e, 'Y', '2014-02-08 11:50:38'),
(2812, 40, 0x44657363756c70652c20657374e12066616c74616e646f20756d20617267756d656e746f2e, 'Y', '2014-02-08 11:50:38'),
(2816, 40, 0x41206d696e69617475726120646120666f726d612074656d20756d20666f726d61746f207275696d2e, 'Y', '2014-02-08 11:51:50'),
(22, 40, 0x44657363756c70652c20766f63ea207072656369736120696e666f726d617220756d206e6f6d652e, 'Y', '2014-02-08 11:59:12'),
(45, 40, 0x44657363756c70652c206ee36f20636f6e736567756920656e636f6e74726172206573746520757375e172696f2e, 'Y', '2016-08-06 20:46:22'),
(69, 40, 0x44657363756c70652c206ee36f20636f6e736567756920656e636f6e74726172206573736120656e74726164612e, 'Y', '2014-02-08 11:59:12'),
(2776, 40, 0x4f206eed76656c20696e666f726d61646f20e920696e76e16c69646f2e, 'Y', '2014-02-08 11:59:12'),
(2779, 40, 0x44657363756c70652c20657374652069642d64652d666f726d6120e920696e76e16c69646f2e, 'Y', '2016-08-06 20:52:54'),
(2780, 40, 0x44657363756c70652c206ee36f20636f6e7369676f20656e636f6e74726172206573736120666f726d612e, 'Y', '2014-02-08 11:59:12'),
(2813, 40, 0x44657363756c70652c20756d20636f6d616e646f2d72e17069646f20696e76e16c69646f20666f6920757361646f2e, 'Y', '2014-02-08 11:59:12'),
(2817, 40, 0x466f726d61206f75206d696e69617475726120636f6d20636f6e666c69746f20656e636f6e74726164612e, 'Y', '2014-02-08 11:59:12'),
(2818, 40, 0x44657363756c70652c206ee36f20636f6e7369676f20656e636f6e74726172206573736120656e74726164612e, 'Y', '2014-02-08 11:59:12'),
(2819, 40, 0x46616c7461206f2074616d616e686f20706172612061206d696e69617475726120646120666f726d612e, 'Y', '2014-02-08 11:59:12'),
(2825, 40, 0x44657363756c70652c206ee36f20636f6e7369676f20656e636f6e74726172206573746520626f6c6574696d2e, 'Y', '2016-08-06 20:56:23'),
(2827, 40, 0x44657363756c70652c206ee36f20636f6e7369676f20656e636f6e7472617220657373612070657371756973612e, 'Y', '2014-02-08 12:04:18'),
(5699, 40, 0x46616c746120756d20656e64657265e76f20646520636f727265696f20656c657472f46e69636f207061726120612063726961e7e36f20646120636f6e74612e, 'Y', '2014-02-08 12:04:18'),
(48, 40, 0x4ee36f2070756465206578747261706f6c617220756d2076616c6f72206e612066756ee7e36f2027696e746572706f6c61746527, 'Y', '2014-02-08 12:16:02'),
(49, 40, 0x44657363756c70652c20766f63ea20706f646520617061676172206170656e61732073657573207072f37072696f73206a6f676f732e, 'Y', '2014-02-08 12:16:02'),
(56, 40, 0x44657363756c70652c206ee36f20636f6e6865e76f206e696e6775e96d20636f6d206573746520696420646520757375e172696f2e, 'Y', '2016-08-06 20:46:22'),
(75, 40, 0x44657363756c70652c206ee36f20636f6e736567756920656e636f6e74726172206f20746f726e65696f2070656469646f2e, 'Y', '2014-02-08 12:16:02'),
(714, 40, 0x44657363756c70652c206ee36f20636f6e736567756920656e636f6e7472617220657373612070617374612e, 'Y', '2014-02-08 12:16:02'),
(2737, 40, 0xc920696d706f7373ed76656c20636f6e76696461646f2072656365626572206d656e736167656e732e, 'Y', '2014-02-08 12:16:02'),
(2739, 40, 0x4d656e736167656e732070726120766f63ea206d65736d6f20e92070726f696269646120656d206d616c617320646972657461732e, 'Y', '2014-02-08 12:16:02'),
(2740, 40, 0x44657363756c70652c20766f63ea206ee36f2074656d207065726d697373e36f2070617261206d616e646172206d616c61206469726574612e, 'Y', '2014-02-08 12:16:02'),
(2742, 40, 0x44657363756c70652c20736575206c696d697465206465206a6f676f7320636f6d65e761646f7320666f6920616c63616ee761646f2e, 'Y', '2014-02-08 12:16:02'),
(2747, 40, 0x4120706172746520646563696d616c20646520756d206b6f6d692073f320706f646520736572202c30206f75202c352e, 'Y', '2014-02-08 12:16:02'),
(2759, 40, 0x46616c7461206f2069642d64652d6a6f676f20706172612061206d656e736167656d206465206a6f676f206dfa6c7469706c6f2e, 'Y', '2014-02-08 12:21:14'),
(2762, 40, 0x44657363756c70652c206ee36f20736520706f646520656e7669617220636f6e766974652070617261206f20757375e172696f20636f6e76696461646f2c206f20226775657374222e, 'Y', '2014-02-08 12:21:14'),
(2773, 40, 0x44657363756c70652c20766f63ea206ee36f20706172746963697061206465737465206a6f676f2e, 'Y', '2016-08-06 20:52:31'),
(2775, 40, 0x44657363756c70652c206ee36f20e920706f7373ed76656c20726573706f6e64657220612065737361206d656e736167656d2e, 'Y', '2014-02-08 12:21:14'),
(2777, 40, 0x417320636f6f7264656e61646173206465737361206a6f676164612073e36f20696e76e16c696461732e, 'Y', '2014-02-08 12:21:14'),
(2781, 40, 0x44657363756c70652c20766f63ea206ee36f2074656d207065726d697373e36f2070617261206469736375746972206e657374652066f372756d2e, 'Y', '2016-08-06 20:52:54'),
(2782, 40, 0x44657363756c70652c20766f63ea206ee36f2074656d207065726d697373e36f20706172612076657220657373612064697363757373e36f2e, 'Y', '2014-02-08 12:21:14'),
(2783, 40, 0x44657363756c70652c206f20696420646520757375e172696f20707265636973612074657220616f206d656e6f73203320636172616374657265732e, 'Y', '2014-02-08 12:21:14'),
(2799, 40, 0x44657363756c70652c20686f75766572616d20616c67756e73206572726f7320647572616e746520612063726961e7e36f20646f20746f726e65696f2e, 'Y', '2014-02-08 12:21:14'),
(2808, 40, 0x44657363756c70652c20757375e172696f20646573636f6e68656369646f206e6f20746f726e65696f20617475616c2e, 'Y', '2014-02-08 12:21:14'),
(2814, 40, 0x44657363756c70652c2065786973746520756d2070726f626c656d20636f6d20756d206de9746f646f20646520636c617373652e, 'Y', '2014-02-08 12:24:36'),
(2815, 40, 0x43617261637465726520696e76e16c69646f20656e636f6e747261646f206e61206d696e69617475726120646f206a6f676f2e, 'Y', '2014-02-08 12:24:36'),
(2820, 40, 0x44657363756c70652c206120696e69636961e7e36f2064612070726f707269656461646520646120636c6173736520657374e1206572726164612e, 'Y', '2014-02-08 12:24:36'),
(2824, 40, 0x44657363756c70652c20766f63ea206ee36f2074656d207065726d697373e36f207061726120656469746172206573746520626f6c6574696d2e, 'Y', '2016-08-06 20:56:23'),
(2826, 40, 0x44657363756c70652c20766f63ea206ee36f2074656d207065726d697373e36f207061726120766572206573746520626f6c6574696d2e, 'Y', '2016-08-06 20:54:30'),
(5216, 40, 0x44657363756c70652c20766f63ea206ee36f2074656d207065726d697373e36f20706172612066616c6172206e657373612064697363757373e36f2e, 'Y', '2014-02-08 12:24:36'),
(5517, 40, 0x44657363756c70652c20756d20696420646520757375e172696f206465766520746572206e6f206de178696d6f20313620636172616374657265732e, 'Y', '2014-02-08 12:24:36'),
(2423, 40, 0x4e65676f636961e7e36f206465206b6f6d69, 'Y', '2014-02-11 06:31:47'),
(2436, 40, 0x4eed76656c20696e696369616c20646f20677275706f, 'Y', '2014-02-11 06:31:47'),
(2437, 40, 0x4c616e6365206465206b6f6d69, 'Y', '2014-02-11 06:31:47'),
(2450, 40, 0x5469706f, 'Y', '2014-02-11 06:31:47'),
(2454, 40, 0x706f72205444, 'Y', '2014-02-11 06:31:47'),
(2462, 40, 0x476572656e6369617220746f726e65696f, 'Y', '2014-02-11 06:31:47'),
(2463, 40, 0x4d6f73747261722063e16c63756c6f73206465206a6f676f, 'Y', '2014-02-11 06:31:47'),
(2506, 40, 0x436f6e666967757261e7e36f2064652076616e746167656d, 'Y', '2014-02-11 06:31:47'),
(2508, 40, 0x4eed7665697320646520677275706f, 'Y', '2014-02-11 06:31:47'),
(2512, 40, 0x436f6d65e76f75, 'Y', '2014-02-11 06:31:47'),
(2523, 40, 0x5072f378696d6f206a6f6761646f72, 'Y', '2014-02-11 06:34:14'),
(2528, 40, 0x56616761732d64652d6a6f6761646f72, 'Y', '2014-02-11 06:34:14'),
(2727, 40, 0x436f6e666967757261e7e36f2d4a4d, 'Y', '2014-02-11 06:34:14'),
(2728, 40, 0x436f6e76696461646f, 'Y', '2014-02-11 06:34:14'),
(2729, 40, 0x4a6f676172, 'Y', '2014-02-11 06:34:14'),
(2730, 40, 0x506173736172, 'Y', '2014-02-11 06:34:14'),
(2731, 40, 0x506c61636172, 'Y', '2014-02-11 06:34:14'),
(2844, 40, 0x457520706f73736f2064657369737469723f, 'Y', '2014-02-11 06:34:14'),
(2856, 40, 0x477275706f202332, 'Y', '2014-02-11 06:34:14'),
(2858, 40, 0x436f6e666964656e6369616c, 'Y', '2014-02-11 06:34:14'),
(2862, 40, 0x41696e64612073656d206c616e636573, 'Y', '2014-02-11 06:40:41'),
(2866, 40, 0x53616c766172206c616e6365206465206b6f6d69, 'Y', '2014-02-11 06:40:41'),
(2867, 40, 0x436f6d65e76172206a6f676f, 'Y', '2014-02-11 06:40:41'),
(2896, 40, 0x54656d706f, 'Y', '2014-02-11 06:40:41'),
(2907, 40, 0x4d656e736167656d, 'Y', '2014-02-11 06:40:41'),
(2908, 40, 0x436f6e7669646172, 'Y', '2014-02-11 06:40:41'),
(2940, 40, 0x4e6967697269, 'Y', '2014-02-11 06:40:41'),
(3117, 40, 0x53656d206eed76656c2076e16c69646f, 'Y', '2014-02-11 06:40:41'),
(3267, 40, 0x4e6f766f206a6f676f20636f6d206b6f6d692d6a7573746f, 'Y', '2014-02-11 06:45:07'),
(3334, 40, 0x436f6e766572736f72206465206eed76656c, 'Y', '2014-02-11 06:40:41'),
(3359, 40, 0x436f6d656e74e172696f73206465206a6f676f206f63756c746f73, 'Y', '2014-02-11 06:43:41'),
(4695, 40, 0x46756ee7e36f206e6f20546f726e65696f, 'Y', '2014-02-11 06:43:41'),
(5697, 40, 0x436f6c6f6361e7e36f206e6f2063616d70656f6e61746f, 'Y', '2014-02-16 10:08:45'),
(5757, 40, 0x4d656e736167656e73, 'Y', '2014-02-11 06:43:41'),
(5764, 40, 0x4f63756c74617220636f6d656e74e172696f73, 'Y', '2014-02-11 06:43:41'),
(5765, 40, 0x4d6f737472617220636f6d656e74e172696f73, 'Y', '2014-02-11 06:43:41'),
(5301, 40, 0x436f6d6f20636f6d65e7617220756d206a6f676f20636f6d206b6f6d692d6a7573746f3f, 'Y', '2014-02-11 06:45:07'),
(5377, 40, 0x4f2071756520e920756d206a6f676f20636f6d206b6f6d692d6a7573746f3f, 'Y', '2014-02-11 06:45:07'),
(5378, 40, 0x556d203c623e6a6f676f206465206b6f6d692d6a7573746f3c2f623e206e6f20447261676f6e2073656d70726520e920756d206a6f676f20657175696c69627261646f202873656d207065647261732064652076616e746167656d292e204f206b6f6d692065206120636f7220646f73206a6f6761646f726573206ee36f2073e36f207072e92d646566696e69646f732e20456c657320736572e36f2064657465726d696e61646f73206e6f20696eed63696f20646f206a6f676f20636f6d20756d2073697374656d61206465206c65696ce36f2e204e6f20447261676f6e206578697374656d2071756174726f206d616e65697261732064652066617a6572206973736f2c20636f6e74726f6c616461732070656c6f203c693e7469706f2064652076616e746167656d3c2f693e3a0d0a3c756c3e0d0a20203c6c693e3c623e4c65696ce36f2041626572746f3a3c2f623e206e65676f636961206f206b6f6d6920636f6d20756d203c693e4c616e63652041626572746f3c2f693e0d0a20203c756c3e0d0a202020203c6c693e556d206a6f6761646f722066617a20756d206c616e63652061626572746f206465206b6f6d690d0a202020203c6c693e4f206c616e636520e9206d6f73747261646f20616f20616476657273e172696f0d0a202020203c6c693e4e6f766f73206c616e6365732073e36f20666569746f73206174e92071756520756d206a6f6761646f7220636f6d656365206f206a6f676f3a0d0a2020202020203c756c3e0d0a20202020202020203c6c693e2043616461206c616e6365206465206b6f6d69207072656369736120736572206d61697320616c746f20717565206f20fa6c74696d6f206c616e636520646f20616476657273e172696f0d0a20202020202020203c6c693e204f206a6f6761646f7220636f6d206f206d61696f72206c616e6365206a6f676120636f6d206173205072657461732065206f20736575206c616e636520e9206461646f206465206b6f6d6920e073204272616e6361730d0a2020202020203c2f756c3e0d0a20203c2f756c3e0d0a0d0a20203c6c693e3c623e4c65696ce36f205365637265746f3a3c2f623e206e65676f636961206f206b6f6d6920636f6d20756d203c693e4c616e6365205365637265746f3c2f693e0d0a20203c756c3e0d0a202020203c6c693e556d206a6f6761646f722066617a20756d206c616e6365206665636861646f206465206b6f6d690d0a202020203c6c693e4f206c616e6365206ee36f20e9206d6f73747261646f20616f20616476657273e172696f0d0a202020203c6c693e4465706f697320646f20736567756e646f206c616e6365206f206a6f676f2076616920636f6d65e761723a0d0a2020202020203c756c3e0d0a20202020202020203c6c693e4f206a6f6761646f7220636f6d206f206d61696f72206c616e6365206a6f676120636f6d206173205072657461732065206c616e636520e9206461646f206465206b6f6d6920e073204272616e6361730d0a20202020202020203c6c693e5365206f73206c616e63657320666f72656d20696775616973206120636f7220646f73206a6f6761646f72657320e920736f727465616461202864657465726d696e61646120636f6d206e6967697269290d0a2020202020203c2f756c3e0d0a20203c2f756c3e0d0a0d0a20203c6c693e3c623e457520636f72746f2c20766f63ea206573636f6c68653c2f623e206f75203c623e566f63ea20636f7274612c206575206573636f6c686f3c2f623e3a206e65676f636961206b6f6d69206520636f72657320636f6d203c693e4469766973e36f2026616d703b20436f6e7175697374613c2f693e0d0a20203c756c3e0d0a202020203c6c693e556d206a6f6761646f72206573636f6c6865206f206b6f6d692070617261206173204272616e63617320286f2022636f72746522290d0a202020203c6c693e41207365677569722c206f206f7574726f206a6f6761646f72206573636f6c686520636f6d207175616c20636f72206a6f6761722065206f206a6f676f20636f6d65e76120286120226573636f6c686122290d0a202020203c6c693e41206469666572656ee76120656e747265206f7320646f6973207469706f73206163696d6120e9206170656e6173207175656d2066617a206f206c616e63652065207175656d207465726d696e61206573636f6c68656e646f206120636f722e0d0a20203c2f756c3e0d0a3c2f756c3e0d0a0d0a54f37069636f732072656c6163696f6e61646f733a0d0a3c756c3e0d0a20203c6c693e3c686f6d65206661712e7068703f726561643d74266361743d33353726653d33353123456e7472793335313e436f6d6f20636f6d65e7617220756d206a6f676f20636f6d206b6f6d692d6a7573746f3f3c2f686f6d653e0d0a20203c6c693e3c5f687474703a2f2f73656e736569732e786d702e6e65742f3f466169724b6f6d693e2028656d20696e676cea73290d0a20203c6c693e3c5f687474703a2f2f73656e736569732e786d702e6e65742f3f466169724b6f6d693e2028656d20696e676cea73290d0a3c2f756c3e, 'Y', '2014-02-11 07:52:11'),
(5379, 40, 0x436f6d6f2070726f6375726f20706f72206a6f676f73206465206b6f6d692d6a7573746f3f, 'Y', '2014-02-11 07:52:11'),
(5380, 40, 0x5061726120656e636f6e74726172203c686f6d65206661712e7068703f726561643d74266361743d33353726653d33393323456e7472793339333e6a6f676f7320636f6d206b6f6d692d6a7573746f3c2f686f6d653e20766f63ea20706f64652066696c74726172206f20223c693e5469706f206465204a6f676f3c2f693e222073656e646f20223c693e6b6f6d692d6a7573746f3c2f693e22206e6173206c6973746173206461203c686f6d652077616974696e675f726f6f6d2e7068703e73616c61206465206573706572613c2f686f6d653e206f75206e61732070e167696e6173206465203c686f6d652073686f775f67616d65732e7068703e6c69737461206465206a6f676f733c2f686f6d653e2e0d0a0d0a4a6f676f73206465206b6f6d692d6a7573746f2073e36f206d6f73747261646f7320636f6d6f20223c693e476f20286b6f6d692d6a7573746f293c2f693e22206e6120636f6c756e61203c693e5469706f206465204a6f676f3c2f693e2028696e636c75696e646f20612070e167696e61206461203c686f6d65207374617475732e7068703e7369747561e7e36f3c2f686f6d653e292e, 'Y', '2014-02-11 07:52:11'),
(2419, 40, 0x4e65676f636961e7e36f2070617261206b6f6d692d6a7573746f, 'Y', '2014-02-11 11:44:36'),
(2497, 40, 0x4d6f737472617220636f6e766974652064612073616c6120646520657370657261, 'Y', '2014-02-11 11:44:36'),
(2513, 40, 0x456e7669617220756d20636f6e76697465, 'Y', '2014-02-11 11:44:36'),
(2551, 40, 0x436f6e766974652061636569746f21, 'Y', '2014-02-11 11:44:36'),
(2553, 40, 0x436f6e7669746520726563757361646f21, 'Y', '2014-02-11 11:44:36'),
(2561, 40, 0x4f20757375e172696f205b25735d206ee36f2074656d206eed76656c, 'Y', '2014-02-11 11:44:36'),
(2880, 40, 0x46616c7461206573636f6c686572206120636f72, 'Y', '2014-02-11 11:44:36'),
(2881, 40, 0x46616c74612066617a6572206c616e6365206465206b6f6d69, 'Y', '2014-02-11 11:44:36'),
(2882, 40, 0x436f7220696e76e16c696461206573636f6c68696461, 'Y', '2014-02-11 11:44:36'),
(2892, 40, 0x56616e746167656d2070616472e36f, 'Y', '2014-02-11 11:44:36'),
(2898, 40, 0x56616c6f7220696e76e16c69646f2070617261206b6f6d69205b25735d2e, 'Y', '2014-02-11 13:02:30'),
(2905, 40, 0x4d6f64656c6f7320636f6d2069642d64652d757375e172696f205b25735d, 'Y', '2014-02-11 13:02:30'),
(2919, 40, 0x636f6e666967757261e7f56573206465206a6f676f2d6dfa6c7469706c6f, 'Y', '2014-02-11 13:02:30'),
(3268, 40, 0x4e6f766f206a6f676f2d6dfa6c7469706c6f, 'Y', '2014-02-11 13:02:30'),
(3376, 40, 0x4170656e6173206a6f676f732d6dfa6c7469706c6f73, 'Y', '2014-02-11 13:02:30'),
(4527, 40, 0x566f63ea20636f7274612c206575206573636f6c686f, 'Y', '2014-02-11 13:02:30'),
(4528, 40, 0x4575206573636f6c686f2c20766f63ea20636f727461, 'Y', '2014-02-11 13:02:30'),
(4538, 40, 0x4e65676f63696172, 'Y', '2014-02-11 13:02:30'),
(4698, 40, 0x506c6163617220646f204a6f676f206e6f20546f726e65696f, 'Y', '2014-05-01 12:33:25'),
(4699, 40, 0x496e64696361646f726573206465204a6f676f20646520546f726e65696f, 'Y', '2014-02-11 13:02:30'),
(4704, 40, 0x5469706f2064652076616e746167656d, 'Y', '2014-02-11 13:03:04'),
(5507, 40, 0x53616c76617220636f6e666967757261e7f56573206573636f6c6869646173, 'Y', '2014-02-11 13:03:04'),
(2527, 40, 0x4d6f737472617220656e74726164612064612073616c61206465206573706572612028706172612061706167617229, 'Y', '2014-02-11 13:06:32'),
(2529, 40, 0x436f6e76696461722070617261206a6f676f2d6dfa6c7469706c6f, 'Y', '2014-02-11 13:06:32'),
(2545, 40, 0x456e76696172206d656e736167656d207061726120746f646f73206f73206a6f6761646f726573, 'Y', '2014-02-11 13:06:32'),
(2549, 40, 0x5265736572766120646520636f6e76697465206170616761646121, 'Y', '2014-02-11 13:06:32'),
(2557, 40, 0x537567657374e36f2064652076616e746167656d2070617261206f20677275706f205b25735d, 'Y', '2014-02-11 13:06:32'),
(2571, 40, 0x46616c74616d20616c67756e73206a6f6761646f726573, 'Y', '2014-02-11 13:06:32'),
(2578, 40, 0x41206f7264656d20646f20677275706f205b25735d20707265636973612073657220646566696e696461, 'Y', '2014-02-11 13:06:32'),
(2579, 40, 0x41206f7264656d20646f20677275706f205b25735d207072656369736120636f6d65e7617220656d2031, 'Y', '2014-02-11 13:06:32'),
(2888, 40, 0x566f63ea206ae120636f6d65e76f7520257320646f206de178696d6f206465202573206a6f676f732e, 'Y', '2014-02-11 13:06:32'),
(2900, 40, 0x56616c6f7220696e76e16c69646f207061726120616a75737465206465206b6f6d69205b25735d2e, 'Y', '2014-02-11 13:06:32'),
(2902, 40, 0x56616c6f7220696e76e16c69646f2070617261206f206ded6e696d6f206465206a6f676f73206176616c6961646f73205b25735d2e, 'Y', '2014-02-11 13:10:48'),
(2904, 40, 0x56616c6f7220696e76e16c69646f2070617261206a6f6761646f726573205b25735d2e, 'Y', '2014-02-11 13:10:48'),
(5184, 40, 0x6c696d697461646f20636f6d206f206ded6e696d6f2064652025732065206de178696d6f20646520257320706564726173, 'Y', '2014-02-11 13:10:48'),
(5434, 40, 0x50616472e36f2064652076616e746167656d20696e737566696369656e74652070617261202573, 'Y', '2014-02-11 13:10:48'),
(5447, 40, 0x4c696d697465206465206172717569766f2053474620656e766961646f3a206de1782e202573204b6942, 'Y', '2014-02-11 13:10:48'),
(2560, 40, 0x53656d20706f7369e7e36f206c69767265207061726120636f6e7669646172206f20757375e172696f, 'Y', '2014-02-11 19:57:53'),
(6187, 40, 0x706f7274756775ea73202842726173696c2920287574662d3829, 'Y', '2015-06-19 01:11:54'),
(2562, 40, 0x4f20757375e172696f205b25735d206ae120666f6920636f6e76696461646f206f75206ae120657374e12070726573656e7465206e6f206a6f676f, 'Y', '2014-02-11 19:57:53'),
(2564, 40, 0x4f20757375e172696f206120736572206170616761646f206ae120636f6d65e76f75206f206a6f676f2e, 'Y', '2014-02-11 19:57:53'),
(2565, 40, 0x4e656e68756d20636f6e766974652072657365727661646f20656e636f6e747261646f2070617261206f20757375e172696f2e, 'Y', '2014-02-11 19:57:53'),
(2569, 40, 0x4f20757375e172696f206120736572206170616761646f206ee36f2061636569746f75206f206a6f676f2e, 'Y', '2014-02-11 19:57:53'),
(2570, 40, 0x4f20757375e172696f206120736572206170616761646f2065207175652061636569746f75206f206a6f676f206ee36f20706f64652073657220656e636f6e747261646f2e, 'Y', '2014-02-11 19:57:53'),
(2573, 40, 0x4f206a6f6761646f72205b25735d2061636569746f75206f206a6f676f206d61697320646520756d612076657a, 'Y', '2014-02-11 19:57:53'),
(2575, 40, 0x4f7320677275706f73205b25732c2025735d2073e36f206e6563657373e172696f732c206d617320656e636f6e74726569205b25735d, 'Y', '2014-02-11 19:57:53'),
(2577, 40, 0x536f6d656e746520677275706f2d257320e9207065726d697469646f2c206d617320656e636f6e74726569205b25735d, 'Y', '2014-02-11 19:57:53'),
(2845, 40, 0x436f6e766974652070617261206a6f676f2d6dfa6c7469706c6f206465205b25735d, 'Y', '2014-02-11 19:57:53'),
(2847, 40, 0x45737365206a6f676f20e920756d206a6f676f20646520666f726d612028666f726d612023257329, 'Y', '2014-02-11 21:19:06'),
(2873, 40, 0x4a6f6761646f7265732066617a65722073657573206c616e636573206465206b6f6d69206162657274616d656e74652e, 'Y', '2014-02-11 21:19:06'),
(2874, 40, 0x4c616e636573206465206b6f6d692073e36f206d6f73747261646f7320616f206f7574726f206a6f6761646f722e, 'Y', '2014-02-11 21:19:06'),
(2877, 40, 0x556d206a6f6761646f72206573636f6c6865206f206b6f6d692070617261206173206272616e6361732e, 'Y', '2014-02-11 21:19:06'),
(2883, 40, 0x4f206c616e6365206465206b6f6d6920707265636973612073657220756d206efa6d65726f2e, 'Y', '2014-02-11 21:19:06'),
(2903, 40, 0x4f2076616c6f722070617261206f206ded6e696d6f206465206a6f676f73206176616c6961646f7320657374e120666f726120646f206c696d6974652e, 'Y', '2014-02-11 21:19:06'),
(2953, 40, 0x566f63ea206573636f6c6865206b6f6d692c2065752028257329206573636f6c686f20636f72, 'Y', '2014-02-11 21:19:06'),
(2954, 40, 0x566f63ea206573636f6c6865206b6f6d692c2065752028257329206573636f6c686f206120636f72, 'Y', '2014-02-11 21:19:06'),
(2955, 40, 0x45752028257329206573636f6c686f206b6f6d692c20766f63ea206573636f6c6865206120636f72, 'Y', '2014-02-11 21:19:06'),
(2956, 40, 0x45752028257329206573636f6c686f206b6f6d692c20766f63ea2028257329206573636f6c6865206120636f72, 'Y', '2014-02-11 21:19:06'),
(5417, 40, 0x56616e746167656d20636f6d2070726f626c656d613a206573706572617661202573206d6173206163686f75202573, 'Y', '2014-02-11 21:21:09'),
(5418, 40, 0x4b6f6d6920636f6d2070726f626c656d613a206573706572617661202573206d6173206163686f75202573, 'Y', '2014-02-11 21:21:09'),
(5526, 40, 0x4efa6d65726f20696e76e16c69646f206465207065647261732070617261206f2062796f796f6d692063616e6164656e73652e, 'Y', '2014-02-11 21:21:09'),
(2532, 40, 0x4f20757375e172696f205b25735d20736572e1206e6f746966696361646f20736f6272652065737465206170616761722e, 'Y', '2016-08-06 20:48:44'),
(2536, 40, 0x566f63ea20666f6920636f6e76696461646f20706172612065737465206a6f676f2d6dfa6c7469706c6f2e, 'Y', '2016-08-06 20:49:45'),
(2537, 40, 0x506f72206661766f7220726576656a6120636f6d206375696461646f20617320636f6e666967757261e7f5657320646f206a6f676f206520646f2074656d706f2e, 'Y', '2014-02-12 03:32:36'),
(2540, 40, 0x566f63ea20706f64652061636569746172206f752072656a6569746172206573746520636f6e766974652e, 'Y', '2016-08-06 20:50:56'),
(2547, 40, 0x5265736572766120646520636f6e766974652061646963696f6e6164612070617261206a6f676f2d6dfa6c7469706c6f21, 'Y', '2014-02-12 03:32:36'),
(2566, 40, 0x5265736572766120646f20757375e172696f206120736572206170616761646f206ee36f20666f6920656e636f6e74726164612e, 'Y', '2014-02-12 03:32:36'),
(2567, 40, 0x4ee36f2065786973746520636f6e766974652072657365727661646f207061726120766f63ea206170726f7661722e, 'Y', '2014-02-12 03:32:36'),
(2572, 40, 0x4e656d20746f646f732061732076616761732070617261207265736572766120666f72616d206163656974617320706f72206a6f6761646f7265732e, 'Y', '2014-02-12 03:32:36'),
(2869, 40, 0x4c616e636573206465206b6f6d6920666963616d206f63756c746f7320646f206f7574726f206a6f6761646f722e, 'Y', '2014-02-12 03:32:36'),
(2885, 40, 0x4a69676f20e92070726f696269646f2c20656e74e36f206f206c616e6365206465206b6f6d692070726563697361207365722066726163696f6e616c2e, 'Y', '2014-02-12 03:32:36'),
(2887, 40, 0x44657363756c70652c20766f63ea206ee36f20706f646520636f6d65e76172206d61697320717565202573206a6f676f7321, 'Y', '2014-02-12 10:48:53'),
(2889, 40, 0x566f63ea206ee36f20706f646520636f6d65e76172206d61697320717565202573206a6f676f7320646520746f726e65696f2e, 'Y', '2014-02-12 10:48:53'),
(2891, 40, 0x436f6e666967757261e7e36f206d616e75616c20636f6d2061206d696e686120636f72205b25735d2c2076616e746167656d2025732c206b6f6d69202573, 'Y', '2014-02-12 10:48:53'),
(2899, 40, 0x56616c6f7220696e76e16c69646f2064652074656d706f205b25735d2c20707265636973612073657220696e746569726f2065206d61696f72206f7520696775616c2061207a65726f2e, 'Y', '2014-02-12 10:48:53'),
(5419, 40, 0x50726f626c656d61206e612063726961e7e36f20646520666f726d613a2064697363726570e26e63696120656e636f6e7472616461206e6120706f7369e7e36f205b25735d, 'Y', '2014-02-12 10:48:53'),
(5420, 40, 0x50726f626c656d61206e612063726961e7e36f20646520666f726d613a2066616c74616d20706564726173206e6f20534746205b25735d, 'Y', '2014-02-12 10:48:53'),
(5503, 40, 0x45737365206a6f676f2075736120706f6e747561e7e36f20706f7220e17265612c20656e74e36f2064616d652028746572726974f372696f206e657574726f2920636f6e746121, 'Y', '2014-02-12 10:48:53'),
(5504, 40, 0x506f72206661766f722074656e68612063657274657a6120717565206ee36f20726573746f7520756d206efa6d65726f20ed6d7061722064652064616d652028746572726974f372696f73206e657574726f73292e, 'Y', '2014-02-12 10:48:53'),
(5509, 40, 0x4f73206f7574726f73206a6f6761646f72657320736572e36f20696e666f726d61646f73206465737465206170616761722e, 'Y', '2014-02-12 10:48:53'),
(5524, 40, 0xc9206e6563657373e172696f20717565206f20616476657273e172696f2074656e686120756d206eed76656c20706172612070617274696369706172206465206a6f676f73206176616c6961646f732e, 'Y', '2014-02-12 10:48:53'),
(2412, 40, 0x4e6f74613a206f20706572ed6f646f2064652062796f796f6d6920617475616c20e9207265636f6d65e761646f20696e646570656e64656e746520646f207265696eed63696f20636f6d706c65746f2e, 'Y', '2014-02-12 12:00:02'),
(2525, 40, 0x53f320706f6465206578697374697220756d20fa6e69636f20636f6e766974652070617261206a6f676f2d6dfa6c7469706c6f206e612073616c612064652065737065726121, 'Y', '2014-02-12 12:00:02'),
(2541, 40, 0x4f206d6573747265206465206a6f676f205b25735d20736572e120696e666f726d61646f20646120737561206465636973e36f2e, 'Y', '2014-02-12 12:00:02'),
(2550, 40, 0x4f20757375e172696f2025732061636569746f75206f20636f6e766974652070617261206f206a6f676f2d6dfa6c7469706c6f2025732e, 'Y', '2014-02-12 12:00:02'),
(2552, 40, 0x4f20757375e172696f2025732072656a6569746f75206f20636f6e766974652070617261206f206a6f676f2d6dfa6c7469706c6f2025732e, 'Y', '2014-02-12 12:00:02'),
(2576, 40, 0x4f206efa6d65726f206465206a6f6761646f72657320282573207061726120257329206ee36f20e920696775616c20e020636f6e666967757261e7e36f20646f206a6f676f205b25735d, 'Y', '2014-02-12 12:00:02'),
(2580, 40, 0x41206f7264656d20646520677275706f7320707265636973612073657220fa6e696361206520636f6e73656375746976613a20312c20322c20332c202e2e2e, 'Y', '2014-02-12 12:00:02'),
(2848, 40, 0x566f63ea20706f64652061636569746172206f752072656a6569746172206f20636f6e76697465206e612070726570617261e7e36f20646f206a6f676f3a202573, 'Y', '2014-02-12 12:00:02'),
(2875, 40, 0x4c616e636573206465206b6f6d692073e36f20726576657a61646f73206174e920756d206a6f6761646f7220636f6d65e76172206f206a6f676f3a, 'Y', '2014-02-12 12:00:02'),
(2884, 40, 0x4a69676f20e9206f627269676174f372696f2c20656e74e36f20756d206c616e6365206465206b6f6d6920707265636973612073657220696e746569726f2e, 'Y', '2014-02-12 12:00:02'),
(2886, 40, 0x4f20736575206c616e6365206465206b6f6d69207072656369736120736572206d61696f7220717565206f206c616e636520646f20616476657273e172696f2e, 'Y', '2014-02-12 14:25:14'),
(5225, 40, 0x4f206efa6d65726f206de178696d6f20646520636f6e7669746573206e612073616c6120646520657370657261205b25735d20666f6920616c63616ee761646f2e, 'Y', '2014-02-12 14:25:14'),
(5521, 40, 0x4e6f74613a20616c67756e732076616c6f72657320696e76e16c69646f7320666f72616d207375627374697475ed646f7320636f6d207365752076616c6f722070616472e36f21, 'Y', '2014-02-12 14:25:14'),
(2526, 40, 0x50617261206d7564e12d6c6f20766f63ea20646576652061646963696f6ee12d6c6f206e6f76616d656e7465206465706f697320646520617061676172206f20717565206578697374652e, 'Y', '2014-02-13 01:29:49'),
(2538, 40, 0x566f63ea20706f646520646973637574697220617320636f6e666967757261e7f565732076617269e17665697320636f6d206f206d6573747265206465206a6f676f20616e74657320646520616365697461722e, 'Y', '2014-02-13 01:29:49'),
(2539, 40, 0x4e6f20656e74616e746f2c206f206167727570616d656e746f2c206120636f72206520612076616e746167656d20646f206a6f676f2073f320706f64656d20736572206d756461646f732070656c6f206d6573747265206465206a6f676f2e, 'Y', '2014-02-13 01:29:49'),
(2574, 40, 0x4f206efa6d65726f206465206a6f6761646f7265732028257320706172612025732c2025732070617261202573292073e36f206469666572656e74657320646120636f6e666967757261e7e36f20646f206a6f676f205b25735d2e, 'Y', '2014-02-13 01:29:49'),
(2849, 40, 0x506172612072656a6569746172206f20636f6e766974652c20706f72206661766f7220696e666f726d6520616f206d6573747265206465206a6f676f20726573706f6e64656e646f2065737361206d656e736167656d2e, 'Y', '2014-02-13 01:29:49'),
(2850, 40, 0x566f63ea20706f646520717565726572206469736375746972207175616c2074696d652c20636f722065206f7264656d206465206a6f67617220766f63ea2070726566657265206e612070617274696461202876656a61206f204641512070617261206d61696f72657320646574616c686573292e, 'Y', '2014-02-13 01:29:49'),
(2868, 40, 0x4f73206a6f6761646f7265732066617a656d2073657573206c616e636573206465206b6f6d6920646520666f726d61206f63756c74612028756d20706f72206a6f6761646f72292e, 'Y', '2014-02-13 01:29:49'),
(2871, 40, 0x4f206a6f6761646f72207175652066617a206f206d61696f72206c616e6365206669636120636f6d2061732070726574617320652064e12065737361207175616e746964616465206465206b6f6d692070617261206173206272616e6361732e, 'Y', '2014-02-13 01:29:49'),
(2872, 40, 0x5365206f73206c616e636573206465206b6f6d692073e36f206967756169732c206120636f7220646f73206a6f6761646f72657320e920736f72746561646120286e6967697269292e, 'Y', '2014-02-13 01:29:49'),
(2878, 40, 0x456e74e36f206f20616476657273e172696f206573636f6c686520612073756120636f722065206f206a6f676f20636f6d65e7612e, 'Y', '2014-02-13 01:29:49'),
(5226, 40, 0x566f63ea20706f64652073616c766172206f20666f726d756ce172696f20636f6d6f206d6f64656c6f2c2061706167617220756d20636f6e766974652064612073616c6120646520657370657261206f752065737065726172206174e92071756520656c65732073656a616d2061636569746f732e, 'Y', '2014-02-13 13:47:03'),
(5227, 40, 0x4f206efa6d65726f206465206a6f676f7320646520756d206d65736d6f20636f6e7669746520706f64652073657220636f6c6f6361646f20636f6d20224efa6d65726f206465206a6f676f7320706172612061646963696f6e6172222e, 'Y', '2014-02-13 13:47:03'),
(5458, 40, 0x5061726120637269617220756d6120726573656e6861206465206a6f676f20e9207265636f6d656e6461646f20626169786172206f205347462073656d206f7320636f6d656e74e172696f732e, 'Y', '2014-02-13 13:47:03'),
(5459, 40, 0x53656ee36f20706f64652061636f6e746563657220717565207365757320636f6d656e74e172696f73207072697661646f73206f75207375617320616e6f7461e7f56573206465206a6f676f2073656a616d207075626c69636164617321, 'Y', '2014-02-13 13:47:03'),
(5523, 40, 0x4f20616476657273e172696f20707265636973612074657220756d206eed76656c207061726120706f646572207573617220612076616e746167656d20646f73207469706f7320636f6e76656e63696f6e616c206f75207072f3707269612e, 'Y', '2014-02-13 13:47:03'),
(1877, 40, 0x496e66656c697a6d656e7465206e6f2064696120352064652066657665726569726f20646520323030392c2065737361206de17175696e61206573746176612063616e74616e646f2073657520fa6c74696d6f20766572736f2c20707265636973e176616d6f7320646520756d61206e6f766120736f6c75e7e36f2e2050617261206e6f7320646569786172207573617220736575206e6f766f206571756970616d656e746f2c20636f6e636f7264616d6f7320656d20706167617220756d612070657175656e612074617861202820243230302053454b2f6dea732c20636572636120646520522437302f6dea7320292e0d0a4ef37320616368616d6f7320717565206973736f2061696e646120e920756d61206f66657274612062617374616e74652067656e65726f73612e, 'Y', '2014-02-13 20:20:44'),
(1878, 40, 0x3c703e506f7274616e746f20657374616d6f7320706564696e646f206120766f63ea206120646f61e7e36f20646520756d612070657175656e61207175616e7469612c20706f72206578656d706c6f206465203130206f752032302072656169732c207061726120636f6e74696e7561726d6f73206d616e74656e646f206f207365727669646f722c2073656d20676173746f7320706573736f6169732e205175616e74696173206d656e6f7265732073e36f20696775616c6d656e746520617072656369616461732e204e6f73736f206f626a657469766f20e9206a756e7461722064696e686569726f20737566696369656e74652070617261207061676172206f207365727669e76f20706f722070656c6f206d656e6f73203320616e6f732e203c703e446573656a616d6f73206f206d656c686f722070726120766f63ea2c203c703e4f732061646d696e6973747261646f72657320646f20444753, 'Y', '2014-02-13 20:20:44'),
(1887, 40, 0x5175657269646f7320616d616e74657320646f20476f2c0d0a3c703e706f72207175617365207365746520616e6f732061676f7261202832303039292c206f20447261676f6e20476f2053657276657220666f692067656e74696c6d656e746520686f7370656461646f2070656c612053616d7572616a446174612c20646520666f726d6120746f74616c6d656e74652067726174756974612e20536f6d6f732065787472656d616d656e746520677261746f7320706f72206973736f2c206f207365727669e76f206f666572656369646f20706f7220656c657320666f69207265616c6d656e746520657373656369616c2070617261206f207375636573736f20646f204447532e204465736465206f20636f6d65e76f2c206f20444753207465766520756d206669726d65206372657363696d656e746f2e204120616c67756e7320616e6f7320617472e173202053616d7572616a446174612074656d207469646f2070657175656e6f732070726f626c656d6173206e61206d6f74697661e7e36f20646f20637573746f206465206e6f7320686f7370656461722067726174756974616d656e74652e2044657669646f20e0206772616e646520617469766964616465206e6f204447532c206ef373207573616d6f73207265637572736f73207175652073657269616d20646f73207365757320636c69656e746573206e6f726d6169732c2065206973736f20746f726e6f75206e6563657373e172696f206e6f7320636f6c6f63617220656d20756d61206de17175696e612073657061726164612e0d0a3c703e204e6f206e6174616c20646520323030372c20656c657320636f6e736567756972616d20756d207365727669646f72206d61697320616e7469676f207061726120757361726d6f7320706f7220636f6e7461207072f3707269612e, 'Y', '2014-02-13 20:20:44'),
(4604, 40, 0x412061746976696461646520646120636f6e746120222573222061756d656e746f75206d7569746f206520676173746f75206e6f7373612062616e64612065206e6f73736f207365727669646f722e0d0a506f72206661766f722c20636f7272696a61206573746520636f6d706f7274616d656e746f2e0d0a4573746120636f6e746120657374e120626c6f717565616461206174e92025732e, 'Y', '2016-08-06 20:54:30'),
(1545, 40, 0x45646974617220636f6e7461746f, 'Y', '2014-02-13 20:36:28'),
(1546, 40, 0x56657220636f6e7461746f, 'Y', '2014-02-13 20:36:28'),
(1548, 40, 0x43617465676f7269617320646f2073697374656d61, 'Y', '2014-02-13 20:36:28'),
(1549, 40, 0x43617465676f7269617320646520757375e172696f, 'Y', '2014-02-13 20:36:28'),
(1551, 40, 0x6d616e74656e6861206173206e6f746173206272657665732c20636f6d206174e9203235352063617261637465726573, 'Y', '2014-02-13 20:36:28'),
(1552, 40, 0x53616c76617220636f6e7461746f, 'Y', '2014-02-13 20:36:28'),
(1560, 40, 0x4275736361722063617465676f7269617320646f2073697374656d61, 'Y', '2014-02-13 20:36:28'),
(1561, 40, 0x4275736361722063617465676f7269617320646520757375e172696f, 'Y', '2014-02-13 20:36:28'),
(1562, 40, 0x4c6973746120646520636f6e7461746f73, 'Y', '2014-02-13 20:36:28'),
(1574, 40, 0x54726f63617220706170656c20646f20616476657273e172696f, 'Y', '2014-02-13 20:36:28'),
(1575, 40, 0x436f7220646f73206a6f6761646f726573, 'Y', '2014-02-13 20:43:19'),
(1596, 40, 0x50726f7465676572206a6f676f73206e612073616c6120646520657370657261, 'Y', '2014-02-13 20:43:19'),
(1597, 40, 0x52656a6569746172206d656e736167656e73, 'Y', '2014-02-13 20:43:19'),
(1598, 40, 0x52656a656974617220636f6e7669746573, 'Y', '2014-02-13 20:43:19'),
(1886, 40, 0x4573636f6e646572206a6f676f73206e612073616c6120646520657370657261, 'Y', '2014-02-13 20:43:19'),
(2180, 40, 0x5b2044696d656e73f565733a20257320782025732c2074616d616e686f3a202573204b6942205d, 'Y', '2014-02-13 20:43:19'),
(2191, 40, 0x4d6f737472612063617465676f7269617320646520626f6c6574696e73, 'Y', '2014-02-13 20:43:19'),
(2197, 40, 0x486162696c69746172206a617661736372697074, 'Y', '2014-02-13 20:43:19'),
(2200, 40, 0x286170656e6173207061726120636f726573206465206d61646569726120636f6d207465787475726129, 'Y', '2014-02-13 20:43:19'),
(2201, 40, 0x41706f6e74617220286d6f7374726120636f6f7264656e6164617329, 'Y', '2014-02-13 20:43:19'),
(2202, 40, 0x41706f6e7461722053474620286d6f7374726120636f6f7264656e6164617320646f2053474629, 'Y', '2014-02-13 20:58:45'),
(2203, 40, 0x4d6f73747261206efa6d65726f73206170656e617320616f2061706f6e746172, 'Y', '2014-02-13 20:58:45'),
(2204, 40, 0x4e756d657261e7e36f2072656c6174697661, 'Y', '2014-02-13 20:58:45'),
(2205, 40, 0x4e756d657261e7e36f20696e76657274696461, 'Y', '2014-02-13 20:58:45'),
(2206, 40, 0x4d6172636172206361707475726120646120fa6c74696d61206a6f67616461, 'Y', '2014-02-13 20:58:45'),
(2210, 40, 0x496e666f726d61e7f56573206465206eed76656c20617475616c697a6164617321, 'Y', '2014-02-13 20:58:45'),
(2213, 40, 0x566f63ea2070726563697361203c623e646566696e69722073657520226eed76656c223c2f623e20736520766f63ea20717569736572203c623e6a6f676f73206176616c6961646f733c2f623e, 'Y', '2014-02-13 20:58:45'),
(2214, 40, 0x4573636f6c6861206f20736575206eed76656c20636f6d206375696461646f20706f72717565206973736f206ee36f20706f646520736572206e6f726d616c6d656e7465206d756461646f206465706f69732071756520766f63ea20636f6d65e76120756d206a6f676f206176616c6961646f2e, 'Y', '2014-02-13 20:58:45'),
(2215, 40, 0x536520766f63ea20736f75626572206f20736575206eed76656c20656d20616c67756d206c756761722c20636f6d6f206f7574726f207365727669646f72206f7520756d61206176616c6961e7e36f206f66696369616c206465206eed76656c2c20766f63ea20706f64652075736172206573746520436f6e766572736f72206465204eed76656c207061726120646573636f62726972206f206eed76656c206170726f70726961646f206e6f204447532e, 'Y', '2016-08-06 20:48:44'),
(2216, 40, 0x536520766f63ea206ee36f207361626520736575206eed76656c206465206a6569746f206e656e68756d2c207065e76120616a756461206e6f732066f372756e732e20496e696369616e74657320706f64656d207472616e7175696c616d656e7465206573636f6c68657220756d206eed76656c20656e7472652032356b797520652033306b79752c2073656e646f207175652033306b797520e9206f206eed76656c206d61697320696e696369616e74652e, 'Y', '2014-02-13 20:58:45'),
(2217, 40, 0x4ef37320656e636f72616a616d6f7320766f63ea206120636f6e66696172206e6f2073697374656d61206465206176616c6961e7e36f207061726120616a7573746172206f20736575206eed76656c2e205175616e646f20766f63ea207465726d696e61206a6f676f73206176616c6961646f7320736575206eed76656c20736520616a75737461207261706964616d656e746520616f2076616c6f72206170726f70726961646f2e, 'Y', '2014-02-13 22:30:22'),
(2218, 40, 0x41207661726961e7e36f206de9646961206465206eed76656c20e920636572636120646520302c336b797520656d20756d206a6f676f20657175696c69627261646f2e20456e74e36f20766f63ea20707265636973612067616e686172206465203320612034206a6f676f7320636f6e74726120616476657273e172696f73206465206eed76656c20706172656369646f20706172612061756d656e74617220736575206eed76656c20656d20316b79752e204e6f20656e74616e746f2c2061207661726961e7e36f20646570656e646520646f20696e74657276616c6f20646520636f6e6669616ee76120646f206eed76656c20646f73206a6f6761646f7265732c20646f20736575206170726f76656974616d656e746f20652064612076616e746167656d207573616461206e6f206a6f676f2e20506f6465207072656369736172206465206d616973206a6f676f73206f75206d656e6f7320706172612061756d656e74617220316b79752e, 'Y', '2014-02-13 22:30:22'),
(2219, 40, 0x3c623e22496e666f726d61e7f56573206465206eed76656c223c2f623e20e9206170656e617320756d2063616d706f20696e666f726d616c2e20456c6520706f64652073657220757361646f20706172612066616c617220646f20736575206eed76656c20656d206f7574726f73206c7567617265732e204578656d706c6f733a204b47532c204547532c204947532c206574632e, 'Y', '2014-02-13 22:30:22'),
(2220, 40, 0x3c623e4d7564617220756d206eed76656c206573746162656c656369646f3c2f623e2073f320706f64652073657220666569746f20656d20636572746173207369747561e7f565732e, 'Y', '2014-02-13 22:30:22'),
(2221, 40, 0x54656e686120656d206d656e746520717565206a6f6761722076e172696f73206a6f676f73206520646569786172206f2073697374656d61206465206176616c6961e7e36f20616a757374617220736575206eed76656c20e92061206d656c686f72206d616e656972612e, 'Y', '2014-02-13 22:30:22'),
(2222, 40, 0x556d61206d7564616ee761206f7520616a75737465206465206eed76656c2073f320706f64652070656469646f206e6f726d616c6d656e746520756d612076657a20706f7220616e6f2e, 'Y', '2014-02-13 22:30:22'),
(5452, 25, 0x506f74726976697465, 'Y', '2014-11-14 11:35:09'),
(5453, 25, 0x416c65206d656c65, 'Y', '2014-11-14 11:35:39'),
(3362, 25, 0x416c65206d656c65, 'Y', '2014-11-14 11:35:39'),
(2928, 25, 0x6f20646174c48320286163656561c89969206f66657274c48329, 'Y', '2014-11-14 11:27:32'),
(2933, 25, 0x647570c483202573207a696c65, 'Y', '2014-11-14 11:28:07'),
(2225, 40, 0x4661e76120756d2070656469646f206e6f2066f372756d2022537570706f7274222028646520707265666572ea6e63696120656d20696e676cea732920636f6d206f20617373756e746f20222573222e20556d2061646d696e6973747261646f722076616920616e616c69736172207365752070656469646f2e3c62723e0d0a506f72206661766f722064ea20696e666f726d61e7f5657320636f6d6f3a206f206eed76656c20646573656a61646f2c20666f6e7465732071756520636f6e6669726d656d20736575206eed76656c2028646520707265666572ea6e63696120636f6d206d65736d6f20494420646520757375e172696f292e20506f72206578656d706c6f2c206f7574726f73207365727669646f72657320646520476f2c206c6973746173206f66696369616973206465206eed76656c2065207265636f6d656e6461e7f5657320646520756d206a6f6761646f72206f752070726f666573736f72206465206eed76656c206d61697320616c746f20717565206f207365752e2050617261206eed76656973206465206f7574726f73207365727669646f72657320706f72206661766f7220757365206f206e6f73736f20636f6e766572736f72206163696d612e, 'Y', '2014-02-13 22:30:22'),
(2226, 40, 0x50656469646f206465206d7564616ee761206465206eed76656c, 'Y', '2014-02-13 22:30:22');
INSERT INTO `Translations` (`Original_ID`, `Language_ID`, `Text`, `Translated`, `Updated`) VALUES
(2227, 40, 0x4f627365727661e7f5657320696d706f7274616e74657320736f627265206d7564616ee76173206465206eed76656c, 'Y', '2014-02-13 23:01:29'),
(2672, 40, 0x4f20757375e172696f205b25735d2074656d20756d6120666f746f, 'Y', '2014-02-13 23:01:29'),
(2673, 40, 0x466f746f20646f20757375e172696f205b25735d, 'Y', '2014-02-13 23:01:29'),
(2996, 40, 0x4361726163746572657320696e76e16c69646f7320757361646f73206e6f20757375e172696f205b25735d, 'Y', '2014-02-13 23:01:29'),
(2997, 40, 0x557375e172696f7320646573636f6e68656369646f7320656e636f6e747261646f73205b25735d, 'Y', '2014-02-13 23:01:29'),
(2998, 40, 0xc9206e6563657373e172696f20616f206d656e6f7320646f69732064657374696e6174e172696f732c206361736f20636f6e7472e172696f2075736520756d61206d656e736167656d20707269766164612e, 'Y', '2014-02-13 23:01:29'),
(2999, 40, 0x4f7320757375e172696f73205b25735d20666f72616d2070726f696269646f7320706f722061646d696e6973747261646f72657320646520766f74617220656d207065737175697361732e, 'Y', '2014-02-13 23:01:29'),
(3000, 40, 0x4f7320636f6e76696461646f73205b25735d206ee36f2073e36f207065726d697469646f73206e61206c6973746120646520757375e172696f732e, 'Y', '2014-02-13 23:01:29'),
(3299, 40, 0x50e167696e61206465206a6f676f7320636f6d206f20616476657273e172696f, 'Y', '2014-02-13 23:01:29'),
(4591, 40, 0x556d206675736f20686f72e172696f20696e76e16c69646f205b25735d20666f69206573636f6c6869646f, 'Y', '2014-02-13 23:01:29'),
(3631, 40, 0x526f6461646173, 'Y', '2014-02-14 00:19:08'),
(3689, 40, 0x4c696761, 'Y', '2014-02-14 00:19:08'),
(3693, 40, 0x4c69676120444753, 'Y', '2014-02-14 00:19:08'),
(4209, 40, 0x45646974617220726f6461646173, 'Y', '2014-02-14 00:19:08'),
(4449, 40, 0x526f6461646120646f20546f726e65696f, 'Y', '2015-02-04 14:01:25'),
(4753, 40, 0x436f6d65e7617220526f64616461, 'Y', '2014-02-14 00:19:08'),
(5030, 40, 0x636f7265732064652066756e646f, 'Y', '2014-02-14 00:19:08'),
(5140, 40, 0x4573636f6c68657220526f64616461, 'Y', '2014-02-14 00:19:08'),
(5141, 40, 0x56697375616c697a617220526f64616461, 'Y', '2014-02-14 00:19:08'),
(5143, 40, 0x52656d6f76657220526f64616461, 'Y', '2014-02-14 00:19:08'),
(5147, 40, 0x45646974617220726f6461646173, 'Y', '2014-02-14 00:23:54'),
(5154, 40, 0x526f6461646120232573, 'Y', '2014-02-14 00:23:54'),
(3690, 40, 0x43616d70656f6e61746f20444753, 'Y', '2014-02-14 00:50:40'),
(5633, 40, 0x43616d70656f6e61746f20444753, 'Y', '2014-02-14 00:50:40'),
(3688, 40, '', 'Y', '2014-02-16 10:03:49'),
(3724, 40, 0x506f7369e7e36f, 'Y', '2014-02-14 01:08:50'),
(3718, 40, 0x436f6d65e76172, 'Y', '2014-02-14 01:17:15'),
(3719, 40, 0x4a6f676172, 'Y', '2014-02-14 01:17:15'),
(3720, 40, 0x506c61636172, 'Y', '2014-02-14 01:17:15'),
(3721, 40, 0x45737065726172, 'Y', '2014-02-14 01:18:24'),
(3722, 40, 0x5465726d696e61646f, 'Y', '2014-02-14 01:18:24'),
(3076, 40, 0x4efa6d65726f206465206a6f6761646f726573, 'Y', '2014-02-15 19:53:43'),
(3080, 40, 0x4a6f676f20636f6d2076616e746167656d2065206e6967697269, 'Y', '2014-02-15 19:53:43'),
(3091, 40, 0x416a757374652064612076616e746167656d, 'Y', '2014-02-15 19:53:43'),
(3096, 40, 0x50726f76e176656c20636f6e666967757261e7e36f20646f206a6f676f, 'Y', '2014-02-15 19:53:43'),
(3103, 40, 0x44657374696e6174e172696f20646573636f6e68656369646f205b25735d, 'Y', '2014-02-15 19:53:43'),
(3054, 40, 0x446573616669616e746520646520436f72, 'Y', '2014-02-15 19:56:59'),
(3055, 40, 0x436f72204d61697320466f727465, 'Y', '2014-02-15 19:56:59'),
(3085, 40, 0x446573616669616e746520646520436f72205072657461, 'Y', '2014-02-15 19:56:59'),
(3086, 40, 0x446573616669616e746520646520436f72204272616e6361, 'Y', '2014-02-15 19:56:59'),
(4769, 40, 0x5469706f2064652076616e746167656d, 'Y', '2014-02-15 20:43:54'),
(4592, 40, 0x46616c746120756d20656e64657265e76f20656c657472f46e69636f20706172612072656365626572206173206e6f746966696361e7f5657320686162696c6974616461732e, 'Y', '2014-02-16 09:07:07'),
(4593, 40, 0x4f206efa6d65726f20696e76e16c69646f206465206469617320706172612072656a656974617220766974f37269617320706f722074656d706f205b25735d20666f6920636f7272696769646f2e, 'Y', '2014-02-16 09:07:07'),
(4594, 40, 0x4f206efa6d65726f206d7569746f206772616e6465206465206469617320706172612072656a656974617220766974f37269617320706f722074656d706f205b25735d20666f6920636f7272696769646f2e, 'Y', '2014-02-16 09:07:07'),
(4595, 40, 0x556d2074656d61202822736b696e222920646573636f6e68656369646f205b25735d20666f69206573636f6c6869646f2e, 'Y', '2014-02-16 09:07:07'),
(4596, 40, 0x54616d616e686f20696e76e16c69646f206465207065e76173205b25735d2e20436f7272696769646f2070617261206f2070616472e36f2e, 'Y', '2014-02-16 09:07:07'),
(4597, 40, 0x436f7220696e76e16c69646120646520746162756c6569726f2e20436f727269676964612070617261206f2070616472e36f2e, 'Y', '2014-02-16 09:07:07'),
(4598, 40, 0x56616c6f7220696e76e16c69646f205b25735d20757361646f2070617261206e756d657261e7e36f20286f732076616c6f726573207065726d697469646f732073e36f202573202e2e2e202573292e, 'Y', '2014-02-16 09:07:07'),
(4599, 40, 0x4f2074616d616e686f20646520616e6f7461e7f5657320706172612073657061726172206f7320746162756c6569726f732070657175656e6f7320646f73206772616e64657320e920696e76e16c69646f2e20436f7272696769646f2070617261206f2070616472e36f2e, 'Y', '2014-02-16 09:07:07'),
(4600, 40, 0x4120616c7475726120646520616e6f7461e7f56573206573636f6c68696461207061726120746162756c6569726f732070657175656e6f7320e920696e76e16c6964612e20436f727269676964612070617261206f2070616472e36f2e, 'Y', '2014-02-17 00:07:52'),
(4601, 40, 0x4120616c7475726120646520616e6f7461e7f56573206573636f6c68696461207061726120746162756c6569726f73206772616e64657320e920696e76e16c6964612e20436f727269676964612070617261206f2070616472e36f2e, 'Y', '2014-02-17 00:09:58'),
(4329, 40, 0x4d6f737472617220477275706f73, 'Y', '2015-02-04 14:01:25'),
(4444, 40, 0x417475616c697a617220696e666f726d61e7f5657320646f20746f726e65696f, 'Y', '2014-02-16 09:11:26'),
(2460, 40, 0x56657220546162656c61, 'Y', '2014-02-16 09:12:07'),
(4441, 40, 0x4a6f676f7320646f20546f726e65696f, 'Y', '2014-05-01 12:37:31'),
(5175, 40, 0x2573206a6f676f28732920646520746f726e65696f207465726d696e61646f2873292c20656d20257320766974f3726961287329206520257320646572726f7461287329, 'Y', '2014-08-12 08:56:58'),
(5622, 40, 0x41696e6461206578697374656d202573206a6f676f7320646520746f726e65696f2070617261207465726d696e6172206e6120726f646164612025642e, 'Y', '2014-02-16 09:18:23'),
(5702, 40, 0x4a6f676f7320646520746f726e65696f20656d2070726f67726573736f2065207465726d696e61646f73, 'Y', '2014-02-16 09:18:23'),
(5703, 40, 0x4d657573206a6f676f7320646520746f726e65696f20656d2070726f67726573736f, 'Y', '2014-02-16 09:18:23'),
(5704, 40, 0x4a6f676f7320646520746f726e65696f20656d2070726f67726573736f20646f20757375e172696f205b25735d, 'Y', '2014-02-16 09:18:23'),
(5706, 40, 0x4a6f676f7320646520746f726e65696f207465726d696e61646f7320646f20757375e172696f205b25735d, 'Y', '2014-02-16 09:18:23'),
(3954, 40, 0x4f20746f726e65696f2074656d202573206a6f676f7320656d2070726f67726573736f2e20c9206e6563657373e172696f20717565207465726d696e656d207072696d6569726f2e, 'Y', '2014-02-16 09:42:33'),
(4206, 40, 0x4d6f737472617220746f646f73206f73206a6f676f7320656d2070726f67726573736f20646f20746f726e65696f, 'Y', '2014-02-16 09:42:33'),
(5861, 40, 0x446572726f7461, 'Y', '2014-04-09 08:29:21'),
(6003, 40, 0x566974f3726961, 'Y', '2014-04-09 08:30:31'),
(4313, 40, 0x4372696172204a6f676f7320646f20546f726e65696f, 'Y', '2014-02-16 09:42:33'),
(4213, 40, 0x45646974617220726f6461646173, 'Y', '2015-02-04 13:46:48'),
(4214, 40, 0x56657220477275706f73, 'Y', '2015-02-05 01:45:14'),
(4934, 40, 0x4a6f676f7320646f20546f726e65696f206465205b25735d, 'Y', '2014-02-16 09:42:33'),
(5151, 40, 0x4661736520696e696369616c20646f73206a6f676f7320646f20746f726e65696f2028707265706172617220746f646f73206f73206a6f676f7320646f20746f726e65696f29, 'Y', '2014-02-16 09:42:33'),
(3623, 40, 0x4661736520646520646566696e69e7e36f20646f20746f726e65696f2028707265706172616e646f206520636f6e6669677572616e646f206f73206a6f676f7329, 'Y', '2014-02-16 09:43:41'),
(3649, 40, 0x41646d696e6973747261646f72206465204a6f676f20646f20546f726e65696f, 'Y', '2014-02-16 09:51:45'),
(3658, 40, 0x5465726d696e6172204a6f676f20646f20546f726e65696f, 'Y', '2014-02-16 09:51:45'),
(4023, 40, 0x4465706f697320646120636f6e6669726d61e7e36f206f206a6f676f20636f6d65e76172e120696d6564696174616d656e74652e, 'Y', '2014-02-16 09:51:45'),
(4778, 40, 0x496e666f726d61e7f56573206465204a6f676f7320646f20546f726e65696f, 'Y', '2014-02-16 09:52:55'),
(4783, 40, 0x566f63ea206ee36f2074656d206175746f72697a61e7e36f2070617261207465726d696e617220756d206a6f676f20646520746f726e65696f2e, 'Y', '2014-02-16 09:57:07'),
(4784, 40, 0x566f63ea206ee36f2074656d206175746f72697a61e7e36f20706172612061646963696f6e61722074656d706f20656d20756d206a6f676f20646520746f726e65696f2e, 'Y', '2014-02-16 09:57:07'),
(4941, 40, 0x4f206a6f676f20646520746f726e65696f20636f6d65e76f7521, 'Y', '2014-02-16 09:57:07'),
(5661, 40, 0x46617365206465207265616c697a61e7e36f20646f73206a6f676f73202870617274696461732073e36f206a6f67616461732c2076656e6365646f72657320636c6173736966696361646f732070617261207072f378696d617320726f6461646173206f7520726573756c7461646f2066696e616c29, 'Y', '2014-02-16 09:57:07'),
(4109, 40, 0x45737365206171756920e920766f63ea, 'Y', '2014-02-16 10:06:30'),
(4824, 40, 0x4d656c686f7220636f6c6f6361e7e36f, 'Y', '2014-02-16 10:07:37'),
(4878, 40, 0x416c656174f372696f, 'Y', '2014-02-16 10:07:37'),
(4923, 40, 0x43616d70656f6e61746f206170616761646f, 'Y', '2014-02-16 10:07:37'),
(4945, 40, 0x436f6c6f6361e7e36f206e6f2043616d70656f6e61746f, 'Y', '2014-02-16 10:07:37'),
(5637, 40, 0x6e6f2074e9726d696e6f20646f206a6f676f, 'Y', '2014-02-16 10:08:45'),
(4434, 40, 0x2d20546f726e65696f20232573202d20496e666f726d61e7f5657320476572616973, 'Y', '2014-08-12 06:55:03'),
(3694, 40, 0x41646d696e2e, 'Y', '2014-02-16 20:38:15'),
(3695, 40, 0x436f6d65e7616e646f, 'Y', '2014-02-16 20:38:15'),
(3696, 40, 0x496e736372657665722d7365, 'Y', '2014-02-20 16:54:37'),
(3697, 40, 0x446566696e696e646f, 'Y', '2014-02-16 16:37:22'),
(3698, 40, 0x53656e646f2064697370757461646f, 'Y', '2014-02-16 16:42:18'),
(3699, 40, 0x5465726d696e61646f, 'Y', '2014-02-16 16:37:22'),
(3700, 40, 0x4170616761646f, 'Y', '2014-02-16 16:37:22'),
(3186, 36, '', 'Y', '2014-02-16 20:59:15'),
(3187, 36, 0x28257320656c656d29, 'Y', '2014-02-16 20:59:15'),
(3188, 36, 0x28257320656c656d29, 'Y', '2014-02-16 20:59:15'),
(3191, 36, 0x25732e206f6c64616c, 'Y', '2014-02-16 20:59:15'),
(3251, 36, 0x5361626c6f6e206d656e74c3a97365, 'Y', '2014-02-16 20:59:15'),
(3343, 36, 0x537a65727ac591, 'Y', '2014-02-16 20:59:42'),
(3345, 36, 0xc39c7a656e6574, 'Y', '2014-02-16 21:00:53'),
(3346, 36, 0x46656c6164c3b3, 'Y', '2014-02-16 21:00:53'),
(3347, 36, 0x54c3a1726779, 'Y', '2014-02-16 21:00:53'),
(3349, 36, 0x4ac3a174737a6d61, 'Y', '2014-02-16 21:00:53'),
(3352, 36, 0x4e696e63732076c3a172616b6f7ac3b3206ac3a174737a6d61, 'Y', '2014-02-16 21:00:53'),
(3353, 36, 0x4e696e63732076c3a172616b6f7ac3b320c3bc7a656e6574, 'Y', '2014-02-16 21:00:53'),
(3464, 36, 0x5361626c6f6e2074c3b6726cc3a97365, 'Y', '2014-02-16 21:01:35'),
(3465, 36, 0x54c3ad707573, 'Y', '2014-02-16 21:01:35'),
(3453, 36, 0x4373657265, 'Y', '2014-02-16 21:04:32'),
(3459, 36, 0x4e696e6373206d6567616476612061207361626c6f6e206e65766521, 'Y', '2014-02-16 21:04:32'),
(3460, 36, 0x41207361626c6f6e206e6576c3a96e656b206567796564696e656b206b656c6c206c656e6e696521, 'Y', '2014-02-16 21:04:32'),
(3461, 36, 0x456cc3a9727465642061207361626c6f6e6f6b2074c3a1726f6cc3a173c3a16e616b206b6f726cc3a1746ac3a1742e20456779206dc3a172206cc3a974657ac591207361626c6f6e2068656c79c3a97265206b656c6c206d656e74656e65642e, 'Y', '2014-02-16 21:04:32'),
(3467, 36, 0x42697a746f73616e20737a657265746ec3a9642074c3b672c3b66c6e6920657a742061207361626c6f6e743f, 'Y', '2014-02-16 21:04:32'),
(5220, 36, 0x4d696e64656e20c3bc7a656e6574206d75746174c3a17361, 'Y', '2014-02-16 21:04:51'),
(5423, 36, 0x41206ac3a174737a6dc3a1686f7a205347462066c3a16a6c2076616e206d656c6cc3a96b656c7665, 'Y', '2014-02-16 21:05:55'),
(4602, 40, 0x41206c61726775726120646520616e6f7461e7f56573206573636f6c68696461207061726120746162756c6569726f732070657175656e6f7320e920696e76e16c6964612e20436f727269676964612070617261206f2070616472e36f2e, 'Y', '2014-02-17 00:09:58'),
(4603, 40, 0x41206c61726775726120646520616e6f7461e7f56573206573636f6c68696461207061726120746162756c6569726f73206772616e64657320e920696e76e16c6964612e20436f727269676964612070617261206f2070616472e36f2e, 'Y', '2014-02-17 00:09:58'),
(4617, 40, 0x4469766572736f73, 'Y', '2014-02-17 00:47:23'),
(5194, 40, 0x41646d696e2e206eed76656c20646520757375e172696f, 'Y', '2014-02-17 00:47:23'),
(5483, 40, 0x5265656e7669617220636f6e6669726d61e7e36f, 'Y', '2014-02-17 00:47:23'),
(5484, 40, 0x52656d6f76657220636f6e6669726d61e7e36f, 'Y', '2014-02-17 00:47:23'),
(5486, 40, 0x416272697220636f6e6669726d61e7f56573, 'Y', '2014-02-17 00:47:23'),
(5494, 40, 0x4d656e736167656d20646520636f6e6669726d61e7e36f2070617261206d7564616ee76120646520656e64657265e76f20656e766961646121, 'Y', '2014-02-17 00:47:23'),
(5495, 40, 0x4d656e736167656d20646520636f6e6669726d61e7e36f20656e76696164612070617261206f20656e64657265e76f206578697374656e746521, 'Y', '2014-02-17 00:47:23'),
(5496, 40, 0x436f6e6669726d61e7e36f207061726120617061676172206ee36f20666f6920656e636f6e747261646121, 'Y', '2014-02-17 00:47:23'),
(5497, 40, 0x566f63ea20706f64652072656d6f766572206170656e61732073756173207072f3707269617320636f6e6669726d61e7f5657321, 'Y', '2014-02-17 00:47:23'),
(5498, 40, 0x436f6e6669726d61e7e36f2072656d6f7669646121, 'Y', '2014-02-17 00:47:23'),
(5499, 40, 0x4120636f6e6669726d61e7e36f2061207265656e76696172206ee36f20666f6920656e636f6e747261646121, 'Y', '2014-02-17 01:47:53'),
(5500, 40, 0x566f63ea20706f6465207265656e76696172206170656e61732073756173207072f3707269617320636f6e6669726d61e7f5657321, 'Y', '2014-02-17 01:47:53'),
(5501, 40, 0x4120636f6e6669726d61e7e36f2070617261206d7564616ee76120646520656e64657265e76f205b25735d20666f69207265656e766961646121, 'Y', '2014-02-17 01:47:53'),
(5726, 40, 0x76617269616e646f206465202d323030206120323030, 'Y', '2014-02-17 02:42:53'),
(5727, 40, 0x56616e746167656d3a202573, 'Y', '2014-02-17 02:42:53'),
(5728, 40, 0x6b6f6d693a2025312e3166, 'Y', '2014-02-17 02:42:53'),
(5729, 40, 0x646570656e646520646f2074616d616e686f20646f20746162756c6569726f, 'Y', '2014-02-17 02:42:53'),
(5732, 40, 0x4d7564616ee76120646f206eed76656c20636f6d20766974f3726961, 'Y', '2014-02-17 02:42:53'),
(5734, 40, 0x4d7564616ee76120646f206eed76656c20636f6d20646572726f7461, 'Y', '2014-02-17 02:42:53'),
(5751, 40, 0x4ded6e2e202d204de1782e20646f206eed76656c20454c4f, 'Y', '2014-02-17 02:42:53'),
(5752, 40, 0x4d7564616ee76173206465206eed76656c2028454c4f29, 'Y', '2014-02-17 02:42:53'),
(5755, 40, 0x44657363616e736f20646f20757375e172696f2028682e206c6f63616c29, 'Y', '2014-02-17 02:42:53'),
(1019, 40, 0x4261736561646f2d656d2d7475726e6f73, 'Y', '2014-02-17 04:09:34'),
(1021, 40, 0x54656d706f2d7265616c, 'Y', '2014-02-17 04:09:34'),
(1890, 40, 0x56616e746167656d, 'Y', '2014-02-17 04:09:34'),
(1892, 40, 0x746573756a69, 'Y', '2014-02-17 04:09:34'),
(1894, 40, 0x73656e736569, 'Y', '2014-02-17 04:09:34'),
(1896, 40, 0x616a69, 'Y', '2014-02-17 04:09:34'),
(3009, 40, 0x686f6c616e64ea73, 'Y', '2014-02-17 04:38:39'),
(3013, 40, 0x74636865636f, 'Y', '2014-02-17 04:38:39'),
(3016, 40, 0x677265676f, 'Y', '2014-02-17 04:38:39'),
(3027, 40, 0x7461696c616e64ea73, 'Y', '2014-02-17 04:38:39'),
(3032, 40, 0x6d616c61696f, 'Y', '2014-02-17 04:38:39'),
(3036, 40, 0x68696e6469, 'Y', '2014-02-17 04:38:39'),
(3037, 40, 0x74e26d696c, 'Y', '2014-02-17 04:38:39'),
(3038, 40, 0x75726475, 'Y', '2014-02-17 04:38:39'),
(3045, 40, 0x757a62656b6f, 'Y', '2014-02-17 04:38:39'),
(1384, 40, 0x4e6f746173206465206c616ee7616d656e746f, 'Y', '2014-02-17 04:54:43'),
(1386, 40, 0x436f6c65e7e36f20646520656e64657265e76f73, 'Y', '2014-02-17 04:54:43'),
(1563, 40, 0x4e6f74ed6369617320447261676f6e476f536572766572, 'Y', '2014-02-17 04:54:43'),
(1726, 40, 0x4c6963656ee7612050fa626c69636120476572616c2041666665726f20474e55, 'Y', '2014-02-17 04:54:43'),
(1776, 40, 0x5465726d6f7320646f205365727669e76f, 'Y', '2014-02-17 04:54:43'),
(1780, 40, 0x4d6f64657261646f7265732064652046f372756d, 'Y', '2014-02-17 04:54:43'),
(1781, 40, 0x4d6f64657261646f722064652046f372756d, 'Y', '2014-02-17 04:54:43'),
(1854, 40, 0x496e7374616e74e26e656f7320646f2063f36469676f20666f6e7465, 'Y', '2014-02-17 04:54:43'),
(1860, 40, 0x4f73206461646f73206465207472616475e7e36f, 'Y', '2014-02-17 04:54:43'),
(1861, 40, 0x56657273f5657320616e746572696f726573, 'Y', '2014-02-17 04:54:43'),
(2157, 40, 0x416a7564612064612070e167696e612065206775696120646f20757375e172696f, 'Y', '2014-02-17 04:58:17'),
(2162, 40, 0x436f6e7665727465206f7574726f73206eed766569732065206176616c6961e7f565732070617261206f206eed76656c20444753, 'Y', '2014-02-17 04:58:17'),
(3263, 40, 0xcd6e64696365, 'Y', '2014-02-17 04:58:17'),
(6358, 4, 0x42756c67617269736368, 'Y', '2015-07-12 21:51:24'),
(3315, 40, 0x2865737465766520636f6e65637461646f206e617320fa6c74696d61732025732073656d616e617329, 'Y', '2014-02-17 04:58:17'),
(3316, 40, 0x4f7574726f73206372e96469746f73, 'Y', '2014-02-17 04:58:17'),
(3332, 40, 0x4f7574726f7320ed636f6e6573, 'Y', '2014-02-17 04:58:17'),
(3394, 40, 0x4372696172206e6f766f20746f726e65696f, 'Y', '2014-02-17 04:58:17'),
(3395, 40, 0x56657220746f726e65696f, 'Y', '2014-02-17 04:58:17'),
(3396, 40, 0x44697265746f72657320646520746f726e65696f, 'Y', '2014-02-17 04:58:17'),
(3398, 40, 0x4564697461722064697265746f7220646520746f726e65696f, 'Y', '2014-02-17 04:59:48'),
(3399, 40, 0x52656d6f7665722064697265746f7220646520746f726e65696f, 'Y', '2014-02-17 04:59:48'),
(3400, 40, 0x476572656e63696172206573746520746f726e65696f, 'Y', '2016-08-06 20:54:30'),
(3401, 40, 0x4d75646172207369747561e7e36f, 'Y', '2014-02-17 04:59:48'),
(3402, 40, 0x45646974617220746f726e65696f, 'Y', '2014-02-17 04:59:48'),
(3404, 40, 0x4d6f7374726172206e6f74ed6369617320646f20746f726e65696f, 'Y', '2014-02-17 04:59:48'),
(3405, 40, 0x4d6f73747261722064697265746f72657320646f20746f726e65696f, 'Y', '2014-02-17 04:59:48'),
(3408, 40, 0x456469746172207061727469636970616e746573, 'Y', '2014-02-17 04:59:48'),
(3410, 40, 0x4d6f7374726172207061727469636970616e74657320646f20746f726e65696f, 'Y', '2014-02-17 04:59:48'),
(3411, 40, 0x5061727469636970616e74657320646f20746f726e65696f, 'Y', '2014-02-17 04:59:48'),
(3413, 40, 0x4d6575206772e16669636f20646520646573656d70656e686f, 'Y', '2014-02-17 05:03:26'),
(3423, 40, 0x4f73206c696e6b7320707265746f7320707265636973616d20646520756d20617267756d656e746f20706172612066756e63696f6e61722c20656e74e36f20656c6573206ee36f2073e36f20fa7465697320617175692e, 'Y', '2014-02-17 05:03:26'),
(3424, 40, 0x4f73206c696e6b7320707265746f7320707265636973616d2064652061636573736f207265676973747261646f2c20656e74e36f20656c6573206ee36f2073e36f20fa7465697320617175692e, 'Y', '2014-02-17 05:03:26'),
(3426, 40, 0x412076657273e36f20616e746572696f72202573, 'Y', '2014-02-17 05:03:26'),
(3427, 40, 0x412076657273e36f202573, 'Y', '2014-02-17 05:03:26'),
(3428, 40, 0x4120636f6c65e7e36f20646520696d6167656e7320757361646173206e6f207365727669646f72, 'Y', '2014-02-17 05:03:26'),
(3438, 40, 0x546f74616c, 'Y', '2014-02-17 05:03:26'),
(4586, 40, 0x4f2063f36469676f207175652065737465207365727669646f7220657374e120657865637574616e646f202876657273e36f20257329, 'Y', '2014-02-17 05:03:26'),
(4719, 40, 0x476572656e74652061646d696e69737472617469766f, 'Y', '2014-02-17 05:03:26'),
(4721, 40, 0x4a6f676f2026204eed76656c, 'Y', '2014-02-17 05:03:26'),
(4722, 40, 0x566f746f2d706172612d4d656c686f72696173, 'Y', '2014-02-17 05:07:47'),
(4725, 40, 0x4564697461722070726f70726965646164657320646120696e73637269e7e36f, 'Y', '2014-02-20 16:56:30'),
(4726, 40, 0x45646974617220726567726173, 'Y', '2014-02-17 05:07:47'),
(4727, 40, 0x496e73637269e7e36f, 'Y', '2014-02-20 16:56:30'),
(5208, 40, 0x416c67756e732073637269707473204772656173654d6f6e6b657920fa74656973206e6f20444753, 'Y', '2014-02-17 05:07:47'),
(5209, 40, 0x41677261646f7320447261676f6e20476f, 'Y', '2014-02-17 05:07:47'),
(5210, 40, 0x53637269707473204772656173654d6f6e6b6579, 'Y', '2014-02-17 05:07:47'),
(5211, 40, 0x446570656e64656e646f206461207375612076657273e36f20646f204772656173654d6f6e6b65792c20636c69717565206f7520636c6971756520636f6d206f20626f74e36f206469726569746f206e6f206e6f6d6520646573656a61646f207061726120696e7374616c617220656c653a, 'Y', '2014-02-17 05:07:47'),
(5473, 40, 0x496e7374616e74e26e656f7320646f2063f36469676f20666f6e746520646f20447261676f6e, 'Y', '2014-02-17 05:07:47'),
(5474, 40, 0x4e617665676172206e6f2063f36469676f20666f6e746520646f20447261676f6e202847697429, 'Y', '2014-02-17 05:07:47'),
(5475, 40, 0x4e617665676172206e6f2063f36469676f20666f6e746520646f20447261676f6e20284356532c206174e9206d61692d3230313329, 'Y', '2014-02-17 05:10:10'),
(5600, 40, 0x4d61697320656e64657265e76f73206573746172e36f20646973706f6eed7665697320736520766f63ea20616365737361722e, 'Y', '2014-02-17 05:11:38'),
(5759, 40, 0x4964696f6d61, 'Y', '2014-02-17 05:11:38'),
(5760, 40, 0x54726164757a69646f73, 'Y', '2014-02-22 19:22:17'),
(5761, 40, 0x46616c74616d, 'Y', '2014-02-22 19:21:48'),
(5762, 40, 0x50726f67726573736f20282529, 'Y', '2014-02-22 19:21:48'),
(5763, 40, 0x546f74616c20646520746578746f7320706172612074726164757a6972, 'Y', '2014-02-17 05:11:38'),
(4689, 40, 0x6e6f206964696f6d613a202573, 'Y', '2014-02-18 20:53:24'),
(999, 40, 0x496d706f7274612073652065752076656e63657220706f7220302c3520706f6e746f732c2031303020706f6e746f732c20706f7220646573697374ea6e636961206f7520706f722074656d706f3f, 'Y', '2014-02-18 23:50:32'),
(4785, 40, 0x446573697374ea6e636961, 'Y', '2014-02-18 23:50:32'),
(4856, 40, 0x7365206f20646573616669616e74652076656e636520706f7220706f6e746f73206f7520706f7220646573697374ea6e636961, 'Y', '2014-02-19 00:02:45'),
(5407, 40, 0x436f6d6f20657520706f73736f20646573697374697220656d20756d206a6f676f2d6dfa6c7469706c6f3f, 'Y', '2014-02-18 23:51:53'),
(3007, 40, 0x706f7274756775ea73, 'Y', '2014-02-18 23:54:47'),
(60, 40, 0x536520766f63ea207175657220616a756461722074726164757a696e646f206f20447261676f6e2c20706f72206661766f7220646569786520756d61206d656e736167656d206e6f2066f372756d20225472616e736c6174696f6e222c20656d20696e676cea732e, 'Y', '2014-02-18 23:59:34'),
(4009, 40, 0x4f20646573616669616e7465206ee36f2070617274696369706120646f20746f726e65696f, 'Y', '2014-02-19 00:02:45'),
(3633, 40, 0x54e9726d696e6f, 'Y', '2014-04-09 08:22:04'),
(4866, 40, 0x4f20646573616669616e7465206ae12074656d206f206de178696d6f206465202573206465736166696f7320666569746f732e, 'Y', '2014-02-19 00:02:45'),
(5607, 40, 0x446573616669616e746520e9206f206a6f6761646f72206e6120706f7369e7e36f206d61697320626169786120646120746162656c61207175616e646f206f206a6f676f207465726d696e612e, 'Y', '2014-02-19 00:05:00'),
(5608, 40, 0x446573616669616e746520e9206f206a6f6761646f72206e6120706f7369e7e36f206d61697320626169786120646120746162656c61207175616e646f206f206a6f676f20636f6d65e7612e, 'Y', '2014-02-19 00:05:00'),
(5639, 40, 0x4573636f6c68657220446573616669616e7465, 'Y', '2014-02-19 00:05:00'),
(3049, 40, 0x62fa6c6761726f, 'Y', '2014-02-19 00:12:58'),
(5606, 40, 0x446573616669616e74652f646566656e736f722074726f6361646f73, 'Y', '2014-02-19 00:22:49'),
(4227, 40, 0x436f6e766974652061636569746f21, 'Y', '2014-02-19 22:11:04'),
(4755, 40, 0x4f20726567697374726f20646f20757375e172696f205b25735d20657374e12061636569746f21, 'Y', '2014-02-19 22:11:04'),
(3853, 40, 0x436f6e76696461646f, 'Y', '2014-02-19 22:12:27'),
(4756, 40, 0x4f20757375e172696f205b25735d20666f6920636f6e76696461646f21, 'Y', '2014-02-19 22:13:23'),
(5033, 40, 0x546f726e65696f2073656d20726573747269e7f56573206170656e6173207061726120636f6e76696461646f732e, 'Y', '2014-02-19 22:13:23'),
(4887, 40, 0x456469746172206d696e686120696e73637269e7e36f, 'Y', '2014-02-20 16:36:07'),
(2806, 40, 0x44657363756c70652c20766f63ea206ee36f2074656d207065726d697373e36f20706172612065646974617220617320696e73637269e7f56573206e6573746520746f726e65696f2e, 'Y', '2014-02-20 16:40:53'),
(3547, 40, 0x496e73637269e7e36f206170726f766164612070617261206f20746f726e65696f20232573, 'Y', '2014-02-20 16:44:02'),
(3552, 40, 0x45646974617220696e73637269e7e36f20646f20746f726e65696f, 'Y', '2014-02-20 16:44:02'),
(3554, 40, 0x436f6e6669726d61e7e36f20646520696e73637269e7e36f206e6f20746f726e65696f20232573, 'Y', '2014-02-20 16:44:02'),
(3557, 40, 0x53756120696e73637269e7e36f20656d20257320666f6920766572696669636164612070656c6f2064697265746f7220646f20746f726e65696f202573206520666f6920666569746f20756d20636f6e766974652070726120766f63ea2c207175652070726563697361207365722061636569746f2e, 'Y', '2014-02-20 16:44:02'),
(3849, 40, 0x566f63ea206ee36f20657374e120696e73637269746f206e6573746520746f726e65696f2e, 'Y', '2014-02-20 16:54:37'),
(4737, 40, 0x496e73637269e7e36f2070617261206f20746f726e65696f2073616c766121, 'Y', '2014-02-20 16:56:30'),
(4749, 40, 0x417475616c697a617220696e73637269e7e36f, 'Y', '2014-02-20 16:56:30'),
(5019, 40, 0x496e73637269e7e36f, 'Y', '2014-02-20 16:59:20'),
(5025, 40, 0x5369747561e7e36f20646120496e73637269e7e36f, 'Y', '2014-02-20 16:59:20'),
(5056, 40, 0x4661736520646520696e73637269e7f56573, 'Y', '2014-02-20 17:00:36'),
(5077, 40, 0x496e736372657665722d7365, 'Y', '2014-02-20 17:00:36'),
(5078, 40, 0x4e6f74617320646520696e73637269e7e36f, 'Y', '2014-02-20 17:00:36'),
(5079, 40, 0x496e73637269e7e36f207265737472697461, 'Y', '2014-02-20 17:00:36'),
(5084, 40, 0x5369747561e7e36f20646120696e73637269e7e36f, 'Y', '2014-02-20 17:00:36'),
(5088, 40, 0x6f20757375e172696f20666f6920696e73637269746f20636f6d207375636573736f, 'Y', '2014-02-20 18:37:09'),
(5178, 40, 0x496e73637269e7e36f20646520546f726e65696f, 'Y', '2014-02-20 17:02:58'),
(5193, 40, 0x41206661736520646520696e73637269e7f56573207465726d696e6120656d205b25735d, 'Y', '2014-02-20 17:02:58'),
(5664, 40, 0x496e73637269e7f565732070617261206573746520746f726e65696f, 'Y', '2014-02-20 17:08:37'),
(5684, 40, 0x46696e616c2064617320696e73637269e7f56573, 'Y', '2014-02-20 17:10:10'),
(5691, 40, 0x4461746120646120496e73637269e7e36f, 'Y', '2014-02-20 17:10:10'),
(5708, 40, 0x4d696e686120696e73637269e7e36f206e6f20746f726e65696f202573, 'Y', '2014-02-20 17:10:10'),
(548, 40, 0x44616e207369676e696669636120226eed76656c206465206d6573747265222e204f73206eed766569732064616e20636f6d65e7616d20646520312c2065207175616e746f206d61696f72206f206efa6d65726f206d61697320666f727465206f206a6f6761646f722e20556d20352064616e20616d61646f7220e9206469746f20746572206170726f78696d6164616d656e74652061206d65736d6120686162696c696461646520646520616c6775e96d20312064616e2070726f202870726f66697373696f6e616c292e2050726f66697373696f6e616973206ee36f2074ea6d206eed76656973203c686f6d65206661712e7068703f726561643d74266361743d3323456e74727933383e6b79753c2f686f6d653e2e, 'Y', '2014-04-04 04:08:53'),
(5696, 40, 0x526573756d6f20646f20746f726e65696f3a202573207061727469636970616e7465732c202573206a6f676f7320656d2070726f67726573736f2c202573207465726d696e61646f732065206573706572616e646f2070726f63657373616d656e746f, 'Y', '2014-08-09 09:33:11'),
(4233, 40, 0x496e73637269e7e36f20646520546f726e65696f2070617261205b25735d, 'Y', '2014-02-20 18:24:50'),
(4739, 40, 0x5369747561e7e36f20617475616c20646520726567697374726f, 'Y', '2014-02-20 18:25:39'),
(4740, 40, 0x4e6f7661207369747561e7e36f20646520696e73637269e7e36f, 'Y', '2014-02-20 18:26:40'),
(5085, 40, 0x766f63ea206ee36f20657374e120696e73637269746f206e6573746520746f726e65696f, 'Y', '2016-08-06 20:55:58'),
(5086, 40, 0x6120696e73637269e7e36f207072656369736120736572206170726f766164612070656c6f2064697265746f7220646f20746f726e65696f, 'Y', '2014-02-20 18:36:04'),
(5087, 40, 0x6f20757375e172696f20666f6920636f6e76696461646f2070656c6f2064697265746f722065207072656369736120636f6e6669726d617220706172746963697061e7e36f, 'Y', '2014-02-20 18:29:19'),
(3001, 40, 0x696e676cea73, 'Y', '2014-02-22 06:35:32'),
(3002, 40, 0x6672616e63ea73, 'Y', '2014-02-22 06:35:32'),
(3003, 40, 0xe172616265, 'Y', '2014-02-22 06:35:32'),
(3004, 40, 0x657370616e686f6c2028636174616ce36f29, 'Y', '2014-02-22 06:35:32'),
(3005, 40, 0x657370616e686f6c2028626173636f29, 'Y', '2014-02-22 06:35:32'),
(3006, 40, 0x727573736f, 'Y', '2014-02-22 06:35:32'),
(3008, 40, 0x616c656de36f, 'Y', '2014-02-22 06:35:32'),
(3010, 40, 0x6974616c69616e6f, 'Y', '2014-02-22 06:35:32'),
(3011, 40, 0x6368696eea73202863616e746f6eea7329, 'Y', '2014-02-22 06:35:32'),
(3014, 40, 0x64696e616d61727175ea73, 'Y', '2014-02-22 06:35:32'),
(3015, 40, 0x66696e6c616e64ea73, 'Y', '2014-02-22 07:04:32'),
(3017, 40, 0x686562726169636f, 'Y', '2014-02-22 07:04:32'),
(3018, 40, 0x68fa6e6761726f, 'Y', '2014-02-22 07:04:32'),
(3020, 40, 0x636f7265616e6f, 'Y', '2014-02-22 07:04:32'),
(3021, 40, 0x6e6f7275656775ea73, 'Y', '2014-02-22 07:04:32'),
(3022, 40, 0x706f6c6f6eea73, 'Y', '2014-02-22 07:04:32'),
(3023, 40, 0x726f6d656e6f, 'Y', '2014-02-22 07:04:32'),
(3024, 40, 0x73e97276696f, 'Y', '2014-02-22 07:04:32'),
(3025, 40, 0x65736c6f7661636f, 'Y', '2014-02-22 07:04:32'),
(3026, 40, 0x737565636f32, 'Y', '2015-06-19 05:04:41'),
(3028, 40, 0x747572636f, 'Y', '2014-02-22 17:00:41'),
(6142, 11, '', 'Y', '2014-11-01 01:59:07'),
(3030, 40, 0x766965746e616d697461, 'Y', '2014-02-22 17:00:41'),
(3033, 40, 0x67656f726769616e6f, 'Y', '2014-02-22 17:00:41'),
(3034, 40, 0x69726c616e64ea73, 'Y', '2014-02-22 17:00:41'),
(3035, 40, 0x696e646f6ee973696f, 'Y', '2014-02-22 17:00:41'),
(3039, 40, 0x42656e67616c69, 'Y', '2014-02-22 17:00:41'),
(3040, 40, 0x62f3736e696f, 'Y', '2014-02-22 17:00:41'),
(3041, 40, 0x63726f617461, 'Y', '2014-02-22 17:00:41'),
(3042, 40, 0x65736c6f76656e6f, 'Y', '2014-02-22 17:00:41'),
(3043, 40, 0x6166726963e26e6572, 'Y', '2014-02-22 18:53:22'),
(3044, 40, 0x737561ed6c65, 'Y', '2014-02-22 18:53:22'),
(3046, 40, 0x6d6f6e676f6c, 'Y', '2014-02-22 18:53:22'),
(3047, 40, 0x616c62616eea73, 'Y', '2014-02-22 18:53:22'),
(3048, 40, 0x61726dea6e696f, 'Y', '2014-02-22 18:53:22'),
(3050, 40, 0x7065727361, 'Y', '2014-02-22 18:53:22'),
(3051, 40, 0x70616368746f, 'Y', '2014-02-22 18:53:22'),
(3851, 40, 0x566f63ea20657374e120696e73637269746f206e6573746520746f726e65696f2e, 'Y', '2014-02-22 23:39:56'),
(5176, 40, 0x526573756c7461646f20646f20757375e172696f, 'Y', '2014-02-22 23:42:09'),
(4134, 40, 0x4172717569766f206465206e6f74ed6369617320646520746f726e65696f2070617261205b25735d, 'Y', '2014-02-22 23:43:18'),
(5171, 40, 0x4172717569766f206465206e6f74ed6369617320646f20746f726e65696f, 'Y', '2014-02-22 23:43:18'),
(3491, 40, 0x4e6f74ed63696120646520746f726e65696f2073616c766121, 'Y', '2014-02-22 23:44:33'),
(3497, 40, 0x4e6f74ed6369617320646f20746f726e65696f, 'Y', '2014-02-22 23:44:33'),
(4133, 40, 0x4e6f74ed6369617320646f20746f726e65696f20232564, 'Y', '2014-02-22 23:44:33'),
(4445, 40, 0x4e6f74ed6369617320646f20746f726e65696f, 'Y', '2014-02-22 23:44:33'),
(5013, 40, 0x566572204e6f74ed6369617320646f20546f726e65696f, 'Y', '2014-02-22 23:44:33'),
(3496, 40, 0x53616c766172204e6f74ed6369617320646f20546f726e65696f, 'Y', '2014-02-22 23:45:15'),
(5174, 40, 0x53656d206e6f74ed6369617320646f20746f726e65696f2e, 'Y', '2014-02-22 23:45:15'),
(4438, 40, 0x50f364696f20646f20546f726e65696f, 'Y', '2014-02-22 23:54:10'),
(5177, 40, 0x50f364696f20646f20546f726e65696f20282573206d656c686f72657329, 'Y', '2014-02-22 23:54:10'),
(5173, 40, 0x52656772617320646f20546f726e65696f, 'Y', '2014-02-22 23:55:55'),
(5192, 40, 0x4173207265677261732061626169786f2073e36f20757361646173206e6573746520746f726e65696f, 'Y', '2014-02-22 23:56:39'),
(719, 36, 0x2573206779c5917a656c656d20656e6e796976656c3a20252e3166, 'Y', '2014-02-23 15:38:25'),
(1554, 36, 0x4573656dc3a96e79, 'Y', '2014-02-23 15:38:25'),
(1606, 36, 0x4b65726573c3a973, 'Y', '2014-02-23 15:38:25'),
(1607, 36, 0x4b65726573c3a9732074c3b6726cc3a97365, 'Y', '2014-02-23 15:38:25'),
(1609, 36, 0x535ac3814d, 'Y', '2014-02-23 15:39:46'),
(1610, 36, 0x535ac396564547, 'Y', '2014-02-23 15:39:46'),
(1611, 36, 0x72c3a9737a74616cc3a16c6174, 'Y', '2014-02-23 15:39:46'),
(1612, 36, 0x4245534f524f4cc38153, 'Y', '2014-02-23 15:39:46'),
(1614, 36, 0x4f52535ac38147, 'Y', '2014-02-23 15:39:46'),
(1617, 36, 0x4d696e64656e206f72737ac3a167, 'Y', '2014-02-23 15:39:46'),
(1618, 36, 0x44c38154554d, 'Y', '2014-02-23 15:39:46'),
(1619, 36, 0x706f6e746f73616e, 'Y', '2014-02-23 15:40:39'),
(1620, 36, 0xc3a976, 'Y', '2014-02-23 15:40:39'),
(1621, 36, 0x68c3b36e6170, 'Y', '2014-02-23 15:40:39'),
(1622, 36, 0x68c3a974, 'Y', '2014-02-23 15:40:39'),
(1623, 36, 0x6e6170, 'Y', '2014-02-23 15:40:39'),
(1624, 36, 0xc3b37261, 'Y', '2014-02-23 15:40:39'),
(1211, 36, 0x4cc3a970c3a973, 'Y', '2014-02-23 15:42:34'),
(1608, 36, 0x537a696e7461786973, 'Y', '2014-02-23 15:42:34'),
(1613, 36, 0xc3a97276c3a96e7974656c656e206265736f726f6cc3a173, 'Y', '2014-02-23 15:42:34'),
(1627, 36, 0x706f6e746f73616e, 'Y', '2014-02-23 15:42:34'),
(1628, 36, 0x6e656d20737ac3a16d6f6b61742074617274616c6d617a, 'Y', '2014-02-23 15:42:34'),
(1629, 36, 0x74616cc3a16e206120706f6e746f73616e206f706369c3b3726120676f6e646f6c74c3a16c, 'Y', '2014-02-23 15:42:34'),
(1630, 36, 0x4d696e64, 'Y', '2014-02-23 15:42:34'),
(1631, 36, 0x4967656e, 'Y', '2014-02-23 15:42:34'),
(1632, 36, 0x4e656d, 'Y', '2014-02-23 15:42:34'),
(1633, 36, 0x4d696e64, 'Y', '2014-02-23 15:43:38'),
(1634, 36, 0x4967656e, 'Y', '2014-02-23 15:43:38'),
(1635, 36, 0x4e656d, 'Y', '2014-02-23 15:43:38'),
(1637, 36, 0x48616c6164c3b3206dc3b364, 'Y', '2014-02-23 15:43:38'),
(1638, 36, 0x504f4e54535ac3814d, 'Y', '2014-02-23 15:43:38'),
(1639, 36, 0x56c3a16c6173737a206b692076616c616d656e6e796920656c656d6574, 'Y', '2014-02-23 15:43:38'),
(1640, 36, 0x74c3ba6c20736f6b20656c76c3a16c61737a74c3b3, 'Y', '2014-02-23 15:43:38'),
(1643, 36, 0xc3a97276c3a96e7974656c656e2064c3a174756d666f726dc3a17ac3a173, 'Y', '2014-02-23 15:45:52'),
(1644, 36, 0x612064c3a174756d206567792072c3a9737a6520c3a97276c3a96e7974656c656e, 'Y', '2014-02-23 15:45:52'),
(1645, 36, 0xc3a97276c3a96e7974656c656e206e6170, 'Y', '2014-02-23 15:45:52'),
(1646, 36, 0x686962c3a173206964c3a97ac5916a656c657ac3a973, 'Y', '2014-02-23 15:45:52'),
(1647, 36, 0xc3a97276c3a96e7974656c656e20584d4c2d656c656d20656262656e206120706f7ac3ad6369c3b362616e3a, 'Y', '2014-02-23 15:45:52'),
(1648, 36, 0xc3a97276c3a96e7974656c656e20584d4c2d74616720656262656e206120706f7ac3ad6369c3b362616e3a, 'Y', '2014-02-23 15:45:52'),
(1642, 36, 0x6e656d206861737a6ec3a16c686174c3b3207072656669786bc3a96e74, 'Y', '2014-02-23 15:47:05'),
(1650, 36, 0xc3a97276c3a96e7974656c656e20584d4c2d7ac3a172c3b374616720656262656e206120706f7ac3ad6369c3b362616e3a, 'Y', '2014-02-23 15:47:05'),
(1651, 36, 0xc3a97276c3a96e7974656c656e20584d4c2d656c656d74756c616a646f6e73c3a16720656262656e206120706f7ac3ad6369c3b362616e3a, 'Y', '2014-02-23 15:47:05'),
(1737, 36, 0x70657263, 'Y', '2014-02-23 15:47:05'),
(1641, 36, 0x6c6567616cc3a162622025312473206b6172616b74657272652076616e20737ac3bc6b73c3a967206168686f7a2c20686f6779206861737a6ec3a16c686173642061206bc3b67665746b657ac591206b657a64c591206a6f6b65726b6172616b746572743a205b253224735d, 'Y', '2014-02-23 16:16:41'),
(1877, 36, 0x53616a6e6f73206665627275c3a17220352dc3a96e2028323030392d62656e2920657a20612067c3a970206dc3a17220617a2075746f6c73c3b36b61742072c3ba6774612c20657ac3a9727420c3ba6a206d65676f6c64c3a173726120766f6c7420737ac3bc6b73c3a967c3bc6e6b2e20416e6e616b20c3a97264656bc3a962656e2c20686f677920c3ba6a616262206861726476657274206861737a6ec3a16c68617373756e6b2c206d6567656779657a74c3bc6e6b20656779206b697365626220c3b673737a6567206b6966697a6574c3a973c3a962656e20283230302053454b2f68c3b32c20617a617a206b622e203230204555522f68c3b3292e200d0ac39a677920676f6e646f6c6a756b20686f677920657a20656779206e616779766f6e616cc3ba20616ac3a16e6c617420766f6c742074c5916cc3bc6b2e, 'Y', '2014-02-23 16:16:41'),
(1878, 36, 0x457ac3a972742061727261206bc3a972c3bc6e6b2c20686f67792061646f6dc3a16e796f7a7a20656779206b697365626220c3b673737a656765742c2070c3a96c64c3a1756c203130207661677920323020657572c3b3742c20686f677920746f76c3a16262726120697320c3ba6779206dc5b16bc3b6646ac3b66e206120737a65727665722c20686f6779206e656d206b656c6c2073616ac3a174207a73656262c5916c2066697a65746e6920c3a97274652e204861206b65766573656262657420747564737a2061646e692c20617a7420697320756779616e6f6c79616e20737ac3ad766573656e20656c666f6761646a756b2e20537a657265746ec3a96e6b20656cc3a9672070c3a96e7a74206779c5b16a74656e69206168686f7a2c20686f6779206120737a657276657220c3bc7a656d656c746574c3a973c3a968657a206c6567616cc3a162622068c3a1726f6d20c3a976726520656cc3a967206c656779656e2e0d0a0d0a3c703e0d0ac39c6476c3b67a6c657474656c2c0d0a0d0a3c703e0d0a41204447532061646d696e6a6169, 'Y', '2014-02-23 16:16:41'),
(1887, 36, 0x4b656476657320476f2d737a65726574c5916b2c0d0a0d0a3c703e0d0a6bc3b67a656c2068c3a97420c3a976652028323030392d62656e29206120447261676f6e20476f20537a65727665722067c3a97065697420612053616d7572616a4461746120c3bc7a656d656c746574692074656c6a6573656e20696e6779656e2e204e6167796f6e2068c3a16cc3a173616b2076616779756e6b20612074c3a16d6f676174c3a173756bc3a972742c206120736567c3ad7473c3a967c3bc6b206e6167792072c3a9737a742076c3a16c6c616c742061204447532073696b6572c3a962656e2e2041206b657a646574656b20c3b37461206120666f6c79616d61746f73616e206ec3b676656b737a696b2061204447532d656e206ac3a174737ac3b36b20616b7469766974c3a1736120c3a973206ec3a968c3a16e7920c3a97665206dc3a172206567797265206e6568657a656262656e20747564746120612053616d7572616a4461746120657a7420696e6779656e2066656e6e74617274616e692e2041206d61676173204447532d657320616b7469766974c3a173206d69617474206bc3bc6cc3b66e2067c3a9707265206b656c6c657474206bc3b66c74c3b67a7465746e6920617a206f6c64616c742c206d6976656c20612066697a6574c591206b6c69656e73656b206572c591666f7272c3a1736169742069732066656c6861737a6ec3a16c746120617a206f6c64616c2e2032303037206b6172c3a163736f6e7961206964656ac3a96e20656c6bc3bc6cc3b66ec3ad74657474656b20737ac3a16d756e6b72612065677920c3b672656765626220737a6572766572742e, 'Y', '2014-02-23 16:16:41'),
(1929, 36, 0x417a20656cc3a972c3a97369206b76c3b374c3a1642068616d61726f73616e206b6920666f6720666f67796e692e3c62723e257320c3ba6a61626220656cc3a972c3a9732f6cc3a1746f676174c3a173207574c3a16e20626c6f6b6b6f6c7661206c65737a656c202573206964c591726521, 'Y', '2014-02-23 16:16:41'),
(1944, 36, 0x486962c3a16b2074c3b67274c3a96e74656b, 'Y', '2014-02-23 16:16:41'),
(2173, 36, 0x4ac3a174c3a96b62616e206c6576c5916b206d75746174c3a17361, 'Y', '2014-02-23 16:16:41'),
(2665, 36, 0x412066656c74c3b66c74c3b674742066c3a16a6c205b253324735d206bc3a97074c3ad70757361205b253124732c20253224735d206e656d2066656c656c206d656720612076c3a17274206bc3a97074c3ad7075736f6b6e616b205b253424735d2e, 'Y', '2014-02-23 16:16:41'),
(2666, 36, 0x412066656c74c3b66c74c3b67474206bc3a970205b253224735d20737ac3a96c657373c3a96765205b253124735d206d656768616c61646a612061206c696d69746574205b25332473206bc3a970706f6e745d2e, 'Y', '2014-02-23 16:20:15'),
(2667, 36, 0x412066656c74c3b66c74c3b67474206bc3a970205b253224735d206d6167617373c3a16761205b253124735d206d656768616c61646a612061206c696d69746574205b25332473206bc3a970706f6e745d2e, 'Y', '2014-02-23 16:20:15'),
(2832, 36, 0x4272697420496e646961692dc3b36365c3a16e6920546572c3bc6c6574, 'Y', '2014-02-23 16:29:37'),
(2833, 36, 0x53742e2050696572726520c3a973204d697175656c6f6e, 'Y', '2014-02-23 16:29:37'),
(2834, 36, 0x53742e2056696e63656e7420c3a9732061204772656e6164696e652d737a69676574656b, 'Y', '2014-02-23 16:29:37'),
(2835, 36, 0x44c3a96c692d47656f7267696120c3a9732044c3a96c692d53616e64776963682d737a69676574656b, 'Y', '2014-02-23 16:29:37'),
(2836, 36, 0x566174696bc3a16e, 'Y', '2014-02-23 16:29:37'),
(2837, 36, 0x426f6c7967c3b36b204567796573c3bc6c742046c3b6646572c3a16369c3b36a61, 'Y', '2014-02-23 16:29:37'),
(2838, 36, 0x4373616b2074c3b662626ac3a174c3a96b6f73206ac3a174737a6dc3a16b206d75746174c3a17361, 'Y', '2014-02-23 16:29:37'),
(2840, 36, 0x46696779656c656d, 'Y', '2014-02-23 16:30:48'),
(2995, 36, 0x54c3b662626ac3a174c3a96b6f73206ac3a174737a6dc3a16b206d75746174c3a17361, 'Y', '2014-02-23 16:30:48'),
(3142, 36, 0x50726f6669, 'Y', '2014-02-23 16:30:48'),
(3143, 36, 0x54616ec3a172, 'Y', '2014-02-23 16:30:48'),
(3144, 36, '', 'Y', '2014-02-23 16:30:48'),
(3145, 36, 0x437361706174, 'Y', '2014-02-23 16:30:48'),
(3146, 36, 0x437361706174, 'Y', '2014-02-23 16:32:20'),
(3158, 36, 0x46756e6b6369c3b36b, 'Y', '2014-02-23 16:32:20'),
(3160, 36, 0x416c616b7a61746265c3a16c6cc3ad74c3a173, 'Y', '2014-02-23 16:32:20'),
(3161, 36, 0x4cc3a970c3a973, 'Y', '2014-02-23 16:32:20'),
(3162, 36, 0x56657273656e7920232573205b25735d, 'Y', '2014-02-23 16:32:20'),
(3163, 36, '', 'Y', '2014-02-23 16:32:20'),
(2839, 36, 0x4e656d206b65726573686574737a2065727265206120737ac3b372613a205b25735d21, 'Y', '2014-02-23 16:38:39'),
(2944, 36, 0x4967617a73c3a1676f73206b6f6d69206d6567656779657ac3a973, 'Y', '2014-02-23 16:38:39'),
(3164, 36, 0x4bc3a97264c591c3ad76202325732028257329205b25735d, 'Y', '2014-02-23 16:38:39'),
(3165, 36, 0x4bc3a97264c591c3ad7620232573205b25735d, 'Y', '2014-02-23 16:38:39'),
(3166, 36, '', 'Y', '2014-02-23 16:38:39'),
(3190, 36, 0x25732f2573206f6c64616c, 'Y', '2014-02-23 16:38:39'),
(3226, 36, 0x46656c682e206f6e6c696e65, 'Y', '2014-02-23 16:38:39'),
(3167, 36, 0x5b253124735d2064c3a174756d666f726dc3a17ac3a1732068656c7974656c656e2c205b253324735d2076c3a1727420c3a97274c3a96b65205b253224735d, 'Y', '2014-02-23 16:45:53'),
(3227, 36, 0x4a656c7a692c20686f677920617a20696c6c6574c591206c656766656c6a656262202573207065726365206f6e6c696e6520766f6c74, 'Y', '2014-02-23 16:45:53'),
(3301, 36, 0x4c696e6b206120626566656a657a657474206ac3a174737a6dc3a16b686f7a205b25735d20656c6c656e66c3a96c6c656c, 'Y', '2014-02-23 16:45:53'),
(3302, 36, 0x4c696e6b206120667574c3b3206ac3a174737a6dc3a16b686f7a205b25735d20656c6c656e66c3a96c6c656c, 'Y', '2014-02-23 16:45:53'),
(3338, 36, 0x25732d5b25735d20c3a16c6c61706f746120c3a1746d656e6574696c6567206c6574696c7476612074c3ba6c7a6f7474206861737a6ec3a16c6174206d6961747421, 'Y', '2014-02-23 16:45:53'),
(3339, 36, 0x4bc3a9726c656b206bc3b6766573642061206c696e6b65742c206f6c7661736420656c2061204759494b2062656a6567797ac3a9737420c3a97320c3a16c6cc3ad74736420c3a174206d656766656c656cc591656e2061202573206265c3a16c6cc3ad74c3a17361696461742e, 'Y', '2014-02-23 16:45:53'),
(3340, 36, 0x4bc3a972c3bc6e6b2074656464206d656720657a74206d696ec3a96c2068616d6172616262206120737a65727665722074657268656c7473c3a967c3a96e656b20656e7968c3ad74c3a97365206d696174742e, 'Y', '2014-02-23 16:45:53'),
(3350, 36, 0xc39c726573206c697374c3a16b, 'Y', '2014-02-23 16:49:45'),
(3366, 36, 0x4ac3a174737a6d6174c3ad707573, 'Y', '2014-02-23 16:49:45'),
(3440, 36, 0x2531247320c3a16c6c61706f74613a2025322473, 'Y', '2014-02-23 16:49:45'),
(3442, 36, 0x4d696e64656e2028257329206f6c76617361746c616e2068c3ad72206d75746174c3a17361, 'Y', '2014-02-23 16:49:45'),
(3443, 36, 0x437361746c616b6f7a6f7474, 'Y', '2014-02-23 16:49:45'),
(3344, 36, 0xc39c7a656e65742074c5916c653a202573, 'Y', '2014-02-23 16:54:44'),
(3348, 36, 0x2573206ac3a174737a6d612076656c653a202573, 'Y', '2014-02-23 16:54:44'),
(3445, 36, 0x54c3b662626ac3a174c3a96b6f73206ac3a174737a6dc3a169643a, 'Y', '2014-02-23 16:54:44'),
(3447, 36, 0x536f7272656e64206d65676164c3a17361, 'Y', '2014-02-23 16:54:44'),
(3450, 36, 0x5361626c6f6e6f6b20282573206861737a6ec3a16c76612c206d61782e20257329, 'Y', '2014-02-23 16:54:44'),
(3451, 36, 0x55746f6c73c3b3206dc3b3646f73c3ad74c3a173, 'Y', '2014-02-23 16:54:44'),
(3455, 36, 0x56c3a16c6173737a206b6920656779207361626c6f6e742c20616d6974206c6563736572c3a96c6ec3a96c, 'Y', '2014-02-23 16:54:44'),
(3457, 36, 0xc3897276c3a96e7974656c656e207361626c6f6e74c3ad70757321, 'Y', '2014-02-23 16:59:01'),
(3458, 36, 0x41207361626c6f6e686f7a20656c6d656e74656e64c5912061646174206dc3a972657465206d656768616c61646a6120612025732062c3a16a746f73206c696d69746574202825732062c3a16a7474616c2921, 'Y', '2014-02-23 16:59:01'),
(3462, 36, 0x486962c3a1732061206b696a656cc3b66cc3a9732c206d6976656c20617a20656c656d206e656d206cc3a974657a696b20656e6ec3a96c20612066656c6861737a6ec3a16cc3b36ec3a16c2e, 'Y', '2014-02-23 16:59:01'),
(4604, 36, 0x27257327206669c3b36b20616b7469766974c3a173612074c3ba6c206d61676173206c65747420c3a9732074c3ba6c20736f6b206572c591666f7272c3a17374206861737a6ec3a16c7420656c2e0d0a4bc3a972c3bc6e6b2c206a6176c3ad747320657a656e206120766973656c6b6564c3a973656e2e0d0a41206669c3b36b20626c6f6b6b6f6c7661206c6574742065646469673a2025732e, 'Y', '2014-02-23 16:59:01'),
(4708, 36, 0x416c616b7a617420696e666f726dc3a16369c3b3, 'Y', '2014-02-23 16:59:01'),
(5218, 36, 0x54c3b662626ac3a174c3a96b6f73206ac3a174737a6d61, 'Y', '2014-02-23 16:59:01'),
(5228, 36, 0x467574c3b32074c3b662626ac3a174c3a96b6f73206ac3a174737a6dc3a1696d, 'Y', '2014-02-23 16:59:01'),
(5422, 36, 0x2573206d656c6cc3a96b656c74206ac3a174737a6d612d534746206c6574c3b66c74686574c5912e, 'Y', '2014-02-23 17:04:25'),
(5534, 36, 0x43736f706f72746779c5917a7465732028746f76c3a162626a75742061206bc3b67665746b657ac591206bc3b672626529, 'Y', '2014-02-23 17:04:25'),
(5581, 36, 0x6b65726573c3a97320617a206f6c64616c2d646f6b756d656e74c3a16369c3b362616e, 'Y', '2014-02-23 17:04:25'),
(5582, 36, 0x6861737a6ec3a16c6174692066656c74c3a974656c656b2c206b696164c3a1736920696e66c3b36b2c206c696e6b656b2c206bc3b67a72656dc5b16bc3b664c5916b2c2065737a6bc3b67ac3b66b2c20666f7272c3a1736f6b2c206c6963656e737a, 'Y', '2014-02-23 17:04:25'),
(5583, 36, 0x617a206f6c64616c206d696e64656e206c61706ac3a16e616b206d75746174c3a17361, 'Y', '2014-02-23 17:04:25'),
(5584, 36, 0x6ac3a174737a6d616b6968c3ad76c3a1736f6b206dc3a173206ac3a174c3a96b6f736f6b74c3b36c, 'Y', '2014-02-23 17:04:25'),
(5585, 36, 0xc3bc7a656e657465696420c3a973206d617070c3a1696b, 'Y', '2014-02-23 17:04:25'),
(5586, 36, 0xc3ba6a20c3bc7a656e6574656b, 'Y', '2014-02-23 17:07:16'),
(5587, 36, 0x6dc3a173696b206ac3a174c3a96b6f73206d656768c3ad76c3a17361206ac3a174737a6dc3a17261, 'Y', '2014-02-23 17:07:16'),
(5588, 36, 0xc3ba6a206ac3a174737a6dc3a172612066656c68c3ad76c3a17320612076c3a172c3b3746572656d62656e, 'Y', '2014-02-23 17:07:16'),
(5589, 36, 0x74c3a16d6f676174c3a1736920c3a97320656779c3a9622066c3b372756d6f6b, 'Y', '2014-02-23 17:07:16'),
(5590, 36, 0x66c3b372756d6f6b20c3ba6a20686f7a7ac3a1737ac3b36cc3a17373616c, 'Y', '2014-02-23 17:07:16'),
(5591, 36, 0xc3ba6a2066756e6b6369c3b36b7261206c6561646f747420737a6176617a61746f6b, 'Y', '2014-02-23 17:07:16'),
(5592, 36, 0xc3ba6a2066756e6b6369c3b36b726120737a6176617ac3a173, 'Y', '2014-02-23 17:07:16'),
(5602, 36, 0x4ac3a174c3a96b6d6573746572, 'Y', '2014-02-23 17:08:00'),
(5693, 36, 0x766167792076616bc3a16369c3b36e2076616e, 'Y', '2014-02-23 17:08:00'),
(5750, 36, 0xc39c7a656d656c746574693a, 'Y', '2014-02-23 17:08:00'),
(1626, 36, 0x52454c44c38154554d, 'Y', '2014-02-23 17:22:59'),
(1636, 36, 0x54414cc3814c4154494e444558, 'Y', '2014-02-23 17:22:59'),
(3342, 36, 0x48c3ad72206964653a20257320657a7a656c3a2022257322, 'Y', '2014-02-23 17:22:59'),
(234, 36, 0x4ac3a174737a6d6120666f6c79746174c3a17361, 'Y', '2014-02-23 17:29:15'),
(239, 36, 0x4d656766696779656c74656b206c697374c3a16ac3a1686f7a206164c3a173, 'Y', '2014-02-23 17:29:15'),
(254, 36, 0x437361746c616b6f7a74c3a16c2061206ac3a174737a6dc3a1686f7a21, 'Y', '2014-02-23 17:29:15'),
(328, 36, 0x43c3ad6d7a657474202866656c682e617a6f6e29, 'Y', '2014-02-23 17:29:15'),
(333, 36, 0x456c666f676164, 'Y', '2014-02-23 17:29:15'),
(394, 36, 0x55746f6c73c3b320656cc3a972c3a973, 'Y', '2014-02-23 17:29:15'),
(407, 36, 0x4967617a73c3a1676f73, 'Y', '2014-02-23 17:29:15'),
(417, 36, 0x4a656c656e6c656720c3bc7265736e656b2074c5b16e696b2e, 'Y', '2014-02-23 17:29:15'),
(423, 36, 0x4373616b20c3a97274c3a96b656c7420656c6c656e66c3a96c, 'Y', '2014-02-23 17:29:15'),
(424, 36, 0x4861206967656e2c20617a20c3a97274c3a96b656cc3a97320686174c3a17261693a, 'Y', '2014-02-23 17:38:18'),
(431, 36, 0x54c3a1626c616dc3a9726574, 'Y', '2014-02-23 17:38:18'),
(433, 36, 0x4967617a73c3a1676f732068656e64696b6570, 'Y', '2014-02-23 17:38:18'),
(445, 36, 0x4ac3a174737a2e617a6f6e2e, 'Y', '2014-02-23 17:38:18'),
(455, 36, 0x456c6bc3bc6c64c3a97320c3a973206bc3b67665746b657ac591206ac3a174737a6dc3a17261206cc3a970c3a973, 'Y', '2014-02-23 17:38:18'),
(456, 36, 0x456c6bc3bc6c64c3a97320c3a973207374c3a17475737a6f6c64616c7261206cc3a970c3a973, 'Y', '2014-02-23 17:38:18'),
(458, 36, 0x466f676c796f6b, 'Y', '2014-02-23 17:38:18'),
(618, 36, 0x4b657a64c59120c3a972742e, 'Y', '2014-02-23 17:38:18'),
(619, 36, 0x426566656a657ac59120c3a972742e, 'Y', '2014-02-23 17:38:18'),
(620, 36, 0xc38972742e206bc3bc6cc3b66e6273c3a967, 'Y', '2014-02-23 17:38:18'),
(1024, 36, 0x4b69656779656e6cc3ad74657474206ac3a174737a6d61, 'Y', '2014-02-23 17:40:54'),
(1076, 36, 0x50726976c3a174206a6567797a6574656b, 'Y', '2014-02-23 17:40:54'),
(1083, 36, 0x412068656e64696b6570206bc3b676656b20737a6f6bc3a1736f73206dc3b3646f6e206c65737a6e656b20656c72656e64657a76652e, 'Y', '2014-02-23 17:40:54'),
(1084, 36, 0x537a6f6bc3a1736f7320656c72656e64657ac3a973, 'Y', '2014-02-23 17:40:54'),
(1085, 36, 0x4bc3a9726c656b206a656cc3b66c64206d656720612068616c6f7474206bc3b676656b657420c3a9732076c3a967c3bc6c206b617474696e74732061202573274bc3a9737a27257320676f6d6272612e, 'Y', '2014-02-23 17:40:54'),
(1086, 36, 0x456c666f67c3a1736f6b, 'Y', '2014-02-23 17:40:54'),
(1087, 36, 0x4b6f6d6d656e74656b, 'Y', '2014-02-23 17:40:54'),
(1088, 36, 0x534746206c6574c3b66c74c3a97365206d696e64656e206b6f6d6d656e7474656c, 'Y', '2014-02-23 17:40:54'),
(1089, 36, 0x506f6e746f7ac3a173, 'Y', '2014-02-23 17:40:54'),
(1090, 36, 0x4cc3a970c3a973206d656774656b696e74c3a97365, 'Y', '2014-02-23 17:40:54'),
(1091, 36, 0x48c3a17472616c6576c591206964c591, 'Y', '2014-02-23 17:43:06'),
(1092, 36, 0xc3897274c3a96b656c74206ac3a174737a6d61, 'Y', '2014-02-23 17:43:06'),
(1093, 36, 0x4a6567797a6574656b206d75746174c3a17361, 'Y', '2014-02-23 17:43:06'),
(1094, 36, 0x4a6567797a6574656b206d656e74c3a97365, 'Y', '2014-02-23 17:43:06'),
(1095, 36, 0x4a6567797a6574656b20656c72656a74c3a97365, 'Y', '2014-02-23 17:43:06'),
(1109, 36, 0x456cc5916ec3a97a6574, 'Y', '2014-02-23 17:43:06'),
(1252, 36, 0x566973737a6175746173c3ad74, 'Y', '2014-02-23 17:43:06'),
(1270, 36, 0x4d696e64656e2076c3a172616b6f7ac3b3206ac3a174737a6d61, 'Y', '2014-02-23 17:43:06'),
(1271, 36, 0x4d656766656c656cc5912076c3a172616b6f7ac3b3206ac3a174737a6dc3a16b, 'Y', '2014-02-23 17:43:06'),
(1396, 36, 0x4e796f6d6a20617a2022656c6bc3bc6c64c3a973222d72652061206d65676572c59173c3ad74c3a97368657a, 'Y', '2014-02-23 17:43:06'),
(1397, 36, 0x4964c59120686f7a7ac3a16164c3a1736120617a20656c6c656e66c3a96c20737ac3a16dc3a17261, 'Y', '2014-02-23 17:45:26'),
(1398, 36, 0x4d656766696779656cc5916b206d75746174c3a17361, 'Y', '2014-02-23 17:45:26'),
(1399, 36, 0x56c3a16c61737a64206b692c20686f6779206d656e6e796920706c75737a206964c5917420737a657265746ec3a96c2061646e6920617a20656c6c656e66656c65646e656b, 'Y', '2014-02-23 17:45:26'),
(1400, 36, 0x686f7a7ac3a16164766120617a20656c6c656e66656c6564206964656ac3a968657a2e, 'Y', '2014-02-23 17:45:26'),
(1401, 36, 0x42796f796f6d69206265c3a16c6cc3ad74c3a1736f6b20766973737a61c3a16c6cc3ad74c3a1736120c3ba6a726162656cc3a970c3a9736b6f72, 'Y', '2014-02-23 17:45:26'),
(1402, 36, 0x4964c59120686f7a7ac3a16164c3a17361, 'Y', '2014-02-23 17:45:26'),
(1403, 36, 0x4dc3a9677365, 'Y', '2014-02-23 17:45:26'),
(1412, 36, 0x4d696e64, 'Y', '2014-02-23 17:45:26'),
(1413, 36, 0x42, 'Y', '2015-09-21 15:08:59'),
(1414, 36, 0x57, 'Y', '2015-09-21 15:09:44'),
(1417, 36, 0x46656b657465206e657665, 'Y', '2014-02-23 17:46:53'),
(1418, 36, 0x46656b6574652066656c682e617a6f6e2d6a61, 'Y', '2014-02-23 17:46:53'),
(1419, 36, 0x46656b657465206b657a64c591206265736f726f6cc3a17361, 'Y', '2014-02-23 17:46:53'),
(1420, 36, 0x46656b657465206265736f726f6cc3a17361, 'Y', '2014-02-23 17:46:53');
INSERT INTO `Translations` (`Original_ID`, `Language_ID`, `Text`, `Translated`, `Updated`) VALUES
(1421, 36, 0x466568c3a972206e657665, 'Y', '2014-02-23 17:46:53'),
(1422, 36, 0x466568c3a9722066656c682e617a6f6e2d6a61, 'Y', '2014-02-23 17:46:53'),
(1423, 36, 0x466568c3a972206b657a64c591206265736f726f6cc3a17361, 'Y', '2014-02-23 17:46:53'),
(1424, 36, 0x466568c3a972206265736f726f6cc3a17361, 'Y', '2014-02-23 17:48:49'),
(1425, 36, 0x46656b657465206265662e206265736f726f6cc3a17361, 'Y', '2014-02-23 17:48:49'),
(1426, 36, 0x46656b657465206265736f726f6cc3a173206bc3bc6cc3b66e6273c3a967, 'Y', '2014-02-23 17:48:49'),
(1427, 36, 0x466568c3a972206265662e206265736f726f6cc3a17361, 'Y', '2014-02-23 17:48:49'),
(1428, 36, 0x466568c3a972206265736f726f6cc3a173206bc3bc6cc3b66e6273c3a967, 'Y', '2014-02-23 17:48:49'),
(1436, 36, 0x537ac3ad6e656b, 'Y', '2014-02-23 17:48:49'),
(1441, 36, 0x506f6e746f6b, 'Y', '2014-02-23 17:50:09'),
(1442, 36, 0x4e796572743f, 'Y', '2014-02-23 17:50:09'),
(1446, 36, 0x456c6c656e66c3a96c2075746f6c73c3b320616b7469766974c3a17361, 'Y', '2014-02-23 17:50:09'),
(1447, 36, 0x48c3a97476c3a9676920c3b37261, 'Y', '2014-02-23 17:50:09'),
(1480, 36, 0x4f72737ac3a167, 'Y', '2014-02-23 17:50:09'),
(1483, 36, 0x234ac3a174737a6dc3a16b, 'Y', '2014-02-23 17:50:09'),
(1490, 36, 0x55746f6c6ac3a1726120616b74c3ad76, 'Y', '2015-01-08 20:11:52'),
(1493, 36, 0x4d696e64, 'Y', '2014-02-23 17:50:09'),
(1497, 36, '', 'Y', '2014-02-23 17:53:25'),
(1498, 36, 0x4b6f6d6d656e74, 'Y', '2014-02-23 17:53:25'),
(1499, 36, 0x54c3ad707573, 'Y', '2014-02-23 17:53:25'),
(1502, 36, 0x4964c5916c696d6974, 'Y', '2014-02-23 17:53:25'),
(1503, 36, 0x537a6f6bc3a1736f7320656c72656e64657ac3a973, 'Y', '2014-02-23 17:53:25'),
(1731, 36, '', 'Y', '2014-02-23 17:53:25'),
(1782, 36, 0x4d45474a3a20412074656c6a6573206ac3a174737a6d616c6973746120616c617062c3b36c206b6f726cc3a1746f7a76612076616e20617a2075746f6c73c3b3202573206e61706f6e20616b74c3ad76206ac3a174737a6dc3a16b72612e20457a74206d656776c3a16c746f7a7461746861746f642061205b25735d20737ac5b172c59176656c2e, 'Y', '2014-02-23 17:53:25'),
(1826, 36, 0x4672697373c3ad74c3a973, 'Y', '2014-02-23 17:53:25'),
(1924, 36, 0x4ac3a174737a6d6120737ac3a16dc3ad74c3a1736f6b, 'Y', '2014-02-23 17:53:25'),
(1926, 36, 0x4265736f726f6cc3a17320737ac3a16dc3ad74c3a1736f6b206d75746174c3a17361, 'Y', '2014-02-23 17:55:49'),
(1927, 36, 0x457265646dc3a96e79, 'Y', '2014-02-23 17:55:49'),
(1928, 36, 0xc39a6a206ac3a174737a6d6120737ac3a16dc3ad74c3a173, 'Y', '2014-02-23 17:55:49'),
(1966, 36, 0xc39a6a2061646d696e2068c3ad72, 'Y', '2014-02-23 17:55:49'),
(2006, 36, 0x56657273656e79206ac3a174737a6dc3a16b20c3a16c6c61706f7461, 'Y', '2014-02-23 17:55:49'),
(2101, 36, 0x43c3ad6d, 'Y', '2014-02-23 17:55:49'),
(2153, 36, 0x4964c59120686f7a7ac3a16164766121, 'Y', '2014-02-23 17:55:49'),
(2154, 36, 0x4b6f6d692d616ac3a16e6c61742073696b65726573656e20656c6d656e74766521, 'Y', '2014-02-23 17:55:49'),
(2155, 36, 0x4b6f6d692d616ac3a16e6c61742073696b65726573656e20656c6d656e7476652c206b6f6d6920c3a97320737ac3ad6e206d6567686174c3a1726f7a76612c2061206ac3a174737a6d6120656c6b657a64c59164c3b6747421, 'Y', '2014-02-23 17:55:49'),
(2161, 36, 0x444753206265736f726f6cc3a173206b6f6e76657274c3a16cc3b3, 'Y', '2014-02-23 17:58:44'),
(2167, 36, 0xc39a6a2068c3ad72, 'Y', '2014-02-23 17:58:44'),
(2277, 36, 0x4dc3b3646f73c3ad747661, 'Y', '2014-02-23 17:58:44'),
(2394, 36, 0x61646d696e20c3a16c74616c206265c3a16c6cc3ad747661, 'Y', '2014-02-23 17:58:44'),
(2395, 36, 0x4567792074c3b662626ac3a174c3a96b6f73206ac3a174737a6d612066656c6164c3a173c3a162612062656c65206b656c6c20686f677920656779657a7a656e656b20612063736170617474c3a1727361696420697321, 'Y', '2014-02-23 17:58:44'),
(2396, 36, 0x4bc3a97264c3a97320612063736170617474c3a17273616b6e616b, 'Y', '2014-02-23 17:58:44'),
(2397, 36, 0x42697a6f6e796f736f646a206d656720617272c3b36c2c20686f67792061206ac3a174c3a96b20626566656a657ac3a9736520656cc5917474206120746572c3bc6c657465696420686174c3a1726169206c65206c656779656e656b207ac3a172766121, 'Y', '2014-02-23 17:58:44'),
(2400, 36, 0x4672697373c3ad74c3a973, 'Y', '2014-02-23 17:58:44'),
(2401, 36, 0x4ac3a174c3a96b696e66c3b36b206d75746174c3a17361, 'Y', '2014-02-23 18:00:31'),
(2402, 36, '', 'Y', '2014-02-23 18:00:31'),
(2403, 36, 0x4265c3a16c6cc3ad74c3a1733a20416c616b7a6174, 'Y', '2014-02-23 18:00:31'),
(2404, 36, 0x285347462d6cc3a970c3a97320257329, 'Y', '2014-02-23 18:00:31'),
(2406, 36, 0x456c73c591206cc3a970c3a973, 'Y', '2014-02-23 18:00:31'),
(2407, 36, 0x456cc5917ac591206cc3a970c3a973, 'Y', '2014-02-23 18:00:31'),
(2408, 36, 0x4bc3b67665746b657ac591206cc3a970c3a973, 'Y', '2014-02-23 18:00:31'),
(2411, 36, 0x4cc3a970c3a97320766973737a61766f6ec3a17361, 'Y', '2014-02-23 18:00:31'),
(2412, 36, 0x4d65676a3a2041206a656c656e6c6567692062796f796f6d69206964c591737a616b20766973737a61206c65747420c3a16c6cc3ad74766120612074656c6a657320766973737a61c3a16c6cc3ad74c3a17374c3b36c2066c3bc676765746c656ec3bc6c2e, 'Y', '2014-02-23 18:03:35'),
(2414, 36, 0x4ac3a174737a6d612074c3ad70757361, 'Y', '2014-02-23 18:03:35'),
(2415, 36, 0x55746f6c6ac3a17261206cc3a9706574743a, 'Y', '2014-02-23 18:03:35'),
(2416, 36, 0x537a6162c3a16c7972656e64737a6572, 'Y', '2014-02-23 18:03:35'),
(2418, 36, 0x56657273656e7976657a6574c591, 'Y', '2014-02-23 18:03:35'),
(2421, 36, 0x4265c3a16c6cc3ad74c3a173, 'Y', '2014-02-23 18:04:24'),
(2422, 36, 0x4d656768c3ad76c3a173, 'Y', '2014-02-23 18:04:24'),
(2423, 36, 0x4b6f6d69206d6567656779657ac3a973, 'Y', '2014-02-23 18:04:24'),
(2424, 36, 0x4ac3a174737a6d61206265c3a16c6cc3ad74c3a1736169, 'Y', '2014-02-23 18:04:24'),
(2425, 36, 0x4475706c61206ac3a174737a6d6120617a6f6e2e, 'Y', '2014-02-23 18:04:24'),
(2426, 36, 0x74c3b672c3b66c7665, 'Y', '2014-02-23 18:04:24'),
(2427, 36, 0x4d656768c3ad76c3a173206d75746174c3a17361, 'Y', '2014-02-23 18:05:08'),
(2429, 36, 0x4b657a64c3a973206964656a65, 'Y', '2014-02-23 18:05:08'),
(2432, 36, 0x537a6f6bc3a1736f732068656e64696b6570, 'Y', '2014-02-23 18:05:08'),
(1210, 36, 0xc3896c657472616a7a6920696e66c3b36b20737a65726b65737a74c3a97365, 'Y', '2015-09-19 18:23:21'),
(2419, 36, 0x4b6f6d69206d6567656779657ac3a973206967617a73c3a1676f73206b6f6d692d76616c, 'Y', '2014-02-23 21:58:01'),
(2420, 36, 0x456779657a6b6564c3a9736920666f6c79616d617420656868657a3a20222573223a, 'Y', '2014-02-23 21:58:01'),
(2428, 36, 0x4967617a73c3a1676f73206b6f6d692074c3ad707573, 'Y', '2014-02-23 21:58:01'),
(2430, 36, 0x6d6567656779657ac3a973206967617a73c3a1676f73206b6f6d6920c3a16c74616c, 'Y', '2014-02-23 21:58:01'),
(2435, 36, 0x416b7475c3a16c6973206265736f726f6cc3a173, 'Y', '2014-02-23 21:58:01'),
(2436, 36, 0x437361706174206b657a64c5916265736f726f6cc3a17361, 'Y', '2014-02-23 21:58:01'),
(2437, 36, 0x4b6f6d6920616ac3a16e6c6174, 'Y', '2014-02-23 21:58:01'),
(2438, 36, 0x2573206bc3b67665746b657a696b, 'Y', '2014-02-23 21:59:40'),
(2439, 36, 0x46656b657465206cc3a970c3a97365206ac3b66e, 'Y', '2014-02-23 21:59:40'),
(2440, 36, 0x466568c3a972206cc3a970c3a97365206ac3b66e, 'Y', '2014-02-23 21:59:40'),
(2441, 36, 0x4964c5916265c3a16c6cc3ad74c3a1736f6b20c3a9732068c3a17472616cc3a976c591206964c591, 'Y', '2014-02-23 21:59:40'),
(2442, 36, 0xc393726172656e64737a6572, 'Y', '2014-02-23 21:59:40'),
(2443, 36, 0x4578747261206964c591, 'Y', '2014-02-23 21:59:40'),
(2444, 36, 0xc393726120c3a16c6c61706f7461, 'Y', '2014-02-23 21:59:40'),
(2445, 36, 0xc3937261206d6567c3a16c6cc3ad747661, 'Y', '2014-02-23 21:59:40'),
(2446, 36, 0xc3937261206dc5b16bc3b664c3a97362656e, 'Y', '2014-02-23 22:02:41'),
(2447, 36, 0x4861737a6ec3a16c7420c3b37261, 'Y', '2014-02-23 22:02:41'),
(2450, 36, 0x54c3ad707573, 'Y', '2014-02-23 22:02:41'),
(2451, 36, 0x4a656c656e6c656769206bc3b672, 'Y', '2014-02-23 22:02:41'),
(2457, 36, 0x5072696f726974c3a173206265c3a16c6cc3ad74c3a17361, 'Y', '2014-02-23 22:02:41'),
(2459, 36, 0x4ac3a174737a6d61206d75746174c3a17361, 'Y', '2014-02-23 22:03:07'),
(2462, 36, 0x56657273656e79206b657a656cc3a97365, 'Y', '2014-02-23 22:03:07'),
(2464, 36, 0x41646d696e206ac3a174737a6d61, 'Y', '2014-02-23 22:04:13'),
(2465, 36, 0x282573206cc3a970c3a9732c202573206b6f6d6d656e7429, 'Y', '2014-02-23 22:04:13'),
(2496, 36, 0x4ac3a174c3a96b6f736f6b20696e666f726dc3a16369c3b369, 'Y', '2014-02-23 22:04:13'),
(2498, 36, 0x486f7a7ac3a16164c3a17320612076c3a172c3b3746572656d68657a, 'Y', '2014-02-23 22:04:43'),
(2499, 36, 0x48656e64696b6570206d656776c3a16c746f7a746174c3a17361, 'Y', '2014-02-23 22:04:43'),
(2500, 36, 0x537ac3ad6e20c3a9732068656e64696b6570206d656776c3a16c746f7a746174c3a17361, 'Y', '2014-02-23 22:05:09'),
(2501, 36, 0x537ac3ad6e2076c3a16c74c3a17361, 'Y', '2014-02-23 22:05:09'),
(2506, 36, 0x48656e64696b6570206265c3a16c6cc3ad74c3a1736f6b, 'Y', '2014-02-23 22:06:08'),
(2507, 36, 0xc3937261206265c3a16c6cc3ad74c3a1736f6b, 'Y', '2014-02-23 22:06:08'),
(2508, 36, 0x437361706174206265c3a16c6cc3ad74c3a1736f6b, 'Y', '2014-02-23 22:06:08'),
(2509, 36, 0x4d696e64, 'Y', '2014-02-23 22:06:08'),
(2513, 36, 0x4d656768c3ad76c3b3206bc3bc6c64c3a97365, 'Y', '2014-02-23 22:06:08'),
(2519, 36, 0x4ac3a174c3a96b6f73, 'Y', '2014-02-23 22:06:25'),
(2523, 36, 0x4bc3b67665746b657ac591206ac3a174c3a96b6f73, 'Y', '2014-02-23 22:06:39'),
(2551, 36, 0x4d656768c3ad76c3a17320656c666f676164766121, 'Y', '2014-02-28 20:44:55'),
(2553, 36, 0x4d656768c3ad76c3a17320656c75746173c3ad74766121, 'Y', '2014-02-28 20:44:55'),
(2556, 36, 0x4373617061746f6b206672697373c3ad74766521, 'Y', '2014-02-28 20:44:55'),
(2630, 36, '', 'Y', '2014-02-28 20:45:47'),
(2631, 36, '', 'Y', '2014-02-28 20:45:47'),
(2637, 36, 0x48616c6f7474206bc3b676656b, 'Y', '2014-02-28 20:46:29'),
(2638, 36, 0x4bc3b676656b, 'Y', '2014-02-28 20:46:29'),
(2639, 36, 0x466f676c796f6b, 'Y', '2014-02-28 20:46:29'),
(2640, 36, '', 'Y', '2014-02-28 20:46:29'),
(2641, 36, 0x506f6e74737ac3a16d, 'Y', '2014-02-28 20:46:29'),
(2642, 36, 0x457265646dc3a96e79, 'Y', '2014-02-28 20:46:29'),
(2867, 36, 0x4ac3a174737a6d6120696e64c3ad74c3a17361, 'Y', '2014-02-28 20:47:41'),
(2880, 36, 0x4e696e637320737ac3ad6e206d656761647661, 'Y', '2014-02-28 20:49:24'),
(2881, 36, 0x4e696e6373206d656761647661206b6f6d692d616ac3a16e6c6174, 'Y', '2014-02-28 20:49:24'),
(2882, 36, 0xc3897276c3a96e7974656c656e20737ac3ad6e76c3a16c61737a74c3a173, 'Y', '2014-02-28 20:49:24'),
(2883, 36, 0x41206b6f6d692d616ac3a16e6c61746f7420737ac3a16d6d616c206b656c6c206d656761646e69, 'Y', '2014-02-28 20:49:24'),
(2907, 36, 0xc39c7a656e6574, 'Y', '2014-02-28 20:50:37'),
(2908, 36, 0x4d656768c3ad76c3a173, 'Y', '2014-02-28 20:50:37'),
(2909, 36, 0xc39a6a206ac3a174737a6d61, 'Y', '2014-02-28 20:50:37'),
(2912, 36, 0x4475706c61206ac3a174737a6d612028666568c3a97229, 'Y', '2014-02-28 20:50:37'),
(2913, 36, 0x4475706c61206ac3a174737a6d61202866656b65746529, 'Y', '2014-02-28 20:50:37'),
(2914, 36, 0x6a6170c3a16e, 'Y', '2014-02-28 20:50:37'),
(2915, 36, 0x6bc3ad6e6169, 'Y', '2014-02-28 20:50:37'),
(2921, 36, 0x286e656d206bc3b674656c657ac59129, 'Y', '2014-02-28 20:52:01'),
(2922, 36, 0x456c666f676164c3a17320617a6f6e6f7320656c6c656e66c3a96c74c5916c, 'Y', '2014-02-28 20:52:01'),
(2925, 36, 0x6d696e646967, 'Y', '2014-02-28 20:52:01'),
(4715, 7, 0x56b96563686e6120726f7a6573746176656eed, 'Y', '2016-07-20 18:40:45'),
(4687, 7, 0x4872616a206261727675, 'Y', '2016-07-20 16:29:41'),
(2928, 36, 0x3120616c6b616c6f6d6d616c202865677920616ac3a16e6c617462616e29, 'Y', '2014-02-28 20:53:09'),
(2929, 36, 0x257320616c6b616c6f6d6d616c202865677920616ac3a16e6c617462616e29, 'Y', '2014-02-28 20:53:09'),
(2932, 36, 0x31206e6170207574c3a16e, 'Y', '2014-02-28 20:53:31'),
(2933, 36, 0x2573206e6170207574c3a16e, 'Y', '2014-02-28 20:53:31'),
(2940, 36, '', 'Y', '2014-02-28 20:56:14'),
(2941, 36, 0x4475706c61, 'Y', '2014-02-28 20:56:14'),
(2942, 36, 0x46656b657465, 'Y', '2014-02-28 20:56:14'),
(2943, 36, 0x466568c3a972, 'Y', '2014-02-28 20:56:14'),
(2937, 36, '', 'Y', '2014-02-28 20:56:33'),
(2938, 36, 0x4373617061742d476f, 'Y', '2014-02-28 20:56:33'),
(2939, 36, '', 'Y', '2014-02-28 20:56:33'),
(3116, 36, '', 'Y', '2014-02-28 20:57:27'),
(3119, 36, '', 'Y', '2014-02-28 20:57:27'),
(3120, 36, '', 'Y', '2014-02-28 20:57:27'),
(3121, 36, '', 'Y', '2014-02-28 20:57:27'),
(3333, 36, 0x56657273656e79, 'Y', '2014-02-28 20:57:58'),
(2502, 36, 0x536f7272656e642076c3a16c746f7a746174c3a17361, 'Y', '2014-03-01 16:00:54'),
(2503, 36, 0x4ac3a174737a6d6120696e64c3ad74c3a17361, 'Y', '2014-03-01 16:00:54'),
(2511, 36, 0x4c65666f676c616c7661, 'Y', '2014-03-01 16:03:10'),
(2512, 36, 0x437361746c616b6f7a6f7474, 'Y', '2014-03-01 16:03:10'),
(2514, 36, 0x466f676c616cc3a1732074c3b6726cc3a97365, 'Y', '2014-03-01 16:03:10'),
(2515, 36, 0x437361746c616b6f7a6f7474206ac3a174c3a96b6f732074c3b6726cc3a97365, 'Y', '2014-03-01 16:03:10'),
(2516, 36, 0x536f7272656e64206d65676164c3a17361, 'Y', '2014-03-01 16:03:10'),
(2517, 36, 0x437361706174206d65676164c3a17361, 'Y', '2014-03-01 16:03:10'),
(2524, 36, 0xc39a6a206ac3a174737a6d6120696e64c3ad74c3a1736120612076c3a172c3b3746572656d62656e, 'Y', '2014-03-01 16:03:10'),
(2525, 36, 0x4373616b206567792074c3b662626ac3a174c3a96b6f73206ac3a174737a6d612d62656a6567797ac3a973206c6568657420612076c3a172c3b3746572656d62656e21, 'Y', '2014-03-01 16:14:55'),
(2526, 36, 0x412076c3a16c746f7a746174c3a173686f7a2074c3b672c3b66c6ec3b664206b656c6c2061206d65676cc3a976c5917420c3a97320617a74c3a16e20c3ba6a6174206b656c6c206cc3a9747265686f7a6e6f642e, 'Y', '2014-03-01 16:14:55'),
(2527, 36, 0x56c3a172c3b3746572656d2d62656a6567797ac3a973206d75746174c3a17361202874c3b6726cc3a97368657a29, 'Y', '2014-03-01 16:14:55'),
(2529, 36, 0x4d656768c3ad76c3a1732074c3b662626ac3a174c3a96b6f73206ac3a174737a6dc3a16261, 'Y', '2014-03-01 16:14:55'),
(2530, 36, 0x6373616b206265736f726f6cc3a17373616c2072656e64656c6b657ac5916b, 'Y', '2014-03-01 16:14:55'),
(2532, 36, 0x412066656c6861737a6ec3a16cc3b3205b25735d20c3a972746573c3bc6c6e6920666f6720612074c3b6726cc3a97372c5916c2e, 'Y', '2014-03-01 16:14:55'),
(2535, 36, 0x4d656768c3ad76c3a173206ac3b376c3a168616779c3a17361, 'Y', '2014-03-01 16:15:13'),
(2534, 36, 0x42697a746f73616e20737a657265746ec3a9642074c3b672c3b66c6e6920657a74206120637361746c616b6f7a6f7474206ac3a174c3a96b6f73743f, 'Y', '2014-03-01 16:19:57'),
(2536, 36, 0x4d656768c3ad76c3a17374206b617074c3a16c206572726520612074c3b662626ac3a174c3a96b6f73206ac3a174737a6dc3a172612e, 'Y', '2014-03-01 16:19:57'),
(2537, 36, 0x4bc3a9726c656b206ec3a97a6420c3a1742066696779656c6d6573656e2061206ac3a174c3a96b2d20c3a973206964c5916265c3a16c6cc3ad74c3a1736f6b61743a, 'Y', '2014-03-01 16:19:57'),
(2540, 36, 0x456c666f6761646861746f64207661677920656c75746173c3ad746861746f6420657a742061206d656768c3ad76c3a173742e, 'Y', '2014-03-01 16:19:57'),
(2542, 36, 0x456c666f6761646f642061206d656768c3ad76c3a173743f, 'Y', '2014-03-01 16:21:43'),
(2545, 36, 0xc39c7a656e6574206bc3bc6c64c3a97365206d696e64656e206ac3a174c3a96b6f736e616b, 'Y', '2014-03-01 16:21:43'),
(2546, 36, 0x42656c65656779657a656c2061206ac3a174737a6d6120696e64c3ad74c3a173c3a162613f, 'Y', '2014-03-01 16:21:43'),
(2555, 36, 0x437361746c616b6f7a6f7474206ac3a174c3a96b6f732074c3b672c3b66c766521, 'Y', '2014-03-01 16:22:40'),
(2558, 36, 0x486167796f6dc3a16e796f732068656e64696b6570, 'Y', '2014-03-01 16:22:40'),
(5764, 36, 0x4d65676a6567797ac3a973656b20656c72656a74c3a97365, 'Y', '2014-03-01 16:24:11'),
(5765, 36, 0x4d65676a6567797ac3a973656b206d75746174c3a17361, 'Y', '2014-03-01 16:24:11'),
(5766, 36, 0x4a656c656e656769206cc3a970c3a973, 'Y', '2014-03-01 16:24:11'),
(5767, 36, 0x4a656c656e6c656769206cc3a970c3a97368657a2066c5b17ac3b67474206d65676a6567797ac3a973206d75746174c3a17361, 'Y', '2014-03-01 16:24:11'),
(5757, 36, 0xc39c7a656e6574656b, 'Y', '2014-03-01 16:25:53'),
(2461, 36, 0x41646d696e2076657273656e796ac3a174737a6d61, 'Y', '2014-03-01 17:05:10'),
(2497, 36, 0x56c3a172c3b3746572656d2062656a6567797ac3a973206d75746174c3a17361, 'Y', '2014-03-01 17:05:10'),
(2510, 36, 0x4d6573746572, 'Y', '2014-03-01 17:05:10'),
(2538, 36, 0x537a616261646f6e206d65676265737ac3a96c68657465642061206265c3a16c6cc3ad74c3a1736f6b62616e206c6568657473c3a96765732076c3a16c746f7a746174c3a1736f6b61742061206ac3a174c3a96b6d657374657272656c2c2068612076616c616d6962656e206e656d20c3a9727465737a2065677965742e, 'Y', '2014-03-01 17:09:54'),
(2539, 36, 0x5669737a6f6e7420612063736170617462656f737a74c3a173742c206120737ac3ad6e656b657420c3a97320612068656e64696b65706574206373616b2061206ac3a174c3a96b6d65737465722076c3a16c746f7a7461746861746a61206d65672e, 'Y', '2014-03-01 17:09:54'),
(2541, 36, 0x5b25735d2c2061206ac3a174c3a96b6d657374657220c3a972746573c3ad74c3a97374206b617020612064c3b66e74c3a973656472c5916c2e, 'Y', '2014-03-01 17:09:54'),
(2550, 36, 0x257320656c666f67616474612061206d656768c3ad76c3a1736f64206562626520612074c3b662626ac3a174c3a96b6f73206ac3a174737a6dc3a162613a2025732e, 'Y', '2014-03-01 17:09:54'),
(2552, 36, 0x257320656c75746173c3ad746f7474612061206d656768c3ad76c3a1736f64206562626520612074c3b662626ac3a174c3a96b6f73206ac3a174737a6dc3a162613a2025732e, 'Y', '2014-03-01 17:09:54'),
(2557, 36, 0x48656e64696b6570206a617661736c6174205b25735d2063736170617420737ac3a16dc3a17261, 'Y', '2014-03-01 17:11:44'),
(2560, 36, 0x4e696e637320737a616261642068656c79206ac3a174c3a96b6f73206d656768c3ad76c3a173c3a17261, 'Y', '2014-03-01 17:11:44'),
(2561, 36, 0x5b25735d2066656c6861737a6ec3a16cc3b36e616b206e696e6373206265736f726f6cc3a17361, 'Y', '2014-03-01 17:11:44'),
(2562, 36, 0x5b25735d2066656c6861737a6ec3a16cc3b3206dc3a172206d6567206c6574742068c3ad7676612076616779206dc3a17220637361746c616b6f7a6f74742069732061206ac3a174737a6dc3a1686f7a, 'Y', '2014-03-01 17:11:44'),
(2564, 36, 0x417a20656c74c3a1766f6cc3ad74616e64c3b3206ac3a174c3a96b6f73206dc3a17220637361746c616b6f7a6f74742061206ac3a174737a6dc3a1686f7a2e, 'Y', '2014-03-01 17:12:27'),
(2569, 36, 0x417a20656c74c3a1766f6cc3ad74616e64c3b3206ac3a174c3a96b6f73206dc3a967206e656d20637361746c616b6f7a6f74742061206ac3a174737a6dc3a1686f7a2e, 'Y', '2014-03-01 17:21:44'),
(2571, 36, 0x4ec3a968c3a16e79206ac3a174c3a96b6f73206869c3a16e797a696b, 'Y', '2014-03-01 17:21:44'),
(2573, 36, 0x5b25735d206ac3a174c3a96b6f732074c3b662622c206d696e7420656779737a657220637361746c616b6f7a6f74742061206ac3a174737a6dc3a1686f7a, 'Y', '2014-03-01 17:21:44'),
(2581, 36, 0x4ac3a174737a6d6120656c696e64756c7421, 'Y', '2014-03-01 17:35:25'),
(2582, 36, 0x4ac3a174737a6d61206265c3a16c6cc3ad74c3a173, 'Y', '2014-03-01 17:35:25'),
(2583, 36, 0x4ac3a174737a6d6120626566656a657a7665, 'Y', '2014-03-01 17:35:25'),
(2584, 36, 0x4ac3a174737a6d6120666f6c79616d617462616e, 'Y', '2014-03-01 17:35:25'),
(2634, 36, 0x506f6e746f7ac3a1736920696e666f726dc3a16369c3b3, 'Y', '2014-03-01 17:35:25'),
(2644, 36, 0x4cc3a970c3a973656b, 'Y', '2014-03-01 17:36:29'),
(2645, 36, 0x5072696f726974c3a173, 'Y', '2014-03-01 17:36:29'),
(2646, 36, 0x48c3a17472616c6576c591206964c591, 'Y', '2014-03-01 17:36:29'),
(2647, 36, 0xc39c524553, 'Y', '2014-03-01 17:36:29'),
(2726, 36, 0x4967617a73c3a1676f73206b6f6d69206d6567656779657ac3a973, 'Y', '2014-03-01 17:37:39'),
(2727, 36, 0x544a4a2d6265c3a16c6cc3ad74c3a173, 'Y', '2014-03-01 17:37:39'),
(2728, 36, 0x4d656768c3ad767661, 'Y', '2014-03-01 17:37:39'),
(2729, 36, 0x4ac3a174c3a96b62616e, 'Y', '2014-03-01 17:37:39'),
(2730, 36, 0x506173737a, 'Y', '2014-03-01 17:38:02'),
(2731, 36, 0x506f6e746f7ac3a173, 'Y', '2014-03-01 17:38:02'),
(2732, 36, 0x426566656a657a7665, 'Y', '2014-03-01 17:38:02'),
(2842, 36, '', 'Y', '2014-03-01 17:38:41'),
(2843, 36, 0x4e656d20686167792e, 'Y', '2014-03-01 17:38:41'),
(2851, 36, 0x4d696e64656e6b69206bc3a9737a656e20c3a16c6c2061206ac3a174737a6d61206b657a64c3a973c3a972653f, 'Y', '2014-03-01 17:39:45'),
(2853, 36, 0x46656b657465, 'Y', '2014-03-01 17:39:45'),
(2854, 36, 0x466568c3a972, 'Y', '2014-03-01 17:39:45'),
(2855, 36, 0x312e20637361706174, 'Y', '2014-03-01 17:39:45'),
(2856, 36, 0x322e20637361706174, 'Y', '2014-03-01 17:39:45'),
(2859, 36, 0x46656b657465206b6976c3a16c61737a747661, 'Y', '2014-03-01 17:40:46'),
(2860, 36, 0x466568c3a972206b6976c3a16c61737a747661, 'Y', '2014-03-01 17:40:46'),
(2861, 36, 0x56c3a16c6173737a20737ac3ad6e74, 'Y', '2014-03-01 17:40:46'),
(2858, 36, 0x5469746b6f73, 'Y', '2014-03-01 17:41:33'),
(2862, 36, 0x4dc3a967206e696e637320616ac3a16e6c6174, 'Y', '2014-03-01 17:41:33'),
(2863, 36, 0x46656b6574c3a9742076c3a16c61737a746f6d, 'Y', '2014-03-01 17:41:33'),
(2864, 36, 0x466568c3a97265742076c3a16c61737a746f6d, 'Y', '2014-03-01 17:41:33'),
(2852, 36, 0x46656b6574652f466568c3a972207661677920656c64c3b66e7465746c656e, 'Y', '2014-03-01 17:42:45'),
(2857, 36, 0x4646, 'Y', '2014-03-01 17:42:45'),
(2865, 36, 0x416b7475c3a16c697320616ac3a16e6c6174, 'Y', '2014-03-01 17:42:45'),
(2866, 36, 0x4b6f6d6920616ac3a16e6c6174206d656e74c3a97365, 'Y', '2014-03-01 17:42:45'),
(2869, 36, 0x41206b6f6d692d616ac3a16e6c61746f6b2072656a747665206d617261646e616b20612074c3b6626269206ac3a174c3a96b6f7320656cc5916c2e, 'Y', '2014-03-01 17:42:45'),
(2873, 36, 0x41206ac3a174c3a96b6f736f6b206e79c3ad6c74616e206d656761646ac3a16b2061206b6f6d692d616ac3a16e6c617461696b61742e, 'Y', '2014-03-01 17:43:45'),
(2874, 36, 0x41206b6f6d692d616ac3a16e6c61746f6b206cc3a174686174c3b36b20612074c3b6626269206ac3a174c3a96b6f7320737ac3a16dc3a172612e, 'Y', '2014-03-01 17:43:45'),
(2877, 36, 0x456779206ac3a174c3a96b6f732076c3a16c61737a74206b6f6d697420466568c3a97220737ac3a16dc3a172612e, 'Y', '2014-03-01 17:48:16'),
(2878, 36, 0x457a7574c3a16e20612074c3b6626269206ac3a174c3a96b6f7320737ac3ad6e742076c3a16c61737a7420c3a97320656c696e64756c2061206ac3a174737a6d612e, 'Y', '2014-03-01 17:48:16'),
(2879, 36, 0x417a206967617a73c3a1676f73206b6f6d69206d6567656779657ac3a973206bc3b67a62656e206973206ac3a17220617a20c3b372612e, 'Y', '2014-03-01 17:48:16'),
(2884, 36, 0x41206a69676f206572c5916c74657476652076616e2c20746568c3a1742061206b6f6d692d616ac3a16e6c6174206e656d206c656865742074c3b67274737ac3a16d, 'Y', '2014-03-01 17:48:16'),
(2885, 36, 0x41206a69676f2074696c7476612076616e2c20746568c3a1742061206b6f6d692d616ac3a16e6c6174206373616b2074c3b67274737ac3a16d206c65686574, 'Y', '2014-03-01 17:48:16'),
(2886, 36, 0x41206b6f6d692d616ac3a16e6c61746f646e616b206d616761736162626e616b206b656c6c206c656e6e696520617a20656c6c656e66c3a96c20616ac3a16e6c6174c3a16ec3a16c2e, 'Y', '2014-03-01 17:48:16'),
(2887, 36, 0x53616a6e6f73206e656d20696e64c3ad74686174737a2074c3b66262206d696e74202573206ac3a174737a6dc3a17421, 'Y', '2014-03-01 17:48:16'),
(2888, 36, 0x4dc3a17220656c696e64c3ad746f7474c3a16c202573206ac3a174737a6dc3a1742061206d6567656e676564657474202573206ac3a174737a6dc3a162c3b36c2e, 'Y', '2014-03-01 17:48:16'),
(2892, 36, 0x537a6f6bc3a1736f732068656e64696b6570, 'Y', '2014-03-01 17:49:55'),
(2893, 36, 0x537a616261642068656e64696b6570, 'Y', '2014-03-01 17:49:55'),
(2895, 36, 0x48656e64696b6570206bc3b676656b20656c72656e64657ac3a97365, 'Y', '2014-03-01 17:49:55'),
(2896, 36, 0xc3937261, 'Y', '2014-03-01 17:49:55'),
(2528, 36, 0x4ac3a174c3a96b6f732d68656c79656b, 'Y', '2014-03-01 19:58:36'),
(2548, 36, 0x2573206ac3a174c3a96b6d65737465722074c3b672c3b66c74652061206d656768c3ad76c3a1736f6420656e6ec3a96c2061206ac3a174737a6dc3a16ec3a16c3a2025732e, 'Y', '2014-03-01 20:21:55'),
(2554, 36, 0x2573206ac3a174c3a96b6d657374657220766973737a61766f6e746120612072c3a9737a76c3a974656c6564657420656262c5916c2061206ac3a174737a6dc3a162c3b36c3a2025732e, 'Y', '2014-03-01 20:21:55'),
(2559, 36, 0x41206ac3a174c3a96b6d6573746572206dc3a17220637361746c616b6f7a6f74742061206ac3a174737a6dc3a1686f7a20c3a973206e656d206c65686574206d656768c3ad766e692e, 'Y', '2014-03-01 20:21:55'),
(2563, 36, 0x41206ac3a174c3a96b6d65737465726e656b206e656d206b656c6c2068656c79657420666f676c616c6e6920c3a973206e656d206c6568657420656c74c3a1766f6cc3ad74616e692073656d2e, 'Y', '2014-03-01 20:21:55'),
(2566, 36, 0x412066656c6861737a6ec3a16cc3b3686f7a20746172746f7ac3b32c20656c74c3a1766f6cc3ad74616e64c3b320666f676c616cc3a173206e656d2074616cc3a16c686174c3b32e, 'Y', '2014-03-01 20:21:55'),
(2568, 36, 0x4ac3a174c3a96b6d6573746572726520737ac3bc6b73c3a9672076616e20c3a973206e656d2074c3b672c3b66c686574656420696c79656e206dc3b3646f6e2e, 'Y', '2014-03-01 20:21:55'),
(2570, 36, 0x412074c3b672c3b66c6e69206bc3ad76c3a16e7420637361746c616b6f7a6f7474206ac3a174c3a96b6f73206e656d2074616cc3a16c686174c3b32e, 'Y', '2014-03-01 20:32:55'),
(2572, 36, 0x4dc3a967206e696e6373206d696e64656e206c65666f676c616c742068656c7920626574c3b66c747665206ac3a174c3a96b6f736f6b6b616c, 'Y', '2014-03-01 20:32:55'),
(2574, 36, 0x41206ac3a174c3a96b6f736f6b20737ac3a16d6120282573206974743a2025732c202573206974743a20257329206e656d2066656c656c206d65672061206ac3a174737a6d61206265c3a16c6cc3ad74c3a17361696e616b3a205b25735d, 'Y', '2014-03-01 20:32:55'),
(2575, 36, 0x5b25732c2025735d206373617061746f6b72612076616e20737ac3bc6b73c3a9672c206568656c79657474205b25735d2074616cc3a16c686174c3b3, 'Y', '2014-03-01 20:32:55'),
(2576, 36, 0x41206ac3a174c3a96b6f736f6b20737ac3a16d6120282573206974743a20257329206e656d2066656c656c206d65672061206ac3a174737a6d61206265c3a16c6cc3ad74c3a17361696e616b3a205b25735d, 'Y', '2014-03-01 20:32:55'),
(2578, 36, 0x5b25735d2063736170617420736f7272656e646ac3a974206d6567206b656c6c2061646e69, 'Y', '2014-03-01 20:35:06'),
(2579, 36, 0x5b25735d2063736170617420736f7272656e646ac3a96e656b20312d6779656c206b656c6c206b657a64c591646e6965, 'Y', '2014-03-01 20:35:06'),
(2580, 36, 0x5b25735d2063736170617420736f7272656e646ac3a962656e2065677965646920c3a973206567796dc3a17374206bc3b6766574c59120737ac3a16d6f6b72612076616e20737ac3bc6b73c3a9673a20312c322c332c2e2e2e, 'Y', '2014-03-01 20:35:06'),
(2841, 36, 0x41206bc3b672c3bc6c6dc3a96e79656b206e656d20656e676564696b2c20686f6779205b25735d2066656c6861737a6ec3a16cc3b3206964c591742061646a6f6e2061206bc3b67665746b657ac591206ac3a174737a6dc3a1686f7a3a205b25735d, 'Y', '2014-03-01 20:43:30'),
(2844, 36, 0x46656c61646861746f6d3f, 'Y', '2014-03-01 20:43:30'),
(2845, 36, 0x4d656768c3ad76c3a1732074c3b662626ac3a174c3a96b6f73206ac3a174737a6dc3a1626120657474c5916c3a205b25735d, 'Y', '2014-03-01 20:43:30'),
(2846, 36, 0x2573206ac3a174c3a96b6d6573746572206d656768c3ad762074c3a9676564206567792025732074c3b662626ac3a174c3a96b6f73206ac3a174737a6dc3a162612e, 'Y', '2014-03-01 20:43:30'),
(2847, 36, 0x457a2065677920616c616b7a61742d6ac3a174737a6d612028416c616b7a61742023257329, 'Y', '2014-03-01 20:43:30'),
(2848, 36, 0x456c666f6761646861746f64207661677920656c75746173c3ad746861746f642061206d656768c3ad76c3a173742061206ac3a174737a6d61206265c3a16c6cc3ad74c3a17361696ec3a16c3a202573, 'Y', '2014-03-01 20:43:30'),
(2849, 36, 0x41206d656768c3ad76c3a17320766973737a6175746173c3ad74c3a173c3a1686f7a2074756461736420657a742061206ac3a174c3a96b6d657374657272656c206f6c79616e206dc3b3646f6e2c20686f67792076c3a16c61737a6f6c737a206572726520617a20c3bc7a656e657472652e, 'Y', '2014-03-01 20:43:30'),
(2850, 36, 0x417a74206973206d65676265737ac3a96c68657465642c20686f6779206d656c79696b2063736170617462616e2c206d696c79656e20737ac3ad6e6e656c2076616779206d696c79656e20736f7272656e6462656e20737a657265746ec3a96c206ac3a174737a616e69202874c3b662622072c3a9737a6c6574c3a97274206cc3a1746f6761737320656c2061204759494b2d7265292e, 'Y', '2014-03-01 20:43:30'),
(2868, 36, 0x41206ac3a174c3a96b6f736f6b207469746f6b62616e206d656761646ac3a16b2073616ac3a174206b6f6d692d616ac3a16e6c617461696b617420286d696e64656e6b69206373616b20656779737a6572292e, 'Y', '2014-03-01 20:43:30'),
(2870, 36, 0x41206dc3a1736f64696b206b6f6d692d616ac3a16e6c6174207574c3a16e2061206ac3a174737a6d6120656c6b657a64c59164696b3a, 'Y', '2014-03-01 20:49:26'),
(2871, 36, 0x41206c65676e6167796f626220616ac3a16e6c61746f7420746576c591206ac3a174c3a96b6f73206c65737a2066656b65746520737ac3ad6e6e656c2c20612066656c616ac3a16e6c6f7474206b6f6d69207065646967206265206c65737a20c3a16c6cc3ad747661206120666568c3a972206ac3a174c3a96b6f736e616b2e, 'Y', '2014-03-01 20:49:26'),
(2872, 36, 0x48612061206b6f6d692d616ac3a16e6c61746f6b206d6567656779657a6e656b2c20616b6b6f72204e69676972692d76656c206c65737a20656c64c3b66e7476652061206ac3a174c3a96b6f736f6b20737ac3ad6e652e, 'Y', '2014-03-01 20:49:26'),
(2875, 36, 0x41206b6f6d692d616ac3a16e6c61746f6b206f64612d766973737a61206d656e6e656b20616dc3ad6720656779206ac3a174c3a96b6f7320656c206e656d20696e64c3ad746a612061206ac3a174737a6dc3a1743a, 'Y', '2014-03-01 20:49:26'),
(2876, 36, 0x4d696e64656e206b6f6d692d616ac3a16e6c61746e616b206e6167796f62626e616b206b656c6c206c656e6e696520617a20656c6c656e66c3a96c2075746f6c73c3b320616ac3a16e6c6174c3a16ec3a16c2e, 'Y', '2014-03-01 20:49:26'),
(2889, 36, 0x56657273656e7972656769737a7472c3a16369c3b3206373616b203c2573206ac3a174737a6dc3a1726120656e676564c3a96c79657a6574742e, 'Y', '2014-03-01 20:49:26'),
(2891, 36, 0x4bc3a97a69206265c3a16c6cc3ad74c3a17373616c20737ac3ad6e656d205b25735d2c2048656e64696b65702025732c204b6f6d69202573, 'Y', '2014-03-01 20:49:26'),
(2898, 36, 0xc3897276c3a96e7974656c656e206b6f6d6920c3a97274c3a96b205b25735d2e, 'Y', '2014-03-01 20:49:26'),
(2899, 36, 0xc3897276c3a96e7974656c656e206964c59120c3a97274c3a96b205b25735d2c206373616b206567c3a9737a20737ac3a16d206c656865742c2030207661677920616e6ec3a16c206e6167796f62622e, 'Y', '2014-03-01 20:49:26'),
(2649, 36, 0x54454c4a45532d54c381424c41, 'Y', '2014-03-01 20:58:37'),
(2900, 36, 0xc3897276c3a96e7974656c656e206b6f6d692d6967617ac3ad74c3a17320c3a97274c3a96b205b25735d2e, 'Y', '2014-03-01 20:58:37'),
(2902, 36, 0xc3897276c3a96e7974656c656e20c3a97274c3a96b2061206d696e696d756d20c3a97274c3a96b656c74206ac3a174737a6dc3a16b6ec3a16c205b25735d2e, 'Y', '2014-03-01 20:58:37'),
(2903, 36, 0x41206d696e696d756d20c3a97274c3a96b656c74206ac3a174737a6dc3a16b6ec3a16c206d656761646f747420c3a97274c3a96b206120737ac3a16d746172746f6dc3a16e796f6e206bc3ad76c3bc6c206573696b2e, 'Y', '2014-03-01 20:58:37'),
(2904, 36, 0xc3897276c3a96e7974656c656e20c3a97274c3a96b2061206ac3a174c3a96b6f736f6b6ec3a16c205b25735d2e, 'Y', '2014-03-01 20:58:37'),
(2905, 36, 0x5361626c6f6e6f6b20657a7a656c20612066656c682e617a6f6e2d616c3a205b25735d, 'Y', '2014-03-01 20:58:37'),
(2911, 36, 0x4dc3a1736f6cc3a17320c3ba6a206ac3a174737a6d616bc3a96e74, 'Y', '2014-03-01 20:58:37'),
(2918, 36, 0x6967617a73c3a1676f73206b6f6d69206265c3a16c6cc3ad74c3a1736f6b, 'Y', '2014-03-01 20:58:37'),
(2919, 36, 0x74c3b662626ac3a174c3a96b6f73206265c3a16c6cc3ad74c3a1736f6b, 'Y', '2014-03-01 20:58:37'),
(2920, 36, 0x4d696e696d756d20626566656a657a6574742c20c3a97274c3a96b656c74206ac3a174737a6dc3a16b, 'Y', '2014-03-01 20:58:37'),
(2923, 36, 0x257320656c6b657a64657474206ac3a174737a6d61, 'Y', '2014-03-01 21:04:45'),
(2924, 36, 0x257320656c6b657a64657474206ac3a174737a6d61, 'Y', '2014-03-01 21:04:45'),
(2930, 36, 0x2573206ac3a174737a6dc3a1686f7a20637361746c616b6f7a6f7474, 'Y', '2014-03-01 21:04:45'),
(2931, 36, 0x2573206ac3a174737a6dc3a1686f7a20637361746c616b6f7a6f7474, 'Y', '2014-03-01 21:04:45'),
(2934, 36, 0x76c3a172616b6f7ac3a1732065646469673a202573, 'Y', '2014-03-01 21:04:45'),
(2935, 36, 0x2e2e2e206120737ac3ad6e65642076616cc3b3737ac3ad6ec5b16c656720253124732c2048656e64696b657020253224732c204b6f6d69202533242e3166, 'Y', '2014-03-01 21:04:45'),
(2936, 36, 0x2e2e2e206120737ac3ad6e65642025312473206c656e6e652c2048656e64696b657020253224732c204b6f6d69202533242e3166, 'Y', '2014-03-01 21:04:45'),
(2945, 36, 0x4967617a73c3a1676f73206b6f6d69, 'Y', '2014-03-01 21:04:45'),
(2946, 36, 0x4e79c3ad6c74206b6f6d6920c3a172766572c3a973, 'Y', '2014-03-01 21:04:45'),
(2947, 36, 0x5469746b6f73206b6f6d6920c3a172766572c3a973, 'Y', '2014-03-01 21:04:45'),
(2948, 36, 0x54652076c3a16c61737a7461737a206b6f6d69742c20c3a96e2076c3a16c61737a746f6b20737ac3ad6e74, 'Y', '2014-03-01 21:08:06'),
(2949, 36, 0xc3896e2076c3a16c61737a746f6b206b6f6d69742c2074652076c3a16c61737a7461737a20737ac3ad6e74, 'Y', '2014-03-01 21:08:06'),
(2950, 36, 0x456c6f737a74c3a17320c3a9732076c3a16c61737a74c3a173, 'Y', '2014-03-01 21:08:06'),
(2951, 36, 0x4120737ac3ad6e742061206d61676173616262204e59c38d4c54206b6f6d6920616ac3a16e6c617420686174c3a1726f7a7a61206d6567, 'Y', '2014-03-01 21:08:06'),
(2952, 36, 0x4120737ac3ad6e742061206d61676173616262205449544b4f53206b6f6d6920616ac3a16e6c617420686174c3a1726f7a7a61206d6567, 'Y', '2014-03-01 21:08:06'),
(2953, 36, 0x54652076c3a16c61737a7461737a206b6f6d69742c20c3a96e20282573292076c3a16c61737a746f6b20737ac3ad6e74, 'Y', '2014-03-01 21:08:06'),
(2954, 36, 0x546520282573292076c3a16c61737a7461737a206b6f6d69742c20c3a96e20282573292076c3a16c61737a746f6b20737ac3ad6e74, 'Y', '2014-03-01 21:08:06'),
(2955, 36, 0xc3896e20282573292076c3a16c61737a746f6b206b6f6d69742c2074652076c3a16c61737a7461737a20737ac3ad6e74, 'Y', '2014-03-01 21:08:06'),
(2956, 36, 0xc3896e20282573292076c3a16c61737a746f6b206b6f6d69742c20746520282573292076c3a16c61737a7461737a20737ac3ad6e74, 'Y', '2014-03-01 21:08:06'),
(2959, 36, 0x4a69676f206572c5916c746574c3a97365, 'Y', '2014-03-01 21:08:06'),
(2960, 36, 0x4a69676f2074696c74c3a17361, 'Y', '2014-03-01 21:11:02'),
(3063, 36, 0x4a69676f206dc3b364, 'Y', '2014-03-01 21:11:02'),
(3082, 36, 0x41206ac3a174c3a96b6d65737465722061646a61206d6567206120737ac3ad6e7420612074c3b662626ac3a174c3a96b6f73206ac3a174737a6dc3a16b6ec3a16c, 'Y', '2014-03-01 21:11:02'),
(3097, 36, '', 'Y', '2014-03-01 21:11:02'),
(3098, 36, 0x4a69676f20656e676564c3a96c79657ac3a97365, 'Y', '2014-03-01 21:11:02'),
(3099, 36, '', 'Y', '2014-03-01 21:11:02'),
(3100, 36, 0x4e696e6373206a69676f, 'Y', '2014-03-01 21:11:02'),
(3114, 36, 0x4cc3a17364206dc3a967, 'Y', '2014-03-01 21:11:02'),
(3115, 36, 0x4447532d72616e67, 'Y', '2014-03-01 21:11:02'),
(3117, 36, 0x4e696e637320c3a97276c3a96e796573206265736f726f6cc3a173, 'Y', '2014-03-01 21:11:02'),
(3118, 36, 0x4b6f6e76657274c3a16cc3a173, 'Y', '2014-03-01 21:12:16'),
(3122, 36, 0x447261676f6e2072616e67, 'Y', '2014-03-01 21:12:16'),
(3123, 36, 0x447261676f6e206265736f726f6cc3a173, 'Y', '2014-03-01 21:12:16'),
(3124, 36, 0x4575726f2072616e67202845474629, 'Y', '2014-03-01 21:12:16'),
(3125, 36, 0x4575726f206265736f726f6cc3a173202845474629, 'Y', '2014-03-01 21:12:16'),
(3126, 36, 0x4147412072616e67, 'Y', '2014-03-01 21:12:16'),
(3127, 36, 0x414741206265736f726f6cc3a173, 'Y', '2014-03-01 21:12:16'),
(3128, 36, 0x4a6170c3a16e2072616e67, 'Y', '2014-03-01 21:12:16'),
(3129, 36, 0x4bc3ad6e61692072616e67, 'Y', '2014-03-01 21:12:16'),
(3130, 36, 0x4b6f726561692072616e67, 'Y', '2014-03-01 21:12:16'),
(3131, 36, 0x4b47532072616e67, 'Y', '2014-03-01 21:13:18'),
(3132, 36, 0x4947532072616e67, 'Y', '2014-03-01 21:13:18'),
(3133, 36, 0x4f47532072616e67, 'Y', '2014-03-01 21:13:18'),
(3134, 36, 0x4f4753206265736f726f6cc3a173, 'Y', '2014-03-01 21:13:18'),
(3135, 36, 0x46494347532072616e67, 'Y', '2014-03-01 21:13:18'),
(3136, 36, 0x4959542072616e67, 'Y', '2014-03-01 21:13:18'),
(3137, 36, 0x547967656d2072616e67, 'Y', '2014-03-01 21:13:18'),
(3138, 36, 0x57426164756b2072616e67, 'Y', '2014-03-01 21:13:18'),
(3235, 36, 0x416c616b7a61746f6b, 'Y', '2014-03-01 21:13:18'),
(4681, 7, 0x4ee17a657620726f7a6573746176656eed205b25735d206a69be2062796c20706f75be69742c20616c65206d7573ed2062fd7420756e696be1746eed2e, 'Y', '2016-07-20 18:39:13'),
(3264, 36, 0xc39a6a206ac3a174737a6d6120686f7a7ac3a16164c3a17361, 'Y', '2014-03-01 21:26:26'),
(3265, 36, 0xc39a6a206ac3a174737a6d6120696e64c3ad74c3a1736120612076c3a172c3b3746572656d62656e, 'Y', '2014-03-01 21:26:26'),
(3267, 36, 0xc39a6a206ac3a174737a6d61206967617a73c3a1676f73206b6f6d692d76616c, 'Y', '2014-03-01 21:26:26'),
(3268, 36, 0xc39a6a2074c3b662626ac3a174c3a96b6f73206ac3a174737a6d61, 'Y', '2014-03-01 21:26:26'),
(3334, 36, 0x52616e67206b6f6e76657274c3a16cc3b3, 'Y', '2014-03-01 21:26:26'),
(3354, 36, 0x46656c682e2046656b2e, 'Y', '2014-03-01 21:26:26'),
(3355, 36, 0x46656c682e204665682e, 'Y', '2014-03-01 21:26:26'),
(3356, 36, 0x46656c682e206cc3a970, 'Y', '2014-03-01 21:26:26'),
(3357, 36, 0x456c6c2e206cc3a970, 'Y', '2014-03-01 21:26:26'),
(3359, 36, 0x52656a74657474206ac3a174737a6d61206d65676a6567797ac3a973656b, 'Y', '2014-03-01 21:26:26'),
(3361, 36, 0x4d656766696779656cc5916b, 'Y', '2014-03-01 21:28:07'),
(3368, 36, 0x53616ac3a1742068c3a17472616c6576c591206964c591, 'Y', '2014-03-01 21:28:07'),
(3369, 36, 0x456c6c656e66c3a96c2068c3a17472616c6576c591206964656a65, 'Y', '2014-03-01 21:28:07'),
(3370, 36, 0x4d696e64656e206d656766696779656c74206ac3a174737a6d61, 'Y', '2014-03-01 21:28:07'),
(3372, 36, 0x4d696e64656e20626566656a657a657474206ac3a174737a6d61, 'Y', '2014-03-01 21:28:07'),
(3373, 36, 0x4d696e64656e20667574c3b3206ac3a174737a6d61, 'Y', '2014-03-01 21:32:34'),
(3376, 36, 0x6373616b2074c3b662626ac3a174c3a96b6f73206ac3a174737a6dc3a16b, 'Y', '2014-03-01 21:32:34'),
(3377, 36, 0x5b25735d2076616e20666568c3a97272656c2c20666568c3a972206cc3a970c3a97365206ac3b66e, 'Y', '2014-03-01 21:32:34'),
(3378, 36, 0x5b25735d2076616e20666568c3a97272656c2c2066656b657465206cc3a970c3a97365206ac3b66e, 'Y', '2014-03-01 21:32:34'),
(3379, 36, 0x5b25735d2076616e2066656b6574c3a976656c2c20666568c3a972206cc3a970c3a97365206ac3b66e, 'Y', '2014-03-01 21:32:34'),
(3380, 36, 0x5b25735d2076616e2066656b6574c3a976656c2c2066656b657465206cc3a970c3a97365206ac3b66e, 'Y', '2014-03-01 21:32:34'),
(3381, 36, 0x46656b657465206cc3a970c3a97365206ac3b66e, 'Y', '2014-03-01 21:33:26'),
(3382, 36, 0x466568c3a972206cc3a970c3a97365206ac3b66e, 'Y', '2014-03-01 21:33:26'),
(3387, 36, 0x46656c682e20696e66c3b36b206d75746174c3a17361, 'Y', '2014-03-01 21:33:26'),
(4518, 36, 0x486167796f6dc3a16e796f73, 'Y', '2014-03-01 21:33:26'),
(4519, 36, 0x4967617a73c3a1676f73, 'Y', '2014-03-01 21:33:26'),
(4520, 36, '', 'Y', '2014-03-01 21:33:26'),
(4521, 36, 0x4475706c61206ac3a174737a6d61, 'Y', '2014-03-01 21:34:26'),
(4522, 36, 0x46656b65746520737ac3ad6e6e656c, 'Y', '2014-03-01 21:34:26'),
(4523, 36, 0x466568c3a97220737ac3ad6e6e656c, 'Y', '2014-03-01 21:34:26'),
(4524, 36, 0x456779656469, 'Y', '2014-03-01 21:34:26'),
(4525, 36, 0x4e79c3ad6c742061756b6369c3b3, 'Y', '2014-03-01 21:34:26'),
(4526, 36, 0x5469746b6f732061756b6369c3b3, 'Y', '2014-03-01 21:34:26'),
(4529, 36, 0x4475706c61, 'Y', '2014-03-01 21:34:58'),
(4530, 36, 0x456779656469, 'Y', '2014-03-01 21:34:58'),
(4531, 36, 0x46697820737ac3ad6e, 'Y', '2014-03-01 21:34:58'),
(4532, 36, 0x4967617a73c3a1676f73206b6f6d69, 'Y', '2014-03-01 21:34:58'),
(4536, 36, '', 'Y', '2014-03-01 21:42:18'),
(4554, 36, '', 'Y', '2014-03-01 21:42:36'),
(2577, 36, 0x4373616b2025732063736170617420656e676564c3a96c79657a6574742c2068656c7965747465205b25735d2074616cc3a16c686174c3b3, 'Y', '2014-03-02 10:49:07'),
(2632, 36, 0x4bc3b672c3bc6c6b6572c3ad7465747420746572c3bc6c657420706f6e746f7ac3a17361, 'Y', '2014-03-02 10:49:07'),
(2633, 36, 0x456c666f676c616c7420746572c3bc6c657420706f6e746f7ac3a17361, 'Y', '2014-03-02 10:49:07'),
(2635, 36, 0x53656d6c65676573, 'Y', '2014-03-02 10:49:07'),
(2636, 36, 0x4bc3b672c3bc6c6b6572c3ad7465747420746572c3bc6c6574, 'Y', '2014-03-02 10:49:07'),
(4534, 36, 0x4265c3a16c6cc3ad74c3a1736f6b, 'Y', '2014-03-02 10:51:01'),
(4535, 36, 0x4d65676bc3b674c3a973656b, 'Y', '2014-03-02 10:51:01'),
(4538, 36, 0x4d6567656779657ac3a973, 'Y', '2014-03-02 10:51:01'),
(4539, 36, 0x28537a616261642068656e64696b657029, 'Y', '2014-03-02 10:51:01'),
(4546, 36, 0x4120274265c3a16c6cc3ad74c3a1736f6b27206f737a6c6f70206d757461746a612061206c6568657473c3a967657320737ac3ad6e742c2068656e64696b6570657420c3a973206b6f6d692d742e, 'Y', '2014-03-02 10:55:20'),
(4547, 36, 0x612068656e64696b6570206bc3b676656b20737a6162616420656c68656c79657ac3a973c3a974206a656c7a69, 'Y', '2014-03-02 10:55:20'),
(4548, 36, 0x4567792076c3a172c3b37465726d69206ac3a174737a6d61203c623e6d656766656c656cc5913c2f623e2c2068612061206ac3a174c3a96b6f73206d656766656c656c2061206bc3b67665746b657ac591206d65676bc3b674c3a973656b6e656b3a, 'Y', '2014-03-02 10:55:20'),
(4549, 36, 0x56c3a172c3b37465726d69206d65676a6567797ac3a973656b, 'Y', '2014-03-02 10:55:20'),
(4552, 36, 0x4dc3a172206d6567206c6574742068c3ad767661207661677920637361746c616b6f7a6f747420656868657a20612074c3b662626ac3a174c3a96b6f73206ac3a174737a6dc3a1686f7a21, 'Y', '2014-03-02 10:55:20'),
(4553, 36, 0x456779656469, 'Y', '2014-03-02 10:55:20'),
(4555, 36, 0x4e6967697269202876c3a96c65746c656e737a6572c5b1656e206b6170737a2066656b657465207661677920666568c3a97220737ac3ad6e7429, 'Y', '2014-03-02 10:55:20'),
(4556, 36, 0x422b57, 'Y', '2015-09-21 15:08:59'),
(4557, 36, 0x46656b6574c3a976656c20c3a97320666568c3a97272656c206ac3a174737a6f6c, 'Y', '2014-03-02 10:56:47'),
(4558, 36, 0x42, 'Y', '2015-09-21 15:08:59'),
(4559, 36, 0x46656b6574c3a976656c206ac3a174737a6f6d, 'Y', '2014-03-02 10:56:47'),
(4560, 36, 0x57, 'Y', '2015-09-21 15:09:44'),
(4561, 36, 0x466568c3a97272656c206ac3a174737a6f6c, 'Y', '2014-03-02 10:56:47'),
(4562, 36, 0x466568c3a97272656c206ac3a174737a6f6d, 'Y', '2014-03-02 10:56:47'),
(4563, 36, 0x46656b6574c3a976656c206ac3a174737a6f6c, 'Y', '2014-03-02 10:58:36'),
(4564, 36, 0x54616cc3a16e2066656b6574c3a976656c206ac3a174737a6f6c, 'Y', '2014-03-02 10:58:36'),
(4565, 36, 0x54616cc3a16e20666568c3a97272656c206ac3a174737a6f6c, 'Y', '2014-03-02 10:58:36'),
(4583, 36, 0x48c3a97476c3a967656b656e20c3a16c6c20617a20c3b37261, 'Y', '2014-03-02 10:58:36'),
(4584, 36, 0x4967617a73c3a1676f73206b6f6d69206d6567656779657ac3a9733a205b25735d206bc3b67665746b657a696b, 'Y', '2014-03-02 10:58:36'),
(4588, 36, 0x46656c6861737a6ec3a16cc3b320667574c3b3206ac3a174737a6dc3a169, 'Y', '2014-03-02 10:58:36'),
(4589, 36, 0x46656c6861737a6ec3a16cc3b320626566656a657a657474206ac3a174737a6dc3a169, 'Y', '2014-03-02 10:58:36'),
(4613, 36, 0x4e696e6373206967617a73c3a1676f73206b6f6d69, 'Y', '2014-03-02 10:59:48'),
(4625, 36, 0x56657273656e7920c3a16c6c61706f7461, 'Y', '2014-03-02 10:59:48'),
(4650, 36, 0x4569646f476f206ac3a174737a6d616b657a656cc591, 'Y', '2014-03-02 10:59:48'),
(4696, 36, 0x4b6968c3ad76c3b3, 'Y', '2014-03-02 10:59:48'),
(4697, 36, 0x4b6968c3ad766f7474, 'Y', '2014-03-02 10:59:48'),
(4700, 36, 0x416c616b7a61742d6ac3a174737a6d61, 'Y', '2014-03-02 11:00:24'),
(4701, 36, 0x48c3a97476c3a967656b656e206973206ac3a17220617a20c3b37261, 'Y', '2014-03-02 11:00:24'),
(4704, 36, 0x48656e64696b65702074c3ad70757361, 'Y', '2014-03-02 11:00:55'),
(4705, 36, 0x4b6f6d692076c3a16c746f7a746174c3a17361, 'Y', '2014-03-02 11:00:55'),
(4706, 36, 0x566973737a6176c3a167c3b3, 'Y', '2014-03-02 11:01:27'),
(4710, 36, 0x416c616b7a6174206ac3a174737a6d61, 'Y', '2014-03-02 11:01:27'),
(5197, 36, 0x4e696e637320616c616b7a6174, 'Y', '2014-03-02 11:02:19'),
(5412, 36, 0x53474620637361746f6cc3a17361, 'Y', '2014-03-02 11:02:19'),
(5413, 36, 0x534746206d656e74c3a973652073696b657274656c656e21, 'Y', '2014-03-02 11:02:19'),
(5414, 36, 0x412066c3a16a6c206e656d2053474620666f726dc3a174756dc3ba21, 'Y', '2014-03-02 11:03:16'),
(5415, 36, 0x5347462066656c646f6c676f7ac3a1736920686962613a, 'Y', '2014-03-02 11:03:16'),
(5424, 36, 0x4b6f726cc3a1746f7a6f7474, 'Y', '2014-03-02 11:05:21'),
(5425, 36, 0x486962c3a17320612066c3a16a6c2076c3a96765, 'Y', '2014-03-02 11:05:21'),
(5426, 36, 0x486962c3a173206779c3b66bc3a972656c656d, 'Y', '2014-03-02 11:05:21'),
(5427, 36, 0x4e656d20476f206ac3a174737a6d612028474d5b315d29, 'Y', '2014-03-02 11:05:21'),
(5428, 36, 0x486962c3a17320656c656d6b657a64c3a973, 'Y', '2014-03-02 11:05:21'),
(6138, 40, 0x44657363756c70652c2073756120706f7263656e746167656d20686572f3696361206ee36f20657374e12064656e74726f20646f73206c696d697465732e, 'Y', '2014-07-30 06:24:04'),
(5430, 36, 0x4869c3a16e797a696b20656779206a6f6262206f6c64616c69207ac3a172c3b36a656c, 'Y', '2014-03-02 11:05:21'),
(5431, 36, 0x4869c3a16e797a696b20656779206a6f6262206f6c64616c6920737ac3b6676c65746573207ac3a172c3b36a656c, 'Y', '2014-03-02 11:07:08'),
(5432, 36, 0x46c3a16a6c206e656d2074616cc3a16c686174c3b3, 'Y', '2014-03-02 11:07:08'),
(5433, 36, 0x486962c3a1732068656e64696b6570206d696e746120656868657a3a202573, 'Y', '2014-03-02 11:07:08'),
(5434, 36, 0x4e656d206d656766656c656cc5912068656e64696b6570206d696e746120656868657a3a202573, 'Y', '2014-03-02 11:07:08'),
(5435, 36, 0x53474620656c74c3a1766f6cc3ad74766121, 'Y', '2014-03-02 11:07:08'),
(5436, 36, 0x53474620656c6d656e74766521, 'Y', '2014-03-02 11:07:08'),
(5437, 36, 0x4d656c6cc3a96b656c74205347462066c3a16a6c206c6574c3b66c74c3a97365, 'Y', '2014-03-02 11:07:08'),
(5439, 36, 0x4bc3a9726c656b206572c59173c3ad747364206d65672c20686f67792076616cc3b362616e20737a657265746ec3a9642d652074c3b672c3b66c6e6920617a205347462066c3a16a6c7421, 'Y', '2014-03-02 11:08:21'),
(5440, 36, 0x5347462074c3b6726cc3a97365, 'Y', '2014-03-02 11:08:21'),
(5441, 36, 0x5347462066656c74c3b66c74c3a97365, 'Y', '2014-03-02 11:08:21'),
(5442, 36, 0x534746206d656e74c3a97365, 'Y', '2014-03-02 11:08:21'),
(5443, 36, 0x5347462066c3a16a6c6f6d2074c3b6726cc3a97365, 'Y', '2014-03-02 11:08:21'),
(5444, 36, 0x4d656c6cc3a96b656c74205347462066c3a16a6c6f6b, 'Y', '2014-03-02 11:08:21'),
(5438, 36, 0x534746206d656c6cc3a96b6c6574656b206b657a656cc3a97365, 'Y', '2014-03-02 11:09:56'),
(5445, 36, 0x4e696e6373656e656b20534746206d656c6cc3a96b6c6574656b, 'Y', '2014-03-02 11:09:56'),
(5446, 36, 0x4d696e64656e2066656c6861737a6ec3a16cc3b3206373616b20656779205347462066c3a16a6c742074c3b66c746865742066656c2e, 'Y', '2014-03-02 11:09:56'),
(5447, 36, 0x46656c74c3b66c74c3b67474205347462d66c3a16a6c6f6b206dc3a97265746b6f726cc3a174613a206d61782e202573204b42, 'Y', '2014-03-02 11:09:56'),
(5448, 36, 0x534766206d65676a6567797ac3a973656b206b657a656cc3a97365, 'Y', '2014-03-02 11:09:56'),
(5449, 36, 0x4d656c6cc3a96b656c7420534746, 'Y', '2014-03-02 11:09:56'),
(5450, 36, 0x56c3a172616b6f7ac3b3206ac3a174737a6dc3a1696d, 'Y', '2014-03-02 11:09:56'),
(5452, 36, 0x4d656766656c656cc591, 'Y', '2014-03-02 11:11:38'),
(5453, 36, 0x53616ac3a174, 'Y', '2014-03-02 11:11:38'),
(5461, 36, 0x534746206c6574c3b66c74c3a97365206d65676a6567797ac3a973656b206ec3a96c6bc3bc6c, 'Y', '2014-03-02 11:11:38'),
(5503, 36, 0x456262656e2061206ac3a174737a6dc3a162616e20617a20656c666f676c616c7420746572c3bc6c657420737ac3a16dc3ad742c20746568c3a17420612073656d6c6567657320706f6e746f6b20697320c3a97274c3a96b6573656b21, 'Y', '2014-03-02 11:11:38'),
(5505, 36, 0x456cc5917a6574657320706f6e74737ac3a16d, 'Y', '2014-03-02 11:13:11'),
(5507, 36, 0x4b6976c3a16c61737a746f7474206265c3a16c6cc3ad74c3a1736f6b206d656e74c3a97365, 'Y', '2014-03-02 11:13:40'),
(5508, 36, 0x4ac3a174737a6d612074c3b6726cc3a97365, 'Y', '2014-03-02 11:13:40'),
(5509, 36, 0x412074c3b6626269206ac3a174c3a96b6f7320c3a972746573c3ad747665206c65737a20612074c3b6726cc3a97372c5916c2e, 'Y', '2014-03-02 11:14:26'),
(5510, 36, 0x42697a746f73616e20737a657265746ec3a9642074c3b672c3b66c6e6920657a742061206ac3a174737a6dc3a1743f, 'Y', '2014-03-02 11:14:26'),
(5519, 36, 0x48656e64696b65702076c3a16c746f7a746174c3a17361, 'Y', '2014-03-02 11:14:55'),
(5518, 36, 0x5b25735d2074c3ad707573c3ba206967617a73c3a1676f73206b6f6d692c204a69676f206dc3b364205b25735d, 'Y', '2014-03-02 11:15:39'),
(5520, 36, 0x4b6f6d692076c3a16c746f7a746174c3a17361, 'Y', '2014-03-02 11:15:39'),
(5522, 36, 0x412066656c6861737a6ec3a16cc3b3206e656d2072656e64656c6b657a696b206265736f726f6cc3a17373616c, 'Y', '2014-03-02 11:15:59'),
(5527, 36, 0x416c6170c3a97274656c6d657a657474, 'Y', '2014-03-02 11:18:41'),
(5528, 36, 0x257320737a6162c3a16c796f6b, 'Y', '2014-03-02 11:18:41'),
(5529, 36, 0x416c6170c3a972742e206d61782e, 'Y', '2014-03-02 11:18:41'),
(5531, 36, 0x737a6f6bc3a1736f73206265c3a16c6cc3ad74c3a1736f6b, 'Y', '2014-03-02 11:18:41'),
(5532, 36, 0x416c6170c3a97274656c6d657a657474, 'Y', '2014-03-02 11:18:41'),
(5533, 36, 0x4e696e6373206a69676f206b6f726cc3a1746f7ac3a173, 'Y', '2014-03-02 11:18:41'),
(5714, 36, 0x4265736f726f6cc3a1732076c3a16c746f7ac3a17361, 'Y', '2014-03-02 11:19:04'),
(779, 36, '', 'Y', '2015-09-18 21:08:14'),
(5738, 36, 0x4d65676a6567797ac3a973656b, 'Y', '2014-03-02 11:19:42'),
(6071, 3, 0x234357, 'Y', '2014-04-03 23:26:58'),
(5742, 36, 0x4ac3a174c3a96b6f736f6b20696e666f726dc3a16369c3b369, 'Y', '2014-03-02 11:20:24'),
(4576, 40, '', 'Y', '2014-03-04 11:53:49'),
(4577, 40, '', 'Y', '2014-03-04 11:53:49'),
(4578, 40, 0x4f4753, 'Y', '2014-03-04 11:53:49'),
(4579, 40, 0x4b4753, 'Y', '2014-03-04 11:53:49'),
(4580, 40, 0x494753, 'Y', '2014-03-04 11:53:49'),
(1654, 40, 0x446573637269e7e36f, 'Y', '2014-03-04 14:13:02'),
(2268, 40, 0x46616c7461206f2074ed74756c6f2064612066756e63696f6e616c6964616465, 'Y', '2014-03-04 14:13:02'),
(2269, 40, 0x46756e63696f6e616c69646164652072656d6f7669646121, 'Y', '2014-03-04 14:13:02'),
(2270, 40, 0x46756e63696f6e616c69646164652073616c76612120257320706f6e746f732d64652d66756e63696f6e616c6964616465206465766f6c7669646f7320616f7320766f74616e74657321, 'Y', '2014-03-04 14:13:02'),
(2271, 40, 0x46756e63696f6e616c69646164652073616c766121, 'Y', '2014-03-04 14:13:02'),
(2272, 40, 0x4170616761722066756e63696f6e616c6964616465, 'Y', '2014-03-04 14:13:02'),
(2273, 40, 0x417475616c697a61722066756e63696f6e616c6964616465, 'Y', '2014-03-04 14:13:02'),
(2274, 40, 0x41646963696f6e61722066756e63696f6e616c6964616465, 'Y', '2014-03-04 14:13:02'),
(2275, 40, 0x4d7564616ee761206461207369747561e7e36f2070617261205b25735d20e9207065726d616e656e746521, 'Y', '2014-03-04 14:13:02'),
(2278, 40, 0x46756e63696f6e616c6964616465206ee36f20706f64652073657220617061676164612064657669646f20616f7320766f746f73206578697374656e74657321, 'Y', '2014-03-04 14:13:02'),
(2279, 40, 0x52656d6f7665722066756e63696f6e616c6964616465, 'Y', '2014-03-04 14:14:50'),
(2281, 40, 0x53616c7661722066756e63696f6e616c6964616465, 'Y', '2014-03-04 14:14:50'),
(2282, 40, 0x436f6c6f71756520756d207072656669786f2064652063617465676f726961206e6f20617373756e746f2c20706f72206578656d706c6f3a20224a6f676f3a20646573637269e7e36f206461732066756e63696f6e616c69646164657322, 'Y', '2014-03-04 14:14:50'),
(1238, 40, 0x4174697661722f646573617469766172206d6f64657261646f7220646f2066f372756d, 'Y', '2014-03-04 14:24:27'),
(1261, 40, 0x44657363756c70652c20766f63ea206ee36f2074656d207065726d697373e36f2070617261206469736375746972206e657374652066f372756d2e, 'Y', '2014-03-04 14:24:27'),
(1262, 40, 0x4573736520636f6d656e74e172696f20e9206d6f64657261646f2e20456c6520736572e1206d6f73747261646f206170f373206f73206d6f64657261646f726573206170726f766172656d2e, 'Y', '2014-03-04 14:24:27'),
(1263, 40, 0x48697374f37269636f206465207265766973e36f, 'Y', '2014-03-04 14:24:27'),
(2363, 40, 0x436f6d656e74e172696f7320666569746f7320706f7220636f6e76696461646f732028757375e172696f202267756573742229206e6f732066f372756e7320707265636973616d20736572206170726f7661646f73206f752072656a65697461646f732070656c6f732061646d696e6973747261646f72657320646f207365727669646f722e3c62723e0d0a536520766f63ea207175657220756d6120726573706f737461207072697661646120286ee36f207075626c6963616461292c20636f6c6f717565206f2073657520656e64657265e76f20656c657472f46e69636f2065207065e76120756d20636f6e7461746f207072697661646f2e, 'Y', '2014-03-04 14:24:27'),
(2366, 40, 0x506f6e746f20616e7465636573736f72, 'Y', '2014-03-04 14:24:27'),
(2367, 40, 0x526573706f73746120616e746572696f72, 'Y', '2014-03-04 14:24:27'),
(2368, 40, 0x5072f378696d6120726573706f737461, 'Y', '2014-03-04 14:24:27'),
(2369, 40, 0x506f6e746f20706f73746572696f72, 'Y', '2014-03-04 14:24:27'),
(2371, 40, 0x5072696d6569726120726573706f737461, 'Y', '2014-03-04 14:24:27'),
(2381, 40, 0x41206d656e736167656d206ee36f20666f692073616c766120706f7271756520657374e12066616c74616e646f206f20617373756e746f20652f6f7520636f72706f206461206d656e736167656d2e, 'Y', '2014-03-04 14:26:13'),
(2386, 40, 0x56697375616c697a61e7e36f20726573756d696461, 'Y', '2014-03-04 14:26:13'),
(4692, 40, 0x56697375616c697a61e7e36f20656d20c172766f7265, 'Y', '2014-03-04 14:26:13'),
(2086, 40, 0x50657371756973612073616c766121, 'Y', '2014-03-04 19:33:47'),
(2087, 40, 0x476572656e63696172205065737175697361, 'Y', '2014-03-04 19:33:47'),
(2089, 40, 0x52656361727265676172205065737175697361, 'Y', '2014-03-04 19:33:47'),
(2090, 40, 0x566572207065737175697361, 'Y', '2014-03-04 19:33:47'),
(2091, 40, 0x4e6f7661207065737175697361, 'Y', '2014-03-04 19:33:47');
INSERT INTO `Translations` (`Original_ID`, `Language_ID`, `Text`, `Translated`, `Updated`) VALUES
(2092, 40, 0x4175746f72206461205065737175697361, 'Y', '2014-03-04 19:33:47'),
(2094, 40, 0x436f6e746167656d20646520566f746f7320646520557375e172696f, 'Y', '2014-03-04 19:33:47'),
(2095, 40, 0x5469706f20417475616c, 'Y', '2014-03-04 19:33:47'),
(2097, 40, 0x506f6e746f73, 'Y', '2014-03-04 19:33:47'),
(2098, 40, 0x4573636f6c686173, 'Y', '2014-03-04 19:33:47'),
(2434, 36, 0x4964c5916e206bc3ad76c3bc6c, 'Y', '2014-03-06 13:16:06'),
(2449, 36, 0x486174c3a1736bc3b672, 'Y', '2014-03-06 13:16:06'),
(2454, 36, 0x544420616c61706ac3a16e, 'Y', '2014-03-06 13:16:06'),
(2463, 36, 0x4ac3a174737a2e20737ac3a16d2e206d75746174c3a17361, 'Y', '2014-03-06 13:16:06'),
(2522, 36, 0x4bc3b67665746b657ac591206cc3a970c591, 'Y', '2014-03-06 13:16:06'),
(2648, 36, 0xc39c5245532d54c381424c41, 'Y', '2014-03-06 13:16:24'),
(300, 40, 0x4f7574726f73207365727669646f72657320646520676f, 'Y', '2014-03-07 23:39:39'),
(301, 40, 0x54616d62e96d206261736561646f20656d207475726e6f732e2054656d2076e172696f73206f7574726f73206a6f676f732e, 'Y', '2014-03-07 23:39:39'),
(303, 40, 0x556d206772616e6465207365727669646f722070617261206a6f676f7320656d2074656d706f207265616c, 'Y', '2014-03-07 23:39:39'),
(1103, 40, 0x556d20656e6f726d652062616e636f206465206461646f73206465206a6f676f732070726f66697373696f6e616973, 'Y', '2014-03-07 23:39:39'),
(1104, 40, '', 'Y', '2014-03-07 23:39:39'),
(4566, 40, '', 'Y', '2014-03-07 23:43:37'),
(4567, 40, 0x4e6f74ed63696173206d756e646961697320736f627265206f20476f, 'Y', '2014-03-07 23:43:37'),
(4568, 40, '', 'Y', '2014-03-07 23:43:37'),
(4569, 40, 0x4e6f74ed636961732065206e6f766964616465732064652076e172696f73207365727669646f72657320646520476f, 'Y', '2014-03-07 23:43:37'),
(286, 40, 0x456e7669652073657573206a6f676f73207061726120736572656d20636f6d656e7461646f732e20566f63ea20766572e1206f6e646520706f646572696120746572206a6f6761646f206d656c686f722e, 'Y', '2014-03-07 23:44:50'),
(295, 40, 0x53652073756120696e74656ee7e36f20e920736572206f20736162652d7475646f, 'Y', '2014-03-08 01:12:03'),
(296, 40, 0x4c6976726f732c206571756970616d656e746f7320652070726f6772616d617320646520476f, 'Y', '2014-03-08 01:12:03'),
(297, 40, 0x4269626c696f6772616669617320646520476f, 'Y', '2014-03-08 01:12:03'),
(2992, 37, 0xd0a2d183d180d0bdd0b8d180d0b8, 'Y', '2014-03-13 20:44:47'),
(3388, 37, 0xd09cd0bed0b8d182d0b520d182d183d180d0bdd0b8d180d0b8, 'Y', '2014-03-13 20:45:35'),
(3155, 37, 0xd09fd0bed0bcd0bed189202f20d0a7d097d092, 'Y', '2014-03-13 20:59:28'),
(305, 37, 0xd0a1d0bfd0b8d181d18ad0ba20d181d18ad18120d181d18ad180d0b2d18ad180d0b8, 'Y', '2014-03-16 19:53:16'),
(5593, 37, 0xd092d0b5d180d181d0b8d18f, 'Y', '2014-03-16 19:55:26'),
(1961, 37, 0xd097d0b0d0bfd0b0d0b7d0b820d0b1d18ed0bbd0b5d182d0b8d0bdd0b0, 'Y', '2014-03-16 19:58:27'),
(1964, 37, 0xd092d181d0b8d187d0bad0b820d0b1d18ed0bbd0b5d182d0b8d0bdd0b8, 'Y', '2014-03-16 19:58:27'),
(2166, 37, 0xd0a0d0b5d0b4d0b0d0bad182d0b8d180d0b0d0b920d091d18ed0bbd0b5d182d0b8d0bdd0b0, 'Y', '2014-03-16 19:58:59'),
(2167, 37, 0xd09dd0bed0b2d0b020d0b1d18ed0bbd0b5d182d0b8d0bdd0b0, 'Y', '2014-03-16 19:58:59'),
(3157, 37, 0xd091d18ed0bbd0b5d182d0b8d0bdd0b8, 'Y', '2014-03-16 20:00:34'),
(16, 40, 0x4120696e736572e7e36f206461206a6f67616461206e6f2062616e636f206465206461646f7320706172656365207465722066616c6861646f2e204973736f20706f646520736572206f75206ee36f20756d2070726f626c656d612e20506f72206661766f72206f6c6865206f206a6f676f206465206e6f766f2070617261207665722073652061206a6f6761646120666f6920726567697374726164612e, 'Y', '2014-03-20 08:47:03'),
(17, 40, 0x4120696e736572e7e36f20646f732073657573206461646f73206e6f2062616e636f206465206461646f7320706172656365207465722066616c6861646f2e20536520766f63ea206ee36f20636f6e73656775697220616365737361722c20706f72206661766f722074656e7465206d61697320756d612076657a2e2045207365206973736f2066616c6861722c2066616c6520636f6d206e6f73736f207375706f7274652e, 'Y', '2014-03-20 08:47:03'),
(18, 40, 0x436f6e73756c746120616f2062616e636f206465206461646f732066616c686f752e204167756172646520616c67756e73206d696e75746f7320652074656e7465206465206e6f766f2e, 'Y', '2014-03-20 08:47:03'),
(19, 40, 0x4ee36f20666f6920706f7373ed76656c206162726972206f2062616e636f206465206461646f732e204167756172646520616c67756e73206d696e75746f7320652074656e7465206465206e6f766f2e, 'Y', '2014-03-20 08:47:03'),
(20, 40, 0x44657363756c70652c206ee36f20666f6920706f7373ed76656c20636f6d65e76172206f206a6f676f2e204167756172646520616c67756e73206d696e75746f7320652074656e7465206465206e6f766f2e, 'Y', '2014-03-20 08:47:03'),
(27, 40, 0x44657363756c70652c20766f63ea2065206f2073657520616476657273e172696f20707265636973616d2074657220756d206eed76656c20646520686162696c696461646520696e696369616c2e2053656d206973736f206ee36f20e920706f7373ed76656c20616368617220756d612076616e746167656d206170726f7072696164612e, 'Y', '2014-03-20 08:47:03'),
(33, 40, 0x412073656e686120636f6e74e96d2063617261637465726573206ee36f207065726d697469646f732e204170656e6173206f73206361726163746572657320612d7a2c20412d5a2c20302d3920652074616d62e96d202d5f2b2e2c3a3b3f21252a2073e36f207065726d697469646f732e, 'Y', '2014-03-20 08:47:03'),
(38, 40, 0x44657363756c70652c206573746f7520636f6d20756d2070726f626c656d6120636f6d206f206eed76656c2e20566f63ea2065737175656365752064652066616c617220736520656c6520e920276b797527206f75202764616e273f, 'Y', '2014-03-20 08:47:03'),
(39, 40, 0x44657363756c70652c206573746f7520636f6d20756d2070726f626c656d6120636f6d206f206eed76656c2e20566f63ea206ee36f2064657665726961207573617220276b797527206f75202764616e2720706172612065737465207469706f206465206eed76656c2e, 'Y', '2014-03-20 08:47:03'),
(42, 40, 0x44657363756c70652c206ee36f20636f6e736567756920656e636f6e74726172206f2066f372756d2071756520766f63ea20717565726961207665722e, 'Y', '2014-03-20 08:47:03'),
(43, 40, 0x45737472616e686f2c2065737361206d656e736167656d207061726563652073657220726573706f73746120646520756d612064697363757373e36f20717565206ee36f206578697374652e, 'Y', '2014-03-20 16:00:05'),
(44, 40, 0x44657363756c70652c206ee36f20636f6e736567756920656e636f6e747261722061206d656e736167656d2071756520766f63ea2071756572207665722e, 'Y', '2014-03-20 16:00:05'),
(46, 40, 0x44657363756c70652c206573746520494420646520757375e172696f206ae1206578697374652e20506f72206661766f722074656e746520656e636f6e7472617220756d206e6f6d65207175652073656a6120fa6e69636f2e, 'Y', '2016-08-06 20:46:22'),
(50, 40, 0x44657363756c70652c206ee36f20636f6e736567756920656e636f6e747261722065737365206a6f676f206e612073616c61206465206573706572612e2050726f766176656c6d656e7465206f7574726120706573736f61206ae12061636569746f7520656c652e, 'Y', '2014-03-20 16:00:05'),
(54, 40, 0x44657363756c70652c20766f63ea206ee36f2065736372657665752061207375612073656e686120617475616c20636f72726574616d656e74652e, 'Y', '2014-03-20 16:00:05'),
(58, 40, 0x44657363756c70652c20766f63ea20657363726576657520756d2076616c6f72206ee36f206e756de97269636f20656d20756d2063616d706f206e756de97269636f2e, 'Y', '2014-03-20 16:00:05'),
(63, 40, 0x44657363756c70652c206f636f7272657520616c67756d2070726f626c656d6120616f20696e7365726972206173206e6f766173207472616475e7f56573206e6f2062616e636f206465206461646f732e, 'Y', '2014-03-20 16:00:05'),
(66, 40, 0x44657363756c70652c20657374612070e167696e6120e9206170656e6173207061726120757375e172696f7320636f6d20746172656661732061646d696e697374726174697661732e, 'Y', '2014-03-20 16:00:05'),
(298, 40, 0x556d61206772616e646520636f6c65e7e36f20646520726573656e686173206465206c6976726f7320646520476f, 'Y', '2014-03-20 16:00:05'),
(474, 40, 0x45737365207469706f2064652061e7e36f206ee36f20706f64652073657220757361646f206e6f206d6f6d656e746f20617475616c20646f206a6f676f2c206f7520e920756d612061e7e36f20646573636f6e6865636964612e, 'Y', '2014-03-20 16:00:05'),
(513, 40, 0x446573656e766f6c76696d656e746f20646f20447261676f6e, 'Y', '2014-03-20 16:01:19'),
(525, 40, 0x506f73736f207375676572697220756d61206e6f76612066756e63696f6e616c69646164653f, 'Y', '2014-03-20 16:01:19'),
(475, 40, 0x4f206b6f6d6920657374e120666f726120646f73206c696d697465732e20506f72206661766f72206573636f6c686120756d2076616c6f72206d6169732072617a6fe176656c2e, 'Y', '2014-03-22 19:41:27'),
(476, 40, 0x556d206572726f206f636f72726575206e65737361206a6f676164612e204e6f726d616c6d656e746520656c65206ee36f2073652072657065746972e120736520766f63ea2074656e746172206465206e6f766f2e204361736f20636f6e7472e172696f2066616c6520636f6d206e6f73736f207375706f7274652e, 'Y', '2014-03-22 19:41:27'),
(508, 40, 0x556d206efa6d65726f20657874726120646520706f6e746f7320283c686f6d65206661712e7068703f726561643d74266361743d3323456e747279383e6d6f6b753c2f686f6d653e29206461646f20e073206272616e6361732c2071756520706f64652073657220757361646f2064652076e172696173206d616e65697261733a0d0a3c6f6c3e0d0a3c6c693e436f6d70656e73617220612076616e746167656d20717565206173207072657461732074ea6d20706f722066617a65722061207072696d65697261206a6f676164610d0a3c6c693e45766974617220756d20656d7061746520283c686f6d65200d0a6661712e7068703f726561643d74266361743d3323456e7472793234303e6a69676f3c2f686f6d653e29207573616e646f20756d206efa6d65726f2066726163696f6ee172696f2028706f72206578656d706c6f20756d206b6f6d6920646520362c35290d0a3c6c693e46756e63696f6e617220636f6d6f20636f6d70656e7361e7e36f2070617261206a6f6761646f726573206465206eed76656973206469666572656e7465732e2050617261206d61696f726573206578706c696361e7f565732076656a613a203c686f6d65206661712e7068703f726561643d74266361743d33353723456e74727939383e5175616c20e92061206469666572656ee76120656e7472652076616e746167656d20636f6e76656e63696f6e616c2065207072f3707269613f3c2f686f6d653e0d0a3c2f6f6c3e, 'Y', '2014-03-22 19:41:27'),
(514, 40, 0x4573746f75207065726469646f21204578697374656d2070726f626c656d617320656d20746f646f73206f73206c75676172657321, 'Y', '2014-03-22 19:41:27'),
(515, 40, 0x566f63ea206669636f752073656e7461646f206e6f20636f6d70757461646f72206a6f67616e646f20476f206e6f204447532074656d706f2064656d6169732e20546f6d6520756d2062616e686f206520636f6c6f71756520726f75706173206c696d7061732e203a2d29, 'Y', '2014-03-22 19:41:27'),
(526, 40, 0x53696d2c20636f6d2063657274657a612120506f72206661766f72206661e7612073756120737567657374e36f206e6f203c686f6d6520666f72756d2f6c6973742e7068703f666f72756d3d343e66f372756d2064652064697363757373e36f20736f6272652066756e63696f6e616c6964616465733c2f686f6d653e2e20507265666572696d6f7320717565206973736f2073656a6120666569746f20656d20696e676cea732c206d617320736520766f63ea206ee36f2061636861722071756520636f6e73656775652c207065e76120616a7564612070617261206f7574726f206d656d62726f20646f20444753206f7520756d20616d69676f2e0d0a0d0a556d20636572746f20726573756d6f20646173203c623e737567657374f565732064652066756e63696f6e616c696461646573206ae1206665697461733c2f623e206578697374650d0a3c756c3e0d0a3c6c693e6e6173203c686f6d65206e6577732e7068703e6e6f7461732064652076657273e36f3c2f686f6d653e2c0d0a3c6c693e6e61203c686f6d652066656174757265732f6c6973745f766f7465732e7068703e70e167696e6120646520726573756c7461646f7320646520766f7461e7e36f20656d2066756e63696f6e616c6964616465733c2f686f6d653e2c0d0a3c6c693e66617a656e646f203c693e3c686f6d6520666f72756d2f7365617263682e7068703e6275736361206e6f732066f372756e733c2f686f6d653e646f204447533c2f693e2c0d0a3c6c693e65206e612070e167696e61203c5f687474703a2f2f73656e736569732e786d702e6e65742f3f444753576973686c697374207c44475320776973686c6973742061742053656e7365696073204c6962726172793e20286c6973746120646520646573656a6f7320646f204447532c20656d20696e676cea73292e0d0a3c2f756c3e0d0a0d0a536520756d612066756e63696f6e616c696461646520e9207669e176656c2c2066617a2073656e7469646f2c206520737561206964656961206573746976657220636c617261206f20737566696369656e74652c20756d2061646d696e6973747261646f722064652066756e63696f6e616c69646164657320706f64652061646963696f6ee12d6c61206e61206c697374612e20456e74e36f20656c6120736572e120766f746164612070617261207665726d6f732073756120616365697461e7e36f2070656c61206e6f73736120636f6d756e69646164652e20506f72206973736f20e920626f6d2066617a65722073756120646573637269e7e36f206f206d61697320636c61726f20706f7373ed76656c207061726120657669746172206d616c20656e74656e6469646f732e, 'Y', '2014-03-22 19:41:27'),
(529, 40, 0x4f6e646520706f73736f20617072656e646572206d61697320736f62726520756d6120726567726120656d20706172746963756c61723f, 'Y', '2014-03-22 19:41:27'),
(530, 40, 0x4661e761207375612070657267756e7461206e6f203c686f6d6520666f72756d2f6c6973742e7068703f666f72756d3d353e66f372756d2064652064697363757373e36f20736f62726520476f3c2f686f6d653e2028707265666572656e6369616c6d656e746520656d20696e676cea73292e20c920626f6d206c656d627261722064652066616c617220736f627265207175616c20726567726120766f63ea2071756572206d61697320696e666f726d61e7f565732e20452074616d62e96d2066616c617220736f627265206f207469706f206465207369747561e7e36f20647572616e746520756d206a6f676f206f6e646520612072656772612073657269612061706c69636164612e, 'Y', '2014-03-22 19:41:27'),
(532, 40, 0x446f6973206a6f6761646f72657320636f6d706574656d20706172612063657263617220746572726974f372696f7320656d20756d20746162756c6569726f20717561647261646f2e204f20746162756c6569726f2074656d2074616d616e686f206465203139207820313920706f6e746f732c206d6173203920782039206520313320782031332074616d62e96d2073e36f2062656d20636f6d756e732e20416c7465726e6164616d656e74652c20656c6573206a6f67616d20636f6c6f63616e646f207065e7617320646120737561207072f37072696120636f72206e617320696e7465727365e7f565732076617a6961732e20417320707265746173206a6f67616d207072696d6569726f2c20736567756964617320646173206272616e636173202865786365746f206e756d206a6f676f20636f6d2076616e746167656d2c206f6e6465206173207072657461732074ea6d2070656472617320696e69636961697320636f6c6f6361646173207061726120657175696c696272617220636f6d20756d206a6f6761646f72206d61697320667261636f292e0d0a0d0a5365206465706f697320646520756d61206a6f676164612071756169737175657220677275706f7320646f20616476657273e172696f206ee36f207469766572206d616973206c6962657264616465732c206173207065647261732064657373657320677275706f732073e36f2072657469726164617320646f20746162756c6569726f202873e36f206361707475726164617320636f6d6f2070726973696f6e6569726f73292e20556d61206a6f67616461206ee36f20e9207065726d69746964612073652c206465706f697320646120726574697261646120646520746f6461732061732063617074757261732c20756d20677275706f206465207175656d206a6f67612066696361722073656d206c6962657264616465732e0d0a0d0a5175616e646f206f7320646f6973206a6f6761646f7265732070617373616d20612076657a207375636573736976616d656e7465206f206a6f676f20e9207465726d696e61646f2065206120636f6e746167656d20646520706f6e746f7320736572e12066656974613a20706f6e746f73206e657574726f73202864616d65292073e36f20707265656e636869646f733b207065e7617320636f6e736964657261646173206d6f727461732073e36f207265746972616461732e204f20746f74616c20646520706f6e746f7320e92063616c63756c61646f2070656c6f20746572726974f372696f206365726361646f2c2070656c617320636170747572617320652070656c617320706564726173206d6f7274617320646f20616476657273e172696f2e204f20746572726974f372696f20e920636f6e7461646f20636f6d206f206efa6d65726f2064652065737061e76f732076617a696f732071756520666f72616d206365726361646f732e0d0a0d0a4d61697320696e666f726d61e7f565732073e36f20656e636f6e747261646173206e612070e167696e61203c6120687265663d22687474703a2f2f706c6179676f2e746f2f696e7465726163746976652f696e6465782e68746d6c22207461726765743d6e65773e54686520496e7465726163746976652057617920546f20476f3c2f613e2028656d20696e676cea73292e20556d612076657273e36f20656d20706f7274756775ea73206578697374652074616d62e96d20656d203c6120687265663d22687474703a2f2f676f2e616c616d696e6f2e6e65742f706c6179676f746f2f22207461726765743d6e65773e417072656e6461204a6f67617220476f20496e74657261746976616d656e74653c2f613e2e, 'Y', '2014-03-22 19:41:27'),
(536, 40, 0x46696e616c697a61e7e36f2e20c9206120fa6c74696d61206661736520646f206a6f676f2c206f6e6465206a6f676164617320657374726174e9676963617320706172612061746163617220677275706f73206ee36f2073e36f206665697461732074616e746f2e204d61732066617a656d6f73206f206d656c686f722071756520707564657220706172612061756d656e746172206f7320746572726974f372696f7320717565206ae1206578697374656d2e, 'Y', '2014-03-22 19:41:27'),
(583, 40, 0x436f6d6f206f20686f72e172696f2064652064657363616e736f206166657461206f2073697374656d6120466973636865723f, 'Y', '2014-04-13 18:43:57'),
(585, 40, 0x4f2071756520e9206f2064657363616e736f3f, 'Y', '2014-04-13 18:43:57'),
(591, 40, 0x506f73736f2061646963696f6e61722074656d706f2070617261206d696d206d65736d6f20656d20756d206a6f676f3f, 'Y', '2014-04-13 18:43:57'),
(593, 40, 0x506f73736f2061646963696f6e61722074656d706f2070617261206d657520616476657273e172696f20656d20756d206a6f676f3f, 'Y', '2014-04-13 18:43:57'),
(595, 40, 0x4f207175652073e36f206f7320646961732064652066e9726961733f, 'Y', '2014-04-13 18:54:57'),
(605, 40, 0x436f6d6f20706f73736f2061726d617a656e617220636f6d656e74e172696f73206e6f205347463f, 'Y', '2014-04-13 18:54:57'),
(607, 40, 0x506f73736f206d6520746f726e617220756d20646573656e766f6c7665646f7220646f20447261676f6e3f, 'Y', '2014-04-13 18:54:57'),
(627, 40, 0x4f20717565207369676e6966696361206120226174697669646164652220646520756d20757375e172696f3f, 'Y', '2014-04-13 18:54:57'),
(635, 40, 0x506f722071756520616c67756e7320757375e172696f73206ee36f20617061726563656d206e61206c6973746120646520757375e172696f733f, 'Y', '2014-04-13 18:54:57'),
(639, 40, 0x5175656d2073e36f20617320706573736f617320706f72207472e17320646f20447261676f6e3f, 'Y', '2014-04-13 18:54:57'),
(643, 40, 0x51756169732063f36469676f732048544d4c20657520706f73736f2075736172206e6f20447261676f6e3f, 'Y', '2014-04-13 18:54:57'),
(658, 40, 0x4f20746162756c6569726f20646520476f20287265616c206f75207669727475616c292e, 'Y', '2014-04-13 18:54:57'),
(661, 40, 0x4f20717565207369676e696669636120612076616e746167656d3f, 'Y', '2014-04-13 18:54:57'),
(671, 40, 0x506f73736f2066617a6572206a6f676164617320656e7669616e646f206d656e736167656e732028656d61696c293f, 'Y', '2014-04-13 18:54:57'),
(2424, 16, 0xcde0f1f2f0eee9eae820e8e3f0fb, 'Y', '2014-04-20 19:24:47'),
(2922, 16, 0xcff0e8edfff2fc20f2eee3ee20e6e520f1eeefe5f0ede8eae0, 'Y', '2014-04-20 19:24:47'),
(3057, 16, 0xd7e5f1f2edeee520eaeeece82028f0e0e2ede0ff20e8e3f0e029, 'Y', '2014-04-20 19:24:47'),
(3058, 16, 0xd4eef0eee2fbe520eae0ecede8, 'Y', '2014-04-20 19:24:47'),
(2682, 16, 0xc1f0f3ede5e920c4e0f0f3f1f1e0ebe0ec, 'Y', '2014-04-20 19:34:34'),
(2683, 16, 0xcae0e9ece0edeee2fb20cef1f2f0eee2e0, 'Y', '2014-04-20 19:34:34'),
(2685, 16, 0xcaeeeaeef1eee2fbe52028cae8ebe8ede32920cef1f2f0eee2e0, 'Y', '2014-04-20 19:34:34'),
(2686, 16, 0xcef1f2f0eee2e020caf3eae0, 'Y', '2014-04-20 19:34:34'),
(2688, 16, 0xd4eeebeaebe5ede4f1eae8e520cef1f2f0eee2e0, 'Y', '2014-04-20 19:34:34'),
(2689, 16, 0xd4e0f0e5f0f1eae8e520cef1f2f0eee2e0, 'Y', '2014-04-20 19:34:34'),
(2694, 16, 0xc3e2e0e4e5ebf3efe0, 'Y', '2014-04-20 19:34:34'),
(2695, 16, 0xc3f3e0ec, 'Y', '2014-04-20 19:34:34'),
(2696, 16, 0xc3e5f0edf1e8, 'Y', '2014-04-20 19:41:36'),
(2701, 16, 0xcce0f0f2e8ede8eae0, 'Y', '2014-04-20 19:41:36'),
(2702, 16, 0xcce0e9eef2f2e0, 'Y', '2014-04-20 19:41:36'),
(2703, 16, 0xcceeedf2f1e5f0f0e0f2, 'Y', '2014-04-20 19:41:36'),
(2704, 16, 0xcde8e4e5f0ebe0ede4f1eae8e520c0edf2e8ebfb, 'Y', '2014-04-20 19:41:36'),
(2705, 16, 0xcdeee2e0ff20cae0ebe5e4eeede8ff, 'Y', '2014-04-20 19:41:36'),
(2706, 16, 0xcde8f3fd, 'Y', '2014-04-20 19:41:36'),
(2707, 16, 0xcef1f2f0eee220cdeef0f4eeebea, 'Y', '2014-04-20 19:41:36'),
(2684, 16, 0xd0eee6e4e5f1f2e2e020cef1f2f0eee2, 'Y', '2014-04-20 23:47:02'),
(2708, 16, 0xd1e5e2e5f0edfbe520cce0f0e8e0edf1eae8e520cef1f2f0eee2e0, 'Y', '2014-04-20 23:47:02'),
(2709, 16, 0xcfe0ebe5f1f2e8edf1eae0ff20cde0f6e8eeede0ebfcede0ff20c0e4ece8ede8f1f2f0e0f6e8ff, 'Y', '2014-04-20 23:47:02'),
(2710, 16, 0xcfe8f2eafdf0ed, 'Y', '2014-04-20 23:47:02'),
(2711, 16, 0xd0e5feedfceeed, 'Y', '2014-04-20 23:47:02'),
(2715, 16, 0xd1e5edf220cffce5f020e820cce8eae5ebeeed, 'Y', '2014-04-20 23:47:02'),
(2716, 16, 0xdee6ede0ff20c3e5eef0e3e8ff20e820dee6edfbe520d1e0ede4e2e8f7e5e2fb20cef1f2f0eee2e0, 'Y', '2014-04-20 23:51:10'),
(2717, 16, 0xd2e8eceef020cbe5f1f2e5, 'Y', '2014-04-20 23:51:10'),
(2718, 16, 0xd2eeeae5ebe0f3, 'Y', '2014-04-20 23:51:10'),
(2719, 16, 0xd2e5f0eaf120e820cae0e9eaeef120cef1f2f0eee2e0, 'Y', '2014-04-20 23:51:10'),
(2720, 16, 0xc1f0e8f2e0edf1eae8e520c2e8f0e3e8edf1eae8e520cef1f2f0eee2e0, 'Y', '2014-04-20 23:51:10'),
(2721, 16, 0xc2e8f0e3e8edf1eae8e520cef1f2f0eee2e02028d1d8c029, 'Y', '2014-04-20 23:51:10'),
(2681, 16, 0xc1f0e8f2e0edf1eae0ff20d2e5f0f0e8f2eef0e8ff20e220c8ede4e8e9f1eaeeec20ceeae5e0ede5, 'Y', '2014-04-20 23:58:34'),
(2712, 16, 0xd1e5ed20c1e0f0f2e5ebe5ece8, 'Y', '2014-04-20 23:58:34'),
(2713, 16, 0xcef1f2f0eee220d1e2fff2eee920c5ebe5edfb, 'Y', '2014-04-20 23:58:34'),
(2714, 16, 0xd1e5ed20cce0f0f2e5ed, 'Y', '2014-04-20 23:58:34'),
(2722, 16, 0xc2eeebebe8f120e820d4f3f2f3ede0, 'Y', '2014-04-20 23:58:34'),
(2723, 16, 0xc7e0efe0e4ede0ff20d1e0f5e0f0e0, 'Y', '2014-04-20 23:58:34'),
(2724, 16, 0xcaebe8ede3eeedf1eae0ff20c8ecefe5f0e8ff, 'Y', '2014-04-20 23:58:34'),
(2725, 16, 0xcee1fae5e4e8edb8edede0ff20d4e5e4e5f0e0f6e8ff20cfebe0ede5f2, 'Y', '2014-04-20 23:58:34'),
(1959, 16, 0xd2e5eaf1f2, 'Y', '2014-04-21 00:46:26'),
(6065, 16, 0xcfeee1e5e4fb20cfeee4f0ffe4, 'Y', '2014-04-21 00:50:19'),
(6072, 16, 0xd0e5e7f3ebfcf2e0f2fb20d2f3f0ede8f0e02028c7e0eb20cfeef7e5f2e029, 'Y', '2014-04-21 00:50:19'),
(3060, 16, 0xcce8ed2e, 'Y', '2014-04-21 00:56:11'),
(3061, 16, 0xcce0eaf12e, 'Y', '2014-04-21 00:56:11'),
(5682, 16, 0xcceee920f6e2e5f2, 'Y', '2014-04-21 00:56:46'),
(5542, 16, 0xcceee920d0e5e9f2e8e3, 'Y', '2014-04-21 00:57:55'),
(5543, 16, 0xd0e5e9f2e8ede320d1eeefe5f0ede8eae0, 'Y', '2014-04-21 00:57:55'),
(5522, 16, 0xcfeeebfce7eee2e0f2e5ebfc20ede520e8ece5e5f220f0e5e9f2e8ede3e0, 'Y', '2014-04-21 01:00:05'),
(3235, 16, 0xd4eef0ecfb, 'Y', '2014-04-21 01:01:09'),
(1386, 16, 0xcaeeebebe5eaf6e8ff20d1f1fbebeeea, 'Y', '2014-04-21 10:51:46'),
(1406, 16, 0xcce5e6e4f3ede0f0eee4ede0ff20c3ee20d4e5e4e5f0e0f6e8ff2ecde0e9e4e8f2e52020f4e5e4e5f0e0f6e8e820e820e0f1f1eef6e8e0f6e8e820efee20e2f1e5ecf320ece8f0f32e, 'Y', '2014-04-21 10:51:46'),
(4568, 16, 0xc3ee20d1e5edf1e0f6e8e8, 'Y', '2014-04-21 10:51:46'),
(4569, 16, 0xcdeee2eef1f2e820e820d1e5edf1e0f6e8e820f120e4f0f3e3e8f520c3ee20f1e5f0e2e5f0eee2, 'Y', '2014-04-21 10:51:46'),
(4570, 16, 0xc2e2e5e4e5ede8e520e220c3ee, 'Y', '2014-04-21 10:51:46'),
(4572, 16, '', 'Y', '2014-04-21 10:53:06'),
(4574, 16, '', 'Y', '2014-04-21 10:53:06'),
(4575, 16, '', 'Y', '2014-04-21 10:53:06'),
(4576, 16, '', 'Y', '2014-04-21 10:53:06'),
(4577, 16, 0x495954202d20d2e2eee920f5eee4, 'Y', '2014-04-21 10:53:06'),
(4578, 16, '', 'Y', '2014-04-21 10:53:06'),
(1407, 16, 0xc5f9e520eee4e8ed20efeef8e0e3eee2fbe92ed120f3efeef0eeec20ede020f2f3f0ede8f0fb2e, 'Y', '2014-04-21 10:57:24'),
(4566, 16, '', 'Y', '2014-04-21 10:57:24'),
(4567, 16, 0xcdeee2eef1f2e820ee20c3ee20f1ee20e2f1e5e3ee20ece8f0e0, 'Y', '2014-04-21 10:57:24'),
(4571, 16, 0xcef1e2eee9f2e520c3ee20e7e020313020e4ede5e9, 'Y', '2014-04-21 10:57:24'),
(4579, 16, '', 'Y', '2014-04-21 10:57:24'),
(4580, 16, '', 'Y', '2014-04-21 10:57:24'),
(2093, 16, 0xd1eee7e4e0edee, 'Y', '2014-04-21 19:41:09'),
(4707, 16, 0xd4eef0ece0, 'Y', '2014-04-21 19:43:00'),
(4715, 16, 0xc2f1e520f4eef0ecfb, 'Y', '2014-04-21 19:43:42'),
(4716, 16, 0xcceee820f4eef0ecfb, 'Y', '2014-04-21 19:43:42'),
(5745, 16, 0xc2f2ee, 'Y', '2014-04-21 19:46:06'),
(5746, 16, 0xd1f0e5, 'Y', '2014-04-21 19:46:06'),
(5747, 16, 0xd7e5f2, 'Y', '2014-04-21 19:46:06'),
(5748, 16, 0xcffff2, 'Y', '2014-04-21 19:46:06'),
(5749, 16, 0xd1f3e1, 'Y', '2014-04-21 19:46:06'),
(5593, 16, 0xc2e5f0f1e8ff, 'Y', '2014-04-21 19:48:07'),
(5667, 16, 0xcfeef0f2f3e3e0ebfcf1eae8e92028c1f0e0e7e8ebe8ff29, 'Y', '2014-04-21 19:48:07'),
(5668, 16, 0xcfeef0f2f3e3e0ebfcf1eae8e92028c5e2f0eeefe029, 'Y', '2014-04-21 19:48:07'),
(5743, 16, 0xc2eef1, 'Y', '2014-04-21 19:48:07'),
(5744, 16, 0xcfeeed, 'Y', '2014-04-21 19:48:07'),
(4619, 16, 0xc2e2e5e4e5ede8e5, 'Y', '2014-04-21 19:51:27'),
(5220, 16, 0xcfeeeae0e7e0f2fc20e2f1e520f1eeeee1f9e5ede8ff, 'Y', '2014-04-21 19:51:27'),
(5423, 16, 0xc8e3f0e020e8ece5e5f220eff0e8eaf0e5efebe5ededfbe52053474620f4e0e9ebfb, 'Y', '2014-04-21 19:51:27'),
(3388, 16, 0xcceee820f2f3f0ede8f0fb, 'Y', '2014-04-21 19:52:36'),
(3192, 16, 0xefeef1ebe5e4edffff20f1f2f0e0ede8f6e0, 'Y', '2014-04-21 19:53:42'),
(3154, 16, 0xcbeee3e8ed, 'Y', '2014-04-21 19:55:50'),
(3155, 16, 0xcfeeeceef9fc2fd7c0c2ce, 'Y', '2014-04-21 19:55:50'),
(2145, 16, 0xcff0eef4e5f1f1e8eeede0eb, 'Y', '2014-04-21 19:57:04'),
(2146, 16, 0xd0eee1eef2, 'Y', '2014-04-21 19:57:04'),
(3145, 16, 0xcaeeece0ede4e0, 'Y', '2014-04-21 19:57:48'),
(1457, 16, 0xd1eae0f7e0f2fc2053474620e8e3f0fb, 'Y', '2014-04-21 22:03:40'),
(1463, 16, 0xcfeeeae0e7e0f2fc20e3f0e0f4f320f0e5e9f2e8ede3e0, 'Y', '2014-04-21 22:03:40'),
(5714, 16, 0xcfeeeae0e7e0f2fc20e8e7ece5ede5ede8ff20f0e5e9f2e8ede3e0, 'Y', '2014-04-21 22:07:12'),
(5756, 16, 0xd1f2e0f2e8f1f2e8eae02dcfe5f0e5e2eee4eee2, 'Y', '2014-04-21 22:07:12'),
(4612, 16, 0xc2f1e520d2f3f0ede8f0fb, 'Y', '2014-04-21 22:10:35'),
(4721, 16, 0xc8e3f0e0202620d0e5e9f2e8ede3, 'Y', '2014-04-21 22:10:35'),
(3432, 16, 0xc2f1e520efeeebfce7eee2e0f2e5ebe8, 'Y', '2014-04-21 22:12:03'),
(3405, 16, 0xcfeeeae0e7e0f2fc20eef0e3e0ede8e7e0f2eef0eee220f2f3f0ede8f0e0, 'Y', '2014-04-21 22:18:15'),
(3409, 16, 0xcfeeeae0e7e0f2fc20eceee820eaeeedf2e0eaf2fb, 'Y', '2014-04-21 22:18:15'),
(3410, 16, 0xcfeeeae0e7e0f2fc20f3f7e0f1f2ede8eaeee220f2f3f0ede8f0e0, 'Y', '2014-04-21 22:18:15'),
(3411, 16, 0xd3f7e0f1f2ede8eae820f2f3f0ede8f0e0, 'Y', '2014-04-21 22:18:15'),
(3414, 16, 0xcceee820f0e5e9f2e8ede3eee2fbe520efe0f0f2e8e8, 'Y', '2014-04-21 22:18:15'),
(3415, 16, 0xcceee820e2fbe8e3f0e0ededfbe520efe0f0f2e8e8, 'Y', '2014-04-21 22:18:15'),
(3416, 16, 0xcceee820eff0eee8e3f0e0ededfbe520efe0f0f2e8e8, 'Y', '2014-04-21 22:18:15'),
(3394, 16, 0xd1eee7e4e0f2fc20edeee2fbe920f2f3f0ede8f0, 'Y', '2014-04-21 22:19:10'),
(3304, 16, 0xcfeeeae0e7e0f2fc20efeeebfce7eee2e0f2e5ebe5e9, 'Y', '2014-04-21 22:20:40'),
(2059, 16, 0xc8e7ece5ede8f2fc20f0e5e9f2e8ede3202620f0e0ede3, 'Y', '2014-04-21 22:25:46'),
(2156, 16, 0xcfeeeceef9fc, 'Y', '2014-04-21 22:25:46'),
(5729, 16, 0xe7e0e2e8f1e8f220eef220f0e0e7ece5f0e020e4eef1eae8, 'Y', '2014-04-22 11:40:45'),
(5480, 16, 0xd1eef5f0e0ede8f2fc20ede0f1f2f0eee9eae8, 'Y', '2014-04-22 11:42:38'),
(4493, 16, 0xd7e0f1eee2eee920efeefff1, 'Y', '2014-04-22 11:56:52'),
(4494, 16, 0xcce5f1f2edeee520e2f0e5ecff20efeeebfce7eee2e0f2e5ebff, 'Y', '2014-04-22 11:56:52'),
(4496, 16, 0xcfeef1ebe5e4ede8e920e1fbf1f2f0fbe920e7e0f5eee4, 'Y', '2014-04-22 11:56:52'),
(4499, 16, 0xc8e3f0fb20eff0eee8e3f0e0ededfbe520efee20e2f0e5ece5ede8, 'Y', '2014-04-22 11:56:52'),
(1927, 16, 0xd0e5e7f3ebfcf2e0f2, 'Y', '2014-04-22 15:17:52'),
(5524, 16, 0xd1eeefe5f0ede8ea20e4eeebe6e5ed20e8ece5f2fc20f0e5e9f2e8ede320f7f2eee1fb20f1fbe3f0e0f2fc20f0e5e9f2e8ede3eee2f3fe20efe0f0f2e8fe2e, 'Y', '2014-04-22 15:21:05'),
(5461, 16, 0xd1eae0f7e0f2fc2073676620c1c5c720eaeeecece5edf2e0f0e8e5e2, 'Y', '2014-04-22 15:24:16'),
(5439, 16, 0xcfeee6e0ebf3e9f1f2e020efeee4f2e2e5f0e4e8f2e52cf7f2ee20e2fb20f5eef2e8f2e520f3e4e0ebe8f2fc20f1e2eee92053474621, 'Y', '2014-04-22 15:39:46'),
(5440, 16, 0xd3e4e0ebe8f2fc20534746, 'Y', '2014-04-22 15:39:46'),
(5441, 16, 0xc7e0e3f0f3e7e8f2fc20534746, 'Y', '2014-04-22 15:39:46'),
(5442, 16, 0xd1eef5f0e0ede8f2fc20534746, 'Y', '2014-04-22 15:39:46'),
(5443, 16, 0xd3e4e0ebe8f2fc20eceee920534746, 'Y', '2014-04-22 15:39:46'),
(5444, 16, 0xcff0e8eaf0e5efebe5ededfbe520534746, 'Y', '2014-04-22 15:39:46'),
(5446, 16, 0xcae0e6e4fbe920efeeebfce7eee2e0f2e5ebfc20eceee6e5f220e7e0e3f0f3e7e8f2fc20f2eeebfceaee20eee4e8ed205347462e, 'Y', '2014-04-22 15:39:46'),
(5449, 16, 0xcff0e8eaebe5efebe5edfbe920534746, 'Y', '2014-04-22 19:32:50'),
(5432, 16, 0xd4e0e9eb20ede520ede0e9e4e5ed, 'Y', '2014-04-22 19:35:00'),
(5435, 16, 0x53474620f3e4e0ebe5ed21, 'Y', '2014-04-22 19:35:00'),
(5436, 16, 0x53474620f1eef5f0e0ede5ed21, 'Y', '2014-04-22 19:35:00'),
(5412, 16, 0xcff0e8eaf0e5efe8f2fc20534746, 'Y', '2014-04-22 19:37:41'),
(3115, 16, 0x4447532df0e0ede3, 'Y', '2014-04-22 19:44:32'),
(3116, 16, '', 'Y', '2014-04-22 19:44:32'),
(2523, 16, 0xd1ebe5e4f3fef9e8e920e8e3f0eeea, 'Y', '2014-04-22 19:49:39'),
(2465, 16, 0x2825e220f5eee4eee22c2025e220eaeeecece5edf2e0f0e8e5e229, 'Y', '2014-04-22 19:51:11'),
(5784, 16, 0xc8e3f0e020e7e0eaeeedf7e8ebe0f1fc20c1e5e72dd0e5e7f3ebfcf2e0f2e0, 'Y', '2014-04-22 19:55:28'),
(5785, 16, 0x25e220efeee1e5e420efee20f1e4e0f7e5, 'Y', '2014-04-22 19:55:28'),
(5786, 16, 0x25e220efeee1e5e420efee20e2f0e5ece5ede8, 'Y', '2014-04-22 19:55:28'),
(3163, 16, '', 'Y', '2014-04-22 19:57:35'),
(3166, 16, '', 'Y', '2014-04-22 19:57:35'),
(3186, 16, '', 'Y', '2014-04-22 19:57:35'),
(3189, 16, 0xefe5f0e2e0ff20f1f2f0e0ede8f6e0, 'Y', '2014-04-22 19:57:35'),
(4663, 16, 0xcce8ed, 'Y', '2014-04-23 13:05:11'),
(4664, 16, 0xcce0eaf1, 'Y', '2014-04-23 13:05:11'),
(4653, 16, 0xd1efe8f1eeea20efeeebfce7eee2e0f2e5ebe5e9, 'Y', '2014-04-23 13:05:44'),
(4511, 16, 0xc3eeebeef120f1eef5f0e0ede5ed21, 'Y', '2014-04-23 13:08:51'),
(3022, 36, 0x6c656e6779656c, 'Y', '2015-09-19 12:52:13'),
(3476, 40, 0x546f726e65696f2073616c766f21, 'Y', '2014-04-23 20:44:02'),
(3485, 40, 0x507265766572204e6f7461206465205472617661, 'Y', '2014-04-23 20:44:02'),
(3494, 40, 0x5369747561e7e36f20417475616c, 'Y', '2014-04-23 20:44:02'),
(3507, 40, 0x4d6f737472617220557375e172696f2070656c6f2054ed74756c6f, 'Y', '2014-04-23 20:44:02'),
(3515, 40, 0x49676e6f72617220617669736f73, 'Y', '2014-04-23 20:44:02'),
(3521, 40, 0x4eed76656c20417475616c20646520557375e172696f, 'Y', '2014-04-23 20:44:02'),
(3523, 40, 0x436f6e766572746572204eed76656c, 'Y', '2014-04-23 20:44:02'),
(3524, 40, 0x4eed76656c20646f20546f726e65696f, 'Y', '2014-04-23 20:44:02'),
(1466, 16, 0xc4eee1e0e2e8f2fc2ff0e5e4e0eaf2e8f0eee2e0f2fc20eaeeedf2e0eaf2, 'Y', '2014-04-23 23:26:19'),
(5601, 16, 0xcfeee4f2e2e5f0e4e8f2fc20656d61696c, 'Y', '2014-04-23 23:27:27'),
(3431, 16, 0xd1f2e0f2e8f1f2e8eae0202d20d1f2f0e0edfb20efeeebfce7eee2e0f2e5ebe5e9, 'Y', '2014-04-23 23:29:54'),
(3402, 16, 0xd0e5e4e0eaf2e8f0eee2e0f2fc20f2f3f0ede8f0, 'Y', '2014-04-23 23:31:19'),
(5723, 16, 0xd0e5e9f2e8ede320454c4f23726174636867, 'Y', '2014-04-26 23:51:27'),
(5693, 16, 0xe8ebe820e220eef2eff3f1eae523686561646572, 'Y', '2014-04-26 23:52:23'),
(5481, 16, '', 'Y', '2014-04-26 23:54:38'),
(3296, 16, 0xcff0ee, 'Y', '2014-04-26 23:56:24'),
(3297, 16, 0xcff0e8e3ebe0f1e8f2fc23686561646572, 'Y', '2014-04-26 23:56:24'),
(3226, 16, 0xcfeeebfce7eee2e0f2e5ebfc20e220f1e5f2e823686561646572, 'Y', '2014-04-26 23:58:07'),
(3300, 16, 0xc7e5f0e3e8f1f2f0e8f0eee2e0ed23686561646572, 'Y', '2014-04-26 23:58:07'),
(2656, 16, 0xc7e0e3f0f3e7e8f2fc20eff0eef4e8ebfc2366696c746572, 'Y', '2014-04-26 23:58:56'),
(2212, 16, 0xcfeeebfce7eee2e0f2e5ebfc, 'Y', '2014-04-26 23:59:55'),
(2185, 16, 0xd1eef5f0e0ede8f2fc20e8e7eee1f0e0e6e5ede8e5, 'Y', '2014-04-27 00:04:56'),
(2186, 16, 0xd3e4e0ebe8f2fc20e8e7eee1f0e0e6e5ede8e5, 'Y', '2014-04-27 00:04:56'),
(2188, 16, 0xcfeee4e4e5f0e6e8e2e0e5ecfbe520f4eef0ece0f2fb20e8e7eee1f0e0e6e5ede8e93a204a5045472c204749462c20504e47, 'Y', '2014-04-27 00:04:56'),
(2192, 16, 0xcef2eaebeeede8f2fc20efeee1e5e4f320efee20e2f0e5ece5ede8, 'Y', '2014-04-27 00:04:56'),
(2055, 16, 0xd1eef5f0e0ede8f2fc20e8e7ece5ede5ede8ff, 'Y', '2014-04-27 00:06:05'),
(2182, 16, 0xc7e0e3f0f3e7e8f2fc20e8e7eee1f0e0e6e5ede8e5, 'Y', '2014-04-27 00:06:05'),
(1584, 16, 0xcce0eaf1e8ece0ebfcede0ff20f4eef0e0, 'Y', '2014-04-27 00:07:18'),
(1603, 16, 0xd4e0ede0f2, 'Y', '2014-04-27 00:07:18'),
(1604, 16, 0xd2f0eeebebfc, 'Y', '2014-04-27 00:07:18'),
(1566, 16, 0xc7e0eaeeedf7e5ededfbe520efe0f0f2e8e82366696c7465726f7070, 'Y', '2014-04-27 00:08:36'),
(1554, 16, 0xc4e5e9f1f2e2e8ff, 'Y', '2014-05-01 20:29:51'),
(1564, 16, 0xc2f1e520efe0f0f2e8e82366696c7465726f7070, 'Y', '2014-04-27 00:09:53'),
(4618, 16, 0xdf20e7e0e1fbeb20f1e2eee920efe0f0eeebfc2ed7f2ee20ff20eceee3f320f1e4e5ebe0f2fc3f, 'Y', '2014-04-27 00:11:42'),
(5777, 16, 0xcfebe5ede8eae8, 'Y', '2014-05-01 20:20:04'),
(5507, 16, 0xd1eef5f0e0ede8f2fc20e2fbe1f0e0ededfbe520ede0f1f2f0eee9eae8, 'Y', '2014-05-01 20:20:29'),
(5508, 16, 0xd3e4e0ebe8f2fc20efe0f0f2e8fe, 'Y', '2014-05-01 20:20:04'),
(5510, 16, 0xc2fb20f3e2e5f0e5edfb20f7f2ee20f5eef2e8f2e520f3e4e0ebe8f2fc20efe0f0f2e8fe3f, 'Y', '2014-05-01 20:20:04'),
(5427, 16, 0xcde520efe0f0f2e8ff20c3ee2028474d5b315d29, 'Y', '2014-05-01 20:21:10'),
(4711, 16, 0xc0e2f2eef0, 'Y', '2014-05-01 20:21:10'),
(4702, 16, 0xd4ebe0e3e8, 'Y', '2014-05-01 20:21:10'),
(4705, 16, 0xd0e5e3f3ebe8f0eee2e0f2fc20caeeece8, 'Y', '2014-04-27 00:19:03'),
(4554, 16, 0xcde8e3e8f0e8, 'Y', '2014-05-01 20:21:53'),
(4556, 16, 0xd72bc1, 'Y', '2014-05-01 20:21:53'),
(4558, 16, 0xd7, 'Y', '2014-05-01 20:21:10'),
(4560, 16, 0xc1, 'Y', '2014-05-01 20:21:10'),
(4534, 16, 0xcde0f1f2f0eee9eae8, 'Y', '2014-05-01 20:21:53'),
(4520, 16, 0xcde8e3e8f0e8, 'Y', '2014-05-01 20:21:53'),
(3361, 16, 0x23cde0e1ebfee4e0f2e5ebe8, 'Y', '2014-05-01 20:22:39'),
(3264, 16, 0xc4eee1e0e2e8f2fc20edeee2f3fe20efe0f0f2e8fe, 'Y', '2014-05-01 20:23:25'),
(3354, 16, 0xcfeeebfce7eee2e0f2e5ebfc20d7, 'Y', '2014-05-01 20:22:39'),
(3355, 16, 0xcfeeebfce7eee2e0f2e5ebfc20c1, 'Y', '2014-05-01 20:22:39'),
(3259, 16, 0xd3f0eee2e5edfc23686561646572, 'Y', '2014-04-27 10:58:05'),
(3255, 16, 0xcff0e5e4e2e0f0e8f2e5ebfcedfbe920eff0eef1eceef2f020f1eeeee1f9e5ede8ff, 'Y', '2014-04-27 10:59:58'),
(3090, 16, 0xd7e5f1f2edeee520caeeece8236874797065, 'Y', '2014-04-27 11:01:34'),
(3080, 16, 0xd4eef0eee2e0ff20efe0f0f2e8ff20f120ede8e3e8f0e8, 'Y', '2014-04-27 11:02:12'),
(3067, 16, 0xf7e0f1eee2eee920efeefff120555443, 'Y', '2014-04-27 11:03:35'),
(3068, 16, 0xcee3f0e0ede8f7e5ede8ff, 'Y', '2014-04-27 11:03:35'),
(1473, 16, 0xcfeee8f1ea20e220f4eef0f3ece0f5, 'Y', '2014-04-27 11:04:54'),
(5796, 16, 0xd5eee4fb237374617473, 'Y', '2014-04-27 11:05:59'),
(5798, 16, 0xc0eaf2e8e2edeef1f2fc237374617473, 'Y', '2014-04-27 11:05:59'),
(5759, 16, 0xdfe7fbea23686561646572, 'Y', '2014-04-27 11:09:01'),
(5792, 16, 0xd0e5e4e0eaf2e8f0eee2e0f2fc20f0e5e7f3ebfcf2e0f2fb23746f75726e6579, 'Y', '2014-04-27 11:09:01'),
(5795, 16, 0xcfe0f0f2e8e8237374617473, 'Y', '2014-04-27 11:09:01'),
(5210, 16, 0xd1eaf0e8eff2fb204772656173654d6f6e6b6579, 'Y', '2014-04-27 11:09:52'),
(4726, 16, 0xd0e5e4e0eaf2e8f0eee2e0f2fc20eff0e0e2e8ebe023746f75726e6579, 'Y', '2014-04-27 11:11:17'),
(4727, 16, 0xd0e5e3e8f1f2f0e0f6e8ff23746f75726e6579, 'Y', '2014-04-27 11:11:17'),
(3435, 16, 0xd4ebe0e323636f756e747279, 'Y', '2014-04-27 11:12:18'),
(3403, 16, 0xc4eee1e0e2e8f2fc20edeee2eef1f2e823746e657773, 'Y', '2014-04-27 11:13:30'),
(3408, 16, 0xd0e5e4e0eaf2e8f0eee2e0f2fc20f3f7e0f1f2ede8eaeee2, 'Y', '2014-04-27 11:13:30'),
(2389, 16, 0xc2f1e520f1eaf0fbf2fbe520f1eeeee1f9e5ede8ff23666f72756d, 'Y', '2014-04-27 11:17:19'),
(2390, 16, 0xcceee820f1eaf0fbf2fbe520f1eeeee1f9e5ede8ff23666f72756d, 'Y', '2014-04-27 11:17:19'),
(2364, 16, 0xcef8e8e1eae023666f72756d, 'Y', '2014-04-27 11:20:07'),
(2365, 16, 0xc2e5f0f5, 'Y', '2014-04-27 11:20:07'),
(2367, 16, 0xcff0e5e4fbe4f3f9e8e920eef2e2e5f2, 'Y', '2014-04-27 11:20:07'),
(2368, 16, 0xd1ebe5e4f3fef9e8e920eef2e2e5f2, 'Y', '2014-04-27 11:20:07'),
(2370, 16, 0xcde8e7, 'Y', '2014-04-27 11:20:07'),
(2371, 16, 0xcfe5f0e2fbe920eef2e2e5f2, 'Y', '2014-04-27 11:20:07'),
(1539, 16, 0xcfeef0ffe4eeea23666f72756d, 'Y', '2014-04-27 11:20:41'),
(1945, 16, 0xd2e5eaf3f9ffff20cae0f2e5e3eef0e8ff2362756c6c6574696e, 'Y', '2014-04-27 11:22:26'),
(4661, 16, 0xcae0f2e5e3eef0e8ff, 'Y', '2014-04-27 11:22:51'),
(3216, 16, 0xd1eaf0fbf2fc20f2e5eaf1f2fb, 'Y', '2014-04-27 11:23:45'),
(3217, 16, 0xcfeeeae0e7e0f2fc20f2e5eaf1f2fb, 'Y', '2014-04-27 11:23:45'),
(3207, 16, 0xc8edf4eef0ece0f6e8ff2362756c6c6574696e, 'Y', '2014-04-27 11:24:20'),
(2982, 16, 0xcef2ece5f2e8f2fc20eae0ea20eff0eef7e8f2e0ededeee52362756c6c6574696e, 'Y', '2014-04-27 11:25:44'),
(3195, 16, 0xc0e4ece8ed23425f737461747573, 'Y', '2014-04-27 11:25:44'),
(2971, 16, 0xcfeeeae0e7e0f2fc23425f737461747573, 'Y', '2014-04-27 11:27:40'),
(2972, 16, 0xc0f0f5e8e223425f737461747573, 'Y', '2014-04-27 11:27:40'),
(2974, 16, 0xc2f1e520cfeeebfce7eee2e0f2e5ebe823425f747267, 'Y', '2014-04-27 11:27:40'),
(2976, 16, 0xd22dd3f7e0f1f2ede8ea23425f737461747573, 'Y', '2014-04-27 11:27:40'),
(2967, 16, 0xd0e5eaebe0ece023425f636174, 'Y', '2014-04-27 11:28:20'),
(2169, 16, 0xcae0f2e5e3eef0e8ff2362756c6c6574696e, 'Y', '2014-04-27 11:29:08'),
(2276, 16, 0xd0e5e4e0eaf2eef0, 'Y', '2014-04-27 11:31:32'),
(4651, 16, 0xcceee820c1e0ebebfb, 'Y', '2014-04-27 11:32:34'),
(2342, 16, 0xd0e0e7ece5f02366656174757265, 'Y', '2014-04-27 11:33:40'),
(2344, 16, 0xe1e0ebebfb2366656174757265, 'Y', '2014-04-27 11:33:40'),
(2346, 16, 0xd1eef5f0e0ede8f2fc20e3eeebeef1, 'Y', '2014-04-27 11:33:40'),
(2335, 16, 0xc1e0ebebfb23686561646572, 'Y', '2014-04-27 11:35:40'),
(2336, 16, 0x23c3eeebeef1e023686561646572, 'Y', '2014-04-27 11:35:40'),
(2337, 16, 0x23c423686561646572, 'Y', '2014-04-27 11:35:40'),
(2338, 16, 0x23cd23686561646572, 'Y', '2014-04-27 11:35:40'),
(2320, 16, 0xc2f1e52366696c74657266656174, 'Y', '2014-04-27 11:36:43'),
(2323, 16, '', 'Y', '2014-04-27 11:36:43'),
(2324, 16, '', 'Y', '2014-04-27 11:36:43'),
(2325, 16, '', 'Y', '2014-04-27 11:36:43'),
(2329, 16, 0xcceee920c3eeebeef12366656174686561646572, 'Y', '2014-04-27 11:36:43'),
(5546, 16, 0xcfeeebfce7eee2e0f2e5ebfc20ede520e8ece5e5f220e4eef1f2e0f2eef7edee20e7e0eaeeedf7e5ededfbf520f0e5e9f2e8ede3eee2fbf520efe0f0f2e8e92377726f6f6d, 'Y', '2014-04-27 14:31:52'),
(2467, 16, 0xd0e0e7ece5f023676564, 'Y', '2014-04-27 14:34:16'),
(2468, 16, 0xc8e7ece5ede8f2fc20f0e0e7ece5f020e4eef1eae823676564, 'Y', '2014-04-27 14:34:16'),
(2473, 16, 0xd8e8f0e8ede023676564, 'Y', '2014-04-27 14:34:16'),
(3006, 36, 0x6f726f737a, 'Y', '2015-09-19 12:51:03'),
(3007, 36, 0x706f72747567c3a16c, 'Y', '2015-09-19 12:51:03'),
(3008, 36, 0x6ec3a96d6574, 'Y', '2015-09-19 12:51:03'),
(3009, 36, 0x686f6c6c616e64, 'Y', '2015-09-19 12:51:03'),
(2629, 16, 0xcdeee2fbe920c3eee1e0ed, 'Y', '2014-04-27 14:38:00'),
(3362, 36, 0x53616ac3a174, 'Y', '2015-09-19 17:39:03'),
(2586, 16, 0xd8e8f0e8ede023676f6265646974, 'Y', '2014-04-27 14:42:43'),
(2587, 16, 0xc2fbf1eef2e023676f6265646974, 'Y', '2014-04-27 14:42:43'),
(2588, 16, 0xd1eee7e4e0f2fc20c4eef1eaf323676f6265646974, 'Y', '2014-04-27 14:42:43'),
(2591, 16, 0xd5eee423676f6265646974, 'Y', '2014-04-27 14:42:43'),
(2593, 16, 0xc7e0e3f0f3e7e8f2fc20e4eef1eaf320e8e72053474623676f6265646974, 'Y', '2014-04-27 14:42:43'),
(2594, 16, 0x5347462df4e0e8eb23676f6265646974, 'Y', '2014-04-27 14:42:43'),
(2595, 16, 0xc7e0e3f0f3e7e8f2fc2053474623676f6265646974, 'Y', '2014-04-27 14:42:43'),
(2493, 16, 0xc8f1f2eef0e8ff23676564, 'Y', '2014-04-27 14:43:32'),
(2494, 16, 0xd5eee423676564, 'Y', '2014-04-27 14:43:32'),
(2495, 16, 0xd1fbe3f0e0f2fc20f5eee423676564, 'Y', '2014-04-27 14:43:32'),
(5586, 16, 0xefeeeae0e7e0f2fc20edeee2fbe520f1eeeee1f9e5ede8ff236d656e75, 'Y', '2014-04-27 14:45:41'),
(5583, 16, 0xefeeeae0e7e0f2fc20e2f1e520f1f2f0e0ede8f6fb20fdf2eee3ee20f1e0e9f2e0236d656e75, 'Y', '2014-04-27 14:47:05'),
(3453, 16, 0xc7e0ece5ede8f2fc23686561646572, 'Y', '2014-04-27 14:48:09'),
(3349, 16, 0xcfe0f0f2e8ff23727373, 'Y', '2014-04-27 14:48:56'),
(3350, 16, 0xcff3f1f2fbe520f1efe8f1eae823727373, 'Y', '2014-04-27 14:48:56'),
(5799, 16, 0xc7e0e3f0f3e7e8f2fc617667237374617473, 'Y', '2014-04-27 17:33:34'),
(5760, 16, 0xcfe5f0e5e2e5e4e5edee23686561646572, 'Y', '2014-04-27 17:36:59'),
(5761, 16, 0xcef2f1f3f2f1f2e2f3e5f223686561646572, 'Y', '2014-04-27 17:36:59'),
(5793, 16, 0xcfeeeae0e7e0f2fc20e2f1e520f0e5e7f3ebfcf2e0f2fb20f2f3f0ede8f0e0, 'Y', '2014-04-27 17:36:59'),
(4720, 16, 0xd1e0e9f2, 'Y', '2014-04-27 17:38:13'),
(3404, 16, 0xcfeeeae0e7e0f2fc20edeee2eef1f2e820f2f3f0ede8f0e0, 'Y', '2014-04-27 17:41:38'),
(3001, 16, 0xc0ede3ebe8e9f1eae8e9236c616e67, 'Y', '2014-04-27 17:44:57'),
(3002, 16, 0xd4f0e0edf6f3e7f1eae8e9236c616e67, 'Y', '2014-04-27 17:44:57'),
(3003, 16, 0xc0f0e0e1f1eae8e9236c616e67, 'Y', '2014-04-27 17:44:57'),
(3007, 16, 0xcfeef0f2f3e3e0ebfcf1eae8e9236c616e67, 'Y', '2014-04-27 18:47:48'),
(3008, 16, 0xcde5ece5f6eae8e9236c616e67, 'Y', '2014-04-27 18:47:48'),
(3009, 16, 0xc3eeebebe0ede4f1eae8e9236c616e67, 'Y', '2014-04-27 18:47:48'),
(3010, 16, 0xc8f2e0ebfcffedf1eae8e9236c616e67, 'Y', '2014-04-27 18:47:48'),
(3013, 16, 0xd7e5f8f1eae8e9236c616e67, 'Y', '2014-04-27 18:47:48'),
(3019, 16, 0xdfefeeedf1eae8e9236c616e67, 'Y', '2014-04-27 18:50:15'),
(3020, 16, 0xcaeef0e5e9f1eae8e9236c616e67, 'Y', '2014-04-27 18:50:15'),
(3022, 16, 0xcfeeebfcf1eae8e9236c616e67, 'Y', '2014-04-27 18:50:15'),
(3023, 16, 0xd0f3ecfbedf1eae8e9236c616e67, 'Y', '2014-04-27 18:50:15'),
(3024, 16, 0xd1e5f0e1f1eae8e9236c616e67, 'Y', '2014-04-27 18:50:15'),
(3026, 16, 0xd8e2e5e4f1eae8e9236c616e67, 'Y', '2014-04-27 18:50:15'),
(3027, 16, 0xd2e0e9f1eae8e9236c616e67, 'Y', '2014-04-27 18:50:15'),
(3028, 16, 0xd2f3f0e5f6eae8e9236c616e67, 'Y', '2014-04-27 18:50:15'),
(3038, 16, 0xd3f0e4f3236c616e67, 'Y', '2014-04-27 18:56:27'),
(3040, 16, 0xc1eef1ede8e9f1eae8e9236c616e67, 'Y', '2014-04-27 18:56:27'),
(3041, 16, 0xd5eef0e2e0f2f1eae8e9236c616e67, 'Y', '2014-04-27 18:56:27'),
(3042, 16, 0xd1ebeee2e5edf1eae8e9236c616e67, 'Y', '2014-04-27 18:56:27'),
(3046, 16, 0xcceeede3eeebfcf1eae8e9236c616e67, 'Y', '2014-04-27 18:56:27'),
(3021, 16, 0xcdeef0e2e5e6f1eae8e9236c616e67, 'Y', '2014-04-27 18:59:15'),
(3025, 16, 0xd1ebeee2e0f6eae8e9236c616e67, 'Y', '2014-04-27 18:59:15'),
(6182, 11, '', 'Y', '2014-11-01 01:57:25'),
(3030, 16, 0xc2fce5f2ede0ecf1eae8e9236c616e67, 'Y', '2014-04-27 18:59:15'),
(3033, 16, 0xc3f0f3e7e8edf1eae8e9236c616e67, 'Y', '2014-04-27 18:59:15'),
(3047, 16, 0xc0ebe1e0edf1eae8e9236c616e67, 'Y', '2014-04-27 19:01:41'),
(3048, 16, 0xc0f0ecffedf1eae8e9236c616e67, 'Y', '2014-04-27 19:01:41'),
(3049, 16, 0xc1eeebe3e0f0f1eae8e9236c616e67, 'Y', '2014-04-27 19:01:41'),
(3050, 16, 0xcfe5f0f1e8e4f1eae8e9236c616e67, 'Y', '2014-04-27 19:01:41'),
(3051, 16, 0xcff3f8f2f3236c616e67, 'Y', '2014-04-27 19:01:41'),
(3006, 16, 0xd0f3f1f1eae8e9236c616e67, 'Y', '2014-04-27 19:03:43'),
(3014, 16, 0xc4e0f2f1eae8e9236c616e67, 'Y', '2014-04-27 19:03:43'),
(3015, 16, 0xd4e8edf1eae8e9236c616e67, 'Y', '2014-04-27 19:03:43'),
(3016, 16, 0xc3f0e5f7e5f1eae8e9236c616e67, 'Y', '2014-04-27 19:03:43'),
(3017, 16, 0xc8e2f0e8f2236c616e67, 'Y', '2014-04-27 19:03:43'),
(3018, 16, 0xc2e5ede3e5f0f1eae8e9236c616e67, 'Y', '2014-04-27 19:03:43'),
(3031, 16, 0xddf1efe5f0e0edf2ee236c616e67, 'Y', '2014-04-27 19:05:46'),
(3035, 16, 0xc8ede4eeede5e7e8e9f1eae8e9236c616e67, 'Y', '2014-04-27 19:05:46'),
(3036, 16, 0xd5e8ede4e8236c616e67, 'Y', '2014-04-27 19:05:46'),
(3037, 16, 0xd2e0ece8ebfcf1eae8e9236c616e67, 'Y', '2014-04-27 19:05:46'),
(3032, 16, 0xcce0ebe0e9f1eae8e9236c616e67, 'Y', '2014-04-27 19:08:02'),
(3039, 16, 0xc1e5ede3e0ebfcf1eae8e9236c616e67, 'Y', '2014-04-27 19:08:02'),
(3043, 16, 0xc0f4f0e8eae0e0edf1236c616e67, 'Y', '2014-04-27 19:08:02'),
(3044, 16, 0xd1f3e0f5e8ebe8236c616e67, 'Y', '2014-04-27 19:08:02'),
(3045, 16, 0xd3e7e1e5eaf1eae8e9236c616e67, 'Y', '2014-04-27 19:08:02'),
(3004, 16, 0xc8f1efe0edf1eae8e92028cae0f2e0ebeeedf1eae8e929236c616e67, 'Y', '2014-04-27 19:12:54'),
(3005, 16, 0xc8f1efe0edf1eae8e92028c1e0f1eaf1eae8e929236c616e67, 'Y', '2014-04-27 19:12:54'),
(3011, 16, 0xcae8f2e0e9f1eae8e92028cae0edf2eeedf1eae8e929236c616e67, 'Y', '2014-04-27 19:12:54'),
(3012, 16, 0xcae8f2e0e9f1eae8e92028cff3f2f3edf5f3e029236c616e67, 'Y', '2014-04-27 19:12:54'),
(3034, 16, 0xc8f0ebe0ede4f1eae8e920c3fdebfcf1eae8e9236c616e67, 'Y', '2014-04-27 19:12:54'),
(3573, 40, 0x507265766973e36f206465204e6f746173, 'Y', '2014-04-30 00:29:06'),
(3628, 40, 0x456469746f7220646520546f726e65696f73, 'Y', '2014-04-30 00:29:06'),
(3629, 40, 0x43726961646f72, 'Y', '2014-04-30 00:29:06'),
(3634, 40, 0x53616c76617220546f726e65696f, 'Y', '2014-04-30 00:29:06'),
(3635, 40, 0x507265766973e36f20646f2054ed74756c6f, 'Y', '2014-04-30 00:29:06'),
(3636, 40, 0x507265766973e36f20646120446573637269e7e36f, 'Y', '2014-04-30 00:29:06'),
(3673, 40, 0x456469e7e36f2070726f6962696461, 'Y', '2014-04-30 00:29:06'),
(3685, 40, 0x447261676f6e, 'Y', '2014-04-30 00:30:43'),
(3686, 40, 0x50fa626c69636f, 'Y', '2014-04-30 00:30:43'),
(3687, 40, 0x5072697661646f, 'Y', '2014-04-30 00:30:43'),
(3691, 40, 0x43616d70656f6e61746f2050fa626c69636f, 'Y', '2014-04-30 00:30:43'),
(3692, 40, 0x43616d70656f6e61746f205072697661646f, 'Y', '2014-04-30 00:30:43'),
(3701, 40, 0x54726176612d41646d696e, 'Y', '2014-04-30 00:30:43'),
(3702, 40, 0x54726176612d64652d526567697374726f73, 'Y', '2014-04-30 00:30:43'),
(3704, 40, 0x54726176612d646f2d43726f6e, 'Y', '2014-04-30 00:30:43'),
(3705, 40, 0x54726176612d64652d46656368616d656e746f, 'Y', '2014-04-30 00:30:43'),
(3736, 40, 0x477275706f202573206465202573, 'Y', '2015-02-04 13:59:48'),
(3757, 40, 0x757375e172696f73205b25735d, 'Y', '2014-04-30 00:31:45'),
(3838, 40, 0x4e6f766f, 'Y', '2014-04-30 00:31:45'),
(3840, 40, 0x4172717569766172, 'Y', '2014-04-30 00:31:45'),
(3841, 40, 0x417061676172, 'Y', '2014-04-30 00:31:45'),
(3842, 40, 0x4f63756c746f, 'Y', '2014-04-30 00:31:45'),
(3843, 40, 0x5072697661646f, 'Y', '2014-04-30 00:31:45'),
(3856, 40, 0x56696f6c61e7e36f2d64652d524547, 'Y', '2014-04-30 00:31:45'),
(3860, 40, 0x4d616e75616c, 'Y', '2014-04-30 00:31:45'),
(3630, 40, 0x5469706f20646520617373697374656e7465, 'Y', '2014-04-30 00:35:01'),
(3893, 40, 0x477275706f202573202876617a696f29, 'Y', '2015-02-04 13:59:48'),
(3895, 40, 0x436f6e742e, 'Y', '2014-04-30 00:35:01'),
(3917, 40, 0x46697861722043f3706961, 'Y', '2014-04-30 00:35:01'),
(3929, 40, 0x4de178696d6f20646520506573717569736173, 'Y', '2014-04-30 00:35:01'),
(3933, 40, 0x496eed63696f, 'Y', '2014-04-30 00:35:01'),
(3934, 40, 0x477275706f, 'Y', '2015-02-04 13:59:48'),
(3935, 40, 0x506172, 'Y', '2014-04-30 00:35:01'),
(3936, 40, 0x4a6f676172, 'Y', '2014-04-30 00:35:01'),
(3937, 40, 0x5465726d696e61646f, 'Y', '2014-04-30 00:35:01'),
(3969, 40, 0x757365722d696420646573636f6e68656369646f, 'Y', '2014-04-30 00:39:34'),
(3980, 40, 0x50726570617261722043616d70656f6e61746f, 'Y', '2014-04-30 00:39:34'),
(3984, 40, 0x416c696d656e7461722043616d70656f6e61746f, 'Y', '2014-04-30 00:39:34'),
(3985, 40, 0x4170616761722043616d70656f6e61746f, 'Y', '2014-04-30 00:39:34'),
(3988, 40, 0x436f6e6669726d65206f20617061676172, 'Y', '2014-04-30 00:39:34'),
(3991, 40, 0x456469746172207061727469636970616e7465, 'Y', '2014-04-30 00:39:34'),
(4006, 40, 0x4564697461722043616d70656f6e61746f, 'Y', '2014-04-30 00:39:34'),
(4028, 40, 0x6c696d706f207061726120736572206465736174697661646f, 'Y', '2014-04-30 00:39:34'),
(4036, 40, 0x496e64696361646f722064652066696d206465206a6f676f, 'Y', '2014-04-30 00:39:34'),
(4049, 40, 0x507265766973e36f206461732050726f707269656461646573, 'Y', '2014-04-30 00:39:34'),
(4083, 40, 0x446574616c686573206465204eed76656c206465204a6f6761646f72, 'Y', '2014-04-30 00:41:12'),
(4103, 40, 0x41646d696e2e2043616d70656f6e61746f, 'Y', '2014-04-30 00:41:12'),
(4123, 40, 0x5b546f726e65696f202325645d, 'Y', '2014-04-30 00:41:12'),
(4183, 40, 0x44697265746f7220646520546f726e65696f, 'Y', '2014-04-30 00:41:12'),
(4184, 40, 0x537561732046756ee7f56573, 'Y', '2014-04-30 00:41:12'),
(4185, 40, 0x45646974617220747261766173, 'Y', '2014-04-30 00:41:12'),
(4211, 40, 0x446566696e697220726f6461646173, 'Y', '2015-02-04 13:46:48'),
(4212, 40, 0x437269617220726f6461646173, 'Y', '2015-02-04 13:46:48'),
(4218, 40, 0x456469746172207061726573206465206a6f676f73, 'Y', '2014-04-30 00:45:08'),
(4222, 40, 0x436f6c6f71756520494420646f204a6f676f, 'Y', '2014-04-30 00:45:08'),
(4253, 40, 0x507265706172617220477275706f, 'Y', '2015-02-04 13:59:48'),
(4256, 40, 0x41706167617220477275706f73, 'Y', '2015-02-04 13:59:48'),
(4258, 40, 0x436f6e6669726d65206f20617061676172, 'Y', '2014-04-30 00:45:08'),
(4280, 40, 0x537567657374f5657320646520506573717569736173, 'Y', '2014-04-30 00:45:08'),
(4319, 40, 0x526573756d6f20646f7320477275706f73, 'Y', '2015-02-04 13:59:48'),
(4331, 40, 0x4578616d696e617220477275706f73, 'Y', '2015-02-04 14:01:25'),
(4333, 40, 0x4564697461722041e7f56573, 'Y', '2014-04-30 00:45:08'),
(4337, 40, 0x5265646566696e697220477275706f, 'Y', '2015-02-04 14:01:25'),
(4340, 40, 0x477275706f732053656c6563696f6e61646f73, 'Y', '2015-02-04 14:01:25'),
(4345, 40, 0x496e736572697220616f20477275706f, 'Y', '2015-02-04 14:01:25'),
(4348, 40, 0x69642d64652d757375e172696f20646573636f6e68656369646f205b25735d, 'Y', '2014-04-30 00:47:39'),
(4379, 40, 0x436f6e6669726d65206120616469e7e36f, 'Y', '2014-04-30 00:47:39'),
(4433, 40, 0x546f726e65696f20232573, 'Y', '2014-04-30 00:47:39'),
(4448, 40, 0x54726176617320646520546f726e65696f, 'Y', '2014-04-30 00:47:39'),
(4489, 40, 0x546f726e65696f2063726961646f21, 'Y', '2014-04-30 00:47:39'),
(4490, 40, 0x417373697374656e746520646520546f726e65696f73, 'Y', '2014-04-30 00:47:39'),
(4492, 40, 0x437269617220546f726e65696f, 'Y', '2014-04-30 00:47:39'),
(4570, 40, 0x496e74726f6475e7e36f20616f20476f, 'Y', '2014-04-30 00:47:39'),
(4572, 40, '', 'Y', '2014-04-30 00:55:09'),
(4631, 40, 0x4f2071756520e920476f2d64652d457175697065, 'Y', '2014-04-30 00:55:09'),
(4633, 40, 0x4f2071756520e920476f2d5a656e, 'Y', '2014-04-30 00:55:09'),
(4648, 40, 0x74616d616e686f20646573636f6e68656369646f, 'Y', '2014-04-30 00:55:09'),
(4729, 40, 0x6d7564616ee761206170656e617320706f722061646d696e6973747261646f726573, 'Y', '2014-04-30 00:55:09'),
(4731, 40, 0x53616c76617220747261766173, 'Y', '2014-04-30 00:55:09'),
(4766, 40, 0x5061727469636970616e746573, 'Y', '2014-04-30 00:55:09'),
(4771, 40, 0x4e6f74617320646520636f6e6669726d61e7e36f, 'Y', '2014-04-30 00:55:09'),
(4780, 40, 0x496e662e206465204a6f676f, 'Y', '2014-04-30 00:58:09'),
(4794, 40, 0x41646d696e2e20646520546f726e65696f, 'Y', '2014-04-30 00:58:09'),
(4804, 40, 0x4e656e68756d61, 'Y', '2014-04-30 00:58:09'),
(4818, 40, 0x52617ae36f, 'Y', '2014-04-30 00:58:09'),
(4867, 40, 0x53656d206d7564616ee76173, 'Y', '2014-04-30 00:58:09'),
(4888, 40, 0x4efa6d65726f2d64652d726f64616461207275696d, 'Y', '2015-02-04 13:47:56'),
(4890, 40, 0x54616d616e686f2d64652d5065737175697361206d7569746f2070657175656e6f, 'Y', '2014-04-30 00:58:09'),
(4891, 40, 0x54616d616e686f2d64652d5065737175697361206d7569746f206772616e6465, 'Y', '2014-04-30 00:58:09'),
(4899, 40, 0x536f646f73, 'Y', '2015-02-05 10:02:35'),
(4902, 40, 0x6ee36f20646566696e696461, 'Y', '2015-02-04 13:44:01'),
(4909, 40, 0x54616d2e204ded6e696d6f20646f7320477275706f73, 'Y', '2015-02-04 14:02:01'),
(4910, 40, 0x54616d2e204de178696d6f20646f7320477275706f73, 'Y', '2015-02-04 14:02:01'),
(4924, 40, 0x43616d70656f6e61746f20616c696d656e7461646f21, 'Y', '2014-04-30 01:00:23'),
(4933, 40, 0x557375e172696f207061726120656469746172, 'Y', '2014-04-30 01:00:23'),
(4952, 40, 0x4eed76656c20496e696369616c, 'Y', '2014-04-30 01:00:23'),
(785, 36, 0x4b616d626f647a7361, 'Y', '2015-09-18 21:14:08'),
(4989, 40, 0x4d7564616ee761, 'Y', '2014-08-21 14:28:05'),
(5004, 40, 0x417475616c697a6172206eed76656c, 'Y', '2014-04-30 01:00:23'),
(5011, 40, 0x44697265746f7220646f20546f726e65696f, 'Y', '2014-04-30 01:00:23'),
(5016, 40, 0x456469746172206e6f74ed6369617320646f20746f726e65696f, 'Y', '2014-04-30 01:00:23'),
(5017, 40, 0x494420526567, 'Y', '2014-04-30 01:03:07'),
(5020, 40, 0x4d656e736167656e73, 'Y', '2014-04-30 01:03:07'),
(5023, 40, 0x4573636f706f, 'Y', '2014-04-30 01:03:07'),
(5024, 40, 0x5469706f, 'Y', '2014-04-30 01:03:07'),
(5047, 40, 0x4e6f74617320646f20546f726e65696f, 'Y', '2014-04-30 01:03:07'),
(5049, 40, 0x457461706120646520646566696e69e7e36f, 'Y', '2014-04-30 01:03:07'),
(5051, 40, 0x64697265746f722c206573636f706f, 'Y', '2014-04-30 01:03:07'),
(5059, 40, 0x457461706120696e696369616c, 'Y', '2014-04-30 01:03:07');
INSERT INTO `Translations` (`Original_ID`, `Language_ID`, `Text`, `Translated`, `Updated`) VALUES
(5060, 40, 0x457461706120646f73206a6f676f73, 'Y', '2014-04-30 01:03:07'),
(5061, 40, 0x4d6f737472617220446f63756d656e7461e7e36f20646f20546f726e65696f, 'Y', '2014-04-30 01:03:07'),
(5862, 40, 0x456d7061746520286a69676f29, 'Y', '2014-04-30 01:04:30'),
(5731, 16, 0x31303020e1e0ebebeee220454c4f203d2031206b797523726174636867, 'Y', '2014-05-01 13:31:24'),
(5751, 16, 0xd0e5e9f2e8ede320454c4f20cce8ed202d20cce0eaf123726174636867, 'Y', '2014-05-01 13:31:24'),
(5752, 16, 0xc8e7ece5ede5ede8ff20f0e5e9f2e8ede3e02028454c4f29, 'Y', '2014-05-01 13:31:24'),
(2650, 16, 0xcff0eef4e8ebfc20f1eef5f0e0ede5ed20efee20f3eceeebf7e0ede8fe21, 'Y', '2014-05-01 13:41:47'),
(2651, 16, 0xcff0eef4e8ebfc20f1eef5f0e0ede5ed21, 'Y', '2014-05-01 13:41:47'),
(2655, 16, 0xd1eef5f0e0ede8f2fc20efee20f3eceeebf7e0ede8fe2366696c746572, 'Y', '2014-05-01 13:41:47'),
(2657, 16, 0xd1eef5f0e0ede8f2fc20eff0eef4e8ebfc2366696c746572, 'Y', '2014-05-01 13:41:47'),
(2658, 16, 0xd3e4e0ebe8f2fc20eff0eef4e8ebfc2366696c746572, 'Y', '2014-05-01 13:41:47'),
(2209, 16, 0xd0e0ede320eee1edeee2ebe5ed21, 'Y', '2014-05-01 13:44:36'),
(2210, 16, 0xd0e0ede3202620f0e5e9f2e8ede320eee1edeee2ebe5edfb21, 'Y', '2014-05-01 13:44:36'),
(2196, 16, 0xc2e8e4, 'Y', '2014-05-01 13:47:07'),
(1583, 16, 0x23cfe0f0f2e8e820f120f4eef0eee9, 'Y', '2014-05-01 13:48:18'),
(1597, 16, 0xcef2eaebeeede8f2fc20f1eeeee1f9e5ede8ff, 'Y', '2014-05-01 13:48:18'),
(1598, 16, 0xcef2eaebeeede8f2fc20eff0e8e3ebe0f8e5ede8ff, 'Y', '2014-05-01 13:48:18'),
(1576, 16, 0xd1f3ece0, 'Y', '2014-05-01 13:49:05'),
(2443, 16, 0xc4eeefeeebede8f2e5ebfcedeee520e2f0e5ecff, 'Y', '2014-05-01 18:15:46'),
(2447, 16, 0xd7e0f1fb20e8f1efeeebfce7eee2e0edfb, 'Y', '2014-05-01 18:15:46'),
(2509, 16, 0xc2f1e5, 'Y', '2014-05-01 20:28:28'),
(2519, 16, 0xc8e3f0eeea, 'Y', '2014-05-01 20:28:28'),
(2524, 16, 0xc4eee1e0e2e8f2fc20edeee2f3fe20efe0f0f2e8fe20e220e8e3f0eee2eee920e7e0eb, 'Y', '2014-05-01 20:28:01'),
(2540, 16, 0xc2fb20eceee6e5f2e520eff0e8edfff2fc20e8ebe820eef2eaebeeede8f2fc20fdf2ee20eff0e8e3ebe0f8e5ede8e52e, 'Y', '2014-05-01 20:28:01'),
(2542, 16, 0xcff0e8ede8ece0e5f2e520ebe820e2fb20eff0e8e3ebe0f8e5ede8e53f, 'Y', '2014-05-01 20:28:01'),
(2635, 16, 0xc4e0ecfd, 'Y', '2014-05-01 20:28:01'),
(2636, 16, 0xd2e5f0e8f2eef0e8ff, 'Y', '2014-05-01 20:28:01'),
(2637, 16, 0xcce5f0f2e2fbe520eae0ecede8, 'Y', '2014-05-01 20:28:01'),
(2638, 16, 0xcae0ecede8, 'Y', '2014-05-01 20:28:01'),
(2639, 16, 0xcfebe5ededfbe5, 'Y', '2014-05-01 20:26:11'),
(2641, 16, 0xd1f7e5f2, 'Y', '2014-05-01 20:26:11'),
(2642, 16, 0xd0e5e7f3ebfcf2e0f2, 'Y', '2014-05-01 20:26:11'),
(2644, 16, 0xd5eee4fb, 'Y', '2014-05-01 20:26:11'),
(2648, 16, 0xcfd3d1d2c0df2dc4ced1cac0, 'Y', '2014-05-01 20:26:11'),
(2649, 16, 0xcfcecbcdc0df2dc4ced1cac0, 'Y', '2014-05-01 20:26:11'),
(2730, 16, 0xcfe0f1f1, 'Y', '2014-05-01 20:26:11'),
(2731, 16, 0xd1f7e5f2, 'Y', '2014-05-01 20:26:11'),
(2842, 16, 0xd0fdede3ee, 'Y', '2014-05-01 20:26:11'),
(2843, 16, 0xcde52dd1f2e4, 'Y', '2014-05-01 20:26:11'),
(2892, 16, 0xd1f2e0ede4e0f0f2ede0ff2dd4eef0e0, 'Y', '2014-05-01 20:25:06'),
(2896, 16, 0xc2f0e5ecff, 'Y', '2014-05-01 20:25:06'),
(2909, 16, 0xcdeee2e0ff20cfe0f0f2e8ff, 'Y', '2014-05-01 20:25:06'),
(2914, 16, 0xdfefeeedf1eae8e5, 'Y', '2014-05-01 20:25:06'),
(2915, 16, 0xcae8f2e0e9f1eae8e5, 'Y', '2014-05-01 20:25:06'),
(2925, 16, 0xe2f1e5e3e4e0, 'Y', '2014-05-01 20:24:11'),
(2932, 16, 0xefeef1ebe5203120e4edff, 'Y', '2014-05-01 20:24:11'),
(2937, 16, 0xc3ee, 'Y', '2014-05-01 20:24:11'),
(2940, 16, 0xcde8e3e8f0e8, 'Y', '2014-05-01 20:24:11'),
(2948, 16, 0xd2fb20e2fbe1e8f0e0e5f8fc20caeeece82cdf20e2fbe1e8f0e0fe20d6e2e5f2, 'Y', '2014-05-01 20:24:11'),
(2949, 16, 0xdf20e2fbe1e8f0e0fe20caeeece82cd2fb20e2fbe1e8f0e0e5f8fc20d6e2e5f2, 'Y', '2014-05-01 20:24:11'),
(3097, 16, '', 'Y', '2014-05-01 18:40:26'),
(3099, 16, '', 'Y', '2014-05-01 18:40:26'),
(3119, 16, 0xe4e0ed, 'Y', '2014-05-01 20:23:25'),
(3120, 16, 0xeafe, 'Y', '2014-05-01 20:23:25'),
(3121, 16, '', 'Y', '2014-05-01 18:42:50'),
(5776, 16, 0xcfeeeae0e7e0f2fc20eceee920eff0e5e4fbe4f3f9e8e920f5eee4, 'Y', '2014-05-02 14:25:53'),
(5778, 16, 0xe0ed79f3ebe8f0eee2e0ed, 'Y', '2014-05-02 14:25:53'),
(5757, 16, 0xd1eeeee1f9e5ede8ff, 'Y', '2014-05-02 14:27:01'),
(5764, 16, 0xd1eaf0fbf2fc20eaeeecece5f2ede0f0e8e8, 'Y', '2014-05-02 14:27:01'),
(5765, 16, 0xcfeeeae0e7e0f2fc20eaeeecece5edf2e0f0e8e8, 'Y', '2014-05-02 14:27:01'),
(5531, 16, 0xf1f2e0ede4e0f0f2edfbe520ede0f1f2f0eee9eae8, 'Y', '2014-05-02 14:28:46'),
(5526, 16, 0xcde5e4e5e9f1f2e2e8f2e5ebfcededeee520f7e8f1ebee20eae0ecede5e920e4ebff20cae0ede0e4f1eaeee3ee20e1e0e9eeece8, 'Y', '2014-05-02 14:31:44'),
(5431, 16, 0xcef2f1f3f2f1f2e2f3e5f220eff0e0e2e0ff20f1eaeee1eae0, 'Y', '2014-05-02 14:34:25'),
(4697, 16, 0xc7e0f9e8f2ede8ea, 'Y', '2014-05-02 14:38:10'),
(4701, 16, 0xd7e0f1fb20f2e5eaf3f220efee20e2fbf5eee4edfbec, 'Y', '2014-05-02 14:38:10'),
(4704, 16, 0xd2e8ef20d4eef0fb, 'Y', '2014-05-02 14:38:10'),
(4696, 16, 0xcff0e5f2e5ede4e5edf2, 'Y', '2014-05-02 14:40:10'),
(4532, 16, 0xd7e5f1f2edeee520caeeece8, 'Y', '2014-05-02 14:48:24'),
(4535, 16, 0xcee3f0e0ede8f7e5ede8ff, 'Y', '2014-05-02 14:48:24'),
(4538, 16, 0xcee1f1f3e4e8f2fc, 'Y', '2014-05-02 14:48:24'),
(5071, 40, 0x45646974617220636f6c6f6361e7f56573, 'Y', '2014-05-04 00:01:52'),
(5092, 40, 0x4469766964697220706f72, 'Y', '2014-05-04 00:01:52'),
(5095, 40, 0x54616d616e686f2042e17369636f20646f7320477275706f73, 'Y', '2015-02-04 14:12:59'),
(5100, 40, 0x4469660d0a557375, 'Y', '2014-05-04 00:01:52'),
(5105, 40, 0x54616d0d0a50657371, 'Y', '2014-05-04 00:01:52'),
(5111, 40, 0x4573636f6c68612d4454, 'Y', '2014-05-04 00:01:52'),
(5118, 40, 0x4eed76656c20646520557375e172696f, 'Y', '2014-05-04 00:01:52'),
(5127, 40, 0x52656d6f76657220436f6c6f6361e7e36f, 'Y', '2014-05-04 00:01:52'),
(5130, 40, 0x507265656e6368657220436f6c6f6361e7f56573, 'Y', '2014-05-04 00:01:52'),
(5134, 40, 0x436f6c6f6361e7e36f20417475616c, 'Y', '2014-05-04 00:01:52'),
(5136, 40, 0x446566696e697220436f6c6f6361e7e36f, 'Y', '2014-05-04 00:03:44'),
(5146, 40, 0x4efa6d2e204de1782e20646520477275706f73, 'Y', '2015-02-04 14:13:28'),
(5158, 40, 0x45646974617220436f6c6f6361e7e36f, 'Y', '2014-05-04 00:03:44'),
(5159, 40, 0x506f6e746f73, 'Y', '2014-05-04 00:03:44'),
(5161, 40, 0x78, 'Y', '2015-02-05 09:41:15'),
(5163, 40, 0x766974f3726961, 'Y', '2015-02-05 09:40:57'),
(5172, 40, 0x436f6c6f6361e7e36f202573206e6f20477275706f202573, 'Y', '2015-02-04 14:15:08'),
(5189, 40, 0x6b6f6d692063616c63756c61646f, 'Y', '2014-05-04 00:03:44'),
(5205, 40, 0x526567697374726f20646f20546f726e65696f, 'Y', '2014-05-04 00:03:44'),
(5206, 40, 0x4e6f74617320646f20526567697374726f20646f20546f726e65696f, 'Y', '2014-05-04 00:03:44'),
(5214, 40, 0x446566696e697220566f746f204e657574726f, 'Y', '2014-05-04 00:14:56'),
(5239, 40, 0x496d6167656e7320646f20746162756c6569726f, 'Y', '2014-05-04 00:14:56'),
(5249, 40, 0xcd636f6e6573206465206d656e736167656d, 'Y', '2014-05-04 00:14:56'),
(5251, 40, 0xcd636f6e657320646f2066f372756d, 'Y', '2014-05-04 00:14:56'),
(5253, 40, 0xcd636f6e657320676572616973, 'Y', '2014-05-04 00:14:56'),
(5255, 40, 0xcd636f6e657320646520746162656c6173, 'Y', '2014-05-04 00:14:56'),
(5299, 40, 0x4f207175652073e36f204d6f64656c6f733f, 'Y', '2014-05-04 00:14:56'),
(5311, 40, 0x41636573736f20e02070e167696e6120646f20447261676f6e, 'Y', '2014-05-04 00:14:56'),
(5312, 40, 0x50726570617261e7e36f20646520756d206a6f676f206e6f20447261676f6e, 'Y', '2014-05-04 00:14:56'),
(5315, 40, 0x4d656e736167656e73206e6f20447261676f6e, 'Y', '2014-05-04 00:14:56'),
(5316, 40, 0x436f6e7461746f7320447261676f6e, 'Y', '2014-05-04 00:17:45'),
(5323, 40, 0x4a6f67616e646f206e6f20447261676f6e, 'Y', '2014-05-04 00:17:45'),
(5644, 40, 0x4eed76656c20646f732056656e6365646f72657320646f20477275706f, 'Y', '2015-02-04 14:15:08'),
(5645, 40, 0x446566696e69722056656e6365646f7220646f20477275706f, 'Y', '2015-02-04 14:15:08'),
(5646, 40, 0x4c696d7061722056656e6365646f7220646f20477275706f, 'Y', '2015-02-04 14:15:08'),
(5647, 40, 0x446566696e69722056656e6365646f72657320646f20477275706f, 'Y', '2015-02-04 14:15:08'),
(5650, 40, 0x56656e6365646f7220646f20477275706f, 'Y', '2015-02-04 14:15:08'),
(5683, 40, 0x45646974617220677275706f73, 'Y', '2015-02-05 10:12:04'),
(5754, 40, 0x446174612064652074e9726d696e6f, 'Y', '2014-06-04 17:38:11'),
(5774, 40, 0x416e616c69736172, 'Y', '2014-05-04 00:17:45'),
(5775, 40, 0x416e616c69736172206a6f676f, 'Y', '2014-05-04 00:18:58'),
(5777, 40, 0x50726973696f6e6569726f73, 'Y', '2014-05-04 00:18:58'),
(5778, 40, 0x616e756c61646f, 'Y', '2014-05-04 00:18:58'),
(5791, 40, 0x53656d20726573756c7461646f20283d4e756c6f29, 'Y', '2014-05-04 00:18:58'),
(5792, 40, 0x45646974617220726573756c7461646f73, 'Y', '2014-05-04 00:18:58'),
(5807, 40, 0x526573756c7461646f20646120526f64616461, 'Y', '2014-05-04 00:18:58'),
(5809, 40, 0x526573756c7461646f20646f20557375e172696f, 'Y', '2014-05-04 00:18:58'),
(5812, 40, 0x494420646520526573756c7461646f20646f20546f726e65696f, 'Y', '2014-05-04 00:56:32'),
(5813, 40, 0x4e6f766120656e7472616461, 'Y', '2014-05-04 00:56:32'),
(5814, 40, 0x5469706f20646520526573756c7461646f, 'Y', '2014-05-04 00:56:32'),
(5815, 40, 0x55494420646f20526573756c7461646f, 'Y', '2014-05-04 00:56:32'),
(5816, 40, 0x52494420646f20526573756c7461646f, 'Y', '2014-05-04 00:56:32'),
(5028, 6, 0x46696e616c, 'Y', '2016-04-15 01:47:35'),
(5820, 40, 0x526573756c7461646f, 'Y', '2014-05-04 00:56:32'),
(5821, 40, 0x436f6c6f6361e7e36f, 'Y', '2014-05-04 00:56:32'),
(5846, 40, 0x55494420646f20526573756c7461646f, 'Y', '2014-05-04 00:56:32'),
(5855, 40, 0x506c61636172, 'Y', '2014-05-04 00:56:32'),
(5875, 40, 0x546162656c6120646f2043616d70656f6e61746f, 'Y', '2014-05-04 00:58:51'),
(5887, 40, 0x53696d706c6573, 'Y', '2014-05-04 00:58:51'),
(5888, 40, 0x4861686e, 'Y', '2014-05-04 00:58:51'),
(5889, 40, 0x477275706f20646f20546f726e65696f, 'Y', '2015-02-04 14:15:08'),
(5896, 40, 0x566974f372696120706f72205b25735d, 'Y', '2014-05-04 00:58:51'),
(5897, 40, 0x446572726f746120706f72205b25735d, 'Y', '2014-05-04 00:58:51'),
(5899, 40, 0x456d7061746520286a69676f29, 'Y', '2014-05-04 00:58:51'),
(5900, 40, 0x4573636f6c6861, 'Y', '2014-05-04 00:58:51'),
(5910, 40, 0x526f64616461, 'Y', '2014-05-04 00:58:51'),
(5942, 40, 0x446573616669616e746573, 'Y', '2014-05-04 00:58:51'),
(5946, 40, 0x526574697261722d736520646f2043616d70656f6e61746f, 'Y', '2014-05-04 01:01:17'),
(5957, 40, 0x4162726972, 'Y', '2014-05-04 01:01:17'),
(5960, 40, 0x45646974617220706f6e746f73, 'Y', '2014-05-04 01:01:17'),
(5962, 40, 0x436f6d65e76172207072f378696d6120726f64616461, 'Y', '2014-05-04 01:01:17'),
(5983, 40, 0x5469706f20646520506f6e746f73, 'Y', '2014-05-04 01:01:17'),
(5985, 40, 0x506f6e746f732047616e686f73, 'Y', '2014-05-04 01:01:17'),
(5986, 40, 0x506f6e746f73205065726469646f73, 'Y', '2014-05-04 01:01:17'),
(5987, 40, 0x506f6e746f7320456d70617461646f73, 'Y', '2014-05-04 01:01:17'),
(5988, 40, 0x426c6f717565617220506c61636172, 'Y', '2014-05-04 01:01:17'),
(5989, 40, 0x506f6e747561e7e36f204de1782e, 'Y', '2014-05-04 01:01:17'),
(5998, 40, 0x5265646566696e697220636f6d206f732050616472f56573, 'Y', '2014-05-04 01:03:37'),
(6002, 40, 0x43617465676f726961, 'Y', '2014-05-04 01:03:37'),
(6004, 40, 0x446572726f7461, 'Y', '2014-05-04 01:03:37'),
(6005, 40, 0x4469662d506f6e746f73, 'Y', '2014-05-04 01:03:37'),
(6007, 40, 0x53656d2d526573756c7461646f, 'Y', '2014-05-04 01:03:37'),
(6008, 40, 0x416e756c61646f, 'Y', '2014-05-04 01:03:37'),
(6010, 40, 0x52656d6f76657220646f20477275706f, 'Y', '2015-02-04 14:16:10'),
(6017, 40, 0x5665726966696361722056656e6365646f72657320646f20477275706f, 'Y', '2015-02-04 14:16:10'),
(6050, 40, 0x4c696d697465202573, 'Y', '2014-05-04 01:03:37'),
(6053, 40, 0x526f64616461204de1782e20496e696369616c, 'Y', '2014-05-04 01:03:37'),
(6065, 40, 0x566974f37269617320436f6e736563757469766173, 'Y', '2014-05-04 01:06:26'),
(6066, 40, 0x496e74657276616c6f20646f20526573756c7461646f, 'Y', '2014-05-04 01:06:26'),
(6081, 40, 0x2573204d454c484f524553, 'Y', '2014-05-04 01:06:26'),
(987, 40, 0x536f7520756d206e6f7661746f206e6f20447261676f6e2e205175616c206eed76656c20696e696369616c206575206465766f206573636f6c6865723f, 'Y', '2014-05-04 04:10:17'),
(560, 40, 0x4e61203c686f6d65207374617475732e7068703e70e167696e61206465207369747561e7e36f3c2f686f6d653e2074656d2061206c69737461206465206a6f676f73206e61207375612076657a2e20436c69717565206e6f206efa6d65726f20646f206a6f676f2070617261207665722073657520746162756c6569726f2e0d0a0d0a556d61206e6f7661207065e76120736572e120636f6c6f6361646120616f20636c696361726d6f73206e756d6120706f7369e7e36f2076e16c6964612e20556d61206a6f6761646120e920666569746120617373696d2e2053652061206a6f67616461206361707475726172207065e7617320696e696d696761732c20656c617320736572e36f206175746f6d61746963616d656e7465207265746972616461732e20506172612070617373617220612076657a206f7520646573697374697220646f206a6f676f2c20757365206f206d656e752061626169786f20646f20746162756c6569726f2e0d0a0d0a5175616e646f206f20746162756c6569726f20e9206d6f73747261646f20636f6d2061206a6f676164612071756520646573656a616d6f732066617a6572202870617373617220612076657a2c206465736973746972206f75206e6f7661207065e761292c2061706572746520756d20646f7320626f74f56573206465203c693e656e766961723c2f693e207061726120636f6e6669726d617220737561206573636f6c68612e20536520766f63ea206d75646f752064652069646569612c20617065727465206f203c693e626f74e36f20766f6c74617220646f206e6176656761646f723c2f693e206f75206f20626f74e36f203c693e63616e63656c6172206a6f676164613c2f693e2065206573636f6c6861206f75747261206f70e7e36f2e, 'Y', '2014-07-19 17:10:07'),
(5773, 40, 0x417320616e6f7461e7f565732074ea6d206d7564616ee76173206ee36f2073616c76617321, 'Y', '2014-07-21 16:11:09'),
(5776, 40, 0x4d6f7374726172206d696e6861206a6f6761646120616e746572696f72, 'Y', '2014-07-21 16:11:09'),
(1045, 40, 0x4f206c696d6974652064652074656d706f20e9206d7569746f2070657175656e6f2e20506f72206661766f72206573636f6c6861206e6f206ded6e696d6f203120686f72612e, 'Y', '2014-07-21 16:24:19'),
(1048, 40, 0x50e167696e61206ee36f20656e636f6e74726164612e20506f72206661766f72206176697365206f732061646d696e6973747261646f7265732e20496e666f726d65207175616e646f206f206572726f2061636f6e74656365752065207175616c7175657220636f6973612071756520706f6465207465722061636f6e74656369646f207061726120636175736172206f206572726f2e, 'Y', '2014-07-21 16:24:19'),
(1049, 40, 0x4f20696420646520757375e172696f20636f6e74696e6861206361726163746572657320696c65676169732e2053e36f207065726d697469646f73206170656e617320612d7a2c20412d5a2c20302d39206520222d5f2b222c2065206f207072696d6569726f20707265636973612073657220612d7a206f7520412d5a2e, 'Y', '2014-07-21 16:24:19'),
(1050, 40, 0x44657363756c70652c206575206ee36f20636f6e736567756920616368617220612064697363757373e36f2071756520766f63ea2071756572207665722e, 'Y', '2014-07-21 16:24:19'),
(1371, 40, 0x44657363756c70652c206ee36f20636f6e7369676f206163686172206f206a6f676f2071756520766f63ea20666f6920636f6e76696461646f2e204f20636f6e76697465206ae120666f692061636569746f3f, 'Y', '2014-07-21 16:24:19'),
(1373, 40, 0x44657363756c70652c206ee36f20636f6e7369676f206163686172206f2064657374696e6174e172696f20646120737561206d656e736167656d2e2054656e68612063657274657a61207175652075736f75206f20696420646520757375e172696f2c2065206ee36f206f206e6f6d6520636f6d706c65746f20646120706573736f612e, 'Y', '2014-07-21 16:24:19'),
(1374, 40, 0x44657363756c70652c206f7320757375e172696f7320617469766f73207061726563656d20746572206d756461646f20647572616e74652061206f70657261e7e36f, 'Y', '2014-07-21 16:24:19'),
(1377, 40, 0x44657363756c70652c2065786973746520756d2070726f626c656d6120646520636f6e666967757261e7e36f20636f6d206f2066696c74726f206465206275736361732e, 'Y', '2014-07-21 16:24:19'),
(1754, 40, 0x44657363756c70652c20766f63ea206ee36f2074656d207065726d697373e36f206465206163657373617220636f6d6f20636f6e76696461646f20282267756573742229206e65737465207365727669646f722e204f2073657520656e64657265e76f20495020666f6920626c6f71756561646f2070656c6f732061646d696e6973747261646f7265732e, 'Y', '2016-08-06 20:47:38'),
(1765, 40, 0x44657363756c70652c20766f63ea206ee36f2074656d207065726d697373e36f207061726120616365737361722065737465207365727669646f722e2053756120636f6e746120666f6920626c6f7175656164612070656c6f732061646d696e6973747261646f72657320706f7220756d61206465737361732072617af565733a, 'Y', '2016-08-06 20:47:38'),
(1766, 40, 0x44657363756c70652c20766f63ea206ee36f2074656d207065726d697373e36f207061726120616365737361722065737465207365727669646f722e2053756120636f6e746120666f6920626c6f71756561646120706f722061646d696e6973747261646f7265732e, 'Y', '2016-08-06 20:47:38'),
(1767, 40, 0x44657363756c70652c20766f63ea206ee36f2074656d207065726d697373e36f2070726120656469746172207375612062696f6772616669612e20457373612066756e63696f6e616c696461646520666f6920626c6f71756561646120706f722061646d696e6973747261646f7265732e, 'Y', '2014-07-21 21:52:53'),
(1768, 40, 0x506f72206661766f722c206c6569612061732052656772617320646520436f6e647574612065206d61727175652061206f70e7e36f20736520766f63ea206163656974e12d6c61732e, 'Y', '2014-07-21 21:52:53'),
(1769, 40, 0x44657363756c70652c20766f63ea206ee36f2074656d207065726d697373e36f207061726120766572206f7520706f73746172206e657374652066f372756d2e, 'Y', '2016-08-06 20:48:44'),
(1919, 40, 0x4e6f206361736f20646520766f63ea20706f737375697220756d20656e64657265e76f20656c657472f46e69636f2028656d61696c2920636f6e666967757261646f206e612073756120636f6e74612c20766f63ea20706f646520676572617220756d206e6f766f2c20656e766961646f206120766f63ea20636f6d3a202573, 'Y', '2014-07-21 21:52:53'),
(2733, 40, 0x4f7320696473206465206a6f6761646f7220657374e36f2065727261646f7320706172612065737461206f70657261e7e36f2e20506f72206661766f722c20656e76696520657374652070726f626c656d612070617261206f207375706f7274652e, 'Y', '2016-08-06 20:50:56'),
(2734, 40, 0x44657363756c70652c206f20447261676f6e20476f2053657276657220657374e1206465736174697661646f2070617261206d616e7574656ee7e36f2e, 'Y', '2014-07-21 21:52:53'),
(2736, 40, 0x41206174697669646164652064612073756120636f6e746120666f69206578636573736976612e20556d6120726573747269e7e36f2074656d706f72e17269612064652061636573736f20657374e120617469766164612e, 'Y', '2014-07-21 21:52:53'),
(2738, 40, 0x44657363756c70652c206f206a6f676f20657374e1206e756d61207369747561e7e36f2065727261646120706172612073652066617a65722065737361206f70657261e7e36f2e, 'Y', '2014-07-21 21:52:53'),
(2741, 40, 0x44657363756c70652c20657374e12066616c74616e646f206120636f6e666967757261e7e36f20646f206a6f676f2070617261206f20636f6e766974652e20506f72206661766f722c206176697365206f207375706f72746520736f627265206973736f2e, 'Y', '2014-07-21 21:52:53'),
(2743, 40, 0x44657363756c70652c206f206c696d69746520646f2073657520616476657273e172696f20656d206a6f676f7320617469766f7320636865676f75206e6f206c696d6974652e, 'Y', '2014-07-21 21:52:53'),
(2744, 40, 0x44657363756c70652c206f20736575206c696d697465206465206a6f676f7320617469766f73206e6f20746f726e65696f20636865676f7520616f206c696d6974652e, 'Y', '2014-07-21 22:10:43'),
(2745, 40, 0x4f206c696d697465206465206a6f676f7320646520746f726e65696f20646f7320757375e172696f7320636865676f7520616f206c696d6974652e, 'Y', '2014-07-21 22:10:43'),
(2748, 40, 0x412076616e746167656d20657374e120666f726120646f73206c696d697465732c20706f72206661766f72206573636f6c686120756d2076616c6f72206d6169732072617a6fe176656c2e, 'Y', '2014-07-21 22:10:43'),
(2749, 40, 0x44657363756c70652c20616c6775e96d206d75646f75206f73206461646f732071756520766f63ea20657374617661207072657374657320612073616c7661722028636f6e666c69746f206f74696d6973746120646520656469e7e36f292e20506f72206661766f722c20726563617272656775652065206661e761206e6f76616d656e74652073756173206d7564616ee76173207061726120617475616c697a61722e, 'Y', '2014-07-21 22:10:43'),
(2750, 40, 0x556d61206e6f76612073656e6861206ae120666f6920656e76696164612070617261206573746520757375e172696f2e20506f72206661766f72207573652d6120616f20696e76e97320646520656e76696172206d616973206f757472612e, 'Y', '2016-08-06 20:52:06'),
(2752, 40, 0x44657363756c70652c206e656e68756d20656e64657265e76f20656c657472f46e69636f20666f69206461646f2c20706f72206973736f206ee36f20706f73736f20746520656e7669617220612073656e68612e, 'Y', '2014-07-21 22:10:43'),
(2753, 40, 0x44657363756c70652c206f20656e64657265e76f206461646f206ee36f20706172656365207365722076e16c69646f2e20506f72206661766f722c20636f6e7365727465206572726f7320646520646967697461e7e36f206f752074656e7465206f7574726f20656e64657265e76f2e, 'Y', '2014-07-21 22:10:43'),
(2754, 40, 0x44657363756c70652c206f636f7272657520756d206572726f20616f20656e766961722061206d656e736167656d2e, 'Y', '2014-07-21 22:10:43'),
(2755, 40, 0x44657363756c70652c20766f63ea207072656369736120636f6e6669677572617220736575206eed76656c207061726120636f6d65e7617220756d206a6f676f206dfa6c7469706c6f2e, 'Y', '2014-07-21 22:10:43'),
(2756, 40, 0x44657363756c70652c206ee36f20706f73736f20656e636f6e74726172206e656e68756d206a6f6761646f722070617261206f206a6f676f206dfa6c7469706c6f2e, 'Y', '2014-07-21 22:10:43'),
(677, 40, 0x4eed7665697320447261676f6e2c202244475320726174696e67222065206f7574726f73, 'Y', '2014-07-23 04:26:59'),
(688, 40, 0x4f2071756520e920756d206a6f676f206475706c6f3f, 'Y', '2014-07-23 04:26:59'),
(694, 40, 0x4f207175652073e36f206a6f676f73206f627365727661646f733f, 'Y', '2014-07-23 04:26:59'),
(983, 40, 0x4f207175652073e36f20706173746173206465206d656e736167656e733f, 'Y', '2014-07-23 04:26:59'),
(1158, 40, 0x506f722071756520636f6f6b6965732073e36f206e6563657373e172696f733f, 'Y', '2014-07-23 04:26:59'),
(1314, 40, 0x4f20447261676f6e20476f205365727665722074656d207375706f7274652061205741503f, 'Y', '2014-07-23 04:26:59'),
(1316, 40, 0x4f20447261676f6e20476f205365727665722074656d207375706f7274652061205253533f, 'Y', '2014-07-23 04:26:59'),
(1678, 40, 0x436f6d6f20706f73736f20627573636172206a6f676f733f, 'Y', '2014-07-23 04:26:59'),
(1742, 40, 0x466f726d617461e7e36f20652063f36469676f7320447261676f6e, 'Y', '2014-07-23 04:26:59'),
(1749, 40, 0x456e73696e6f206520726f62f47320447261676f6e, 'N', '2014-07-23 04:26:59'),
(1750, 40, 0x4f2071756520e9202254686520476f2054656163686572222028224f2050726f666573736f7220646520476f22293f, 'Y', '2014-07-23 04:27:50'),
(1893, 40, 0x4a6f676164612074e17469636120686162696c69646f73612e, 'Y', '2014-07-23 06:33:19'),
(1908, 40, 0x436f6d6f20706f73736f206669636172206d61697320666f7274652c2061756d656e746172206d6575206eed76656c3f, 'Y', '2014-07-23 06:33:19'),
(2468, 40, 0x4d756461722074616d616e686f20646f20746162756c6569726f, 'Y', '2014-07-23 06:33:19'),
(2482, 40, 0x416c7465726e6172204d61726361646f722043697263756c6172, 'Y', '2014-07-23 06:33:19'),
(2483, 40, 0x416c7465726e6172204d61726361646f7220517561647261646f, 'Y', '2014-07-23 06:33:19'),
(2485, 40, 0x416c7465726e6172204d61726361646f7220656d2058, 'Y', '2014-07-23 06:33:19'),
(2492, 40, 0x416c7465726e6172204d61726361206465204c65747261, 'Y', '2014-07-23 06:33:19'),
(3474, 40, 0x53616c7661722044697265746f7220646520546f726e65696f, 'Y', '2014-07-23 06:33:19'),
(3477, 40, 0x456469746f722064652054726176617320646520546f726e65696f, 'Y', '2014-07-23 06:33:19'),
(3487, 40, 0x4e6f7461732064652074726176617320646520746f726e65696f, 'Y', '2014-07-23 06:33:19'),
(3492, 40, 0x456469746f72206465204e6f74ed6369617320646520546f726e65696f, 'Y', '2014-07-23 06:35:39'),
(3511, 40, 0x4578697374656d20616c67756e7320617669736f73, 'Y', '2014-07-23 06:35:39'),
(3589, 40, 0x52656772617320646520546f726e65696f2073616c76617321, 'Y', '2014-07-23 06:35:39'),
(3590, 40, 0x456469746f722064652052656772617320646520546f726e65696f, 'Y', '2014-07-23 06:35:39'),
(3591, 40, 0x53616c7661722052656772617320646f20546f726e65696f, 'Y', '2014-07-23 06:35:39'),
(3603, 40, 0x5369747561e7e36f20646f20546f726e65696f2073616c766121, 'Y', '2014-07-23 06:35:39'),
(3604, 40, 0x456469746f72206465205369747561e7e36f20646520546f726e65696f, 'Y', '2014-07-23 06:35:39'),
(3612, 40, 0x436f6e6669726d6172206d7564616ee761206465207369747561e7e36f, 'Y', '2014-07-23 06:35:39'),
(3613, 40, 0x4e6f746173206465205369747561e7e36f20646f20546f726e65696f, 'Y', '2014-07-23 06:35:39'),
(3639, 40, 0x4573636f706f20646520746f726e65696f20646573636f6e68656369646f, 'Y', '2014-07-23 06:35:39'),
(710, 40, 0x4f6e646520706f73736f20617072656e6465722061206a6f67617220476f3f, 'Y', '2014-08-08 00:58:26'),
(975, 40, 0x436f6d6f206661e76f207072612061636573736172206d696e686120636f6e74613f, 'Y', '2014-08-08 00:58:26'),
(981, 40, 0x4f207175652073e36f206d656e736167656e732070726976616461733f, 'Y', '2014-08-08 00:58:26'),
(1001, 40, 0x436f6d6f206f20444753206d61726361206f2074656d706f3f, 'Y', '2014-08-08 00:58:26'),
(1004, 40, 0x436f6d6f206e6f7320636f6d706f72746172206e6f207365727669646f723f, 'Y', '2014-08-08 00:58:26'),
(1038, 40, 0x506f73736f206f6274657220616a75646120647572616e746520756d206a6f676f3f, 'Y', '2014-08-08 00:58:26'),
(1132, 40, 0x5175616973206173206d7564616ee7617320646120fa6c74696d6120617475616c697a61e7e36f3f, 'Y', '2014-08-08 00:58:26'),
(1156, 40, 0x4f207175652073e36f206173206e6f746966696361e7f5657320706f72206d656e736167656d3f, 'Y', '2014-08-08 00:58:26'),
(1311, 40, 0x496e746572666163657320616c7465726e61746976617320646f20444753, 'Y', '2014-08-08 00:58:26'),
(1330, 40, 0x4f2071756520e920756d6120627573636120706f7220746578746f2d636f6d706c65746f3f, 'Y', '2014-08-08 00:58:26'),
(4944, 40, 0x4f627365727661e7f56573206465737465206465736166696f, 'Y', '2016-08-06 20:54:30'),
(4019, 40, 0x4465736166696172205061727469636970616e7465, 'Y', '2014-08-09 09:32:20'),
(4999, 40, 0x53756120636f6c6f6361e7e36f20617475616c20e92025732e, 'Y', '2014-08-09 09:34:04'),
(5000, 40, 0x537561206d656c686f7220636f6c6f6361e7e36f20666f692025732e, 'Y', '2014-08-09 09:34:42'),
(4942, 40, 0x506f72206661766f7220636f6e6669726d652071756520766f63ea20717565722064657361666961722065737465207061727469636970616e746521, 'Y', '2016-08-06 20:54:30'),
(5005, 40, 0x4465736166696172, 'Y', '2014-08-09 09:47:36'),
(5006, 40, 0x4ae12064657361666961646f2025732076657a6573, 'Y', '2014-08-09 09:48:26'),
(6071, 40, 0x562e20432e, 'Y', '2014-08-09 12:41:55'),
(6070, 40, 0x4de1782e206465205669742e20436f6e736563757469766173, 'Y', '2014-08-09 12:41:55'),
(3643, 40, 0x446573637269e7e36f20646f20746f726e65696f2076617a6961206f752062726576652064656d616973, 'Y', '2014-08-12 06:50:41'),
(4437, 40, 0x446573637269e7e36f20646f20546f726e65696f, 'Y', '2014-08-12 06:50:41'),
(6072, 40, 0x53616ce36f2064612046616d6120646f20546f726e65696f, 'Y', '2014-08-12 08:34:26'),
(4435, 40, 0x457373612070e167696e6120636f6e74e96d20746f6461206120696e666f726d61e7e36f206e6563657373e17269612065206d65696f732064652061636573736f2070617261207061727469636970617220646f20746f726e65696f2e, 'Y', '2014-08-12 08:24:15'),
(4436, 40, 0x4578697374656d20616c67756d617320e1726561733a, 'Y', '2014-08-12 08:25:12'),
(4443, 40, 0x5175616e646f20766f63ea20746976657220756d612070657267756e746120736f627265206f20746f726e65696f2c20706f72206661766f7220656e76696520756d61206d656e736167656d207061726120756d20646f7320736575732064697265746f7265732e204f75206661e76120612070657267756e74612028656d20696e676cea732c20646520707265666572ea6e63696129206e6f203c686f6d6520666f72756d2f696e6465782e7068703e46f372756d20646520546f726e65696f733c2f686f6d653e2e, 'Y', '2014-08-12 08:32:38'),
(5830, 40, 0x546f646f73206f7320726573756c7461646f7320646f20746f726e65696f, 'Y', '2014-08-12 08:54:44'),
(5956, 40, 0x4d65757320726573756c7461646f73206e6f20746f726e65696f, 'Y', '2014-08-12 08:55:08'),
(6084, 40, 0x4a6f676164617320636f6e646963696f6e616973, 'Y', '2014-09-16 16:12:02'),
(6085, 40, 0x4d6f7374726172, 'Y', '2014-09-16 16:12:02'),
(6086, 40, 0x456469746172, 'Y', '2014-09-16 16:12:02'),
(6087, 40, 0x41646963696f6e6172, 'Y', '2014-09-16 16:12:02'),
(6094, 40, 0x53657175ea6e636961, 'Y', '2014-09-16 16:12:02'),
(6095, 40, 0x4564697461722073657175ea6e636961, 'Y', '2014-09-16 16:12:02'),
(6096, 40, 0x5661726961e7f56573, 'Y', '2014-09-16 16:12:02'),
(6098, 40, 0x5369747561e7e36f, 'Y', '2014-09-16 16:12:02'),
(6099, 40, 0x417472696275746f73, 'Y', '2014-09-16 16:12:02'),
(6102, 40, 0x417469766172, 'Y', '2014-09-16 16:12:02'),
(6123, 40, 0x44657361746976616461, 'Y', '2014-09-16 16:15:17'),
(6124, 40, 0x4174697661, 'Y', '2014-09-16 16:15:17'),
(6125, 40, 0x496c6567616c, 'Y', '2014-09-16 16:15:17'),
(6127, 40, 0x4465737669616461, 'Y', '2014-09-16 16:15:17'),
(6128, 40, 0x5465726d696e616461, 'Y', '2014-09-16 16:15:17'),
(6136, 40, 0x4b6f2070726f696269646f, 'Y', '2014-09-16 16:15:17'),
(6141, 40, 0x43726961646f202843726f6e29, 'Y', '2014-09-16 16:15:17'),
(6142, 40, 0x43524f4e, 'Y', '2014-09-16 16:15:17'),
(6154, 40, 0x416e756c61646f, 'Y', '2014-09-16 16:15:17'),
(6155, 40, 0x42, 'Y', '2014-09-16 16:15:17'),
(6156, 40, 0x50, 'Y', '2014-09-16 16:18:15'),
(6157, 40, 0x4465736973746972, 'Y', '2015-05-03 19:51:39'),
(6158, 40, 0x54656d706f, 'Y', '2014-09-16 16:18:15'),
(6159, 40, 0x416e756c61646f, 'Y', '2014-09-16 16:18:15'),
(6174, 40, 0x44697265746f72, 'Y', '2014-09-16 16:18:15'),
(6175, 40, 0x43f36469676f, 'Y', '2014-09-16 16:18:15'),
(6176, 40, 0x436f646966696361e7e36f, 'Y', '2014-09-16 16:18:15'),
(5422, 6, 0x486179202573206669636865726f732053474620646973706f6e69626c65732070617261206465736361726761722e, 'Y', '2014-09-18 22:44:23'),
(5587, 6, 0x656e7669617220756e6120696e766974616369f36e206465206a7565676f2061206f74726f206a756761646f72, 'Y', '2014-09-18 22:44:23'),
(5588, 6, 0x6f667265636572206e756576617320706172746964617320656e206c612073616c6120646520657370657261, 'Y', '2014-09-18 22:44:23'),
(5589, 6, 0x6d6f7374726172206c6f7320666f726f732064652064697363757369f36e207920736f706f727465, 'Y', '2014-09-18 22:44:23'),
(5590, 6, 0x6d6f7374726172206c6f7320666f726f7320636f6e206e7565766f73206d656e73616a6573, 'Y', '2014-09-18 22:44:23'),
(5591, 6, 0x6d6f7374726172206c617320766f746163696f6e65732064652066756e63696f6e616c69646164, 'Y', '2014-09-18 22:44:23'),
(5592, 6, 0x766f74617220706f72206e75657661732066756e63696f6e616c696461646573, 'Y', '2014-09-18 22:44:23'),
(4943, 40, 0x436f6e6669726d6172206465736166696f, 'Y', '2014-09-26 22:03:58'),
(3798, 40, 0x53f320e9207065726d697469646f20756d206a6f676f20617469766f20706f7220616476657273e172696f2e, 'Y', '2014-09-26 22:18:01'),
(4854, 40, 0x53f320e9207065726d697469646f20756d206a6f676f20617469766f20706f7220616476657273e172696f2e, 'Y', '2014-09-26 22:18:01'),
(1, 41, 0x44657363756c70652c206e, 'Y', '2014-10-14 20:39:05'),
(2, 41, 0x44657363756c70652c206f206a6f676f206a, 'Y', '2014-10-14 20:39:05'),
(3, 41, 0x44657363756c70652c206f206a6f676f2061696e6461206e, 'Y', '2014-10-14 20:39:05'),
(7, 41, 0x44657363756c70652c20766f63, 'Y', '2014-10-14 20:39:05'),
(8, 41, 0x44657363756c70652c206e, 'Y', '2014-10-14 20:39:05'),
(9, 41, 0x44657363756c70652c20766f63, 'Y', '2014-10-14 20:39:05'),
(12, 41, 0x4120636f6e6578, 'Y', '2014-10-14 20:39:05'),
(13, 41, 0x46616c686120616f20617061676172206f206a6f676f2e204973736f2070726f766176656c6d656e7465206e, 'Y', '2014-10-14 20:39:05'),
(14, 41, 0x44657363756c70652c207061726563652071756520686f75766520756d612066616c686120616f2061646963696f6e61722061206d656e736167656d206e6f2062616e636f206465206461646f732e, 'Y', '2014-10-14 20:39:05'),
(15, 41, 0x44657363756c70652c207061726563652071756520686f75766520756d612066616c686120616f2061646963696f6e6172206f206a6f676f206e6f2062616e636f206465206461646f732e, 'Y', '2014-10-14 20:39:05'),
(16, 41, 0x4120696e736572, 'Y', '2014-10-14 20:39:05'),
(17, 41, 0x4120696e736572, 'Y', '2014-10-14 20:39:05'),
(18, 41, 0x436f6e73756c746120616f2062616e636f206465206461646f732066616c686f752e204167756172646520616c67756e73206d696e75746f7320652074656e7465206465206e6f766f2e, 'Y', '2014-10-14 20:39:05'),
(19, 41, 0x4e, 'Y', '2014-10-14 20:39:05'),
(20, 41, 0x44657363756c70652c206e, 'Y', '2014-10-14 20:39:05'),
(22, 41, 0x44657363756c70652c20766f63, 'Y', '2014-10-14 20:39:05'),
(27, 41, 0x44657363756c70652c20766f63, 'Y', '2014-10-14 20:39:05'),
(29, 41, 0x44657363756c70652c206973736f206e, 'Y', '2014-10-14 20:39:05'),
(32, 41, 0x44657363756c70652c206e, 'Y', '2014-10-14 20:39:05'),
(33, 41, 0x412073656e686120636f6e74, 'Y', '2014-10-14 20:39:05'),
(35, 41, 0x412073656e686120646520636f6e6669726d61, 'Y', '2014-10-14 20:39:05'),
(38, 41, 0x44657363756c70652c206573746f7520636f6d20756d2070726f626c656d6120636f6d206f206e, 'Y', '2014-10-14 20:39:05'),
(39, 41, 0x44657363756c70652c206573746f7520636f6d20756d2070726f626c656d6120636f6d206f206e, 'Y', '2014-10-14 20:39:05'),
(40, 41, 0x44657363756c70652c2065737361207065647261207465726961207365206d617461646f2c206d61732073756963, 'Y', '2014-10-14 20:39:05'),
(41, 41, 0x44657363756c70652c206e, 'Y', '2014-10-14 20:39:05'),
(42, 41, 0x44657363756c70652c206e, 'Y', '2014-10-14 20:39:05'),
(43, 41, 0x45737472616e686f2c2065737361206d656e736167656d207061726563652073657220726573706f73746120646520756d612064697363757373, 'Y', '2014-10-14 20:39:05'),
(44, 41, 0x44657363756c70652c206e, 'Y', '2014-10-14 20:39:05'),
(45, 41, 0x44657363756c70652c206e, 'Y', '2014-10-14 20:39:05'),
(46, 41, 0x44657363756c70652c206573736520494420646520757375, 'Y', '2014-10-14 20:39:05'),
(48, 41, 0x4e, 'Y', '2014-10-14 20:39:05'),
(49, 41, 0x44657363756c70652c20766f63, 'Y', '2014-10-14 20:39:05'),
(50, 41, 0x44657363756c70652c206e, 'Y', '2014-10-14 20:39:05'),
(51, 41, 0x44657363756c70652c20766f63, 'Y', '2014-10-14 20:39:05'),
(52, 41, 0x44657363756c70652c20766f63, 'Y', '2014-10-14 20:39:05'),
(54, 41, 0x44657363756c70652c20766f63, 'Y', '2014-10-14 20:39:05'),
(55, 41, 0x5469706f206465206e, 'Y', '2014-10-14 20:39:05'),
(56, 41, 0x44657363756c70652c206e, 'Y', '2014-10-14 20:39:05'),
(57, 41, 0x44657363756c70652c206f20736575206e, 'Y', '2014-10-14 20:39:05'),
(58, 41, 0x44657363756c70652c20766f63, 'Y', '2014-10-14 20:39:05'),
(59, 41, 0x44657363756c70652c206170656e6173207472616475746f72657320706f64656d2074726164757a69722e, 'Y', '2014-10-14 20:39:05'),
(60, 41, 0x536520766f63, 'Y', '2014-10-14 20:39:05'),
(61, 41, 0x44657363756c70652c20766f63, 'Y', '2014-10-14 20:39:05'),
(63, 41, 0x44657363756c70652c206f636f7272657520616c67756d2070726f626c656d6120616f20696e7365726972206173206e6f766173207472616475, 'Y', '2014-10-14 20:39:05'),
(66, 41, 0x44657363756c70652c20657374612070, 'Y', '2014-10-14 20:39:05'),
(69, 41, 0x44657363756c70652c206e, 'Y', '2014-10-14 20:39:05'),
(75, 41, 0x44657363756c70652c206e, 'Y', '2014-10-14 20:39:05'),
(80, 41, 0x4163657373616e646f20636f6d6f, 'Y', '2014-10-14 20:39:05'),
(81, 41, 0x4e, 'Y', '2014-10-14 20:39:05'),
(82, 41, 0x5369747561, 'Y', '2014-10-14 20:39:05'),
(83, 41, 0x53616c6120646520657370657261, 'Y', '2014-10-14 20:39:05'),
(84, 41, 0x50657266696c, 'Y', '2014-10-14 20:39:05'),
(85, 41, 0x4d656e736167656e73, 'Y', '2014-10-14 20:39:05'),
(86, 41, 0x456e7669617220756d61206d656e736167656d, 'Y', '2014-10-14 20:39:05'),
(87, 41, 0x436f6e7669646172, 'Y', '2014-10-14 20:39:05'),
(88, 41, 0x557375, 'Y', '2014-10-14 20:39:05'),
(89, 41, 0x4a6f676f73, 'Y', '2014-10-14 20:39:05'),
(90, 41, 0x54726164757a6972, 'Y', '2014-10-14 20:39:05'),
(91, 41, 0x46, 'Y', '2014-10-14 20:39:05'),
(92, 41, 0x464151, 'Y', '2014-10-14 20:39:05'),
(93, 41, 0x4d6170612064612070, 'Y', '2014-10-14 20:39:05'),
(94, 41, 0x446f63756d656e7461, 'Y', '2014-10-14 20:39:05'),
(95, 41, 0x50, 'Y', '2014-10-14 20:39:05'),
(96, 41, '', 'Y', '2014-10-14 20:39:05'),
(97, 41, 0x53616972, 'Y', '2014-10-14 20:39:05'),
(98, 41, 0x646961, 'Y', '2014-10-14 20:39:05'),
(99, 41, 0x646961287329, 'Y', '2014-10-14 20:39:05'),
(100, 41, 0x65, 'Y', '2014-10-14 20:39:05'),
(101, 41, 0x686f7261, 'Y', '2014-10-14 20:39:05'),
(102, 41, 0x686f7261287329, 'Y', '2014-10-14 20:39:05'),
(103, 41, 0x73656d2062796f796f6d69, 'Y', '2014-10-14 20:39:05'),
(104, 41, 0x636f6d20257320657874726120706f72206a6f67616461, 'Y', '2014-10-14 20:39:05'),
(106, 41, 0x42796f796f6d69206a61706f6e, 'Y', '2014-10-14 20:39:05'),
(107, 41, 0x7065, 'Y', '2014-10-14 20:39:05'),
(108, 41, 0x42796f796f6d692063616e6164656e7365, 'Y', '2014-10-14 20:39:05'),
(109, 41, 0x4a6f676f2061646963696f6e61646f21, 'Y', '2014-10-14 20:39:05'),
(122, 41, 0x526573706f6e646572, 'Y', '2014-10-14 20:39:05'),
(127, 41, 0x656469746172, 'Y', '2014-10-14 20:39:05'),
(128, 41, 0x4d6f76657220706172612063696d61, 'Y', '2014-10-14 20:39:05'),
(129, 41, 0x4d6f766572207061726120626169786f, 'Y', '2014-10-14 20:39:05'),
(132, 41, 0x4944, 'Y', '2014-10-14 20:39:05'),
(134, 41, 0x4e6f6d65, 'Y', '2014-10-14 20:39:05'),
(135, 41, 0x5472616475746f726573, 'Y', '2014-10-14 20:39:05'),
(136, 41, 0x46, 'Y', '2014-10-14 20:39:05'),
(156, 41, 0x42696f67726166696120617475616c697a61646121, 'Y', '2014-10-14 20:39:05'),
(157, 41, 0x53656e6861206d756461646121, 'Y', '2014-10-14 20:39:05'),
(158, 41, 0x50657266696c20617475616c697a61646f21, 'Y', '2014-10-14 20:39:05'),
(159, 41, 0x446f63756d656e7461, 'Y', '2014-10-14 20:39:05'),
(160, 41, 0x496e74726f6475, 'Y', '2014-10-14 20:39:05'),
(161, 41, 0x50657267756e746173204672657175656e746573, 'Y', '2014-10-14 20:39:05'),
(163, 41, 0x506573736f6173, 'Y', '2014-10-14 20:39:05'),
(164, 41, 0x5175656d20636f6e7472696275692070617261206f20447261676f6e, 'Y', '2014-10-14 20:39:05'),
(165, 41, 0x5669736974652074616d62, 'Y', '2014-10-14 20:39:05'),
(168, 41, 0x496e73747275, 'Y', '2014-10-14 20:39:05'),
(169, 41, 0x536520766f63, 'Y', '2014-10-14 20:39:05'),
(170, 41, 0x426169786172206f2063, 'Y', '2014-10-14 20:39:05'),
(173, 41, 0x50, 'Y', '2014-10-14 20:39:05'),
(175, 41, 0x4f7574726f3a, 'Y', '2014-10-14 20:39:05'),
(176, 41, 0x5061, 'Y', '2014-10-14 20:39:05'),
(177, 41, 0x436964616465, 'Y', '2014-10-14 20:39:05'),
(178, 41, 0x45737461646f, 'Y', '2014-10-14 20:39:05'),
(179, 41, 0x436c756265, 'Y', '2014-10-14 20:39:05'),
(180, 41, 0x50, 'Y', '2014-10-14 20:39:05'),
(181, 41, 0x456e64657265, 'Y', '2014-10-14 20:39:05'),
(182, 41, 0x4e, 'Y', '2014-10-14 20:39:05'),
(183, 41, 0x507265666572, 'Y', '2014-10-14 20:39:05'),
(184, 41, 0x506173736174656d706f73, 'Y', '2014-10-14 20:39:05'),
(185, 41, 0x4f63757061, 'Y', '2014-10-14 20:39:05'),
(187, 41, 0x4d756461722062696f677261666961, 'Y', '2014-10-14 20:39:05'),
(188, 41, 0x4d756461722073656e6861, 'Y', '2014-10-14 20:39:05'),
(189, 41, 0x53656e68612076656c6861, 'Y', '2014-10-14 20:39:05'),
(190, 41, 0x53656e6861206e6f7661, 'Y', '2014-10-14 20:39:05'),
(191, 41, 0x436f6e6669726d6520612073656e6861, 'Y', '2014-10-14 20:39:05'),
(192, 41, 0x4d756461722073656e6861, 'Y', '2014-10-14 20:39:05'),
(193, 41, 0x4465736174697661646f73, 'Y', '2014-10-14 20:39:05'),
(194, 41, 0x4170656e617320617669736f73, 'Y', '2014-10-14 20:39:05'),
(195, 41, 0x4a6f67616461732065206d656e736167656e73, 'Y', '2014-10-14 20:39:05'),
(196, 41, 0x546162756c6569726f20636f6d706c65746f2065206d656e736167656e73, 'Y', '2014-10-14 20:39:05'),
(197, 41, 0x566572746963616c, 'Y', '2014-10-14 20:39:05'),
(198, 41, 0x486f72697a6f6e74616c, 'Y', '2014-10-14 20:39:05'),
(199, 41, 0x45646974617220636f6e666967757261, 'Y', '2014-10-14 20:39:05'),
(200, 41, 0x436f6e666967757261, 'Y', '2014-10-14 20:39:05'),
(201, 41, 0x557375, 'Y', '2014-10-14 20:39:05'),
(202, 41, 0x4e6f6d6520636f6d706c65746f, 'Y', '2014-10-14 20:39:05'),
(204, 41, 0x496e666f726d61, 'Y', '2014-10-14 20:39:05'),
(205, 41, 0x4e, 'Y', '2014-10-14 20:39:05'),
(206, 41, 0x417669736f7320706f7220656d61696c, 'Y', '2014-10-14 20:39:05'),
(207, 41, 0x5573617220636f6e666967757261, 'Y', '2014-10-14 20:39:05'),
(208, 41, 0x4964696f6d61, 'Y', '2014-10-14 20:39:05'),
(209, 41, 0x4675736f20686f72, 'Y', '2014-10-14 20:39:05'),
(210, 41, 0x4e6f697465, 'Y', '2014-10-14 20:39:05'),
(211, 41, 0x496d6167656e7320646f20746162756c6569726f, 'Y', '2014-10-14 20:39:05'),
(212, 41, 0x54616d616e686f206461207065, 'Y', '2014-10-14 20:39:05'),
(213, 41, 0x436f72206461206d616465697261, 'Y', '2014-10-14 20:39:05'),
(214, 41, 0x436f6f7264656e61646173206c61746572616973, 'Y', '2014-10-14 20:39:05'),
(215, 41, 0x4573717565726461, 'Y', '2014-10-14 20:39:05'),
(216, 41, 0x4163696d61, 'Y', '2014-10-14 20:39:05'),
(217, 41, 0x44697265697461, 'Y', '2014-10-14 20:39:05'),
(218, 41, 0x41626169786f, 'Y', '2014-10-14 20:39:05'),
(219, 41, 0x546162756c6569726f20636f6d2062656972616461207375617665, 'Y', '2014-10-14 20:39:05'),
(220, 41, 0x44697265, 'Y', '2014-10-14 20:39:05'),
(222, 41, 0x416c74657261722070657266696c, 'Y', '2014-10-14 20:39:05'),
(223, 41, 0x457371756563657520612073656e68613f, 'Y', '2014-10-14 20:39:05'),
(225, 41, 0x446573697374, 'Y', '2014-10-14 20:39:05'),
(226, 41, 0x50617373616e646f20612076657a, 'Y', '2014-10-14 20:39:05'),
(227, 41, 0x41706167616e646f206f206a6f676f, 'Y', '2014-10-14 20:39:05'),
(229, 41, 0x506c61636172, 'Y', '2014-10-14 20:39:05'),
(230, 41, 0x4a6f676f, 'Y', '2014-10-14 20:39:05'),
(231, 41, 0x506173736172, 'Y', '2014-10-14 20:39:05'),
(232, 41, 0x417061676172206a6f676f, 'Y', '2014-10-14 20:39:05'),
(233, 41, 0x5465726d696e61646f, 'Y', '2014-10-14 20:39:05'),
(234, 41, 0x566f6c7461722061206a6f676172, 'Y', '2014-10-14 20:39:05'),
(235, 41, 0x4465736973746972, 'Y', '2014-10-14 20:39:05'),
(236, 41, 0x42616978617220534746, 'Y', '2014-10-14 20:39:05'),
(237, 41, 0x5072, 'Y', '2014-10-14 20:39:05'),
(238, 41, 0x52657469726172206461206c69737461206465206f627365727661, 'Y', '2014-10-14 20:39:05'),
(239, 41, 0x41646963696f6e6172206e61206c69737461206465206f627365727661, 'Y', '2014-10-14 20:39:05'),
(240, 41, 0x496e, 'Y', '2014-10-14 20:39:05'),
(242, 41, 0x506f72206661766f722c2073696e74612d736520, 'Y', '2014-10-14 20:39:05'),
(243, 41, 0x456e74726520706f72206661766f722e, 'Y', '2014-10-14 20:39:05'),
(244, 41, 0x3c62723e44, 'Y', '2014-10-14 20:39:05'),
(245, 41, 0x53656e6861, 'Y', '2014-10-14 20:39:05'),
(246, 41, 0x456e74726172, 'Y', '2014-10-14 20:39:05'),
(247, 41, 0x4372696172206e6f766120636f6e7461, 'Y', '2014-10-14 20:39:05'),
(248, 41, 0x496e74726f6475, 'Y', '2014-10-14 20:39:05'),
(252, 41, 0x42656d2076696e646f206465206e6f766f2c2065206170726f7665697465207375612076697369746121, 'Y', '2014-10-14 20:39:05'),
(253, 41, 0x4a6f676f206170616761646f21, 'Y', '2014-10-14 20:39:05'),
(254, 41, 0x436f6e766974652061636569746f21, 'Y', '2014-10-14 20:39:05'),
(256, 41, 0x496e662e20476572616c, 'Y', '2014-10-14 20:39:05'),
(257, 41, 0x50, 'Y', '2014-10-14 20:39:05'),
(258, 41, 0x4d7569746120696e666f726d61, 'Y', '2014-10-14 20:39:05'),
(259, 41, 0x46415120646520476f, 'Y', '2014-10-14 20:39:05'),
(260, 41, 0x50657267756e746173206672657175656e74657320736f62726520676f206e6f20677275706f206465206e6f74, 'Y', '2014-10-14 20:39:05'),
(265, 41, 0x4269626c696f7465636120646f2053656e736569, 'Y', '2014-10-14 20:39:05'),
(266, 41, 0x556d612070, 'Y', '2014-10-14 20:39:05'),
(267, 41, 0x4e6f74, 'Y', '2014-10-14 20:39:05'),
(271, 41, '', 'Y', '2014-10-14 20:39:05'),
(272, 41, 0x556d206d616e67, 'Y', '2014-10-14 20:39:05'),
(273, 41, 0x5265677261, 'Y', '2014-10-14 20:39:05'),
(274, 41, 0x556d6120496e74726f6475, 'Y', '2014-10-14 20:39:05'),
(275, 41, 0x4573736120, 'Y', '2014-10-14 20:39:05'),
(276, 41, 0x496e74726f6475, 'Y', '2014-10-14 20:39:05'),
(281, 41, 0x5465726d6f73206520657374726174, 'Y', '2014-10-14 20:39:05'),
(283, 41, 0x50726f626c656d617320646520476f, 'Y', '2014-10-14 20:39:05'),
(284, 41, 0x4573747564616e646f20657373657320706f646520616a7564617220636f6d2073657573206a6f676f732e, 'Y', '2014-10-14 20:39:05'),
(285, 41, 0x436f6d756e696461646520646520456e73696e6f20646520476f, 'Y', '2014-10-14 20:39:05'),
(286, 41, 0x456e7669652073657573206a6f676f73207061726120736572656d20636f6d656e7461646f732e20566f63, 'Y', '2014-10-14 20:39:05'),
(287, 41, 0x5465726d6f73206a61706f6e6573657320636f6d756e73, 'Y', '2014-10-14 20:39:05'),
(288, 41, 0x566f63, 'Y', '2014-10-14 20:39:05'),
(291, 41, 0x48697374, 'Y', '2014-10-14 20:39:05'),
(292, 41, 0x556d612042726576652048697374, 'Y', '2014-10-14 20:39:05'),
(293, 41, 0x5061726120706573736f6173206d6169732061707265737361646173, 'Y', '2014-10-14 20:39:05'),
(294, 41, 0x41204c6f6e67612048697374, 'Y', '2014-10-14 20:39:05'),
(295, 41, 0x53652073756120696e74656e, 'Y', '2014-10-14 20:39:05'),
(296, 41, 0x4c6976726f732c206571756970616d656e746f7320652070726f6772616d617320646520476f, 'Y', '2014-10-14 20:39:05'),
(297, 41, 0x4269626c696f6772616669617320646520476f, 'Y', '2014-10-14 20:39:05'),
(298, 41, 0x556d61206772616e646520636f6c65, 'Y', '2014-10-14 20:39:05'),
(299, 41, 0x4c6f6a61206575726f70, 'Y', '2014-10-14 20:39:05'),
(300, 41, 0x4f7574726f73207365727669646f72657320646520676f, 'Y', '2014-10-14 20:39:05'),
(301, 41, 0x54616d62, 'Y', '2014-10-14 20:39:05'),
(303, 41, 0x556d206772616e6465207365727669646f722070617261206a6f676f7320656d2074656d706f207265616c, 'Y', '2014-10-14 20:39:05'),
(305, 41, 0x4c69737461206465207365727669646f726573, 'Y', '2014-10-14 20:39:05'),
(306, 41, 0x556d61206c69737461206d61697320636f6d706c657461206465207365727669646f726573, 'Y', '2014-10-14 20:39:05'),
(307, 41, 0x4c69737461206465206d656e736167656e73, 'Y', '2014-10-14 20:39:05'),
(308, 41, 0x50617261, 'Y', '2014-10-14 20:39:05'),
(309, 41, 0x496e64696361646f726573, 'Y', '2014-10-14 20:39:05'),
(310, 41, 0x4465, 'Y', '2014-10-14 20:39:05'),
(311, 41, 0x417373756e746f, 'Y', '2014-10-14 20:39:05'),
(312, 41, 0x44617461, 'Y', '2014-10-14 20:39:05'),
(314, 41, 0x4e6f7661, 'Y', '2014-10-14 20:39:05'),
(315, 41, 0x526573706f6e64696461, 'Y', '2014-10-14 20:39:05'),
(316, 41, 0x526573706f6e64657221, 'Y', '2014-10-14 20:39:05'),
(322, 41, 0x4f20636f6e76697465207061726120257365737365206a6f676f257320666f692061636569746f2e, 'Y', '2014-10-14 20:39:05'),
(323, 41, 0x4573736520636f6e7669746520666f692072656a65697461646f206f75206f206a6f676f20666f69206170616761646f2e, 'Y', '2014-10-14 20:39:05'),
(324, 41, 0x526573706f6e646572, 'Y', '2014-10-14 20:39:05'),
(325, 41, 0x4d656e736167656d, 'Y', '2014-10-14 20:39:05'),
(326, 41, 0x456e7669617220526573706f737461, 'Y', '2014-10-14 20:39:05'),
(327, 41, 0x4e6f7661206d656e736167656d, 'Y', '2014-10-14 20:39:05'),
(328, 41, 0x506172612028757375, 'Y', '2014-10-14 20:39:05'),
(329, 41, 0x456e76696172206d656e736167656d, 'Y', '2014-10-14 20:39:05'),
(330, 41, 0x4272616e636173, 'Y', '2014-10-14 20:39:05'),
(331, 41, 0x507265746173, 'Y', '2014-10-14 20:39:05'),
(332, 41, 0x446973637574697220726567726173, 'Y', '2014-10-14 20:39:05'),
(333, 41, 0x41636569746172, 'Y', '2014-10-14 20:39:05'),
(334, 41, 0x52656a6569746172, 'Y', '2014-10-14 20:39:05'),
(335, 41, 0x4d656e736167656d20646f20636f6e76697465, 'Y', '2014-10-14 20:39:05'),
(336, 41, 0x456e7669617220436f6e76697465, 'Y', '2014-10-14 20:39:05'),
(337, 41, 0x436f6c61626f7261646f72657320646f20447261676f6e, 'Y', '2014-10-14 20:39:05'),
(6326, 36, 0x6d696e64656e206ac3a174737a6d61206d75746174c3a17361, 'Y', '2015-07-23 11:52:07'),
(6327, 40, 0x50616472e36f, 'Y', '2015-07-17 20:28:59'),
(340, 41, 0x456469746f7220646f20464151, 'Y', '2014-10-14 20:39:05'),
(342, 41, 0x4772, 'Y', '2014-10-14 20:39:05'),
(343, 41, 0x44657363756c70652c2073656d206a6f676f7320612076616c657220737566696369656e746573207061726120646573656e68617220756d206772, 'Y', '2014-10-14 20:39:05'),
(344, 41, 0x496e73637269, 'Y', '2014-10-14 20:39:05'),
(345, 41, 0x506f72206661766f7220666f726e65, 'Y', '2014-10-14 20:39:05'),
(346, 41, 0x4d656e736167656d20656e766961646121, 'Y', '2014-10-14 20:39:05'),
(348, 41, 0x4a6f676f73207465726d696e61646f73, 'Y', '2014-10-14 20:39:05'),
(349, 41, 0x4a6f676f7320656d2070726f67726573736f, 'Y', '2014-10-14 20:39:05'),
(350, 41, 0x4a6f676f73207465726d696e61646f732070617261202573, 'Y', '2014-10-14 20:39:05'),
(351, 41, 0x4a6f676f7320656d2070726f67726573736f2070617261202573, 'Y', '2014-10-14 20:39:05'),
(352, 41, 0x736766, 'Y', '2014-10-14 20:39:05'),
(359, 41, 0x416476657273, 'Y', '2014-10-14 20:39:05'),
(360, 41, 0x436f72, 'Y', '2014-10-14 20:39:05'),
(361, 41, 0x54616d616e686f, 'Y', '2014-10-14 20:39:05'),
(362, 41, 0x56616e746167656d, 'Y', '2014-10-14 20:39:05'),
(363, 41, 0x4b6f6d69, 'Y', '2014-10-14 20:39:05'),
(364, 41, 0x4a6f6761646173, 'Y', '2014-10-14 20:39:05'),
(366, 41, 0x4176616c6961646f, 'Y', '2014-10-14 20:39:05'),
(368, 41, '', 'Y', '2014-10-14 20:39:05'),
(370, 41, 0x53696d, 'Y', '2014-10-14 20:39:05'),
(371, 41, 0x4e, 'Y', '2014-10-14 20:39:05'),
(372, 41, 0x4a69676f, 'Y', '2014-10-14 20:39:05'),
(373, 41, 0x436f6e76696461722065737365206a6f6761646f72, 'Y', '2014-10-14 20:39:05'),
(374, 41, 0x4d6f7374726172206a6f676f7320617475616973, 'Y', '2014-10-14 20:39:05'),
(375, 41, 0x4d6f7374726172206a6f676f73207465726d696e61646f73, 'Y', '2014-10-14 20:39:05'),
(377, 41, 0x50, 'Y', '2014-10-14 20:39:05'),
(378, 41, 0x4d657573206461646f7320646520757375, 'Y', '2014-10-14 20:39:05'),
(379, 41, 0x4564697461722062696f677261666961, 'Y', '2014-10-14 20:39:05'),
(380, 41, 0x4d6f7374726172206d656e736167656d, 'Y', '2014-10-14 20:39:05'),
(383, 41, 0x4c697374612064652064697363757373, 'Y', '2014-10-14 20:39:05'),
(384, 41, 0x4c65722066, 'Y', '2014-10-14 20:39:05'),
(385, 41, 0x4e6f76612064697363757373, 'Y', '2014-10-14 20:39:05'),
(388, 41, 0x446973706f6e, 'Y', '2014-10-14 20:39:05'),
(389, 41, 0x4e6f766173206d656e736167656e73, 'Y', '2014-10-14 20:39:05'),
(390, 41, '', 'Y', '2014-10-14 20:39:05'),
(391, 41, 0x4e656e68756d206a6f676f20656e636f6e747261646f, 'Y', '2014-10-14 20:39:05'),
(393, 41, 0x4461746120646120696e73637269, 'Y', '2014-10-14 20:39:05'),
(394, 41, '', 'Y', '2014-10-14 20:39:05'),
(395, 41, 0x496e666f726d61, 'Y', '2014-10-14 20:39:05'),
(396, 41, 0x456e76696172206d656e736167656d2070617261206f20757375, 'Y', '2014-10-14 20:39:05'),
(397, 41, 0x456d2070726f67726573736f, 'Y', '2014-10-14 20:39:05'),
(398, 41, 0x5465726d696e61646f73, 'Y', '2014-10-14 20:39:05'),
(399, 41, 0x56656e636575, 'Y', '2014-10-14 20:39:05'),
(400, 41, 0x506572646575, 'Y', '2014-10-14 20:39:05'),
(402, 41, 0x417469766964616465, 'Y', '2014-10-14 20:39:05'),
(406, 41, 0x436f6e76656e63696f6e616c, 'Y', '2014-10-14 20:39:05'),
(407, 41, 0x5072, 'Y', '2014-10-14 20:39:05'),
(408, 41, 0x4a6f676f20657175696c69627261646f20636f6d206e6967697269, 'Y', '2014-10-14 20:39:05'),
(409, 41, 0x4a6f676f206475706c6f, 'Y', '2014-10-14 20:39:05'),
(411, 41, 0x496e662e, 'Y', '2014-10-14 20:39:05'),
(412, 41, 0x436f6d656e74, 'Y', '2014-10-14 20:39:05'),
(414, 41, 0x4c696d6974652064652074656d706f, 'Y', '2014-10-14 20:39:05'),
(415, 41, 0x234a6f676f73, 'Y', '2014-10-14 20:39:05'),
(416, 41, 0x52656c, 'Y', '2014-10-14 20:39:05'),
(417, 41, 0x5061726563652065737461722076617a696f206e6f206d6f6d656e746f2e, 'Y', '2014-10-14 20:39:05'),
(419, 41, 0x736f6d656e7465202573, 'Y', '2014-10-14 20:39:05'),
(420, 41, 0x4e, 'Y', '2014-10-14 20:39:05'),
(421, 41, 0x64616e, 'Y', '2014-10-14 20:39:05'),
(422, 41, 0x6b7975, 'Y', '2014-10-14 20:39:05'),
(423, 41, 0x45786967697220616476657273, 'Y', '2014-10-14 20:39:05'),
(424, 41, 0x4361736f2073656a612c206e, 'Y', '2014-10-14 20:39:05'),
(425, 41, 0x41646963696f6e6172206a6f676f, 'Y', '2014-10-14 20:39:05'),
(426, 41, 0x4a6f6761646f72, 'Y', '2014-10-14 20:39:05'),
(427, 41, 0x4e, 'Y', '2014-10-14 20:39:05'),
(428, 41, 0x54656d706f207061737361206e6f2066696d2064652073656d616e61, 'Y', '2014-10-14 20:39:05'),
(429, 41, 0x417061676172, 'Y', '2014-10-14 20:39:05'),
(430, 41, 0x41636569746172, 'Y', '2014-10-14 20:39:05'),
(431, 41, 0x54616d616e686f20646f20746162756c6569726f, 'Y', '2014-10-14 20:39:05'),
(432, 41, 0x56616e746167656d20636f6e76656e63696f6e616c20286b6f6d6920, 'Y', '2014-10-14 20:39:05'),
(433, 41, 0x56616e746167656d207072, 'Y', '2014-10-14 20:39:05'),
(436, 41, 0x6d, 'Y', '2014-10-14 20:39:05'),
(437, 41, 0x54656d706f207072696e636970616c, 'Y', '2014-10-14 20:39:05'),
(439, 41, 0x636f6d, 'Y', '2014-10-14 20:39:05'),
(442, 41, 0x70617261, 'Y', '2014-10-14 20:39:05'),
(443, 41, 0x52656c, 'Y', '2014-10-14 20:39:05'),
(445, 41, 0x494420646f206a6f676f, 'Y', '2014-10-14 20:39:05'),
(446, 41, 0x436f726573, 'Y', '2014-10-14 20:39:05'),
(447, 41, 0x4e6967697269, 'Y', '2014-10-14 20:39:05'),
(449, 41, 0x6a61706f6e, 'Y', '2014-10-14 20:39:05');
INSERT INTO `Translations` (`Original_ID`, `Language_ID`, `Text`, `Translated`, `Updated`) VALUES
(450, 41, 0x257320706f72206a6f67616461206520257320706572, 'Y', '2014-10-14 20:39:05'),
(451, 41, 0x63616e6164656e7365, 'Y', '2014-10-14 20:39:05'),
(452, 41, 0x257320612063616461202573206a6f6761646173, 'Y', '2014-10-14 20:39:05'),
(453, 41, 0x657874726120706f72206a6f67616461, 'Y', '2014-10-14 20:39:05'),
(454, 41, 0x506f72206661766f722c20706f736963696f6e6520737561207065, 'Y', '2014-10-14 20:39:05'),
(455, 41, 0x456e7669617220652069722070617261206f207072, 'Y', '2014-10-14 20:39:05'),
(456, 41, 0x456e76696172206520697220706172612061207369747561, 'Y', '2014-10-14 20:39:05'),
(457, 41, 0x566f6c746172, 'Y', '2014-10-14 20:39:05'),
(458, 41, 0x50726973696f6e6569726f73, 'Y', '2014-10-14 20:39:05'),
(460, 41, 0x5072, 'Y', '2014-10-14 20:39:05'),
(461, 41, 0x50, 'Y', '2014-10-14 20:39:05'),
(462, 41, 0x41646963696f6e617220636f6c756e61, 'Y', '2014-10-14 20:39:05'),
(463, 41, 0x737565636f, 'Y', '2014-10-14 20:39:05'),
(464, 41, 0x6e6f7275656775, 'Y', '2014-10-14 20:39:05'),
(465, 41, 0x696e676c, 'Y', '2014-10-14 20:39:05'),
(466, 41, 0x616c656d, 'Y', '2014-10-14 20:39:05'),
(467, 41, 0x6672616e63, 'Y', '2014-10-14 20:39:05'),
(468, 41, 0x657370616e686f6c, 'Y', '2014-10-14 20:39:05'),
(469, 41, 0x74636865636f, 'Y', '2014-10-14 20:39:05'),
(470, 41, 0x6368696e, 'Y', '2014-10-14 20:39:05'),
(472, 41, 0x6368696e, 'Y', '2014-10-14 20:39:05'),
(473, 41, 0x686f6c616e64, 'Y', '2014-10-14 20:39:05'),
(474, 41, 0x45737365207469706f2064652061, 'Y', '2014-10-14 20:39:05'),
(475, 41, 0x4f206b6f6d6920657374, 'Y', '2014-10-14 20:39:05'),
(476, 41, 0x556d206572726f206f636f72726575206e65737361206a6f676164612e204e6f726d616c6d656e746520656c65206e, 'Y', '2014-10-14 20:39:05'),
(477, 41, 0x4e, 'Y', '2014-10-14 20:39:05'),
(478, 41, 0x4d61696f72657320696e666f726d61, 'Y', '2014-10-14 20:39:05'),
(479, 41, 0x7461696c616e64, 'Y', '2014-10-14 20:39:05'),
(484, 41, 0x6a616e, 'Y', '2014-10-14 20:39:05'),
(485, 41, 0x666576, 'Y', '2014-10-14 20:39:05'),
(486, 41, 0x616272, 'Y', '2014-10-14 20:39:05'),
(487, 41, 0x6d6169, 'Y', '2014-10-14 20:39:05'),
(488, 41, 0x6a756e, 'Y', '2014-10-14 20:39:05'),
(489, 41, 0x61676f, 'Y', '2014-10-14 20:39:05'),
(490, 41, 0x736574, 'Y', '2014-10-14 20:39:05'),
(491, 41, 0x6f7574, 'Y', '2014-10-14 20:39:05'),
(492, 41, 0x64657a, 'Y', '2014-10-14 20:39:05'),
(1479, 7, 0x4a6de96e6f, 'Y', '2016-07-20 16:20:15'),
(494, 41, 0x496e666f726d61, 'Y', '2014-10-14 20:39:05'),
(495, 41, 0x6d6172, 'Y', '2014-10-14 20:39:05'),
(496, 41, 0x6a756c, 'Y', '2014-10-14 20:39:05'),
(497, 41, 0x6e6f76, 'Y', '2014-10-14 20:39:05'),
(498, 41, 0x4465, 'Y', '2014-10-14 20:39:05'),
(499, 41, 0x4174, 'Y', '2014-10-14 20:39:05'),
(500, 41, 0x66696e6c616e64, 'Y', '2014-10-14 20:39:05'),
(501, 41, 0x507265666572, 'Y', '2014-10-14 20:39:05'),
(502, 41, 0x416c67756e73207465726d6f7320636f6d756e7320646f20476f, 'Y', '2014-10-14 20:39:05'),
(503, 41, 0x4469766572736f73, 'Y', '2014-10-14 20:39:05'),
(504, 41, 0x52656772617320646f20476f, 'Y', '2014-10-14 20:39:05'),
(505, 41, 0x6d6f6b75, 'Y', '2014-10-14 20:39:05'),
(506, 41, 0x556d20706f6e746f20646520746572726974, 'Y', '2014-10-14 20:39:05'),
(507, 41, 0x6b6f6d69, 'Y', '2014-10-14 20:39:05'),
(508, 41, 0x556d206e, 'Y', '2014-10-14 20:39:05'),
(509, 41, 0x4564756361, 'Y', '2014-10-14 20:39:05'),
(510, 41, 0x50726f626c656d61732065206572726f7320646f20447261676f6e, 'Y', '2014-10-14 20:39:05'),
(511, 41, 0x4d656e75732065206f70, 'Y', '2014-10-14 20:39:05'),
(512, 41, 0x4a6f676f7320646f20447261676f6e, 'Y', '2014-10-14 20:39:05'),
(513, 41, 0x446573656e766f6c76696d656e746f20646f20447261676f6e, 'Y', '2014-10-14 20:39:05'),
(514, 41, 0x4573746f75207065726469646f21204578697374656d2070726f626c656d617320656d20746f646f73206f73206c75676172657321, 'Y', '2014-10-14 20:39:05'),
(515, 41, 0x566f63, 'Y', '2014-10-14 20:39:05'),
(518, 41, 0x6e6967697269, 'Y', '2014-10-14 20:39:05'),
(519, 41, 0x4e6967697269207369676e6966696361207175652073756120636f72206e6f206a6f676f20736572, 'Y', '2014-10-14 20:39:05'),
(522, 41, 0x457374, 'Y', '2014-10-14 20:39:05'),
(523, 41, 0x53696d2c20636c61726f2e20416c67756e73206a6f6761646f7265732074616d62, 'Y', '2014-10-14 20:39:05'),
(525, 41, 0x506f73736f207375676572697220756d61206e6f76612066756e63696f6e616c69646164653f, 'Y', '2014-10-14 20:39:05'),
(526, 41, 0x53696d2c20636f6d2063657274657a612120506f72206661766f72206661, 'Y', '2014-10-14 20:39:05'),
(529, 41, 0x4f6e646520706f73736f20617072656e646572206d61697320736f62726520756d6120726567726120656d20706172746963756c61723f, 'Y', '2014-10-14 20:39:05'),
(530, 41, 0x4661, 'Y', '2014-10-14 20:39:05'),
(531, 41, 0x51756169732073, 'Y', '2014-10-14 20:39:05'),
(532, 41, 0x446f6973206a6f6761646f72657320636f6d706574656d20706172612063657263617220746572726974, 'Y', '2014-10-14 20:39:05'),
(533, 41, 0x4f6e646520706f73736f20656e636f6e74726172206d6169732070, 'Y', '2014-10-14 20:39:05'),
(534, 41, 0x4e61203c686f6d65206c696e6b732e7068703e70, 'Y', '2014-10-14 20:39:05'),
(535, 41, 0x796f7365, 'Y', '2014-10-14 20:39:05'),
(536, 41, 0x46696e616c697a61, 'Y', '2014-10-14 20:39:05'),
(537, 41, 0x6174617269, 'Y', '2014-10-14 20:39:05'),
(538, 41, 0x417461726920, 'Y', '2014-10-14 20:39:05'),
(539, 41, 0x6b6f, 'Y', '2014-10-14 20:39:05'),
(540, 41, 0x556d206b6f20, 'Y', '2014-10-14 20:39:05'),
(541, 41, 0x556d206a6f676f207465726d696e61646f20706f722074656d706f20706f6465207365722072657373757363697461646f3f, 'Y', '2014-10-14 20:39:05'),
(542, 41, 0x4e, 'Y', '2014-10-14 20:39:05'),
(545, 41, 0x6b7975, 'Y', '2014-10-14 20:39:05'),
(546, 41, 0x4b7975207369676e696669636120226e, 'Y', '2014-10-14 20:39:05'),
(547, 41, 0x64616e, 'Y', '2014-10-14 20:39:05'),
(548, 41, 0x44616e207369676e696669636120226e, 'Y', '2014-10-14 20:39:05'),
(549, 41, 0x5175616e746f7320646961732064652066, 'Y', '2014-10-14 20:39:05'),
(550, 41, 0x4174, 'Y', '2014-10-14 20:39:05'),
(551, 41, 0x51756169732073, 'Y', '2014-10-14 20:39:05'),
(553, 41, 0x5175616e646f207061737361206f2074656d706f206e6f73206d657573206a6f676f733f, 'Y', '2014-10-14 20:39:05'),
(554, 41, 0x536575732074656d706f73206465206a6f676f2070617373616d203c623e6170656e61733c2f623e207175616e646f20657374, 'Y', '2014-10-14 20:39:05'),
(555, 41, 0x436f6d6f20706f73736f206162726972206172717569766f73205347463f, 'Y', '2014-10-14 20:39:05'),
(556, 41, 0x4578697374656d206d7569746f732070726f6772616d6173207061726120766572206520656469746172206172717569766f73205347462e20556d6120706f7373, 'Y', '2014-10-14 20:39:05'),
(557, 41, 0x436f6d6f20706f73736f20636f6d65, 'Y', '2014-10-14 20:39:05'),
(559, 41, 0x436f6d6f206661, 'Y', '2014-10-14 20:39:05'),
(560, 41, 0x4e61203c686f6d65207374617475732e7068703e70, 'Y', '2014-10-14 20:39:05'),
(561, 41, 0x436f6d6f20617061676f20756d206a6f676f20656d2070726f67726573736f3f, 'Y', '2014-10-14 20:39:05'),
(563, 41, 0x436f6d6f206575207465726d696e6f20756d206a6f676f3f, 'Y', '2014-10-14 20:39:05'),
(565, 41, 0x496e74726f6475, 'Y', '2014-10-14 20:39:05'),
(566, 41, 0x4f2071756520, 'Y', '2014-10-14 20:39:05'),
(568, 41, 0x45207365206575206e, 'Y', '2014-10-14 20:39:05'),
(570, 41, 0x4361726163746572, 'Y', '2014-10-14 20:39:05'),
(571, 41, 0x506f72717565206f2075736f20646520646961732064652066, 'Y', '2014-10-14 20:39:05'),
(573, 41, 0x5175616973206173206d7564616e, 'Y', '2014-10-14 20:39:05'),
(575, 41, 0x506f7220717565206f20447261676f6e2071756572207361626572206d657520656e64657265, 'Y', '2014-10-14 20:39:05'),
(577, 41, 0x436f6d6f2066756e63696f6e61206f2073697374656d612064652074656d706f2062796f2d796f6d69206a61706f6e, 'Y', '2014-10-14 20:39:05'),
(579, 41, 0x436f6d6f2066756e63696f6e61206f2073697374656d612064652074656d706f2062796f2d796f6d692063616e6164656e73653f, 'Y', '2014-10-14 20:39:05'),
(581, 41, 0x436f6d6f2066756e63696f6e61206f2073697374656d612064652074656d706f20466973636865723f, 'Y', '2014-10-14 20:39:05'),
(583, 41, 0x436f6d6f206f20686f72, 'Y', '2014-10-14 20:39:05'),
(585, 41, 0x4f2071756520, 'Y', '2014-10-14 20:39:05'),
(591, 41, 0x506f73736f2061646963696f6e61722074656d706f2070617261206d696d206d65736d6f20656d20756d206a6f676f3f, 'Y', '2014-10-14 20:39:05'),
(593, 41, 0x506f73736f2061646963696f6e61722074656d706f2070617261206d657520616476657273, 'Y', '2014-10-14 20:39:05'),
(595, 41, 0x4f207175652073, 'Y', '2014-10-14 20:39:05'),
(597, 41, 0x62796f2d796f6d69, 'Y', '2014-10-14 20:39:05'),
(599, 41, 0x5175616c206675736f20686f72, 'Y', '2014-10-14 20:39:05'),
(600, 41, 0x4f20447261676f6e20757361206f20736575206675736f20686f72, 'Y', '2014-10-14 20:39:05'),
(601, 41, '', 'Y', '2014-10-14 20:39:05'),
(605, 41, 0x436f6d6f20706f73736f2061726d617a656e617220636f6d656e74, 'Y', '2014-10-14 20:39:05'),
(607, 41, 0x506f73736f206d6520746f726e617220756d20646573656e766f6c7665646f7220646f20447261676f6e3f, 'Y', '2014-10-14 20:39:05'),
(618, 41, 0x4e, 'Y', '2014-10-14 20:39:05'),
(619, 41, 0x4e, 'Y', '2014-10-14 20:39:05'),
(620, 41, 0x4469666572656e, 'Y', '2014-10-14 20:39:05'),
(621, 41, 0x4d6f737472617220746f646f206f2046415120656d20756d612070, 'Y', '2014-10-14 20:39:05'),
(622, 41, 0x546f726e65696f7320646f20447261676f6e, 'Y', '2014-10-14 20:39:05'),
(623, 41, 0x6f6e656761697368696d617375, 'Y', '2014-10-14 20:39:05'),
(625, 41, 0x4578697374656d20746f726e65696f73206d616e7469646f73206469726574616d656e74652070656c6f20447261676f6e3f, 'Y', '2014-10-14 20:39:05'),
(626, 41, 0x4e, 'Y', '2014-10-14 20:39:05'),
(627, 41, 0x4f20717565207369676e6966696361206120226174697669646164652220646520756d20757375, 'Y', '2014-10-14 20:39:05'),
(629, 41, 0x4f20717565207369676e6966696361206f20226170726f76656974616d656e746f2220646520756d20757375, 'Y', '2014-10-14 20:39:05'),
(630, 41, '', 'Y', '2014-10-14 20:39:05'),
(633, 41, 0x4f2071756520, 'Y', '2014-10-14 20:39:05'),
(635, 41, 0x506f722071756520616c67756e7320757375, 'Y', '2014-10-14 20:39:05'),
(637, 41, 0x4f2071756520, 'Y', '2014-10-14 20:39:05'),
(639, 41, 0x5175656d2073, 'Y', '2014-10-14 20:39:05'),
(643, 41, 0x51756169732063, 'Y', '2014-10-14 20:39:05'),
(645, 41, 0x686f736869, 'Y', '2014-10-14 20:39:05'),
(655, 41, 0x74656e67656e, 'Y', '2014-10-14 20:39:05'),
(657, 41, 0x676f62616e, 'Y', '2014-10-14 20:39:05'),
(658, 41, 0x4f20746162756c6569726f20646520476f20287265616c206f75207669727475616c292e, 'Y', '2014-10-14 20:39:05'),
(661, 41, 0x4f20717565207369676e696669636120612076616e746167656d3f, 'Y', '2014-10-14 20:39:05'),
(665, 41, 0x6a6f73656b69, 'Y', '2014-10-14 20:39:05'),
(667, 41, 0x667573656b69, 'Y', '2014-10-14 20:39:05'),
(669, 41, 0x73656b69, 'Y', '2014-10-14 20:39:05'),
(671, 41, 0x506f73736f2066617a6572206a6f676164617320656e7669616e646f206d656e736167656e732028656d61696c293f, 'Y', '2014-10-14 20:39:05'),
(677, 41, 0x4e, 'Y', '2014-10-14 20:39:05'),
(686, 41, 0x74656e756b69, 'Y', '2014-10-14 20:39:05'),
(688, 41, 0x4f2071756520, 'Y', '2014-10-14 20:39:05'),
(690, 41, 0x73656e7465, 'Y', '2014-10-14 20:39:05'),
(692, 41, 0x676f7465, 'Y', '2014-10-14 20:39:05'),
(694, 41, 0x4f207175652073, 'Y', '2014-10-14 20:39:05'),
(696, 41, 0x64616d65, 'Y', '2014-10-14 20:39:05'),
(698, 41, 0x6c6962657264616465287329, 'Y', '2014-10-14 20:39:05'),
(700, 41, 0x68616e65, 'Y', '2014-10-14 20:39:05'),
(702, 41, 0x67657461, 'Y', '2014-10-14 20:39:05'),
(703, 41, 0x556d61207265646520646520706564726173, 'Y', '2014-10-14 20:39:05'),
(704, 41, 0x73616e72656e736569, 'Y', '2014-10-14 20:39:05'),
(706, 41, 0x73686963686f, 'Y', '2014-10-14 20:39:05'),
(707, 41, 0x556d612065736361646120646520706564726173, 'Y', '2014-10-14 20:39:05'),
(710, 41, 0x4f6e646520706f73736f20617072656e6465722061206a6f67617220476f3f, 'Y', '2014-10-14 20:39:05'),
(714, 41, 0x44657363756c70652c206e, 'Y', '2014-10-14 20:39:05'),
(715, 41, 0x486f72, 'Y', '2014-10-14 20:39:05'),
(719, 41, 0x25732076656e636572616d20706f7220252e3166, 'Y', '2014-10-14 20:39:05'),
(722, 41, 0x5061737461, 'Y', '2014-10-14 20:39:05'),
(724, 41, 0x4465737472756972206d656e736167656e732073656c6563696f6e61646173, 'Y', '2014-10-14 20:39:05'),
(726, 41, 0x45646974617220706173746173, 'Y', '2014-10-14 20:39:05'),
(727, 41, 0x4120636f6e666967757261, 'Y', '2014-10-14 20:39:05'),
(730, 41, 0x4564697461722066, 'Y', '2014-10-14 20:39:05'),
(731, 41, 0x45646974617220706173746173, 'Y', '2014-10-14 20:39:05'),
(732, 41, 0x446961732064652066, 'Y', '2014-10-14 20:39:05'),
(733, 41, 0x44652066, 'Y', '2014-10-14 20:39:05'),
(736, 41, 0x566974, 'Y', '2014-10-14 20:39:05'),
(737, 41, 0x446572726f746173, 'Y', '2014-10-14 20:39:05'),
(738, 41, 0x4d756461722064757261, 'Y', '2014-10-14 20:39:05'),
(739, 41, 0x456e747261722064652066, 'Y', '2014-10-14 20:39:05'),
(740, 41, 0x546f64617320526563656269646173, 'Y', '2014-10-14 20:39:05'),
(741, 41, 0x456e7472616461, 'Y', '2014-10-14 20:39:05'),
(742, 41, 0x4c697865697261, 'Y', '2014-10-14 20:39:05'),
(743, 41, 0x456e766961646173, 'Y', '2014-10-14 20:39:05'),
(744, 41, 0x4d6f76657220706172612061207061737461207175616e646f20726573706f6e646572, 'Y', '2014-10-14 20:39:05'),
(745, 41, 0x4d6f76657220706172612061207061737461, 'Y', '2014-10-14 20:39:05'),
(746, 41, 0x4e6f6d65206461207061737461, 'Y', '2014-10-14 20:39:05'),
(747, 41, 0x546f64617320617320636f6c756e6173, 'Y', '2014-10-14 20:39:05'),
(750, 41, 0x636f7265616e6f, 'Y', '2014-10-14 20:39:05'),
(755, 41, 0x4d656e736167656d20646f207365727669646f72, 'Y', '2014-10-14 20:39:05'),
(756, 41, 0x41666567616e697374, 'Y', '2014-10-14 20:39:05'),
(757, 41, 0x416c62, 'Y', '2014-10-14 20:39:05'),
(758, 41, 0x417267, 'Y', '2014-10-14 20:39:05'),
(759, 41, 0x416e646f727261, 'Y', '2014-10-14 20:39:05'),
(760, 41, 0x416e676f6c61, 'Y', '2014-10-14 20:39:05'),
(761, 41, 0x416e74, 'Y', '2014-10-14 20:39:05'),
(762, 41, 0x416e74, 'Y', '2014-10-14 20:39:05'),
(763, 41, 0x417267656e74696e61, 'Y', '2014-10-14 20:39:05'),
(764, 41, 0x41726d, 'Y', '2014-10-14 20:39:05'),
(765, 41, 0x4175737472, 'Y', '2014-10-14 20:39:05'),
(766, 41, '', 'Y', '2014-10-14 20:39:05'),
(767, 41, 0x417a65726261696a, 'Y', '2014-10-14 20:39:05'),
(768, 41, 0x426168616d6173, 'Y', '2014-10-14 20:39:05'),
(769, 41, 0x42617265696e, 'Y', '2014-10-14 20:39:05'),
(770, 41, 0x4261726261646f73, 'Y', '2014-10-14 20:39:05'),
(771, 41, 0x42616e676c616465636865, 'Y', '2014-10-14 20:39:05'),
(772, 41, 0x4269656c6f72, 'Y', '2014-10-14 20:39:05'),
(773, 41, 0x42, 'Y', '2014-10-14 20:39:05'),
(774, 41, 0x42656c697a65, 'Y', '2014-10-14 20:39:05'),
(775, 41, 0x42656e696d, 'Y', '2014-10-14 20:39:05'),
(776, 41, 0x427574, 'Y', '2014-10-14 20:39:05'),
(777, 41, 0x426f6c, 'Y', '2014-10-14 20:39:05'),
(779, 41, 0x426f747375616e61, 'Y', '2014-10-14 20:39:05'),
(780, 41, 0x42726173696c, 'Y', '2014-10-14 20:39:05'),
(782, 41, 0x62, 'Y', '2014-10-14 20:39:05'),
(783, 41, 0x4275727175696e61204661736f, 'Y', '2014-10-14 20:39:05'),
(784, 41, 0x427572, 'Y', '2014-10-14 20:39:05'),
(785, 41, 0x43616d626f6a61, 'Y', '2014-10-14 20:39:05'),
(786, 41, 0x43616d6172, 'Y', '2014-10-14 20:39:05'),
(787, 41, 0x43616e6164, 'Y', '2014-10-14 20:39:05'),
(788, 41, 0x4361626f205665726465, 'Y', '2014-10-14 20:39:05'),
(789, 41, 0x526570, 'Y', '2014-10-14 20:39:05'),
(790, 41, 0x4368616465, 'Y', '2014-10-14 20:39:05'),
(791, 41, 0x4368696c65, 'Y', '2014-10-14 20:39:05'),
(792, 41, 0x4368696e61, 'Y', '2014-10-14 20:39:05'),
(793, 41, 0x436f6c, 'Y', '2014-10-14 20:39:05'),
(794, 41, 0x436f6d6f726573, 'Y', '2014-10-14 20:39:05'),
(795, 41, 0x526570, 'Y', '2014-10-14 20:39:05'),
(796, 41, 0x5265702e2044656d6f632e20646f20436f6e676f, 'Y', '2014-10-14 20:39:05'),
(797, 41, 0x436f7374612052696361, 'Y', '2014-10-14 20:39:05'),
(798, 41, 0x436f73746120646f204d617266696d, 'Y', '2014-10-14 20:39:05'),
(799, 41, 0x43726f, 'Y', '2014-10-14 20:39:05'),
(800, 41, 0x43756261, 'Y', '2014-10-14 20:39:05'),
(801, 41, 0x436869707265, 'Y', '2014-10-14 20:39:05'),
(802, 41, 0x526570, 'Y', '2014-10-14 20:39:05'),
(803, 41, 0x44696e616d61726361, 'Y', '2014-10-14 20:39:05'),
(804, 41, 0x446a6962757469, 'Y', '2014-10-14 20:39:05'),
(805, 41, 0x446f6d, 'Y', '2014-10-14 20:39:05'),
(806, 41, 0x526570, 'Y', '2014-10-14 20:39:05'),
(808, 41, 0x45717561646f72, 'Y', '2014-10-14 20:39:05'),
(809, 41, 0x456769746f, 'Y', '2014-10-14 20:39:05'),
(810, 41, 0x456c2053616c7661646f72, 'Y', '2014-10-14 20:39:05'),
(811, 41, 0x4775696e, 'Y', '2014-10-14 20:39:05'),
(812, 41, 0x4572697472656961, 'Y', '2014-10-14 20:39:05'),
(813, 41, 0x457374, 'Y', '2014-10-14 20:39:05'),
(814, 41, 0x457469, 'Y', '2014-10-14 20:39:05'),
(815, 41, 0x46, 'Y', '2014-10-14 20:39:05'),
(816, 41, 0x46696e6c, 'Y', '2014-10-14 20:39:05'),
(817, 41, 0x4672616e, 'Y', '2014-10-14 20:39:05'),
(818, 41, 0x476162, 'Y', '2014-10-14 20:39:05'),
(819, 41, 0x47, 'Y', '2014-10-14 20:39:05'),
(820, 41, 0x4765, 'Y', '2014-10-14 20:39:05'),
(821, 41, 0x416c656d616e6861, 'Y', '2014-10-14 20:39:05'),
(822, 41, 0x47616e61, 'Y', '2014-10-14 20:39:05'),
(823, 41, 0x4772, 'Y', '2014-10-14 20:39:05'),
(824, 41, 0x4772616e616461, 'Y', '2014-10-14 20:39:05'),
(825, 41, 0x47756174656d616c61, 'Y', '2014-10-14 20:39:05'),
(826, 41, 0x4775696e, 'Y', '2014-10-14 20:39:05'),
(827, 41, 0x4775696e, 'Y', '2014-10-14 20:39:05'),
(828, 41, 0x477569616e61, 'Y', '2014-10-14 20:39:05'),
(829, 41, 0x4861697469, 'Y', '2014-10-14 20:39:05'),
(830, 41, 0x486f6e6475726173, 'Y', '2014-10-14 20:39:05'),
(831, 41, 0x486f6e67204b6f6e67, 'Y', '2014-10-14 20:39:05'),
(832, 41, 0x48756e67726961, 'Y', '2014-10-14 20:39:05'),
(833, 41, 0x49736c, 'Y', '2014-10-14 20:39:05'),
(834, 41, '', 'Y', '2014-10-14 20:39:05'),
(835, 41, 0x496e646f6e, 'Y', '2014-10-14 20:39:05'),
(836, 41, 0x4972, 'Y', '2014-10-14 20:39:05'),
(837, 41, 0x497261717565, 'Y', '2014-10-14 20:39:05'),
(838, 41, 0x49726c616e6461, 'Y', '2014-10-14 20:39:05'),
(839, 41, 0x49737261656c, 'Y', '2014-10-14 20:39:05'),
(840, 41, 0x4974, 'Y', '2014-10-14 20:39:05'),
(841, 41, 0x4a616d61696361, 'Y', '2014-10-14 20:39:05'),
(842, 41, 0x4a6170, 'Y', '2014-10-14 20:39:05'),
(843, 41, 0x4a6f7264, 'Y', '2014-10-14 20:39:05'),
(845, 41, 0x4b, 'Y', '2014-10-14 20:39:05'),
(846, 41, 0x4b69726962617469, 'Y', '2014-10-14 20:39:05'),
(849, 41, 0x4b7561697465, 'Y', '2014-10-14 20:39:05'),
(850, 41, 0x517569726775697374, 'Y', '2014-10-14 20:39:05'),
(851, 41, 0x4c617573, 'Y', '2014-10-14 20:39:05'),
(852, 41, 0x4c6574, 'Y', '2014-10-14 20:39:05'),
(853, 41, 0x4c, 'Y', '2014-10-14 20:39:05'),
(854, 41, 0x4c65736f746f, 'Y', '2014-10-14 20:39:05'),
(855, 41, 0x4c6962, 'Y', '2014-10-14 20:39:05'),
(856, 41, 0x4c, 'Y', '2014-10-14 20:39:05'),
(857, 41, 0x4c6965636874656e737465696e, 'Y', '2014-10-14 20:39:05'),
(858, 41, 0x4c697475, 'Y', '2014-10-14 20:39:05'),
(859, 41, 0x4c7578656d627572676f, 'Y', '2014-10-14 20:39:05'),
(861, 41, 0x4d61636564, 'Y', '2014-10-14 20:39:05'),
(862, 41, 0x4d616461676173636172, 'Y', '2014-10-14 20:39:05'),
(863, 41, 0x4d616c617769, 'Y', '2014-10-14 20:39:05'),
(864, 41, 0x4d616c, 'Y', '2014-10-14 20:39:05'),
(865, 41, 0x4d616c6469766173, 'Y', '2014-10-14 20:39:05'),
(866, 41, 0x4d, 'Y', '2014-10-14 20:39:05'),
(867, 41, 0x4d616c7461, 'Y', '2014-10-14 20:39:05'),
(868, 41, 0x496c686173204d61727368616c6c, 'Y', '2014-10-14 20:39:05'),
(869, 41, 0x4d6175726974, 'Y', '2014-10-14 20:39:05'),
(870, 41, 0x4d617572, 'Y', '2014-10-14 20:39:05'),
(871, 41, 0x4d, 'Y', '2014-10-14 20:39:05'),
(872, 41, 0x4d6963726f6e, 'Y', '2014-10-14 20:39:05'),
(873, 41, 0x4d6f6c64, 'Y', '2014-10-14 20:39:05'),
(874, 41, 0x4d, 'Y', '2014-10-14 20:39:05'),
(875, 41, 0x4d6f6e67, 'Y', '2014-10-14 20:39:05'),
(876, 41, 0x4d6172726f636f73, 'Y', '2014-10-14 20:39:05'),
(877, 41, 0x4d6f, 'Y', '2014-10-14 20:39:05'),
(878, 41, 0x4269726d, 'Y', '2014-10-14 20:39:05'),
(879, 41, 0x4e616d, 'Y', '2014-10-14 20:39:05'),
(880, 41, 0x4e61757275, 'Y', '2014-10-14 20:39:05'),
(881, 41, 0x4e6570616c, 'Y', '2014-10-14 20:39:05'),
(882, 41, 0x486f6c616e6461, 'Y', '2014-10-14 20:39:05'),
(883, 41, 0x4e6f7661205a656c, 'Y', '2014-10-14 20:39:05'),
(884, 41, 0x4e69636172, 'Y', '2014-10-14 20:39:05'),
(885, 41, 0x4e, 'Y', '2014-10-14 20:39:05'),
(886, 41, 0x4e6967, 'Y', '2014-10-14 20:39:05'),
(887, 41, 0x4e6f7275656761, 'Y', '2014-10-14 20:39:05'),
(888, 41, 0x4f6d, 'Y', '2014-10-14 20:39:05'),
(889, 41, 0x50617175697374, 'Y', '2014-10-14 20:39:05'),
(890, 41, 0x50616c6175, 'Y', '2014-10-14 20:39:05'),
(892, 41, 0x50616e616d, 'Y', '2014-10-14 20:39:05'),
(893, 41, 0x50617075612d4e6f7661204775696e, 'Y', '2014-10-14 20:39:05'),
(894, 41, 0x5061726167756169, 'Y', '2014-10-14 20:39:05'),
(895, 41, 0x50657275, 'Y', '2014-10-14 20:39:05'),
(896, 41, 0x46696c6970696e6173, 'Y', '2014-10-14 20:39:05'),
(897, 41, 0x506f6c, 'Y', '2014-10-14 20:39:05'),
(898, 41, 0x506f72747567616c, 'Y', '2014-10-14 20:39:05'),
(899, 41, 0x506f72746f205269636f, 'Y', '2014-10-14 20:39:05'),
(900, 41, 0x4361746172, 'Y', '2014-10-14 20:39:05'),
(901, 41, 0x526f6d, 'Y', '2014-10-14 20:39:05'),
(902, 41, 0x52, 'Y', '2014-10-14 20:39:05'),
(903, 41, 0x5275616e6461, 'Y', '2014-10-14 20:39:05'),
(904, 41, 0x53, 'Y', '2014-10-14 20:39:05'),
(905, 41, 0x53616e7461204c, 'Y', '2014-10-14 20:39:05'),
(906, 41, 0x53, 'Y', '2014-10-14 20:39:05'),
(907, 41, 0x53616d6f61, 'Y', '2014-10-14 20:39:05'),
(908, 41, 0x53, 'Y', '2014-10-14 20:39:05'),
(909, 41, 0x53, 'Y', '2014-10-14 20:39:05'),
(910, 41, 0x4172, 'Y', '2014-10-14 20:39:05'),
(911, 41, 0x53656e6567616c, 'Y', '2014-10-14 20:39:05'),
(913, 41, 0x5365696368656c6573, 'Y', '2014-10-14 20:39:05'),
(914, 41, 0x5365727261204c656f61, 'Y', '2014-10-14 20:39:05'),
(915, 41, 0x53696e676170757261, 'Y', '2014-10-14 20:39:05'),
(916, 41, 0x45736c6f76, 'Y', '2014-10-14 20:39:05'),
(917, 41, 0x45736c6f76, 'Y', '2014-10-14 20:39:05'),
(918, 41, 0x496c6861732053616c6f6d, 'Y', '2014-10-14 20:39:05'),
(919, 41, 0x536f6d, 'Y', '2014-10-14 20:39:05'),
(920, 41, '', 'Y', '2014-10-14 20:39:05'),
(921, 41, 0x457370616e6861, 'Y', '2014-10-14 20:39:05'),
(922, 41, 0x537269204c616e6361, 'Y', '2014-10-14 20:39:05'),
(923, 41, 0x537564, 'Y', '2014-10-14 20:39:05'),
(924, 41, 0x537572696e616d65, 'Y', '2014-10-14 20:39:05'),
(925, 41, 0x5375617a696c, 'Y', '2014-10-14 20:39:05'),
(926, 41, 0x5375, 'Y', '2014-10-14 20:39:05'),
(927, 41, 0x5375, 'Y', '2014-10-14 20:39:05'),
(928, 41, 0x53, 'Y', '2014-10-14 20:39:05'),
(929, 41, 0x54616975, 'Y', '2014-10-14 20:39:05'),
(930, 41, 0x54616a697175697374, 'Y', '2014-10-14 20:39:05'),
(931, 41, 0x54616e7a, 'Y', '2014-10-14 20:39:05'),
(932, 41, 0x5461696c, 'Y', '2014-10-14 20:39:05'),
(933, 41, 0x546f676f, 'Y', '2014-10-14 20:39:05'),
(934, 41, 0x546f6e6761, 'Y', '2014-10-14 20:39:05'),
(935, 41, 0x5472696e64616465206520546f6261676f, 'Y', '2014-10-14 20:39:05'),
(936, 41, 0x54756e, 'Y', '2014-10-14 20:39:05'),
(937, 41, 0x54757271756961, 'Y', '2014-10-14 20:39:05'),
(938, 41, 0x5475727175656d656e697374, 'Y', '2014-10-14 20:39:05'),
(939, 41, 0x547576616c75, 'Y', '2014-10-14 20:39:05'),
(940, 41, 0x5567616e6461, 'Y', '2014-10-14 20:39:05'),
(941, 41, 0x556372, 'Y', '2014-10-14 20:39:05'),
(942, 41, 0x456d697261646f7320, 'Y', '2014-10-14 20:39:05'),
(943, 41, 0x5265696e6f20556e69646f, 'Y', '2014-10-14 20:39:05'),
(944, 41, 0x45737461646f7320556e69646f73, 'Y', '2014-10-14 20:39:05'),
(945, 41, 0x55727567756169, 'Y', '2014-10-14 20:39:05'),
(946, 41, 0x557362657175697374, 'Y', '2014-10-14 20:39:05'),
(947, 41, 0x56616e75617475, 'Y', '2014-10-14 20:39:05'),
(948, 41, 0x5661746963616e6f202853616e74612053, 'Y', '2014-10-14 20:39:05'),
(949, 41, 0x56656e657a75656c61, 'Y', '2014-10-14 20:39:05'),
(950, 41, 0x566965746e, 'Y', '2014-10-14 20:39:05'),
(951, 41, 0x49, 'Y', '2014-10-14 20:39:05'),
(952, 41, 0x5a, 'Y', '2014-10-14 20:39:05'),
(953, 41, 0x5a696d62, 'Y', '2014-10-14 20:39:05'),
(954, 41, 0x727573736f, 'Y', '2014-10-14 20:39:05'),
(955, 41, 0x46, 'Y', '2014-10-14 20:39:05'),
(956, 41, 0x44657363756c70652c20766f63, 'Y', '2014-10-14 20:39:05'),
(957, 41, 0x44757261, 'Y', '2014-10-14 20:39:05'),
(958, 41, 0x41646963696f6e6172, 'Y', '2014-10-14 20:39:05'),
(959, 41, 0x417061676172, 'Y', '2014-10-14 20:39:05'),
(960, 41, 0x4573636f6c686120612064757261, 'Y', '2014-10-14 20:39:05'),
(962, 41, 0x426f61732066, 'Y', '2014-10-14 20:39:05'),
(967, 41, 0x4f6e646520736572, 'Y', '2014-10-14 20:39:05'),
(975, 41, 0x436f6d6f206661, 'Y', '2014-10-14 20:39:05'),
(979, 41, 0x546f646f73206f732070726f626c656d61732073, 'Y', '2014-10-14 20:39:05'),
(981, 41, 0x4f207175652073, 'Y', '2014-10-14 20:39:05'),
(983, 41, 0x4f207175652073, 'Y', '2014-10-14 20:39:05'),
(987, 41, 0x536f7520756d206e6f7661746f206e6f20447261676f6e2e205175616c206e, 'Y', '2014-10-14 20:39:05'),
(988, 41, 0x5175616e646f20766f63, 'N', '2014-10-14 20:39:05'),
(994, 41, 0x566f63, 'Y', '2014-10-14 20:39:05'),
(997, 41, 0x706f6c6f6e, 'Y', '2014-10-14 20:39:05'),
(998, 41, 0x6974616c69616e6f, 'Y', '2014-10-14 20:39:05'),
(999, 41, 0x496d706f7274612073652065752076656e63657220706f7220302c3520706f6e746f732c2031303020706f6e746f732c20706f7220646573697374, 'Y', '2014-10-14 20:39:05'),
(1001, 41, 0x436f6d6f206f20444753206d61726361206f2074656d706f3f, 'Y', '2014-10-14 20:39:05'),
(1003, 41, 0x626173636f, 'Y', '2014-10-14 20:39:05'),
(1004, 41, 0x436f6d6f206e6f7320636f6d706f72746172206e6f207365727669646f723f, 'Y', '2014-10-14 20:39:05'),
(1014, 41, 0x696e7465726c, 'Y', '2014-10-14 20:39:05'),
(1015, 41, 0x6573706572616e746f, 'Y', '2014-10-14 20:39:05'),
(1018, 41, 0x65736c6f7661636f, 'Y', '2014-10-14 20:39:05'),
(1019, 41, 0x4261736561646f2d656d2d7475726e6f73, 'Y', '2014-10-14 20:39:05'),
(1021, 41, 0x54656d706f2d7265616c, 'Y', '2014-10-14 20:39:05'),
(1023, 41, 0x726f6d656e6f, 'Y', '2014-10-14 20:39:05'),
(1024, 41, 0x4a6f676f20657175696c69627261646f, 'Y', '2014-10-14 20:39:05'),
(1028, 41, 0x686562726575, 'Y', '2014-10-14 20:39:05'),
(1029, 41, 0x6c, 'Y', '2014-10-14 20:39:05'),
(1030, 41, 0x766965746e616d697461, 'Y', '2014-10-14 20:39:05'),
(1031, 41, 0x73, 'Y', '2014-10-14 20:39:05'),
(1032, 41, 0x677265676f, 'Y', '2014-10-14 20:39:05'),
(1033, 41, 0x756372616e69616e6f, 'Y', '2014-10-14 20:39:05'),
(1034, 41, 0x636174616c, 'Y', '2014-10-14 20:39:05'),
(1035, 41, 0x6368696e, 'Y', '2014-10-14 20:39:05'),
(1038, 41, 0x506f73736f206f6274657220616a75646120647572616e746520756d206a6f676f3f, 'Y', '2014-10-14 20:39:05'),
(1042, 41, 0x436f6d6f206575207361696f206461206d696e686120636f6e74613f, 'Y', '2014-10-14 20:39:05'),
(1044, 41, 0x45737361206a6f67616461206c657661206120756d6120706f7369, 'Y', '2014-10-14 20:39:05'),
(1045, 41, 0x4f206c696d6974652064652074656d706f20, 'Y', '2014-10-14 20:39:05'),
(1046, 41, 0x44657363756c70652c20766f63, 'Y', '2014-10-14 20:39:05'),
(1047, 41, 0x44657363756c70652c2065737361206a6f67616461206a, 'Y', '2014-10-14 20:39:05'),
(1048, 41, 0x50, 'Y', '2014-10-14 20:39:05'),
(1049, 41, 0x4f20696420646520757375, 'Y', '2014-10-14 20:39:05'),
(1050, 41, 0x44657363756c70652c206575206e, 'Y', '2014-10-14 20:39:05'),
(1051, 41, 0x44657363756c70652c206575206e, 'Y', '2014-10-14 20:39:05'),
(1053, 41, 0x4573736520757375, 'Y', '2014-10-14 20:39:05'),
(1055, 41, 0x2d207369747561, 'Y', '2014-10-14 20:39:05'),
(1059, 41, 0x4d6f7374726172, 'Y', '2014-10-14 20:39:05'),
(1060, 41, 0x4f63756c746172, 'Y', '2014-10-14 20:39:05'),
(1067, 41, 0x4964696f6d61204e617469766f, 'Y', '2014-10-14 20:39:05'),
(1068, 41, 0x436f6d706574, 'Y', '2014-10-14 20:39:05'),
(1069, 41, 0x41626169786f, 'Y', '2014-10-14 20:39:05'),
(1073, 41, 0x4e756d657261, 'Y', '2014-10-14 20:39:05'),
(1074, 41, 0x4e, 'Y', '2014-10-14 20:39:05'),
(1076, 41, 0x416e6f7461, 'Y', '2014-10-14 20:39:05'),
(1077, 41, 0x546162756c6569726f732070657175656e6f73, 'Y', '2014-10-14 20:39:05'),
(1078, 41, 0x546162756c6569726f73206772616e646573206465, 'Y', '2014-10-14 20:39:05'),
(1079, 41, 0x506f7369, 'Y', '2014-10-14 20:39:05'),
(1080, 41, 0x416c74757261, 'Y', '2014-10-14 20:39:05'),
(1081, 41, 0x4c617267757261, 'Y', '2014-10-14 20:39:05'),
(1082, 41, 0x456e766961722073656e6861, 'Y', '2014-10-14 20:39:05'),
(1083, 41, 0x466f692070656469646f206f20706f736963696f6e616d656e746f2070616472, 'Y', '2014-10-14 20:39:05'),
(1084, 41, 0x506f736963696f6e616d656e746f2070616472, 'Y', '2014-10-14 20:39:05'),
(1085, 41, 0x506f72206661766f72206d6172717565206173207065, 'Y', '2014-10-14 20:39:05'),
(1086, 41, 0x4361707475726173, 'Y', '2014-10-14 20:39:05'),
(1087, 41, 0x436f6d656e74, 'Y', '2014-10-14 20:39:05'),
(1088, 41, 0x4261697861722053474620636f6d20746f646f73206f7320636f6d656e74, 'Y', '2014-10-14 20:39:05'),
(1089, 41, 0x506f6e747561, 'Y', '2014-10-14 20:39:05'),
(1090, 41, 0x566572206a6f67616461, 'Y', '2014-10-14 20:39:05'),
(1091, 41, 0x54656d706f2072657374616e7465, 'Y', '2014-10-14 20:39:05'),
(1092, 41, 0x4a6f676f206176616c6961646f, 'Y', '2014-10-14 20:39:05'),
(1093, 41, 0x4d6f7374726172206e6f746173, 'Y', '2014-10-14 20:39:05'),
(1094, 41, 0x53616c766172206e6f746173, 'Y', '2014-10-14 20:39:05'),
(1095, 41, 0x4f63756c746172206e6f746173, 'Y', '2014-10-14 20:39:05'),
(1096, 41, 0x42656d2076696e646f20, 'Y', '2014-10-14 20:39:05'),
(1097, 41, 0x536520766f63, 'Y', '2014-10-14 20:39:05'),
(1099, 41, 0x44, 'Y', '2014-10-14 20:39:05'),
(1102, 41, 0x42616e636f206465206461646f73206520656e6369636c6f70, 'Y', '2014-10-14 20:39:05'),
(1103, 41, 0x556d20656e6f726d652062616e636f206465206461646f73206465206a6f676f732070726f66697373696f6e616973, 'Y', '2014-10-14 20:39:05'),
(1104, 41, '', 'Y', '2014-10-14 20:39:05'),
(1105, 41, 0x556d6120636f6c756e612073656d616e616c20736f62726520476f2c206573637269746120706f7220526f622056616e205a65696a73742e, 'Y', '2014-10-14 20:39:05'),
(1106, 41, 0x4c6973746120646520726573706f73746173, 'Y', '2014-10-14 20:39:05'),
(1108, 41, 0x566f6c74617220, 'Y', '2014-10-14 20:39:05'),
(1109, 41, 0x507265766572, 'Y', '2014-10-14 20:39:05'),
(1110, 41, 0x44657374696e6174, 'Y', '2014-10-14 20:39:05'),
(1111, 41, 0x4772, 'Y', '2014-10-14 20:39:05'),
(1112, 41, 0x4e6f7461207061726120696e696369616e7465733a206c656961206f204641512c20657370656369616c6d656e74652070617261206f206e6976656c616d656e746f20696e696369616c20646f207365752070657266696c2e, 'Y', '2014-10-14 20:39:05'),
(1113, 41, 0x4a6f676f73206176616c6961646f73, 'Y', '2014-10-14 20:39:05'),
(1120, 41, 0x706572, 'Y', '2014-10-14 20:39:05'),
(1121, 41, 0x4d656e736167656d20616e746572696f72, 'Y', '2014-10-14 20:39:05'),
(1122, 41, 0x5072, 'Y', '2014-10-14 20:39:05'),
(1124, 41, 0x4d696d206d65736d6f, 'Y', '2014-10-14 20:39:05'),
(1125, 41, 0x4f7264656e6172, 'Y', '2014-10-14 20:39:05'),
(1126, 41, 0x436f7265696120646f204e6f727465, 'Y', '2014-10-14 20:39:05'),
(1127, 41, 0x436f7265696120646f2053756c, 'Y', '2014-10-14 20:39:05'),
(1128, 41, 0x4d6f6e74656e6567726f, 'Y', '2014-10-14 20:39:05'),
(1129, 41, 0x53, 'Y', '2014-10-14 20:39:05'),
(1130, 41, 0x5465727261, 'Y', '2014-10-14 20:39:05'),
(1131, 41, 0x44657363756c70652c20766f63, 'Y', '2014-10-14 20:39:05'),
(1132, 41, 0x5175616973206173206d7564616e, 'Y', '2014-10-14 20:39:05'),
(1156, 41, 0x4f207175652073, 'Y', '2014-10-14 20:39:05'),
(1158, 41, 0x506f722071756520636f6f6b6965732073, 'Y', '2014-10-14 20:39:05'),
(1210, 41, 0x4564697461722062696f677261666961206520696e666f726d61, 'Y', '2014-10-14 20:39:05'),
(1211, 41, 0x4a6f67616461, 'Y', '2014-10-14 20:39:05'),
(1212, 41, 0x42656d2076696e646f20616f20257321, 'Y', '2014-10-14 20:39:05'),
(1213, 41, 0x42656d2076696e646f20616f2025732c20756d207365727669646f722025736c6976726525732070617261206a6f676172202573676f25732c206f6e6465206f73206a6f676f73202274656e64656d20612073657220696e66696e69746f73222e, 'Y', '2014-10-14 20:39:05'),
(1214, 41, 0x557375, 'Y', '2014-10-14 20:39:05'),
(1218, 41, 0x496d6167656d2064652066756e646f, 'Y', '2014-10-14 20:39:05'),
(1219, 41, 0x5665726d656c686f, 'Y', '2014-10-14 20:39:05'),
(1220, 41, 0x5665726465, 'Y', '2014-10-14 20:39:05'),
(1221, 41, 0x417a756c, 'Y', '2014-10-14 20:39:05'),
(1222, 41, 0x416c6661, 'Y', '2014-10-14 20:39:05'),
(1223, 41, 0x4d6f7374726172206e612070, 'Y', '2014-10-14 20:39:05'),
(1224, 41, 0x496d6167656d206465206672656e7465, 'Y', '2014-10-14 20:39:05'),
(1225, 41, 0x50617374617320616a7573746164617321, 'Y', '2014-10-14 20:39:05'),
(1226, 41, 0x417475616c697a6172, 'Y', '2014-10-14 20:39:05'),
(1227, 41, 0x4e6f76612073656e686120656e766961646121, 'Y', '2014-10-14 20:39:05'),
(1228, 41, 0x4772, 'Y', '2014-10-14 20:39:05'),
(1234, 41, 0x44697363757373, 'Y', '2014-10-14 20:39:05'),
(1235, 41, 0x566f6c74617220, 'Y', '2014-10-14 20:39:05'),
(1237, 41, 0x50726f6375726172, 'Y', '2014-10-14 20:39:05'),
(1238, 41, 0x4174697661722f646573617469766172206d6f64657261646f7220646f2066, 'Y', '2014-10-14 20:39:05'),
(1241, 41, 0x4d6f646572616e646f, 'Y', '2014-10-14 20:39:05'),
(1243, 41, 0x706f72, 'Y', '2014-10-14 20:39:05'),
(1244, 41, 0x4573706572616e646f3c62723e6170726f7661, 'Y', '2014-10-14 20:39:05'),
(1245, 41, 0x4f63756c746f, 'Y', '2014-10-14 20:39:05'),
(1246, 41, 0x6d756461646f, 'Y', '2014-10-14 20:39:05'),
(1251, 41, 0x4170726f766172, 'Y', '2014-10-14 20:39:05'),
(1252, 41, 0x52656a6569746172, 'Y', '2014-10-14 20:39:05'),
(1253, 41, 0x456e76696172, 'Y', '2014-10-14 20:39:05'),
(1254, 41, 0x4d656e736167656e7320636f6d206170726f7661, 'Y', '2014-10-14 20:39:05'),
(1255, 41, 0x4c697374612064652066, 'Y', '2014-10-14 20:39:05'),
(1256, 41, 0x4d6f64657261646f, 'Y', '2014-10-14 20:39:05'),
(1257, 41, 0x44697363757373, 'Y', '2014-10-14 20:39:05'),
(1258, 41, 0x4175746f72, 'Y', '2014-10-14 20:39:05'),
(1259, 41, 0x4d736773, 'Y', '2014-10-14 20:39:05'),
(1260, 41, '', 'Y', '2014-10-14 20:39:05'),
(1261, 41, 0x44657363756c70652c20766f63, 'Y', '2014-10-14 20:39:05'),
(1262, 41, 0x4573736520636f6d656e74, 'Y', '2014-10-14 20:39:05'),
(1263, 41, 0x48697374, 'Y', '2014-10-14 20:39:05'),
(1266, 41, 0x456c6520, 'Y', '2014-10-14 20:39:05'),
(1267, 41, 0x526573756c7461646f206461206275736361, 'Y', '2014-10-14 20:39:05'),
(1270, 41, 0x546f646f73206f73206a6f676f7320, 'Y', '2014-10-14 20:39:05'),
(1271, 41, 0x4a6f676f73207669, 'Y', '2014-10-14 20:39:05'),
(1273, 41, 0x556d6120706173746120707265636973612065737461722076617a6961207061726120736572206170616761646121, 'Y', '2014-10-14 20:39:05'),
(1274, 41, 0x64, 'Y', '2014-10-14 20:39:05'),
(1275, 41, 0x64, 'Y', '2014-10-14 20:39:05'),
(1276, 41, 0x68, 'Y', '2014-10-14 20:39:05'),
(1277, 41, 0x68, 'Y', '2014-10-14 20:39:05'),
(2244, 25, 0x536368696d62c4832063756c6f72696c65, 'Y', '2014-11-26 10:15:56'),
(1279, 41, 0x6368696e, 'Y', '2014-10-14 20:39:05'),
(1280, 41, 0x747572636f, 'Y', '2014-10-14 20:39:05'),
(1281, 41, 0x68, 'Y', '2014-10-14 20:39:05'),
(1282, 41, 0x427573636120646f20447261676f6e, 'Y', '2014-10-14 20:39:05'),
(1283, 41, 0x416368656920756d207465726d6f20646520476f20717565206e, 'Y', '2014-10-14 20:39:05'),
(1287, 41, 0x4f207175652073, 'Y', '2014-10-14 20:39:05'),
(1299, 41, 0x506f72717565206d6575206a6f676f206e, 'Y', '2014-10-14 20:39:05'),
(1311, 41, 0x496e746572666163657320616c7465726e61746976617320646f20444753, 'Y', '2014-10-14 20:39:05'),
(1314, 41, 0x4f20447261676f6e20476f205365727665722074656d207375706f7274652061205741503f, 'Y', '2014-10-14 20:39:05'),
(1316, 41, 0x4f20447261676f6e20476f205365727665722074656d207375706f7274652061205253533f, 'Y', '2014-10-14 20:39:05'),
(1326, 41, 0x436f6d6f2065752070726f6375726f206e612070, 'Y', '2014-10-14 20:39:05'),
(1328, 41, 0x436f6d6f20706573717569736172206e6f732066, 'Y', '2014-10-14 20:39:05'),
(1330, 41, 0x4f2071756520, 'Y', '2014-10-14 20:39:05'),
(1348, 41, 0x45737175656369206d696e68612073656e68612e204f2071756520706f73736f2066617a65723f, 'Y', '2014-10-14 20:39:05'),
(1349, 41, 0x4578697374656d2064756173207369747561, 'Y', '2014-10-14 20:39:05'),
(1354, 41, 0x5175616973206f73206974656e73206e612070, 'Y', '2014-10-14 20:39:05'),
(1360, 41, 0x6a69676f, 'Y', '2014-10-14 20:39:05'),
(1361, 41, 0x5465726d6f206a61706f6e, 'Y', '2014-10-14 20:39:05'),
(1371, 41, 0x44657363756c70652c206e, 'Y', '2014-10-14 20:39:05'),
(1373, 41, 0x44657363756c70652c206e, 'Y', '2014-10-14 20:39:05'),
(1374, 41, 0x44657363756c70652c206f7320757375, 'Y', '2014-10-14 20:39:05'),
(1375, 41, 0x44657363756c70652c20696420646520757375, 'Y', '2014-10-14 20:39:05'),
(1376, 41, 0x44657363756c70652c20696420646520757375, 'Y', '2014-10-14 20:39:05'),
(1377, 41, 0x44657363756c70652c2065786973746520756d2070726f626c656d6120646520636f6e666967757261, 'Y', '2014-10-14 20:39:05'),
(1378, 41, 0x436f6e7461746f73, 'Y', '2014-10-14 20:39:05'),
(1379, 41, 0x41706172, 'Y', '2014-10-14 20:39:05'),
(1382, 41, 0x44616e646f206f73206f72696d6569726f7320706173736f73, 'Y', '2014-10-14 20:39:05'),
(1383, 41, 0x4e6f74, 'Y', '2014-10-14 20:39:05'),
(1384, 41, 0x4e6f746173206465206c616e, 'Y', '2014-10-14 20:39:05'),
(1385, 41, 0x4573747275747572612064612070, 'Y', '2014-10-14 20:39:05'),
(1386, 41, 0x436f6c65, 'Y', '2014-10-14 20:39:05'),
(1387, 41, 0x4c6973746120646520646573656a6f7320646f20444753, 'Y', '2014-10-14 20:39:05'),
(1388, 41, 0x5265637572736f7320652070656469646f7320717565206f7320757375, 'Y', '2014-10-14 20:39:05'),
(1389, 41, 0x456469746172206f7264656d2062696f6772, 'Y', '2014-10-14 20:39:05'),
(1390, 41, 0x6d756465206170656e61732061206f7264656d2c20616c7465726172206f20746578746f206e, 'Y', '2014-10-14 20:39:05'),
(1391, 41, 0x4d, 'Y', '2014-10-14 20:39:05'),
(1392, 41, 0x6573636f6c68657220756d2076616c6f72206d656e6f7220616a756461206f207365727669646f72202876656a61206f2046415129, 'Y', '2014-10-14 20:39:05'),
(1393, 41, 0x4d756461722061706172, 'Y', '2014-10-14 20:39:05'),
(1394, 41, 0x566f6c7461722070617261206f20, 'Y', '2014-10-14 20:39:05'),
(1395, 41, 0x536520766f63, 'Y', '2014-10-14 20:39:05'),
(1396, 41, 0x436c6971756520656d2022456e7669617222207061726120636f6e6669726d6172, 'Y', '2014-10-14 20:39:05'),
(1397, 41, 0x41646963696f6e61722074656d706f2070617261206f20616476657273, 'Y', '2014-10-14 20:39:05'),
(1398, 41, 0x4d6f7374726172206f627365727661646f726573, 'Y', '2014-10-14 20:39:05'),
(1399, 41, 0x4573636f6c6861207175616e746f2074656d706f2061646963696f6e616c20766f63, 'Y', '2014-10-14 20:39:05'),
(1400, 41, 0x61646963696f6e61646f20616f2074656d706f20646f2073657520616476657273, 'Y', '2014-10-14 20:39:05'),
(1401, 41, '', 'Y', '2014-10-14 20:39:05'),
(1402, 41, 0x41646963696f6e61722054656d706f, 'Y', '2014-10-14 20:39:05'),
(1403, 41, 0x43616e63656c6172, 'Y', '2014-10-14 20:39:05'),
(395, 36, 0xc3896c657472616a7a6920696e66c3b36b, 'Y', '2015-09-19 18:23:21'),
(5525, 36, 0xc3897276c3a96e7974656c656e206578747261206964c5912061206a6170c3a16e2062796f796f6d692d686f7a, 'Y', '2015-09-19 18:10:36'),
(1406, 41, '', 'Y', '2014-10-14 20:39:05'),
(1407, 41, '', 'Y', '2014-10-14 20:39:05'),
(1408, 41, '', 'Y', '2014-10-14 20:39:05'),
(1409, 41, 0x50726f6375726172206d656e736167656e73, 'Y', '2014-10-14 20:39:05'),
(1412, 41, 0x546f646f73, 'Y', '2014-10-14 20:39:05'),
(1413, 41, 0x50, 'Y', '2014-10-14 20:39:05'),
(1414, 41, 0x42, 'Y', '2014-10-14 20:39:05'),
(1415, 41, 0x4944, 'Y', '2014-10-14 20:39:05'),
(1416, 41, 0x736766, 'Y', '2014-10-14 20:39:05'),
(1417, 41, 0x4e6f6d65202870726574617329, 'Y', '2014-10-14 20:39:05'),
(1418, 41, 0x494420646520757375, 'Y', '2014-10-14 20:39:05'),
(1419, 41, 0x4e, 'Y', '2014-10-14 20:39:05'),
(1420, 41, 0x4e, 'Y', '2014-10-14 20:39:05'),
(1421, 41, 0x4e6f6d6520286272616e63617329, 'Y', '2014-10-14 20:39:05'),
(1422, 41, 0x496420646520757375, 'Y', '2014-10-14 20:39:05'),
(1423, 41, 0x4e, 'Y', '2014-10-14 20:39:05'),
(1424, 41, 0x4e, 'Y', '2014-10-14 20:39:05'),
(1425, 41, 0x4e, 'Y', '2014-10-14 20:39:05'),
(1426, 41, 0x4469666572656e, 'Y', '2014-10-14 20:39:05'),
(1427, 41, 0x4e, 'Y', '2014-10-14 20:39:05'),
(1428, 41, 0x4469662e206465206e, 'Y', '2014-10-14 20:39:05'),
(1429, 41, 0x416476657273, 'Y', '2014-10-14 20:39:05'),
(1430, 41, 0x557375, 'Y', '2014-10-14 20:39:05'),
(2705, 6, 0x4e756576612043616c65646f6e6961, 'Y', '2015-06-18 20:29:23'),
(2690, 6, 0x477579616e61204672616e63657361, 'Y', '2015-06-18 20:27:45'),
(1433, 41, 0x4e, 'Y', '2014-10-14 20:39:05'),
(6156, 6, 0x4e, 'Y', '2015-06-21 04:58:13'),
(1435, 41, 0x436f72, 'Y', '2014-10-14 20:39:05'),
(1436, 41, 0x436f726573, 'Y', '2014-10-14 20:39:05'),
(1437, 41, 0x54616d2e, 'Y', '2014-10-14 20:39:05'),
(1438, 41, 0x56616e742e, 'Y', '2014-10-14 20:39:05'),
(1439, 41, 0x4b6f6d69, 'Y', '2014-10-14 20:39:05'),
(1440, 41, 0x4a6f672e, 'Y', '2014-10-14 20:39:05'),
(1441, 41, 0x506f6e746f73, 'Y', '2014-10-14 20:39:05'),
(1442, 41, 0x56656e6365753f, 'Y', '2014-10-14 20:39:05'),
(1443, 41, 0x4176616c2e, 'Y', '2014-10-14 20:39:05'),
(1444, 41, '', 'Y', '2014-10-14 20:39:05'),
(6390, 40, 0x6d65736d6f20636f6e76697465206465706f6973206465204e2064696173, 'Y', '2016-05-01 01:18:39'),
(1446, 41, '', 'Y', '2014-10-14 20:39:05'),
(1447, 41, 0x52656c, 'Y', '2014-10-14 20:39:05'),
(1456, 41, '', 'Y', '2014-10-14 20:39:05'),
(1457, 41, 0x4261697861722053474620646f206a6f676f, 'Y', '2014-10-14 20:39:05'),
(1462, 41, 0x4f757472617320696e666f726d61, 'Y', '2014-10-14 20:39:05'),
(1463, 41, 0x4d6f7374726172206772, 'Y', '2014-10-14 20:39:05'),
(1464, 41, 0x4d6f737472617220616476657273, 'Y', '2014-10-14 20:39:05'),
(1465, 41, 0x436f6e766964617220757375, 'Y', '2014-10-14 20:39:05'),
(1466, 41, 0x41646963696f6e61722f65646974617220636f6e7461746f, 'Y', '2014-10-14 20:39:05'),
(1467, 41, 0x4d6f7374726172206d65757320616476657273, 'Y', '2014-10-14 20:39:05'),
(1468, 41, 0x4d6f7374726172206573746174, 'Y', '2014-10-14 20:39:05'),
(1469, 41, 0x456e76696172206d656e736167656d2070617261206f20636f6e7461746f, 'Y', '2014-10-14 20:39:05'),
(1470, 41, 0x436f6e766964617220636f6e7461746f, 'Y', '2014-10-14 20:39:05'),
(1471, 41, 0x41646963696f6e6172206e6f766f20636f6e7461746f, 'Y', '2014-10-14 20:39:05'),
(1473, 41, 0x506573717569736172206e6f732066, 'Y', '2014-10-14 20:39:05'),
(1474, 41, '', 'Y', '2014-10-14 20:39:05'),
(1475, 41, 0x54656d706f2072657374616e7465, 'Y', '2014-10-14 20:39:05'),
(1476, 41, 0x45646974617220636f6e7461746f, 'Y', '2014-10-14 20:39:05'),
(1477, 41, 0x41646963696f6e617220636f6e7461746f, 'Y', '2014-10-14 20:39:05'),
(1478, 41, 0x417469766f, 'Y', '2014-10-14 20:39:05'),
(1479, 41, 0x4e6f6d65, 'Y', '2014-10-14 20:39:05'),
(1480, 41, 0x5061, 'Y', '2014-10-14 20:39:05'),
(1481, 41, 0x496e662e206465206e, 'Y', '2014-10-14 20:39:05'),
(1482, 41, 0x446973706f6e, 'Y', '2014-10-14 20:39:05'),
(1483, 41, 0x234a6f676f73, 'Y', '2014-10-14 20:39:05'),
(1484, 41, 0x456d2070726f636573736f, 'Y', '2014-10-14 20:39:05'),
(1485, 41, 0x5465726d696e61646f73, 'Y', '2014-10-14 20:39:05'),
(1486, 41, 0x47616e686f75, 'Y', '2014-10-14 20:39:05'),
(1487, 41, 0x506572646575, 'Y', '2014-10-14 20:39:05'),
(1489, 41, 0x417469766964616465, 'Y', '2014-10-14 20:39:05'),
(1490, 41, '', 'Y', '2014-10-14 20:39:05'),
(1492, 41, 0x4f627365727661646f72657320646f206a6f676f202573, 'Y', '2014-10-14 20:39:05'),
(1493, 41, 0x546f646f73, 'Y', '2014-10-14 20:39:05'),
(1497, 41, 0x496e666f, 'Y', '2014-10-14 20:39:05'),
(1498, 41, 0x436f6d656e74, 'Y', '2014-10-14 20:39:05'),
(1499, 41, 0x5469706f, 'Y', '2014-10-14 20:39:05'),
(1502, 41, 0x4c696d6974652064652074656d706f, 'Y', '2014-10-14 20:39:05'),
(1503, 41, 0x506f7369, 'Y', '2014-10-14 20:39:05'),
(1505, 41, 0x56616e746167656d207072, 'Y', '2014-10-14 20:39:05'),
(1506, 41, 0x5469706f, 'Y', '2014-10-14 20:39:05'),
(1507, 41, 0x5061737461, 'Y', '2014-10-14 20:39:05'),
(1508, 41, 0x5469706f, 'Y', '2014-10-14 20:39:05'),
(1509, 41, 0x44697265, 'Y', '2014-10-14 20:39:05'),
(1510, 41, 0x52656d6574656e7465, 'Y', '2014-10-14 20:39:05'),
(1511, 41, 0x50617261, 'Y', '2014-10-14 20:39:05'),
(1512, 41, 0x4465, 'Y', '2014-10-14 20:39:05'),
(1513, 41, 0x417373756e746f, 'Y', '2014-10-14 20:39:05'),
(1515, 41, 0x4d61726361, 'Y', '2014-10-14 20:39:05'),
(1516, 41, 0x4d696d206d65736d6f, 'Y', '2014-10-14 20:39:05'),
(1517, 41, 0x5365727669646f72, 'Y', '2014-10-14 20:39:05'),
(1518, 41, 0x50617261, 'Y', '2014-10-14 20:39:05'),
(1519, 41, 0x4465, 'Y', '2014-10-14 20:39:05'),
(1520, 41, 0x4572726f, 'Y', '2014-10-14 20:39:05'),
(1521, 41, 0x4d6f7374726172206c696e686173, 'Y', '2014-10-14 20:39:05'),
(1523, 41, 0x486973746f6772616d61206465206e, 'Y', '2014-10-14 20:39:05'),
(1525, 41, 0x6d616973206e6f7661, 'Y', '2014-10-14 20:39:05'),
(1526, 41, 0x656e636f6e7472616461206e6f2066, 'Y', '2014-10-14 20:39:05'),
(1527, 41, 0x427573636172206e6f732066, 'Y', '2014-10-14 20:39:05'),
(1528, 41, 0x546f646f73, 'Y', '2014-10-14 20:39:05'),
(1529, 41, 0x52656c6576, 'Y', '2014-10-14 20:39:05'),
(1532, 41, 0x546f646173206173206d656e736167656e73, 'Y', '2014-10-14 20:39:05'),
(1533, 41, 0x5072696d6569726173206d656e736167656e73, 'Y', '2014-10-14 20:39:05'),
(1535, 41, 0x50616c617672617320706172612070726f6375726172, 'Y', '2014-10-14 20:39:05'),
(1536, 41, 0x4175746f722028494420646520757375, 'Y', '2014-10-14 20:39:05'),
(1537, 41, 0x4573636f706f206461206d656e736167656d, 'Y', '2014-10-14 20:39:05'),
(1538, 41, 0x44617461, 'Y', '2014-10-14 20:39:05'),
(1539, 41, 0x4f7264656d, 'Y', '2014-10-14 20:39:05'),
(1540, 41, 0x4e, 'Y', '2014-10-14 20:39:05'),
(1541, 41, 0x557375, 'Y', '2014-10-14 20:39:05'),
(1542, 41, 0x436f6e7461746f206170616761646f21, 'Y', '2014-10-14 20:39:05'),
(1543, 41, 0x436f6e7461746f2073616c766f21, 'Y', '2014-10-14 20:39:05'),
(1544, 41, 0x41706167617220636f6e7461746f, 'Y', '2014-10-14 20:39:05'),
(1545, 41, 0x45646974617220636f6e7461746f, 'Y', '2014-10-14 20:39:05'),
(1546, 41, 0x56657220636f6e7461746f, 'Y', '2014-10-14 20:39:05'),
(1547, 41, 0x41706167617220636f6e7461746f, 'Y', '2014-10-14 20:39:05'),
(1548, 41, 0x43617465676f7269617320646f2073697374656d61, 'Y', '2014-10-14 20:39:05'),
(1549, 41, 0x43617465676f7269617320646520757375, 'Y', '2014-10-14 20:39:05'),
(1550, 41, 0x416e6f7461, 'Y', '2014-10-14 20:39:05'),
(1551, 41, 0x6d616e74656e6861206173206e6f746173206272657665732c20636f6d206174, 'Y', '2014-10-14 20:39:05'),
(1552, 41, 0x53616c76617220636f6e7461746f, 'Y', '2014-10-14 20:39:05'),
(1553, 41, 0x4d6f737472617220636f6e7461746f73, 'Y', '2014-10-14 20:39:05'),
(1554, 41, 0x41, 'Y', '2014-10-14 20:39:05'),
(1555, 41, 0x43617465676f7269617320646f2073697374656d61, 'Y', '2014-10-14 20:39:05'),
(1556, 41, 0x43617465676f7269617320646f20757375, 'Y', '2014-10-14 20:39:05'),
(1557, 41, 0x4e6f746173, 'Y', '2014-10-14 20:39:05'),
(1558, 41, 0x43726961646f, 'Y', '2014-10-14 20:39:05'),
(1560, 41, 0x4275736361722063617465676f7269617320646f2073697374656d61, 'Y', '2014-10-14 20:39:05'),
(1561, 41, 0x4275736361722063617465676f7269617320646520757375, 'Y', '2014-10-14 20:39:05'),
(1562, 41, 0x4c6973746120646520636f6e7461746f73, 'Y', '2014-10-14 20:39:05'),
(1563, 41, 0x4e6f74, 'Y', '2014-10-14 20:39:05'),
(1564, 41, 0x546f646f73206f73206a6f676f73, 'Y', '2014-10-14 20:39:05'),
(1565, 41, 0x4a6f676f7320656d2070726f67726573736f, 'Y', '2014-10-14 20:39:05'),
(1566, 41, 0x4a6f676f73207465726d696e61646f73, 'Y', '2014-10-14 20:39:05'),
(1568, 41, 0x7369747561, 'Y', '2014-10-14 20:39:05'),
(1569, 41, '', 'Y', '2014-10-14 20:39:05'),
(1570, 41, 0x4573746174, 'Y', '2014-10-14 20:39:05'),
(1572, 41, 0x4d6f73747261722061206d696d20636f6d6f20616476657273, 'Y', '2014-10-14 20:39:05'),
(1573, 41, 0x4d6f737472617220636f6d6f206d657520616476657273, 'Y', '2014-10-14 20:39:05'),
(1574, 41, 0x54726f63617220706170656c20646f20616476657273, 'Y', '2014-10-14 20:39:05'),
(1575, 41, 0x436f7220646f73206a6f6761646f726573, 'Y', '2014-10-14 20:39:05'),
(1576, 41, 0x536f6d61, 'Y', '2014-10-14 20:39:05'),
(1577, 41, 0x4170726f76656974616d656e746f20656d202347616d6573, 'Y', '2014-10-14 20:39:05'),
(1578, 41, 0x2347616d65732067616e686f73203a207065726469646f73, 'Y', '2014-10-14 20:39:05'),
(1579, 41, 0x2347616d65732067616e686f73203a207065726469646f7320706f7220506f6e747561, 'Y', '2014-10-14 20:39:05'),
(1580, 41, 0x236a6f676f732067616e686f73203a207065726469646f7320706f7220646573697374, 'Y', '2014-10-14 20:39:05'),
(1581, 41, 0x2347616d65732067616e686f73203a207065726469646f7320706f722054656d706f, 'Y', '2014-10-14 20:39:05'),
(1582, 41, 0x234a6f676f7320636f6d204a69676f, 'Y', '2014-10-14 20:39:05'),
(1583, 41, 0x2347616d657320636f6d2076616e746167656d, 'Y', '2014-10-14 20:39:05'),
(1584, 41, 0x56616e746167656d206d, 'Y', '2014-10-14 20:39:05'),
(1585, 41, 0x4d6f7374726172206170656e6173206d656e736167656e7320696e696369616973, 'Y', '2014-10-14 20:39:05'),
(1586, 41, 0x546f646173, 'Y', '2014-10-14 20:39:05'),
(1587, 41, 0x52656c6163696f6e61646f2d612d6a6f676f73, 'Y', '2014-10-14 20:39:05'),
(1588, 41, 0x4e, 'Y', '2014-10-14 20:39:05'),
(1590, 41, 0x656e636f6e747261722049442d64652d757375, 'Y', '2014-10-14 20:39:05'),
(1591, 41, 0x546f646f73, 'Y', '2014-10-14 20:39:05'),
(1592, 41, 0x53656c6563696f6e617220706173746173, 'Y', '2014-10-14 20:39:05'),
(6216, 40, 0x426f74e36f20646520656e76696172206a6f67616461, 'Y', '2014-12-31 22:30:18'),
(1594, 41, 0x50726f6375726172206d656e736167656d, 'Y', '2014-10-14 20:39:05'),
(1595, 41, 0x4e617665676172206e617320706173746173, 'Y', '2014-10-14 20:39:05'),
(1596, 41, 0x50726f7465676572206a6f676f73206e612073616c6120646520657370657261, 'Y', '2014-10-14 20:39:05'),
(1597, 41, 0x52656a6569746172206d656e736167656e73, 'Y', '2014-10-14 20:39:05'),
(1598, 41, 0x52656a656974617220636f6e7669746573, 'Y', '2014-10-14 20:39:05'),
(1599, 41, 0x43616d6172616461, 'Y', '2014-10-14 20:39:05'),
(1600, 41, 0x416d69676f, 'Y', '2014-10-14 20:39:05'),
(1601, 41, 0x4573747564616e7465, 'Y', '2014-10-14 20:39:05'),
(1602, 41, 0x50726f666573736f72, 'Y', '2014-10-14 20:39:05'),
(1603, 41, 0x46, 'Y', '2014-10-14 20:39:05'),
(1604, 41, 0x4f67726f, 'Y', '2014-10-14 20:39:05'),
(1606, 41, 0x50726f6375726172, 'Y', '2014-10-14 20:39:05'),
(1607, 41, 0x5265636f6d65, 'Y', '2014-10-14 20:39:05'),
(1608, 41, 0x53696e74617865, 'Y', '2014-10-14 20:39:05'),
(1609, 41, 0x4e, 'Y', '2014-10-14 20:39:05'),
(1610, 41, 0x544558544f, 'Y', '2014-10-14 20:39:05'),
(1611, 41, 0x7061726369616c, 'Y', '2014-10-14 20:39:05'),
(1612, 41, 0x4e, 'Y', '2014-10-14 20:39:05'),
(1613, 41, 0x6e, 'Y', '2014-10-14 20:39:05'),
(1614, 41, 0x5041, 'Y', '2014-10-14 20:39:05'),
(1617, 41, 0x546f646f73206f73207061, 'Y', '2014-10-14 20:39:05'),
(1618, 41, 0x44415441, 'Y', '2014-10-14 20:39:05'),
(1619, 41, 0x6162736f6c75746f, 'Y', '2014-10-14 20:39:05'),
(1620, 41, 0x616e6f73, 'Y', '2014-10-14 20:39:05'),
(1621, 41, 0x6d65736573, 'Y', '2014-10-14 20:39:05'),
(1622, 41, 0x73656d616e6173, 'Y', '2014-10-14 20:39:05'),
(1623, 41, 0x64696173, 'Y', '2014-10-14 20:39:05'),
(1624, 41, 0x686f726173, 'Y', '2014-10-14 20:39:05'),
(1626, 41, 0x444154412d52454c4154495641, 'Y', '2014-10-14 20:39:05'),
(1627, 41, 0x6578617461, 'Y', '2014-10-14 20:39:05'),
(1628, 41, 0x6e, 'Y', '2014-10-14 20:39:05'),
(1629, 41, 0x74616c76657a20766f63, 'Y', '2014-10-14 20:39:05'),
(1630, 41, 0x546f646f73, 'Y', '2014-10-14 20:39:05'),
(1631, 41, 0x53696d, 'Y', '2014-10-14 20:39:05'),
(1632, 41, 0x4e, 'Y', '2014-10-14 20:39:05'),
(1633, 41, 0x546f646f73, 'Y', '2014-10-14 20:39:05'),
(1634, 41, 0x53696d, 'Y', '2014-10-14 20:39:05'),
(1635, 41, 0x4e, 'Y', '2014-10-14 20:39:05'),
(1636, 41, '', 'Y', '2014-10-14 20:39:05'),
(1637, 41, 0x4d6f646f206176616e, 'Y', '2014-10-14 20:39:05'),
(1638, 41, 0x504c41434152, 'Y', '2014-10-14 20:39:05'),
(1639, 41, 0x4573636f6c6861206e656e68756d2c20756d206f75206d61697320656c656d656e746f73, 'Y', '2014-10-14 20:39:05'),
(1640, 41, 0x6578636573736f20646520736570617261646f726573, 'Y', '2014-10-14 20:39:05'),
(1641, 41, 0x707265636973612d736520616f206d656e6f732064652025312473206c6574726173207175616e646f2073652075736120746578746f2071756520636f6d65, 'Y', '2014-10-14 20:39:05'),
(1642, 41, 0x7072656669786f206e, 'Y', '2014-10-14 20:39:05'),
(1643, 41, 0x666f726d61746f206465206461746120696e76, 'Y', '2014-10-14 20:39:05'),
(1644, 41, 0x666f726d61746f206465206461746120696e76, 'Y', '2014-10-14 20:39:05'),
(1645, 41, 0x64696120696e76, 'Y', '2014-10-14 20:39:05'),
(1646, 41, 0x7573616e646f2063697461, 'Y', '2014-10-14 20:39:05'),
(1647, 41, 0x656e74696461646520584d4c20696e76, 'Y', '2014-10-14 20:39:05'),
(1648, 41, 0x657469717565746120584d4c20696e76, 'Y', '2014-10-14 20:39:05'),
(1650, 41, 0x657469717565746120584d4c2066696e616c20696e76, 'Y', '2014-10-14 20:39:05'),
(1651, 41, 0x617472696275746f20584d4c20696e76, 'Y', '2014-10-14 20:39:05'),
(1654, 41, 0x446573637269, 'Y', '2014-10-14 20:39:05');
INSERT INTO `Translations` (`Original_ID`, `Language_ID`, `Text`, `Translated`, `Updated`) VALUES
(1662, 41, 0x506f73736f2066617a657220627573636173206e6f20447261676f6e3f, 'Y', '2014-10-14 20:39:05'),
(1678, 41, 0x436f6d6f20706f73736f20627573636172206a6f676f733f, 'Y', '2014-10-14 20:39:05'),
(1692, 41, 0x4f207175652073, 'Y', '2014-10-14 20:39:05'),
(1716, 41, 0x5175616c20, 'Y', '2014-10-14 20:39:05'),
(1725, 41, 0x4c6963656e, 'Y', '2014-10-14 20:39:05'),
(1726, 41, 0x4c6963656e, 'Y', '2014-10-14 20:39:05'),
(1731, 41, 0x52656c, 'Y', '2014-10-14 20:39:05'),
(1732, 41, 0x446174612064652063726961, 'Y', '2014-10-14 20:39:05'),
(1733, 41, 0x446174612064652063726961, 'Y', '2014-10-14 20:39:05'),
(1734, 41, 0x44617461206465206d6f646966696361, 'Y', '2014-10-14 20:39:05'),
(1735, 41, 0x44617461206465206d6f646966696361, 'Y', '2014-10-14 20:39:05'),
(1736, 41, 0x4e, 'Y', '2014-10-14 20:39:05'),
(1737, 41, 0x6d696e75746f73, 'Y', '2014-10-14 20:39:05'),
(1742, 41, 0x466f726d617461, 'Y', '2014-10-14 20:39:05'),
(1749, 41, 0x456e73696e6f206520726f62, 'N', '2014-10-14 20:39:05'),
(1750, 41, 0x4f2071756520, 'Y', '2014-10-14 20:39:05'),
(1752, 41, 0x5175656d20, 'N', '2014-10-14 20:39:05'),
(1753, 41, 0x3c757365722032353536323e20, 'Y', '2014-10-14 20:39:05'),
(1754, 41, 0x44657363756c70652c20766f63, 'Y', '2014-10-14 20:39:05'),
(1756, 41, 0x44657363756c70652c20766f63, 'Y', '2014-10-14 20:39:05'),
(1757, 41, 0x5061726120637269617220756d61206e6f766120636f6e74612061706573617220646f20626c6f717565696f20646520656e64657265, 'Y', '2014-10-14 20:39:05'),
(1758, 41, 0x506f72206661766f7220656e74726520636f6d20756d2069642d64652d757375, 'Y', '2014-10-14 20:39:05'),
(1759, 41, 0x556d20626c6f717565696f20646520495020, 'Y', '2014-10-14 20:39:05'),
(1760, 41, 0x506f72206661766f722064696761206f206d6f7469766f20646520766f63, 'Y', '2014-10-14 20:39:05'),
(1761, 41, 0x4c, 'Y', '2014-10-14 20:39:05'),
(1762, 41, 0x546f646f73206f732063616d706f7320707265636973616d2073657220707265656e636869646f7320706172612066617a6572207365752070656469646f2e, 'Y', '2014-10-14 20:39:05'),
(1763, 41, 0x4575206c69206520636f6e636f7264656920636f6d206173203c6120687265663d22257322207461726765743d22646773544f53223e52656772617320646520436f6e647574613c2f613e20646f204447532e, 'Y', '2014-10-14 20:39:05'),
(1764, 41, 0x456e766961722070656469646f20646520726567697374726f, 'Y', '2014-10-14 20:39:05'),
(1765, 41, 0x44657363756c70652c20766f63, 'Y', '2014-10-14 20:39:05'),
(1766, 41, 0x44657363756c70652c20766f63, 'Y', '2014-10-14 20:39:05'),
(1767, 41, 0x44657363756c70652c20766f63, 'Y', '2014-10-14 20:39:05'),
(1768, 41, 0x506f72206661766f722c206c6569612061732052656772617320646520436f6e647574612065206d61727175652061206f70, 'Y', '2014-10-14 20:39:05'),
(1769, 41, 0x44657363756c70652c20766f63, 'Y', '2014-10-14 20:39:05'),
(1772, 41, 0x4d6f7374726172206c6f6720646f2066, 'Y', '2014-10-14 20:39:05'),
(1776, 41, 0x5465726d6f7320646f205365727669, 'Y', '2014-10-14 20:39:05'),
(1777, 41, 0x52656772617320646520636f6e64757461206520506f6c, 'Y', '2014-10-14 20:39:05'),
(1779, 41, 0x456469746f72657320646f20464151, 'Y', '2014-10-14 20:39:05'),
(1780, 41, 0x4d6f64657261646f7265732064652046, 'Y', '2014-10-14 20:39:05'),
(1781, 41, 0x4d6f64657261646f722064652046, 'Y', '2014-10-14 20:39:05'),
(1782, 41, 0x415649534f3a2041206c6973746120636f6d706c657461206465206a6f676f7320, 'Y', '2014-10-14 20:39:05'),
(1783, 41, 0x436f6e746120626c6f717565616461202d2061636573736f206e656761646f, 'Y', '2014-10-14 20:39:05'),
(1784, 41, 0x496e666f726d61, 'Y', '2014-10-14 20:39:05'),
(1785, 41, 0x4f42532e, 'Y', '2014-10-14 20:39:05'),
(1787, 41, 0x4f63756c7461, 'Y', '2014-10-14 20:39:05'),
(1826, 41, 0x417475616c697a6172, 'Y', '2014-10-14 20:39:05'),
(1842, 41, 0x506f6c, 'Y', '2014-10-14 20:39:05'),
(1843, 41, 0x506f6c, 'Y', '2014-10-14 20:39:05'),
(1844, 41, 0x52656772617320646520436f6e64757461, 'Y', '2014-10-14 20:39:05'),
(1845, 41, 0x447261676f6e476f53657276657220284447532920, 'Y', '2014-10-14 20:39:05'),
(1846, 41, 0x3c703e4e, 'Y', '2014-10-14 20:39:05'),
(1847, 41, 0x3c703e536520766f63, 'Y', '2014-10-14 20:39:05'),
(1848, 41, 0x506f6c, 'Y', '2014-10-14 20:39:05'),
(1849, 41, 0x3c703e4e, 'Y', '2014-10-14 20:39:05'),
(1850, 41, 0x3c703e566f63, 'Y', '2014-10-14 20:39:05'),
(1851, 41, 0x446174612064652065666574697661, 'Y', '2014-10-14 20:39:05'),
(1852, 41, 0x4120706f6c, 'Y', '2014-10-14 20:39:05'),
(1853, 41, 0x4d696e696174757261, 'Y', '2014-10-14 20:39:05'),
(1854, 41, 0x496e7374616e74, 'Y', '2014-10-14 20:39:05'),
(1860, 41, 0x4f73206461646f73206465207472616475, 'Y', '2014-10-14 20:39:05'),
(1861, 41, 0x56657273, 'Y', '2014-10-14 20:39:05'),
(1871, 41, 0x436f6e74726962756972, 'Y', '2014-10-14 20:39:05'),
(1872, 41, 0x41706f6965206f2044475320636f6d20756d6120636f6e747269627569, 'Y', '2014-10-14 20:39:05'),
(1873, 41, 0x436f6e747269627569, 'Y', '2014-10-14 20:39:05'),
(1874, 41, 0x5465726d6f7320646f205365727669, 'Y', '2014-10-14 20:39:05'),
(1875, 41, 0x436f6e747269627569, 'Y', '2014-10-14 20:39:05'),
(1877, 41, 0x496e66656c697a6d656e7465206e6f2064696120352064652066657665726569726f20646520323030392c2065737361206d, 'Y', '2014-10-14 20:39:05'),
(1878, 41, 0x3c703e506f7274616e746f20657374616d6f7320706564696e646f206120766f63, 'Y', '2014-10-14 20:39:05'),
(1879, 41, 0x4f206c696e6b206120736567756972206c65766120, 'Y', '2014-10-14 20:39:05'),
(1880, 41, 0x4d7569746f206f6272696761646f2070656c612067656e65726f736120646f61, 'Y', '2014-10-14 20:39:05'),
(1885, 41, 0x4f63756c746f, 'Y', '2014-10-14 20:39:05'),
(1886, 41, 0x4573636f6e646572206a6f676f73206e612073616c6120646520657370657261, 'Y', '2014-10-14 20:39:05'),
(1887, 41, 0x5175657269646f7320616d616e74657320646f20476f2c0d0a3c703e706f72207175617365207365746520616e6f732061676f7261202832303039292c206f20447261676f6e20476f2053657276657220666f692067656e74696c6d656e746520686f7370656461646f2070656c612053616d7572616a446174612c20646520666f726d6120746f74616c6d656e74652067726174756974612e20536f6d6f732065787472656d616d656e746520677261746f7320706f72206973736f2c206f207365727669, 'Y', '2014-10-14 20:39:05'),
(1890, 41, 0x56616e746167656d, 'Y', '2014-10-14 20:39:05'),
(1892, 41, 0x746573756a69, 'Y', '2014-10-14 20:39:05'),
(1893, 41, 0x4a6f676164612074, 'Y', '2014-10-14 20:39:05'),
(1894, 41, 0x73656e736569, 'Y', '2014-10-14 20:39:05'),
(1896, 41, 0x616a69, 'Y', '2014-10-14 20:39:05'),
(1908, 41, 0x436f6d6f20706f73736f206669636172206d61697320666f7274652c2061756d656e746172206d6575206e, 'Y', '2014-10-14 20:39:05'),
(1910, 41, 0x506f73736f20766f6c74617220756d61206a6f676164613f, 'Y', '2014-10-14 20:39:05'),
(1919, 41, 0x4e6f206361736f20646520766f63, 'Y', '2014-10-14 20:39:05'),
(1920, 41, 0x4e6f206361736f20646520766f63, 'Y', '2014-10-14 20:39:05'),
(1922, 41, 0x70617261206d61697320646574616c6865732076656a61206f204641513a, 'Y', '2014-10-14 20:39:05'),
(1923, 41, 0x436f7461, 'Y', '2014-10-14 20:39:05'),
(1924, 41, 0x43, 'Y', '2014-10-14 20:39:05'),
(1926, 41, 0x4d6f73747261722063, 'Y', '2014-10-14 20:39:05'),
(1927, 41, 0x526573756c7461646f, 'Y', '2014-10-14 20:39:05'),
(1928, 41, 0x43, 'Y', '2014-10-14 20:39:05'),
(1929, 41, 0x53756120636f74612064652061636573736f7320657374, 'Y', '2014-10-14 20:39:05'),
(1930, 41, 0x53756120636f74612064652061636573736f7320616361626f752e, 'Y', '2014-10-14 20:39:05'),
(1932, 41, 0x526573747269, 'Y', '2014-10-14 20:39:05'),
(1933, 41, 0x44657363756c70652c206e, 'Y', '2014-10-14 20:39:05'),
(1934, 41, 0x426f6c6574696d2073616c766f21, 'Y', '2014-10-14 20:39:05'),
(1935, 41, 0x41646d696e6973747261646f7220646520426f6c6574696d, 'Y', '2014-10-14 20:39:05'),
(1936, 41, 0x494420646520426f6c6574696d, 'Y', '2014-10-14 20:39:05'),
(1937, 41, 0x4e6f766f20626f6c6574696d, 'Y', '2014-10-14 20:39:05'),
(1938, 41, 0x4175746f7220646f20426f6c6574696d, 'Y', '2014-10-14 20:39:05'),
(1939, 41, 0x496e64696361646f72657320646520426f6c6574696d, 'Y', '2014-10-14 20:39:05'),
(1941, 41, 0x4c6569747572617320286d61726361, 'Y', '2014-10-14 20:39:05'),
(1942, 41, 0x4f627365727661, 'Y', '2014-10-14 20:39:05'),
(1943, 41, 0x4572726f, 'Y', '2014-10-14 20:39:05'),
(1944, 41, 0x4578697374656d20616c67756e73206572726f73, 'Y', '2014-10-14 20:39:05'),
(1945, 41, 0x43617465676f72696120617475616c, 'Y', '2014-10-14 20:39:05'),
(1946, 41, 0x5369747561, 'Y', '2014-10-14 20:39:05'),
(1947, 41, 0x5469706f20646520616c766f20617475616c, 'Y', '2014-10-14 20:39:05'),
(1950, 41, 0x6170656e61732070617261206f207469706f2d64652d616c766f205b25735d2c2049442d64652d757375, 'Y', '2014-10-14 20:39:05'),
(1953, 41, 0x4f7320757375, 'Y', '2014-10-14 20:39:05'),
(1955, 41, 0x44617461206465207075626c696361, 'Y', '2014-10-14 20:39:05'),
(4157, 40, 0x5061727469636970616e74657320646f20546f726e65696f205b25735d, 'Y', '2015-01-17 17:21:03'),
(1957, 41, 0x56616c6964616465, 'Y', '2014-10-14 20:39:05'),
(1959, 41, 0x546578746f, 'Y', '2014-10-14 20:39:05'),
(1960, 41, 0x4d7564616e, 'Y', '2014-10-14 20:39:05'),
(1961, 41, 0x53616c76617220626f6c6574696d, 'Y', '2014-10-14 20:39:05'),
(1964, 41, 0x546f646f73206f7320626f6c6574696e73, 'Y', '2014-10-14 20:39:05'),
(1965, 41, 0x4e6f766f20626f6c6574696d20646520757375, 'Y', '2014-10-14 20:39:05'),
(1966, 41, 0x4e6f766f20626f6c6574696d2061646d696e69737472617469766f, 'Y', '2014-10-14 20:39:05'),
(1967, 41, 0x4f207469706f2d64652d616c766f20646520626f6c6574696d205b25735d20, 'Y', '2014-10-14 20:39:05'),
(1968, 41, 0x412063617465676f72696120646520626f6c6574696d205b25735d207072656369736120646520756d2049442d64652d746f726e65696f21, 'Y', '2014-10-14 20:39:05'),
(1969, 41, 0x4f207469706f2d64652d616c766f20646520626f6c6574696d205b25735d207072656369736120646520756d2049442d64652d746f726e65696f21, 'Y', '2014-10-14 20:39:05'),
(1970, 41, 0x556d2049442d64652d746f726e65696f207072656369736120736572206e756d, 'Y', '2014-10-14 20:39:05'),
(1971, 41, 0x4e, 'Y', '2014-10-14 20:39:05'),
(1972, 41, 0x4f207469706f2d64652d616c766f207072656369736120736572205b2573206f752025735d20736520612063617465676f72696120, 'Y', '2014-10-14 20:39:05'),
(1973, 41, 0x4f2049442d64652d746f726e65696f205b25735d207072656369736120736572206465636c617261646f207175616e646f206f207469706f2d64652d616c766f206e, 'Y', '2014-10-14 20:39:05'),
(1974, 41, 0x4f207469706f2d64652d616c766f20646f20626f6c6574696d205b25735d206e656365737369746120646520756d2049442d64652d6a6f676f, 'Y', '2014-10-14 20:39:05'),
(1975, 41, 0x49442d64652d6a6f676f207072656369736120736572206e756d, 'Y', '2014-10-14 20:39:05'),
(1976, 41, 0x4a6f676f206e, 'Y', '2014-10-14 20:39:05'),
(1977, 41, 0x4f2049442d64652d6a6f676f205b25735d20707265636973612073657220646520756d206a6f676f2d6d, 'Y', '2014-10-14 20:39:05'),
(1978, 41, 0x4f2049442d64652d6a6f676f205b25735d20707265636973612065737461722076617a696f207175616e646f206f207469706f2d64652d616c766f206e, 'Y', '2014-10-14 20:39:05'),
(1979, 41, 0x46616c7461206f206175746f7220646f20626f6c6574696d, 'Y', '2014-10-14 20:39:05'),
(1981, 41, 0x41206c697374612d64652d757375, 'Y', '2014-10-14 20:39:05'),
(1982, 41, 0x4578697374656d20617669736f73206465206c6973746120646520757375, 'Y', '2014-10-14 20:39:05'),
(1983, 41, 0x44617461206461207075626c696361, 'Y', '2014-10-14 20:39:05'),
(1985, 41, 0x56616c696461646520646f20626f6c6574696d, 'Y', '2014-10-14 20:39:05'),
(1986, 41, 0x54, 'Y', '2014-10-14 20:39:05'),
(1987, 41, 0x4f62732d64652d61646d696e20617573656e7465207061726120626f6c6574696d2065646974, 'Y', '2014-10-14 20:39:05'),
(2005, 41, 0x494420646520546f726e65696f, 'Y', '2014-10-14 20:39:05'),
(2006, 41, 0x5369747561, 'Y', '2014-10-14 20:39:05'),
(2055, 41, 0x53616c766172206d7564616e, 'Y', '2014-10-14 20:39:05'),
(2059, 41, 0x416c7465726172206e, 'Y', '2014-10-14 20:39:05'),
(2086, 41, 0x50657371756973612073616c766121, 'Y', '2014-10-14 20:39:05'),
(2087, 41, 0x476572656e63696172205065737175697361, 'Y', '2014-10-14 20:39:05'),
(2088, 41, 0x4944206461207065737175697361, 'Y', '2014-10-14 20:39:05'),
(2089, 41, 0x52656361727265676172205065737175697361, 'Y', '2014-10-14 20:39:05'),
(2090, 41, 0x566572207065737175697361, 'Y', '2014-10-14 20:39:05'),
(2091, 41, 0x4e6f7661207065737175697361, 'Y', '2014-10-14 20:39:05'),
(2092, 41, 0x4175746f72206461205065737175697361, 'Y', '2014-10-14 20:39:05'),
(2093, 41, 0x43726961646f, 'Y', '2014-10-14 20:39:05'),
(2094, 41, 0x436f6e746167656d20646520566f746f7320646520557375, 'Y', '2014-10-14 20:39:05'),
(2095, 41, 0x5469706f20417475616c, 'Y', '2014-10-14 20:39:05'),
(2097, 41, 0x506f6e746f73, 'Y', '2014-10-14 20:39:05'),
(2098, 41, 0x4573636f6c686173, 'Y', '2014-10-14 20:39:05'),
(2101, 41, 0x54, 'Y', '2014-10-14 20:39:05'),
(2102, 41, 0x4f70, 'Y', '2014-10-14 20:39:05'),
(2105, 41, 0x53616c766172205065737175697361, 'Y', '2014-10-14 20:39:05'),
(2106, 41, 0x566f7461, 'Y', '2014-10-14 20:39:05'),
(2107, 41, 0x506573717569736173, 'Y', '2014-10-14 20:39:05'),
(2108, 41, 0x4e6f7661207065737175697361, 'Y', '2014-10-14 20:39:05'),
(2145, 41, 0x50726f66697373696f6e616c, 'Y', '2014-10-14 20:39:05'),
(2146, 41, 0x526f62, 'Y', '2014-10-14 20:39:05'),
(2153, 41, 0x54656d706f2061646963696f6e61646f21, 'Y', '2014-10-14 20:39:05'),
(2154, 41, '', 'Y', '2014-10-14 20:39:05'),
(2155, 41, '', 'Y', '2014-10-14 20:39:05'),
(2156, 41, 0x416a756461, 'Y', '2014-10-14 20:39:05'),
(2157, 41, 0x416a7564612064612070, 'Y', '2014-10-14 20:39:05'),
(2158, 41, 0x4573746174, 'Y', '2014-10-14 20:39:05'),
(2159, 41, 0x4573746174, 'Y', '2014-10-14 20:39:05'),
(2160, 41, 0x4573746174, 'Y', '2014-10-14 20:39:05'),
(2161, 41, 0x436f6e766572736f72206465206e, 'Y', '2014-10-14 20:39:05'),
(2162, 41, 0x436f6e7665727465206f7574726f73206e, 'Y', '2014-10-14 20:39:05'),
(2163, 41, 0x556d2070656469646f207061726120637269617220756d61206e6f766120636f6e746120666f6920656e766961646f2070617261206f732061646d696e6973747261646f7265732e204973736f20706f6465206c6576617220756d2074656d706f2e205365207475646f206573746976657220636572746f2c206f73206461646f7320646120636f6e7461206520612073656e68612073, 'Y', '2014-10-14 20:39:05'),
(2164, 41, 0x4372696172206e6f766120636f6e7461207061726120757375, 'Y', '2014-10-14 20:39:05'),
(2165, 41, 0x4f732073656775696e746573206572726f7320666f72616d2064657465637461646f73, 'Y', '2014-10-14 20:39:05'),
(2166, 41, 0x45646974617220426f6c6574696d, 'Y', '2014-10-14 20:39:05'),
(2167, 41, 0x4e6f766f20626f6c6574696d, 'Y', '2014-10-14 20:39:05'),
(2168, 41, 0x4a6f676f, 'Y', '2014-10-14 20:39:05'),
(2169, 41, 0x43617465676f726961, 'Y', '2014-10-14 20:39:05'),
(2170, 41, 0x5369747561, 'Y', '2014-10-14 20:39:05'),
(2171, 41, 0x5469706f20646520416c766f, 'Y', '2014-10-14 20:39:05'),
(2172, 41, 0x4d65757320426f6c6574696e73, 'Y', '2014-10-14 20:39:05'),
(2173, 41, 0x4d6f7374726172206a6f6761646f726573, 'Y', '2014-10-14 20:39:05'),
(2174, 41, 0x496e666f726d61, 'Y', '2014-10-14 20:39:05'),
(2175, 41, 0x536f6d656e7465207061727469636970616e74657320646f206a6f676f2d6d, 'Y', '2014-10-14 20:39:05'),
(2176, 41, 0x4170656e6173206f20646f6e6f206f7520756d2064697265746f7220646f20746f726e65696f205b25735d20706f64656d20637269617220756d20626f6c6574696d2d64652d6e6f74, 'Y', '2014-10-14 20:39:05'),
(2177, 41, 0x412056616c6964616465207072656369736120736572206174, 'Y', '2014-10-14 20:39:05'),
(2178, 41, 0x466f746f206170616761646121, 'Y', '2014-10-14 20:39:05'),
(2179, 41, 0x466f746f2073616c766121, 'Y', '2014-10-14 20:39:05'),
(2180, 41, 0x5b2044696d656e73, 'Y', '2014-10-14 20:39:05'),
(2181, 41, 0x45646974617220666f746f, 'Y', '2014-10-14 20:39:05'),
(2182, 41, 0x456e7669617220666f746f, 'Y', '2014-10-14 20:39:05'),
(2183, 41, 0x4572726f73, 'Y', '2014-10-14 20:39:05'),
(2184, 41, 0x466f746f20617475616c, 'Y', '2014-10-14 20:39:05'),
(2185, 41, 0x53616c76617220666f746f, 'Y', '2014-10-14 20:39:05'),
(2186, 41, 0x41706167617220666f746f, 'Y', '2014-10-14 20:39:05'),
(2187, 41, 0x4c696d6974657320646f206172717569766f20646520666f746f6772616669613a20612064696d656e73, 'Y', '2014-10-14 20:39:05'),
(2188, 41, 0x466f726d61746f7320646520696d6167656d207375706f727461646f733a206a7065672c206769662c20706e67, 'Y', '2014-10-14 20:39:05'),
(2189, 41, 0x4f627365727661, 'Y', '2014-10-14 20:39:05'),
(2191, 41, 0x4d6f737472612063617465676f7269617320646520626f6c6574696e73, 'Y', '2014-10-14 20:39:05'),
(2192, 41, 0x52656a656974617220766974, 'Y', '2014-10-14 20:39:05'),
(2193, 41, 0x41746976612072656a6569, 'Y', '2014-10-14 20:39:05'),
(2194, 41, 0x4120766974, 'Y', '2014-10-14 20:39:05'),
(2195, 41, 0x6d, 'Y', '2014-10-14 20:39:05'),
(2196, 41, 0x41706172, 'Y', '2014-10-14 20:39:05'),
(2197, 41, 0x486162696c69746172206a617661736372697074, 'Y', '2014-10-14 20:39:05'),
(2198, 41, 0x53656d20626f74, 'Y', '2014-10-14 20:39:05'),
(2199, 41, 0x494420646f20626f74, 'Y', '2014-10-14 20:39:05'),
(2200, 41, 0x286170656e6173207061726120636f726573206465206d61646569726120636f6d207465787475726129, 'Y', '2014-10-14 20:39:05'),
(2201, 41, 0x41706f6e74617220286d6f7374726120636f6f7264656e6164617329, 'Y', '2014-10-14 20:39:05'),
(2202, 41, 0x41706f6e7461722053474620286d6f7374726120636f6f7264656e6164617320646f2053474629, 'Y', '2014-10-14 20:39:05'),
(2203, 41, 0x4d6f73747261206e, 'Y', '2014-10-14 20:39:05'),
(2204, 41, 0x4e756d657261, 'Y', '2014-10-14 20:39:05'),
(2205, 41, 0x4e756d657261, 'Y', '2014-10-14 20:39:05'),
(2206, 41, 0x4d6172636172206361707475726120646120, 'Y', '2014-10-14 20:39:05'),
(2207, 41, 0x4d6f766572206d61726361646f72, 'Y', '2014-10-14 20:39:05'),
(2208, 41, 0x45646974617220666f746f, 'Y', '2014-10-14 20:39:05'),
(2209, 41, 0x4e, 'Y', '2014-10-14 20:39:05'),
(2210, 41, 0x496e666f726d61, 'Y', '2014-10-14 20:39:05'),
(2211, 41, 0x4d75646172206e, 'Y', '2014-10-14 20:39:05'),
(2212, 41, 0x557375, 'Y', '2014-10-14 20:39:05'),
(2213, 41, 0x566f63, 'Y', '2014-10-14 20:39:05'),
(2214, 41, 0x4573636f6c6861206f20736575206e, 'Y', '2014-10-14 20:39:05'),
(2215, 41, 0x536520766f63, 'Y', '2014-10-14 20:39:05'),
(2216, 41, 0x536520766f63, 'Y', '2014-10-14 20:39:05'),
(2217, 41, 0x4e, 'Y', '2014-10-14 20:39:05'),
(2218, 41, 0x41207661726961, 'Y', '2014-10-14 20:39:05'),
(2219, 41, 0x3c623e22496e666f726d61, 'Y', '2014-10-14 20:39:05'),
(2220, 41, 0x3c623e4d7564617220756d206e, 'Y', '2014-10-14 20:39:05'),
(2221, 41, 0x54656e686120656d206d656e746520717565206a6f6761722076, 'Y', '2014-10-14 20:39:05'),
(2222, 41, 0x556d61206d7564616e, 'Y', '2014-10-14 20:39:05'),
(4534, 25, 0x536574c4837269, 'Y', '2014-11-14 11:32:53'),
(2225, 41, 0x4661, 'Y', '2014-10-14 20:39:05'),
(2226, 41, 0x50656469646f206465206d7564616e, 'Y', '2014-10-14 20:39:05'),
(2227, 41, 0x4f627365727661, 'Y', '2014-10-14 20:39:05'),
(2234, 41, 0x4e4f5641, 'Y', '2014-10-14 20:39:05'),
(2241, 41, 0x50, 'Y', '2014-10-14 20:39:05'),
(2242, 41, 0x5072696d65697261206a6f67616461, 'Y', '2014-10-14 20:39:05'),
(2244, 41, 0x496e76657274657220436f726573, 'Y', '2014-10-14 20:39:05'),
(2266, 41, 0x627573636172206170656e6173206e6f20464151206f726967696e616c20656d20696e676c, 'Y', '2014-10-14 20:39:05'),
(2267, 41, 0x4e61646120666f6920656e636f6e747261646f206e6f204641512e, 'Y', '2014-10-14 20:39:05'),
(2268, 41, 0x46616c7461206f2074, 'Y', '2014-10-14 20:39:05'),
(2269, 41, 0x46756e63696f6e616c69646164652072656d6f7669646121, 'Y', '2014-10-14 20:39:05'),
(2270, 41, 0x46756e63696f6e616c69646164652073616c76612120257320706f6e746f732d64652d66756e63696f6e616c6964616465206465766f6c7669646f7320616f7320766f74616e74657321, 'Y', '2014-10-14 20:39:05'),
(2271, 41, 0x46756e63696f6e616c69646164652073616c766121, 'Y', '2014-10-14 20:39:05'),
(2272, 41, 0x4170616761722066756e63696f6e616c6964616465, 'Y', '2014-10-14 20:39:05'),
(2273, 41, 0x417475616c697a61722066756e63696f6e616c6964616465, 'Y', '2014-10-14 20:39:05'),
(2274, 41, 0x41646963696f6e61722066756e63696f6e616c6964616465, 'Y', '2014-10-14 20:39:05'),
(2275, 41, 0x4d7564616e, 'Y', '2014-10-14 20:39:05'),
(2276, 41, 0x456469746f72, 'Y', '2014-10-14 20:39:05'),
(2277, 41, '', 'Y', '2014-10-14 20:39:05'),
(2278, 41, 0x46756e63696f6e616c6964616465206e, 'Y', '2014-10-14 20:39:05'),
(2279, 41, 0x52656d6f7665722066756e63696f6e616c6964616465, 'Y', '2014-10-14 20:39:05'),
(2280, 41, 0x286d, 'Y', '2014-10-14 20:39:05'),
(2281, 41, 0x53616c7661722066756e63696f6e616c6964616465, 'Y', '2014-10-14 20:39:05'),
(2282, 41, 0x436f6c6f71756520756d207072656669786f2064652063617465676f726961206e6f20617373756e746f2c20706f72206578656d706c6f3a20224a6f676f3a20646573637269, 'Y', '2014-10-14 20:39:05'),
(2286, 41, 0x4e6f7461732064652046756e63696f6e616c6964616465, 'Y', '2014-10-14 20:39:05'),
(2287, 41, 0x566f74617220656d2066756e63696f6e616c696461646573, 'Y', '2014-10-14 20:39:05'),
(2288, 41, 0x4d65757320566f746f7320656d204d656c686f72696173, 'Y', '2014-10-14 20:39:05'),
(2289, 41, 0x526573756c7461646f7320646120566f7461, 'Y', '2014-10-14 20:39:05'),
(2290, 41, 0x41646963696f6e6172206e6f766f207265637572736f, 'Y', '2014-10-14 20:39:05'),
(2291, 41, 0x41706167617220657373612066756e63696f6e616c6964616465, 'Y', '2014-10-14 20:39:05'),
(2292, 41, 0x45646974617220657373612066756e63696f6e616c6964616465, 'Y', '2014-10-14 20:39:05'),
(2293, 41, 0x546f646f73, 'Y', '2014-10-14 20:39:05'),
(2294, 41, 0x4e6f7661, 'Y', '2014-10-14 20:39:05'),
(2295, 41, 0x566f746172, 'Y', '2014-10-14 20:39:05'),
(2296, 41, 0x4162726972, 'Y', '2014-10-14 20:39:05'),
(2297, 41, 0x456d2070726f67726573736f, 'Y', '2014-10-14 20:39:05'),
(2298, 41, 0x5465726d696e616461, 'Y', '2014-10-14 20:39:05'),
(2299, 41, 0x4174697661, 'Y', '2014-10-14 20:39:05'),
(2300, 41, 0x52656a656974616461, 'Y', '2014-10-14 20:39:05'),
(2301, 41, 0x546f646f73, 'Y', '2014-10-14 20:39:05'),
(2302, 41, 0x566f7461, 'Y', '2014-10-14 20:39:05'),
(2304, 41, 0x46756e63696f6e616c6964616465732073, 'Y', '2014-10-14 20:39:05'),
(2305, 41, 0x5369747561, 'Y', '2014-10-14 20:39:05'),
(2307, 41, 0x2573203d206e6f766f207265637572736f207061726120766f746172, 'Y', '2014-10-14 20:39:05'),
(2312, 41, 0x2573203d206d6f7374726172207369747561, 'Y', '2014-10-14 20:39:05'),
(2319, 41, 0x566f63, 'Y', '2014-10-14 20:39:05'),
(2320, 41, 0x546f646173, 'Y', '2014-10-14 20:39:05'),
(2321, 41, 0x4e, 'Y', '2014-10-14 20:39:05'),
(2322, 41, 0x566f74616461, 'Y', '2014-10-14 20:39:05'),
(2323, 41, 0x3c303e, 'Y', '2014-10-14 20:39:05'),
(2324, 41, 0x3d30, 'Y', '2014-10-14 20:39:05'),
(2325, 41, 0x3e30, 'Y', '2014-10-14 20:39:05'),
(2326, 41, 0x494420646f20766f746f, 'Y', '2014-10-14 20:39:05'),
(2327, 41, 0x5369747561, 'Y', '2014-10-14 20:39:05'),
(2329, 41, 0x4d657520566f746f, 'Y', '2014-10-14 20:39:05'),
(2330, 41, '', 'Y', '2014-10-14 20:39:05'),
(2331, 41, 0x46756e63696f6e616c696461646573207061726120766f7461, 'Y', '2014-10-14 20:39:05'),
(2332, 41, 0x566f746172, 'Y', '2014-10-14 20:39:05'),
(2333, 41, 0x56657220766f746f, 'Y', '2014-10-14 20:39:05'),
(2334, 41, 0x4564697461722066756e63696f6e616c6964616465, 'Y', '2014-10-14 20:39:05'),
(2335, 41, 0x506f6e746f73, 'Y', '2014-10-14 20:39:05'),
(2336, 41, '', 'Y', '2014-10-14 20:39:05'),
(2337, 41, '', 'Y', '2014-10-14 20:39:05'),
(2338, 41, '', 'Y', '2014-10-14 20:39:05'),
(2339, 41, 0x566f746f2064652066756e63696f6e616c69646164652073616c766f21, 'Y', '2014-10-14 20:39:05'),
(2340, 41, 0x566f746f732064652046756e63696f6e616c6964616465, 'Y', '2014-10-14 20:39:05'),
(2341, 41, 0x56657220566f746f732064652046756e63696f6e616c6964616465, 'Y', '2014-10-14 20:39:05'),
(2342, 41, 0x4469666963756c64616465, 'Y', '2014-10-14 20:39:05'),
(2343, 41, '', 'Y', '2014-10-14 20:39:05'),
(2344, 41, 0x706f6e746f73, 'Y', '2014-10-14 20:39:05'),
(2346, 41, 0x53616c76617220766f746f, 'Y', '2014-10-14 20:39:05'),
(2347, 41, 0x257320706f6e746f73, 'Y', '2014-10-14 20:39:05'),
(2348, 41, 0x2573202873656d20766f746f29, 'Y', '2014-10-14 20:39:05'),
(2349, 41, 0x4d7564617220612073656e686120706f7220766f63, 'Y', '2014-10-14 20:39:05'),
(2350, 41, 0x4d6f73747261722070, 'Y', '2014-10-14 20:39:05'),
(2360, 41, 0x257320656e747261646173, 'Y', '2014-10-14 20:39:05'),
(2361, 41, 0x2573206c696e686173, 'Y', '2014-10-14 20:39:05'),
(2362, 41, 0x4d6172636172207475646f206c69646f, 'Y', '2014-10-14 20:39:05'),
(2363, 41, 0x436f6d656e74, 'Y', '2014-10-14 20:39:05'),
(2364, 41, 0x4572726f, 'Y', '2014-10-14 20:39:05'),
(2365, 41, 0x546f706f, 'Y', '2014-10-14 20:39:05'),
(2366, 41, 0x506f6e746f20616e7465636573736f72, 'Y', '2014-10-14 20:39:05'),
(2367, 41, 0x526573706f73746120616e746572696f72, 'Y', '2014-10-14 20:39:05'),
(2368, 41, 0x5072, 'Y', '2014-10-14 20:39:05'),
(2369, 41, 0x506f6e746f20706f73746572696f72, 'Y', '2014-10-14 20:39:05'),
(2370, 41, 0x46696e616c, 'Y', '2014-10-14 20:39:05'),
(2371, 41, 0x5072696d6569726120726573706f737461, 'Y', '2014-10-14 20:39:05'),
(2372, 41, 0x617373756e746f206d6f64657261646f, 'Y', '2014-10-14 20:39:05'),
(2373, 41, 0x436f6e7465, 'Y', '2014-10-14 20:39:05'),
(2374, 41, 0x536f6d656e74652d6c656974757261, 'Y', '2014-10-14 20:39:05'),
(2375, 41, 0x4f63756c746172206175746f72, 'Y', '2014-10-14 20:39:05'),
(2376, 41, 0x4d6f7374726172206175746f72, 'Y', '2014-10-14 20:39:05'),
(2377, 41, 0x456469746f7220646520676f62616e, 'Y', '2014-10-14 20:39:05'),
(2378, 41, 0x4c696461, 'Y', '2014-10-14 20:39:05'),
(2379, 41, 0x4e, 'Y', '2014-10-14 20:39:05'),
(2380, 41, 0x4d6f7374726172204c696e686173, 'Y', '2014-10-14 20:39:05'),
(2381, 41, 0x41206d656e736167656d206e, 'Y', '2014-10-14 20:39:05'),
(2382, 41, 0x4d656e736167656d20617475616c697a61646121, 'Y', '2014-10-14 20:39:05'),
(2383, 41, 0x526573756d6f2064612064697363757373, 'Y', '2014-10-14 20:39:05'),
(2384, 41, 0x4f63756c74617220726573756d6f, 'Y', '2014-10-14 20:39:05'),
(2385, 41, 0x4d656e736167656e732064612064697363757373, 'Y', '2014-10-14 20:39:05'),
(2386, 41, 0x56697375616c697a61, 'Y', '2014-10-14 20:39:05'),
(2387, 41, 0x526573706f6e6465722061207072696d65697261206d656e736167656d2064612064697363757373, 'Y', '2014-10-14 20:39:05'),
(2388, 41, 0x546f646173206173206d656e736167656e73206d6f73747261646173, 'Y', '2014-10-14 20:39:05'),
(2389, 41, 0x546f646173206173206d656e736167656e73206f63756c746173, 'Y', '2014-10-14 20:39:05'),
(2390, 41, 0x4d696e686173206d656e736167656e73206f63756c746173, 'Y', '2014-10-14 20:39:05'),
(2391, 41, 0x4d656e736167656e7320636f6d206170726f7661, 'Y', '2014-10-14 20:39:05'),
(2392, 41, 0x28736f6d656e7465206d6f64657261646f7229, 'Y', '2014-10-14 20:39:05'),
(2393, 41, 0x4d6f7374726172206d656e736167656e73206f63756c746173, 'Y', '2014-10-14 20:39:05'),
(2394, 41, '', 'Y', '2014-10-14 20:39:05'),
(2395, 41, 0x566f63, 'Y', '2014-10-14 20:39:05'),
(2396, 41, '', 'Y', '2014-10-14 20:39:05'),
(2397, 41, 0x566572696669717565207365206f73207365757320746572726974, 'Y', '2014-10-14 20:39:05'),
(2399, 41, 0x4361707475726120646120, 'Y', '2014-10-14 20:39:05'),
(2400, 41, 0x417475616c697a61722367616d6570616765, 'Y', '2014-10-14 20:39:05'),
(2401, 41, 0x496e666f726d61, 'Y', '2014-10-14 20:39:05'),
(2402, 41, '', 'Y', '2014-10-14 20:39:05'),
(2403, 41, 0x43726961723a20466f726d61, 'Y', '2014-10-14 20:39:05'),
(2404, 41, 0x284a6f67616461206e6f205347463a20257329, 'Y', '2014-10-14 20:39:05'),
(2406, 41, 0x5072696d65697261206a6f67616461, 'Y', '2014-10-14 20:39:05'),
(2407, 41, 0x4a6f6761646120616e746572696f72, 'Y', '2014-10-14 20:39:05'),
(2408, 41, 0x5072, 'Y', '2014-10-14 20:39:05'),
(2411, 41, 0x43616e63656c6172206a6f67616461, 'Y', '2014-10-14 20:39:05'),
(2412, 41, 0x4e6f74613a206f20706572, 'Y', '2014-10-14 20:39:05'),
(2414, 41, 0x5469706f206465206a6f676f, 'Y', '2014-10-14 20:39:05'),
(2415, 41, '', 'Y', '2014-10-14 20:39:05'),
(2416, 41, 0x5265677261, 'Y', '2014-10-14 20:39:05'),
(5523, 36, 0x4373616b20c3a97274c3a96b656cc3a97373656c2072656e64656c6b657ac59120656c6c656e66c3a96c206861737a6ec3a16c68617420686167796f6dc3a16e796f732076616779206967617a73c3a1676f732068656e64696b657065742e, 'Y', '2015-09-19 18:10:36'),
(2418, 41, 0x44697265746f7220646f20746f726e65696f, 'Y', '2014-10-14 20:39:05'),
(2419, 41, 0x4e65676f636961, 'Y', '2014-10-14 20:39:05'),
(2420, 41, 0x4e65676f636961, 'Y', '2014-10-14 20:39:05'),
(2421, 41, 0x5072657061726f, 'Y', '2014-10-14 20:39:05'),
(2422, 41, 0x436f6e766964616e646f, 'Y', '2014-10-14 20:39:05'),
(2423, 41, 0x4e65676f636961, 'Y', '2014-10-14 20:39:05'),
(2424, 41, 0x436f6e666967757261, 'Y', '2014-10-14 20:39:05'),
(2425, 41, 0x494420646f204a6f676f204475706c6f, 'Y', '2014-10-14 20:39:05'),
(2426, 41, 0x6170616761646f, 'Y', '2014-10-14 20:39:05'),
(2427, 41, 0x4d6f737472617220636f6e76697465, 'Y', '2014-10-14 20:39:05'),
(2428, 41, 0x5469706f206465204b6f6d69204a7573746f, 'Y', '2014-10-14 20:39:05'),
(2429, 41, 0x4461746120646520696e, 'Y', '2014-10-14 20:39:05'),
(2430, 41, 0x6e65676f636961646f20706f72204b6f6d69204a7573746f, 'Y', '2014-10-14 20:39:05'),
(2432, 41, 0x56616e746167656d2070616472, 'Y', '2014-10-14 20:39:05'),
(2434, 41, 0x44657363616e736f, 'Y', '2014-10-14 20:39:05'),
(2435, 41, 0x4e, 'Y', '2014-10-14 20:39:05'),
(2436, 41, 0x4e, 'Y', '2014-10-14 20:39:05'),
(2437, 41, 0x4c616e6365206465206b6f6d69, 'Y', '2014-10-14 20:39:05'),
(2438, 41, 0x766572206465202573, 'Y', '2014-10-14 20:39:05'),
(2439, 41, 0x56657a2064617320707265746173, 'Y', '2014-10-14 20:39:05'),
(2440, 41, 0x56657a20646173206272616e636173, 'Y', '2014-10-14 20:39:05'),
(2441, 41, 0x496e666f726d61, 'Y', '2014-10-14 20:39:05'),
(2442, 41, 0x436f6e74726f6c652064652074656d706f, 'Y', '2014-10-14 20:39:05'),
(2443, 41, 0x54656d706f206578747261, 'Y', '2014-10-14 20:39:05'),
(2444, 41, 0x5369747561, 'Y', '2014-10-14 20:39:05'),
(2445, 41, 0x52656c, 'Y', '2014-10-14 20:39:05'),
(2446, 41, 0x54656d706f2070617373616e646f, 'Y', '2014-10-14 20:39:05'),
(2447, 41, 0x52656c, 'Y', '2014-10-14 20:39:05'),
(2449, 41, 0x4573636f706f, 'Y', '2014-10-14 20:39:05'),
(2450, 41, 0x5469706f, 'Y', '2014-10-14 20:39:05'),
(2451, 41, 0x526f6461646120617475616c, 'Y', '2014-10-14 20:39:05'),
(2454, 41, 0x706f72205444, 'Y', '2014-10-14 20:39:05'),
(2456, 41, 0x4c69737461206465207369747561, 'Y', '2014-10-14 20:39:05'),
(2457, 41, 0x446566696e6972207072696f726964616465, 'Y', '2014-10-14 20:39:05'),
(2458, 41, 0x496e666f726d61, 'Y', '2014-10-14 20:39:05'),
(2459, 41, 0x4d6f7374726172206a6f676f, 'Y', '2014-10-14 20:39:05'),
(2460, 41, 0x56657220546162656c61, 'Y', '2014-10-14 20:39:05'),
(2461, 41, 0x41646d696e697374726172206a6f676f7320646f20746f726e65696f, 'Y', '2014-10-14 20:39:05'),
(2462, 41, 0x476572656e6369617220746f726e65696f, 'Y', '2014-10-14 20:39:05'),
(2463, 41, 0x4d6f73747261722063, 'Y', '2014-10-14 20:39:05'),
(2464, 41, 0x41646d696e2e206a6f676f, 'Y', '2014-10-14 20:39:05'),
(2465, 41, 0x282573206a6f67616461732c20257320636f6d656e74, 'Y', '2014-10-14 20:39:05'),
(2466, 41, 0x456469746f72206465204a6f676f, 'Y', '2014-10-14 20:39:05'),
(2467, 41, 0x54616d616e686f, 'Y', '2014-10-14 20:39:05'),
(2468, 41, 0x4d756461722074616d616e686f20646f20746162756c6569726f, 'Y', '2014-10-14 20:39:05'),
(2469, 41, 0x456469746172, 'Y', '2014-10-14 20:39:05'),
(2470, 41, 0x46657272616d656e74617320646520656469, 'Y', '2014-10-14 20:39:05'),
(2471, 41, 0x4a6f676172, 'Y', '2014-10-14 20:39:05'),
(2472, 41, 0x46657272616d656e746173206465206a6f676f, 'Y', '2014-10-14 20:39:05'),
(2473, 41, 0x4c617267757261, 'Y', '2014-10-14 20:39:05'),
(2474, 41, 0x416c74757261, 'Y', '2014-10-14 20:39:05'),
(2475, 41, 0x4e6f766f20746162756c6569726f, 'Y', '2014-10-14 20:39:05'),
(2476, 41, 0x5065647261, 'Y', '2014-10-14 20:39:05'),
(2478, 41, 0x436f6c6f636172207065647261207072657461, 'Y', '2014-10-14 20:39:05'),
(2479, 41, 0x436f6c6f636172207065647261206272616e6361, 'Y', '2014-10-14 20:39:05'),
(2480, 41, 0x4c696d706172205065647261, 'Y', '2014-10-14 20:39:05'),
(2481, 41, 0x4d61726361646f72, 'Y', '2014-10-14 20:39:05'),
(2482, 41, 0x416c7465726e6172204d61726361646f722043697263756c6172, 'Y', '2014-10-14 20:39:05'),
(2483, 41, 0x416c7465726e6172204d61726361646f7220517561647261646f, 'Y', '2014-10-14 20:39:05'),
(2485, 41, 0x416c7465726e6172204d61726361646f7220656d2058, 'Y', '2014-10-14 20:39:05'),
(2490, 41, 0x4574697175657461, 'Y', '2014-10-14 20:39:05'),
(2492, 41, 0x416c7465726e6172204d61726361206465204c65747261, 'Y', '2014-10-14 20:39:05'),
(2493, 41, 0x48697374, 'Y', '2014-10-14 20:39:05'),
(2494, 41, 0x4a6f67616461, 'Y', '2014-10-14 20:39:05'),
(2495, 41, 0x4d6f7374726172206a6f67616461, 'Y', '2014-10-14 20:39:05'),
(2496, 41, 0x496e666f726d61, 'Y', '2014-10-14 20:39:05'),
(2497, 41, 0x4d6f737472617220636f6e766974652064612073616c6120646520657370657261, 'Y', '2014-10-14 20:39:05'),
(2498, 41, 0x41646963696f6e617220, 'Y', '2014-10-14 20:39:05'),
(2499, 41, 0x4d756461722076616e746167656d, 'Y', '2014-10-14 20:39:05'),
(2500, 41, 0x4d7564617220636f7220652076616e746167656d, 'Y', '2014-10-14 20:39:05'),
(2501, 41, 0x4d7564617220636f72, 'Y', '2014-10-14 20:39:05'),
(2502, 41, 0x4d75646172206f7264656d, 'Y', '2014-10-14 20:39:05'),
(2503, 41, 0x436f6d65, 'Y', '2014-10-14 20:39:05'),
(2504, 41, 0x4d6172636172206a6f676f, 'Y', '2014-10-14 20:39:05'),
(2506, 41, 0x436f6e666967757261, 'Y', '2014-10-14 20:39:05'),
(2507, 41, 0x436f6e666967757261, 'Y', '2014-10-14 20:39:05'),
(2508, 41, 0x4e, 'Y', '2014-10-14 20:39:05'),
(2509, 41, 0x546f646173, 'Y', '2014-10-14 20:39:05'),
(2510, 41, 0x4d6573747265, 'Y', '2014-10-14 20:39:05'),
(2511, 41, 0x52657365727661646f, 'Y', '2014-10-14 20:39:05'),
(2512, 41, 0x436f6d65, 'Y', '2014-10-14 20:39:05'),
(2513, 41, 0x456e7669617220756d20636f6e76697465, 'Y', '2014-10-14 20:39:05'),
(2514, 41, 0x4170616761722072657365727661, 'Y', '2014-10-14 20:39:05'),
(2515, 41, 0x417061676172206a6f6761646f722061636569746f, 'Y', '2014-10-14 20:39:05'),
(2516, 41, 0x446566696e6972206f7264656d, 'Y', '2014-10-14 20:39:05'),
(2517, 41, 0x446566696e697220677275706f, 'Y', '2014-10-14 20:39:05'),
(2519, 41, 0x4a6f6761646f72, 'Y', '2014-10-14 20:39:05'),
(2522, 41, 0x56657a20646f206a6f6761646f72, 'Y', '2014-10-14 20:39:05'),
(2523, 41, 0x5072, 'Y', '2014-10-14 20:39:05'),
(2524, 41, 0x41646963696f6e6172206e6f766f206a6f676f206e612073616c6120646520657370657261, 'Y', '2014-10-14 20:39:05'),
(2525, 41, 0x53, 'Y', '2014-10-14 20:39:05'),
(2526, 41, 0x50617261206d7564, 'Y', '2014-10-14 20:39:05'),
(2527, 41, 0x4d6f737472617220656e74726164612064612073616c61206465206573706572612028706172612061706167617229, 'Y', '2014-10-14 20:39:05'),
(2528, 41, 0x56616761732d64652d6a6f6761646f72, 'Y', '2014-10-14 20:39:05'),
(2529, 41, 0x436f6e76696461722070617261206a6f676f2d6d, 'Y', '2014-10-14 20:39:05'),
(2530, 41, 0x736f6d656e746520757375, 'Y', '2014-10-14 20:39:05'),
(2531, 41, 0x41706167617220636f6e766974652072657365727661646f, 'Y', '2014-10-14 20:39:05'),
(2532, 41, 0x4f20757375, 'Y', '2014-10-14 20:39:05'),
(2533, 41, 0x5265616c6d656e7465207175657220617061676172206f20636f6e766974652072657365727661646f20646573736520757375, 'Y', '2014-10-14 20:39:05'),
(2534, 41, 0x5265616c6d656e74652071756572206170616761722065737365206a6f6761646f722061636569746f3f, 'Y', '2014-10-14 20:39:05'),
(2535, 41, 0x4170726f7661, 'Y', '2014-10-14 20:39:05'),
(2536, 41, 0x566f63, 'Y', '2014-10-14 20:39:05'),
(2537, 41, 0x506f72206661766f7220726576656a6120636f6d206375696461646f20617320636f6e666967757261, 'Y', '2014-10-14 20:39:05'),
(2538, 41, 0x566f63, 'Y', '2014-10-14 20:39:05'),
(2539, 41, 0x4e6f20656e74616e746f2c206f206167727570616d656e746f2c206120636f72206520612076616e746167656d20646f206a6f676f2073, 'Y', '2014-10-14 20:39:05'),
(2540, 41, 0x566f63, 'Y', '2014-10-14 20:39:05'),
(2541, 41, 0x4f206d6573747265206465206a6f676f205b25735d20736572, 'Y', '2014-10-14 20:39:05'),
(2542, 41, 0x566f63, 'Y', '2014-10-14 20:39:05'),
(2545, 41, 0x456e76696172206d656e736167656d207061726120746f646f73206f73206a6f6761646f726573, 'Y', '2014-10-14 20:39:05'),
(2546, 41, 0x566f63, 'Y', '2014-10-14 20:39:05'),
(2547, 41, 0x5265736572766120646520636f6e766974652061646963696f6e6164612070617261206a6f676f2d6d, 'Y', '2014-10-14 20:39:05'),
(2548, 41, 0x4f206d65737472652d64652d6a6f676f20257320617061676f75206f2073657520636f6e766974652070617261206f206a6f676f2025732e, 'Y', '2014-10-14 20:39:05'),
(2549, 41, 0x5265736572766120646520636f6e76697465206170616761646121, 'Y', '2014-10-14 20:39:05'),
(2550, 41, 0x4f20757375, 'Y', '2014-10-14 20:39:05'),
(2551, 41, 0x436f6e766974652061636569746f21, 'Y', '2014-10-14 20:39:05'),
(2552, 41, 0x4f20757375, 'Y', '2014-10-14 20:39:05'),
(2553, 41, 0x436f6e7669746520726563757361646f21, 'Y', '2014-10-14 20:39:05'),
(2554, 41, 0x4f206d65737472652d64652d6a6f676f202573207265766f676f752073756120706172746963697061, 'Y', '2014-10-14 20:39:05'),
(2555, 41, 0x4a6f6761646f722072656d6f7669646f21, 'Y', '2014-10-14 20:39:05'),
(2556, 41, 0x477275706f7320617475616c697a61646f7321, 'Y', '2014-10-14 20:39:05'),
(2557, 41, 0x537567657374, 'Y', '2014-10-14 20:39:05'),
(2558, 41, 0x56616e746167656d20636f6e76656e63696f6e616c, 'Y', '2014-10-14 20:39:05'),
(2559, 41, 0x4f206d65737472652d64652d6a6f676f206a, 'Y', '2014-10-14 20:39:05'),
(2560, 41, 0x53656d20706f7369, 'Y', '2014-10-14 20:39:05'),
(2561, 41, 0x4f20757375, 'Y', '2014-10-14 20:39:05'),
(2562, 41, 0x4f20757375, 'Y', '2014-10-14 20:39:05'),
(2563, 41, 0x4f206d65737472652d64652d6a6f676f206e, 'Y', '2014-10-14 20:39:05'),
(2564, 41, 0x4f20757375, 'Y', '2014-10-14 20:39:05'),
(2565, 41, 0x4e656e68756d20636f6e766974652072657365727661646f20656e636f6e747261646f2070617261206f20757375, 'Y', '2014-10-14 20:39:05'),
(2566, 41, 0x5265736572766120646f20757375, 'Y', '2014-10-14 20:39:05'),
(2567, 41, 0x4e, 'Y', '2014-10-14 20:39:05'),
(2568, 41, 0x4f206d65737472652d64652d6a6f676f20, 'Y', '2014-10-14 20:39:05'),
(2569, 41, 0x4f20757375, 'Y', '2014-10-14 20:39:05'),
(2570, 41, 0x4f20757375, 'Y', '2014-10-14 20:39:05'),
(2571, 41, 0x46616c74616d20616c67756e73206a6f6761646f726573, 'Y', '2014-10-14 20:39:05'),
(2572, 41, 0x4e656d20746f646f732061732076616761732070617261207265736572766120666f72616d206163656974617320706f72206a6f6761646f7265732e, 'Y', '2014-10-14 20:39:05'),
(2573, 41, 0x4f206a6f6761646f72205b25735d2061636569746f75206f206a6f676f206d61697320646520756d612076657a, 'Y', '2014-10-14 20:39:05'),
(2574, 41, 0x4f206e, 'Y', '2014-10-14 20:39:05'),
(2575, 41, 0x4f7320677275706f73205b25732c2025735d2073, 'Y', '2014-10-14 20:39:05'),
(2576, 41, 0x4f206e, 'Y', '2014-10-14 20:39:05'),
(2577, 41, 0x536f6d656e746520677275706f2d257320, 'Y', '2014-10-14 20:39:05'),
(2578, 41, 0x41206f7264656d20646f20677275706f205b25735d20707265636973612073657220646566696e696461, 'Y', '2014-10-14 20:39:05'),
(2579, 41, 0x41206f7264656d20646f20677275706f205b25735d207072656369736120636f6d65, 'Y', '2014-10-14 20:39:05'),
(2580, 41, 0x41206f7264656d20646520677275706f7320707265636973612073657220, 'Y', '2014-10-14 20:39:05'),
(2581, 41, 0x4f206a6f676f20636f6d65, 'Y', '2014-10-14 20:39:05'),
(2582, 41, 0x50726570617261, 'Y', '2014-10-14 20:39:05'),
(2583, 41, 0x4a6f676f207465726d696e61646f, 'Y', '2014-10-14 20:39:05'),
(2584, 41, 0x4a6f676f20656d2070726f67726573736f, 'Y', '2014-10-14 20:39:05'),
(2585, 41, 0x4372696172206e6f766f20746162756c6569726f20646520756d206461646f2074616d616e686f, 'Y', '2014-10-14 20:39:05'),
(2586, 41, 0x4c617267757261, 'Y', '2014-10-14 20:39:05'),
(2587, 41, 0x416c74757261, 'Y', '2014-10-14 20:39:05'),
(2588, 41, 0x437269617220546162756c6569726f, 'Y', '2014-10-14 20:39:05'),
(2589, 41, 0x436172726567617220746162756c6569726f20646520756d206a6f676f, 'Y', '2014-10-14 20:39:05'),
(2590, 41, 0x49442d646f2d6a6f676f, 'Y', '2014-10-14 20:39:05'),
(2591, 41, 0x4a6f67616461, 'Y', '2014-10-14 20:39:05'),
(2592, 41, 0x4361727265676172206172717569766f20444753, 'Y', '2014-10-14 20:39:05'),
(2593, 41, 0x436172726567617220746162756c6569726f20646520534746, 'Y', '2014-10-14 20:39:05'),
(2594, 41, 0x4172717569766f20534746, 'Y', '2014-10-14 20:39:05'),
(2595, 41, 0x456e7669617220534746, 'Y', '2014-10-14 20:39:05'),
(2596, 41, 0x45646974617220, 'Y', '2014-10-14 20:39:05'),
(2597, 41, 0x53696d706c696669636172, 'Y', '2014-10-14 20:39:05'),
(2598, 41, 0x53616c76617220466f726d61, 'Y', '2014-10-14 20:39:05'),
(2605, 41, 0x3c74743e2263223c2f74743e203d20686162696c69746120636f6f7264656e61646173206e6120626f726461, 'Y', '2014-10-14 20:39:05'),
(2606, 41, 0x3c74743e74616d616e686f3c2f74743e203d2074616d616e686f2d646f2d746162756c6569726f, 'Y', '2014-10-14 20:39:05'),
(2608, 41, 0x3c74743e74, 'Y', '2014-10-14 20:39:05'),
(2624, 41, 0x466f726d61746f2d64652d626f7264612070617261206361736f73206573706563696169733a, 'Y', '2014-10-14 20:39:05'),
(2628, 41, 0x446573637269, 'Y', '2014-10-14 20:39:05'),
(2629, 41, 0x4e6f766f20476f62616e, 'Y', '2014-10-14 20:39:05'),
(2630, 41, 0x285629, 'Y', '2014-10-14 20:39:05'),
(2631, 41, 0x284b29, 'Y', '2014-10-14 20:39:05'),
(2632, 41, 0x506f6e747561, 'Y', '2014-10-14 20:39:05'),
(2633, 41, 0x506f6e747561, 'Y', '2014-10-14 20:39:05'),
(2634, 41, 0x496e666f726d61, 'Y', '2014-10-14 20:39:05'),
(2635, 41, 0x44616d65, 'Y', '2014-10-14 20:39:05'),
(2636, 41, 0x546572726974, 'Y', '2014-10-14 20:39:05'),
(2637, 41, 0x506564726173206d6f72746173, 'Y', '2014-10-14 20:39:05'),
(2638, 41, 0x506564726173, 'Y', '2014-10-14 20:39:05'),
(2639, 41, 0x50726973696f6e6569726f73, 'Y', '2014-10-14 20:39:05'),
(2640, 41, 0x4578747261, 'Y', '2014-10-14 20:39:05'),
(2641, 41, 0x506c61636172, 'Y', '2014-10-14 20:39:05'),
(2642, 41, 0x526573756c7461646f, 'Y', '2014-10-14 20:39:05'),
(2922, 25, 0x416363657074c483206163656c61c59f69206164766572736172, 'Y', '2014-11-14 11:22:25'),
(2644, 41, 0x4a6f6761646173, 'Y', '2014-10-14 20:39:05'),
(2645, 41, 0x5072696f726964616465, 'Y', '2014-10-14 20:39:05'),
(2646, 41, 0x54656d706f2072657374616e7465, 'Y', '2014-10-14 20:39:05'),
(2647, 41, 0x56415a4941, 'Y', '2014-10-14 20:39:05'),
(2648, 41, 0x544142554c4549524f2d56415a494f, 'Y', '2014-10-14 20:39:05'),
(2649, 41, 0x544142554c4549524f2d434845494f, 'Y', '2014-10-14 20:39:05'),
(2650, 41, 0x50657266696c2073616c766f20636f6d6f2070616472, 'Y', '2014-10-14 20:39:05'),
(2651, 41, 0x50657266696c2073616c766f21, 'Y', '2014-10-14 20:39:05'),
(2652, 41, 0x56616c6f72657320617475616973, 'Y', '2014-10-14 20:39:05'),
(2653, 41, 0x4170616761722076616c6f726573, 'Y', '2014-10-14 20:39:05'),
(2654, 41, 0x4c696d7061722076616c6f726573, 'Y', '2014-10-14 20:39:05'),
(2655, 41, 0x53616c76617220636f6d6f2070616472, 'Y', '2014-10-14 20:39:05'),
(2656, 41, 0x43617272656761722070657266696c, 'Y', '2014-10-14 20:39:05'),
(2657, 41, 0x53616c7661722070657266696c, 'Y', '2014-10-14 20:39:05'),
(2658, 41, 0x4170616761722070657266696c, 'Y', '2014-10-14 20:39:05'),
(2659, 41, 0x4e656e68756d206172717569766f2065737065636966696361646f207061726120656e766961722e, 'Y', '2014-10-14 20:39:05'),
(2660, 41, 0x4f206172717569766f205b25735d20656e766961646f20756c7472617061737361206f2074616d616e686f206d, 'Y', '2014-10-14 20:39:05'),
(2661, 41, 0x4f206172717569766f205b25735d20656e766961646f20756c7472617061737361206f2074616d616e686f206d, 'Y', '2014-10-14 20:39:05'),
(2662, 41, 0x4f206172717569766f205b25735d20666f6920656e766961646f206170656e6173207061726369616c6d656e74652e, 'Y', '2014-10-14 20:39:05'),
(2663, 41, 0x4e656e68756d206172717569766f20666f6920656e766961646f2e, 'Y', '2014-10-14 20:39:05'),
(2664, 41, 0x4f206172717569766f205b25735d20656e766961646f206e, 'Y', '2014-10-14 20:39:05'),
(2665, 41, 0x4f20666f726d61746f20646120696d6167656d205b25732c2025735d20646f206172717569766f20656e766961646f206e, 'Y', '2014-10-14 20:39:05'),
(2666, 41, 0x41206c617267757261206465205b25735d20646120696d6167656d205b25735d20656e766961646120657863656465206f206c696d697465206465205b257320706978656c735d2e, 'Y', '2014-10-14 20:39:05'),
(2667, 41, 0x4120616c74757261206465205b25735d20646120696d6167656d205b25735d20656e766961646120657863656465206f206c696d697465206465205b257320706978656c735d2e, 'Y', '2014-10-14 20:39:05'),
(2668, 41, 0x4f206172717569766f205b25735d20656e766961646f206e, 'Y', '2014-10-14 20:39:05'),
(2669, 41, 0x474946, 'Y', '2014-10-14 20:39:05'),
(2670, 41, 0x4a504547, 'Y', '2014-10-14 20:39:05'),
(2671, 41, 0x504e47, 'Y', '2014-10-14 20:39:05'),
(2672, 41, 0x4f20757375, 'Y', '2014-10-14 20:39:05'),
(2673, 41, 0x466f746f20646f20757375, 'Y', '2014-10-14 20:39:05'),
(2674, 41, 0x506573736f612064612050, 'Y', '2014-10-14 20:39:05'),
(2675, 41, 0x496c68617320416c616e6461, 'Y', '2014-10-14 20:39:05'),
(2676, 41, 0x53616d6f6120416d65726963616e61, 'Y', '2014-10-14 20:39:05'),
(2677, 41, 0x416e6775696c61, 'Y', '2014-10-14 20:39:05'),
(2678, 41, 0x4172756261, 'Y', '2014-10-14 20:39:05'),
(2679, 41, 0x4265726d75646173, 'Y', '2014-10-14 20:39:05'),
(2680, 41, 0x42, 'Y', '2014-10-14 20:39:05'),
(2681, 41, 0x546572726974, 'Y', '2014-10-14 20:39:05'),
(2682, 41, 0x4272756e6569, 'Y', '2014-10-14 20:39:05'),
(2683, 41, 0x496c686173204361696d, 'Y', '2014-10-14 20:39:05'),
(2684, 41, 0x496c686120646f204e6174616c, 'Y', '2014-10-14 20:39:05'),
(2685, 41, 0x496c68617320436f636f73, 'Y', '2014-10-14 20:39:05'),
(2686, 41, 0x496c68617320436f6f6b, 'Y', '2014-10-14 20:39:05'),
(2687, 41, 0x556e69, 'Y', '2014-10-14 20:39:05'),
(2688, 41, 0x496c686173204d616c76696e6173, 'Y', '2014-10-14 20:39:05'),
(2689, 41, 0x496c686173204661726f, 'Y', '2014-10-14 20:39:05'),
(2690, 41, 0x4775696e, 'Y', '2014-10-14 20:39:05'),
(2691, 41, 0x506f6c696e, 'Y', '2014-10-14 20:39:05'),
(2692, 41, 0x47696272616c746172, 'Y', '2014-10-14 20:39:05'),
(2693, 41, 0x47726f656c, 'Y', '2014-10-14 20:39:05'),
(2694, 41, 0x47756164616c757065, 'Y', '2014-10-14 20:39:05'),
(2695, 41, 0x4775616d65, 'Y', '2014-10-14 20:39:05'),
(2696, 41, 0x4775, 'Y', '2014-10-14 20:39:05'),
(2697, 41, 0x496c6861206465204d616e, 'Y', '2014-10-14 20:39:05'),
(2698, 41, 0x4a, 'Y', '2014-10-14 20:39:05'),
(2699, 41, 0x43617a617175697374, 'Y', '2014-10-14 20:39:05'),
(2700, 41, 0x4d61636175, 'Y', '2014-10-14 20:39:05'),
(2701, 41, 0x4d617274696e696361, 'Y', '2014-10-14 20:39:05'),
(2702, 41, 0x4d61696f7465, 'Y', '2014-10-14 20:39:05'),
(2703, 41, 0x4d6f6e73657272617465, 'Y', '2014-10-14 20:39:05'),
(2704, 41, 0x416e74696c68617320486f6c616e6465736173, 'Y', '2014-10-14 20:39:05'),
(2705, 41, 0x4e6f76612043616c6564, 'Y', '2014-10-14 20:39:05'),
(2706, 41, 0x4e6975, 'Y', '2014-10-14 20:39:05'),
(2707, 41, 0x496c6861204e6f72666f6c717565, 'Y', '2014-10-14 20:39:05'),
(2708, 41, 0x492e204d617269616e617320536574656e742e, 'Y', '2014-10-14 20:39:05'),
(2709, 41, 0x546572726974, 'Y', '2014-10-14 20:39:05'),
(2710, 41, 0x496c68617320506963, 'Y', '2014-10-14 20:39:05'),
(2711, 41, 0x5265756e69, 'Y', '2014-10-14 20:39:05'),
(2712, 41, 0x53, 'Y', '2014-10-14 20:39:05'),
(2713, 41, 0x53616e74612048656c656e61, 'Y', '2014-10-14 20:39:05'),
(2714, 41, 0x53, 'Y', '2014-10-14 20:39:05'),
(2715, 41, 0x53, 'Y', '2014-10-14 20:39:05'),
(2716, 41, 0x496c686173204765, 'Y', '2014-10-14 20:39:05'),
(2717, 41, 0x54696d6f722d4c65737465, 'Y', '2014-10-14 20:39:05'),
(2718, 41, 0x546f7175656c6175, 'Y', '2014-10-14 20:39:05'),
(2719, 41, 0x547572636173206520436169636f73, 'Y', '2014-10-14 20:39:05'),
(2720, 41, 0x496c6861732056697267656e732042726974, 'Y', '2014-10-14 20:39:05'),
(2721, 41, 0x496c6861732056697267656e7320646f7320452e20552e20412e, 'Y', '2014-10-14 20:39:05'),
(2722, 41, 0x57616c6c6973206520467574756e61, 'Y', '2014-10-14 20:39:05'),
(2723, 41, 0x5361617261204f636964656e74616c, 'Y', '2014-10-14 20:39:05'),
(2724, 41, 0x496d70, 'Y', '2014-10-14 20:39:05'),
(2725, 41, 0x466564657261, 'Y', '2014-10-14 20:39:05'),
(2726, 41, 0x4e65676f636961, 'Y', '2014-10-14 20:39:05'),
(2727, 41, 0x436f6e666967757261, 'Y', '2014-10-14 20:39:05'),
(2728, 41, 0x436f6e76696461646f, 'Y', '2014-10-14 20:39:05'),
(2729, 41, 0x4a6f676172, 'Y', '2014-10-14 20:39:05'),
(2730, 41, 0x506173736172, 'Y', '2014-10-14 20:39:05'),
(2731, 41, 0x506c61636172, 'Y', '2014-10-14 20:39:05'),
(2732, 41, 0x5465726d696e61646f, 'Y', '2014-10-14 20:39:05'),
(2733, 41, 0x4f7320494473206465206a6f6761646f7220657374, 'Y', '2014-10-14 20:39:05'),
(2734, 41, 0x44657363756c70652c206f20447261676f6e20476f2053657276657220657374, 'Y', '2014-10-14 20:39:05'),
(2735, 41, 0x4e6f6d65206465207365727669646f7220696e76, 'Y', '2014-10-14 20:39:05'),
(2736, 41, 0x41206174697669646164652064612073756120636f6e746120666f69206578636573736976612e20556d6120726573747269, 'Y', '2014-10-14 20:39:05'),
(2737, 41, '', 'Y', '2014-10-14 20:39:05'),
(2738, 41, 0x44657363756c70652c206f206a6f676f20657374, 'Y', '2014-10-14 20:39:05'),
(2739, 41, 0x4d656e736167656e732070726120766f63, 'Y', '2014-10-14 20:39:05'),
(2740, 41, 0x44657363756c70652c20766f63, 'Y', '2014-10-14 20:39:05'),
(2741, 41, 0x44657363756c70652c20657374, 'Y', '2014-10-14 20:39:05'),
(2742, 41, 0x44657363756c70652c20736575206c696d697465206465206a6f676f7320636f6d65, 'Y', '2014-10-14 20:39:05'),
(2743, 41, 0x44657363756c70652c206f206c696d69746520646f2073657520616476657273, 'Y', '2014-10-14 20:39:05'),
(2744, 41, 0x44657363756c70652c206f20736575206c696d697465206465206a6f676f7320617469766f73206e6f20746f726e65696f20636865676f7520616f206c696d6974652e, 'Y', '2014-10-14 20:39:05'),
(2745, 41, 0x4f206c696d697465206465206a6f676f7320646520746f726e65696f20646f7320757375, 'Y', '2014-10-14 20:39:05'),
(2746, 41, 0x44657363756c70652c20756d6120726567726120646573636f6e68656369646120666f692075736164612e, 'Y', '2014-10-14 20:39:05'),
(2747, 41, 0x4120706172746520646563696d616c20646520756d206b6f6d692073, 'Y', '2014-10-14 20:39:05'),
(2748, 41, 0x412076616e746167656d20657374, 'Y', '2014-10-14 20:39:05'),
(2749, 41, 0x44657363756c70652c20616c6775, 'Y', '2014-10-14 20:39:05'),
(2750, 41, 0x556d61206e6f76612073656e6861206a, 'Y', '2014-10-14 20:39:05'),
(2751, 41, 0x506f72206661766f722061636573736520636f6d6f20636f6e76696461646f206520757365206f2066, 'Y', '2014-10-14 20:39:05'),
(2752, 41, 0x44657363756c70652c206e656e68756d20656e64657265, 'Y', '2014-10-14 20:39:05'),
(2753, 41, 0x44657363756c70652c206f20656e64657265, 'Y', '2014-10-14 20:39:05'),
(2754, 41, 0x44657363756c70652c206f636f7272657520756d206572726f20616f20656e766961722061206d656e736167656d2e, 'Y', '2014-10-14 20:39:05'),
(2755, 41, 0x44657363756c70652c20766f63, 'Y', '2014-10-14 20:39:05'),
(2756, 41, 0x44657363756c70652c206e, 'Y', '2014-10-14 20:39:05'),
(2759, 41, 0x46616c7461206f2069642d64652d6a6f676f20706172612061206d656e736167656d206465206a6f676f206d, 'Y', '2014-10-14 20:39:05'),
(2762, 41, 0x44657363756c70652c206e, 'Y', '2014-10-14 20:39:05'),
(2764, 41, 0x536520766f63, 'Y', '2014-10-14 20:39:05'),
(2765, 41, 0x44657363756c70652c20766f63, 'Y', '2014-10-14 20:39:05'),
(2766, 41, 0x41732072617a, 'Y', '2014-10-14 20:39:05'),
(2767, 41, 0x566f63, 'Y', '2014-10-14 20:39:05'),
(2768, 41, 0x53657573203c693e636f6f6b6965733c2f693e20706572646572616d20612076616c69646164652e204973736f2061636f6e7465636520756d612076657a20706f72206d, 'Y', '2014-10-14 20:39:05'),
(2769, 41, 0x566f63, 'Y', '2014-10-14 20:39:05'),
(2770, 41, 0x44657363756c70652c20657373612066756e63696f6e616c696461646520666f692064657361746976616461206e65737365207365727669646f722e, 'Y', '2014-10-14 20:39:05'),
(2772, 41, 0x44657363756c70652c206f20656e76696f206465206172717569766f2066616c686f752e, 'Y', '2014-10-14 20:39:05'),
(2773, 41, 0x44657363756c70652c20766f63, 'Y', '2014-10-14 20:39:05'),
(2775, 41, 0x44657363756c70652c206e, 'Y', '2014-10-14 20:39:05'),
(2776, 41, 0x4f206e, 'Y', '2014-10-14 20:39:05'),
(2777, 41, 0x417320636f6f7264656e61646173206465737361206a6f676164612073, 'Y', '2014-10-14 20:39:05'),
(2779, 41, 0x44657363756c70652c20657373652069642d64652d666f726d6120, 'Y', '2014-10-14 20:39:05'),
(2780, 41, 0x44657363756c70652c206e, 'Y', '2014-10-14 20:39:05'),
(2781, 41, 0x44657363756c70652c20766f63, 'Y', '2014-10-14 20:39:05'),
(2782, 41, 0x44657363756c70652c20766f63, 'Y', '2014-10-14 20:39:05'),
(2783, 41, 0x44657363756c70652c206f20696420646520757375, 'Y', '2014-10-14 20:39:05'),
(2789, 41, 0x41206e6f76612073656e686120736572, 'Y', '2014-10-14 20:39:05'),
(2795, 41, 0x44657363756c70652c20766f63, 'Y', '2014-10-14 20:39:05'),
(2799, 41, 0x44657363756c70652c20686f75766572616d20616c67756e73206572726f7320647572616e746520612063726961, 'Y', '2014-10-14 20:39:05'),
(2805, 41, 0x44657363756c70652c20766f63, 'Y', '2014-10-14 20:39:05'),
(2806, 41, 0x44657363756c70652c20766f63, 'Y', '2014-10-14 20:39:05');
INSERT INTO `Translations` (`Original_ID`, `Language_ID`, `Text`, `Translated`, `Updated`) VALUES
(2808, 41, 0x44657363756c70652c20757375, 'Y', '2014-10-14 20:39:05'),
(2811, 41, 0x44657363756c70652c20617267756d656e746f7320696e76, 'Y', '2014-10-14 20:39:05'),
(2812, 41, 0x44657363756c70652c20657374, 'Y', '2014-10-14 20:39:05'),
(2813, 41, 0x44657363756c70652c20756d20636f6d616e646f2d72, 'Y', '2014-10-14 20:39:05'),
(2814, 41, 0x44657363756c70652c2065786973746520756d2070726f626c656d20636f6d20756d206d, 'Y', '2014-10-14 20:39:05'),
(2815, 41, 0x43617261637465726520696e76, 'Y', '2014-10-14 20:39:05'),
(2816, 41, 0x41206d696e69617475726120646120666f726d612074656d20756d20666f726d61746f207275696d2e, 'Y', '2014-10-14 20:39:05'),
(2817, 41, 0x466f726d61206f75206d696e69617475726120636f6d20636f6e666c69746f20656e636f6e74726164612e, 'Y', '2014-10-14 20:39:05'),
(2818, 41, 0x44657363756c70652c206e, 'Y', '2014-10-14 20:39:05'),
(2819, 41, 0x46616c7461206f2074616d616e686f20706172612061206d696e69617475726120646120666f726d612e, 'Y', '2014-10-14 20:39:05'),
(2820, 41, 0x44657363756c70652c206120696e69636961, 'Y', '2014-10-14 20:39:05'),
(2822, 41, 0x44657363756c70652c20766f63, 'Y', '2014-10-14 20:39:05'),
(2824, 41, 0x44657363756c70652c20766f63, 'Y', '2014-10-14 20:39:05'),
(2825, 41, 0x44657363756c70652c206e, 'Y', '2014-10-14 20:39:05'),
(2826, 41, 0x44657363756c70652c20766f63, 'Y', '2014-10-14 20:39:05'),
(2827, 41, 0x44657363756c70652c206e, 'Y', '2014-10-14 20:39:05'),
(2832, 41, 0x5465722e20627269742e20646f206f632e20, 'Y', '2014-10-14 20:39:05'),
(2833, 41, 0x53, 'Y', '2014-10-14 20:39:05'),
(2834, 41, 0x53, 'Y', '2014-10-14 20:39:05'),
(2835, 41, 0x492e204765, 'Y', '2014-10-14 20:39:05'),
(2836, 41, 0x5661746963616e6f, 'Y', '2014-10-14 20:39:05'),
(2837, 41, 0x4665642e20556e69646120646f7320506c616e65746173, 'Y', '2014-10-14 20:39:05'),
(2838, 41, 0x4d6f7374726173206170656e6173206a6f676f73206d756c74696a6f6761646f726573, 'Y', '2014-10-14 20:39:05'),
(2839, 41, 0x4e, 'Y', '2014-10-14 20:39:05'),
(2840, 41, 0x417669736f, 'Y', '2014-10-14 20:39:05'),
(2841, 41, 0x436f6e6469, 'Y', '2014-10-14 20:39:05'),
(2842, 41, 0x52656e676f, 'Y', '2014-10-14 20:39:05'),
(2843, 41, 0x4e, 'Y', '2014-10-14 20:39:05'),
(2844, 41, 0x457520706f73736f2064657369737469723f, 'Y', '2014-10-14 20:39:05'),
(2845, 41, 0x436f6e766974652070617261206a6f676f2d6d, 'Y', '2014-10-14 20:39:05'),
(2846, 41, 0x4f206d65737472652d64652d6a6f676f20257320636f6e7669646120766f63, 'Y', '2014-10-14 20:39:05'),
(2847, 41, 0x45737365206a6f676f20, 'Y', '2014-10-14 20:39:05'),
(2848, 41, 0x566f63, 'Y', '2014-10-14 20:39:05'),
(2849, 41, 0x506172612072656a6569746172206f20636f6e766974652c20706f72206661766f7220696e666f726d6520616f206d6573747265206465206a6f676f20726573706f6e64656e646f2065737361206d656e736167656d2e, 'Y', '2014-10-14 20:39:05'),
(2850, 41, 0x566f63, 'Y', '2014-10-14 20:39:05'),
(2851, 41, 0x546f646f732070726570617261646f73207061726120636f6d65, 'Y', '2014-10-14 20:39:05'),
(2852, 41, 0x5072657461732f4272616e636173206f7520696e646566696e696461, 'Y', '2014-10-14 20:39:05'),
(2853, 41, 0x507265746173, 'Y', '2014-10-14 20:39:05'),
(2854, 41, 0x4272616e636173, 'Y', '2014-10-14 20:39:05'),
(2855, 41, 0x477275706f202331, 'Y', '2014-10-14 20:39:05'),
(2856, 41, 0x477275706f202332, 'Y', '2014-10-14 20:39:05'),
(2857, 41, 0x5042, 'Y', '2014-10-14 20:39:05'),
(2858, 41, 0x436f6e666964656e6369616c, 'Y', '2014-10-14 20:39:05'),
(2859, 41, 0x4573636f6c68657520707265746173, 'Y', '2014-10-14 20:39:05'),
(2860, 41, 0x4573636f6c686575206272616e636173, 'Y', '2014-10-14 20:39:05'),
(2861, 41, 0x4573636f6c68657220636f72, 'Y', '2014-10-14 20:39:05'),
(2862, 41, 0x41696e64612073656d206c616e636573, 'Y', '2014-10-14 20:39:05'),
(2863, 41, 0x4575206573636f6c686f20707265746173, 'Y', '2014-10-14 20:39:05'),
(2864, 41, 0x4575206573636f6c686f206272616e636173, 'Y', '2014-10-14 20:39:05'),
(2865, 41, 0x4c616e636520617475616c, 'Y', '2014-10-14 20:39:05'),
(2866, 41, 0x53616c766172206c616e6365206465206b6f6d69, 'Y', '2014-10-14 20:39:05'),
(2867, 41, 0x436f6d65, 'Y', '2014-10-14 20:39:05'),
(2868, 41, 0x4f73206a6f6761646f7265732066617a656d2073657573206c616e636573206465206b6f6d6920646520666f726d61206f63756c74612028756d20706f72206a6f6761646f72292e, 'Y', '2014-10-14 20:39:05'),
(2869, 41, 0x4c616e636573206465206b6f6d6920666963616d206f63756c746f7320646f206f7574726f206a6f6761646f722e, 'Y', '2014-10-14 20:39:05'),
(2870, 41, 0x4465706f697320646f2032, 'Y', '2014-10-14 20:39:05'),
(2871, 41, 0x4f206a6f6761646f72207175652066617a206f206d61696f72206c616e6365206669636120636f6d2061732070726574617320652064, 'Y', '2014-10-14 20:39:05'),
(2872, 41, 0x5365206f73206c616e636573206465206b6f6d692073, 'Y', '2014-10-14 20:39:05'),
(2873, 41, 0x4a6f6761646f7265732066617a65722073657573206c616e636573206465206b6f6d69206162657274616d656e74652e, 'Y', '2014-10-14 20:39:05'),
(2874, 41, 0x4c616e636573206465206b6f6d692073, 'Y', '2014-10-14 20:39:05'),
(2875, 41, 0x4c616e636573206465206b6f6d692073, 'Y', '2014-10-14 20:39:05'),
(2876, 41, 0x43616461206c616e6365206465206b6f6d69207072656369736120736572206d61697320616c746f20717565206f20, 'Y', '2014-10-14 20:39:05'),
(2877, 41, 0x556d206a6f6761646f72206573636f6c6865206f206b6f6d692070617261206173206272616e6361732e, 'Y', '2014-10-14 20:39:05'),
(2878, 41, 0x456e74, 'Y', '2014-10-14 20:39:05'),
(2879, 41, 0x447572616e74652061206e65676f636961, 'Y', '2014-10-14 20:39:05'),
(2880, 41, 0x46616c7461206573636f6c686572206120636f72, 'Y', '2014-10-14 20:39:05'),
(2881, 41, 0x46616c74612066617a6572206c616e6365206465206b6f6d69, 'Y', '2014-10-14 20:39:05'),
(2882, 41, 0x436f7220696e76, 'Y', '2014-10-14 20:39:05'),
(2883, 41, 0x4f206c616e6365206465206b6f6d6920707265636973612073657220756d206e, 'Y', '2014-10-14 20:39:05'),
(2884, 41, 0x4a69676f20, 'Y', '2014-10-14 20:39:05'),
(2885, 41, 0x4a69676f20, 'Y', '2014-10-14 20:39:05'),
(2886, 41, 0x4f20736575206c616e6365206465206b6f6d69207072656369736120736572206d61696f7220717565206f206c616e636520646f20616476657273, 'Y', '2014-10-14 20:39:05'),
(2887, 41, 0x44657363756c70652c20766f63, 'Y', '2014-10-14 20:39:05'),
(2888, 41, 0x566f63, 'Y', '2014-10-14 20:39:05'),
(2889, 41, 0x566f63, 'Y', '2014-10-14 20:39:05'),
(2891, 41, 0x436f6e666967757261, 'Y', '2014-10-14 20:39:05'),
(2892, 41, 0x56616e746167656d2070616472, 'Y', '2014-10-14 20:39:05'),
(2893, 41, 0x56616e746167656d2d6c69767265, 'Y', '2014-10-14 20:39:05'),
(2895, 41, 0x436f6c6f6361, 'Y', '2014-10-14 20:39:05'),
(2896, 41, 0x54656d706f, 'Y', '2014-10-14 20:39:05'),
(2898, 41, 0x56616c6f7220696e76, 'Y', '2014-10-14 20:39:05'),
(2899, 41, 0x56616c6f7220696e76, 'Y', '2014-10-14 20:39:05'),
(2900, 41, 0x56616c6f7220696e76, 'Y', '2014-10-14 20:39:05'),
(2902, 41, 0x56616c6f7220696e76, 'Y', '2014-10-14 20:39:05'),
(2903, 41, 0x4f2076616c6f722070617261206f206d, 'Y', '2014-10-14 20:39:05'),
(2904, 41, 0x56616c6f7220696e76, 'Y', '2014-10-14 20:39:05'),
(2905, 41, 0x4d6f64656c6f7320636f6d2069642d64652d757375, 'Y', '2014-10-14 20:39:05'),
(2906, 41, 0x4d6f64656c6f73, 'Y', '2014-10-14 20:39:05'),
(2907, 41, 0x4d656e736167656d, 'Y', '2014-10-14 20:39:05'),
(2908, 41, 0x436f6e7669646172, 'Y', '2014-10-14 20:39:05'),
(2909, 41, 0x4e6f766f204a6f676f, 'Y', '2014-10-14 20:39:05'),
(2911, 41, 0x436f7069617220636f6d6f20756d206e6f766f206a6f676f, 'Y', '2014-10-14 20:39:05'),
(2912, 41, 0x4a6f676f206475706c6f20286272616e63617329, 'Y', '2014-10-14 20:39:05'),
(2913, 41, 0x4a6f676f206475706c6f202870726574617329, 'Y', '2014-10-14 20:39:05'),
(2914, 41, 0x6a61706f6e657361, 'Y', '2014-10-14 20:39:05'),
(2915, 41, 0x6368696e657361, 'Y', '2014-10-14 20:39:05'),
(2918, 41, 0x636f6e666967757261, 'Y', '2014-10-14 20:39:05'),
(2919, 41, 0x636f6e666967757261, 'Y', '2014-10-14 20:39:05'),
(2920, 41, 0x4d, 'Y', '2014-10-14 20:39:05'),
(2921, 41, 0x286f7063696f6e616c29, 'Y', '2014-10-14 20:39:05'),
(2922, 41, 0x41636569746172206f206d65736d6f20616476657273, 'Y', '2014-10-14 20:39:05'),
(2923, 41, 0x2573206a6f676f7320636f6d65, 'Y', '2014-10-14 20:39:05'),
(2924, 41, 0x2573206a6f676f20636f6d65, 'Y', '2014-10-14 20:39:05'),
(2925, 41, 0x73656d707265, 'Y', '2014-10-14 20:39:05'),
(4686, 7, 0x43687962ed20736eed6d656b, 'Y', '2016-07-20 16:29:41'),
(2928, 41, 0x312076657a2028706f7220636f6e7669746529, 'Y', '2014-10-14 20:39:05'),
(2929, 41, 0x25732076657a657320286d65736d6f20636f6e7669746529, 'Y', '2014-10-14 20:39:05'),
(2930, 41, 0x61636569746f75202573206a6f676f73, 'Y', '2014-10-14 20:39:05'),
(2931, 41, 0x61636569746f75202573206a6f676f, 'Y', '2014-10-14 20:39:05'),
(2932, 41, 0x6465706f6973206465203120646961, 'Y', '2014-10-14 20:39:05'),
(2933, 41, 0x6465706f69732064652025732064696173, 'Y', '2014-10-14 20:39:05'),
(2934, 41, 0x657370657265206174, 'Y', '2014-10-14 20:39:05'),
(2935, 41, 0x2e2e2e2073756120636f722070726f76, 'Y', '2014-10-14 20:39:05'),
(2936, 41, 0x2e2e2e2073756120636f72207365726961202531247320636f6d20253224732064652076616e746167656d2065202533242e3166206465206b6f6d69, 'Y', '2014-10-14 20:39:05'),
(2937, 41, 0x476f, 'Y', '2014-10-14 20:39:05'),
(2938, 41, 0x476f2d64652d657175697065, 'Y', '2014-10-14 20:39:05'),
(2939, 41, 0x476f2d7a656e, 'Y', '2014-10-14 20:39:05'),
(2940, 41, 0x4e6967697269, 'Y', '2014-10-14 20:39:05'),
(2941, 41, 0x4475706c6f, 'Y', '2014-10-14 20:39:05'),
(2942, 41, 0x507265746173, 'Y', '2014-10-14 20:39:05'),
(2943, 41, 0x4272616e636173, 'Y', '2014-10-14 20:39:05'),
(2944, 41, 0x4e65676f636961, 'Y', '2014-10-14 20:39:05'),
(2945, 41, 0x4b6f6d69206a7573746f, 'Y', '2014-10-14 20:39:05'),
(2946, 41, 0x4c65696c, 'Y', '2014-10-14 20:39:05'),
(2947, 41, 0x4c65696c, 'Y', '2014-10-14 20:39:05'),
(2948, 41, 0x566f63, 'Y', '2014-10-14 20:39:05'),
(2949, 41, 0x4575206573636f6c686f206b6f6d692c20766f63, 'Y', '2014-10-14 20:39:05'),
(2950, 41, 0x446976696469722065204573636f6c686572, 'Y', '2014-10-14 20:39:05'),
(2951, 41, 0x52656c, 'Y', '2014-10-14 20:39:05'),
(2952, 41, 0x436f722064657465726d696e6164612070656c6f206d61696f72206c616e6365205345435245544f206e6f206b6f6d69, 'Y', '2014-10-14 20:39:05'),
(2953, 41, 0x566f63, 'Y', '2014-10-14 20:39:05'),
(2954, 41, 0x566f63, 'Y', '2014-10-14 20:39:05'),
(2955, 41, 0x45752028257329206573636f6c686f206b6f6d692c20766f63, 'Y', '2014-10-14 20:39:05'),
(2956, 41, 0x45752028257329206573636f6c686f206b6f6d692c20766f63, 'Y', '2014-10-14 20:39:05'),
(2959, 41, 0x466f72, 'Y', '2014-10-14 20:39:05'),
(2960, 41, 0x50726f69626972204a69676f, 'Y', '2014-10-14 20:39:05'),
(2961, 41, 0x4d616e7574656e, 'Y', '2014-10-14 20:39:05'),
(2962, 41, 0x416e, 'Y', '2014-10-14 20:39:05'),
(2963, 41, 0x416e, 'Y', '2014-10-14 20:39:05'),
(2964, 41, 0x4e6f74, 'Y', '2014-10-14 20:39:05'),
(2965, 41, 0x496e666f726d61, 'Y', '2014-10-14 20:39:05'),
(2966, 41, 0x4e6f74, 'Y', '2014-10-14 20:39:05'),
(2967, 41, 0x416e, 'Y', '2014-10-14 20:39:05'),
(2968, 41, 0x4e6f766f, 'Y', '2014-10-14 20:39:05'),
(2969, 41, 0x50656e64656e7465, 'Y', '2014-10-14 20:39:05'),
(2970, 41, 0x52656a65697461646f, 'Y', '2014-10-14 20:39:05'),
(2971, 41, 0x4d6f7374726172, 'Y', '2014-10-14 20:39:05'),
(2972, 41, 0x4172717569766f, 'Y', '2014-10-14 20:39:05'),
(2973, 41, 0x417061676172, 'Y', '2014-10-14 20:39:05'),
(2974, 41, 0x546f646f7320557375, 'Y', '2014-10-14 20:39:05'),
(2975, 41, 0x44697265746f722d64652d54, 'Y', '2014-10-14 20:39:05'),
(2976, 41, 0x5061727469636970616e74652d64652d54, 'Y', '2014-10-14 20:39:05'),
(2977, 41, 0x4c697374614465557375, 'Y', '2014-10-14 20:39:05'),
(2978, 41, 0x4a6f676f2d6d, 'Y', '2014-10-14 20:39:05'),
(2979, 41, 0x41646d696e6973747261646f722d43726961646f, 'Y', '2014-10-14 20:39:05'),
(2980, 41, 0x557375, 'Y', '2014-10-14 20:39:05'),
(2981, 41, 0x5b25735d20706f72202573, 'Y', '2014-10-14 20:39:05'),
(2982, 41, 0x4d617263617220636f6d6f206c69646f, 'Y', '2014-10-14 20:39:05'),
(2983, 41, 0x4d617263617220626f6c6574696d20636f6d6f206c69646f, 'Y', '2014-10-14 20:39:05'),
(2984, 41, 0x52656c, 'Y', '2014-10-14 20:39:05'),
(2985, 41, 0x557375, 'Y', '2014-10-14 20:39:05'),
(2986, 41, 0x46696d2064652073656d616e61202855544329, 'Y', '2014-10-14 20:39:05'),
(2987, 41, 0x45786563757469766f2064726167, 'Y', '2014-10-14 20:39:05'),
(2988, 41, 0x436f6e65637461646f, 'Y', '2014-10-14 20:39:05'),
(2989, 41, 0x436f6e6563746f75206120266c743b2573206d696e75746f73, 'Y', '2014-10-14 20:39:05'),
(2992, 41, 0x546f726e65696f73, 'Y', '2014-10-14 20:39:05'),
(2993, 41, 0x4f206a6f676f2074656d20636f6d656e74, 'Y', '2014-10-14 20:39:05'),
(2995, 41, 0x4d6f7374726172206a6f676f73206d756c74696a6f6761646f72, 'Y', '2014-10-14 20:39:05'),
(2996, 41, 0x4361726163746572657320696e76, 'Y', '2014-10-14 20:39:05'),
(2997, 41, 0x557375, 'Y', '2014-10-14 20:39:05'),
(2998, 41, '', 'Y', '2014-10-14 20:39:05'),
(2999, 41, 0x4f7320757375, 'Y', '2014-10-14 20:39:05'),
(3000, 41, 0x4f7320636f6e76696461646f73205b25735d206e, 'Y', '2014-10-14 20:39:05'),
(3001, 41, 0x696e676c, 'Y', '2014-10-14 20:39:05'),
(3002, 41, 0x6672616e63, 'Y', '2014-10-14 20:39:05'),
(3003, 41, '', 'Y', '2014-10-14 20:39:05'),
(3004, 41, 0x657370616e686f6c2028636174616c, 'Y', '2014-10-14 20:39:05'),
(3005, 41, 0x657370616e686f6c2028626173636f29, 'Y', '2014-10-14 20:39:05'),
(3006, 41, 0x727573736f, 'Y', '2014-10-14 20:39:05'),
(3007, 41, 0x706f7274756775, 'Y', '2014-10-14 20:39:05'),
(3008, 41, 0x616c656d, 'Y', '2014-10-14 20:39:05'),
(3009, 41, 0x686f6c616e64, 'Y', '2014-10-14 20:39:05'),
(3010, 41, 0x6974616c69616e6f, 'Y', '2014-10-14 20:39:05'),
(3011, 41, 0x6368696e, 'Y', '2014-10-14 20:39:05'),
(3012, 41, 0x6368696e, 'Y', '2014-10-14 20:39:05'),
(3013, 41, 0x74636865636f, 'Y', '2014-10-14 20:39:05'),
(3014, 41, 0x64696e616d61727175, 'Y', '2014-10-14 20:39:05'),
(3015, 41, 0x66696e6c616e64, 'Y', '2014-10-14 20:39:05'),
(3016, 41, 0x677265676f, 'Y', '2014-10-14 20:39:05'),
(3017, 41, 0x686562726169636f, 'Y', '2014-10-14 20:39:05'),
(3018, 41, 0x68, 'Y', '2014-10-14 20:39:05'),
(3019, 41, 0x6a61706f6e657361, 'Y', '2014-10-14 20:39:05'),
(3020, 41, 0x636f7265616e6f, 'Y', '2014-10-14 20:39:05'),
(3021, 41, 0x6e6f7275656775, 'Y', '2014-10-14 20:39:05'),
(3022, 41, 0x706f6c6f6e, 'Y', '2014-10-14 20:39:05'),
(3023, 41, 0x726f6d656e6f, 'Y', '2014-10-14 20:39:05'),
(3024, 41, 0x73, 'Y', '2014-10-14 20:39:05'),
(3025, 41, 0x65736c6f7661636f, 'Y', '2014-10-14 20:39:05'),
(3026, 41, 0x737565636f, 'Y', '2014-10-14 20:39:05'),
(3027, 41, 0x7461696c616e64, 'Y', '2014-10-14 20:39:05'),
(3028, 41, 0x747572636f, 'Y', '2014-10-14 20:39:05'),
(6180, 11, '', 'Y', '2014-11-01 01:57:25'),
(3030, 41, 0x766965746e616d697461, 'Y', '2014-10-14 20:39:05'),
(3031, 41, 0x4573706572616e746f, 'Y', '2014-10-14 20:39:05'),
(3032, 41, 0x6d616c61696f, 'Y', '2014-10-14 20:39:05'),
(3033, 41, 0x67656f726769616e6f, 'Y', '2014-10-14 20:39:05'),
(3034, 41, 0x69726c616e64, 'Y', '2014-10-14 20:39:05'),
(3035, 41, 0x696e646f6e, 'Y', '2014-10-14 20:39:05'),
(3036, 41, 0x68696e6469, 'Y', '2014-10-14 20:39:05'),
(3037, 41, 0x74, 'Y', '2014-10-14 20:39:05'),
(3038, 41, 0x75726475, 'Y', '2014-10-14 20:39:05'),
(3039, 41, 0x42656e67616c69, 'Y', '2014-10-14 20:39:05'),
(3040, 41, 0x62, 'Y', '2014-10-14 20:39:05'),
(3041, 41, 0x63726f617461, 'Y', '2014-10-14 20:39:05'),
(3042, 41, 0x65736c6f76656e6f, 'Y', '2014-10-14 20:39:05'),
(3043, 41, 0x6166726963, 'Y', '2014-10-14 20:39:05'),
(3044, 41, 0x737561, 'Y', '2014-10-14 20:39:05'),
(3045, 41, 0x757a62656b6f, 'Y', '2014-10-14 20:39:05'),
(3046, 41, 0x6d6f6e676f6c, 'Y', '2014-10-14 20:39:05'),
(3047, 41, 0x616c62616e, 'Y', '2014-10-14 20:39:05'),
(3048, 41, 0x61726d, 'Y', '2014-10-14 20:39:05'),
(3049, 41, 0x62, 'Y', '2014-10-14 20:39:05'),
(3050, 41, 0x7065727361, 'Y', '2014-10-14 20:39:05'),
(3051, 41, 0x70616368746f, 'Y', '2014-10-14 20:39:05'),
(3054, 41, 0x446573616669616e746520646520436f72, 'Y', '2014-10-14 20:39:05'),
(3055, 41, 0x436f72204d61697320466f727465, 'Y', '2014-10-14 20:39:05'),
(3056, 41, 0x436f6e666967757261, 'Y', '2014-10-14 20:39:05'),
(3057, 41, 0x4b6f6d69206a7573746f20286a6f676f20657175696c69627261646f29, 'Y', '2014-10-14 20:39:05'),
(3058, 41, 0x5065647261732064652076616e746167656d, 'Y', '2014-10-14 20:39:05'),
(3059, 41, 0x416a757374617220636f6d, 'Y', '2014-10-14 20:39:05'),
(3060, 41, 0x4d, 'Y', '2014-10-14 20:39:05'),
(3061, 41, 0x4d, 'Y', '2014-10-14 20:39:05'),
(3062, 41, 0x416a757374617220656d, 'Y', '2014-10-14 20:39:05'),
(3063, 41, 0x5469706f206465204a69676f, 'Y', '2014-10-14 20:39:05'),
(3064, 41, 0x436f6e666967757261, 'Y', '2014-10-14 20:39:05'),
(3065, 41, 0x4a6f6761646f726573, 'Y', '2014-10-14 20:39:05'),
(3066, 41, 0x652e672e20323a32202852656e676f292c203320285a656e2d476f29, 'Y', '2014-10-14 20:39:05'),
(3067, 41, 0x6675736f2d686f72, 'Y', '2014-10-14 20:39:05'),
(3068, 41, 0x526573747269, 'Y', '2014-10-14 20:39:05'),
(3069, 41, 0x4d616c612064697265746120636f6d206f7574726f732064657374696e6174, 'Y', '2014-10-14 20:39:05'),
(3070, 41, 0x2873656d20617373756e746f29, 'Y', '2014-10-14 20:39:05'),
(3071, 41, 0x44697363757373, 'Y', '2014-10-14 20:39:05'),
(3072, 41, 0x4d6f73747261722064697363757373, 'Y', '2014-10-14 20:39:05'),
(3073, 41, 0x5072696d65697261206d656e736167656d2064612064697363757373, 'Y', '2014-10-14 20:39:05'),
(3074, 41, 0x4d6f7374726172206d656e736167656d20696e696369616c2064612064697363757373, 'Y', '2014-10-14 20:39:05'),
(3075, 41, 0x4972207061726120612070617374612064652064657374696e6f, 'Y', '2014-10-14 20:39:05'),
(3076, 41, 0x4e, 'Y', '2014-10-14 20:39:05'),
(4684, 7, 0x536eed6d656b20726f7a6573746176656eed206f62736168756a65206e65706c61746ee9207a6e616b79205b25735d2e, 'Y', '2016-07-20 18:39:13'),
(3079, 41, 0x496e662e20646f206a6f676f, 'Y', '2014-10-14 20:39:05'),
(3080, 41, 0x4a6f676f20636f6d2076616e746167656d2065206e6967697269, 'Y', '2014-10-14 20:39:05'),
(3081, 41, 0x436f72206573636f6c686964612070656c6f206d65737472652d64652d6a6f676f, 'Y', '2014-10-14 20:39:05'),
(3082, 41, 0x436f72206573636f6c686964612070656c6f206d65737472652d64652d6a6f676f2070617261206a6f676f2d6d, 'Y', '2014-10-14 20:39:05'),
(3083, 41, 0x507265746173, 'Y', '2014-10-14 20:39:05'),
(3084, 41, 0x4272616e636173, 'Y', '2014-10-14 20:39:05'),
(3085, 41, 0x446573616669616e746520646520436f72205072657461, 'Y', '2014-10-14 20:39:05'),
(3086, 41, 0x446573616669616e746520646520436f72204272616e6361, 'Y', '2014-10-14 20:39:05'),
(3087, 41, 0x436f7220507265746120466f727465, 'Y', '2014-10-14 20:39:05'),
(3088, 41, 0x436f72204272616e636120466f727465, 'Y', '2014-10-14 20:39:05'),
(3089, 41, 0x436f6e666967757261, 'Y', '2014-10-14 20:39:05'),
(3090, 41, 0x4b6f6d69206a7573746f, 'Y', '2014-10-14 20:39:05'),
(3091, 41, 0x416a757374652064612076616e746167656d, 'Y', '2014-10-14 20:39:05'),
(3092, 41, 0x416a75737465206465206b6f6d69, 'Y', '2014-10-14 20:39:05'),
(3093, 41, 0x526573747269, 'Y', '2014-10-14 20:39:05'),
(3096, 41, 0x50726f76, 'Y', '2014-10-14 20:39:05'),
(3097, 41, 0x2c30, 'Y', '2014-10-14 20:39:05'),
(3098, 41, 0x5065726d69746972204a69676f, 'Y', '2014-10-14 20:39:05'),
(3099, 41, 0x2c35, 'Y', '2014-10-14 20:39:05'),
(3100, 41, 0x53656d204a69676f, 'Y', '2014-10-14 20:39:05'),
(3101, 41, 0x4176616c6961646f735b25735d, 'Y', '2014-10-14 20:39:05'),
(3102, 41, 0x4a6f676f73206176616c6961646f73207465726d696e61646f735b2667743b3d25735d, 'Y', '2014-10-14 20:39:05'),
(3103, 41, 0x44657374696e6174, 'Y', '2014-10-14 20:39:05'),
(3104, 41, 0x436f6e7669746520726563757361646f2070656c6f20757375, 'Y', '2014-10-14 20:39:05'),
(3105, 41, 0x4d656e736167656d2072656375736164612070656c6f20757375, 'Y', '2014-10-14 20:39:05'),
(3106, 41, 0x44697363757373, 'Y', '2014-10-14 20:39:05'),
(3107, 41, 0x5072696d65697261206d656e736167656d206e612064697363757373, 'Y', '2014-10-14 20:39:05'),
(3108, 41, 0x557365206120696e76657273, 'Y', '2014-10-14 20:39:05'),
(3109, 41, 0x46616c7461206f2064657374696e6174, 'Y', '2014-10-14 20:39:05'),
(3110, 41, 0x4578636573736f2064652064657374696e6174, 'Y', '2014-10-14 20:39:05'),
(3111, 41, 0x4170656e617320756d2064657374696e6174, 'Y', '2014-10-14 20:39:05'),
(3112, 41, 0x4f20757375, 'Y', '2014-10-14 20:39:05'),
(3113, 41, 0x46616c7461206f20617373756e746f206461206d656e736167656d, 'Y', '2014-10-14 20:39:05'),
(3114, 41, 0x56656a612074616d62, 'Y', '2014-10-14 20:39:05'),
(3115, 41, 0x6e, 'Y', '2014-10-14 20:39:05'),
(3116, 41, 0x4447532d454c4f, 'Y', '2014-10-14 20:39:05'),
(3117, 41, 0x53656d206e, 'Y', '2014-10-14 20:39:05'),
(3118, 41, 0x436f6e766572746572, 'Y', '2014-10-14 20:39:05'),
(3119, 41, 0x64, 'Y', '2014-10-14 20:39:05'),
(3120, 41, 0x6b, 'Y', '2014-10-14 20:39:05'),
(3121, 41, 0x454c4f, 'Y', '2014-10-14 20:39:05'),
(3122, 41, 0x4e, 'Y', '2014-10-14 20:39:05'),
(3123, 41, 0x486162696c696461646520447261676f6e, 'Y', '2014-10-14 20:39:05'),
(3124, 41, 0x4e, 'Y', '2014-10-14 20:39:05'),
(3125, 41, 0x486162696c6964616465204575726f202845474629, 'Y', '2014-10-14 20:39:05'),
(3126, 41, 0x4e, 'Y', '2014-10-14 20:39:05'),
(3127, 41, 0x486162696c696461646520414741, 'Y', '2014-10-14 20:39:05'),
(3128, 41, 0x4e, 'Y', '2014-10-14 20:39:05'),
(3129, 41, 0x4e, 'Y', '2014-10-14 20:39:05'),
(3130, 41, 0x4e, 'Y', '2014-10-14 20:39:05'),
(3131, 41, 0x4e, 'Y', '2014-10-14 20:39:05'),
(3132, 41, 0x4e, 'Y', '2014-10-14 20:39:05'),
(3133, 41, 0x4e, 'Y', '2014-10-14 20:39:05'),
(3134, 41, 0x486162696c6964616465204f4753, 'Y', '2014-10-14 20:39:05'),
(3135, 41, 0x4e, 'Y', '2014-10-14 20:39:05'),
(3136, 41, 0x4e, 'Y', '2014-10-14 20:39:05'),
(3137, 41, 0x4e, 'Y', '2014-10-14 20:39:05'),
(3138, 41, 0x4e, 'Y', '2014-10-14 20:39:05'),
(3139, 41, 0x4973746f20, 'Y', '2014-10-14 20:39:05'),
(3140, 41, 0x422d436f6d65, 'Y', '2014-10-14 20:39:05'),
(3141, 41, 0x50, 'Y', '2014-10-14 20:39:05'),
(3142, 41, 0x50726f2e, 'Y', '2014-10-14 20:39:05'),
(3143, 41, 0x50726f666573736f72, 'Y', '2014-10-14 20:39:05'),
(3144, 41, 0x526f62, 'Y', '2014-10-14 20:39:05'),
(3145, 41, 0x54696d65, 'Y', '2014-10-14 20:39:05'),
(3146, 41, 0x54696d65, 'Y', '2014-10-14 20:39:05'),
(3147, 41, 0x4661766f7269746f73, 'Y', '2014-10-14 20:39:05'),
(3148, 41, '', 'Y', '2014-10-14 20:39:05'),
(3149, 41, 0x416476657273, 'Y', '2014-10-14 20:39:05'),
(3150, 41, 0x557375, 'Y', '2014-10-14 20:39:05'),
(3151, 41, 0x4564697461722066, 'Y', '2014-10-14 20:39:05'),
(3152, 41, 0x45646974617220636f6e666967757261, 'Y', '2014-10-14 20:39:05'),
(3153, 41, 0x4d6f7374726172, 'Y', '2014-10-14 20:39:05'),
(3154, 41, 0x456e74726172, 'Y', '2014-10-14 20:39:05'),
(3155, 41, 0x416a756461202f20464151, 'Y', '2014-10-14 20:39:05'),
(3156, 41, 0x4e6f766f204a6f676f, 'Y', '2014-10-14 20:39:05'),
(3157, 41, 0x426f6c6574696e732028656d20696e676c, 'Y', '2014-10-14 20:39:05'),
(3158, 41, 0x4d656c686f726961732028656d20696e676c, 'Y', '2014-10-14 20:39:05'),
(3159, 41, 0x456469746f72206465204a6f676f, 'Y', '2014-10-14 20:39:05'),
(3160, 41, 0x436f6e666967757261722d466f726d61, 'Y', '2014-10-14 20:39:05'),
(3161, 41, 0x4a6f67616461, 'Y', '2014-10-14 20:39:05'),
(3162, 41, 0x546f726e65696f20232573205b25735d, 'Y', '2014-10-14 20:39:05'),
(3163, 41, 0x3f3f3f, 'Y', '2014-10-14 20:39:05'),
(3164, 41, 0x5065737175697361202325732028257329205b25735d, 'Y', '2014-10-14 20:39:05'),
(3165, 41, 0x506573717569736120232573205b25735d, 'Y', '2014-10-14 20:39:05'),
(3166, 41, 0x3f3f3f, 'Y', '2014-10-14 20:39:05'),
(3167, 41, 0x466f726d61746f20646520646174612065727261646f20656d205b25735d2e204573706572612d7365205b25735d2070617261206f205b25735d2e, 'Y', '2014-10-14 20:39:05'),
(3168, 41, 0x506f6e746f73, 'Y', '2014-10-14 20:39:05'),
(3169, 41, 0x536f6d61, 'Y', '2014-10-14 20:39:05'),
(3170, 41, '', 'Y', '2014-10-14 20:39:05'),
(3171, 41, 0x4d, 'Y', '2014-10-14 20:39:05'),
(3172, 41, 0x4e6f7661, 'Y', '2014-10-14 20:39:05'),
(3173, 41, 0x417469766f, 'Y', '2014-10-14 20:39:05'),
(3174, 41, 0x46656368616461, 'Y', '2014-10-14 20:39:05'),
(3175, 41, 0x417061676172, 'Y', '2014-10-14 20:39:05'),
(3176, 41, 0x4c697374612d64652d557375, 'Y', '2014-10-14 20:39:05'),
(3182, 41, 0x4d657520766f746f, 'Y', '2014-10-14 20:39:05'),
(3183, 41, 0x546f646f73206f7320766f746f73, 'Y', '2014-10-14 20:39:05'),
(3184, 41, 0x4e6f7461732025732c202573, 'Y', '2014-10-14 20:39:05'),
(3185, 41, 0x53657520766f746f, 'Y', '2014-10-14 20:39:05'),
(3186, 41, 0x23, 'Y', '2014-10-14 20:39:05'),
(3187, 41, 0x28257320656e74726164617329, 'Y', '2014-10-14 20:39:05'),
(3188, 41, 0x282573206c696e68617329, 'Y', '2014-10-14 20:39:05'),
(3189, 41, 0x7072696d656972612070, 'Y', '2014-10-14 20:39:05'),
(3190, 41, 0x50, 'Y', '2014-10-14 20:39:05'),
(3191, 41, 0x50, 'Y', '2014-10-14 20:39:05'),
(3192, 41, '', 'Y', '2014-10-14 20:39:05'),
(3193, 41, 0x45646974, 'Y', '2014-10-14 20:39:05'),
(3194, 41, 0x566973, 'Y', '2014-10-14 20:39:05'),
(3195, 41, 0x41646d696e69737472617469766f, 'Y', '2014-10-14 20:39:05'),
(3196, 41, 0x546f646f73206f73207469706f73, 'Y', '2014-10-14 20:39:05'),
(3197, 41, 0x4e, 'Y', '2014-10-14 20:39:05'),
(3198, 41, 0x4c69646f73, 'Y', '2014-10-14 20:39:05'),
(3199, 41, 0x4d657573, 'Y', '2014-10-14 20:39:05'),
(3200, 41, 0x4f7574726f73, 'Y', '2014-10-14 20:39:05'),
(3201, 41, 0x416c766f, 'Y', '2014-10-14 20:39:05'),
(3202, 41, 0x45646974617220426f6c6574696d, 'Y', '2014-10-14 20:39:05'),
(3205, 41, 0x566572, 'Y', '2014-10-14 20:39:05'),
(3206, 41, 0x566572, 'Y', '2014-10-14 20:39:05'),
(3207, 41, 0x496e666f726d61, 'Y', '2014-10-14 20:39:05'),
(3208, 41, 0x417373756e746f, 'Y', '2014-10-14 20:39:05'),
(3209, 41, 0x4c69646f, 'Y', '2014-10-14 20:39:05'),
(3212, 41, 0x51756164726f20646520426f6c6574696e73, 'Y', '2014-10-14 20:39:05'),
(3213, 41, 0x56657220636f6d6f2041646d696e2e, 'Y', '2014-10-14 20:39:05'),
(3214, 41, 0x56657220757375, 'Y', '2014-10-14 20:39:05'),
(3215, 41, 0x4d65757320426f6c6574696e73, 'Y', '2014-10-14 20:39:05'),
(3216, 41, 0x4f63756c74617220746578746f73, 'Y', '2014-10-14 20:39:05'),
(3217, 41, 0x4d6f737472617220746578746f73, 'Y', '2014-10-14 20:39:05'),
(3218, 41, 0x50756c61722063617465676f726961, 'Y', '2014-10-14 20:39:05'),
(3219, 41, 0x426f6c6574696d206d61726361646f20636f6d6f206c69646f, 'Y', '2014-10-14 20:39:05'),
(3220, 41, 0x426f6c6574696d206e, 'Y', '2014-10-14 20:39:05'),
(3221, 41, 0x566973, 'Y', '2014-10-14 20:39:05'),
(3222, 41, 0x566973, 'Y', '2014-10-14 20:39:05'),
(3223, 41, 0x426f6c6574696e73206e, 'Y', '2014-10-14 20:39:05'),
(3224, 41, 0x466f746f, 'Y', '2014-10-14 20:39:05'),
(3225, 41, 0x496e64696361646f722070617261206578697374, 'Y', '2014-10-14 20:39:05'),
(3226, 41, 0x557375, 'Y', '2014-10-14 20:39:05'),
(3227, 41, 0x496e64696361, 'Y', '2014-10-14 20:39:05'),
(3228, 41, 0x4d6f646966696361646f, 'Y', '2014-10-14 20:39:05'),
(3229, 41, 0x496e7665727465722073656c65, 'Y', '2014-10-14 20:39:05'),
(3230, 41, 0x50617374612064652064657374696e6f3a, 'Y', '2014-10-14 20:39:05'),
(3231, 41, 0x4d6f7665722073656c6563696f6e61646173, 'Y', '2014-10-14 20:39:05'),
(3235, 41, 0x466f726d6173, 'Y', '2014-10-14 20:39:05'),
(3240, 41, 0x5469706f, 'Y', '2014-10-14 20:39:05'),
(3242, 41, 0x456469746172205065737175697361, 'Y', '2014-10-14 20:39:05'),
(3245, 41, 0x23566f746f73, 'Y', '2014-10-14 20:39:05'),
(3249, 41, 0x4d656e736167656d, 'Y', '2014-10-14 20:39:05'),
(3250, 41, 0x4e6f7661206d656e736167656d206465206a6f676f2d6d, 'Y', '2014-10-14 20:39:05'),
(3251, 41, 0x53616c766172206d6f64656c6f, 'Y', '2014-10-14 20:39:05'),
(3252, 41, 0x436f6e766974652070617261206a6f676172, 'Y', '2014-10-14 20:39:05'),
(3253, 41, 0x4469737075746120646f20636f6e766974652070617261206a6f676172, 'Y', '2014-10-14 20:39:05'),
(3255, 41, 0x507265766973, 'Y', '2014-10-14 20:39:05'),
(3256, 41, 0x436f6e666967757261, 'Y', '2014-10-14 20:39:05'),
(3257, 41, 0x6575206d65736d6f, 'Y', '2014-10-14 20:39:05'),
(3258, 41, 0x4469666572656e, 'Y', '2014-10-14 20:39:05'),
(3259, 41, 0x4e, 'Y', '2014-10-14 20:39:05'),
(3260, 41, 0x4573636f6e64657220746578746f73206461206d656e736167656d, 'Y', '2014-10-14 20:39:05'),
(3261, 41, 0x4d6f737472617220746578746f20646173206d656e736167656e73, 'Y', '2014-10-14 20:39:05'),
(3262, 41, 0x4d656e736167656d20617475616c, 'Y', '2014-10-14 20:39:05'),
(3263, 41, '', 'Y', '2014-10-14 20:39:05'),
(3264, 41, 0x41646963696f6e6172206e6f766f206a6f676f, 'Y', '2014-10-14 20:39:05'),
(3265, 41, 0x41646963696f6e6172206e6f766f206a6f676f206e612073616c6120646520657370657261, 'Y', '2014-10-14 20:39:05'),
(3267, 41, 0x4e6f766f206a6f676f20636f6d206b6f6d692d6a7573746f, 'Y', '2014-10-14 20:39:05'),
(3268, 41, 0x4e6f766f206a6f676f2d6d, 'Y', '2014-10-14 20:39:05'),
(4716, 36, 0x53616ac3a17420616c616b7a617461696d, 'Y', '2015-09-19 16:50:03'),
(2242, 36, 0x4b657a64c59120737ac3ad6e, 'Y', '2015-09-19 16:50:03'),
(4682, 36, 0x4e696e6373206d656761647661206dc3a9726574, 'Y', '2015-09-19 16:47:33'),
(4681, 36, 0x457a20617a20616c616b7a61746ec3a976205b25735d206dc3a172206cc3a974657a696b2c20656779656469206e65766574206b656c6c2076c3a16c61737a74616e6f642e, 'Y', '2015-09-19 16:47:33'),
(4678, 36, 0x4d656774656b696e74c3a973206120476f62616e20737a65726b65737a74c59162656e, 'Y', '2015-09-19 16:42:25'),
(4676, 36, 0x416c616b7a617420737a65726b65737a74c3a97365, 'Y', '2015-09-19 16:42:25'),
(4674, 36, 0x416c616b7a6174206a6567797a6574656b, 'Y', '2015-09-19 16:42:25'),
(5778, 36, 0x74c3b672c3b66c7665, 'Y', '2015-09-19 16:07:18'),
(3049, 36, 0x626f6c67c3a172, 'Y', '2015-09-19 12:54:36'),
(3046, 36, 0x6d6f6e676f6c, 'Y', '2015-09-19 12:53:46'),
(3042, 36, 0x737a6c6f76c3a96e, 'Y', '2015-09-19 12:53:22'),
(3036, 36, 0x68696e6469, 'Y', '2015-09-19 12:52:53'),
(3030, 36, 0x766965746ec3a16d69, 'Y', '2015-09-19 12:52:53'),
(3027, 36, 0x74686169, 'Y', '2015-09-19 12:52:13'),
(3025, 36, 0x737a6c6f76c3a16b, 'Y', '2015-09-19 12:52:13'),
(3021, 36, 0x6e6f7276c3a967, 'Y', '2015-09-19 12:52:13'),
(3018, 36, 0x6d6167796172, 'Y', '2015-09-19 12:51:39'),
(3295, 41, 0x457370656369616c, 'Y', '2014-10-14 20:39:05'),
(3296, 41, 0x5072, 'Y', '2014-10-14 20:39:05'),
(3297, 41, 0x436f6e7669646172, 'Y', '2014-10-14 20:39:05'),
(3298, 41, 0x4a6f676f7320646f20616476657273, 'Y', '2014-10-14 20:39:05'),
(3299, 41, 0x50, 'Y', '2014-10-14 20:39:05'),
(3300, 41, 0x496e73637269746f, 'Y', '2014-10-14 20:39:05'),
(3301, 41, 0x41706f6e74612070617261206f73206a6f676f73207465726d696e61646f7320636f6d206f20616476657273, 'Y', '2014-10-14 20:39:05'),
(3302, 41, 0x41706f6e74612070617261206f73206a6f676f7320656d2070726f67726573736f20636f6d206f20616476657273, 'Y', '2014-10-14 20:39:05'),
(3303, 41, 0x416476657273, 'Y', '2014-10-14 20:39:05'),
(3304, 41, 0x4d6f737472617220757375, 'Y', '2014-10-14 20:39:05'),
(3315, 41, 0x2865737465766520636f6e65637461646f206e617320, 'Y', '2014-10-14 20:39:05'),
(3316, 41, 0x4f7574726f73206372, 'Y', '2014-10-14 20:39:05'),
(3332, 41, 0x4f7574726f7320, 'Y', '2014-10-14 20:39:05'),
(3333, 41, 0x546f726e65696f, 'Y', '2014-10-14 20:39:05'),
(3334, 41, 0x436f6e766572736f72206465206e, 'Y', '2014-10-14 20:39:05'),
(3337, 41, 0x4f20656e64657265, 'Y', '2014-10-14 20:39:05'),
(3338, 41, 0x7374617475732d2573206465205b25735d2074656d706f72617269616d656e7465206465736174697661646f206578636573736f2064652075736f21, 'Y', '2014-10-14 20:39:05'),
(3339, 41, 0x506f72206661766f72206162726120612070, 'Y', '2014-10-14 20:39:05'),
(3340, 41, 0x506f72206661766f72206661, 'Y', '2014-10-14 20:39:05'),
(3341, 41, 0x4f6272696761646f206465736465206a, 'Y', '2014-10-14 20:39:05'),
(3342, 41, 0x426f6c6574696d207061726120257320636f6d2022257322, 'Y', '2014-10-14 20:39:05'),
(3343, 41, 0x4465, 'Y', '2014-10-14 20:39:05'),
(3344, 41, 0x4d656e736167656d206465202573, 'Y', '2014-10-14 20:39:05'),
(3345, 41, 0x4d656e736167656d, 'Y', '2014-10-14 20:39:05'),
(3346, 41, 0x52656d6574656e7465, 'Y', '2014-10-14 20:39:05'),
(3347, 41, 0x417373756e746f, 'Y', '2014-10-14 20:39:05'),
(3348, 41, 0x4a6f676f20646520257320636f6d202573, 'Y', '2014-10-14 20:39:05'),
(3349, 41, 0x4a6f676f, 'Y', '2014-10-14 20:39:05'),
(3350, 41, 0x4c69737461732076617a696173, 'Y', '2014-10-14 20:39:05'),
(3351, 41, 0x4e656e68756d206e6f766f20626f6c6574696d, 'Y', '2014-10-14 20:39:05'),
(3352, 41, 0x53656d206a6f676f7320, 'Y', '2014-10-14 20:39:05'),
(3353, 41, 0x53656d206e6f766173206d656e736167656e73, 'Y', '2014-10-14 20:39:05'),
(3354, 41, 0x557375, 'Y', '2014-10-14 20:39:05'),
(3355, 41, 0x557375, 'Y', '2014-10-14 20:39:05'),
(3356, 41, 0x56657a20646f20757375, 'Y', '2014-10-14 20:39:05'),
(3357, 41, 0x4a6f6761646120646f206164762e, 'Y', '2014-10-14 20:39:05'),
(3358, 41, 0x494420646f206a6f676f, 'Y', '2014-10-14 20:39:05'),
(3359, 41, 0x436f6d656e74, 'Y', '2014-10-14 20:39:05'),
(3360, 41, '', 'Y', '2014-10-14 20:39:05'),
(3361, 41, 0x4f627365727661646f726573, 'Y', '2014-10-14 20:39:05'),
(3362, 41, 0x4d657573, 'Y', '2014-10-14 20:39:05'),
(2676, 6, 0x53616d6f6120416d65726963616e61, 'Y', '2015-06-17 05:00:43'),
(2680, 6, 0x426f736e69612079204865727a65676f76696e61, 'Y', '2015-06-16 18:26:35'),
(3366, 41, 0x5469706f206465206a6f676f, 'Y', '2014-10-14 20:39:05'),
(3367, 41, 0x5265677261, 'Y', '2014-10-14 20:39:05'),
(3368, 41, 0x54656d706f2072657374616e7465, 'Y', '2014-10-14 20:39:05'),
(3369, 41, 0x54656d706f2072657374616e746520286164762e29, 'Y', '2014-10-14 20:39:05'),
(3370, 41, 0x546f646f73206f73206a6f676f73206f627365727661646f73, 'Y', '2014-10-14 20:39:05'),
(3371, 41, 0x4a6f676f7320717565206f62736572766f, 'Y', '2014-10-14 20:39:05'),
(3372, 41, 0x546f646f73206f73206a6f676f73207465726d696e61646f73, 'Y', '2014-10-14 20:39:05'),
(3373, 41, 0x546f646f73206f73206a6f676f7320656d2070726f67726573736f, 'Y', '2014-10-14 20:39:05'),
(3374, 41, 0x4a6f676f73207465726d696e61646f73207061726120253124733a2025322473, 'Y', '2014-10-14 20:39:05'),
(3375, 41, 0x4a6f676f7320656d2070726f67726573736f20646520253124733a2025322473, 'Y', '2014-10-14 20:39:05'),
(3376, 41, 0x4170656e6173206a6f676f732d6d, 'Y', '2014-10-14 20:39:05'),
(3377, 41, 0x5b25735d20636f6d206173206272616e6361732c2076657a20646173206272616e636173, 'Y', '2014-10-14 20:39:05'),
(3378, 41, 0x5b25735d20636f6d206173206272616e6361732c2076657a2064617320707265746173, 'Y', '2014-10-14 20:39:05'),
(3379, 41, 0x5b25735d20636f6d206173207072657461732c2076657a20646173206272616e636173, 'Y', '2014-10-14 20:39:05'),
(3380, 41, 0x5b25735d20636f6d206173207072657461732c2076657a2064617320707265746173, 'Y', '2014-10-14 20:39:05'),
(3381, 41, 0x56657a2064617320707265746173, 'Y', '2014-10-14 20:39:05'),
(3382, 41, 0x56657a20646173206272616e636173, 'Y', '2014-10-14 20:39:05'),
(3383, 41, 0x4a6f676f7320656d2070726f67726573736f20646f7320757375, 'Y', '2014-10-14 20:39:05'),
(3384, 41, 0x4a6f676f73207465726d696e61646f7320646f7320757375, 'Y', '2014-10-14 20:39:05'),
(3385, 41, 0x4d657573206a6f676f7320617475616973, 'Y', '2014-10-14 20:39:05'),
(3386, 41, 0x4d657573206a6f676f73207465726d696e61646f73, 'Y', '2014-10-14 20:39:05'),
(3387, 41, 0x496e666f726d61, 'Y', '2014-10-14 20:39:05'),
(3388, 41, 0x4d65757320746f726e65696f73, 'Y', '2014-10-14 20:39:05'),
(3389, 41, '', 'Y', '2014-10-14 20:39:05'),
(3390, 41, '', 'Y', '2014-10-14 20:39:05'),
(3394, 41, 0x4372696172206e6f766f20746f726e65696f, 'Y', '2014-10-14 20:39:05'),
(3395, 41, 0x56657220746f726e65696f, 'Y', '2014-10-14 20:39:05'),
(3396, 41, 0x44697265746f72657320646520746f726e65696f, 'Y', '2014-10-14 20:39:05'),
(3397, 41, 0x41646963696f6e61722064697265746f7220646520746f726e65696f, 'Y', '2014-10-14 20:39:05'),
(3398, 41, 0x4564697461722064697265746f7220646520746f726e65696f, 'Y', '2014-10-14 20:39:05'),
(3399, 41, 0x52656d6f7665722064697265746f7220646520746f726e65696f, 'Y', '2014-10-14 20:39:05'),
(3400, 41, 0x476572656e63696172206573736520746f726e65696f, 'Y', '2014-10-14 20:39:05'),
(3401, 41, 0x4d75646172207369747561, 'Y', '2014-10-14 20:39:05'),
(3402, 41, 0x45646974617220746f726e65696f, 'Y', '2014-10-14 20:39:05'),
(3403, 41, 0x41646963696f6e6172206e6f74, 'Y', '2014-10-14 20:39:05'),
(3404, 41, 0x4d6f7374726172206e6f74, 'Y', '2014-10-14 20:39:05'),
(3405, 41, 0x4d6f73747261722064697265746f72657320646f20746f726e65696f, 'Y', '2014-10-14 20:39:05'),
(3408, 41, 0x456469746172207061727469636970616e746573, 'Y', '2014-10-14 20:39:05'),
(3409, 41, 0x4d6f7374726172206d65757320636f6e7461746f73, 'Y', '2014-10-14 20:39:05'),
(3410, 41, 0x4d6f7374726172207061727469636970616e74657320646f20746f726e65696f, 'Y', '2014-10-14 20:39:05'),
(3411, 41, 0x5061727469636970616e74657320646f20746f726e65696f, 'Y', '2014-10-14 20:39:05'),
(3413, 41, 0x4d6575206772, 'Y', '2014-10-14 20:39:05'),
(3414, 41, 0x4d657573206a6f676f73206176616c6961646f73, 'Y', '2014-10-14 20:39:05'),
(3415, 41, 0x4d657573206a6f676f73207669746f72696f736f73, 'Y', '2014-10-14 20:39:05'),
(3416, 41, 0x4d657573206a6f676f73207065726469646f73, 'Y', '2014-10-14 20:39:05'),
(3417, 41, 0x4d6f7374726172206d696e686120636c6173736966696361, 'Y', '2014-10-14 20:39:05'),
(3418, 41, 0x4d6f73747261722070657266696c, 'Y', '2014-10-14 20:39:05'),
(3421, 41, 0x426f6c6574696e73206e, 'Y', '2014-10-14 20:39:05'),
(3422, 41, 0x526573756c7461646f20646120566f7461, 'Y', '2014-10-14 20:39:05'),
(3423, 41, 0x4f73206c696e6b7320707265746f7320707265636973616d20646520756d20617267756d656e746f20706172612066756e63696f6e61722c20656e74, 'Y', '2014-10-14 20:39:05'),
(3424, 41, 0x4f73206c696e6b7320707265746f7320707265636973616d2064652061636573736f207265676973747261646f2c20656e74, 'Y', '2014-10-14 20:39:05'),
(3426, 41, 0x412076657273, 'Y', '2014-10-14 20:39:05'),
(3427, 41, 0x412076657273, 'Y', '2014-10-14 20:39:05'),
(3428, 41, 0x4120636f6c65, 'Y', '2014-10-14 20:39:05'),
(3429, 41, 0x56697375616c697a61, 'Y', '2014-10-14 20:39:05'),
(3430, 41, 0x5061, 'Y', '2014-10-14 20:39:05'),
(3431, 41, 0x4573746174, 'Y', '2014-10-14 20:39:05'),
(3432, 41, 0x546f646f73206f7320757375, 'Y', '2014-10-14 20:39:05'),
(3434, 41, 0x5175616e746964616465, 'Y', '2014-10-14 20:39:05'),
(3435, 41, 0x42616e6465697261, 'Y', '2014-10-14 20:39:05'),
(3436, 41, 0x436f6e666967757261, 'Y', '2014-10-14 20:39:05'),
(3437, 41, 0x4e, 'Y', '2014-10-14 20:39:05'),
(3438, 41, 0x546f74616c, 'Y', '2014-10-14 20:39:05'),
(3439, 41, 0x5061, 'Y', '2014-10-14 20:39:05'),
(3440, 41, 0x5369747561, 'Y', '2014-10-14 20:39:05'),
(3441, 41, 0x4d656e736167656d20646f204469612028626f6c6574696e73206e, 'Y', '2014-10-14 20:39:05'),
(3442, 41, 0x4d6f737472617220746f646f73206f73202825732920626f6c6574696e73206e, 'Y', '2014-10-14 20:39:05'),
(3443, 41, 0x41636569746f75, 'Y', '2014-10-14 20:39:05'),
(3445, 41, 0x53657573206a6f676f73206d, 'Y', '2014-10-14 20:39:05'),
(3446, 41, 0x5072696f726964616465, 'Y', '2014-10-14 20:39:05'),
(3447, 41, 0x446566696e6972204f7264656d, 'Y', '2014-10-14 20:39:05'),
(3448, 41, 0x4d6f64656c6f2073616c766f21, 'Y', '2014-10-14 20:39:05'),
(3449, 41, 0x4d6f64656c6f206170616761646f21, 'Y', '2014-10-14 20:39:05'),
(3450, 41, 0x4d6f64656c6f7320287573616e646f20257320646f206d, 'Y', '2014-10-14 20:39:05'),
(3451, 41, '', 'Y', '2014-10-14 20:39:05'),
(3452, 41, 0x417061676172206d6f64656c6f, 'Y', '2014-10-14 20:39:05'),
(3453, 41, 0x53756273746974756972, 'Y', '2014-10-14 20:39:05'),
(3454, 41, 0x4e6f6d65, 'Y', '2014-10-14 20:39:05'),
(3455, 41, 0x4573636f6c686120756d206d6f64656c6f2070617261207375627374697475697220756d6120656e7472616461206578697374656e7465, 'Y', '2014-10-14 20:39:05'),
(3456, 41, 0x4e6f766f206d6f64656c6f, 'Y', '2014-10-14 20:39:05'),
(3457, 41, 0x5469706f20696e76, 'Y', '2014-10-14 20:39:05'),
(3458, 41, 0x4f73206461646f732070617261206775617264617220646f206d6f64656c6f206578636564656d206f206c696d69746520646520257320627974657320656d20257320627974657321, 'Y', '2014-10-14 20:39:05'),
(3459, 41, 0x46616c7461206f206e6f6d6520646f206d6f64656c6f21, 'Y', '2014-10-14 20:39:05'),
(3460, 41, 0x4f206e6f6d6520646f206d6f64656c6f20707265636973612073657220, 'Y', '2014-10-14 20:39:05'),
(3461, 41, 0x4f206c696d697465206d, 'Y', '2014-10-14 20:39:05'),
(3462, 41, 0x41206573636f6c6861207061726120737562737469747569, 'Y', '2014-10-14 20:39:05'),
(3464, 41, 0x417061676172206d6f64656c6f, 'Y', '2014-10-14 20:39:05'),
(3465, 41, 0x5469706f, 'Y', '2014-10-14 20:39:05'),
(3467, 41, 0x54656d2063657274657a61207175652071756572206170616761722065737365206d6f64656c6f3f, 'Y', '2014-10-14 20:39:05'),
(3472, 41, 0x4578616d696e617220757375, 'Y', '2014-10-14 20:39:05'),
(3474, 41, 0x53616c7661722044697265746f7220646520546f726e65696f, 'Y', '2014-10-14 20:39:05'),
(3476, 41, 0x546f726e65696f2073616c766f21, 'Y', '2014-10-14 20:39:05'),
(3477, 41, 0x456469746f722064652054726176617320646520546f726e65696f, 'Y', '2014-10-14 20:39:05'),
(3479, 41, 0x5369747561, 'Y', '2014-10-14 20:39:05'),
(3481, 41, 0x547261766172206e6f7461, 'Y', '2014-10-14 20:39:05'),
(3485, 41, 0x507265766572204e6f7461206465205472617661, 'Y', '2014-10-14 20:39:05'),
(3487, 41, 0x4e6f7461732064652074726176617320646520746f726e65696f, 'Y', '2014-10-14 20:39:05'),
(3491, 41, 0x4e6f74, 'Y', '2014-10-14 20:39:05'),
(3492, 41, 0x456469746f72206465204e6f74, 'Y', '2014-10-14 20:39:05'),
(3494, 41, 0x5369747561, 'Y', '2014-10-14 20:39:05'),
(3496, 41, 0x53616c766172204e6f74, 'Y', '2014-10-14 20:39:05'),
(3497, 41, 0x4e6f74, 'Y', '2014-10-14 20:39:05'),
(3506, 41, 0x45646974617220757375, 'Y', '2014-10-14 20:39:05'),
(3507, 41, 0x4d6f737472617220557375, 'Y', '2014-10-14 20:39:05'),
(3508, 41, 0x4d6f737472617220757375, 'Y', '2014-10-14 20:39:05'),
(3510, 41, 0x417669736f, 'Y', '2014-10-14 20:39:05'),
(3511, 41, 0x4578697374656d20616c67756e7320617669736f73, 'Y', '2014-10-14 20:39:05'),
(3515, 41, 0x49676e6f72617220617669736f73, 'Y', '2014-10-14 20:39:05'),
(3518, 41, 0x496e64696361646f72657320617475616973, 'Y', '2014-10-14 20:39:05'),
(3519, 41, 0x4e6f766f7320496e64696361646f726573, 'Y', '2014-10-14 20:39:05'),
(3521, 41, 0x4e, 'Y', '2014-10-14 20:39:05'),
(3523, 41, 0x436f6e766572746572204e, 'Y', '2014-10-14 20:39:05'),
(3524, 41, 0x4e, 'Y', '2014-10-14 20:39:05'),
(3537, 41, 0x41646d696e6973747261646f72, 'Y', '2014-10-14 20:39:05'),
(3547, 41, 0x496e73637269, 'Y', '2014-10-14 20:39:05'),
(3552, 41, 0x45646974617220696e73637269, 'Y', '2014-10-14 20:39:05'),
(3554, 41, 0x436f6e6669726d61, 'Y', '2014-10-14 20:39:05'),
(3557, 41, 0x53756120696e73637269, 'Y', '2014-10-14 20:39:05'),
(3566, 41, 0x284d, 'Y', '2014-10-14 20:39:05'),
(3567, 41, 0x284d, 'Y', '2014-10-14 20:39:05'),
(3569, 41, 0x4d, 'Y', '2014-10-14 20:39:05'),
(3570, 41, 0x286176616c6961646f73206f75206e, 'Y', '2014-10-14 20:39:05'),
(3571, 41, 0x286170656e6173206176616c6961646f7329, 'Y', '2014-10-14 20:39:05'),
(3573, 41, 0x507265766973, 'Y', '2014-10-14 20:39:05'),
(3579, 41, 0x4d, 'Y', '2014-10-14 20:39:05'),
(3580, 41, 0x45737065726120756d206e, 'Y', '2014-10-14 20:39:05'),
(3589, 41, 0x52656772617320646520546f726e65696f2073616c76617321, 'Y', '2014-10-14 20:39:05'),
(3590, 41, 0x456469746f722064652052656772617320646520546f726e65696f, 'Y', '2014-10-14 20:39:05'),
(3591, 41, 0x53616c7661722052656772617320646f20546f726e65696f, 'Y', '2014-10-14 20:39:05'),
(3603, 41, 0x5369747561, 'Y', '2014-10-14 20:39:05'),
(3604, 41, 0x456469746f72206465205369747561, 'Y', '2014-10-14 20:39:05'),
(3612, 41, 0x436f6e6669726d6172206d7564616e, 'Y', '2014-10-14 20:39:05'),
(3613, 41, 0x4e6f746173206465205369747561, 'Y', '2014-10-14 20:39:05'),
(3620, 41, 0x4f2041646d696e6973747261646f7220646f20546f726e65696f20706f64652066617a6572207175616c71756572206d7564616e, 'Y', '2014-10-14 20:39:05'),
(3623, 41, 0x4661736520646520646566696e69, 'Y', '2014-10-14 20:39:05'),
(3628, 41, 0x456469746f7220646520546f726e65696f73, 'Y', '2014-10-14 20:39:05'),
(3629, 41, 0x43726961646f72, 'Y', '2014-10-14 20:39:05'),
(3630, 41, 0x5469706f20646520617373697374656e7465, 'Y', '2014-10-14 20:39:05'),
(3631, 41, 0x526f6461646173, 'Y', '2014-10-14 20:39:05'),
(3633, 41, 0x54, 'Y', '2014-10-14 20:39:05'),
(3634, 41, 0x53616c76617220546f726e65696f, 'Y', '2014-10-14 20:39:05'),
(3635, 41, 0x507265766973, 'Y', '2014-10-14 20:39:05'),
(3636, 41, 0x507265766973, 'Y', '2014-10-14 20:39:05'),
(3639, 41, 0x4573636f706f20646520746f726e65696f20646573636f6e68656369646f, 'Y', '2014-10-14 20:39:05'),
(3643, 41, 0x446573637269, 'Y', '2014-10-14 20:39:05'),
(3649, 41, 0x41646d696e6973747261646f72206465204a6f676f20646f20546f726e65696f, 'Y', '2014-10-14 20:39:05'),
(3651, 41, 0x4a6f6761646f722064617320707265746173, 'Y', '2014-10-14 20:39:05'),
(3652, 41, 0x4a6f6761646f7220646173206272616e636173, 'Y', '2014-10-14 20:39:05'),
(3658, 41, 0x5465726d696e6172204a6f676f20646f20546f726e65696f, 'Y', '2014-10-14 20:39:05'),
(3660, 41, 0x436f6c6f63617220726573756c7461646f20646f206a6f676f, 'Y', '2014-10-14 20:39:05'),
(3661, 41, 0x56657220726573756c7461646f20646f206a6f676f, 'Y', '2014-10-14 20:39:05'),
(3662, 41, 0x76656e63657520706f72, 'Y', '2014-10-14 20:39:05'),
(3668, 41, 0x41646963696f6e61722074656d706f2070617261206a6f676f20646f20746f726e65696f, 'Y', '2014-10-14 20:39:05'),
(3669, 41, 0x41646963696f6e61722074656d706f2070617261, 'Y', '2014-10-14 20:39:05'),
(3671, 41, 0x61646963696f6e61646f28732920616f2074656d706f2e, 'Y', '2014-10-14 20:39:05'),
(3673, 41, 0x456469, 'Y', '2014-10-14 20:39:05'),
(3674, 41, 0x3120726f64616461, 'Y', '2014-10-14 20:39:05'),
(3685, 41, 0x447261676f6e, 'Y', '2014-10-14 20:39:05'),
(3686, 41, 0x50, 'Y', '2014-10-14 20:39:05'),
(3687, 41, 0x5072697661646f, 'Y', '2014-10-14 20:39:05'),
(3688, 41, '', 'Y', '2014-10-14 20:39:05'),
(3689, 41, 0x4c696761, 'Y', '2014-10-14 20:39:05'),
(3690, 41, 0x43616d70656f6e61746f20444753, 'Y', '2014-10-14 20:39:05'),
(3691, 41, 0x43616d70656f6e61746f2050, 'Y', '2014-10-14 20:39:05'),
(3692, 41, 0x43616d70656f6e61746f205072697661646f, 'Y', '2014-10-14 20:39:05'),
(3693, 41, 0x4c69676120444753, 'Y', '2014-10-14 20:39:05'),
(3694, 41, 0x41646d696e2e, 'Y', '2014-10-14 20:39:05'),
(3695, 41, 0x436f6d65, 'Y', '2014-10-14 20:39:05'),
(3696, 41, 0x496e736372657665722d7365, 'Y', '2014-10-14 20:39:05'),
(3697, 41, 0x446566696e696e646f, 'Y', '2014-10-14 20:39:05'),
(3698, 41, 0x53656e646f2064697370757461646f, 'Y', '2014-10-14 20:39:05'),
(3699, 41, 0x5465726d696e61646f, 'Y', '2014-10-14 20:39:05'),
(3700, 41, 0x4170616761646f, 'Y', '2014-10-14 20:39:05'),
(3701, 41, 0x54726176612d41646d696e, 'Y', '2014-10-14 20:39:05'),
(3702, 41, 0x54726176612d64652d526567697374726f73, 'Y', '2014-10-14 20:39:05'),
(3704, 41, 0x54726176612d646f2d43726f6e, 'Y', '2014-10-14 20:39:05'),
(3705, 41, 0x54726176612d64652d46656368616d656e746f, 'Y', '2014-10-14 20:39:05'),
(3716, 41, 0x46696d206465204a6f676f, 'Y', '2014-10-14 20:39:05'),
(3717, 41, 0x41646963696f6e61722054656d706f, 'Y', '2014-10-14 20:39:05'),
(3718, 41, 0x436f6d65, 'Y', '2014-10-14 20:39:05'),
(3719, 41, 0x4a6f676172, 'Y', '2014-10-14 20:39:05'),
(3720, 41, 0x506c61636172, 'Y', '2014-10-14 20:39:05'),
(3721, 41, 0x45737065726172, 'Y', '2014-10-14 20:39:05'),
(3722, 41, 0x5465726d696e61646f, 'Y', '2014-10-14 20:39:05'),
(3724, 41, 0x506f7369, 'Y', '2014-10-14 20:39:05'),
(3736, 41, 0x5065737175697361202573206465202573, 'Y', '2014-10-14 20:39:05'),
(3757, 41, 0x757375, 'Y', '2014-10-14 20:39:05'),
(3798, 41, 0x53, 'Y', '2014-10-14 20:39:05'),
(3804, 41, 0x656d204a69676f, 'Y', '2014-10-14 20:39:05'),
(3807, 41, 0x31206d, 'Y', '2014-10-14 20:39:05'),
(3808, 41, 0x2573206d65736573, 'Y', '2014-10-14 20:39:05'),
(3825, 41, 0x4c696d69746573, 'Y', '2014-10-14 20:39:05'),
(3838, 41, 0x4e6f766f, 'Y', '2014-10-14 20:39:05'),
(3839, 41, 0x4d6f7374726172, 'Y', '2014-10-14 20:39:05'),
(3840, 41, 0x4172717569766172, 'Y', '2014-10-14 20:39:05'),
(3841, 41, 0x417061676172, 'Y', '2014-10-14 20:39:05'),
(3842, 41, 0x4f63756c746f, 'Y', '2014-10-14 20:39:05'),
(3843, 41, 0x5072697661646f, 'Y', '2014-10-14 20:39:05'),
(3849, 41, 0x566f63, 'Y', '2014-10-14 20:39:05'),
(3851, 41, 0x566f63, 'Y', '2014-10-14 20:39:05'),
(3853, 41, 0x436f6e76696461646f, 'Y', '2014-10-14 20:39:05'),
(3854, 41, 0x436f6e6669726d61722d636f6e76697465, 'Y', '2014-10-14 20:39:05'),
(3855, 41, '', 'Y', '2014-10-14 20:39:05'),
(3856, 41, 0x56696f6c61, 'Y', '2014-10-14 20:39:05'),
(3860, 41, 0x4d616e75616c, 'Y', '2014-10-14 20:39:05'),
(3892, 41, 0x5065737175697361202573, 'Y', '2014-10-14 20:39:05'),
(3893, 41, 0x5065737175697361202573202876617a696129, 'Y', '2014-10-14 20:39:05'),
(3895, 41, 0x436f6e742e, 'Y', '2014-10-14 20:39:05'),
(3917, 41, 0x46697861722043, 'Y', '2014-10-14 20:39:05'),
(3929, 41, 0x4d, 'Y', '2014-10-14 20:39:05'),
(3933, 41, 0x496e, 'Y', '2014-10-14 20:39:05'),
(3934, 41, 0x5065737175697361, 'Y', '2014-10-14 20:39:05'),
(3935, 41, 0x506172, 'Y', '2014-10-14 20:39:05'),
(3936, 41, 0x4a6f676172, 'Y', '2014-10-14 20:39:05'),
(3937, 41, 0x5465726d696e61646f, 'Y', '2014-10-14 20:39:05'),
(3952, 41, 0x4572726f2070617261206f20757375, 'Y', '2014-10-14 20:39:05'),
(3954, 41, 0x4f20746f726e65696f2074656d202573206a6f676f7320656d2070726f67726573736f2e20, 'Y', '2014-10-14 20:39:05'),
(3961, 41, 0x2820616c74657261646f20706f722025732029, 'Y', '2014-10-14 20:39:05'),
(3969, 41, 0x757365722d696420646573636f6e68656369646f, 'Y', '2014-10-14 20:39:05'),
(3980, 41, 0x50726570617261722043616d70656f6e61746f, 'Y', '2014-10-14 20:39:05'),
(3983, 41, 0x4f7264656e617220706f72, 'Y', '2014-10-14 20:39:05'),
(3984, 41, 0x416c696d656e7461722043616d70656f6e61746f, 'Y', '2014-10-14 20:39:05'),
(3985, 41, 0x4170616761722043616d70656f6e61746f, 'Y', '2014-10-14 20:39:05'),
(3988, 41, 0x436f6e6669726d65206f20617061676172, 'Y', '2014-10-14 20:39:05'),
(3991, 41, 0x456469746172207061727469636970616e7465, 'Y', '2014-10-14 20:39:05'),
(3992, 41, 0x41646963696f6e6172206f20757375, 'Y', '2014-10-14 20:39:05'),
(4006, 41, 0x4564697461722043616d70656f6e61746f, 'Y', '2014-10-14 20:39:05'),
(4009, 41, 0x4f20646573616669616e7465206e, 'Y', '2014-10-14 20:39:05'),
(4017, 41, 0x2876656a612074616d62, 'Y', '2014-10-14 20:39:05'),
(4019, 41, 0x4465736166696172205061727469636970616e7465, 'Y', '2014-10-14 20:39:05'),
(4023, 41, 0x4465706f697320646120636f6e6669726d61, 'Y', '2014-10-14 20:39:05'),
(4028, 41, 0x6c696d706f207061726120736572206465736174697661646f, 'Y', '2014-10-14 20:39:05'),
(4036, 41, 0x496e64696361646f722064652066696d206465206a6f676f, 'Y', '2014-10-14 20:39:05'),
(4046, 41, 0x557365206f2076616c6f72202230222070617261206465736162696c697461722066756e63696f6e616c69646164657321, 'Y', '2014-10-14 20:39:05'),
(4049, 41, 0x507265766973, 'Y', '2014-10-14 20:39:05'),
(4073, 41, 0x496e662e20646520757375, 'Y', '2014-10-14 20:39:05'),
(4074, 41, 0x496e, 'Y', '2014-10-14 20:39:05'),
(4083, 41, 0x446574616c686573206465204e, 'Y', '2014-10-14 20:39:05'),
(4989, 3, 0x436867, 'Y', '2015-01-11 12:19:25'),
(4103, 41, 0x41646d696e2e2043616d70656f6e61746f, 'Y', '2014-10-14 20:39:05'),
(4109, 41, 0x45737365206171756920, 'Y', '2014-10-14 20:39:05'),
(4123, 41, 0x5b546f726e65696f202325645d, 'Y', '2014-10-14 20:39:05'),
(4133, 41, 0x4e6f74, 'Y', '2014-10-14 20:39:05'),
(4134, 41, 0x4172717569766f206465206e6f74, 'Y', '2014-10-14 20:39:05'),
(4180, 41, 0x4d65757320746f726e65696f7320636f6d6f207061727469636970616e7465, 'Y', '2014-10-14 20:39:05'),
(4181, 41, 0x4d65757320746f726e65696f7320636f6d6f2064697265746f72, 'Y', '2014-10-14 20:39:05'),
(4183, 41, 0x44697265746f7220646520546f726e65696f, 'Y', '2014-10-14 20:39:05'),
(4184, 41, 0x537561732046756e, 'Y', '2014-10-14 20:39:05'),
(4185, 41, 0x45646974617220747261766173, 'Y', '2014-10-14 20:39:05'),
(4206, 41, 0x4d6f737472617220746f646f73206f73206a6f676f7320656d2070726f67726573736f20646f20746f726e65696f, 'Y', '2014-10-14 20:39:05'),
(4209, 41, 0x45646974617220726f6461646173, 'Y', '2014-10-14 20:39:05'),
(4211, 41, 0x446566696e697220706573717569736173, 'Y', '2014-10-14 20:39:05'),
(4212, 41, 0x437269617220706573717569736173, 'Y', '2014-10-14 20:39:05'),
(4213, 41, 0x45646974617220706573717569736173, 'Y', '2014-10-14 20:39:05'),
(4214, 41, 0x56657220706573717569736173, 'Y', '2014-10-14 20:39:05'),
(4218, 41, 0x456469746172207061726573206465206a6f676f73, 'Y', '2014-10-14 20:39:05'),
(4222, 41, 0x436f6c6f71756520494420646f204a6f676f, 'Y', '2014-10-14 20:39:05'),
(4227, 41, 0x436f6e766974652061636569746f21, 'Y', '2014-10-14 20:39:05'),
(4231, 41, 0x4163656974617220636f6e76697465, 'Y', '2014-10-14 20:39:05'),
(4233, 41, 0x496e73637269, 'Y', '2014-10-14 20:39:05'),
(4253, 41, 0x507265706172617220506573717569736173, 'Y', '2014-10-14 20:39:05');
INSERT INTO `Translations` (`Original_ID`, `Language_ID`, `Text`, `Translated`, `Updated`) VALUES
(4256, 41, 0x41706167617220506573717569736173, 'Y', '2014-10-14 20:39:05'),
(4258, 41, 0x436f6e6669726d65206f20617061676172, 'Y', '2014-10-14 20:39:05'),
(4262, 41, 0x456e7669617220706573717569736173, 'Y', '2014-10-14 20:39:05'),
(4276, 41, 0x53616c76617220706573717569736173, 'Y', '2014-10-14 20:39:05'),
(4280, 41, 0x537567657374, 'Y', '2014-10-14 20:39:05'),
(4313, 41, 0x4372696172204a6f676f7320646f20546f726e65696f, 'Y', '2014-10-14 20:39:05'),
(4319, 41, 0x526573756d6f2064617320506573717569736173, 'Y', '2014-10-14 20:39:05'),
(4327, 41, 0x53656c65, 'Y', '2014-10-14 20:39:05'),
(4329, 41, 0x4d6f737472617220706573717569736173, 'Y', '2014-10-14 20:39:05'),
(4330, 41, 0x566572696669636172, 'Y', '2014-10-14 20:39:05'),
(4331, 41, 0x4578616d696e617220506573717569736173, 'Y', '2014-10-14 20:39:05'),
(4333, 41, 0x4564697461722041, 'Y', '2014-10-14 20:39:05'),
(4337, 41, 0x5265646566696e6972205065737175697361, 'Y', '2014-10-14 20:39:05'),
(4340, 41, 0x5065737175697361732053656c6563696f6e61646173, 'Y', '2014-10-14 20:39:05'),
(4345, 41, 0x417472696275697220, 'Y', '2014-10-14 20:39:05'),
(4348, 41, 0x69642d64652d757375, 'Y', '2014-10-14 20:39:05'),
(4361, 41, 0x4578656375746172, 'Y', '2014-10-14 20:39:05'),
(4367, 41, 0x6f75, 'Y', '2014-10-14 20:39:05'),
(4371, 41, 0x526573756c7461646f732064612041, 'Y', '2014-10-14 20:39:05'),
(4379, 41, 0x436f6e6669726d65206120616469, 'Y', '2014-10-14 20:39:05'),
(4433, 41, 0x546f726e65696f20232573, 'Y', '2014-10-14 20:39:05'),
(4434, 41, 0x2d20546f726e65696f20232573202d20496e666f726d61, 'Y', '2014-10-14 20:39:05'),
(4435, 41, 0x457373612070, 'Y', '2014-10-14 20:39:05'),
(4436, 41, 0x4578697374656d20616c67756d617320, 'Y', '2014-10-14 20:39:05'),
(4437, 41, 0x446573637269, 'Y', '2014-10-14 20:39:05'),
(4438, 41, 0x50, 'Y', '2014-10-14 20:39:05'),
(4441, 41, 0x4a6f676f7320646f20546f726e65696f, 'Y', '2014-10-14 20:39:05'),
(4443, 41, 0x5175616e646f20766f63, 'Y', '2014-10-14 20:39:05'),
(4444, 41, 0x417475616c697a617220696e666f726d61, 'Y', '2014-10-14 20:39:05'),
(4445, 41, 0x4e6f74, 'Y', '2014-10-14 20:39:05'),
(4448, 41, 0x54726176617320646520546f726e65696f, 'Y', '2014-10-14 20:39:05'),
(4449, 41, 0x526f64616461, 'Y', '2014-10-14 20:39:05'),
(6244, 3, 0x4c617374206163632e, 'Y', '2015-01-11 12:17:17'),
(4486, 41, 0x4f20757375, 'Y', '2014-10-14 20:39:05'),
(4487, 41, 0x4f20757375, 'Y', '2014-10-14 20:39:05'),
(4489, 41, 0x546f726e65696f2063726961646f21, 'Y', '2014-10-14 20:39:05'),
(4490, 41, 0x417373697374656e746520646520546f726e65696f73, 'Y', '2014-10-14 20:39:05'),
(4492, 41, 0x437269617220546f726e65696f, 'Y', '2014-10-14 20:39:05'),
(4493, 41, 0x4675736f20686f72, 'Y', '2014-10-14 20:39:05'),
(4494, 41, 0x486f72, 'Y', '2014-10-14 20:39:05'),
(4496, 41, '', 'Y', '2014-10-14 20:39:05'),
(4497, 41, 0x6e, 'Y', '2014-10-14 20:39:05'),
(4498, 41, 0x25732064696173, 'Y', '2014-10-14 20:39:05'),
(4499, 41, 0x4a6f676f73207065726469646f7320706f722074656d706f, 'Y', '2014-10-14 20:39:05'),
(4500, 41, 0x4a6f676f732d6d, 'Y', '2014-10-14 20:39:05'),
(4501, 41, 0x25732028617469766f73292c202573202870726120636f6d65, 'Y', '2014-10-14 20:39:05'),
(4502, 41, 0x466f746f20646520757375, 'Y', '2014-10-14 20:39:05'),
(4503, 41, 0x466f746f20646520757375, 'Y', '2014-10-14 20:39:05'),
(4505, 41, 0x56657220426f6c6574696d, 'Y', '2014-10-14 20:39:05'),
(4508, 41, 0x466f6e7465, 'Y', '2014-10-14 20:39:05'),
(4511, 41, 0x566f746f2073616c766f21, 'Y', '2014-10-14 20:39:05'),
(4512, 41, 0x56657220506573717569736120232564, 'Y', '2014-10-14 20:39:05'),
(4513, 41, 0x45646974207065737175697361, 'Y', '2014-10-14 20:39:05'),
(4518, 41, 0x436f6e76656e63696f6e616c, 'Y', '2014-10-14 20:39:05'),
(4519, 41, 0x5072, 'Y', '2014-10-14 20:39:05'),
(4520, 41, 0x4e6967697269, 'Y', '2014-10-14 20:39:05'),
(4521, 41, 0x4a6f676f206475706c6f, 'Y', '2014-10-14 20:39:05'),
(4522, 41, 0x507265746173, 'Y', '2014-10-14 20:39:05'),
(4523, 41, 0x4272616e636173, 'Y', '2014-10-14 20:39:05'),
(4524, 41, 0x4d616e75616c, 'Y', '2014-10-14 20:39:05'),
(4525, 41, 0x4c65696c, 'Y', '2014-10-14 20:39:05'),
(4526, 41, 0x4c65696c, 'Y', '2014-10-14 20:39:05'),
(4527, 41, 0x566f63, 'Y', '2014-10-14 20:39:05'),
(4528, 41, 0x4575206573636f6c686f2c20766f63, 'Y', '2014-10-14 20:39:05'),
(4529, 41, 0x4475706c6f, 'Y', '2014-10-14 20:39:05'),
(4530, 41, 0x4d616e75616c, 'Y', '2014-10-14 20:39:05'),
(4531, 41, 0x436f722066697861, 'Y', '2014-10-14 20:39:05'),
(4532, 41, 0x4b6f6d69204a7573746f, 'Y', '2014-10-14 20:39:05'),
(4533, 41, '', 'Y', '2014-10-14 20:39:05'),
(4534, 41, 0x4f70, 'Y', '2014-10-14 20:39:05'),
(4535, 41, 0x526573747269, 'Y', '2014-10-14 20:39:05'),
(4536, 41, 0x25732056616e742e202573204b2573, 'Y', '2014-10-14 20:39:05'),
(4537, 41, 0x257320457175696c2e204b2573, 'Y', '2014-10-14 20:39:05'),
(4538, 41, 0x4e65676f63696172, 'Y', '2014-10-14 20:39:05'),
(4539, 41, 0x2856616e746167656d206c6976726529, 'Y', '2014-10-14 20:39:05'),
(4545, 41, 0x4f70, 'Y', '2014-10-14 20:39:05'),
(4546, 41, 0x4120636f6c756e612027436f6e666967757261, 'Y', '2014-10-14 20:39:05'),
(4547, 41, 0x696e64696361646f7220646520636f6c6f6361, 'Y', '2014-10-14 20:39:05'),
(4548, 41, 0x556d206a6f676f20, 'Y', '2014-10-14 20:39:05'),
(4549, 41, 0x4f627365727661, 'Y', '2014-10-14 20:39:05'),
(4552, 41, 0x436f6e76697465206a, 'Y', '2014-10-14 20:39:05'),
(4553, 41, 0x4d616e75616c, 'Y', '2014-10-14 20:39:05'),
(4554, 41, 0x4e6967697269, 'Y', '2014-10-14 20:39:05'),
(4555, 41, 0x4e69676972692028736f7274656172206272616e636173206f752070726574617329, 'Y', '2014-10-14 20:39:05'),
(4556, 41, 0x502b42, 'Y', '2014-10-14 20:39:05'),
(4557, 41, 0x566f63, 'Y', '2014-10-14 20:39:05'),
(4558, 41, 0x50, 'Y', '2014-10-14 20:39:05'),
(4559, 41, 0x536f7520617320707265746173, 'Y', '2014-10-14 20:39:05'),
(4560, 41, 0x42, 'Y', '2014-10-14 20:39:05'),
(4561, 41, 0x566f63, 'Y', '2014-10-14 20:39:05'),
(4562, 41, 0x536f75206173206272616e636173, 'Y', '2014-10-14 20:39:05'),
(4563, 41, 0x566f63, 'Y', '2014-10-14 20:39:05'),
(4564, 41, 0x566f63, 'Y', '2014-10-14 20:39:05'),
(4565, 41, 0x566f63, 'Y', '2014-10-14 20:39:05'),
(4566, 41, '', 'Y', '2014-10-14 20:39:05'),
(4567, 41, 0x4e6f74, 'Y', '2014-10-14 20:39:05'),
(4568, 41, '', 'Y', '2014-10-14 20:39:05'),
(4569, 41, 0x4e6f74, 'Y', '2014-10-14 20:39:05'),
(4570, 41, 0x496e74726f6475, 'Y', '2014-10-14 20:39:05'),
(4571, 41, 0x566f63, 'Y', '2014-10-14 20:39:05'),
(4572, 41, '', 'Y', '2014-10-14 20:39:05'),
(4574, 41, 0x6b69736569646f, 'Y', '2014-10-14 20:39:05'),
(4575, 41, '', 'Y', '2014-10-14 20:39:05'),
(4576, 41, '', 'Y', '2014-10-14 20:39:05'),
(4577, 41, '', 'Y', '2014-10-14 20:39:05'),
(4578, 41, 0x4f4753, 'Y', '2014-10-14 20:39:05'),
(4579, 41, 0x4b4753, 'Y', '2014-10-14 20:39:05'),
(4580, 41, 0x494753, 'Y', '2014-10-14 20:39:05'),
(4581, 41, 0x506f72206661766f722074656e68612063657274657a6120717565206120666f746f20656e7669616461206e, 'Y', '2014-10-14 20:39:05'),
(4583, 41, 0x52656c, 'Y', '2014-10-14 20:39:05'),
(4584, 41, 0x4e65676f636961, 'Y', '2014-10-14 20:39:05'),
(4585, 41, 0x25732064652066, 'Y', '2014-10-14 20:39:05'),
(4586, 41, 0x4f2063, 'Y', '2014-10-14 20:39:05'),
(4587, 41, 0x2573206c65697475726173, 'Y', '2014-10-14 20:39:05'),
(4588, 41, 0x4a6f676f7320656d2070726f67726573736f20646f20757375, 'Y', '2014-10-14 20:39:05'),
(4589, 41, 0x4a6f676f73207465726d696e61646f7320646f20757375, 'Y', '2014-10-14 20:39:05'),
(4590, 41, 0x6c6174696d, 'Y', '2014-10-14 20:39:05'),
(4591, 41, 0x556d206675736f20686f72, 'Y', '2014-10-14 20:39:05'),
(4592, 41, 0x46616c746120756d20656e64657265, 'Y', '2014-10-14 20:39:05'),
(4593, 41, 0x4f206e, 'Y', '2014-10-14 20:39:05'),
(4594, 41, 0x4f206e, 'Y', '2014-10-14 20:39:05'),
(4595, 41, 0x556d2074656d61202822736b696e222920646573636f6e68656369646f205b25735d20666f69206573636f6c6869646f2e, 'Y', '2014-10-14 20:39:05'),
(4596, 41, 0x54616d616e686f20696e76, 'Y', '2014-10-14 20:39:05'),
(4597, 41, 0x436f7220696e76, 'Y', '2014-10-14 20:39:05'),
(4598, 41, 0x56616c6f7220696e76, 'Y', '2014-10-14 20:39:05'),
(4599, 41, 0x4f2074616d616e686f20646520616e6f7461, 'Y', '2014-10-14 20:39:05'),
(4600, 41, 0x4120616c7475726120646520616e6f7461, 'Y', '2014-10-14 20:39:05'),
(4601, 41, 0x4120616c7475726120646520616e6f7461, 'Y', '2014-10-14 20:39:05'),
(4602, 41, 0x41206c61726775726120646520616e6f7461, 'Y', '2014-10-14 20:39:05'),
(4603, 41, 0x41206c61726775726120646520616e6f7461, 'Y', '2014-10-14 20:39:05'),
(4604, 41, 0x412061746976696461646520646120636f6e746120222573222061756d656e746f75206d7569746f206520676173746f75206e6f7373612062616e64612065206e6f73736f207365727669646f722e0d0a506f72206661766f722c20636f7272696a61206573736520636f6d706f7274616d656e746f2e0d0a4573746120636f6e746120657374, 'Y', '2014-10-14 20:39:05'),
(4605, 41, 0x557375, 'Y', '2014-10-14 20:39:05'),
(4606, 41, 0x45646974617220426f6c6574696d, 'Y', '2014-10-14 20:39:05'),
(4607, 41, 0x4e6f766f20426f6c6574696d, 'Y', '2014-10-14 20:39:05'),
(4608, 41, 0x546f6461732061732066756e63696f6e616c696461646573, 'Y', '2014-10-14 20:39:05'),
(3014, 36, 0x64c3a16e, 'Y', '2015-09-19 12:51:39'),
(4612, 41, 0x546f646f73206f7320746f726e65696f73, 'Y', '2014-10-14 20:39:05'),
(4613, 41, 0x53656d204b6f6d69204a7573746f, 'Y', '2014-10-14 20:39:05'),
(4615, 41, 0x4c696d69746573206465206e, 'Y', '2014-10-14 20:39:05'),
(4617, 41, 0x4469766572736f73, 'Y', '2014-10-14 20:39:05'),
(4618, 41, 0x45737175656369206d696e68612073656e68612e204f2071756520706f73736f2066617a65723f, 'Y', '2014-10-14 20:39:05'),
(4619, 41, 0x496e74726f6475, 'Y', '2014-10-14 20:39:05'),
(4621, 41, 0x6e6f7661, 'Y', '2014-10-14 20:39:05'),
(4622, 41, 0x726573706f6e646572, 'Y', '2014-10-14 20:39:05'),
(4623, 41, 0x6f63756c746172, 'Y', '2014-10-14 20:39:05'),
(4624, 41, 0x6d6f7374726172, 'Y', '2014-10-14 20:39:05'),
(4625, 41, 0x5369747561, 'Y', '2014-10-14 20:39:05'),
(4631, 41, 0x4f2071756520, 'Y', '2014-10-14 20:39:05'),
(4633, 41, 0x4f2071756520, 'Y', '2014-10-14 20:39:05'),
(4648, 41, 0x74616d616e686f20646573636f6e68656369646f, 'Y', '2014-10-14 20:39:05'),
(4650, 41, 0x4a6f6761646f72204569646f476f, 'Y', '2014-10-14 20:39:05'),
(4651, 41, 0x4d696e686120706f6e747561, 'Y', '2014-10-14 20:39:05'),
(4652, 41, 0x73656d20766f746f73, 'Y', '2014-10-14 20:39:05'),
(4653, 41, 0x4c6973746120646520757375, 'Y', '2014-10-14 20:39:05'),
(4654, 41, 0x417669736f206461204c6973746120646520557375, 'Y', '2014-10-14 20:39:05'),
(4655, 41, 0x49676e6f72617220417669736f206461204c6973746120646520557375, 'Y', '2014-10-14 20:39:05'),
(4656, 41, 0x706f6465207365722076617a696f, 'Y', '2014-10-14 20:39:05'),
(4657, 41, 0x4f20757375, 'Y', '2014-10-14 20:39:05'),
(4658, 41, 0x557375, 'Y', '2014-10-14 20:39:05'),
(4659, 41, 0x557375, 'Y', '2014-10-14 20:39:05'),
(4660, 41, 0x46616c746120612064617461206465207075626c696361, 'Y', '2014-10-14 20:39:05'),
(4661, 41, 0x43617465676f726961, 'Y', '2014-10-14 20:39:05'),
(4662, 41, 0x5369747561, 'Y', '2014-10-14 20:39:05'),
(4663, 41, 0x4d, 'Y', '2014-10-14 20:39:05'),
(4664, 41, 0x4d, 'Y', '2014-10-14 20:39:05'),
(4665, 41, 0x506f6e746f732d6d, 'Y', '2014-10-14 20:39:05'),
(4666, 41, 0x506f6e746f732d6d, 'Y', '2014-10-14 20:39:05'),
(4667, 41, 0x4f70, 'Y', '2014-10-14 20:39:05'),
(4668, 41, 0x5469706f20646520616c766f, 'Y', '2014-10-14 20:39:05'),
(4669, 41, 0x4372696172206e6f766120666f726d612028636f6d206d696e696174757261292c20706f72717565205b25735d20, 'Y', '2014-10-14 20:39:05'),
(4670, 41, 0x466f726d612073616c766121, 'Y', '2014-10-14 20:39:05'),
(4671, 41, 0x494420646120466f726d61, 'Y', '2014-10-14 20:39:05'),
(4672, 41, 0x4e6f6d6520646120466f726d61, 'Y', '2014-10-14 20:39:05'),
(4673, 41, 0x466f726d612050, 'Y', '2014-10-14 20:39:05'),
(4674, 41, 0x4f627365727661, 'Y', '2014-10-14 20:39:05'),
(4675, 41, 0x53616c76617220466f726d61, 'Y', '2014-10-14 20:39:05'),
(4676, 41, 0x45646974617220466f726d61, 'Y', '2014-10-14 20:39:05'),
(4677, 41, 0x56697375616c697a617220466f726d61, 'Y', '2014-10-14 20:39:05'),
(4678, 41, 0x4d6f7374726172206e6f20456469746f7220646520476f62616e, 'Y', '2014-10-14 20:39:05'),
(4679, 41, 0x4f206e6f6d6520646120666f726d6120657374, 'Y', '2014-10-14 20:39:05'),
(4680, 41, 0x4f206e6f6d6520646120666f726d6120, 'Y', '2014-10-14 20:39:05'),
(4681, 41, 0x4f206e6f6d6520646520666f726d61205b25735d206a, 'Y', '2014-10-14 20:39:05'),
(4682, 41, 0x46616c7461206f2074616d616e686f, 'Y', '2014-10-14 20:39:05'),
(4683, 41, 0x54616d616e686f20696e76, 'Y', '2014-10-14 20:39:05'),
(4684, 41, 0x4461646f7320646120666f726d6120636f6e74, 'Y', '2014-10-14 20:39:05'),
(4685, 41, 0x4461646f7320646120666f726d6120636f6e74, 'Y', '2014-10-14 20:39:05'),
(4686, 41, 0x46616c7461206461646f7320646120666f726d61, 'Y', '2014-10-14 20:39:05'),
(4687, 41, 0x436f72206461206a6f67616461, 'Y', '2014-10-14 20:39:05'),
(4688, 41, 0x50616c6176726173204275736361646173, 'Y', '2014-10-14 20:39:05'),
(4689, 41, 0x6e6f206964696f6d613a202573, 'Y', '2014-10-14 20:39:05'),
(4690, 41, 0x416e74696761207072696d6569726f, 'Y', '2014-10-14 20:39:05'),
(4691, 41, 0x4e6f7661207072696d6569726f, 'Y', '2014-10-14 20:39:05'),
(4692, 41, 0x56697375616c697a61, 'Y', '2014-10-14 20:39:05'),
(4693, 41, 0x4e756d2e, 'Y', '2014-10-14 20:39:05'),
(4695, 41, 0x46756e, 'Y', '2014-10-14 20:39:05'),
(4696, 41, 0x446573616669616e7465, 'Y', '2014-10-14 20:39:05'),
(4697, 41, 0x446566656e736f72, 'Y', '2014-10-14 20:39:05'),
(4698, 41, 0x506c6163617220646f204a6f676f206e6f20546f726e65696f, 'Y', '2014-10-14 20:39:05'),
(4699, 41, 0x496e64696361646f726573206465204a6f676f20646520546f726e65696f, 'Y', '2014-10-14 20:39:05'),
(4700, 41, 0x4a6f676f2d64652d666f726d61, 'Y', '2014-10-14 20:39:05'),
(4701, 41, 0x52656c, 'Y', '2014-10-14 20:39:05'),
(4702, 41, 0x496e64696361646f726573, 'Y', '2014-10-14 20:39:05'),
(4704, 41, 0x5469706f2064652076616e746167656d, 'Y', '2014-10-14 20:39:05'),
(4705, 41, 0x416a7573746172204b6f6d69, 'Y', '2014-10-14 20:39:05'),
(4706, 41, 0x526576616e636865, 'Y', '2014-10-14 20:39:05'),
(4707, 41, 0x466f726d61, 'Y', '2014-10-14 20:39:05'),
(4708, 41, 0x496e666f726d61, 'Y', '2014-10-14 20:39:05'),
(4709, 41, 0x4944206465206a6f676f2d64652d666f726d61, 'Y', '2014-10-14 20:39:05'),
(4710, 41, 0x4a6f676f20646520466f726d61, 'Y', '2014-10-14 20:39:05'),
(4711, 41, 0x4175746f72, 'Y', '2014-10-14 20:39:05'),
(4712, 41, 0x5075626c696361646f, 'Y', '2014-10-14 20:39:05'),
(4713, 41, 0x56616c6964616465, 'Y', '2014-10-14 20:39:05'),
(4714, 41, 0x417475616c697a61646f, 'Y', '2014-10-14 20:39:05'),
(4715, 41, 0x546f64617320617320666f726d6173, 'Y', '2014-10-14 20:39:05'),
(4716, 41, 0x4d696e68617320666f726d6173, 'Y', '2014-10-14 20:39:05'),
(4717, 41, 0x4e6f766120666f726d612028456469746f7220646520476f62616e29, 'Y', '2014-10-14 20:39:05'),
(4718, 41, 0x54, 'Y', '2014-10-14 20:39:05'),
(4719, 41, 0x476572656e74652061646d696e69737472617469766f, 'Y', '2014-10-14 20:39:05'),
(4720, 41, 0x50, 'Y', '2014-10-14 20:39:05'),
(4721, 41, 0x4a6f676f2026204e, 'Y', '2014-10-14 20:39:05'),
(4722, 41, 0x566f746f2d706172612d4d656c686f72696173, 'Y', '2014-10-14 20:39:05'),
(4723, 41, 0x5065737175697361, 'Y', '2014-10-14 20:39:05'),
(4724, 41, '', 'Y', '2014-10-14 20:39:05'),
(4725, 41, 0x4564697461722070726f70726965646164657320646120696e73637269, 'Y', '2014-10-14 20:39:05'),
(4726, 41, 0x45646974617220726567726173, 'Y', '2014-10-14 20:39:05'),
(4727, 41, 0x496e73637269, 'Y', '2014-10-14 20:39:05'),
(4728, 41, 0x4e6f766f206a6f676f2d64652d666f726d61, 'Y', '2014-10-14 20:39:05'),
(4729, 41, 0x6d7564616e, 'Y', '2014-10-14 20:39:05'),
(4731, 41, 0x53616c76617220747261766173, 'Y', '2014-10-14 20:39:05'),
(4737, 41, 0x496e73637269, 'Y', '2014-10-14 20:39:05'),
(4739, 41, 0x5369747561, 'Y', '2014-10-14 20:39:05'),
(4740, 41, 0x4e6f7661207369747561, 'Y', '2014-10-14 20:39:05'),
(4749, 41, 0x417475616c697a617220696e73637269, 'Y', '2014-10-14 20:39:05'),
(4753, 41, 0x436f6d65, 'Y', '2014-10-14 20:39:05'),
(4755, 41, 0x4f20726567697374726f20646f20757375, 'Y', '2014-10-14 20:39:05'),
(4756, 41, 0x4f20757375, 'Y', '2014-10-14 20:39:05'),
(4766, 41, 0x5061727469636970616e746573, 'Y', '2014-10-14 20:39:05'),
(2971, 25, 0x446520616669c59f6174, 'Y', '2014-12-05 11:43:49'),
(4768, 41, 0x4a6f676f732d64652d557375, 'Y', '2014-10-14 20:39:05'),
(4769, 41, 0x5469706f2064652076616e746167656d, 'Y', '2014-10-14 20:39:05'),
(4770, 41, 0x416a75737461722056616e746167656d, 'Y', '2014-10-14 20:39:05'),
(4771, 41, 0x4e6f74617320646520636f6e6669726d61, 'Y', '2014-10-14 20:39:05'),
(4775, 41, 0x526573756c7461646f20646f204a6f676f2064652043616d70656f6e61746f206d756461646f21, 'Y', '2014-10-14 20:39:05'),
(4776, 41, 0x5369747561, 'Y', '2014-10-14 20:39:05'),
(4778, 41, 0x496e666f726d61, 'Y', '2014-10-14 20:39:05'),
(4779, 41, 0x4e, 'Y', '2014-10-14 20:39:05'),
(4780, 41, 0x496e662e206465204a6f676f, 'Y', '2014-10-14 20:39:05'),
(4781, 41, 0x496e64696361646f726573206465204a6f676f, 'Y', '2014-10-14 20:39:05'),
(4783, 41, 0x566f63, 'Y', '2014-10-14 20:39:05'),
(4784, 41, 0x566f63, 'Y', '2014-10-14 20:39:05'),
(4785, 41, 0x446573697374, 'Y', '2014-10-14 20:39:05'),
(4786, 41, 0x54656d706f206573676f7461646f, 'Y', '2014-10-14 20:39:05'),
(4787, 41, 0x4e6f74617320736f627265204a69676f, 'Y', '2014-10-14 20:39:05'),
(4789, 41, 0x53616c76617220526573756c7461646f20646f204a6f676f, 'Y', '2014-10-14 20:39:05'),
(4790, 41, 0x257320646520257320726f64616461287329, 'Y', '2014-10-14 20:39:05'),
(4794, 41, 0x41646d696e2e20646520546f726e65696f, 'Y', '2014-10-14 20:39:05'),
(4803, 41, 0x417469766f, 'Y', '2014-10-14 20:39:05'),
(4804, 41, 0x4e656e68756d61, 'Y', '2014-10-14 20:39:05'),
(4805, 41, '', 'Y', '2014-10-14 20:39:05'),
(4806, 41, 0x506f7369, 'Y', '2014-10-14 20:39:05'),
(4808, 41, 0x436f6c6f6361, 'Y', '2014-10-14 20:39:05'),
(4809, 41, 0x4e, 'Y', '2014-10-14 20:39:05'),
(4810, 41, 0x4e, 'Y', '2014-10-14 20:39:05'),
(4811, 41, 0x4461746120646f20526573756c7461646f, 'Y', '2014-10-14 20:39:05'),
(4812, 41, 0x2573206a6f676f73206a, 'Y', '2014-10-14 20:39:05'),
(4818, 41, 0x52617a, 'Y', '2014-10-14 20:39:05'),
(4819, 41, 0x4d657573206a6f676f7320656d2070726f67726573736f206e6f20746f726e65696f20232573, 'Y', '2014-10-14 20:39:05'),
(4820, 41, 0x4d657573206a6f676f7320656d2070726f67726573736f20636f6d206f20616476657273, 'Y', '2014-10-14 20:39:05'),
(4824, 41, 0x4d656c686f7220636f6c6f6361, 'Y', '2014-10-14 20:39:05'),
(4854, 41, 0x53, 'Y', '2014-10-14 20:39:05'),
(4856, 41, 0x7365206f20646573616669616e74652076656e636520706f7220706f6e746f73206f7520706f7220646573697374, 'Y', '2014-10-14 20:39:05'),
(4866, 41, 0x4f20646573616669616e7465206a, 'Y', '2014-10-14 20:39:05'),
(4867, 41, 0x53656d206d7564616e, 'Y', '2014-10-14 20:39:05'),
(4878, 41, 0x416c656174, 'Y', '2014-10-14 20:39:05'),
(4887, 41, 0x456469746172206d696e686120696e73637269, 'Y', '2014-10-14 20:39:05'),
(4888, 41, 0x4e, 'Y', '2014-10-14 20:39:05'),
(4890, 41, 0x54616d616e686f2d64652d5065737175697361206d7569746f2070657175656e6f, 'Y', '2014-10-14 20:39:05'),
(4891, 41, 0x54616d616e686f2d64652d5065737175697361206d7569746f206772616e6465, 'Y', '2014-10-14 20:39:05'),
(4892, 41, 0x50657371756973612076617a6961, 'Y', '2014-10-14 20:39:05'),
(4893, 41, 0x5065737175697361, 'Y', '2014-10-14 20:39:05'),
(4894, 41, '', 'Y', '2014-10-14 20:39:05'),
(4895, 41, 0x436f6e6669726d61, 'Y', '2014-10-14 20:39:05'),
(4896, 41, 0x4e, 'Y', '2014-10-14 20:39:05'),
(4898, 41, 0x23566974, 'Y', '2014-10-14 20:39:05'),
(4899, 41, '', 'Y', '2014-10-14 20:39:05'),
(4900, 41, 0x4e, 'Y', '2014-10-14 20:39:05'),
(4901, 41, 0x456469746172, 'Y', '2014-10-14 20:39:05'),
(4902, 41, 0x646573617469766172, 'Y', '2014-10-14 20:39:05'),
(4909, 41, 0x54616d616e686f204d, 'Y', '2014-10-14 20:39:05'),
(4910, 41, 0x54616d616e686f204d, 'Y', '2014-10-14 20:39:05'),
(4911, 41, 0x4e, 'Y', '2014-10-14 20:39:05'),
(4920, 41, 0x496e64696361646f72657320646520546f726e65696f, 'Y', '2014-10-14 20:39:05'),
(4921, 41, 0x546f726e65696f205072697661646f206465202573, 'Y', '2014-10-14 20:39:05'),
(4922, 41, 0x546f726e65696f206465202573, 'Y', '2014-10-14 20:39:05'),
(4923, 41, 0x43616d70656f6e61746f206170616761646f, 'Y', '2014-10-14 20:39:05'),
(4924, 41, 0x43616d70656f6e61746f20616c696d656e7461646f21, 'Y', '2014-10-14 20:39:05'),
(4925, 41, 0x4e656e68756d61206d7564616e, 'Y', '2014-10-14 20:39:05'),
(4929, 41, 0x557375, 'Y', '2014-10-14 20:39:05'),
(4933, 41, 0x557375, 'Y', '2014-10-14 20:39:05'),
(4934, 41, 0x4a6f676f7320646f20546f726e65696f206465205b25735d, 'Y', '2014-10-14 20:39:05'),
(4941, 41, 0x4f206a6f676f20646520746f726e65696f20636f6d65, 'Y', '2014-10-14 20:39:05'),
(4942, 41, 0x506f72206661766f7220636f6e6669726d652071756520766f63, 'Y', '2014-10-14 20:39:05'),
(4943, 41, 0x436f6e6669726d6172206465736166696f, 'Y', '2014-10-14 20:39:05'),
(4944, 41, 0x4f627365727661, 'Y', '2014-10-14 20:39:05'),
(4945, 41, 0x436f6c6f6361, 'Y', '2014-10-14 20:39:05'),
(4946, 41, 0x4d616e7469646f20706f72202573, 'Y', '2014-10-14 20:39:05'),
(4952, 41, 0x4e, 'Y', '2014-10-14 20:39:05'),
(4953, 41, 0x28477275706f2023257329, 'Y', '2014-10-14 20:39:05'),
(4956, 41, 0x4f20646573616669616e74652076656e636520706f7220706f6e746f73206f7520706f7220646573697374, 'Y', '2014-10-14 20:39:05'),
(784, 36, '', 'Y', '2015-09-18 21:14:08'),
(4980, 41, 0x46696d20646f204a6f676f, 'Y', '2014-10-14 20:39:05'),
(4989, 41, 0x4d7564616e, 'Y', '2014-10-14 20:39:05'),
(4991, 41, 0x436f6d65, 'Y', '2014-10-14 20:39:05'),
(4999, 41, 0x53756120636f6c6f6361, 'Y', '2014-10-14 20:39:05'),
(5000, 41, 0x537561206d656c686f7220636f6c6f6361, 'Y', '2014-10-14 20:39:05'),
(5004, 41, 0x417475616c697a6172206e, 'Y', '2014-10-14 20:39:05'),
(5005, 41, 0x4465736166696172, 'Y', '2014-10-14 20:39:05'),
(5006, 41, 0x4a, 'Y', '2014-10-14 20:39:05'),
(5009, 41, 0x44697265746f7220646f20746f726e65696f, 'Y', '2014-10-14 20:39:05'),
(5010, 41, 0x496e64696361646f7265732064652041646d696e6973747261, 'Y', '2014-10-14 20:39:05'),
(5011, 41, 0x44697265746f7220646f20546f726e65696f, 'Y', '2014-10-14 20:39:05'),
(5013, 41, 0x566572204e6f74, 'Y', '2014-10-14 20:39:05'),
(5016, 41, 0x456469746172206e6f74, 'Y', '2014-10-14 20:39:05'),
(5017, 41, 0x494420526567, 'Y', '2014-10-14 20:39:05'),
(5018, 41, 0x526f64616461, 'Y', '2014-10-14 20:39:05'),
(5019, 41, 0x496e73637269, 'Y', '2014-10-14 20:39:05'),
(5020, 41, 0x4d656e736167656e73, 'Y', '2014-10-14 20:39:05'),
(5023, 41, 0x4573636f706f, 'Y', '2014-10-14 20:39:05'),
(5024, 41, 0x5469706f, 'Y', '2014-10-14 20:39:05'),
(5025, 41, 0x5369747561, 'Y', '2014-10-14 20:39:05'),
(5026, 41, 0x5061727469636970616e746573, 'Y', '2014-10-14 20:39:05'),
(5027, 41, 0x496e, 'Y', '2014-10-14 20:39:05'),
(5028, 41, 0x486f72612064652074, 'Y', '2014-10-14 20:39:05'),
(5030, 41, 0x636f7265732064652066756e646f, 'Y', '2014-10-14 20:39:05'),
(5033, 41, 0x546f726e65696f2073656d20726573747269, 'Y', '2014-10-14 20:39:05'),
(5035, 41, 0x76616c6f726573, 'Y', '2014-10-14 20:39:05'),
(5040, 41, 0x4e, 'Y', '2014-10-14 20:39:05'),
(5042, 41, 0x5465726d696e6f75206f20706572, 'Y', '2014-10-14 20:39:05'),
(5044, 41, 0x566f63, 'Y', '2014-10-14 20:39:05'),
(5045, 41, 0x546f726e65696f732070726976617469766f732073, 'Y', '2014-10-14 20:39:05'),
(5047, 41, 0x4e6f74617320646f20546f726e65696f, 'Y', '2014-10-14 20:39:05'),
(5048, 41, 0x5369747561, 'Y', '2014-10-14 20:39:05'),
(5049, 41, 0x457461706120646520646566696e69, 'Y', '2014-10-14 20:39:05'),
(5051, 41, 0x64697265746f722c206573636f706f, 'Y', '2014-10-14 20:39:05'),
(5055, 41, 0x4d756461206120636f6e666967757261, 'Y', '2014-10-14 20:39:05'),
(5056, 41, 0x4661736520646520696e73637269, 'Y', '2014-10-14 20:39:05'),
(5059, 41, 0x457461706120696e696369616c, 'Y', '2014-10-14 20:39:05'),
(5060, 41, 0x457461706120646f73206a6f676f73, 'Y', '2014-10-14 20:39:05'),
(5061, 41, 0x4d6f737472617220446f63756d656e7461, 'Y', '2014-10-14 20:39:05'),
(5071, 41, 0x45646974617220636f6c6f6361, 'Y', '2014-10-14 20:39:05'),
(5073, 41, 0x456469746172, 'Y', '2014-10-14 20:39:05'),
(5077, 41, 0x496e736372657665722d7365, 'Y', '2014-10-14 20:39:05'),
(5078, 41, 0x4e6f74617320646520696e73637269, 'Y', '2014-10-14 20:39:05'),
(5079, 41, 0x496e73637269, 'Y', '2014-10-14 20:39:05'),
(5084, 41, 0x5369747561, 'Y', '2014-10-14 20:39:05'),
(5085, 41, 0x766f63, 'Y', '2014-10-14 20:39:05'),
(5086, 41, 0x6120696e73637269, 'Y', '2014-10-14 20:39:05'),
(5087, 41, 0x6f20757375, 'Y', '2014-10-14 20:39:05'),
(5088, 41, 0x6f20757375, 'Y', '2014-10-14 20:39:05'),
(5092, 41, 0x4469766964697220706f72, 'Y', '2014-10-14 20:39:05'),
(5095, 41, 0x54616d616e686f2042617365206465205065737175697361, 'Y', '2014-10-14 20:39:05'),
(5100, 41, 0x4469660d0a557375, 'Y', '2014-10-14 20:39:05'),
(5104, 41, 0x54616d616e686f206461205065737175697361, 'Y', '2014-10-14 20:39:05'),
(5105, 41, 0x54616d0d0a50657371, 'Y', '2014-10-14 20:39:05'),
(5111, 41, 0x4573636f6c68612d4454, 'Y', '2014-10-14 20:39:05'),
(5118, 41, 0x4e, 'Y', '2014-10-14 20:39:05'),
(5127, 41, 0x52656d6f76657220436f6c6f6361, 'Y', '2014-10-14 20:39:05'),
(5130, 41, 0x507265656e6368657220436f6c6f6361, 'Y', '2014-10-14 20:39:05'),
(5132, 41, 0x6e61207065737175697361, 'Y', '2014-10-14 20:39:05'),
(5134, 41, 0x436f6c6f6361, 'Y', '2014-10-14 20:39:05'),
(5136, 41, 0x446566696e697220436f6c6f6361, 'Y', '2014-10-14 20:39:05'),
(5140, 41, 0x4573636f6c68657220526f64616461, 'Y', '2014-10-14 20:39:05'),
(5141, 41, 0x56697375616c697a617220526f64616461, 'Y', '2014-10-14 20:39:05'),
(5142, 41, 0x41646963696f6e617220726f64616461, 'Y', '2014-10-14 20:39:05'),
(5143, 41, 0x52656d6f76657220526f64616461, 'Y', '2014-10-14 20:39:05'),
(5146, 41, 0x436f6e746167656d204d, 'Y', '2014-10-14 20:39:05'),
(5147, 41, 0x45646974617220726f6461646173, 'Y', '2014-10-14 20:39:05'),
(5151, 41, 0x4661736520696e696369616c20646f73206a6f676f7320646f20746f726e65696f2028707265706172617220746f646f73206f73206a6f676f7320646f20746f726e65696f29, 'Y', '2014-10-14 20:39:05'),
(5154, 41, 0x526f6461646120232573, 'Y', '2014-10-14 20:39:05'),
(5158, 41, 0x45646974617220436f6c6f6361, 'Y', '2014-10-14 20:39:05'),
(5159, 41, 0x506f6e746f73, 'Y', '2014-10-14 20:39:05'),
(5161, 41, 0x6175746f, 'Y', '2014-10-14 20:39:05'),
(5163, 41, 0x6a6f676f2076656e6369646f, 'Y', '2014-10-14 20:39:05'),
(5171, 41, 0x4172717569766f206465206e6f74, 'Y', '2014-10-14 20:39:05'),
(5172, 41, 0x436f6c6f6361, 'Y', '2014-10-14 20:39:05'),
(5173, 41, 0x52656772617320646f20546f726e65696f, 'Y', '2014-10-14 20:39:05'),
(5174, 41, 0x53656d206e6f74, 'Y', '2014-10-14 20:39:05'),
(5175, 41, 0x2573206a6f676f28732920646520746f726e65696f207465726d696e61646f2873292c20656d20257320766974, 'Y', '2014-10-14 20:39:05'),
(5176, 41, 0x526573756c7461646f20646f20757375, 'Y', '2014-10-14 20:39:05'),
(5177, 41, 0x50, 'Y', '2014-10-14 20:39:05'),
(5178, 41, 0x496e73637269, 'Y', '2014-10-14 20:39:05'),
(5181, 41, 0x4a69676f207065726d697469646f, 'Y', '2014-10-14 20:39:05'),
(5182, 41, 0x4a69676f206e, 'Y', '2014-10-14 20:39:05'),
(5183, 41, 0x616a75737461646f20636f6d202573207065647261287329, 'Y', '2014-10-14 20:39:05'),
(5184, 41, 0x6c696d697461646f20636f6d206f206d, 'Y', '2014-10-14 20:39:05'),
(5185, 41, 0x6c696d697461646f20706f722025732070656472617320286d, 'Y', '2014-10-14 20:39:05'),
(5186, 41, 0x6c696d697461646f20706f722025732070656472617320286d, 'Y', '2014-10-14 20:39:05'),
(5187, 41, 0x7065647261732063616c63756c61646173, 'Y', '2014-10-14 20:39:05'),
(5188, 41, 0x257320706564726173, 'Y', '2014-10-14 20:39:05'),
(5189, 41, 0x6b6f6d692063616c63756c61646f, 'Y', '2014-10-14 20:39:05'),
(5190, 41, 0x257320706f6e746f73206465206b6f6d69, 'Y', '2014-10-14 20:39:05'),
(5191, 41, 0x2874656d706f206162736f6c75746f29, 'Y', '2014-10-14 20:39:05'),
(5192, 41, 0x4173207265677261732061626169786f2073, 'Y', '2014-10-14 20:39:05'),
(5193, 41, 0x41206661736520646520696e73637269, 'Y', '2014-10-14 20:39:05'),
(5194, 41, 0x41646d696e2e206e, 'Y', '2014-10-14 20:39:05'),
(5195, 41, 0x494420646520666f726d6120232573, 'Y', '2014-10-14 20:39:05'),
(5196, 41, 0x466f726d612070617261204a6f676f, 'Y', '2014-10-14 20:39:05'),
(5197, 41, 0x53656d20666f726d6173, 'Y', '2014-10-14 20:39:05'),
(5198, 41, 0x566f746f20417475616c, 'Y', '2014-10-14 20:39:05'),
(5199, 41, '', 'Y', '2014-10-14 20:39:05'),
(5200, 41, 0x4f626a65746f, 'Y', '2014-10-14 20:39:05'),
(5201, 41, 0x41, 'Y', '2014-10-14 20:39:05'),
(5202, 41, 0x4d656e736167656d, 'Y', '2014-10-14 20:39:05'),
(5203, 41, 0x446174612064612061, 'Y', '2014-10-14 20:39:05'),
(5204, 41, 0x41, 'Y', '2014-10-14 20:39:05'),
(5205, 41, 0x526567697374726f20646f20546f726e65696f, 'Y', '2014-10-14 20:39:05'),
(5206, 41, 0x4e6f74617320646f20526567697374726f20646f20546f726e65696f, 'Y', '2014-10-14 20:39:05'),
(5207, 41, 0x4d696d6f73, 'Y', '2014-10-14 20:39:05'),
(5208, 41, 0x416c67756e732073637269707473204772656173654d6f6e6b657920, 'Y', '2014-10-14 20:39:05'),
(5209, 41, 0x41677261646f7320447261676f6e20476f, 'Y', '2014-10-14 20:39:05'),
(5210, 41, 0x53637269707473204772656173654d6f6e6b6579, 'Y', '2014-10-14 20:39:05'),
(5211, 41, 0x446570656e64656e646f206461207375612076657273, 'Y', '2014-10-14 20:39:05'),
(5212, 41, '', 'Y', '2014-10-14 20:39:05'),
(5214, 41, 0x446566696e697220566f746f204e657574726f, 'Y', '2014-10-14 20:39:05'),
(5215, 41, 0x44697363757373, 'Y', '2014-10-14 20:39:05'),
(5216, 41, 0x44657363756c70652c20766f63, 'Y', '2014-10-14 20:39:05'),
(5217, 41, 0x546f726e65696f20646573636f6e68656369646f205b25735d, 'Y', '2014-10-14 20:39:05'),
(5218, 41, 0x4a6f676f2d6d, 'Y', '2014-10-14 20:39:05'),
(5219, 41, 0x25732065737061, 'Y', '2014-10-14 20:39:05'),
(5220, 41, 0x4d6f737472617220746f646173206173206d656e736167656e73, 'Y', '2014-10-14 20:39:05'),
(5225, 41, 0x4f206e, 'Y', '2014-10-14 20:39:05'),
(5226, 41, 0x566f63, 'Y', '2014-10-14 20:39:05'),
(5227, 41, 0x4f206e, 'Y', '2014-10-14 20:39:05'),
(5228, 41, 0x4a6f676f732d6d, 'Y', '2014-10-14 20:39:05'),
(5229, 41, 0x4e6f766f, 'Y', '2014-10-14 20:39:05'),
(5236, 41, 0x4f207175652073, 'Y', '2014-10-14 20:39:05'),
(5239, 41, 0x496d6167656e7320646f20746162756c6569726f, 'Y', '2014-10-14 20:39:05'),
(5245, 41, '', 'Y', '2014-10-14 20:39:05'),
(5247, 41, '', 'Y', '2014-10-14 20:39:05'),
(5249, 41, '', 'Y', '2014-10-14 20:39:05'),
(5251, 41, '', 'Y', '2014-10-14 20:39:05'),
(5253, 41, '', 'Y', '2014-10-14 20:39:05'),
(5255, 41, '', 'Y', '2014-10-14 20:39:05'),
(5257, 41, '', 'Y', '2014-10-14 20:39:05'),
(5259, 41, 0x4a6f676f7320646520666f726d6120646f20447261676f6e, 'Y', '2014-10-14 20:39:05'),
(5262, 41, 0x436f6d6f20706f73736f20637269617220756d20746162756c6569726f20646f206a6f676f206e6f732066, 'Y', '2014-10-14 20:39:05'),
(5278, 41, 0x46756e63696f6e616c69646164657320646120636f6d756e696461646520646f20447261676f6e, 'Y', '2014-10-14 20:39:05'),
(5285, 41, 0x4f207175652073, 'Y', '2014-10-14 20:39:05'),
(5291, 41, 0x4f207175652073, 'Y', '2014-10-14 20:39:05'),
(5299, 41, 0x4f207175652073, 'Y', '2014-10-14 20:39:05'),
(5301, 41, 0x436f6d6f20636f6d65, 'Y', '2014-10-14 20:39:05'),
(5311, 41, 0x41636573736f20, 'Y', '2014-10-14 20:39:05'),
(5312, 41, 0x50726570617261, 'Y', '2014-10-14 20:39:05'),
(5313, 41, 0x557375, 'Y', '2014-10-14 20:39:05'),
(5315, 41, 0x4d656e736167656e73206e6f20447261676f6e, 'Y', '2014-10-14 20:39:05'),
(5316, 41, 0x436f6e7461746f7320447261676f6e, 'Y', '2014-10-14 20:39:05'),
(5323, 41, 0x4a6f67616e646f206e6f20447261676f6e, 'Y', '2014-10-14 20:39:05'),
(5377, 41, 0x4f2071756520, 'Y', '2014-10-14 20:39:05'),
(5378, 41, 0x556d203c623e6a6f676f206465206b6f6d692d6a7573746f3c2f623e206e6f20447261676f6e2073656d70726520, 'Y', '2014-10-14 20:39:05'),
(5379, 41, 0x436f6d6f2070726f6375726f20706f72206a6f676f73206465206b6f6d692d6a7573746f3f, 'Y', '2014-10-14 20:39:05'),
(5380, 41, 0x5061726120656e636f6e74726172203c686f6d65206661712e7068703f726561643d74266361743d33353726653d33393323456e7472793339333e6a6f676f7320636f6d206b6f6d692d6a7573746f3c2f686f6d653e20766f63, 'Y', '2014-10-14 20:39:05'),
(5407, 41, 0x436f6d6f20657520706f73736f20646573697374697220656d20756d206a6f676f2d6d, 'Y', '2014-10-14 20:39:05'),
(5411, 41, 0x56697375616c697a61, 'Y', '2014-10-14 20:39:05'),
(5412, 41, 0x416e6578617220534746, 'Y', '2014-10-14 20:39:05'),
(5413, 41, 0x46616c686120616f2073616c766172206f2053474621, 'Y', '2014-10-14 20:39:05'),
(5414, 41, 0x4f206172717569766f206e, 'Y', '2014-10-14 20:39:05'),
(5415, 41, 0x4572726f20616f2070726f636573736172205347463a202573, 'Y', '2014-10-14 20:39:05'),
(5416, 41, 0x436f6e666c69746f2064652074616d616e686f20646f20746162756c6569726f3a2065737065726176612d7365202573206d617320656e636f6e74726f752d7365202573, 'Y', '2014-10-14 20:39:05'),
(5417, 41, 0x56616e746167656d20636f6d2070726f626c656d613a206573706572617661202573206d6173206163686f75202573, 'Y', '2014-10-14 20:39:05'),
(5418, 41, 0x4b6f6d6920636f6d2070726f626c656d613a206573706572617661202573206d6173206163686f75202573, 'Y', '2014-10-14 20:39:05'),
(5419, 41, 0x50726f626c656d61206e612063726961, 'Y', '2014-10-14 20:39:05'),
(5420, 41, 0x50726f626c656d61206e612063726961, 'Y', '2014-10-14 20:39:05'),
(5421, 41, 0x4a6f6761646120696e6170726f7072696164613a2064697363726570, 'Y', '2014-10-14 20:39:05'),
(5422, 41, 0x4578697374656d2025732053474673206465206a6f676f20616e657861646f732070617261206261697861722e, 'Y', '2014-10-14 20:39:05'),
(5423, 41, 0x4f206a6f676f2074656d205347467320616e657861646f732e, 'Y', '2014-10-14 20:39:05'),
(5424, 41, 0x526573747269746f, 'Y', '2014-10-14 20:39:05'),
(5425, 41, 0x46696d206465206172717569766f20696e76, 'Y', '2014-10-14 20:39:05'),
(5426, 41, 0x4e, 'Y', '2014-10-14 20:39:05'),
(5427, 41, 0x4e, 'Y', '2014-10-14 20:39:05'),
(5428, 41, 0x496e, 'Y', '2014-10-14 20:39:05'),
(5430, 41, 0x46616c746120756d20666563686120706172, 'Y', '2014-10-14 20:39:05'),
(5431, 41, 0x46616c746120756d20666563686120636f6c6368657465, 'Y', '2014-10-14 20:39:05'),
(5432, 41, 0x4172717569766f206e, 'Y', '2014-10-14 20:39:05'),
(5433, 41, 0x45736372697461207275696d2064652076616e746167656d2070617261202573, 'Y', '2014-10-14 20:39:05'),
(5434, 41, 0x50616472, 'Y', '2014-10-14 20:39:05'),
(5435, 41, 0x534746206170616761646f21, 'Y', '2014-10-14 20:39:05'),
(5436, 41, 0x5347462073616c766f21, 'Y', '2014-10-14 20:39:05'),
(5437, 41, 0x426169786172206f20534746206465206a6f676f20616e657861646f, 'Y', '2014-10-14 20:39:05'),
(5438, 41, 0x476572656e636961722053474673206465206a6f676f20616e657861646f73, 'Y', '2014-10-14 20:39:05'),
(5439, 41, 0x506f72206661766f7220636f6e6669726d652071756520766f63, 'Y', '2014-10-14 20:39:05'),
(5440, 41, 0x41706167617220534746, 'Y', '2014-10-14 20:39:05'),
(5441, 41, 0x456e7669617220534746, 'Y', '2014-10-14 20:39:05'),
(5442, 41, 0x53616c76617220534746, 'Y', '2014-10-14 20:39:05'),
(5443, 41, 0x417061676172206d657520534746, 'Y', '2014-10-14 20:39:05'),
(5444, 41, 0x5347467320616e657861646f73, 'Y', '2014-10-14 20:39:05'),
(5445, 41, 0x4e656e68756d20616e65786f205347462061726d617a656e61646f, 'Y', '2014-10-14 20:39:05'),
(5446, 41, 0x4361646120757375, 'Y', '2014-10-14 20:39:05'),
(5447, 41, 0x4c696d697465206465206172717569766f2053474620656e766961646f3a206d, 'Y', '2014-10-14 20:39:05'),
(5448, 41, 0x476572656e6369617220616e6f7461, 'Y', '2014-10-14 20:39:05'),
(5449, 41, 0x53474620616e657861646f, 'Y', '2014-10-14 20:39:05'),
(5450, 41, 0x4d657573206a6f676f7320, 'Y', '2014-10-14 20:39:05'),
(5451, 41, 0x546f646f73206f73206a6f676f73207465726d696e61646f7320636f6d205347467320616e657861646f732028636f6d656e74, 'Y', '2014-10-14 20:39:05'),
(5452, 41, 0x416465717561646f73, 'Y', '2014-10-14 20:39:05'),
(5453, 41, 0x4d657573, 'Y', '2014-10-14 20:39:05'),
(5456, 41, 0x436f6d6f20657520706f73736f20616368617220636f6d656e74, 'Y', '2014-10-14 20:39:05'),
(5458, 41, 0x5061726120637269617220756d6120726573656e6861206465206a6f676f20, 'Y', '2014-10-14 20:39:05'),
(5459, 41, 0x53656e, 'Y', '2014-10-14 20:39:05'),
(5460, 41, 0x506f72206661766f72206c656961206f204641512070617261207361626572206f206d656c686f72206a6569746f2064652062616978617220756d205347462e, 'Y', '2014-10-14 20:39:05'),
(5461, 41, 0x42616978617220534746203c753e73656d3c2f753e20636f6d656e74, 'Y', '2014-10-14 20:39:05'),
(5473, 41, 0x496e7374616e74, 'Y', '2014-10-14 20:39:05'),
(5474, 41, 0x4e617665676172206e6f2063, 'Y', '2014-10-14 20:39:05'),
(5475, 41, 0x4e617665676172206e6f2063, 'Y', '2014-10-14 20:39:05'),
(5476, 41, 0x456e64657265, 'Y', '2014-10-14 20:39:05'),
(5477, 41, 0x456e64657265, 'Y', '2014-10-14 20:39:05'),
(5478, 41, 0x456e64657265, 'Y', '2014-10-14 20:39:05'),
(5479, 41, 0x46616c74612073657520656e64657265, 'Y', '2014-10-14 20:39:05'),
(5480, 41, 0x53616c766172206d7564616e, 'Y', '2014-10-14 20:39:05'),
(5481, 41, 0x456d61696c, 'Y', '2014-10-14 20:39:05'),
(5482, 41, 0x54656e74617469766173, 'Y', '2014-10-14 20:39:05'),
(5483, 41, 0x5265656e7669617220636f6e6669726d61, 'Y', '2014-10-14 20:39:05'),
(5484, 41, 0x52656d6f76657220636f6e6669726d61, 'Y', '2014-10-14 20:39:05'),
(5485, 41, 0x4d7564617220656d61696c206520617669736f73, 'Y', '2014-10-14 20:39:05'),
(5486, 41, 0x416272697220636f6e6669726d61, 'Y', '2014-10-14 20:39:05'),
(5487, 41, 0x50617261207265636562657220617669736f73206f7520756d61206e6f76612073656e686120286361736f206573717565, 'Y', '2014-10-14 20:39:05'),
(5488, 41, 0x506173736f73207061726120616c74657261722073657520656e64657265, 'Y', '2014-10-14 20:39:05'),
(5489, 41, 0x436f6c6f71756520756d206e6f766f20656e64657265, 'Y', '2014-10-14 20:39:05'),
(5490, 41, 0x556d61206d656e736167656d20636f6d20756d2063, 'Y', '2014-10-14 20:39:05'),
(5491, 41, 0x416f206163657373617220612070, 'Y', '2014-10-14 20:39:05'),
(5492, 41, 0x4f627365727661, 'Y', '2014-10-14 20:39:05'),
(5493, 41, 0x417669736f7320617475616c697a61646f7321, 'Y', '2014-10-14 20:39:05'),
(5494, 41, 0x4d656e736167656d20646520636f6e6669726d61, 'Y', '2014-10-14 20:39:05'),
(5495, 41, 0x4d656e736167656d20646520636f6e6669726d61, 'Y', '2014-10-14 20:39:05'),
(5496, 41, 0x436f6e6669726d61, 'Y', '2014-10-14 20:39:05'),
(5497, 41, 0x566f63, 'Y', '2014-10-14 20:39:05'),
(5498, 41, 0x436f6e6669726d61, 'Y', '2014-10-14 20:39:05'),
(5499, 41, 0x4120636f6e6669726d61, 'Y', '2014-10-14 20:39:05'),
(5500, 41, 0x566f63, 'Y', '2014-10-14 20:39:05'),
(5501, 41, 0x4120636f6e6669726d61, 'Y', '2014-10-14 20:39:05'),
(5503, 41, 0x45737365206a6f676f2075736120706f6e747561, 'Y', '2014-10-14 20:39:05'),
(5504, 41, 0x506f72206661766f722074656e68612063657274657a6120717565206e, 'Y', '2014-10-14 20:39:05'),
(5505, 41, 0x50726f76, 'Y', '2014-10-14 20:39:05'),
(5506, 41, 0x4a6f676164612023257320656d205b25735d, 'Y', '2014-10-14 20:39:05'),
(5507, 41, 0x53616c76617220636f6e666967757261, 'Y', '2014-10-14 20:39:05'),
(5508, 41, 0x417061676172206a6f676f, 'Y', '2014-10-14 20:39:05'),
(5509, 41, 0x4f73206f7574726f73206a6f6761646f72657320736572, 'Y', '2014-10-14 20:39:05'),
(5510, 41, 0x5265616c6d656e74652071756572206170616761722065737365206a6f676f2061676f72613f, 'Y', '2014-10-14 20:39:05'),
(5511, 41, 0x526567697374726f2d64652d557375, 'Y', '2014-10-14 20:39:05'),
(5512, 41, 0x4d7564616e, 'Y', '2014-10-14 20:39:05'),
(5517, 41, 0x44657363756c70652c20756d20696420646520757375, 'Y', '2014-10-14 20:39:05'),
(5518, 41, 0x4b6f6d69206a7573746f20646f207469706f205b25735d2c207469706f206465204a69676f205b25735d, 'Y', '2014-10-14 20:39:05'),
(5519, 41, 0x416a75737461722056616e746167656d, 'Y', '2014-10-14 20:39:05'),
(5520, 41, 0x416a7573746172204b6f6d69, 'Y', '2014-10-14 20:39:05'),
(5521, 41, 0x4e6f74613a20616c67756e732076616c6f72657320696e76, 'Y', '2014-10-14 20:39:05'),
(5522, 41, 0x4f20757375, 'Y', '2014-10-14 20:39:05'),
(5523, 41, 0x4f20616476657273, 'Y', '2014-10-14 20:39:05'),
(5524, 41, '', 'Y', '2014-10-14 20:39:05'),
(5525, 41, 0x506572, 'Y', '2014-10-14 20:39:05'),
(5526, 41, 0x4e, 'Y', '2014-10-14 20:39:05'),
(5527, 41, 0x50616472, 'Y', '2014-10-14 20:39:05'),
(5528, 41, 0x7265677261202573, 'Y', '2014-10-14 20:39:05'),
(5529, 41, 0x4d, 'Y', '2014-10-14 20:39:05'),
(5530, 41, 0x2850616472, 'Y', '2014-10-14 20:39:05'),
(5531, 41, 0x636f6e666967757261, 'Y', '2014-10-14 20:39:05'),
(5532, 41, 0x50616472, 'Y', '2014-10-14 20:39:05'),
(5533, 41, 0x53656d20726573747269, 'Y', '2014-10-14 20:39:05'),
(5534, 41, 0x56656e6365646f7220646120457461706120286176616e, 'Y', '2014-10-14 20:39:05'),
(5535, 41, 0x757361206f206b6f6d692070616472, 'Y', '2014-10-14 20:39:05'),
(5536, 41, 0x7072656369736120646520756d206e, 'Y', '2014-10-14 20:39:05'),
(5537, 41, 0x2b20636f6e66696775726172206f207469706f206465204a69676f202861626169786f29, 'Y', '2014-10-14 20:39:05'),
(5538, 41, 0x416a7573746573207175652073, 'Y', '2014-10-14 20:39:05'),
(5539, 41, 0x416a7573746520646173207065647261732064652076616e746167656d, 'Y', '2014-10-14 20:39:05'),
(5540, 41, 0x416a7573746573206465206b6f6d69, 'Y', '2014-10-14 20:39:05'),
(5541, 41, 0x496e662e20646f73206a6f6761646f726573, 'Y', '2014-10-14 20:39:05'),
(5542, 41, 0x4d6575204e, 'Y', '2014-10-14 20:39:05'),
(5543, 41, 0x4e, 'Y', '2014-10-14 20:39:05'),
(5545, 41, 0x4e, 'Y', '2014-10-14 20:39:05'),
(5546, 41, 0x4f20757375, 'Y', '2014-10-14 20:39:05'),
(5547, 41, 0x4f20757375, 'Y', '2014-10-14 20:39:05'),
(5548, 41, 0x4e, 'Y', '2014-10-14 20:39:05'),
(5549, 41, 0x4f206e, 'Y', '2014-10-14 20:39:05'),
(4678, 7, 0x556be17a6174207620656469746f727520676f62616e75, 'Y', '2016-07-20 16:25:42'),
(5551, 41, 0x5469706f2064652076616e746167656d2028646f73207469706f7320636f6e76656e63696f6e616c2065207072, 'Y', '2014-10-14 20:39:05'),
(4677, 7, 0x556be17a617420726f7a6573746176656eed, 'Y', '2016-07-20 18:39:13'),
(5553, 41, 0x46616c746f7520756d2069642076, 'Y', '2014-10-14 20:39:05'),
(5554, 41, 0x41636573736f7520636f6d206f20757375, 'Y', '2014-10-14 20:39:05'),
(5555, 41, 0x4e, 'Y', '2014-10-14 20:39:05'),
(5556, 41, 0x46616c746f75206f2063, 'Y', '2014-10-14 20:39:05'),
(5557, 41, 0x456e74726164612064652076616c696461, 'Y', '2014-10-14 20:39:05'),
(5558, 41, 0x456e636f6e74726f75206f20757375, 'Y', '2014-10-14 20:39:05'),
(5559, 41, 0x412076616c696461, 'Y', '2014-10-14 20:39:05'),
(5560, 41, 0x506f72206661766f722066616c6520636f6d206f207375706f727465207061726120616a7564617220636f6d2073756120696e73637269, 'Y', '2014-10-14 20:39:05'),
(5561, 41, 0x506f72206661766f72207265706974612061206d7564616e, 'Y', '2014-10-14 20:39:05'),
(5562, 41, 0x43, 'Y', '2014-10-14 20:39:05'),
(5563, 41, 0x43, 'Y', '2014-10-14 20:39:05'),
(5564, 41, 0x4f2069642d64652d757375, 'Y', '2014-10-14 20:39:05'),
(5565, 41, 0x4f2063, 'Y', '2014-10-14 20:39:05'),
(5566, 41, 0x506f72206661766f72206e, 'Y', '2014-10-14 20:39:05'),
(5567, 41, 0x42656d2076696e646f20616f20447261676f6e20476f20536572766572, 'Y', '2014-10-14 20:39:05'),
(5568, 41, 0x41676f726120766f63, 'Y', '2014-10-14 20:39:05'),
(5569, 41, 0x416e74657320646520706f64657220757361722073756120636f6e746120766f63, 'Y', '2014-10-14 20:39:05'),
(5570, 41, 0x566f63, 'Y', '2014-10-14 20:39:05'),
(5571, 41, 0x50617261206174697661722073756120636f6e74612c20706f72206661766f72206162726120657373612070, 'Y', '2014-10-14 20:39:05'),
(5572, 41, 0x4361736f2068616a612070726f626c656d61732c20706f72206661766f722061636573736520636f6d6f20636f6e76696461646f2065207065, 'Y', '2014-10-14 20:39:05'),
(5573, 41, 0x496e666f726d652073657520696420646520757375, 'Y', '2014-10-14 20:39:05'),
(5574, 41, 0x56616c696465206f20656e64657265, 'Y', '2014-10-14 20:39:05'),
(5575, 41, 0x50617261207573617220736575206e6f766f20656e64657265, 'Y', '2014-10-14 20:39:05'),
(5576, 41, 0x506172612076616c6964617220736575206e6f766f20656e64657265, 'Y', '2014-10-14 20:39:05'),
(5577, 41, 0x4361736f2068616a612070726f626c656d617320706f72206661766f72207065, 'Y', '2014-10-14 20:39:05'),
(5578, 41, 0x53657520656e64657265, 'Y', '2014-10-14 20:39:05'),
(5579, 41, 0x4361736f206f636f7272616d2070726f626c656d617320616f206d7564617220646520656e64657265, 'Y', '2014-10-14 20:39:05'),
(5580, 41, 0x506f72206661766f722072656c617465206f207365752070726f626c656d61206e6f203c686f6d652025733e66, 'Y', '2014-10-14 20:39:05'),
(5581, 41, 0x70726f637572617220646f63756d656e7461, 'Y', '2014-10-14 20:39:05'),
(5582, 41, 0x4d6f7374726120706f6c, 'Y', '2014-10-14 20:39:05'),
(5583, 41, 0x6d6f7374726120746f6461732061732070, 'Y', '2014-10-14 20:39:05'),
(5584, 41, 0x4d6f7374726172206e6f766f73206a6f676f73206465206f7574726f73206a6f6761646f726573, 'Y', '2014-10-14 20:39:05'),
(5585, 41, 0x6d6f737472612073756173206d656e736167656e73206520706173746173, 'Y', '2014-10-14 20:39:05'),
(5586, 41, 0x6d6f73747261206e6f766173206d656e736167656e73, 'Y', '2014-10-14 20:39:05'),
(5587, 41, 0x656e76696120756d20636f6e766974652070617261206a6f67617220636f6d206f7574726f20757375, 'Y', '2014-10-14 20:39:05'),
(5588, 41, 0x4f66657265636572206e6f766f73206a6f676f73206e612053616c6120646520457370657261, 'Y', '2014-10-14 20:39:05'),
(5589, 41, 0x6d6f73747261722066, 'Y', '2014-10-14 20:39:05'),
(5590, 41, 0x6d6f73747261722066, 'Y', '2014-10-14 20:39:05'),
(5591, 41, 0x6d6f7374726120766f7461, 'Y', '2014-10-14 20:39:05'),
(5592, 41, 0x766f74617220656d206e6f7661732066756e63696f6e616c696461646573, 'Y', '2014-10-14 20:39:05'),
(5593, 41, 0x56657273, 'Y', '2014-10-14 20:39:05'),
(5594, 41, 0x4e6f74613a20706f722065737365207365727669646f7220657374617220726f64616e646f206e6f206d6f646f2053434d2c206572726f732065206174, 'Y', '2014-10-14 20:39:05'),
(5595, 41, 0x436f6e74612063726961646121, 'Y', '2014-10-14 20:39:05'),
(5596, 41, 0x436f6e746120706172612061636573736172, 'Y', '2014-10-14 20:39:05'),
(5597, 41, 0x50617261206174697661722073756120636f6e7461206520636f6e6669726d61722073657520636164617374726f2c20756d2063, 'Y', '2014-10-14 20:39:05'),
(5598, 41, 0x4e6f76612073656e68612070617261205b25735d, 'Y', '2014-10-14 20:39:05'),
(5599, 41, 0x4f627365727661, 'Y', '2014-10-14 20:39:05'),
(5600, 41, 0x4d61697320656e64657265, 'Y', '2014-10-14 20:39:05'),
(5601, 41, 0x56616c6964617220656d61696c, 'Y', '2014-10-14 20:39:05'),
(5602, 41, 0x4d657374726520646f206a6f676f, 'Y', '2014-10-14 20:39:05'),
(6382, 40, 0x25732076657a6573206e6f20746f74616c20286a6f676f7320696e69636961646f7329, 'Y', '2016-05-01 01:18:39'),
(5606, 41, 0x446573616669616e74652f646566656e736f722074726f6361646f73, 'Y', '2014-10-14 20:39:05'),
(5607, 41, 0x446573616669616e746520, 'Y', '2014-10-14 20:39:05'),
(5608, 41, 0x446573616669616e746520, 'Y', '2014-10-14 20:39:05'),
(5611, 41, 0x2573203d206e, 'Y', '2014-10-14 20:39:05'),
(5622, 41, 0x41696e6461206578697374656d202573206a6f676f7320646520746f726e65696f2070617261207465726d696e6172206e6120726f646164612025642e, 'Y', '2014-10-14 20:39:05'),
(5633, 41, 0x43616d70656f6e61746f20444753, 'Y', '2014-10-14 20:39:05'),
(5637, 41, 0x6e6f2074, 'Y', '2014-10-14 20:39:05'),
(5639, 41, 0x4573636f6c68657220446573616669616e7465, 'Y', '2014-10-14 20:39:05'),
(5644, 41, 0x4e, 'Y', '2014-10-14 20:39:05'),
(5645, 41, 0x446566696e69722056656e6365646f72206461205065737175697361, 'Y', '2014-10-14 20:39:05'),
(5646, 41, 0x4c696d7061722056656e6365646f72206461205065737175697361, 'Y', '2014-10-14 20:39:05'),
(5647, 41, 0x446566696e69722056656e6365646f726573206461205065737175697361, 'Y', '2014-10-14 20:39:05'),
(5650, 41, 0x56656e6365646f726573206461205065737175697361, 'Y', '2014-10-14 20:39:05'),
(5653, 41, 0x41, 'Y', '2014-10-14 20:39:05'),
(5661, 41, 0x46617365206465207265616c697a61, 'Y', '2014-10-14 20:39:05'),
(5664, 41, 0x496e73637269, 'Y', '2014-10-14 20:39:05'),
(5665, 41, 0x536f6d61, 'Y', '2014-10-14 20:39:05'),
(5666, 41, 0x526f64616461202573, 'Y', '2014-10-14 20:39:05'),
(5667, 41, 0x706f7274756775, 'Y', '2014-10-14 20:39:05'),
(5668, 41, 0x706f7274756775, 'Y', '2014-10-14 20:39:05'),
(5669, 41, 0x436f6e7461206174697661646121, 'Y', '2014-10-14 20:39:05'),
(5670, 41, 0x456e64657265, 'Y', '2014-10-14 20:39:05'),
(5671, 41, 0x46616c7461206f2069642070617261206964656e7469666963617220757375, 'Y', '2014-10-14 20:39:05'),
(5672, 41, 0x56616c6964617220656e64657265, 'Y', '2014-10-14 20:39:05'),
(5673, 41, 0x556d61206d656e736167656d20636f6d20756d2063, 'Y', '2014-10-14 20:39:05'),
(5674, 41, 0x4174697661, 'Y', '2014-10-14 20:39:05'),
(5675, 41, 0x416c746572617220656e64657265, 'Y', '2014-10-14 20:39:05'),
(5676, 41, 0x4361736f2068616a612070726f626c656d617320636f6d2061206174697661, 'Y', '2014-10-14 20:39:05'),
(5677, 41, 0x506f72206661766f72203c686f6d652025733e61636573736520636f6d6f20636f6e76696461646f3c2f686f6d653e2065207065, 'Y', '2014-10-14 20:39:05'),
(5678, 41, 0x536f6c75, 'Y', '2014-10-14 20:39:05'),
(5679, 41, 0x4120636f6c756e612027257327206d6f7374726120612076616e746167656d206f7520737561206c696d697461, 'Y', '2014-10-14 20:39:05'),
(5680, 41, 0x696e646963612076616e746167656d2070616472, 'Y', '2014-10-14 20:39:05'),
(5681, 41, 0x76616e746167656d2063616c63756c616461, 'Y', '2014-10-14 20:39:05'),
(5682, 41, 0x4d696e686120636f72, 'Y', '2014-10-14 20:39:05'),
(5683, 41, 0x45646974617220706573717569736173, 'Y', '2014-10-14 20:39:05'),
(5684, 41, 0x46696e616c2064617320696e73637269, 'Y', '2014-10-14 20:39:05'),
(5686, 41, 0x50656469646f73, 'Y', '2014-10-14 20:39:05'),
(5687, 41, 0x496e73637269746f, 'Y', '2014-10-14 20:39:05'),
(5688, 41, 0x436f6e76696461646f73, 'Y', '2014-10-14 20:39:05'),
(5691, 41, 0x4461746120646120496e73637269, 'Y', '2014-10-14 20:39:05'),
(5693, 41, 0x6f752064652066, 'Y', '2014-10-14 20:39:05'),
(5696, 41, 0x526573756d6f20646f20746f726e65696f3a202573207061727469636970616e7465732c202573206a6f676f7320656d2070726f67726573736f2c202573207465726d696e61646f732065206573706572616e646f2070726f63657373616d656e746f, 'Y', '2014-10-14 20:39:05'),
(5697, 41, 0x436f6c6f6361, 'Y', '2014-10-14 20:39:05'),
(5698, 41, 0x4d657520506170656c206e6f204a6f676f20646520546f726e65696f, 'Y', '2014-10-14 20:39:05'),
(5699, 41, 0x46616c746120756d20656e64657265, 'Y', '2014-10-14 20:39:05'),
(5702, 41, 0x4a6f676f7320646520746f726e65696f20656d2070726f67726573736f2065207465726d696e61646f73, 'Y', '2014-10-14 20:39:05'),
(5703, 41, 0x4d657573206a6f676f7320646520746f726e65696f20656d2070726f67726573736f, 'Y', '2014-10-14 20:39:05'),
(5704, 41, 0x4a6f676f7320646520746f726e65696f20656d2070726f67726573736f20646f20757375, 'Y', '2014-10-14 20:39:05'),
(5705, 41, 0x4d657573206a6f676f7320646520746f726e65696f207465726d696e61646f73, 'Y', '2014-10-14 20:39:05'),
(5706, 41, 0x4a6f676f7320646520746f726e65696f207465726d696e61646f7320646f20757375, 'Y', '2014-10-14 20:39:05'),
(5708, 41, 0x4d696e686120696e73637269, 'Y', '2014-10-14 20:39:05'),
(5714, 41, 0x4d6f7374726172206d7564616e, 'Y', '2014-10-14 20:39:05'),
(5715, 41, 0x4f20757375, 'Y', '2014-10-14 20:39:05'),
(5716, 41, 0x46616c7461206f206e6f6d6520646f20757375, 'Y', '2014-10-14 20:39:05'),
(5717, 41, 0x46616c7461206f206e6f6d6520646f20757375, 'Y', '2014-10-14 20:39:05'),
(5718, 41, 0x54726f63617220636f72, 'Y', '2014-10-14 20:39:05'),
(5719, 41, 0x5369747561, 'Y', '2014-10-14 20:39:05'),
(5720, 41, 0x4d7564616e, 'Y', '2014-10-14 20:39:05'),
(5722, 41, 0x496e74657276616c6f20646520636f6e6669616e, 'Y', '2014-10-14 20:39:05'),
(5723, 41, 0x4e, 'Y', '2014-10-14 20:39:05'),
(5726, 41, 0x76617269616e646f206465202d323030206120323030, 'Y', '2014-10-14 20:39:05'),
(5727, 41, 0x56616e746167656d3a202573, 'Y', '2014-10-14 20:39:05'),
(5728, 41, 0x6b6f6d693a2025312e3166, 'Y', '2014-10-14 20:39:05'),
(5729, 41, 0x646570656e646520646f2074616d616e686f20646f20746162756c6569726f, 'Y', '2014-10-14 20:39:05'),
(5731, 41, 0x31303020706f6e746f7320454c4f203d2031206b7975, 'Y', '2014-10-14 20:39:05'),
(5732, 41, 0x4d7564616e, 'Y', '2014-10-14 20:39:05'),
(5733, 41, 0x4469666572656e, 'Y', '2014-10-14 20:39:05'),
(5734, 41, 0x4d7564616e, 'Y', '2014-10-14 20:39:05'),
(762, 36, 0x416e746967756120c3a9732042617262756461, 'Y', '2015-09-18 21:14:08'),
(775, 36, '', 'Y', '2015-09-18 21:08:14'),
(5738, 41, 0x4f627365727661, 'Y', '2014-10-14 20:39:05'),
(5742, 41, 0x496e666f726d61, 'Y', '2014-10-14 20:39:05'),
(5743, 41, 0x646f6d, 'Y', '2014-10-14 20:39:05'),
(5744, 41, 0x736567, 'Y', '2014-10-14 20:39:05'),
(5745, 41, 0x746572, 'Y', '2014-10-14 20:39:05'),
(5746, 41, 0x717561, 'Y', '2014-10-14 20:39:05'),
(5747, 41, 0x717569, 'Y', '2014-10-14 20:39:05'),
(5748, 41, 0x736578, 'Y', '2014-10-14 20:39:05'),
(5749, 41, 0x73, 'Y', '2014-10-14 20:39:05');
INSERT INTO `Translations` (`Original_ID`, `Language_ID`, `Text`, `Translated`, `Updated`) VALUES
(5750, 41, 0x486f7370656461646f20706f72, 'Y', '2014-10-14 20:39:05'),
(5751, 41, 0x4d, 'Y', '2014-10-14 20:39:05'),
(5752, 41, 0x4d7564616e, 'Y', '2014-10-14 20:39:05'),
(5754, 41, 0x446174612064652074, 'Y', '2014-10-14 20:39:05'),
(5755, 41, 0x44657363616e736f20646f20757375, 'Y', '2014-10-14 20:39:05'),
(5756, 41, 0x4573746174, 'Y', '2014-10-14 20:39:05'),
(5757, 41, 0x4d656e736167656e73, 'Y', '2014-10-14 20:39:05'),
(5758, 41, 0x4a6f67616461205b25735d206465202573, 'Y', '2014-10-14 20:39:05'),
(5759, 41, 0x4964696f6d61, 'Y', '2014-10-14 20:39:05'),
(5760, 41, 0x54726164757a69646f73, 'Y', '2014-10-14 20:39:05'),
(5761, 41, 0x46616c74616d, 'Y', '2014-10-14 20:39:05'),
(5762, 41, 0x50726f67726573736f20282529, 'Y', '2014-10-14 20:39:05'),
(5763, 41, 0x546f74616c20646520746578746f7320706172612074726164757a6972, 'Y', '2014-10-14 20:39:05'),
(5764, 41, 0x4f63756c74617220636f6d656e74, 'Y', '2014-10-14 20:39:05'),
(5765, 41, 0x4d6f737472617220636f6d656e74, 'Y', '2014-10-14 20:39:05'),
(5766, 41, 0x4a6f6761646120417475616c, 'Y', '2014-10-14 20:39:05'),
(5767, 41, 0x4d6f737472617220636f6d656e74, 'Y', '2014-10-14 20:39:05'),
(5771, 41, 0x54616d616e686f206461206d696e696174757261, 'Y', '2014-10-14 20:39:05'),
(5772, 41, 0x54616d616e686f205b25735d20696e76, 'Y', '2014-10-14 20:39:05'),
(5773, 41, 0x417320616e6f7461, 'Y', '2014-10-14 20:39:05'),
(5774, 41, 0x416e616c69736172, 'Y', '2014-10-14 20:39:05'),
(5775, 41, 0x416e616c69736172206a6f676f, 'Y', '2014-10-14 20:39:05'),
(5776, 41, 0x4d6f7374726172206d696e6861206a6f6761646120616e746572696f72, 'Y', '2014-10-14 20:39:05'),
(5777, 41, 0x50726973696f6e6569726f73, 'Y', '2014-10-14 20:39:05'),
(5778, 41, 0x616e756c61646f, 'Y', '2014-10-14 20:39:05'),
(5780, 41, 0x4d6f7374726172206d61697320696e666f726d61, 'Y', '2014-10-14 20:39:05'),
(5781, 41, 0x53756120636f74612064652061636573736f20657374, 'Y', '2014-10-14 20:39:05'),
(5782, 41, 0x4f70657261, 'Y', '2014-10-14 20:39:05'),
(5783, 41, 0x4f636f7272657520756d206572726f, 'Y', '2014-10-14 20:39:05'),
(5784, 41, 0x4f206a6f676f207465726d696e612073656d20726573756c7461646f, 'Y', '2014-10-14 20:39:05'),
(5785, 41, 0x25732076656e63656d20706f7220646573697374, 'Y', '2014-10-14 20:39:05'),
(5786, 41, 0x25732076656e63656d20706f722074656d706f, 'Y', '2014-10-14 20:39:05'),
(5787, 41, 0x25732076656e63656d20706f7220696e74657276656e, 'Y', '2014-10-14 20:39:05'),
(5788, 41, 0x234a6f676f732067616e686f73203a207065726469646f7320636f6d20496e74657276656e, 'Y', '2014-10-14 20:39:05'),
(5789, 41, 0x234a6f676f732053656d2d526573756c7461646f, 'Y', '2014-10-14 20:39:05'),
(5790, 41, 0x4e756c6f, 'Y', '2014-10-14 20:39:05'),
(5791, 41, 0x53656d20726573756c7461646f20283d4e756c6f29, 'Y', '2014-10-14 20:39:05'),
(5792, 41, 0x45646974617220726573756c7461646f73, 'Y', '2014-10-14 20:39:05'),
(5793, 41, 0x4d6f7374726120746f646f73206f7320726573756c7461646f7320646f20746f726e65696f, 'Y', '2014-10-14 20:39:05'),
(5794, 41, 0x5369747561, 'Y', '2014-10-14 20:39:05'),
(5795, 41, 0x4a6f676f73, 'Y', '2014-10-14 20:39:05'),
(5796, 41, 0x4a6f6761646173, 'Y', '2014-10-14 20:39:05'),
(5798, 41, 0x417469766964616465, 'Y', '2014-10-14 20:39:05'),
(5799, 41, 0x4361726761206d, 'Y', '2014-10-14 20:39:05'),
(5807, 41, 0x526573756c7461646f20646120526f64616461, 'Y', '2014-10-14 20:39:05'),
(5809, 41, 0x526573756c7461646f20646f20557375, 'Y', '2014-10-14 20:39:05'),
(5812, 41, 0x494420646520526573756c7461646f20646f20546f726e65696f, 'Y', '2014-10-14 20:39:05'),
(5813, 41, 0x4e6f766120656e7472616461, 'Y', '2014-10-14 20:39:05'),
(5814, 41, 0x5469706f20646520526573756c7461646f, 'Y', '2014-10-14 20:39:05'),
(5815, 41, 0x55494420646f20526573756c7461646f, 'Y', '2014-10-14 20:39:05'),
(5816, 41, 0x52494420646f20526573756c7461646f, 'Y', '2014-10-14 20:39:05'),
(3633, 6, 0x46696e616c, 'Y', '2016-04-15 01:47:35'),
(5820, 41, 0x526573756c7461646f, 'Y', '2014-10-14 20:39:05'),
(5821, 41, 0x436f6c6f6361, 'Y', '2014-10-14 20:39:05'),
(5830, 41, 0x546f646f73206f7320726573756c7461646f7320646f20746f726e65696f, 'Y', '2014-10-14 20:39:05'),
(5846, 41, 0x55494420646f20526573756c7461646f, 'Y', '2014-10-14 20:39:05'),
(5855, 41, 0x506c61636172, 'Y', '2014-10-14 20:39:05'),
(5860, 41, 0x706c6163617220646f206a6f676f, 'Y', '2014-10-14 20:39:05'),
(5861, 41, 0x446572726f7461, 'Y', '2014-10-14 20:39:05'),
(5862, 41, 0x456d7061746520286a69676f29, 'Y', '2014-10-14 20:39:05'),
(5875, 41, 0x546162656c6120646f2043616d70656f6e61746f, 'Y', '2014-10-14 20:39:05'),
(5887, 41, 0x53696d706c6573, 'Y', '2014-10-14 20:39:05'),
(5888, 41, 0x4861686e, 'Y', '2014-10-14 20:39:05'),
(5889, 41, 0x506573717569736120646f20546f726e65696f, 'Y', '2014-10-14 20:39:05'),
(5896, 41, 0x566974, 'Y', '2014-10-14 20:39:05'),
(5897, 41, 0x446572726f746120706f72205b25735d, 'Y', '2014-10-14 20:39:05'),
(5899, 41, 0x456d7061746520286a69676f29, 'Y', '2014-10-14 20:39:05'),
(5900, 41, 0x4573636f6c6861, 'Y', '2014-10-14 20:39:05'),
(5910, 41, 0x526f64616461, 'Y', '2014-10-14 20:39:05'),
(5942, 41, 0x446573616669616e746573, 'Y', '2014-10-14 20:39:05'),
(5946, 41, 0x526574697261722d736520646f2043616d70656f6e61746f, 'Y', '2014-10-14 20:39:05'),
(5956, 41, 0x4d65757320726573756c7461646f73206e6f20746f726e65696f, 'Y', '2014-10-14 20:39:05'),
(5957, 41, 0x4162726972, 'Y', '2014-10-14 20:39:05'),
(5960, 41, 0x45646974617220706f6e746f73, 'Y', '2014-10-14 20:39:05'),
(5962, 41, 0x436f6d65, 'Y', '2014-10-14 20:39:05'),
(5983, 41, 0x5469706f20646520506f6e746f73, 'Y', '2014-10-14 20:39:05'),
(5985, 41, 0x506f6e746f732047616e686f73, 'Y', '2014-10-14 20:39:05'),
(5986, 41, 0x506f6e746f73205065726469646f73, 'Y', '2014-10-14 20:39:05'),
(5987, 41, 0x506f6e746f7320456d70617461646f73, 'Y', '2014-10-14 20:39:05'),
(5988, 41, 0x426c6f717565617220506c61636172, 'Y', '2014-10-14 20:39:05'),
(5989, 41, 0x506f6e747561, 'Y', '2014-10-14 20:39:05'),
(5998, 41, 0x5265646566696e697220636f6d206f732050616472, 'Y', '2014-10-14 20:39:05'),
(6002, 41, 0x43617465676f726961, 'Y', '2014-10-14 20:39:05'),
(6003, 41, 0x566974, 'Y', '2014-10-14 20:39:05'),
(6004, 41, 0x446572726f7461, 'Y', '2014-10-14 20:39:05'),
(6005, 41, 0x4469662d506f6e746f73, 'Y', '2014-10-14 20:39:05'),
(6006, 41, 0x456d70617465, 'Y', '2014-10-14 20:39:05'),
(6007, 41, 0x53656d2d526573756c7461646f, 'Y', '2014-10-14 20:39:05'),
(6008, 41, 0x416e756c61646f, 'Y', '2014-10-14 20:39:05'),
(6010, 41, 0x52656d6f766572206461205065737175697361, 'Y', '2014-10-14 20:39:05'),
(6015, 41, 0x417669736f73, 'Y', '2014-10-14 20:39:05'),
(6017, 41, 0x5665726966696361722056656e6365646f726573206461205065737175697361, 'Y', '2014-10-14 20:39:05'),
(6024, 41, 0x436f6e6669726d61, 'Y', '2014-10-14 20:39:05'),
(6048, 41, 0x4d6f73747261722f6f63756c746172206d61726361, 'Y', '2014-10-14 20:39:05'),
(6050, 41, 0x4c696d697465202573, 'Y', '2014-10-14 20:39:05'),
(6053, 41, 0x526f64616461204d, 'Y', '2014-10-14 20:39:05'),
(6061, 41, 0x6d, 'Y', '2014-10-14 20:39:05'),
(6312, 3, 0x5050, 'Y', '2015-04-12 13:35:06'),
(6065, 41, 0x566974, 'Y', '2014-10-14 20:39:05'),
(6066, 41, 0x496e74657276616c6f20646f20526573756c7461646f, 'Y', '2014-10-14 20:39:05'),
(6070, 41, 0x4d, 'Y', '2014-10-14 20:39:05'),
(6071, 41, 0x562e20432e, 'Y', '2014-10-14 20:39:05'),
(6072, 41, 0x53616c, 'Y', '2014-10-14 20:39:05'),
(6081, 41, 0x2573204d454c484f524553, 'Y', '2014-10-14 20:39:05'),
(6084, 41, 0x4a6f676164617320636f6e646963696f6e616973, 'Y', '2014-10-14 20:39:05'),
(6085, 41, 0x4d6f7374726172, 'Y', '2014-10-14 20:39:05'),
(6086, 41, 0x456469746172, 'Y', '2014-10-14 20:39:05'),
(6087, 41, 0x41646963696f6e6172, 'Y', '2014-10-14 20:39:05'),
(6094, 41, 0x53657175, 'Y', '2014-10-14 20:39:05'),
(6095, 41, 0x4564697461722073657175, 'Y', '2014-10-14 20:39:05'),
(6096, 41, 0x5661726961, 'Y', '2014-10-14 20:39:05'),
(6098, 41, 0x5369747561, 'Y', '2014-10-14 20:39:05'),
(6099, 41, 0x417472696275746f73, 'Y', '2014-10-14 20:39:05'),
(6102, 41, 0x417469766172, 'Y', '2014-10-14 20:39:05'),
(6123, 41, 0x44657361746976616461, 'Y', '2014-10-14 20:39:05'),
(6124, 41, 0x4174697661, 'Y', '2014-10-14 20:39:05'),
(6125, 41, 0x496c6567616c, 'Y', '2014-10-14 20:39:05'),
(6127, 41, 0x4465737669616461, 'Y', '2014-10-14 20:39:05'),
(6128, 41, 0x5465726d696e616461, 'Y', '2014-10-14 20:39:05'),
(6136, 41, 0x4b6f2070726f696269646f, 'Y', '2014-10-14 20:39:05'),
(6138, 41, 0x44657363756c70652c2073756120706f7263656e746167656d20686572, 'Y', '2014-10-14 20:39:05'),
(6139, 41, 0x56616c6f7220696e76, 'Y', '2014-10-14 20:39:05'),
(6140, 41, 0x506f7263656e742e20686572, 'Y', '2014-10-14 20:39:05'),
(6141, 41, 0x43726961646f202843726f6e29, 'Y', '2014-10-14 20:39:05'),
(6142, 41, 0x43524f4e, 'Y', '2014-10-14 20:39:05'),
(6343, 3, 0x4f70702e20656e64207261742e, 'Y', '2015-05-14 17:12:37'),
(6339, 3, 0x4f70702e20726174696e67, 'Y', '2015-05-14 17:12:37'),
(6147, 41, 0x536575206d, 'Y', '2014-10-14 20:39:05'),
(6148, 41, 0x506f7263656e746167656d20686572, 'Y', '2014-10-14 20:39:05'),
(6149, 41, 0x506f7263656e746167656d20686572, 'Y', '2014-10-14 20:39:05'),
(6154, 41, 0x416e756c61646f, 'Y', '2014-10-14 20:39:05'),
(6155, 41, 0x42, 'Y', '2014-10-14 20:39:05'),
(6156, 41, 0x50, 'Y', '2014-10-14 20:39:05'),
(6157, 41, 0x4465736973746975, 'Y', '2014-10-14 20:39:05'),
(6158, 41, 0x54656d706f, 'Y', '2014-10-14 20:39:05'),
(6159, 41, 0x416e756c61646f, 'Y', '2014-10-14 20:39:05'),
(6160, 41, 0x4170726f762e20282529, 'Y', '2014-10-14 20:39:05'),
(6161, 41, 0x486572, 'Y', '2014-10-14 20:39:05'),
(6174, 41, 0x44697265746f72, 'Y', '2014-10-14 20:39:05'),
(6175, 41, 0x43, 'Y', '2014-10-14 20:39:05'),
(6176, 41, 0x436f646966696361, 'Y', '2014-10-14 20:39:05'),
(6177, 41, 0x4170726f76656974616d656e746f20282529, 'Y', '2014-10-14 20:39:05'),
(6178, 41, 0x486572, 'Y', '2014-10-14 20:39:05'),
(6179, 41, 0x506f7263656e746167656d206465206a6f676f7320636f6d20706573736f6173206d61697320667261636173, 'Y', '2014-10-14 20:39:05'),
(2963, 25, 0x416e756ec5a3207475726e6575, 'Y', '2014-12-05 11:41:42'),
(2424, 25, 0x436f6e666967757261726520706172746964c483, 'Y', '2014-10-27 11:11:24'),
(3096, 25, 0x536574c48372696c652070726f626162696c6520616c65207061727469646569, 'Y', '2014-10-27 11:06:49'),
(1890, 25, '', 'Y', '2014-10-27 11:10:39'),
(2432, 25, 0x48616e6469636170207374616e64617264, 'Y', '2014-10-27 11:10:39'),
(2506, 25, 0x436f6e66696775726172652068616e6469636170, 'Y', '2014-10-27 11:10:39'),
(2558, 25, 0x48616e646963617020636f6e76656ec5a3696f6e616c, 'Y', '2014-10-27 11:10:39'),
(2508, 25, 0x436f746172652067727570, 'Y', '2014-10-27 11:11:49'),
(4583, 25, 0x43656173756c2065206f7072697420c3ae6e207765656b656e64, 'Y', '2014-10-27 11:22:53'),
(4701, 25, 0x43656173756c206d6572676520c3ae6e207765656b656e64, 'Y', '2014-10-27 11:22:53'),
(2509, 25, 0xc38e6d707265756ec483, 'Y', '2014-10-27 11:23:49'),
(2519, 25, 0x4a7563c483746f72, 'Y', '2014-10-27 11:24:44'),
(1554, 25, 0x4163c5a369756e69, 'Y', '2014-10-27 11:26:06'),
(2173, 25, 0x5061727469636970616ec5a369, 'Y', '2014-10-27 11:28:16'),
(2504, 25, 0x56657269666963c4832070617274696461, 'Y', '2014-10-27 11:29:04'),
(2167, 25, 0x416e756ec5a3206e6f75, 'Y', '2014-12-03 11:56:42'),
(2183, 25, 0x45726f7269, 'Y', '2014-10-27 11:48:49'),
(5602, 25, 0x4f7267616e697a61746f7220706172746964c483, 'Y', '2014-10-28 10:44:43'),
(3443, 25, 0x5061727469636970c483, 'Y', '2014-10-28 11:05:20'),
(1944, 25, 0x417520666f7374206964656e746966696361746520756e656c652065726f7269, 'Y', '2014-10-28 11:06:21'),
(2571, 25, 0x4e752073756e7420737566696369656ec89b69206a7563c483746f7269, 'Y', '2014-10-28 11:07:47'),
(2572, 25, 0x4578697374c483206c6f637572692072657a65727661746520c3ae6e63c483206e656f637570617465206465206a7563c483746f72696920696e76697461c89b69, 'Y', '2014-10-28 11:13:50'),
(2575, 25, 0x477275707572696c6520747265627569652073c48320666965205b25732c2025735d2c206461722073756e74205b25735d, 'Y', '2014-10-28 11:15:00'),
(2857, 25, 0x4e41, 'Y', '2014-10-28 11:16:41'),
(2853, 25, 0x4e65677275, 'Y', '2014-10-28 11:17:21'),
(2854, 25, 0x416c62, 'Y', '2014-10-28 11:17:39'),
(2578, 25, 0x47727570756c205b25735d2074726562756965206f72646f6e6174, 'Y', '2014-10-28 11:23:28'),
(2580, 25, 0x47727570756c205b25735d20747265627569652073c48320666965206f72646f6e6174206375206e756d65726520756e69636520636f6e73656375746976653a20312c322c332c202e2e2e, 'Y', '2014-10-28 11:23:28'),
(2579, 25, 0x47727570756c205b25735d20747265627569652073c48320666965206f72646f6e617420c3ae6e636570c3a26e642063752031, 'Y', '2014-10-28 11:23:28'),
(4702, 25, 0x4d656ec5a369756e69, 'Y', '2014-10-28 11:27:57'),
(2512, 25, 0x5061727469636970c483, 'Y', '2014-10-28 11:24:34'),
(2510, 25, 0x4f7267616e697a61746f72, 'Y', '2014-10-28 11:24:59'),
(2511, 25, 0x52657a6572766174, 'Y', '2014-10-28 11:25:20'),
(2852, 25, 0x4e656772752f416c6220736175206e6570726563697a6174, 'Y', '2014-10-28 11:26:21'),
(2496, 25, 0x496e666f726d61c5a36969206a7563c483746f7269, 'Y', '2014-10-28 11:27:37'),
(2582, 25, 0x436f6e666967757261726520706172746964c483, 'Y', '2014-10-28 11:29:16'),
(5731, 25, 0x3130302070756e63746520454c4f203d2031206b7975, 'Y', '2014-11-26 10:20:28'),
(5752, 25, 0x4d6f646966696361726520726174696e672028454c4f29, 'Y', '2014-11-26 10:21:05'),
(5722, 25, 0x496e74657276616c20646520c3ae6e63726564657265, 'Y', '2014-11-26 10:22:19'),
(5726, 25, 0xc3ae6e747265202d32303020c59f6920323030, 'Y', '2014-11-26 10:24:57'),
(5780, 6, 0x4d6f7374726172206de17320696e666f726d616369f36e20616365726361206465205b25735d, 'Y', '2014-12-02 21:05:05'),
(5781, 6, 0x54752063756f74612064652061636365736f20736520657374e12061636162616e646f21236a73, 'Y', '2014-12-02 21:05:05'),
(5783, 6, 0x4f6375727269f320756e206572726f72236a73, 'Y', '2014-12-02 21:05:05'),
(5784, 6, 0x4c6120706172746964612066696e616c697a612053696e2d526573756c7461646f, 'Y', '2014-12-02 21:05:05'),
(5785, 6, 0x25732067616e6120706f722072656e756e636961, 'Y', '2014-12-02 21:05:05'),
(5693, 6, 0x6f20656e207661636163696f6e6573, 'Y', '2015-09-03 04:38:54'),
(5786, 6, 0x25732067616e6120706f72207469656d706f, 'Y', '2015-10-24 02:26:03'),
(6104, 6, 0x456c206172636869766f2073756269646f206e6f207075646f20736572206162696572746f2070617261206c656374757261, 'Y', '2014-12-02 21:06:16'),
(5787, 6, 0x25732067616e6120706f722072656e756e636961, 'Y', '2014-12-02 21:07:24'),
(6154, 6, 0x53696e2d526573756c7461646f2373636f7265, 'Y', '2014-12-02 21:07:41'),
(6341, 3, 0x4f70702e2073742e207261742e, 'Y', '2015-05-14 17:12:37'),
(3441, 25, 0x4d6573616a756c207a696c65692028616e756ec5a3757269206e6563697469746529, 'Y', '2014-12-03 11:56:42'),
(2962, 25, 0x416e756ec5a32061646d696e6973747261746f72, 'Y', '2014-12-03 11:56:31'),
(5743, 25, 0x44756d696e6963c483, 'Y', '2014-12-03 12:03:37'),
(1243, 25, 0x6465, 'Y', '2014-12-03 12:05:02'),
(2982, 25, 0x4d6172636865617ac483206361206369746974, 'Y', '2014-12-03 12:17:22'),
(2169, 25, 0x43617465676f726965, 'Y', '2014-12-03 12:20:18'),
(2170, 25, '', 'Y', '2014-12-03 12:20:18'),
(6002, 25, 0x43617465676f726965, 'Y', '2014-12-03 12:20:56'),
(2327, 25, 0x5374617265, 'Y', '2014-12-16 14:07:12'),
(3201, 25, 0x43c483747265, 'Y', '2014-12-03 12:21:37'),
(4711, 25, 0x4175746f72, 'Y', '2014-12-03 12:22:05'),
(4712, 25, 0x5075626c69636174, 'Y', '2014-12-03 12:22:39'),
(3205, 25, 0x4369746974, 'Y', '2014-12-03 12:23:13'),
(4713, 25, 0x4578706972c483, 'Y', '2014-12-03 12:23:51'),
(4714, 25, 0x556c74696d61206d6f6469666963617265, 'Y', '2014-12-03 12:24:14'),
(3219, 25, 0x416e756ec5a3756c206120666f7374206d6172636174206361206369746974, 'Y', '2014-12-03 12:24:59'),
(3196, 25, 0x546f617465207469707572696c65, 'Y', '2014-12-05 11:45:25'),
(2974, 25, 0x546fc5a369207574696c697a61746f726969, 'Y', '2014-12-05 11:46:29'),
(2976, 25, 0x5061727469636970616e742054, 'Y', '2014-12-05 11:48:30'),
(2977, 25, 0x4c697374c483207574696c697a61746f7269, 'Y', '2014-12-05 11:49:56'),
(2978, 25, 0x50617274696465204d50, 'Y', '2014-12-05 11:52:20'),
(3223, 25, 0x416e756ec5a3757269206e65636974697465, 'Y', '2014-12-05 11:53:07'),
(2172, 25, 0x416e756ec5a37572696c65206d656c65, 'Y', '2014-12-05 11:53:32'),
(3217, 25, 0x416669c59f617265207465787465, 'Y', '2014-12-05 11:54:13'),
(3212, 25, 0x4c697374c48320616e756ec5a3757269, 'Y', '2014-12-05 11:54:45'),
(6197, 40, 0x6369746172, 'Y', '2014-12-06 11:55:08'),
(673, 40, 0x4f20447261676f6e20766169206d6520617669736172207175616e646f20666f72206d696e68612076657a206465206a6f6761723f, 'Y', '2014-12-06 13:07:01'),
(675, 40, 0x506f73736f20636f6d65e7617220756d206a6f676f20636f6d206f20656e76696f20646520756d206172717569766f205347463f, 'Y', '2014-12-06 13:07:01'),
(678, 40, 0x4f20717565207369676e6966696361206120636f6c756e6120224eed76656c22206e61206c6973746120646520757375e172696f733f, 'Y', '2014-12-06 13:07:01'),
(680, 40, 0x4f20717565207369676e696669636120756d20222b22206f7520756d20222d22206465706f697320646520756d206eed76656c3f, 'Y', '2014-12-06 13:07:01'),
(684, 40, 0x5175616c206f207369676e6966696361646f20646120e172656120617a756c206e6f73206772e16669636f73206465206eed76656c3f, 'Y', '2014-12-06 13:07:01'),
(708, 40, 0x4f2074616d616e686f20646f20746162756c6569726f2074656d20696e666c75ea6e636961206e6f206eed76656c3f, 'Y', '2014-12-06 13:07:01'),
(712, 40, 0x436f6d6f2066756e63696f6e61206f2073697374656d61206465206eed76656c20646f20447261676f6e20476f205365727665723f, 'Y', '2014-12-06 13:07:01'),
(748, 40, 0x506f73736f20636f6d65e76172206f75206f7267616e697a617220756d20746f726e65696f3f, 'Y', '2014-12-06 13:07:01'),
(751, 40, 0x436f6d6f206661e76f2070617261207265746972617220617320706564726173206d6f72746173206e6f2066696e616c20646f206a6f676f3f, 'Y', '2014-12-06 13:07:01'),
(971, 40, 0x436f6d6f20696e666f726d61722070726f626c656d6173206f75206572726f733f, 'Y', '2014-12-06 13:07:01'),
(4625, 25, 0x537461747573207475726e6575, 'Y', '2014-12-15 22:36:43'),
(3696, 25, 0xc38e6e726567697374617265, 'Y', '2014-12-15 22:38:32'),
(993, 40, 0x506f73736f20656e7669617220756d61206a6f6761646120656e7175616e746f206d65752072656cf367696f206465206a6f676f20657374e12070617261646f3f, 'Y', '2014-12-31 22:30:18'),
(3687, 25, 0x507269766174, 'Y', '2014-12-16 13:43:44'),
(3843, 25, 0x507269766174, 'Y', '2014-12-16 13:43:44'),
(3685, 25, '', 'Y', '2014-12-16 13:44:31'),
(3686, 25, 0x5075626c6963, 'Y', '2014-12-16 13:44:58'),
(5024, 25, 0x546970, 'Y', '2014-12-16 13:46:14'),
(3689, 25, '', 'Y', '2014-12-16 13:59:13'),
(3688, 25, '', 'Y', '2014-12-16 13:59:40'),
(2460, 25, 0x416669c59f65617ac483207475726e65756c, 'Y', '2014-12-16 14:04:38'),
(4214, 25, 0x416669c59f65617ac4832067727570656c65, 'Y', '2014-12-16 14:05:23'),
(3479, 25, 0x5374617265, 'Y', '2014-12-16 14:06:26'),
(3698, 25, 0x5365206a6f6163c483, 'Y', '2014-12-16 14:07:41'),
(5957, 25, 0x446973706f6e6962696c65, 'Y', '2014-12-16 14:10:06'),
(3695, 25, 0x4e6f75, 'Y', '2014-12-16 14:09:22'),
(3699, 25, 0x5465726d696e6174, 'Y', '2014-12-16 14:15:00'),
(3700, 25, 0xc59e74657273, 'Y', '2014-12-16 14:15:36'),
(4718, 25, 0x5469746c75, 'Y', '2014-12-16 14:16:09'),
(5708, 25, 0x53746172656120c3ae6e72656769737472c483726969206d656c65206c61207475726e65756c202573, 'Y', '2014-12-16 14:31:01'),
(5019, 25, 0xc38e6e726567697374726174, 'Y', '2014-12-16 14:20:25'),
(5687, 25, 0xc38e6e726567697374726174, 'Y', '2014-12-16 14:20:36'),
(5018, 25, 0x52756e6461, 'Y', '2014-12-16 14:21:21'),
(5026, 25, 0x44696d656e7369756e652d5475726e6575, 'Y', '2014-12-16 14:21:59'),
(5027, 25, 0xc38e6e6365707574, 'Y', '2014-12-16 14:22:50'),
(5028, 25, 0x5366c3a272c59f6974, 'Y', '2014-12-16 14:23:31'),
(1619, 25, 0x6162736f6c7574, 'Y', '2014-12-16 14:23:51'),
(578, 40, '', 'Y', '2014-12-21 16:37:02'),
(580, 40, '', 'Y', '2014-12-21 16:37:23'),
(6186, 40, 0x417420746865206c6566742068616e64206d656e752069732061206c696e6b20746f20796f7572205573657220696e666f2e20546865726520697320737061636520746865726520666f7220796f7520746f2073657420796f757220696e697469616c2044475320726174696e672e200d0a0d0a596f75206d61792066696e6420746869732077686f6c652073656374696f6e2061626f75742072616e6b7320616e6420726174696e67732068656c7066756c3a0d0a3c686f6d65206661712e7068703f726561643d74266361743d31303523456e7472793130353e4eed7665697320447261676f6e2c202244475320726174696e67222065206f7574726f733c2f686f6d653e, 'Y', '2014-12-21 16:39:14'),
(4585, 5, 0x656e636f7265202573, 'Y', '2014-12-24 13:23:48'),
(2377, 5, 0xc964697465757220646520476f62616e, 'Y', '2014-12-24 13:24:42'),
(4493, 5, 0x46757365617520686f7261697265, 'Y', '2014-12-24 16:31:08'),
(4494, 5, 0x4865757265206c6f63616c65, 'Y', '2014-12-24 16:32:10'),
(6177, 5, 0x566963746f6972657320636c617373e96573, 'Y', '2014-12-24 16:33:49'),
(6161, 5, 0x48e9726f73, 'Y', '2014-12-24 16:34:24'),
(6178, 5, 0x48e9726f73, 'Y', '2014-12-24 16:34:24'),
(4500, 5, 0x50617274696573206d756c74696a6f7565757273, 'Y', '2014-12-24 16:35:22'),
(4498, 5, 0x2573206a6f757273, 'Y', '2014-12-24 16:37:56'),
(2059, 5, 0x4368616e676572206d6f6e20636c617373656d656e74206d616e75656c6c656d656e74, 'Y', '2014-12-24 16:42:45'),
(2211, 5, 0x4368616e676572206d6f6e20636c617373656d656e74206574206d657320616e6e6f746174696f6e73206465206e6976656175, 'Y', '2014-12-24 16:43:10'),
(3303, 5, 0x416476657273616972657320646520253124733a2025322473, 'Y', '2014-12-24 16:45:16'),
(5485, 5, 0x52e9676c6167657320646573206e6f74696669636174696f6e7320652d6d61696c, 'Y', '2014-12-24 16:48:13'),
(5480, 5, 0x56616c69646572, 'Y', '2014-12-24 16:48:44'),
(4503, 25, 0x506f7a61207574696c697a61746f72756c7569, 'Y', '2014-12-27 17:25:34'),
(6337, 3, 0x4f70702e20757365726964, 'Y', '2015-05-14 17:12:37'),
(6347, 3, 0x552e2073742e207261742e, 'Y', '2015-05-14 17:11:56'),
(6349, 3, 0x552e20656e64207261742e, 'Y', '2015-05-14 17:11:56'),
(6154, 36, 0x4e696e637320657265646dc3a96e79, 'Y', '2015-01-07 20:16:56'),
(6157, 36, 0x566973737a616cc3a970c3a973, 'Y', '2015-01-07 20:16:56'),
(6158, 36, 0x4964c591, 'Y', '2015-01-07 20:16:56'),
(6159, 36, 0x46656c6164c3a173, 'Y', '2015-01-07 20:16:56'),
(6187, 36, 0x506f72747567c3a16c20286272617a696c2920287574662d3829, 'Y', '2015-01-07 20:16:56'),
(6201, 36, 0xc39a6a2076657273656e79656b, 'Y', '2015-01-07 20:18:15'),
(6203, 36, 0x46756e6b6369c3b3202325733a202573, 'Y', '2015-01-07 20:18:15'),
(6204, 36, '', 'Y', '2015-01-07 20:18:15'),
(5416, 36, 0x456c74c3a972c3a97320612074c3a1626c616dc3a972657462656e3a20612076c3a1727420257320c3a97274c3a96b2068656c796574742025732074616cc3a16c686174c3b3, 'Y', '2015-01-07 20:33:52'),
(5417, 36, 0x456c74c3a972c3a97320612068656e64696b657062656e3a20612076c3a1727420257320c3a97274c3a96b2068656c796574742025732074616cc3a16c686174c3b3, 'Y', '2015-01-07 20:33:52'),
(5418, 36, 0x456c74c3a972c3a9732061206b6f6d692d62616e3a20612076c3a1727420257320c3a97274c3a96b2068656c796574742025732074616cc3a16c686174c3b3, 'Y', '2015-01-07 20:33:52'),
(1332, 40, 0x436f6d6f20706f73736f20656e636f6e7472617220756d20757375e172696f206573706563ed6669636f3f, 'Y', '2015-01-17 19:25:40'),
(1342, 40, 0x436f6d6f20706f73736f206a6f67617220756d61207061727469646120646520617072656e64697a61646f3f, 'Y', '2015-01-17 19:25:40'),
(1682, 40, 0x436f6d6f2070726f6375726f20706f7220757375e172696f733f, 'Y', '2015-01-17 19:25:40'),
(1684, 40, 0x436f6d6f2070726f6375726172206e6173206d696e686173206d656e736167656e733f, 'Y', '2015-01-17 19:25:40'),
(1743, 40, 0x506f73736f20757361722063f36469676f2048544d4c206e6f20447261676f6e3f, 'Y', '2015-01-17 19:25:40'),
(1745, 40, 0x51756169732063f36469676f7320447261676f6e20657520706f73736f20757361723f, 'Y', '2015-01-17 19:25:40'),
(1904, 40, 0x436f6d6f206661e76f20756d61207265636c616d61e7e36f3f, 'Y', '2015-01-17 19:25:40'),
(2316, 40, 0x706f6e746f73205b25735d20707265636973616d20736572206e756de97269636f73, 'Y', '2015-01-17 19:25:40'),
(2484, 40, 0x4c6967612f6465736c696761204d61726361646f7220547269616e67756c6172, 'Y', '2015-01-17 19:25:40'),
(2491, 40, 0x4c6967612f6465736c696761204e756d657261e7e36f206e617320506564726173, 'Y', '2015-01-17 19:25:40'),
(1558, 36, 0x4bc3a9737ac3ad74c3a973206964656a65, 'Y', '2015-01-20 21:49:32'),
(2531, 36, 0x48656c79666f676c616cc3a1736f73206d656768c3ad76c3a1732074c3b6726cc3a97365, 'Y', '2015-01-20 21:49:32'),
(2533, 36, 0x42697a746f73616e20737a657265746ec3a9642074c3b672c3b66c6e6920656e6e656b20612066656c6861737a6ec3a16cc3b36e616b20612068656c79666f676c616cc3a1736f73206d656768c3ad76c3b36ac3a1743f, 'Y', '2015-01-20 21:49:32'),
(2547, 36, 0x4d656768c3ad76c3a1736f732068656c79666f676c616cc3a17320686f7a7ac3a16164766120612074c3b662626ac3a174c3a96b6f73206ac3a174737a6dc3a1686f7a21, 'Y', '2015-01-20 21:49:32'),
(2549, 36, 0x4d656768c3ad76c3a1736f732068656c79666f676c616cc3a1732074c3b672c3b66c766521, 'Y', '2015-01-20 21:49:32'),
(2565, 36, 0x4e696e6373206d656768c3ad76c3a17320656868657a20612066656c6861737a6ec3a16cc3b3686f7a2e, 'Y', '2015-01-20 21:49:32'),
(2567, 36, 0x4e696e6373206ac3b376c3a168616779c3a17372612076c3a172c3b3206d656768c3ad76c3a1732e, 'Y', '2015-01-20 21:49:32'),
(2911, 5, 0x416a6f7574657220756e6520706172746965206964656e74697175652064616e73206c612053616c6c65206427617474656e7465, 'Y', '2015-01-29 10:45:30'),
(4706, 5, 0x5265666169726520756e6520706172746965206964656e7469717565, 'Y', '2015-01-29 10:45:30'),
(5458, 37, 0xd097d0b020d180d0b5d0b2d18e20d0bdd0b020d0b8d0b3d180d0b0d182d0b020d0b520d0bfd180d0b5d0bfd0bed180d18ad187d0b8d182d0b5d0bbd0bdd0be20d0b4d0b020d181d0b2d0b0d0bbd0b8d182d0b52053474620d0b1d0b5d0b720d0bad0bed0bcd0b5d0bdd182d0b0d180d0b82e, 'Y', '2015-01-29 20:19:08'),
(5461, 37, 0xd0a1d0b2d0b0d0bbd0b5d182d0b52073676620d091d095d09720d0bad0bed0bcd0b5d0bdd182d0b0d180d0b8, 'Y', '2015-01-29 20:19:08'),
(3858, 40, 0x4c696761, 'Y', '2015-02-04 15:40:35'),
(4287, 40, 0x2573203d206d656c686f7220646973747269627569e7e36f20646520677275706f732c20696775616c6d656e74652064697669646964612c2070617261206f7320257320757375e172696f73207265676973747261646f73, 'Y', '2015-02-04 15:40:35'),
(5634, 40, 0x4c6967612044475320636f6d206dfa6c7469706c617320726f6461646173206520677275706f73, 'Y', '2015-02-04 15:40:35'),
(6163, 40, 0x4c6967612050fa626c696361, 'Y', '2015-02-04 15:40:35'),
(6164, 40, 0x4c6967612050726976616461, 'Y', '2015-02-04 15:40:35'),
(6395, 3, 0x464755, 'Y', '2016-04-12 22:05:22'),
(6392, 3, 0x524755, 'Y', '2016-04-12 22:05:22'),
(6180, 40, 0x44444b, 'Y', '2015-02-04 15:54:46'),
(6182, 40, 0x53444b, 'Y', '2015-02-04 15:54:46'),
(6202, 40, 0x54ed7175657465, 'Y', '2015-02-04 15:54:46'),
(6079, 40, 0x526573756d6f20646120726f6461646120282573206a6f6761646f72657320656d20257320677275706f73293a202573206a6f676f7320636f6d65e761646f732c20257320656d2070726f67726573736f2c202573207465726d696e61646f73, 'Y', '2015-02-05 08:44:01'),
(5156, 40, 0x566f63ea20657374e1206a6f67616e646f206e6f2025732e, 'Y', '2015-02-05 08:44:43'),
(4410, 40, 0x4f627365727661e7f5657320736f627265206f7320677275706f73206461206c696761, 'Y', '2015-02-05 08:47:04'),
(4412, 40, 0x4f7320677275706f73207573616d20636c6173736966696361e7e36f20706f723a202573, 'Y', '2015-02-05 09:28:54'),
(6027, 40, 0x417320746162656c617320646520677275706f2061706f6e74616d2070617261206f73206a6f676f732c2065207573616d20617320636f726573, 'Y', '2015-02-05 09:50:50'),
(6028, 40, 0x27257327203d20656d2070726f67726573736f2c2027257327203d2073656d206a6f676f, 'Y', '2015-02-05 09:33:50'),
(5164, 40, 0x646572726f7461, 'Y', '2015-02-05 09:40:57'),
(5165, 40, 0x656d70617465, 'Y', '2015-02-05 09:40:57'),
(6029, 40, 0x766974f372696120706f722066616c7461, 'Y', '2015-02-05 09:40:57'),
(6030, 40, 0x646572726f746120706f722066616c7461, 'Y', '2015-02-05 09:40:57'),
(6031, 40, 0x616e756c61646f, 'Y', '2015-02-05 09:40:57'),
(6032, 40, 0x73656d20726573756c7461646f, 'Y', '2015-02-05 09:40:57'),
(6035, 40, 0x6a6f676f207465726d696e61646f20636f6d20616c67756d20706c616361722c20706f7220646573697374ea6e636961206f7520706f722074656d706f3a20257320706f6e746f732070617261206f2076656e6365646f722c20257320706f6e746f732070617261206f207065726465646f72, 'Y', '2015-02-05 09:40:57'),
(6036, 40, 0x6a6f676f207465726d696e61646f20706f722066616c74613a20257320706f6e746f732070617261206f2076656e6365646f722c20257320706f6e746f732070617261206f207065726465646f72, 'Y', '2015-02-05 09:50:09'),
(6037, 40, 0x6a6f676f20656d70617461646f3a20257320706f6e746f73207061726120616d626f73, 'Y', '2015-02-05 09:50:09'),
(6038, 40, 0x6a6f676f207465726d696e61646f2073656d20726573756c7461646f3a20257320706f6e746f7320616d626f73, 'Y', '2015-02-05 09:58:32'),
(6039, 40, 0x6a6f676f20616e756c61646f3a20257320706f6e746f73, 'Y', '2015-02-05 09:50:09'),
(6040, 40, 0x6a6f676f207465726d696e61646f20636f6d20706c61636172206f7520656d706174653a20257320706f6e746f2873292070617261206361646120257320706f6e746f287329206e6f20706c61636172, 'Y', '2015-02-05 09:50:09'),
(6041, 40, 0x6a6f676f73207465726d696e61646f7320706f7220646573697374ea6e6369612028257320706f6e746f73292c2074656d706f2028257320706f6e746f73292c2066616c74612028257320706f6e746f73292c2073656d20726573756c7461646f2028257320706f6e746f7329, 'Y', '2015-02-05 09:50:09'),
(6042, 40, 0x6de1782e20646520706f6e746f7320706f72206a6f676f3a20257320706f6e746f73, 'Y', '2015-02-05 09:50:09'),
(6043, 40, 0x706f6e746f732070617261206a6f676f73207465726d696e61646f7320706f7220636f6e746167656d206f7520656d70617465, 'Y', '2015-02-05 09:50:09'),
(6044, 40, 0x706f6e747561e7e36f206e65676174697661207065726d6974696461, 'Y', '2015-02-05 09:50:09'),
(4421, 40, 0x5b25735d206e6f20666f726d61746f2022766974f372696173203a20646572726f74617322203d206efa6d65726f20646520766974f372696173206520646572726f7461732070617261206f20757375e172696f, 'Y', '2015-02-05 09:53:53'),
(6033, 40, 0x5b25735d203d20746f74616c20646520706f6e746f732063616c63756c61646f20636f6d206f7320726573756c7461646f7320646f206a6f6761646f72, 'Y', '2015-02-05 09:55:46'),
(6034, 40, 0x5469706f20646520706f6e747561e7e36f, 'Y', '2015-02-05 09:57:19'),
(4423, 40, 0x5b25735d203d20646573656d7061746520636f6d20536f646f7320283c753e536f3c2f753e6d6120646f7320706c616361726573203c753e443c2f753e6572726f7461643c753e6f733c2f753e29, 'Y', '2015-02-05 10:01:53'),
(5166, 40, 0x5b25735d203d20436f6c6f6361e7e36f20646f20757375e172696f206e6f20677275706f202831203d206d656c686f7220636f6c6f6361e7e36f293b20466f726d61746f20224e20284e432920257322, 'Y', '2015-02-05 10:18:21'),
(4889, 40, 0x557375e172696f73206ee36f20616c6f6361646f73, 'Y', '2015-02-05 10:05:49'),
(5167, 40, 0x4e203d20286f7063696f6e616c29206eed76656c20646566696e69646f2070656c6f2064697265746f7220646520746f726e65696f2c2076e16c69646f206170656e617320616f2066696e616c2064617320726f6461646173, 'Y', '2015-02-05 10:12:04'),
(5169, 40, 0x4e43203d206eed76656c207072656c696d696e61722063616c63756c61646f2c206f6d697469646f207175616e646f206ee36f207075646572207365722063616c63756c61646f206f75207175616e646f20666f7220696775616c20616f206eed76656c204e, 'Y', '2015-02-05 10:12:04'),
(5663, 40, 0x2573203d206d6172636120646f20757375e172696f2076656e6365646f7220646f20677275706f20286176616ee76120706172612061207072f378696d6120726f646164612c206f75206d6172636120726573756c7461646f2066696e616c29, 'Y', '2015-02-05 10:12:04'),
(5892, 40, 0x6a6f6761646f7220726574697261646f, 'Y', '2015-02-05 10:13:19'),
(6012, 40, 0x52657469726172204a6f6761646f72, 'Y', '2015-02-05 10:13:19'),
(6045, 40, 0x4e203d2027257327203d20757375e172696f20726574697261646f206461207072f378696d6120726f64616461, 'Y', '2015-02-05 10:16:10'),
(6076, 40, 0x4120224efa6d65726f206465204a6f676f732220e9206261736561646f20656d20756d206661746f72206465202573206a6f676f7320706f7220646573616669616e746521, 'Y', '2015-02-05 10:16:10'),
(6078, 40, 0x4a6f676f7320646f20557375e172696f, 'Y', '2015-02-05 10:16:10'),
(3147, 5, 0x416363e87320726170696465, 'Y', '2015-03-04 14:41:15'),
(5228, 5, 0x4d65732070617274696573206d756c74696a6f75657572, 'Y', '2015-03-04 14:41:58'),
(3148, 5, 0x4465726e69657273206d6573736167657320737572206c6520666f72756d, 'Y', '2015-03-04 14:42:43'),
(3149, 5, 0x416476657273616972657320636f6e6e656374e973, 'Y', '2015-03-04 14:43:30'),
(3150, 5, 0x546f7573206c6573206a6f756575727320636f6e6e656374e973, 'Y', '2015-03-04 14:43:54'),
(3151, 5, 0x50617274697220656e20766163616e636573, 'Y', '2015-03-04 14:44:28'),
(3152, 5, 0x4d6f646966696572206d6f6e2070726f66696c, 'Y', '2015-03-04 14:44:59'),
(2651, 5, 0x50726f66696c20656e72656769737472e9, 'Y', '2015-03-04 14:46:29'),
(2055, 5, 0x56616c69646572, 'Y', '2015-03-04 14:49:46'),
(5588, 5, 0x4f7576726972206465206e6f7576656c6c65287329207061727469652873292064616e73206c612073616c6c65206427617474656e7465, 'Y', '2015-03-04 14:52:11'),
(5585, 5, 0x566f6972206d6573206d6573736167657320657420646f737369657273, 'Y', '2015-03-04 14:52:45'),
(5587, 5, 0x496e766974657220756e206a6f7565757220e020666169726520756e6520706172746965, 'Y', '2015-03-04 14:53:13'),
(5485, 8, 0xb971b66cb371aabe, 'Y', '2015-05-12 08:41:11'),
(5485, 34, 0xe99bbbe983b5e9809ae79fa5, 'Y', '2015-05-12 08:41:51'),
(5485, 10, 0xb5e7d3cacda8d6aa, 'Y', '2015-05-12 08:42:39'),
(5485, 33, 0xe794b5e982aee9809ae79fa5, 'Y', '2015-05-12 08:42:50'),
(6358, 40, 0x62fa6c6761726f, 'Y', '2015-06-19 01:10:00'),
(6317, 40, 0x25732066616c6f75, 'Y', '2015-06-19 06:26:07'),
(6326, 6, 0x4d6f737472617220746f646173206c6173207061727469646173, 'Y', '2015-06-20 00:48:58'),
(6159, 6, '', 'Y', '2015-06-21 04:58:13'),
(5782, 6, 0x477561726461646f20657869746f736f, 'Y', '2015-06-21 05:00:31'),
(6323, 6, 0x6d616e64617220756e206d656e73616a65207072697661646f2061206f74726f207573756172696f, 'Y', '2015-06-21 05:00:31'),
(6324, 6, 0x56657220746f646f73206c6f73207573756172696f73, 'Y', '2015-06-21 05:00:31'),
(6325, 6, 0x566572206d697320636f6e746163746f73207072697661646f73, 'Y', '2015-06-21 05:00:31'),
(6158, 6, 0x5469656d706f, 'Y', '2015-06-21 05:00:56'),
(6155, 6, 0x426c616e636f, 'Y', '2015-08-24 04:29:29'),
(6319, 6, 0x4d6564616c6c6120646520506c617461, 'Y', '2015-06-21 05:02:01'),
(6318, 6, 0x4d6564616c6c61206465206f726f, 'Y', '2015-06-21 05:02:37'),
(6201, 6, 0x546f726e656f73206e7565766f73, 'Y', '2015-06-21 05:02:37'),
(6320, 6, 0x4d6564616c6c612064652062726f6e6365, 'Y', '2015-06-21 05:03:24'),
(5528, 6, 0x5265676c6173202573, 'Y', '2015-06-21 05:32:16'),
(2416, 6, 0x5265676c6173, 'Y', '2015-06-21 05:21:17'),
(2746, 6, 0x48616e207369646f2075736164617320756e6173207265676c617320646573636f6e6f6369646173, 'Y', '2015-06-21 05:21:17'),
(2914, 6, 0x4a61706f6e65736173, 'Y', '2015-06-21 05:21:17'),
(2915, 6, 0x4368696e6173, 'Y', '2015-06-21 05:21:17'),
(6198, 6, 0xda6c74696d61206a756761646120287072696d65726f206c617320616e74696775617329, 'Y', '2015-06-21 06:43:43'),
(6199, 6, 0xda6c74696d61206a756761646120287072696d65726f206c6173206e756576617329, 'Y', '2015-06-21 06:43:43'),
(6231, 6, 0xda6c74696d61206a75676164612064656c20746f726e656f, 'Y', '2015-06-21 06:09:55'),
(6245, 6, 0xda6c74696d61206a75676164612064656c20746f726e656f, 'Y', '2015-06-21 06:09:55'),
(4589, 6, 0x5061727469646173207465726d696e6164617320706f7220656c207573756172696f, 'Y', '2015-06-21 06:28:42'),
(3372, 6, 0x546f646f73206c6173207061727469646173207465726d696e61646173, 'Y', '2015-06-21 06:29:49'),
(2411, 6, 0x43616e63656c6172206a7567616461, 'Y', '2015-06-21 06:31:18'),
(2646, 6, 0x5469656d706f2072657374616e7465, 'Y', '2015-06-21 06:32:37'),
(3368, 6, 0x4d69207469656d706f2072657374616e7465, 'Y', '2015-06-21 06:33:58'),
(3369, 6, 0x5469656d706f2072657374616e74652064656c206f706f6e656e7465, 'Y', '2015-06-21 06:33:58'),
(6355, 6, 0x4d69207469656d706f2072657374616e7465, 'Y', '2015-06-21 06:33:58'),
(6356, 6, 0x5469656d706f2072657374616e74652064656c206f706f6e74656e7465, 'Y', '2015-06-21 06:33:58'),
(2457, 6, 0x45737461626c65636572207072696f7269646164, 'Y', '2015-06-21 06:36:03'),
(2645, 6, 0x5072696f7269646164, 'Y', '2015-06-21 06:36:03'),
(6354, 6, 0x5072696f7269646164, 'Y', '2015-06-21 06:36:17'),
(5796, 6, 0x4a756761646173, 'Y', '2015-06-21 06:49:24'),
(6142, 4, '', 'Y', '2015-06-21 11:45:26'),
(6233, 4, 0x28446174756d73666f726d6174205b25735d2c206c6f6b616c65205a6569747a6f6e6529, 'Y', '2015-06-21 11:45:48'),
(5759, 4, 0x53707261636865, 'Y', '2015-06-21 11:47:47'),
(5779, 4, 0x44617320537069656c20676568f67274206e69636874207a752064656d20616e6765676562656e656e205475726e6965722e, 'Y', '2015-06-21 11:49:51'),
(6235, 4, 0x446965205a656974616e676162656e2073696e64207a752067726fdf2e20204269747465206bfc727a657265205a656974616e676162656e2076657277656e64656e2e, 'Y', '2015-06-21 11:49:51'),
(5502, 4, 0x556d2061627a757374696d6d656e207a75206bf66e6e656e206dfc7373656e20536965206d696e64657374656e7320257320537069656c6520616267657363686c6f7373656e20686162656e20756e6420696e2064656e206c65747a74656e20257320546167656e20616b746976206765737069656c7420686162656e2e, 'Y', '2015-06-21 11:51:52'),
(6234, 4, 0x4d65696e65205374696d6d70756e6b7465, 'Y', '2015-06-21 11:51:52'),
(6197, 4, 0x7a6974696572656e, 'Y', '2015-06-21 11:53:13'),
(6200, 4, 0x556b7261696e69736368, 'Y', '2015-06-21 11:54:02'),
(5768, 4, 0x45727761727465205a61686c2066fc7220257320696d2042657265696368202573, 'Y', '2015-06-21 11:55:30'),
(5769, 4, 0x4d696e2d4175737761686c, 'Y', '2015-06-21 11:55:30'),
(5770, 4, 0x4d61782d4175737761686c, 'Y', '2015-06-21 11:55:30'),
(5714, 4, 0x5a6569676520537069656c7374e4726b656ee46e646572756e67, 'Y', '2015-06-21 11:58:55'),
(5715, 4, 0x4b6f6e6e7465204e75747a6572206d6974204e75747a65722d4944205b25735d206e696368742066696e64656e, 'Y', '2015-06-21 11:58:55'),
(5716, 4, 0x4e75747a65722d49442066fc72207363687761727a656e20537069656c6572206665686c74, 'Y', '2015-06-21 11:58:55'),
(5717, 4, 0x4e75747a65722d49442066fc72207765697373656e20537069656c6572206665686c74, 'Y', '2015-06-21 11:58:55'),
(5718, 4, 0x46617262656e207765636873656c6e, 'Y', '2015-06-21 11:58:55'),
(6161, 4, 0x48656c6425, 'Y', '2015-06-21 11:59:56'),
(6178, 4, 0x48656c642025, 'Y', '2015-06-21 12:01:49'),
(6179, 4, 0x50726f7a656e74616e7465696c2064657220537069656c65206d69742073636877e463686572656e20537069656c65726e, 'Y', '2015-06-21 12:01:49'),
(6316, 4, 0x506f736974696f6e2072656c61746976207a756d20537069656c6272657474, 'Y', '2015-06-21 12:02:36'),
(6357, 4, 0x456e6b6f64696572756e67, 'Y', '2015-06-21 12:02:36'),
(5583, 4, 0x5a6569676520616c6c652053656974656e206469657365722057656273697465, 'Y', '2015-06-21 12:05:02'),
(3373, 6, 0x546f646173206c617320706172746964617320656e20637572736f, 'Y', '2015-06-23 00:19:08'),
(3370, 6, 0x546f646173206c61732070617274696461732071756520657374e16e207369656e646f206f627365727661646173, 'Y', '2015-06-23 00:22:37'),
(3375, 6, 0x506172746964617320656e20637572736f20646520253124733a2025322473, 'Y', '2015-06-23 00:28:52'),
(4500, 6, 0x5061727469646173206d756c74696a756761646f72, 'Y', '2015-06-23 03:52:27'),
(5228, 6, 0x4d6973207061727469646173206d756c74696a756761646f72, 'Y', '2015-06-23 03:52:27'),
(6373, 3, 0x422e2074696d652072656d2e, 'Y', '2015-09-13 23:12:40'),
(3387, 6, 0x56657220696e666f726d616369f36e2064656c207573756172696f, 'Y', '2015-06-23 20:31:18'),
(5714, 6, 0x4d6f73747261722063616d62696f7320656e206c6f732072616e676f73, 'Y', '2015-09-22 17:32:05'),
(1480, 6, 0x5061ed73, 'Y', '2015-06-23 20:58:24'),
(1498, 6, 0x436f6d656e746172696f73, 'Y', '2015-06-23 21:01:46'),
(2465, 6, 0x282573206a7567616461732c20257320636f6d656e746172696f7329, 'Y', '2015-06-23 21:01:46'),
(3359, 6, 0x4f63756c74617220636f6d656e746172696f73206465206c612070617274696461, 'Y', '2015-06-23 21:01:46'),
(5764, 6, 0x4f63756c74617220636f6d656e746172696f73, 'Y', '2015-06-23 21:01:46'),
(5542, 6, 0x4d692052616e676f, 'Y', '2015-06-23 21:12:03'),
(3121, 6, '', 'Y', '2015-06-23 21:12:32'),
(1420, 6, 0x52616e676f204e6567726f, 'Y', '2015-08-04 18:58:14'),
(1424, 6, 0x52616e676f20426c616e636f, 'Y', '2015-08-04 18:58:54'),
(1463, 6, 0x4d6f7374726172206c61206772e1666963612064656c2072616e676f, 'Y', '2015-06-23 21:15:17'),
(1523, 6, 0x486973746f6772616d612064652072616e676f73, 'Y', '2015-06-23 21:15:17'),
(2059, 6, 0x43616d6269617220656c2052616e676f207920656c2052616e7175656f, 'Y', '2015-06-23 21:15:17'),
(2435, 6, 0x52616e676f2061637475616c, 'Y', '2015-06-23 21:16:31'),
(3093, 6, 0x5265737472696363696f6e65732064652072616e676f, 'Y', '2015-06-23 21:16:31'),
(3117, 6, 0x52616e676f206e6f2076e16c69646f, 'Y', '2015-06-23 21:16:31'),
(3126, 6, 0x52616e676f20414741, 'Y', '2015-06-23 21:16:31'),
(3131, 6, 0x52616e676f20656e204b4753, 'Y', '2015-06-23 21:16:31'),
(3132, 6, 0x52616e676f20656e20494753, 'Y', '2015-06-23 21:16:31'),
(3133, 6, 0x52616e676f20656e204f4753, 'Y', '2015-06-23 21:17:58'),
(3136, 6, 0x52616e676f20495954, 'Y', '2015-06-23 21:17:58'),
(3413, 6, 0x4d69206772e1666963612064656c2072616e676f, 'Y', '2015-06-23 21:17:58'),
(3521, 6, 0x52616e676f2061637475616c2064656c207573756172696f, 'Y', '2015-06-23 21:17:58'),
(3523, 6, 0x436f7665727469722072616e676f, 'Y', '2015-06-23 21:17:58'),
(1506, 6, 0x5469706f, 'Y', '2015-06-24 01:47:53'),
(1507, 6, 0x43617270657461, 'Y', '2015-06-24 01:47:53'),
(1509, 6, 0x44697265636369f36e, 'Y', '2015-06-24 01:47:53'),
(1511, 6, 0x41, 'Y', '2015-06-24 01:47:53'),
(1512, 6, 0x4465, 'Y', '2015-06-24 01:47:53'),
(1516, 6, 0x596f, 'Y', '2015-06-24 01:47:53'),
(1518, 6, 0x41, 'Y', '2015-06-24 01:48:39'),
(1519, 6, 0x4465, 'Y', '2015-06-24 01:48:39'),
(1417, 6, 0x4e6567726f, 'Y', '2015-08-04 23:27:48'),
(1418, 6, 0x4944204e6567726f, 'Y', '2015-08-04 18:58:14'),
(1419, 6, 0x52616e676f20696e696369616c204e6567726f, 'Y', '2015-08-04 18:57:01'),
(1421, 6, 0x426c616e636f, 'Y', '2015-08-04 23:27:48'),
(1422, 6, 0x494420426c616e636f, 'Y', '2015-08-04 18:58:54'),
(1423, 6, 0x52616e676f20696e696369616c20426c616e636f, 'Y', '2015-08-04 18:57:01'),
(1425, 6, 0x52616e676f2066696e616c204e6567726f, 'Y', '2015-08-04 18:58:14'),
(1426, 6, 0x4469666572656e6369612064652072616e676f204e6567726f, 'Y', '2015-08-04 18:58:14'),
(1427, 6, 0x52616e676f2066696e616c20426c616e636f, 'Y', '2015-08-04 18:58:54'),
(1428, 6, 0x4469666572656e6369612064652072616e676f20426c616e636f, 'Y', '2015-08-04 18:58:54'),
(1436, 6, 0x436f6c6f726573, 'Y', '2015-06-24 04:32:58'),
(1441, 6, 0x50756e74616a65, 'Y', '2015-06-24 04:32:58'),
(1446, 6, 0xda6c74696d6f2061636365736f2064656c206f706f6e656e7465, 'Y', '2015-06-24 04:32:58'),
(1447, 6, 0x52656c6f6a20656e2066696e2064652073656d616e61, 'Y', '2015-06-24 04:32:58'),
(1483, 6, 0x235061727469646173, 'Y', '2015-06-24 04:32:58'),
(1490, 6, 0xda6c74696d6f2061636365736f, 'Y', '2015-06-24 04:32:58'),
(1493, 6, 0x546f646f, 'Y', '2015-06-24 04:32:58'),
(1497, 6, '', 'Y', '2015-06-24 04:32:58'),
(1731, 6, '', 'Y', '2015-06-24 04:33:22'),
(1927, 6, 0x526573756c7461646f, 'Y', '2015-06-24 04:33:22'),
(1926, 6, 0x4d6f737472617220656c2063e16c63756c6f2064652072616e676f, 'Y', '2015-06-24 05:00:56'),
(2561, 6, 0x456c207573756172696f205b25735d206e6f207469656e652072616e676f, 'Y', '2015-06-24 05:00:56'),
(6346, 6, 0x4469666572656e6369612064652072616e676f2064656c206f706f6e656e7465, 'Y', '2015-06-24 05:02:28'),
(6347, 6, 0x52616e676f20696e696369616c2064656c207573756172696f, 'Y', '2015-06-26 17:16:04'),
(6348, 6, 0x52616e676f20696e696369616c2064656c207573756172696f, 'Y', '2015-06-26 17:16:04'),
(6349, 6, 0x52616e676f2066696e616c2064656c207573756172696f, 'Y', '2015-06-26 17:16:04'),
(6350, 6, 0x52616e676f2066696e616c2064656c207573756172696f, 'Y', '2015-06-26 17:16:04'),
(6351, 6, 0x4469666572656e6369612064652072616e676f2064656c207573756172696f, 'Y', '2015-06-24 05:02:28'),
(6352, 6, 0x4469666572656e6369612064652072616e676f2064656c207573756172696f, 'Y', '2015-06-24 05:02:28'),
(6332, 6, 0x4469666572656e6369612064652072616e676f206465204e6567726f, 'Y', '2015-06-24 05:04:14'),
(6333, 6, 0x52616e676f2066696e616c20646520426c616e636f, 'Y', '2015-06-26 17:15:10'),
(6334, 6, 0x4469666572656e6369612064652072616e676f20646520426c616e636f, 'Y', '2015-06-24 05:04:14'),
(6339, 6, 0x52616e676f2064656c206f706f6e656e7465, 'Y', '2015-06-24 05:04:14'),
(6340, 6, 0x52616e676f2064656c206f706f6e656e7465, 'Y', '2015-06-24 05:04:14'),
(6341, 6, 0x52616e676f20696e696369616c2064656c206f706f6e656e7465, 'Y', '2015-06-26 17:11:15'),
(6342, 6, 0x52616e676f20696e696369616c2064656c206f706f6e656e7465, 'Y', '2015-06-26 17:11:15'),
(6343, 6, 0x52616e676f2066696e616c2064656c206f706f6e656e7465, 'Y', '2015-06-26 17:11:15'),
(6344, 6, 0x52616e676f2066696e616c2064656c206f706f6e656e7465, 'Y', '2015-06-26 17:11:15'),
(6345, 6, 0x4469662e2064652072616e676f2064656c206f706f6e656e7465, 'Y', '2015-06-24 22:30:35'),
(5522, 6, 0x456c207573756172696f206e6f207469656e652072616e676f, 'Y', '2015-06-24 05:05:58'),
(6329, 6, 0x52616e676f20696e696369616c206465204e6567726f, 'Y', '2015-06-26 17:15:10'),
(6330, 6, 0x52616e676f20696e696369616c20646520426c616e636f, 'Y', '2015-06-26 17:15:10'),
(6331, 6, 0x52616e676f2066696e616c206465204e6567726f, 'Y', '2015-06-26 17:15:10'),
(5524, 6, 0x456c206f706f6e656e7465206e656365736974612074656e657220756e2072616e676f207061726120706f646572206a7567617220756e612070617274696461207175652061666563746120656c2072616e676f2e, 'Y', '2015-06-24 05:24:19'),
(2401, 6, 0x4d6f737472617220696e666f726d616369f36e206465206c612070617274696461, 'Y', '2015-06-24 22:12:26'),
(2459, 6, 0x4d6f73747261722070617274696461, 'Y', '2015-06-24 22:12:26'),
(3374, 6, 0x5061727469646173207465726d696e6164617320646520253124733a2025322473, 'Y', '2015-06-24 22:18:32'),
(1442, 6, 0xbf47616ef33f, 'Y', '2015-06-24 22:20:55'),
(6335, 6, 0x4f706f6e656e7465, 'Y', '2015-06-24 22:29:32'),
(6336, 6, 0x4f706f6e656e7465, 'Y', '2015-06-24 22:29:32'),
(6337, 6, 0x49442064656c206f706f6e656e7465, 'Y', '2015-06-24 22:26:37'),
(6338, 6, 0x49442064656c206f706f6e656e7465, 'Y', '2015-06-24 22:26:37'),
(2432, 6, 0x48e16e646963617020657374e16e646172, 'Y', '2015-06-25 04:14:44'),
(2499, 6, 0x43616d6269617220656c2068e16e6469636170, 'Y', '2015-06-25 04:15:56'),
(2500, 6, 0x43616d6269617220656c20636f6c6f72207920656c2068e16e64696361702e, 'Y', '2015-06-25 04:15:56'),
(2506, 6, 0x416a75737465732064656c2068e16e6469636170, 'Y', '2015-06-25 04:15:56'),
(2397, 6, 0xa141736567fa726174652071756520746f646f73206c6f7320626f7264657320646520747573207465727269746f72696f7320657374e16e206365727261646f7320616e746573206465207465726d696e617220656c206a7565676f21, 'Y', '2015-06-26 17:01:37'),
(6187, 6, 0x506f7274756775e973202842726173696c2920287574662d3829, 'Y', '2015-06-26 17:18:22'),
(5602, 6, 0x4469726563746f72, 'Y', '2015-06-26 17:21:13'),
(2524, 6, 0x41f16164697220756e61206e7565766120706172746964612061206c612073616c6120646520657370657261, 'Y', '2015-06-26 17:26:04'),
(3264, 6, 0x41f16164697220756e61206e756576612070617274696461, 'Y', '2015-06-26 17:26:04'),
(3265, 6, 0x41f16164697220756e61206e7565766120706172746964612061206c612073616c6120646520657370657261, 'Y', '2015-06-26 17:26:04'),
(5531, 6, 0x416a757374657320657374e16e646172, 'Y', '2015-06-26 17:31:36'),
(5535, 6, 0x55736120656c206b6f6d6920706f72206465666563746f206465, 'Y', '2015-06-26 17:33:25'),
(1505, 6, 0x48e16e6469636170207072656369736f2028656c206b6f6d6920657320616a75737461646f20706f7220656c2073697374656d6129, 'Y', '2015-06-26 17:38:35'),
(3056, 6, 0x416a75737465206d616e75616c20286a7565676f73206120696775616c206f20636f6e2068e16e646963617029, 'Y', '2015-06-26 17:40:55'),
(3089, 6, 0x416a75737465206d616e75616c, 'Y', '2015-06-26 17:40:55'),
(2891, 6, 0x416a75737465206d616e75616c206d6920636f6c6f72205b25735d2c2068e16e64696361702025732c206b6f6d69202573, 'Y', '2015-08-06 04:23:57'),
(5682, 6, 0x4d6920636f6c6f72, 'Y', '2015-06-26 17:43:36'),
(3058, 6, 0x506965647261732064652068e16e6469636170, 'Y', '2015-06-26 17:44:24'),
(6202, 6, '', 'Y', '2015-06-27 20:38:42'),
(2368, 6, 0x526573707565737461206e75657661, 'Y', '2015-06-28 00:12:48'),
(2370, 6, 0x46696e616c, 'Y', '2015-06-28 00:12:48'),
(2371, 6, 0x5072696d65726120726573707565737461, 'Y', '2015-06-28 00:12:48'),
(2374, 6, 0x53f36c6f206c656374757261, 'Y', '2015-06-28 00:13:44'),
(2375, 6, 0x4f63756c746172206175746f72, 'Y', '2015-06-28 00:13:44'),
(2376, 6, 0x4d6f7374726172206175746f72, 'Y', '2015-06-28 00:13:44'),
(2380, 6, 0x4d6f73747261722066696c6173, 'Y', '2015-06-28 00:13:44'),
(2382, 6, 0x4d656e73616a652061637475616c697a61646f, 'Y', '2015-06-28 00:13:44'),
(2388, 6, 0x546f646f73206c6f73206d656e73616a6573206d6f73747261646f73, 'Y', '2015-06-28 00:15:17'),
(2389, 6, 0x546f646f73206c6f73206d656e73616a6573206f63756c746f73, 'Y', '2015-06-28 00:15:17'),
(2390, 6, 0x4d6973206d656e73616a6573206f63756c746f73, 'Y', '2015-06-28 00:15:17'),
(2391, 6, 0x4d656e73616a65732070656e6469656e74657320706f72206170726f62616369f36e, 'Y', '2015-06-28 00:15:17'),
(2392, 6, 0x28736f6c6f20656c206d6f64657261646f7229, 'Y', '2015-06-28 00:15:17'),
(4621, 6, 0x6e7565766f, 'Y', '2015-06-28 00:16:43'),
(4622, 6, 0x726573706f6e646572, 'Y', '2015-06-28 00:16:43'),
(4623, 6, 0x6f63756c746172, 'Y', '2015-06-28 00:16:43'),
(4624, 6, 0x6d6f7374726172, 'Y', '2015-06-28 00:16:43'),
(4690, 6, 0x416e747567756f73207072696d65726f, 'Y', '2015-06-28 00:16:43'),
(4691, 6, 0x4e7565766f73207072696d65726f, 'Y', '2015-06-28 00:16:43'),
(4692, 6, 0x566973746120646520e172626f6c, 'Y', '2015-06-28 00:16:43'),
(4693, 6, '', 'Y', '2015-06-28 00:16:43'),
(6197, 6, 0x6369746172, 'Y', '2015-06-29 05:14:43'),
(1464, 6, 0x4d6f7374726172206f706f6e656e746573, 'Y', '2015-06-28 04:52:57'),
(1467, 6, 0x4d6f7374726172206d6973206f706f6e656e746573, 'Y', '2015-06-28 04:52:57'),
(1471, 6, 0x41f161646972206e7565766f20636f6e746163746f, 'Y', '2015-06-28 04:52:57'),
(1476, 6, 0x45646974617220636f6e746163746f, 'Y', '2015-06-28 04:52:57'),
(1477, 6, 0x41f16164697220636f6e746163746f, 'Y', '2015-06-28 04:52:57'),
(1478, 6, 0x41637469766f, 'Y', '2015-06-28 04:52:57'),
(1482, 6, 0x41636570746120696e7669746163696f6e65732061206a75676172, 'Y', '2015-06-28 04:52:57'),
(1484, 6, 0x456e20637572736f, 'Y', '2015-06-28 04:52:57'),
(1485, 6, 0x5465726d696e61646173, 'Y', '2015-08-04 18:50:05'),
(1489, 6, 0x416374697669646164, 'Y', '2015-06-28 04:54:35'),
(1541, 6, 0x5573756172696f20646573636f6e6f6369646f, 'Y', '2015-06-28 04:54:35'),
(1542, 6, 0xa1436f6e746163746f2072656d6f7669646f21, 'Y', '2015-06-28 04:54:35'),
(1543, 6, 0xa1436f6e746163746f20677561726461646f21, 'Y', '2015-06-28 04:57:37'),
(1545, 6, 0x45646974617220636f6e746163746f, 'Y', '2015-06-28 04:55:04'),
(1547, 6, 0x456c696d696e617220636f6e746163746f, 'Y', '2015-06-28 04:55:33'),
(1550, 6, 0x4e6f746173, 'Y', '2015-06-28 04:56:27'),
(1552, 6, 0x4775617264617220636f6e746163746f, 'Y', '2015-06-28 04:56:27'),
(1553, 6, 0x4d6f737472617220636f6e746163746f73, 'Y', '2015-06-28 04:56:27'),
(1558, 6, 0x43726561646f, 'Y', '2015-06-28 04:56:27'),
(1562, 6, 0x4c6973746120646520636f6e746163746f73, 'Y', '2015-06-28 04:56:27'),
(1565, 6, 0x506172746964617320656e20637572736f, 'Y', '2015-06-28 04:56:54'),
(1566, 6, 0x5061727469646173207465726d696e61646173, 'Y', '2015-06-28 04:56:54'),
(1572, 6, 0x4d6f73747261726d6520636f6d6f206f706f6e656e7465, 'Y', '2015-06-28 04:57:54'),
(1573, 6, 0x4d6f73747261726d6520636f6d6f206d69206f706f6e656e7465, 'Y', '2015-06-28 04:58:11'),
(1574, 6, 0x496e74657263616d62696172206c6f7320726f6c6573206465206c6f73206f706f6e656e746573, 'Y', '2015-06-28 04:58:35'),
(1575, 6, 0x436f6c6f72206465206c6f73206a756761646f726573, 'Y', '2015-06-28 04:58:53'),
(1348, 6, 0x4f6c766964e9206d6920636f6e7472617365f1612e20bf5175e920707565646f2068616365723f, 'Y', '2015-06-29 00:31:31'),
(1922, 6, 0x50617261206de17320646574616c6c657320736f627265206573746f206d697261206c617320464151202870726567756e746173206672656375656e74657329, 'Y', '2015-06-29 00:32:21'),
(2737, 6, 0x496d706f7369626c652c206c6f7320696e76697461646f73206e6f2070756564656e2072656369626972206d656e73616a6573, 'Y', '2015-06-29 00:34:59'),
(2740, 6, 0x4e6f207469656e6573207065726d697469646f20656e76696172206d656e73616a6573206d617369766f732e, 'Y', '2015-09-16 01:59:32'),
(2742, 6, 0x5475206ced6d6974652064652070617274696461732061637469766173206861207369646f20657863656469646f2e, 'Y', '2015-09-16 01:59:32'),
(2743, 6, 0x456c206ced6d6974652064652070617274696461732061637469766173206465207475206f706f6e656e7465206861207369646f20657863656469646f2e, 'Y', '2015-09-16 01:59:32');
INSERT INTO `Translations` (`Original_ID`, `Language_ID`, `Text`, `Translated`, `Updated`) VALUES
(2754, 6, 0x4861206f6375727269646f20756e206572726f72206d69656e7472617320736520656e766961626120656c206d656e73616a652e, 'Y', '2015-09-16 01:59:32'),
(2755, 6, 0x4e656365736974617320756e2072616e676f207061726120696e696369617220756e612070617274696461206d756c74696a756761646f722e, 'Y', '2015-09-16 01:58:11'),
(2765, 6, 0x5469656e65732071756520696e69636961722073657369f36e207061726120706f6465722068616365722065736f2e, 'Y', '2015-09-16 01:58:11'),
(2766, 6, 0x4c61732072617a6f6e657320646520657374652070726f626c656d6120707564696572612073657220616c67756e61206465206c6173207369677569656e7465733a, 'Y', '2015-06-29 00:39:27'),
(2768, 6, 0x5475732027636f6f6b696573272073652068616e2076656e6369646f2e204573746f207061736120756e612076657a20616c206d65732e, 'Y', '2015-06-29 00:39:27'),
(2773, 6, 0x54fa206e6f2065726573206a756761646f7220656e20657374612070617274696461, 'Y', '2015-09-16 02:00:18'),
(2775, 6, 0x4e6f20657320706f7369626c6520726573706f6e6465722065737465206d656e73616a652e, 'Y', '2015-09-16 02:00:18'),
(2776, 6, 0x456c2072616e676f2065737065636966696361646f20657320696e76616c69646f2e, 'Y', '2015-06-29 00:42:56'),
(2780, 6, 0x4e6f20736520707565646520656e636f6e747261722065736120666f726d612e, 'Y', '2015-09-16 02:00:18'),
(2781, 6, 0x4e6f207469656e6573207065726d697469646f20657363726962697220656e206573746520666f726f2e, 'Y', '2015-09-16 02:00:18'),
(2788, 6, 0x536920686173206f6c76696461646f20747520636c6176652c20746520706f64656d6f7320656e7669617220756e61206e7565766120636c61766520706f7220636f7272656f20656c65637472f36e69636f2e, 'Y', '2015-11-29 18:43:22'),
(2787, 6, 0x486173206c6c656761646f207461726465207061726120756e6972746520612065737465206a7565676f206465206c612073616c61206465206573706572612e, 'Y', '2015-09-16 02:00:18'),
(2789, 6, 0x4c61206e7565766120636c61766520736572e12067656e6572616461206465206d616e65726120616c6561746f7269612c207065726f207075656465732063616d626961726c61206465737075e9732c2065646974616e646f2074752070657266696c20656e206c612070e167696e6120636f72726573706f6e6469656e74652e, 'Y', '2015-10-28 17:14:40'),
(2790, 6, 0x4d69656e74726173206e6f2063616d62696573206c6120636c6176652c206c61206e756576612079206c61207669656a6120636f6e74696e756172e16e2066756e63696f6e616e646f2e, 'Y', '2015-10-28 17:16:02'),
(4566, 6, '', 'Y', '2015-06-29 01:00:17'),
(4574, 6, '', 'Y', '2015-06-29 01:00:17'),
(4575, 6, '', 'Y', '2015-06-29 01:00:17'),
(4572, 6, '', 'Y', '2015-06-29 01:00:32'),
(4578, 6, '', 'Y', '2015-06-29 01:00:32'),
(4579, 6, '', 'Y', '2015-06-29 01:00:32'),
(4580, 6, '', 'Y', '2015-06-29 01:00:38'),
(2244, 6, 0x496e74657263616d6269617220636f6c6f726573, 'Y', '2015-06-29 01:02:06'),
(2467, 6, 0x54616d61f16f, 'Y', '2015-06-29 01:02:06'),
(2468, 6, 0x43616d6269617220656c2074616d61f16f2064656c207461626c65726f, 'Y', '2015-06-29 01:02:06'),
(2469, 6, 0x456469746172, 'Y', '2015-06-29 01:02:06'),
(2470, 6, 0x48657272616d69656e746173206465206564696369f36e, 'Y', '2015-06-29 01:02:06'),
(2471, 6, 0x4a75676172, 'Y', '2015-06-29 01:02:06'),
(2473, 6, 0x416e63686f, 'Y', '2015-06-29 01:02:06'),
(2490, 6, 0x4574697175657461, 'Y', '2015-06-29 01:02:38'),
(2586, 6, 0x416e63686f, 'Y', '2015-06-29 01:03:28'),
(2587, 6, 0x416c746f, 'Y', '2015-06-29 01:03:28'),
(2588, 6, 0x4372656172207461626c65726f, 'Y', '2015-06-29 01:03:28'),
(2595, 6, 0x43617267617220534746, 'Y', '2015-06-29 01:04:04'),
(2598, 6, 0x73616c76617220666f726d61, 'Y', '2015-06-29 01:04:04'),
(2629, 6, 0x476f62e16e206e7565766f, 'Y', '2015-06-29 01:05:06'),
(3235, 6, 0x466f726d6173, 'Y', '2015-06-29 01:05:06'),
(5521, 36, 0x4d65676a6567797ac3a9733a204ec3a968c3a16e7920c3a97276c3a96e7974656c656e20c3a97274c3a96b2068656c79c3a9726520616c6170c3a97274656c6d657a65747420c3a97274c3a96b656b206b6572c3bc6c74656b2e, 'Y', '2015-09-19 18:10:36'),
(3140, 36, 0x466568c3a972206b657a64, 'Y', '2015-09-19 16:51:20'),
(5195, 36, 0x416c616b7a617420232573, 'Y', '2015-09-19 16:50:55'),
(4702, 36, 0x4265c3a16c6cc3ad74c3a1736f6b, 'Y', '2015-09-19 16:49:20'),
(3035, 36, 0x696e646f6ec3a97a, 'Y', '2015-09-19 12:52:53'),
(2474, 6, 0x416c74757261, 'Y', '2015-06-29 01:07:51'),
(2475, 6, 0x5461626c65726f206e7565766f, 'Y', '2015-06-29 01:07:51'),
(2476, 6, 0x506965647261, 'Y', '2015-06-29 01:07:51'),
(2481, 6, 0x4d61726361646f7220286d6172636129, 'Y', '2015-06-29 01:08:09'),
(2493, 6, 0x486973746f7269616c, 'Y', '2015-06-29 01:08:51'),
(2494, 6, 0x4a7567616461, 'Y', '2015-06-29 01:09:03'),
(2585, 6, 0x437265617220756e207461626c65726f206e7565766f20646520756e2074616d61f16f206461646f, 'Y', '2015-06-29 01:09:34'),
(2591, 6, 0x4a7567616461, 'Y', '2015-06-29 01:10:01'),
(2596, 6, 0x45646974617220e1726561, 'Y', '2015-06-29 01:10:01'),
(1513, 6, 0x54656d61, 'Y', '2015-06-29 01:15:22'),
(1654, 6, 0x446573637269706369f36e, 'Y', '2015-06-29 01:15:22'),
(1943, 6, '', 'Y', '2015-06-29 01:15:22'),
(2093, 6, 0x43726561646f, 'Y', '2015-06-29 01:15:22'),
(2271, 6, 0xa14361726163746572ed737469636120677561726461646121, 'Y', '2015-06-29 01:15:22'),
(2273, 6, 0x4361726163746572ed73746963612061637475616c697a616461, 'Y', '2015-06-29 01:15:22'),
(2274, 6, 0x4361726163746572ed73746963612061f16164696461, 'Y', '2015-06-29 01:15:44'),
(2281, 6, 0x47756172646172206361726163746572ed7374696361, 'Y', '2015-06-29 01:16:36'),
(2287, 6, 0x566f74617220706f72206c6173206361726163746572ed737469636173, 'Y', '2015-06-29 01:16:36'),
(2290, 6, 0x41f16164697220756e61206e75657661206361726163746572ed7374696361, 'Y', '2015-06-29 01:16:36'),
(1415, 6, '', 'Y', '2015-06-29 01:20:52'),
(1486, 6, 0x47616e61646173, 'Y', '2015-06-29 01:20:52'),
(1487, 6, 0x5065726469646173, 'Y', '2015-06-29 01:20:52'),
(1584, 6, 0x48e16e6469636170204de178696d6f, 'Y', '2015-06-29 01:22:17'),
(1597, 6, 0x52656368617a6172206d656e73616a6573, 'Y', '2015-06-29 01:22:17'),
(1598, 6, 0x52656368617a617220696e7669746163696f6e6573, 'Y', '2015-06-29 01:22:17'),
(1600, 6, 0x416d69676f, 'Y', '2015-06-29 01:22:17'),
(2182, 6, 0x43617267617220696d6167656e, 'Y', '2015-06-29 01:23:10'),
(2184, 6, 0x496d6167656e2061637475616c, 'Y', '2015-06-29 01:23:10'),
(2185, 6, 0x4775617264617220696d6167656e, 'Y', '2015-06-29 01:23:30'),
(2186, 6, 0x456c696d696e617220696d6167656e, 'Y', '2015-06-29 01:23:30'),
(2558, 6, 0x48e16e646963617020636f6e76656e63696f6e616c, 'Y', '2015-06-29 03:35:33'),
(5718, 6, 0x496e74657263616d6269617220636f6c6f726573, 'Y', '2015-06-29 03:37:10'),
(2424, 6, 0x436f6e6669677572616369f36e206465206c612070617274696461, 'Y', '2015-06-29 03:46:52'),
(3096, 6, 0x436f6e6669677572616369f36e2070726f6261626c65206465206c612070617274696461, 'Y', '2015-06-29 03:46:52'),
(5727, 6, 0x48e16e64696361703a202564, 'Y', '2015-06-29 03:48:17'),
(2269, 6, 0x4361726163746572ed737469636120656c696d696e616461, 'Y', '2015-06-29 05:39:00'),
(2272, 6, 0x456c696d696e6172206361726163746572ed7374696361, 'Y', '2015-06-29 05:39:00'),
(2279, 6, 0x456c696d696e6172206361726163746572ed7374696361, 'Y', '2015-06-29 05:39:00'),
(2286, 6, 0x4e6f746173206465206c61206361726163746572ed7374696361, 'Y', '2015-06-29 05:39:50'),
(2288, 6, 0x4d697320766f746f7320706f72206c6173206361726163746572ed7374696361732e, 'Y', '2015-06-29 05:41:04'),
(2289, 6, 0x526573756c7461646f73206465206c617320766f746163696f6e657320706f72206c6173206361726163746572ed737469636173, 'Y', '2015-06-29 05:41:04'),
(2291, 6, 0x426f727261722065737461204361726163746572ed7374696361, 'Y', '2015-06-29 05:41:04'),
(2292, 6, 0x4564697461722065737461206361726163746572ed7374696361, 'Y', '2015-06-29 05:41:04'),
(2305, 6, 0x45737461646f206465206c61206361726163746572ed7374696361, 'Y', '2015-06-29 05:41:04'),
(2334, 6, 0x456469746172204361726163746572ed7374696361, 'Y', '2015-06-29 05:41:34'),
(6215, 40, 0x436f6e666967757261e7e36f2064612070e167696e61206465206a6f676f, 'Y', '2015-07-04 00:12:43'),
(6123, 36, 0x496e616b74c3ad76, 'Y', '2015-07-23 12:18:55'),
(6124, 36, 0x416b74c3ad76, 'Y', '2015-07-23 12:18:55'),
(6125, 36, 0xc3897276c3a96e7974656c656e, 'Y', '2015-07-23 12:18:55'),
(6126, 36, 0x456c6c656e66c3a96c20c3bc7a656e74, 'Y', '2015-07-23 12:21:49'),
(6127, 36, 0x456c74c3a97274, 'Y', '2015-07-23 12:21:49'),
(6128, 36, 0x4bc3a9737a, 'Y', '2015-07-23 12:21:49'),
(6135, 36, 0xc3897276c3a96e7974656c656e20c3a16c6cc3a173, 'Y', '2015-07-23 12:24:01'),
(6136, 36, 0xc3897276c3a96e7974656c656e206b6f, 'Y', '2015-07-23 12:24:01'),
(6139, 36, 0xc3897276c3a96e7974656c656e20c3a97274c3a96b2061206d696e696d756d2068c59173206172c3a16e796ec3a16c3a205b25735d20286373616b206567c3a9737a20737ac3a16d206c65686574203020c3a97320313030206bc3b67ac3b6747429, 'Y', '2015-07-23 12:24:01'),
(6140, 36, 0x4d696e696d756d2068c5917320737ac3a17a616cc3a96b, 'Y', '2015-07-23 12:24:01'),
(6218, 36, 0x456c6bc3bc6c64c3a97320c3a973206d61726164c3a173, 'Y', '2015-07-23 12:26:50'),
(6252, 36, 0x416ac3a16e6c61746f6b20737ac3a16d61, 'Y', '2015-07-23 12:26:50'),
(6317, 36, 0x257320c3bc7a656e65746574206bc3bc6c64c3b67474, 'Y', '2015-07-23 12:26:50'),
(6328, 36, 0x4d656766696779656cc5916b20737ac3a16d61, 'Y', '2015-07-23 12:26:50'),
(6329, 36, 0x46656b657465206b657a64657469206265736f726f6cc3a17361, 'Y', '2015-07-23 12:26:50'),
(6330, 36, 0x466568c3a972206b657a64657469206265736f726f6cc3a17361, 'Y', '2015-07-23 12:26:50'),
(6331, 36, 0x46656b6574652076c3a96773c591206265736f726f6cc3a17361, 'Y', '2015-07-23 12:26:50'),
(6332, 36, 0x46656b657465206265736f726f6cc3a1732076c3a16c746f7ac3a17361, 'Y', '2015-07-23 12:26:50'),
(6333, 36, 0x466568c3a9722076c3a96773c591206265736f726f6cc3a17361, 'Y', '2015-07-23 12:26:50'),
(6334, 36, 0x466568c3a972206265736f726f6cc3a1732076c3a16c746f7ac3a17361, 'Y', '2015-07-23 12:26:50'),
(6335, 36, 0x456c6c656e66c3a96c206e657665, 'Y', '2015-07-23 12:28:31'),
(6336, 36, 0x456c6c656e66c3a96c206e657665, 'Y', '2015-07-23 12:28:31'),
(6337, 36, 0x456c6c656e66c3a96c2066656c682e6e657665, 'Y', '2015-07-23 12:28:31'),
(6338, 36, 0x456c6c656e66c3a96c2066656c6861737a6ec3a16cc3b36e657665, 'Y', '2015-07-23 12:28:31'),
(6339, 36, 0x456c6c656e66c3a96c206265736f726f6cc3a17361, 'Y', '2015-07-23 12:28:31'),
(6340, 36, 0x456c6c656e66c3a96c206265736f726f6cc3a17361, 'Y', '2015-07-23 12:28:31'),
(6341, 36, 0x456c6c656e66c3a96c206b657a64657469206265736f726f6cc3a17361, 'Y', '2015-07-23 12:28:31'),
(6342, 36, 0x456c6c656e66c3a96c206b657a64657469206265736f726f6cc3a17361, 'Y', '2015-07-23 12:28:31'),
(6343, 36, 0x456c6c656e66c3a96c2076c3a96773c591206265736f726f6cc3a17361, 'Y', '2015-07-23 12:28:31'),
(6344, 36, 0x456c6c656e66c3a96c2076c3a96773c591206265736f726f6cc3a17361, 'Y', '2015-07-23 12:28:31'),
(6345, 36, 0x456c6c656e66c3a96c206265736f726f6cc3a1732076c3a16c746f7ac3a17361, 'Y', '2015-07-23 12:30:14'),
(6346, 36, 0x456c6c656e66c3a96c206265736f726f6cc3a1732076c3a16c746f7ac3a17361, 'Y', '2015-07-23 12:30:14'),
(6347, 36, 0x4ac3a174c3a96b6f73206b657a64c591206265736f726f6cc3a17361, 'Y', '2015-07-23 12:30:14'),
(6348, 36, 0x4ac3a174c3a96b6f73206b657a64c591206265736f726f6cc3a17361, 'Y', '2015-07-23 12:30:14'),
(6349, 36, 0x4ac3a174c3a96b6f732076c3a96773c591206265736f726f6cc3a17361, 'Y', '2015-07-23 12:30:14'),
(6350, 36, 0x4ac3a174c3a96b6f732076c3a96773c591206265736f726f6cc3a17361, 'Y', '2015-07-23 12:30:14'),
(6351, 36, 0x4ac3a174c3a96b6f73206265736f726f6cc3a1732076c3a16c746f7ac3a17361, 'Y', '2015-07-23 12:30:14'),
(6352, 36, 0x4ac3a174c3a96b6f73206265736f726f6cc3a1732076c3a16c746f7ac3a17361, 'Y', '2015-07-23 12:30:14'),
(6353, 36, 0x456c6c656e66c3a96c2075746f6c73c3b3206cc3a1746f676174c3a17361, 'Y', '2015-07-23 12:30:14'),
(6354, 36, 0x5072696f726974c3a173, 'Y', '2015-07-23 12:30:14'),
(6355, 36, 0x53616ac3a1742068c3a17472616c6576c591206964c591, 'Y', '2015-07-23 12:30:42'),
(6356, 36, 0x456c6c656e66c3a96c2068c3a17472616c6576c591206964656a65, 'Y', '2015-07-23 12:30:42'),
(128, 36, 0x4d6f7a676174c3a1732066656c, 'Y', '2015-07-23 12:39:38'),
(129, 36, 0x4d6f7a676174c3a173206c65, 'Y', '2015-07-23 12:39:38'),
(156, 36, 0x42656d757461746b6f7ac3a173206672697373c3ad74766521, 'Y', '2015-07-23 12:39:38'),
(157, 36, 0x4a656c737ac3b3206d656776c3a16c746f7a6f747421, 'Y', '2015-07-23 12:39:38'),
(158, 36, 0x50726f66696c206dc3b3646f73c3ad74766121, 'Y', '2015-07-23 12:39:38'),
(175, 36, 0x456779c3a9623a, 'Y', '2015-07-23 12:39:38'),
(176, 36, 0x4f72737ac3a167, 'Y', '2015-07-23 12:39:38'),
(177, 36, 0x56c3a1726f73, 'Y', '2015-07-23 12:39:38'),
(178, 36, 0x4d656779652fc3a16c6c616d, 'Y', '2015-07-23 12:39:38'),
(179, 36, 0x4b6c7562, 'Y', '2015-07-23 12:39:38'),
(180, 36, 0x53616ac3a174207765626f6c64616c, 'Y', '2015-07-23 12:41:36'),
(181, 36, 0x456d61696c, 'Y', '2015-07-23 12:41:36'),
(182, 36, 0x49435120617a6f6e6f73c3ad74c3b3, 'Y', '2015-07-23 12:41:36'),
(183, 36, 0x4ac3a174c3a96b20707265666572656e6369c3a16b, 'Y', '2015-07-23 12:41:36'),
(184, 36, 0x486f626269, 'Y', '2015-07-23 12:41:36'),
(187, 36, 0x42656d757461746b6f7ac3a17320737a65726b65737a74c3a97365, 'Y', '2015-07-23 12:41:36'),
(188, 36, 0x4a656c737ac3b3206d656776c3a16c746f7a746174c3a17361, 'Y', '2015-07-23 12:41:36'),
(189, 36, 0x52c3a96769206a656c737ac3b3, 'Y', '2015-07-23 12:41:36'),
(190, 36, 0xc39a6a206a656c737ac3b3, 'Y', '2015-07-23 12:41:36'),
(185, 36, 0x466f676c616c6b6f7ac3a173, 'Y', '2015-07-23 12:44:00'),
(191, 36, 0x4a656c737ac3b3206d65676572c59173c3ad74c3a97365, 'Y', '2015-07-23 12:44:00'),
(192, 36, 0x4a656c737ac3b3206d656776c3a16c746f7a746174c3a17361, 'Y', '2015-07-23 12:44:00'),
(193, 36, 0x4b69, 'Y', '2015-07-23 12:44:00'),
(194, 36, 0x4373616b20c3a972746573c3ad74c3a973, 'Y', '2015-07-23 12:44:00'),
(195, 36, 0x4cc3a970c3a973656b20c3a97320c3bc7a656e6574656b, 'Y', '2015-07-23 12:44:00'),
(196, 36, 0x54656c6a65732074c3a1626c6120c3a97320c3bc7a656e6574656b, 'Y', '2015-07-23 12:44:00'),
(197, 36, 0x46c3bc6767c5916c65676573, 'Y', '2015-07-23 12:44:00'),
(198, 36, 0x56c3ad7a737a696e746573, 'Y', '2015-07-23 12:44:00'),
(199, 36, 0x50726f66696c20737a65726b65737a74c3a97365, 'Y', '2015-07-23 12:44:00'),
(200, 36, 0x537a656dc3a96c796573206265c3a16c6cc3ad74c3a1736f6b, 'Y', '2015-07-23 12:45:31'),
(202, 36, 0x54656c6a6573206ec3a976, 'Y', '2015-07-23 12:45:31'),
(204, 36, 0x4265736f726f6cc3a17320696e666f, 'Y', '2015-07-23 12:45:31'),
(206, 36, 0x456d61696c20c3a972746573c3ad74c3a973656b, 'Y', '2015-07-23 12:45:31'),
(207, 36, 0x42c3b66e67c3a9737ac591206265c3a16c6cc3ad74c3a17361696e616b206861737a6ec3a16c617461, 'Y', '2015-07-23 12:45:31'),
(208, 36, 0x4e79656c76, 'Y', '2015-07-23 12:45:31'),
(209, 36, 0x4964c5917ac3b36e61, 'Y', '2015-07-23 12:45:31'),
(210, 36, 0x506968656ec5916964c591, 'Y', '2015-07-23 12:45:31'),
(211, 36, 0x54c3a1626c61206d65676a656c656ec3a97365, 'Y', '2015-07-23 12:45:31'),
(212, 36, 0x4bc3b676656b206dc3a972657465, 'Y', '2015-07-23 12:45:31'),
(213, 36, 0x466120737ac3ad6e65, 'Y', '2015-07-23 12:47:34'),
(214, 36, 0x4b6f6f7264696ec3a174c3a16b206d75746174c3a17361, 'Y', '2015-07-23 12:47:34'),
(215, 36, 0x42616c206f6c64616c6f6e, 'Y', '2015-07-23 12:47:34'),
(216, 36, 0x54c3a1626c612066656c657474, 'Y', '2015-07-23 12:47:34'),
(217, 36, 0x4a6f6262206f6c64616c6f6e, 'Y', '2015-07-23 12:47:34'),
(218, 36, 0x54c3a1626c6120616c617474, 'Y', '2015-07-23 12:47:34'),
(219, 36, 0x54c3a1626c61c3a96c656b2073696dc3ad74c3a17361, 'Y', '2015-07-23 12:47:34'),
(220, 36, 0x4d656ec3bc206972c3a16e7961, 'Y', '2015-07-23 12:47:34'),
(222, 36, 0x50726f66696c20737a65726b65737a74c3a97365, 'Y', '2015-07-23 12:47:34'),
(343, 36, 0x53616a6ec3a16c6a756b2c206e696e637320656cc3a96720c3a97274c3a96b656c74206ac3a174737a6d6120612067726166696b6f6e20656c6bc3a9737ac3ad74c3a973c3a968657a, 'Y', '2015-07-23 12:47:34'),
(378, 36, 0x53616ac3a1742070726f66696c6f6d, 'Y', '2015-07-23 12:52:39'),
(379, 36, 0x42656d757461746b6f7ac3a17320737a65726b65737a74c3a97365, 'Y', '2015-07-23 12:52:39'),
(388, 36, 0x56c3a16c6c616c20c3ba6a206ac3a174737a6dc3a1743f, 'Y', '2015-07-23 12:52:39'),
(393, 36, 0x52656769737a7472c3a16369c3b3206964656a65, 'Y', '2015-07-23 12:52:39'),
(402, 36, 0x416b7469766974c3a173, 'Y', '2015-07-23 12:52:39'),
(415, 36, 0x4ac3a174737a6dc3a16b20737ac3a16d61, 'Y', '2015-07-23 12:52:39'),
(494, 36, 0x25732070726f66696c6a61, 'Y', '2015-07-23 12:52:39'),
(498, 36, 0x4b657a646574, 'Y', '2015-09-22 19:57:07'),
(499, 36, 0x56c3a96765, 'Y', '2015-09-22 19:57:37'),
(503, 36, 0x456779c3a962, 'Y', '2015-07-23 12:54:34'),
(731, 36, 0xc39c7a656e65746d617070c3a16b20737a65726b65737a74c3a97365, 'Y', '2015-07-23 12:54:34'),
(736, 36, 0x4d65676e79657274206ac3a174737a6dc3a16b, 'Y', '2015-07-23 12:54:34'),
(737, 36, 0x456c7665737ac3ad74657474206ac3a174737a6dc3a16b, 'Y', '2015-07-23 12:54:34'),
(738, 36, 0x56616bc3a16369c3b3206dc3b3646f73c3ad74c3a17361, 'Y', '2015-07-23 12:54:34'),
(739, 36, 0x56616bc3a16369c3b3206d65676b657a64c3a97365, 'Y', '2015-07-23 12:54:34'),
(746, 36, 0x4d61707061206e657665, 'Y', '2015-07-23 12:56:09'),
(955, 36, 0x56616bc3a16369c3b3, 'Y', '2015-07-23 12:56:09'),
(956, 36, 0x53616a6ec3a16c6a756b2c206d6f7374206e656d206dc3b3646f73c3ad746861746f6420612076616bc3a16369c3b36420686f73737ac3a1742e, 'Y', '2015-07-23 12:56:09'),
(957, 36, 0x56616bc3a16369c3b320686f73737a61206d656776c3a16c746f7a746174766121, 'Y', '2015-07-23 12:56:09'),
(958, 36, 0x486f7a7ac3a16164, 'Y', '2015-07-23 12:56:09'),
(959, 36, 0x456c74c3a1766f6cc3ad74, 'Y', '2015-07-23 12:56:09'),
(960, 36, 0x56616bc3a16369c3b320686f73737a61, 'Y', '2015-07-23 12:56:09'),
(962, 36, 0x4ac3b320706968656ec3a9737421, 'Y', '2015-07-23 12:56:09'),
(1067, 36, 0x416e79616e79656c76, 'Y', '2015-07-23 12:57:53'),
(1068, 36, 0x4e79656c76747564c3a17320737a696e746a65, 'Y', '2015-07-23 12:57:53'),
(1073, 36, 0x4cc3a970c3a973656b20737ac3a16d6f7ac3a17361, 'Y', '2015-07-23 12:57:53'),
(1074, 36, 0x4e65206861737a6ec3a16c6a6f6e203130302d6ec3a16c206e6167796f626220737ac3a16d6f6b6174, 'Y', '2015-07-23 12:57:53'),
(1080, 36, 0x4d6167617373c3a167, 'Y', '2015-07-23 12:58:48'),
(1081, 36, 0x537ac3a96c657373c3a967, 'Y', '2015-07-23 12:58:48'),
(1111, 36, 0x4265736f726f6cc3a1732067726166696b6f6e, 'Y', '2015-07-23 12:58:48'),
(1113, 36, 0xc3897274c3a96b656c74206ac3a174737a6dc3a16b, 'Y', '2015-07-23 12:58:48'),
(1258, 7, 0x4175746f72, 'Y', '2016-07-20 16:20:15'),
(1131, 36, 0x53616a6ec3a16c6a756b2c206c6567616cc3a1626220256420656cc3a972686574c5912076616bc3a16369c3b36e617072612076616e20737ac3bc6b73c3a967656420612076616bc3a16369c3b320656c6b657a64c3a973c3a968657a2e, 'Y', '2015-07-23 14:08:17'),
(1214, 36, 0x416b74c3ad76206ac3a174c3a96b6f736f6b, 'Y', '2015-07-23 14:08:17'),
(1218, 36, 0x48c3a17474c3a972, 'Y', '2015-07-23 14:08:17'),
(1219, 36, 0x5069726f73, 'Y', '2015-07-23 14:08:56'),
(1220, 36, 0x5ac3b66c64, 'Y', '2015-07-23 14:08:56'),
(1221, 36, 0x4bc3a96b, 'Y', '2015-07-23 14:08:56'),
(1222, 36, 0xc381746cc3a174737ac3b373c3a167, 'Y', '2015-07-23 14:08:56'),
(1223, 36, 0x4d75746174c3a1732061207374c3a17475737a6f6c64616c6f6e, 'Y', '2015-07-23 14:09:44'),
(1224, 36, 0x456cc59174c3a972, 'Y', '2015-07-23 14:09:44'),
(1225, 36, 0x4d617070c3a16b20c3a174c3a16c6cc3ad74766121, 'Y', '2015-07-23 14:09:44'),
(1245, 36, 0x52656a74657474, 'Y', '2015-07-23 14:10:17'),
(1273, 36, 0x4373616b20c3bc726573206d617070c3a174206c656865742074c3b672c3b66c6e6921, 'Y', '2015-07-23 14:10:17'),
(1415, 36, 0x417a6f6e6f73c3ad74c3b3, 'Y', '2015-07-23 14:11:39'),
(1464, 36, 0x456c6c656e66656c656b206d75746174c3a17361, 'Y', '2015-07-23 14:11:39'),
(1467, 36, 0x53616ac3a17420656c6c656e66656c65696d206d75746174c3a17361, 'Y', '2015-07-23 14:11:39'),
(1471, 36, 0x46656c76c3a974656c2061206ec3a9766a6567797ac3a96b656d6265, 'Y', '2015-07-23 14:11:39'),
(1476, 36, 0x4ec3a9766a65677920737a65726b65737a74c3a97365, 'Y', '2015-07-23 14:11:39'),
(1477, 36, 0xc39a6a206ec3a9766a656779, 'Y', '2015-07-23 14:11:39'),
(1478, 36, 0x416b74c3ad76, 'Y', '2015-07-23 14:11:39'),
(1391, 36, 0x54c3a1626c6120736f726f6b20737ac3a16d61, 'Y', '2015-07-23 14:17:29'),
(1392, 36, 0x61206b697365626220c3a97274c3a96b656b206a6f6262616e206bc3ad6dc3a96c696b206120737a6572766572742028746f76c3a162626920696e66c3b32061204759494b2d62656e29, 'Y', '2015-07-23 14:17:29'),
(1393, 36, 0x4b696ec3a97a6574206d656776c3a16c746f7a746174c3a17361206373616b20656262656e20612062c3b66e67c3a9737ac59162656e, 'Y', '2015-07-23 14:17:29'),
(1481, 36, 0x4265736f726f6cc3a17320696e66c3b3, 'Y', '2015-07-23 14:17:29'),
(1482, 36, 0x56c3a16c6c616c20c3ba6a206ac3a174737a6dc3a1743f, 'Y', '2015-07-23 14:17:29'),
(1484, 36, 0x466f6c79616d617462616e, 'Y', '2015-07-23 14:17:29'),
(1485, 36, 0x56c3a96765, 'Y', '2015-07-23 14:17:29'),
(1486, 36, 0x4779c5917a656c656d, 'Y', '2015-07-23 14:17:29'),
(1487, 36, 0x5665726573c3a967, 'Y', '2015-07-23 14:17:29'),
(1489, 36, 0x416b7469766974c3a173, 'Y', '2015-07-23 14:17:29'),
(1492, 36, 0x2573206ac3a174737a6d61206d656766696779656cc59169, 'Y', '2015-07-23 14:19:21'),
(1506, 36, 0x54c3ad707573, 'Y', '2015-07-23 14:19:21'),
(1541, 36, 0x49736d657265746c656e2066656c6861737a6ec3a16cc3b3, 'Y', '2015-07-23 14:19:21'),
(1542, 36, 0x4ec3a9766a6567792074c3b672c3b66c766521, 'Y', '2015-07-23 14:19:21'),
(1543, 36, 0x4ec3a9766a656779206d656e74766521, 'Y', '2015-07-23 14:19:21'),
(1544, 36, 0x4ec3a9766a6567792074c3b6726cc3a97365, 'Y', '2015-07-23 14:19:21'),
(1545, 36, 0x4ec3a9766a65677920737a65726b65737a74c3a97365, 'Y', '2015-07-23 14:19:21'),
(1547, 36, 0x4ec3a9766a6567792074c3b6726cc3a97365, 'Y', '2015-07-23 14:19:21'),
(1548, 36, 0x52656e64737a6572206b61746567c3b37269c3a16b, 'Y', '2015-07-23 14:29:20'),
(1549, 36, 0x46656c6861737a6ec3a16cc3b3206b61746567c3b37269c3a16b, 'Y', '2015-07-23 14:29:20'),
(1550, 36, 0x4a6567797a6574656b, 'Y', '2015-07-23 14:29:20'),
(1551, 36, 0x6c656766656c6a65626220323535206b6172616b7465722066c3a9722061206a6567797a65746265, 'Y', '2015-07-23 14:29:20'),
(1552, 36, 0x4ec3a9766a656779206d656e74c3a97365, 'Y', '2015-07-23 14:29:20'),
(1553, 36, 0x4ec3a9766a656779656b206d75746174c3a17361, 'Y', '2015-07-23 14:29:20'),
(1555, 36, 0x52656e64737a6572206b61746567c3b37269c3a16b, 'Y', '2015-07-23 14:29:20'),
(1556, 36, 0x46656c6861737a6ec3a16cc3b3206b61746567c3b37269c3a16b, 'Y', '2015-07-23 14:29:20'),
(1560, 36, 0x52656e64737a6572206b61746567c3b37269c3a16b206b65726573c3a97365, 'Y', '2015-07-23 14:30:23'),
(1561, 36, 0x46656c6861737a6ec3a16cc3b3206b61746567c3b37269c3a16b206b65726573c3a97365, 'Y', '2015-07-23 14:30:23'),
(1562, 36, 0x4ec3a9766a6567796c69737461, 'Y', '2015-07-23 14:30:23'),
(1564, 36, 0x4d696e64656e206ac3a174737a6d61, 'Y', '2015-07-23 14:30:23'),
(1565, 36, 0x467574c3b3206ac3a174737a6dc3a16b, 'Y', '2015-07-23 14:30:23'),
(1566, 36, 0x426566656a657a657474206ac3a174737a6dc3a16b, 'Y', '2015-07-23 14:30:23'),
(1576, 36, 0xc39673737a6573656e, 'Y', '2015-07-23 14:31:33'),
(1584, 36, 0x4d6178696d756d2068656e64696b6570, 'Y', '2015-07-23 14:32:21'),
(1597, 36, 0xc39c7a656e6574656b20656c75746173c3ad74c3a17361, 'Y', '2015-07-23 14:32:21'),
(1598, 36, 0x4d656768c3ad76c3a1736f6b20656c75746173c3ad74c3a17361, 'Y', '2015-07-23 14:32:21'),
(1599, 36, 0x426172c3a174, 'Y', '2015-07-23 14:32:54'),
(1600, 36, 0x49736d6572c59173, 'Y', '2015-07-23 14:32:54'),
(1601, 36, 0x54616e756cc3b3, 'Y', '2015-07-23 14:32:54'),
(1604, 36, '', 'Y', '2015-07-23 14:33:50'),
(1783, 36, 0x4669c3b36b20626c6f6b6b6f6c76612076616e202d2042656cc3a970c3a973206d656774616761647661, 'Y', '2015-07-23 14:33:50'),
(223, 36, 0x456c66656c656a74657474206a656c737ac3b3, 'Y', '2015-07-23 14:38:20'),
(240, 36, 0x46c5916f6c64616c, 'Y', '2015-07-23 14:38:20'),
(245, 36, 0x4a656c737ac3b3, 'Y', '2015-07-23 14:38:20'),
(246, 36, 0x42656cc3a970c3a973, 'Y', '2015-07-23 14:38:20'),
(247, 36, 0x52656769737a7472c3a16369c3b3, 'Y', '2015-07-23 14:38:20'),
(457, 36, 0x566973737a61, 'Y', '2015-07-23 14:38:20'),
(1069, 36, 0x416c61747461, 'Y', '2015-07-23 15:01:08'),
(1077, 36, 0x4b69736562622074c3a1626cc3a16b, 'Y', '2015-07-23 15:01:08'),
(1078, 36, 0x4e6167796f62622074c3a1626cc3a16b2c206c6567616cc3a16262, 'Y', '2015-07-23 15:01:08'),
(1079, 36, 0x456c68656c79657ac3a973, 'Y', '2015-07-23 15:01:08'),
(6093, 36, 0x5347462066656c74c3b66c74c3a973652066656c74c3a974656c6573206cc3a970c3a973656b6b656c, 'Y', '2015-07-23 22:16:45'),
(6096, 36, 0x56617269c3a16369c3b36b, 'Y', '2015-07-23 22:16:45'),
(1258, 36, 0x4bc3a9737ac3ad74c591, 'Y', '2015-07-24 21:50:52'),
(1853, 36, 0x50696c6c616e61746bc3a970, 'Y', '2015-07-24 21:50:52'),
(1960, 36, 0x4d656e7465746c656e20737a65726b65737a74c3a973656b, 'Y', '2015-07-24 21:50:52'),
(2093, 36, 0x4cc3a9747265686f7a7661, 'Y', '2015-07-24 21:50:52'),
(2234, 36, 0xc39a4a, 'Y', '2015-07-24 21:50:52'),
(2241, 36, 0x5075626c696b7573, 'Y', '2015-07-24 21:50:52'),
(2244, 36, 0x537ac3ad6e2063736572c3a96a65, 'Y', '2015-07-24 21:50:52'),
(3141, 36, 0x5075626c696b7573, 'Y', '2015-07-24 21:51:50'),
(4508, 36, 0x466f7272c3a173, 'Y', '2015-07-24 21:51:50'),
(4670, 36, 0x416c616b7a6174206d656e74766521, 'Y', '2015-07-24 21:51:50'),
(4671, 36, 0x416c616b7a617420617a6f6e6f73c3ad74c3b3, 'Y', '2015-07-24 21:51:50'),
(4672, 36, 0x416c616b7a6174206e657665, 'Y', '2015-07-24 21:51:50'),
(4673, 36, 0x5075626c696b757320616c616b7a6174, 'Y', '2015-07-24 21:51:50'),
(107, 36, 0x6bc591, 'Y', '2015-07-27 11:33:59'),
(122, 36, 0x56c3a16c61737a, 'Y', '2015-07-27 11:33:59'),
(307, 36, 0xc39c7a656e65746c69737461, 'Y', '2015-07-27 11:33:59'),
(311, 36, 0x54c3a1726779, 'Y', '2015-07-27 11:33:59'),
(312, 36, 0x44c3a174756d, 'Y', '2015-07-27 11:33:59'),
(314, 36, 0xc39a6a, 'Y', '2015-07-27 11:33:59'),
(323, 36, 0x41206d656768c3ad76c3a17320766973737a61206c6574742075746173c3ad74766120766167792061206ac3a174737a6d612074c3b672c3b66c7665206c657474, 'Y', '2015-07-27 11:33:59'),
(326, 36, 0x56c3a16c61737a206bc3bc6c64c3a97365, 'Y', '2015-07-27 11:39:23'),
(327, 36, 0xc39a6a20c3bc7a656e6574, 'Y', '2015-07-27 11:39:23'),
(334, 36, 0x456c75746173c3ad74c3a173, 'Y', '2015-07-27 11:39:23'),
(336, 36, 0x4d656768c3ad76c3a173206bc3bc6c64c3a97365, 'Y', '2015-07-27 11:39:23'),
(346, 36, 0xc39c7a656e657420656c6bc3bc6c64766521, 'Y', '2015-07-27 11:39:23'),
(436, 36, 0x68c3b36e6170, 'Y', '2015-07-27 11:39:45'),
(724, 36, 0x4d65676a656cc3b66c7420c3bc7a656e6574656b2074c3b6726cc3a97365, 'Y', '2015-07-27 11:40:05'),
(740, 36, 0x4d696e64656e2062656ac3b676c591, 'Y', '2015-07-27 11:43:04'),
(741, 36, 0xc39673737a6573, 'Y', '2015-07-27 11:43:04'),
(742, 36, 0x4b756b61, 'Y', '2015-07-27 11:43:04'),
(743, 36, 0x4b696d656ec591, 'Y', '2015-07-27 11:43:04'),
(755, 36, 0x537a657276657220c3bc7a656e6574, 'Y', '2015-07-27 11:43:04'),
(1108, 36, 0x566973737a6120617a20c3bc7a656e657468657a, 'Y', '2015-07-27 11:43:04'),
(1110, 36, 0x43c3ad6d7a657474206e656d2074616cc3a16c686174c3b3, 'Y', '2015-07-27 12:17:58'),
(1121, 36, 0x456cc5917ac59120c3bc7a656e6574, 'Y', '2015-07-27 12:17:58'),
(1122, 36, 0x4bc3b67665746b657ac59120c3bc7a656e6574, 'Y', '2015-07-27 12:17:58'),
(1409, 36, 0x4b65726573c3a97320617a20c3bc7a656e6574656b62656e, 'Y', '2015-07-27 12:17:58'),
(315, 36, 0x56c3a16c61737a20656c6bc3bc6c647665, 'Y', '2015-07-27 12:18:42'),
(316, 36, 0xc39a6a2076c3a16c61737a21, 'Y', '2015-07-27 12:18:42'),
(2770, 6, 0x45737461206361726163746572ed7374696361206861207369646f20646573616374697661646120656e20656c207365727669646f722e, 'Y', '2015-09-16 01:58:11'),
(4497, 6, 0x446573616374697661646f, 'Y', '2015-08-02 23:26:41'),
(4496, 6, 0xda6c74696d6f202261636365736f2072e17069646f22, 'Y', '2015-08-02 23:29:35'),
(4493, 6, 0x5a6f6e6120686f7261726961, 'Y', '2015-08-02 23:35:16'),
(4494, 6, 0x486f7261206c6f63616c2064656c207573756172696f, 'Y', '2015-08-02 23:57:49'),
(2192, 6, 0x52656368617a61722067616e617220706f72207469656d706f, 'Y', '2015-08-03 03:50:26'),
(5538, 6, 0xa14c6f7320616a75737465732073f36c6f2061706c6963616e2070617261206c6f732068e16e646963617020636f6e76656e63696f6e616c2079206170726f706961646f21, 'Y', '2015-08-03 15:12:48'),
(1503, 6, 0x436f6c6f63616369f36e20457374e16e646172, 'Y', '2015-08-03 15:13:58'),
(2153, 6, 0xa15469656d706f2061f1616469646f21, 'Y', '2015-08-03 15:13:58'),
(5539, 6, 0x416a75737465206465206c617320706965647261732064652068e16e6469636170, 'Y', '2015-08-03 15:14:47'),
(5540, 6, 0x416a75737465732064656c206b6f6d69, 'Y', '2015-08-03 15:15:51'),
(1555, 6, 0x43617465676f726961202853697374656d6129, 'Y', '2015-08-03 17:47:11'),
(1548, 6, 0x5469706f202873697374656d6129, 'Y', '2015-08-03 17:48:46'),
(1549, 6, 0x5469706f7320646566696e69646f7320706f7220656c207573756172696f, 'Y', '2015-08-03 17:48:46'),
(1556, 6, 0x5469706f20287573756172696f29, 'Y', '2015-08-03 17:48:46'),
(3228, 6, 0x4d6f646966696361646f, 'Y', '2015-08-03 17:50:06'),
(2644, 6, 0x4a756761646173, 'Y', '2015-08-04 04:47:55'),
(6084, 6, 0x4a75676164617320636f6e646963696f6e616c6573, 'Y', '2015-08-04 04:47:55'),
(6085, 6, 0x4d6f7374726172, 'Y', '2015-08-04 04:47:55'),
(6086, 6, 0x456469746172, 'Y', '2015-08-04 04:47:55'),
(6087, 6, 0x41f161646972, 'Y', '2015-08-04 04:47:55'),
(6094, 6, 0x53656375656e636961, 'Y', '2015-08-04 04:47:55'),
(6096, 6, 0x566172696163696f6e6573, 'Y', '2015-08-04 04:47:55'),
(6098, 6, 0x45737461646f, 'Y', '2015-08-04 04:47:55'),
(6099, 6, 0x417472696275746f73, 'Y', '2015-08-04 04:47:55'),
(6102, 6, 0x41637469766172, 'Y', '2015-08-04 04:48:09'),
(1910, 6, 0xbf507565646f20646573686163657220756e61206a75676164613f, 'Y', '2015-08-04 04:50:10'),
(2207, 6, 0x4d61726361206465206a7567616461, 'Y', '2015-08-04 04:50:10'),
(2399, 6, 0xda6c74696d61206a756761646120636f6e2063617074757261, 'Y', '2015-08-04 04:50:10'),
(2406, 6, 0x5072696d657261206a7567616461, 'Y', '2015-08-04 04:50:10'),
(2407, 6, 0x4a756761646120707265766961, 'Y', '2015-08-04 04:50:10'),
(2408, 6, 0x5072f378696d61206a7567616461, 'Y', '2015-08-04 04:50:10'),
(2415, 6, 0xda6c74696d61206a75676164612064653a, 'Y', '2015-08-04 04:50:10'),
(2439, 6, 0x5475726e6f206465204e6567726f, 'Y', '2015-08-04 04:50:45'),
(2440, 6, 0x5475726e6f20646520426c616e636f, 'Y', '2015-08-04 04:50:45'),
(3381, 6, 0x5475726e6f206465206e6567726f, 'Y', '2015-08-04 04:51:16'),
(3382, 6, 0x5475726e6f20646520626c616e636f, 'Y', '2015-08-04 04:51:16'),
(5506, 6, 0x4a75676164612023257320656e205b25735d236d7067, 'Y', '2015-08-04 04:52:21'),
(5766, 6, 0x4a75676164612061637475616c, 'Y', '2015-08-04 04:52:21'),
(1499, 6, 0x5469706f, 'Y', '2015-08-04 05:41:49'),
(2414, 6, 0x5469706f206465206a7565676f, 'Y', '2015-08-04 05:41:49'),
(2450, 6, 0x5469706f, 'Y', '2015-08-04 05:41:49'),
(2842, 6, '', 'Y', '2015-08-04 05:41:49'),
(2937, 6, '', 'Y', '2015-08-04 05:41:49'),
(2938, 6, '', 'Y', '2015-08-04 05:41:49'),
(2939, 6, '', 'Y', '2015-08-04 05:41:49'),
(2441, 6, 0x416a7573746573206465207469656d706f2079207469656d706f2072657374616e7465, 'Y', '2015-08-04 05:43:42'),
(2507, 6, 0x416a7573746573206465207469656d706f, 'Y', '2015-08-04 05:43:42'),
(4534, 6, 0x416a7573746573, 'Y', '2015-08-04 05:44:11'),
(3068, 6, 0x5265737472696363696f6e6573, 'Y', '2015-08-04 05:45:46'),
(4535, 6, 0x5265737472696363696f6e6573, 'Y', '2015-08-04 05:45:59'),
(1502, 6, 0x5469656d706f, 'Y', '2015-08-04 05:47:27'),
(5452, 6, 0x536f79206170746f, 'Y', '2015-08-04 05:49:57'),
(3199, 6, 0x4c6173206ded6173, 'Y', '2015-08-04 05:51:15'),
(3362, 6, 0x4c6173206ded6173, 'Y', '2015-08-04 05:51:15'),
(5453, 6, 0x4c6173206ded6173, 'Y', '2015-08-04 05:51:37'),
(2425, 6, 0x4944205061727469646120646f626c65, 'Y', '2015-08-04 15:26:52'),
(2912, 6, 0x5061727469646120646f626c652028626c616e636f29, 'Y', '2015-08-04 15:26:52'),
(2913, 6, 0x5061727469646120646f626c6520286e6567726f29, 'Y', '2015-08-04 15:26:52'),
(2941, 6, 0x446f626c65, 'Y', '2015-08-04 15:26:52'),
(4521, 6, 0x5061727469646120646f626c65, 'Y', '2015-08-04 15:26:52'),
(4529, 6, 0x446f626c65, 'Y', '2015-08-04 15:26:52'),
(2853, 6, 0x4e6567726f, 'Y', '2015-08-04 15:28:32'),
(2942, 6, 0x4e6567726f, 'Y', '2015-08-04 15:28:32'),
(3083, 6, 0x4e6567726f, 'Y', '2015-08-04 15:28:32'),
(3651, 6, 0x4a756761646f72206e6567726f, 'Y', '2015-08-04 15:28:32'),
(4522, 6, 0x4e6567726f, 'Y', '2015-08-04 15:28:32'),
(4559, 6, 0x4a7565676f206e6567726f, 'Y', '2015-08-04 15:28:32'),
(4563, 6, 0x4a7565676173206e6567726f, 'Y', '2015-08-04 15:28:32'),
(1752, 6, 0xbf5175e92065732022576869746520526f626f74223f, 'Y', '2015-08-04 15:30:01'),
(2854, 6, 0x426c616e636f, 'Y', '2015-08-04 15:30:01'),
(2943, 6, 0x426c616e636f, 'Y', '2015-08-04 15:30:01'),
(3084, 6, 0x426c616e636f, 'Y', '2015-08-04 15:30:01'),
(3652, 6, 0x4a756761646f7220626c616e636f, 'Y', '2015-08-04 15:30:01'),
(4523, 6, 0x426c616e636f, 'Y', '2015-08-04 15:30:01'),
(4561, 6, 0x4a756567617320626c616e636f, 'Y', '2015-08-04 15:30:01'),
(4562, 6, 0x4a7565676f20626c616e636f, 'Y', '2015-08-04 15:30:01'),
(4499, 6, 0x4a7565676f73207065726469646f7320706f72207469656d706f, 'Y', '2015-08-04 15:33:00'),
(3059, 6, 0x416a757374617220706f72, 'Y', '2015-08-04 15:35:07'),
(3062, 6, 0x416a757374617220706f72, 'Y', '2015-08-04 15:35:07'),
(2925, 6, 0x5369656d707265, 'Y', '2015-08-04 15:38:37'),
(4714, 7, 0x416b7475616c697a6f76e16e6f, 'Y', '2016-07-20 16:31:47'),
(2933, 6, 0x4465737075e9732064652025732064ed6173, 'Y', '2015-08-04 15:48:38'),
(4498, 6, 0x25732064ed6173, 'Y', '2015-08-04 15:45:52'),
(4571, 6, 0x54fa2070756564657320646f6d696e617220656c206a7565676f20646520476f20656e2031302064ed6173, 'Y', '2015-08-04 15:45:52'),
(2928, 6, 0x312076657a20286d69736d61206f666572746129, 'Y', '2015-08-04 15:47:43'),
(2929, 6, 0x257320766563657320286d69736d61206f666572746129, 'Y', '2015-08-04 15:47:43'),
(1481, 6, 0x496e666f2064652052616e676f, 'Y', '2015-08-04 18:45:45'),
(3300, 6, 0x5265676973747261646f, 'Y', '2015-08-04 18:49:07'),
(3849, 6, 0x54fa206e6f20657374e173207265676973747261646f20656e206573746520746f726e656f, 'Y', '2015-08-04 18:49:07'),
(3851, 6, 0x54fa20657374e173207265676973747261646f20656e206573746520746f726e656f, 'Y', '2015-08-04 18:49:07'),
(3067, 6, 0x536567fa6e207469656d706f20555443, 'Y', '2015-08-04 19:04:40'),
(5537, 6, 0x2b20616a75737465732064656c204a69676f2028766572206162616a6f29, 'Y', '2015-08-04 19:05:46'),
(2863, 6, 0x596f206573636f6a6f204e6567726f, 'Y', '2015-08-04 19:08:16'),
(2864, 6, 0x596f206573636f6a6f20426c616e636f, 'Y', '2015-08-04 19:08:16'),
(2948, 6, 0x54fa206573636f67657320656c206b6f6d692c20796f206573636f6a6f20656c20636f6c6f72, 'Y', '2015-08-06 04:23:22'),
(2949, 6, 0x596f206573636f6a6f20656c206b6f6d692c2074fa206573636f67657320656c20636f6c6f72, 'Y', '2015-08-06 04:23:22'),
(5527, 6, 0x4175746f6de17469636f, 'Y', '2015-08-04 23:42:28'),
(5532, 6, 0x4175746f6de17469636f, 'Y', '2015-08-04 23:42:28'),
(5998, 6, 0x566f6c7665722061206c6f732076616c6f72657320706f72206465666563746f, 'Y', '2015-08-04 23:43:22'),
(6327, 6, 0x4175746f6de17469636f, 'Y', '2015-08-04 23:43:22'),
(1577, 6, 0x47616e61646173, 'Y', '2015-08-06 04:02:31'),
(3662, 6, 0x47616e6164617320706f72, 'Y', '2015-08-04 23:51:38'),
(5303, 6, 0xbf507565646f2072656368617a61722067616e617220756e6120706172746964613f, 'Y', '2015-08-04 23:51:38'),
(6003, 6, 0x47616e61646173, 'Y', '2015-08-04 23:52:28'),
(6160, 6, 0x47616e6164617325, 'Y', '2015-08-04 23:52:43'),
(6177, 6, 0x47616e616461732025, 'Y', '2015-08-06 04:02:31'),
(2446, 6, 0x52656c6f6a20616e64616e646f, 'Y', '2015-08-06 02:37:01'),
(2584, 6, 0x5061727469646120656e206d6172636861, 'Y', '2015-08-06 02:37:01'),
(3383, 6, 0x506172746964617320616374697661732064656c207573756172696f, 'Y', '2015-08-06 02:37:01'),
(2419, 6, 0x4e65676f6369616369f36e2064656c206b6f6d692070617261206b6f6d69206a7573746f, 'Y', '2015-08-06 04:06:56'),
(2423, 6, 0x4e65676f6369616369f36e2064656c206b6f6d69, 'Y', '2015-08-06 04:06:56'),
(2428, 6, 0x4d6f64616c69646164206465206b6f6d69206a7573746f, 'Y', '2015-08-06 04:06:56'),
(2437, 6, 0x4f6665727461206465206b6f6d69, 'Y', '2015-08-06 04:06:56'),
(2726, 6, 0x4e65676f6369616369f36e2064656c206b6f6d69206a7573746f, 'Y', '2015-08-06 04:08:10'),
(2747, 6, 0x4c61207061727465206672616363696f6e616c2064656c206b6f6d692073f36c6f20707565646520736572202e3020f3202e35, 'Y', '2015-08-06 04:08:10'),
(2862, 6, 0x546f646176ed61206e6f20686179206f6665727461, 'Y', '2015-08-06 04:12:49'),
(2865, 6, 0x4f66657274612061637475616c, 'Y', '2015-08-06 04:12:49'),
(2866, 6, 0x47756172646172206c61206f6665727461206465206b6f6d69, 'Y', '2015-08-06 04:12:49'),
(2867, 6, 0x496e69636961722070617274696461, 'Y', '2015-08-06 04:12:49'),
(2868, 6, 0x4c6f73206a756761646f72657320736563726574616d656e74652064616e20737573207265737065637469766173206f666572746173206465206b6f6d692028756e6120706f722063616461206a756761646f72292e, 'Y', '2015-08-06 04:12:49'),
(2869, 6, 0x4c6173206f666572746173206465206b6f6d6920657374e16e206f63756c746173207061726120656c206f74726f206a756761646f722e, 'Y', '2015-08-06 04:12:49'),
(2870, 6, 0x4465737075e973206465206c6120326461206f6665727461206465206b6f6d692c206c61207061727469646120696e6963696172e13a, 'Y', '2015-08-06 04:12:49'),
(2871, 6, 0x454c206a756761646f7220636f6e206c61206f6665727461206de17320616c746120746f6d61206e6567726f207920656c206b6f6d69206573206461646f206120626c616e636f2e, 'Y', '2015-08-06 04:12:49'),
(2872, 6, 0x5369206c6173206f666572746173206465206b6f6d6920736f6e20696775616c65732c20656c20636f6c6f72206465206c6f73206a756761646f72657320736572e12064657465726d696e61646f20706f72206e69676972692e, 'Y', '2015-08-06 04:12:49'),
(2873, 6, 0x4c6f73206a756761646f7265732064616e20737573206f666572746173206465206b6f6d6920616269657274616d656e74652e, 'Y', '2015-08-06 04:15:35'),
(2877, 6, 0x556e206a756761646f72206573636f676520656c206b6f6d69207061726120426c616e636f, 'Y', '2015-08-06 04:15:35'),
(2878, 6, 0x456c206f74726f206a756761646f72206573636f676520656c20636f6c6f722079206c61207061727469646120636f6d69656e7a612e, 'Y', '2015-08-06 04:15:35'),
(2879, 6, 0x447572616e7465206c61206e65676f6369616369f36e2064656c206b6f6d6920656c2072656c6f6a20657374e120616e64616e646f2e, 'Y', '2015-08-06 04:15:35'),
(2882, 6, 0x4573636f67656e63696120646520636f6c6f7220696e76e16c696461, 'Y', '2015-08-06 04:16:35'),
(2883, 6, 0x456c206b6f6d6920646562652073657220756e2076616c6f72206efa6d657269636f, 'Y', '2015-08-06 04:16:35'),
(2886, 6, 0x5475206f6665727461206465206b6f6d69206465626520736572206de17320616c746120717565206c61206465207475206f706f6e656e74652e, 'Y', '2015-08-06 04:16:35'),
(2898, 6, 0x56616c6f7220696e76e16c69646f207061726120656c206b6f6d69205b25735d2e, 'Y', '2015-08-06 04:17:34'),
(2945, 6, 0x4b6f6d69206a7573746f, 'Y', '2015-08-06 04:18:27'),
(2946, 6, 0x5375626173746120616269657274612064656c206b6f6d69, 'Y', '2015-08-06 04:18:27'),
(2947, 6, 0x5375626173746120736563726574612064656c206b6f6d69, 'Y', '2015-08-06 04:18:27'),
(3057, 6, 0x4b6f6d69206a7573746f20286a7565676f20706172656a6f29, 'Y', '2015-08-06 04:18:55'),
(3090, 6, 0x4b6f6d69206a7573746f, 'Y', '2015-08-06 04:18:55'),
(2154, 6, 0xa14f6665727461206465206b6f6d6920677561726461646120657869746f73616d656e746521, 'Y', '2015-08-06 04:25:56'),
(2155, 6, 0xa14f6665727461206465206b6f6d6920677561726461646120657869746f73616d656e74652c20656c206b6f6d69207920656c20636f6c6f722068616e207369646f2064657465726d696e61646f732079206c61207061727469646120686120636f6d656e7a61646f21, 'Y', '2015-08-06 04:25:56'),
(5301, 6, 0xbf43f36d6f20636f6d656e7a617220756e61207061727469646120636f6e206b6f6d69206a7573746f3f, 'Y', '2015-08-06 04:27:25'),
(5377, 6, 0xbf5175e920657320756e61207061727469646120636f6e206b6f6d69206a7573746f3f, 'Y', '2015-08-06 04:27:25'),
(6318, 40, 0x4d6564616c6861206465206f75726f20646520686f6e7261, 'Y', '2015-08-06 06:00:01'),
(6319, 40, 0x4d6564616c686120646520707261746120646520686f6e7261, 'Y', '2015-08-06 06:00:01'),
(6320, 40, 0x4d6564616c68612064652062726f6e7a6520646520686f6e7261, 'Y', '2015-08-06 06:00:01'),
(6321, 40, 0x25732028706f7220746572206d61697320717565202573206a6f676f7320636f6d20706573736f6173206465206eed76656c206d656e6f7229, 'Y', '2015-08-06 06:00:01'),
(6322, 40, 0x4d6f737472617220626f6c6574696e732c206d656e736167656e732070726976616461732c206a6f676f7320706573736f6169732070617261206a6f6761722065206a6f676f732d6dfa6c7469706c6f732070617261207072657061726172, 'Y', '2015-12-09 01:46:22'),
(6323, 40, 0x456e7669617220756d61206d656e736167656d20707269766164612070617261206f7574726f20757375e172696f, 'Y', '2015-12-09 01:44:40'),
(6324, 40, 0x4d6f737472617220746f646f73206f7320757375e172696f73, 'Y', '2015-12-09 01:46:22'),
(6325, 40, 0x4d6f737472617220636f6e7461746f7320706573736f616973, 'Y', '2015-12-09 01:46:22'),
(6326, 40, 0x4d6f737472617220746f646f73206f73206a6f676f73, 'Y', '2015-12-09 01:46:22'),
(3229, 6, 0x496e74657263616d62696172206d6172636173, 'Y', '2015-08-06 19:54:47'),
(5530, 6, 0x28456c206175746f6de17469636f206573202573207061726120656c2074616d61f16f20257329, 'Y', '2015-08-07 23:48:55'),
(2209, 6, 0xa152616e676f2061637475616c697a61646f21, 'Y', '2015-08-07 23:51:20'),
(2556, 6, 0xa1477275706f732061637475616c697a61646f7321, 'Y', '2015-08-07 23:51:20'),
(4714, 6, 0x41637475616c697a61646f, 'Y', '2015-08-07 23:51:20'),
(5493, 6, 0xa14e6f74696669636163696f6e65732061637475616c697a6164617321, 'Y', '2015-08-07 23:51:57'),
(1599, 6, 0x43616d6172616461, 'Y', '2015-08-07 23:53:38'),
(1603, 6, 0x46616ee17469636f, 'Y', '2015-08-07 23:53:38'),
(1604, 6, '', 'Y', '2015-08-07 23:53:38'),
(1896, 6, '', 'Y', '2015-08-07 23:53:38'),
(2101, 6, 0x54ed74756c6f, 'Y', '2015-08-07 23:54:00'),
(2212, 6, 0x5573756172696f, 'Y', '2015-08-07 23:54:14'),
(2156, 6, 0x4179756461, 'Y', '2015-08-07 23:54:22'),
(3060, 6, '', 'Y', '2015-08-07 23:54:48'),
(3061, 6, '', 'Y', '2015-08-07 23:54:48'),
(4367, 6, 0x6f, 'Y', '2015-08-07 23:54:59'),
(4663, 6, '', 'Y', '2015-08-07 23:55:07'),
(4664, 6, '', 'Y', '2015-08-07 23:55:13'),
(6198, 40, 0xda6c74696d61206a6f676164612028616e74696761207072696d6569726f29, 'Y', '2015-08-13 01:41:53'),
(6199, 40, 0xda6c74696d61206a6f676164612028726563656e7465207072696d6569726f29, 'Y', '2015-08-13 01:41:53'),
(6257, 40, 0x526f62f473, 'Y', '2015-08-13 02:08:26'),
(6314, 40, 0x4163696d61, 'Y', '2015-08-13 02:08:26'),
(6328, 40, 0x232045737065637461646f726573, 'Y', '2015-08-13 02:08:26'),
(6354, 40, 0x5072696f726964616465, 'Y', '2015-08-13 02:08:26'),
(6208, 40, 0x6e6f766f, 'Y', '2015-08-13 02:08:49'),
(6227, 40, 0x4eed76656c20646520557375e172696f, 'Y', '2015-08-13 02:08:49'),
(6242, 40, 0x466c75786f206465206d656e736167656e73, 'Y', '2015-08-13 02:09:38'),
(6252, 40, 0x23204f666572746173206465206a6f676f, 'Y', '2015-08-13 02:09:38'),
(6336, 40, 0x4e6f6d6520646f20616476657273e172696f, 'Y', '2015-08-13 02:09:51'),
(6200, 40, 0x556372616e69616e6f, 'Y', '2015-08-13 02:10:11'),
(6258, 40, 0x4f207175652073e36f20726f62f4733f, 'Y', '2015-08-13 02:10:11'),
(6234, 40, 0x4d65757320706f6e746f7320656d20766f746f73, 'Y', '2015-08-13 02:10:55'),
(6251, 40, 0x54616d616e686f20646f20746f726e65696f, 'Y', '2015-08-13 02:10:55'),
(6338, 40, 0x494420646520757375e172696f20646f20616476657273e172696f, 'Y', '2015-08-13 02:10:55'),
(6350, 40, 0x557375e172696f2065206eed76656c, 'Y', '2015-08-13 02:10:55'),
(2208, 6, 0x45646974617220666f746f20646520757375736172696f, 'Y', '2015-08-27 03:07:02'),
(5485, 6, 0x43616d6269617220636f7272656f20656c65637472f36e69636f2079206e6f74696669636163696f6e6573, 'Y', '2015-08-27 03:07:59'),
(294, 10, 0xd3c6bec3b5c4c0facab7, 'Y', '2015-08-29 12:39:02'),
(293, 10, 0xb6d4d3dac5bcb6fbc0b4bfb4d2bbd1dbb5c4c8cbc3c7c0b4cbb5, 'Y', '2015-08-29 12:40:26'),
(2179, 36, 0x50726f66696c6bc3a970206d656e74766521, 'Y', '2015-09-19 19:20:59'),
(2180, 36, 0x5b204bc3a970206dc3a9726574653a20257320782025732c2046c3a16a6c6dc3a97265743a202573204b42205d, 'Y', '2015-09-19 19:20:59'),
(2181, 36, 0x50726f66696c6bc3a970206dc3b3646f73c3ad74c3a17361, 'Y', '2015-09-19 19:21:42'),
(2182, 36, 0x4bc3a9702066656c74c3b66c74c3a97365, 'Y', '2015-09-19 19:21:42'),
(2184, 36, 0x4a656c656e6c656769206bc3a970, 'Y', '2015-09-19 19:21:42'),
(2185, 36, 0x4bc3a970206d656e74c3a97365, 'Y', '2015-09-19 19:22:11'),
(2186, 36, 0x4bc3a9702074c3b6726cc3a97365, 'Y', '2015-09-19 19:22:11'),
(2192, 36, 0x4964c59174c3ba6c6cc3a970c3a9736573206779c5917a656c656d20766973737a6175746173c3ad74c3a17361, 'Y', '2015-09-22 21:13:24'),
(2196, 36, 0x4d65676a656c656ec3a973, 'Y', '2015-09-19 19:24:39'),
(2197, 36, 0x4a61766153637269707420656e676564c3a96c79657ac3a97365, 'Y', '2015-09-19 19:24:39'),
(2198, 36, 0x4e696e637320676f6d62, 'Y', '2015-09-19 19:24:39'),
(2199, 36, 0x417a6f6e6f73c3ad74c3b320676f6d62, 'Y', '2015-09-19 19:24:39'),
(2204, 36, 0x52656c6174c3ad7620737ac3a16d6f7ac3a173, 'Y', '2015-09-19 19:25:14'),
(2205, 36, 0x466f7264c3ad746f747420737ac3a16d6f7ac3a173, 'Y', '2015-09-19 19:25:14'),
(2651, 36, 0x50726f66696c206d656e74766521, 'Y', '2015-09-19 19:29:30'),
(2652, 36, 0x4d656761646f747420616461746f6b, 'Y', '2015-09-19 19:29:30'),
(2653, 36, 0x416461746f6b2074c3b6726cc3a97365, 'Y', '2015-09-19 19:29:30'),
(2654, 36, 0x416461746f6b20766973737a61c3a16c6cc3ad74c3a17361, 'Y', '2015-09-19 19:29:30'),
(2655, 36, 0x4d656e74c3a97320616c6170c3a97274656c6d657a6574746bc3a96e74, 'Y', '2015-09-19 19:29:30'),
(2672, 36, 0x5b25735d2066656c6861737a6ec3a16cc3b36e616b2076616e2070726f66696c6bc3a97065, 'Y', '2015-09-19 19:29:30'),
(2673, 36, 0x5b25735d2066656c6861737a6ec3a16cc3b32070726f66696c6bc3a97065, 'Y', '2015-09-19 19:29:30'),
(3224, 36, 0x50726f66696c6bc3a970, 'Y', '2015-09-19 19:29:52'),
(3537, 36, 0x41646d696e2066656c6861737a6ec3a16cc3b3, 'Y', '2015-09-19 19:32:10'),
(4493, 36, 0x4964c5917ac3b36e61, 'Y', '2015-09-19 19:32:10'),
(4494, 36, 0x46656c6861737a6ec3a16cc3b32068656c7969206964656a65, 'Y', '2015-09-19 19:32:10'),
(4496, 36, 0x55746f6c73c3b32067796f727320656cc3a972c3a973, 'Y', '2015-09-19 19:32:10'),
(4497, 36, 0x6b696b617063736f6c7661, 'Y', '2015-09-19 19:32:10'),
(4498, 36, 0x2573206e6170, 'Y', '2015-09-19 19:32:10'),
(4499, 36, 0x4964c59174c3ba6c6cc3a970c3a97373656c20656c7665737ac3ad74657474206ac3a174737a6dc3a16b, 'Y', '2015-09-19 19:32:10'),
(4500, 36, 0x54c3b662626ac3a174c3a96b6f73206ac3a174737a6dc3a16b, 'Y', '2015-09-19 19:32:10'),
(4502, 36, 0x50726f66696c6bc3a970202872656a7465747429, 'Y', '2015-09-19 19:32:10'),
(4503, 36, 0x50726f66696c6bc3a970, 'Y', '2015-09-19 19:32:51'),
(4591, 36, 0x41206b6976c3a16c61737a746f7474206964c5917ac3b36e61205b25735d20c3a97276c3a96e7974656c656e, 'Y', '2015-09-19 19:32:51'),
(4617, 36, 0x456779c3a962, 'Y', '2015-09-19 19:34:06'),
(5476, 36, 0xc3897276c3a96e7974656c656e20656d61696c2063c3ad6d21, 'Y', '2015-09-19 19:34:06'),
(5477, 36, 0x456d61696c2063c3ad6d206d65676572c59173c3ad74766521, 'Y', '2015-09-19 19:34:06'),
(5478, 36, 0x456d61696c2063c3ad6d206e696e6373206d65676572c59173c3ad74766521, 'Y', '2015-09-19 19:34:06'),
(5479, 36, 0x4e696e6373206d65676164766120656d61696c2063c3ad6d21, 'Y', '2015-09-19 19:34:06'),
(5480, 36, 0x4265c3a16c6cc3ad74c3a1736f6b206d656e74c3a97365, 'Y', '2015-09-19 19:35:08'),
(5481, 36, 0x456d61696c2063c3ad6d, 'Y', '2015-09-19 19:35:08'),
(5482, 36, 0x5072c3b362c3a16c6b6f7ac3a1736f6b20737ac3a16d61, 'Y', '2015-09-19 19:35:08'),
(5483, 36, 0xc3897276c3a96e796573c3ad74c59120c3bc7a656e657420c3ba6a72616bc3bc6c64c3a97365, 'Y', '2015-09-19 19:35:08'),
(5484, 36, 0xc3897276c3a96e796573c3ad74c3a9732074c3b6726cc3a97365, 'Y', '2015-09-19 19:35:08'),
(5485, 36, 0x456d61696c20c3a97320c3a972746573c3ad74c3a97369206265c3a16c6cc3ad74c3a1736f6b, 'Y', '2015-09-19 19:35:37'),
(5720, 36, '', 'Y', '2015-09-19 19:36:22'),
(5728, 36, '', 'Y', '2015-09-19 19:36:53'),
(1511, 36, 0x43c3ad6d7a657474, 'Y', '2015-09-19 19:38:59'),
(1512, 36, 0x46656c6164c3b3, 'Y', '2015-09-19 19:38:59'),
(1513, 36, 0x54c3a1726779, 'Y', '2015-09-19 19:39:08'),
(1518, 36, 0x43c3ad6d7a657474, 'Y', '2015-09-19 19:39:58'),
(1519, 36, 0x46656c6164c3b3, 'Y', '2015-09-19 19:39:58'),
(1586, 36, 0xc39673737a6573, 'Y', '2015-09-19 19:39:58'),
(1591, 36, 0xc39673737a6573, 'Y', '2015-09-19 19:39:58'),
(3060, 36, '', 'Y', '2015-09-19 19:40:23'),
(3061, 36, '', 'Y', '2015-09-19 19:40:23'),
(3066, 36, 0x70c3a96c64c3a1756c3a20323a32202852656e676f292c203320285a656e2d476f29, 'Y', '2015-09-19 19:41:07'),
(3067, 36, 0x555443206964c5917ac3b36e61, 'Y', '2015-09-19 19:41:07'),
(3011, 36, 0x6bc3ad6e616920286b616e746f6e6929, 'Y', '2015-09-20 11:30:55'),
(3012, 36, 0x6bc3ad6e616920286d616e646172696e29, 'Y', '2015-09-20 11:30:55'),
(3034, 36, 0xc3ad72, 'Y', '2015-09-20 11:30:55'),
(3037, 36, 0x74616d696c, 'Y', '2015-09-20 11:30:55'),
(3038, 36, 0x75726475, 'Y', '2015-09-20 11:30:55'),
(3039, 36, 0x62656e67c3a16c69, 'Y', '2015-09-20 11:30:55'),
(3043, 36, 0x616672696b61616e73, 'Y', '2015-09-20 11:30:55'),
(3044, 36, 0x737a756168c3a96c69, 'Y', '2015-09-20 11:30:55'),
(3051, 36, 0x7061737475, 'Y', '2015-09-20 11:30:55'),
(794, 36, 0x436f6d6f72652d737a69676574656b, 'Y', '2015-09-20 11:37:55'),
(795, 36, 0x4b6f6e67c3b369204bc3b67a74c3a172736173c3a167, 'Y', '2015-09-20 11:37:55'),
(796, 36, 0x4b6f6e67c3b3692044656d6f6b726174696b7573204bc3b67a74c3a172736173c3a167, 'Y', '2015-09-20 11:37:55'),
(802, 36, 0x43736568204bc3b67a74c3a172736173c3a167, 'Y', '2015-09-20 11:37:55'),
(804, 36, 0x447a736962757469, 'Y', '2015-09-20 11:37:55'),
(805, 36, 0x446f6d696e696b6169204bc3b67ac3b67373c3a967, 'Y', '2015-09-20 11:37:55'),
(806, 36, 0x446f6d696e696b6169204bc3b67a74c3a172736173c3a167, 'Y', '2015-09-20 11:37:55'),
(808, 36, '', 'Y', '2015-09-20 11:37:55'),
(809, 36, 0x4567796970746f6d, 'Y', '2015-09-20 11:37:55'),
(810, 36, '', 'Y', '2015-09-20 11:37:55'),
(813, 36, 0xc389737a746f72737ac3a167, 'Y', '2015-09-20 11:38:38'),
(814, 36, 0x457469c3b3706961, 'Y', '2015-09-20 11:38:38'),
(816, 36, 0x46696e6e6f72737ac3a167, 'Y', '2015-09-20 11:38:38'),
(817, 36, 0x4672616e6369616f72737ac3a167, 'Y', '2015-09-20 11:38:38'),
(820, 36, 0x4772c3ba7a6961, 'Y', '2015-09-20 11:38:38'),
(821, 36, 0x4ec3a96d65746f72737ac3a167, 'Y', '2015-09-20 11:39:01'),
(823, 36, 0x47c3b672c3b6676f72737ac3a167, 'Y', '2015-09-20 11:39:01'),
(831, 36, '', 'Y', '2015-09-20 11:39:44'),
(832, 36, 0x4d61677961726f72737ac3a167, 'Y', '2015-09-20 11:39:44'),
(833, 36, 0x497a6c616e64, 'Y', '2015-09-20 11:39:44'),
(834, 36, '', 'Y', '2015-09-20 11:39:44'),
(835, 36, 0x496e646f6ec3a97a6961, 'Y', '2015-09-20 11:39:44'),
(836, 36, 0x4972c3a16e, 'Y', '2015-09-20 11:39:44'),
(837, 36, 0x4972616b, 'Y', '2015-09-20 11:39:44'),
(838, 36, 0xc38d726f72737ac3a167, 'Y', '2015-09-20 11:40:20'),
(839, 36, 0x497a7261656c, 'Y', '2015-09-20 11:40:20'),
(840, 36, 0x4f6c61737a6f72737ac3a167, 'Y', '2015-09-20 11:40:20'),
(842, 36, 0x4a6170c3a16e, 'Y', '2015-09-20 11:40:20'),
(845, 36, '', 'Y', '2015-09-20 11:40:20'),
(852, 36, 0x4c6574746f72737ac3a167, 'Y', '2015-09-20 11:40:35'),
(858, 36, 0x4c697476c3a16e6961, 'Y', '2015-09-20 11:41:00'),
(867, 36, 0x4dc3a16c7461, 'Y', '2015-09-20 11:41:33'),
(871, 36, 0x4d6578696bc3b3, 'Y', '2015-09-20 11:41:33'),
(873, 36, '', 'Y', '2015-09-20 11:41:33'),
(874, 36, '', 'Y', '2015-09-20 11:41:33'),
(876, 36, 0x4d61726f6b6bc3b3, 'Y', '2015-09-20 11:41:45'),
(882, 36, 0x486f6c6c616e646961, 'Y', '2015-09-20 11:42:15'),
(886, 36, 0x4e6967c3a9726961, 'Y', '2015-09-20 11:42:15'),
(887, 36, 0x4e6f7276c3a9676961, 'Y', '2015-09-20 11:42:15'),
(889, 36, 0x50616b69737a74c3a16e, 'Y', '2015-09-20 11:42:15'),
(892, 36, '', 'Y', '2015-09-20 11:42:33'),
(894, 36, '', 'Y', '2015-09-20 11:42:33'),
(895, 36, '', 'Y', '2015-09-20 11:42:33'),
(897, 36, 0x4c656e6779656c6f72737ac3a167, 'Y', '2015-09-20 11:42:54'),
(898, 36, 0x506f72747567c3a16c6961, 'Y', '2015-09-20 11:42:54'),
(901, 36, 0x526f6dc3a16e6961, 'Y', '2015-09-20 11:43:18'),
(902, 36, 0x4f726f737a6f72737ac3a167, 'Y', '2015-09-20 11:43:18'),
(908, 36, '', 'Y', '2015-09-20 11:43:18'),
(911, 36, 0x537a656e6567c3a16c, 'Y', '2015-09-20 11:43:32'),
(915, 36, 0x537a696e676170c3ba72, 'Y', '2015-09-20 11:43:43'),
(916, 36, 0x537a6c6f76c3a16b6961, 'Y', '2015-09-20 11:43:52'),
(917, 36, 0x537a6c6f76c3a96e6961, 'Y', '2015-09-20 11:44:02'),
(921, 36, 0x5370616e796f6c6f72737ac3a167, 'Y', '2015-09-20 11:44:39'),
(923, 36, 0x537a7564c3a16e, 'Y', '2015-09-20 11:44:39'),
(926, 36, 0x5376c3a9646f72737ac3a167, 'Y', '2015-09-20 11:44:39'),
(927, 36, 0x5376c3a16a63, 'Y', '2015-09-20 11:44:39'),
(928, 36, 0x537ac3ad726961, 'Y', '2015-09-20 11:44:39'),
(937, 36, 0x54c3b672c3b66b6f72737ac3a167, 'Y', '2015-09-20 11:45:14'),
(941, 36, 0x556b72616a6e61, 'Y', '2015-09-20 11:45:14');
INSERT INTO `Translations` (`Original_ID`, `Language_ID`, `Text`, `Translated`, `Updated`) VALUES
(943, 36, 0x4567796573c3bc6c74204b6972c3a16c7973c3a167, 'Y', '2015-09-20 11:45:14'),
(944, 36, 0x4567796573c3bc6c7420c3816c6c616d6f6b, 'Y', '2015-09-20 11:45:31'),
(949, 36, '', 'Y', '2015-09-20 11:46:10'),
(953, 36, '', 'Y', '2015-09-20 11:46:10'),
(1126, 36, 0xc389737a616b2d4b6f726561, 'Y', '2015-09-20 11:46:10'),
(1127, 36, 0x44c3a96c2d4b6f726561, 'Y', '2015-09-20 11:46:10'),
(1129, 36, 0x537a6572626961, 'Y', '2015-09-20 11:46:10'),
(1130, 36, 0x46c3b66c64, 'Y', '2015-09-20 11:46:22'),
(2687, 36, 0x457572c3b370616920556e69c3b3, 'Y', '2015-09-20 11:46:47'),
(2693, 36, 0x4772c3b66e6c616e64, 'Y', '2015-09-20 11:47:29'),
(5785, 5, 0x2573206761676e6520706172206162616e646f6e, 'Y', '2015-09-22 10:18:29'),
(5505, 6, 0x50756e7475616369f36e207072656c696d696e6172, 'Y', '2015-09-23 03:59:22'),
(6373, 6, 0x5469656d706f2072657374616e7465206465204e6567726f, 'Y', '2015-10-09 04:43:04'),
(6374, 6, 0x5469656d706f2072657374616e7465206465204e6567726f, 'Y', '2015-10-09 04:43:04'),
(6375, 6, 0x5469656d706f2072657374616e746520646520426c616e636f, 'Y', '2015-10-09 04:43:04'),
(6376, 6, 0x5469656d706f2072657374616e746520646520426c616e636f, 'Y', '2015-10-09 04:43:22'),
(2911, 6, 0x436f7069617220636f6d6f20756e612070617274696461206e75657661, 'Y', '2015-10-13 04:45:48'),
(4706, 6, 0x4a75676172206465206e7565766f, 'Y', '2015-10-13 04:46:46'),
(2427, 6, 0x4d6f737472617220696e766974616369f36e, 'Y', '2015-10-13 04:47:58'),
(2429, 6, 0x436f6d69656e7a6f, 'Y', '2015-10-13 04:48:35'),
(5027, 6, 0x436f6d69656e7a6f, 'Y', '2015-10-13 04:48:35'),
(2277, 6, 0xda6c74696d6f2063616d62696f, 'Y', '2015-10-13 04:49:45'),
(2442, 6, 0x436f6e74656f206465207469656d706f, 'Y', '2015-10-13 04:53:10'),
(2443, 6, 0x5469656d706f206578747261, 'Y', '2015-10-13 04:51:14'),
(2444, 6, 0x45737461646f2064656c2072656c6f6a, 'Y', '2015-10-13 04:51:34'),
(2434, 6, 0x52656c6f6a20646574656e69646f, 'Y', '2015-10-13 04:52:21'),
(2445, 6, 0x52656c6f6a20646574656e69646f, 'Y', '2015-10-13 05:03:48'),
(4583, 6, 0x52656c6f6a20646574656e69646f206c6f732066696e65732064652073656d616e61, 'Y', '2015-10-13 05:03:03'),
(1920, 6, 0x456e206361736f20717565206e6f2074656e67617320756e20636f7272656f20656c65637472f36e69636f207265706f727461646f20656e207475206375656e74613a, 'Y', '2015-10-28 17:23:19'),
(2791, 6, 0x506f72206661766f7220656e74726120636f6d6f202267756573742d757365722220792075736120656c20666f726f2022537570706f7274222070617261206f6274656e65722061797564612e20436f6c6f636120747520226c6f67696e2d757365722220286964656e7469666963616369f36e206465207573756172696f29207920747520636f7272656f20656c65637426233334313b6f6e69636f2e, 'Y', '2015-10-28 17:26:02'),
(2936, 6, 0x2e2e2e20747520636f6c6f7220736572ed61202531247320636f6e202532247320706965647261732064652068e16e64696361702079206b6f6d69206465202533242e3166, 'Y', '2015-11-03 14:56:28'),
(1919, 6, 0x5369207469656e657320756e20636f7272656f20656c65637472f36e69636f207265676973747261646f20656e207475206375656e7461204447532c207075656465732067656e6572617220756e61206e7565766120636c61766520617175ed3a202573, 'Y', '2015-11-29 18:49:02'),
(6264, 40, 0x41646d696e6973747261646f726573206ee36f20706f64656d206f63756c746172206d656e736167656e7320646520757375e172696f73206e6f732066f372756e732e, 'Y', '2015-12-04 10:07:29'),
(6266, 40, 0x4f63756c746172206d656e736167656e73206e6f732066f372756e73, 'Y', '2015-12-04 10:07:29'),
(1601, 6, 0x457374756469616e7465, 'Y', '2015-12-09 21:05:03'),
(2674, 6, 0x45717569706f20656e20444753, 'Y', '2015-12-09 21:07:48'),
(6161, 6, 0x48e9726f6525, 'Y', '2015-12-18 16:26:24'),
(6178, 6, 0x48e9726f6525, 'Y', '2015-12-18 16:26:24'),
(2331, 5, 0x466f6e6374696f6e6e616c6974e97320737572206c65737175656c6c657320766f746572, 'Y', '2015-12-26 21:43:44'),
(2822, 5, 0x44e9736f6ce92c20766f7573206e27ea74657320706173206175746f726973e920e020616a6f757465722c206d6f646966696572206f752065666661636572206c657320666f6e6374696f6e6e616c6974e9732e, 'Y', '2015-12-26 21:43:44'),
(5278, 5, 0x466f6e6374696f6e6e616c6974e973206465206c6120636f6d6d756e617574e920447261676f6e, 'Y', '2015-12-26 21:43:44'),
(5592, 5, 0x766f74657a2073757220756e65206e6f7576656c6c6520666f6e6374696f6e6e616c6974e9236d656e75, 'Y', '2015-12-26 21:43:44'),
(2770, 5, 0x44e9736f6ce92c20636574746520666f6e6374696f6e6e616c6974e9206120e974e92064e9736163746976e9652073757220636520736572766575722e, 'Y', '2015-12-26 21:49:36'),
(2793, 5, 0x44e9736f6ce92c20766f7573206e27ea74657320706173206175746f726973e920e0206372e9657220756e206e6f757665617520746f75726e6f69732e20436574746520666f6e6374696f6e6e616c6974e9206120e974e920626c6f7175e96520706172206c65732061646d696e697374726174657572732e, 'Y', '2015-12-26 21:49:36'),
(2795, 5, 0x44e9736f6ce92c20766f7573206e27ea74657320706173206175746f726973e920e020766f757320656e7265676973747265722064616e7320756e20746f75726e6f69732e20436574746520666f6e6374696f6e6e616c6974e9206120e974e920626c6f7175e96520706172206c65732061646d696e697374726174657572732e, 'Y', '2015-12-26 21:49:36'),
(2345, 5, 0x303d6e65757472652c203c303d64e9736163636f72642c203e303d666f6e6374696f6e6e616c6974e920736f7568616974e965, 'Y', '2015-12-26 21:50:24'),
(2347, 5, 0x257320706f696e7473, 'Y', '2015-12-26 22:00:20'),
(2821, 5, 0x44e9736f6ce92c20636574746520666f6e6374696f6e6e616c6974e973206e65207065757420ea747265206566666163e96520656e20726169736f6e2064657320766f746573206578697374616e747320706f75722063656c6c652d63692e, 'Y', '2015-12-26 21:57:34'),
(2823, 5, 0x44e9736f6ce92c20766f7573206e27ea74657320706173206175746f726973e920e0206d6f646966696572206c657320666f6e6374696f6e6e616c6974e973206465206365207374617475742e, 'Y', '2015-12-26 21:57:34'),
(4609, 5, 0x4d657320566f746573237469746c65, 'Y', '2015-12-26 21:57:34'),
(4647, 5, 0x6566666f727420657374696de9, 'Y', '2015-12-26 22:00:20'),
(4645, 5, 0x2564206a6f7572287329206465207472617661696c20656e762e, 'Y', '2015-12-27 10:44:15'),
(4646, 5, 0x2564206d6f6973206465207472617661696c20656e762e, 'Y', '2015-12-27 10:43:01'),
(4648, 5, 0x6566666f727420696e636f6e6e75, 'Y', '2015-12-27 10:43:01'),
(4649, 5, 0x7472e873206772616e642c203e36206d6f6973206465207472617661696c, 'Y', '2015-12-27 10:43:01'),
(4046, 5, 0x4d65747472652022302220706f75722064e97361637469766572206c6120666f6e6374696f6e6e616c6974e921, 'Y', '2015-12-27 19:47:05'),
(2753, 5, 0x44e9736f6ce92c206c276164726573736520646f6e6ee965206e652073656d626c652070617320ea7472652076616c6964652e204d657263692064652076e972696669657220766f74726520667261707065206f752064276573736179657220756e6520617574726520616472657373652e, 'Y', '2016-01-15 13:46:37'),
(5601, 5, 0x56e972696669636174696f6e206465206c276164726573736520e96c656374726f6e69717565, 'Y', '2016-01-15 13:46:37'),
(5596, 5, 0x436f6d70746520646520636f6e6e6578696f6e, 'Y', '2016-01-15 13:51:25'),
(5597, 5, 0x506f7572206163746976657220766f74726520636f6d70746520657420636f6e6669726d657220766f74726520656e72656769737472656d656e742c20756e20636f64652064652076616c69646174696f6e207365726120656e766f79e92073757220766f74726520452d6d61696c2e, 'Y', '2016-01-15 13:54:17'),
(5578, 5, 0x4c27452d6d61696c2073657261207574696c6973e920706f757220766f757320656e766f79657220756e206e6f7576656175206d6f74206465207061737365206f7520766f757320696e666f726d6572206465206c27e9746174206475207365727665757220447261676f6e2e, 'Y', '2016-01-15 13:55:31'),
(2349, 5, 0x52e9696e697469616c6973657220756e206d6f742064652070617373652070617220766f75732d6dea6d65206e2765737420706f737369626c652071756520736920766f7573206176657a2072656e736569676ee920756e20452d6d61696c20706f757220766f74726520636f6d7074652e, 'Y', '2016-01-15 13:58:15'),
(2788, 5, 0x536920766f7573206176657a206f75626c69e920766f747265206d6f74206465207061737365206e6f757320706f75766f6e7320766f757320656e20656e766f79657220756e206e6f75766561752e, 'Y', '2016-01-15 13:59:26'),
(1395, 5, 0x536920766f7573206176657a206f75626c69e920766f747265206d6f74206465207061737365206e6f757320706f75766f6e7320766f757320656e20656e766f79657220756e206e6f75766561752e0d0a3c62723e4c65206e6f7576656175206d6f7420646520706173736520736572612067e96ee972e920616ce961746f6972656d656e742c206d61697320766f757320706f7576657a206269656e2073fb72206c65206d6f64696669657220756c74e97269657572656d656e742064657075697320766f74726520706167652064652070726f66696c2e0d0a3c62723e4a7573717527e02063652071756520766f757320656e206368616e6769657a2c206c27616e6369656e20636f6d6d65206c65206e6f7576656175206d6f74206465207061737365207365726f6e742076616c6964652073696d756c74616ee96d656e742e, 'Y', '2016-01-15 14:01:13'),
(1920, 5, 0x536920766f7573206e276176657a207061732072656e736569676ee9206427452d6d61696c20706f757220766f74726520636f6d7074653a, 'Y', '2016-01-15 14:01:58'),
(2751, 5, 0x4d6572636920646520766f757320636f6e6e65637465722061766563206c6520636f6d70746520226775657374222065742064277574696c69736572206c6520666f72756d206427617373697374616e636520706f7572206f6274656e6972206465206c27616964652028666f75726e697220766f747265206e6f6d20646520636f6d70746520657420756e20452d6d61696c29, 'Y', '2016-01-15 14:04:49'),
(2791, 5, 0x4d6572636920646520766f757320636f6e6e65637465722061766563206c6520636f6d70746520226775657374222065742064277574696c69736572206c6520666f72756d206427617373697374616e636520706f7572206f6274656e6972206465206c27616964652028666f75726e697220766f747265206e6f6d20646520636f6d70746520657420756e20452d6d61696c29, 'Y', '2016-01-15 14:04:49'),
(4499, 5, 0x5061727469657320706572647565732061752074656d7073, 'Y', '2016-01-15 14:07:25'),
(1484, 5, 0x456e20636f757273, 'Y', '2016-01-15 14:10:45'),
(2584, 5, 0x50617274696520656e20636f757273, 'Y', '2016-01-15 14:10:45'),
(5703, 5, 0x4d6573207061727469657320646520746f75726e6f697320656e20636f757273, 'Y', '2016-01-15 14:11:27'),
(4501, 5, 0x25732028456e20636f757273292c20257320285072e9706172e9657329, 'Y', '2016-01-15 14:13:25'),
(4497, 5, 0x64e9736163746976e9, 'Y', '2016-01-15 14:14:27'),
(6335, 5, 0x4e6f6d206465206c2761647665727361697265, 'Y', '2016-01-15 14:16:47'),
(6336, 5, 0x4e6f6d206465206c2761647665727361697265, 'Y', '2016-01-15 14:20:02'),
(6338, 5, 0x50736575646f206465206c2761647665727361697265, 'Y', '2016-01-15 14:24:08'),
(6340, 5, 0x4e6976656175206465206c2761647665727361697265, 'Y', '2016-01-15 14:20:02'),
(6344, 5, 0x4e69766561752064652066696e206465206c2761647665727361697265, 'Y', '2016-01-15 14:20:02'),
(6346, 5, 0xc963617274206465206e6976656175206465206c2761647665727361697265, 'Y', '2016-01-15 14:20:02'),
(5543, 5, 0x4e6976656175206465206c2761647665727361697265, 'Y', '2016-01-15 14:20:43'),
(3357, 5, 0x436f75702061647665727365, 'Y', '2016-01-15 14:21:06'),
(1420, 5, 0x4e6976656175206e6f6972, 'Y', '2016-01-15 14:22:38'),
(1424, 5, 0x4e697665617520626c616e63, 'Y', '2016-01-15 14:22:38'),
(1463, 5, 0x566f6972206c6520677261706865206465206e6976656175, 'Y', '2016-01-15 14:22:38'),
(3121, 5, '', 'Y', '2016-01-15 14:22:50'),
(1418, 5, 0x50736575646f206e6f6972, 'Y', '2016-01-15 14:24:08'),
(1422, 5, 0x50736575646f20626c616e63, 'Y', '2016-01-15 14:24:08'),
(1536, 5, 0x417574657572202850736575646f29, 'Y', '2016-01-15 14:24:28'),
(5444, 5, 0x53474620617474616368e973, 'Y', '2016-01-15 14:26:10'),
(5449, 5, 0x53474620617474616368e9, 'Y', '2016-01-15 14:26:10'),
(3359, 5, 0x436f6d6d656e746169726573206465206a65752063616368e973, 'Y', '2016-01-15 14:27:34'),
(5223, 5, 0x566f6972206c657320636f6d6d656e7461697265732064657320746f75726e6f6973, 'Y', '2016-01-15 14:28:54'),
(3225, 5, 0x4578697374656e6365206427756e6520696d616765207574696c69736174657572, 'Y', '2016-01-15 16:24:17'),
(3227, 5, 0x5574696c6973617465757220656e206c69676e6520696c2079206120617520706c7573202573206d6e, 'Y', '2016-01-15 16:24:17'),
(5905, 5, 0x5574696c6973617465757220656e20766163616e636573, 'Y', '2016-01-15 16:24:17'),
(5693, 5, 0x6f7520656e20766163616e636573, 'Y', '2016-01-15 16:24:57'),
(2436, 5, 0x4e69766561752064652064e96275742064752067726f757065, 'Y', '2016-01-15 16:26:53'),
(6329, 5, 0x4e69766561752064652064e9627574206e6f6972, 'Y', '2016-01-15 16:26:53'),
(6330, 5, 0x4e69766561752064652064e962757420626c616e63, 'Y', '2016-01-15 16:26:53'),
(6341, 5, 0x4e69766561752064652064e9627574206465206c2761647665727361697265, 'Y', '2016-01-15 16:26:53'),
(6342, 5, 0x4e69766561752064652064e9627574206465206c2761647665727361697265, 'Y', '2016-01-15 16:26:53'),
(6347, 5, 0x4e69766561752064652064e9627574206465206c277574696c69736174657572, 'Y', '2016-01-15 16:26:53'),
(6348, 5, 0x4e69766561752064652064e9627574206465206c277574696c69736174657572, 'Y', '2016-01-15 16:26:53'),
(2522, 5, 0x50726f636861696e20636f757020706f7572206365206a6f75657572, 'Y', '2016-01-20 08:56:03'),
(5679, 5, 0x4c6120636f6c6f6e6e6520272573272061666669636865206c652068616e6469636170206f752073657320626f726e65732c2065782e20352c205b302c395d2c205b302c44395d206f75202573, 'Y', '2016-01-20 09:07:26'),
(4728, 7, 0x4e6f76e12068726120726f7a6573746176656eed, 'Y', '2016-07-20 18:40:45'),
(5195, 7, 0x494420726f7a6573746176656eed20232573, 'Y', '2016-07-20 18:40:45'),
(1067, 7, 0x526f646efd206a617a796b, 'Y', '2016-07-20 16:35:38'),
(1068, 7, 0x5a6e616c6f7374206a617a796b61, 'Y', '2016-07-20 16:35:38'),
(1073, 7, 0xc8ed736c6f76e16eed20746168f9, 'Y', '2016-07-20 16:35:38'),
(1074, 7, 0x4e65706f75beed76617420e8ed736c61206e616420313030, 'Y', '2016-07-20 16:35:38'),
(1077, 7, 0x4d616ce9206865726eed206465736b79, 'Y', '2016-07-20 16:35:38'),
(1078, 7, 0x56656c6be9206865726eed206465736b79, 'Y', '2016-07-20 16:35:38'),
(1079, 7, 0x506f7a696365, 'Y', '2016-07-20 16:35:38'),
(1080, 7, 0x56fdb96b61, 'Y', '2016-07-20 16:35:38'),
(1081, 7, 0xa9edf86b61, 'Y', '2016-07-20 16:35:38'),
(1087, 7, 0x4b6f6d656e74e1f865, 'Y', '2016-07-20 16:39:48'),
(1111, 7, 0x4772616620686f646e6f63656eed, 'Y', '2016-07-20 16:39:48'),
(1113, 7, 0x486f646e6f63656ee920687279, 'Y', '2016-07-20 16:39:48'),
(1131, 7, 0x4f6d6c6f7576e16d652073652c20706f74f86562756a657465206e696d696ee16c6eec20256420646eed20646f766f6c656ee92c20616279737465206d6f686c286129207a61e8ed7420646f766f6c656e6f752e, 'Y', '2016-07-20 16:39:48'),
(1210, 7, 0x557072617669742062696f6772616669636be920696e666f726d616365, 'Y', '2016-07-20 16:39:48'),
(1214, 7, 0x416b7469766eed2075be69766174656ce9, 'Y', '2016-07-20 16:39:48'),
(1218, 7, 0x506f7a6164ed, 'Y', '2016-07-20 16:39:48'),
(1219, 7, 0xc8657276656ee1, 'Y', '2016-07-20 16:39:48'),
(1220, 7, 0x5a656c656ee1, 'Y', '2016-07-20 16:39:48'),
(1221, 7, 0x4d6f6472e1, 'Y', '2016-07-20 16:41:22'),
(1222, 7, 0x416c6661, 'Y', '2016-07-20 16:41:22'),
(1223, 7, 0x5a6f6272617a6974206e6120737472e16e63652070f865686c656475, 'Y', '2016-07-20 16:41:22'),
(1224, 7, 0x506f70f86564ed, 'Y', '2016-07-20 16:41:22'),
(1226, 7, 0x416b7475616c697a616365, 'Y', '2016-07-20 16:41:22'),
(1245, 7, 0x536b727974e9, 'Y', '2016-07-20 16:41:22'),
(1273, 7, 0x4164726573e1f8206d7573ed2062fd74207072e17a646efd2c20616279206d6f686c2062fd7420736d617ae16e21, 'Y', '2016-07-20 16:41:22'),
(1379, 7, '', 'Y', '2016-07-20 16:41:22'),
(1225, 7, 0x4164726573e1f865207570726176656e7921, 'Y', '2016-07-20 16:50:33'),
(1389, 7, 0x5570726176697420706ff86164ed2062696f677261666965, 'Y', '2016-07-20 16:50:33'),
(1390, 7, 0x7a6dec6e6974206a656e20706ff86164ed2c207a6465206e656a736f75206d6fbe6ee9207a6dec6e792074657874752e, 'Y', '2016-07-20 16:50:33'),
(1391, 7, 0x4d6178696de16c6eed20706fe8657420f8e164656b20746162756c6b79, 'Y', '2016-07-20 16:50:33'),
(1392, 7, 0x76796272e16eed206e69beb9ed20686f646e6f747920706f6df9be652073657276657275202876697a2074e9be2046415129, 'Y', '2016-07-20 16:50:33'),
(1393, 7, 0x5a6dec6e697420767a686c6564206a656e2070726f2074656e746f2070726f686cedbe65e8, 'Y', '2016-07-20 16:50:33'),
(1403, 7, '', 'Y', '2016-07-20 16:50:33'),
(1430, 7, 0x49442075be69766174656c65, 'Y', '2016-07-20 16:50:33'),
(1443, 7, 0x486f646e6f63656ee1, 'Y', '2016-07-20 16:50:33'),
(1444, 7, 0x506f736c65646eed20746168, 'Y', '2016-07-20 16:52:28'),
(1464, 7, 0x5a6f6272617a697420736f757065f865, 'Y', '2016-07-20 16:52:28'),
(1467, 7, 0x5a6f6272617a6974206de920736f757065f865, 'Y', '2016-07-20 16:52:28'),
(1471, 7, 0x50f869646174206e6f76fd206b6f6e74616b74, 'Y', '2016-07-20 16:52:28'),
(1476, 7, 0x55707261766974206b6f6e74616b7479, 'Y', '2016-07-20 16:52:28'),
(1477, 7, 0x50f869646174206b6f6e74616b74, 'Y', '2016-07-20 16:52:28'),
(1478, 7, 0x416b7469766eed, 'Y', '2016-07-20 16:52:28'),
(1480, 7, 0x5374e174, 'Y', '2016-07-20 16:52:28'),
(1481, 7, 0x496e666f206f20fa726f766e69, 'Y', '2016-07-20 18:10:57'),
(1069, 7, 0x506f64, 'Y', '2016-07-20 16:54:05'),
(1483, 7, 0x486572, 'Y', '2016-07-27 13:30:53'),
(1484, 7, 0x50726f62ed68616aed63ed, 'Y', '2016-07-20 16:54:05'),
(1485, 7, 0x556b6f6ee8656ee9, 'Y', '2016-07-20 16:54:05'),
(1486, 7, 0x56796872616ee9, 'Y', '2016-07-20 16:54:05'),
(1487, 7, 0x50726f6872616ee9, 'Y', '2016-07-20 16:54:05'),
(1489, 7, 0x416b746976697461, 'Y', '2016-07-20 16:54:05'),
(1490, 7, 0x506f736c65646eed2070f8ed73747570, 'Y', '2016-07-20 16:54:05'),
(1492, 7, 0x446976e1636920687279202573, 'Y', '2016-07-20 16:54:05'),
(1493, 7, 0x56b965, 'Y', '2016-07-20 16:55:58'),
(1541, 7, 0x4e657a6ee16dfd2075be69766174656c, 'Y', '2016-07-20 16:55:58'),
(1542, 7, 0x4b6f6e74616b74206f64737472616eec6e21, 'Y', '2016-07-20 16:55:58'),
(1543, 7, 0x4b6f6e74616b7420756c6fbe656e21, 'Y', '2016-07-20 16:55:58'),
(1544, 7, 0x4f64737472616eec6eed206b6f6e74616b7475, 'Y', '2016-07-20 16:55:58'),
(1545, 7, 0x5570726176656eed206b6f6e74616b7475, 'Y', '2016-07-20 16:55:58'),
(1540, 7, 0x4e656df9be6574652070f8696461742073656265206a616b6f206b6f6e74616b74, 'Y', '2016-07-20 16:59:03'),
(1546, 7, 0x5a6b6f6e74726f6c6f766174206b6f6e74616b74, 'Y', '2016-07-20 16:59:03'),
(1547, 7, 0x4f64737472616e6974206b6f6e74616b74, 'Y', '2016-07-20 16:59:03'),
(1548, 7, 0x53797374e96d6f76e9206b617465676f726965, 'Y', '2016-07-20 16:59:03'),
(1549, 7, 0x55be69766174656c736be9206b617465676f726965, 'Y', '2016-07-20 16:59:03'),
(1551, 7, 0x706f7a6ee16d6b79207069b97465206b72e1746be92c206d61782e20323535207a6e616bf9, 'Y', '2016-07-20 16:59:03'),
(1552, 7, 0x556c6fbe6974206b6f6e74616b74, 'Y', '2016-07-20 16:59:03'),
(1553, 7, 0x5a6f6272617a6974206b6f6e74616b7479, 'Y', '2016-07-20 17:00:20'),
(1554, 7, 0x416b6365, 'Y', '2016-07-20 17:00:20'),
(1555, 7, 0x53797374e96d6f76e9206b617465676f726965, 'Y', '2016-07-20 17:00:20'),
(1556, 7, 0x55be69766174656c736be9206b617465676f726965, 'Y', '2016-07-20 17:00:20'),
(1557, 7, 0x506f7a6ee16d6b79, 'Y', '2016-07-20 17:00:20'),
(1560, 7, 0x486c6564656a2073797374e96d6f76e9206b617465676f726965, 'Y', '2016-07-20 17:00:20'),
(1561, 7, 0x486c6564656a2075be69766174656c736be9206b617465676f726965, 'Y', '2016-07-20 17:00:20'),
(1506, 7, 0x547970, 'Y', '2016-07-20 17:02:11'),
(1508, 7, 0x547970, 'Y', '2016-07-20 17:02:11'),
(1562, 7, 0x53657a6e616d206b6f6e74616b74f9, 'Y', '2016-07-20 17:02:11'),
(1564, 7, 0x56b96563686e7920687279, 'Y', '2016-07-20 17:02:11'),
(1565, 7, 0x50726f62ed68616aed63ed20687279, 'Y', '2016-07-20 17:02:11'),
(1566, 7, 0x556b6f6ee8656ee920687279, 'Y', '2016-07-20 17:02:11'),
(1568, 7, 0x706c6ee92073746174697374696b79206a656e2070726f20646f6b6f6ee8656ee920687279, 'Y', '2016-07-20 17:02:11'),
(1570, 7, 0x4865726eed2073746174697374696b792070726f206872e1e865202573, 'Y', '2016-07-20 17:02:11'),
(1572, 7, 0x5a6f6272617a6974206d6e65206a616b6f20736f757065f865, 'Y', '2016-07-20 17:02:32'),
(1482, 7, 0x4f746576f8656e206872e16d3f, 'Y', '2016-07-20 17:08:11'),
(1573, 7, 0x5a6f6272617a6974206a616b6f206de9686f20736f757065f865, 'Y', '2016-07-20 17:08:11'),
(1574, 7, 0x50726f686f64697420726f6c6520736f757065f8f9, 'Y', '2016-07-20 17:08:11'),
(1575, 7, 0x4261727679206872e1e8f9, 'Y', '2016-07-20 17:08:11'),
(1577, 7, 0x506f6dec722076ed74ec7a737476ed2076202347616d6573, 'Y', '2016-07-20 17:08:11'),
(1578, 7, 0x2347616d65732076796872616ee9203a2070726f6872616ee9, 'Y', '2016-07-20 17:08:11'),
(1579, 7, 0x2347616d65732076796872616ee9203a2070726f6872616ee9206e6120736bf37265, 'Y', '2016-07-20 17:08:11'),
(1580, 7, 0x2347616d65732076796872616ee9203a2070726f6872616ee92072657a69676e6163ed, 'Y', '2016-07-20 17:08:11'),
(1581, 7, 0x2347616d65732076796872616ee9203a2070726f6872616ee9206e6120e86173, 'Y', '2016-07-20 17:08:11'),
(1576, 7, 0x536f7568726e, 'Y', '2016-07-20 17:10:26'),
(1582, 7, 0x2347616d65732073204a69676f, 'Y', '2016-07-20 17:10:26'),
(1583, 7, 0x2347616d657320732068656e64696b6570656d, 'Y', '2016-07-20 17:10:26'),
(1584, 7, 0x4d6178696de16c6eed2068656e64696b6570, 'Y', '2016-07-20 17:10:26'),
(1597, 7, 0x4f646ded746e6f7574207a7072e17679, 'Y', '2016-07-20 17:10:26'),
(1598, 7, 0x4f646ded746e6f757420706f7a76e16e6b79, 'Y', '2016-07-20 17:10:26'),
(1599, 7, 0x4be16d6fb9, 'Y', '2016-07-20 17:10:26'),
(1600, 7, 0x4b616d6172e164, 'Y', '2016-07-20 17:10:26'),
(1601, 7, 0x53747564656e74, 'Y', '2016-07-20 17:10:26'),
(1602, 7, 0x55e86974656c, 'Y', '2016-07-20 17:12:50'),
(1603, 7, 0x46616e6f75b9656b, 'Y', '2016-07-20 17:12:50'),
(1604, 7, '', 'Y', '2016-07-20 17:12:50'),
(1783, 7, 0xdae86574206a6520626c6f6b6f76e16e202d204c6f67696e206f646570f8656e, 'Y', '2016-07-20 17:12:50'),
(1784, 7, 0x42696f6772616669636be920696e666f726d6163652028736b727974e929, 'Y', '2016-07-20 17:12:50'),
(1886, 7, 0x536b72fd7420687279207a20e8656be1726e79, 'Y', '2016-07-20 17:12:50'),
(1943, 7, 0x4368796261, 'Y', '2016-07-20 17:12:50'),
(2055, 7, 0x556c6fbe6974207a6dec6e79, 'Y', '2016-07-20 17:12:50'),
(2059, 7, 0x5a6dec6e697420686f646e6f63656eed206120fa726f7665f2, 'Y', '2016-07-20 18:10:57'),
(2146, 7, '', 'Y', '2016-07-20 17:15:36'),
(2167, 7, 0x4e6f76fd2076ec73746eed6b, 'Y', '2016-07-20 17:15:36'),
(2178, 7, 0x4f6272e17a656b2075be69766174656c65206f64737472616eec6e21, 'Y', '2016-07-20 17:15:36'),
(2179, 7, 0x4f6272e17a656b2075be69766174656c6520756c6fbe656e21, 'Y', '2016-07-20 17:15:36'),
(2180, 7, 0x5b20526f7a6dec72793a20257320782025732c2056656c696b6f73743a202573204b42205d, 'Y', '2016-07-20 17:15:36'),
(2181, 7, 0x5570726176656eed206f6272e17a6b752075be69766174656c65, 'Y', '2016-07-20 17:15:36'),
(2182, 7, 0x4e616872e174206f6272e17a656b, 'Y', '2016-07-20 17:15:36'),
(2184, 7, 0x536f75e861736efd206f6272e17a656b, 'Y', '2016-07-20 17:15:36'),
(2185, 7, 0x556c6fbe6974206f6272e17a656b, 'Y', '2016-07-20 17:15:36'),
(2186, 7, 0x4f64737472616e6974206f6272e17a656b, 'Y', '2016-07-20 17:24:03'),
(2187, 7, 0x4c6c696d697479206e616872e176616efd6368206f6272e17a6bf93a206d61782e202573207820257320706978656cf92061206d61782e202573204b42, 'Y', '2016-07-20 17:24:03'),
(2188, 7, 0x506f64706f726f76616ee920666f726de17479206f6272e17a6bf93a204a5045472c204749462c20504e47, 'Y', '2016-07-20 17:24:03'),
(2189, 7, 0x506f7a6ee16d6b79206b206f6272e17a6b752075be69766174656c65, 'Y', '2016-07-20 17:24:03'),
(2191, 7, 0x5a6f6272617a6974206b617465676f7269652076ec73746eed6b75, 'Y', '2016-07-20 17:24:03'),
(2192, 7, 0x4f646ded746e6f75742076fd74ec7a737476ed206e6120e86173, 'Y', '2016-07-20 17:24:03'),
(2194, 7, 0x56fd687261206e6120e86173206275646520226f646ded746e757461222028746a2e206872612062756465207a6dec6eec6e61206e61206e65686f646e6f63656e6f75292c203c62723e706f6b75642074656e20636f2070726f6872e16c206e6570726f7665646c20746168207620bee1646ee92068f86520706f207572e869746f7520646f62752e23727774, 'Y', '2016-07-20 17:24:03'),
(2195, 7, 0x646e7920286d696e696d756d2920706f206b746572e92074656e20636f2070726f6872e16c206e6570726f7665646c20bee1646efd20746168207620bee1646ee92068f86523727774, 'Y', '2016-07-20 17:24:03'),
(519, 7, 0x4e6967697269207a6e616d656ee12c20be652074766f6a6520626172766120627564652076796272e16e61206ee1686f646eec2e, 'Y', '2016-07-20 17:28:27'),
(522, 7, 0x4a65207620706ff8e1646b752070f8e174206eec6b6f6d752022686f646eec20b974ec7374ed22206e61207a61e8e1746b75206e6f76e9206872793f, 'Y', '2016-07-20 17:28:27'),
(523, 7, 0x416e6f2c2073616d6f7af8656a6dec2e204eec6b7465f8ed206872e1e869206f63656eed2069207472616469e86eed207465726ded6e203c6120687265663d22687474703a2f2f73656e736569732e786d702e6e65742f3f4f6e656761697368696d61737522207461726765743d225f626c616e6b223e6f6e656761697368696d6173753c2f613e, 'Y', '2016-07-20 17:28:27'),
(2193, 7, 0x416b7469766f766174206b6f6e74726f6c75207520686f646e6f63656efd636820286e657475726e616a6f76fd636829206865722076796872616efd6368206e6120e861733a23727774, 'Y', '2016-07-20 17:34:02'),
(2196, 7, 0x567a686c6564, 'Y', '2016-07-20 17:34:02'),
(2197, 7, 0x506f766f6c6974204a617661536372697074, 'Y', '2016-07-20 17:34:02'),
(2198, 7, 0xaee1646ee920746c61e8ed746b6f, 'Y', '2016-07-20 17:34:02'),
(2199, 7, 0x494420746c61e8ed746b6f, 'Y', '2016-07-20 17:34:02'),
(2200, 7, 0x286a656e2070726f2062617276792073207465787475726f752064f865766129, 'Y', '2016-07-20 17:34:02'),
(2201, 7, 0x50f869206e616a6574ed206d79b9ed2028756be17a617420736f75f861646e69636529, 'Y', '2016-07-20 17:34:02'),
(2202, 7, 0x5347462070f869206e616a6574ed206d79b9ed2028756be17a61742053474620736f75f861646e69636529, 'Y', '2016-07-20 17:34:02'),
(2203, 7, 0x556be17a617420e8ed736c6f206a656e2070f869206e616a6574ed206d79b9ed, 'Y', '2016-07-20 17:34:02'),
(2204, 7, 0x52656c617469766eed20e8ed736c6f76e16eed, 'Y', '2016-07-20 17:37:25'),
(2205, 7, 0x4f6272e163656ee920e8ed736c6f76e16eed, 'Y', '2016-07-20 17:37:25'),
(2206, 7, 0x4f7a6e61e869742073656272e16eed207520706f736c65646eed686f2074616875, 'Y', '2016-07-20 17:37:25'),
(2207, 7, 0x4f7a6e61e8656eed2074616875, 'Y', '2016-07-20 17:37:25'),
(2208, 7, 0x55707261766974206f6272e17a656b2075be69766174656c65, 'Y', '2016-07-20 17:37:25'),
(2209, 7, 0x52616e6b20616b7475616c697a6f76e16e21, 'Y', '2016-07-20 17:37:25'),
(2210, 7, 0x52616e6b206120686f646e6f63656eed20616b7475616c697a6f76e16e7921, 'Y', '2016-07-20 17:37:25'),
(2211, 7, 0x5a6dec6e697420696e666f726d616365206f2044475320686f646e6f63656eed20612072616e6b75, 'Y', '2016-07-20 17:37:25'),
(2212, 7, 0x55be69766174656c, 'Y', '2016-07-20 17:37:25'),
(2213, 7, 0x4d7573edb9203c623e7572e869742027486f646e6f63656eed273c2f623e20706f6b75642063686365b9203c623e6872e17420484f444e4f43454ec9206872793c2f623e, 'Y', '2016-07-20 18:06:40'),
(2214, 7, 0x5679626572207376e920686f646e6f63656eed207320726f7a6d79736c656d2c2070726f746fbe65206e656df9be652062fd74207a6dec6eec6e6f20706f2073746172747520686f646e6f63656ee9206872792e2372616e6b6e6f746573, 'Y', '2016-07-20 17:42:24'),
(1440, 7, 0x546168f9, 'Y', '2016-07-20 17:46:17'),
(1475, 7, 0x5a62fd76616aed63ed20e86173, 'Y', '2016-07-20 17:47:51'),
(2646, 7, 0x5a62fd76616aed63ed20e86173, 'Y', '2016-07-20 17:47:51'),
(3368, 7, 0x4df96a207a62fd76616aed63ed20e86173, 'Y', '2016-07-20 17:47:51'),
(3358, 7, 0x494420687279, 'Y', '2016-07-20 17:49:12'),
(4222, 7, 0x5a6164656a20494420687279, 'Y', '2016-07-20 17:49:12'),
(677, 7, 0xda726f766eec206120686f646e6f63656eed206e6120447261676f6e75, 'Y', '2016-07-20 18:09:24'),
(1613, 7, 0x6e65706c61746ee120fa726f7665f2, 'Y', '2016-07-20 18:10:57'),
(2161, 7, 0x4447532070f865766164ece820fa726f766eed, 'Y', '2016-07-20 18:10:57'),
(5693, 7, 0x6e65626f206e6120646f766f6c656ee9, 'Y', '2016-07-20 18:14:16'),
(1596, 7, 0x4f636872e16e697420687279207620e8656be1726eec, 'Y', '2016-07-20 18:50:31'),
(2215, 7, 0x506f6b7564207a6ee1b92073766f6a6920fa726f7665f2207a206a696ee9686f207a64726f6a652c206e6170f82e207a206a696ee9686f2073657276657275206e61206872616eed20476f2c206e65626f207a206f66696369e16c6eed686f2073657a6e616d7520686f646e6f63656eed2c206df9be65b920706f75beed742070f865766164ece820fa726f766eed206b65207a6a69b974ec6eed207376e9206f64706f76ed64616aed63ed20fa726f766eec206e61204447532e, 'Y', '2016-07-20 18:50:31'),
(2216, 7, 0x506f6b75642076f9626563206e657a6ee1b9207376e920686f646e6f63656eed2c206df9be65b920706fbee1646174206f20706f6d6f632076652066f372752e20da706c6efd207a61e8e17465e86eed6b206df9be65207a61e8ed74207320fa726f766eed206d657a692032356b20612033306b2e, 'Y', '2016-07-20 18:50:31'),
(2217, 7, 0x446f706f7275e8756a656d652074692076ecf8697420686f646e6f74ed63ed6d752073797374e96d752c206b746572fd207570726176756a65207476e920686f646e6f63656eed2e2053656872e16eed2076656c6be9686f206d6e6fbe737476ed2068657220706f6df9be6520727963686c6520757072617669742074766f6a6520686f646e6f63656eed206e61206f64706f76ed64616aed63ed20fa726f7665f22e, 'Y', '2016-07-20 18:50:31'),
(2218, 7, 0x5072f96dec726ee1207a6dec6e6120686f646e6f63656eed20706f207679726f766e616ee92068f865206a65206f6b6f6c6f20302c336b2c2074616bbe6520706f74f86562756a65b92076796872e1742061736920332061be2034206872792073207679726f766e616efd6d20736f757065f8656d2c20616279207365207469207a7665646c6f20686f646e6f63656eed206f20316b2e20546f746f206e69636de96eec207ae1766973ed206e61206872e1e86f766f2022636f6e666964656e63652d696e74657276616c222c2073ed6c65206120706f75beed74e96d206e6173746176656eed2068656e64696b6570752061206df9be652073652070726f746f2072f97a6e69742c20746a2e206df9be65b920706f74f865626f766174206de96eec206e65626f2076ed6365206865722e, 'Y', '2016-07-20 19:01:17'),
(2219, 7, 0x3c623e27496e666f206f20fa726f766e69273c2f623e206a65206a656e20696e666f726d617469766eed20706f6c652c206b746572e9206df9be652062fd7420706f75be69746f206b206f646be17ae16eed206e61206a696efd2073797374e96d20686f646e6f63656eed2c206e6170f8ed6b6c6164204b47432c204547462c2033642070726f206120706f642e, 'Y', '2016-07-20 19:07:11'),
(2220, 7, 0x3c623e5a6dec6e61207a6a69b974ec6ee9686f20686f646e6f63656eed3c2f623e206df9be652062fd742070726f766564656e61206a656e207a61207572e86974fd636820706f646ded6e656b, 'Y', '2016-07-20 19:07:11'),
(2221, 7, 0x50616d6174756a2c20be6520646f706f7275e8656ee1206365737461206a65206f64656872e17420686f646eec206865722061206e65636861742073797374e96d20686f646e6f63656eed20757072617669742074766f6a6520686f646e6f63656eed2e, 'Y', '2016-07-20 19:07:11'),
(2222, 7, 0x4f20fa707261767520e869207a6e6f7675206e6173746176656eed20686f646e6f63656eed206a65206f6276796b6c61206d6fbe6ee920706fbee1646174206a65646e6f7520726fe86eec2e, 'Y', '2016-07-20 19:07:11'),
(2225, 7, 0x50f86964656a20bee1646f73742076652066f3727520706f64706f727920732070f865646dec74656d20222573222e2041646d696e69737472e1746f722074766f6a6920bee1646f73742070726f76ecf8ed2061207679f8ed64ed2e3c62723e0d0a557665ef2c2070726f73ed6d2c207479746f20696e666f726d6163653a2074766f6a6520706fbe61646f76616ee920686f646e6f63656eed2c207a64726f6a20706f7476727a756aed63ed2074766f6a6920bee1646f73742c20706f6b7564206d6fbe6e6f2073206f64706f76ed64616aed63ed2075be69766174656c736bfd6d2049442c206e6170f8ed6b6c6164206a696efd20676f207365727665722c206f66696369e16c6eed20736f7570697320686f646e6f63656eed2c20646f706f7275e8656eed206f64206872e1e8652f75e86974656c652073207679b9b9ed6d20686f646e6f63656eed6d206e65be206de1b92074792e205520fa726f766eed206120686f646e6f63656eed207a206a696efd636820736572766572f9206e656a707276652c2070726f73ed6d2c20706f75be696a2070f865766164ece820686f646e6f63656eed2076fdb9652e, 'Y', '2016-07-20 19:13:44'),
(2226, 7, 0x506fbe61646176656b206e61207a6dec6e7520686f646e6f63656eed, 'Y', '2016-07-20 19:16:01'),
(2227, 7, 0x44f96c65be6974e920706f7a6ee16d6b79206b65207a6dec6eec20686f646e6f63656eed206120fa726f766eec, 'Y', '2016-07-20 19:16:01'),
(2424, 7, 0x4e6173746176656eed20687279, 'Y', '2016-07-20 19:16:01'),
(2558, 7, 0x4b6f6e76656ee86eed2068656e64696b6570, 'Y', '2016-07-20 19:16:01'),
(2650, 7, 0x50726f66696c20756c6fbe656e206a616b6f2076fd63686f7aed21, 'Y', '2016-07-20 19:16:01'),
(2651, 7, 0x50726f66696c20756c6fbe656e21, 'Y', '2016-07-20 19:16:01'),
(2652, 7, 0x536f75e861736ee920686f646e6f7479, 'Y', '2016-07-20 19:16:01'),
(2653, 7, 0x56796d617a617420686f646e6f7479, 'Y', '2016-07-20 19:16:01'),
(2654, 7, 0x52657365746f76617420686f646e6f7479, 'Y', '2016-07-20 19:16:01'),
(2655, 7, 0x556c6fbe6974206a616b6f2076fd63686f7aed, 'Y', '2016-07-20 19:19:10'),
(2656, 7, 0x4e616872e1742070726f66696c, 'Y', '2016-07-20 19:19:10'),
(2657, 7, 0x556c6fbe69742070726f66696c, 'Y', '2016-07-20 19:19:10'),
(2658, 7, 0x536d617a61742070726f66696c, 'Y', '2016-07-20 19:19:10'),
(2672, 7, 0x55be69766174656c205b25735d206de1206f6272e17a656b, 'Y', '2016-07-20 19:19:10'),
(2673, 7, 0x4f6272e17a656b2075be69766174656c65205b25735d, 'Y', '2016-07-20 19:19:10'),
(2674, 7, 0x506f73e1646b6120737472e16e656b, 'Y', '2016-07-20 19:19:10'),
(2996, 7, 0x5a616be17a616efd207a6e616b2062796c20706f75be697420752075be69766174656c65205b25735d, 'Y', '2016-07-20 19:19:10'),
(2997, 7, 0x4e616c657a656e69206e657a6ee16ded2075be69766174656ce9205b25735d, 'Y', '2016-07-20 19:19:10'),
(2998, 7, 0x53657a6e616d2075be69766174656cf9206d7573ed206f627361686f76617420616c6573706ff2206476612070f8ed6a656d63652c2076206f7061e86ee96d2070f8ed706164ec20726164ec6a6920706fb96c6920736f756b726f6d6f75207a7072e176752e, 'Y', '2016-07-20 19:24:36'),
(2999, 7, 0x55be69766174656c205b25735d206de1206f642061646d696e69737472e1746f7261207a616be17ae16e6f20686c61736f766174207620616e6b6574ec2e, 'Y', '2016-07-20 19:24:36'),
(3000, 7, 0x486f7374e92028677565737420757365727329205b25735d206e656a736f7520706f766f6c656e6920762073657a6e616d752075be69766174656cf92e, 'Y', '2016-07-20 19:24:36'),
(3224, 7, 0x4f6272e17a656b2075be69766174656c65, 'Y', '2016-07-20 19:24:36'),
(3225, 7, 0x496e64696be1746f72206578697374756aed63ed686f206f6272e17a6b752075be69766174656c65, 'Y', '2016-07-20 19:24:36'),
(3226, 7, 0x55be69766174656c206f6e6c696e65, 'Y', '2016-07-20 19:24:36'),
(3227, 7, 0x496e64696be1746f722c20be652062796c286129206f6e6c696e652070f86564206de96eec206e65be202573206d696e7574616d69, 'Y', '2016-07-20 19:24:36'),
(3228, 7, 0x4d6f646966696b6f76e16e6f, 'Y', '2016-07-20 19:24:36'),
(3295, 7, 0x5370656369e16c6eed, 'Y', '2016-07-20 19:24:36'),
(3296, 7, '', 'Y', '2016-07-20 19:26:01'),
(3297, 7, 0x56797a766174, 'Y', '2016-07-20 19:26:01'),
(3298, 7, 0x536f757065f86f767920687279, 'Y', '2016-07-20 19:26:01'),
(3299, 7, 0x4f646b617a206e612068727920732064616efd6d20736f757065f8656d, 'Y', '2016-08-03 16:53:17'),
(3300, 7, 0x526567697374726f76e16e286129, 'Y', '2016-07-20 19:26:01'),
(3303, 7, 0x536f757065f869206872e1e86520253124733a2025322473, 'Y', '2016-07-21 11:02:28'),
(3304, 7, 0x5a6f6272617a69742075be69766174656c65, 'Y', '2016-07-21 11:02:28'),
(3417, 7, 0x5a6f6272617a6974206d6f6a6920706f7a69636920686f646e6f63656eed, 'Y', '2016-07-21 11:02:28'),
(4493, 7, 0xc861736f76e1207af36e61, 'Y', '2016-07-21 11:02:28'),
(4494, 7, 0x4ded73746eed20e861732075be69766174656c65, 'Y', '2016-07-21 11:02:28'),
(4496, 7, 0x506f736c65646eed20727963686cfd2070f8ed73747570, 'Y', '2016-07-21 11:02:28'),
(4498, 7, 0x257320646ef9, 'Y', '2016-07-21 11:02:28'),
(3537, 7, 0x55be69766174656c2061646d696e69737472e1746f72, 'Y', '2016-07-21 11:07:26'),
(4499, 7, 0x4872792070726f6872616ee9206e6120e86173, 'Y', '2016-07-21 11:07:26'),
(4500, 7, 0x4d5020687279, 'Y', '2016-07-21 11:07:26'),
(4502, 7, 0x4f6272e17a656b2075be69766174656c652028736b727974fd29, 'Y', '2016-07-21 11:07:26'),
(4503, 7, 0x4f6272e17a656b2075be69766174656c65, 'Y', '2016-07-21 11:07:26'),
(4581, 7, 0x556a697374ec74652073652c20be65206e616872616efd206f6272e17a656b206e656eed2076e17ae16e206175746f72736bfd6d69207072e17679213c62723e4a696e616b2062756465206f64737472616eec6e2e, 'Y', '2016-07-21 11:07:26'),
(4591, 7, 0x42796c612076796272e16e61206e65706c61746ee120e861736f76e1207af36e61205b25735d, 'Y', '2016-07-21 11:07:26'),
(4592, 7, 0x43687962ed20652d6d61696c6f76e1206164726573612c20616279206d6f686c612062fd7420706f766f6c656e6120652d6d61696c6f76e12075706f7a6f726eec6eed2e, 'Y', '2016-07-21 11:14:55'),
(4595, 7, 0x56796272e16e206e657a6ee16dfd20736b696e205b25735d, 'Y', '2016-07-21 11:14:55'),
(4596, 7, 0x56796272e16e61206e65706c61746ee12076656c696b6f7374206b616d656ef9205b25735d20286f70726176656e61206e612076fd63686f7aed292e, 'Y', '2016-07-21 11:14:55'),
(4597, 7, 0x56796272e16e61206e65706c61746ee12062617276612064f865766120286f70726176656e61206e612076fd63686f7aed292e, 'Y', '2016-07-21 11:14:55'),
(4598, 7, 0x506f75be697461206e65706c61746ee120686f646e6f7461205b25735d2070726f20e8ed736c6f76e16eed20746168f92028706f766f6c656efd20726f7a736168206a652025732e2e2573292e, 'Y', '2016-07-21 11:14:55'),
(4497, 7, 0x7a616be17ae16e6f, 'Y', '2016-07-21 11:18:51'),
(4593, 7, 0x4f70726176656ee9206e65706c61746ee920646e79205b25735d2070726f206f646ded746e7574ed2076ed74ec7a737476ed206e6120e861732e, 'Y', '2016-07-21 11:18:51'),
(4594, 7, 0x4f70726176656ee920646e79205b25735d202870f8ed6c69b92076656c6be9292070726f206f646ded746e7574ed2076fd687279206e6120e861732e, 'Y', '2016-07-21 11:18:51'),
(4599, 7, 0x56796272e16e61206e65706c61746ee1206872616e6963652076656c696b6f73746920706f7a6ee16d656b206f6464ec6c756aed63ed20226d616c6f7522206f64202276656c6be9222068726163ed206465736b7920286f70726176656e6f206e612076fd63686f687aed292e, 'Y', '2016-07-21 18:34:18'),
(4600, 7, 0x56796272e16e61206e65706c61746ee12076fdb96b6120706f7a6ee16d656b2070726f206d616c6f752068726163ed206465736b7520286f70726176656e6f206e612076fd63686f7aed292e, 'Y', '2016-07-21 18:34:18'),
(4601, 7, 0x4e65706c61746ee12076fdb96b6120706f7a6ee16d656b2070726f2076656c6b6f752068726163ed206465736b7520286f70726176656e6f206e612076fd63686f7aed292e, 'Y', '2016-07-21 18:34:18'),
(4602, 7, 0x56796272e16e61206e65706c61746ee120b9edf86b6120706f7a6ee16d656b2070726f206d616c6f752068726163ed206465736b7520286f70726176656e6f206e612076fd63686f7aed292e, 'Y', '2016-07-21 18:34:18'),
(4603, 7, 0x56796272e16e61206e65706c61746ee120b9edf86b6120706f7a6ee16d656b2070726f2076656c6b6f752068726163ed206465736b7520286f70726176656e6f206e612076fd63686f7aed292e, 'Y', '2016-07-21 18:34:18'),
(4617, 7, 0x52f97a6ee9, 'Y', '2016-07-21 18:34:18'),
(5194, 7, 0x486f646e6f63656eed2075be69766174652061646d696e69737472e1746f7261, 'Y', '2016-07-21 18:35:53'),
(5476, 7, 0x456d61696c206a65206e65706c61746efd21, 'Y', '2016-07-21 18:35:53'),
(5477, 7, 0x456d61696c206a65206f76ecf8656efd21, 'Y', '2016-07-21 18:35:53'),
(5478, 7, 0x456d61696c206a65206e656f76ecf8656efd21, 'Y', '2016-07-21 18:35:53'),
(5479, 7, 0x456d61696c2063687962ed21, 'Y', '2016-07-21 18:35:53'),
(5480, 7, 0x556c6fbe6974206e6173746176656eed, 'Y', '2016-07-21 18:35:53'),
(5481, 7, '', 'Y', '2016-07-21 18:35:53'),
(5482, 7, 0x506f6b7573f9, 'Y', '2016-07-21 18:35:53'),
(5483, 7, 0x5a6e6f7675206f6465736c6174206f76ecf8656eed, 'Y', '2016-07-21 18:40:50'),
(5484, 7, 0x4f64737472616e6974206f76ecf8656eed, 'Y', '2016-07-21 18:40:50'),
(5485, 7, 0x5a6dec6e697420652d6d61696c2061206f7a6ee16d656eed, 'Y', '2016-07-21 18:40:50'),
(5486, 7, 0x4f746576f8ed74206f76ecf8656eed, 'Y', '2016-07-21 18:40:50'),
(5487, 7, 0x41627920626f6c6f206d6fbe6ee92070f8696aed6d6174206f7a6ee16d656eed20e869206e6f76e9206865736c6f2028706f6b75642062796c6f207a61706f6d656e75746f292c206a65206e75746e6f206e6173746176697420652d6d61696c2e, 'Y', '2016-07-21 18:40:50'),
(5488, 7, 0x4b726f6b7920706f74f865626ee9206b65207a6dec6eec20652d6d61696c753a, 'Y', '2016-07-21 18:40:50'),
(5489, 7, 0x566c6fbe206e6f76fd206120706c61746efd20652d6d61696c2061206b6c696b6e69206e612027556c6fbe6974206e6173746176656eed27, 'Y', '2016-07-21 18:40:50'),
(5490, 7, 0x4e61206e6f766f7520652d6d61696c6f766f75206164726573752062756465206f6465736ce16e61207a7072e176612073206f76ec726f766163ed6d206bf364656d2e, 'Y', '2016-07-21 18:40:50'),
(5491, 7, 0x4f746576f8656eed206f646b617a75207a2074e9746f207a7072e1767920762070726f686cedbe65e869206f76ecf8ed207476f96a20652d6d61696c206120652d6d61696c207665207476e96d20fae874752062756465206e616872617a656e206e6f76fd6d2e, 'Y', '2016-07-21 18:47:14'),
(5492, 7, 0x5a6dec6e697420706f7a6ee16d6b79, 'Y', '2016-07-21 18:47:14'),
(5493, 7, 0x4f7a6ee16d656eed20616b7475616c697a6f76e16e7921, 'Y', '2016-07-21 18:47:14'),
(5494, 7, 0x4f76ecf86f766163ed20652d6d61696c2070726f207a6dec6e7520652d6d61696c752062796c206f6465736ce16e21, 'Y', '2016-07-21 18:47:14'),
(5495, 7, 0x4f76ecf86f766163ed20652d6d61696c2070726f206578697374756aed63ed20652d6d61696c2062796c206f6465736ce16e21, 'Y', '2016-07-21 18:47:14'),
(5496, 7, 0x4e6562796c6f206e616c657a656e6f206f76ecf8656eed2c206a656ebe206de12062fd74206f64737472616eec6e6f21, 'Y', '2016-07-21 18:47:14'),
(5497, 7, 0x4df9be65b9206f64737472616e697420706f757a65207376e1206f76ecf8656eed21, 'Y', '2016-07-21 18:47:14'),
(5498, 7, 0x4f76ecf8656eed206f64737472616eec6e6f21, 'Y', '2016-07-21 18:47:14'),
(5499, 7, 0x4f76ecf8656eed2c206a656ebe206de12062fd74207a6e6f7675206f6465736ce16e6f2c206e6562796c6f206e616c657a656e6f21, 'Y', '2016-07-21 18:51:49'),
(5500, 7, 0x5a6e6f7675206f6465736c616ee9206df9be652062fd74206a656e207476e920766c6173746eed206f76ecf8656eed21, 'Y', '2016-07-21 18:51:49'),
(5501, 7, 0x4f76ecf86f766163ed20652d6d61696c2070726f207a6dec6e7520652d6d61696c75205b25735d2062796c207a6e6f7675206f6465736ce16e21, 'Y', '2016-07-21 18:51:49'),
(5714, 7, 0x5a6f6272617a6974207a6dec6e7920686f646e6f63656eed, 'Y', '2016-07-21 18:51:49'),
(5715, 7, 0x4e656d6f6875206e616aed742075be69766174656c6520732075be69766174656c736bfd6d204944205b25735d, 'Y', '2016-07-21 18:51:49'),
(5716, 7, 0x43687962ed2075be69766174656c736be92049442070726f20e865726ee9686f206872e1e865, 'Y', '2016-07-21 18:51:49'),
(5717, 7, 0x43687962ed2075be69766174656c736be92049442070726f2062ed6ce9686f206872e1e865, 'Y', '2016-07-21 18:51:49'),
(5718, 7, 0x50726f686f646974206261727679, 'Y', '2016-07-21 18:51:49'),
(5727, 7, 0x48656e64696b65703a202564, 'Y', '2016-07-21 18:53:02'),
(5728, 7, '', 'Y', '2016-07-21 18:53:02'),
(5729, 7, 0x7ae1766973ed206e612076656c696b6f7374692068726163ed206465736b79, 'Y', '2016-07-21 18:53:02'),
(5719, 7, 0x53746174757320686f646e6f63656eed, 'Y', '2016-07-21 18:54:04'),
(5723, 7, 0x486f646e6f63656eed20454c4f, 'Y', '2016-07-21 18:54:04'),
(5726, 7, 0x726f7a736168202d3230302e2e323030, 'Y', '2016-07-21 18:54:04'),
(5731, 7, 0x31303020454c4f20626f64f9203d2031206b7975, 'Y', '2016-07-21 18:54:04'),
(5751, 7, 0x486f646e6f63656eed20454c4f204d696e202d204d6178, 'Y', '2016-07-21 18:56:08'),
(5752, 7, 0x5a6dec6e7920686f646e6f63656eed2028454c4f29, 'Y', '2016-07-21 18:56:08'),
(5755, 7, 0x55be69766174656c6f766f206ded73746eed206e6fe86eed20e86173, 'Y', '2016-07-21 18:56:08'),
(5720, 7, 0x5a4dcc4e41, 'Y', '2016-07-21 19:07:20'),
(5722, 7, 0x526f7a6d657aed207363686f706e6f7374ed, 'Y', '2016-07-21 19:07:20'),
(5732, 7, 0x5a6dec6e6120686f646e6f63656eed2070f8692076fd68f865, 'Y', '2016-07-21 19:07:20'),
(5733, 7, 0x5a6dec6e6120686f646e6f64656eed2070f869204a69676f, 'Y', '2016-07-21 19:07:20'),
(5734, 7, 0x5a6dec6e6120686f646e6f63656eed2070f8692070726f68f865, 'Y', '2016-07-21 19:07:20'),
(5771, 7, 0x56656c696b6f7374206ee1686c656475, 'Y', '2016-07-21 19:07:20'),
(5772, 7, 0x56796272e16e61206e65706c61746ee12076656c696b6f7374206ee1686c656475205b25735d20286f70726176656e6f206e612076fd63686f7aed292e, 'Y', '2016-07-21 19:07:20'),
(5788, 7, 0x234865722076796872e16e6f203a2070726f6872e16e6f206e6120767a64e16eed207365, 'Y', '2016-07-21 19:07:20'),
(5789, 7, 0x234865722062657a2076fd736c65646b75, 'Y', '2016-07-21 19:12:12'),
(6160, 7, 0x56fd68657225, 'Y', '2016-07-21 19:12:12'),
(6161, 7, 0x487264696e6125, 'Y', '2016-07-21 19:12:12'),
(6177, 7, 0x486f646e6f63656efd63682076fd6865722025, 'Y', '2016-07-21 19:12:12'),
(6178, 7, 0x487264696e612025, 'Y', '2016-07-21 19:12:12'),
(6179, 7, 0x50726f63656e746f2068657220736520736c6162b9ed6d206872e1e8656d, 'Y', '2016-07-21 19:12:12'),
(6195, 7, 0x506f6b7564206a65207a6dec6e6120686f646e6f63656eed203e25732c206df9be65b920706fbee1646174206f207a6e6f76756e6173746176656eed20fa726f766eec20686f646e6f63656eed207363686f706e6f7374ed2028726174696e6720636f6e666964656e6365206c6576656c292c2061627920686f646e6f74ed63ed2073797374e96d2075707261766f76616c20686f646e6f63656eed20727963686c656a692e, 'Y', '2016-07-21 19:51:13'),
(6196, 7, 0x506f6b7564206a65207a6dec6e6120686f646e6f63656eed203e25732c206df9be65b920706fbee1646174206f20fa707261767520686f646e6f63656eed2e, 'Y', '2016-07-21 19:51:13'),
(6214, 7, 0x5a6f6272617a6974206772616620686f646e6f63656eed20706f646c6520686572, 'Y', '2016-07-21 19:51:13'),
(6215, 7, 0x4e6173746176656eed206865726eed20737472e16e6b79, 'Y', '2016-07-21 19:51:13'),
(6216, 7, 0x546c61e8ed746b6f206f6465736c617420746168, 'Y', '2016-07-21 19:51:13'),
(6217, 7, 0x5a6f6272617a697420746c61e8ed746b6f206e61206f6465736ce16eed20746168752061207365747276e16eed20762064616ee92068f865, 'Y', '2016-07-21 19:51:13'),
(6229, 7, 0x506f74f86562756a65b920686f646e6f63656eed2061206d696e2e20257320646f6b6f6ee8656efd63682068657220282573252520736520736c6162b9ed6d206872e1e8656d207320726f7a64ed6c656d203ea0316b292c2061627973207aed736b616c206f647a6e616b20687264696e792e, 'Y', '2016-07-21 19:51:13'),
(6230, 7, 0x4a736f7520706f74f86562612068727920736520736c6162b9ed6d206872e1e8656d207320726f7a64ed6c656d203e316b206b207aed736be16eed2064616cb9ed20fa726f766eec206f647a6e616b7520687264696e79, 'Y', '2016-07-21 19:51:13'),
(6264, 7, 0x536b72fd742070f8ed7370ec766b79206e612066f37275206e656eed20706f766f6c656e6f2070726f2075be69766174656c652061646d696e69737472e1746f72792e, 'Y', '2016-07-21 20:26:33'),
(6266, 7, 0x536b72fd742070f8ed7370ec766b79206e612066f37275, 'Y', '2016-07-21 20:26:33'),
(6314, 7, 0x4e6164, 'Y', '2016-07-21 20:26:33'),
(6315, 7, 0x5a7072e17661206f20746168752076652068f865, 'Y', '2016-07-21 20:26:33'),
(6316, 7, 0x506f7a6963652072656c617469766eec206b206865726eed206465736365, 'Y', '2016-07-21 20:26:33'),
(6357, 7, 0x4bf3646f76e16eed, 'Y', '2016-07-21 20:26:33'),
(6360, 7, 0x5368726f6de1be6469742076737475707920706f646c6520706f736c65646eed686f2070f8ed737475707520287a207765626f76fd636820737472e16e656b20e869206a696ee9686f206b6c69656e746129, 'Y', '2016-07-21 20:26:33'),
(6361, 7, 0x5368726f6de1be6469742076737475707920706f646c6520e861737520706f736c65646eed686f206f7a6ee16d656eed, 'Y', '2016-07-21 20:26:33'),
(6362, 7, 0x452d6d61696c6f76e9206f76ecf8656eed2062756465206f6465736ce16e6f2070f86920756c6fbe656eed207a6dec6e21, 'Y', '2016-07-21 20:29:22'),
(6369, 7, 0x50f8ed7370ec766b792075be69766174656c652061646d696e69737472e1746f7261, 'Y', '2016-07-21 20:29:22'),
(6392, 7, 0x2350726f62ed68616aed63ed2068727920732075be69766174656c656d, 'Y', '2016-07-21 20:29:22'),
(6393, 7, 0x50726f62ed68616aed63ed2068727920732075be69766174656c656d, 'Y', '2016-07-21 20:29:22'),
(6394, 7, 0x4f6d657a656eed207365206e6575706c6174f2756aed, 'Y', '2016-07-21 20:29:22'),
(6395, 7, 0x23446f6b6f6ee8656ee92068727920732075be69766174656c656d, 'Y', '2016-07-21 20:29:22'),
(6396, 7, 0x446f6b6f6ee8656ee92068727920732075be69766174656c656d, 'Y', '2016-07-21 20:29:22'),
(6397, 7, 0x62657a204d5020686572, 'Y', '2016-07-21 20:29:22'),
(6398, 7, 0x4f73612058, 'Y', '2016-07-21 20:31:55'),
(6399, 7, 0x4f73612059, 'Y', '2016-07-21 20:31:55'),
(6417, 7, 0x50726f62ed68616aed63ed2068727920736520736f757065f8656d, 'Y', '2016-07-21 20:31:55'),
(6418, 7, 0x446f6b6f6ee8656ee92068727920736520736f757065f8656d, 'Y', '2016-07-21 20:31:55'),
(6420, 7, 0x52f97a6eed20736f757065f869, 'Y', '2016-07-21 20:31:55'),
(6421, 7, 0x52f97a6eed20736f757065f869207a652076b965636820686572, 'Y', '2016-07-21 20:31:55'),
(6422, 7, 0x506f6dec722072f97a6efd636820736f757065f8f9207a652076b965636820686572, 'Y', '2016-07-21 20:31:55'),
(6408, 7, 0x7673747570f9, 'Y', '2016-07-21 20:42:59'),
(6424, 7, 0x416b7475616c696c7a6f7661742067726166, 'Y', '2016-07-21 20:42:59'),
(6425, 7, 0x536b72fd74206c696e6b7520686f646e6f63656eed, 'Y', '2016-07-21 20:41:33'),
(6426, 7, 0x4c696e6b612072656772657365, 'Y', '2016-07-21 20:41:33'),
(6427, 7, 0x4b6c6f757a6176fd207072f96dec72207a, 'Y', '2016-07-21 20:41:33'),
(2377, 7, 0x456469746f7220476f62616e75, 'Y', '2016-07-21 20:52:17'),
(1923, 7, 0x4b76f37461, 'Y', '2016-07-21 20:52:17'),
(2593, 7, 0x4e61e8ed73742068726163ed206465736b75207a20534746, 'Y', '2016-07-21 20:53:58'),
(2594, 7, 0x736f75626f7220534746, 'Y', '2016-07-21 20:53:58'),
(2595, 7, 0x4e616872e17420534746, 'Y', '2016-07-21 20:53:58'),
(2992, 7, 0x5475726e616a65, 'Y', '2016-07-21 20:55:20'),
(3147, 7, 0x5ae16c6fbe6b79, 'Y', '2016-07-21 20:55:20'),
(3148, 7, 0x506f736c65646eed2070f8ed7a70ec766b79206e612066f37275, 'Y', '2016-07-21 20:55:20'),
(3149, 7, 0x536f757065f869206f6e6c696e65, 'Y', '2016-07-21 21:03:19'),
(3150, 7, 0x55be69766174656ce9206f6e6c696e65, 'Y', '2016-07-21 21:03:19'),
(3151, 7, 0x5570726176697420646f766f6c656e6f75, 'Y', '2016-07-21 21:03:19'),
(3152, 7, 0x557072617669742070726f66696c, 'Y', '2016-07-21 21:03:19'),
(3155, 7, 0x506f6d6f63202f20464151, 'Y', '2016-07-21 21:03:19'),
(3156, 7, 0x4e6f76e120687261, 'Y', '2016-07-21 21:03:19'),
(3157, 7, 0x56ec73746eed6b79, 'Y', '2016-07-21 21:03:19'),
(3158, 7, 0x46756e6b6365, 'Y', '2016-07-21 21:03:19'),
(4604, 7, 0x416b746976697461206e6120fae874752027257327206a652070f8ed6c69b9207679736f6be1206120706f686c74696c612063656c6f75206e61b96920b9edf86b752070f869706f6a656eed20612076b96563686e79207a64726f6a652e0d0a557072617674652c2070726f73ed6d2c207661b9652063686f76e16eed2e0d0a54656e746f20fae86574206a65207a61626c6f6b6f76e16e20646f2025732e, 'Y', '2016-07-21 21:03:19'),
(4619, 7, 0xda766f64, 'Y', '2016-07-21 21:04:34'),
(5228, 7, 0x4de92070726f62ed68616aed63ed204d5020687279, 'Y', '2016-07-21 21:04:34'),
(5581, 7, 0x686c65646174207620646f6b756d616e7461636920737472e16e656b, 'Y', '2016-07-21 21:04:34'),
(5582, 7, 0x7a6f6272617aed20706f6c6974696b752c20706f7a6ee16d6b79206b207665727a692c206f646b617a792c2070f8697370ec766174656c652c206ee17374726f6a652c207a64726f6a652c206c6963656e6369, 'Y', '2016-07-21 21:14:49'),
(5583, 7, 0x7a6f6272617aed2076b96563686e7920737472e16e6b792074ec6368746f20737472e16e656b, 'Y', '2016-07-21 21:14:49'),
(5584, 7, 0x7a6f6272617aed206e6162ed646b79206e6f76fd636820686572206f64206f737461746eed6368206872e1e8f9, 'Y', '2016-07-21 21:14:49'),
(5585, 7, 0x7a6f6272617aed207476e9207a7072e17679206120736c6fbe6b79, 'Y', '2016-07-21 21:14:49'),
(5587, 7, 0x706f736c61742076fd7a7675206b652068f865206a696ee96875206872e1e869, 'Y', '2016-07-21 21:14:49'),
(5588, 7, 0x6e6162ed646e6f7574206e6f766f7520687275207620e8656be1726eec2070726f206f737461746eed206872e1e865, 'Y', '2016-07-21 21:14:49'),
(5589, 7, 0x7a6f6272617aed20706f64706f72752061206469736b75736eed2066f372756d, 'Y', '2016-07-21 21:14:49'),
(5591, 7, 0x7a6f6272617aed20686c61736f76e16eed206f2066756e6b63ed6368, 'Y', '2016-07-21 21:17:56'),
(5593, 7, 0x5665727a65, 'Y', '2016-07-21 21:17:56'),
(5743, 7, 0x4e65, 'Y', '2016-07-21 21:17:56'),
(5744, 7, 0x506f, 'Y', '2016-07-21 21:17:56'),
(5745, 7, 0xda74, 'Y', '2016-07-21 21:17:56'),
(5746, 7, 0x5374, 'Y', '2016-07-21 21:17:56'),
(5747, 7, 0xc874, 'Y', '2016-07-21 21:17:56'),
(5748, 7, 0x50e1, 'Y', '2016-07-21 21:17:56'),
(5749, 7, 0x536f, 'Y', '2016-07-21 21:17:56'),
(5750, 7, 0x486f7374696e67207a616a69b9bb756a65, 'Y', '2016-07-21 21:17:56'),
(5781, 7, 0x5476e1206b76f374612070f8ed73747570f920646f6368e17aed21, 'Y', '2016-07-21 21:23:29'),
(5782, 7, 0x556b6ce164e16eed2062796c6f20fa7370ecb96ee921, 'Y', '2016-07-21 21:23:29'),
(5783, 7, 0x446fb96c6f206b2063687962ec, 'Y', '2016-07-21 21:23:29'),
(6201, 7, 0x4e6f76e9207475726e616a65, 'Y', '2016-07-21 21:23:29'),
(6322, 7, 0x7a6f6272617aed2076ec73746eed6b792c20736f756b726f6de9207a7072e176792c20687279206b6465206a7369206e6120746168752061204d5020687279206b206e6173746176656eed, 'Y', '2016-07-21 21:23:29'),
(6323, 7, 0x706f736c617420736f756b726f6d6f75207a7072e176752075be69766174656c69, 'Y', '2016-07-21 21:23:29'),
(6324, 7, 0x756be17a61742076b96563686e792075be69766174656c65, 'Y', '2016-07-21 21:23:29'),
(6325, 7, 0x7a6f6272617a206de920736f756b726f6de9206b6f6e74616b7479, 'Y', '2016-07-21 21:23:29'),
(6326, 7, 0x756be17a61742076b96563686e7920687279, 'Y', '2016-07-21 21:23:29'),
(3121, 7, '', 'Y', '2016-07-21 21:34:51'),
(3153, 7, 0x5a6f6272617a6974, 'Y', '2016-07-21 21:34:51'),
(3366, 7, 0x54797020687279, 'Y', '2016-07-21 21:34:51'),
(3367, 7, 0x5072617669646c61, 'Y', '2016-07-21 21:34:51'),
(3371, 7, 0x487279206b746572e920736c6564756a69, 'Y', '2016-07-21 21:34:51'),
(3385, 7, 0x4de92070726f62ed68616aed63ed20687279, 'Y', '2016-07-21 21:34:51'),
(3386, 7, 0x4de920646f6b6f6ee8656ee920687279, 'Y', '2016-07-21 21:34:51'),
(3388, 7, 0x4de9207475726e616a65, 'Y', '2016-07-21 21:34:51');
INSERT INTO `Translations` (`Original_ID`, `Language_ID`, `Text`, `Translated`, `Updated`) VALUES
(3440, 7, 0x50f865686c65642070726f, 'Y', '2016-07-21 21:34:51'),
(3446, 7, 0x5072696f72697461, 'Y', '2016-07-21 21:34:51'),
(1507, 7, 0x536c6fbe6b61, 'Y', '2016-07-21 21:36:07'),
(1513, 7, 0x50f865646dec74, 'Y', '2016-07-21 21:53:52'),
(3072, 7, 0x5a6f6272617a20766ce16b6e6f207a7072e176, 'Y', '2016-07-21 21:53:52'),
(1409, 7, 0x486c65646174207a7072e17679, 'Y', '2016-07-21 21:55:55'),
(1512, 7, 0x4f64, 'Y', '2016-07-21 21:55:55'),
(1515, 7, 0x4f7a6e61e8, 'Y', '2016-07-21 21:55:55'),
(1517, 7, '', 'Y', '2016-07-21 22:01:14'),
(1518, 7, 0x50726f, 'Y', '2016-07-21 22:01:14'),
(1519, 7, 0x4f64, 'Y', '2016-07-21 22:01:14'),
(3071, 7, 0x566ce16b6e6f207a7072e176, 'Y', '2016-07-21 22:01:14'),
(3073, 7, 0x5072766eed207a7072e1766120766ce16b6e61, 'Y', '2016-07-21 22:01:14'),
(3074, 7, 0x5a6f6272617a697420706fe8e17465e86eed207a7072e1767520766ce16b6e61, 'Y', '2016-07-21 22:01:14'),
(3106, 7, 0x566ce16b6e6f207a7072e176, 'Y', '2016-07-21 22:01:14'),
(3107, 7, 0x5072766eed207a7072e1766120766ce16b6e61, 'Y', '2016-07-21 22:01:14'),
(3191, 7, 0x537472616e61202573, 'Y', '2016-07-21 22:01:14'),
(3229, 7, 0x50f865706e6f7574206f7a6e61e8656eed, 'Y', '2016-07-21 22:05:32'),
(1516, 7, 0x4ae1, 'Y', '2016-07-21 22:05:40'),
(1270, 7, 0x56b96563686e7920e8656b616aed63ed20687279, 'Y', '2016-07-27 11:43:59'),
(1271, 7, 0x5679686f76756aed63ed20e8656b616aed63ed20687279, 'Y', '2016-07-27 11:43:59'),
(1497, 7, 0x496e666f, 'Y', '2016-07-27 11:43:59'),
(1498, 7, 0x4b6f6d656e74e1f8, 'Y', '2016-07-27 11:43:59'),
(1499, 7, 0x547970, 'Y', '2016-07-27 11:43:59'),
(1502, 7, 0xc861736f76fd206c696d6974, 'Y', '2016-07-27 11:43:59'),
(1503, 7, 0x5374616e646172646eed20726f7a6ded7374ec6eed, 'Y', '2016-07-27 11:43:59'),
(1447, 7, 0x56ed6b656e646f76fd20e86173, 'Y', '2016-07-27 11:47:53'),
(1606, 7, 0x486c65646174, 'Y', '2016-07-27 11:47:53'),
(1608, 7, '', 'Y', '2016-07-27 11:47:53'),
(1609, 7, '', 'Y', '2016-07-27 11:50:02'),
(1610, 7, '', 'Y', '2016-07-27 11:50:02'),
(1612, 7, '', 'Y', '2016-07-27 11:50:02'),
(1614, 7, 0x5a454dcc, 'Y', '2016-07-27 11:50:02'),
(1521, 7, 0x5a6f6272617a697420f8e1646b79, 'Y', '2016-07-27 11:52:07'),
(1630, 7, 0x56b965, 'Y', '2016-07-27 11:52:07'),
(1631, 7, 0x416e6f, 'Y', '2016-07-27 11:52:07'),
(1632, 7, 0x4e65, 'Y', '2016-07-27 11:52:07'),
(1633, 7, 0x56b965, 'Y', '2016-07-27 11:52:07'),
(1634, 7, 0x416e6f, 'Y', '2016-07-27 11:52:07'),
(1635, 7, 0x4e65, 'Y', '2016-07-27 11:52:07'),
(1731, 7, '', 'Y', '2016-07-27 11:52:07'),
(1890, 7, 0x48656e64696b6570, 'Y', '2016-07-27 11:52:07'),
(1885, 7, 0x536b727974e9, 'Y', '2016-07-27 11:56:44'),
(2842, 7, '', 'Y', '2016-07-27 11:56:44'),
(2843, 7, 0x4e657374642e, 'Y', '2016-07-27 11:56:44'),
(2914, 7, 0x4a61706f6e736be1, 'Y', '2016-07-27 11:56:44'),
(2915, 7, 0xc8ed6e736be1, 'Y', '2016-07-27 11:56:44'),
(2937, 7, '', 'Y', '2016-07-27 11:56:44'),
(2939, 7, '', 'Y', '2016-07-27 11:56:44'),
(3101, 7, 0x486f646e6f63656ee920687279, 'Y', '2016-07-27 11:56:44'),
(3119, 7, '', 'Y', '2016-07-27 11:56:44'),
(2938, 7, 0x54fd6d6f76e920476f, 'Y', '2016-07-27 11:58:19'),
(3120, 7, '', 'Y', '2016-07-27 11:58:19'),
(4518, 7, 0x4b6f6e76656ee86eed, 'Y', '2016-07-27 11:58:19'),
(4520, 7, '', 'Y', '2016-07-27 11:58:19'),
(4522, 7, 0xc865726ee1206261727661, 'Y', '2016-07-27 11:58:19'),
(4523, 7, 0x42ed6ce1206261727661, 'Y', '2016-07-27 11:58:19'),
(4524, 7, 0x4d616e75e16c6eed, 'Y', '2016-07-27 11:58:19'),
(4519, 7, 0x50f865736efd, 'Y', '2016-07-27 12:08:54'),
(3188, 7, 0x28257320706f6c6fbe656b29, 'Y', '2016-07-27 12:14:31'),
(4521, 7, 0x44766f6a6974e120687261, 'Y', '2016-07-27 12:14:31'),
(4529, 7, 0x44766f6a6974e1, 'Y', '2016-07-27 12:14:31'),
(4530, 7, 0x4d616e75e16c6eed, 'Y', '2016-07-27 12:14:31'),
(4532, 7, 0x537072617665646c6976e9206b6f6d69, 'Y', '2016-07-27 12:14:31'),
(4525, 7, 0x4f746576f8656ee12061756b6365, 'Y', '2016-07-27 12:17:02'),
(4526, 7, 0x536b727974e12061756b6365, 'Y', '2016-07-27 12:17:02'),
(4534, 7, 0x4e6173746176656eed, 'Y', '2016-07-27 12:17:02'),
(4535, 7, 0x4f6d657a656eed, 'Y', '2016-07-27 12:17:02'),
(4546, 7, 0x536c6f7570656320274e6173746176656eed2720756b617a756a65207072617664ec706f646f626e6f752062617276752076652068f8652c2068656e64696b65702061206b6f6d692e, 'Y', '2016-07-27 12:19:38'),
(4547, 7, 0x756b617a6174656c20766f6c6ee9686f20726f7a6ded7374ec6eed2068656e64696b65706f76fd6368206b616d656ef9, 'Y', '2016-07-27 12:19:38'),
(4548, 7, 0xc8656b616aed63ed20687261206a65203c623e7679686f76756aed63ed3c2f623e2c20706f6b7564206872e1e82073706cf2756a65207679be61646f76616ee1206f6d656e657a656eed206872793a, 'Y', '2016-07-27 12:22:00'),
(4549, 7, 0x506f7a6ee16d6b7920e8656be1726e79, 'Y', '2016-07-27 12:22:00'),
(4536, 7, '', 'Y', '2016-07-27 12:26:03'),
(4537, 7, 0x2573205679726f766e616ee1204b2573, 'Y', '2016-07-27 12:26:03'),
(4554, 7, '', 'Y', '2016-07-27 12:26:03'),
(4555, 7, 0x4e696769726920285476e120626172766120736520767962657265206ee1686f646eec29, 'Y', '2016-07-27 12:26:03'),
(4558, 7, 0xc8, 'Y', '2016-07-27 12:27:18'),
(4560, 7, 0x42, 'Y', '2016-07-27 12:27:18'),
(4561, 7, 0x48616a65b9207a612062ed6ce9, 'Y', '2016-07-27 12:27:18'),
(4563, 7, 0x4872616a65b9207a6120e865726ee9, 'Y', '2016-07-27 12:27:18'),
(4564, 7, 0x5072617664ec706f646f626eec206872616a65b9207a6120e865726ee9, 'Y', '2016-07-27 12:29:18'),
(4613, 7, 0x42657a20737072617665646c6976e9686f206b6f6d69, 'Y', '2016-07-27 12:29:18'),
(4615, 7, 0x526f7a73616820726174696e67752028726174696e672075be69766174656c65206d7573ed2062fd74207620706fbe61646f76616ee96d20726f7a73616875292c206e6170f82e202232356b2d326422, 'Y', '2016-07-27 12:29:18'),
(5450, 7, 0x4de920e8656b616aed63ed20687279, 'Y', '2016-07-27 12:29:47'),
(5452, 7, 0x5679686f76756aed63ed, 'Y', '2016-07-27 12:29:47'),
(5453, 7, 0x4d6f6a65, 'Y', '2016-07-27 12:30:36'),
(5548, 7, 0x506fe8657420646f6b6f6ee8656efd636820686f646e6f63656efd6368206865722c206e6570f82e2022257322, 'Y', '2016-07-27 12:30:36'),
(4539, 7, 0x28566f6c6efd2048656e64696b657029, 'Y', '2016-07-27 12:35:08'),
(5551, 7, 0x5479702068656e64696b65707520286b6f6e76656ee86eed20612070f865736efd207479702068656e64696b657075207679be6164756a652070726f2076fd706fe8657420726174696e67292c206f7a6e61e8656efd206a616b6f2022257322, 'Y', '2016-07-27 12:35:08'),
(4533, 7, 0x55be69766174656c736bfd20747970, 'Y', '2016-07-27 12:36:47'),
(4545, 7, 0x4e6173746176656eed206b6f6e74616b74752027536b72fd7420687279207620e8656be1726eec272c206f7a6e61e8656ee9206a616b6f2022257322, 'Y', '2016-07-27 12:36:47'),
(5680, 7, 0x696e64696be1746f72207679706fe8ed74616ee9686f206f6276796b6ce9686f206d6178696de16c6eed686f2068656e64696b6570752070726f2064616e6f752076656c696b6f73742068726163ed206465736b79, 'Y', '2016-07-27 12:40:02'),
(5681, 7, 0x7679706fe8ed7a616efd2068656e64696b6570, 'Y', '2016-07-27 12:40:02'),
(6318, 7, 0x5a6c6174fd204f647a6e616b20437469, 'Y', '2016-07-27 12:41:55'),
(6319, 7, 0x5374f8ed62726efd204f647a6e616b20437469, 'Y', '2016-07-27 12:42:10'),
(6320, 7, 0x42726f6e7a6f76fd204f647a6e616b20437469, 'Y', '2016-07-27 12:42:21'),
(5679, 7, 0x536c6f75706563202725732720756b617a756a652068656e64696b65702c206e65626f206a65686f206f6d657a656eed2c206e6170f82e2035206e65626f205b302c395d206e65626f205b302c44395d206e65626f202573, 'Y', '2016-07-27 12:44:27'),
(6252, 7, 0x23506fe86574206e6162ed7a656efd636820686572, 'Y', '2016-07-27 13:33:04'),
(6321, 7, 0x257320287a612073656872e16eed203e25732068657220736520736c6162b9ed6d206872e1e8656d29, 'Y', '2016-07-27 13:33:04'),
(2687, 7, 0x4576726f70736be120556e6965, 'Y', '2016-07-27 13:41:53'),
(2688, 7, 0x46616c6b6c616e6479, 'Y', '2016-07-27 13:41:53'),
(2697, 7, 0x4f7374726f76204d616e, 'Y', '2016-07-27 13:42:37'),
(2700, 7, '', 'Y', '2016-07-27 13:42:37'),
(2725, 7, 0x53706f6a656ee120466564657261636520506c616e6574, 'Y', '2016-07-27 13:44:35'),
(2988, 7, '', 'Y', '2016-07-27 13:44:35'),
(2989, 7, 0x4f6e6c696e652070f8656420266c743b2573206d696e7574616d69, 'Y', '2016-07-27 13:44:35'),
(3301, 7, 0x4f646b617a206e6120646f6b6f6ee8656ee92068727920736520736f757065f8656d205b25735d, 'Y', '2016-07-27 13:44:35'),
(4565, 7, 0x5072617664ec706f646f626eec206872616a65b9207a612062ed6ce9, 'Y', '2016-07-27 13:44:35'),
(6388, 7, 0x63656c6b656d207a61706fe86174fd636820686572, 'Y', '2016-07-27 13:46:03'),
(6389, 7, 0x7374656a6ee1206e6162ed646b61, 'Y', '2016-07-27 13:46:03'),
(1130, 7, 0x5a656dec, 'Y', '2016-07-27 13:46:31'),
(1521, 11, 0x546f6f6e2052696a656e, 'Y', '2016-07-27 15:23:59'),
(1569, 11, 0x4c616174737420476577696a7a696764, 'Y', '2016-07-27 15:25:40'),
(1602, 11, 0x4c6572616172, 'Y', '2016-07-27 15:25:40'),
(1613, 11, 0x6f6e67656c646967652072616e67, 'Y', '2016-07-27 15:26:27'),
(1628, 11, 0x6e696574206e756d657269656b, 'Y', '2016-07-27 15:26:55'),
(6358, 11, 0x42756c6761617273, 'Y', '2016-07-27 15:27:54'),
(6428, 11, 0x50617274696a2068656566742067656865696d65206f706d65726b696e67656e, 'Y', '2016-07-27 15:27:54'),
(6201, 11, 0x4e696575776520746f65726e6f6f69656e, 'Y', '2016-07-27 15:28:25'),
(6187, 11, 0x506f7274756765657320284272617a696c69eb2920287574662d3829, 'Y', '2016-07-27 15:30:17'),
(5747, 11, 0x446f, 'Y', '2016-07-27 15:31:31'),
(5748, 11, 0x5672, 'Y', '2016-07-27 15:31:31'),
(5749, 11, 0x5a61, 'Y', '2016-07-27 15:31:31'),
(5784, 11, 0x50617274696a2065696e64696774206d6574204765656e2d526573756c74616174, 'Y', '2016-07-27 15:31:31'),
(5593, 11, 0x566572736965, 'Y', '2016-07-27 15:32:39'),
(5667, 11, 0x506f7274756765657320284272617a696c69eb29, 'Y', '2016-07-27 15:32:39'),
(5668, 11, 0x506f7274756765657320284575726f706129, 'Y', '2016-07-27 15:32:39'),
(5743, 11, 0x5a6f, 'Y', '2016-07-27 15:32:39'),
(5744, 11, 0x4d61, 'Y', '2016-07-27 15:32:39'),
(5745, 11, 0x4469, 'Y', '2016-07-27 15:32:39'),
(5746, 11, 0x576f, 'Y', '2016-07-27 15:32:39'),
(4619, 11, 0x496e6c656964696e67, 'Y', '2016-07-27 15:33:35'),
(4707, 11, 0x566f726d, 'Y', '2016-07-27 15:33:35'),
(4708, 11, 0x566f726d20496e666f726d61746965, 'Y', '2016-07-27 15:33:35'),
(5220, 11, 0x546f6f6e20616c6c652062657269636874656e, 'Y', '2016-07-27 15:33:35'),
(4590, 11, 0x4c6174696a6e, 'Y', '2016-07-27 15:33:56'),
(3353, 11, 0x4765656e207761636874656e64652062657269636874656e, 'Y', '2016-07-27 15:36:59'),
(3441, 11, 0x426572696368742076616e2064652064616720286f6e67656c657a656e2062756c6c6574696e7329, 'Y', '2016-07-27 15:36:59'),
(3442, 11, 0x546f6f6e20616c6c652028257329206f6e67656c657a656e2062756c6c6574696e73, 'Y', '2016-07-27 15:36:59'),
(3351, 11, 0x4765656e206e69657577652062756c6c6574696e73, 'Y', '2016-07-27 15:37:50'),
(3352, 11, 0x4765656e207761636874656e64652070617274696a656e, 'Y', '2016-07-27 15:37:50'),
(3192, 11, 0x6c61617473746520706167696e61, 'Y', '2016-07-27 15:38:10'),
(3189, 11, 0x65657273746520706167696e61, 'Y', '2016-07-27 15:38:32'),
(3154, 11, 0x496e6c6f6767656e, 'Y', '2016-07-27 15:39:46'),
(3155, 11, 0x48756c70202f20464151, 'Y', '2016-07-27 15:39:46'),
(3157, 11, '', 'Y', '2016-07-27 15:39:46'),
(2993, 11, 0x50617274696a20686565667420766572626f7267656e206f706d65726b696e67656e, 'Y', '2016-07-27 15:40:21'),
(3070, 11, 0x286765656e206f6e6465727765727029, 'Y', '2016-07-27 15:40:21'),
(3145, 11, '', 'Y', '2016-07-27 15:40:21'),
(2984, 11, 0x50617274696a6b6c6f6b20676573746f7074, 'Y', '2016-07-27 17:20:40'),
(2985, 11, 0x4765627275696b657220696e20736c61617074696a64, 'Y', '2016-07-27 15:41:46'),
(2986, 11, '', 'Y', '2016-07-27 15:41:46'),
(2988, 11, '', 'Y', '2016-07-27 15:41:46'),
(2183, 11, 0x466f7574656e, 'Y', '2016-07-29 14:59:35'),
(2458, 11, 0x50617274696a2d696e666f726d61746965, 'Y', '2016-07-27 15:43:41'),
(1887, 11, 0x426573746520476f2d6c696566686562626572732c0d0a0d0a3c703e0d0a616c2062696a6e61207a6576656e206a616172206e752028323030392920776f72647420646520447261676f6e20476f2053657276657220767269656e64656c696a6b206765686f737420646f6f722053616d7572616a446174612c20766f6c6c65646967207a6f6e646572206b6f7374656e2e2057696a207a696a6e206578747265656d2064616e6b6261617220766f6f722068756e206f6e646572737465756e696e672c20646520646f6f722068656e206765626f64656e206469656e7374656e20776172656e20657373656e746965656c20766f6f7220686574207375636365732076616e204447532e2053696e6473206465207374617274206865656674204447532065656e206765737461676520746f656e616d652076616e20616374697669746569742067657a69656e20656e2065656e2070616172206a6161722067656c6564656e206b726565672053616d7572616a446174612065656e20626565746a65206d6f65697465206d6f746976617469652074652076696e64656e206f6d206f6e732067726174697320746520686f7374656e2e0d0a446f6f7220646520686f67652061637469766974656974206f702044475320766572627275696b74656e2077652062726f6e6e656e20766f6f7220646520626574616c656e6465206765627275696b6572732c7a6f64617420686574206e6f6469672077657264206f6d206f6e73206e6161722065656e20617061727465206d616368696e6520746520766572706c61617473656e2e0d0a4d6574206b65727374203230303720726567656c64656e207a652065656e206f75646572652073657276657220766f6f72206f6e737a656c662e, 'Y', '2016-07-27 17:18:09'),
(1944, 11, 0x4572207a696a6e2077617420666f7574656e, 'Y', '2016-07-29 14:59:20'),
(2145, 11, 0x50726f66657373696f6e65656c, 'Y', '2016-07-27 16:50:10'),
(2146, 11, '', 'Y', '2016-07-27 16:50:10'),
(2158, 11, 0x5374617469737469656b656e, 'Y', '2016-07-27 16:50:10'),
(2173, 11, 0x546f6f6e2070617274696a2d7370656c657273, 'Y', '2016-07-27 16:50:10'),
(1842, 11, 0x42656c656964, 'Y', '2016-07-27 16:59:20'),
(1871, 11, 0x446f6e656572, 'Y', '2016-07-27 16:59:20'),
(1872, 11, 0x537465756e20444753206d65742065656e20646f6e61746965, 'Y', '2016-07-27 16:59:20'),
(1873, 11, 0x446f6e61746965, 'Y', '2016-07-27 16:59:20'),
(1875, 11, 0x446f6e6174696573, 'Y', '2016-07-27 16:59:20'),
(1877, 11, 0x48656c616173207a6f6e672064657a65206d616368696e65207a696a6e206c616174737465207265667265696e206f702035204665627275617269202832303039292c206475732068616464656e2077652065656e206e6965757765206f706c6f7373696e67206e6f6469672e204f6d206f6e732068756e206e69657577657265206861726477617265207465206c6174656e206765627275696b656e207374656d64656e20776520696e206d65742068657420626574616c656e2076616e2065656e206b6c65696e6520766572676f6564696e6720283230302053454b2f6d61616e642c20642e692e20726f6e64206465203230204555522f6d61616e64292e0d0a57696a2076696e64656e2064617420646974206e6f67207374656564732065656e206572672067756c2061616e626f642076616e207a652069732e, 'Y', '2016-07-27 16:59:20'),
(1878, 11, 0x446161726f6d20767261616720696b206a756c6c6965206f6d2065656e206b6c65696e2062656472616720746520646f6e6572656e2c2062696a766f6f726265656c64203130206f72203230204575726f2c207a6f64617420776520646520736572766572206b756e6e656e206c6174656e20626c696a76656e206c6f70656e207a6f6e64657220706572736f6f6e6c696a6b65206b6f7374656e2e0d0a4b6c65696e65726520626564726167656e20776f7264656e206576656e65656e732067657761617264656572642e0d0a4f6e7320646f656c206973206f6d2067656e6f65672067656c64207465207665727a616d656c656e206f6d206f70207a696a6e206d696e737420766f6f722064726965206a61617220766f6f72206465206469656e7374656e20746520626574616c656e2e0d0a0d0a3c703e0d0a42657374652077656e73656e2c0d0a0d0a3c703e0d0a446520626568656572646572732076616e20444753, 'Y', '2016-07-29 14:51:05'),
(1880, 11, 0x426564616e6b7420766f6f72206a6f75772067756c6c6520646f6e6174696520746572206f6e646572737465756e696e672076616e204447532121, 'Y', '2016-07-27 17:17:01'),
(1639, 11, 0x4b696573206765656e2c2065656e206f72206d6565726465726520656c656d656e74656e, 'Y', '2016-07-27 17:00:15'),
(1399, 11, 0x4b69657320686f657665656c2065787472612074696a64206a65206a6520746567656e7374616e6465722077696c7420676576656e, 'Y', '2016-07-27 18:35:18'),
(1402, 11, 0x54696a6420746f65766f6567656e, 'Y', '2016-07-27 18:35:18'),
(1403, 11, 0x416e6e756c6572656e, 'Y', '2016-07-27 18:35:18'),
(6356, 11, 0x4f7665726765626c6576656e2074696a6420746567656e7374616e646572, 'Y', '2016-07-27 18:36:25'),
(6374, 11, 0x4f7665726765626c6576656e2074696a64207a77617274, 'Y', '2016-07-27 18:36:25'),
(6376, 11, 0x4f7665726765626c6576656e2074696a6420776974, 'Y', '2016-07-27 18:36:25'),
(6346, 11, 0x526174696e67766572736368696c20746567656e7374616e646572, 'Y', '2016-07-29 15:02:19'),
(6348, 11, 0x5374617274726174696e67206765627275696b6572, 'Y', '2016-07-29 15:02:19'),
(6350, 11, 0x45696e64726174696e67206765627275696b6572, 'Y', '2016-07-29 15:02:19'),
(6352, 11, 0x526174696e67766572736368696c206765627275696b6572, 'Y', '2016-07-29 15:02:19'),
(6353, 11, 0x546567656e7374616e64657273206c61617473746520746f6567616e67, 'Y', '2016-07-27 18:38:45'),
(6354, 11, 0x566f6f7272616e67, 'Y', '2016-07-27 18:38:45'),
(6355, 11, 0x4d696a6e206f7665726765626c6576656e2074696a64, 'Y', '2016-07-27 18:38:45'),
(6336, 11, 0x4e61616d20746567656e7374616e646572, 'Y', '2016-07-27 18:40:13'),
(6338, 11, 0x4765627275696b6572736e61616d20746567656e7374616e646572, 'Y', '2016-07-27 19:38:48'),
(6342, 11, 0x5374617274726174696e6720746567656e7374616e646572, 'Y', '2016-07-29 15:01:53'),
(6344, 11, 0x45696e64726174696e6720746567656e7374616e646572, 'Y', '2016-07-29 15:01:53'),
(6329, 11, 0x5374617274726174696e67207a77617274, 'Y', '2016-07-29 15:01:53'),
(6330, 11, 0x5374617274726174696e6720776974, 'Y', '2016-07-29 15:01:53'),
(6331, 11, 0x45696e64726174696e67207a77617274, 'Y', '2016-07-29 15:01:53'),
(6332, 11, 0x526174696e67766572736368696c207a77617274, 'Y', '2016-07-29 15:01:53'),
(6333, 11, 0x45696e64726174696e6720776974, 'Y', '2016-07-29 15:01:53'),
(6334, 11, 0x526174696e67766572736368696c20776974, 'Y', '2016-07-29 15:01:53'),
(1416, 11, '', 'Y', '2016-07-28 13:34:51'),
(1430, 11, 0x4765627275696b6572736e61616d, 'Y', '2016-07-28 13:34:51'),
(1433, 11, '', 'Y', '2016-07-29 14:49:26'),
(1435, 11, 0x4b6c657572, 'Y', '2016-07-28 13:34:51'),
(1437, 11, 0x47726f6f747465, 'Y', '2016-07-28 13:34:51'),
(6321, 11, 0x25732028766f6f7220686574207370656c656e2076616e203e25732070617274696a656e206d6574207a77616b6b657265207370656c65727329, 'Y', '2016-07-28 13:39:16'),
(6324, 11, 0x746f6f6e20616c6c65206765627275696b657273, 'Y', '2016-07-28 13:39:16'),
(6326, 11, 0x746f6f6e20616c6c652070617274696a656e, 'Y', '2016-07-28 13:39:16'),
(6327, 11, 0x5374616e6461617264, 'Y', '2016-07-28 13:39:16'),
(6156, 11, 0x5a, 'Y', '2016-07-28 13:43:38'),
(6157, 11, 0x4f7067617665, 'Y', '2016-07-28 13:46:06'),
(6158, 11, 0x54696a64, 'Y', '2016-07-28 13:43:38'),
(6203, 11, 0x46756e63746965202325733a202573, 'Y', '2016-07-28 13:43:38'),
(6204, 11, '', 'Y', '2016-07-28 13:43:38'),
(6318, 11, 0x476f7564656e20496e7369676e652076616e20456572, 'Y', '2016-07-28 13:43:38'),
(6319, 11, 0x5a696c766572656e20496e7369676e652076616e20456572, 'Y', '2016-07-28 13:43:38'),
(6320, 11, 0x42726f6e7a656e20496e7369676e652076616e20456572, 'Y', '2016-07-28 13:43:38'),
(6159, 11, 0x5665726265757264, 'Y', '2016-07-28 13:47:26'),
(6323, 11, 0x53747575722070726976266561637574653b62657269636874206e61617220616e64657265206765627275696b6572, 'Y', '2016-07-28 13:53:05'),
(6325, 11, 0x546f6f6e206d696a6e2070726976266561637574653b636f6e74616374656e, 'Y', '2016-07-28 13:53:05'),
(5780, 11, 0x546f6f6e206d65657220696e666f726d61746965206f766572205b25735d, 'Y', '2016-07-28 13:59:13'),
(5781, 11, 0x4a6520746f6567616e677371756f74612069732062696a6e61206f7021, 'Y', '2016-07-28 13:59:13'),
(5782, 11, 0x4f70736c61616e20737563636573766f6c21, 'Y', '2016-07-28 13:59:13'),
(5783, 11, 0x466f7574206f70676574726564656e, 'Y', '2016-07-28 13:59:13'),
(5785, 11, 0x2573206f76657277696e6e696e67656e20646f6f72206f7067617665, 'Y', '2016-07-28 13:59:13'),
(5786, 11, 0x2573206f76657277696e6e696e67656e206f702074696a64, 'Y', '2016-07-28 13:59:13'),
(5787, 11, 0x2573206f76657277696e6e696e67656e20646f6f722076657262657572696e67, 'Y', '2016-07-28 13:59:13'),
(6104, 11, 0x4865742067652675756d6c3b706c6f6164652062657374616e64206b6f6e206e69657420776f7264656e2067656f70656e64206f6d207465206c657a656e2e, 'Y', '2016-07-28 13:59:13'),
(6154, 11, 0x4765656e2d526573756c74616174, 'Y', '2016-07-28 13:59:13'),
(6155, 11, '', 'Y', '2016-07-28 13:59:13'),
(5586, 11, 0x746f6f6e206e69657577652062657269636874656e, 'Y', '2016-07-28 14:03:08'),
(5587, 11, 0x7374757572207569746e6f646967696e6720766f6f722070617274696a2061616e20616e64657265207370656c6572, 'Y', '2016-07-28 14:03:08'),
(5588, 11, 0x62696564206e69657577652070617274696a656e2061616e20696e2064652077616368746b616d657220766f6f7220616e64657265207370656c657273, 'Y', '2016-07-28 14:03:08'),
(5589, 11, 0x746f6f6e206f6e646572737465756e696e67732d20656e20646973637573736965666f72756d, 'Y', '2016-07-28 14:03:08'),
(5590, 11, 0x746f6f6e20666f72756d73206d6574206e696575776520696e766f6572, 'Y', '2016-07-28 14:03:08'),
(5591, 11, 0x746f6f6e2066756e637469652d7374656d6d656e, 'Y', '2016-07-28 14:03:08'),
(5592, 11, 0x7374656d206f70206e69657577652066756e6374696573, 'Y', '2016-07-28 14:03:08'),
(5602, 11, 0x5370656c6c6569646572, 'Y', '2016-07-28 14:03:08'),
(5693, 11, 0x6f66206f702076616b616e746965, 'Y', '2016-07-28 14:03:08'),
(5750, 11, 0x4765686f737420646f6f72, 'Y', '2016-07-28 14:03:08'),
(4604, 11, 0x446520616374697669746569742076616e20686574206163636f756e74202725732720776572642074652067726f6f7420656e20736c6f6b7465206f6e7a652062616e646272656564746520656e2062726f6e6e656e206f702e0d0a5665726265746572206469742067656472616720616c736a65626c696566742e0d0a446974206163636f756e74206973206765626c6f6b6b6565726420746f742025732e, 'Y', '2016-07-28 14:11:36'),
(5218, 11, 0x4d6565722d5370656c65722d50617274696a, 'Y', '2016-07-28 14:11:36'),
(5228, 11, 0x4d696a6e206c6f70656e6465204d532d70617274696a656e, 'Y', '2016-07-28 14:11:36'),
(5422, 11, 0x4572207a696a6e20257320746f656765766f656764652070617274696a2d53474673206265736368696b6261617220766f6f7220646f776e6c6f6164656e, 'Y', '2016-07-28 14:11:36'),
(5534, 11, 0x506f6f6c77696e6e61617220286761617420646f6f72206e61617220646520766f6c67656e646520726f6e64652c206f662074656b656e20766f6f722065696e64726573756c7461617429, 'Y', '2016-07-28 14:11:36'),
(5581, 11, 0x646f6f727a6f656b2073697465646f63756d656e7461746965, 'Y', '2016-07-28 14:11:36'),
(5583, 11, 0x746f6f6e20616c6c6520706167696e6127732076616e2064657a652073697465, 'Y', '2016-07-28 14:11:36'),
(5584, 11, 0x746f6f6e206e69657577652070617274696a2d61616e62696564696e67656e2076616e20616e64657265207370656c657273, 'Y', '2016-07-28 14:11:36'),
(5585, 11, 0x746f6f6e206a652062657269636874656e20656e20666f6c64657273, 'Y', '2016-07-28 14:11:36'),
(6322, 11, 0x746f6f6e2062756c6c6574696e732c2070726976266561637574653b62657269636874656e2c206d696a6e2070617274696a656e207761617220696b2061616e2064652062657572742062656e2026204d532d70617274696a656e206f6d206b6c616172207465207a657474656e, 'Y', '2016-07-28 14:13:08'),
(3451, 11, 0x4c616174737420766572616e64657264, 'Y', '2016-07-28 14:17:05'),
(3453, 11, 0x56657276616e67, 'Y', '2016-07-28 14:17:05'),
(3454, 11, 0x4e61616d, 'Y', '2016-07-28 14:17:05'),
(3455, 11, 0x4b6965732065656e20736a61626c6f6f6e206f6d2065656e206265737461616e646520696e766f65722074652076657276616e67656e, 'Y', '2016-07-28 14:17:05'),
(3457, 11, 0x4f6e67656c646967207479706520766f6f7220736a61626c6f6f6e206f6d206f7020746520736c61616e21, 'Y', '2016-07-28 14:17:05'),
(3458, 11, 0x44617461206f6d20736a61626c6f6f6e206f7020746520736c61616e206f76657273636872696a6474206465206c696d6965742076616e20257320627974657320286d65742025732062797465732921, 'Y', '2016-07-28 14:17:05'),
(3461, 11, 0x4d61782e206c696d6965742076616e20736a61626c6f6e656e2069732062657265696b742e204a65207a756c742065656e206265737461616e646520696e766f6572206d6f6574656e2076657276616e67656e21, 'Y', '2016-07-28 14:17:05'),
(3462, 11, 0x56657276616e672d73656c65637469652069732067656272656b6b69672c2077616e7420646520696e766f6572206f6d2074652076657276616e67656e2062657374616174206e69657420766f6f722064657a65206765627275696b65722e, 'Y', '2016-07-28 14:17:05'),
(3465, 11, '', 'Y', '2016-07-28 14:17:05'),
(4585, 11, 0x2573206f766572, 'Y', '2016-07-28 14:17:05'),
(3347, 11, 0x4f6e64657277657270, 'Y', '2016-07-28 14:19:19'),
(3348, 11, 0x50617274696a2076616e202573206d6574202573, 'Y', '2016-07-28 14:19:19'),
(3349, 11, 0x50617274696a, 'Y', '2016-07-28 14:19:19'),
(3350, 11, 0x4c656765206c696a7374656e, 'Y', '2016-07-28 14:19:19'),
(3358, 11, 0x50617274696a204944, 'Y', '2016-07-28 14:19:19'),
(3366, 11, 0x50617274696a54797065, 'Y', '2016-07-28 14:19:19'),
(3443, 11, 0x41616e6765736c6f74656e, 'Y', '2016-07-28 14:19:19'),
(3445, 11, 0x4a65206d6565722d7370656c65722d70617274696a656e206f6d207465206265686572656e3a, 'Y', '2016-07-28 14:19:19'),
(3446, 11, 0x5072696f726974656974, 'Y', '2016-07-29 15:00:34'),
(3447, 11, 0x42657061616c20566f6c676f726465, 'Y', '2016-07-28 14:19:19'),
(1438, 11, '', 'Y', '2016-07-28 15:24:43'),
(1439, 11, '', 'Y', '2016-07-28 15:24:43'),
(1440, 11, 0x5a657474656e, 'Y', '2016-07-28 15:24:43'),
(1443, 11, 0x54656c74206d6565, 'Y', '2016-07-29 14:58:50'),
(1444, 11, 0x4c616174737465207a6574, 'Y', '2016-07-28 15:24:43'),
(3343, 11, 0x56616e, 'Y', '2016-07-28 15:33:01'),
(3344, 11, 0x426572696368742076616e, 'Y', '2016-07-28 15:33:01'),
(3345, 11, 0x42657269636874, 'Y', '2016-07-28 15:33:01'),
(3346, 11, 0x56616e, 'Y', '2016-07-28 15:33:01'),
(3188, 11, 0x28257320696e766f6572656e29, 'Y', '2016-07-28 15:39:00'),
(3190, 11, 0x506167696e612025732076616e202573, 'Y', '2016-07-28 15:39:00'),
(3191, 11, 0x506167696e61202573, 'Y', '2016-07-28 15:39:00'),
(3208, 11, 0x4f6e64657277657270, 'Y', '2016-07-28 15:39:00'),
(3226, 11, 0x4765627275696b6572206f6e6c696e65, 'Y', '2016-07-28 15:39:00'),
(3227, 11, 0x496e64696361746f7220766f6f7220686574206f6e6c696e65207a696a6e20746f74202573206d696e7574656e2067656c6564656e, 'Y', '2016-07-28 15:39:00'),
(3338, 11, 0x25732d5374617475732076616e205b25735d2074696a64656c696a6b207569742067657a657420776567656e7320657863657373696566206765627275696b21, 'Y', '2016-07-28 15:39:00'),
(3339, 11, 0x566f6c6720616c736a65626c69656674206465206c696e6b2c206c6565732064652046415120656e20686572636f6e6669677572656572206a6520257320636f6e666967757261746965206f70206f76657265656e6b6f6d7374696765206d616e6965722e, 'Y', '2016-07-28 15:39:00'),
(3340, 11, 0x446f652068657420616c736a65626c696566207a6f20736e656c206d6f67656c696a6b206f6d206465206472756b206f7020646520736572766572207465207665726d696e646572656e2e, 'Y', '2016-07-28 15:39:00'),
(3341, 11, 0x42696a20766f6f72626161742064616e6b20766f6f72206a65206d6564657765726b696e67, 'Y', '2016-07-28 15:39:00'),
(3153, 11, 0x546f6f6e, 'Y', '2016-07-28 15:40:10'),
(3159, 11, 0x50617274696a20456469746f72, 'Y', '2016-07-28 15:40:10'),
(3161, 11, 0x5a6574, 'Y', '2016-07-28 15:40:10'),
(3186, 11, '', 'Y', '2016-07-28 15:40:10'),
(3187, 11, 0x28257320696e766f657229, 'Y', '2016-07-28 15:40:10'),
(3148, 11, 0x526563656e746520666f72756d2062657269636874656e, 'Y', '2016-07-28 15:41:38'),
(3149, 11, 0x546567656e7374616e64657273206f6e6c696e65, 'Y', '2016-07-28 15:41:38'),
(3150, 11, 0x4765627275696b657273206f6e6c696e65, 'Y', '2016-07-28 15:41:38'),
(3151, 11, 0x57696a7a69672076616b616e746965, 'Y', '2016-07-28 15:41:38'),
(3152, 11, 0x57696a7a69672070726f6669656c, 'Y', '2016-07-28 15:41:38'),
(2838, 11, 0x546f6f6e20616c6c65656e206d6565722d7370656c65722d70617274696a656e, 'Y', '2016-07-28 15:45:36'),
(2839, 11, 0x4b616e206e696574207a6f656b656e206f702064652073746f70776f6f7264656e205b25735d21, 'Y', '2016-07-28 15:45:36'),
(2840, 11, 0x576161727363687577696e67, 'Y', '2016-07-28 15:45:36'),
(2989, 11, 0x4f6e6c696e6520266c743b2573206d696e7574656e2067656c6564656e, 'Y', '2016-07-28 15:45:36'),
(2995, 11, 0x546f6f6e206d6565722d7370656c65722d70617274696a656e, 'Y', '2016-07-28 15:45:36'),
(3146, 11, '', 'Y', '2016-07-28 19:52:49'),
(3147, 11, '', 'Y', '2016-07-28 19:52:49'),
(2665, 11, 0x4865742061666265656c64696e677374797065205b25732c2025735d2076616e206865742067652675756d6c3b706c6f6164652062657374616e64206b6f6d74206e696574206f76657265656e206d6574206465207665727761636874652061666265656c64696e67737479706573205b25735d2e, 'Y', '2016-07-28 19:57:28'),
(2666, 11, 0x44652062726565647465205b25735d2076616e2064652067652675756d6c3b706c6f6164652061666265656c64696e67205b25735d206f76657273636872696a6474206465206c696d6965742076616e205b257320706978656c735d2e, 'Y', '2016-07-28 19:57:28'),
(2667, 11, 0x446520686f6f677465205b25735d2076616e2064652067652675756d6c3b706c6f6164652061666265656c64696e67205b25735d206f76657273636872696a6474206465206c696d6965742076616e205b257320706978656c735d2e, 'Y', '2016-07-28 19:57:28'),
(2668, 11, 0x4865742067652675756d6c3b706c6f6164652062657374616e64206b616e206e696574206265776161726420776f7264656e2e, 'Y', '2016-07-28 19:57:28'),
(2669, 11, '', 'Y', '2016-07-28 19:57:28'),
(2670, 11, '', 'Y', '2016-07-28 19:57:28'),
(2671, 11, '', 'Y', '2016-07-28 19:57:28'),
(2832, 11, 0x427269747320496e646973636865204f636561616e, 'Y', '2016-07-28 19:57:28'),
(1879, 11, 0x446520766f6c67656e6465206c696e6b207a616c206a65206e6161722050617950616c2073747572656e, 'Y', '2016-07-28 20:03:02'),
(1923, 11, '', 'Y', '2016-07-28 20:03:02'),
(1929, 11, 0x4a6520746f6567616e677371756f74612069732062696a6e61206f702e3c62723e4a652068656274206e6f67206d616172202573206f7076726167656e206f76657220766f6f72646174206a65206765626c6f6b6b6565726420776f72647420766f6f722025732121, 'Y', '2016-07-28 20:03:02'),
(1930, 11, 0x4a6520746f6567616e677371756f7461206973206f766572736368726564656e2e, 'Y', '2016-07-28 20:03:02'),
(1932, 11, 0x54696a64656c696a6b6520746f6567616e677372657374726963746965, 'Y', '2016-07-28 20:03:02'),
(2660, 11, 0x4865742067652675756d6c3b706c6f6164652062657374616e64205b25735d206f76657273636872696a647420646520646f6f72206465207365727665722062657061616c6465206d61782e2062657374616e647367726f6f7474652e, 'Y', '2016-07-28 20:03:02'),
(2662, 11, 0x4865742067652675756d6c3b706c6f6164652062657374616e64205b25735d20776173206d6161722067656465656c74656c696a6b2067652675756d6c3b706c6f61642e, 'Y', '2016-07-28 20:03:02'),
(2663, 11, 0x4765656e2062657374616e64207761732067652675756d6c3b706c6f61642e, 'Y', '2016-07-28 20:03:02'),
(1645, 11, 0x6f6e67656c6469676520646167, 'Y', '2016-07-28 20:03:42'),
(1737, 11, 0x6d696e7574656e, 'Y', '2016-07-28 20:03:42'),
(1631, 11, 0x4a61, 'Y', '2016-07-28 20:04:19'),
(1632, 11, 0x4e6565, 'Y', '2016-07-28 20:04:19'),
(1633, 11, 0x416c6c65, 'Y', '2016-07-28 20:04:19'),
(1634, 11, 0x4a61, 'Y', '2016-07-28 20:04:19'),
(1635, 11, 0x4e6565, 'Y', '2016-07-28 20:04:19'),
(1620, 11, 0x6a6172656e, 'Y', '2016-07-28 20:04:54'),
(1621, 11, 0x6d61616e64656e, 'Y', '2016-07-28 20:04:54'),
(1622, 11, 0x77656b656e, 'Y', '2016-07-28 20:04:54'),
(1623, 11, 0x646167656e, 'Y', '2016-07-28 20:04:54'),
(1624, 11, 0x7572656e, 'Y', '2016-07-28 20:04:54'),
(1630, 11, 0x416c6c65, 'Y', '2016-07-28 20:04:54'),
(1557, 11, 0x4e6f746974696573, 'Y', '2016-07-28 20:05:33'),
(1608, 11, '', 'Y', '2016-07-28 20:05:33'),
(1612, 11, '', 'Y', '2016-07-29 14:49:51'),
(1614, 11, 0x4c414e44, 'Y', '2016-07-28 20:05:33'),
(1618, 11, 0x444154554d, 'Y', '2016-07-28 20:05:33'),
(5195, 11, 0x566f726d20494420232573, 'Y', '2016-07-29 13:06:27'),
(5196, 11, 0x50617274696a20566f726d, 'Y', '2016-07-29 13:06:45'),
(4684, 11, 0x4d6f6d656e746f706e616d6520766f6f7220766f726d206265766174206f6e67656c646967652074656b656e73205b25735d, 'Y', '2016-07-29 13:09:19'),
(4685, 11, 0x4d6f6d656e746f706e616d6520766f6f7220766f726d206265766174206e69657420746f6567657374616e6520706f736974696573206f70205b25735d, 'Y', '2016-07-29 13:09:19'),
(4686, 11, 0x4f6e746272656b656e6465204d6f6d656e746f706e616d65, 'Y', '2016-07-29 13:09:19'),
(4687, 11, 0x537065656c6b6c657572, 'Y', '2016-07-29 15:04:11'),
(4711, 11, 0x417574657572, 'Y', '2016-07-29 13:09:19'),
(4714, 11, 0x47652675756d6c3b7064617465, 'Y', '2016-07-29 13:09:19'),
(4715, 11, 0x416c6c6520766f726d656e, 'Y', '2016-07-29 13:09:19'),
(4716, 11, 0x4d696a6e20766f726d656e, 'Y', '2016-07-29 13:09:19'),
(4717, 11, 0x4e696575776520566f726d2028476f62616e20456469746f7229, 'Y', '2016-07-29 13:09:19'),
(4674, 11, 0x566f726d204e6f746974696573, 'Y', '2016-07-29 13:12:06'),
(4675, 11, 0x566f726d206f70736c61616e, 'Y', '2016-07-29 13:12:06'),
(4676, 11, 0x566f726d2061616e70617373656e, 'Y', '2016-07-29 13:12:06'),
(4677, 11, 0x566f726d2062656b696a6b656e, 'Y', '2016-07-29 13:12:06'),
(4678, 11, 0x546f6f6e20696e20476f62616e20456469746f72, 'Y', '2016-07-29 13:12:06'),
(4679, 11, 0x566f726d6e61616d206f6e74627265656b74206f66206973207465206b6f72742e, 'Y', '2016-07-29 13:12:06'),
(4680, 11, 0x566f726d6e61616d206973207465206c616e6720286d61782e2025732074656b656e73292e, 'Y', '2016-07-29 13:12:06'),
(4681, 11, 0x566f726d6e61616d205b25735d20697320616c20696e206765627275696b2c206d6f657420756e69656b207a696a6e2e, 'Y', '2016-07-29 13:12:06'),
(4682, 11, 0x4f6e746272656b656e64652047726f6f747465, 'Y', '2016-07-29 13:12:06'),
(4683, 11, 0x4f6e67656c646967652067726f6f747465205b25735d, 'Y', '2016-07-29 13:12:06'),
(2244, 11, 0x57697373656c204b6c657572656e, 'Y', '2016-07-29 13:14:27'),
(3141, 11, 0x4f70656e62616172, 'Y', '2016-07-29 13:14:27'),
(3235, 11, 0x566f726d656e, 'Y', '2016-07-29 13:14:27'),
(4508, 11, 0x42726f6e, 'Y', '2016-07-29 13:14:27'),
(4669, 11, 0x4d61616b206e696575776520766f726d20286d65742050726576696577292c2077616e74205b25735d206973206175746575722076616e20766f726d20257321, 'Y', '2016-07-29 13:14:27'),
(4670, 11, 0x566f726d206f706765736c6167656e21, 'Y', '2016-07-29 13:14:27'),
(4671, 11, 0x566f726d204944, 'Y', '2016-07-29 13:14:27'),
(4672, 11, 0x566f726d6e61616d, 'Y', '2016-07-29 13:14:27'),
(4673, 11, 0x4f70656e6261726520566f726d, 'Y', '2016-07-29 13:14:27'),
(1415, 11, '', 'Y', '2016-07-29 13:51:32'),
(1479, 11, 0x4e61616d, 'Y', '2016-07-29 13:51:32'),
(1550, 11, 0x4e6f746974696573, 'Y', '2016-07-29 13:51:32'),
(1558, 11, 0x47656d61616b74, 'Y', '2016-07-29 13:51:32'),
(1853, 11, 0x4d6f6d656e746f706e616d65, 'Y', '2016-07-29 13:51:32'),
(1960, 11, 0x4e696574206f706765736c6167656e2061616e70617373696e67656e, 'Y', '2016-07-29 13:51:32'),
(2093, 11, 0x47656d61616b74, 'Y', '2016-07-29 13:51:32'),
(2234, 11, 0x4e49455557, 'Y', '2016-07-29 13:51:32'),
(2241, 11, 0x4f70656e62616172, 'Y', '2016-07-29 13:51:32'),
(1113, 11, 0x4d656574656c6c656e64652070617274696a656e, 'Y', '2016-07-29 13:55:58'),
(1389, 11, 0x57696a7a69672062696f67726166697363686520766f6c676f726465, 'Y', '2016-07-29 13:55:58'),
(1390, 11, 0x416c6c65656e20766f6c676f72646520766572616e646572656e2c2068696572206765656e2074656b737477696a7a6967696e67206d6f67656c696a6b, 'Y', '2016-07-29 13:55:58'),
(1391, 11, 0x546162656c206d61782072696a656e, 'Y', '2016-07-29 13:55:58'),
(1392, 11, 0x486574206b69657a656e2076616e2065656e206c6167657265207761617264652068656c70742064652073657276657220287a6965206f6f6b2046415129, 'Y', '2016-07-29 13:55:58'),
(1393, 11, 0x566572616e6465722061616e7a6963687420616c6c65656e20766f6f722064657a652062726f77736572, 'Y', '2016-07-29 13:55:58'),
(1478, 11, 0x416374696566, 'Y', '2016-07-29 13:55:58'),
(1480, 11, 0x4c616e64, 'Y', '2016-07-29 13:55:58'),
(1379, 11, 0x496e74657266616365, 'Y', '2016-07-29 13:57:33'),
(1481, 11, 0x52616e67696e666f, 'Y', '2016-07-29 15:18:21'),
(1482, 11, 0x4265736368696b6261617220766f6f722070617274696a656e3f, 'Y', '2016-07-29 13:57:33'),
(1483, 11, 0x2350617274696a656e, 'Y', '2016-07-29 13:57:33'),
(1486, 11, 0x4765776f6e6e656e, 'Y', '2016-07-29 13:57:33'),
(1487, 11, 0x5665726c6f72656e, 'Y', '2016-07-29 13:57:33'),
(1489, 11, 0x41637469766974656974, 'Y', '2016-07-29 13:57:33'),
(1490, 11, 0x4c61617473746520746f6567616e67, 'Y', '2016-07-29 13:57:33'),
(1493, 11, 0x416c6c65, 'Y', '2016-07-29 13:57:33'),
(1506, 11, '', 'Y', '2016-07-29 13:59:39'),
(1508, 11, '', 'Y', '2016-07-29 13:59:39'),
(1541, 11, 0x4f6e62656b656e6465206765627275696b6572, 'Y', '2016-07-29 13:59:39'),
(1544, 11, 0x436f6e746163742076657277696a646572656e, 'Y', '2016-07-29 13:59:39'),
(1548, 11, 0x5379737465656d2063617465676f72692665756d6c3b6e, 'Y', '2016-07-29 14:23:31'),
(1549, 11, 0x4765627275696b65722063617465676f72692665756d6c3b6e, 'Y', '2016-07-29 14:23:31'),
(1551, 11, 0x686f7564206e6f746974696573206b6f72742c206d61782e203235352074656b656e73, 'Y', '2016-07-29 13:59:39'),
(1554, 11, 0x416374696573, 'Y', '2016-07-29 13:59:39'),
(1555, 11, 0x5379737465656d2063617465676f72692f65756d6c3b6e, 'Y', '2016-07-29 14:23:18'),
(1556, 11, 0x4765627275696b65722063617465676f72692665756d6c3b6e, 'Y', '2016-07-29 14:23:18'),
(1560, 11, 0x446f6f727a6f656b207379737465656d2063617465676f72692665756d6c3b6e, 'Y', '2016-07-29 14:23:18'),
(1561, 11, 0x446f6f727a69656b206765627275696b65722063617465676f72692665756d6c3b6e, 'Y', '2016-07-29 14:23:04'),
(1564, 11, 0x416c6c652070617274696a656e, 'Y', '2016-07-29 14:04:22'),
(1568, 11, 0x416c6c65656e20766f6c6c6564696765207374617469737469656b656e20766f6f7220616667656c6f70656e2070617274696a656e, 'Y', '2016-07-29 14:04:22'),
(1570, 11, 0x50617274696a207374617469737469656b656e20766f6f72207370656c6572202573, 'Y', '2016-07-29 14:04:22'),
(1575, 11, 0x5370656c657273206b6c657572, 'Y', '2016-07-29 14:04:22'),
(1576, 11, 0x536f6d, 'Y', '2016-07-29 14:04:22'),
(1577, 11, 0x57696e2d726174696f2061616e, 'Y', '2016-07-29 14:04:22'),
(1578, 11, 0x2350617274696a656e206765776f6e6e656e203a207665726c6f72656e, 'Y', '2016-07-29 14:04:22'),
(1579, 11, 0x2350617274696a656e206765776f6e6e656e203a207665726c6f72656e206f702053636f7265, 'Y', '2016-07-29 14:04:22'),
(1580, 11, 0x2350617274696a656e206765776f6e6e656e203a207665726c6f72656e20646f6f72204f7067617665, 'Y', '2016-07-29 14:07:01'),
(1581, 11, 0x2350617274696a656e206765776f6e6e656e203a207665726c6f72656e206f702054696a64, 'Y', '2016-07-29 14:07:01'),
(1582, 11, 0x2350617274696a656e206d6574204a69676f, 'Y', '2016-07-29 14:07:01'),
(1583, 11, 0x2350617274696a656e206d65742068616e6469636170, 'Y', '2016-07-29 14:07:01'),
(1584, 11, 0x4d6178696d616c652068616e6469636170, 'Y', '2016-07-29 14:07:01'),
(1596, 11, 0x426573636865726d2070617274696a656e20696e2077616368746b616d6572, 'Y', '2016-07-29 14:07:01'),
(1597, 11, 0x42657269636874656e20616677696a7a656e, 'Y', '2016-07-29 14:07:01'),
(1598, 11, 0x5569746e6f646967696e67656e20616677696a7a656e, 'Y', '2016-07-29 14:07:01'),
(1599, 11, 0x4b656e6e6973, 'Y', '2016-07-29 14:07:01'),
(1600, 11, 0x567269656e64, 'Y', '2016-07-29 14:07:01'),
(1601, 11, 0x53747564656e74, 'Y', '2016-07-29 14:09:25'),
(1603, 11, '', 'Y', '2016-07-29 14:09:25'),
(1604, 11, 0x54726f6c, 'Y', '2016-07-29 14:09:25'),
(1783, 11, 0x4163636f756e74206765626c6f6b6b65657264202d2041616e6d656c64696e67206166676577657a656e, 'Y', '2016-07-29 14:09:25'),
(1784, 11, 0x42696167726166697363686520696e666f2028766572626f7267656e29, 'Y', '2016-07-29 14:09:25'),
(1886, 11, 0x566572626572672070617274696a656e20696e2077616368746b616d6572, 'Y', '2016-07-29 14:09:25'),
(2055, 11, 0x57696a7a6967696e67656e206f70736c61616e, 'Y', '2016-07-29 14:09:25'),
(2059, 11, 0x566572616e64657220726174696e6720262072616e67, 'Y', '2016-07-29 15:19:27'),
(2167, 11, 0x4e696575772062756c6c6574696e, 'Y', '2016-07-29 14:09:25'),
(2178, 11, 0x4765627275696b65727361666265656c64696e672076657277696a6465726421, 'Y', '2016-07-29 14:14:19'),
(2179, 11, 0x4765627275696b65727361666265656c64696e67206f706765736c6167656e21, 'Y', '2016-07-29 14:12:49'),
(2180, 11, 0x5b2041666d6574696e67656e3a20257320782025732c2047726f6f7474653a202573204b42205d, 'Y', '2016-07-29 14:12:49'),
(2181, 11, 0x4765627275696b65727361666265656c64696e672077696a7a6967656e, 'Y', '2016-07-29 14:12:49'),
(2182, 11, 0x41666265656c64696e672075706c6f6164656e, 'Y', '2016-07-29 14:12:49'),
(2184, 11, 0x487569646967652061666265656c64696e67, 'Y', '2016-07-29 14:12:49'),
(2185, 11, 0x41666265656c64696e67206f70736c61616e, 'Y', '2016-07-29 14:12:49'),
(2186, 11, 0x41666265656c64696e672076657277696a646572656e, 'Y', '2016-07-29 14:12:49'),
(2187, 11, 0x4c696d696574656e206f702067652675756d6c3b706c6f6164652061666265656c64696e677362657374616e64656e3a206d61782e202573207820257320706978656c7320656e206d61782e202573204b42, 'Y', '2016-07-29 14:12:49'),
(2188, 11, 0x4f6e646572737465756e64652061666265656c64696e677374797065733a204a5045472c204749462c20504e47, 'Y', '2016-07-29 14:12:49'),
(2189, 11, 0x4e6f746974696573206765627275696b65727361666265656c64696e67, 'Y', '2016-07-29 14:12:49'),
(2191, 11, 0x546f6f6e2042756c6c6574696e2063617465676f72692665756d6c3b6e, 'Y', '2016-07-29 14:29:49'),
(2192, 11, 0x4f76657277696e6e696e67206f702074696a6420616677696a7a656e, 'Y', '2016-07-29 14:29:49'),
(2194, 11, 0x4465206f76657277696e6e696e6720696e2065656e2070617274696a206f702074696a64207a616c20776f7264656e20226166676577657a656e222028642e772e7a2e20766572616e64657264206e616172206e6965742d6d656574656c6c656e64292c3c62723e616c73206465207665726c69657a657220696e206765656e20656e6b656c652070617274696a2065656e207a65742068656566742067656461616e206765647572656e64652065656e2062657061616c64652074696a642e, 'Y', '2016-07-29 14:29:49'),
(2195, 11, 0x646167656e20286d696e696d756d20646174206465207665726c69657a657220696e206765656e20656e6b656c652070617274696a2065656e207a65742068656566742067656461616e, 'Y', '2016-07-29 14:29:49'),
(2196, 11, 0x41616e7a69636874, 'Y', '2016-07-29 14:29:49'),
(2198, 11, 0x4765656e206b6e6f70, 'Y', '2016-07-29 14:29:49'),
(2199, 11, 0x4944206b6e6f70, 'Y', '2016-07-29 14:29:49'),
(6422, 11, 0x526174696f2076616e20766572736368696c6c656e646520746567656e7374616e646572732076616e20616c6c652070617274696a656e, 'Y', '2016-07-29 14:31:54'),
(6423, 11, 0x42657065726b696e67656e206f702070617274696a656e206d657420746567656e7374616e64657220287a6f6e646572204d532d70617274696a656e29, 'Y', '2016-07-29 14:31:54'),
(6424, 11, 0x55706461746520726174696e676772616669656b, 'Y', '2016-07-29 15:23:05'),
(6425, 11, 0x5665726265726720726174696e676c696a6e, 'Y', '2016-07-29 15:23:14'),
(6426, 11, 0x5265677265737369656c696a6e, 'Y', '2016-07-29 14:31:54'),
(6395, 11, 0x23416667656c6f70656e2070617274696a656e206d6574206765627275696b6572, 'Y', '2016-07-29 14:33:04'),
(6396, 11, 0x416667656c6f70656e2070617274696a656e206d6574206765627275696b6572, 'Y', '2016-07-29 14:33:04'),
(6397, 11, 0x7a6f6e646572204d532d70617274696a656e, 'Y', '2016-07-29 14:33:04'),
(6398, 11, 0x582d6173, 'Y', '2016-07-29 14:33:04'),
(6399, 11, 0x592d6173, 'Y', '2016-07-29 14:33:04'),
(6417, 11, 0x4c6f70656e64652070617274696a656e206d657420746567656e7374616e646572, 'Y', '2016-07-29 14:33:04'),
(6418, 11, 0x416667656c6f70656e2070617274696a656e206d657420746567656e7374616e646572, 'Y', '2016-07-29 14:33:04'),
(6420, 11, 0x566572736368696c6c656e646520746567656e7374616e64657273, 'Y', '2016-07-29 14:33:04'),
(6421, 11, 0x566572736368696c6c656e646520746567656e7374616e646572732076616e20616c6c652070617274696a656e, 'Y', '2016-07-29 14:33:04'),
(6315, 11, 0x50617274696a207a65742062657269636874, 'Y', '2016-07-29 14:35:21'),
(6316, 11, 0x506c616174732072656c61746965662074656e206f707a69636874652076616e20737065656c626f7264, 'Y', '2016-07-29 14:35:21'),
(6362, 11, 0x456d61696c7665726966696361746965207a616c2076657273747575726420776f7264656e206e6120686574206f70736c61616e2076616e2077696a7a6967696e67656e21, 'Y', '2016-07-29 14:35:21'),
(6369, 11, 0x42696a64726167652061646d696e206765627275696b6572, 'Y', '2016-07-29 14:35:21'),
(6392, 11, 0x234c6f70656e64652070617274696a656e206d6574206765627275696b6572, 'Y', '2016-07-29 14:35:21'),
(6393, 11, 0x4c6f70656e64652070617274696a656e206d6574206765627275696b6572, 'Y', '2016-07-29 14:35:21'),
(6394, 11, 0x42657065726b696e67656e207a696a6e206e6965742076616e20746f6570617373696e67, 'Y', '2016-07-29 14:35:21'),
(6196, 11, 0x416c73206865742072616e67766572736368696c203e25732069732c206d6167206a65206f6d2065656e20726174696e6777696a7a6967696e672076726167656e2e, 'Y', '2016-07-29 15:22:44'),
(6214, 11, 0x546f6f6e20726174696e676772616669656b206f702070617274696a656e, 'Y', '2016-07-29 15:22:44'),
(6216, 11, 0x47656566207a657420646f6f72206b6e6f70, 'Y', '2016-07-29 14:39:19'),
(6217, 11, 0x546f6f6e206b6e6f70206f6d207a657420646f6f7220746520676576656e20656e20626c696a66206f702064657a656c66646520706167696e61, 'Y', '2016-07-29 14:39:19'),
(6229, 11, 0x526174696e67206e6f64696720616e64206d696e2e20257320616667656c6f70656e2070617274696a656e202825732525206d6574207a77616b6b657265207370656c657273203e316b2d766572736368696c29206f6d2068656c64656e2d696e7369676e65207465206b72696a67656e, 'Y', '2016-07-29 15:22:44'),
(6230, 11, 0x50617274696a656e206d6574207a77616b6b657265207370656c657273203e316b2d766572736368696c206d6f6574656e2068657420766f6c67656e64652068656c64656e2d696e7369676e65206c6576656c2068616c656e, 'Y', '2016-07-29 14:39:19'),
(6264, 11, 0x5665726265726720666f72756d2062657269636874656e206e69657420746f656765737461616e20766f6f722061646d696e2d6765627275696b657273, 'Y', '2016-07-29 14:39:19'),
(6266, 11, 0x5665726265726720666f72756d2062657269636874656e, 'Y', '2016-07-29 14:39:19'),
(6314, 11, 0x426f76656e, 'Y', '2016-07-29 14:39:19'),
(5788, 11, 0x2350617274696a656e206765776f6e6e656e203a207665726c6f72656e20646f6f722076657262657572696e67, 'Y', '2016-07-29 14:43:05'),
(5789, 11, 0x2350617274696a656e206d6574204765656e2d526573756c74616174, 'Y', '2016-07-29 14:43:05'),
(6160, 11, 0x57696e737425, 'Y', '2016-07-29 15:21:30'),
(6161, 11, 0x48656c64656e25, 'Y', '2016-07-29 14:43:05'),
(6177, 11, 0x4d656574656c6c656e642057696e73742025, 'Y', '2016-07-29 15:21:30'),
(6178, 11, 0x48656c64656e2025, 'Y', '2016-07-29 14:43:05'),
(6179, 11, 0x50657263656e746167652076616e2070617274696a656e206d6574207a77616b6b657265207370656c657273, 'Y', '2016-07-29 14:43:05'),
(6195, 11, 0x416c73206865742072616e67766572736368696c203e25732069732c206d6167206a652065656e206865727374656c2076616e206a6520726174696e672d7a656b657268656964736d617267652061616e76726167656e206f6d2068657420726174696e677379737465656d20736e656c6c65722061616e207465206c6174656e2070617373656e2e, 'Y', '2016-07-29 15:22:44'),
(5727, 11, '', 'Y', '2016-07-29 14:45:37'),
(5728, 11, '', 'Y', '2016-07-29 14:45:37'),
(5729, 11, 0x68616e67742076616e20626f726467726f6f747465206166, 'Y', '2016-07-29 14:45:37'),
(5731, 11, 0x31303020454c4f2070756e74656e203d2031206b7975, 'Y', '2016-07-29 14:45:37'),
(5732, 11, 0x526174696e67766572736368696c2062696a2057696e7374, 'Y', '2016-07-29 15:20:38'),
(5733, 11, 0x526174696e67766572736368696c2062696a204a69676f, 'Y', '2016-07-29 15:20:38'),
(5734, 11, 0x526174696e67766572736368696c2062696a205665726c696573, 'Y', '2016-07-29 15:21:30'),
(5751, 11, 0x454c4f20526174696e67204d696e202d204d6178, 'Y', '2016-07-29 15:21:30'),
(5752, 11, 0x526174696e67766572616e646572696e67656e2028454c4f29, 'Y', '2016-07-29 15:21:30'),
(5755, 11, 0x4765627275696b657273206c6f6b616c65206e6163687474696a64, 'Y', '2016-07-29 14:45:37'),
(5714, 11, 0x546f6f6e20726174696e67766572616e646572696e67656e, 'Y', '2016-07-29 15:01:13'),
(5715, 11, 0x4b616e206765627275696b6572206d6572206765627275696b6572736964205b25735d206e6965742076696e64656e, 'Y', '2016-07-29 14:47:55'),
(5716, 11, 0x4f6e746272656b656e6465206765627275696b657273696420766f6f72207a7761727465207370656c6572, 'Y', '2016-07-29 14:47:55'),
(5717, 11, 0x4f6e746272656b656e6465206765627275696b657273696420766f6f72207769747465207370656c6572, 'Y', '2016-07-29 14:47:55'),
(5718, 11, 0x57697373656c206b6c657572656e, 'Y', '2016-07-29 14:47:55'),
(5719, 11, 0x526174696e67737461747573, 'Y', '2016-07-29 15:20:11'),
(5720, 11, 0x564552534348494c, 'Y', '2016-07-29 14:47:55'),
(5722, 11, 0x5a656b657268656964736d61726765, 'Y', '2016-07-29 14:47:55'),
(5723, 11, 0x454c4f20526174696e67, 'Y', '2016-07-29 15:20:38'),
(5726, 11, 0x62657265696b202d3230302e2e323030, 'Y', '2016-07-29 14:47:55'),
(2193, 11, 0x416374697665657220636f6e74726f6c65206f70206d656574656c6c656e646520286e6965742d746f65726e6f6f69292070617274696a656e206765776f6e6e656e206f702074696a643a, 'Y', '2016-07-29 15:25:37'),
(2197, 11, 0x5a6574204a6176615363726970742061616e, 'Y', '2016-07-29 15:25:37'),
(2204, 11, 0x52656c617469657665206e756d6d6572696e67, 'Y', '2016-07-29 15:25:37'),
(2205, 11, 0x4f6d67656b6565726465206e756d6d6572696e67, 'Y', '2016-07-29 15:25:37'),
(2206, 11, 0x4d61726b656572204c616174737465205a657420476576616e67656e6e616d65, 'Y', '2016-07-29 15:25:37'),
(2207, 11, 0x5a65746d61726b6572696e67, 'Y', '2016-07-29 15:25:37'),
(5498, 11, 0x56657269666963617469652076657277696a6465726421, 'Y', '2016-07-29 15:28:57'),
(5499, 11, 0x5665726966696361746965206f6d206f706e696575772074652073747572656e206b6f6e206e696574206765766f6e64656e20776f7264656e21, 'Y', '2016-07-29 15:28:57'),
(5500, 11, 0x4a65206b616e20616c6c65656e206a6520656967656e20766572696669636174696573206f706e696575772073747572656e21, 'Y', '2016-07-29 15:28:57'),
(5501, 11, 0x56657269666963617469656d61696c20766f6f7220656d61696c77696a7a6967696e67205b25735d206973206f706e6965757720676573747575726421, 'Y', '2016-07-29 15:28:57'),
(6357, 11, 0x436f646572696e67, 'Y', '2016-07-29 15:28:57'),
(6360, 11, 0x5665727a616d656c20696e766f6572656e206f70206c61617473746520746f6567616e67202877656273697465206f6620616e6465726520636c69656e747329, 'Y', '2016-07-29 15:28:57'),
(6361, 11, 0x5665727a616d656c20696e766f6572656e206f702074696a642076616e206c616174737465206d656c64696e67, 'Y', '2016-07-29 15:28:57'),
(5488, 11, 0x5374617070656e206f6d206a6520656d61696c20746520766572616e646572656e3a, 'Y', '2016-07-29 15:33:26'),
(5489, 11, 0x566f65722065656e206e6965757720656e2067656c64696720656d61696c20696e20656e206b6c696b206f702027496e7374656c6c696e67656e206f70736c61616e27, 'Y', '2016-07-29 15:33:26'),
(5490, 11, 0x45656e2062657269636874207a616c206e616172206a65206e696575776520656d61696c616472657320676573747575726420776f7264656e206d65742065656e2076616c696461746965636f64652e, 'Y', '2016-07-29 15:33:26'),
(5491, 11, 0x486574206f70656e656e2076616e206465206c696e6b2076616e20646174206265726963687420696e2064652062726f77736572207a616c206a65206e696575776520656d61696c207665726966692665756d6c3b72656e20656e20646520656d61696c2076616e206a65206163636f756e74207a616c2076657276616e67656e20776f7264656e20646f6f72206465206e6965757765, 'Y', '2016-07-29 15:33:26'),
(5492, 11, 0x566572616e646572206e6f746974696573, 'Y', '2016-07-29 15:33:26'),
(5493, 11, 0x4d656c64696e67656e2067652675756d6c3b7064617465, 'Y', '2016-07-29 15:33:26'),
(5494, 11, 0x56657269666963617469656d61696c20766f6f7220656d61696c2d766572616e646572696e672076657273747575726421, 'Y', '2016-07-29 15:33:26'),
(5495, 11, 0x56657269666963617469656d61696c20766f6f72206265737461616e646520656d61696c2076657273747575726421, 'Y', '2016-07-29 15:33:26'),
(5496, 11, 0x5665726966696361746965206f6d2074652076657277696a646572656e206b6f6e206e69657420776f7264656e206765766f6e64656e21, 'Y', '2016-07-29 15:33:26'),
(5497, 11, 0x4a65206b616e20616c6c65656e206a6520656967656e207665726966696361746965732076657277696a646572656e21, 'Y', '2016-07-29 15:33:26'),
(5478, 11, 0x456d61696c206973206e6965742067657665726966692665756d6c3b65726421, 'Y', '2016-07-29 15:35:39'),
(5479, 11, 0x456d61696c206f6e74627265656b7421, 'Y', '2016-07-29 15:35:39'),
(5480, 11, 0x496e7374656c6c696e67656e206f706c7361616e, 'Y', '2016-07-29 15:35:39'),
(5481, 11, '', 'Y', '2016-07-29 15:35:39'),
(5482, 11, 0x506f67696e67656e, 'Y', '2016-07-29 15:35:39'),
(5483, 11, 0x566572737475757264207665726966696361746965206f706e69657577, 'Y', '2016-07-29 15:35:39'),
(5484, 11, 0x56657277696a646572207665726966696361746965, 'Y', '2016-07-29 15:35:39'),
(5485, 11, 0x566572616e64657220656d61696c2026206d656c64696e67656e, 'Y', '2016-07-29 15:35:39'),
(5486, 11, 0x4f70656e20766572696669636174696573, 'Y', '2016-07-29 15:35:39'),
(5487, 11, 0x4f6d206d656c64696e67656e206f662065656e206e69657577207761636874776f6f72642028696e6469656e20766572676574656e29207465206f6e7476616e67656e206d6f65742065656e20656d61696c20696e67657374656c64207a696a6e2e, 'Y', '2016-07-29 15:35:39'),
(4598, 11, 0x4f6e67656c6469676520776161726465205b25735d20766f6f72206765627275696b7465207a65746e756d6d6572696e672028746f6567657374616e652062657265696b2069732025732e2e2573292e, 'Y', '2016-07-29 15:41:43');
INSERT INTO `Translations` (`Original_ID`, `Language_ID`, `Text`, `Translated`, `Updated`) VALUES
(4599, 11, 0x4166627265656b67726f6f7474652067656b6f7a656e20766f6f72206f6e67656c64696765206e6f746974696573206f6d20226b6c65696e65222076616e202267726f74652220626f7264656e207465206f6e646572736368656964656e20286765636f7272696765657264206e616172207374616e6461617264292e, 'Y', '2016-07-29 15:41:43'),
(4600, 11, 0x486f6f67746520766f6f72206f6e67656c64696765206e6f74697469657320766f6f72206b6c65696e6520626f7264656e20676573656c6563746565726420286765636f7272696765657264206e616172207374616e6461617264292e, 'Y', '2016-07-29 15:41:43'),
(4601, 11, 0x486f6f67746520766f6f72206f6e67656c64696765206e6f74697469657320766f6f722067726f746520626f7264656e20676573656c6563746565726420286765636f7272696765657264206e616172207374616e6461617264292e, 'Y', '2016-07-29 15:41:43'),
(4602, 11, 0x4272656564746520766f6f72206f6e67656c64696765206e6f74697469657320766f6f72206b6c65696e6520626f7264656e20676573656c6563746565726420286765636f7272696765657264206e616172207374616e6461617264292e, 'Y', '2016-07-29 15:41:43'),
(4603, 11, 0x4272656564746520766f6f72206f6e67656c64696765206e6f74697469657320766f6f722067726f746520626f7264656e20676573656c6563746565726420286765636f7272696765657264206e616172207374616e6461617264292e, 'Y', '2016-07-29 15:41:43'),
(4617, 11, 0x446976657273656e, 'Y', '2016-07-29 15:41:43'),
(5194, 11, 0x41646d696e206765627275696b657273726174696e67, 'Y', '2016-07-29 15:41:43'),
(5476, 11, 0x456d61696c206973206f6e67656c64696721, 'Y', '2016-07-29 15:41:43'),
(5477, 11, 0x456d61696c2069732067657665726966692665756d6c3b65726421, 'Y', '2016-07-29 15:41:43'),
(4502, 11, 0x4765627275696b65727361666265656c64696e672028766572626f7267656e29, 'Y', '2016-07-29 15:47:26'),
(4503, 11, 0x4765627275696b65727361666265656c64696e67, 'Y', '2016-07-29 15:47:26'),
(4581, 11, 0x436f6e74726f6c65657220616c736a65626c69656674206f662064652067652675756d6c3b706c6f6164652061666265656c64696e67206e696574206f6e64657220636f707972696768742076616c74213c62723e486574207a616c20616e646572732076657277696a6465726420776f7264656e2e, 'Y', '2016-07-29 15:47:26'),
(4591, 11, 0x4f6e67656c646967652074696a64737a6f6e65205b25735d2067656b6f7a656e, 'Y', '2016-07-29 15:47:26'),
(4592, 11, 0x456d61696c6164726573206f6e74627265656b74206f6d206d656c64696e67656e2070657220656d61696c2061616e207465207a657474656e2e, 'Y', '2016-07-29 15:47:26'),
(4593, 11, 0x4f6e67656c6469676520646167656e205b25735d206f6d2077696e7374206f702074696a642061662074652077696a7a656e206765636f72726967656572642e, 'Y', '2016-07-29 15:47:26'),
(4594, 11, 0x4f6e67656c6469676520646167656e205b25735d287465207665656c29206f6d2077696e7374206f702074696a642061662074652077696a7a656e206765636f72726967656572642e, 'Y', '2016-07-29 15:47:26'),
(4596, 11, 0x4f6e67656c6469676520737465656e67726f6f747465205b25735d20676573656c6563746565726420286765636f7272696765657264206e616172207374616e6461617264292e, 'Y', '2016-07-29 15:47:26'),
(4597, 11, 0x4f6e67656c6469676520686f75746b6c65757220676573656c6563746565726420286765636f7272696765657264206e616172207374616e6461617264292e, 'Y', '2016-07-29 15:47:26'),
(3417, 11, 0x546f6f6e206d696a6e20726174696e6720706c61617473, 'Y', '2016-07-29 15:51:22'),
(3537, 11, 0x41646d696e206765627275696b6572, 'Y', '2016-07-29 15:51:22'),
(4493, 11, 0x54696a64737a6f6e65, 'Y', '2016-07-29 15:51:22'),
(4494, 11, 0x4765627275696b657273206c6f6b616c652074696a64, 'Y', '2016-07-29 15:51:22'),
(4496, 11, 0x4c61617473746520736e656c6c6520746f6567616e67, 'Y', '2016-07-29 15:51:22'),
(4497, 11, 0x75697467657a6574, 'Y', '2016-07-29 15:51:22'),
(4498, 11, 0x257320646167656e, 'Y', '2016-07-29 15:51:22'),
(4499, 11, 0x50617274696a656e207665726c6f72656e206f702074696a64, 'Y', '2016-07-29 15:51:22'),
(4500, 11, 0x4d532d70617274696a656e, 'Y', '2016-07-29 15:51:22'),
(4501, 11, 0x257320284c6f70656e64292c20257320284f7067657374656c6429, 'Y', '2016-07-29 15:51:22'),
(3000, 11, 0x476173746765627275696b657273205b25735d207a696a6e206e696574206f70206465206765627275696b6572736c696a737420746f656765737461616e2e, 'Y', '2016-07-29 15:56:42'),
(3224, 11, 0x4765627275696b65727361666265656c64696e67, 'Y', '2016-07-29 15:56:42'),
(3225, 11, 0x496e64696361746f7220766f6f72206265737461616e6465206765627275696b65727361666265656c64696e67, 'Y', '2016-07-29 15:56:42'),
(3228, 11, 0x41616e676570617374, 'Y', '2016-07-29 15:56:42'),
(3295, 11, 0x537065636961616c, 'Y', '2016-07-29 15:56:42'),
(3297, 11, 0x5569746e6f646967696e67, 'Y', '2016-07-29 15:56:42'),
(3298, 11, 0x546567656e7374616e646572732070617274696a656e, 'Y', '2016-07-29 15:56:42'),
(3300, 11, 0x47657265676973747265657264, 'Y', '2016-07-29 15:56:42'),
(3304, 11, 0x546f6f6e206765627275696b657273, 'Y', '2016-07-29 15:56:42'),
(3296, 11, '', 'Y', '2016-07-29 15:56:59'),
(2656, 11, 0x50726f6669656c206c6164656e, 'Y', '2016-07-29 16:02:06'),
(2657, 11, 0x50726f6669656c206f70736c61616e, 'Y', '2016-07-29 16:02:06'),
(2658, 11, 0x50726f6669656c2076657277696a646572656e, 'Y', '2016-07-29 16:02:06'),
(2672, 11, 0x4765627275696b6572205b25735d2068656566742065656e2061666265656c64696e67, 'Y', '2016-07-29 16:02:06'),
(2673, 11, 0x41666265656c64696e672076616e206765627275696b6572205b25735d, 'Y', '2016-07-29 16:02:06'),
(2996, 11, 0x496c6c6567616c652074656b656e73206765627275696b7420696e206765627275696b6572205b25735d, 'Y', '2016-07-29 16:02:06'),
(2997, 11, 0x4f6e62656b656e6465206765627275696b657273206765766f6e64656e205b25735d, 'Y', '2016-07-29 16:02:06'),
(2998, 11, 0x4765627275696b6572736c696a7374206d6f65742074656e206d696e7374652074776565206f6e7476616e6765727320626576617474656e2c20737475757220616e6465727320696e20706c61617473206461617276616e2065656e2070726976266561637574653b2d626572696368742e, 'Y', '2016-07-29 16:02:06'),
(2999, 11, 0x4765627275696b657273205b25735d207a696a6e206e69657420746f656765737461616e207465207374656d6d656e206f7020656e71752665636972633b74657320646f6f722061646d696e2e, 'Y', '2016-07-29 16:02:06'),
(2226, 11, 0x5665727a6f656b20746f7420726174696e672d766572616e646572696e67, 'Y', '2016-07-29 16:04:15'),
(2227, 11, 0x42656c616e6772696a6b65206e6f746974696573206f76657220526174696e6720262072616e6720766572616e646572696e67656e, 'Y', '2016-07-29 16:04:15'),
(2558, 11, 0x436f6e76656e74696f6e656c652068616e6469636170, 'Y', '2016-07-29 16:04:15'),
(2650, 11, 0x50726f6669656c20616c73207374616e6461617264206f706765736c6167656e21, 'Y', '2016-07-29 16:04:15'),
(2651, 11, 0x50726f6669656c206f706765736c6167656e21, 'Y', '2016-07-29 16:04:15'),
(2652, 11, 0x48756964696765207761617264656e, 'Y', '2016-07-29 16:04:15'),
(2653, 11, 0x56657277696a646572207761617264656e, 'Y', '2016-07-29 16:04:15'),
(2654, 11, 0x4865727374656c207761617264656e, 'Y', '2016-07-29 16:04:15'),
(2655, 11, 0x4f70736c61616e20616c73207374616e6461617264, 'Y', '2016-07-29 16:04:15'),
(2214, 11, 0x4b696573206a6520726174696e67207665727374616e6469672c2077616e742064657a65206b616e206e6f726d61616c2067657370726f6b656e206e6965742061616e67657061737420776f7264656e206e61646174206a652065656e206d656574656c6c656e64652070617274696a2062656e7420676573746172742e, 'Y', '2016-07-29 16:21:14'),
(2215, 11, 0x416c73206a65206a652072616e672075697420656e20616e646572652062726f6e206b656e742c2062762e2076616e2065656e20616e6465726520476f2d536572766572206f662076616e2065656e206f66666963692665756d6c3b6c6520726174696e676c696a73742c206b756e206a652064652052616e672d436f6e766572746572206765627275696b6572206f6d2065656e2070617373656e64652072616e67206f70204447532074652076696e64656e2e, 'Y', '2016-07-29 16:21:14'),
(2216, 11, 0x416c73206a65206a6520726174696e672068656c656d61616c206e69657420776565742c206b756e206a65206f6d2068756c702076726167656e206f7020646520666f72756d732e2045656e206162736f6c75746520626567696e6e6572206b616e207374617274656e206d65742065656e2072616e672074757373656e2032356b2d33306b2e, 'Y', '2016-07-29 16:21:14'),
(2217, 11, 0x5765206d6f65646967656e206a652061616e206f6d206572206f702074652076657274726f7577656e206461742068657420726174696e677379737465656d206a6520726174696e672061616e706173742e20486574207370656c656e2076616e207665656c2070617274696a656e2068656c7074206f6d206a6520726174696e6720736e656c206e61617220686574206a7569737465206e69766561752061616e2074652070617373656e2e, 'Y', '2016-07-29 16:21:14'),
(2218, 11, 0x4865742067656d696464656c646520726174696e67766572736368696c206973206f6e67657665657220302c336b20766f6f722065656e20676562616c616e6365657264652070617274696a2c20647573207a756c206a652063612e20332d342070617274696a656e206d6f6574656e2077696e6e656e206d65742065656e206576656e20737465726b6520746567656e7374616e646572206f6d206a6520726174696e67206d657420316b207465206c6174656e207374696a67656e2e204c65742077656c3a206469742068616e67742061662076616e20686574207a656b65726865696473696e74657276616c2c20646520737465726b746520656e206465206765627275696b74652070617274696a2d68616e64696361702d696e7374656c6c696e67656e2076616e206465207370656c657220656e206b616e20646161726f6d20766572736368696c6c656e2c20642e772e7a2e206d656572206f66206d696e6465722070617274696a656e206e6f6469672068656262656e2e, 'Y', '2016-07-29 16:21:14'),
(2219, 11, 0x3c623e2752616e67696e666f273c2f623e20697320616c6c65656e206d6161722065656e20696e666f726d65656c2076656c642c2077656c6b65206765627275696b74206b616e20776f7264656e206f6d2061616e20616e646572652072616e6773797374656d656e2074652072656665726572656e2c2062762e204b47532c204547462c2033642070726f2c20656e7a2e, 'Y', '2016-07-29 16:21:14'),
(2220, 11, 0x3c623e45656e207661737467657374656c646520526174696e6720766572616e646572656e3c2f623e206b616e20616c6c65656e206f6e6465722062657061616c646520766f6f727761617264656e2067656461616e20776f7264656e2e, 'Y', '2016-07-29 16:21:14'),
(2221, 11, 0x486f756420696e2067656461636874656e2064617420686574207370656c656e2076616e207665656c2070617274696a656e206f6d2068657420726174696e677379737465656d206a6520726174696e672061616e207465206c6174656e2070617373656e20646520766f6f726b6575722068656566742e, 'Y', '2016-07-29 16:21:14'),
(2222, 11, 0x45656e20726174696e676865727374656c2f766572616e646572696e67206b616e206e6f726d61616c2067657370726f6b656e2065656e206b65657220706572206a6161722061616e676576726161676420776f7264656e2e, 'Y', '2016-07-29 16:21:14'),
(2225, 11, 0x566f65672065656e207665727a6f656b20746f65206f7020686574204f6e646572737465756e696e67732d666f72756d206d6574206f6e6465727765727020222573222e2045656e207370656c61646d696e207a616c2064616e206a652061616e767261616720636f6e74726f6c6572656e20656e207665727765726b656e2e3c62723e0d0a4765656620616c736a65626c6965667420696e666f206f7665723a206a6520646f656c72616e672c2062726f6e6e656e20646965206a65206265776572696e67206265766573746967656e2028686574206c6965667374206d65742064657a656c666465206765627275696b6572734944732c2062762e2065656e20616e6465726520676f2d7365727665722c206f66666963692665756d6c3b6c6520726174696e676c696a7374656e2c2061616e626576656c696e67656e2076616e2065656e207370656c65722f6c6572616172206d65742065656e20686f676572652072616e672064616e206a657a656c662e204765627275696b20766f6f722072616e67656e206f6620726174696e67732076616e20616e646572652073657276657220616c736a65626c696566742065657273742064652052616e672d436f6e7665727465722068696572626f76656e2e, 'Y', '2016-07-29 16:21:14'),
(2208, 11, 0x57696a7a6967206765627275696b65727361666265656c64696e67, 'Y', '2016-07-29 16:23:39'),
(2209, 11, 0x52616e672067652675756d6c3b706461746521, 'Y', '2016-07-29 16:23:39'),
(2210, 11, 0x52616e67202620726174696e672067652675756d6c3b706461746521, 'Y', '2016-07-29 16:23:39'),
(2211, 11, 0x566572616e646572204447532d726174696e6720656e2072616e67696e666f, 'Y', '2016-07-29 16:23:39'),
(2212, 11, 0x4765627275696b6572, 'Y', '2016-07-29 16:23:39'),
(2213, 11, 0x4a65206d6f6574203c623e65656e2027526174696e6727206f70676576656e3c2f623e20616c73206a65203c623e6d656574656c6c656e64652070617274696a656e3c2f623e2077696c74207370656c656e2e, 'Y', '2016-07-29 16:23:39'),
(6412, 11, 0x536f6d2056616e2044652053636f7265732056616e20566572736c6167656e20546567656e7374616e64657273, 'Y', '2016-07-30 11:34:12'),
(6413, 11, 0x48616e646d61746967652070617274696a656e206d657420616677697373656c656e6465206b6c657572, 'Y', '2016-07-30 11:34:12'),
(6416, 11, 0x5265676973747261746965204944, 'Y', '2016-07-30 11:34:12'),
(6429, 11, 0x546f65726e6f6f69656e206265686572656e, 'Y', '2016-07-30 11:34:12'),
(2201, 11, 0x4f7665726865656e204265776567656e2028746f6f6e20636f266f756d6c3b7264696e6174656e29, 'Y', '2016-07-30 11:36:46'),
(2202, 11, 0x534746204f7665726865656e204265776567656e2028746f6f6e2053474620636f266f756d6c3b7264696e6174656e, 'Y', '2016-07-30 11:36:46'),
(2203, 11, 0x546f6f6e20676574616c6c656e20616c6c656e2062696a204f7665726865656e204265776567656e, 'Y', '2016-07-30 11:36:46'),
(2674, 11, 0x53697465206d6564657765726b657273, 'Y', '2016-07-30 11:36:46'),
(6215, 11, 0x50617274696a2d706167696e6120696e7374656c6c696e67656e, 'Y', '2016-07-30 11:36:46'),
(1507, 11, 0x4d6170, 'Y', '2016-07-30 11:47:06'),
(1509, 11, 0x4164726573736572696e67, 'Y', '2016-07-30 11:47:53'),
(1510, 11, '', 'Y', '2016-07-30 11:47:06'),
(1511, 11, 0x41616e, 'Y', '2016-07-30 11:47:06'),
(1512, 11, 0x56616e, 'Y', '2016-07-30 11:47:06'),
(1513, 11, 0x4f6e64657277657270, 'Y', '2016-07-30 11:47:06'),
(1515, 11, 0x4d61726b6572696e67, 'Y', '2016-07-30 11:47:06'),
(1516, 11, 0x4d696a7a656c66, 'Y', '2016-07-30 11:47:06'),
(1517, 11, '', 'Y', '2016-07-30 11:47:06'),
(1518, 11, 0x41616e, 'Y', '2016-07-30 11:50:26'),
(1519, 11, 0x56616e, 'Y', '2016-07-30 11:50:26'),
(1585, 11, 0x546f6f6e20616c6c65656e206565727374652062657269636874656e, 'Y', '2016-07-30 11:50:26'),
(1586, 11, 0x416c6c65, 'Y', '2016-07-30 11:50:26'),
(1587, 11, 0x50617274696a2d676572656c617465657264, 'Y', '2016-07-30 11:50:26'),
(1588, 11, 0x50617274696a2d6f6e676572656c617465657264, 'Y', '2016-07-30 11:50:26'),
(1590, 11, 0x76696e64204765627275696b6572736964, 'Y', '2016-07-30 11:50:26'),
(1591, 11, 0x416c6c65, 'Y', '2016-07-30 11:50:26'),
(1592, 11, 0x53656c656374656572206d617070656e, 'Y', '2016-07-30 11:50:26'),
(1594, 11, 0x42657269636874656e207a6f656b656e, 'Y', '2016-07-30 11:50:26'),
(1595, 11, 0x4d617070656e20646f6f72626c61646572656e, 'Y', '2016-07-30 11:52:34'),
(1885, 11, 0x566572626f7267656e, 'Y', '2016-07-30 11:52:34'),
(2430, 11, 0x6f6e64657268616e64656c64206d6574204565726c696a6b65204b6f6d69, 'Y', '2016-07-30 11:52:34'),
(2507, 11, 0x54696a6473696e74656c6c696e67656e, 'Y', '2016-07-30 11:52:34'),
(2922, 11, 0x4163636570746565722064657a656c66646520746567656e7374616e646572, 'Y', '2016-07-30 11:52:34'),
(3054, 11, 0x4b6c657572205569746461676572, 'Y', '2016-07-30 11:52:34'),
(3055, 11, 0x4b6c65757220537465726b6572, 'Y', '2016-07-30 11:52:34'),
(3056, 11, 0x48616e646d617469676520696e7374656c6c696e67656e202867656c696a6b206f70206f662068616e64696361702070617274696a29, 'Y', '2016-07-30 11:52:34'),
(3057, 11, 0x4565726c696a6b65204b6f6d69202867656c696a6b206f702070617274696a29, 'Y', '2016-07-30 11:52:34'),
(3058, 11, 0x48616e6469636170207374656e656e, 'Y', '2016-07-30 11:52:34'),
(3059, 11, 0x41616e70617373656e206d6574, 'Y', '2016-07-30 11:54:41'),
(3060, 11, '', 'Y', '2016-07-30 11:54:41'),
(3061, 11, '', 'Y', '2016-07-30 11:54:41'),
(3062, 11, 0x41616e70617373656e206d6574, 'Y', '2016-07-30 11:54:41'),
(3063, 11, 0x4a69676f206d6f647573, 'Y', '2016-07-30 11:54:41'),
(3064, 11, 0x4d6565722d7370656c657220696e74656c6c696e67656e, 'Y', '2016-07-30 11:54:41'),
(3065, 11, 0x50617274696a205370656c657273, 'Y', '2016-07-30 11:54:41'),
(3066, 11, 0x62762e20323a32202852656e676f292c203320285a656e2d476f29, 'Y', '2016-07-30 11:54:41'),
(3067, 11, 0x5554432074696a64737a6f6e65, 'Y', '2016-07-30 11:54:41'),
(3068, 11, 0x42657065726b696e67656e, 'Y', '2016-07-30 11:54:41'),
(3069, 11, 0x42756c6b2d42657269636874206d657420616e64657265206f6e7476616e67657273, 'Y', '2016-07-30 12:02:01'),
(3071, 11, 0x42657269636874656e7265656b73, 'Y', '2016-07-30 12:02:01'),
(3072, 11, 0x546f6f6e2062657269636874656e7265656b73, 'Y', '2016-07-30 12:02:01'),
(3073, 11, 0x456572737465206265726963687420696e207265656b73, 'Y', '2016-07-30 12:02:01'),
(3074, 11, 0x546f6f6e20656572737465206265726963687420696e207265656b73, 'Y', '2016-07-30 12:02:01'),
(3076, 11, 0x41616e74616c2070617274696a2d7370656c657273, 'Y', '2016-07-30 12:02:01'),
(3079, 11, 0x50617274696a2d696e666f, 'Y', '2016-07-30 12:02:01'),
(3080, 11, 0x48616e64696361702070617274696a206d6574206e6967697269, 'Y', '2016-07-30 12:02:01'),
(3081, 11, 0x4b6c6575722062657061616c6420646f6f722070617274696a2d6c6569646572, 'Y', '2016-07-30 12:02:01'),
(3082, 11, 0x4b6c6575722062657061616c6420646f6f722070617274696a2d6c656964657220766f6f72206d6565722d7370656c65722d70617274696a, 'Y', '2016-07-30 12:03:28'),
(3083, 11, 0x4b6c657572205a77617274, 'Y', '2016-07-30 12:03:28'),
(3084, 11, 0x4b6c65757220576974, 'Y', '2016-07-30 12:03:28'),
(3085, 11, 0x4b6c657572205569746461676572205a77617274, 'Y', '2016-07-30 12:03:28'),
(3086, 11, 0x4b6c65757220556974646167657220576974, 'Y', '2016-07-30 12:03:28'),
(3087, 11, 0x4b6c65757220537465726b657265205a77617274, 'Y', '2016-07-30 12:03:28'),
(3088, 11, 0x4b6c65757220537465726b65726520576974, 'Y', '2016-07-30 12:03:28'),
(3089, 11, 0x48616e646d617469676520696e74656c6c696e67, 'Y', '2016-07-30 12:03:28'),
(3090, 11, 0x4565726c696a6b65204b6f6d69, 'Y', '2016-07-30 12:03:28'),
(3091, 11, 0x48616e64696361702061616e70617373696e67, 'Y', '2016-07-30 12:36:57'),
(3092, 11, 0x4b6f6d692061616e70617373696e67, 'Y', '2016-07-30 12:36:57'),
(3093, 11, 0x526174696e672062657065726b696e67656e, 'Y', '2016-07-30 12:36:57'),
(3102, 11, 0x4d656574656c6c656e646520616667656c6f70656e2050617274696a656e205b2667743b3d25735d, 'Y', '2016-07-30 12:36:57'),
(3103, 11, 0x4f6e62656b656e64652062657269636874206f6e7476616e676572, 'Y', '2016-07-30 12:36:57'),
(3104, 11, 0x5569746e6f646967696e67206166676577657a656e20646f6f72206765627275696b6572205b25735d2021, 'Y', '2016-07-30 12:36:57'),
(3105, 11, 0x42657269636874206166676577657a656e20646f6f72206765627275696b6572205b25735d2021, 'Y', '2016-07-30 12:36:57'),
(3106, 11, 0x42657269636874656e7265656b73, 'Y', '2016-07-30 12:36:57'),
(3107, 11, 0x456572737465206265726963687420696e207265656b73, 'Y', '2016-07-30 12:46:00'),
(3108, 11, 0x4765627275696b20696e2f756974736368616b656c656e2068696572626f76656e20766f6f72206469742062756c6b2d62657269636874, 'Y', '2016-07-30 12:46:00'),
(3109, 11, 0x4f6e746272656b656e646520626572696368746f6e7476616e676572, 'Y', '2016-07-30 12:46:00'),
(3110, 11, 0x5465207665656c206f6e7476616e6765727320286d61782e20257329, 'Y', '2016-07-30 12:46:00'),
(3111, 11, 0x4d61617220266561637574653b266561637574653b6e206f6e7476616e67657220746f656765737461616e20766f6f72207569746e6f646967696e6721, 'Y', '2016-07-30 12:46:00'),
(3112, 11, 0x4765627275696b6572205b25735d206973206765656e206465656c6e656d65722076616e206d6565722d7370656c65722d70617274696a2e, 'Y', '2016-07-30 12:46:00'),
(3113, 11, 0x4f6e746272656b656e20626572696368746f6e64657277657270, 'Y', '2016-07-30 12:46:00'),
(3229, 11, 0x4d61726b6572696e67656e20696e2f756974736368616b656c656e, 'Y', '2016-07-30 12:46:00'),
(3230, 11, 0x446f656c6d61703a, 'Y', '2016-07-30 12:51:02'),
(3231, 11, 0x566572706c616174732067656d61726b65657264652062657269636874656e, 'Y', '2016-07-30 12:51:02'),
(3250, 11, 0x4e69657577206d6565722d7370656c65722d70617274696a2062657269636874, 'Y', '2016-07-30 12:51:02'),
(3252, 11, 0x50617274696a207569746e6f646967696e67, 'Y', '2016-07-30 12:51:02'),
(3253, 11, 0x50617274696a205569746e6f646967696e67204765736368696c, 'Y', '2016-07-30 12:51:02'),
(3255, 11, 0x566f6f72756974626c696b2062657269636874, 'Y', '2016-07-30 12:51:02'),
(3256, 11, 0x50617274696a2d696e7374656c6c696e67656e206f70, 'Y', '2016-07-30 12:51:02'),
(3257, 11, 0x6d696a7a656c66, 'Y', '2016-07-30 12:52:24'),
(3259, 11, 0x4e6976656175, 'Y', '2016-07-30 12:52:24'),
(3260, 11, 0x56657262657267206265726963687474656b7374656e, 'Y', '2016-07-30 12:52:24'),
(3261, 11, 0x546f6f6e206265726963687474656b7374656e, 'Y', '2016-07-30 12:52:24'),
(3262, 11, 0x4875696469672062657269636874, 'Y', '2016-07-30 12:52:24'),
(6386, 11, 0x416363657074617469656d6f64757320766f6f7220756974646167696e67656e2076616e207a656c66646520746567656e7374616e6465723a, 'Y', '2016-07-30 12:55:13'),
(6387, 11, 0x6e6f67206e6965742065657264657220746567656e206765737065656c64, 'Y', '2016-07-30 12:55:13'),
(6388, 11, 0x746f7461616c2067657374617274652070617274696a656e, 'Y', '2016-07-30 12:55:13'),
(6389, 11, 0x7a656c6664652061616e626f64, 'Y', '2016-07-30 12:55:13'),
(6390, 11, 0x7a656c6664652061616e626f64206e61204e20646167656e, 'Y', '2016-07-30 12:55:13'),
(6391, 11, 0x4765627275696b6572206865656674206765656e20726174696e6720656e20726174696e67207a6f75206e6f646967207a696a6e20766f6f7220686164696361702d626572656b656e696e67656e2c2067656d61726b6565726420646f6f722022257322, 'Y', '2016-07-30 12:55:13'),
(4545, 11, 0x436f6e746163742d6f707469652027566572626572672077616368746b616d65722070617274696a656e272c2067656d61726b6565726420646f6f722022257322, 'Y', '2016-07-30 12:59:04'),
(4615, 11, 0x526174696e6762657265696b20286765627275696b657220726174696e67206d6f657420696e206865742061616e6765767261616764652062657265696b2076616c6c656e292c2062762e202232356b2d326422, 'Y', '2016-07-30 12:59:04'),
(4709, 11, 0x566f726d2d50617274696a204944, 'Y', '2016-07-30 12:59:04'),
(4710, 11, 0x566f726d2050617274696a, 'Y', '2016-07-30 12:59:04'),
(5424, 11, 0x42657065726b74, 'Y', '2016-07-30 12:59:04'),
(6241, 11, 0x45787472612074696a6420766f6f72205b25735d206d6167206e696574203e20257320646167656e207a696a6e2e, 'Y', '2016-07-30 13:00:14'),
(6383, 11, 0x50617274696a656e206d657420746567656e7374616e646572, 'Y', '2016-07-30 13:00:14'),
(6384, 11, 0x2573206c6f70656e642c20257320616667656c6f70656e, 'Y', '2016-07-30 13:00:14'),
(6385, 11, 0x4765627275696b657220686565667420616c20656572646572206d6574206a65206765737065656c64, 'Y', '2016-07-30 13:00:14'),
(6222, 11, 0x47656163636570746565726465207569746e6f646967696e67656e2028766f6f7220616667656c6f70656e2070617274696a656e29, 'Y', '2016-07-30 13:03:01'),
(6223, 11, 0x4166676577657a656e207569746e6f646967696e67656e, 'Y', '2016-07-30 13:03:01'),
(6224, 11, 0x416c6c65207569746e6f646967696e67656e20287a6f6e64657220616677696a7a696e67656e29, 'Y', '2016-07-30 13:03:01'),
(6225, 11, 0x5569746e6f646967696e67656e, 'Y', '2016-07-30 13:03:01'),
(6236, 11, 0x2573206d6167206e696574203e20257320646167656e207a696a6e2e, 'Y', '2016-07-30 13:03:01'),
(6237, 11, 0x42796f2d796f6d692074696a6420766f6f72205b25735d206d6167206e696574203e20257320646167656e207a696a6e2e, 'Y', '2016-07-30 13:03:01'),
(6238, 11, 0x506572696f64657320766f6f72202573205b25735d20206d6167206e696574203e202573207a696a6e2e, 'Y', '2016-07-30 13:03:01'),
(6239, 11, 0x5a657474656e20287374656e656e2920766f6f72202573205b25735d20206d6167206e696574203e202573207a696a6e2e, 'Y', '2016-07-30 13:03:01'),
(6240, 11, 0x45787472612074696a6420766f6f72205b25735d206d6167206e696574206d656572207a696a6e2064616e20686f6f666474696a642e, 'Y', '2016-07-30 13:03:01'),
(5549, 11, 0x4d61782e2061616e74616c2067657374617274652070617274696a656e2076616e20746567656e7374616e646572206d6167206465206c696d6974656e206e696574206f76657273636872696a64656e2c2067656d61726b6565726420646f6f722022257322, 'Y', '2016-07-30 13:06:11'),
(5551, 11, 0x48616e6469636170747970652028636f6e76656e74696f6e656c6520656e206a75697374652068616e6469636170747970652068656262656e2065656e20726174696e67206e6f64696720766f6f7220626572656b656e696e67656e292c2067656d61726b6565726420646f6f722022257322, 'Y', '2016-07-30 13:06:11'),
(5682, 11, 0x4d696a6e204b6c657572, 'Y', '2016-07-30 13:06:11'),
(6140, 11, 0x4d696e2e2068656c64656e70657263656e74616765, 'Y', '2016-07-30 13:06:11'),
(6147, 11, 0x4a6f757720526174696f, 'Y', '2016-07-30 13:06:11'),
(6148, 11, 0x4765627275696b6572732068656c64656e70657263656e74616765206973207465206b6c65696e, 'Y', '2016-07-30 13:06:11'),
(6149, 11, 0x4d696e2e2068656c64656e70657263656e746167652c2062762e2022257322, 'Y', '2016-07-30 13:06:11'),
(6219, 11, 0x416c6c652062657269636874656e, 'Y', '2016-07-30 13:06:11'),
(6220, 11, 0x5761636874656e6465207569746e6f646967696e67656e, 'Y', '2016-07-30 13:06:11'),
(6221, 11, 0x47656163636570746565726465207569746e6f646967696e67656e2028766f6f722067657374617274652070617274696a656e29, 'Y', '2016-07-30 13:06:11'),
(5538, 11, 0x41616e70617373696e67656e207a696a6e20616c6c65656e2076616e20746f6570617373696e67206f7020636f6e76656e74696f6e656c6520656e206a75697374652068616e646963617074797065, 'Y', '2016-07-30 13:08:20'),
(5539, 11, 0x41616e70617373696e67656e2068616e64696361707374656e656e, 'Y', '2016-07-30 13:08:20'),
(5540, 11, 0x41616e70617373696e67656e206b6f6d69, 'Y', '2016-07-30 13:08:20'),
(5541, 11, 0x5370656c657273696e666f, 'Y', '2016-07-30 13:08:20'),
(5542, 11, 0x4d696a6e20526174696e67, 'Y', '2016-07-30 13:08:20'),
(5543, 11, 0x546567656e7374616e6465727320526174696e67, 'Y', '2016-07-30 13:08:20'),
(5545, 11, 0x4765627275696b657273726174696e672076616c742062756974656e2062657265696b, 'Y', '2016-07-30 13:08:20'),
(5546, 11, 0x4765627275696b6572206865656674206e6965742067656e6f656720616667656c6f70656e206d656574656c6c656e64652070617274696a656e, 'Y', '2016-07-30 13:08:20'),
(5547, 11, 0x4765627275696b657220686565667420616c2067657374617274652070617274696a656e, 'Y', '2016-07-30 13:08:20'),
(5548, 11, 0x41616e74616c206d656574656c6c656e646520616667656c6f70656e2070617274696a656e2c2062762e2022257322, 'Y', '2016-07-30 13:08:20'),
(5522, 11, 0x4765627275696b6572206865656674206765656e20726174696e67, 'Y', '2016-07-30 13:09:20'),
(5535, 11, 0x6765627275696b207374616e6461617264206b6f6d69, 'Y', '2016-07-30 13:09:20'),
(5536, 11, 0x68656566742065656e206765627275696b657273726174696e67206e6f646967206f6d2061616e207465207a657474656e, 'Y', '2016-07-30 13:09:20'),
(1348, 11, 0x496b2062656e206d696a6e207761636874776f6f726420766572676574656e2e20576174206b616e20696b20646f656e3f, 'Y', '2016-07-30 13:46:55'),
(1371, 11, 0x536f7272792c206b616e2064652070617274696a2077616172766f6f72206a652062656e742075697467656e6f64696764206e6965742076696e64656e2e20486562206a6520616c206765616363657074656572643f, 'Y', '2016-07-30 13:46:55'),
(1373, 11, 0x536f7272792c206b616e206465206f6e7476616e6765722076616e206a652062657269636874206e6965742076696e64656e2e20436f6e74726f6c656572206f66206a65206465206765627275696b6572736964206765627275696b742c206e69657420646520766f6c6c6564696765206e61616d2e, 'Y', '2016-07-30 13:46:55'),
(1375, 11, 0x536f7272792c206f6e67656c64696765207370656c65726964206973206765627275696b742e, 'Y', '2016-07-30 13:46:55'),
(1376, 11, 0x536f7272792c206f6e67656c64696765207370656c6572696420697320616c7320746567656e7374616e646572206765627275696b742e, 'Y', '2016-07-30 13:46:55'),
(1377, 11, 0x536f7272792c2065722069732065656e20636f6e6669677572617469652d70726f626c65656d206d657420686574207a6f656b66696c7465722e, 'Y', '2016-07-30 13:46:55'),
(1754, 11, 0x536f7272792c206a65206d6167206e6965742061616e6d656c64656e20616c732067617374206f702064657a65207365727665722e204865742049502d616472657320776174206a65206765627275696b74206973206765626c6f6b6b6565726420646f6f722064652061646d696e732e, 'Y', '2016-07-30 13:46:55'),
(1756, 11, 0x536f7272792c206a65206d6167206765656e206e69657577206163636f756e7420726567697374726572656e2e204865742049502d616472657320776174206a65206765627275696b74206973206765626c6f6b6b6565726420646f6f722064652061646d696e732e, 'Y', '2016-07-30 13:46:55'),
(1765, 11, 0x536f7272792c206a65206d6167206e6965742061616e6d656c64656e206f702064657a65207365727665722e204a65206163636f756e74206973206765626c6f6b6b6565726420646f6f722061646d696e73206d657420646520766f6c67656e646520726564656e3a, 'Y', '2016-07-30 13:46:55'),
(1766, 11, 0x536f7272792c206a65206d6167206e69657420696e6c6f6767656e206f702064657a65207365727665722e204a65206163636f756e74206973206765626c6f6b6b6565726420646f6f722061646d696e732e, 'Y', '2016-07-30 13:52:52'),
(1767, 11, 0x536f7272792c206a65206d6167206a652062696f206e6965742077696a7a6967656e2e2044657a652066756e63746965206973206765626c6f6b6b6565726420646f6f7220616e646d696e732e, 'Y', '2016-07-30 13:52:52'),
(1768, 11, 0x4c65657320616c736a65626c6965667420646520706167696e61206d65742047656472616773726567656c7320656e2076696e6b2068657420686f6b6a652061616e20616c73206a652064696520616363657074656572742e, 'Y', '2016-07-30 13:52:52'),
(1769, 11, 0x536f7272792c206a65206d61672064697420666f72756d206e696574207a69656e206f662062657269636874656e20706c61617473656e2e, 'Y', '2016-07-30 13:52:52'),
(1919, 11, 0x496e2068657420676576616c20646174206a652057454c2065656e20656d61696c2068656220696e67657374656c64206f70206a65206163636f756e742c206b756e206a652065656e206e6965757765206c6174656e206d616b656e20656e206e616172206a6520656d61696c206c6174656e2073747572656e206d65743a202573, 'Y', '2016-07-30 13:52:52'),
(1920, 11, 0x496e2068657420676576616c20646174206a65206765656e20656d61696c2068656220696e67657374656c64206f70206a65206163636f756e743a, 'Y', '2016-07-30 13:52:52'),
(1922, 11, 0x766f6f72206d6565722064657461696c7320646161726f766572207a6965206465204641513a, 'Y', '2016-07-30 13:52:52'),
(2733, 11, 0x4465207370656c6572494473207a696a6e207665726b6565726420766f6f722064657a652061637469652e205374757572206469742070726f626c65656d20616c736a65626c69656674206e616172206465206f6e646572737465756e696e672e, 'Y', '2016-07-30 13:52:52'),
(2734, 11, 0x536f7272792c20646520447261676f6e20476f20536572766572206973206e65657220766f6f72206f6e646572686f75642e, 'Y', '2016-07-30 13:52:52'),
(2736, 11, 0x446520616374697669746569742076616e206a65206163636f756e7420776572642074652067726f6f742e2054696a64656c696a6b6520746f6567616e677362657065726b696e6720697320696e67657374656c642e, 'Y', '2016-07-30 13:55:38'),
(2737, 11, 0x4f6e6d6f67656c696a6b2c2067617374206d6167206765656e2062657269636874656e206f6e7476616e67656e, 'Y', '2016-07-30 13:55:38'),
(2739, 11, 0x426572696368742061616e206d696a7a656c6620697320766572626f64656e20766f6f722062756c6b20626572696368742e, 'Y', '2016-07-30 13:55:38'),
(2740, 11, 0x536f7272792c206a65206d6167206765656e2062756c6b2062657269636874656e2076657273747572656e2e, 'Y', '2016-07-30 13:55:38'),
(2742, 11, 0x536f7272792c206a65206c696d696574206f702067657374617274652070617274696a656e206973206f766572736368726564656e2e, 'Y', '2016-07-30 13:55:38'),
(2743, 11, 0x536f7272792c206465206c696d696574206f702067657374617274652070617274696a656e206973206f766572736368726564656e20646f6f72206a6520746567656e7374616e6465722e, 'Y', '2016-07-30 13:55:38'),
(2744, 11, 0x536f7272792c206a65206c696d696574206f702067657374617274652070617274696a656e20766f6f7220746f65726e6f6f697265676973747261746965206973206f766572736368726564656e2e, 'Y', '2016-07-30 14:00:38'),
(2745, 11, 0x4465206c696d6965742076616e206465206765627275696b6572206f702067657374617274652070617274696a656e20766f6f7220746f65726e6f6f697265676973747261746965206973206f766572736368726564656e2e, 'Y', '2016-07-30 14:00:38'),
(2747, 11, 0x427265756b6465656c2076616e206b6f6d69206b616e20616c6c65656e202c30206f66202c35207a696a6e2e, 'Y', '2016-07-30 14:00:38'),
(2748, 11, 0x44652068616e64696361702076616c742062756974656e206865742062657265696b2c206b69657320616c736a65626c696566742065656e20726564656c696a6b657265207761617264652e, 'Y', '2016-07-30 14:00:38'),
(2750, 11, 0x45656e206e69657577207761636874776f6f726420697320616c207665727374757572206e6161722064657a65206765627275696b65722e204765627275696b20646174207761636874776f6f726420616c736a65626c6965667420696e20706c616174732076616e206572206e6f672065656e2074652073747572656e2e, 'Y', '2016-07-30 14:00:38'),
(5516, 11, 0x566f6f72646174206a65206a65206163636f756e74206b756e74206765627275696b656e206d6f6574206a652064657a652065657273742061637469766572656e206d6574206465207665726966696361746965636f646520646965206a652069732067657374757572642076696120656d61696c21, 'Y', '2016-07-30 14:06:50'),
(5517, 11, 0x536f7272792c206765627275696b6572736964206d6167206d6178696d61616c2031362074656b656e73206c616e67207a696a6e2e, 'Y', '2016-07-30 14:06:50'),
(5692, 11, 0x4465206765627275696b6572736964206c696a6b206f702065656e207370616d2d6163636f756e742c206b69657320616c736a65626c696566742065656e20616e646572206765627275696b65727369642e, 'Y', '2016-07-30 14:06:50'),
(5699, 11, 0x4f6e746272656b656e646520656d61696c20766f6f722072656769737472617469652e, 'Y', '2016-07-30 14:06:50'),
(5779, 11, 0x536f7272792c2064652070617274696a206265686f6f7274206e69657420746f7420686574206f706765676576656e20746f65726e6f6f692e, 'Y', '2016-07-30 14:06:50'),
(6138, 11, 0x536f7272792c206a652068656c64656e70657263656e746167652076616c74206e69657420696e206865742061616e6765676576656e20726174696f62657265696b2e, 'Y', '2016-07-30 14:06:50'),
(6235, 11, 0x5468652074696a6473696e7374656c6c696e67656e207a696a6e207465206c616e672c206b69657320616c736a65626c69656674206b6f72746572652074696a6473696e7374656c6c696e67656e2e, 'Y', '2016-07-30 14:06:50'),
(2751, 11, 0x4d656c64206a6520616c736a65626c696566742061616e20616c73206761737420656e206765627275696b20686574206f6e646572737465756e696e6773666f72756d206f6d2068756c70207465206b72696a67656e202867656566206a65206765627275696b657273696420656e20656d61696c2061616e292e, 'Y', '2016-07-30 14:11:03'),
(2752, 11, 0x536f7272792c206572206973206765656e20656d61696c206765676576656e2c20647573206b616e20696b206a6520686574207761636874776f6f7264206e6965742073747572656e2e, 'Y', '2016-07-30 14:11:03'),
(2753, 11, 0x536f7272792c20686574206765676576656e20656d61696c6164726573206c696a6b74206765656e2067656c646967206164726573207465207a696a6e2e20436f6e74726f6c65657220616c736a65626c69656674206a65207370656c6c696e67206f662070726f626565722065656e20616e646572652e, 'Y', '2016-07-30 14:11:03'),
(2754, 11, 0x536f7272792c2065722069732065656e20666f7574206f70676574726564656e2074696a64656e7320686574207665727a656e64656e2076616e20646520656d61696c2e, 'Y', '2016-07-30 14:11:03'),
(2755, 11, 0x536f7272792c206a6520686562742065656e207374617274726174696e67206e6f646967206f6d2065656e206d6565722d7370656c65722d70617274696a20746520626567696e6e656e2e, 'Y', '2016-07-30 14:11:03'),
(4618, 11, 0x496b2062656e206d696a6e207761636874776f6f726420766572676574656e2e20576174206b616e20696b20646f656e3f, 'Y', '2016-07-30 14:12:43'),
(5216, 11, 0x536f7272792c206a652068656274206765656e20746f657374656d6d696e67206f6d2065656e206265726963687420696e2064657a65207265656b7320746520706c61617473656e2e, 'Y', '2016-07-30 14:12:43'),
(5513, 11, 0x4f6e62656b656e642070726f626c65656d2e20446974207a6f75206e696574206d6f6574656e20676562657572656e2e20476565662064697420616c736a65626c6965667420646f6f722061616e206465206f6e646572737465756e696e67206d65742065656e206f6d73636872696a76696e672076616e20646520636f6e746578742076616e206a652068616e64656c696e67656e2e, 'Y', '2016-07-30 14:12:43'),
(2821, 11, 0x536f7272792c2066756e637469652076616e206e6965742076657277696a6465726420776f7264656e206f6d646174206572206265737461616e6465207374656d6d656e20766f6f722064652066756e63746965207a696a6e2e, 'Y', '2016-07-30 14:16:37'),
(2822, 11, 0x536f7272792c206a65206d6167206765656e2066756e637469657320746f65766f6567656e2c2077696a7a6967656e206f662076657277696a646572656e2e, 'Y', '2016-07-30 14:16:37'),
(2824, 11, 0x536f7272792c206a65206d6167206469742062756c6c6574696e206e6965742077696a7a6967656e2e, 'Y', '2016-07-30 14:16:37'),
(2825, 11, 0x536f7272792c20696b206b616e206461742062756c6c6574696e206e6965742076696e64656e2e, 'Y', '2016-07-30 14:16:37'),
(2826, 11, 0x536f7272792c206a65206d6167206461742062756c6c6574696e206e6965742062656b696a6b656e2e, 'Y', '2016-07-30 14:16:37'),
(2827, 11, 0x536f7272792c20696b206b616e2064696520656e71752665636972633b7465206e6965742076696e64656e2e, 'Y', '2016-07-30 14:16:37'),
(2829, 11, 0x536f7272792c2065722069732069657473207665726b656572642061616e206a65206765627275696b6572736765676576656e2e204e65656d20616c736a65626c6965667420636f6e74616374206f70206d65742065656e2061646d696e6973747261746f72206f6d206469742074652072657061726572656e2e, 'Y', '2016-07-30 14:16:37'),
(2830, 11, 0x536f7272792c206469742070726f6669656c2062657374616174206e696574206f66206973206e696574206765736368696b7420766f6f722064657a652061637469652e, 'Y', '2016-07-30 14:16:37'),
(1274, 11, 0x64, 'Y', '2016-07-31 10:41:37'),
(1275, 11, 0x64, 'Y', '2016-07-31 10:41:37'),
(1276, 11, 0x75, 'Y', '2016-07-31 10:41:37'),
(1277, 11, 0x75, 'Y', '2016-07-31 10:41:37'),
(1475, 11, 0x54696a64206f766572, 'Y', '2016-07-31 10:41:37'),
(1520, 11, 0x466f7574, 'Y', '2016-07-31 10:41:37'),
(1606, 11, 0x5a6f656b, 'Y', '2016-07-31 10:41:37'),
(2466, 11, 0x50617274696a20456469746f72, 'Y', '2016-07-31 21:10:30'),
(2467, 11, 0x47726f6f747465, 'Y', '2016-07-31 21:10:30'),
(2468, 11, 0x566572616e64657220626f726467726f6f747465, 'Y', '2016-07-31 21:10:30'),
(2469, 11, 0x57696a7a6967, 'Y', '2016-07-31 21:10:30'),
(2473, 11, 0x42726565647465, 'Y', '2016-07-31 21:10:30'),
(2474, 11, 0x486f6f677465, 'Y', '2016-07-31 21:10:30'),
(2475, 11, 0x4e6965757720426f7264, 'Y', '2016-07-31 21:10:30'),
(2471, 11, 0x537065656c, 'Y', '2016-07-31 21:11:30'),
(2476, 11, 0x537465656e, 'Y', '2016-07-31 21:11:30'),
(2481, 11, 0x4d61726b6572696e67, 'Y', '2016-07-31 21:11:30'),
(2627, 11, 0x7a6965206f6f6b2053656e7365692773204c6962726172793a203c687474703a2f2f73656e736569732e786d702e6e65742f3f486f774469616772616d73576f726b3e, 'Y', '2016-07-31 21:12:22'),
(2629, 11, 0x4e696575776520476f62616e, 'Y', '2016-07-31 21:12:22'),
(3469, 11, 0x546f65726e6f6f696c6569646572206f706765736c6167656e21, 'Y', '2016-08-02 17:19:30'),
(3470, 11, 0x546f65726e6f6f696c65696465722056657277696a646572696e6720766f6f72205b25735d, 'Y', '2016-08-02 17:19:30'),
(3471, 11, 0x546f65726e6f6f696c65696465722057696a7a6967696e6720766f6f72205b25735d, 'Y', '2016-08-02 17:19:30'),
(3473, 11, 0x28486f75206f706d65726b696e67206b6f72742c206d61782e203235352074656b656e7329, 'Y', '2016-08-02 17:19:30'),
(1412, 7, 0x56b965, 'Y', '2016-08-03 16:56:24'),
(1436, 7, 0x4261727679, 'Y', '2016-08-03 16:56:24'),
(1446, 7, 0x506f736c65646eed2070f8ed7374757020736f7570f865, 'Y', '2016-08-03 16:56:24'),
(1618, 7, 0x444154554d, 'Y', '2016-08-03 16:56:24'),
(1619, 7, 0xfa706c6ee9, 'Y', '2016-08-03 17:05:13'),
(1620, 7, 0x726f6b79, 'Y', '2016-08-03 17:04:15'),
(1621, 7, 0x6dec73ed6365, 'Y', '2016-08-03 17:04:15'),
(1622, 7, 0x74fd646e79, 'Y', '2016-08-03 17:04:15'),
(1623, 7, 0x646e79, 'Y', '2016-08-03 17:04:15'),
(1624, 7, 0x686f64696e79, 'Y', '2016-08-03 17:04:15'),
(1627, 7, 0xfa706c6ee9, 'Y', '2016-08-03 17:04:15'),
(1737, 7, 0x6d696e757479, 'Y', '2016-08-03 17:04:15'),
(6414, 11, 0x50726976266561637574653b20526f756e642d526f62696e206d6574202573206465656c6e656d6572732c202520706f6f6c732c20257320726f6e646573, 'Y', '2016-08-03 17:18:15'),
(6415, 11, 0x4f70656e6261617220526f756e642d526f62696e206d6574202573206465656c6e656d6572732c202520706f6f6c732c20257320726f6e646573, 'Y', '2016-08-03 17:18:15'),
(3476, 11, 0x546f65726e6f6f69206f706765736c6167656e21, 'Y', '2016-08-03 17:21:09'),
(2429, 7, 0x5a61e8e174656b, 'Y', '2016-08-03 17:42:59'),
(2458, 7, 0x496e666f726d616365206f2068f865, 'Y', '2016-08-03 17:42:59'),
(2838, 7, 0x5a6f6272617a6974206a656e206872792076ed6365206872e1e8f9, 'Y', '2016-08-03 17:42:59'),
(2995, 7, 0x5a6f6272617a6974206872792076ed6365206872e1e8f9, 'Y', '2016-08-03 17:42:59'),
(3354, 7, 0x55be69766174656c20c8, 'Y', '2016-08-03 17:42:59'),
(3355, 7, 0x55be69766174656c2042, 'Y', '2016-08-03 17:42:59'),
(3356, 7, 0x5461682075be69766174656c65, 'Y', '2016-08-03 17:42:59'),
(3357, 7, 0x54616820736f757065f865, 'Y', '2016-08-03 17:44:51'),
(3369, 7, 0x5a62ed76616aed63ed20e8617320736f757065f865, 'Y', '2016-08-03 17:44:51'),
(3370, 7, 0x56b96563686e7920736c65646f76616ee920687279, 'Y', '2016-08-03 17:44:51'),
(3372, 7, 0x56b96563686e7920646f6b6f6ee8656ee920687279, 'Y', '2016-08-03 17:44:51'),
(3373, 7, 0x56b96563686e792070726f62ed68616aed63ed20687279, 'Y', '2016-08-03 17:44:51'),
(3377, 7, 0x5b25735d206de12042ed6ce92c2042ed6ce9206a736f75206e612074616875, 'Y', '2016-08-03 17:44:51'),
(3378, 7, 0x5b25735d206de12042ed6ce92c20c865726ee9206a736f75206e612074616875, 'Y', '2016-08-03 17:46:10'),
(3379, 7, 0x5b25735d206de120c865726ee92c2042ed6ce9206a736f75206e612074616875, 'Y', '2016-08-03 17:46:10'),
(3380, 7, 0x5b25735d206de120c865726ee92c20c865726ee9206a736f75206e612074616875, 'Y', '2016-08-03 17:46:10'),
(3381, 7, 0xc865726ee9206a736f75206e612074616875, 'Y', '2016-08-03 17:46:10'),
(3382, 7, 0x42ed6ce9206a736f75206e612074616875, 'Y', '2016-08-03 17:46:10'),
(4585, 7, 0x5a62fd76e1202573, 'Y', '2016-08-03 17:47:21'),
(5218, 7, 0x4872612076ed6365206872e1e8f9, 'Y', '2016-08-03 17:47:21'),
(5449, 7, 0x50f8696c6fbe656ee920534746, 'Y', '2016-08-03 17:47:21'),
(6335, 7, 0x4a6de96e6f20736f757065f865, 'Y', '2016-08-03 17:47:21'),
(6336, 7, 0x4a6de96e6f20736f757065f865, 'Y', '2016-08-03 17:48:16'),
(6337, 7, 0x75736572696420736f757065f865, 'Y', '2016-08-03 17:48:16'),
(6338, 7, 0x75736572696420736f757065f865, 'Y', '2016-08-03 17:48:16'),
(6339, 7, 0x526174696e6720736f757065f865, 'Y', '2016-08-03 17:48:16'),
(6340, 7, 0x526174696e6720736f757065f865, 'Y', '2016-08-03 17:49:48'),
(6341, 7, 0x506fe8e17465e86eed20726174696e6720736f757065f865, 'Y', '2016-08-03 17:49:48'),
(6342, 7, 0x506fe8e17465e86eed20726174696e6720736f757065f865, 'Y', '2016-08-03 17:49:48'),
(6347, 7, 0x506fe8e17465e86eed20726174696e672075be69766174656c65, 'Y', '2016-08-03 17:49:48'),
(6348, 7, 0x506fe8e17465e86eed20726174696e672075be69766174656c65, 'Y', '2016-08-03 17:50:40'),
(6353, 7, 0x506f736c65646eed2070f8ed7374757020736f757065f865, 'Y', '2016-08-03 17:50:40'),
(6354, 7, 0x5072696f72697461, 'Y', '2016-08-03 17:50:40'),
(6355, 7, 0x4df96a207a62fd76616aed63ed20e86173, 'Y', '2016-08-03 17:50:40'),
(6356, 7, 0x5a62fd76616aed63ed20e8617320736f757065f865, 'Y', '2016-08-03 17:50:59'),
(1126, 7, 0x53657665726eed204b6f726561, 'Y', '2016-08-04 00:00:19'),
(1127, 7, 0x4a69be6eed204b6f726561, 'Y', '2016-08-04 00:00:19'),
(1128, 7, 0xc865726ee120486f7261, 'Y', '2016-08-04 00:00:19'),
(1129, 7, 0x537262736b6f, 'Y', '2016-08-04 00:00:19'),
(2679, 7, 0x4265726d756479, 'Y', '2016-08-04 00:00:19'),
(2724, 7, 0x4b6c696e676f6e736be120d8edb965, 'Y', '2016-08-04 00:01:29'),
(3302, 7, 0x4f646b617a206e612070726f62ed68616aed63ed2068727920736520736f757065f8656d205b25735d, 'Y', '2016-08-04 00:01:29'),
(5527, 7, 0x56fd63686f7aed, 'Y', '2016-08-04 00:01:29'),
(6327, 7, 0x56fd63686f7aed, 'Y', '2016-08-04 00:01:29'),
(2277, 7, 0x506f736c65646eed207a6dec6e61, 'Y', '2016-08-04 00:07:24'),
(2414, 7, 0x54797020687279, 'Y', '2016-08-04 00:07:24'),
(2416, 7, 0x5072617669646c61, 'Y', '2016-08-04 00:07:24'),
(2423, 7, 0x56796a65646ee176e16eed206f206b6f6d69, 'Y', '2016-08-04 00:07:24'),
(2432, 7, 0x5374616e646172646eed2068656e64696b6570, 'Y', '2016-08-04 00:07:24'),
(2427, 7, 0x556be17a61742076fd7a7675, 'Y', '2016-08-04 00:10:04'),
(2434, 7, 0xc86173206d696d6f, 'Y', '2016-08-04 00:10:04'),
(2435, 7, 0x536f75e861736efd20726174696e67, 'Y', '2016-08-04 00:10:04'),
(2438, 7, 0x546168202573, 'Y', '2016-08-04 00:10:04'),
(2439, 7, 0xc865726efd206e612074616875, 'Y', '2016-08-04 00:14:51'),
(2441, 7, 0x4e6173746176656eed20e86173752061205a62fd76616aed63ed20e86173, 'Y', '2016-08-04 00:10:04'),
(2442, 7, 0x53797374e96d20e8617375, 'Y', '2016-08-04 00:12:13'),
(2443, 7, 0xc86173206e6176ed63, 'Y', '2016-08-04 00:12:13'),
(2444, 7, 0x5374617620e861736f6ded7279, 'Y', '2016-08-04 00:12:13'),
(2446, 7, 0xc861736f6ded72612062ecbeed, 'Y', '2016-08-04 00:12:13'),
(2457, 7, 0x4e61737461766974207072696f72697475, 'Y', '2016-08-04 00:12:13'),
(2459, 7, 0x5a6f6272617a697420687275, 'Y', '2016-08-04 00:12:13'),
(2948, 7, 0x5479207572e8edb9206b6f6d692c206ae120736920767962657275206261727675, 'Y', '2016-08-04 00:16:48'),
(2949, 7, 0x4ae1207572e8ed6d206b6f6d692c20747920736920767962657265b9206261727675, 'Y', '2016-08-04 00:16:48'),
(2985, 7, 0x55be69766174656c206de120e86173207370e16e6b75, 'Y', '2016-08-04 00:16:48'),
(4706, 7, 0x4872e174207a6e6f7675, 'Y', '2016-08-04 00:16:48'),
(5742, 7, 0x496e666f726d616365206f206872e1e8ed6368, 'Y', '2016-08-04 00:16:48'),
(2911, 7, 0x5a6b6f70ed726f766174206a616b6f206e6f766f7520687275, 'Y', '2016-08-04 00:18:14'),
(2946, 7, 0x4f746576f8656ee1206c69636974616365206b6f6d69, 'Y', '2016-08-04 00:18:14'),
(2947, 7, 0x536b727974e1206c69636974616365206b6f6d69, 'Y', '2016-08-04 00:18:14'),
(2456, 7, 0x50f865686c656420686572, 'Y', '2016-08-04 00:19:30'),
(2421, 7, 0x4e6173746176656eed, 'Y', '2016-08-04 00:19:50'),
(1360, 7, '', 'Y', '2016-08-04 00:21:54'),
(508, 7, 0x426f647920283c686f6d65206661712e7068703f726561643d74266361743d3323456e747279383e6d6f6b753c2f686f6d653e292c206b746572e920646f7374616e65206e6176ed632062ed6cfd206120736c6f75beed206b206eec6b6f6c696b6120fae8656cf96d3a0d0a3c6f6c3e0d0a3c6c693e4a616b6f206b6f6d70656e7a61636520fa64616a6ee92076fd686f64792c206b7465726f75207aed736be176e120e865726efd2074ed6d2c20be65206872616a65207072766eed2e0d0a3c6c693e506f75be6974ed206e6563656ce9686f20e8ed736c6120286e6170f8ed6b6c616420362c35206b6f6d6929207a616d657a756a652072656ded7a6520283c686f6d65200d0a6661712e7068703f726561643d74266361743d3323456e7472793234303e6a69676f3c2f686f6d653e292e0d0a3c6c693e4a616b6f206b6f6d70656e7a6163652070f8692068f8652072f97a6eec2073696c6efd6368206872e1e8f92e0d0a50726f20706f64726f626eec6ab9ed2076797376ec746c656eed2076697a203c686f6d65206661712e7068703f726561643d74266361743d33353723456e74727939383e576861742069732074686520646966666572656e6365206265747765656e20636f6e76656e74696f6e616c20616e642070726f7065722068616e64696361703f3c2f686f6d653e0d0a3c2f6f6c3e, 'Y', '2016-08-09 20:01:00'),
(525, 7, 0x4d6f687520646f706f7275e86974206e6f766f752066756e6b63693f, 'Y', '2016-08-09 20:15:28'),
(526, 7, 0x416e6f206a61736eec2120566c6fbe2c2070726f73ed6d2c207376f96a206ee176726820646f2066f37261203c686f6d6520666f72756d2f6c6973742e7068703f666f72756d3d343e666561747572652064697363757373696f6e20666f72756d3c2f686f6d653e2e0d0a0d0a536f75706973203c623e6a69be206e617672be656efd63682066756e6b63ed3c2f623e206a65206b20766964ec6eed0d0a3c756c3e0d0a3c6c693e6e6120737472e16e6365203c686f6d65206e6577732e7068703e72656c65617365206e6f7465733c2f686f6d653e2c0d0a3c6c693e6e6120737472e16e6365203c686f6d652066656174757265732f6c6973745f766f7465732e7068703e76fd736c65646b7920686c61736f76e16eed206f2066756e6b63ed63683c2f686f6d653e2c0d0a3c6c693e70726f7374f865646e69637476ed6d203c693e66756e6b636520447261676f6e75203c686f6d6520666f72756d2f7365617263682e7068703e7679686c6564e176e16eed2076652066f372753c2f686f6d653e3c2f693e2c0d0a3c6c693e6e6120737472e16e6365203c5f687474703a2f2f73656e736569732e786d702e6e65742f3f444753576973686c697374207c44475320776973686c697374206e6120736572766572752053656e7365696073204c6962726172793e2e0d0a3c2f756c3e, 'Y', '2016-08-09 20:15:28');

-- --------------------------------------------------------

--
-- Table structure for table `TranslationTexts`
--

CREATE TABLE `TranslationTexts` (
  `ID` int NOT NULL,
  `Text` text NOT NULL,
  `Type` enum('NONE','FAQ','LINKS','INTRO','SRC') NOT NULL DEFAULT 'NONE',
  `Translatable` enum('Y','N','Done','Changed') NOT NULL DEFAULT 'Y',
  `Status` enum('USED','CHECK','ORPHAN') NOT NULL DEFAULT 'USED',
  `Updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00'
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

--
-- Dumping data for table `TranslationTexts`
--

INSERT INTO `TranslationTexts` (`ID`, `Text`, `Type`, `Translatable`, `Status`, `Updated`) VALUES
(1, 'Sorry, you may not pass before all handicap stones are placed.', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(2, 'Sorry, the game has already finished.', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(3, 'Sorry, the game hasn\'t started yet.', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(7, 'Sorry, you can\'t invite yourself.', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(8, 'Sorry, can\'t find the game you are invited to. Already declined?', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(9, 'Sorry, you may not retake a stone which has just captured a stone, since it would repeat a previous board position. Look for \'ko\' in the rules.', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(12, 'Connection to database failed. Please wait a few minutes and test again.', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(13, 'Delete game failed. This is problably not a problem.', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(14, 'Sorry, the additon of the message to the database seems to have failed.', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(15, 'Sorry, the additon of the game to the database seems to have failed.', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(16, 'The insertion of the move into the database seems to have failed. This may or may not be a problem, please return to the game to see if the move has been registered.', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(17, 'The insertion of your data into the database seems to have failed. If you can\'t log in, please try once more and, if this fails, contact the support.', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(18, 'Database query failed. Please wait a few minutes and try again.', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(19, 'Couldn\'t select the database. Please wait a few minutes and try again.', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(20, 'Sorry, couldn\'t start the game. Please wait a few minutes and try again.', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(22, 'Sorry, you have to supply a name.', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(27, 'Sorry, you and your opponent need to set an initial rating, otherwise I can\'t find a suitable handicap', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(29, 'Sorry, this is not allowed for guests, please first register a personal account', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(32, 'Sorry, it\'s not your turn.', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(33, 'The password contained illegal characters, only the characters a-z, A-Z, 0-9 and -_+.,:;?!%* are allowed.', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(35, 'The confirmed password didn\'t match the password, please go back and retry.', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(38, 'Sorry, I\'ve problem with the rating, did you forget to specify \'kyu\' or \'dan\'?', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(39, 'Sorry, I\'ve problem with the rating, you shouldn\'t use \'kyu\' or \'dan\' for this ratingtype', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(40, 'Sorry, this stone would have killed itself, but suicide is not allowed under this ruleset.', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(41, 'Sorry, I can\'t find that game.', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(42, 'Sorry, I couldn\'t find that forum you wanted to show.', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(43, 'Hmm, this message seems to be a reply to a non-existing post.', 'SRC', 'Done', 'USED', '2002-10-26 18:18:10'),
(44, 'Sorry, I couldn\'t find the message you wanted to show.', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(45, 'Sorry, I couldn\'t find this user.', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(46, 'Sorry, this userid is already used, please try to find a unique userid.', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(48, 'Couldn\'t extrapolate value in function interpolate', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(49, 'Sorry, you may only delete your own game.', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(50, 'Sorry, couldn\'t find this waiting room game. Probably someone has already joined it.', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(51, 'Sorry, you can\'t join your own game.', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(52, 'Sorry, you are not in the specified rating range.', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(54, 'Sorry, you didn\'t write your current password correctly.', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(55, 'Unknown rank type', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(56, 'Sorry, I don\'t know anyone with that userid.', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(57, 'Sorry, the initial rating must be between 30 kyu and 6 dan.', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(58, 'Sorry, you wrote a non-numeric value on a numeric field.', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(59, 'Sorry, only translators are allowed to translate.', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(60, 'If you want to help translating dragon, please post a message to the \'translation\' forum.', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(61, 'Sorry, you are not allowed to translate the specified language.', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(63, 'Sorry, something went wrong when trying to insert the new translations into the database.', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(66, 'Sorry, this page is solely for users with administrative tasks.', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(69, 'Sorry, couldn\'t find that entry.', 'SRC', 'Done', 'USED', '2002-10-26 18:18:10'),
(75, 'Sorry, I couldn\'t find the given tournament.', 'SRC', 'Done', 'USED', '2002-10-26 18:18:10'),
(5755, 'User local nighttime', 'SRC', 'Done', 'USED', '2013-12-01 17:02:29'),
(5761, 'Missing#header', 'SRC', 'Done', 'USED', '2013-12-07 07:38:20'),
(5762, 'Total%#header', 'SRC', 'Done', 'USED', '2013-12-07 07:38:20'),
(80, 'Logged in as', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(81, 'Not logged in', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(82, 'Status', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(83, 'Waiting room', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(84, 'User info', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(85, 'Messages', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(86, 'Send a message', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(87, 'Invite', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(88, 'Users', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(89, 'Games', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(90, 'Translate', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(91, 'Forums', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(92, 'FAQ', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(93, 'Site map', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(94, 'Docs', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(95, 'Page created in', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(96, 'Admin', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(97, 'Logout', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(98, 'day', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(99, 'days', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(100, 'and', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(101, 'hour', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(102, 'hours', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(103, 'without byoyomi', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(104, 'with %s extra per move', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(106, 'Japanese byoyomi', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(107, 'stones', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(108, 'Canadian byoyomi', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(109, 'Game added!', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(122, 'Answer', 'SRC', 'Done', 'USED', '2002-10-26 18:18:10'),
(127, 'edit', 'SRC', 'Done', 'USED', '2012-08-26 18:52:21'),
(128, 'Move up', 'SRC', 'Done', 'USED', '2002-10-26 18:18:10'),
(129, 'Move down', 'SRC', 'Done', 'USED', '2002-10-26 18:18:10'),
(132, 'ID', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(134, 'Name', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(135, 'Translators', 'SRC', 'Done', 'USED', '2002-10-26 18:18:10'),
(136, 'Forum', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(156, 'Bio updated!', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(157, 'Password changed!', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(158, 'Profile updated!', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(159, 'Documentation', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(160, 'Introduction to Dragon', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(161, 'Frequently Asked Questions', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(163, 'People', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(164, 'who contributes to Dragon', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(165, 'Links', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(168, 'Installation instructions', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(169, 'if you want your own dragon', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(170, 'Download dragon sources', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(5754, 'Tournament ended', 'SRC', 'Done', 'USED', '2013-12-01 17:02:29'),
(173, 'Dragon project page at sourceforge', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(175, 'Other:', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(176, 'Country', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(177, 'City', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(178, 'State', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(179, 'Club', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(180, 'Homepage', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(181, 'Email', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(182, 'ICQ-number', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(183, 'Game preferences', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(184, 'Hobbies', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(185, 'Occupation', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(187, 'Change bio', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(188, 'Edit password', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(189, 'Old password', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(190, 'New password', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(191, 'Confirm password', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(192, 'Change password', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(193, 'Off', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(194, 'Notify only', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(195, 'Moves and messages', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(196, 'Full board and messages', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(197, 'Vertical', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(198, 'Horizontal', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(199, 'Edit profile', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(200, 'Personal settings', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(201, 'Userid', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(202, 'Full name', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(204, 'Rank info', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(205, 'Rating', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(206, 'Email notifications', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(207, 'Use browser settings', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(208, 'Language', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(209, 'Timezone', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(210, 'Nighttime', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(211, 'Board graphics', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(212, 'Stone size', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(213, 'Wood color', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(214, 'Coordinate sides', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(215, 'Left', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(216, 'Up', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(217, 'Right', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(218, 'Down', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(219, 'Smooth board edge', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(220, 'Menu direction', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(222, 'Change profile', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(223, 'Forgot password?', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(225, 'Resigning', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(226, 'Passing', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(227, 'Deleting game', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(229, 'Score', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(230, 'Game', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(231, 'Pass', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(232, 'Delete game', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(233, 'Done', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(234, 'Resume playing', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(235, 'Resign', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(236, 'Download sgf', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(237, 'Skip to next game', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(238, 'Remove from observe list', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(239, 'Add to observe list', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(240, 'Home', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(242, 'Please, feel free to register and play some games.', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(243, 'Please login.', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(244, 'To look around, use %s.', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(245, 'Password', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(246, 'Log in', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(247, 'Register new account', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(248, 'Introduction', 'LINKS', 'Done', 'USED', '2002-10-26 13:23:01'),
(252, 'Once again welcome, and enjoy your visit here!', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(253, 'Game deleted!', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(254, 'Game joined!', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(256, 'General Info', 'LINKS', 'Done', 'USED', '2002-10-26 13:23:01'),
(257, 'Jan van der Steens Pages', 'LINKS', 'Done', 'USED', '2002-10-26 13:23:01'),
(258, 'Lots of info on go', 'LINKS', 'Done', 'USED', '2002-10-26 13:23:01'),
(259, 'Go FAQ', 'LINKS', 'Done', 'USED', '2002-10-26 13:23:01'),
(260, 'Frequently asked questions about go for the rec.games.go newsgroup', 'LINKS', 'Done', 'USED', '2002-10-26 13:23:01'),
(265, 'Sensei\'s Library', 'LINKS', 'Done', 'USED', '2002-10-26 13:23:01'),
(266, 'A collaboration web site. Read and contribute!', 'LINKS', 'Done', 'USED', '2002-10-26 13:23:01'),
(267, 'Go News', 'LINKS', 'Done', 'USED', '2002-10-26 13:23:01'),
(271, 'Hikaru no Go', 'LINKS', 'Done', 'USED', '2002-10-26 13:23:01'),
(272, 'A manga about go. Recommended!', 'LINKS', 'Done', 'USED', '2002-10-26 13:23:01'),
(273, 'Rules', 'LINKS', 'Done', 'USED', '2002-10-26 13:23:01'),
(274, 'An Interactive Introduction', 'LINKS', 'Done', 'USED', '2002-10-26 13:23:01'),
(275, 'This is a very nice site to learn with.', 'LINKS', 'Done', 'USED', '2002-10-26 13:23:01'),
(276, 'Very well written introduction by the British Go Association.', 'LINKS', 'Done', 'USED', '2002-10-26 13:23:01'),
(281, 'Strategy and terms', 'LINKS', 'Done', 'USED', '2002-10-26 13:23:01'),
(283, 'Go Problems', 'LINKS', 'Done', 'USED', '2002-10-26 13:23:01'),
(284, 'Working through these can help out your game.', 'LINKS', 'Done', 'USED', '2002-10-26 13:23:01'),
(285, 'Go Teaching Ladder', 'LINKS', 'Done', 'USED', '2002-10-26 13:23:01'),
(286, 'Submit your games for comments to see where you might have played better.', 'LINKS', 'Done', 'USED', '2002-10-26 13:23:01'),
(287, 'Common Japanese Go Terms', 'LINKS', 'Done', 'USED', '2002-10-26 13:23:01'),
(288, 'You have to know what other players are talking about.', 'LINKS', 'Done', 'USED', '2002-10-26 13:23:01'),
(291, 'History', 'LINKS', 'Done', 'USED', '2002-10-26 13:23:01'),
(292, 'A Brief History', 'LINKS', 'Done', 'USED', '2002-10-26 13:23:01'),
(293, 'For you people with short attention spans.', 'LINKS', 'Done', 'USED', '2002-10-26 13:23:01'),
(294, 'The Extended History', 'LINKS', 'Done', 'USED', '2002-10-26 13:23:01'),
(295, 'In case you\'re an aspiring know-it-all.', 'LINKS', 'Done', 'USED', '2002-10-26 13:23:01'),
(296, 'Go books, equipment and software', 'LINKS', 'Done', 'USED', '2002-10-26 13:23:01'),
(297, 'Annotated Go Bibliographies', 'LINKS', 'Done', 'USED', '2002-10-26 13:23:01'),
(298, 'A large collection of go book reviews', 'LINKS', 'Done', 'USED', '2002-10-26 13:23:01'),
(299, 'European shop', 'LINKS', 'Done', 'USED', '2002-10-26 13:23:01'),
(300, 'Other go servers', 'LINKS', 'Done', 'USED', '2002-10-26 13:23:01'),
(301, 'Also turn based. Has several other games.', 'LINKS', 'Done', 'USED', '2002-10-26 13:23:01'),
(303, 'A large server for realtime play', 'LINKS', 'Done', 'USED', '2002-10-26 13:23:01'),
(305, 'Server list', 'LINKS', 'Done', 'USED', '2002-10-26 13:23:01'),
(306, 'A more complete list of servers', 'LINKS', 'Done', 'USED', '2002-10-26 13:23:01'),
(307, 'Message list', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(308, 'To', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(309, 'Flags', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(310, 'From', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(311, 'Subject', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(312, 'Date', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(314, 'New', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(315, 'Replied', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(316, 'Reply!', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(322, 'This %sgame%s invitation has already been accepted.', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(323, 'This invitation has been declined or the game deleted', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(324, 'Reply', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(325, 'Message', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(326, 'Send Reply', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(327, 'New message', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(328, 'To (userid)', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(329, 'Send message', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(330, 'White', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(331, 'Black', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(332, 'Dispute settings', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(333, 'Accept', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(334, 'Decline', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(335, 'Invitation message', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(336, 'Send Invitation', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(337, 'Contributors to Dragon', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(6360, 'Collect entries by last access (web-site or other clients)#notify', 'SRC', 'Done', 'USED', '2015-07-12 18:36:00'),
(340, 'FAQ editor', 'SRC', 'Done', 'USED', '2002-10-26 17:15:48'),
(342, 'Rating graph for', 'SRC', 'Done', 'USED', '2002-10-26 18:18:10'),
(343, 'Sorry, too few rated games to draw a graph', 'SRC', 'Done', 'USED', '2002-10-26 21:45:50'),
(344, 'Register', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(345, 'Please enter data', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(346, 'Message sent!', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(348, 'Finished games', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(349, 'Running games', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(350, 'Finished games for %s', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(351, 'Running games for %s', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(352, 'sgf', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(359, 'Opponent', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(360, 'Color', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(361, 'Size', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(362, 'Handicap', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(363, 'Komi', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(364, 'Moves', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(366, 'Rated', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(368, 'Last move', 'SRC', 'Done', 'USED', '2012-08-26 18:52:21'),
(370, 'Yes', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(371, 'No', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(372, 'Jigo', 'SRC', 'Done', 'USED', '2012-08-26 18:52:21'),
(373, 'Invite this user', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(374, 'Show running games', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(375, 'Show finished games', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(377, 'Welcome page', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(378, 'My user info', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(379, 'Edit bio', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(380, 'Show message', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(383, 'Thread list', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(384, 'Read forum', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(385, 'New Topic', 'SRC', 'Done', 'USED', '2012-08-26 18:52:21'),
(388, 'Open for matches?', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(389, 'New messages', 'SRC', 'Done', 'USED', '2002-10-26 16:53:36'),
(390, 'Your turn to move in the following games:', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(391, 'No games found', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(393, 'Registration date', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(394, 'Last access', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(395, 'Biographical info', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(396, 'Send message to user', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(397, 'Running', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(398, 'Finished', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(399, 'Won', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(400, 'Lost', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(402, 'Activity', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(406, 'Conventional', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(407, 'Proper', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(408, 'Even game with nigiri', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(409, 'Double game', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(411, 'Info', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(412, 'Comment', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(414, 'Time limit', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(415, '#Games', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(416, 'Weekend Clock', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(417, 'Seems to be empty at the moment.', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(419, '%s only', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(420, 'Number of games to add', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(421, 'dan', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(422, 'kyu', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(423, 'Require rated opponent', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(424, 'If yes, rating between', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(425, 'Add Game', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(426, 'Player', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(427, 'Number of games', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(428, 'Clock runs on weekends', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(429, 'Delete', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(430, 'Join', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(431, 'Board Size', 'SRC', 'Done', 'USED', '2012-09-18 17:43:35'),
(432, 'Conventional handicap (komi 0.5 if not even)', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(433, 'Proper handicap', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(436, 'months', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(437, 'Main time', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(439, 'with', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(442, 'for', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(443, 'Fischer time', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(445, 'Game ID', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(446, 'Colors', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(447, 'Nigiri', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(449, 'Japanese', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(450, '%s per move and %s extra periods', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(451, 'Canadian', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(452, '%s per %s stones', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(453, 'extra per move', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(454, 'Place your handicap stones, please!', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(455, 'Submit and go to next game', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(456, 'Submit and go to status', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(457, 'Go back', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(458, 'Prisoners', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(460, 'Next Page', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(461, 'Prev Page', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(462, 'Add Column', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(463, 'Swedish', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(464, 'Norwegian', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(465, 'English', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(466, 'German', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(467, 'French', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(468, 'Spanish', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(469, 'Czech', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(470, 'Chinese (Traditional)', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(472, 'Chinese (Simplified)', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(473, 'Dutch', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(474, 'This type of action is either unknown or can\'t be used in this state of the game.', 'SRC', 'Done', 'USED', '2002-10-31 11:20:42'),
(475, 'The komi is out of range, please choose a more reasonable value.', 'SRC', 'Done', 'USED', '2002-10-31 11:20:42'),
(476, 'An error occurred for this move. Usually it works if you try again, otherwise please contact the support.', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(477, 'Wrong number of handicap stones', 'SRC', 'Done', 'USED', '2002-10-31 11:20:42'),
(478, 'More information can be found in the <a href=\"/faq.php\">FAQ</a>. When you have questions you are also encouraged to submit them in one of the <a href=\"/forum/index.php\">forums</a>.', 'SRC', 'Done', 'USED', '2002-10-26 13:23:01'),
(479, 'Thai', 'SRC', 'Done', 'USED', '2002-10-26 18:18:10'),
(484, 'Jan', 'SRC', 'Done', 'USED', '2003-01-03 23:23:07'),
(485, 'Feb', 'SRC', 'Done', 'USED', '2003-01-03 23:23:07'),
(486, 'Apr', 'SRC', 'Done', 'USED', '2003-01-03 23:23:07'),
(487, 'May', 'SRC', 'Done', 'USED', '2003-01-03 23:23:07'),
(488, 'Jun', 'SRC', 'Done', 'USED', '2003-01-03 23:23:07'),
(489, 'Aug', 'SRC', 'Done', 'USED', '2003-01-03 23:23:07'),
(490, 'Sep', 'SRC', 'Done', 'USED', '2003-01-03 23:23:07'),
(491, 'Oct', 'SRC', 'Done', 'USED', '2003-01-03 23:23:07'),
(492, 'Dec', 'SRC', 'Done', 'USED', '2003-01-03 23:23:07'),
(494, 'User info for %s', 'SRC', 'Done', 'USED', '2003-01-06 19:14:10'),
(495, 'Mar', 'SRC', 'Done', 'USED', '2003-01-03 23:23:07'),
(496, 'Jul', 'SRC', 'Done', 'USED', '2003-01-03 23:23:07'),
(497, 'Nov', 'SRC', 'Done', 'USED', '2003-01-03 23:23:07'),
(498, 'From#2', 'SRC', 'Done', 'USED', '2003-01-10 00:15:34'),
(499, 'To#2', 'SRC', 'Done', 'USED', '2003-01-10 00:15:34'),
(500, 'Finnish', 'SRC', 'Done', 'USED', '2003-02-10 12:27:06'),
(501, 'Dragon user preferences', 'FAQ', 'Done', 'USED', '2012-12-16 15:23:32'),
(502, 'Some common Go terms', 'FAQ', 'Done', 'USED', '2003-02-24 02:02:47'),
(503, 'Miscellaneous', 'FAQ', 'Done', 'USED', '2003-05-09 00:19:24'),
(504, 'Go rules', 'FAQ', 'Done', 'USED', '2003-05-07 04:18:53'),
(505, 'Moku', 'FAQ', 'Done', 'USED', '2003-03-12 21:52:23'),
(506, 'A point of territory.', 'FAQ', 'Done', 'USED', '2010-10-17 21:45:18'),
(507, 'Komi', 'FAQ', 'Done', 'USED', '2003-03-12 21:52:23'),
(508, 'An extra number of points (<home faq.php?read=t&cat=3#Entry8>moku</home>) given to White, which may be used in various ways:\r\n<ol>\r\n<li>To compensate for the alleged advantage Black has when playing the first stone.\r\n<li>To avoid a draw (<home \r\nfaq.php?read=t&cat=3#Entry240>jigo</home>) as a game result by using a fractional number (for example 6.5 komi).\r\n<li>To act as a form of compensation between players of different strength.\r\nFor further explanations see: <home faq.php?read=t&cat=357#Entry98>What is the difference between conventional and proper handicap?</home>\r\n</ol>', 'FAQ', 'Done', 'USED', '2007-11-18 20:53:30'),
(509, 'Dragon etiquette', 'FAQ', 'Done', 'USED', '2003-02-23 22:23:43'),
(510, 'Dragon bugs and problems', 'FAQ', 'Done', 'USED', '2007-11-18 20:53:30'),
(511, 'Dragon menus and options', 'FAQ', 'Done', 'USED', '2003-05-08 13:56:12'),
(512, 'Dragon games', 'FAQ', 'Done', 'USED', '2003-05-09 00:19:24'),
(513, 'Dragon development', 'FAQ', 'Done', 'USED', '2003-02-25 08:13:10'),
(514, 'I\'m swarmed! There are bugs everywhere!', 'FAQ', 'Done', 'USED', '2003-02-21 16:23:09'),
(515, 'You have been sitting at the computer playing go on DGS for too long.  Take a shower and put on clean clothes.  :-)', 'FAQ', 'Done', 'USED', '2003-02-25 11:08:27'),
(756, 'Afghanistan', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(757, 'Albania', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(755, 'Server message', 'SRC', 'Done', 'USED', '2003-08-23 15:54:09'),
(750, 'Korean', 'SRC', 'Done', 'USED', '2003-08-18 13:13:32'),
(751, 'How can I remove dead stones at the end of a game?', 'FAQ', 'Done', 'USED', '2003-08-23 19:31:38'),
(518, 'Nigiri', 'FAQ', 'Done', 'USED', '2012-08-22 21:48:45'),
(519, 'Nigiri means your colour is selected randomly.', 'FAQ', 'Done', 'USED', '2007-12-06 14:00:11'),
(522, 'Is it okay to wish someone \"good luck\" when starting a new game?', 'FAQ', 'Done', 'USED', '2003-02-25 08:13:10'),
(523, 'Yes, of course. Some players appreciate the traditional term <a href=\"http://senseis.xmp.net/?Onegaishimasu\" target=\"_blank\">onegaishimasu</a>, too.', 'FAQ', 'Done', 'USED', '2003-08-11 03:36:23'),
(1014, 'Interlingua', 'SRC', 'Done', 'USED', '2004-04-30 01:14:04'),
(525, 'Can I suggest a new feature?', 'FAQ', 'Done', 'USED', '2003-02-21 16:23:09'),
(526, 'Yes indeed!  Please post your suggestion to the <home forum/list.php?forum=4>feature discussion forum</home>.\r\n\r\nSummaries of <b>already suggested features</b> are available\r\n<ul>\r\n<li>in the <home news.php>release notes</home>,\r\n<li>on the <home features/list_votes.php>feature vote results page</home>,\r\n<li>via <i>Dragon\'s <home forum/search.php>forum\'s search</home> feature</i>,\r\n<li>via the <_http://senseis.xmp.net/?DGSWishlist |DGS wishlist at Sensei`s Library>.\r\n</ul>\r\n\r\nIf a feature is feasible and makes sense and the specification for a feature is clear enough, a feature-admin can add it to the list of features to vote on to get the communities feelings about it.  For this it\'s good to have the feature description to be as precise as possible to avoid misunderstandings.', 'FAQ', 'Done', 'USED', '2012-12-16 17:51:19'),
(5320, 'Below the table listing with the status games on the <home status.php>status page</home> you choose an order from the right select-box and click \"<i>Set Order</i>\" button to change the order.\r\n\r\nThe order for table listings can normally be changed with a click on the table-column header description.  For the status-games this standard way was not possible, because the order of the status games is \"bound\" to the \"<i>Submit and go to <b>next game</b></i>\" on the game-page.\r\n\r\nChanging the status game order also changes the order for the other status game lists via <home rss/status.php>RSS channel</home>, via <home wap/status.php>WAP channel</home>, via <home quick_status.php?version=2>Quick-Status</home> and via the <i>Quick-Do-Suite</i>.\r\n\r\nAvailable status games orders are:\r\n<ul>\r\n<li><b>Last moved:</b> This is the default order and sorts the games with the \"oldest\" move date first.\r\n\r\n<li><b>Moves:</b> Sorts the status games by number of game moves.  The game with the most moves is at the top of the list.  This can be used to prefer the games that are to end soon.\r\n\r\n<li><b>Priority:</b> Sorts the status games by a user <home faq.php?read=t&cat=18&e=364#Entry364>customized priority</home>, that can be set per game on the game-info page. The priority can also be shown for the <i>my running games page</i>.\r\n\r\n<li><b>Time remaining:</b> Sorts the status games by your remaining time.  The remaining time of your opponent can be viewed on the page with <i>my running games</i>.\r\n</ul>', 'FAQ', 'Y', 'USED', '2012-12-16 18:45:55'),
(5321, 'How can I order the status games by a customized priority?', 'FAQ', 'Y', 'USED', '2012-12-16 18:49:33'),
(655, 'Tengen', 'FAQ', 'Done', 'USED', '2010-10-22 08:16:05'),
(645, 'Hoshi', 'FAQ', 'Done', 'USED', '2005-09-07 22:31:16'),
(646, 'Hoshi is Japanese for \"star\" and has two meanings.  In general, it is the nine handicap \"star points\" on the board.  More specifically, it is any 4,4 point in any corner of a 19x19 board.', 'FAQ', 'Done', 'USED', '2003-02-28 10:45:21'),
(529, 'Where can I learn more about a particular rule?', 'FAQ', 'Done', 'USED', '2003-05-09 00:19:24'),
(530, 'Explain your query in the <home forum/list.php?forum=5>Go discussion forum</home>.  It\'s good if you mention both what kind of rule you want more information on, and what kind of situation during the course of play it would apply to.', 'FAQ', 'Done', 'USED', '2003-05-09 00:19:24'),
(690, 'Sente', 'FAQ', 'Done', 'USED', '2010-10-22 12:30:28'),
(691, 'Holding the initiative.  If a player has sente they do no need to respond to the opponent\'s last move, so can play anywhere on the board.  A sente move is one which the opponent needs to answer immediately.  Sente is the opposite of  <home faq.php?read=t&cat=3#Entry113>gote</home>.', 'FAQ', 'Done', 'USED', '2012-09-02 14:33:29'),
(531, 'What are the basic rules of Go?', 'FAQ', 'Done', 'USED', '2003-05-13 12:13:25'),
(532, 'Two players compete in encircling territory on a square board. The board is 19x19 points, but both 9x9 and 13x13 are common as well. Alternating, they move by placing stones of their own colour on empty intersections. Black plays first, then white (except of a handicap game, where black gets additional stones to compensate being the weaker player).\r\n\r\nIf - after a move - any of the opponent\'s groups have zero liberties the stones of these enemy groups are removed from the board (captured prisoners). A move is illegal if - after any captures - an own group has no liberties.\r\n\r\nWhen both players pass successively the game is finished and scored: Neutral points (dame) are filled in, and dead stones are removed. The black and white territory is scored as points surrounded minus the stones captured by the opponent.\r\n\r\nMore via <a href=\"http://playgo.to/interactive/index.html\" target=new>The Interactive Way To Go</a>.', 'FAQ', 'Done', 'USED', '2003-05-13 12:13:25'),
(533, 'Where  can I find more Go web pages?', 'FAQ', 'Done', 'USED', '2003-05-09 00:19:24'),
(534, 'At Dragon\'s <home links.php>link page</home>.', 'FAQ', 'Done', 'USED', '2003-05-13 12:13:25'),
(677, 'Dragon ranks and ratings', 'FAQ', 'Done', 'USED', '2003-05-14 11:37:43'),
(535, 'Yose', 'FAQ', 'Done', 'USED', '2003-02-28 10:33:00'),
(536, 'Endgame.  The last phase of the game, where strategic moves to attack groups are no longer made, but only the best moves found to extend existing territories.', 'FAQ', 'Done', 'USED', '2003-02-28 10:33:00'),
(537, 'Atari', 'FAQ', 'Done', 'USED', '2005-10-19 18:21:22'),
(538, 'Atari is a situation in which a stone or group of stones has only one liberty.  As things stand, the stone or stones could be captured on the opponent\'s next move.', 'FAQ', 'Done', 'USED', '2006-05-25 19:36:10'),
(1890, 'Handicap', 'FAQ', 'Done', 'USED', '2012-01-10 18:28:36'),
(1891, 'This is discussed here: <home faq.php?read=t&cat=357#Entry97>Handicap</home>', 'FAQ', 'Changed', 'USED', '2012-09-02 14:30:32'),
(539, 'Ko', 'FAQ', 'Done', 'USED', '2003-03-12 21:52:23'),
(540, 'A ko is a situation on the board with repetitive capture of one single stone.  Ko literally means \"eternity\".', 'FAQ', 'Done', 'USED', '2003-02-25 08:13:10'),
(541, 'Can a timed-out game be revived?', 'FAQ', 'Done', 'USED', '2003-05-08 13:56:12'),
(542, 'No. Please start your new games with <home faq.php?read=t&cat=56>appropiate time limits</home>!', 'FAQ', 'Done', 'USED', '2003-05-13 12:13:25'),
(545, 'Kyu', 'FAQ', 'Done', 'USED', '2003-03-12 21:52:23'),
(546, 'Kyu means \"a beginner\'s or any non-master\'s rank\".  The kyu ranks span from 30k to 1k, with 1k being the strongest.  The definition of a 30 kyu is someone who has learned and understood the rules, but has not played a single game yet. The Korean go term for \"kyu\" is \"gup\".\r\nKyu ranks do not really get reliable until about 10 kyu, where the player can be matched with a 1k <home faq.php?read=t&cat=3#Entry39>dan</home> in a 9 stone <home faq.php?read=t&cat=357#Entry97>handicapped</home> game.', 'FAQ', 'Done', 'USED', '2003-02-28 10:33:00'),
(547, 'Dan', 'FAQ', 'Done', 'USED', '2003-03-12 21:52:23'),
(548, 'Dan means \"a master\'s rank\".  The dan ranks span from 1 and up, a higher number is a stronger player.  A 5 dan amateur is said to be about the same strength as a 1 dan pro (professional). Pros do not have <home faq.php?read=t&cat=3#Entry38>kyu</home> ranks.', 'FAQ', 'Done', 'USED', '2003-02-28 10:33:00'),
(549, 'How many vacation days do I have at Dragon?', 'FAQ', 'Done', 'USED', '2003-05-13 12:13:25'),
(550, 'Up to 30 (maximum per year). Each month 2.5 vacation days are added to your account.', 'FAQ', 'Done', 'USED', '2003-05-13 12:13:25'),
(1280, 'Turkish', 'SRC', 'Done', 'USED', '2007-01-17 08:30:51'),
(680, 'What does + or - after a rating mean?', 'FAQ', 'Done', 'USED', '2003-05-14 11:39:56'),
(681, 'Internally Dragon uses a <home faq.php?read=t&cat=105#Entry123>rating system</home>, where a difference of one Go rank is equivalent to a difference of 100 points (or <http://senseis.xmp.net/?ELO |ELO points>).\r\nThe format with kyu and dan ranks, e.g. \"3 kyu (-5%)\", is used because it\'s easier to comprehend. The ELO points are shown in the tooltip when you hover over a rating value, that is linked to the users rating-graph, e.g. \"ELO 1795\".\r\n\r\nExample:\r\n6 kyu (  0%) = 1500 points\r\n6 kyu (-48%) = 1452 points\r\n7 kyu (+30%) = 1430 points\r\n7 kyu (  0%) = 1400 points', 'FAQ', 'Changed', 'USED', '2012-12-08 00:22:21'),
(551, 'What are the items on the Status page?', 'FAQ', 'Done', 'USED', '2012-12-09 15:33:42'),
(552, 'A users own Status page can only be viewed by the user himself or herself.\r\n\r\nThe top of the <home status.php>status page</home> shows the user-id, name and rating of the current user.  If the user is currently on vacation, additional vacation information in a format similar to the <home faq.php?read=t&cat=12#Entry203>user-info page</home>.\r\n\r\nRight below the first three unread <home faq.php?read=t&cat=17&e=343#Entry343>bulletins</home> are shown (if there are some).\r\n\r\nThe next section shows new and unanswered <home faq.php?read=t&cat=360#Entry136>messages</home> of the user as configured in the <home edit_folders.php>Edit folders page</home>.\r\n\r\nThe next section contains a list of all the games, where it\'s your turn to move. Here\'s a brief explanation of the table columns:\r\n<ul>\r\n<li><b>ID:</b> The game id.\r\n<li><b>sgf:</b> A link to download the game (without all comments).\r\n<li><b>Notes:</b> The starting part of your <home faq.php?read=t&cat=365&e=229#Entry229>private notes</home> optionally stored for a game.\r\n<li><b>Opponent:</b> Your opponents full real name.\r\n<li><b>Userid:</b> Your opponents userid.\r\n<li><b>Rating:</b> Your opponents current rating.\r\n<li><b>Color:</b> Your color in the game.\r\n<li><b>GameType:</b> The <home faq.php?read=t&cat=357&e=387#Entry387>game-type</home>.\r\n<li><b>Size:</b> The size of the goban for the game.\r\n<li><b>Handicap:</b> The number of handicap stones for the game.\r\n<li><b>Komi:</b> The komi for the game.\r\n<li><b>Moves:</b> The number of moves made so far for the game.\r\n<li><b>Rated:</b> Indicating, if the game is rated or unrated.\r\n<li><b><image online.gif> (User online):</b> The presence of this icon shows, that the <home faq.php?read=t&cat=358&e=232#Entry232>user was online</home> within the last 10 minutes.  Hovering over it shows a tooltip with the precise last access in minutes.\r\n<li><b>Last move:</b> Date of the last move of your opponent.</li>\r\n<li><b>Prio:</b> show optional <home faq.php?read=t&cat=18&e=364#Entry364>game priority</home> a user can set for own running games.\r\n<li><b>Time remaining:</b> Indicates how much time you have left to play in the game. The format is similar to that in the waiting room (see \"<i>Time limit</i>\" in <home faq.php?read=t&cat=357#Entry211>waiting room item descriptions</home>). The difference is, that only the main-time is shown on the status page. When the main-time is up, then the extra time is displayed according to the waiting room item description.</li>\r\n</ul>\r\n\r\nWorth noting for the status page is, that <b>sorting of the game list</b> is not possible at the moment, because the order must be bound to the \"Skip to next game\" on the respective game pages, which isn\'t that easy to do and almost always not very efficient using some different sorting.', 'FAQ', 'Done', 'USED', '2013-08-09 23:00:04'),
(553, 'When are my game clocks counted down?', 'FAQ', 'Done', 'USED', '2003-02-28 10:33:00'),
(554, 'Your game clocks are counted down <b>only</b>, when it is your turn. \r\n\r\nThey do not count down\r\n<ul>\r\n<li>when your opponent has to submit the next move</li>\r\n<li>during your <home faq.php?read=t&cat=56#Entry61>sleeping time</home></li>\r\n<li>during your <home faq.php?read=t&cat=56#Entry66>vacation</home></li>\r\n<li>on weekends (if you have selected this option in the <home faq.php?read=t&cat=357#Entry44>game invitation</home>)</li>\r\n</ul>\r\n\r\nFor a specific game a stopped game-clock is indicated with the following icons shown in the players info section on either the game-page right to the user names, or on the game-info page in the \"<i>Off-time</i>\"-row:\r\n<ul>\r\n<li><image night.gif> : user in <home faq.php?read=t&cat=56#Entry61>sleeping time</home>\r\n<li><image vacation.gif> : user on <home faq.php?read=t&cat=56#Entry66>vacation</home>\r\n<li><image wclock_stop.gif> : for <home faq.php?read=t&cat=56&e=143#Entry143>weekends</home>\r\n</ul>', 'FAQ', 'Done', 'USED', '2012-12-11 22:25:06'),
(555, 'How can I view SGF files?', 'FAQ', 'Done', 'USED', '2003-10-30 01:33:18'),
(556, 'There are many programs that will let you view and edit SGF files. One choice is <http://jagoclient.sourceforge.net/ |JagoClient>, the Java Go client.\r\n\r\nThe British Go Association has a long <http://www.britgo.org/gopcres/gopcres1.html#s-view |list of software> for viewing SGF files.\r\n\r\nWhen you have an sgf-viewing program, you can set your browser to connect the mime-type \'<tt>application/x-go-sgf</tt>\' with the program, so it can be launched with a single click.\r\n\r\nYou can read more at this page:\r\n<http://senseis.xmp.net/?SmartGameFormat>', 'FAQ', 'Done', 'USED', '2014-04-04 10:21:08'),
(557, 'How do I start a new game?', 'FAQ', 'Done', 'USED', '2003-05-09 00:19:24'),
(558, 'There are several ways to start a new game:<UL>\r\n<LI>Join a game offered within the <home waiting_room.php>waiting room</home>.\r\n\r\nUse this method if you are looking for a new opponent.  First, click the <home waiting_room.php>waiting room</home> link in the menu.  Find a game that you want to join, and then click the \"<i>Info</i>\" button to the left of it. At the bottom of the page should be a <home faq.php?read=t&cat=357&e=386#Entry386>detailed description of the game info</home>.  If you want to join it, press the \"<i>Join</i>\" button. It&#146;s that easy.\r\n\r\n<LI><home faq.php?read=t&cat=357#Entry210>Offer your own game</home> within the <home waiting_room.php>waiting room</home>.\r\n\r\nIf none of the games in the <home waiting_room.php>waiting room</home> suit your palate, then you can <home faq.php?read=t&cat=357#Entry210>place your own game offer</home>.  To do this, use the <home new_game.php>new game page</home>, fill in the form and press \"<i>Add Game</i>\" button and wait.  You will probably be playing within a few days. \r\n\r\n<LI><home faq.php?read=t&cat=357#Entry212>Invite your friends</home>.<BR>\r\nIf you know an opponent\'s user-id you can send an invitation by following the <home message.php?mode=Invite>Invite</home> link in the main menu.  Fill in your desired game options, and send it.  Your opponent can accept or dispute the game options.\r\nThere is also an \"<i>Invite this user</i>\" link at the bottom of every user-info page.  Following this link will accomplish the same as above, but quicker. \r\n</UL>', 'FAQ', 'Done', 'USED', '2012-12-26 00:26:41'),
(559, 'How do I make moves in my game?', 'FAQ', 'Done', 'USED', '2003-05-09 00:19:24'),
(560, 'On the <home status.php>status page</home> is a list of games it\'s your turn to move in. A click on the game number will display the game.\r\n\r\nWhen viewing a game, a stone is placed (and a move is made) by clicking on an empty intersection. If this move kills any enemy stones, they get automatically removed by the server. For passing or resigning, follow the links below the board.\r\n\r\nWhen the game is refreshed with the new stone / pass / resign, press one of the <i>submit</i> buttons to confirm your choice.  If you change your mind, press the <i>go back</i> button.', 'FAQ', 'Done', 'USED', '2003-05-13 13:15:18'),
(561, 'How do I delete a running game?', 'FAQ', 'Done', 'USED', '2003-05-13 13:15:18'),
(562, 'Until the tenth move (without handicap stones) a \"<i>delete link</i>\" appears below the board.  Placing or placed handicap stones are not counted for the ten moves.  The delete operation is also possible when it\'s NOT your turn to move in the game.  Games can only be deleted if they are still in progress.\r\n\r\nIf you delete a game this way, it will not effect your rating.  After the tenth move a game cannot be deleted by the players.  As other game actions, deleting is a two steps action: you need to validate your choice.\r\n\r\nIf you can not delete a game any more because of the described restrictions, you may ask a <b>game-admin</b> to delete your game; but use this possibility only if you think it\'s absolutely necessary!\r\nIn such a case please add a game-deletion request in the <home forum/list.php?forum=2>support forum</home> explaining your wish.', 'FAQ', 'Done', 'USED', '2012-12-08 13:29:34'),
(563, 'How do I end a game?', 'FAQ', 'Done', 'USED', '2003-05-09 00:19:24'),
(564, 'This can only be done when it is <b>your</b> turn.\r\n<UL>\r\n<LI>Two consecutive <b>passes</b> from you and your opponent.  This is the normal way to end a game.  Next you both will be asked to mark dead stones.  After this, Dragon will score the game and the winner is decided. You should ensure all borders are properly closed before passing.\r\n\r\n<LI>Use the \"<b>resign</b>\" button.  If you resign, the game is lost and your rating will reflect this.\r\n<b>Resigning a game when it\'s NOT your turn</b> is also possible.\r\n\r\n<LI>Let the game <b>time out</b>. <i>(But please! Choose one of the other options!)</i> If your game times out you have lost, and your rating will reflect this.\r\n</UL>\r\n\r\nIn cases of grave dispute or major problems (e.g. bugs or unclear situation caused by the used game rules) a <b>game-admin</b> can also end a game or make it rated/unrated.  But please ask an admin only if you think it\'s absolutely necessary.\r\nIn such a case please add a game-ending request in the <home forum/list.php?forum=2>support forum</home> explaining your wish.', 'FAQ', 'Done', 'USED', '2012-12-08 13:48:44'),
(565, 'Dragon Introduction', 'FAQ', 'Done', 'USED', '2003-02-24 20:38:12'),
(566, 'What is this place?', 'FAQ', 'Done', 'USED', '2003-02-24 20:38:12'),
(567, 'The Dragon Go Server (DGS) is a place where you can play <home faq.php?read=t&cat=3#Entry152>turn-based</home> Go with other players from around the world. It functions more or less the same way as playing Go via email would, but the Dragon Go Server provides a graphical representation of the board and handles things such as time limits, scoring and ratings.\r\n\r\nDGS players typically submit about five moves per week. Thus, games can be expected to take several weeks to complete. Some people play games much more quickly, and DGS enables a wide range of time limits.  Playing Go in real time is <b>not</b> really possible here.  Playing in \"<home faq.php?read=t&cat=3#Entry153>real time</home>\" means that both players are online at the same time and see their opponent\'s moves immediately, as they would when playing in person.  A real-time game would take an hour or so to complete, and if two opponents are agreeable, that can be achieved on DGS, even though it is turn-based.  If you prefer to play Go online in real time, you should try a real-time Go <_http://senseis.xmp.net/?GoServer |server> such as <_http://www.gokgs.com/ |KGS> or <_http://www.pandanet-igs.com |IGS>.\r\n\r\nDGS has a <home faq.php?read=t&cat=356&e=273#Entry273>user access quota</home> and users are responsible for keeping queries per time-interval within a normal level.  This should not affect most players.\r\n\r\nDGS also provides <home forum/>discussion forums</home> about Go generally and about DGS itself.', 'FAQ', 'Done', 'USED', '2012-12-16 14:29:23'),
(568, 'What if I have no idea what my initial DGS rating should be?', 'FAQ', 'Done', 'USED', '2003-02-28 10:33:00');
INSERT INTO `TranslationTexts` (`ID`, `Text`, `Type`, `Translatable`, `Status`, `Updated`) VALUES
(569, 'If you are new to the game of Go choose the rank 30 kyu. As you finish each rated game, learn how to play, and get stronger, your rank will increase automatically.\r\n\r\nIf you already have played a few games and get to know <home faq.php?read=t&cat=13#Entry13> the Rules</home>, you may freely choose any value from 29 kyu to 26 kyu. As a guide, you should choose: \r\n29 kyu: if you have played 5 or less games\r\n28 kyu: if you have won at least 2 games\r\n27 kyu: if you have played 6 to 10 games\r\n26 kyu: if you have won at least 3 even games (without handicap).\r\n\r\nIf you have won 2 or more even games (without handicap) against players stronger than 26 kyu, use their rank. If you don\'t know their rank, use 25 kyu.\r\n \r\nIf you have a rank from another server, club, or Go association (for example AGA, EGF, or others) you may start with this rank, or, if possible, convert it in our <home rank_converter.php>Rank Converter</home>.\r\n\r\nIf you think you are stronger than 25k but are not sure how much, play two games against two different players of the level you think you should be. When the games end, ask the players what your rank is. Use their answer as your initial DGS rating.\r\n \r\nPlease do not use high ranks (stronger than 15 kyu or any dan level rank), unless you are sure of your level. \r\n\r\nDGS will adjust your rank as you play more games. Once initialized, your initial DGS rank cannot be changed any more, so please be careful with your choice.\r\n \r\nIf you are still unsure what to choose, ask for help in the  <home forum/list.php?forum=2>Support forum</home>.', 'FAQ', 'Done', 'USED', '2014-05-05 17:59:21'),
(1028, 'Hebrew', 'SRC', 'Done', 'USED', '2005-01-16 21:13:49'),
(1029, 'Lingua Franca Nova', 'SRC', 'Done', 'USED', '2005-02-18 05:27:29'),
(1018, 'Slovak', 'SRC', 'Done', 'USED', '2004-08-13 14:54:20'),
(1019, 'Turn-based', 'FAQ', 'Done', 'USED', '2004-08-13 23:18:01'),
(1020, 'Turn-based gaming is an asynchronous way of playing games.  Both players do not need to be present or playing at the same time.  Instead each player can make moves when they have the time for it.  Examples of turn-based go are playing go via snail-mail, via email, or here on Dragongoserver.  See also <home faq.php?read=t&cat=3#Entry153>Real-time</home>.', 'FAQ', 'Done', 'USED', '2004-08-17 18:43:10'),
(570, 'Dragon time features', 'FAQ', 'Done', 'USED', '2003-05-09 00:19:24'),
(571, 'Why is the use of vacation days limited?', 'FAQ', 'Done', 'USED', '2003-02-28 10:33:00'),
(572, 'If there were no limits, then you (or your opponent) could repeatedly take just one vacation day to avoid a time-out. That would make the previously negotiated time limits meaningless. \r\n\r\nThus Dragon limits the use of vacation days as follows:\r\n<ul>\r\n<li>already started vacations can <b>not</b> be canceled.</li>\r\n<li>if you started a vacation you are allowed to reduce the amount of days you are on vacation to a minimum of 2 days.</li>\r\n</ul>', 'FAQ', 'Done', 'USED', '2003-08-11 03:36:23'),
(573, 'What are the recent changes to this FAQ?', 'FAQ', 'Done', 'USED', '2003-02-28 10:33:00'),
(574, '<note>FAQ-Editors & Translators: This entry has to stay hidden!!</note>\r\n\r\n<b>2012-12-07.. [JUG]</b>\r\n\r\n1.0.15 features + adjustments of existing FAQ-entries\r\n\r\n<b>2012-09-01.. [JUG]</b>\r\n\r\nCurrently preparing the FAQ to reflect all new features and changes of <home news.php#DGS_1_0_15>DGS Release 1.0.15</home>.\r\n\r\n<b>2007-10-05..10 [JUG]</b>\r\n\r\nOverworked the complete FAQ to reflect all new features and changes of <home news.php#DGS_1_0_13>DGS Release 1.0.13</home>.\r\n\r\n<b>2007-08-13..16 [JUG]</b>\r\n\r\nOverworking the complete FAQ. Updating all existing entries to reflect the changes of the last server-release at Aug-2006 in preparation for the upcoming release (propably Aug/Sep 2007).\r\nAdded new entries to have something to fit those new entries in. The structure of the FAQ is not very intuitive to find places where to add something.\r\n\r\nSome of my updates and new entries are too long to stay like this forever, but this \"cleanup\" is meant to give other FAQ-writers technical details, I\'ve added what was missing, properly reflecting the current state of Dragon. Also my english is not the best and could need a review, especially from a users point of view. However, it\'s propably better to completly rewrite the FAQ with a better structure focussing more on the need of a user.\r\n\r\nNote: There\'s also no link-consistency regarding links to other FAQ-entries and links to DGS- and external pages.', 'FAQ', 'Done', 'USED', '2004-12-07 09:21:12'),
(575, 'Why does Dragon want to know my email address?', 'FAQ', 'Done', 'USED', '2003-02-28 10:45:21'),
(576, 'To send a new password.  (If requested.)  Sending a new password to the email address <i>stored in the user profile</i> is an easy method to ensure user authentification.\r\n\r\nDragon can send you an email informing you about received messages and games, when it is your turn to move. These <home faq.php?read=t&cat=12#Entry173>Email notifications</home> can be activated in your <home edit_profile.php>user profile</home>.\r\n\r\nDragon respects privacy: DGS does not send unwanted mails. Mail addresses are not visible to anyone, neither will they be sold to anyone.\r\n\r\nDragon allows users <i>not</i> to store their mail addresses. In this case please <i>make sure</i> not to forget the password!', 'FAQ', 'Done', 'USED', '2003-02-28 10:45:21'),
(577, 'How does the Japanese byo-yomi time system work?', 'FAQ', 'Done', 'USED', '2003-05-09 00:19:24'),
(578, 'When a player\'s main time is used up, there\'s a fixed time limit for each <b>single</b> move. Additionally there are several periods: \r\n<UL>\r\n<LI>When the player moves within time, the countdown jumps to its initial value, and the number of periods is not changed.</LI>\r\n\r\n<LI>When the player does not move in time, then the number of periods is decreased by one, and the countdown immediately starts again.</LI>\r\n</UL>\r\n\r\nWhen a player has no periods and no time left, the game is lost.\r\n\r\nTime limit format for Japanese byo-yomi (for example \"J: 30d + 1d * 10\"):\r\n<code>\r\n\"J: M\"         : M=main-time, Absolute time (without byo-yomi)\r\n\"J: M + B * P\" : M=main-time, B=Byo-yomi-time, P=Byo-yomi-periods\r\n</code>\r\n\r\nTime remaining format for Japanese byo-yomi:\r\n<code>\r\n\"J: m (-)\"       : m main-time left (absolute time, no extra-periods)\r\n\"J: m (+ B * p)\" : m main-time left + extra-time (B time per move and p extra byo-yomi-periods left)\r\n\"J: b (B * p)\"   : in byo-yomi (no \'+\'), b byo-yomi-time left + extra-time (B time per move and p extra byo-yomi-periods left)\r\n\"J: b (B * 0)\"   : in byo-yomi (no \'+\'), b byo-yomi-time left, last byo-yomi-period \r\n</code>', 'FAQ', 'Done', 'USED', '2012-12-16 13:53:39'),
(579, 'How does the Canadian byo-yomi  time system work?', 'FAQ', 'Done', 'USED', '2003-05-09 00:19:24'),
(580, 'When a player\'s main time is used up, there is a time limit to play <b>several</b> stones. \r\n\r\nExample: 10 stones within 15 days: \r\nIf the player has submitted the 10th stone within time, then the countdown starts again (with 15 days for the next 10 stones).\r\n\r\nIf the player does not move in time, the game is lost.\r\n\r\nTime limit format for Canadian byo-yomi (for example \"C: 14d + 7d / 5\"):\r\n<code>\r\n\"C: M\"         : M=main-time, Absolute time (without byo-yomi) \r\n\"C: M + B / P\" : M=main-time, B=Byo-yomi-time, P=Byo-yomi-stones\r\n</code>\r\n\r\nTime remaining format for Canadian byo-yomi:\r\n<code>\r\n\"C: m (-)\"         : m main-time left (absolute time, no extra-time)\r\n\"C: m (+ B / P)\"   : m main-time left + extra-time (B time per P stones)\r\n\"C: b / p (B / P)\" : in byo-yomi (no \'+\'), b byo-yomi-time left for p stones to play (extra-time is B time per P stones) \r\n</code>', 'FAQ', 'Done', 'USED', '2012-12-16 13:57:16'),
(581, 'How does the Fischer time system work?', 'FAQ', 'Done', 'USED', '2003-05-09 00:19:24'),
(582, 'After a player has submitted a move, the agreed upon \"extra time per move\" is added to the clock, up to a maximum specified by <home faq.php?read=t&cat=56#Entry85>main time</home>.  See also <home faq.php?read=t&cat=56#Entry42> game clock countdown</home>.\r\n \r\nWhen a player has no <home faq.php?read=t&cat=18#Entry41>time remaining</home> the game is lost.\r\n \r\nThis implements the \"Capped Fischer time system\", though DGS refers to this simply as \"Fischer time\".\r\n\r\nTime limit format for Fischer time (for example \"F: 21d + 3d\"):\r\n<code>\r\n\"F: M\"     : M=main-time, Absolute time (without extra-time) \r\n\"F: M + B\" : M=main-time, B=extra-time per move\r\n</code>\r\n\r\nTime remaining format for Fischer time:\r\n<code>\r\n\"F: m (-)\"   : m main-time left (absolute time, no extra-time)\r\n\"F: m (+ B)\" : m main-time left + extra-time (B time extra per move) \r\n</code>', 'FAQ', 'Done', 'USED', '2012-12-16 13:57:43'),
(583, 'How does sleeping time affect Fischer time?', 'FAQ', 'Done', 'USED', '2003-05-13 13:20:46'),
(584, 'To explain it, an example:\r\n\r\nYou want an average of 3 moves for each week, and you do not want the game to time out on Saturdays or Sundays. \r\n\r\nThat is (7 - 2) days * (24 h - 9 h sleeping time) / 3 moves = 25 hours extra per move Fischer time with disabled weekend clock.', 'FAQ', 'Done', 'USED', '2003-05-13 13:20:46'),
(585, 'What is sleeping time or night time?', 'FAQ', 'Done', 'USED', '2012-12-10 00:13:45'),
(586, 'During the hours specified as \"<i>night time</i>\" (or \"<i>sleeping time</i>\") in your <home edit_profile.php>user profile</home> your game clocks are paused and your remaining time does not count down.  On the game page and game-info page this is indicated by the <image night.gif>-icon.', 'FAQ', 'Done', 'USED', '2012-12-10 00:13:36'),
(587, 'Why did my game clock jump 9 hours down within 10 minutes?', 'FAQ', 'Done', 'USED', '2003-05-13 13:26:31'),
(588, 'If you see jumping clocks, you should consider to take some sleep. ;-)\r\n\r\nWhen a game clock says you have 3 days time left, that means:\r\nYou have 3 * (24-9) = 45 hours of non-sleeping time.\r\n\r\nWhen a game clock says you have 2 days and 14 hours left, that means:\r\nYou have 2 * (24-9) + 14 = 44 hours of non-sleeping time.', 'FAQ', 'Done', 'USED', '2003-05-13 13:26:31'),
(589, 'Why can\'t I edit the sleeping time in my user profile?', 'FAQ', 'Done', 'USED', '2003-05-13 13:26:31'),
(590, 'Because editing your sleeping time three times a day would enable you to stop your game clocks. You can only edit it if you have not changed it recently.', 'FAQ', 'Done', 'USED', '2003-05-13 13:26:31'),
(591, 'Can I add time to my own game clock?', 'FAQ', 'Done', 'USED', '2003-05-09 00:19:24'),
(592, 'No, you can\'t, but your opponent may be willing to grant you more time.\r\n\r\nIt\'s uncommon and impolite to beg for more time just to get more thinking time, so don\'t be upset when your opponent denies such a request.', 'FAQ', 'Done', 'USED', '2003-06-02 07:34:41'),
(676, 'Yes.\r\nYou have to <home faq.php?read=t&cat=329&e=334#Entry334>create and save a shape</home> from the game using the <i>goban editor</i>.  Best save it as private shape as it is a very specific shape.  After saving the shape, you can <home faq.php?read=t&cat=329#Entry332>start a new shape-game</home> with the saved shape.', 'FAQ', 'Changed', 'USED', '2012-12-24 23:09:10'),
(593, 'Can I add time to my opponent\'s  game clock?', 'FAQ', 'Done', 'USED', '2003-05-09 00:19:24'),
(594, 'Yes, you can add more time to your opponent\'s game clock at any time except for tournament games.  Follow the link at the bottom on the game-page.  Set up the additional time you want to give your opponent below the Go board.  You can add days to the main-time for all time-systems (<home faq.php?read=t&cat=56&e=57#Entry57>Japanese</home>/<home faq.php?read=t&cat=56&e=58#Entry58>Canadian byo-yomi</home> and <home faq.php?read=t&cat=56&e=59#Entry59>Fischer time</home>) and/or reset the byo-yomi periods (for Japanese/Canadian byo-yomi).  Notes about added time is displayed in the game-info box on the game-page.\r\n\r\nFor tournament games, adding time by the players is not allowed, so that the tournament-director can limit the estimated amount of time that players will spend on the tournament-games.  Some tournament director are allowed to add time to a tournament game on their own discretion.', 'FAQ', 'Done', 'USED', '2016-02-04 22:21:21'),
(1030, 'Vietnamese', 'SRC', 'Done', 'USED', '2005-03-26 19:29:37'),
(595, 'What are vacation days?', 'FAQ', 'Done', 'USED', '2003-05-13 13:26:31'),
(596, 'You can pause your game clocks when you enjoy your holidays or if an (unexpected) business trip interferes with your running games.\r\n\r\nPlease use the <home edit_vacation.php>Start vacation</home> link on your <home userinfo.php>Userinfo page</home> to schedule and start your vacation. Your \"On Vacation status\" will be announced on your Status and User Info pages, for example: <tt>4 days and 3 hours left</tt>.', 'FAQ', 'Done', 'USED', '2003-12-15 16:56:48'),
(597, 'Byo-yomi', 'FAQ', 'Done', 'USED', '2003-03-12 22:01:47'),
(598, 'Time-limit rules that apply when a game\'s main time is over.', 'FAQ', 'Done', 'USED', '2003-02-28 10:45:21'),
(599, 'What time zone is used for my sleeping time?', 'FAQ', 'Done', 'USED', '2003-05-13 12:58:36'),
(600, 'Dragon uses your local time zone (and daylight-saving time), set by yourself in your <home edit_profile.php>user profile</home>.', 'FAQ', 'Done', 'USED', '2003-05-13 12:58:36'),
(601, 'SGF', 'FAQ', 'Done', 'USED', '2003-03-12 22:01:47'),
(602, 'SGF is an abbreviation for the Smart Game Format, a file format to store Go (and other) games. There are several clients that can support you in <home faq.php?read=t&cat=365#Entry43>viewing a SGF</home>.\r\n\r\nFor details, see the <a href=\"http://www.red-bean.com/sgf/\" target=\"_blank\">official specification</a> of the <tt>SGF FF[4]</tt> specification.', 'FAQ', 'Done', 'USED', '2003-02-28 10:45:21'),
(603, 'Why doesn\'t Dragon tell me my opponent\'s email address?', 'FAQ', 'Done', 'USED', '2003-05-13 12:58:36'),
(604, 'This is because Dragon protects your opponent\'s (and your) privacy. \r\n\r\nIf you would like know more than your opponents have already provided in their user profiles, you may ask, but users are not obliged to give personal information.', 'FAQ', 'Done', 'USED', '2003-05-13 12:58:36'),
(605, 'How can I store text in the SGF?', 'FAQ', 'Done', 'USED', '2003-05-14 11:28:42'),
(606, 'After you select a move in a game, a text box for a game message opens below the game board.  You can enter your message and then submit the move with it.\r\n\r\nTo control which users can read your message there are three methods to write game messages. These may be combined.\r\n<ul>\r\n<li>If the message should be <b>visible to all users</b> at all times (game still running or already finished):\r\nEnclose the text in <b>public-comment tags</b>: <color red><tt>&lt;c>public text&lt;/c></tt></color>\r\n\r\nThis is useful to let observers see your comments, e.g. the <home faq.php?read=t&cat=283&e=284#Entry284>sensei account</home> uses this way for teaching games.\r\n\r\n<li>If the message should be <b>visible only to yourself</b> while the game is still running, but be <b>visible to your opponents after the game is finished</b> and <b>never be visible for any other user</b>:\r\nEnclose the text in <b>mysecret-comment tags</b>: <color darkred><tt>&lt;m>text&lt;/m></tt></color>\r\n\r\nThis can be used to let your opponent know some hints or thinking on moves after the game has finished.  Be careful that you close the hidden-tag correctly, otherwise the text is visible for the other player as well.  To verify the correct syntax you may use the \"<i>Preview</i>\" button before you submit the move and message.\r\nIf there are <home faq.php?read=t&cat=18&e=345#Entry345>secret comments</home>, the opponents will be informed about it at the end of the game.\r\n\r\n<li>If the message should be <b>visible only to yourself</b> while the game is still running, but be <b>visible to all users after the game is finished</b>:\r\nEnclose the text in <b>hidden-comment tags</b>: <color blue><tt>&lt;h>text&lt;/h></tt></color>\r\n\r\nThis is similar to the mysecret game comments, but will also be shown to all other users after the game is finished.\r\nIf there are <home faq.php?read=t&cat=18&e=345#Entry345>hidden comments</home>, the opponent and observers will be informed about it at the end of the game.\r\n\r\n<li>If the message should be <b>visible only to the game players</b> having a <b>private talk</b> with your opponent(s) at all times (game still running or already finished):\r\nWrite normal text and do NOT enclose the text in <color red><tt>&lt;c></tt></color> or <color blue><tt>&lt;h></tt></color> tags.  \r\n</ul>\r\n\r\nExample text (the colors are the same as shown on a <i>Preview</i>:\r\n<pre>\r\nnormal private text, <color darkred>&lt;m>secret text,&lt;/m></color>\r\nnormal private text, <color blue>&lt;h>hidden text,&lt;/h></color>\r\nnormal private text, <color red>&lt;c>public text&lt;/c></color>\r\n<color red>&lt;c>public text <color blue>&lt;h>hidden nested part&lt;/h></color> more public text&lt;/c></color>\r\n</pre>\r\nExample steps to see game messages:\r\n<ul>\r\n<li>In one of your running games enter a game message (as described above).\r\n<li>Submit your move with the game message.\r\n<li><home faq.php?read=t&cat=365&e=276#Entry276>Download the SGF</home>:  There are several options how to download a SGF, that differ dependent on what markup you used.\r\n<li><home faq.php?read=t&cat=365&e=43#Entry43>View the SGF</home>.\r\n</ul>\r\n\r\nThe public and hidden tags can also be written in a longer form:\r\n* &lt;comment> ... &lt;/comment> is the same as <color red>&lt;c> ... &lt;/c></color>\r\n* &lt;hidden> ... &lt;/hidden> is the same as <color blue>&lt;h> ... &lt;/h></color>\r\n* &lt;mysecret> ... &lt;/mysecret> is the same as <color darkred>&lt;m> ... &lt;/m></color>', 'FAQ', 'Changed', 'USED', '2016-04-15 01:19:32'),
(607, 'Can I become a Dragon developer?', 'FAQ', 'Done', 'USED', '2003-02-21 16:23:09'),
(608, 'Yes, it is possible.  You should know Go rules, PHP, SQL and MySQL.\r\nBest you ask in the Dragon forums or ask directly one of the <home people.php>developers</home>.  \r\n\r\nPlease look at <A HREF=\"http://sourceforge.net/projects/dragongoserver\" TARGET=\"_blank\">Dragon\'s project page at SourceForge</A>.', 'FAQ', 'Changed', 'USED', '2012-12-08 01:45:49'),
(618, 'Start rating', 'SRC', 'Done', 'USED', '2003-02-21 16:23:09'),
(619, 'End rating', 'SRC', 'Done', 'USED', '2003-02-21 16:23:09'),
(620, 'Rating diff', 'SRC', 'Done', 'USED', '2003-02-21 16:23:09'),
(621, 'Show the whole FAQ in one page', 'SRC', 'Done', 'USED', '2003-02-21 16:23:09'),
(622, 'Dragon tournaments', 'FAQ', 'Done', 'USED', '2003-02-21 16:23:09'),
(623, 'Onegaishimasu', 'FAQ', 'Done', 'USED', '2007-12-06 15:18:37'),
(624, 'A greeting at the start, roughly meaning \'Have a good game\'.', 'FAQ', 'Done', 'USED', '2007-12-06 15:18:37'),
(752, 'After both players have passed, dead stones have to be removed manually. A click on a stone toggles its status from alive to dead. Small black and white squares visualize who owns which territory.\r\n\r\nBoth players have to agree which stones are dead and who owns which territory. To agree, please click on the \"done\" link below the board.\r\n\r\nIf one player does not agree, then he can follow the \"resume playing\" link to decide a doubtful position by playing a few more moves. An alternative is to discuss it by sending a message to the opponent or to the <home forum/list.php?forum=5>Go discussion forum</home>.', 'FAQ', 'Done', 'USED', '2003-08-23 19:31:38'),
(748, 'Can I start or organize a tournament?', 'FAQ', 'Done', 'USED', '2003-08-25 00:22:58'),
(749, 'You are invited to organize a tournament. For tournament announcements, please use (or watch) the <home forum/list.php?forum=4>Dragon discussion forum</home>. Dragon will help you to promote it by adding relevant links to the FAQ.', 'FAQ', 'Done', 'USED', '2003-09-03 11:47:14'),
(625, 'Are there tournaments maintained directly on Dragon?', 'FAQ', 'Done', 'USED', '2003-02-21 16:23:09'),
(626, 'No, not yet.', 'FAQ', 'Done', 'USED', '2003-02-28 10:45:21'),
(985, 'How can I hide or show columns in table listings?', 'FAQ', 'Done', 'USED', '2003-12-14 09:00:02'),
(627, 'What does a user\'s \"activity\" mean?', 'FAQ', 'Done', 'USED', '2003-05-14 11:28:42'),
(628, 'It indicates how often the player visited Dragon pages and how many moves the player submitted recently.\r\n\r\n2 green stars : many moves (more than 70 per month)\r\n1 orange star : some moves (5 - 70 per month)\r\n0 stars : very few moves (less than 5 per month)', 'FAQ', 'Done', 'USED', '2003-05-14 11:28:42'),
(629, 'What does a user\'s \"percent\" mean?', 'FAQ', 'Done', 'USED', '2003-05-09 00:26:57'),
(630, 'It is the player\'s win-loss-ratio on the rated finished games, which can provide some additional information about the players current rating. Also <home faq.php?read=t&cat=3#Entry240>jigo</home> is taken into account.\r\n\r\nWhen a player has some finished rated games, a value of around 50 % indicates that it is probably an established rating. A value greater than 75 % indicates, that this rating is probably too low, while below 25 % means, that it is probably too high.', 'FAQ', 'Done', 'USED', '2003-05-14 11:28:42'),
(631, 'How can I delete my game offer from the waiting room?', 'FAQ', 'Done', 'USED', '2003-08-08 22:12:25'),
(632, 'Click on the info button of <i>your</i> game offer. At the bottom of the resulting page is a button to delete the game. If no player accepts a game offer within a few weeks it is removed automatically.', 'FAQ', 'Done', 'USED', '2003-08-24 15:31:43'),
(694, 'What are Observed games?', 'FAQ', 'Done', 'USED', '2003-06-08 23:10:46'),
(695, 'This feature allows you to set up a bookmark list of running games. You can <i>observe</i> <b>other</b> players\' and your <b>own</b> games.\r\nIf a game is observed, a link <i>\"Show observers\"</i> shows up at the bottom on the game-page.\r\n\r\nTo add a game to your observed game list, first find a game in progress and click on the \"<i>Add to observe list</i>\" link.\r\nTo remove a game from your observed game list, look at the game you want to remove and click the \"<i>Remove from observe list</i>\" link.\r\n\r\nTo see <b>your</b> observed game list, click on <home status.php>Status</home> or <home show_games.php?uid=all>Games</home> and follow the page bottom link \"<home show_games.php?observe=2>Games I\'m observing</home>\". \r\nA list of <b>all observed games</b> with the number of observers per game is available on the <home show_games.php?uid=all>Games page</home> when you follow the page bottom link \"<home show_games.php?observe=all>All observed games</home>\".\r\n\r\nYou can only observe running games. When a game ends it is removed automatically from the observed games lists.  When an observed game is finished Dragon sends you a message to notify you about the final score.', 'FAQ', 'Done', 'USED', '2012-12-08 01:08:28'),
(686, 'Tenuki', 'FAQ', 'Done', 'USED', '2010-10-22 12:30:28'),
(687, 'Playing somewhere else.  Black plays tenuki by not answering White\'s last move locally.  Instead black plays elsewhere on the board.', 'FAQ', 'Done', 'USED', '2010-10-18 16:00:33'),
(688, 'What is a double game?', 'FAQ', 'Done', 'USED', '2003-06-12 11:15:58'),
(689, 'With <i>double game</i> you start <i>two</i> new games against the same opponent.  You play White in one game and Black in the other. The choosen handicap and komi will be used for both games. In the waiting room the number of handicap stones is shown on the info page for the game offer.\r\n\r\nTo start a <i>double game</i> as <home message.php?mode=Invite>invitation</home> or as <home new_game.php>new game in the waiting-room</home> you have to choose <i>Double</i> from the select-box right to <i>My color</i> with a choice for <i>Manual setting</i>.', 'FAQ', 'Changed', 'USED', '2012-12-08 00:41:56'),
(633, 'What is an even game with nigiri?', 'FAQ', 'Done', 'USED', '2003-08-21 15:07:58'),
(634, '<home faq.php?read=t&cat=3#Entry154>Even game</home> means that you offer to start a game without <home faq.php?read=t&cat=357#Entry97>handicap</home> stones. <home faq.php?read=t&cat=3#Entry21>Nigiri</home> means that your color is selected randomly.', 'FAQ', 'Done', 'USED', '2003-09-03 11:47:14'),
(1015, 'Esperanto', 'SRC', 'Done', 'USED', '2004-04-30 01:14:04'),
(1016, 'Which ruleset is used on Dragon?', 'FAQ', 'Done', 'USED', '2004-08-11 14:16:01'),
(1017, 'Basically Dragon is based upon Japanese Go rules.  With the exception of predeterming the placement of handicap stones, the board size and time limits. These Dragon-suggested defaults do not follow the official Japanese Go rules, but seem to be useful turn-based default values...\r\n\r\nIn short, Dragon<ul><li>uses territory scoring based on the players\' evaluation of the board,\r\n<li>has no superko rule,\r\n<li>forbids suicide, and\r\n<li>allows the free placement of handicap stones.\r\nHowever Dragon defaults to use a <i>Standard handicap placement</i> of stones. </ul>', 'FAQ', 'Changed', 'USED', '2012-09-02 14:40:15'),
(635, 'Why are some users not listed in the User list?', 'FAQ', 'Done', 'USED', '2003-05-13 12:25:12'),
(636, 'By default Dragon does not list inactive players. There\'s a <home faq.php?read=t&cat=200#Entry246>filter</home> checkbox in the table header of the \"Activity\" column to switch between showing only the active or all users (i.e. active and inactive users).', 'FAQ', 'Done', 'USED', '2003-05-09 00:26:57'),
(684, 'What does the blue area in the rating graph mean?', 'FAQ', 'Done', 'USED', '2003-05-14 11:44:03'),
(685, 'It is an indication of how close a user\'s current rating is expected to be to Dragon\'s Go rank.  When a new user enters an initial Go rank, Dragon does not know how well that initial value relates to Dragon\'s rank.  World-wide-valid definitions of Go ranks do not exist.  Dragon does its best to provide reliable and comparable Go ratings.  On a user\'s rating graph the width of the blue background, which is similar to a confidence interval, estimates how close a new user\'s Dragon rating might be to Go ranks established by Dragon.  The confidence intervals of both players in a game have an effect.  A larger confidence width of one player increases rating change for that player and at the same time decreases rating change of the other player (and vice versa).', 'FAQ', 'Done', 'USED', '2010-10-22 12:30:28'),
(637, 'What is main time?', 'FAQ', 'Done', 'USED', '2003-05-09 00:26:57'),
(638, 'An initial time limit specified by <i>main time</i> is granted to each player.  \r\n\r\nIf the main time has run out, the game ...\r\n<ul>\r\n<li>... is over, when no overtime has been negotiated, or\r\n<li>... is <b>not</b> over, when there is a defined overtime (see <home faq.php?read=t&cat=3#Entry67>Japanese byo-yomi</home>, <home faq.php?read=t&cat=56#Entry58>Canadian byo-yomi</home>, <home faq.php?read=t&cat=56#Entry59>Fischer time</home>).\r\n</ul>', 'FAQ', 'Done', 'USED', '2003-05-14 11:33:41'),
(639, 'Who are the people behind Dragon?', 'FAQ', 'Done', 'USED', '2003-02-24 20:35:50'),
(640, 'The Dragon Go Server (DGS) is a non-commercial and open source team project from and for people, who like to play turn-based Go.\r\nDGS has been created and is being <a href=\"http://sourceforge.net/project/memberlist.php?group_id=29933\" target=\"_blank\">maintained</a> by <user =ejlo>. All other maintainers, administrators, developers and translators are listed on the <home people.php>Contributors page</home>.\r\n\r\nThe FAQ is based upon <B>your</B> feedback in the <home forum/list.php?forum=3>FAQ discussion forum</home>. All texts on DGS are translated into several languages by  volunteers also listed on the <home people.php>Contributors page</home>.', 'FAQ', 'Done', 'USED', '2003-12-15 19:39:03'),
(643, 'Which HTML tags can I use on Dragon?', 'FAQ', 'Done', 'USED', '2009-01-05 20:26:32'),
(644, '<em>Here is a list of HTML tags that can be used on Dragon, with examples.  Giving complete descriptions of the various HTML tags is not within the scope of the FAQ.  For reference on HTML, visit <a href=\"http://www.w3.org/\">The World Wide Web Consortium</a>.</em>\r\n\r\n<code><b>This is bold text</b></code>\r\n<b>This is bold text</b>\r\n\r\n<code><u>This is underlined text</u></code>\r\n<u>This is underlined text</u>\r\n\r\n<code><i>This is italic text</i></code>\r\n<i>This is italic text</i>\r\n\r\n<code><em>This is emphasized text</em></code>\r\n<em>This is emphasized text</em>\r\n\r\n<code><strong>This is strong text</strong></code>\r\n<strong>This is strong text</strong>\r\n\r\n<code><tt>This is single-line text in a fixed-width font</tt></code>\r\n<tt>This is single-line text in a fixed-width font</tt>\r\n\r\n<code><strike>This is striked text</strike></code>\r\n<strike>This is striked text</strike>\r\n\r\n<code><pre>This is multi-line\r\npreformatted text\r\nin a fixed-width font.</pre></code>\r\n<pre>This is mulit-line\r\npreformatted text\r\nin a fixed-width font.</pre>\r\n\r\n<code>\r\n<font color=\"red\">This is red text</font>\r\n<font color=\"orange\">This is orange text</font>\r\n<font color=\"yellow\">This is yellow text</font>\r\n<font color=\"green\">This is green text</font>\r\n<font color=\"blue\">This is blue text</font>\r\n<font color=\"indigo\">This is indigo text</font>\r\n<font color=\"violet\">This is violet text</font>\r\n<font color=\"white\">This is white text</font>\r\n<font color=\"black\">This is black text</font>\r\n</code>\r\n<font color=\"red\">This is red text</font>\r\n<font color=\"orange\">This is orange text</font>\r\n<font color=\"yellow\">This is yellow text</font>\r\n<font color=\"green\">This is green text</font>\r\n<font color=\"blue\">This is blue text</font>\r\n<font color=\"indigo\">This is indigo text</font>\r\n<font color=\"violet\">This is violet text</font>\r\n<font color=\"white\">This is white text</font>\r\n<font color=\"black\">This is black text</font>\r\n\r\n<code>Brackets: &lt; &gt;</code>\r\nBrackets: &lt; &gt;\r\n\r\n<code>Ampersand: &amp;</code>\r\nAmpersand: &amp;\r\n\r\n<code>Non-breaking space: >&nbsp;<</code>\r\nNon-breaking space: &gt;&nbsp;&lt;\r\n\r\n<code>Horizontal Line: <hr></code>\r\n<hr>\r\n\r\n<code>\r\n<ul>\r\n<li>This is an unordered list\r\n<li>This is an unordered list\r\n<li>This is an unordered list\r\n<li>This is an unordered list\r\n<li>This is an unordered list\r\n</ul>\r\n</code>\r\n<ul>\r\n<li>This is an unordered list\r\n<li>This is an unordered list\r\n<li>This is an unordered list\r\n<li>This is an unordered list\r\n<li>This is an unordered list\r\n</ul>\r\n\r\n<code>\r\n<ol>\r\n<li>This is an ordered list\r\n<li>This is an ordered list\r\n<li>This is an ordered list\r\n<li>This is an ordered list\r\n<li>This is an ordered list\r\n</ol>\r\n</code>\r\n<ol>\r\n<li>This is an ordered list\r\n<li>This is an ordered list\r\n<li>This is an ordered list\r\n<li>This is an ordered list\r\n<li>This is an ordered list\r\n</ol>\r\n\r\n<code>This is an ordinary link: <http://www.dragongoserver.net |Dragon Go Server>              - preferred way!!\r\nThis is an ordinary link: <a href=\"http://www.dragongoserver.net\">Dragon Go Server</a>   - this works too, but use the preferred way</code>\r\nThis is an ordinary link: <a href=\"http://www.dragongoserver.net\">Dragon Go Server</a>', 'FAQ', 'Changed', 'USED', '2012-12-08 13:55:34'),
(1745, 'Which Dragon tags can I use?', 'FAQ', 'Done', 'USED', '2009-07-05 14:29:55'),
(1746, '<code>This is a simple link: <http://www.dragongoserver.net></code>\r\nThis is a simple link: <http://www.dragongoserver.net>\r\n\r\n<code>\r\n<color #c07f32>Other color</color>\r\n<color #acacac>Other color</color>\r\n<color #f03571>Other color</color>\r\n<color #003399>Other color</color>\r\n</code>\r\n<color #c07f32>Other color</color>\r\n<color #acacac>Other color</color>\r\n<color #f03571>Other color</color>\r\n<color #003399>Other color</color>\r\n<em>Complete description of color codes available at <http://html-color-codes.com/></em>\r\n\r\n<code><quote>This is some quoted text</quote></code>\r\n<quote>This is some quoted text</quote>\r\n\r\n<code>\r\n<image board/b.gif>\r\n<image board/w.gif>\r\n<image board/y.gif>\r\n<image send.gif>\r\n</code>\r\n<image board/b.gif>\r\n<image board/w.gif>\r\n<image board/y.gif>\r\n<image send.gif>\r\n<em>The tag for Dragon images shows images from the Dragon images directory.  The board-prefix shows board-images of size 17.  No remote images can be shown.</em>\r\n\r\n<em>All the grey rectangles are generated using the &lt;code&gt; tag.  Text within the &lt;code&gt; and &lt;/code&gt; tags is displayed \"as is\" with one exception; the &lt;/code&gt; tag itself.</em>\r\n&lt;code&gt;Example of code&lt;/code&gt; will display as:\r\n<code>Example of code</code>', 'FAQ', 'Done', 'USED', '2010-04-03 12:00:58'),
(656, 'The centre point of the board.  The 10-10 point on a 19x19 board.', 'FAQ', 'Done', 'USED', '2006-08-16 12:36:16'),
(657, 'Goban', 'FAQ', 'Done', 'USED', '2005-09-07 22:31:16'),
(658, 'The (real or virtual) Go board.', 'FAQ', 'Done', 'USED', '2003-02-28 10:45:21'),
(661, 'What does handicap mean?', 'FAQ', 'Done', 'USED', '2003-05-14 11:33:41'),
(662, 'If two players differ in strength, they can (and should) agree that their game will start with additional \"handicap\" stones for the weaker player. Handicap stones are always given to black, and -if chosen well- compensates for the difference in Go skill. With handicap stones the game will become more interesting and each player will have an equal chance to win.\r\n\r\nOn a 19x19 goban the handicap is equal to the difference in ranks. For other goban sizes Dragon scales it appropriately.\r\n\r\nTraditionally, handicap stones are placed on <home faq.php?read=t&cat=3#Entry89>hoshi</home> in a set pattern depending on the number of stones.  On Dragon Black is allowed to place handicap stones freely.\r\n\r\nPlease note that many players prefer to have handicap stones placed on the hoshi points.  So if you\'re the one getting the handicap it\'s good form to agree wether to use traditional or free placement with your opponent. Offering a game in the <home waiting_room.php>waiting room</home> let you choose if you prefer <home faq.php?read=t&cat=357#Entry129>standard handicap placement</home>.', 'FAQ', 'Done', 'USED', '2003-05-14 11:33:41'),
(663, 'What is the difference between conventional and proper handicap?', 'FAQ', 'Done', 'USED', '2003-05-14 11:44:03'),
(664, '<i>Conventional handicap</i> uses the rank difference (and the board size) to set the handicap. <home faq.php?read=t&cat=3#Entry9>Komi</home> is 0.5 for uneven games and 6.5 for even games. The board size is independent on this. So the komi would be the same 6.5 on a 9x9, 13x13 or 19x19 goban.\r\n\r\n<i>Proper handicap</i> uses finer komi intervals (..., 1.5, 2.0, 2.5, ...) to balance minor rating differences to a 50:50 chance for both players.', 'FAQ', 'Done', 'USED', '2003-05-14 11:44:03'),
(665, 'Joseki', 'FAQ', 'Done', 'USED', '2010-10-22 10:44:29'),
(666, 'Known play sequences, usually in corners, often resulting in \'fair\' outcomes for both players.', 'FAQ', 'Done', 'USED', '2006-05-28 09:46:16'),
(1892, 'Tesuji', 'FAQ', 'Done', 'USED', '2012-08-22 19:48:45'),
(667, 'Fuseki', 'FAQ', 'Done', 'USED', '2010-10-22 10:44:29'),
(668, 'Established patterns of arraying stones during opening play.', 'FAQ', 'Done', 'USED', '2006-05-28 09:55:10'),
(1893, 'Skillful tactical play.', 'FAQ', 'Done', 'USED', '2010-10-26 15:10:15'),
(669, 'Seki', 'FAQ', 'Done', 'USED', '2005-09-07 22:35:35'),
(670, 'Seki means \"dual life\".  Seki is a local impasse in which two groups share liberties, and neither side can capture the other.', 'FAQ', 'Done', 'USED', '2003-02-28 10:45:21'),
(678, 'What does the rating-column in the user list mean?', 'FAQ', 'Done', 'USED', '2003-05-14 11:37:43'),
(671, 'Can I submit moves by email?', 'FAQ', 'Done', 'USED', '2003-05-13 12:58:36'),
(672, 'No, it is not possible to submit moves by email.\r\nYou have to log in to <home index.php>Dragon\'s web site</home> to submit a move.', 'FAQ', 'Done', 'USED', '2003-05-13 12:58:36'),
(673, 'Will Dragon notify me when it is my turn?', 'FAQ', 'Done', 'USED', '2003-05-13 12:59:08'),
(674, 'Yes, provided you have enabled <home faq.php?read=t&cat=12#Entry173>Email notification</home> and you have supplied your (confidential) email address in your <home edit_profile.php>user profile</home>.', 'FAQ', 'Done', 'USED', '2003-05-13 12:59:08'),
(679, 'The first part of your rating is the current <home faq.php?read=t&cat=3#Entry39>dan</home> or <home faq.php?read=t&cat=3#Entry38>kyu</home> rank. The second part (within the brackets) indicates how strong or weak this rank is.\r\nThe corresponding <home faq.php?read=t&cat=105&e=107#Entry107>ELO points of a rating</home> is shown in the tooltip when hovering over a linked rating-value.\r\n\r\nFor example, \"1 kyu (+40%)\" is a strong 1 kyu rating (almost strong enough to be a weak 1 dan).', 'FAQ', 'Changed', 'USED', '2012-12-08 00:24:47'),
(675, 'Can I start a game by uploading a SGF?', 'FAQ', 'Done', 'USED', '2003-05-14 11:37:43'),
(692, 'Gote', 'FAQ', 'Done', 'USED', '2010-10-22 12:30:28'),
(693, 'A gote move loses the initiative.  The state of having lost the initiative.  Typically a move that the opponent need not answer, thus giving the opponent <home faq.php?read=t&cat=3#Entry112>sente</home> (the opposite of gote).', 'FAQ', 'Done', 'USED', '2012-09-02 14:29:41'),
(696, 'Dame', 'FAQ', 'Done', 'USED', '2004-02-07 16:09:55'),
(697, 'Neutral intersections on the goban. This \'no man\'s land\' does not give any points to either player.', 'FAQ', 'Done', 'USED', '2003-06-16 11:35:21'),
(698, 'Liberty', 'FAQ', 'Done', 'USED', '2003-06-17 01:07:17'),
(699, 'An empty intersection adjacent to a stone or a chain of stones.', 'FAQ', 'Done', 'USED', '2003-06-17 01:07:17'),
(700, 'Hane', 'FAQ', 'Done', 'USED', '2010-10-29 14:10:00'),
(701, 'A diagnonal connecting stone placed to reach around the opponent\'s stone or stones.', 'FAQ', 'Done', 'USED', '2010-10-26 15:05:24'),
(702, 'Geta', 'FAQ', 'Done', 'USED', '2010-10-29 14:10:00'),
(703, 'A net of stones.', 'FAQ', 'Done', 'USED', '2003-09-04 19:19:39'),
(704, 'Sanrensei', 'FAQ', 'Done', 'USED', '2010-10-29 14:10:00'),
(705, 'A common opening where the player has occupied three star points along a side.  On a 19x19 board this would be two 4,4 points on the same line, plus the point midway between them.', 'FAQ', 'Done', 'USED', '2010-10-18 16:00:33'),
(706, 'Shicho', 'FAQ', 'Done', 'USED', '2010-10-29 14:10:00'),
(707, 'A ladder of stones.', 'FAQ', 'Done', 'USED', '2010-10-18 16:00:33'),
(1894, 'Sensei', 'FAQ', 'Done', 'USED', '2012-08-22 19:48:45'),
(710, 'Where can I learn to play Go?', 'FAQ', 'Done', 'USED', '2003-07-03 15:51:13'),
(708, 'Does the board size impact the ratings?', 'FAQ', 'Done', 'USED', '2003-07-03 15:51:13'),
(709, 'Yes.\r\n\r\n19x19 games have the biggest impact on ratings. The 19x19 goban serves as anchor for the impact on the rating. So a factor of 100% is used on the <home faq.php?read=t&cat=105#Entry123>rating differences</home> when new ratings are calculated.\r\n\r\nGames on larger boards have a smaller impact, as the 19x19 sized goban is the anchor. A 25x25 game therefore uses a size factor of 47% of the full rating difference.\r\n\r\nTwo 13x13 games account as about one 19x19 game. The precise value is about using a size factor of 47%.\r\n\r\nTwo 9x9 games account as about one 13x13 game. The precise value is about using a size factor of 22%.\r\n\r\nThe exact formula to calculate the impact factor is: <tt>( 19 - |size-19| )^2 / 19^2</tt>', 'FAQ', 'Done', 'USED', '2008-08-27 14:33:03'),
(711, 'Take a look at <a href=\"http://playgo.to/interactive/index.html\" target=new>The Interactive Way To Go</a> and the British Go Association\'s <a href=\"http://www.britgo.org/intro/intro.html\" target=new>Introduction to the game of Go</a>.', 'FAQ', 'Done', 'USED', '2003-07-03 15:51:13'),
(712, 'How does Dragon\'s rating system work?', 'FAQ', 'Done', 'USED', '2004-06-14 17:09:33'),
(713, 'Dragon uses the EGF rating system for its calculus. You can find details on the EGF rating system algorithm at <a href=\"http://www.europeangodatabase.eu/EGD/EGF_rating_system.php\">EGF Go Rating Pages</a>.\r\n\r\nGiven the board size, handicap and komi, the implied initial rating difference (the difference that would have given this <a href=\"http://www.dragongoserver.net/faq.php?read=t&cat=357#Entry98 \">Proper Handicap</a>) can be calculated.  This is compared with the final rating difference (at the end of the game) to decide the real advantage a player had.  The probability of the result is calculated using the EGF algorithms in which the constants used are the existing values from EGF statistics.  Knowing this probability, it is determined whether a player has done better or worse than expected,  whether the rating should be increased or decreased.  The magnitude of the change is calculated from this probability and weighted by a factor depending upon the board size, and the ratio of the confidence intervals (the <a href=\"http://www.dragongoserver.net/faq.php?read=t&cat=105#Entry109\">Blue Area</a> in the rating graph) of the two players.\r\n\r\nFor example, in an <em>even</em> game where the rating of Black is less than White\'s, the probable result is that White will win.\r\n<ul>\r\n<li>If White wins, White\'s rating may increase slightly or possibly not at all, since this White\'s win was expected.  Based on the same reasoning, Black\'s rating may a little or may remain the same.\r\n<li>If Black wins, Black\'s rating will be increased by a greater amount, since this was not expected.  On the same basis, White will suffer a bigger drop in rating.\r\n</ul>\r\n\r\nThe size of win is not taken into account.  A player may win by half a point or by 100 points.  In the same circumstances those wins would be equal in terms of rating change difference computed by DGS.', 'FAQ', 'Done', 'USED', '2010-10-30 08:49:31'),
(1036, 'Can I delete my account and are inactive userprofiles removed?', 'FAQ', 'Done', 'USED', '2012-07-01 19:01:48'),
(714, 'Sorry, couldn\'t find the specified message folder.', 'SRC', 'Done', 'USED', '2003-07-16 10:09:40'),
(715, 'Page time', 'SRC', 'Done', 'USED', '2003-07-16 10:03:43'),
(5851, 'Round #%s is not finished yet.#tourney', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(719, '%s wins by %.1f', 'SRC', 'Done', 'USED', '2003-07-16 11:10:59'),
(722, 'Folder', 'SRC', 'Done', 'USED', '2003-07-16 10:03:43'),
(724, 'Destroy marked messages', 'SRC', 'Done', 'USED', '2003-07-16 10:09:40'),
(726, 'Edit folders', 'SRC', 'Done', 'USED', '2003-07-16 10:09:40'),
(727, 'The settings for this game invitation has been %sdisputed%s', 'SRC', 'Done', 'USED', '2003-07-16 10:09:40'),
(730, 'Edit vacation', 'SRC', 'Done', 'USED', '2003-07-16 10:09:40'),
(731, 'Edit message folders', 'SRC', 'Done', 'USED', '2003-07-16 10:09:40'),
(732, 'Vacation days left', 'SRC', 'Done', 'USED', '2003-07-16 10:03:43'),
(733, 'On vacation', 'SRC', 'Done', 'USED', '2003-07-16 10:03:43'),
(736, 'Won games', 'SRC', 'Done', 'USED', '2003-07-16 10:09:40'),
(737, 'Lost games', 'SRC', 'Done', 'USED', '2003-07-16 10:09:40'),
(738, 'Change vacation length', 'SRC', 'Done', 'USED', '2003-07-16 10:09:40'),
(739, 'Start vacation', 'SRC', 'Done', 'USED', '2003-07-16 10:09:40'),
(740, 'All Received', 'SRC', 'Done', 'USED', '2003-07-16 10:09:40'),
(741, 'Main', 'SRC', 'Done', 'USED', '2003-07-16 10:09:40'),
(742, 'Trashcan', 'SRC', 'Done', 'USED', '2003-07-16 10:09:40'),
(743, 'Sent', 'SRC', 'Done', 'USED', '2003-07-16 10:09:40'),
(744, 'Move to folder when replying', 'SRC', 'Done', 'USED', '2003-07-16 10:09:40'),
(745, 'Move to folder', 'SRC', 'Done', 'USED', '2003-07-16 10:09:40'),
(746, 'Folder name', 'SRC', 'Done', 'USED', '2003-07-16 10:09:40'),
(747, 'All columns', 'SRC', 'Done', 'USED', '2003-07-16 10:03:43'),
(967, 'Where are (standard) handicap stones placed?', 'FAQ', 'Done', 'USED', '2003-10-03 11:19:03'),
(963, 'What does a red background in the waiting room mean?', 'FAQ', 'Done', 'USED', '2003-09-11 00:37:41'),
(753, 'What do small green or red squares mean at the end of a game?', 'FAQ', 'Done', 'USED', '2006-08-16 13:14:32'),
(754, 'Small red squares indicate that Dragon can not decide if that intersection is black or white territory. Possible reasons are:\r\n<ul>\r\n<li>Inside a territory there are still foreign stones which have not been marked as \"dead\" yet. Please click on those stones to toggle the status to \"dead\".</li>\r\n\r\n<li>The borders of White\'s or Black\'s territory have not been closed. For human players it is obvious, but for Dragon it is difficult to decide who owns which territory. Please click on the \"resume playing\" link below the board and submit a move to close that border.</li>\r\n\r\n<li>It is a <home faq.php?read=t&cat=3#Entry101>seki</home> position. Please click on that red square to toggle it into a <home faq.php?read=t&cat=3#Entry115>dame</home>. Dragon will visualize it with a small green square. This feature allows you to resolve a doubtful seki to a correct game result.\r\nIn other words, if you see a green square, it is a dame.\r\n</ul>', 'FAQ', 'Done', 'USED', '2009-07-04 09:16:09'),
(758, 'Algeria', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(759, 'Andorra', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(760, 'Angola', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(761, 'Antarctica', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(762, 'Antigua and Barbuda', 'SRC', 'Done', 'USED', '2012-08-26 18:25:43'),
(763, 'Argentina', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(764, 'Armenia', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(765, 'Australia', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(766, 'Austria', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(767, 'Azerbaijan', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(768, 'Bahamas', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(769, 'Bahrain', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(770, 'Barbados', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(771, 'Bangladesh', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(772, 'Belarus', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(773, 'Belgium', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(774, 'Belize', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(775, 'Benin', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(776, 'Bhutan', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(777, 'Bolivia', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(779, 'Botswana', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(780, 'Brazil', 'SRC', 'Done', 'USED', '2003-08-20 00:50:39'),
(782, 'Bulgaria', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(783, 'Burkina Faso', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(784, 'Burundi', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(785, 'Cambodia', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(786, 'Cameroon', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(787, 'Canada', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(788, 'Cape Verde', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(789, 'Central African Republic', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(790, 'Chad', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(791, 'Chile', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(792, 'China', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(793, 'Colombia', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(794, 'Comoros', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(795, 'Congo-Brazzaville', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(796, 'Congo-Kinshasa', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(797, 'Costa Rica', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(798, 'Ivory Coast', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(799, 'Croatia', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(800, 'Cuba', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(801, 'Cyprus', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(802, 'Czech Republic', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(803, 'Denmark', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(804, 'Djibouti', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(805, 'Dominica', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(806, 'Dominican Republic', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(808, 'Ecuador', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(809, 'Egypt', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(810, 'El Salvador', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(811, 'Equatorial Guinea', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(812, 'Eritrea', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(813, 'Estonia', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(814, 'Ethiopia', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(815, 'Fiji', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(816, 'Finland', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(817, 'France', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(818, 'Gabon', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(819, 'Gambia', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(820, 'Georgia', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(821, 'Germany', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(822, 'Ghana', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(823, 'Greece', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(824, 'Grenada', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(825, 'Guatemala', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(826, 'Guinea', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(827, 'Guinea-Bissau', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(828, 'Guyana', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(829, 'Haiti', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(830, 'Honduras', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25');
INSERT INTO `TranslationTexts` (`ID`, `Text`, `Type`, `Translatable`, `Status`, `Updated`) VALUES
(831, 'Hong Kong', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(832, 'Hungary', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(833, 'Iceland', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(834, 'India', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(835, 'Indonesia', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(836, 'Iran', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(837, 'Iraq', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(838, 'Ireland', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(839, 'Israel', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(840, 'Italy', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(841, 'Jamaica', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(842, 'Japan', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(843, 'Jordan', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(845, 'Kenya', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(846, 'Kiribati', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(849, 'Kuwait', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(850, 'Kyrgyzstan', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(851, 'Laos', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(852, 'Latvia', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(853, 'Lebanon', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(854, 'Lesotho', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(855, 'Liberia', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(856, 'Libya', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(857, 'Liechtenstein', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(858, 'Lithuania', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(859, 'Luxembourg', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(861, 'Macedonia', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(862, 'Madagascar', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(863, 'Malawi', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(864, 'Malaysia', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(865, 'Maldives', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(866, 'Mali', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(867, 'Malta', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(868, 'Marshall Islands', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(869, 'Mauritania', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(870, 'Mauritius', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(871, 'Mexico', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(872, 'Micronesia', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(873, 'Moldova', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(874, 'Monaco', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(875, 'Mongolia', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(876, 'Morocco', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(877, 'Mozambique', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(878, 'Myanmar', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(879, 'Namibia', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(880, 'Nauru', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(881, 'Nepal', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(882, 'Netherlands', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(883, 'New Zealand', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(884, 'Nicaragua', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(885, 'Niger', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(886, 'Nigeria', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(887, 'Norway', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(888, 'Oman', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(889, 'Pakistan', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(890, 'Palau', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(892, 'Panama', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(893, 'Papua New Guinea', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(894, 'Paraguay', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(895, 'Peru', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(896, 'Philippines', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(897, 'Poland', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(898, 'Portugal', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(899, 'Puerto Rico', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(900, 'Qatar', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(901, 'Romania', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(902, 'Russia', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(903, 'Rwanda', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(904, 'Saint Kitts and Nevis', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(905, 'Saint Lucia', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(906, 'Saint Vincent and the Grenadines', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(907, 'Samoa', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(908, 'San Marino', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(909, 'Sao Tome and Principe', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(910, 'Saudi Arabia', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(911, 'Senegal', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(913, 'Seychelles', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(914, 'Sierra Leone', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(915, 'Singapore', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(916, 'Slovakia', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(917, 'Slovenia', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(918, 'Solomon Islands', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(919, 'Somalia', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(920, 'South Africa', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(921, 'Spain', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(922, 'Sri Lanka', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(923, 'Sudan', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(924, 'Suriname', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(925, 'Swaziland', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(926, 'Sweden', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(927, 'Switzerland', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(928, 'Syria', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(929, 'Taiwan', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(930, 'Tajikistan', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(931, 'Tanzania', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(932, 'Thailand', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(933, 'Togo', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(934, 'Tonga', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(935, 'Trinidad and Tobago', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(936, 'Tunisia', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(937, 'Turkey', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(938, 'Turkmenistan', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(939, 'Tuvalu', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(940, 'Uganda', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(941, 'Ukraine', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(942, 'United Arab Emirates', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(943, 'United Kingdom', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(944, 'United States', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(945, 'Uruguay', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(946, 'Uzbekistan', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(947, 'Vanuatu', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(948, 'Vatican City State (Holy See)', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(949, 'Venezuela', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(950, 'Vietnam', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(951, 'Yemen', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(952, 'Zambia', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(953, 'Zimbabwe', 'SRC', 'Done', 'USED', '2003-08-20 14:27:25'),
(954, 'Russian', 'SRC', 'Done', 'USED', '2003-08-23 15:54:09'),
(955, 'Vacation', 'SRC', 'Done', 'USED', '2003-08-23 15:54:09'),
(956, 'Sorry, you can\'t change the vacation length at the moment.', 'SRC', 'Done', 'USED', '2003-08-24 19:53:03'),
(957, 'Vacation length changed!', 'SRC', 'Done', 'USED', '2003-08-23 15:54:09'),
(958, 'Add', 'SRC', 'Done', 'USED', '2003-08-23 15:54:09'),
(959, 'Remove', 'SRC', 'Done', 'USED', '2003-08-23 15:54:09'),
(960, 'Choose vacation length', 'SRC', 'Done', 'USED', '2003-08-24 19:53:03'),
(962, 'Have a nice vacation!', 'SRC', 'Done', 'USED', '2003-08-24 19:53:03'),
(1031, 'Serbian', 'SRC', 'Done', 'USED', '2005-05-13 07:28:15'),
(964, 'A light red background in the column \"<i>Restrictions</i>\" in the <home waiting_room.php>waiting room</home> means that you are not suitable and therefore are not allowed to join that particular game offer.  There is one exception, which is explained below.\r\n\r\nThe restrictions applied for a game offer are shown in an abbreviated form in the \"<i>Restrictions</i>\" column.  The used abbreviations are given below as examples in <color green>green color</color>.\r\n\r\nA waiting game offer is <b>suitable</b> when a player matches the requested game restrictions on:\r\n<ul>\r\n<li><b>Handicap-type:</b> For <home faq.php?read=t&cat=357&e=98#Entry98>Conventional or Proper handicap</home> you need a valid rating for calculations.\r\n\r\n<li><b>Rating range:</b> the players rating must be within the requested rating range, e.g. \"<color green>25k-2d</color>\".\r\n\r\n<li><b>Number of rated finished games:</b> the player must have at least the given number of rated finished games, e.g. \"<color green>RG[2]</color>\"\r\n\r\n<li><b>Accept same opponent:</b> the player may not be allowed to join the same game offer more than once.  The different options and abbreviations are explained mode in <home faq.php?read=t&cat=357&e=392#Entry392>How can I prevent that the same user joins my game offer more than once?</home>\r\nExamples: \"<color green>SOT[1]</color>\" or \"<color green>SO[1x]</color>\" or \"<color green>SO[>7d]</color>\".\r\n\r\n<li><b>Max. number of opponents started games:</b> the number of the players started games must not exceed the <home faq.php?read=t&cat=357&e=349#Entry349>server-specific limits</home>; a violated restriction is indicated by \"<color green>MXG</color>\".\r\n\r\n<li><b>Hide waiting room games:</b> the player can use the <home faq.php?read=t&cat=361&e=260#Entry260>contacts feature to <i>hide</i> game offers from certain users</home> in the waiting room.  Game offers that match this \"restriction\" are marked by \"<color green>[H]</color>\".\r\n\r\nIf the only matching restriction violation is <i>Hide the waiting room games</i> of a particular user, the game offer can still be joined, because that option only influences WHAT games are shown in the default search for suitable games.  The player can still see and join the games via the \"<i>All waiting games</i>\".\r\n\r\nDo not mix the contact system category \"<i>Hide waiting room games</i>\"  with the system category of \"<i>Protect waiting room games</i>\", which <home faq.php?read=t&cat=361&e=265#Entry265>protects your game offers from joining</home>.  \"Hidden\" game offers can still be viewed searching for <i>All waiting games</i>, while \"protected\" game offers can not be found at all.\r\n</ul>\r\n\r\nIf <i>any</i> of the above restrictions is not met, the red background indicates the game offer as non suitable.  In that case, the game offer can not be joined (except if the only restriction is \"<color green>[H]</color>\", see \"<i>Hide waiting room games</i>\" above).', 'FAQ', 'Done', 'USED', '2012-12-26 16:23:08'),
(979, 'Are all bugs discussed in the FAQ?', 'FAQ', 'Done', 'USED', '2003-12-14 09:00:02'),
(980, 'No.  And they never will be. The bugs, errors and problems described here are recurring or static faults that are well known, as well as having been discussed in depth or several times in the forums. Bugs will be fixed (<i>to give room to other bugs?</i>) but in the meantime some of them will be discussed here.', 'FAQ', 'Done', 'USED', '2003-12-14 09:00:02'),
(976, 'Login via <a href=\"/\" target=\"_blank\">Dragon\'s main page</a> by entering your user ID and personal password.  The DGS server will create a cookie that is stored locally on your computer.  This authentication cookie will let you stay logged in for 30 days.', 'FAQ', 'Done', 'USED', '2003-12-16 16:50:15'),
(974, 'You can log in without entering your user ID and password every time by putting both the user ID and password in the URL itself.  In other words direct your browser to <u>http://www.dragongoserver.net/login.php?userid=<b>the-user-id</b>&passwd=<b>the-password</b></u>.\r\n\r\nBe aware that storing a password in plain text bears a considerable security risk. Do not distribute your login URL or store it as a bookmark on a public computer.', 'FAQ', 'Done', 'USED', '2003-12-16 16:50:15'),
(972, '<ul>\r\n<li><home faq.php?read=t&cat=200&e=223#Entry223>Check the FAQ</home> and the forums for information on your problem.  It can be a good idea to <home faq.php?read=t&cat=200&e=224#Entry224>search the forums</home> rather than browse them.  There are many postings and sometimes they go in the wrong forum.\r\n\r\n<li>Put a message detailing your problem in the <home forum/list.php?forum=2>Support forum</home>, or\r\n\r\n<li>Send a private message detailing your problem to one of the active <home people.php>developers</home>.  A report in the forums is preferred though as then also others might be able to help you with your problem.\r\n</ul>', 'FAQ', 'Changed', 'USED', '2012-12-16 15:06:02'),
(968, 'According to chinese rules handicap stones are placed anywhere.  According to japanese rules handicap stones are placed following a given pattern.  If nothing is explicitly agreed upon, most players will expect black to use japanese rules. The following list gives the handicap stone positions on the 19x19 goban. This is also explained very well on <http://www.wikipedia.org |Wikipedia> at: <http://en.wikipedia.org/wiki/Go_handicap>\r\n<ul>\r\n<li>1 stone: The weaker player plays black without komi.\r\n<li>2 stones: D4 + Q16\r\n<li>3 stones: D4 + Q4 + Q16\r\n<li>4 stones: D4 + Q4 + D16 + Q16\r\n<li>5 stones: D4 + Q4 + K10 + D16 + Q16\r\n<li>6 stones: D4 + Q4 + D10 + Q10 + D16 + Q16\r\n<li>7 stones: D4 + Q4 + D10 + K10 + Q10 + D16 + Q16\r\n<li>8 stones: D4 + K4 + Q4 + D10 + Q10 + D16 + K16 + Q16\r\n<li>9 stones: D4 + K4 + Q4 + D10 + K10 + Q10 + D16 + K16 + Q16\r\n</ul>\r\n\r\nIn the <home waiting_room.php>waiting room</home> and on the <home message.php?mode=Invite>invite page</home> there is an option to restrict a game to <i>Standard handicap placement</i>. This follows the outlined patterns above. For the other board sizes and more handicap stones similar patterns are used. On the 19x19 goban, the following <a href=\"http://senseis.xmp.net/?HandicapsBeyondNineStones#toc3\" target=\"senseis\">pattern</a> is used.\r\n\r\nThe <i>Standard handicap placement</i> is available for <ul>\r\n<li>19x19 boards\r\n<li>odd size boards above 7x7: up to 9 stones\r\n<li>other boards: up to 4 stones </ul>', 'FAQ', 'Done', 'USED', '2008-08-27 14:33:03'),
(973, 'How do I log in to my account faster?', 'FAQ', 'Done', 'USED', '2003-10-20 22:41:26'),
(971, 'How to report a problem or a bug?', 'FAQ', 'Done', 'USED', '2012-12-16 15:06:02'),
(975, 'How do I log in to my account?', 'FAQ', 'Done', 'USED', '2003-12-14 09:00:02'),
(986, 'This concerns all the following lists:\r\n<ul>\r\n<li>games on the <home status.php>Status page</home>\r\n<li>game offer list on the <home waiting_room.php>waiting room page</home>\r\n<li>users list on the <home users.php>Users page</home>\r\n<li>users list on the <home list_contacts.php>Contacts page</home>\r\n<li>running, finished and observed games list on the <home show_games.php?uid=all>Games page</home>\r\n<li>etc.\r\n</ul>\r\n\r\nTo add a column select the one you want to add in the pull-down menu at the bottom of the page, and click the \"<i>Add Column</i>\" button next to it.  To remove a column click on the red \'x\' (<image remove.gif>) next to the column header. There may be columns that are static and can\'t be removed.', 'FAQ', 'Changed', 'USED', '2012-12-08 00:48:23'),
(4643, 'Why does my multi-player-game not appear in my game lists?', 'FAQ', 'Y', 'USED', '2012-09-07 01:53:53'),
(4644, 'Multi-player-games are not always shown in the normal (all / user / my) (finished / running / observed / observing) game lists.  They only show up if you are at a specific moment visible as black or white player.  For multi-player-games, the black and white players rotate through all participating players.  So when you are rotated out, the game will vanish from your normal game-lists.\r\n\r\nThis design was chosen (even though it is less intuitive for the users), because integrating MP-games into the normal game-lists would basically require re-inventing major parts of the server and game-handling.\r\n\r\nTo compensate there are special searches to find and list multi-player-games:\r\n<ul>\r\n<li><home faq.php?read=t&cat=305&e=414#Entry414>How can I find my multi-player-games in setup-mode?</home>\r\n<li><home faq.php?read=t&cat=305&e=310#Entry310>How can I find multi-player-games?</home>\r\n</ul>', 'FAQ', 'Y', 'USED', '2012-09-07 01:53:53'),
(981, 'What are private messages?', 'FAQ', 'Done', 'USED', '2012-12-16 16:56:13'),
(982, 'Players can communicate in several way with each other, e.g. by\r\n<ul>\r\n<li>sending a <home message.php?mode=NewMessage>private message</home> to a particular user using Dragon\'s <home faq.php?read=t&cat=360#Entry360>message system</home>,\r\n<li>posting to Dragon\'s <home forum/>discussion forums</home> to address many users,\r\n<li>adding (several types of) <home faq.php?read=t&cat=365#Entry75>game comments</home> to running games.\r\n</ul>\r\n\r\n<b>Please note:</b> No kinds of messages are ever removed from the server.  Private messages are only removed from your list, but they stay in the database.  Messages in a game stay there forever, the same applies for forum messages.  Normal <home faq.php?read=t&cat=365#Entry75>game messages</home> will stay on the server as well.', 'FAQ', 'Done', 'USED', '2012-12-16 16:43:13'),
(983, 'What are Message folders?', 'FAQ', 'Done', 'USED', '2003-10-13 15:39:18'),
(984, 'The message folders enable you to organize messages according to your needs. You can move messages between folders as you like.\r\n\r\nDragon provides these message folders by default:\r\n<ul>\r\n<li><b>All received</b>: List of all received messages.\r\n<li><b>Main</b>: List of read received messages.\r\n<li><b>New</b>: List of unread received messages.\r\n<li><b>Reply!</b>: List of messages which require a reply.\r\n<li><b>Trashcan</b>: List of messsages marked for deletion.\r\n<li><b>Sent</b>: List of messages you have sent.\r\n</ul>\r\n\r\nYou can create additional message folders via the \"edit folders\" link at the bottom of the <home list_messages.php>Message list</home> page.  If you use all the blank ones provided by the server, the server will add more blank ones next time you access the Edit folders page.', 'FAQ', 'Done', 'USED', '2003-12-16 19:53:07'),
(987, 'I am new at Dragon. Which initial rank should I enter?', 'FAQ', 'Done', 'USED', '2003-11-08 16:01:04'),
(988, 'When you register a new account, DGS asks if you already have a Go rank from elsewhere.  For example, that could be from another Go server, your local Go club or the Go Association of your country.  You may enter that rank, and, based on that, you will get an initial DGS rating.\r\n\r\nIf you do not know how to enter your rating this should help:\r\n<home faq.php?read=t&cat=105#Entry420>How do I set my DGS rating?</home>\r\n\r\nAlternatively, you may wish to look at this table of <_http://senseis.xmp.net/?RankWorldwideComparison |rank comparisons> and enter the DGS equivalent to the rank you have from elsewhere.  You can use Dragon\'s <home rank_converter.php>rank converter</home> to convert Go ranks or ratings known from other servers into the corresponding DGS rating.\r\n\r\nWhen setting up a new account, if you do not know your playing strength DO NOT enter anything in the rating field until you try some of the recommendations for figuring out what it is.  This normally cannot be changed after you enter it.  You will have to wait for your rating to adjust as you play.', 'FAQ', 'Changed', 'USED', '2014-09-06 14:24:50'),
(1011, 'Dragon\'s rating system considers only games\r\n<ul>\r\n<li>for which both players have a rating,\r\n<li>have agreed that it will be a rated game,\r\n<li>in which White has submitted at least 5 moves (that means, placing handicap stones are not counted to determine if a game is rated or not)\r\n</ul>', 'FAQ', 'Done', 'USED', '2004-03-30 03:06:29'),
(991, 'Does my opponent\'s clock count down when my clock is paused?', 'FAQ', 'Done', 'USED', '2003-12-08 14:20:02'),
(989, 'Does it matter, if I start with a wrong initial rating?', 'FAQ', 'Done', 'USED', '2003-12-15 06:50:16'),
(990, 'For many people it does not matter too much, but some players will say it matters a lot.  Dragon will adjust the rating over time, based upon the results of your finished rated games.\r\n\r\nYou can only set your initial DGS rating once. After you have set this it cannot be altered manually.\r\n\r\nIf you <i>intentionally</i> start with a badly wrong initial rating you will annoy other users, and cause them have a wrong / undeserved / misleading drop or increase in <i>their</i> ratings.  Remember you might want to play them again later ...\r\n\r\nDragon tries to provide useful ratings, but this depends upon your cooperation. Please do not set the initial rating for your new Dragon account to a value far off from your real level.  If you are unsure, there are ways to help.  Please have a look at the rest of this section about ranks and ratings in the FAQ.', 'FAQ', 'Done', 'USED', '2010-10-30 10:08:41'),
(992, 'If it is your turn to submit the next move: No.\r\n\r\nIf it is the opponent\'s turn: Yes, provided it is not his sleeping time,\r\nit is not a weekend (in a game with disabled weekend clock) and he has not announced a vacation himself.', 'FAQ', 'Done', 'USED', '2003-12-03 02:14:04'),
(993, 'Can I submit a move while my game clock is paused?', 'FAQ', 'Done', 'USED', '2003-12-08 13:10:24'),
(994, 'You can <i>always</i> submit a move when it\'s your turn -- even during your sleeping time, during your vacation and on weekends.', 'FAQ', 'Done', 'USED', '2003-12-15 06:50:16'),
(995, 'What is Dragon\'s weekend clock?', 'FAQ', 'Done', 'USED', '2003-12-08 13:10:24'),
(996, 'When you offer to start a new game, you have an option, that the clock will <b>not</b> count down on Saturdays and Sundays.\r\n\r\nWhen the clock is stopped because of an ongoing weekend, this is shown with the <image wclock_stop.gif>-icon in the players section:\r\n* on the game-page right to players name\r\n* on the game-info page in the Players table in the \"<i>Off-Time</i>\"-row', 'FAQ', 'Changed', 'USED', '2012-12-10 00:04:39'),
(997, 'Polish', 'SRC', 'Done', 'USED', '2003-12-03 02:14:04'),
(998, 'Italian', 'SRC', 'Done', 'USED', '2003-12-03 02:14:04'),
(999, 'Does it matter, if I win by 0.5 points, 100 points, resign or time-out?', 'FAQ', 'Done', 'USED', '2003-12-29 04:10:19'),
(1000, 'In terms of Dragon\'s ratings, it doesn\'t matter. A won game is just a won game, and a lost game is just a lost game.', 'FAQ', 'Done', 'USED', '2003-12-29 04:10:19'),
(1001, 'How does Dragon count time?', 'FAQ', 'Done', 'USED', '2004-01-16 00:30:17'),
(1002, 'On our <i>turn-based</i> server, the games clocks are designed mainly to avoid never ending games.\r\n\r\nThe server maintains game clocks continuously, but the smallest <i>displayed</i> time unit for a game is one hour. <i>Internally</i> running game clocks are updated every 5 minutes.\r\n\r\n<b>Caution:</b> This means that when your clock displays one hour of time remaining, you might have only seconds left to play before your count will reach 0 and you will lose by time.\r\n\r\nThe game clocks start as soon the game is accepted and they stop when the score is agreed upon.\r\nCaution: This means you can still lose by time during the final PASS or SCORE steps of a game.', 'FAQ', 'Done', 'USED', '2004-01-19 10:58:31'),
(1003, 'Basque', 'SRC', 'Done', 'USED', '2004-01-23 23:58:13'),
(1010, 'Which games will affect my rating?', 'FAQ', 'Done', 'USED', '2004-03-03 13:21:32'),
(1004, 'How to behave on the server?', 'FAQ', 'Done', 'USED', '2007-06-05 17:34:15'),
(1005, 'Everyone wants to enjoy being around here to play this beautiful game named Go.  By and large most users of this site behave appropriately and come here to have an enjoyable time.  As it is a publicly available site, it is necessary to provide some  policy on behaviour.  It is a very friendly place, so the vast majority of DGS users will never need to read this.\r\n\r\nThere is a basic set of DGS rules of behaviour in the form of <home policy.php>the Dragon Go Server policy</home>. \r\n\r\nDGS favours <http://www.albion.com/netiquette/corerules.html |The Core Rules of Netiquette>.\r\n\r\nDGS users are expected to conform to the above and to behave appropriately.  Please remember that people of widely-varying ages and cultures use this site.  All users can expect to be treated with proper respect.', 'FAQ', 'Done', 'USED', '2010-04-02 20:39:24'),
(1006, 'Is Dragon\'s source code available?', 'FAQ', 'Done', 'USED', '2004-03-02 01:35:45'),
(1007, 'Under the legal terms of the <home licence.php>GNU Public Licence (GPL)</home> the source code is available via download at <A HREF=\"http://sourceforge.net/projects/dragongoserver/\" TARGET=_blank>Dragon\'s development page at SourceForge</A>.', 'FAQ', 'Changed', 'USED', '2013-06-02 13:38:59'),
(1008, 'Where is the development of Dragon\'s source code being discussed?', 'FAQ', 'Done', 'USED', '2004-03-02 01:35:45'),
(1009, 'Recently, most of the discussions about features take place in the DGS forums, or directly between the developers per email, or in some special (normally hidden) development forum on DGS.', 'FAQ', 'Done', 'USED', '2011-02-10 16:11:57'),
(1025, 'A game without <home faq.php?read=t&cat=357#Entry97>handicap</home>.  <home faq.php?read=t&cat=3#Entry9>Komi</home> is set by the inviting player.', 'FAQ', 'Done', 'USED', '2004-08-17 18:34:07'),
(1012, 'Can I become a Dragon translator?', 'FAQ', 'Done', 'USED', '2004-03-03 13:21:32'),
(1013, 'Yes. Please submit your interest to the <home forum/list.php?forum=7>translation forum</home>. The admins will grant you translation permissions almost always if more translators are needed.', 'FAQ', 'Done', 'USED', '2004-03-03 15:21:05'),
(1021, 'Real-time', 'FAQ', 'Done', 'USED', '2004-08-13 23:18:01'),
(1022, 'Real-time gaming is a synchronous way of playing games. Both players need to be present or playing at the same time. An entire game is finished in one sitting. Examples of real-time go are playing go on a real board, or via one of the various real-time servers.  See also <home faq.php?read=t&cat=3#Entry152>Turn-based</home>.', 'FAQ', 'Done', 'USED', '2004-08-17 18:39:21'),
(1023, 'Romanian', 'SRC', 'Done', 'USED', '2004-08-13 22:33:20'),
(1024, 'Even game', 'FAQ', 'Done', 'USED', '2004-08-17 18:46:49'),
(4642, 'After all players have joined and the multi-player-game has been started, it is in <b>playing-mode</b>.  When it\'s your turn to play a move, the MP-game will appear in your status-games along with your other games.\r\n\r\nFor multi-player-games some more information is available:\r\n<ul>\r\n<li>While playing the game, the <i>game-players page</i> for the MP-game shows the game-settings, the list of participating players, which players has to move next, and it offers functions to contact the other players.  The contents of the <i>list of participating players</i> is explained in:\r\n<home faq.php?read=t&cat=305&e=415#Entry415>What are the items in the list of participating players for multi-player-games?</home>\r\n\r\n<li>Comments on the game-comments page for a MP-game additionally contains the moving player.\r\n\r\n<li>The downloaded <home faq.php?read=t&cat=3&e=69#Entry69>SGF</home> of a MP-game contains extended game-info and also show the players user-id, name and rating on each move-node.  This behavior can be deactivated with the URL-argument <tt>mpg=1</tt>.  For difference in the SGF-output format, see also: <http://sourceforge.net/p/dragongoserver/dgs-main/ci/784ca4387148e3f4746950cef5d3630ad69a7ae4/tree/specs/quick_suite.txt |Quick-suite specs, chapter \"4.QST\">\r\n\r\n<li><home faq.php?read=t&cat=305&e=399#Entry399>Deleting a game</home> is not possible in <i>playing-mode</i> except for an admin.\r\n\r\n<li>Playing, <home faq.php?read=t&cat=305&e=408#Entry408>resigning</home> and ending a MP-game is only slightly different than a standard game.\r\n\r\n<li>The <home userinfo.php>user-info page</home> shows the current number of MP-games in setup-mode & running-mode, but only for yourself.\r\n\r\n<li>On the game-page the player of the last-move is added in the game-info box below the board.\r\n</ul>', 'FAQ', 'Y', 'USED', '2012-09-07 01:52:31'),
(1032, 'Greek', 'SRC', 'Done', 'USED', '2005-09-01 00:27:19'),
(1033, 'Ukrainian', 'SRC', 'Done', 'USED', '2005-12-18 03:46:27'),
(1034, 'Catalan', 'SRC', 'Done', 'USED', '2006-03-13 22:10:12'),
(1035, 'Chinese (Simplified) (utf-8)', 'SRC', 'Done', 'USED', '2006-03-15 09:49:39'),
(1037, 'Accounts cannot be deleted.  There are lots of reasons for this.\r\n\r\nIf someone has played ranked games it would involve deleting the records of every game that other DGS members had against that player. Their ranks would then have to be adjusted accordingly, as would the ranks of anyone they had played subsequent to playing the deleted account player.\r\n\r\nIf that person had made entries in the Forum every entry by that person would have to be deleted, then someone would have to adjust all related posts for \r\n \r\nUser profiles are not removed (for the same kinds of reasons).  They become marked as inactive, and disappear from the normal user list, but they are still there and can be displayed in the <home users.php?active=0>full user list</home>.', 'FAQ', 'Done', 'USED', '2012-07-06 10:33:59'),
(1038, 'Can I seek help during play?', 'FAQ', 'Done', 'USED', '2006-05-21 23:57:19'),
(1039, 'Before you continue reading you should be familiar with the more general view on this topic in the FAQ-entry:\r\n<ul>\r\n<li><home faq.php?read=t&cat=15#Entry298>Can I use aids when playing a game?</home>\r\n</ul>\r\n\r\nUsing books, solving Go problems, playing against computers and discussing games with other players are generally accepted and encouraged.  Forum discussions have shown that many (possibly all) players here do one or more of these things.  For a game in play, some, all, or none of these could cause concern for some opponents, and this issue is discussed below.\r\n\r\nMany players would consider it inappropriate to consult others or use certain aids for a game in progress.  Some players do not object to this, particularly for weak players.  Very few players would object to the use of books or an SGF editor whilst playing a game. Using a computer to choose your moves for you would be frowned upon by some players and would be accepted by others.  Using a computer to help understand the options and then choose a move yourself is different, but some players might not accept this as reasonable.\r\n\r\nThere are some strong views about these kinds of issues.  Some players would take different views if a game were ranked, unranked, or in a tournament.  In an unranked teaching game you might be encouraged to seek help during play.\r\n\r\nIf you intend to use a computer or consult others about which moves to make during a game it would be polite to notify your potential opponent in advance, as they may not wish to play in those circumstances.  If you have not asked about this in advance, and subsequently find you would like to use a computer or consult someone during play about possible moves, it would be considered polite by some players to ask first.  If your opponent objects, some people would feel the fair way to continue play would be to do it without such help, since the opponent did not know you intended to do this when they took the game.\r\n\r\n<i>Despite differences in opinion as to what kind of aids are legitimate to use during play (if any), there is a commonly shared view that you will not help yourself to improve if you do not understand and choose your own moves.</i>\r\n\r\nMuch of this is about custom and practice, culture, and what individual players feel is reasonable.\r\n\r\nHowever, in the interest of fair play we ask you to follow what is outlined in\r\n<ul>\r\n<li><i><home faq.php?read=t&cat=15#Entry298>Can I use aids when playing a game?</home></i>,\r\n</ul>\r\n\r\nand if you want to derive from that, to reach an agreement on different rules with your opponents before starting your game.\r\n\r\nSome players choose to put entries in their Bios to indicate what kinds of aids they use and what their expectations of other players are in this regard.\r\n\r\nIf you find this topic to be of interest, you may wish to look at some of the debates in the Forum, listed at the following URL, and on the page to which the link refers:\r\n<ul>\r\n<li><home forum/read.php?forum=2&thread=30915#30940>Using books or database</home>\r\n</ul>', 'FAQ', 'Done', 'USED', '2012-07-01 18:36:39'),
(4641, 'How to play a multi-player-game?', 'FAQ', 'Y', 'USED', '2012-09-07 01:52:31'),
(4639, 'What is Rengo and Pair-Go?', 'FAQ', 'Y', 'USED', '2012-09-07 01:49:07'),
(4640, 'Rengo and Pair-Go are special forms of Dragon\'s <home faq.php?read=t&cat=305#Entry307>Team-Go</home>.\r\n\r\n<b>Rengo</b> is the most common form of a <home faq.php?read=t&cat=305#Entry306>multi-player-game</home>.  Rengo is played by four players split into two teams, each with two players.\r\n\r\n<b>Pair-Go</b> is like Rengo with the additional restriction, that each team consist of one female and one male player.  Additionally, the playing rotation (order of moves) is regulated: Black lady, White lady, Black man, White man.\r\nIn handicap games, the rotation starts with the White lady playing first following the normal rotation: White lady, Black man, White man, Black lady, etc.\r\n\r\nFor more information, see: <http://senseis.xmp.net/?PairGo>', 'FAQ', 'Y', 'USED', '2012-09-07 01:49:07'),
(1042, 'How do I log out of my account?', 'FAQ', 'Done', 'USED', '2006-08-15 22:14:49'),
(1043, 'Click the \"Logout\" link at the bottom right on any page. If you are not active for 30 days, the authentication cookies set by the server will expire and log you out.', 'FAQ', 'Done', 'USED', '2006-08-15 22:14:49'),
(1044, 'This move leads to an illegal board position.', 'SRC', 'Done', 'USED', '2006-08-13 10:55:33'),
(1045, 'The time limit is too small, please choose at least one hour.', 'SRC', 'Done', 'USED', '2006-08-13 10:55:33'),
(1046, 'Sorry, you haven\'t enabled cookies in your browser.', 'SRC', 'Done', 'USED', '2006-08-13 10:55:33'),
(1047, 'Sorry, this turn has already been played.', 'SRC', 'Done', 'USED', '2006-08-13 10:55:33'),
(1048, 'Page not found. Please contact the server administrators and inform them of the time the error occurred, and anything you might have done that may have caused the error.', 'SRC', 'Done', 'USED', '2006-08-13 11:44:11'),
(1049, 'The userid contained illegal characters, only the characters a-z, A-Z, 0-9 and -_+ are allowed, and the first one must be a-z, A-Z.', 'SRC', 'Done', 'USED', '2006-08-13 11:44:11'),
(1050, 'Sorry, I couldn\'t find the post you wanted to show.', 'SRC', 'Done', 'USED', '2006-08-13 11:15:41'),
(1051, 'Sorry, I couldn\'t find the language or group you want to translate. Please contact the support.', 'SRC', 'Done', 'USED', '2006-08-13 11:15:41'),
(1053, 'This user is already an admin.', 'SRC', 'Done', 'USED', '2006-08-13 11:15:41'),
(1055, 'Status RSS Feed', 'SRC', 'Done', 'USED', '2006-08-13 16:36:26'),
(1059, 'Show', 'SRC', 'Done', 'USED', '2006-08-13 10:52:33'),
(1060, 'Hide', 'SRC', 'Done', 'USED', '2006-08-13 10:52:33'),
(1067, 'Native Language', 'SRC', 'Done', 'USED', '2006-08-13 11:26:16'),
(1068, 'Language Competence', 'SRC', 'Done', 'USED', '2006-08-13 11:26:16'),
(1069, 'Below', 'SRC', 'Done', 'USED', '2006-08-13 11:26:16'),
(1073, 'Move numbering', 'SRC', 'Done', 'USED', '2006-08-13 11:00:32'),
(1074, 'Don\'t use numbers above 100', 'SRC', 'Done', 'USED', '2006-08-13 11:00:32'),
(1076, 'Private game notes', 'SRC', 'Done', 'USED', '2006-08-13 11:15:41'),
(1077, 'Small boards', 'SRC', 'Done', 'USED', '2006-08-13 11:00:32'),
(1078, 'Large boards from', 'SRC', 'Done', 'USED', '2006-08-13 11:00:32'),
(1079, 'Position', 'SRC', 'Done', 'USED', '2006-08-13 10:52:33'),
(1080, 'Height', 'SRC', 'Done', 'USED', '2006-08-13 10:52:33'),
(1081, 'Width', 'SRC', 'Done', 'USED', '2006-08-13 10:52:33'),
(1082, 'Send password', 'SRC', 'Done', 'USED', '2006-08-13 10:52:33'),
(1083, 'A standard placement of handicap stones has been requested.', 'SRC', 'Done', 'USED', '2006-08-13 11:00:32'),
(1084, 'Standard placement', 'SRC', 'Done', 'USED', '2006-08-13 10:49:39'),
(1085, 'Please mark dead stones and click %s\'done\'%s when finished.', 'SRC', 'Done', 'USED', '2006-08-13 10:47:58'),
(1086, 'Captures', 'SRC', 'Done', 'USED', '2006-08-13 10:47:58'),
(1087, 'Comments', 'SRC', 'Done', 'USED', '2006-08-13 10:49:39'),
(1088, 'Download sgf with all comments', 'SRC', 'Done', 'USED', '2006-08-13 10:49:39'),
(1089, 'Scoring', 'SRC', 'Done', 'USED', '2006-08-13 10:52:33'),
(1090, 'View move', 'SRC', 'Done', 'USED', '2006-08-13 10:52:33'),
(1091, 'Time remaining', 'SRC', 'Done', 'USED', '2006-08-13 10:52:33'),
(1092, 'Rated game', 'SRC', 'Done', 'USED', '2006-08-13 10:52:33'),
(1093, 'Show notes', 'SRC', 'Done', 'USED', '2006-08-13 10:52:33'),
(1094, 'Save notes', 'SRC', 'Done', 'USED', '2006-08-13 11:00:32'),
(1095, 'Hide notes', 'SRC', 'Done', 'USED', '2006-08-13 16:50:57'),
(1096, 'Welcome to the development version of the Dragon Go Server!', 'SRC', 'Done', 'USED', '2012-08-26 18:52:21'),
(1097, 'If you want to play on the real server, please visits <a href=\"http://www.dragongoserver.net\">http://www.dragongoserver.net</a> instead.', 'SRC', 'Done', 'USED', '2006-08-13 16:44:12'),
(5750, 'Hosted by', 'SRC', 'Done', 'USED', '2013-12-01 17:02:29'),
(5751, 'ELO Rating Min - Max#ratchg', 'SRC', 'Done', 'USED', '2013-12-01 17:02:29'),
(5752, 'Rating changes (ELO)', 'SRC', 'Done', 'USED', '2013-12-01 17:02:29'),
(1099, 'Have a look to the FAQ for more infos.', 'SRC', 'Done', 'USED', '2006-08-13 11:30:46'),
(1102, 'GoGoD database and encyclopaedia', 'LINKS', 'Done', 'USED', '2006-08-13 11:03:13'),
(1103, 'A large database of professional games', 'LINKS', 'Done', 'USED', '2006-08-13 11:00:32'),
(1104, 'The Magic of Go', 'LINKS', 'Done', 'USED', '2006-08-16 11:50:20'),
(1105, 'A weekly go column by Rob Van Zeijst.', 'LINKS', 'Done', 'USED', '2006-08-13 11:32:58'),
(1106, 'Answers list', 'SRC', 'Done', 'USED', '2006-08-13 11:30:10'),
(1108, 'Back to message', 'SRC', 'Done', 'USED', '2006-08-13 11:30:10'),
(1109, 'Preview', 'SRC', 'Done', 'USED', '2006-08-13 11:00:32'),
(1110, 'Receiver not found', 'SRC', 'Done', 'USED', '2006-08-13 11:30:10'),
(1111, 'Rating graph', 'SRC', 'Done', 'USED', '2006-08-13 11:30:10'),
(1112, 'Note for beginners: read the FAQ especially for your initial rank setting in your profile page.', 'SRC', 'Done', 'USED', '2006-08-13 11:30:10'),
(1113, 'Rated games', 'SRC', 'Done', 'USED', '2006-08-13 11:15:41'),
(5749, 'Sat', 'SRC', 'Done', 'USED', '2013-12-01 17:02:29'),
(5748, 'Fri', 'SRC', 'Done', 'USED', '2013-12-01 17:02:29'),
(1120, 'extra periods', 'SRC', 'Done', 'USED', '2006-08-13 11:40:49'),
(1121, 'Previous message', 'SRC', 'Done', 'USED', '2006-08-13 11:02:09'),
(1122, 'Next messages', 'SRC', 'Done', 'USED', '2006-08-13 11:03:13'),
(1124, 'Myself', 'SRC', 'Done', 'USED', '2006-08-13 11:33:54'),
(1125, 'Sort', 'SRC', 'Done', 'USED', '2006-08-13 11:32:58'),
(1126, 'Korea,North', 'SRC', 'Done', 'USED', '2006-08-13 11:03:40'),
(1127, 'Korea,South', 'SRC', 'Done', 'USED', '2006-08-13 11:32:58'),
(1128, 'Montenegro', 'SRC', 'Done', 'USED', '2006-08-13 11:32:58'),
(1129, 'Serbia', 'SRC', 'Done', 'USED', '2006-08-13 11:32:58'),
(1130, 'Earth', 'SRC', 'Done', 'USED', '2006-08-13 11:32:58'),
(1131, 'Sorry, you need at least %d vacation days to be able to start a vacation period.', 'SRC', 'Done', 'USED', '2006-08-13 11:26:16'),
(1132, 'What\'s new in the last update?', 'FAQ', 'Done', 'USED', '2012-08-26 18:17:33'),
(1311, 'Dragon alternative interfaces', 'FAQ', 'Done', 'USED', '2007-11-03 15:08:38'),
(1353, 'The <home show_games.php>Games page</home> actually is a page showing different views on all the games on the Dragon Go Server:\r\n<ul>\r\n<li><home show_games.php?uid=all><b>All running games</b></home>\r\n<li><home show_games.php?uid=all&finished=1><b>All finished games</b></home>\r\n<li><b>My running games</b> or that of another user: To see these games start on the corresponding <home faq.php?read=t&cat=12&e=203#Entry203>user-info page</home> -> Follow the link \"Running games\" from the right info-box\r\n<li><b>My finished games</b> of that of another user: To see these games start on the corresponding <home faq.php?read=t&cat=12&e=203#Entry203>user-info page</home> -> Follow the link \"Finished games\" from the right info-box\r\n<li>Show <b>Games I\'m observing</b>.\r\n<li>Show <home show_games.php?observe=all><b>All observed games</b></home>.\r\n</ul>\r\n\r\nThe configuration of table columns for the different views can be very different:  the \"<i>all</i>\" and \"<i>user-specific finished games</i>\" use the same set of added and hidden columns.  If you add a column that is shared by both views, the column is added in both (same is true for removing a shared column).  The same applies for the \"<i>all</i>\" and \"user-specific running games\".\r\n\r\nHere\'s a brief explanation of all used <b>table columns</b> shared or differently used for all the six views described above.  Pick out the ones, you are interested in (they are not strictly ordered but grouped a bit to avoid redundancy):\r\n<ul>\r\n<li><b>ID:</b> The game id.\r\n<li><image info.gif> (<b>game information</b>): Linked to <home faq.php?read=t&cat=18&e=320#Entry320>game-info page</home>.  If the game is a <home faq.php?read=t&cat=329#Entry314>shape-game</home> an extra-icon (<image shape.gif>) is shown.  With <home faq.php?read=t&cat=12&e=355#Entry355>JavaScript enabled</home>, hovering over the icons shows a thumbnail of the current game (or initial shape) with black and white moves and prisoners.\r\n<li><image game_comment.gif> (<b>hidden game comments</b>): The presence of this icon shows, that there are hidden comments for a finished game.\r\n<li><image sgf.gif> (<b>attached SGF</b>): the presence of this icon signals, that there are <home faq.php?read=t&cat=18&e=410#Entry410>attached SGFs</home> stored for the game\r\n<li><b>sgf:</b> A link to download the game (without all comments).\r\n\r\n<li><b>#Observers:</b> Number of observers for observed games.\r\n<li><b>#Mine:</b> Number of my games, that are observed.\r\n<li><b>Notes:</b> The starting part of your <home faq.php?read=t&cat=365&e=229#Entry229>private notes</home> optionally stored for a game.\r\n\r\n<li><b>Black name, White name, Opponent:</b> The full name of a player.\r\n<li><b>Black userid, White userid, Userid:</b> The login-ID (nickname) of a player.\r\n<li><b>Black start rating, White start rating, Start rating:</b> The rating of a player before the game has started.\r\n<li><b>Black end rating, White end rating, End rating:</b> The new calculated rating of a player after a game has finished.\r\n<li><b>Black rating, White rating, Rating:</b> The current rating of a player.\r\n<li><b>Black rating diff, White rating diff, Rating Diff:</b> The rating difference applied on a player for a finished game.\r\n<li><b>Colors:</b> Showing a <home faq.php?read=t&cat=18#Entry208>two-colored stone icon</home> for the running games of myself or another user.\r\n<li><b>Color:</b> Showing a single-colored stone indicating the players color in the game, for which the game is shown (myself or another user).\r\n\r\n<li><b>GameType:</b> The <home faq.php?read=t&cat=357&e=387#Entry387>game-type</home>.\r\n<li><b>Size:</b> The size of the goban for the game.\r\n<li><b>Handicap:</b> The number of handicap stones for the game.\r\n<li><b>Komi:</b> The komi for the game.\r\n<li><b>Moves:</b> The number of moves made so far in the game.\r\n\r\n<li><b>Score:</b> The result of the game (won or lost by white or black or jigo). Valid formats for score are:\r\n  <ul>\r\n  <li>B+R or W+R : Black or White won by Resignation,\r\n  <li>B+T or W+T : Black or White won by timeout,\r\n  <li>B+&lt;num> or W+&lt;num> : Black or White won by points &lt;num>-value, e.g. B+0.5, W+17 or\r\n  <li><home faq.php?read=t&cat=3#Entry240>Jigo</home>\r\n</ul>\r\n\r\n<li><b>Win?:</b> Shows an icon for a players win-status (myself or for another user):\r\n<ul>\r\n  <li><image yes.gif> (a green tickmark): won game\r\n  <li><image no.gif> (a red X-cross): lost game\r\n  <li><image dash.gif> (a blue dash): jigo\r\n</ul>\r\n\r\n<li><b>Rated:</b> Indicating, if the game is rated or unrated.\r\n\r\n<li><b>Last Move:</b> Date of the last move in the game.\r\n<li><b>End date:</b> Date of the last move in a finished game.\r\n<li><b>Opponents Last Access:</b> Date of opponents last access in running games for myself or another user.\r\n<li><b>Weekend Clock:</b> Showing the chosen <home faq.php?read=t&cat=56#Entry143>Weekend clock option</home> for the game.\r\n<li><b>Prio:</b> show optional <home faq.php?read=t&cat=18&e=364#Entry364>game priority</home> a user can set for own running games.\r\n<li><b>My time remaining, Opponent time remaining:</b> Time remaining for myself or opponent of my running games.\r\n</ul>', 'FAQ', 'Y', 'USED', '2012-08-26 18:17:33'),
(1352, 'What are the items on the Games page?', 'FAQ', 'Y', 'USED', '2012-08-26 18:17:33'),
(1309, 'Are there any key shortcuts defined on Dragon?', 'FAQ', 'Y', 'USED', '2012-08-26 18:17:33'),
(1310, 'Yes, on some of the links and buttons on Dragon there are key shortcuts defined. When you place the mouse cursor over a link without moving it for a short time, a preset \"accesskey\" is shown in a hovering text, e.g. <tt>[&amp;s]</tt> over the \"<i>Status</i>\" link in the main menu.\r\n\r\nHow the shortcut is activated depends on your operating system. On many systems, you use the the <tt>Alt</tt>-key in combination with the \"accesskey\", e.g. <tt>Alt-s</tt> to access the Status page link. On Mac OS you would use <tt>Control-s</tt> instead.\r\n\r\n<b>Key shortcuts</b> defined as access keys are (the underline character is used as mnemonic to help in memorizing it):\r\n<ul>\r\n<li><tt> s </tt>: main menu <u>S</u>tatus\r\n<li><tt> r </tt>: main menu waiting <u>R</u>oom\r\n<li><tt> p </tt>: main menu user info (<u>P</u>layer)\r\n<li><tt> b </tt>: main menu messages (mail <u>B</u>ox)\r\n<li><tt> m </tt>: main menu send a <u>M</u>essage\r\n<li><tt> i </tt>: main menu <u>I</u>nvite\r\n<li><tt> n </tt>: main menu <u>N</u>ew Game\r\n<li><tt> u </tt>: main menu <u>U</u>sers\r\n<li><tt> c </tt>: main menu <u>C</u>ontacts\r\n<li><tt> g </tt>: main menu <u>G</u>ames\r\n<li><tt> h </tt>: main menu faq / <u>H</u>elp\r\n<li><tt> d </tt>: main menu <u>D</u>ocs\r\n<li><tt> f </tt>: main menu <u>F</u>orums\r\n<li><tt> v </tt>: main menu features (<u>V</u>oting)\r\n\r\n<li><tt> o </tt>: log<u>O</u>ut\r\n\r\n<li><tt> l </tt>: bottom bar trans<u>L</u>ate (for translators only)\r\n\r\n<li><tt> 1-9 </tt>: walk through the links at the bottom of the page (from left to right and from top to bottom)\r\n\r\n<li><tt> x </tt>: e<u>X</u>ecute (if there is a submit button on a page)\r\n<li><tt> w </tt>: previe<u>W</u> (if there is a preview button on a page)\r\n<li><tt> e </tt>: filter-s<u>E</u>arch (if there is search button on a page)\r\n<li><tt> z </tt>: filter-reset (if there is reset button on a page)\r\n<li><tt> &gt; </tt>: next page (if a list has multiple pages)\r\n<li><tt> &lt; </tt>: previous page (if a list has multiple pages)\r\n</ul>', 'FAQ', 'Y', 'USED', '2012-08-26 18:17:33'),
(1295, 'Duplicated messages and Duplicated posts', 'FAQ', 'Done', 'USED', '2010-09-06 07:58:42'),
(1296, 'The Duplicated moves bug is fixed.\r\n\r\nThe related \"Duplicated messages\" and \"Duplicated posts\" problems are still on our desktop:\r\n\r\nAll these problems are mainly based on the fact that the user had clicked two (or more) times on a submit button. For instance, if the net suddenly slows down when you click on the Post button you will not receive an immediate response. This may let you think that you have not or have badly clicked the Post button. Then when you hit it a second time, you have sent your post a second time!\r\n\r\n<b>A hint:</b> In such a case, try first to open an other window to keep your message or post as it is. Then have a look at your \"sent message\" box or at the forum list. Watch the time the pages need to show up. Whatever the speed of the net is when you\'ll receive those pages, will reflect the fact that you have (or not) sent your message or post.', 'FAQ', 'Done', 'USED', '2011-06-12 12:11:45'),
(1324, 'What are the items on the Users page?', 'FAQ', 'N', 'USED', '2012-08-26 18:17:33'),
(1322, 'What are all those items on the page showing a single message?', 'FAQ', 'Y', 'USED', '2012-08-26 18:17:33');
INSERT INTO `TranslationTexts` (`ID`, `Text`, `Type`, `Translatable`, `Status`, `Updated`) VALUES
(1323, 'When viewing a single message, there are several fields presented to you:\r\n<ul>\r\n<li><b>Date:</b> The message creation date.\r\n<li><b>From or To:</b> The message correspondent (sender or recipient).\r\n<li><b>Subject:</b> Subject of the message.\r\n<li><b>Message:</b> The main text body of the message.\r\n<li><b>Folder:</b> The current folder the message is stored in.\r\n</ul>\r\n\r\nBelow the \"Message\" header, there are none, one or two icons shown, that allow you to  walk within the message chain:\r\n<ul>\r\n<li>If there is no icon shown, then the message has neither previous nor next message in the message thread.\r\n<li>Clicking on the envelope icon with an arrow from the left, you go to the previous message.\r\n<li>Clicking on the envelope with an arrow from the right, you go to the next message.\r\n</ul>\r\n\r\nThere\'s a selectbox below the message that allows you to move the message into another folder.\r\n\r\nTo send an answer (reply) to the current message there\'s a form at the page bottom with an additional Subject and Message input field. After writing your reply, you can <b>preview</b> how the message looks like (with all the HTML and special Dragon tags) without sending it. When you are done with checking your message, you can send it with a click on the \"Send reply\" button.', 'FAQ', 'Y', 'USED', '2012-08-26 18:17:33'),
(1300, 'A game is rated and will <home faq.php?read=t&cat=105#Entry149>affect your ratings</home>, if all of the following conditions are met:\r\n<ul>\r\n<li>The game must be started as a rated game, whether offered in the waiting room or by invitation.\r\n<li>Both players must have a DGS rating when the game has started. </ul>\r\n\r\n<i>DGS rating</i> does not mean <i>Rank info</i>, but the rating managed by Dragon.  You can set an <home faq.php?read=t&cat=105#Entry50>initial rating</home> in your user profile.  Be careful choosing your rating as it can normally not be changed once you set it and you played a rated game.  If your strength changed in a big step (over 6k of rating difference), then you may ask for a rating-change following the instructions of the <home edit_rating.php>Change DGS-rating and rank-info page</home>.', 'FAQ', 'Done', 'USED', '2012-07-14 12:06:17'),
(1351, 'In your <home edit_profile.php>user profile page</home> you can use the <b>Move numbering</b> option to accomplish that goal.\r\n\r\nSome notes around this feature:\r\n<ul>\r\n<li>It can make it easier for you to visualize how the game developed recently and to see what your strategy might have been. This goal can also be achieved using <home faq.php?read=t&cat=365#Entry229>private game notes</home>.\r\n<li>It could help to avoid silly mistakes during ko fights.\r\n<li>Numbers might make the display too confusing, so it\'s possible to deactivate this feature.\r\n<li>Numbers for moves on DGS always start with \"1\". The placing of handicap stones is also numbered.\r\n</ul>\r\n\r\nWith an activated option, the last \"N\" moves are marked with their corresponding move number. However, the last move is always marked with a circle, with or without using the option.\r\n\r\nYou can <b>deactivate</b> the option in your user profile by specifying \"0\" moves in the input element to the right of the option.\r\n\r\nTo activate choose the number of last moves \"N\" you want to see with a move number.  Additionally, you can activate the checkbox \"<i>Don\'t use numbers above 100</i>\": then move numbers greater than 100 are truncated to the two rightmost digits (move number modulo 100).\r\n\r\nThe checkbox \"<b><i>Show numbers only on Hover</i></b>\" controls if the move numbering is replaced with a hover text giving the move number when you move the mouse cursor over a stone.  This hovering option is most useful for users with really small screens (e.g. handheld devices like Palm, etc.) for which stone sizes of 5 or 7 have been chosen: at this size, the numbers on the stones are very hard to read, and more, they make all the stones gray :(\r\n\r\nThe checkbox \"<b><i>Relative numbering</i></b>\" controls if the shown move-numbers always start with \"1\".\r\n\r\nThe checkbox \"<b><i>Reverse numbering</i></b>\" controls if the move-numbers are shown in reverse order.\r\n\r\nExamples for move-numbering options with \"N = 3\" for move numbering.  Assume you have a game with 51 moves played so far and you view the black move #40 of that game, then the numbers on the stones are ...\r\n<ul>\r\n<li>with <i>Relative</i> OFF, <i>Reverse</i> OFF =&gt; 37, 38, 39, <image board/bm.gif> (move #40) - this is a good choice if you want to print the game and use move-numbering\r\n<li>with <i>Relative</i> OFF, <i>Reverse</i> ON =&gt; 14, 13, 12, <image board/bm.gif> (move #40)\r\n<li>with <i>Relative</i> ON, <i>Reverse</i> OFF =&gt; 1, 2, 3, <image board/bm.gif> (move #40) - this seems to be the most <b>intuitive</b> choice\r\n<li>with <i>Relative</i> ON, <i>Reverse</i> ON =&gt; 3, 2, 1, <image board/bm.gif> (move #40)\r\n</ul>\r\n\r\nThe checkbox \"<b><i>Mark Last Move Capture</i></b>\" if enabled additionally marks the empty board points with a cross-icon (<image board/x.gif>) if the last move captured some stones.  The coordinates of the captured stones of the last move are also shown to the left of the board in a table with title \"<i>Last Move Capture</i>\".\r\nThis option may be of help to remind you of an ongoing ko-fight, but still it is probably easier and more reliable to use the <home faq.php?read=t&cat=365#Entry229>private game notes</home> to make yourself aware of an ongoing ko (because a ko can be non-immediate not necessarily happening just on the last move).', 'FAQ', 'Changed', 'USED', '2012-12-08 12:59:56'),
(1350, 'Can the last N game moves be marked or numbered somehow?', 'FAQ', 'Done', 'USED', '2007-11-03 15:08:38'),
(1348, 'I forgot my password. What can I do?', 'FAQ', 'Done', 'USED', '2010-05-21 19:12:24'),
(1349, 'There are two scenarios. When you have entered a <i>valid</i> email in your account, go to the login page and follow the link \"<home forgot.php>Forgotten password</home>\". On that page you need to enter your login-ID and Dragon will send a new password to the email you entered in the according account. Then login in with the new password and change your password. Please don\'t forget it this time!\r\n\r\nIf the second scenario applies for you, having no valid email in your account, you can take the following emergency procedure:\r\nLogin as guest and post a \"<em>request for a new password</em>\" in the <home forum/list.php?forum=2>Support forum</home> providing your login-ID (userid) AND a valid(!) email to which the new password will be sent.\r\nForum posts made by guests are not shown, because they have first to be approved by a forums admin. One of the Dragon administrators then creates another password for your account, which will be sent to the email you provided. It can take some hours up to several days. This depends on the administrators checking Dragon. They normally don\'t look every minute, if there is something to do for them ;)\r\n\r\nWhen you receive the new password per mail, login to Dragon and for security reasons immediately change your password. Don\'t forget it this time ;-)\r\n\r\nIf you don\'t receive the new password, creating another password can only be done by an admin. So be careful to use a valid emailaddress.\r\n\r\nAs final workaround solution, you might register a new account. But that is something you shouldn\'t do lightly.', 'FAQ', 'Done', 'USED', '2012-07-14 17:05:39'),
(1338, 'Where can I store private notes about one of my games?', 'FAQ', 'Done', 'USED', '2007-11-03 15:08:38'),
(1312, 'Does Dragon support GTP or GMP?', 'FAQ', 'Done', 'USED', '2010-05-21 18:56:04'),
(1313, 'No. The <http://www.lysator.liu.se/~gunnar/gtp/ |GTP (Go Text protocol)> or <http://www.britgo.org/tech/gmp.html |GMP (Go modem protocol> are not supported by Dragon.\r\n\r\nHowever, you may have a look on the other interfaces (RSS, WAP, quick-play suite) provided by Dragon, that are discussed in this category <home faq.php?read=t&cat=215>alternative interfaces on Dragon</home>.', 'FAQ', 'Changed', 'USED', '2012-09-02 16:28:08'),
(1314, 'Does Dragon support WAP?', 'FAQ', 'Done', 'USED', '2010-05-21 18:56:04'),
(1315, 'Yes, partly. The status page can be retrieved using WAP.\r\n\r\nThe URL to use is: <http://www.dragongoserver.net/wap/status.php>\r\n\r\nBefore you can use that, you have to login yourself by one of the following ways: <ul>\r\n<li>Let the server identify you by your cookies: <http://www.dragongoserver.net/wap/status.php>\r\n<li>Ask for a precise user authentification: <http://www.dragongoserver.net/wap/status.php?userid=guest>\r\n<li>Force your complete identification via URL: <http://www.dragongoserver.net/wap/status.php?userid=guest&passwd=guest><br>\r\n<color red>>>> Be aware that this method exposes your password !!! <<<</color>\r\n</ul>\r\nEither way, you will have a button to change your identification.', 'FAQ', 'Done', 'USED', '2010-10-26 15:54:40'),
(1318, 'Does Dragon have a robot interface?', 'FAQ', 'Done', 'USED', '2010-05-21 18:56:04'),
(1319, 'Yes.  You are able to use the <b>quick_status.php</b> and <b>quick_do.php</b> (or deprecated <b>quick_play.php</b>) to:\r\n<ul>\r\n<li>connect your user (or set the cookies)\r\n<li>use <tt>quick_status.php</tt> to retrieve new bulletins, your status-games, your new messages and multi-player-games in setup-mode\r\n<li>use <tt>sgf.php</tt> to download games to move in\r\n<li>use <tt>quick_do.php</tt> (or the outdated <tt>quick_play.php</tt>) to do your moves or other actions.\r\n<li>disconnect\r\n</ul>\r\n\r\nFor a detailed specification how to use the new quick-suite <tt>quick_do.php</tt>, the <tt>quick_status.php</tt> page, the <tt>sgf.php</tt> download script and the old <tt>quick_play.php</tt>, please read the respective chapters in the <http://sourceforge.net/p/dragongoserver/dgs-main/ci/master/tree/specs/quick_suite.txt |Quick-Suite Specifications>.\r\n\r\nImportant notes about the different quick-suite scripts:\r\n<ul>\r\n<li><b>quick_do.php:</b> uses HTTP-POST requests and JSON-based output to control a variety of actions with object-handlers for: games, users, messages, folders, contacts, waiting-room, bulletins.  This interface will be extended on demand if more functions are required for mobile devices or other external clients.\r\n\r\n<li><b>quick_status.php</b>: A \"not-logged-in\" feature had been added.  You may obtain the list of games of any user by specifying the players ID ( <tt>?uid=...</tt> ) or his nick name ( <tt>?user=...</tt> ).\r\nFor instance: <tt>quick_status.php?user=guest</tt>\r\n\r\n<i>Important note:</i>\r\nBe aware that with this \"not-logged-in\" features, all times are GMT because DGS can\'t know YOUR timezone.  In fact, this assumes that you are logged in as guest.\r\n\r\n<li><b>quick_play.php:</b> You can only use <tt>quick_play</tt> to answer a move WITH coordinates by a move WITH coordinates.  This excludes all particular steps of the game like placing handicap stones, passing, resigning and scoring.  Either use the new <tt>quick_do.php</tt> quick-suite or use the conventional manual website Dragon interface to resolve these steps.\r\n</ul>\r\n\r\nA full session of \"quick\" features is, for instance:\r\n<code>\r\n  login.php?quick_mode=1&userid=$nam&passwd=$pwd\r\n  quick_status.php\r\n  sgf.php?gid=$gid&owned_comments=1&quick_mode=1\r\n  quick_do.php?obj=game&cmd=move&gid=$gid&move_id=0&move=q3\r\n</code>', 'FAQ', 'Changed', 'USED', '2013-08-09 22:50:26'),
(1320, 'What are the items on the Messages page?', 'FAQ', 'Y', 'USED', '2012-08-26 18:17:33'),
(1321, 'The <home list_messages.php>Messages page</home> shows some colored lines with the standard and your additional <home faq.php?read=t&cat=360#Entry137>message folders</home>. Selecting one folder allows you to browse the messages that are stored within the selected folder.\r\n\r\nThe messages are shown in a table listing with the following briefly explained columns:\r\n<ul>\r\n<li><b>Folder:</b> The folder of the message.\r\n<li><b>From or To:</b> The message correspondent (sender or recipient). Click on the user to show the message.\r\n<li><b>Subject:</b> Subject of the message.</li>\r\n\r\n<li><b>Column with message icon:</b> Clicking the icon will show the message. There are four different icons, that are also shown on the page showing a single message, allowing to walk the message thread chain. The meaning of the message icons are:\r\n  <ul>\r\n  <li><image msg.gif> (envelope without arrows): Message starting a thread with no follow ups.\r\n  <li><image msg_lr.gif> (envelope with arrow on the left): Message is an answer and has no follow up.\r\n  <li><image msg_rr.gif> (envelope with arrow on the right): Message started a thread and has a follow up message answering it.\r\n  <li><image msg_2r.gif> (envelope with arrows on left and right): Message that is an answer and has a follow up message.\r\n  </ul>\r\n\r\n<li><b>Date:</b> Message creation date.\r\n<li><b>Mark:</b> A checkbox that allows to select a message to perform some action on it (like moving it to another folder with the buttons below the table).\r\n</ul>\r\n\r\nThe button \"Marks toggle\" allows to toggle all the selected and unselected \"marks\" in the message list. If a message is selected, the \"Marks toggle\" switches it to be unselected and vice versa.', 'FAQ', 'Y', 'USED', '2012-08-26 18:17:33'),
(1298, 'The two white and black stone on top of each other (<image board/w_w.gif> / <image board/w_b.gif> / <image board/b_b.gif> / <image board/b_w.gif>) in the running games list indicate, what your color in the game is and who is to play next. When you place your mouse (cursor) over the image, a hover text is shown describing the meaning.\r\n\r\nThe color of the top stone shows <em>your</em> color.\r\nThe color of the stone below shows which color has to make the next move.\r\nSo, when both colors are the same, it\'s your turn!', 'FAQ', 'Done', 'USED', '2010-10-29 14:28:07'),
(1301, 'How can I add a new game offer in the waiting room?', 'FAQ', 'Done', 'USED', '2010-05-21 19:00:56'),
(1302, 'To create game offers in the waiting room, you have to open the <home new_game.php>New Game page</home>, which contains a page of simple game settings.  With the bottom-links you can choose how to create a new game offer:\r\n<ul>\r\n<li><home new_game.php?view=0>New Game</home> : <b>simple view</b> with a reduced set of game-settings meant for beginners\r\n<li><home new_game.php?view=1>New expert game</home> : <b>expert view</b> with the full set of game-settings\r\n<li><home new_game.php?view=3>New fair-komi game</home> : view to create a game-offer with a <home faq.php?read=t&cat=357&e=351#Entry351><b>fair-komi</b> game</home>\r\n<li><home new_game.php?view=2>New multi-player-game</home> : view to create a new <home faq.php?read=t&cat=305&e=306#Entry306><b>multi-player-game</b></home>\r\n<li><home list_shapes.php>Shapes</home> : to <home faq.php?read=t&cat=329&e=332#Entry332>start a <b>shape-game</b></home>\r\n<li><home templates.php>Templates</home> : to create a new game-offer from one of your <home faq.php?read=t&cat=17#Entry350>saved <b>templates</b></home>\r\n</ul>\r\n\r\nYou have to make some choices (in order of appearance), which are briefly explained here.  These are used for the new game views though not all are available for all views:\r\n<ul>\r\n<li><b>Number of games to add:</b> You can offer up to 10 games with the same setting. 1 is the default.\r\n<li><b>Board size:</b> You can choose between a size of 5 and 25. Standard sizes are 19x19, 13x13 and 9x9. Different sizes show different <home faq.php?read=t&cat=105#Entry121>impacts on the players\' ratings</home>.\r\n\r\n<li><b>Handicap type:</b> To choose the <home faq.php?read=t&cat=357#Entry97>handicap type</home> of the game, you have to choose one of <home faq.php?read=t&cat=357#Entry98>Conventional handicap, Proper handicap</home> or  <home  faq.php?read=t&cat=357#Entry212>Manual setting</home>.  If you choose Manual setting, you can adjust <home faq.php?read=t&cat=357&e=97#Entry97>handicap</home> and <home faq.php?read=t&cat=3#Entry9>komi</home>.  You must select from <home faq.php?read=t&cat=3#Entry21>Nigiri</home>, <home faq.php?read=t&cat=357#Entry111>Double</home>, Black or White.\r\n<li><b>Adjust Handicap:</b> On the expert view you can choose a reduced or increased number of handicap stones, and you set a minimum and maximum limit for the handicap stones.  This is most useful in combination with the <home faq.php?read=t&cat=357#Entry98>Conventional or Proper handicap type</home>.\r\n<li><b>Standard placement:</b> Choose this option, when you want a <home faq.php?read=t&cat=357#Entry129>standard placement</home> of potential handicap stones.\r\n<li><b>Adjust Komi:</b> On the expert view you can choose to reduce or increase the <home faq.php?read=t&cat=3#Entry9>Komi</home>.  With the option \"<i>Jigo mode</i>\" you can choose if you want to enforce or forbid <home >Jigo</home>.  This is most useful in combination with the <home faq.php?read=t&cat=357#Entry98>Conventional or Proper handicap type</home>.\r\n\r\n<li><b>Main time:</b> Choose the <home faq.php?read=t&cat=56#Entry85>main time</home> for your game. Then choose one of the overtime settings: <home faq.php?read=t&cat=56#Entry57>Japanese byo-yomi</home>, <home faq.php?read=t&cat=56#Entry58>Canadian byo-yomi</home> or <home faq.php?read=t&cat=56#Entry59>Fischer time</home>.<br> Choosing \"0\" as overtime is possible. In that case, the game only runs with an absolute time. When it\'s up, the game is over.\r\n<li><b>Clock runs on weekends:</b> <home faq.php?read=t&cat=56#Entry143>Weekend setting</home> for the game.\r\n\r\n<li><b>Rated game:</b> Specify, if your game should be a rated game or not. To get rated game, also choose the option \"Require rated opponent\" and be sure that the other <home faq.php?read=t&cat=357#Entry209>conditions</home> are met.\r\n<li><b>Require rated opponent:</b> Choose this option, if you require an opponent with a valid rating.  Additionally you can choose the rating range for your opponent.\r\n<li><b>Min. rated finished games:</b> With this option you can enforce, that your opponent can only join your game offer, if he or she has a minimum amount of rated finished games.\r\n<li><b>Accept same opponent:</b> With this option you can prevent, that the same user joins your game offer more than once.\r\nSee <home faq.php?read=t&cat=357&e=392#Entry392>How can I prevent that the same user joins my waiting room game twice?</home>\r\n\r\n<li><b>Comment:</b> An optional free text comment, you can give about your game. For example: \"teaching game offered\" and \"please make comments on your moves\".\r\n</ul>\r\n\r\nTo get a rated game, be sure that all the <home faq.php?read=t&cat=357#Entry209>conditions for getting a rated game</home> are met.  You may want to choose the option <i>Require rated opponent</i> to ask for opponents within a certain rating range.', 'FAQ', 'Changed', 'USED', '2012-12-25 15:55:07'),
(1297, 'What is the meaning of the two-colored stones icon in my running games list?', 'FAQ', 'Done', 'USED', '2010-05-21 19:00:56'),
(1156, 'What are Email notifications?', 'FAQ', 'Done', 'USED', '2007-04-24 22:19:24'),
(1157, 'The Email notification process starts when an event (a message, a move or both) of the type you have selected in your profile settings occurs.\r\nIf you have not visited the site before 30 minutes elapses, an email is sent to the address entered in your profile\'s Email field.\r\nOnly one email will be sent to notify you that messages or moves are waiting for you since your last visit. Events occurring after this email is sent but before re-visiting the site, will not trigger another email.\r\n\r\nNote: If you use a program (e.g. robot) to scan some types of DGS pages, you may not receive the notifications you expect, because DGS will interpret each page call by the program as a visit to the site.\r\nThe pages that influence your \"visit\" status are those that adjust your \"Last access\" time (rule of thumb: typically, most of the pages where \"Logged in as: <strong>userid</strong>\" appears will affect the <strong>userid</strong>\'s account).\r\nNaturally, this also applies to humans.', 'FAQ', 'Done', 'USED', '2012-09-02 00:10:02'),
(1158, 'Why are cookies needed?', 'FAQ', 'Done', 'USED', '2007-04-24 22:19:24'),
(1159, 'The authentication cookies are needed to recognize you. DGS uses the cookies sent by your browser to identify who has called a page.', 'FAQ', 'Done', 'USED', '2007-04-24 22:19:24'),
(1707, '* bulletins, MPGs, shape-games, new-game, templates, faq-search, bookmarks, features, surveys, goban-editor, quick-do-suite', 'FAQ', 'N', 'USED', '2012-08-26 18:17:33'),
(4626, 'Overview of release DGS 1.0.15 (08-June-2012)', 'FAQ', 'N', 'USED', '2012-09-02 16:39:42'),
(4627, 'It\'s recommended to get an detailed <b>overview of the new and changed features</b> first by reading the document <home news.php#DGS_1_0_15>Release Notes 1.0.15</home>. You\'ll find that page also in the <home docs.php>Docs menu</home> (now available from the main-menu). There are various hints in there that are not repeated here.\r\n\r\nFor some major changes and recommendations you will find <b>additional information</b> and links in the FAQ-entries in the current FAQ-category (\"<home faq.php?read=t&cat=160#Entry160>What\'s new in the last update?</home>\").\r\n\r\nHowever, if you are experiencing a strange behaviour of DGS it might be a <b>bug</b>. Then don\'t hesitate to <home faq.php?read=t&cat=16#Entry131>report the bug</home> in the forum as other users might have the same problem and wonder about it.\r\n\r\nThe topic \"<home faq.php?read=t&cat=160#Entry275>Known bugs</home>\" in this FAQ-category lists <b>known bugs of this release</b> that have been freshly identified and not yet been fixed and uploaded to the server.', 'FAQ', 'N', 'USED', '2012-09-02 16:39:42'),
(1706, 'New feature XYZ', 'FAQ', 'N', 'USED', '2012-08-26 18:17:33'),
(1343, 'If you want to improve, you might ask someone stronger to play a teaching game with you, or find someone who is willing to play with you and discuss the game.\r\n\r\n<ol>\r\n<li>For that you may add a post with subject \"<b>request for a teaching game</b>\" in the <home forum/list.php?forum=6>forum to look for opponents</home>, or ask there for other resources or places where to get one.\r\n\r\n<li>You can <home faq.php?read=t&cat=357#Entry210><b>set up a game offer</b></home> in the waiting room, so that other players can join it.  Post a game with \"<tt>request teaching game</tt>\" as comment.  Restricting the level of the teacher would probably be a good idea. To accomplish that, use the option \"<i>Require Rated Opponent</i>\" and choose a rating range.\r\n\r\n<li><a href=\"http://www.dragongoserver.net/userinfo.php?uid=9284\">The Go Teacher</a> is an account that specialises in teaching go.  Teachers provide comments during play and the game may be reviewed when finished.  If you wish to start a game with The Go Teacher, please read the information about settings carefully.  \r\n</ol>', 'FAQ', 'Changed', 'USED', '2007-12-10 02:05:47'),
(1750, 'What is The Go Teacher?', 'FAQ', 'Done', 'USED', '2010-05-21 19:19:27'),
(1751, 'Here on Dragon there is a shared game account <b><user 9284></b> with some friendly folks that can play a teaching game with you. Read their bio entries \"<i>Who is Sensei</i>\", \"<i>How to</i>\" and \"<i>Advice to students</i>\" to see if you meet the conditions and how to get in contact with them. Then you can start a teaching game using their game preferences as described in the bio entries.', 'FAQ', 'Y', 'USED', '2012-08-26 18:17:33'),
(1342, 'How can I get a teaching game?', 'FAQ', 'Done', 'USED', '2007-11-03 15:08:38'),
(1345, 'Follow one of this links to view a list of players \"<em>online</em>\" on Dragon:\r\n<ul>\r\n<li><home opponents.php?ssf4=1&sf14=10&sf14tu=64&sort1=X_Lastaccess&desc1=1>My opponents being online (during the last 10 minutes)</home>\r\n<li><home users.php?sf14=5&sf14tu=64&sort1=P.Lastaccess&active=0>Players online (during the last 5 minutes)</home>\r\n</ul>\r\n\r\nThe number of minutes to search for can be adjusted in the \"Last access\"-filter.\r\n\r\nThough the above links provide what is asked for, nobody is \"<em>online</em>\" on the Dragon Go Server. Dragon only receives page requests and delivers them back to the requesting user. There is no active connection between a player and the server. What comes close to it being \"<em>online</em>\" is the <b>last access</b> time of a player.\r\n\r\nOther places, where the <i>online</i>-status and/or <i>last-access</i> is shown on Dragon:\r\n<ul>\r\n<li>column \"<i>(User online)</i>\" on the <home status.php>status page</home> shows the <image online.gif>-icon if a user was \"<i>online</i>\" within the last 10 minutes.  The tooltip of the icon shows the time when the opponent was last accessing the site (when hovering over the icon), e.g. \"&lt;3 mins\".\r\n\r\n<li><b>Last access</b> on the <home userinfo.php>User info page</home> of a certain user\r\n<li>check column <b>Opponent\'s last access</b> on running games table of a certain user: <home status.php>Status page</home> -&gt; <home show_games.php?uid=all>Running games</home> -&gt;  (column may need to be added and sorted).\r\n</ul>', 'FAQ', 'Changed', 'USED', '2007-12-10 02:09:38'),
(1344, 'How can I see who is currently online on the server?', 'FAQ', 'Done', 'USED', '2007-11-03 15:08:38'),
(1210, 'Edit biographical info', 'SRC', 'Done', 'USED', '2006-08-19 14:02:46'),
(1211, 'Move', 'SRC', 'Done', 'USED', '2006-08-19 14:03:03'),
(1212, 'Welcome to the %s!', 'SRC', 'Done', 'USED', '2006-08-19 14:02:57'),
(1213, 'Welcome to %s, a %sfree%s server for playing %sgo%s, where the games tends to \'drag on\'.', 'SRC', 'Done', 'USED', '2006-08-19 14:02:57'),
(1214, 'Active users', 'SRC', 'Done', 'USED', '2006-08-19 14:02:46'),
(1218, 'Background', 'SRC', 'Done', 'USED', '2006-08-19 14:02:46'),
(1219, 'Red', 'SRC', 'Done', 'USED', '2006-08-19 14:02:46'),
(1220, 'Green', 'SRC', 'Done', 'USED', '2006-08-19 14:02:46'),
(1221, 'Blue', 'SRC', 'Done', 'USED', '2006-08-19 14:02:46'),
(1222, 'Alpha', 'SRC', 'Done', 'USED', '2006-08-19 14:02:46'),
(1223, 'Show on status page', 'SRC', 'Done', 'USED', '2006-08-19 14:02:46'),
(1224, 'Foreground', 'SRC', 'Done', 'USED', '2006-08-19 14:02:46'),
(1225, 'Folders adjusted!', 'SRC', 'Done', 'USED', '2006-08-19 14:02:46'),
(1226, 'Update', 'SRC', 'Done', 'USED', '2006-08-19 14:02:46'),
(1227, 'New password sent!', 'SRC', 'Done', 'USED', '2006-08-19 14:02:57'),
(1228, 'Statistics graph', 'SRC', 'Done', 'USED', '2006-08-19 14:03:11'),
(1234, 'Threads', 'SRC', 'Done', 'USED', '2006-08-19 19:02:02'),
(1235, 'Back to thread', 'SRC', 'Done', 'USED', '2006-08-19 19:02:02'),
(1237, 'Search', 'SRC', 'Done', 'USED', '2006-08-19 19:02:02'),
(1238, 'Toggle forum moderator', 'SRC', 'Done', 'USED', '2006-08-19 19:04:44'),
(1241, 'Moderating', 'SRC', 'Done', 'USED', '2006-08-19 19:02:02'),
(1243, 'by', 'SRC', 'Done', 'USED', '2006-08-19 19:02:02'),
(1244, 'Awaiting<br>approval', 'SRC', 'Done', 'USED', '2006-08-19 19:02:02'),
(1245, 'Hidden', 'SRC', 'Done', 'USED', '2006-08-19 19:02:02'),
(1246, 'edited', 'SRC', 'Done', 'USED', '2006-08-19 19:02:02'),
(1251, 'Approve', 'SRC', 'Done', 'USED', '2006-08-19 19:02:02'),
(1252, 'Reject', 'SRC', 'Done', 'USED', '2006-08-19 19:02:02'),
(1253, 'Post', 'SRC', 'Done', 'USED', '2006-08-19 19:02:02'),
(1254, 'Posts pending approval', 'SRC', 'Done', 'USED', '2006-08-19 19:02:02'),
(1255, 'Forum list', 'SRC', 'Done', 'USED', '2006-08-19 19:02:02'),
(1256, 'Moderated', 'SRC', 'Done', 'USED', '2006-08-19 19:02:02'),
(1257, 'Thread', 'SRC', 'Done', 'USED', '2006-08-19 19:02:02'),
(1258, 'Author', 'SRC', 'Done', 'USED', '2006-08-19 19:02:02'),
(1259, 'Posts', 'SRC', 'Done', 'USED', '2006-08-19 19:02:02'),
(1260, 'Last post', 'SRC', 'Done', 'USED', '2006-08-19 19:02:02'),
(1261, 'Sorry, you are not allowed to post on the forum', 'SRC', 'Done', 'USED', '2006-08-19 19:02:02'),
(1262, 'This post is subject to moderation. It will be shown once the moderators have approved it.', 'SRC', 'Done', 'USED', '2006-08-19 19:02:02'),
(1263, 'Revision history', 'SRC', 'Done', 'USED', '2006-08-19 19:02:02'),
(1266, 'You can look at it as kind of play-by-email, where a web-interface is used to make the board look prettier. To start playing you should first get yourself an <a href=\"register.php\">account</a>, if you haven\'t got one already. Thereafter you could <a href=\"edit_profile.php\">edit your profile</a> and <a href=\"edit_bio.php\">enter some biographical info</a>, especially the fields \'Open for matches?\', \'Rating\' and \'Rank info\' are useful for finding opponents. Next you can study the <a href=\"users.php\">user list</a> and use the <a href=\"forum/index.php\">forums</a> to find suitable opponents to <a href=\"message.php?mode=Invite\">invite</a> for a game.', 'SRC', 'Done', 'USED', '2006-08-20 20:51:06'),
(1267, 'Search result', 'SRC', 'Done', 'USED', '2006-08-20 19:23:12'),
(1299, 'Why is my game not rated?', 'FAQ', 'Done', 'USED', '2007-11-03 15:08:38'),
(1270, 'All waiting games', 'SRC', 'Done', 'USED', '2013-01-11 14:41:46'),
(1271, 'Suitable waiting games', 'SRC', 'Done', 'USED', '2013-01-11 14:41:46'),
(1273, 'A folder must be empty to be deleted!', 'SRC', 'Done', 'USED', '2006-08-28 23:06:34'),
(1274, 'day#short', 'SRC', 'Done', 'USED', '2006-08-28 21:32:31'),
(1275, 'days#short', 'SRC', 'Done', 'USED', '2006-08-28 21:32:31'),
(1276, 'hour#short', 'SRC', 'Done', 'USED', '2006-08-28 21:32:31'),
(1277, 'hours#short', 'SRC', 'Done', 'USED', '2006-08-28 21:32:31'),
(6195, 'If the ranking-diff is >%s, you may ask for a reset of your rating confidence level to let the rating-system adjust faster.#ranknotes', 'SRC', 'Done', 'USED', '2014-10-30 00:43:09'),
(1279, 'Chinese (Traditional) (utf-8)', 'SRC', 'Done', 'USED', '2006-11-11 01:56:46'),
(1281, 'Hungarian', 'SRC', 'Done', 'USED', '2007-03-31 06:34:11'),
(1282, 'Dragon searching', 'FAQ', 'Done', 'USED', '2007-10-31 02:17:38'),
(1283, 'I found a go term not listed in the FAQ. What does it mean?', 'FAQ', 'Done', 'USED', '2007-10-31 02:17:38'),
(1284, 'The Dragon FAQ is not a full-fledged dictionary of all Go terms. Only the most commonly used Go terms are covered.\r\n\r\nSensei\'s Library provides a very useful list of <http://senseis.xmp.net/?GoTerms |Go terms>.\r\n\r\nOther useful links are in the General Infos section on the <home links.php>links page</home>.\r\n\r\nPlease feel free to ask questions in the <home forum/list.php?forum=5>Go discussion forum</home>.', 'FAQ', 'Done', 'USED', '2012-09-02 14:27:23'),
(1285, 'What happens with my rating on a draw (jigo)?', 'FAQ', 'Done', 'USED', '2007-10-31 02:17:38'),
(1286, 'When both players have an equal amount of points, which can happen when a non-fractional komi is used, then the game is a draw (<home faq.php?read=t&cat=3#Entry240>jigo</home>). In this case, the impact on the new calculated rating is equally shared.\r\n\r\nWhen the rating difference for a game is about zero, your new ratings will not be changed (+0.00 rating diff).\r\n\r\nHowever, When your rating difference is greater than zero, for example a 1 dan player plays a 10 kyu player on an even game or with less than 9 stones handicap and normal komi, then there is a difference in rating. Then also the winning propability changes and when the game ends in jigo, the lower ranked player gets an increase in rating while the higher ranked gets a decrease. The difference is just smaller compared to the case, when the lower ranked player would have won.', 'FAQ', 'Done', 'USED', '2007-11-03 15:08:38'),
(1287, 'What are the items on the User info page?', 'FAQ', 'Done', 'USED', '2012-08-26 18:17:33'),
(1288, 'Here is a brief explanation of the items in the table on top of the <home userinfo.php>user info page</home>. Some of these items are managed by Dragon, some can be changed on your <home edit_profile.php>user profile page</home>. <ul>\r\n<li><b>Name:</b> User\'s real name, or similar. Free text, that can be changed at any time.\r\n<li><b>Userid:</b> Whatever Login-ID the user created. Not editable.\r\n<li><b>Country:</b> Country, the user chosen to live in. That information can also be shown to other players on the users page and on the waiting room page.\r\n<li><b>Open for matches:</b> A free text field a user can use to tell if available for playing.\r\n<li><b>Activity:</b> A users <home faq.php?read=t&cat=12#Entry80>activity</home>\r\n<li><b>Rating:</b> The current rating of the user linked to the rating graph. Managed by Dragon.\r\n<li><b>Rank info:</b> A free text field, where a user can give more info about his rank, e.g. 2d AGA or 4d EGF.\r\n<li><b>Registration date:</b> Date when the user has created the account.\r\n<li><b>Last access:</b> Date of the users last access viewing a page or making a move.\r\n<li><b>Last quick access:</b> Date of the users last access using the <home faq.php?read=t&cat=215#Entry219>quick-suite</home> most likely from a mobile device.\r\n<li><b>Last move:</b> Date when the user made the last move in one of the games\r\n<li><b>Vacation days left:</b> How many days the user has left for going on vacation.\r\n<li><b>On vacation:</b> This field is only showed, when the user is on vacation and is showing how long his vacation will last.\r\n\r\n<li><b>Time zone:</b> Time zone of the user\r\n<li><b>User local time:</b> The time local to the user\r\n<li><b>Night time:</b> user-setting for <home faq.php?read=t&cat=56#Entry61>night or sleeping time</home>\r\n<li><b>Running games:</b> Number of running games\r\n<li><b>Finished games:</b> Number of finished games (rated and unrated).  A special link is added opening the finished games that ended in timeouts.\r\n<li><b>Rated games:</b> Number of finished rated games (= Won games + Lost games + <home faq.php?read=t&cat=3#Entry240>Jigo</home>)\r\n<li><b>Won games:</b> Number of won rated games\r\n<li><b>Lost games:</b> Number of lost rated games\r\n<li><b>Percent:</b> <home faq.php?read=t&cat=12#Entry81>Percentage</home> of \"Won games\" / \"Rated games\" giving winning-percentage on rated games. Also taking <home faq.php?read=t&cat=3#Entry240>Jigo</home> into account.\r\n\r\n<li><b>MP-games:</b> Number of own <home faq.php?read=t&cat=305&e=397#Entry397>multi-player-games in setup-mode and playing-mode</home>.  The field name is linked to a list of your running MP-games.\r\n<li><b>Reject win by timeout:</b> User-profile setting, see: <home faq.php?read=t&cat=18&e=352#Entry352>Can I reject a win of a game?</home>\r\n</ul>\r\n\r\nThe fields showing numbers of games have links to the corresponding games list. Click on the field name.\r\n\r\nBelow the info table, the user can show an optional <home edit_picture.php>user-picture</home> and <home edit_bio.php>biographical entries</home> with information about himself or herself or other information that he or she wants to share.', 'FAQ', 'Y', 'USED', '2012-08-26 18:17:33'),
(1289, 'How can I create a link to a users info page?', 'FAQ', 'Done', 'USED', '2009-07-05 14:33:39'),
(1290, 'Use the &lt;user&gt; Dragon tag.  Here are a few examples.\r\n\r\n<code><user 1></code>\r\n<user 1>\r\n\r\n<code><user =guest></code>\r\n<user =guest>\r\n\r\n<em>Note:\r\nWith a \"=\" it is the user-ID (handle) that must be entered.\r\nWithout a \"=\" it is the numeric ID of a user that must be entered.\r\n</em>', 'FAQ', 'Done', 'USED', '2009-07-05 15:26:46'),
(1291, 'How can I create a link to send a message to a user?', 'FAQ', 'Done', 'USED', '2009-07-05 14:35:22'),
(1292, 'Use the &lt;send&gt; Dragon tag. Here are a few examples.\r\n\r\n<code><send 1></code>\r\n<send 1>\r\n\r\n<code><send =guest></code>\r\n<send =guest>\r\n\r\n<em> NB!  The Guest user is only used as example here.  You can\'t actually send a message to the guest account.</em>\r\n\r\n<em>Note:\r\nWith a \"=\" it is the user-ID (handle) that must be entered.\r\nWithout a \"=\" it is the numeric ID of a user that must be entered.\r\n</em>', 'FAQ', 'Done', 'USED', '2010-04-02 18:23:28'),
(1748, 'Add a \"_\" (underscore) to the Dragon tag name at the right place in the tag-name.\r\n\r\nThese links will open in the current window:\r\n<code>\r\n<home faq.php>FAQ</home>\r\n<user 1>\r\n<send 1>\r\n<game 13339>\r\n<http://senseis.xmp.net/>\r\n<http://senseis.xmp.net/ |Sensei`s Library>\r\n</code>\r\n<home faq.php>FAQ</home>\r\n<user 1>\r\n<send 1>\r\n<game 13339>\r\n<http://senseis.xmp.net/>\r\n<http://senseis.xmp.net/ |Sensei`s Library>\r\n\r\nThese links will open in a new window:\r\n<code>\r\n<home_ faq.php>FAQ</home>\r\n<user_ 1>\r\n<send_ 1>\r\n<game_ 13339>\r\n<_http://senseis.xmp.net/>\r\n<_http://senseis.xmp.net/ |Sensei`s Library>\r\n</code>\r\n<home_ faq.php>FAQ</home>\r\n<user_ 1>\r\n<send_ 1>\r\n<game_ 13339>\r\n<_http://senseis.xmp.net/>\r\n<_http://senseis.xmp.net/ |Sensei`s Library>\r\n\r\n<em>Dragon automatically colors these links <font color=\"olive\">olive</font> to distinguish them from normal links.</em>', 'FAQ', 'Changed', 'USED', '2012-12-08 22:22:52'),
(1293, 'How can I create a link to a game?', 'FAQ', 'Done', 'USED', '2009-07-05 14:36:37'),
(1294, 'Use the &lt;game GID&gt; - Dragon tag to link to a game.\r\nUse the &lt;game GID,move&gt; - Dragon tag to link to a certain move in a game.\r\nUse the &lt;game GID,S&gt; - Dragon tag to link to the setup-position of a <home faq.php?read=t&cat=329&e=314#Entry314>shape-game</home>.\r\n\r\nHere are a few examples:\r\n<code><game 13339></code>\r\n<game 13339>\r\n\r\n<code><game 13339,50></code>\r\n<game 13339,50>\r\n\r\n<code><game 774894,S></code>\r\n<game 774894,S>', 'FAQ', 'Changed', 'USED', '2012-12-08 00:56:30'),
(1747, 'How can I make a link open a new window?', 'FAQ', 'Done', 'USED', '2009-08-09 12:54:24'),
(1303, 'What are the items on the Waiting room page?', 'FAQ', 'Y', 'USED', '2012-08-26 18:17:33'),
(1304, 'The <home waiting_room.php>Waiting room page</home> is divided into two sections:\r\n<ul>\r\n<li>A list with game offers by the users.  Clicking on the \"<i>Info</i>\" button will show a detailed info box about that game offer.  Then you may join it, or you may choose another game offer from the list above.\r\n\r\n<li>Links to show other views of the games in the waiting room page:\r\n<ul>\r\n<li><i>All waiting games:</i> shows all game offers except your own, but including the ones you can not join.\r\n<li><i>Suitable waiting games:</i> shows only games, that you can join matched by several criteria configured by the game-offer.\r\n<li><i>My waiting games:</i> shows only your own game-offers.\r\n</ul>\r\n</ul>\r\n\r\nHere is a brief explanation of the columns in the <b>waiting room game list</b> waiting for players to join them.  The term \"<i>game</i>\" in the following entries refers to the game offered by the listed user identified by \"<i>Userid</i>\".  Some more details you will find on <home faq.php?read=t&cat=357&e=210#Entry210>How to add a new game offer</home>.\r\n<ul>\r\n<li><b>Info:</b> Click to show detailed info about the game.  This info box repeats some of the static parameters of the game offer, but is extended with more information: see <home faq.php?read=t&cat=357#Entry386>What are the items for a game offer?</home>\r\n<li><b>UserType:</b> see <home faq.php?read=t&cat=318&e=323#Entry323>User Type icons</home>\r\n<li><b>Name:</b> Real name of the user, that added the game.\r\n<li><b>Userid:</b> Login-ID of the user, that added the game.\r\n<li><b>Country:</b> Country, the user choose to live in.\r\n<li><b>Rating:</b> Current rating of the user, that added the game.\r\n<li><b>Comment:</b> Additional comment from the user about the game. Free text.\r\n<li><b>GameType:</b> see <home faq.php?read=t&cat=357&e=387#Entry387>Game types</home>\r\n<li><b>Size:</b> Board size to use for the game.\r\n<li><b>Type:</b> see <home faq.php?read=t&cat=357&e=387#Entry387>Handicap types</home>\r\n<li><b>Settings:</b> Probable game settings used for the game; see <home faq.php?read=t&cat=357&e=391#Entry391>What is shown in the Settings column in the waiting room?</home>\r\n<li><b>Handicap:</b> Number of <home faq.php?read=t&cat=357#Entry97>handicap stones</home>\r\n<li><b>Komi:</b> The <home faq.php?read=t&cat=3#Entry9>Komi</home> for the game.\r\n<li><b>Restrictions:</b> This column shows the <home faq.php?read=t&cat=357&e=127#Entry127>restrictions for the game offer</home>.  Normally only the <i>suitable</i> games, that you are allowed to join, are shown.  If you view <i>all waiting games</i> and you are not allowed to join the game, the column field is filled with a red background. \r\n<li><b>Time limit:</b> Time limit specification for the game with <home faq.php?read=t&cat=56&e=57#Entry57>Japanese byo-yomi</home>, <home faq.php?read=t&cat=56&e=58#Entry58>Canadian byo-yomi</home> or <home faq.php?read=t&cat=56&e=59#Entry59>Fischer time</home>.\r\n<li><b>Rated:</b> Indicates, if the game is played as rated or unrated game.\r\n<li><b>#Games:</b> Number of games with the same game settings.  Can be in range of 1 to 10.\r\n<li><b>Weekend Clock</b>: The <home faq.php?read=t&cat=56#Entry143>weekend clock setting</home> of the game.  Yes = game clock runs on weekend, No = game clock stopped on weekend.\r\n<li><b>Standard Placement:</b> Indicates, if handicap stones should be placed on the standard positions or can be placed freely on the board.\r\n</ul>', 'FAQ', 'Y', 'USED', '2012-08-26 18:17:33'),
(1305, 'How can I invite a friend to a game?', 'FAQ', 'Done', 'USED', '2010-05-21 18:56:04'),
(1306, 'Open the <home message.php?mode=Invite>Invite page</home> from the main menu. For this you have to know the userid of the other player.  As alternative you may open the players user info page and then follow the \"<i>Invite this user</i>\" link on the page bottom.  You can also start an invitation from the <home faq.php?read=t&cat=361#Entry262>contacts page</home> by clicking the the <image invite.gif>-icon for one of your buddies.  Then you can configure your game invitation.\r\n\r\nYou have to choose from several options.  Most of those items are the same as in <home faq.php?read=t&cat=357#Entry210>adding a new game</home> in the waiting room and are not repeated here.  But there are some important features, that are unique for invitations, so ensure you get to know them as well.  The following list comprises the differences, which are briefly explained:\r\n<ul>\r\n<li><b>To (userid):</b> Choose the player you want to invite.\r\nIf you press the \"<i>Preview</i>\" button and you and your opponent have a valid rating, the probable <home faq.php?read=t&cat=357&e=97#Entry97>handicap</home> and <home faq.php?read=t&cat=3&e=9#Entry9>komi</home> is given for the <home faq.php?read=t&cat=357&e=98#Entry98>Conventional and Proper handicap</home> to the right of the particular option in the game-settings.  To see them you may have to scroll up on the invitation page.\r\n\r\n<li><b>Message:</b> Free text field. You may type in a nice greeting message, explaining why you invite the other player or just say \"hello\" ;-)\r\n<li>The <b>Require rated opponent</b> and <b>Comment</b> items known from the waiting room page are not needed for an invitation and are therefore omitted.\r\n</ul>\r\n\r\nIf you want to invite users with similar game-settings, you can <home faq.php?read=t&cat=17#Entry350>save the game-settings in a template</home>.\r\n\r\nSubmitting the invitation sends a message to your invited player. Your opponent player then can accept, reject or dispute your game invitation.\r\n\r\nA disputed invitation show also the differences between the original invitation and the disputed game-settings.\r\n\r\nWhen a game-invitation or dispute is not answered by accepting, rejecting or disputing for longer than 6 months, it will be deleted automatically.  The text messages are still there, but they cannot be used to start a game any more.  A new invitation must then be sent.', 'FAQ', 'Changed', 'USED', '2012-12-27 15:49:48'),
(1307, 'How can I create a link to an arbitrary Dragon page?', 'FAQ', 'Done', 'USED', '2009-07-05 14:39:22'),
(1308, 'Use the &lt;home&gt; and &lt;/home&gt; Dragon tags.  Here are a few examples.\r\n\r\n<code><home userinfo.php>User info page</home></code>\r\n<home userinfo.php>User info page</home>\r\n\r\n<code><home forum/index.php>Forum main page</home></code>\r\n<home forum/index.php>Forum main page</home>\r\n\r\n<code><home faq.php>FAQ</home></code>\r\n<home faq.php>FAQ</home>\r\n\r\n<code><home people.php>Contributors to Dragon</home></code>\r\n<home people.php>Contributors to Dragon</home>', 'FAQ', 'Done', 'USED', '2010-04-02 18:31:39'),
(1316, 'Does Dragon support RSS?', 'FAQ', 'Done', 'USED', '2010-05-21 18:56:04'),
(1317, 'Yes, partly. The status page can be retrieved using a RSS feed.\r\n\r\nThe URL to use is: <http://www.dragongoserver.net/rss/status.php>\r\n\r\nBefore you can use that, you have to login yourself by one of the following ways: <ul>\r\n<li>Let the server identify you by your cookies: <http://www.dragongoserver.net/rss/status.php>\r\n<li>Ask for an authentification: <http://www.dragongoserver.net/rss/status.php?authid=guest>\r\n<li>Force your complete identification via URL: <http://www.dragongoserver.net/rss/status.php?userid=guest&passwd=guest><br>\r\n<color red>>>> Be aware that this method exposes your password !!! <<<</color> </ul>', 'FAQ', 'Done', 'USED', '2010-10-26 15:40:09'),
(1325, 'Here is a brief explanation of the items in the table listing on the <home users.php>users page</home>. Many of this fields are the same as on the <home faq.php?read=t&cat=12#Entry203>user info page</home>, so you may also take a look there, if no description is given here.\r\n<ul>\r\n<li><b>ID:</b> A players (numerical) ID. Managed by Dragon. Can\'t be changed.\r\n<li><b>Name, Userid, Country, Rank info, Rating, Open for matches:</b> see description of user info\r\n<li><b>Games:</b> Number of all games of the user (running and finished, rated and unrated)\r\n<li><b>Running:</b> same as \"Running games\" on user info\r\n<li><b>Finished:</b>  same as \"Finished games\" on user info\r\n<li><b>Rated:</b>  same as \"Rated games\" on user info\r\n<li><b>Won:</b>  same as \"Won games\" on user info\r\n<li><b>Lost:</b>  same as \"Lost games\" on user info\r\n<li><b>Percent, Activity, Last access, Last moved:</b> see user info\r\n</ul>\r\n\r\nBy default the users page only show the active users. To show all users, click on the link at the page bottom \"Show all users\". To return the link changes to \"Only active users\".', 'FAQ', 'N', 'USED', '2012-08-26 18:17:33'),
(1326, 'How can I search the FAQ / Help page?', 'FAQ', 'Done', 'USED', '2012-12-08 01:33:23'),
(1327, 'There is an input-box for <i>Search Terms</i> on the <home faq.php>FAQ / Help page</home>.  Enter the words you want to find and press the <i>Search</i> button.  The result shows all entries that contain at least one of the words.  The found words are marked with a green background in the texts.\r\n\r\nHowever, you may also <home faq.php?read=t&cat=all>show the whole FAQ in one page</home> and use your browser search capabilities to find what you are looking for.', 'FAQ', 'Changed', 'USED', '2012-12-08 01:33:23'),
(1328, 'How can I search the forums?', 'FAQ', 'Done', 'USED', '2010-05-21 19:00:56'),
(1329, 'Go to the <home forum/search.php>forum search page</home> and enter the terms you are looking for in the form-element \"<i>Search terms</i>\". For the terms a special search technique is used, that is known as <i>full-text search</i> for the underlying database. The term is only searched in the text elements that are comprised of the Subject and Body of a post message in the forums.\r\nThe found text passages are highlighted (but only for search terms).\r\n\r\nThe forum term search uses a special <home faq.php?read=t&cat=200#Entry225>full-text search</home>.\r\n\r\nTo find a message written on a certain date, date range or written by a certain user, you have to use the <home faq.php?read=t&cat=200#Entry246>filter-elements</home> \"<i>Date</i>\" and \"<i>Author</i>\" respectively.\r\n\r\nWith the \"<i>Order</i>\"-element you are allowed to change the order of the shown posts.', 'FAQ', 'Y', 'USED', '2012-08-26 18:17:33'),
(1330, 'What is a full-text search?', 'FAQ', 'Done', 'USED', '2010-05-21 19:03:42');
INSERT INTO `TranslationTexts` (`ID`, `Text`, `Type`, `Translatable`, `Status`, `Updated`) VALUES
(1331, 'You can use that search on the <home forum/search.php>forum search page</home> (Search terms), on the <home search_messages.php>message search page</home> (Subject &amp; implicitly Text) and the <home list_contacts.php>contact list page</home> (notes).\r\n\r\nA <b>full-text search</b> is a special search feature of the underlying database (using a full-text index). The behavior of that search may be not very intuitive for the unexperienced, but it\'s extremely fast and performs much better when compared to a \"normal\" search. Therefore it has been chosen on Dragon.\r\n\r\nThis search uses the full-text index of the <em>subject</em> and text in the <em>body</em> of the forum post messages. You can compare it with the index of a book. Imagine the forum posts (subject and message bodies) to be the content of that book, while <i>searching</i> then is a lookup in its index. An index does not contain every word that appears in the book, but only the most important and more relevant.\r\n\r\nEvery word in the index and in the query is weighted according to its significance. A word that is present in many forum posts has a lower weight (maybe even zero). Conversely, if the word is rare, it receives a higher weight. The weights of the words are combined to compute the <b>relevance</b>, which is displayed as <b>Score</b>.\r\n\r\nThat has the implication that <b>some words cannot be found</b> with the search. Just as in a book, where words that appear on every page wouldn\'t make it into the books index. Words omitted from the index are:\r\n<ul>\r\n<li>Words that appears in more than 50% of the forum posts are not listed in the index and cannot be found as well. That may be the most unintuitive condition to be understood when trying to find something. It helps when you remember the book analogy: \"not every word is indexed\".\r\n\r\n<li>A static list of words (hard coded in the database), the so-called \"stop-words\". A full list you can find at: <http://dev.mysql.com/doc/refman/4.1/en/fulltext-stopwords.html>\r\nIf a stop-word is used as search term, an error is shown that must be corrected, e.g. \"<i>Warning: Can\'t search for stopwords [go]!</i>\"\r\n\r\n<li>All words that have less than 4 characters normally can\'t be found. But the IT-provider of DGS (Samuraj Data) reduced that limitation (applause!), so you can also find \"words\" consisting of less than 4 chars (in fact also the 1-char words ;-)\r\n</ul>\r\n\r\nFor example, if you search for \"<tt>my go board is on fire</tt>\", an equivalent search would be \"<tt>board fire</tt>\" (the other words are stop-words).\r\nThen the database checks how often the word \"board\" appears in the index (on post subject and post body-text). If it\'s rare, it receives a higher score. The same is done for \"<tt>fire</tt>\". This is done on each post that matches. Then the weights (scores) of the words in the matched posts are combined and all matched posts are sorted according to that score. That makes up the \"relevance sort\", that is used to display the search result.\r\n\r\nSee also <b><home faq.php?read=t&cat=200#Entry242>Examples and the query-syntax</home></b> used for a full-text search with or without using <b>expert-mode</b> (boolean-mode).\r\n\r\nAnd if you are still not satisfied, you can read more technical details about full-text searching at:\r\n<ul>\r\n<li><http://dev.mysql.com/doc/refman/5.0/en/fulltext-search.html>\r\n<li><http://dev.mysql.com/doc/refman/5.0/en/fulltext-boolean.html>\r\n</ul>', 'FAQ', 'Changed', 'USED', '2012-12-08 01:38:29'),
(1332, 'How can I find a certain user?', 'FAQ', 'Done', 'USED', '2010-05-21 19:03:42'),
(1333, 'Beside of the following two old-way options and browsing, you now can go to the users page and directly <home faq.php?read=t&cat=200#Entry256>search for the users</home> in the <home faq.php?read=t&cat=200#Entry246>filter-elements</home> of the corresponding columns.\r\n\r\nIf you know the ID of the user, you can open the following link <home userinfo.php?uid=1>user ID link template</home> and replace the \'1\' in \'<tt>uid=1</tt>\' with the ID you know.\r\n\r\nIf you know the userid (nickname) of the user, you can open the following link <home userinfo.php?user=guest>userid link template</home> and replace the \'guest\' in \'<tt>user=guest</tt>\' with the userid you know.\r\n\r\nOr you may ask in one of the forums. Maybe someone other knows the player you are looking for.', 'FAQ', 'Y', 'USED', '2012-08-26 18:17:33'),
(1684, 'How can I search my messages?', 'FAQ', 'Done', 'USED', '2010-05-21 19:23:31'),
(1334, 'How can I change the order of table listings?', 'FAQ', 'Done', 'USED', '2010-05-21 19:03:42'),
(1335, 'This concerns all the following lists:\r\n<ul>\r\n<li>game offer list on the <home waiting_room.php>waiting room page</home>\r\n<li>messages list on the <home list_messages.php>Messages page</home>\r\n<li>users list on the <home users.php>Users page</home>\r\n<li>users list on the <home list_contacts.php>Contacts page</home>\r\n<li>running, finished and observed games list on the <home show_games.php?uid=all>Games page</home>\r\n<li>etc.\r\n</ul>\r\n\r\nThe order of the forum entries can be changed with a separate \"Order\" element placed in the <home forum/search.php>forum search form</home>.\r\n\r\nTo change the order of a table listing, click on the table headers that are underlined. For these a sorting is defined and can be changed.\r\nClicking another time on the same table header link switches the sort direction (between ascending and descending).\r\n\r\nClicking on an other table column header makes the current (clicked) column the main-sort and the previous sort column the secondary sort. There are only two levels: a 1st (main-)sort that is marked with a dark blue arrow (<image sort1d.gif> or <image sort1a.gif>) and a 2nd (sub-)sort marked with a light blue arrow (<image sort2d.gif> or <image sort2a.gif>) used when the row values of the main-sort are identical.', 'FAQ', 'Y', 'USED', '2012-08-26 18:17:33'),
(1336, 'Can I mark a row to get a better orientation in big tables?', 'FAQ', 'Done', 'USED', '2010-05-21 19:05:42'),
(1337, 'This is possible for those whose browser supports JavaScript (enabled in the browser configuration) and who have JavaScript enabled in the <home edit_profile.php>Dragon user profile</home>.\r\n\r\nDouble-clicking on a row at a place where there is no link in a table listing, e.g. the <home show_games.php?uid=all>running games list</home>, will highlight the row. Another double-click reverts the highlighting.  This can be done on more than one row at once.\r\n\r\nThe highlighting is not preserved when you reload the page with the same or new content.', 'FAQ', 'Changed', 'USED', '2012-12-08 01:42:12'),
(1339, 'There are two areas where you can store notes within a game.\r\n\r\nThe first area is in the message box that may be used to communicate with an opponent (for example to type things such as \'Hello, enjoy the game\').  In this case you can use <home faq.php?read=t&cat=365#Entry75>hidden comments</home> . This may be done at each move, as desired.  It cannot be done when it is not your turn.  It cannot be done after a game has finished.  To read your notes through completely would require you to go back to the first move at which moves were made, and then move the game forward move by move.  This can be useful when reviewing a game.\r\n\r\nThe second area is on the game page for one of your running or finished games.  There is a private game note section, where you can enter notes about your game. Those notes are only visible by you.  You can make or change notes in this area when it is your turn, when it is not your turn, and when the game is finished.  On the game page there is a button \"<i>Show notes</i>\" to make the notes visible for you.  Hiding the notes does not delete them. They simply do not appear on the screen.  When the note section is hidden you are not able to create or change your notes in that area.  After making or changing your notes they can be stored with with the \"<i>Save notes</i>\" button.  If you do not do this your notes will not be saved.  Making a move and submitting it does not automatically store new or changed notes.  \r\n\r\nIf there is no button \"<i>Show notes</i>\", you must first activate game notes in your <home edit_profile.php>user profile</home> by unchecking the \r\n\"<i>Hidden</i>\" checkboxes for the board sizes of your choice.  Other settings around the game notes are about the place for notes (right of the goban or below it) and the screen size of the note area. The width and height are only for display. They don\'t restrict the number of characters of your notes.', 'FAQ', 'Changed', 'USED', '2007-12-07 15:48:37'),
(1340, 'What are all those items on the page showing a single game?', 'FAQ', 'N', 'USED', '2012-08-26 18:17:33'),
(1341, 'The game page showing a single game of yourself is divided into three big sections. The parts may differ a bit, if your viewing a game as observer or player that made the last move:\r\n<ul>\r\n<li>The goban with the moves made so far in the game. If it\'s your turn you can <home faq.php?read=t&cat=365#Entry45>play a move</home> and submit it.\r\n\r\n<li><home faq.php?read=t&cat=365#Entry229>Private game notes</home> to store additional information about the ongoing or finished game. Those notes can only be seen by you and nobody else. The notes can be shown to the right or below the goban and configured differently for smaller and larger board sizes.<br> The notes can be hidden with \"Hide notes\" and made visible with \"Show notes\". Use the \"Save notes\" button to store them in the database or your changes are lost.\r\n\r\n<li>Below these items, there is selectbox to navigate to other moves in the game. Select a move, then press the \"View move\" button. <br> When you have JavaScript enabled, simply selecting the move triggers the viewing of the move (no need to click the button nearby).\r\n\r\n<li>A separate comment link shows all the game messages in a separate window together with the corresponding move number, a colored stone indicating who made the comment and the comment itself. Hidden comments can only be seen by yourself. The same rules as for <home faq.php?read=t&cat=365#Entry75>downloading a SGF with comments</home> apply here.\r\n</ul>\r\n\r\nThe next section contains a <b>game info box</b> with some game-related information and the competing players:\r\n<ul>\r\n<li>The first line shows a black stone with the black players full name, userid and current rating. To the right, the number of the imprisoned stones is shown.<br>  On a second line, the \"Time remaining\" is shown for the black player (the same format is used on the <home faq.php?read=t&cat=18#Entry41>status page game list</home>). The byo-yomi is only shown, when the main-time is up.</li>\r\n\r\n<li>Below that, the same information is given for the white player.</li>\r\n\r\n<li>The box is finalized below with information about the komi, number of handicap stones and if the game is rated or unrated. The last line provides the full time limit of the game. The format is the same as the \"Time limit\" in the <home faq.php?read=t&cat=357#Entry211>waiting room game offer list</home>.</li>\r\n\r\n<li>An additional optional section is appended to show added time, that was granted by your opponent or that you granted your opponent.\r\n</ul>\r\n\r\n\r\nThe last section describe the <b>page bottom links</b>. They differ over the lifetime of a game and are also dependent on who views the game page (the player to move next, the player who moved last or an observer).\r\n\r\nAn <b>observing user</b> can only: <ul>\r\n<li>\"Download the SGF\" of the game\r\n<li>Add the game to his or her <home faq.php?read=t&cat=18#Entry114>observe list</home>\r\n</ul>\r\n\r\nThe <b>player who moved last</b> in the game can only:\r\n<ul>\r\n<li>\"Download the SGF\" or \"Download the SGF with all comments\" of the game\r\n</ul>\r\n\r\nThe <b>player who is next to move</b> can do more actions of course:\r\n<ul>\r\n<li><b>Skip to next game:</b> Loads the next game in which the player has to move\r\n<li><b>Pass:</b> Pass a move. This normally is the first step in scoring a game. Do this when you think the game is over and should be scored now. After passing you have to confirm the action (with an optional message).\r\n<li><b>Resign:</b> Resign the game. This must be confirmed (with an optional message).\r\n<li>\"Download the SGF\" or \"Download the SGF with all comments\" of the game\r\n</ul>\r\n\r\n<b>Both players</b> can do at any time:\r\n<ul>\r\n<li><home faq.php?read=t&cat=56#Entry65>Add time to opponent</home>\r\n</ul>', 'FAQ', 'N', 'USED', '2012-08-26 18:17:33'),
(1346, 'I set the wrong language and can\'t find my way back now. What can I do?', 'FAQ', 'Changed', 'USED', '2012-12-16 14:56:49'),
(1347, '<note>@Translators, please don\'t translate this page!</note>\r\n\r\nYou can revert most DGS pages to English by adding \"?language=en\" as an argument to the end of its URL.\r\nThis can be used:\r\n<ul>\r\n  <li>To display the <home edit_profile.php?language=en>edit page</home> for your user profile in English.<br>  This page can be used to <b>recover from an erroneous language selection</b>.\r\n  <li>To verify whether the DGS translators have made an accurate translation of a page.  For instance <home faq.php?read=t&cat=48&language=en>this link</home><br> will take you to the DGS introduction in English.\r\n  <li>To <b>temporarily select another language</b>, but remember that you must also have the appropriate character set installed.  This feature is more useful to DGS translators.  For instance, adding &#147;?language=de&#148; to the end of a DGS URL displays that page in <home faq.php?read=t&cat=48&language=de.iso-8859-1>German</home>.\r\n</ul>', 'FAQ', 'Done', 'USED', '2012-07-15 20:20:17'),
(1364, 'How can I do a full-text search?', 'FAQ', 'Done', 'USED', '2010-05-21 19:12:24'),
(1354, 'What are the items on the Forums page?', 'FAQ', 'Done', 'USED', '2012-08-26 18:17:33'),
(1355, 'The forum starts on the <home forum/index.php>Forum overview page</home>. Main forum features include:\r\n<ul>\r\n<li>Write new and edit existing posts with a preview feature. The edited posts are kept in a history, but only the most recent entry is shown to other users. Before adding a post, check out the different forums to see in which one it fits best.</li>\r\n\r\n<li>Moderation (by forum admins). For example posts by the guest user must be approved by one of the forum admins to be seen. The forum admin might choose to accept or reject the message post in the forums.</li>\r\n\r\n<li>Indication of new posts in thread overview page\r\n<li>Searching posts\r\n</ul>\r\n\r\nThe forums are comprised of several pages:\r\n<ul>\r\n<li>A <home forum/index.php>Forum overview page</home>. Select a forum to see an overview of threads.\r\n\r\n<li>A <home faq.php?read=t&cat=339#Entry238>Thread overview page</home> for a specific forum, e.g. go to the <home forum/list.php?forum=2>Support forum</home>.\r\n\r\n<li>A <home faq.php?read=t&cat=339#Entry239>Thread reading page</home> for reading the post messages for a specific thread in a specific forum or write a new topic or edit an existing topic.\r\n\r\n<li>A <home forum/search.php>Forum search page</home>. More information about the search you can find in the help entry: <home faq.php?read=t&cat=200#Entry224>How can I search the forums?</home>.\r\n</ul>\r\n\r\nThe forum is built from a table with a top bar with navigational links, a (titled) content section and a bottom bar repeating the links in the top bar.\r\n\r\nHere are the field items in the content section on the <home forum/index.php>forum overview page</home>:\r\n<ul>\r\n<li>Forum name\r\n<li>Forum description\r\n<li>Number of Threads in a forum\r\n<li>Number of Posts in a forum\r\n<li>Date of last post in a forum (with author of last post, which can be hidden)\r\n</ul>', 'FAQ', 'Y', 'USED', '2012-08-26 18:17:33'),
(1356, 'What are the items on a forums Thread overview page?', 'FAQ', 'Y', 'USED', '2012-08-26 18:17:33'),
(1357, 'The <b>thread overview</b> page shows an overview of threads for a selected forum showing the initial post message of the threads.\r\n\r\nAdding a <b>New Topic</b> from the navigation bar is making a new entry in this thread overview.  The first post and answers to it are composed into a thread showing up on this page.  Clicking on a <i>thread</i> will open the <b><home faq.php?read=t&cat=339#Entry239>Thread reading page</home></b> where all corresponding posts are presented in a threaded list.\r\n\r\n<i>New</i> threads you didn\'t read so far are marked with a <b>\"<color red>new</color>\" indicator</b>.  Reading a thread means to open the <i>Thread Reading page</i> for a particular thread.\r\n\r\nThe navigational bar contains links to:\r\n<ul>\r\n<li>Return to the <home faq.php?read=t&cat=339#Entry237>\"Forums\" overview page</home>\r\n<li>Create a new thread writing a \"<i>New Topic</i>\"\r\n<li>Opening the <home forum/search.php>forum \"<i>Search</i>\" page</home>\r\n<li>\"<i>Mark all thread as read</i>\" to mark all \"new\"-entries as read (only available if there are some)\r\n<li>\"<i>Prev Page</i>\" and \"<i>Next Page</i>\" to navigate, if there are many entries.\r\n</ul>\r\n\r\nHere\'s a brief explanation of the field items in the content section:\r\n<ul>\r\n<li>Thread: The subject line of the initial post of a thread.\r\n<li>Author: The author who started the thread.\r\n<li>Posts: number of posts in the thread.\r\n<li>Hits: number of reads of the thread by other users\r\n<li>Lastpost: date of the last post in the thread (with author of last post, which can be hidden)\r\n</ul>\r\n\r\nBelow the content table there\'s a select-box to change the number of shown rows.', 'FAQ', 'Y', 'USED', '2012-08-26 18:17:33'),
(1358, 'What are the items on a forums Thread reading page?', 'FAQ', 'Y', 'USED', '2012-08-26 18:17:33'),
(1359, 'The <b>thread reading</b> page shows an overview of all the posts comprising a threaded list and shows input elements to reply to single posts.\r\n\r\n<i>New</i> posts you didn\'t read so far are marked with a <b>\"<color red>new</color>\" indicator</b>. Opening this page for a thread will mark it as read. That means another view of this page or the <home faq.php?read=t&cat=339#Entry238>Thread overview page</home> makes the \"new\" disappear for the thread and posts.\r\nWhen opening the page and the <i>thread overview tree</i> is disabled, the focus will be placed on the first \"new\" post, if there is any. The \"new\" indicators are linked to the next new post on the current thread page.\r\n\r\nThe navigational bar contains links to:\r\n<ul>\r\n<li>Return to the <home faq.php?read=t&cat=339#Entry237>\"Forums\" overview page</home>\r\n<li>Return to the <home faq.php?read=t&cat=339#Entry238>\"Threads\" overview page</home>\r\n<li>Reload the page with \"<i>Refresh</i>\"\r\n<li>Opening the forum \"<i>Search</i>\" page\r\n</ul>\r\n\r\nIn the second headline you can <i>Show or Hide the thread overview</i> providing an extra overview of all post subjects with their authors and last changed date linked to the respective posts.  This <i>thread subject overview</i> has the advantage, that you can identify the \"new\" posts more easily especially if there is more than one.  Your own posts are emphasized (in a bold blue font).\r\nIn that headline there are also links to switch the posts order between <i>Old First</i>, <i>New First</i> and the default <i>Tree View</i>.\r\n\r\nHere\'s a brief explanation of the field items in the content section with the header line \"<i>Reading thread posts</i>\" followed by a reading hit count of the post:\r\n<ul>\r\n<li>The first line shows the <i>subject</i> of a post.\r\n<li>The second line shows the <i>author</i> of the post (with the rank and optional executives-icon <image admin.gif>) and the <i>creation date</i>.  An optional date showing the date of the <i>last edit</i> may be displayed with a link to show the revision history of your edits of your post.  The last value in the line gives the index number of each post within the thread, for example \"(No. 7)\".\r\n<li>The main text body of the post follow\r\n<li>A line with <home faq.php?read=t&cat=318&e=325#Entry325>icons to navigate within the thread</home> and actions, that can be executed on a post.\r\n</ul>\r\n\r\nEach post has a \"<b>Reply</b>\" link. Click it to write an answer to a particular post. When you use the input box at the end of the page, the answer will be <i>appended</i> as last post in the thread.\r\n\r\nTo add a new post, edit one of your submitted posts or replying to a post, you can type in your message in the input elements. You may keep the subject or change it.  Use the \"<b>Preview</b>\" button to check, if your message is correctly displayed or contains any (format) error or typo.  To send your post and store it on Dragon, finally press the \"<b>Post</b>\" button.\r\n\r\nFor messages you have written an additional \"<b>Edit</b>\" is shown.  If you want to change one of your entries, follow the \"Edit\" link.  Only the most recent version is shown. Making an edit does not change the LastPost date on the thread or forum overview page and neither the \"new\" indicator is raised for the thread or posts.\r\nYou or other users may view also older version in the revision history for one of your posts following the \"edited\" link in the content line where the author is displayed.', 'FAQ', 'Y', 'USED', '2012-08-26 18:17:33'),
(1360, 'Jigo', 'FAQ', 'Done', 'USED', '2007-10-31 11:29:06'),
(1361, 'Japanese Go term describing the game situation of a draw: both players have the same number of points.', 'FAQ', 'Done', 'USED', '2007-10-31 11:29:06'),
(1365, 'Before doing a search you should have read what a <b><home faq.php?read=t&cat=200#Entry225>full-text search</home></b> is, because there are some restrictions on what can be searched.\r\n\r\nHaving the <i>expert-mode</i> (also known as boolean-mode) deactivated, you just enter words you want to search separated by spaces. For example: \"<tt>teaching game</tt>\".\r\n\r\nWhen you use the <b>expert-mode</b> (boolean-mode) the <b>query syntax</b> can be more complex changing the weight of a word within the query:\r\n<code>\r\n    word   - an optional word to search for\r\n   +word   - the word must be present\r\n   -word   - the word shouldn\'t be present\r\n   >word   - the word should have higher relevance\r\n   <word   - the word should have less   relevance\r\n   ~word   - the words relevance is negated\r\n   (...)   - can group words and weight-operators\r\n   sub*    - search also for words that begin with \'sub\', not only full words\r\n   \"...\"   - search for literal string\r\n</code>\r\n\r\n<b>Examples for queries (non expert-mode):</b>\r\n<pre>\r\n   \"Where is that damn book about chinese fuseki i saw yesterday\"\r\n   the same and better search-query would be: \"book chinese fuseki\"\r\n</pre>\r\n<b>Examples for export-mode queries:</b>\r\n<pre>\r\n   +tesuji book\r\n   +wooden board shop\r\n   +teaching game\r\n   \"teaching game\"\r\n\r\n   +book +(&gt;tesuji &lt;joseki)\r\n   This search terms find posts that contain the words \"book\" and \"tesuji\",\r\n      or \"book\"  and \"joseki:\" (in any order), but rank \"book tesuji\"\r\n      higher than \"book joseki\"\r\n</pre>\r\n<b>Best practice using a full-text search:</b>\r\nThis syntax may not get what you want to find. You shouldn\'t expect to get exactly what you want with the first query. Try to start with fewer but important words, prefixed with \'+\'. Then continue with reducing the search-result by reducing the weight of some words with \'-\' prefix.\r\n\r\nFor example, you want to search for \"Go Seigen, analyzed games\":\r\n<pre>\r\n   seigen analy* game\r\n   -> the \"analy*\" is used to find \"analysis\", \"analyzed\", \"analyze\"\r\n\r\n   The result is not satisfying, so let\'s reduce it by outruling words\r\n   you don\'t want to see:\r\n\r\n     seig* analy* game -admin\r\n     seig* analy* game -admin -rating\r\n     seig* analy* game -admin -rating -retiring\r\n</pre>\r\nWith every new (more detailed) query you isolate more the posts you want to find.', 'FAQ', 'Y', 'USED', '2012-08-26 18:17:33'),
(1366, 'Overview of release DGS 1.0.13 (07-October-2007)', 'FAQ', 'N', 'USED', '2012-08-26 18:17:33'),
(1367, 'Find a detailed <b>overview of the features</b> by reading the document <home news.php#DGS_1_0_13>Release Notes 1.0.13</home>.\r\n\r\nAll changes from this release have been integrated in the <home faq.php>FAQ</home> by now.', 'FAQ', 'N', 'USED', '2012-08-26 18:17:33'),
(4630, 'A <b>multi-player-game</b> on Dragon is an <i>unrated game</i> played by <i>more than two</i> unique players, alternately playing Black and White moves in two teams or in one team.  The term <i>multi-player-game</i> is often abbreviated on the site with <i>MPG</i> or <i>MP-game</i>.\r\n\r\nThere are two <home faq.php?read=t&cat=357&e=387#Entry387>game-types</home> that classify as multi-player-games:\r\n<ul>\r\n<li><b>Team-Go (N:M)</b> = <u>two teams</u> (Black vs White), each team consists of at least one player with N + M > 2\r\n<li><b>Zen-Go (N)</b> = <u>one team</u> with an odd number of players alternating Black and White with N > 2\r\n</ul>\r\n\r\nThe most common form of a MP-game is <home faq.php?read=t&cat=305#Entry311>Rengo</home> or the officially played <home faq.php?read=t&cat=305#Entry311>Pair-Go</home>, both being special forms on Dragon\'s <home faq.php?read=t&cat=305#Entry307>Team-Go</home>.\r\n\r\n<b>Restrictions</b> for MP-games:\r\n<ul>\r\n<li>The game is always <i>unrated</i>.\r\n<li>The players must be <i>unique</i> per game, so no player can join a MP-game more than once.\r\n<li>All players must have a <i>valid rating</i> to calculate average ratings of the teams even though all MP-games are unrated.\r\n<li>At maximum 16 players can participate in a MP-game.\r\n<li>Double games, <home faq.php?read=t&cat=357&e=351#Entry351>fair-komi</home>, the opponents page and Tournaments are NOT supported with MP-games.\r\n</ul>\r\n\r\nRelated topics:\r\n<ul>\r\n<li><home faq.php?read=t&cat=305&e=307#Entry307>What is Team-Go?</home>\r\n<li><home faq.php?read=t&cat=305&e=308#Entry308>What is Zen-Go?</home>\r\n<li><home faq.php?read=t&cat=305&e=309#Entry309>How to create a new multi-player-game?</home>\r\n<li><home faq.php?read=t&cat=305&e=395#Entry395>How can I play a multi-player-game with a shared team-account?</home>\r\n<li><home faq.php?read=t&cat=305&e=395#Entry395>How can I find multi-player-games?</home>\r\n<li><home faq.php?read=t&cat=305&e=406#Entry406>How can I recognize a multi-player-game?</home>\r\n\r\n<li><_http://dragongoserver.cvs.sourceforge.net/viewvc/dragongoserver/DragonGoServer/specs/multi-player-game.txt?revision=1.7 |Multi-Player-Game Specifications v1.7>\r\n</ul>', 'FAQ', 'Y', 'USED', '2012-09-07 01:38:07'),
(4631, 'What is Team-Go?', 'FAQ', 'Done', 'USED', '2012-09-07 01:38:34'),
(4632, 'Team-Go is a game played by more than two players in two teams, each team with a different color.  Special cases with two players in each team are <home faq.php?read=t&cat=305#Entry311>Rengo and Pair-Go</home>.\r\n\r\nOn Dragon the notation \"<i>Team-Go (N:M)</i>\" represents a Team-Go game played by two teams consisting of N players for Black and M players for White.\r\n\r\nThe teams can be symmetrical (same number of players) or asymmetrical, e.g. \"Team-Go (1:2)\" = 1 (Black) vs 2 players (White).\r\n\r\nTeam-Go can be a lot of fun, especially if the strength of the players vary a lot combining stronger with weaker players.  The weaker players can learn on what to concentrate while the stronger players may find it amusing or fall into despair on counteracting inferior moves ;-)\r\n\r\nIf a stronger player participates you may ask him to <home faq.php?read=t&cat=18&e=410#Entry410>add a review of the game</home>, which could make such a game into a good learning experience.\r\n\r\nYou are able to start games with up to 16 players in total, though you should be aware, that playing with so many players, the likelihood of players going away thereby \"ending\" the game, or the time needed to find enough players may be tedious (especially if you are stronger you may find not so many players willing to play such non-standard games).', 'FAQ', 'Y', 'USED', '2012-09-07 01:38:34'),
(4633, 'What is Zen-Go?', 'FAQ', 'Done', 'USED', '2012-09-07 01:38:45'),
(4634, 'Zen-Go is a game played by more than two and an odd number of players, that alternately play Black and White stones.  That means, that after every full rotation you will play with the other color.\r\n\r\nOn Dragon the notation \"<i>Zen-Go (5)</i>\" represents a Zen-Go game played by 5 players.\r\n\r\nThis game type can be a lot of fun and can teach you to look on the whole board situation instead of relying on \"hidden\" tactics, because in the next rotation colors are switched and you have to make a move to counter your own tactics.\r\n\r\nIf a stronger player participates you may ask him to <home faq.php?read=t&cat=18&e=410#Entry410>add a review of the game</home>, which could make such a game into a good learning experience.\r\n\r\nFor more information on Zen-Go, see: <http://senseis.xmp.net/?ZenGo>', 'FAQ', 'Y', 'USED', '2012-09-07 01:38:45'),
(4635, 'How can I create a new multi-player-game?', 'FAQ', 'Y', 'USED', '2012-09-07 01:39:30'),
(4636, 'There are five ways to create a <home faq.php?read=t&cat=305#Entry306>multi-player-game</home>:\r\n<ul>\r\n<li>Follow the \"<i>New Game</i>\" link from the main-menu, then follow up with the \"<i>New multi-player-game</i>\" bottom-link.\r\n<li>Open the \"<i>Site map</i>\" from the main-menu and follow the direct link \"<i>New multi-player-game</i>\".\r\n<li>If you have a <b>saved template</b> of a multi-player-game, please first read: <home faq.php?read=t&cat=17#Entry390>How to use a template?</home>\r\n<li>If you want to use the same settings as from some existing game, first follow the steps in: <home faq.php?read=t&cat=357&e=353#Entry353>Can I start a game with the same settings of an existing game?</home>\r\n<li>If you want to play a multi-player-game as <b><home faq.php?read=t&cat=329#Entry314>shape-game</home></b> (<image shape.gif>), first follow the steps in: <home faq.php?read=t&cat=329&e=332#Entry332>How can I start a shape-game?</home>\r\n</ul>\r\n\r\nOn the <home new_game.php?view=2>new-multi-player-game page</home> you have to specify some game-settings.  Please note, that these settings can NOT be changed later:\r\n<ul>\r\n<li><b>Board-size</b>\r\n\r\n<li><b>Placement of <home faq.php?read=t&cat=357#Entry97>handicap stones</home></b> must be set regardless if the game will be handicapped or not, because the handicap and Komi will be assigned after the players have been found which will happen in a later step.\r\n\r\n<li><b>Game Players</b> defines, if you play <home faq.php?read=t&cat=305#Entry307>Team-Go</home> or <home faq.php?read=t&cat=305#Entry308>Zen-Go</home> and with how many players in each team.  Here are some examples:\r\n<ul>\r\n<li>use \"1:3\" for Team-Go with 1 player vs 3 players (order doesn\'t matter, so \"3:1\" is an equivalent value)\r\n<li>use \"2:2\" for <home faq.php?read=t&cat=305#Entry311>Rengo</home>\r\n<li>use \"5\" for Zen-Go with 5 players\r\n</ul>\r\n\r\n<li><b>Time settings</b>\r\n</ul>\r\n\r\nIf you are finished, the game will be created by clicking on the \"<i>Add game</i>\" button, or the game-settings will be <home faq.php?read=t&cat=17#Entry350>saved as template</home> by clicking on the \"<i>Save Template</i>\" button.\r\n\r\n<i>Adding a game</i> will create the game in setup-mode and will forward you to the \"game-players\"-page where you can <home faq.php?read=t&cat=305&e=397#Entry397>manage the multi-player-game</home>.\r\n\r\nAll multi-player-games you \"manage\" are listed on the <home status.php>status page</home> as long as they are in setup-mode, i.e. not started or running yet.', 'FAQ', 'Y', 'USED', '2012-09-07 01:39:30'),
(1368, 'CSS', 'FAQ', 'N', 'USED', '2012-08-26 18:17:33'),
(1369, 'The DGS-site is now fully CSSed. Some format and styles of CSS (Cascading Style Sheets) are displayed differently for the various browsers. We tried to keep the <b>former layout</b>, though it might look slightly different.\r\n\r\nThe CSS-files are also cached in your browser. After a release it may be neccessary to <b>reload the CSS</b> from the server and not from your browser cache. Try a <i>SHIFT-Reload</i> to accomplish that, or if that is not available, clear your cache.\r\n\r\nOn <b>older browsers</b> and on some <b>PDA-devices</b>, the pages may look misaligned or not properly formatted. If that is the case, please report it in the <home forum/list.php?forum=4>Discussion Forum</home> giving the browser or product you use to view DGS. That gives us hints to adjust the layout and also helps others that might have the same problem.', 'FAQ', 'N', 'USED', '2012-08-26 18:17:33'),
(1371, 'Sorry, can\'t find the game you are invited to. Already accepted?', 'SRC', 'Done', 'USED', '2007-11-03 15:08:38'),
(1373, 'Sorry, couldn\'t find the receiver of your message. Make sure to use the userid, not the full name.', 'SRC', 'Done', 'USED', '2007-11-03 15:08:38'),
(1374, 'Sorry, the logged user seems to have changed during the operation.', 'SRC', 'Done', 'USED', '2007-11-03 15:08:38'),
(1375, 'Sorry, invalid player id used.', 'SRC', 'Done', 'USED', '2007-11-03 15:08:38'),
(1376, 'Sorry, invalid player id used as opponent.', 'SRC', 'Done', 'USED', '2007-11-03 15:08:38'),
(1377, 'Sorry, there\'s a configuration problem with a search-filter.', 'SRC', 'Done', 'USED', '2007-11-03 15:08:38'),
(1378, 'Contacts', 'SRC', 'Done', 'USED', '2007-10-07 22:35:26'),
(1379, 'Skin', 'SRC', 'Done', 'USED', '2007-10-08 07:42:36'),
(1382, 'Getting started', 'SRC', 'Done', 'USED', '2007-11-03 06:57:01'),
(1383, 'News', 'SRC', 'Done', 'USED', '2007-11-03 06:57:01'),
(1384, 'Release notes', 'SRC', 'Done', 'USED', '2007-11-03 15:08:38'),
(1385, 'Page structure of site', 'SRC', 'Done', 'USED', '2007-11-03 06:57:01'),
(1386, 'Link collection', 'SRC', 'Done', 'USED', '2007-11-03 15:08:38'),
(1387, 'DGS Wish list', 'SRC', 'Done', 'USED', '2007-11-03 15:08:38'),
(1388, 'Features and requests DGS users dream of', 'SRC', 'Done', 'USED', '2007-11-03 15:08:38'),
(1389, 'Edit biographical order', 'SRC', 'Done', 'USED', '2007-10-13 22:12:30'),
(1390, 'change order only, no text-change possible here.', 'SRC', 'Done', 'USED', '2007-10-13 22:12:30'),
(1391, 'Table max rows', 'SRC', 'Done', 'USED', '2007-11-03 01:05:36'),
(1392, 'choosing a lower value helps the server (see also FAQ)', 'SRC', 'Done', 'USED', '2007-11-03 01:05:36'),
(1393, 'Change appearences for this browser only', 'SRC', 'Done', 'USED', '2007-10-13 22:12:30'),
(1394, 'Go back to the FAQ index', 'SRC', 'Done', 'USED', '2007-11-03 01:05:36'),
(1395, 'If you have forgotten your password we can email a new one.\n<br>The new password will be randomly generated, but you can of course change it later from the edit profile page.\n<br>Until you change it, both new and old passwords will be operational.', 'SRC', 'Done', 'USED', '2007-10-26 10:43:45'),
(1396, 'Hit \"Submit\" to confirm', 'SRC', 'Done', 'USED', '2007-10-11 03:58:08'),
(1397, 'Add time for opponent', 'SRC', 'Done', 'USED', '2007-10-08 18:17:00'),
(1398, 'Show observers', 'SRC', 'Done', 'USED', '2007-10-11 03:58:08'),
(1399, 'Choose how much additional time you wish to give your opponent', 'SRC', 'Done', 'USED', '2007-10-11 03:58:08'),
(1400, 'added to maintime of your opponent.', 'SRC', 'Done', 'USED', '2007-10-11 03:58:08'),
(1401, 'Reset byoyomi settings when re-entering', 'SRC', 'Done', 'USED', '2007-10-11 03:58:08'),
(1402, 'Add Time', 'SRC', 'Done', 'USED', '2007-10-11 03:58:08'),
(1403, 'Cancel', 'SRC', 'Done', 'USED', '2007-10-11 03:58:08'),
(1406, 'International Go Federation. Find federations and associations in the world.', 'LINKS', 'Done', 'USED', '2007-11-03 01:05:36'),
(1407, 'Another turn based. Focus on organised tournament play.', 'LINKS', 'Done', 'USED', '2007-11-03 01:05:36'),
(1408, 'Kiseido Go Server with java interface', 'LINKS', 'Done', 'USED', '2007-11-03 01:05:36'),
(1409, 'Search messages', 'SRC', 'Done', 'USED', '2007-11-03 01:05:36'),
(1412, 'All#filter', 'SRC', 'Done', 'USED', '2007-10-07 21:55:01'),
(1413, 'B#filter', 'SRC', 'Done', 'USED', '2007-10-07 22:00:04'),
(1414, 'W#filter', 'SRC', 'Done', 'USED', '2007-10-07 22:00:04'),
(1415, 'ID#header', 'SRC', 'Done', 'USED', '2007-10-07 22:35:26'),
(1416, 'sgf#header', 'SRC', 'Done', 'USED', '2007-10-07 22:35:26'),
(1417, 'Black name#header', 'SRC', 'Done', 'USED', '2007-10-08 17:35:45'),
(1418, 'Black userid#header', 'SRC', 'Done', 'USED', '2007-12-06 09:44:05'),
(1419, 'Black start rating#header', 'SRC', 'Done', 'USED', '2007-10-09 00:40:35'),
(1420, 'Black rating#header', 'SRC', 'Done', 'USED', '2007-12-06 10:23:53'),
(1421, 'White name#header', 'SRC', 'Done', 'USED', '2007-10-08 17:35:23'),
(1422, 'White userid#header', 'SRC', 'Done', 'USED', '2007-12-06 09:44:05'),
(1423, 'White start rating#header', 'SRC', 'Done', 'USED', '2007-10-09 00:40:35'),
(1424, 'White rating#header', 'SRC', 'Done', 'USED', '2007-12-06 10:23:53'),
(1425, 'Black end rating#header', 'SRC', 'Done', 'USED', '2007-10-09 00:40:35'),
(1426, 'Black rating diff#header', 'SRC', 'Done', 'USED', '2007-10-09 00:40:35'),
(1427, 'White end rating#header', 'SRC', 'Done', 'USED', '2007-10-09 00:40:35'),
(1428, 'White rating diff#header', 'SRC', 'Done', 'USED', '2007-10-09 00:40:35'),
(1429, 'Opponent#header', 'SRC', 'Done', 'USED', '2007-10-07 22:35:26'),
(1430, 'Userid#header', 'SRC', 'Done', 'USED', '2007-10-07 22:35:26'),
(6321, '%s (for playing >%s games with weaker players)#hero_badge', 'SRC', 'Done', 'USED', '2015-05-14 17:10:39'),
(1433, 'Rating#header', 'SRC', 'Done', 'USED', '2007-10-07 22:35:26'),
(6320, 'Bronze Badge of Honor', 'SRC', 'Done', 'USED', '2015-05-14 17:10:39'),
(1435, 'Color#header', 'SRC', 'Done', 'USED', '2007-10-07 22:35:26'),
(1436, 'Colors#header', 'SRC', 'Done', 'USED', '2007-10-08 17:32:42'),
(1437, 'Size#header', 'SRC', 'Done', 'USED', '2007-10-07 22:35:26'),
(1438, 'Handicap#header', 'SRC', 'Done', 'USED', '2007-10-07 22:35:26'),
(1439, 'Komi#header', 'SRC', 'Done', 'USED', '2007-10-07 22:35:26'),
(1440, 'Moves#header', 'SRC', 'Done', 'USED', '2007-10-07 22:35:26'),
(1441, 'Score#header', 'SRC', 'Done', 'USED', '2007-12-06 10:23:53'),
(1442, 'Win?#header', 'SRC', 'Done', 'USED', '2007-12-06 10:23:53'),
(1443, 'Rated#header', 'SRC', 'Done', 'USED', '2007-10-07 22:35:26'),
(1444, 'Last move#header', 'SRC', 'Done', 'USED', '2007-10-08 17:59:19'),
(1446, 'Opponents Last Access#header', 'SRC', 'Done', 'USED', '2007-10-09 00:42:29'),
(1447, 'Weekend Clock#header', 'SRC', 'Done', 'USED', '2007-10-08 21:32:12'),
(1456, 'Show game (follow id)', 'SRC', 'Done', 'USED', '2007-11-03 06:57:01'),
(1457, 'Download SGF of game', 'SRC', 'Done', 'USED', '2007-11-03 06:57:01'),
(1462, 'Other user info', 'SRC', 'Done', 'USED', '2007-11-03 06:57:01'),
(1463, 'Show rating graph', 'SRC', 'Done', 'USED', '2007-12-07 21:11:13'),
(1464, 'Show opponents', 'SRC', 'Done', 'USED', '2007-10-13 22:12:30'),
(1465, 'Invite user', 'SRC', 'Done', 'USED', '2007-11-03 06:57:01'),
(1466, 'Add/edit contact', 'SRC', 'Done', 'USED', '2007-11-03 06:57:01'),
(1467, 'Show my opponents', 'SRC', 'Done', 'USED', '2007-10-13 22:12:30'),
(1468, 'Show game statistics for two players', 'SRC', 'Done', 'USED', '2007-11-03 06:57:01'),
(1469, 'Send a message to contact', 'SRC', 'Done', 'USED', '2007-12-10 00:04:13'),
(1470, 'Invite contact', 'SRC', 'Done', 'USED', '2007-11-03 06:58:36'),
(1471, 'Add new contact', 'SRC', 'Done', 'USED', '2007-10-13 22:12:30'),
(1473, 'Search forums', 'SRC', 'Done', 'USED', '2007-11-03 06:58:36'),
(1474, 'News, Release notes', 'SRC', 'Done', 'USED', '2007-12-06 10:48:29'),
(1475, 'Time remaining#header', 'SRC', 'Done', 'USED', '2007-10-07 22:35:26'),
(1476, 'Edit contact', 'SRC', 'Done', 'USED', '2007-10-13 22:12:30'),
(1477, 'Add contact', 'SRC', 'Done', 'USED', '2007-10-13 22:12:30'),
(1478, 'Active', 'SRC', 'Done', 'USED', '2007-10-13 22:12:30'),
(1479, 'Name#header', 'SRC', 'Done', 'USED', '2007-10-08 17:34:58'),
(1480, 'Country#header', 'SRC', 'Done', 'USED', '2007-10-08 17:39:05'),
(1481, 'Rank info#header', 'SRC', 'Done', 'USED', '2007-10-08 17:40:24'),
(1482, 'Open for matches?#header', 'SRC', 'Done', 'USED', '2007-10-08 17:42:48'),
(1483, '#Games#header', 'SRC', 'Done', 'USED', '2007-10-08 21:28:39'),
(1484, 'Running#header', 'SRC', 'Done', 'USED', '2007-10-09 00:42:29'),
(1485, 'Finished#header', 'SRC', 'Done', 'USED', '2007-10-09 00:42:29'),
(1486, 'Won#header', 'SRC', 'Done', 'USED', '2008-01-03 06:13:32'),
(1487, 'Lost#header', 'SRC', 'Done', 'USED', '2007-12-06 11:31:51'),
(6181, 'Double digit kyu - from 10 kyu to 30 kyu inclusive. Refers to a rating, but commonly used in regard to a player with a DDK rating.', 'FAQ', 'Y', 'USED', '2014-08-03 11:05:51'),
(1489, 'Activity#header', 'SRC', 'Done', 'USED', '2007-12-06 11:03:31'),
(1490, 'Last access#header', 'SRC', 'Done', 'USED', '2007-12-07 14:51:59'),
(1492, 'Observers of game %s', 'SRC', 'Done', 'USED', '2007-10-13 22:18:28'),
(1493, 'All', 'SRC', 'Done', 'USED', '2007-10-14 11:37:22'),
(1497, 'Info#header', 'SRC', 'Done', 'USED', '2008-01-03 06:13:32'),
(1498, 'Comment#header', 'SRC', 'Done', 'USED', '2007-12-02 21:42:18'),
(1499, 'Type#headerwr', 'SRC', 'Done', 'USED', '2007-12-02 21:43:24'),
(1502, 'Time limit#header', 'SRC', 'Done', 'USED', '2007-12-06 10:36:26'),
(1503, 'Standard placement#header', 'SRC', 'Done', 'USED', '2007-10-08 21:33:05'),
(1505, 'Proper handicap (komi adjusted by system)', 'SRC', 'Done', 'USED', '2007-10-08 18:13:23'),
(1506, 'Type', 'SRC', 'Done', 'USED', '2007-12-07 14:31:05'),
(1507, 'Folder#header', 'SRC', 'Done', 'USED', '2007-10-08 01:33:44'),
(1508, 'Type#header', 'SRC', 'Done', 'USED', '2007-12-07 14:31:05'),
(1509, 'Direction#header', 'SRC', 'Done', 'USED', '2007-12-07 14:31:05'),
(1510, 'Correspondent#header', 'SRC', 'Done', 'USED', '2007-12-07 14:31:05'),
(1511, 'To#header', 'SRC', 'Done', 'USED', '2007-12-07 14:33:16'),
(1512, 'From#header', 'SRC', 'Done', 'USED', '2007-12-06 10:55:09'),
(1513, 'Subject#header', 'SRC', 'Done', 'USED', '2007-12-06 10:52:09'),
(1515, 'Mark#header', 'SRC', 'Done', 'USED', '2007-12-06 10:58:21'),
(1516, 'Myself#msgdir', 'SRC', 'Done', 'USED', '2007-12-07 14:33:16'),
(1517, 'Server#msgdir', 'SRC', 'Done', 'USED', '2011-06-12 20:21:22'),
(1518, 'To#msgdir', 'SRC', 'Done', 'USED', '2007-12-07 14:33:16'),
(1519, 'From#msgdir', 'SRC', 'Done', 'USED', '2007-12-06 10:55:09'),
(1520, 'Error#filter', 'SRC', 'Done', 'USED', '2007-10-07 22:00:04'),
(1521, 'Show Rows', 'SRC', 'Done', 'USED', '2007-10-07 22:35:26'),
(1523, 'Rating histogram', 'SRC', 'Done', 'USED', '2007-11-03 06:58:36'),
(1525, 'first new', 'SRC', 'Done', 'USED', '2007-10-09 19:06:19'),
(1526, 'found in forum', 'SRC', 'Done', 'USED', '2007-12-07 21:03:47'),
(1527, 'Forum search', 'SRC', 'Done', 'USED', '2007-12-06 11:06:15'),
(1528, 'All#forum', 'SRC', 'Done', 'USED', '2007-10-07 22:00:04'),
(1529, 'Term relevance#forumsort', 'SRC', 'Done', 'USED', '2007-10-07 22:00:04'),
(1532, 'All messages#forum', 'SRC', 'Done', 'USED', '2007-10-08 00:11:04'),
(1533, 'First messages#forum', 'SRC', 'Done', 'USED', '2007-10-08 00:11:04'),
(1535, 'Search terms#forum', 'SRC', 'Done', 'USED', '2007-12-07 21:05:30'),
(1536, 'Author (Userid)', 'SRC', 'Done', 'USED', '2007-12-07 21:05:30'),
(1537, 'Message scope#forum', 'SRC', 'Done', 'USED', '2007-10-08 00:35:28'),
(1538, 'Date#forum', 'SRC', 'Done', 'USED', '2007-10-08 00:35:28'),
(1539, 'Order#forum', 'SRC', 'Done', 'USED', '2007-10-08 00:35:28'),
(1540, 'Can\'t add myself as contact', 'SRC', 'Done', 'USED', '2007-10-13 22:18:28'),
(1541, 'Unknown user', 'SRC', 'Done', 'USED', '2012-08-26 18:25:43'),
(1542, 'Contact removed!', 'SRC', 'Done', 'USED', '2007-10-13 22:18:28'),
(1543, 'Contact saved!', 'SRC', 'Done', 'USED', '2007-10-13 22:18:28'),
(1544, 'Contact removal', 'SRC', 'Done', 'USED', '2007-10-13 22:18:28'),
(1545, 'Contact edit', 'SRC', 'Done', 'USED', '2007-10-13 22:18:28'),
(1546, 'Check contact', 'SRC', 'Done', 'USED', '2007-10-13 22:18:28'),
(1547, 'Remove contact', 'SRC', 'Done', 'USED', '2007-10-13 22:18:28'),
(1548, 'System categories', 'SRC', 'Done', 'USED', '2007-10-13 22:18:28'),
(1549, 'User categories', 'SRC', 'Done', 'USED', '2007-10-13 22:18:28'),
(1550, 'Notes', 'SRC', 'Done', 'USED', '2007-10-13 22:18:28'),
(1551, 'keep notes short, max. 255 chars', 'SRC', 'Done', 'USED', '2007-11-28 16:39:10'),
(1552, 'Save contact', 'SRC', 'Done', 'USED', '2007-10-13 22:18:28'),
(1553, 'Show contacts', 'SRC', 'Done', 'USED', '2007-10-13 22:18:28'),
(1554, 'Actions#header', 'SRC', 'Done', 'USED', '2007-12-07 14:58:05'),
(1555, 'System categories#header', 'SRC', 'Done', 'USED', '2007-12-06 11:35:57'),
(1556, 'User categories#header', 'SRC', 'Done', 'USED', '2007-12-06 11:35:57'),
(1557, 'Notes#header', 'SRC', 'Done', 'USED', '2007-12-06 11:35:57'),
(1558, 'Created#header', 'SRC', 'Done', 'USED', '2007-12-06 11:35:57'),
(1560, 'Search system categories', 'SRC', 'Done', 'USED', '2007-12-07 14:58:05'),
(1561, 'Search user categories', 'SRC', 'Done', 'USED', '2007-12-07 14:58:05'),
(1562, 'Contact list', 'SRC', 'Done', 'USED', '2007-12-06 11:09:29'),
(1563, 'DragonGoServer NEWS', 'SRC', 'Done', 'USED', '2007-11-03 06:58:36'),
(1564, 'All games#filteropp', 'SRC', 'Done', 'USED', '2007-10-08 00:35:28'),
(1565, 'Running games#filteropp', 'SRC', 'Done', 'USED', '2007-10-08 00:35:28'),
(1566, 'Finished games#filteropp', 'SRC', 'Done', 'USED', '2007-10-08 00:35:28'),
(1568, 'full stats only for finished games', 'SRC', 'Done', 'USED', '2007-12-07 14:58:05'),
(1569, 'Last changed', 'SRC', 'Done', 'USED', '2007-12-07 14:58:05'),
(1570, 'Game statistics for player %s', 'SRC', 'Done', 'USED', '2007-12-07 14:58:05'),
(1572, 'Show me as opponent', 'SRC', 'Done', 'USED', '2007-12-07 14:58:05'),
(1573, 'Show as my opponent', 'SRC', 'Done', 'USED', '2007-12-07 14:58:05'),
(1574, 'Switch opponent role', 'SRC', 'Done', 'USED', '2007-12-07 14:58:05'),
(1575, 'Players color', 'SRC', 'Done', 'USED', '2007-10-13 22:21:29'),
(1576, 'Sum', 'SRC', 'Done', 'USED', '2007-10-08 18:14:39'),
(1577, 'Win-Ratio on #Games', 'SRC', 'Done', 'USED', '2007-10-08 17:53:14'),
(1578, '#Games won : lost', 'SRC', 'Done', 'USED', '2007-10-08 17:53:14'),
(1579, '#Games won : lost by Score', 'SRC', 'Done', 'USED', '2007-10-08 17:53:14'),
(1580, '#Games won : lost by Resignation', 'SRC', 'Done', 'USED', '2007-10-08 17:53:14'),
(1581, '#Games won : lost by Time', 'SRC', 'Done', 'USED', '2007-10-08 17:53:14'),
(1582, '#Games with Jigo', 'SRC', 'Done', 'USED', '2007-10-08 17:53:14'),
(1583, '#Games with handicap', 'SRC', 'Done', 'USED', '2007-10-08 17:53:14'),
(1584, 'Maximum handicap', 'SRC', 'Done', 'USED', '2007-10-08 18:11:59'),
(1585, 'Show only initial-messages', 'SRC', 'Done', 'USED', '2007-12-07 14:33:16'),
(1586, 'All#filtermsg', 'SRC', 'Done', 'USED', '2007-10-07 22:40:05'),
(1587, 'Game-related#filtermsg', 'SRC', 'Done', 'USED', '2007-10-08 00:35:28'),
(1588, 'Game-unrelated#filtermsg', 'SRC', 'Done', 'USED', '2007-10-08 00:35:28'),
(1590, 'find Userid#filtermsg', 'SRC', 'Done', 'USED', '2007-12-07 14:33:16'),
(1591, 'All#msgdir', 'SRC', 'Done', 'USED', '2007-10-07 22:40:05'),
(1592, 'Select folders#filtermsg', 'SRC', 'Done', 'USED', '2007-10-08 01:34:50'),
(1594, 'Message search', 'SRC', 'Done', 'USED', '2007-12-06 11:06:15'),
(1595, 'Browse folders', 'SRC', 'Done', 'USED', '2007-10-08 01:33:44'),
(1596, 'Protect waitingroom games', 'SRC', 'Done', 'USED', '2007-12-06 11:39:38'),
(1597, 'Reject messages', 'SRC', 'Done', 'USED', '2007-10-13 22:27:15'),
(1598, 'Reject invitations', 'SRC', 'Done', 'USED', '2007-10-13 22:27:15'),
(1599, 'Buddy', 'SRC', 'Done', 'USED', '2007-10-13 22:27:15'),
(1600, 'Friend', 'SRC', 'Done', 'USED', '2007-10-13 22:27:15'),
(1601, 'Student', 'SRC', 'Done', 'USED', '2007-10-13 22:27:15'),
(1602, 'Teacher', 'SRC', 'Done', 'USED', '2007-10-13 22:27:15'),
(1603, 'Fan', 'SRC', 'Done', 'USED', '2010-06-21 21:10:16'),
(1604, 'Troll', 'SRC', 'Done', 'USED', '2010-06-21 21:10:16'),
(1606, 'Search#filter', 'SRC', 'Done', 'USED', '2007-10-07 22:35:26'),
(1607, 'Reset search#filter', 'SRC', 'Done', 'USED', '2007-10-07 22:35:26'),
(1608, 'Syntax#filter', 'SRC', 'Done', 'USED', '2007-10-07 22:35:26'),
(1609, 'NUM#filterhelp', 'SRC', 'Done', 'USED', '2007-11-20 03:00:03'),
(1610, 'TEXT#filterhelp', 'SRC', 'Done', 'USED', '2007-11-20 03:00:03'),
(1611, 'substring#filter', 'SRC', 'Done', 'USED', '2007-10-07 22:35:26'),
(1612, 'RATING#filterhelp', 'SRC', 'Done', 'USED', '2007-11-20 03:00:03'),
(1613, 'invalid rank', 'SRC', 'Done', 'USED', '2007-10-07 22:35:26'),
(1614, 'COUNTRY#filterhelp', 'SRC', 'Done', 'USED', '2007-11-16 09:16:43'),
(1617, 'All countries#filter', 'SRC', 'Done', 'USED', '2007-10-07 22:35:26'),
(1618, 'DATE#filterhelp', 'SRC', 'Done', 'USED', '2007-10-07 22:35:26'),
(1619, 'absolute#reldate', 'SRC', 'Done', 'USED', '2007-10-07 22:39:25'),
(1620, 'years#reldate', 'SRC', 'Done', 'USED', '2007-10-07 22:39:25'),
(1621, 'months#reldate', 'SRC', 'Done', 'USED', '2007-10-07 22:39:25'),
(1622, 'weeks#reldate', 'SRC', 'Done', 'USED', '2007-10-07 22:39:25'),
(1623, 'days#reldate', 'SRC', 'Done', 'USED', '2007-10-07 22:39:25'),
(1624, 'hours#reldate', 'SRC', 'Done', 'USED', '2007-10-07 22:39:25'),
(1626, 'RELDATE#filterhelp', 'SRC', 'Done', 'USED', '2007-10-07 22:39:25'),
(1627, 'absolute#filter', 'SRC', 'Done', 'USED', '2007-10-07 22:39:25'),
(1628, 'not numeric', 'SRC', 'Done', 'USED', '2007-10-07 22:39:25'),
(1629, 'maybe you want to choose absolute#reldate', 'SRC', 'Done', 'USED', '2007-10-07 22:39:25'),
(1630, 'All#boolsel', 'SRC', 'Done', 'USED', '2007-10-07 21:57:24'),
(1631, 'Yes#boolsel', 'SRC', 'Done', 'USED', '2007-10-07 21:57:24'),
(1632, 'No#boolsel', 'SRC', 'Done', 'USED', '2007-10-07 21:57:24'),
(1633, 'All#ratedsel', 'SRC', 'Done', 'USED', '2007-10-07 22:39:25'),
(1634, 'Yes#ratedsel', 'SRC', 'Done', 'USED', '2007-10-07 22:39:25');
INSERT INTO `TranslationTexts` (`ID`, `Text`, `Type`, `Translatable`, `Status`, `Updated`) VALUES
(1635, 'No#ratedsel', 'SRC', 'Done', 'USED', '2007-10-07 22:39:25'),
(1636, 'MATCHINDEX#filterhelp', 'SRC', 'Done', 'USED', '2007-11-20 03:00:03'),
(1637, 'Expert mode#filter', 'SRC', 'Done', 'USED', '2007-10-08 00:35:28'),
(1638, 'SCORE#filterhelp', 'SRC', 'Done', 'USED', '2007-11-20 03:00:03'),
(1639, 'Select none, one or more elements', 'SRC', 'Done', 'USED', '2007-10-13 22:08:46'),
(1640, 'too many separators#filter', 'SRC', 'Done', 'USED', '2007-10-08 00:35:28'),
(1641, 'need at least %1$s characters when using text with starting wildcard [%2$s]', 'SRC', 'Done', 'USED', '2007-12-08 14:14:52'),
(1642, 'not allowed as prefix#filter', 'SRC', 'Done', 'USED', '2010-04-02 15:58:16'),
(1643, 'invalid date-format#filter', 'SRC', 'Done', 'USED', '2007-12-06 10:54:31'),
(1644, 'has invalid date-part#filter', 'SRC', 'Done', 'USED', '2007-12-08 14:14:52'),
(1645, 'invalid day#filter', 'SRC', 'Done', 'USED', '2007-12-07 21:15:44'),
(1646, 'using bad quoting#filter', 'SRC', 'Done', 'USED', '2010-04-02 15:58:16'),
(1647, 'invalid XML-entity at position #', 'SRC', 'Done', 'USED', '2007-10-13 22:08:46'),
(1648, 'invalid XML-tag at position #', 'SRC', 'Done', 'USED', '2007-10-13 22:08:46'),
(1650, 'invalid XML-end-tag at position #', 'SRC', 'Done', 'USED', '2007-10-13 22:08:46'),
(1651, 'invalid XML-tag-attribute at position #', 'SRC', 'Done', 'USED', '2010-03-24 23:44:11'),
(1654, 'Description', 'SRC', 'Done', 'USED', '2007-12-07 21:05:30'),
(1660, 'How can I change the default number of rows for table lists?', 'FAQ', 'Done', 'USED', '2007-12-06 12:47:11'),
(1661, 'Go to your user profile and change the <b>Table max rows</b> to control how many rows are shown in table lists per default for the waiting room, message search, users, opponents and games pages. It\'s located in the user profile section that can locally be set browser dependent. The number of rows is temporarily changeable on the mentioned pages with table lists.\r\n\r\n<i>Please Note:</i>\r\nThe higher the number, the more load is put on the server. Therefore it\'s recommended to use a low number per default and only switch to a higher number on the according page.', 'FAQ', 'Done', 'USED', '2007-12-07 13:48:37'),
(1662, 'Can I search Dragon?', 'FAQ', 'Done', 'USED', '2010-05-21 19:12:24'),
(1663, 'Yes, there are search pages to search for specific data.\r\n\r\nThe most search pages show a table list with all the available data for the specific page (games or users for example). For some search pages there are additional form elements above or below the table list containing <i>filter</i>-elements. Most tables also have filters in the table-header below the column fieldnames.\r\n\r\nControlling elements for <b>filters</b> are:\r\n<ul>\r\n<li>A <b>filter</b> can be an input box, a selection element, a radio button, a checkbox or a combined input element. Entering or choosing a value for a filter of a column and pressing <i>ENTER</i> or the \"Search\"-button will restrict the shown table data matching the chosen filter-values while reloading the data. <br> On most search pages you can also do the <i>search</i> by using the key-shortcut \'x\' (Execute).\r\n\r\n<li>If you enter an <b>invalid value</b>, the erroneous filter-element is marked with a red border and an error message is shown.\r\n\r\n<li>The \"<b>Reset Search</b>\" resets the values in the search form to its default state. Almost all table lists also have a <home faq.php?read=t&cat=12#Entry245>\"Show Rows\"-button</home> to show less or more rows of data. The default number of rows can be set in your user profile (\"Table Max Rows\").\r\n\r\n<li>Most of the filters are always <b>visible</b>. Only some of them, like the country-selection can be hidden to save displaying space when clicking on the \'x\'-link (<image remove.gif>) right beside a filter. A hidden filter can be shown by selecting the \'<color blue>+</color>\'-link in the corresponding column.\r\n\r\n<li>Search terms for <home faq.php?read=t&cat=200#Entry225>fulltext</home> filters are going to be <b>highlighted</b> within some texts for messages, forum posts and contact notes.\r\n</ul>\r\n\r\nThere are <b>different filters</b> specialized for the according column or search page. If the filter-element has an input-box, a hover text shows a short syntax description of the filter, for example:\r\n<quote>Syntax[NUM]: 3, -14, 1-5, 9-</quote>\r\n\r\n<b>Syntactical help for filters:</b> The text-part in square-brackets (here \'<i>NUM</i>\') can be looked up in the FAQ under the topic <i>\"What is the syntax of a NUM-filter?\"</i> to get a more detailed description about the syntax for the particular filter.\r\n\r\nThere are specific <b>search pages</b> with filter elements for:\r\n<ul>\r\n<li><home faq.php?read=t&cat=200#Entry258>How can I search in the waiting room?</home>\r\n<li><home faq.php?read=t&cat=200#Entry257>How can I search my messages?</home>\r\n<li><home faq.php?read=t&cat=200#Entry256>How can I search for users?</home> (also for showing opponents and game-statistics for two players)\r\n<li><home faq.php?read=t&cat=200#Entry255>How can I search in my contact list?</home>\r\n<li><home faq.php?read=t&cat=200#Entry254>How can I search games?</home> (running, finished and observed games)\r\n<li><home faq.php?read=t&cat=200#Entry224>How can I search the forums?</home> (improved search and ordering added)\r\n</ul>', 'FAQ', 'Y', 'USED', '2012-08-26 18:17:33'),
(1664, 'What is the syntax of a MATCHINDEX-filter?', 'FAQ', 'Done', 'USED', '2010-05-21 19:12:24'),
(1665, 'This filter consists of two elements: an input box for entering <b>search terms</b> and a checkbox to select <b>expert-mode</b> (boolean-mode). The checkbox may not always be available. Then the hover-text gives the available syntax. A simple \'<tt>word</tt>\' would indicate an deactivated expert-mode.\r\n\r\nSyntax for this kind of filter is explained in FAQ-entry <home faq.php?read=t&cat=200#Entry242>How can I do a full-text search?</home>.', 'FAQ', 'Y', 'USED', '2012-08-26 18:17:33'),
(1666, 'What is the syntax of a RELDATE-filter?', 'FAQ', 'Done', 'USED', '2010-05-21 19:12:24'),
(1667, 'This filter consists of two elements: an input box and a selection box. The selection box shows the following choices controlling the format for the date value in the input box (dependent on the specific filter; not all of them may be available):\r\n<ul>\r\n<li><tt>absolute</tt>: the format of the value in the input box is expected to be that of an <b>absolute date</b>, see <home faq.php?read=t&cat=200#Entry249>DATE-filter</home>\r\n\r\n<li><tt>years</tt>, <tt>months</tt>, <tt>weeks</tt>, <tt>days</tt>, <tt>hours</tt>, <tt>mins</tt>: one of these indicate the time-unit used for the <b>relative date</b> in the input box written as (assume \'days\' as selected time-unit):\r\n  <ul>\r\n  <li><tt>30</tt> or <tt>&lt;30</tt> = search date value from 30 days (or selected time-unit) ago until today\r\n  <li><tt>&gt;30</tt> = search value before 30 days (or selected time-unit) ago\r\n  </ul>\r\n</ul>', 'FAQ', 'Y', 'USED', '2012-08-26 18:17:33'),
(1668, 'What is the syntax of a DATE-filter?', 'FAQ', 'Done', 'USED', '2010-05-21 19:12:24'),
(1669, 'Syntax for this kind of filter allows searching for absolute date values or a date-range (for example <tt>20070921</tt>, <tt>2003</tt>, <tt>2001-200404</tt>).\r\n\r\nPossible syntaxes in the hover text of a specific filter:<br>\r\n<ol>\r\n<li>Syntax[DATE]: <tt>date=Y(M(D(h(m(s</tt>\r\n<li>Syntax[DATE]: <tt>date, -date, date-, date1-date2; date=Y(M(D(h(m(s</tt>\r\n</ol>\r\n\r\nA date can be written in a <b>prefixed form</b> omitting the smaller date-parts:\r\n<ul>\r\n<li><tt>YYYY</tt> = represents whole year, for example <tt>2007</tt> finds all dates in the year 2007\r\n<li><tt>YYYYMM</tt> = year and month, for example <tt>200704</tt>\r\n<li><tt>YYYYMMDD</tt> = year + month + day, for example <tt>20070421</tt>\r\n<li><tt>YYYYMMDD hh</tt> = day in year + hours, for example <tt>20070421 17</tt>\r\n<li><tt>YYYYMMDD hhmm</tt> = day in year + hours + minutes, for example <tt>20070421 1751</tt>\r\n</ul>\r\n\r\nThe first syntax only allows <b>exact searches</b>, while the second syntax also allows to search for values that lies in <b>ranges of absolute date values</b>. The \'-\' is used as a special character to indicate a range:\r\n<ul>\r\n<li><tt>-200704</tt> = search for dates up to April 2007\r\n<li><tt>2003-</tt> = search for dates since year 2003 forward\r\n<li><tt>200503-20060718</tt> = search for dates between March 2005 and July, 18th of 2006\r\n</ul>', 'FAQ', 'Y', 'USED', '2012-08-26 18:17:33'),
(1670, 'What is the syntax of a SCORE-filter?', 'FAQ', 'Done', 'USED', '2010-05-21 19:12:24'),
(1671, 'This filter is built from two elements: a selection box and an input box. The selection box shows the following choices to be able to search for (\'B\'=black player, \'W\'=white player):\r\n<ul>\r\n<li><tt>All</tt> = no restriction on the games score\r\n\r\n<li><tt>?+R, B+R, W+R</tt> = searches for games won by resignation, the \'<tt>?</tt>\' represents both black or white\r\n\r\n<li><tt>?+T, B+T, W+T</tt> = searches for games won by timeout, the \'<tt>?</tt>\' represents both black or white\r\n\r\n<li><tt>?+?, B+?, W+?</tt> = searches for games won by score, the first \'<tt>?</tt>\' represents both black or white.\r\nFor these choices a score value has to be entered in the input box, for example <tt>0.5</tt> (search for exactly 0.5), <tt>-3.5</tt> (range search up to 3.5 points) or <tt>0.5-2</tt> (range search between 0.5 and 2 points).\r\nThe syntax of this score value is that of a <home faq.php?read=t&cat=200#Entry253>NUM-filter</home> allowing a range-search.\r\n\r\n<li><tt>Jigo</tt> = search for games, that resulted in <home faq.php?read=t&cat=3#Entry240>jigo</home>\r\n</ul>', 'FAQ', 'Y', 'USED', '2012-08-26 18:17:33'),
(1672, 'What is the syntax of a RATING-filter?', 'FAQ', 'Done', 'USED', '2010-05-21 19:12:24'),
(1673, 'Syntax for this kind of filter allows searching for rank values (<home faq.php?read=t&cat=105#Entry106>rating</home>, for example \'7k\') or a rating-range.\r\n\r\nPossible syntaxes in the hover text of a specific filter:<br>\r\n<ol>\r\n<li>Syntax[RATING]: <tt>2d, 7k</tt>\r\n<li>Syntax[RATING]: <tt>8k (+28%), 8k 28%, 4k (-39%), 4k-39%</tt>\r\n<li>Syntax[RATING]: <tt>2d, -7k, 18k-, 28k-1d</tt>\r\n</ol>\r\n\r\nThe first and second syntax gives a <b>full rank</b> syntax and a <b>percentaged rank</b>:\r\n<ul>\r\n<li><tt>2d = 2dan = 2 dan</tt> = search for rank \'2 dan\', i.e. ranks between 2d-50% until 2d+50%\r\n<li><tt>7k = 7kyu = 7 kyu = 7 gup</tt> = search for rank \'7 kyu\'\r\n<li><tt>8k (+28%)</tt> = search for rank 8k+28%\r\n</ul>\r\n\r\nThe third syntax only allows to search for values that lies in <b>rating ranges</b>. The \'-\' is a <b>special character</b> to indicate a range, but need <b>not</b> to be escaped for this filter-element.\r\n<ul>\r\n<li><tt>-7k</tt> = search for ranks up to 7 kyu\r\n<li><tt>2d-</tt> = search for ranks from 2 dan upwards\r\n<li><tt>28k-1d</tt> = search for ranks between 28k and 1d\r\n<li><tt>8k (+28%)-4k (-39%)</tt> = search for ranks between 8k+28% and 4k-39%.<br> No need to escape the \'-\'-range-character.\r\n</ul>', 'FAQ', 'Y', 'USED', '2012-08-26 18:17:33'),
(1674, 'What is the syntax of a TEXT-filter?', 'FAQ', 'Done', 'USED', '2010-05-21 19:12:24'),
(1675, 'Syntax for this kind of filter allows searching for textual values (for example \'<tt>game</tt>\'). Optional additional syntaxes allows a substring-search, text-ranges or a search for text with wildcards.\r\n\r\nPossible syntaxes in the hover text of a specific filter:<br>\r\n<ol>\r\n<li>Syntax[TEXT]: <tt>foo</tt>\r\n<li>Syntax[TEXT]: <tt>foo, -bar, baz-, boo-far</tt>\r\n<li>Syntax[TEXT]: ... <tt>fa*z*</tt> ...\r\n<li>Syntax[TEXT]: ... <tt>*goo</tt>  ...\r\n<li>Syntax[TEXT]: <tt>[substring]</tt> ...\r\n</ol>\r\n\r\nThe first syntax only allows an <b>exact search</b> for a specific text, while the second syntax also allows to search for text values that cover <b>ranges in alpha-numeric order</b>. The \'-\' is used as a special character to indicate a range: <ul>\r\n<li><tt>-bar</tt> = search for values &lt;= \'bar\'\r\n<li><tt>baz-</tt> = search for values &gt;= \'baz\'\r\n<li><tt>boo-far</tt>, <tt>d-f</tt> = search for values between \'boo\' and \'far\', or \'d\' and \'f\' (inclusive)\r\n</ul>\r\n\r\nThe third and fourth syntax allow to use <b>wildcards</b> to search for a text-value. The \'*\' represents the special wildcard character.\r\n<ul>\r\n<li><tt>fa*z*</tt> = search for texts beginning with \'fa\', followed by none or any other characters up to a \'z\' and some optional trailing text. The wildcard character can be escaped using single quotes: <tt>fa\'*\'z*</tt> or <tt>\'fa*z\'*</tt>\r\n\r\n<li><tt>*goo</tt>, <tt>*goo{3}</tt> = search for text that begins with an arbitrary text and ends in the text \'goo\'. Normally a leading wildcard character is not allowed, because that is an expensive search in terms of server-load. So it is only allowed, if \'<tt>*goo</tt>\' appears in the hover-text for a filter-element.\r\nIf the \'<tt>*goo</tt>\' is followed by a number in curly braces in the hover-text, then there must be at least that count of non-wildcard characters in the search-text to allow the search to use an optimized search.\r\n\r\n<li>As \'-\' and \'*\' are <b>special characters</b> indicating a range search or wildcard search, they can\'t be used for the respective characters. You can use single quotes to escape the special meaning.\r\nFor example: <tt>\'d-jig\'</tt> would find exactly that text (not a range). <tt>\'-a\'-\'-c\'</tt> searches for a text range from \'-a\' up to \'-c\', <tt>\'d*star\'</tt> or <tt>d\'*\'star</tt> would escape the wildcard.\r\n\r\n<li>The \'*\'-wildcard has precedence over the \'-\'-range character, so a \'-\' used together with a wildcard-character results in the \'-\' character and not in a range search.\r\n</ul>\r\n\r\nThe fifth syntax allows a search for a <b>substring</b> and is a shortcut to write \'<tt>*text*</tt>\' with the fourth syntax.', 'FAQ', 'Y', 'USED', '2012-08-26 18:17:33'),
(1676, 'What is the syntax of a NUM-filter?', 'FAQ', 'Done', 'USED', '2010-05-21 19:12:24'),
(1677, 'Syntax for this kind of filter allows searching for numerical values (integer or floating point, for example <tt>4711</tt> or <tt>3.14</tt>) or a value-range.\r\n\r\nPossible syntaxes in the hover text of a specific filter:<br>\r\n<ol>\r\n<li>Syntax[NUM]: <tt>314</tt>\r\n<li>Syntax[NUM]: <tt>3, -14, 1-5, 9-</tt>\r\n</ol>\r\n\r\nThe first syntax only allows <b>exact searches</b>, while the second syntax also allows to search for values that lies in <b>ranges of numeric values</b>. The \'-\' is used as a special character to indicate a range:\r\n<ul>\r\n<li><tt>-14</tt> = search for values &lt;= 14\r\n<li><tt>9-</tt>  = search for values &gt;= 9\r\n<li><tt>1-5</tt> = search for values between 1 and 5 (inclusive)\r\n</ul>\r\n\r\nAs \'<tt>-</tt>\' is a <b>special character</b> it can\'t be used to indicate a negative sign. Therefore if ever needed (and that is a rare case), you use single quotes to escape the special meaning. For example: <tt>\'-3\'-9</tt> searches for values between -3 (three negative) and 9.', 'FAQ', 'Y', 'USED', '2012-08-26 18:17:33'),
(1678, 'How can I search games?', 'FAQ', 'Done', 'USED', '2010-05-21 19:12:24'),
(1679, 'In the respective games list, you can use the <home faq.php?read=t&cat=200#Entry246>filter-elements</home> in the table-headers below the column fieldnames to restrict the list of shown games. Be aware that switching between finished, running and observed games with the links on the page bottom the filter-values are not shared.', 'FAQ', 'Y', 'USED', '2012-08-26 18:17:33'),
(1680, 'How can I search in my contact list?', 'FAQ', 'Done', 'USED', '2010-05-21 19:12:24'),
(1681, 'Go to your <home list_contacts.php>contact list</home> browsing your contacts directly or using the <home faq.php?read=t&cat=200#Entry246>filter-elements</home> in the table-header fieldnames and the checkboxes below the table to search for specific system and user categories.', 'FAQ', 'Y', 'USED', '2012-08-26 18:17:33'),
(1682, 'How can I search for users?', 'FAQ', 'Done', 'USED', '2010-05-21 19:23:31'),
(1683, 'Go to the <home users.php>users page</home>, on which you also can search for specific users. Be aware, that the default search only shows <i>\"active\"</i> users, which is reflected in the page title. This can be changed with the checkbox-filter in the <i>Activity</i>-column.\r\n\r\nAs additional feature, you can follow the link <i>\"Show my opponents\"</i> on the page-bottom to only show users you have played with or you currently play. There\'s also a link \"<i>Show opponents</i>\" on each user info page, that shows all opponents of that particular user.\r\n\r\nThat search page contain more filters above the table, that can place restrictions on the games with your opponents. Following the <i>\"Info\"</i>-button on a player opens a statistical page about the games between you and the selected opponent.', 'FAQ', 'Y', 'USED', '2012-08-26 18:17:33'),
(1685, 'Besides <home list_messages.php>browsing</home> through your messages, there is a <home search_messages.php>search option</home>.  You can reach this by going to your Messages page (from the main menu, on the left), and scrolling down to the bottom to find the \"Search messages\" link.\r\n\r\nIn the Search page, the heading &#145;Subject&#146; includes in-body text search.  For example, you may have a message with the subject &#145;<i>Hello!</i>&#146;  In the main text of that message may be the phrase &#145;<i>Yes, the weather is good here</i>&#146;.  Entering &#145;<i>weather</i>&#146; in the Subject field would find this message.', 'FAQ', 'Y', 'USED', '2012-08-26 18:17:33'),
(1686, 'How can I search in the waiting room?', 'FAQ', 'Done', 'USED', '2010-05-21 19:23:31'),
(1687, 'Searching in the games in the waiting room is possible using the filters in the table-head of the table list.\r\n\r\nThe default search shows the games, that are <i>suitable</i> to join.  That search is built by checking the <home faq.php?read=t&cat=357&e=127#Entry127>restrictions of the game offer</home>.  Non-suitable games are shown with a red background.\r\n\r\nThe links at the page bottom let you switch between showing all games and all games suitable for you.  The page title reflects the current selection with \"<i>Suitable waiting games</i>\" or \"<i>All waiting games</i>\".', 'FAQ', 'Changed', 'USED', '2012-12-26 02:53:48'),
(5236, 'What are Bookmarks?', 'FAQ', 'Done', 'USED', '2012-12-08 11:21:46'),
(5237, '<b>Bookmarks</b> on Dragon are used as shortcuts to certain pages and with interesting links, that otherwise would need several clicks to reach or would bloat other pages with too much text links.\r\nYou can find the bookmarks in the select-box in the top Dragon bar on each page.  If you have JavaScript enabled, selecting a bookmark will automatically take you to the page (without clicking on the \"<i>Show</i>\"-button).\r\n\r\nComments about some of the available bookmarks:\r\n<ul>\r\n<li><b>My running MP-games</b> : Your running <home faq.php?read=t&cat=305#Entry306>multi-player-games</home>\r\n<li><b>Latest forum posts</b> : the latest forum posts from 4 weeks are shown using the <home forum/search.php>forum search</home>.\r\n<li><b>Opponents online</b> : your opponents in running games being \"<home faq.php?read=t&cat=358&e=232#Entry232><i>online</i></home>\" within the last 10 minutes are shown using the <home opponents.php>opponents page</home>\r\n<li><b>Users online</b> : all users being \"<home faq.php?read=t&cat=358&e=232#Entry232><i>online</i></home>\" within the last 5 minutes are shown using the <home users.php>users page</home>\r\n</ul>', 'FAQ', 'Y', 'USED', '2012-12-08 11:21:46'),
(1690, 'How can I add a user to my contact list?', 'FAQ', 'Done', 'USED', '2010-05-21 19:23:31'),
(1691, 'There are two ways:<br>\r\n<ol>\r\n<li>Follow the link <home edit_contact.php>Add new contact</home> from the <home list_contacts.php>Contacts page</home>. Enter a valid userid and <i>\"Check\"</i> it.\r\n<li>Go to the user-info of the player you want to add and follow the bottom-link <i>\"Add contact\"</i>. If you already added the player, the link shows up as <i>\"Edit contact\"</i>.\r\n</ol>\r\n\r\nActivate system and user categories and enter an optional notes text for the user and then press the button <i>\"Save contact\"</i> to save it in your contact list.\r\n<ul>\r\n<li><b>System categories</b> have influence on games and messages:\r\n  <ul>\r\n  <li><i>Hide waitingroom games:</i> Hide game-offers in the waitingroom of certain user for the suitable-view. The game-offer is still shown for the all-games list.\r\n  <li><i>Protect waitingroom games:</i> Prevents user from joining your games in the waiting room\r\n  <li><i>Reject messages:</i> Reject messages sent to you by contact-user\r\n  <li><i>Reject invitations:</i> Reject game invitations sent to you by contact-user\r\n  </ul>\r\n\r\n<li><b>User categories</b> helps in categorizing contact-users:\r\n  <ul>\r\n  <li><i>Buddy:</i> good friend\r\n  <li><i>Friend:</i> friend-like\r\n  <li><i>Student:</i> student contact\r\n  <li><i>Teacher:</i> teacher contact\r\n  <li><i>Fan:</i> worshipped contact\r\n  <li><i>Troll:</i> mark contact-user as troll (for whatever reason)\r\n  <li><i>DGS-Crew:</i> contact supporting DGS in some way\r\n  <li><i>Miscellaneous:</i> as it has been decided not to provide customizable user categories, you can use this category to allow all kind of categorization by using keywords with a syntax you like in the Notes-field you can search for on the contact-list page.\r\n  </ul>\r\n</ul>', 'FAQ', 'Done', 'USED', '2011-10-26 10:43:30'),
(1692, 'What are Contacts?', 'FAQ', 'Done', 'USED', '2007-12-06 11:40:54'),
(1693, 'This feature allows you to set up a bookmark list of <b>other</b> players. There are system categories, that have influence on starting games with other players or receiving messages and invitations from them. There are also user categories, that can be used to categorize the other players. And you are allowed to write down private notes on your contacts.\r\n\r\nSee also other FAQ-entries about contacts:\r\n<ul>\r\n<li><home faq.php?read=t&cat=361#Entry260>How can I add a user to my contact list?</home> (with full description of the different categories)\r\n<li><home faq.php?read=t&cat=361#Entry264>How can I remove a user from my contact list?</home>\r\n<li><home faq.php?read=t&cat=361#Entry262>What do the items on the Contacts page mean?</home>\r\n<li><home faq.php?read=t&cat=200#Entry255>How can I search in my contact list?</home>\r\n<li><home faq.php?read=t&cat=361#Entry265>Can I protect my waiting room games from joining by certain users?</home>\r\n<li><home faq.php?read=t&cat=361#Entry266>Can I reject messages from certain users?</home>\r\n<li><home faq.php?read=t&cat=361#Entry267>Can I reject game invitations from certain users?</home>\r\n</ul>', 'FAQ', 'Done', 'USED', '2007-12-07 13:48:37'),
(1694, 'What are the items on the Contacts page?', 'FAQ', 'Y', 'USED', '2012-08-26 18:17:33'),
(1695, 'Here is a brief explanation of the items in the table listing on the <home list_contacts.php>contacts page</home>. Only your own contacts (contact-users) are shown.\r\n<ul>\r\n  <li><b>Actions:</b>\r\n  <ul>\r\n    <li><image send.gif> Link to send a message to contact-user.\r\n    <li><image invite.gif> Link to invite contact-user to a game.\r\n    <li><image edit.gif> Link to edit data of contact-user.\r\n    <li><image trashcan.gif> Link to remove contact-user. Needs confirmation.\r\n  </ul>\r\n\r\n  <li><b>Name:</b> Real name of contact-user.\r\n  <li><b>Userid:</b> Login-ID of the contact-user.\r\n  <li><b>Country:</b> Country of contact-user.\r\n  <li><b>Rating:</b> Current rating of contact-user.\r\n  <li><b>Last access:</b> Last access of contact-user.\r\n  <li><b>System categories:</b> List of system categories you activated for contact-user. See <home faq.php?read=t&cat=361#Entry260>How to add contact</home> for description.\r\n  <li><b>User categories:</b> List of user categories you\'ve chosen for contact-user. See <home faq.php?read=t&cat=361#Entry260>How to add contact</home> for description.\r\n  <li><b>Notes:</b> Information about contact-user as free text. Multiple lines allowed.\r\n  <li><b>Created:</b> Creation date of contact-user entry.\r\n  <li><b>Lastchanged:</b> Last changed date of contact-user entry.\r\n</ul>', 'FAQ', 'Y', 'USED', '2012-08-26 18:17:33'),
(1696, 'I\'m blocked from accessing DGS. What can I do?', 'FAQ', 'Done', 'USED', '2010-05-21 19:13:36'),
(1697, 'If you exceed your <home faq.php?read=t&cat=356&e=273#Entry273>user access quota</home> you may be blocked for a day.\r\n\r\nIf you feel, that you have been blocked accidentally or for an undeserved reason, please login as guest and inform the DGS-crew in the Support Forum giving your blocked account user-id.  Please do not publish your email address or any other personal details in the Forum.', 'FAQ', 'Changed', 'USED', '2010-11-03 07:58:47'),
(1698, 'How can I remove a user from my contact list?', 'FAQ', 'Done', 'USED', '2010-05-21 19:13:36'),
(1699, 'Go to the <home list_contacts.php>contacts list page</home>, follow the delete icon (<image trashcan.gif>) in the line of the corresponding user and acknowledge the removal.', 'FAQ', 'Done', 'USED', '2010-12-07 12:04:39'),
(1700, 'Can I prevent certain users from joining my waiting room games?', 'FAQ', 'Done', 'USED', '2010-05-21 19:14:36'),
(1701, 'Yes. <home faq.php?read=t&cat=361#Entry260>Add the user in your contact-list</home> and activate the system category <i>\"Protect waitingroom games\"</i>.\r\n\r\nDGS is supposed to be a friendly place, so please do not use this feature lightly.', 'FAQ', 'Done', 'USED', '2010-12-07 12:04:39'),
(1702, 'Can I automatically reject messages from certain users?', 'FAQ', 'Done', 'USED', '2010-05-21 19:19:27'),
(1703, 'Yes. <home faq.php?read=t&cat=361#Entry260>Add the user in your contact-list</home> and activate the system category <i>\"Reject messages\"</i>.\r\n\r\nHowever, DGS is supposed to be a friendly place. So don\'t use this feature lightly.', 'FAQ', 'Done', 'USED', '2010-12-07 12:04:39'),
(1704, 'Can I automatically reject game invitations from certain users?', 'FAQ', 'Done', 'USED', '2010-05-21 19:19:27'),
(1705, 'Yes. <home faq.php?read=t&cat=361#Entry260>Add the user in your contact-list</home> and activate the system category <i>\"Reject invitations\"</i>.\r\n\r\nHowever, DGS is supposed to be a friendly place. So don\'t use this feature lightly.', 'FAQ', 'Done', 'USED', '2010-12-07 12:04:39'),
(4628, 'Dragon multi-player-games', 'FAQ', 'Y', 'USED', '2012-09-03 18:42:12'),
(4629, 'What is a multi-player-game?', 'FAQ', 'Y', 'USED', '2012-09-07 01:38:07'),
(1712, 'How can I embed images in texts?', 'FAQ', 'Y', 'USED', '2012-08-26 18:17:33'),
(1713, 'An image tag is available, but it can only show the images on Dragon (not from remote images). For description see <home faq.php?read=t&cat=279#Entry281>Which Dragon tags can I use?</home>.', 'FAQ', 'Y', 'USED', '2012-08-26 18:17:33'),
(1714, 'Code improvements and recommendations', 'FAQ', 'N', 'USED', '2012-08-26 18:17:33'),
(1715, 'The code has been optimized (see also <home news.php#DGS_1_0_15>Release notes 1.0.15</home>).\r\n\r\nAs searching and table navigation has been extended, we don\'t know the dynamics yet this will have on the server load.\r\n\r\nSome database queries have been optimized and indexes have been added, but we urge you to be gentle to Dragon by not using too extensive searching. Concentrate on what you want to find and try to avoid massive activities looking around without a clear goal. Thank you!', 'FAQ', 'N', 'USED', '2012-08-26 18:17:33'),
(1716, 'What is my user access quota?', 'FAQ', 'Done', 'USED', '2012-08-26 18:17:33'),
(1717, 'To avoid excessive use of the server, a quota system (with a user access quota) to block users flooding DGS with requests was introduced.\r\n\r\nKeep a <i>\"normal\"</i> access profile and you will not be blocked for over-use:\r\nYou are allowed to make 500 page requests per hour.\r\nPlease read the Dragon guidelines: <home faq.php?read=t&cat=15&e=302#Entry302>How should the resources provided by DGS be used responsibly?</home>\r\n\r\nWhen your access quota runs low (&lt;= 10), a warning is shown at the top of each <u>web-page</u>.  When you got <b>1</b> hit left, you will be blocked for a day with the next request, so better stop right then.\r\nOn the <u>web-page</u>, your current remaining quota and the quota expire time is shown in the center of the bottom bar.  The <u>quick-do suite</u> returns the remaining user quota with each response.  The <u>quick-play page</u> does not return a warning, so be careful not to exceed the quota by checking it from time to time by checking on the web-site or using the quick-do-suite.\r\n\r\nAs DGS is not a real time server, it does not expect very frequent server checks (refreshes).  As a guide:\r\n<ul>\r\n<li>check at most once every hour -> gold medal\r\n<li>check every 10 minutes to 1 hour -> silver medal\r\n<li>check every 5 to 10 minutes -> bronze medal\r\n<li>check every 1 to 5 minutes -> you win no medals\r\n<li>check more than once per minute -> you may not be allowed to play for a while\r\n</ul>\r\n\r\nFor further description, see <home faq.php?read=t&cat=356#Entry263>I\'m blocked from accessing Dragon. What can I do?</home>', 'FAQ', 'Y', 'USED', '2012-08-26 18:17:33'),
(1718, 'Former updates', 'FAQ', 'N', 'USED', '2012-08-26 18:17:33'),
(1719, 'If you are interested, there\'s also a summary of the previous releases, see <home news.php#DGS_1_0_14>Release Notes 1.0.14</home> and below there.', 'FAQ', 'N', 'USED', '2012-08-26 18:17:33'),
(1720, 'Known bugs', 'FAQ', 'N', 'USED', '2012-08-26 18:17:33'),
(1721, 'Keeping a list of <b>known bugs of this release</b> (DGS 1.0.15) with a <b>status</b> (reported, in work, fixed in CVS, released on DGS):\r\n<ul>\r\n\r\n<note># template for new entry:\r\n<li><b>problem</b>.\r\nForum: <home forum/read.php?...>Subject</home>\r\n=> (status)\r\n</note>\r\n</ul>', 'FAQ', 'N', 'USED', '2012-08-26 18:17:33'),
(1723, 'Can I download a SGF from a game?', 'FAQ', 'Done', 'USED', '2009-07-05 14:39:22'),
(1724, 'Yes, but it\'s very important you know the different ways to download a game record.  Otherwise, if you are not careful, it can happen that you unintentionally publish private game messages or your private game notes.\r\n\r\nOn the game page there is a link \"<i>Download SGF</i>\" to download a SGF at any stage of the shown game.  If you are a player in that game an additional link \"<i>Download SGF with all comments</i>\" may be presented as well.\r\nOn the <home faq.php?read=t&cat=18&e=410#Entry410>attach SGF page</home> for each game, links with all three ways to download a SGF are presented.\r\n\r\nThe different <b>ways to download a SGF</b> have a close relationship with the <home faq.php?read=t&cat=365&e=75#Entry75>usage of <color red>public</color> and <color blue>hidden</color> tags in the game messages</home>.\r\nThe following remarks always apply regardless of what way you choose for the download:\r\n<ul>\r\n<li><b>Private comments</b> (without surrounding <color red>&lt;c></color> or <color blue>&lt;h></color> tags) are only visible to the game players regardless of the way to download or if the game is running or finished.\r\n<li><b>Hidden messages</b> (enclosed in <color blue>&lt;h>..&lt;/h></color> tags) are always visible to the author, and visible to all users after the game is finished.\r\n<li><b>Private game notes</b> can only be seen by the author.\r\n</ul>\r\n\r\nWhat parts of the game message and <home faq.php?read=t&cat=365&e=229#Entry229>private game notes</home> are included in the SGF depends on the game status and the downloading user (\"player\" in the game, \"observer\" = all other users):\r\n<ul>\r\n<li><b>Download sgf:</b> <color red>Public comments</color> are always included.  The <color blue>hidden comments</color> are only included for the author, and for all users (players and observers) when the game is finished.  <home faq.php?read=t&cat=365&e=229#Entry229>Private game notes</home> are NOT included.\r\n\r\n<li><b>Download sgf with all comments:</b> All comments (private, public and hidden comments) are included for all users (players and observers).  <home faq.php?read=t&cat=365&e=229#Entry229>Private game notes</home> of the downloading user are included.\r\n\r\n<li><b>Download sgf WITHOUT comments:</b> No comments and no <home faq.php?read=t&cat=365&e=229#Entry229>private game notes</home> are included.\r\n</ul>\r\n\r\n<b>IMPORTANT NOTE:</b> To <b><home faq.php?read=t&cat=18&e=410#Entry410>create a review and store it on DGS</home></b> it\'s recommended to <i>download the SGF without comments</i>.  If you want to include some or all of the game messages the players wrote during the game, choose the 1st or 2nd way to download the SGF as described above.  But then double-check each text node in the SGF to ensure, that you remove message parts that should stay private before you publish it!\r\n<hr>\r\nPlease note, that the SGF is cached by your browser.  To download an <b>uncached version</b> (within 5 minutes till cache expiry), please refer to: <_http://dragongoserver.cvs.sourceforge.net/viewvc/dragongoserver/DragonGoServer/specs/quick_suite.txt?revision=1.69&view=markup#l1772 |Dragon Quick-Suite Specifications - Section [4.SGF] Request + Options>.  This should be interesting for Dragon client or robot developers.\r\n\r\nPlease note, that there may be a difference of the <b>move numbering</b> on Dragon and in a SGF of a game, especially if it\'s a handicap game: Handicap stones are given a move number on DGS while in the SGF this may not be the case. Also the scoring steps on Dragon can show up on different move numbers in the SGF.\r\nSo don\'t rely on identical move numbers when doing a review for example.  On the game page, the respective move number for the SGF is shown to the left of the moves select-box for reference (e.g. \"SGF-Move 42\").\r\n\r\nA more <b>detailed description</b> how a downloaded SGF looks like, you can find in the <_http://dragongoserver.cvs.sourceforge.net/viewvc/dragongoserver/DragonGoServer/specs/quick_suite.txt?revision=1.69&view=markup#l1842 |Dragon Quick-Suite Specifications - Section [4.SGF] Response (SGF-properties)>.  This should be interesting for Dragon client or robot developers.', 'FAQ', 'Changed', 'USED', '2012-12-16 13:42:43'),
(1725, 'License', 'SRC', 'Done', 'USED', '2007-12-19 17:41:34'),
(1726, 'Affero General Public License', 'SRC', 'Done', 'USED', '2012-07-15 20:20:17'),
(1731, 'Fischer', 'SRC', 'Done', 'USED', '2010-03-04 00:05:27'),
(1732, 'Creation date (new first)#forumsort', 'SRC', 'Done', 'USED', '2007-12-31 18:21:13'),
(1733, 'Creation date (old first)#forumsort', 'SRC', 'Done', 'USED', '2007-12-31 18:21:13'),
(1734, 'Modification date (new first)#forumsort', 'SRC', 'Done', 'USED', '2007-12-31 18:21:13'),
(1735, 'Modification date (old first)#forumsort', 'SRC', 'Done', 'USED', '2007-12-31 18:21:13'),
(1736, 'Number of hits#forum', 'SRC', 'Done', 'USED', '2007-12-31 18:21:13'),
(1737, 'minutes#reldate', 'SRC', 'Done', 'USED', '2007-12-31 18:21:13'),
(1738, 'Can I make moves by entering a sequence of moves as a list?', 'FAQ', 'Done', 'USED', '2010-03-24 23:44:11'),
(1739, 'No.  This has been discussed, among other places in the discussion <home forum/read.php?forum=3&thread=18632>suggested move.sequence</home>.', 'FAQ', 'Done', 'USED', '2010-03-24 23:44:11'),
(1740, 'Why do some new users get a fractional rating?', 'FAQ', 'Done', 'USED', '2009-08-09 12:54:24'),
(1741, 'If the new user used an initial rating-type of \'eurorating\' or \'igs\' when joining, then the dgs-rating-conversion may produce some in-between ranks.  To test this yourself you can play around a bit with rank-conversions either on the <home edit_rating.php>Change rating & rank page</home> or on the <home rank_converter.php>DGS Rank Converter page</home>.', 'FAQ', 'Changed', 'USED', '2013-08-09 22:56:07'),
(1742, 'Dragon codes and markup', 'FAQ', 'Done', 'USED', '2010-05-21 19:19:27'),
(1743, 'Can I use HTML tags on Dragon?', 'FAQ', 'Done', 'USED', '2009-07-05 14:32:04'),
(1744, 'Dragon allows the use of some HTML tags.  There are also some tags that are specific to Dragon.  A tag is a special code within the text of a webpage.  A tag tells the web-browser <u>how to display</u> or <u>what to do with</u> a given part of the webpage.  Normally a tag has this format:\r\n<code><tag>Text that gets affected by the tag</tag></code>\r\n\r\nTags are usable at the following places on Dragon:\r\n<ul>\r\n<li>in the user bio</li>\r\n<li>in the user info, the field \"Rank Info\"\r\n<li>in the user info, the field \"Open for matches\"\r\n<li>in messages directly to another member\r\n<li>in messages in an ongoing game\r\n<li>in the forums\r\n<li>in the comment of the game offerings in the waiting room\r\n</ul>\r\n\r\nIf you include HTML tags and entities or use any of the Dragon tags please remember to adhere to the rules and syntax of HTML. Mostly this will mean including end-tags where that is proper.', 'FAQ', 'Done', 'USED', '2010-04-02 20:57:10'),
(1749, 'Learning and teaching', 'FAQ', 'Changed', 'USED', '2015-03-07 13:37:37'),
(1752, 'What is White Robot?', 'FAQ', 'Done', 'USED', '2015-03-07 13:38:10'),
(1753, '<user 25562> is a computer program registered as a user on Dragon, and capable of playing normal games with anyone interested. It is maintained by <user 19265>. White Robot is based on the <http://www.gnu.org/software/gnugo/ |GnuGo> engine.', 'FAQ', 'Done', 'USED', '2012-09-02 14:41:30'),
(1754, 'Sorry, you are not allowed to login as guest to this server. The IP address you are using has been blocked by the admins.', 'SRC', 'Done', 'USED', '2009-07-11 16:18:03'),
(1756, 'Sorry, you are not allowed to register a new account. The IP address you are using has been blocked by the admins.', 'SRC', 'Done', 'USED', '2009-07-11 16:03:52'),
(1757, 'To register a new account despite the IP-block, a user account can be created by an admin.', 'SRC', 'Done', 'USED', '2009-07-11 16:18:03'),
(1758, 'Please enter a user-id for the DragonGoServer and your email to send you the login details.', 'SRC', 'Done', 'USED', '2009-07-11 15:49:32'),
(1759, 'An IP-block is only used to keep misbehaving users away.', 'SRC', 'Done', 'USED', '2009-07-11 16:10:08'),
(1760, 'So please add why you want to bypass the IP-block in the Comments-field.', 'SRC', 'Done', 'USED', '2009-07-11 16:10:08'),
(1761, 'There you can also add questions you might have.', 'SRC', 'Done', 'USED', '2009-07-11 16:10:08'),
(1762, 'All fields must be provided in order to fulfill the request.', 'SRC', 'Done', 'USED', '2009-08-02 01:02:42'),
(1763, 'I have read and accepted the DGS <a href=\"%s\" target=\"dgsTOS\">Rules of Conduct</a>.', 'SRC', 'Done', 'USED', '2009-08-02 00:44:26'),
(1764, 'Send registration request', 'SRC', 'Done', 'USED', '2009-08-02 00:42:39'),
(1765, 'Sorry, you are not allowed to login to this server. Your account has been blocked by admins out of the following reason:', 'SRC', 'Done', 'USED', '2009-08-02 00:42:39'),
(1766, 'Sorry, you are not allowed to login to this server. Your account has been blocked by admins.', 'SRC', 'Done', 'USED', '2009-08-02 01:02:42'),
(1767, 'Sorry, you are not allowed to edit your bio. This feature has been blocked by admins.', 'SRC', 'Done', 'USED', '2009-08-02 01:02:42'),
(1768, 'Please read the Rules of Conduct page and check the box if you accept it.', 'SRC', 'Done', 'USED', '2009-08-02 01:02:42'),
(1769, 'Sorry, you are not allowed to view or post in this forum.', 'SRC', 'Done', 'USED', '2009-08-02 01:02:42'),
(1772, 'Show Forum Log', 'SRC', 'Done', 'USED', '2012-08-26 18:25:43'),
(1776, 'Terms of Service', 'SRC', 'Done', 'USED', '2009-02-04 11:56:42'),
(1777, 'Rules of Conduct and Privacy Policy', 'SRC', 'Done', 'USED', '2009-07-05 18:09:04'),
(1779, 'FAQ editors', 'SRC', 'Done', 'USED', '2009-07-05 17:52:00'),
(1780, 'Forum moderators', 'SRC', 'Done', 'USED', '2009-07-05 17:52:00'),
(1781, 'Forum moderator', 'SRC', 'Done', 'USED', '2009-05-06 03:18:18'),
(1782, 'NOTE: The full games list is per default restricted to show only recent games within %s day(s). This can be changed in the filter for [%s].', 'SRC', 'Done', 'USED', '2010-01-01 01:58:17'),
(1783, 'Account blocked - Login denied', 'SRC', 'Done', 'USED', '2010-03-04 00:41:28'),
(1784, 'Biographical info (hidden)', 'SRC', 'Done', 'USED', '2010-01-01 00:21:24'),
(1785, 'NOTE#guest', 'SRC', 'Done', 'USED', '2009-12-31 09:26:34'),
(1787, 'Hidden#forum', 'SRC', 'Done', 'USED', '2010-01-01 22:20:56'),
(1826, 'Refresh', 'SRC', 'Done', 'USED', '2010-04-02 17:03:40'),
(1842, 'Policy', 'SRC', 'Done', 'USED', '2009-12-30 16:39:16'),
(1843, 'DragonGoServer Policy', 'SRC', 'Done', 'USED', '2009-12-30 16:39:16'),
(1844, 'Rules of Conduct', 'SRC', 'Done', 'USED', '2009-12-30 16:52:53'),
(1845, 'DragonGoServer (DGS) is a place to meet Go friends from all over the world to play and enjoy some good games of Go. We have defined some basic rules to make DGS a friendly and thriving place. A more %s informal dragon etiquette %s can be found in the FAQ.', 'SRC', 'Done', 'USED', '2009-12-30 20:42:12'),
(1846, '<p>We do not accept: <ul>   <li>Discriminatory, offensive or abusive speech.   <li>Threats or insults directed at other members or admins.   <li>Pornographic texts or links to pornographic web sites.   <li>Any advertisement which have not been explicitly permitted.   <li>Any behavior which is illegal in either Sweden or in your country of residence. </ul>', 'SRC', 'Done', 'USED', '2010-01-01 02:33:31'),
(1847, '<p>If you do not comply to any of our rules of conduct we reserve the right to take any action we see fit in the particular situation. This can include removing written texts, restricting the usage of features, blocking your access to this site or termination of your account.', 'SRC', 'Done', 'USED', '2009-12-30 20:42:12'),
(1848, 'Privacy Policy', 'SRC', 'Done', 'USED', '2009-12-30 21:46:02'),
(1849, '<p>We will not give away personal information about you (email address, IP address and messages), which resides on DragonGoServer without explicit permission from you unless it is requested by police force.', 'SRC', 'Done', 'USED', '2010-01-01 00:35:26'),
(1850, '<p>You are responsible for your actions and information that you put on the site in your bio, forums or in messages to other members.', 'SRC', 'Done', 'USED', '2010-01-01 13:13:49'),
(1851, 'Effective Date#policy', 'SRC', 'Done', 'USED', '2010-01-01 00:27:10'),
(1852, 'The DragonGoServer policy takes effect at 14-Dec-2008. We reserve the right to change this policy from time to time. Any changes will be announced in the <home forum/list.php?forum=1>News forum</home>.', 'SRC', 'Done', 'USED', '2010-01-01 00:31:01'),
(1853, 'Snapshot', 'SRC', 'Done', 'USED', '2010-04-02 21:51:16'),
(1854, 'Snapshots of the source code', 'SRC', 'Done', 'USED', '2010-03-25 00:09:12'),
(1860, 'The translation data', 'SRC', 'Done', 'USED', '2010-03-25 00:09:12'),
(1861, 'Older versions', 'SRC', 'Done', 'USED', '2009-07-05 17:52:00'),
(1869, 'Overview of release DGS 1.0.14 (14-December-2008)', 'FAQ', 'N', 'USED', '2012-08-26 18:17:33'),
(1870, 'The release DGS 1.0.14 was an intermediate release to add some administrative functions.\r\n\r\nThe most important change is the addition of <b><home policy.php>the Dragon Go Server policy</home>.</b>\r\n\r\nA full list of <b>implemented functions and bugfixes</b> you can find in the document <b><home news.php#DGS_1_0_14>Release Notes 1.0.14</home></b>.\r\n\r\nAll changes from this release have been integrated in the <home faq.php>FAQ</home> by now.', 'FAQ', 'N', 'USED', '2012-08-26 18:17:33'),
(4637, 'How can I find multi-player-games?', 'FAQ', 'Y', 'USED', '2012-09-07 01:47:44'),
(4638, 'A multi-player-game is no ordinary game, that\'s <home faq.php?read=t&cat=305&e=313#Entry313>why it\'s not always listed in the game-lists for normal games</home>.\r\n\r\n<b>My MP-games in <home faq.php?read=t&cat=305&e=397#Entry397>setup-mode</home></b> can only be found in the list \"<i>Your multi-player-games to manage</i>\" on your status pages (<home status.php>status</home>, <home quick_status.php?version=2>quick-status</home>, <home rss/status.php>RSS status</home> or <home faq.php?read=t&cat=215#Entry217>WAP status</home>).  The number of your MP-games in <home faq.php?read=t&cat=305&e=312#Entry312>playing-mode</home> and setup-mode is shown on your <home userinfo.php>user-info page</home>.\r\n\r\n<b>My running MP-games</b> can be found in the <home faq.php?read=t&cat=17&e=317#Entry317>bookmarks</home> in the top bar, it is linked as \"<i>MP games</i>\" on your <home userinfo.php>user-info page</home>, and can be found in the <home site_map.php>site map</home>.\r\n\r\n<b>My running MP-games in which I have to move next</b> are listed within the normal status game-lists: <home status.php>status</home>, <home quick_status.php?version=2>quick-status</home>, <home rss/status.php>RSS status</home> or <home faq.php?read=t&cat=215#Entry217>WAP status</home>\r\n\r\n<b>My finished MP-games</b> can be found in the <home site_map.php>site map</home>.\r\n\r\n<b>My or user-specific running / finished MP-games, or MP-games I\'m observing</b> can be found with the <home show_games.php>games page</home>.  Enable the checkbox near the <image team.gif>-icon in the <i>GameType</i>-column and press <i>Search</i> and you will get the game-list restricted to MP-games.\r\n\r\n<b>All running / finished / observed MP-games</b> can be found with the <home show_games.php>games page</home>.  Select \"<i>Non-Std</i>\" in the <i>GameType</i>-filter and you will get the game-list restricted to MP-games.\r\n\r\nTo view the <home faq.php?read=t&cat=305&e=397#Entry397>managing page</home> for a single MP-game, follow the linked <image team.gif>-icon near the games <i>GameType</i>-info.', 'FAQ', 'Y', 'USED', '2012-09-07 01:47:44'),
(1871, 'Donate', 'SRC', 'Done', 'USED', '2009-12-30 22:12:49'),
(1872, 'Support DGS with a donation', 'SRC', 'Done', 'USED', '2009-07-05 17:52:00'),
(1873, 'Donation', 'SRC', 'Done', 'USED', '2009-07-05 17:52:00'),
(1874, 'Terms of Service - Rules of Conduct and Privacy Policy', 'SRC', 'Done', 'USED', '2009-07-05 18:07:07'),
(1875, 'Donations', 'SRC', 'Done', 'USED', '2009-07-06 19:45:20'),
(1877, 'Unfortunately on February 5th (2009), this machine was singing\n         on it\'s last verse, so we needed a new solution. In order to let us\n         use their newer hardware, we agreed on paying a small fee\n         (200 SEK/month, i.e. around 20 EUR/month).\n         We think this still is a very generous offer by them.', 'SRC', 'Done', 'USED', '2010-04-02 00:05:02'),
(1878, 'Therefore I am asking you to donate a small sum, e.g. 10 or 20 Euro,\n         so that we can continue running the server without personal costs.\n         Smaller amounts are equally appreciated.\n         Our goal is to collect enough money to pay for the service for\n         at least three years.\n\n         <p>\n         Best regards,\n\n         <p>\n         The admins of DGS', 'SRC', 'Done', 'USED', '2010-04-02 00:05:02'),
(1879, 'The following link will take you to PayPal#donate', 'SRC', 'Done', 'USED', '2009-12-30 22:12:49'),
(1880, 'Thank you for your generous donation to support DGS !!', 'SRC', 'Done', 'USED', '2009-12-30 22:12:49'),
(1881, 'How can I search for the most recent forum entries?', 'FAQ', 'Done', 'USED', '2010-03-25 00:02:28'),
(1882, 'To search for the most recently created forum entries go to the <home forum/search.php>forum search page</home> and enter how many days back you want to search in the <i>Date</i>-field. Then change the <i>Order</i> to \"Creation Date (new first)\" and <i>Search</i> for that.\r\n\r\nYou can use the select-option \"<i>Latest forum posts</i>\" from the <home faq.php?read=t&cat=17&e=317#Entry317>Dragon bookmarks</home>.\r\n\r\nHowever, it is not possible to distinguish between new posts (unread) or read posts, but at least you have the candidates to check.\r\n\r\nIn case you want to bookmark such a request, you can use the following link: <home forum/search.php?order=1&sf5=30&sf_init=1>DGS forums recent posts (30d)</home>', 'FAQ', 'Y', 'USED', '2012-08-26 18:17:33'),
(1883, 'Connection to database failed. Too many connections', 'FAQ', 'Changed', 'USED', '2013-05-19 09:45:33');
INSERT INTO `TranslationTexts` (`ID`, `Text`, `Type`, `Translatable`, `Status`, `Updated`) VALUES
(1884, 'This error can arise when there are too many users viewing pages of the DGS-site at the same time. The site appears to respond very slowly. The database can only work with a limited number of parallel connections (=<tt>max_user_connections</tt>).\r\n\r\nWhen a user requests a DGS-page, data from the database is needed. For each request a separate database-connection is used. When one database-query needed for a page lasts longer than normal (&gt;1 sec for example), it can quickly happen that requests from other users have to wait because the number of connections exceeds the limit. In this cases it\'s good to wait a few minutes to avoid making it worse, then try it again later.\r\nAt the moment <b><tt>max_user_connections</tt></b> is set to allow 280 concurrent connections (after migrating to the new server in Oct-2012 the limit has been increased from 124 to 280).\r\n\r\nBut to this situation not only page requests from ordinary users are relevant, but any query performed on the database. That means, also administrative tasks like the database backup strongly influences this.\r\n\r\nSince Oct-2012 the database of DGS is only locked for 5 minutes during backup time because of a very large database-table. The <b>daily backup</b> is running each day at 02:15 GMT, but the problem can also happen at other times when too many users ask pages that create long lasting queries.\r\n\r\nThe full error text for this kind of error is either:\r\n<code>Connection to database failed. Please wait a few minutes and test again.\r\nMysql error: User ... already has more than \'max_user_connections\' active connections</code>\r\nor\r\n<code>Connection to database failed. Please wait a few minutes and test again.\r\nMySQL error: Too many connections</code>\r\n\r\nMore detailed information you\'ll find in: <http://dev.mysql.com/doc/refman/5.1/en/server-system-variables.html#sysvar_max_user_connections>', 'FAQ', 'Y', 'USED', '2012-08-26 18:17:33'),
(1885, 'Hidden#wroom', 'SRC', 'Done', 'USED', '2010-03-15 20:33:16'),
(1886, 'Hide waitingroom games', 'SRC', 'Done', 'USED', '2010-03-04 00:55:43'),
(1887, 'Dear Go-lovers,\n\n         <p>\n         for almost seven years now (2009), the Dragon Go Server has been kindly\n         hosted by SamurajData completely free of charge. We are extremely\n         grateful for their support, the service provided by them was really\n         essential for the success of DGS. Since the start, DGS has seen\n         a steady increase in activity and since a few years back SamurajData\n         has had a little trouble motivating the cost of hosting us for free.\n         Due to the high activity on DGS, we used up resourses for the paying\n         customers, which made it necessary to move us to a separated machine.\n         On christmas 2007, they arranged an older server for us\n         to use by our own.', 'SRC', 'Done', 'USED', '2010-04-01 23:58:49'),
(1904, 'How do I file a complaint?', 'FAQ', 'Done', 'USED', '2012-08-26 18:17:33'),
(1905, 'If you consider that someone is not acting within DGS policy, or if you have any other query concerning DGS, please contact one of the <a href=\"http://www.dragongoserver.net/people.php\">Contributors to Dragon</a>.  They will be happy to help.  There is some explanation of this page on topic <home faq.php?read=t&cat=19#Entry86>Who are the people behind Dragon?</home>\r\n\r\nNot all DGS contributors are frequently active on the site.  The Forum Moderators tend to be here more often, so even if your query is not about the Forum, this may be a good place to start.  Do not worry if you are not quite sure who to contact, your query will be passed to the correct person.\r\n\r\nIdeally, complaints should be kept to a minimum and it is best if players resolve issues between them.\r\n\r\nIf issues are not resolved, public accusations in the Forum may lead to worsening the situation rather than a resolution, so please follow the above procedures.', 'FAQ', 'Y', 'USED', '2012-08-26 18:17:33'),
(1888, 'Can I communicate with my opponent?', 'FAQ', 'Y', 'USED', '2012-08-26 18:17:33'),
(1889, 'Yes.\r\n\r\nOnce you place a stone in a game you will see a message box.  If you wish to send a message with your move you should type this before clicking the submit button.  Messages from your opponent sent with moves will appear onscreen when you open a game.\r\n\r\nYou can also <home message.php?mode=NewMessage>send private messages</home> to your opponent (or anyone else on DGS) via the <home faq.php?read=t&cat=360#Entry360>messaging system</home>.', 'FAQ', 'Y', 'USED', '2012-08-26 18:17:33'),
(1895, 'The term for a teacher.  Also the form of address, as in \'Thank you for teaching me, Sensei\'.', 'FAQ', 'Done', 'USED', '2010-10-26 15:13:01'),
(1896, 'Aji', 'FAQ', 'Done', 'USED', '2012-08-22 19:48:45'),
(1897, 'Latent possibilities, or potential.  There can be bad aji and good aji.', 'FAQ', 'Done', 'USED', '2010-10-26 15:13:01'),
(1914, 'How should the resources provided by DGS be used responsibly?', 'FAQ', 'Y', 'USED', '2012-08-26 18:17:33'),
(1915, 'The Dragon Go Server (DGS) is a free-to-end-user facility, that is kindly hosted by our provider Samuraj Data AB in Sweden.  In order to make the best use of all the resources, it is important that DGS players act responsibly.\r\n\r\nViewing a page on DGS blocks some of the resources the server can provide at any one time.  That means, there is a limit of how many parallel requests the server can answer within a certain timeframe.\r\nSince DGS was founded in 2001 many new users joined the server, and there are currently 2000-3000 unique users each day.\r\n\r\nTo prevent excessive usage of the server there are two features in place:\r\n<ul>\r\n<li>A <home faq.php?read=t&cat=356&e=273#Entry273><b>user access quota</b></home> monitors the number of hits by a user.  If the quota is reached the account will be blocked for some time (usually a day).  A warning will be shown on the web-site shortly before the quota is exceeded.\r\n\r\n<li>The access quota is NOT applied to the <home rss/status.php><b>RSS-channel</b></home>, the <home quick_status.php><b>quick-status page</b></home>, the <home wap/status.php>WAP-channel</home> and SGF-download.\r\nFor the alternative interfaces (RSS-/WAP-channel and quick-status), a monitor is in place, that returns an error on excessive usage.\r\n</ul>\r\n\r\nDGS is not a real-time server, so it is not expected that you access pages or make requests too often.  Every additional request to the server takes away resources from others.\r\n\r\nAs a guideline:\r\n<ul>\r\n<li>Use <home faq.php?read=t&cat=12#Entry173>mail-notification</home> to inform yourself about updates (done twice per hour) instead of the other possibilities.\r\n<li>Avoid auto-refresh of DGS pages.  It decreases the available <home faq.php?read=t&cat=356&e=273#Entry273>access quota</home>.\r\n<li>If you use auto-refresh or a regular request for RSS/WAP or quick-status be sure to disable it when you do not need it.\r\nIt\'s a good thing, when your RSS-reader or DGS-notification client allow to configure it when and how often they poll the server.\r\n<li>More details about how to use RSS, WAP, quick-status, quick-play and SGF-download can be found in the FAQ-entry: <home faq.php?read=t&cat=215#Entry303>Request limitations of alternative interfaces</home>\r\n</ul>\r\n\r\nCurrently DGS has an average of 1 Mio page-hits per day.  As an extreme example, let\'s assume 2000 players all use RSS for the whole day asking every 5 secs.  That would be 2000 users * 17200 requests/day = 3.4 Mio RSS-requests ONLY for that.  The vast majority of results would be without updates.  These would be wasted requests that have needlessly used server resources.\r\n \r\nIt is the responsibility of all of us to choose wisely to ensure DGS remains an enjoyable place for everyone.', 'FAQ', 'Y', 'USED', '2012-08-26 18:17:33'),
(1910, 'Can I undo a move?', 'FAQ', 'Done', 'USED', '2012-08-26 18:17:33'),
(1906, 'Can I use aids while playing a game?', 'FAQ', 'Y', 'USED', '2012-08-26 18:17:33'),
(1902, 'What is the Devel Dragon Go Server?', 'FAQ', 'Y', 'USED', '2012-08-26 18:17:33'),
(1903, 'The <a href=\"http://dragongoserver.sourceforge.net/\" target=\"_blank\">Devel Dragon Go Server</a> is where new DGS developments are first publicly displayed and tested.\r\n\r\nThe devel server is an experimental test bed for:\r\n- DGS developers\r\n- client developers using alternative interfaces such as robots and apps\r\n- pre-release testing.\r\n\r\nUsing a separate server facilitates continual DGS improvements, via the development, testing and enhancement of new features, whilst significantly reducing possible disruption to the main DGS site.\r\n \r\nFor most DGS members the devel server will not be of great interest, but please feel free to have a look around the site and try some features, with the caveats that they will be in various stages of development, may have bugs, and may result in crashes.  With this in mind, general feedback is not sought on devel server features.\r\n\r\nFrom time to time feedback will be requested for specific features shortly before release, and participation in this is highly valuable to helping ensure the ongoing success of DGS.', 'FAQ', 'Y', 'USED', '2012-08-26 18:17:33'),
(1907, 'The Dragon-team would ask you to take the following to heart while playing a game:\r\n<ul>\r\n<li>You CAN use all kind of aids by doing research of your <u>own</u>.\r\nFor example studying books, looking up joseki dictionaries, game databases, and analyzing your game in an SGF editor.\r\n\r\n<li>In light of fair play you SHOULD NOT ask <u>another</u> person or go-playing program to help you find your moves or strategy in the game.\r\n</ul>\r\n\r\nThe above does not apply for games with a different agreement between the players.  In teaching games it can make sense to ask for views from others.  Tournament directors may have specific rule sets for their tournaments.\r\n\r\nWe would consider it polite to clarify any different rules with your opponents before you start your games.\r\n\r\nUnless different rules are agreed, it will be assumed that players are operating as outlined above. To deviate from this without agreement from your opponent would be cheating.\r\n\r\nTo give you a better understanding of this topic please look at: <i><home faq.php?read=t&cat=15#Entry157>Can I seek help during play?</home></i>', 'FAQ', 'Y', 'USED', '2012-08-26 18:17:33'),
(1908, 'How can I get stronger?', 'FAQ', 'Done', 'USED', '2012-08-26 18:17:33'),
(1909, 'There are a range of approaches, such as:\r\n<ul>\r\n<li>reviewing your own games\r\n<li>using an sgf editor to try different options\r\n<li>getting games reviewed\r\n<li>practice reading\r\n<li>practising problems.\r\n</ul>\r\n\r\nThere are many Go sites that can help.\r\n\r\nSome useful Go problems may be found at these sites:\r\n<ul>\r\n<li><http://senseis.xmp.net/?ProblemsAndExercises>\r\n<li><http://www.goproblems.com/>\r\n</ul>\r\n\r\nThe latter site has the option to choose the type of problem.  Various Go players have different views on this, but life and death problems are generally considered useful for building strength.', 'FAQ', 'Y', 'USED', '2012-08-26 18:17:33'),
(1911, 'No, and such an option will not be considered for implementation in the foreseeable future.\r\n\r\nThe reason for this is that DGS has a two-phase system for moves.   A player makes a move and only submits the move if satisfied.  If the player is not satisfied the player can retract the move and try different moves (as many as desired*) before submitting.\r\n\r\n*The only constraint on the number of moves a player may try is that the clock will continue to run until a move is submitted.', 'FAQ', 'Y', 'USED', '2012-08-26 18:17:33'),
(1919, 'In case you HAVE an email set in your account, you can generate a new one sent to your email with: %s', 'SRC', 'Done', 'USED', '2012-07-03 12:16:26'),
(1920, 'In case you have no email set in your account:', 'SRC', 'Done', 'USED', '2012-08-26 18:25:43'),
(1922, 'for more details on that see FAQ:', 'SRC', 'Done', 'USED', '2012-07-03 12:16:26'),
(1923, 'Quota#user', 'SRC', 'Done', 'USED', '2012-05-08 18:13:58'),
(1924, 'Game calculations', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(1916, 'Request limitations of alternative interfaces', 'FAQ', 'Y', 'USED', '2012-08-26 18:17:33'),
(1917, 'Before you use one of the alternative interfaces, please ensure, that you read the FAQ entry: <home faq.php?read=t&cat=15#Entry302>How should the resources provided by DGS be used responsibly?</home>\r\n\r\nWe were forced to establish some limitations, because the alternative interfaces were used too often, in particular the RSS channel.  A limitation may be necessary for the others interfaces as well if there are too many requests.\r\n\r\nBelow you find the \"allowed\" minimum limitations.  However, you should not use those minimums just because it is the minimum.  Instead responsibly choose a request interval, that you can live with and does not stress the server too much.\r\n<ul>\r\n<li><b><home rss/status.php>RSS-Status</home></b> and <b><home wap/status.php>WAP-Status</home></b>:</b> The minimum request interval for the RSS and WAP channel is one request in 5 minutes. Requesting it more often results in an error message. At least one result per hour will be returned even if the request linit has been exceeded.\r\n\r\n<li><b><home quick_status.php>Quick-Status</home>:</b> Access is not restricted, though the content is cached on the server using different expire times for the returned data sections.  For details see <http://dragongoserver.cvs.sourceforge.net/viewvc/dragongoserver/DragonGoServer/specs/quick_suite.txt?revision=1.69&view=markup#l2018 |Quick-Suite Specification - Section [4.QST] Quick-Status>.\r\n\r\n<li><b>Quick-Do Suite:</b> Restricted by <home faq.php?read=t&cat=356&e=273#Entry273>user access quota</home>.\r\n\r\n<li><b>Quick-Play:</b> Restricted by <home faq.php?read=t&cat=356&e=273#Entry273>user access quota</home>.\r\n\r\n<li><b>SGF-Download:</b> Currently unrestricted\r\n</ul>', 'FAQ', 'Y', 'USED', '2012-08-26 18:17:33'),
(1926, 'Show Rating Calculations', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(1927, 'Result', 'SRC', 'Done', 'USED', '2012-06-11 20:52:19'),
(1928, 'New game calculation', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(1929, 'Your access quota is running low.<br>You only got %s hits left before you get blocked for %s !!', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(1930, 'Your access quota is exceeded.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(1932, 'Temporary access restriction', 'SRC', 'Done', 'USED', '2012-07-02 11:35:38'),
(1933, 'Sorry, there\'s nothing to save.', 'SRC', 'Done', 'USED', '2012-07-14 14:33:42'),
(1934, 'Bulletin saved!', 'SRC', 'Done', 'USED', '2012-06-15 22:44:43'),
(1935, 'Admin Bulletin', 'SRC', 'Done', 'USED', '2012-07-29 11:52:42'),
(1936, 'Bulletin ID', 'SRC', 'Done', 'USED', '2012-07-29 11:52:42'),
(1937, 'NEW bulletin#bulletin', 'SRC', 'Done', 'USED', '2012-06-15 22:44:43'),
(1938, 'Bulletin Author', 'SRC', 'Done', 'USED', '2012-07-29 11:52:42'),
(1939, 'Bulletin Flags', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(1941, 'Hits (read marks)', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(1942, 'Admin Note', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(1943, 'Error', 'SRC', 'Done', 'USED', '2012-06-13 22:28:35'),
(1944, 'There are some errors', 'SRC', 'Done', 'USED', '2012-06-13 22:28:35'),
(1945, 'Current Category#bulletin', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(1946, 'Current Status#bulletin', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(1947, 'Current Target Type#bulletin', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(1950, 'only for target-type [%s], user-id (text or numeric)#bulletin_userlist', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(1953, 'Users [%s] have reject message contact-setting for bulletin-author [%s]', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(1955, 'Publish time', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(6254, 'Annul game (detach from tournament)', 'SRC', 'Y', 'USED', '2015-01-12 18:23:50'),
(1957, 'Expire Time', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(1959, 'Text', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(1960, 'Unsaved edits', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(1961, 'Save bulletin', 'SRC', 'Done', 'USED', '2012-06-15 22:44:43'),
(1964, 'All Bulletins', 'SRC', 'Done', 'USED', '2012-06-15 22:44:43'),
(1965, 'New user bulletin', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(1966, 'New admin bulletin', 'SRC', 'Done', 'USED', '2012-06-15 22:44:43'),
(1967, 'Bulletin target-type [%s] is only an initial value and must be changed!', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(1968, 'Bulletin Category [%s] requires a tournament-ID!', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(1969, 'Bulletin Target-Type [%s] requires a tournament-ID!', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(1970, 'Tournament-ID must be numeric!', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(1971, 'No tournament found for tournament-ID [%s]!', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(1972, 'Target-Type must be set to [%s or %s] if Category is [%s]!', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(1973, 'Tournament-ID [%s] must be cleared when Target-Type is not [%s or %s] and Category is not [%s]!', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(1974, 'Bulletin Target-Type [%s] requires a game-ID!', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(1975, 'Game-ID must be numeric!', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(1976, 'No game found for game-ID [%s]!', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(1977, 'Game-ID [%s] must reference a multi-player-game!', 'SRC', 'Done', 'USED', '2012-06-13 22:46:32'),
(1978, 'Game-ID [%s] must be cleared when Target-Type is not [%s]!', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(1979, 'Missing bulletin author', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(1981, 'User-list must be cleared when the target-type is changed#bulletin', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(1982, 'There are User List Warnings which must be checked for saving bulletin!', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(1983, 'Publish time for bulletin', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(1985, 'Expire time for bulletin', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(1986, 'Bulletin subject missing or too short', 'SRC', 'Done', 'USED', '2012-06-15 22:51:44'),
(1987, 'Missing admin-note for user-changeable bulletin on status [%s].', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2005, 'Tournament ID', 'SRC', 'Done', 'USED', '2012-07-29 11:52:42'),
(2006, 'Tournament Game Status', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2055, 'Save changes', 'SRC', 'Done', 'USED', '2012-07-27 10:03:29'),
(2059, 'Change rating & rank', 'SRC', 'Done', 'USED', '2012-07-29 09:01:06'),
(2086, 'Survey saved!', 'SRC', 'Done', 'USED', '2012-06-15 22:29:41'),
(2087, 'Admin Survey', 'SRC', 'Done', 'USED', '2012-06-15 22:25:49'),
(2088, 'Survey ID', 'SRC', 'Done', 'USED', '2012-06-15 22:25:49'),
(2089, 'Reload Survey', 'SRC', 'Done', 'USED', '2012-06-15 22:25:49'),
(2090, 'View survey', 'SRC', 'Done', 'USED', '2012-08-26 18:25:43'),
(2091, 'NEW survey#survey', 'SRC', 'Done', 'USED', '2012-06-15 22:25:49'),
(2092, 'Survey Author', 'SRC', 'Done', 'USED', '2012-06-15 22:25:49'),
(2093, 'Created', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2094, 'Vote User Count#survey', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2095, 'Current Type#survey', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2097, 'Points#survey', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2098, 'Selections#survey', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2101, 'Title', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2102, 'Survey Options', 'SRC', 'Done', 'USED', '2012-06-15 22:25:49'),
(2104, 'to restrict users to vote on survey, user-id (text or numeric)#survey_userlist', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2105, 'Save Survey', 'SRC', 'Done', 'USED', '2012-06-15 22:25:49'),
(2106, 'Vote Users#survey', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2107, 'Surveys', 'SRC', 'Done', 'USED', '2012-06-15 22:25:49'),
(2108, 'New survey', 'SRC', 'Done', 'USED', '2012-06-15 22:25:49'),
(2109, 'Missing &lt;opt>-tag in survey-options-text.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2110, 'Bad syntax around %s. &lt;opt> found: &lt;opt> incomplete', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2111, 'Tag-label [%s] in %s. &lt;opt> already used.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2112, 'Expecting number for tag-label in %s. &lt;opt> in range %s, but was [%s].', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2113, 'Expecting number for min-points in %s. &lt;opt> to be in range %s or empty for default, but was [%s].', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2114, 'Only value 0 is allowed for min-points in %s. &lt;opt>.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2115, 'Value 0 is not allowed for min-points in %s. &lt;opt>.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2116, 'Only value 1 is allowed for min-points in %s. &lt;opt>.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2117, 'Survey-option-title in %s. &lt;opt> is missing.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2118, 'Incomplete &lt;opt> found in remaining text', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2119, 'Expecting tag-labels to be in range %s.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2120, 'Expecting %s survey-options, but there are [%s].', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2121, 'Update of survey-options not possible: there are user-votes.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2122, 'Delete of survey-option with tag [%s] not possible: it already has user-votes.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(5850, 'Found %s pool-winners for round #%s in %s pools.', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(2125, 'Min-points must be smaller than max-points.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2126, 'Use %s-type instead if min-points equals max-points.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2127, 'Use %s-type instead if difference between min- & max-points is only 1.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2128, 'Use %s-type instead if max-points is only 1.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2131, 'Min-selections must be smaller than max-selections.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2132, 'Min-selections must not be equal to max-selections: it makes no sense to select all options', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2133, 'Use %s-type instead if max-selections is only 1.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2134, 'Expecting value 0 for min-points, but was [%s].', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2135, 'Expecting value 0 for max-points, but was [%s].', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2136, 'Survey title missing or too short', 'SRC', 'Done', 'USED', '2012-06-15 22:29:41'),
(2137, 'Value for max-selections [%s] can not exceed number of survey-options [%s].', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2144, 'Update of survey not allowed, because there are user-votes.', 'SRC', 'Done', 'USED', '2012-06-15 22:29:41'),
(2145, 'Professional', 'SRC', 'Done', 'USED', '2012-07-02 11:35:38'),
(2146, 'Robot', 'SRC', 'Done', 'USED', '2012-08-22 19:48:45'),
(2153, 'Time added!', 'SRC', 'Done', 'USED', '2012-06-11 20:52:19'),
(2154, 'Komi-Bid saved successfully!#fairkomi', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2155, 'Komi-Bid saved successfully, komi & color determined and game started!#fairkomi', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2156, 'Help', 'SRC', 'Done', 'USED', '2012-07-29 11:50:10'),
(2157, 'Site help & users guide', 'SRC', 'Done', 'USED', '2012-07-29 11:50:10'),
(2158, 'Statistics', 'SRC', 'Done', 'USED', '2012-07-02 11:35:38'),
(2159, 'Web-Statistics', 'SRC', 'Done', 'USED', '2012-07-29 11:50:10'),
(2160, 'Statistics about Dragon', 'SRC', 'Done', 'USED', '2012-07-29 11:50:10'),
(2161, 'DGS Rank Converter', 'SRC', 'Done', 'USED', '2012-07-29 11:52:42'),
(2162, 'Converts other ranks & ratings to DGS-rank', 'SRC', 'Done', 'USED', '2012-07-29 11:50:10'),
(2163, 'Request to register new account has been sent to an admin. This can take some time. If everything is OK, the account-details with password to login are sent to your email.', 'SRC', 'Done', 'USED', '2012-07-27 09:47:04'),
(2164, 'Register new account for IP blocked users', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2165, 'The following errors have been detected', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2166, 'Edit Bulletin', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2167, 'New bulletin', 'SRC', 'Done', 'USED', '2012-08-26 18:25:43'),
(2168, 'Game#bulletin', 'SRC', 'Done', 'USED', '2012-06-15 22:49:41'),
(2169, 'Category#bulletin', 'SRC', 'Done', 'USED', '2012-06-15 22:46:53'),
(2170, 'Status#bulletin', 'SRC', 'Done', 'USED', '2012-07-29 11:52:42'),
(2171, 'Target Type#bulletin', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2172, 'My Bulletins', 'SRC', 'Done', 'USED', '2012-06-15 22:46:53'),
(2173, 'Show game-players', 'SRC', 'Done', 'USED', '2012-06-16 19:06:50'),
(2174, 'Tournament info', 'SRC', 'Done', 'USED', '2012-07-02 11:35:38'),
(2175, 'Only participants of multi-player-game [%s] can create a MPG-bulletin.', 'SRC', 'Done', 'USED', '2012-06-13 22:46:32'),
(2176, 'Only the owner or a director of tournament [%s] can create a tournament-news-bulletin.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2177, 'Expire-time must be within %s days.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2178, 'User picture removed!', 'SRC', 'Done', 'USED', '2012-07-27 10:16:23'),
(2179, 'User picture saved!', 'SRC', 'Done', 'USED', '2012-07-27 10:16:23'),
(2180, '[ Dimensions: %s x %s, Size: %s KB ]', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2181, 'User picture edit', 'SRC', 'Done', 'USED', '2012-07-27 10:11:31'),
(2182, 'Upload picture', 'SRC', 'Done', 'USED', '2012-07-27 10:11:31'),
(2183, 'Errors', 'SRC', 'Done', 'USED', '2012-06-11 20:52:19'),
(2184, 'Current picture', 'SRC', 'Done', 'USED', '2012-07-27 10:11:31'),
(2185, 'Save picture', 'SRC', 'Done', 'USED', '2012-07-27 10:11:31'),
(2186, 'Remove picture', 'SRC', 'Done', 'USED', '2012-07-27 10:11:31'),
(2187, 'Limits on uploaded image-file: max. %s x %s pixels and max. %s KB', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2188, 'Supported image formats: JPEG, GIF, PNG', 'SRC', 'Done', 'USED', '2012-07-27 10:11:31'),
(2189, 'User picture notes', 'SRC', 'Done', 'USED', '2012-07-27 10:11:31'),
(5746, 'Wed', 'SRC', 'Done', 'USED', '2013-12-01 17:02:29'),
(5747, 'Thu', 'SRC', 'Done', 'USED', '2013-12-01 17:02:29'),
(2191, 'Show Bulletin Categories', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2192, 'Reject win by timeout', 'SRC', 'Done', 'USED', '2012-07-30 15:06:19'),
(2193, 'Activate check on rated (non-tournament) game won by timeout:#rwt', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2194, 'The win of a game by timeout will be \"rejected\" (i.e. changed to unrated),<br>if the loser has not moved in any game for a certain amount of time.#rwt', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2195, 'days (minimum) the loser has not moved in any game#rwt', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2196, 'Appearance', 'SRC', 'Done', 'USED', '2012-07-27 10:11:31'),
(2197, 'Enable JavaScript', 'SRC', 'Done', 'USED', '2012-07-27 10:03:29'),
(2198, 'No button', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2199, 'ID button', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2200, '(only for textured wood colors)', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2201, 'Hover (show coordinates)', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2202, 'SGF Hover (show SGF coordinates)', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2203, 'Show numbers only on Hover', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2204, 'Relative numbering', 'SRC', 'Done', 'USED', '2012-07-27 10:11:31'),
(2205, 'Reverse numbering', 'SRC', 'Done', 'USED', '2012-07-27 10:11:31'),
(2206, 'Mark Last Move Capture', 'SRC', 'Done', 'USED', '2012-07-27 10:11:31'),
(2207, 'Move marker', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2208, 'Edit user picture', 'SRC', 'Done', 'USED', '2012-07-27 10:16:23'),
(2209, 'Rank updated!', 'SRC', 'Done', 'USED', '2012-07-29 09:01:06'),
(2210, 'Rank & rating updated!', 'SRC', 'Done', 'USED', '2012-07-29 09:01:06'),
(2211, 'Change DGS-rating and rank-info', 'SRC', 'Done', 'USED', '2012-07-29 09:01:06'),
(2212, 'User', 'SRC', 'Done', 'USED', '2012-07-27 10:16:23'),
(2213, 'You need to <b>specify a \'Rating\'</b> if you want to <b>play RATED games</b>#ranknotes', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2214, 'Choose your rating wisely, because this can normally not be changed after you started a rated game.#ranknotes', 'SRC', 'Done', 'USED', '2012-07-29 09:01:06'),
(2215, 'If you know your rank from another source, e.g. from another Go-Server or from an official rating-list, you may use the Rank Converter to find an appropriate rank on DGS.#ranknotes', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2216, 'If you don\'t know your rating at all, you may ask for help in the forums. An absolute beginner can start with a rank between 25k-30k.#ranknotes', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2217, 'We encourage you to trust the rating-system to adjust your rating. Playing many games helps in quickly adjusting your rating to the proper level.#ranknotes', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2218, 'The average rating-diff is about 0.3k for a balanced game, so you need to win ca. 3-4 games with an evenly matched player to increase your rating by 1k. However, this depends on the players confidence-interval, strength and the used game-handicap-settings and can therefore vary, i.e. require more or less games.#ranknotes', 'SRC', 'Done', 'USED', '2012-06-11 21:03:55'),
(2219, '<b>\'Rank info\'</b> is only an informal field, which can be used to refer to other rank-systems, e.g. KGS, EGF, 3d pro, etc.#ranknotes', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2220, '<b>Changing an established Rating</b> can only be done on certain conditions#ranknotes', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2221, 'Keep in mind, that playing many games letting the rating-system adjust your rating is the preferred way.#ranknotes', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2222, 'A rating reset/change can normally be asked once a year.#ranknotes', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(6193, 'Target Rating#bulletin', 'SRC', 'Y', 'USED', '2014-10-30 00:43:09'),
(6194, 'Invalid bulletin target type [%s] used for user-edit.', 'SRC', 'Y', 'USED', '2014-10-30 00:43:09'),
(2225, 'Add a request in the Support-forum with subject \"%s\". A game-admin will then check and process your application.<br>\nPlease provide infos about: your target rank, sources that verify your claim preferrably with matching user-IDs, e.g. other go-server, official rating-lists, recommendations from a player/teacher higher ranked than yourself. For ranks or ratings from other servers, please first use the rank-converter above.#ranknotes', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2226, 'Request for rating-change#ranknotes', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2227, 'Important notes about Rating & Rank changes', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2234, 'NEW#shape', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2241, 'Public#shape', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2242, 'Play Start Color#shape', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2244, 'Switch Colors#gobedit', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2264, 'Syntax[FAQ]: any words or characters (min. length 2)', 'SRC', 'Y', 'USED', '2012-08-26 18:17:33'),
(2266, 'search only in original english FAQ (in case of untranslated entries)', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2267, 'No matching entries found in FAQ.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2268, 'Missing subject of feature', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2269, 'Feature removed!', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2270, 'Feature saved! %s feature-points returned to voters!', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2271, 'Feature saved!', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2272, 'Feature delete', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2273, 'Feature update', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2274, 'Feature add', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2275, 'Status-change to [%s] is final!', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2276, 'Editor', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2277, 'Lastchanged', 'SRC', 'Done', 'USED', '2012-06-11 20:52:19'),
(2278, 'Feature can\'t be deleted because of existing votes!', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2279, 'Remove feature', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2280, '(max. 255 chars)', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2281, 'Save feature', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2282, 'Add a category-prefix to the \'Subject\', e.g. \"Game: feature description\"', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2283, 'Add related URLs using &lt;home&gt;-tag or &lt;http://...&gt; in description.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2284, 'Add reason and properly adjust description on status changes.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2285, 'Ask a developer for feature size (required effort for implementation).', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2286, 'Feature notes', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2287, 'Vote on features', 'SRC', 'Done', 'USED', '2012-07-29 11:50:10'),
(2288, 'My feature votes', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2289, 'Feature Vote Results', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2290, 'Add new feature', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2291, 'Delete this feature', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2292, 'Edit this feature', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2293, 'All#featstat', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2294, 'New#featstat', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2295, 'Vote#featstat', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2296, 'Open#featstat', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2297, 'In Work#featstat', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2298, 'Done#featstat', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2299, 'Online#featstat', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2300, 'Rejected#featstat', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2301, 'All#featsize', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2302, 'Voting restricted', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2303, 'Feature or improvement suggestions are to be discussed in the <home forum/index.php>forums</home> first.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2304, 'Features can only be added to this list by a feature-admin.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2305, 'Feature Status', 'SRC', 'Done', 'USED', '2012-09-19 00:22:09'),
(2306, '%s = feature in edit-mode, only for feature-admin', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2307, '%s = new feature to vote on', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2308, '%s = feature implementation started by developer', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2309, '%s = feature implemented (and tested), but not released yet', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2310, '%s = feature released and online', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2311, '%s = feature rejected (will not or cannot be done)', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2312, '%s = show status %s + %s + %s', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2313, 'Voting is not allowed for guest user.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2314, 'Feature-Voting has been denied.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(5743, 'Sun', 'SRC', 'Done', 'USED', '2013-12-01 17:02:29'),
(5744, 'Mon', 'SRC', 'Done', 'USED', '2013-12-01 17:02:29'),
(5745, 'Tue', 'SRC', 'Done', 'USED', '2013-12-01 17:02:29'),
(2316, 'points [%s] must be numeric', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2317, 'points [%1$s] must be in range [%2$s,%3$s]', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2318, 'points [%1$s] must be in range [%2$s,%3$s] (restricted by feature-points quota)', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2319, 'You have %s points available for voting on features.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2320, 'All#filterfeat', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2321, 'Unvoted#filterfeat', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2322, 'Voted#filterfeat', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2323, '<0#filterfeat', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2324, '=0#filterfeat', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2325, '>0#filterfeat', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2326, 'Vote ID#header', 'SRC', 'Done', 'USED', '2012-06-11 11:26:41'),
(2327, 'Status#header', 'SRC', 'Done', 'USED', '2012-06-11 11:26:41'),
(4651, 'My Points#header', 'SRC', 'Done', 'USED', '2012-09-18 14:36:09'),
(2329, 'My Vote#featheader', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2330, 'Lastvoted#header', 'SRC', 'Done', 'USED', '2012-06-11 11:26:41'),
(2331, 'Features to vote on', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2332, 'Vote', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2333, 'View vote', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2334, 'Edit feature', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2335, 'Points#header', 'SRC', 'Done', 'USED', '2012-06-11 11:26:41'),
(2336, '#Votes#header', 'SRC', 'Done', 'USED', '2012-06-11 11:26:41'),
(2337, '#Y#header', 'SRC', 'Done', 'USED', '2012-06-10 09:18:56'),
(2338, '#N#header', 'SRC', 'Done', 'USED', '2012-06-10 09:18:56'),
(2339, 'Feature vote saved!', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2340, 'Feature Vote', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2341, 'Feature Vote View', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2342, 'Size#feature', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2343, 'Lastvoted', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2344, 'points#feature', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2345, '0=neutral, <0=not wanted, >0=wanted feature', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2346, 'Save vote', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2347, '%s points#feature', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2348, '%s (no vote)', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2349, 'Resetting a password by yourself is only possible if you have a set email in your account.', 'SRC', 'Done', 'USED', '2012-06-11 21:03:55'),
(2350, 'Show login page', 'SRC', 'Done', 'USED', '2012-07-27 09:47:04'),
(2360, '%s entry', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2361, '%s entries', 'SRC', 'Done', 'USED', '2012-07-10 21:29:48'),
(2362, 'Mark All Read', 'SRC', 'Done', 'USED', '2012-07-12 16:36:41'),
(2363, 'Forum posts by the guest-user can be approved or rejected by the server admins.<br>\nIf you want a private (non-public) answer, add your email and ask for private contact.', 'SRC', 'Done', 'USED', '2012-07-14 14:20:15'),
(2364, 'Error#forum', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2365, 'Top', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2366, 'Previous parent', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2367, 'Previous answer', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2368, 'Next answer', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2369, 'Next parent', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2370, 'Bottom', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2371, 'First answer', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2372, 'subject moderated', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2373, 'Content moderated', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2374, 'Read-Only', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2375, 'Hide author', 'SRC', 'Done', 'USED', '2012-07-14 14:27:08'),
(2376, 'Show author', 'SRC', 'Done', 'USED', '2012-07-14 14:28:28'),
(2377, 'Goban Editor', 'SRC', 'Done', 'USED', '2012-07-14 14:27:08'),
(2378, 'Hits', 'SRC', 'Done', 'USED', '2012-07-14 14:27:08'),
(2379, 'Number of threads#forum', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2380, 'Show Rows#forum', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2381, 'Message not saved, because of missing subject and/or text-body.', 'SRC', 'Done', 'USED', '2012-07-14 14:27:08'),
(2382, 'Message updated!', 'SRC', 'Done', 'USED', '2012-07-14 14:27:08'),
(2383, 'Reading thread overview', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2384, 'Hide overview#threadoverview', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2385, 'Reading thread posts', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2386, 'Show overview#threadoverview', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2387, 'Add reply to inital thread post', 'SRC', 'Done', 'USED', '2012-07-14 14:23:19'),
(2388, 'All shown messages#forum', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2389, 'All hidden messages#forum', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2390, 'My hidden messages#forum', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2391, 'Pending approval messages#forum', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2392, '(moderator only)', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2393, 'Show hidden posts#forum', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2394, 'set by admin#game', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2395, 'You should have the consent of your team-members for resigning a multi-player-game!', 'SRC', 'Done', 'USED', '2012-06-13 22:53:21'),
(2396, 'Ask your team-members', 'SRC', 'Done', 'USED', '2012-06-11 20:52:19'),
(2397, 'Ensure that all boundaries of your territory are closed before ending the game!', 'SRC', 'Done', 'USED', '2012-06-15 17:12:28'),
(5742, 'Players Information', 'SRC', 'Done', 'USED', '2013-12-01 17:02:29'),
(2399, 'Last Move Capture', 'SRC', 'Done', 'USED', '2012-08-01 05:16:30'),
(2400, 'Refresh#gamepage', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2401, 'Show game info', 'SRC', 'Done', 'USED', '2012-06-11 10:57:53'),
(2402, '(H)#viewmove', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2403, 'Setup: Shape#moves', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2404, '(SGF-Move %s)', 'SRC', 'Done', 'USED', '2012-06-11 12:22:20'),
(2406, 'First move', 'SRC', 'Done', 'USED', '2012-08-26 18:25:43'),
(2407, 'Previous move', 'SRC', 'Done', 'USED', '2012-08-26 18:25:43'),
(2408, 'Next move', 'SRC', 'Done', 'USED', '2012-08-26 18:25:43'),
(2411, 'Cancel move', 'SRC', 'Done', 'USED', '2012-06-11 10:50:06'),
(2412, 'Note: Current byoyomi period is resetted regardless of full reset.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2414, 'Game Type', 'SRC', 'Done', 'USED', '2012-07-15 19:33:08'),
(2415, 'Last move by:', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2416, 'Ruleset', 'SRC', 'Done', 'USED', '2012-06-11 12:23:28'),
(2418, 'Tournament director', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2419, 'Komi negotiation for Fair Komi', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2420, 'Negotiation process for \"%s\":#fairkomi', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2421, 'Setup', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2422, 'Inviting', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2423, 'Komi Negotiation', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2424, 'Game settings', 'SRC', 'Done', 'USED', '2012-06-11 21:03:55'),
(2425, 'Double Game ID', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2426, 'deleted#dblgame', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2427, 'Show invitation', 'SRC', 'Done', 'USED', '2012-07-15 19:37:21'),
(2428, 'Fair Komi Type#fairkomi', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2429, 'Start time', 'SRC', 'Done', 'USED', '2012-09-18 17:43:35'),
(2430, 'negotiated by Fair Komi#fairkomi', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(5769, 'min-selections#survey', 'SRC', 'Done', 'USED', '2014-03-27 15:21:17'),
(2432, 'Standard Handicap', 'SRC', 'Done', 'USED', '2012-07-15 19:37:21'),
(5760, 'Translated#header', 'SRC', 'Done', 'USED', '2013-12-07 07:38:20'),
(2434, 'Off-time', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2435, 'Current rating', 'SRC', 'Done', 'USED', '2012-07-15 19:37:21'),
(2436, 'Group start rating', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2437, 'Komi Bid#fairkomi', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2438, '%s\'s turn#fairkomi_user', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2439, 'Black to move', 'SRC', 'Done', 'USED', '2012-06-16 19:09:08'),
(2440, 'White to move', 'SRC', 'Done', 'USED', '2012-06-16 19:20:35'),
(2441, 'Time settings and Remaining time', 'SRC', 'Done', 'USED', '2012-06-11 21:03:55'),
(2442, 'Time system', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2443, 'Extra time', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2444, 'Clock status', 'SRC', 'Done', 'USED', '2012-07-15 19:37:21'),
(2445, 'Clock stopped', 'SRC', 'Done', 'USED', '2012-07-15 19:37:21'),
(2446, 'Clock running', 'SRC', 'Done', 'USED', '2012-07-15 19:37:21'),
(2447, 'Clock used', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2449, 'Scope#tourney', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2450, 'Type#tourney', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2451, 'Current Round#tourney', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2454, 'by TD#TG_flag', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2456, 'Status games list#nextgame', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2457, 'Set priority', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2458, 'Game information', 'SRC', 'Done', 'USED', '2012-07-02 11:35:38'),
(2459, 'Show game', 'SRC', 'Done', 'USED', '2012-06-16 19:06:50'),
(2460, 'View Ladder', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2461, 'Admin tournament game', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2462, 'Manage tournament', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2463, 'Show game-calc', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2464, 'Admin game', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2465, '(%s moves, %s comments)', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2466, 'Game Editor#ged', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2467, 'Size#ged', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2468, 'Change board size#ged', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2469, 'Edit#ged', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2470, 'Edit tools#ged', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2471, 'Play#ged', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2472, 'Play tools#ged', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2473, 'Width#ged', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2474, 'Height#ged', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2475, 'New Board#ged', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2476, 'Stone#ged', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2477, 'Toggle Stone (Click=Black, Shift-Click=White)#ged', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2478, 'Set Black Stone#ged', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2479, 'Set White Stone#ged', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2480, 'Clear Stone#ged', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2481, 'Marker#ged', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2482, 'Toggle Circle Marker#ged', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2483, 'Toggle Square Marker#ged', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2484, 'Toggle Triangle Marker#ged', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2485, 'Toggle Cross Marker#ged', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2486, 'Toggle Black Territory Marker#ged', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2487, 'Toggle White Territory Marker#ged', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2488, 'Toggle Dame Territory Marker#ged', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2489, 'Toggle Neutral Territory Marker#ged', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2490, 'Label#ged', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2491, 'Toggle Stone Number Label#ged', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2492, 'Toggle Letter Label#ged', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2493, 'History#ged', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2494, 'Move#ged', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2495, 'Play move#ged', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2496, 'Game-Players information', 'SRC', 'Done', 'USED', '2012-06-16 19:02:43'),
(2497, 'Show waiting-room entry#mpg', 'SRC', 'Done', 'USED', '2012-06-16 19:22:39'),
(2498, 'Add to waiting room', 'SRC', 'Done', 'USED', '2012-07-15 19:40:18'),
(2499, 'Change handicap', 'SRC', 'Done', 'USED', '2012-07-15 19:40:18'),
(2500, 'Change color & handicap', 'SRC', 'Done', 'USED', '2012-06-16 19:14:17'),
(2501, 'Change color', 'SRC', 'Done', 'USED', '2012-06-16 19:14:57'),
(2502, 'Change order', 'SRC', 'Done', 'USED', '2012-06-16 19:15:32'),
(2503, 'Start game', 'SRC', 'Done', 'USED', '2012-06-16 19:35:08'),
(2504, 'Check game', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2506, 'Handicap settings', 'SRC', 'Done', 'USED', '2012-06-11 21:03:55'),
(2507, 'Time settings', 'SRC', 'Done', 'USED', '2012-06-11 21:03:55'),
(2508, 'Group ratings', 'SRC', 'Done', 'USED', '2012-06-16 19:17:54'),
(2509, 'All#gpcol', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2510, 'Master#gpflag', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2511, 'Reserved#gpflag', 'SRC', 'Done', 'USED', '2012-06-16 19:13:20'),
(2512, 'Joined#gpflag', 'SRC', 'Done', 'USED', '2012-06-16 19:12:05'),
(2513, 'Send invitation message', 'SRC', 'Done', 'USED', '2012-07-15 19:40:18'),
(2514, 'Delete reservation#mpg', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2515, 'Delete joined player#mpg', 'SRC', 'Done', 'USED', '2012-06-16 19:24:08'),
(2516, 'Set Order#header', 'SRC', 'Done', 'USED', '2012-06-11 11:26:41');
INSERT INTO `TranslationTexts` (`ID`, `Text`, `Type`, `Translatable`, `Status`, `Updated`) VALUES
(2517, 'Set Group#header', 'SRC', 'Done', 'USED', '2012-06-11 11:26:41'),
(2519, 'Player#header', 'SRC', 'Done', 'USED', '2012-06-11 11:26:41'),
(2522, 'Player to move', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2523, 'Next player', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2524, 'Add new game to waiting room#mpg', 'SRC', 'Done', 'USED', '2012-06-11 20:55:27'),
(2525, 'There can only be one waiting-room entry for a multi-player-game!', 'SRC', 'Done', 'USED', '2012-06-13 22:46:32'),
(2526, 'To change it you have to re-add it after deleting the existing one.#mpg', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2527, 'Show waiting-room entry (to delete)#mpg', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2528, 'Player-slots', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2529, 'Invite to multi-player-game#mpg', 'SRC', 'Done', 'USED', '2012-06-13 22:46:32'),
(2530, 'only rated user#mpg', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2531, 'Delete reserved invitation#mpg', 'SRC', 'Done', 'USED', '2012-06-16 19:13:20'),
(2532, 'User [%s] will be notified about this deletion.#mpg', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2533, 'Are you sure to delete the reserved invitation of this user ?#mpg', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2534, 'Are you sure to delete this joined player ?#mpg', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2535, 'Approval of invitation#mpg', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2536, 'You have been invited to this multi-player-game.#mpg', 'SRC', 'Done', 'USED', '2012-06-13 22:46:32'),
(2537, 'Please carefully review the game- and time-settings:#mpg', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2538, 'You are free to discuss the variable settings with the game-master before you accept.#mpg', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2539, 'However, the grouping, color and handicap for the game can only be changed by the game-master.#mpg', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2540, 'You can either accept or reject this invitation.#mpg', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2541, 'The game-master [%s] will be notified about your decision.#mpg', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2542, 'Do you accept the invitation?#mpg', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2545, 'Send message to all game-players#mpg', 'SRC', 'Done', 'USED', '2012-06-11 21:34:26'),
(2546, 'Do you agree to start the game now?#mpg', 'SRC', 'Done', 'USED', '2012-06-17 12:33:36'),
(2547, 'Invitation reservation added for multi-player-game!', 'SRC', 'Done', 'USED', '2012-06-13 22:46:32'),
(2548, 'Game-master %s deleted your invitation for the game %s.#mpg', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2549, 'Invitation reservation deleted!#mpg', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2550, 'User %s has accepted your invitation to the multi-player game %s.#mpg', 'SRC', 'Done', 'USED', '2012-06-13 22:46:32'),
(2551, 'Invitation accepted!#mpg', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2552, 'User %s has rejected your invitation to the multi-player game %s.#mpg', 'SRC', 'Done', 'USED', '2012-06-13 22:46:32'),
(2553, 'Invitation rejected!#mpg', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2554, 'Game-master %s revoked your participation for the game %s.#mpg', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2555, 'Joined player removed!#mpg', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2556, 'Groups updated!', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2557, 'Handicap suggestion for group [%s]#mpg', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2558, 'Conventional handicap', 'SRC', 'Done', 'USED', '2012-07-15 19:15:22'),
(2559, 'Game-master already joined the game and can not be invited.#mpg', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2560, 'No free slot available for invitation of user#mpg', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2561, 'User [%s] has no rating#mpg', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2562, 'User [%s] already invited or joined the game#mpg', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2563, 'Game-master should not have reservation and can not be deleted.#mpg', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2564, 'User to delete has already joined the game.#mpg', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2565, 'No reserved invitation found for user.#mpg', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2566, 'Reservation of user to be deleted can not be found.#mpg', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2567, 'There is no reserved invitation for you to approve.#mpg', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2568, 'Game-master is required and can not be deleted with this action.#mpg', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2569, 'User to delete has not joined the game.#mpg', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2570, 'Joined player to be deleted can not be found.#mpg', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2571, 'Some game-players are missing#mpg', 'SRC', 'Done', 'USED', '2012-06-13 23:04:21'),
(2572, 'Not all reservation-slots have been joined by players#mpg', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2573, 'Player [%s] joined the game more than once#mpg', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2574, 'Numbers of players (%s for %s, %s for %s) do not match the game-config [%s]#mpg', 'SRC', 'Done', 'USED', '2012-06-13 23:04:21'),
(2575, 'Groups [%s, %s] are required, but found [%s]#mpg', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2576, 'Number of players (%s for %s) does not match the game-config [%s]#mpg', 'SRC', 'Done', 'USED', '2012-06-13 23:04:21'),
(2577, 'Only %s-group is allowed, but found [%s]#mpg', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2578, 'Order of group [%s] must be set#mpg', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2579, 'Order of group [%s] must start at 1#mpg', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2580, 'Order of group [%s] must be unique and consecutive: 1,2,3, ...#mpg', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2581, 'Game started!', 'SRC', 'Done', 'USED', '2012-07-15 19:16:18'),
(2582, 'Game setup', 'SRC', 'Done', 'USED', '2012-06-16 19:03:11'),
(2583, 'Game finished', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2584, 'Game running', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2585, 'Create new board of given size#gobedit', 'SRC', 'Done', 'USED', '2012-06-16 20:12:08'),
(2586, 'Width#gobedit', 'SRC', 'Done', 'USED', '2012-06-16 20:14:17'),
(2587, 'Height#gobedit', 'SRC', 'Done', 'USED', '2012-06-16 20:14:17'),
(2588, 'Create Board#gobedit', 'SRC', 'Done', 'USED', '2012-06-16 20:14:17'),
(2589, 'Load board from game#gobedit', 'SRC', 'Done', 'USED', '2012-06-16 20:14:17'),
(2590, 'Game-ID#gobedit', 'SRC', 'Done', 'USED', '2012-07-29 11:52:42'),
(2591, 'Move#gobedit', 'SRC', 'Done', 'USED', '2012-06-16 20:14:17'),
(2592, 'Load DGS-Game#gobedit', 'SRC', 'Done', 'USED', '2012-06-16 20:14:17'),
(2593, 'Load board from SGF#gobedit', 'SRC', 'Done', 'USED', '2012-06-16 20:14:17'),
(2594, 'SGF-file#gobedit', 'SRC', 'Done', 'USED', '2012-06-16 20:14:17'),
(2595, 'Upload SGF#gobedit', 'SRC', 'Done', 'USED', '2012-06-16 20:14:17'),
(2596, 'Edit Area#gobedit', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2597, 'Flatten#gobedit', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2598, 'Save Shape#gobedit', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2599, '<tt>&lt;igoban SL1>TITLE BOARD %%%% TEXT&lt;/igoban></tt> - Go-Diagram with &lt;igoban>-tag#gobedit', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2600, 'BOARD-lines start with (optional) \"$$\", a space \" \" has meaning#gobedit', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2601, 'TEXT-block is optional, initiated with empty line or \"%%%%\" below diagram#gobedit', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2602, 'TEXT-block is shown to right of diagram or below if \"%%%%\" is present#gobedit', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2603, 'TITLE-format: <tt>$$[color][c][size][movenum][title]</tt>#gobedit', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2604, '<tt>color \"B|W\"</tt> = color of first numbered stone#gobedit', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2605, '<tt>\"c\"</tt> = enables board coordinates#gobedit', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2606, '<tt>size</tt> = board-size#gobedit', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2607, '<tt>movenum \"m99\"</tt> = moves-start-number (default: 1)#gobedit', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2608, '<tt>title</tt> = text at board-bottom#gobedit', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2609, 'BOARD-format for borders and intersections:#gobedit', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2610, '<tt>\".\"</tt> = empty intersection, <tt>\",\"</tt> = hoshi (auto-hoshi if none used on board)#gobedit', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2611, 'no spaces allowed in border-lines defining edges,<br><tt>\"| + -\"</tt> = forming edges in 2nd and board-line, <tt>\"++ -+ +-\"</tt> = short-format edges#gobedit', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2612, '<tt>\"-\"</tt> = clears intersection-lines on board, <tt>\"_\"</tt> = like <tt>\"-\"</tt> but not at edges#gobedit', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2613, 'BOARD-format for diagram markup: \"<tt>Diagram-Code - Textual-Code</tt> : <tt>Description</tt>\":#gobedit', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2614, '<tt>X O - BO WO</tt> : black stone, white stone#gobedit', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2615, '<tt>B|W0..9 - B|W1.100</tt> : numbered black|white stones, W0/B0=W10/B10#gobedit', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2616, '<tt>B W - BC WC</tt> : black|white stone with circle#gobedit', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2617, '<tt># @ - BS WS</tt> : black|white stone with square#gobedit', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2618, '<tt>Y Q - BT WT</tt> : black|white stone with triangle#gobedit', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2619, '<tt>Z P - BX WX</tt> : black|white stone with cross#gobedit', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2620, '<tt>C S T M - EC ES ET EM</tt> : circle square triangle cross#gobedit', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2621, '<tt>a..z - a..z</tt> : letters on empty intersection#gobedit', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2622, '<tt>A V - TA TV</tt> : black|white-territory#gobedit', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2623, '<tt>~ = - T~ T=</tt> : neutral-undecided-territory, dame-territory#gobedit', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2624, 'BOARD-format for specialties:#gobedit', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2625, '<tt>$$ [ref|link]</tt> : add link to <tt>ref</tt>-label on board, e.g. <tt>$$ [a|NadareJoseki]</tt><br>link <tt>\"dgs:faq.php\"</tt> = link to DGS-page<br>link <tt>\"#123\"</tt> = link to DGS-thread-anchor in DGS-forums<br>link <tt>\"http://senseis.xmp.net\"</tt> = link to external page<br>link <tt>\"NadareJoseki\"</tt> = link to wiki-topic on Sensei\'s Library#gobedit', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2626, 'differences to original SL-format: no big support of irregular boards, easier borders,<br>territory-markup, no lines markup, no arrow markup, no inline-images#gobedit', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2627, 'also see Sensei\'s Library: <http://senseis.xmp.net/?HowDiagramsWork>#gobedit', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2628, 'Syntax description#gobedit', 'SRC', 'Done', 'USED', '2012-06-16 20:17:34'),
(2629, 'New Goban', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2630, '(H)#scoring', 'SRC', 'Done', 'USED', '2012-08-17 09:38:03'),
(2631, '(K)#scoring', 'SRC', 'Done', 'USED', '2012-08-17 09:38:03'),
(2632, 'Territory scoring#scoring', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2633, 'Area scoring#scoring', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2634, 'Scoring information#scoring', 'SRC', 'Done', 'USED', '2012-06-15 21:03:23'),
(2635, 'Dame#scoring', 'SRC', 'Done', 'USED', '2012-08-17 09:38:03'),
(2636, 'Territory#scoring', 'SRC', 'Done', 'USED', '2012-06-15 21:02:43'),
(2637, 'Dead stones#scoring', 'SRC', 'Done', 'USED', '2012-06-15 21:02:43'),
(2638, 'Stones#scoring', 'SRC', 'Done', 'USED', '2012-06-15 21:02:43'),
(2639, 'Prisoners#scoring', 'SRC', 'Done', 'USED', '2012-06-15 21:02:43'),
(2640, 'Extra#scoring', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2641, 'Score#scoring', 'SRC', 'Done', 'USED', '2012-06-15 21:02:43'),
(2642, 'Result#scoring', 'SRC', 'Done', 'USED', '2012-06-15 21:02:43'),
(6192, 'Bulletin target user rating range can only be used for target types [%s].', 'SRC', 'Y', 'USED', '2014-10-30 00:43:09'),
(2644, 'Moves#nextgame', 'SRC', 'Done', 'USED', '2012-06-14 15:08:56'),
(2645, 'Priority#nextgame', 'SRC', 'Done', 'USED', '2012-06-14 15:08:56'),
(2646, 'Time remaining#nextgame', 'SRC', 'Done', 'USED', '2012-06-14 15:08:56'),
(2647, 'EMPTY#shape', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2648, 'EMPTY-BOARD#shape', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2649, 'FULL-BOARD#shape', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2650, 'Profile saved as default!', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2651, 'Profile saved!', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2652, 'Current values#filter', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2653, 'Clear values#filter', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2654, 'Reset values#filter', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2655, 'Save as default#filter', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2656, 'Load profile#filter', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2657, 'Save profile#filter', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2658, 'Delete profile#filter', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2659, 'No file specified to upload.', 'SRC', 'Done', 'USED', '2012-07-30 14:15:22'),
(2660, 'The uploaded file [%s] exceeds the max. file size set by the server.', 'SRC', 'Done', 'USED', '2012-07-30 14:15:22'),
(2661, 'The uploaded file [%s] exceeds the max. file size of [%s bytes] specified for the input-form.', 'SRC', 'Done', 'USED', '2012-07-30 14:15:22'),
(2662, 'The uploaded file [%s] was only partially uploaded.', 'SRC', 'Done', 'USED', '2012-07-30 14:15:22'),
(2663, 'No file was uploaded.', 'SRC', 'Done', 'USED', '2012-07-30 14:15:22'),
(2664, 'The uploaded file [%s] has an unknown image format.', 'SRC', 'Done', 'USED', '2012-07-30 14:15:22'),
(2665, 'The image-type [%s, %s] of the uploaded file [%s] does not match one of the expected image-types [%s].', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2666, 'The width [%s] of the uploaded image [%s] exceeds the limit of [%s pixels].', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2667, 'The height [%s] of the uploaded image [%s] exceeds the limit of [%s pixels].', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2668, 'The uploaded file [%s] can not be stored.', 'SRC', 'Done', 'USED', '2012-07-30 14:15:22'),
(2669, 'GIF#imagefmt', 'SRC', 'Done', 'USED', '2012-07-29 11:52:42'),
(2670, 'JPEG#imagefmt', 'SRC', 'Done', 'USED', '2012-07-29 11:52:42'),
(2671, 'PNG#imagefmt', 'SRC', 'Done', 'USED', '2012-07-29 11:52:42'),
(2672, 'User [%s] has a picture', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2673, 'Picture of user [%s]', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2674, 'Site Crew', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2675, 'Aaland Islands', 'SRC', 'Done', 'USED', '2012-07-02 23:44:51'),
(2676, 'American Samoa', 'SRC', 'Done', 'USED', '2012-07-02 23:44:51'),
(2677, 'Anguilla', 'SRC', 'Done', 'USED', '2012-07-08 20:56:36'),
(2678, 'Aruba', 'SRC', 'Done', 'USED', '2012-07-08 20:56:36'),
(2679, 'Bermuda', 'SRC', 'Done', 'USED', '2012-07-08 20:56:36'),
(2680, 'Bosnia and Herzegovina', 'SRC', 'Done', 'USED', '2012-07-02 23:44:51'),
(2681, 'British Indian Ocean Territory', 'SRC', 'Done', 'USED', '2012-07-02 23:44:51'),
(2682, 'Brunei Darussalam', 'SRC', 'Done', 'USED', '2012-07-29 11:52:42'),
(2683, 'Cayman Islands', 'SRC', 'Done', 'USED', '2012-07-02 23:44:51'),
(2684, 'Christmas Island', 'SRC', 'Done', 'USED', '2012-07-02 23:44:51'),
(2685, 'Cocos (Keeling) Islands', 'SRC', 'Done', 'USED', '2012-07-02 23:44:51'),
(2686, 'Cook Islands', 'SRC', 'Done', 'USED', '2012-07-02 23:44:51'),
(2687, 'European Union', 'SRC', 'Done', 'USED', '2012-07-02 23:44:51'),
(2688, 'Falkland Islands', 'SRC', 'Done', 'USED', '2012-07-02 23:44:51'),
(2689, 'Faroe Islands', 'SRC', 'Done', 'USED', '2012-07-02 23:44:51'),
(2690, 'French Guinea', 'SRC', 'Done', 'USED', '2012-07-02 23:44:51'),
(2691, 'French Polynesia', 'SRC', 'Done', 'USED', '2012-07-02 23:44:51'),
(2692, 'Gibraltar', 'SRC', 'Done', 'USED', '2012-07-08 20:56:36'),
(2693, 'Greenland', 'SRC', 'Done', 'USED', '2012-07-02 23:44:51'),
(2694, 'Guadeloupe', 'SRC', 'Done', 'USED', '2012-07-29 11:52:42'),
(2695, 'Guam', 'SRC', 'Done', 'USED', '2012-07-29 11:52:42'),
(2696, 'Guernsey', 'SRC', 'Done', 'USED', '2012-07-29 11:52:42'),
(2697, 'Isle of Man', 'SRC', 'Done', 'USED', '2012-07-02 23:44:51'),
(2698, 'Jersey', 'SRC', 'Done', 'USED', '2012-07-08 20:56:36'),
(2699, 'Kazakhstan', 'SRC', 'Done', 'USED', '2012-07-02 23:44:51'),
(2700, 'Macao', 'SRC', 'Done', 'USED', '2012-07-08 20:56:36'),
(2701, 'Martinique', 'SRC', 'Done', 'USED', '2012-07-29 11:52:42'),
(2702, 'Mayotte', 'SRC', 'Done', 'USED', '2012-07-29 11:52:42'),
(2703, 'Montserrat', 'SRC', 'Done', 'USED', '2012-07-29 11:52:42'),
(2704, 'Netherlands Antilles', 'SRC', 'Done', 'USED', '2012-07-02 23:44:51'),
(2705, 'New Caledonia', 'SRC', 'Done', 'USED', '2012-07-02 23:49:19'),
(2706, 'Niue', 'SRC', 'Done', 'USED', '2012-07-29 11:52:42'),
(2707, 'Norfolk Island', 'SRC', 'Done', 'USED', '2012-07-02 23:49:19'),
(2708, 'Northern Mariana Islands', 'SRC', 'Done', 'USED', '2012-07-02 23:49:19'),
(2709, 'Palestinian Territory', 'SRC', 'Done', 'USED', '2012-07-02 23:49:19'),
(2710, 'Pitcairn', 'SRC', 'Done', 'USED', '2012-07-02 23:49:19'),
(2711, 'Reunion', 'SRC', 'Done', 'USED', '2012-07-02 23:49:19'),
(2712, 'Saint Barthelemy', 'SRC', 'Done', 'USED', '2012-07-02 23:49:19'),
(2713, 'Saint Helena', 'SRC', 'Done', 'USED', '2012-07-02 23:49:19'),
(2714, 'Saint Martin', 'SRC', 'Done', 'USED', '2012-07-02 23:50:02'),
(2715, 'Saint Pierre and Miquelon', 'SRC', 'Done', 'USED', '2012-07-02 23:49:19'),
(2716, 'South Georgia and Sandwich Islands', 'SRC', 'Done', 'USED', '2012-07-02 23:49:19'),
(2717, 'Timor Leste', 'SRC', 'Done', 'USED', '2012-07-29 11:52:42'),
(2718, 'Tokelau', 'SRC', 'Done', 'USED', '2012-07-29 11:52:42'),
(2719, 'Turks and Caicos Islands', 'SRC', 'Done', 'USED', '2012-07-02 23:49:19'),
(2720, 'Virgin Islands (British)', 'SRC', 'Done', 'USED', '2012-07-02 23:49:19'),
(2721, 'Virgin Islands (US)', 'SRC', 'Done', 'USED', '2012-07-02 23:50:02'),
(2722, 'Wallis and Futuna', 'SRC', 'Done', 'USED', '2012-07-29 11:52:42'),
(2723, 'Western Sahara', 'SRC', 'Done', 'USED', '2012-07-02 23:49:19'),
(2724, 'Klingon Empire', 'SRC', 'Done', 'USED', '2012-07-02 11:38:52'),
(2725, 'United Federation of Planets', 'SRC', 'Done', 'USED', '2012-07-02 11:38:52'),
(2726, 'Fair Komi Negotiation#G_status', 'SRC', 'Done', 'USED', '2012-07-30 15:56:46'),
(2727, 'MPG-Setup#G_status', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2728, 'Invited#G_status', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2729, 'Play#G_status', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2730, 'Pass#G_status', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2731, 'Score#G_status', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2732, 'Finished#G_status', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2733, 'The player-IDs are wrong for this operation. Please send this problem to the support.', 'SRC', 'Done', 'USED', '2012-07-03 12:16:26'),
(2734, 'Sorry, the Dragon Go Server is down for maintenance.', 'SRC', 'Done', 'USED', '2012-07-03 12:16:26'),
(2735, 'Bad hostname used for request.', 'SRC', 'Done', 'USED', '2012-07-03 12:16:26'),
(2736, 'The activity of your account grew too high. Temporary access restriction is in place.', 'SRC', 'Done', 'USED', '2012-07-03 12:16:26'),
(2737, 'Impossible, guest may not receive messages', 'SRC', 'Done', 'USED', '2012-07-03 12:16:26'),
(2738, 'Sorry, the game is in the wrong state to perform this operation.', 'SRC', 'Done', 'USED', '2012-07-03 12:16:26'),
(2739, 'Message to myself is forbidden for bulk message.', 'SRC', 'Done', 'USED', '2012-07-03 12:16:26'),
(2740, 'Sorry, you are not allowed to send a bulk message.', 'SRC', 'Done', 'USED', '2012-07-03 12:16:26'),
(2741, 'Sorry, missing game-setup for invitation. Please contact support.', 'SRC', 'Done', 'USED', '2012-07-03 12:16:26'),
(2742, 'Sorry, your limit on started games has exceeded.', 'SRC', 'Done', 'USED', '2012-07-03 12:16:26'),
(2743, 'Sorry, the limit of your opponent on started games has exceeded.', 'SRC', 'Done', 'USED', '2012-07-03 12:16:26'),
(2744, 'Sorry, your limit on started games for tournament registration has exceeded.', 'SRC', 'Done', 'USED', '2012-07-03 12:16:26'),
(2745, 'The users limit on started games for tournament registration has exceeded.', 'SRC', 'Done', 'USED', '2012-07-03 12:16:26'),
(2746, 'Sorry, an unknown ruleset has been used.', 'SRC', 'Done', 'USED', '2012-07-03 12:16:26'),
(2747, 'Fractional part of komi can only be .0 or .5.', 'SRC', 'Done', 'USED', '2012-07-03 12:16:26'),
(2748, 'The handicap is out of range, please choose a more reasonable value.', 'SRC', 'Done', 'USED', '2012-07-03 12:16:26'),
(2749, 'Sorry, someone changed the data you were about to save (optimistic-locking clash). Please reload and re-enter your changes for an update.', 'SRC', 'Done', 'USED', '2012-07-03 12:16:26'),
(2750, 'A new password has already been sent to this user. Please use that password instead of sending another one.', 'SRC', 'Done', 'USED', '2012-07-03 12:16:26'),
(2751, 'Please log in as guest and use the support forum to get help (provide your user-id and your email).', 'SRC', 'Done', 'USED', '2012-07-03 12:16:26'),
(2752, 'Sorry, no email has been given, so I can\'t send you the password.', 'SRC', 'Done', 'USED', '2012-07-03 12:16:26'),
(2753, 'Sorry, the email given does not seem to be a valid address. Please, verify your spelling or try another one.', 'SRC', 'Done', 'USED', '2012-07-03 12:16:26'),
(2754, 'Sorry, an error occured during sending of the email.', 'SRC', 'Done', 'USED', '2012-07-03 12:16:26'),
(2755, 'Sorry, you need an initial rating to start a multi-player-game.', 'SRC', 'Done', 'USED', '2012-06-13 22:46:32'),
(2756, 'Sorry, I can\'t find any users for the multi-player-game.', 'SRC', 'Done', 'USED', '2012-06-13 22:46:32'),
(2757, 'Sorry, for this operation you need to be the game-master of the multi-player-game.', 'SRC', 'Done', 'USED', '2012-06-13 22:46:32'),
(2758, 'Sorry, the user is not registered or invited for the multi-player-game.', 'SRC', 'Done', 'USED', '2012-06-13 22:46:32'),
(2759, 'Missing game-id for multi-player-game message.', 'SRC', 'Done', 'USED', '2012-06-13 22:46:32'),
(2760, 'Multi-player-game message can only be created for a multi-player-game.', 'SRC', 'Done', 'USED', '2012-06-13 22:46:32'),
(2761, 'This shouldn\'t happen. Found unknown invited user for multi-player-game message. Please contact an admin.', 'SRC', 'Done', 'USED', '2012-06-13 22:46:32'),
(2762, 'Sorry, the guest-user can not be invited.', 'SRC', 'Done', 'USED', '2012-07-03 12:16:26'),
(2763, 'Sorry, I need to know for which user to show the data.', 'SRC', 'Done', 'USED', '2012-07-03 12:16:26'),
(2764, 'If you think the IP block is not intended for you, please register your account with the <a href=\"%s\">alternative registration page</a>.', 'SRC', 'Done', 'USED', '2012-07-03 12:16:26'),
(2765, 'Sorry, you have to be logged in to do that.', 'SRC', 'Done', 'USED', '2012-07-03 12:31:32'),
(2766, 'The reasons for this problem could be any of the following:', 'SRC', 'Done', 'USED', '2012-07-03 12:31:32'),
(2767, 'You haven\'t got an <a href=\"%1$sregister.php\">account</a>, or haven\'t <a href=\"%1$sindex.php\">logged in</a> yet.', 'SRC', 'Done', 'USED', '2012-07-03 12:31:32'),
(2768, 'Your cookies have expired. This happens once a month.', 'SRC', 'Done', 'USED', '2012-07-03 12:31:32'),
(2769, 'You haven\'t enabled cookies in your browser.', 'SRC', 'Done', 'USED', '2012-07-03 12:31:32'),
(2770, 'Sorry, this feature has been disabled on this server.', 'SRC', 'Done', 'USED', '2012-07-03 12:31:32'),
(2771, 'Sorry, missing a temporary folder to upload files. Please contact the administrators.', 'SRC', 'Done', 'USED', '2012-07-03 12:31:32'),
(2772, 'Sorry, the file upload failed.', 'SRC', 'Done', 'USED', '2012-07-03 12:31:32'),
(2773, 'Sorry, you are not a player in this game.', 'SRC', 'Done', 'USED', '2012-07-03 12:31:32'),
(2774, 'Sorry, the password must be at least six characters long.', 'SRC', 'Done', 'USED', '2012-07-03 12:31:32'),
(2775, 'Sorry, replying to that message is not possible.', 'SRC', 'Done', 'USED', '2012-07-03 12:31:32'),
(2776, 'The specified rating is invalid.', 'SRC', 'Done', 'USED', '2012-07-03 12:31:32'),
(2777, 'The specified move-coordinates are invalid.', 'SRC', 'Done', 'USED', '2012-07-03 12:31:32'),
(2778, 'Sorry, this game is not matching the initial game players.', 'SRC', 'Done', 'USED', '2012-07-03 12:31:32'),
(2779, 'Sorry, the shape-id is invalid.', 'SRC', 'Done', 'USED', '2012-07-03 12:31:32'),
(2780, 'Sorry, I can\'t find that shape.', 'SRC', 'Done', 'USED', '2012-07-03 12:31:32'),
(2781, 'Sorry, you are not allowed to post in this forum.', 'SRC', 'Done', 'USED', '2012-07-03 12:31:32'),
(2782, 'Sorry, you are not allowed to view this post.', 'SRC', 'Done', 'USED', '2012-07-03 12:31:32'),
(2783, 'Sorry, userid must be at least 3 characters long.', 'SRC', 'Done', 'USED', '2012-07-03 12:31:32'),
(2784, 'Sorry, you don\'t have enough rated finished games to join this game offer.', 'SRC', 'Done', 'USED', '2012-07-03 12:31:32'),
(2785, 'Sorry, on this game offer there are counter- or time-based restrictions for challenges from the same opponent.', 'SRC', 'Done', 'USED', '2012-07-10 22:48:53'),
(2786, 'Sorry, you couldn\'t join this waiting room game because of an internal error. Please contact an admin.', 'SRC', 'Done', 'USED', '2012-07-03 12:31:32'),
(2787, 'Sorry, you are too late to join this waiting room game.', 'SRC', 'Done', 'USED', '2012-07-03 12:31:32'),
(2788, 'If you have forgotten your password we can email a new one.', 'SRC', 'Done', 'USED', '2012-07-03 12:31:32'),
(2789, 'The new password will be randomly generated, but you can of course change it later from the edit profile page.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2790, 'Until you change it, both new and old passwords will be operational.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2791, 'Please log in as guest-user and use the Support-forum to get help (provide your login-user-id and your email).', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2792, 'Sorry, there\'s something wrong with this tournament. Please contact a tournament admin.', 'SRC', 'Done', 'USED', '2012-07-03 12:31:32'),
(2793, 'Sorry, you are not allowed to create a new tournament. This feature has been blocked by admins.', 'SRC', 'Done', 'USED', '2012-07-03 12:31:32'),
(2794, 'Sorry, only a tournament admin can create a new tournament.', 'SRC', 'Done', 'USED', '2012-07-03 12:31:32'),
(2795, 'Sorry, you are not allowed to register for a tournament. This feature has been blocked by admins.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2796, 'Sorry, you are not allowed to create this type of tournament.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2797, 'Sorry, you are not allowed to edit this tournament.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2798, 'Sorry, you are not allowed to edit rounds for this tournament.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2799, 'Sorry, some errors occured on tournament creation.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2800, 'Sorry, I couldn\'t find the given tournament news or you are not allowed to view this tournament news entry.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2801, 'Sorry, there\'s something wrong with the tournament-news. Please contact a tournament admin.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2802, 'Sorry, you are not allowed to add, edit or delete a tournament director for this tournament.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2803, 'Sorry, you are not allowed to add or delete a tournament director for this tournament.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2804, 'Sorry, there must be at least one tournament director.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2805, 'Sorry, you are not allowed to register for this tournament.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2806, 'Sorry, you are not allowed to edit this tournament registration.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2807, 'Sorry, action on tournament participant is not allowed for registration status.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2808, 'Sorry, user is unknown for current tournament.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2809, 'Sorry, tournament is on wrong status to allow this action for tournament.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2810, 'Sorry, this folder can not be used for this operation.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2811, 'Sorry, invalid arguments used.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2812, 'Sorry, an argument is missing.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2813, 'Sorry, invalid quick-suite command used.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2814, 'Sorry, there\'s a problem with a class-method.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2815, 'Found an invalid character in game-snapshot.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2816, 'Shape snapshot has bad format.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2817, 'Mismatching shape or snapshot found.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2818, 'Sorry, I can\'t find that entry.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2819, 'Missing size for shape-game snapshot.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2820, 'Sorry, Entity-class initialization is wrong.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2821, 'Sorry, feature can\'t be deleted because of existing votes for feature.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2822, 'Sorry, you are not allowed to add, edit or delete features.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2823, 'Sorry, you are not allowed to edit feature on that status.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2824, 'Sorry, you are not allowed to edit this bulletin.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2825, 'Sorry, I can\'t find that bulletin.', 'SRC', 'Done', 'USED', '2012-06-15 22:49:41'),
(2826, 'Sorry, you are not allowed to view that bulletin.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2827, 'Sorry, I can\'t find that survey.', 'SRC', 'Done', 'USED', '2012-06-15 22:29:41'),
(2828, 'Sorry, you are not allowed to edit this survey on current status.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2829, 'Sorry, something is wrong with your user data. Please contact an administrator to fix this.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2830, 'Sorry, this profile is not existing or is not suitable for this operation.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2832, 'British Indian Ocean#ccfilter', 'SRC', 'Done', 'USED', '2012-08-22 19:48:45'),
(2833, 'St. Pierre & Miquelon#ccfilter', 'SRC', 'Done', 'USED', '2012-08-22 19:48:45'),
(2834, 'St. Vincent & Grenadines#ccfilter', 'SRC', 'Done', 'USED', '2012-08-22 19:48:45'),
(2835, 'S-Georgia & Sandwich Isl.#ccfilter', 'SRC', 'Done', 'USED', '2012-08-22 19:48:45'),
(2836, 'Vatican City (Holy See)#ccfilter', 'SRC', 'Done', 'USED', '2012-07-30 14:21:09'),
(2837, 'United Fed. of Planets#ccfilter', 'SRC', 'Done', 'USED', '2012-07-30 14:21:09'),
(2838, 'Show multi-player-games only#filter', 'SRC', 'Done', 'USED', '2012-06-13 22:46:32'),
(2839, 'Can\'t search for stopwords [%s]!', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2840, 'Warning#filter', 'SRC', 'Done', 'USED', '2012-07-30 14:21:09'),
(2841, 'Conditions are not met to allow to add time by user [%s] for game [%s]', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2842, 'Rengo#gametype', 'SRC', 'Done', 'USED', '2012-07-29 11:52:42'),
(2843, 'Non-Std#gametype', 'SRC', 'Done', 'USED', '2012-08-17 09:13:09'),
(2844, 'May I resign?#mpg', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2845, 'Invitation to multi-player-game from [%s]#mpg', 'SRC', 'Done', 'USED', '2012-06-13 22:46:32'),
(2846, 'Game-master %s invites you to a %s multi-player-game.#mpg', 'SRC', 'Done', 'USED', '2012-06-13 22:46:32'),
(2847, 'This game is a shape-game (Shape #%s)#mpg', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2848, 'You can accept or reject the invitation on setup-page of game: %s#mpg', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2849, 'To reject the invitation, please inform the game-master by replying to this message.#mpg', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2850, 'You may also want to discuss what team, color or playing order you prefer in the game (see FAQ for more details).#mpg', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2851, 'Everybody ready to start the game?#mpg', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2852, 'Black/White or unset#gpcol', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2853, 'Black#gpcol', 'SRC', 'Done', 'USED', '2012-06-16 19:09:08'),
(2854, 'White#gpcol', 'SRC', 'Done', 'USED', '2012-06-16 19:20:35'),
(2855, 'Group #1#gpcol', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2856, 'Group #2#gpcol', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2857, 'BW#gpcol', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2858, 'Top Secret#fairkomi', 'SRC', 'Done', 'USED', '2012-07-29 11:52:42'),
(2859, 'Black chosen#fairkomi', 'SRC', 'Done', 'USED', '2012-06-11 21:56:54'),
(2860, 'White chosen#fairkomi', 'SRC', 'Done', 'USED', '2012-06-11 21:56:54'),
(2861, 'Choose color#fairkomi', 'SRC', 'Done', 'USED', '2012-06-11 21:56:54'),
(2862, 'No bid yet#fairkomi', 'SRC', 'Done', 'USED', '2012-06-11 21:56:54'),
(2863, 'I choose Black#fairkomi', 'SRC', 'Done', 'USED', '2012-06-11 21:56:54'),
(2864, 'I choose White#fairkomi', 'SRC', 'Done', 'USED', '2012-06-11 21:56:54'),
(2865, 'Current bid#fairkomi', 'SRC', 'Done', 'USED', '2012-06-11 21:56:54'),
(2866, 'Save Komi Bid', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2867, 'Start Game#fairkomi', 'SRC', 'Done', 'USED', '2012-06-11 21:56:54'),
(2868, 'Players secretly give their respective komi-bid (once per player).#fairkomi', 'SRC', 'Done', 'USED', '2012-06-11 21:56:54'),
(2869, 'Komi-bids are hidden from the other player.#fairkomi', 'SRC', 'Done', 'USED', '2012-06-11 21:56:54'),
(2870, 'After the 2nd komi-bid, the game will be started:#fairkomi', 'SRC', 'Done', 'USED', '2012-06-11 21:56:54'),
(2871, 'The player with the highest bid takes Black and is giving that number of komi to White.#fairkomi', 'SRC', 'Done', 'USED', '2012-06-11 21:56:54'),
(2872, 'If the komi-bids are equal, player color is determined by Nigiri.#fairkomi', 'SRC', 'Done', 'USED', '2012-06-11 21:56:54'),
(2873, 'Players openly give their komi-bids.#fairkomi', 'SRC', 'Done', 'USED', '2012-06-11 21:56:54'),
(2874, 'Komi-bids are shown to the other player.#fairkomi', 'SRC', 'Done', 'USED', '2012-06-11 21:56:54'),
(2875, 'Komi-bids are given in turn till one player starts the game:#fairkomi', 'SRC', 'Done', 'USED', '2012-06-11 23:00:06'),
(2876, 'Each komi-bid must be higher than the last bid of the opponent.#fairkomi', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2877, 'One player chooses the komi for White.#fairkomi', 'SRC', 'Done', 'USED', '2012-06-11 23:00:06'),
(2878, 'Then the other player chooses the color to play and the game starts.#fairkomi', 'SRC', 'Done', 'USED', '2012-06-11 23:00:06'),
(2879, 'During fair-komi negotiation the clock is running.#fairkomi', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2880, 'Missing color choice#fairkomi', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2881, 'Missing komi-bid#fairkomi', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2882, 'Invalid color choice#fairkomi', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2883, 'Komi-bid must be a numeric value#fairkomi', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2884, 'Jigo is enforced, so komi-bid must not be fractional#fairkomi', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2885, 'Jigo is forbidden, so komi-bid must be fractional#fairkomi', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2886, 'Your komi-bid must be higher than that of the opponent.#fairkomi', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2887, 'Sorry, you are not allowed to start more than %s games!', 'SRC', 'Done', 'USED', '2012-06-11 22:37:30'),
(2888, 'You already started %s of max. %s games.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2889, 'Tournament registration only allowed for <%s games.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(5764, 'Hide comments#ged', 'SRC', 'Done', 'USED', '2013-12-09 23:41:29'),
(2891, 'Manual setting with My Color [%s], Handicap %s, Komi %s', 'SRC', 'Done', 'USED', '2012-07-30 15:38:20'),
(2892, 'Standard-Handicap#inv_diff', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2893, 'Free-Handicap#inv_diff', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2895, 'Handicap stones placement#inv_diff', 'SRC', 'Done', 'USED', '2012-07-15 06:06:41'),
(2896, 'Time#inv_diff', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(5738, 'Notes#ged', 'SRC', 'Done', 'USED', '2013-12-01 17:02:29'),
(5765, 'Show comments#ged', 'SRC', 'Done', 'USED', '2013-12-09 23:41:29'),
(2898, 'Invalid value for komi [%s].', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2899, 'Invalid time values [%s], must be integer and >= 0.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2900, 'Invalid value for komi-adjustment [%s].', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2902, 'Invalid value for min. rated games [%s].', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2903, 'Value for min. rated games is out of range.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2904, 'Invalid value for game-players [%s].', 'SRC', 'Done', 'USED', '2012-06-13 23:04:21'),
(2905, 'Templates with user-id [%s]', 'SRC', 'Done', 'USED', '2012-06-14 13:22:13'),
(2906, 'Templates', 'SRC', 'Done', 'USED', '2012-06-10 22:45:36'),
(2907, 'Message#tmpl', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2908, 'Invite#tmpl', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2909, 'New Game#tmpl', 'SRC', 'Done', 'USED', '2012-06-11 20:55:27'),
(2911, 'Copy as new game#rematch', 'SRC', 'Done', 'USED', '2012-06-11 21:06:22'),
(2912, 'Double game (White)', 'SRC', 'Done', 'USED', '2012-07-15 19:46:35'),
(2913, 'Double game (Black)', 'SRC', 'Done', 'USED', '2012-07-15 19:46:35'),
(2914, 'Japanese#ruleset', 'SRC', 'Done', 'USED', '2012-06-11 12:24:45'),
(2915, 'Chinese#ruleset', 'SRC', 'Done', 'USED', '2012-06-11 12:24:45'),
(6371, 'Time changed at move %s (%s): %s -> %s#addtime', 'SRC', 'Y', 'USED', '2015-09-13 23:09:58'),
(2918, 'fair-komi settings#gsview', 'SRC', 'Done', 'USED', '2012-06-11 21:03:55'),
(2919, 'multi-player settings#gsview', 'SRC', 'Done', 'USED', '2012-06-11 21:03:55'),
(2920, 'Min. rated finished games', 'SRC', 'Done', 'USED', '2012-07-10 22:39:57'),
(2921, '(optional)', 'SRC', 'Done', 'USED', '2012-07-15 19:46:35'),
(2922, 'Accept same opponent', 'SRC', 'Done', 'USED', '2012-07-10 22:48:53'),
(2923, '%s games started#same_opp', 'SRC', 'Done', 'USED', '2012-07-10 22:51:35'),
(2924, '%s game started#same_opp', 'SRC', 'Done', 'USED', '2012-07-10 22:51:35'),
(2925, 'always#same_opp', 'SRC', 'Done', 'USED', '2012-07-10 22:50:55'),
(2928, '1 time (same offer)#same_opp', 'SRC', 'Done', 'USED', '2012-07-10 22:50:55'),
(2929, '%s times (same offer)#same_opp', 'SRC', 'Done', 'USED', '2012-07-10 22:50:55'),
(2930, 'joined %s games#same_opp', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2931, 'joined %s game#same_opp', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2932, 'after 1 day#same_opp', 'SRC', 'Done', 'USED', '2012-07-10 22:50:55'),
(2933, 'after %s days#same_opp', 'SRC', 'Done', 'USED', '2012-07-10 22:50:55'),
(2934, 'wait till %s#same_opp', 'SRC', 'Done', 'USED', '2012-07-10 22:50:55'),
(2935, '... your Color is probably %1$s with Handicap %2$s, Komi %3$.1f', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2936, '... your Color would be %1$s with Handicap %2$s, Komi %3$.1f', 'SRC', 'Done', 'USED', '2012-06-14 14:32:59'),
(2937, 'Go#gametype', 'SRC', 'Done', 'USED', '2012-07-29 11:52:42'),
(2938, 'Team-Go#gametype', 'SRC', 'Done', 'USED', '2012-07-29 11:52:42'),
(2939, 'Zen-Go#gametype', 'SRC', 'Done', 'USED', '2012-07-29 11:52:42'),
(2940, 'Nigiri#htman', 'SRC', 'Done', 'USED', '2012-08-17 09:38:03'),
(2941, 'Double#htman', 'SRC', 'Done', 'USED', '2012-06-14 14:41:42'),
(2942, 'Black#htman', 'SRC', 'Done', 'USED', '2012-06-14 14:44:58'),
(2943, 'White#htman', 'SRC', 'Done', 'USED', '2012-06-14 14:44:58'),
(2944, 'Fair Komi Negotiation#fairkomi', 'SRC', 'Done', 'USED', '2012-07-30 15:56:46'),
(2945, 'Fair Komi#fairkomi', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2946, 'Open Auction Komi#fairkomi', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2947, 'Secret Auction Komi#fairkomi', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2948, 'You choose Komi, I choose Color#fairkomi', 'SRC', 'Done', 'USED', '2012-06-11 22:01:32'),
(2949, 'I choose Komi, You choose Color#fairkomi', 'SRC', 'Done', 'USED', '2012-06-11 22:01:32'),
(2950, 'Divide & Choose#fairkomi', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2951, 'Color determined by higher OPEN bid on komi#fk_color', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2952, 'Color determined by higher SECRET bid on komi#fk_color', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2953, 'You choose Komi, I (%s) choose Color#fairkomi', 'SRC', 'Done', 'USED', '2012-06-11 22:01:32'),
(2954, 'You (%s) choose Komi, I (%s) choose Color#fairkomi', 'SRC', 'Done', 'USED', '2012-06-11 22:01:32'),
(2955, 'I (%s) choose Komi, You choose Color#fairkomi', 'SRC', 'Done', 'USED', '2012-06-11 22:01:32'),
(2956, 'I (%s) choose Komi, You (%s) choose Color#fairkomi', 'SRC', 'Done', 'USED', '2012-06-11 22:01:32'),
(6423, 'Restrictions on games with opponent (without MP-games)', 'SRC', 'Done', 'USED', '2016-04-13 16:28:55'),
(2959, 'Enforce Jigo#jigo_mode', 'SRC', 'Done', 'USED', '2012-07-10 22:57:48'),
(2960, 'Forbid Jigo#jigo_mode', 'SRC', 'Done', 'USED', '2012-07-10 22:57:48'),
(2961, 'Maintenance#B_cat', 'SRC', 'Done', 'USED', '2012-06-16 19:51:18'),
(2962, 'Admin Announcement#B_cat', 'SRC', 'Done', 'USED', '2012-06-16 19:45:22'),
(2963, 'Tournament Announcement#B_cat', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2964, 'Tournament News#B_cat', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2965, 'Feature Info#B_cat', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2966, 'Private Announcement#B_cat', 'SRC', 'Done', 'USED', '2012-06-16 19:45:22'),
(2967, 'Advertisement#B_cat', 'SRC', 'Done', 'USED', '2012-06-16 19:51:18'),
(2968, 'New#B_status', 'SRC', 'Done', 'USED', '2012-06-16 19:48:11'),
(2969, 'Pending#B_status', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2970, 'Rejected#B_status', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2971, 'Show#B_status', 'SRC', 'Done', 'USED', '2012-06-16 19:47:28'),
(2972, 'Archive#B_status', 'SRC', 'Done', 'USED', '2012-06-16 19:48:11'),
(2973, 'Delete#B_status', 'SRC', 'Done', 'USED', '2012-06-16 19:48:11'),
(2974, 'All Users#B_trg', 'SRC', 'Done', 'USED', '2012-06-15 22:59:20'),
(2975, 'T-Director#B_trg', 'SRC', 'Done', 'USED', '2012-06-15 23:02:43'),
(2976, 'T-Participant#B_trg', 'SRC', 'Done', 'USED', '2012-06-15 23:02:43'),
(2977, 'UserList#B_trg', 'SRC', 'Done', 'USED', '2012-06-15 23:02:43'),
(2978, 'MP-Game#B_trg', 'SRC', 'Done', 'USED', '2012-06-15 22:58:37'),
(2979, 'Admin-Created#B_flag', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2980, 'User-Changeable#B_flag', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2981, '[%s] by %s#bulletin', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2982, 'Mark as read#bulletin', 'SRC', 'Done', 'USED', '2012-06-15 22:49:41'),
(2983, 'Mark bulletin as read#bulletin', 'SRC', 'Done', 'USED', '2012-06-15 22:49:41'),
(2984, 'Game clock stopped', 'SRC', 'Done', 'USED', '2012-06-15 21:43:45'),
(2985, 'User in sleeping time', 'SRC', 'Done', 'USED', '2012-06-15 21:26:41'),
(2986, 'Weekend (UTC)', 'SRC', 'Done', 'USED', '2012-07-30 14:21:09'),
(2987, 'Dragon executive', 'SRC', 'Done', 'USED', '2012-08-22 19:48:45'),
(2988, 'Online', 'SRC', 'Done', 'USED', '2012-08-22 19:48:45'),
(2989, 'Online &lt;%s mins ago', 'SRC', 'Done', 'USED', '2012-07-30 14:21:09'),
(2992, 'Tournaments', 'SRC', 'Done', 'USED', '2012-07-02 11:37:45'),
(2993, 'Game has hidden comments', 'SRC', 'Done', 'USED', '2012-07-30 14:21:09'),
(2995, 'Show multi-player-games', 'SRC', 'Done', 'USED', '2012-06-11 23:00:06'),
(2996, 'Illegal characters used in user [%s]#userlist', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2997, 'Unknown users found [%s]#userlist', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(2998, 'Userlist must contain at least two recipients, otherwise send a private message instead.#userlist', 'SRC', 'Done', 'USED', '2012-07-30 14:52:37'),
(2999, 'Users [%s] are denied to vote on surveys by admin.#userlist', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3000, 'Guest users [%s] are not allowed in user-list.#userlist', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3001, 'English#lang', 'SRC', 'Done', 'USED', '2012-07-02 23:30:48'),
(3002, 'French#lang', 'SRC', 'Done', 'USED', '2012-07-02 23:30:48'),
(3003, 'Arabic#lang', 'SRC', 'Done', 'USED', '2012-07-02 23:30:48'),
(3004, 'Spanish (Catalan)#lang', 'SRC', 'Done', 'USED', '2012-07-02 23:30:48'),
(3005, 'Spanish (Basque)#lang', 'SRC', 'Done', 'USED', '2012-07-02 23:30:48'),
(3006, 'Russian#lang', 'SRC', 'Done', 'USED', '2012-07-02 23:30:48'),
(3007, 'Portuguese#lang', 'SRC', 'Done', 'USED', '2012-07-02 23:30:48'),
(3008, 'German#lang', 'SRC', 'Done', 'USED', '2012-07-02 23:30:48'),
(3009, 'Dutch#lang', 'SRC', 'Done', 'USED', '2012-07-02 23:30:48'),
(3010, 'Italian#lang', 'SRC', 'Done', 'USED', '2012-07-02 23:30:48'),
(3011, 'Chinese (Cantonese)#lang', 'SRC', 'Done', 'USED', '2012-07-02 23:30:48'),
(3012, 'Chinese (Mandarin)#lang', 'SRC', 'Done', 'USED', '2012-07-02 23:30:48'),
(3013, 'Czech#lang', 'SRC', 'Done', 'USED', '2012-07-02 23:30:48'),
(3014, 'Danish#lang', 'SRC', 'Done', 'USED', '2012-07-02 23:30:48'),
(3015, 'Finnish#lang', 'SRC', 'Done', 'USED', '2012-07-02 23:30:48'),
(3016, 'Greek#lang', 'SRC', 'Done', 'USED', '2012-07-02 23:30:48'),
(3017, 'Hebrew#lang', 'SRC', 'Done', 'USED', '2012-07-02 23:30:48'),
(3018, 'Hungarian#lang', 'SRC', 'Done', 'USED', '2012-07-02 23:30:48'),
(3019, 'Japanese#lang', 'SRC', 'Done', 'USED', '2012-07-02 23:30:48'),
(3020, 'Korean#lang', 'SRC', 'Done', 'USED', '2012-07-02 23:30:48'),
(3021, 'Norwegian#lang', 'SRC', 'Done', 'USED', '2012-07-02 23:30:48'),
(3022, 'Polish#lang', 'SRC', 'Done', 'USED', '2012-07-02 23:30:48'),
(3023, 'Romanian#lang', 'SRC', 'Done', 'USED', '2012-07-02 23:30:48'),
(3024, 'Serbian#lang', 'SRC', 'Done', 'USED', '2012-07-02 23:30:48'),
(3025, 'Slovak#lang', 'SRC', 'Done', 'USED', '2012-07-02 23:30:48'),
(3026, 'Swedish#lang', 'SRC', 'Done', 'USED', '2012-07-02 23:30:48'),
(3027, 'Thai#lang', 'SRC', 'Done', 'USED', '2012-07-02 23:30:48'),
(3028, 'Turkish#lang', 'SRC', 'Done', 'USED', '2012-07-02 23:30:48'),
(3030, 'Vietnamese#lang', 'SRC', 'Done', 'USED', '2012-07-02 23:30:48'),
(3031, 'Esperanto#lang', 'SRC', 'Done', 'USED', '2012-07-29 11:52:42'),
(3032, 'Malay#lang', 'SRC', 'Done', 'USED', '2012-07-02 23:34:15'),
(3033, 'Georgian#lang', 'SRC', 'Done', 'USED', '2012-07-02 23:34:15'),
(3034, 'Irish Gaelic#lang', 'SRC', 'Done', 'USED', '2012-07-02 23:34:15'),
(3035, 'Indonesian#lang', 'SRC', 'Done', 'USED', '2012-07-02 23:34:15'),
(3036, 'Hindi#lang', 'SRC', 'Done', 'USED', '2012-07-29 11:52:42'),
(3037, 'Tamil#lang', 'SRC', 'Done', 'USED', '2012-07-02 23:34:15'),
(3038, 'Urdu#lang', 'SRC', 'Done', 'USED', '2012-07-29 11:52:42'),
(3039, 'Bengali#lang', 'SRC', 'Done', 'USED', '2012-07-02 23:34:15'),
(3040, 'Bosnian#lang', 'SRC', 'Done', 'USED', '2012-07-02 23:34:15'),
(3041, 'Croatian#lang', 'SRC', 'Done', 'USED', '2012-07-02 23:34:15'),
(3042, 'Slovenian#lang', 'SRC', 'Done', 'USED', '2012-07-02 23:34:15'),
(3043, 'Afrikaans#lang', 'SRC', 'Done', 'USED', '2012-07-29 11:52:42'),
(3044, 'Swahili#lang', 'SRC', 'Done', 'USED', '2012-07-02 23:34:15'),
(3045, 'Uzbek#lang', 'SRC', 'Done', 'USED', '2012-07-02 23:34:15'),
(3046, 'Mongolian#lang', 'SRC', 'Done', 'USED', '2012-07-02 23:34:15'),
(3047, 'Albanian#lang', 'SRC', 'Done', 'USED', '2012-07-02 23:34:15'),
(3048, 'Armenian#lang', 'SRC', 'Done', 'USED', '2012-07-02 23:34:15'),
(3049, 'Bulgarian#lang', 'SRC', 'Done', 'USED', '2012-07-02 23:34:15'),
(3050, 'Persian#lang', 'SRC', 'Done', 'USED', '2012-07-02 23:34:15'),
(3051, 'Pashto#lang', 'SRC', 'Done', 'USED', '2012-07-29 11:52:42'),
(3054, 'Color Challenger#T_ladder', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3055, 'Color Stronger#T_RRobin', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3056, 'Manual setting (even or handicap game)', 'SRC', 'Done', 'USED', '2012-06-14 14:38:09'),
(3057, 'Fair Komi (even game)', 'SRC', 'Done', 'USED', '2012-06-11 22:01:32'),
(3058, 'Handicap stones', 'SRC', 'Done', 'USED', '2012-06-14 14:46:22'),
(3059, 'Adjust by#handi', 'SRC', 'Done', 'USED', '2012-07-10 22:55:34'),
(3060, 'Min.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3061, 'Max.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3062, 'Adjust by#komi', 'SRC', 'Done', 'USED', '2012-07-10 22:55:34'),
(3063, 'Jigo mode', 'SRC', 'Done', 'USED', '2012-07-10 22:57:48'),
(3064, 'Multi-player settings', 'SRC', 'Done', 'USED', '2012-06-13 22:46:32'),
(3065, 'Game Players', 'SRC', 'Done', 'USED', '2012-06-13 23:04:21'),
(3066, 'e.g. 2:2 (Rengo), 3 (Zen-Go)', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3067, 'UTC timezone', 'SRC', 'Done', 'USED', '2012-06-14 14:47:17'),
(3068, 'Restrictions', 'SRC', 'Done', 'USED', '2012-06-11 22:42:16'),
(3069, 'Bulk-Message with other receivers', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3070, '(no subject)', 'SRC', 'Done', 'USED', '2012-07-02 11:37:45'),
(3071, 'Message thread', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33');
INSERT INTO `TranslationTexts` (`ID`, `Text`, `Type`, `Translatable`, `Status`, `Updated`) VALUES
(3072, 'Show message thread', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3073, 'First message in thread', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3074, 'Show initial message in thread', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3075, 'Follow moving', 'SRC', 'Done', 'USED', '2012-08-17 09:01:12'),
(3076, 'Number of game-players', 'SRC', 'Done', 'USED', '2012-06-16 19:02:43'),
(5735, 'Add new user below user with same rating in the ladder ordered by user rating.#T_ladder', 'SRC', 'Y', 'USED', '2013-10-06 02:14:39'),
(3079, 'Game info', 'SRC', 'Done', 'USED', '2012-07-30 22:58:27'),
(3080, 'Handicap game with nigiri', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3081, 'Color set by game-master#color', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3082, 'Color set by game-master for multi-player-game#color', 'SRC', 'Done', 'USED', '2012-06-13 22:46:32'),
(3083, 'Color Black', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3084, 'Color White', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3085, 'Color Challenger Black#T_ladder', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3086, 'Color Challenger White#T_ladder', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3087, 'Color Stronger Black#T_RRobin', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3088, 'Color Stronger White#T_RRobin', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3089, 'Manual setting#htype', 'SRC', 'Done', 'USED', '2012-07-30 15:38:20'),
(3090, 'Fair Komi#htype', 'SRC', 'Done', 'USED', '2012-06-11 22:01:32'),
(3091, 'Handicap adjustment', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3092, 'Komi adjustment', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3093, 'Rating restrictions', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(5734, 'Rating diff on Loss', 'SRC', 'Done', 'USED', '2013-10-06 02:14:39'),
(3096, 'Probable game settings', 'SRC', 'Done', 'USED', '2012-06-11 21:03:55'),
(3097, '.0#wroomshort', 'SRC', 'Done', 'USED', '2012-06-10 09:12:44'),
(3098, 'Allow Jigo#wroom', 'SRC', 'Done', 'USED', '2012-06-11 11:26:41'),
(3099, '.5#wroomshort', 'SRC', 'Done', 'USED', '2012-06-10 09:12:44'),
(3100, 'No Jigo#wroom', 'SRC', 'Done', 'USED', '2012-06-11 11:26:41'),
(3101, 'Rated Games[%s]#short', 'SRC', 'Done', 'USED', '2012-06-11 11:26:41'),
(3102, 'Rated finished Games[&gt;=%s]', 'SRC', 'Done', 'USED', '2012-07-10 22:38:37'),
(3103, 'Unknown message receiver [%s]', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3104, 'Invitation rejected by user [%s] !', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3105, 'Message rejected by user [%s] !', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3106, 'Message thread#header', 'SRC', 'Done', 'USED', '2012-06-11 11:26:41'),
(3107, 'First message in thread#header', 'SRC', 'Done', 'USED', '2012-06-11 11:26:41'),
(3108, 'Use toggle above for this bulk-message', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3109, 'Missing message receiver', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3110, 'Too much receivers (max. %s)', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3111, 'Only one receiver for invitation allowed!', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3112, 'User [%s] is no participant of multi-player-game.', 'SRC', 'Done', 'USED', '2012-06-13 22:46:32'),
(3113, 'Missing message subject', 'SRC', 'Done', 'USED', '2012-06-14 13:16:42'),
(3114, 'See also', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3115, 'DGS-rank', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3116, 'DGS-ELO', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3117, 'No valid rating', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3118, 'Convert', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3119, 'dan#short', 'SRC', 'Done', 'USED', '2012-06-10 19:58:51'),
(3120, 'kyu#short', 'SRC', 'Done', 'USED', '2012-06-10 19:59:01'),
(3121, 'ELO#rating', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3122, 'Dragon rank#ratingtype', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3123, 'Dragon rating#ratingtype', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3124, 'Euro rank (EGF)#ratingtype', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3125, 'Euro rating (EGF)#ratingtype', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3126, 'AGA rank#ratingtype', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3127, 'AGA rating#ratingtype', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3128, 'Japanese rank#ratingtype', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3129, 'Chinese rank#ratingtype', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3130, 'Korean rank#ratingtype', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3131, 'KGS rank#ratingtype', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3132, 'IGS rank#ratingtype', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3133, 'OGS rank#ratingtype', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3134, 'OGS rating#ratingtype', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3135, 'FICGS rank#ratingtype', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3136, 'IYT rank#ratingtype', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3137, 'Tygem rank#ratingtype', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3138, 'WBaduk rank#ratingtype', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3139, 'This is an automated support-request to register a new account on behalf of an IP-blocked user with the following credentials:', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3140, 'W-First#SHP_flag', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3141, 'Public#SHP_flag', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3142, 'Pro#utype_short', 'SRC', 'Done', 'USED', '2012-07-29 11:52:42'),
(3143, 'Teacher#utype_short', 'SRC', 'Done', 'USED', '2012-07-02 11:37:45'),
(3144, 'Bot#utype_short', 'SRC', 'Done', 'USED', '2012-08-22 19:48:45'),
(3145, 'Team', 'SRC', 'Done', 'USED', '2012-07-30 14:24:38'),
(3146, 'Team#utype_short', 'SRC', 'Done', 'USED', '2012-07-30 14:24:38'),
(3147, 'Bookmarks#bookmark', 'SRC', 'Done', 'USED', '2012-07-30 14:42:25'),
(3148, 'Latest forum posts#bookmark', 'SRC', 'Done', 'USED', '2012-07-30 14:42:25'),
(3149, 'Opponents online#bookmark', 'SRC', 'Done', 'USED', '2012-07-30 14:42:25'),
(3150, 'Users online#bookmark', 'SRC', 'Done', 'USED', '2012-07-30 14:42:25'),
(3151, 'Edit vacation#bookmark', 'SRC', 'Done', 'USED', '2012-07-30 14:42:25'),
(3152, 'Edit profile#bookmark', 'SRC', 'Done', 'USED', '2012-07-30 14:42:25'),
(3153, 'Show#bookmark', 'SRC', 'Done', 'USED', '2012-07-30 14:42:25'),
(3154, 'Login', 'SRC', 'Done', 'USED', '2012-07-30 14:24:38'),
(3155, 'Help / FAQ', 'SRC', 'Done', 'USED', '2012-07-15 05:11:03'),
(3156, 'New Game', 'SRC', 'Done', 'USED', '2012-06-10 22:29:18'),
(3157, 'Bulletins', 'SRC', 'Done', 'USED', '2012-07-15 16:56:09'),
(3158, 'Features', 'SRC', 'Done', 'USED', '2012-07-15 16:59:16'),
(3159, 'Game Editor', 'SRC', 'Done', 'USED', '2012-07-29 11:50:10'),
(3160, 'Shape-Setup#gametag', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3161, 'Move#gametag', 'SRC', 'Done', 'USED', '2012-07-30 14:27:18'),
(3162, 'Tournament #%s [%s]', 'SRC', 'Done', 'USED', '2012-07-30 14:27:18'),
(3163, '???#tournament', 'SRC', 'Done', 'USED', '2012-07-29 11:52:42'),
(3164, 'Survey #%s (%s) [%s]', 'SRC', 'Done', 'USED', '2012-06-15 22:29:41'),
(3165, 'Survey #%s [%s]', 'SRC', 'Done', 'USED', '2012-06-15 22:29:41'),
(3166, '???#survey', 'SRC', 'Done', 'USED', '2012-07-29 11:52:42'),
(3167, 'Dateformat of [%s] is wrong, expected [%s] for [%s]', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3168, 'Points#S_type', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3169, 'Sum#S_type', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3170, 'Single#S_type', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3171, 'Multi#S_type', 'SRC', 'Done', 'USED', '2012-07-29 11:52:42'),
(3172, 'New#S_status', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3173, 'Active#S_status', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3174, 'Closed#S_status', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3175, 'Delete#S_status', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3176, 'User-List#S_flag', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3177, 'Survey-Voting has been denied.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3178, 'You are not eligible to vote on this survey because of user-list-restriction.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3179, 'To be eligible to vote on this survey you need to actively play in games.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3180, 'You have to spend %s points in total for voting on all options.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3181, 'You can select %s checkbox(es) for your vote.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3182, 'My vote#survey', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3183, 'All votes#survey', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3184, 'Notes: %s, %s#survey', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3185, 'Your vote#survey', 'SRC', 'Done', 'USED', '2012-06-15 22:30:47'),
(3186, '##table', 'SRC', 'Done', 'USED', '2012-07-29 11:52:42'),
(3187, '(%s entry)', 'SRC', 'Done', 'USED', '2012-06-14 14:51:16'),
(3188, '(%s entries)', 'SRC', 'Done', 'USED', '2012-06-14 15:09:19'),
(3189, 'first page', 'SRC', 'Done', 'USED', '2012-07-30 14:27:18'),
(3190, 'Page %s of %s#tablenavi', 'SRC', 'Done', 'USED', '2012-07-30 14:27:18'),
(3191, 'Page %s#tablenavi', 'SRC', 'Done', 'USED', '2012-07-30 14:27:18'),
(3192, 'last page', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3193, 'Changeable#B_status', 'SRC', 'Done', 'USED', '2012-06-16 19:48:11'),
(3194, 'Viewable#B_status', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3195, 'Admin#B_status', 'SRC', 'Done', 'USED', '2012-07-29 11:52:42'),
(3196, 'All Types#B_trg', 'SRC', 'Done', 'USED', '2012-06-15 23:02:43'),
(3197, 'Unread#bulletinread', 'SRC', 'Done', 'USED', '2012-06-15 22:46:53'),
(3198, 'Read#bulletinread', 'SRC', 'Done', 'USED', '2012-06-15 22:46:53'),
(3199, 'Mine#bulletin', 'SRC', 'Done', 'USED', '2012-06-15 22:46:53'),
(3200, 'Other#bulletin', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3201, 'Target#bulletin', 'SRC', 'Done', 'USED', '2012-06-15 22:46:53'),
(3202, 'Edit Bulletin#bulletin', 'SRC', 'Done', 'USED', '2012-06-15 22:46:53'),
(3205, 'Read#bulletin', 'SRC', 'Done', 'USED', '2012-06-15 22:46:53'),
(3206, 'View#bulletin', 'SRC', 'Done', 'USED', '2012-06-15 22:46:53'),
(3207, 'Information#bulletin', 'SRC', 'Done', 'USED', '2012-07-29 11:52:42'),
(3208, 'Subject#bulletin', 'SRC', 'Done', 'USED', '2012-06-15 22:52:36'),
(3209, 'Hits#bulletin', 'SRC', 'Done', 'USED', '2012-07-29 11:52:42'),
(3212, 'Bulletin Board', 'SRC', 'Done', 'USED', '2012-07-29 11:52:42'),
(3213, 'Admin View#bulletin', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3214, 'Admin User-View#bulletin', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3215, 'My Bulletins#bulletin', 'SRC', 'Done', 'USED', '2012-06-15 22:49:41'),
(3216, 'Hide texts', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3217, 'Show texts', 'SRC', 'Done', 'USED', '2012-06-15 22:53:11'),
(3218, 'Category skipped#bulletin', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3219, 'Bulletin marked as read', 'SRC', 'Done', 'USED', '2012-06-15 22:49:41'),
(3220, 'Bulletin unread', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3221, 'Viewable as user#bulletin', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3222, 'Viewable by admin, but not by you as user#bulletin', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3223, 'Unread Bulletins', 'SRC', 'Done', 'USED', '2012-06-15 22:49:41'),
(3224, 'User picture#header', 'SRC', 'Done', 'USED', '2012-06-11 11:26:41'),
(3225, 'Indicator for existing user picture', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3226, 'User online#header', 'SRC', 'Done', 'USED', '2012-06-11 11:26:41'),
(3227, 'Indicator for being online up to %s mins ago', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3228, 'Modified#header', 'SRC', 'Done', 'USED', '2012-06-11 11:26:41'),
(3229, 'Toggle marks', 'SRC', 'Done', 'USED', '2012-06-18 15:49:58'),
(3230, 'Target folder:', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3231, 'Move marked messages', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3235, 'Shapes', 'SRC', 'Done', 'USED', '2012-07-30 15:25:54'),
(3240, 'Type#survey', 'SRC', 'Done', 'USED', '2012-06-15 22:30:47'),
(3242, 'Edit Survey#survey', 'SRC', 'Done', 'USED', '2012-06-15 22:30:47'),
(3245, '#Votes#survey', 'SRC', 'Done', 'USED', '2012-06-15 22:35:42'),
(3249, 'Message View', 'SRC', 'Done', 'USED', '2012-08-17 08:55:55'),
(3250, 'New multi-player-game message', 'SRC', 'Done', 'USED', '2012-06-13 22:53:21'),
(3251, 'Save Template', 'SRC', 'Done', 'USED', '2012-06-10 22:45:36'),
(3252, 'Game Invitation', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3253, 'Game Invitation Dispute', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3255, 'Message preview', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3256, 'Game settings by#inv_diff', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3257, 'myself#inv_diff', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3258, 'Differences of Dispute', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3259, 'Level#header', 'SRC', 'Done', 'USED', '2012-06-11 11:26:41'),
(3260, 'Hide message texts', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3261, 'Show message texts', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3262, 'Current message', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3263, 'Table of contents', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3264, 'Add new game#mpg', 'SRC', 'Done', 'USED', '2012-06-11 20:55:27'),
(3265, 'Add new game to waiting room', 'SRC', 'Done', 'USED', '2012-06-11 21:06:22'),
(5733, 'Rating diff on Jigo', 'SRC', 'Done', 'USED', '2013-10-06 02:14:39'),
(3267, 'New fair-komi game', 'SRC', 'Done', 'USED', '2012-06-11 20:55:27'),
(3268, 'New multi-player-game', 'SRC', 'Done', 'USED', '2012-06-11 20:55:27'),
(3295, 'Special', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3296, 'Pro', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3297, 'Invite#header', 'SRC', 'Done', 'USED', '2012-06-11 11:26:41'),
(3298, 'Opponent games#header', 'SRC', 'Done', 'USED', '2012-06-11 11:26:41'),
(3299, 'Link to games with opponent', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3300, 'Registered#header', 'SRC', 'Done', 'USED', '2012-06-11 11:26:41'),
(3301, 'Link to finished games with opponent [%s]', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3302, 'Link to running games with opponent [%s]', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3303, 'Opponents of player %1$s: %2$s', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3304, 'Show users', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(6359, 'Support contacts', 'SRC', 'Y', 'USED', '2015-07-12 18:36:00'),
(3315, '(have been online within the last %s weeks)', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3316, 'Other credits', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(5421, 'Moves mismatch: found discrepancy at move #%s#sgf', 'SRC', 'Done', 'USED', '2013-01-11 14:39:39'),
(5420, 'Shape-Setup mismatch: missing setup stones in SGF [%s]#sgf', 'SRC', 'Done', 'USED', '2013-01-11 14:39:39'),
(5419, 'Shape-Setup mismatch: found discrepancy at coord [%s]#sgf', 'SRC', 'Done', 'USED', '2013-01-11 14:39:39'),
(5418, 'Komi mismatch: expected %s but found %s#sgf', 'SRC', 'Done', 'USED', '2013-01-11 14:39:39'),
(5417, 'Handicap mismatch: expected %s but found %s#sgf', 'SRC', 'Done', 'USED', '2013-01-11 14:39:39'),
(5416, 'Board size mismatch: expected %s but found %s#sgf', 'SRC', 'Done', 'USED', '2013-01-11 14:39:39'),
(5415, 'SGF-Parse error found: %s', 'SRC', 'Done', 'USED', '2013-01-11 14:39:39'),
(5414, 'File has no SGF-format!', 'SRC', 'Done', 'USED', '2013-01-11 14:39:39'),
(5412, 'Attach SGF', 'SRC', 'Done', 'USED', '2013-01-11 14:39:39'),
(5413, 'Saving the SGF failed!', 'SRC', 'Done', 'USED', '2013-01-11 14:39:39'),
(3332, 'Other Icons', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3333, 'Tournament', 'SRC', 'Done', 'USED', '2012-07-15 19:24:31'),
(3334, 'Rank Converter', 'SRC', 'Done', 'USED', '2012-07-15 19:24:31'),
(5732, 'Rating diff on Win', 'SRC', 'Done', 'USED', '2013-10-06 02:14:39'),
(5756, 'Translation-Statistics', 'SRC', 'Done', 'USED', '2013-12-07 07:38:20'),
(5731, '100 ELO points = 1 kyu#ratchg', 'SRC', 'Done', 'USED', '2013-10-06 02:14:39'),
(3337, 'The email is kept confidential, see \"Privacy Policy\" in the DGS <a href=\"%s\" target=\"dgsTOS\">Rules of Conduct</a>.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3338, '%s-Status of [%s] temporarily disabled due to excessive usage!#alt', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3339, 'Please follow the link, read the FAQ entry and re-configure your %s configuration accordingly.#alt', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3340, 'Please do it as soon as possible to reduce the stress on the server.#alt', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3341, 'Thanks in advance for your cooperation.#alt', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3342, 'Bulletin to %s with \"%s\"#rss', 'SRC', 'Done', 'USED', '2012-06-15 22:52:36'),
(3343, 'From#rss_bullauthor', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3344, 'Message from %s#rss', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3345, 'Message#rss', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3346, 'From#rss_message', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3347, 'Subject#rss_message', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3348, 'Game of %s with %s#rss', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3349, 'Game#rss', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3350, 'Empty lists#rss', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3351, 'No new bulletins', 'SRC', 'Done', 'USED', '2012-06-15 22:49:41'),
(3352, 'No awaiting games', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3353, 'No awaiting messages', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3354, 'User B#filtercol', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3355, 'User W#filtercol', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3356, 'User move#filtercol', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3357, 'Opp move#filtercol', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3358, 'Game ID#header', 'SRC', 'Done', 'USED', '2012-06-11 10:47:32'),
(3359, 'Hidden game comments', 'SRC', 'Done', 'USED', '2012-07-15 19:48:54'),
(3360, 'TGame-Status#header', 'SRC', 'Done', 'USED', '2012-06-11 11:26:41'),
(3361, '#Observers#header', 'SRC', 'Done', 'USED', '2012-06-10 09:23:54'),
(3362, 'Mine#header', 'SRC', 'Done', 'USED', '2012-06-11 11:26:41'),
(6319, 'Silver Badge of Honor', 'SRC', 'Done', 'USED', '2015-05-14 17:10:39'),
(6318, 'Golden Badge of Honor', 'SRC', 'Done', 'USED', '2015-05-14 17:10:39'),
(3366, 'GameType#header', 'SRC', 'Done', 'USED', '2012-06-11 11:26:41'),
(3367, 'Ruleset#header', 'SRC', 'Done', 'USED', '2012-06-11 11:26:41'),
(3368, 'My time remaining#header', 'SRC', 'Done', 'USED', '2012-06-10 09:23:54'),
(3369, 'Opponent time remaining#header', 'SRC', 'Done', 'USED', '2012-06-10 09:23:54'),
(3370, 'All observed games', 'SRC', 'Done', 'USED', '2012-06-11 22:34:03'),
(3371, 'Games I\'m observing', 'SRC', 'Done', 'USED', '2012-06-11 22:29:19'),
(3372, 'All finished games', 'SRC', 'Done', 'USED', '2012-06-11 22:37:30'),
(3373, 'All running games', 'SRC', 'Done', 'USED', '2012-06-11 22:37:30'),
(3374, 'Finished games for %1$s: %2$s', 'SRC', 'Done', 'USED', '2012-07-10 21:31:35'),
(3375, 'Running games for %1$s: %2$s', 'SRC', 'Done', 'USED', '2012-07-10 21:28:49'),
(3376, 'multi-player-games only', 'SRC', 'Done', 'USED', '2012-06-13 22:46:32'),
(3377, '[%s] has White, White to move#hover', 'SRC', 'Done', 'USED', '2012-06-16 19:21:46'),
(3378, '[%s] has White, Black to move#hover', 'SRC', 'Done', 'USED', '2012-06-16 19:21:46'),
(3379, '[%s] has Black, White to move#hover', 'SRC', 'Done', 'USED', '2012-06-16 19:21:46'),
(3380, '[%s] has Black, Black to move#hover', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3381, 'Black to move#hover', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3382, 'White to move#hover', 'SRC', 'Done', 'USED', '2012-06-16 19:21:46'),
(3383, 'Users running games', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3384, 'Users finished games', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3385, 'My running games', 'SRC', 'Done', 'USED', '2012-06-11 22:24:00'),
(3386, 'My finished games', 'SRC', 'Done', 'USED', '2012-06-11 22:24:10'),
(3387, 'Show userinfo', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3388, 'My tournaments', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3389, 'My running multi-player-games', 'SRC', 'Done', 'USED', '2012-06-13 22:46:32'),
(3390, 'My finished multi-player-games', 'SRC', 'Done', 'USED', '2012-06-13 22:46:32'),
(3394, 'Create new tournament', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3395, 'View tournament', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3396, 'Tournament directors', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3397, 'Add tournament director', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3398, 'Edit tournament director', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3399, 'Remove Tournament Director', 'SRC', 'Done', 'USED', '2012-09-18 17:43:35'),
(3400, 'Manage this tournament', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3401, 'Change Status', 'SRC', 'Done', 'USED', '2012-09-18 17:43:35'),
(3402, 'Edit tournament', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3403, 'Add news#tnews', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3404, 'Show tournament news', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3405, 'Show tournament directors', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3408, 'Edit participants', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3409, 'Show my contacts', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3410, 'Show tournament participants', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3411, 'Tournament participants', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3413, 'My rating graph', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3414, 'My rated games', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3415, 'My won games', 'SRC', 'Done', 'USED', '2012-06-11 22:24:59'),
(3416, 'My lost games', 'SRC', 'Done', 'USED', '2012-06-11 22:24:59'),
(3417, 'Show my rating position', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3418, 'Show user info', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3421, 'Unread Bulletins (show with text)', 'SRC', 'Done', 'USED', '2012-07-30 14:47:10'),
(3422, 'Feature Vote Result', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3423, 'The black links require an argument to work, so they are not usable here.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3424, 'The black links require to be logged in, so they are not usable here.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3426, 'The previous version %s', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3427, 'The version %s', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3428, 'The collection of images used on the server', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3429, 'Standard view', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3430, 'User countries', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3431, 'Statistics - User countries', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3432, 'All users', 'SRC', 'Done', 'USED', '2012-06-15 22:57:55'),
(3434, 'Count', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3435, 'Flag#country', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3436, 'Country-setting', 'SRC', 'Done', 'USED', '2012-06-11 21:03:55'),
(3437, 'Unset', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3438, 'Total#stats', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3439, 'Remaining countries', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3440, 'Status for %1$s: %2$s', 'SRC', 'Done', 'USED', '2012-06-14 14:56:11'),
(3441, 'Message of the Day (unread bulletins)', 'SRC', 'Done', 'USED', '2012-07-30 14:47:10'),
(3442, 'Show all (%s) unread bulletins', 'SRC', 'Done', 'USED', '2012-07-30 14:47:10'),
(3443, 'Joined#header', 'SRC', 'Done', 'USED', '2012-06-11 11:26:41'),
(3445, 'Your multi-player-games to manage:', 'SRC', 'Done', 'USED', '2012-06-13 22:46:32'),
(3446, 'Priority#header', 'SRC', 'Done', 'USED', '2012-06-10 09:23:54'),
(3447, 'Set Order', 'SRC', 'Done', 'USED', '2012-06-14 15:06:14'),
(3448, 'Template saved!#tmpl', 'SRC', 'Done', 'USED', '2012-06-10 22:45:36'),
(3449, 'Template deleted!#tmpl', 'SRC', 'Done', 'USED', '2012-06-10 22:45:36'),
(3450, 'Templates (used %s of max. %s)', 'SRC', 'Done', 'USED', '2012-06-10 22:45:36'),
(3451, 'Last changed#header', 'SRC', 'Done', 'USED', '2012-06-11 11:26:41'),
(3452, 'Delete template', 'SRC', 'Done', 'USED', '2012-06-10 22:45:36'),
(3453, 'Replace#header', 'SRC', 'Done', 'USED', '2012-06-11 11:26:41'),
(3454, 'Name#tmpl', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3455, 'Select a template to replace an existing entry', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3456, 'New template#tmpl', 'SRC', 'Done', 'USED', '2012-06-10 22:45:36'),
(3457, 'Invalid type for template to save!#tmpl', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3458, 'Data to store for template exceeds limit of %s bytes (by %s bytes)!#tmpl', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3459, 'Missing name for template!#tmpl', 'SRC', 'Done', 'USED', '2012-06-10 22:45:36'),
(3460, 'Name of template must be unique!#tmpl', 'SRC', 'Done', 'USED', '2012-06-10 22:45:36'),
(3461, 'Max. limit of templates is reached. You have to replace an existing entry!#tmpl', 'SRC', 'Done', 'USED', '2012-06-10 22:45:36'),
(3462, 'Replace selection is faulty, because the entry to replace does not exist for this user.#tmpl', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3464, 'Delete template#tmpl', 'SRC', 'Done', 'USED', '2012-06-10 22:45:36'),
(3465, 'Type#tmpl', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3467, 'Are you sure to delete this template ?#tmpl', 'SRC', 'Done', 'USED', '2012-06-10 22:45:36'),
(3468, 'Tournament Director removed!', 'SRC', 'Done', 'USED', '2012-09-18 17:43:35'),
(3469, 'Tournament Director saved!', 'SRC', 'Done', 'USED', '2012-09-18 17:43:35'),
(3470, 'Tournament Director Removal for [%s]', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3471, 'Tournament Director Edit for [%s]', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3472, 'Check user', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3473, '(Keep comment short, max. 255 chars)', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3474, 'Save Tournament Director', 'SRC', 'Done', 'USED', '2012-09-18 17:43:35'),
(3476, 'Tournament saved!', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3477, 'Tournament Lock Editor', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3479, 'Status#tourney', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3481, 'Lock Note', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3483, 'edit only your own note lines', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3484, 'your lines will be prefixed with date and user-handle', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3485, 'Preview Lock Note', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3487, 'Tournament lock notes', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3488, 'Your lock note is insufficient for setting locks.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3491, 'Tournament News saved!', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3492, 'Tournament News Editor', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3494, 'Current Status#tnews', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3496, 'Save Tournament News', 'SRC', 'Done', 'USED', '2012-09-18 17:43:35'),
(3497, 'Tournament news', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3499, 'Tournament-News subject missing or too short', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3501, 'Guest users can not be edited, please choose another user!', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3504, 'Tournament registration of this user has been denied by admins.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3506, 'Edit User', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3507, 'Show User by Handle', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3508, 'Show User by ID', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3510, 'Warning', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3511, 'There are some warnings', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3513, '[Errors]: User is not allowed to register for this tournament', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3514, '[Warnings]: User is normally not allowed to register for this tournament', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3515, 'Ignore warnings', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3518, 'Current Flags', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3519, 'New Flags', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3521, 'Current User Rating', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3523, 'Convert Rating', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3524, 'Tournament Rating', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3536, 'Tournament Registration Editor for [%s]', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3537, 'Admin user', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(6057, 'Invalid rating [%s] specified for %s.#tourney', 'SRC', 'Y', 'USED', '2014-04-03 23:26:03'),
(3544, 'Removed registration for tournament #%s', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3545, 'Your registration for %s has been deleted by tournament director %s.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3547, 'Approved registration for tournament #%s', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3548, 'Your application for %s has been approved by tournament director %s.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3550, 'Invitation for tournament #%s', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3551, 'Tournament director %2$s has invited you for %1$s. This invitation must be verified by you by either approving or rejecting it.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3552, 'Edit tournament registration', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3554, 'Verification of registration for tournament #%s', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3555, 'Your application for %s has been verified by tournament director %s and changed to an invitation, which needs your verification.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3557, 'Your registration for %s has been verified by tournament director %s and changed to an invitation, which needs your verification.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3562, 'Tournament Properties saved!', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3563, 'Tournament Registration-Properties Editor', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3566, '(Minimum)', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3567, '(Maximum)', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3569, 'Minimum finished games', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3570, '(rated and unrated)', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3571, '(rated only)', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3572, 'Save Tournament Properties', 'SRC', 'Done', 'USED', '2012-09-18 17:43:35'),
(3573, 'Preview Notes', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3574, 'Tournament Properties notes', 'SRC', 'Done', 'USED', '2012-09-18 17:43:35'),
(5849, 'This is best done after the tournament round is finished and the pool-winners have been finally set,\nbecause all pool-winners will be copied and there are no checks for double result entries!', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(5848, 'Infos & Warnings#tourney', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(3578, 'Maximum participants must be greater than minimum participants', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3579, 'Expecting positive number of finished games.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3580, 'Expecting positive number of rated finished games.', 'SRC', 'Done', 'USED', '2012-07-10 22:38:37'),
(3586, 'To disable restrictions, you may use 0-value in (some) fields.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3588, 'There are users without a rating, which conflicts with a \"rated\" tournament.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3589, 'Tournament Rules saved!', 'SRC', 'Done', 'USED', '2012-09-18 17:43:35'),
(3590, 'Tournament Rules Editor', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3591, 'Save Tournament Rules', 'SRC', 'Done', 'USED', '2012-09-18 17:43:35'),
(3603, 'Tournament Status saved!', 'SRC', 'Done', 'USED', '2012-09-18 17:43:35'),
(3604, 'Tournament Status Editor', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3607, 'Confirm only, if you want to change the status regardless of the occured errors!', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3608, 'Are you still sure you want to change the status?', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3609, 'Be aware, that only the status changes defined below are possible.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3610, 'The status change may not be reversible.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3612, 'Confirm status change', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3613, 'Tournament Status notes', 'SRC', 'Done', 'USED', '2012-09-18 17:43:35'),
(3614, 'Allowed status changes for Tournament Directors with preconditions:', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3615, 'Tournament setup must be complete.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3616, 'Tournament registration conditions must be fulfilled.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3617, 'All tournament-games must be ready to start after setup.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3618, 'All tournament-games must have been finished or not have started yet.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3619, 'Reserved Status changes for Tournament Admins:', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3620, 'Tournament Admin can do any status changes and undelete tournaments.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3621, 'Tournament setup phase (adding infos, properties and rules)#tstat_new', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3622, 'Tournament registration phase (users can register or be invited)#tstat_reg', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3623, 'Tournament pairing phase (preparing and setting up tournament games)#tstat_pair', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3624, 'Tournament play phase (tournament participants are playing)#tstat_play', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3625, 'Tournament finalizing phase (results are announced, tournament is finished)#tstat_closed', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3626, 'Tournament admin phase managed only by tournament admin (hidden, archived tournaments)#tstat_admin', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3627, 'Tournament delete phase managed only by tournament admin (tournament ready for deletion)#tstat_del', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3628, 'Tournament Editor', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3629, 'Owner#tourney', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3630, 'Wizard type#tourney', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3631, 'Rounds#tourney', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3632, '(change with care, only by admin)', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3633, 'End time', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3634, 'Save Tournament', 'SRC', 'Done', 'USED', '2012-09-18 17:43:35'),
(3635, 'Preview Title', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3636, 'Preview Description', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3639, 'Unknown tournament scope', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3640, 'Start time for tournament', 'SRC', 'Done', 'USED', '2012-07-31 15:09:03'),
(3641, 'Tournament title missing or too short', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3642, 'Tournament title must not contain reserved Dragon/DGS words [%s].', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3643, 'Tournament description missing or too short', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3649, 'Tournament Game Admin', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3651, 'Black player', 'SRC', 'Done', 'USED', '2012-06-11 23:00:06'),
(3652, 'White player', 'SRC', 'Done', 'USED', '2012-06-11 23:00:06'),
(5847, 'Tournament Participant', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(5846, 'Result uid#tourney', 'SRC', 'Done', 'USED', '2014-03-27 15:21:17'),
(5845, 'Note is too long (max. %s chars allowed).#tourney', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(3658, 'End Tournament Game', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3659, 'This operation is irreversible, so please be careful!', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3660, 'Set game result', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3661, 'View game result', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3662, 'wins by#TG_admin', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3668, 'Add time for Tournament Game', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3669, 'Add time for', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3670, 'Choose how much additional time you wish to give the selected player', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3671, 'added to maintime.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3673, 'Edit prohibited.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3674, '1 round#tourney', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3681, 'You are a tournament admin.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3682, 'You are the owner of this tournament.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3683, 'You are a director of this tournament.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3685, 'Dragon#T_scope', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3686, 'Public#T_scope', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3687, 'Private#T_scope', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3688, 'Ladder#T_type', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3689, 'Round Robin#T_type', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3690, 'DGS Ladder', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3691, 'Public Ladder', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3692, 'Private Ladder', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3693, 'DGS Round-Robin', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3694, 'Admin#T_status', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3695, 'New#T_status', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3696, 'Register#T_status', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3697, 'Pair#T_status', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3698, 'Play#T_status', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3699, 'Finished#T_status', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3700, 'Delete#T_status', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3701, 'Admin-Lock#T_flag', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3702, 'Register-Lock#T_flag', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3703, 'Director-Work-Lock#T_flag', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3704, 'Cron-Lock#T_flag', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3705, 'Close-Lock#T_flag', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3711, 'Tournament is in Maintenance-mode (%s)#T_lock', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3712, '%s is set prohibiting users to register or join tournament.#T_lock', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3713, 'Edit of ladder needs %s.#T_lock', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3714, 'Edit of ladder is prohibited by set %s. Please wait a moment.#T_lock', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3715, '%s is set prohibiting users to join tournament or start challenges.#T_lock', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3716, 'Game End#TD_flag', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3717, 'Add Time#TD_flag', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3718, 'Init#TG_status', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3719, 'Play#TG_status', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3720, 'Score#TG_status', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3721, 'Wait#TG_status', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3722, 'Done#TG_status', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3724, 'Rank#T_ladder', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3736, 'Pool %s of %s', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3738, 'Created %s games for pool #%s', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3739, 'Maximum of allowed tournament rounds of %s has been reached.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3740, 'The current tournament round can not be removed.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3741, 'Only tournament rounds on status [%s] can be removed.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3743, 'You can only remove the last tournament round #%s.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(5728, 'Komi: %1.1f#ratchg', 'SRC', 'Done', 'USED', '2013-10-06 02:14:39'),
(5729, 'depends on board size', 'SRC', 'Done', 'USED', '2013-10-06 02:14:39'),
(3745, 'Selected tournament round must be an existing round in range %s.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3746, 'Current tournament round is already set to selected round.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3747, 'Current tournament round %s must be finished before switching to next.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(5844, 'Comment is too long (max. %s chars allowed).#tourney', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(3749, 'Identified %s pools to finish by setting ranks for pools: %s', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(5843, 'Rank must be a positive number#tresult', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(3752, 'Tournament result changed by %s.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3753, 'For %s user [ %s ] has kept the rank #%s for [%s], so the user is crowned as \"King of the Hill\".', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3754, 'This notification has been sent to the tournament-owner and to all tournament-directors.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3755, 'King of the Hill crowned for tournament #%s', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3756, 'Found registered tournament participants not added to ladder', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3757, 'users [%s]#T_ladder', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3760, 'Removal from tournament #%s', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(5720, 'DIFF#ratchg', 'SRC', 'Done', 'USED', '2013-10-06 02:14:39'),
(5759, 'Language#header', 'SRC', 'Done', 'USED', '2013-12-07 07:38:20'),
(3784, 'anyone above your own ladder position', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(5696, 'Ladder summary (%s players): %s running games, %s finished games waiting to be processed#T_ladder', 'SRC', 'Done', 'USED', '2013-08-16 22:45:44'),
(3798, 'You may only have one running game per opponent.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3804, 'on Jigo', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(6274, 'Penalty timeout and limit must both be disabled or both be set.#tourney', 'SRC', 'Y', 'USED', '2015-04-12 13:34:31'),
(6275, 'Penalty timeout must not be larger than penalty limit.#tourney', 'SRC', 'Y', 'USED', '2015-04-12 13:34:31'),
(3807, '1 month', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3808, '%s months', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3811, 'The ladder is configured with the following properties', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3825, 'Limits', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(5842, 'Result value must be numeric#tresult', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(5841, 'Start time should be before end time for tournament result.', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(5840, 'End time for tournament result', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(5839, 'Start time for tournament result', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(5838, 'Invalid value for result participant id.#tourney', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(5837, 'Invalid value for result uid.#tourney', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(5836, 'Used unknown result type [%s]#tourney', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(3838, 'New#TN_status', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3839, 'Show#TN_status', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3840, 'Archive#TN_status', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3841, 'Delete#TN_status', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3842, 'Hidden#TN_flag', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3843, 'Private#TN_flag', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3844, '[%s] by %s#tnews_publish', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3845, 'Registration status change [%s] to [%s] is not allowed for tournament status [%s].', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(5697, 'Ladder rank#tourney', 'SRC', 'Done', 'USED', '2013-09-16 03:30:58'),
(5698, 'My Tournament Game Role', 'SRC', 'Done', 'USED', '2013-09-16 03:30:58'),
(3849, 'You are not registered for this tournament.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3850, 'Your registration needs to be verified by a tournament director.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3851, 'You are registered for this tournament.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3852, 'The invitation for this tournament needs your verification.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3853, 'Invited#TP_flag', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3854, 'ACK-Invite#TP_flag', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3855, 'ACK-Apply#TP_flag', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3856, 'REG-Violate#TP_flag', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3858, 'Round-Robin#trd_slicemode', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3859, 'Filling up pools#trd_slicemode', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3860, 'Manual#trd_slicemode', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3861, 'Fatal error: Please contact an admin to fix multiple user-entries [%s] for tournament #%d, round %d.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3862, 'Expecting at least one pool.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3863, 'Expected %s pools, but currently there are %s pools.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3865, 'There are %s registered users, that are not appearing in the pools.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3866, 'There are %s unassigned users. Please assign them to a pool!', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3870, 'There are %s pools violating the valid pool-size range %s.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3872, 'There are %s empty pools. Please fill or remove them!', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(5835, 'Show pool info#tourney', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(3891, 'Users without pool assignment', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3892, 'Pool %s', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3893, 'Pool %s (empty)', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3895, 'Count#ranksum_header', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3896, 'NR-Count#ranksum_header', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(5727, 'Handicap: %d#ratchg', 'SRC', 'Done', 'USED', '2013-10-06 02:14:39'),
(3898, 'Rank \'%s\' = rank not set yet for pool-users', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3903, 'This is a private tournament, so you must be invited to participate.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(5757, 'Messages#ged', 'SRC', 'Done', 'USED', '2013-12-07 07:38:20'),
(5726, 'range -200..200#ratchg', 'SRC', 'Done', 'USED', '2013-10-06 02:14:39'),
(3906, 'User has no valid Dragon rating, which is needed for tournament rating mode.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3908, 'User has no Dragon rating, which is required for this rated tournament.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3909, 'User rating [%s] does not match the required rating range %s.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3910, 'User must have at least %s finished games, but has only %s.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3911, 'User must have at least %s rated finished games, but has only %s.', 'SRC', 'Done', 'USED', '2012-07-10 22:38:37'),
(3916, 'Copy Custom#TP_usemode', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3917, 'Copy Fix#TP_usemode', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3918, 'Current Fix#TP_usemode', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3921, 'Current Dragon user rating will be used during whole tournament.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3922, 'Tournament Round min. pool size must be in range %s.', 'SRC', 'Done', 'USED', '2012-09-18 17:43:35'),
(3923, 'Tournament Round max. pool size must be in range %s.', 'SRC', 'Done', 'USED', '2012-09-18 17:43:35'),
(3924, 'Tournament Round min. pool size must be smaller than max. pool size.', 'SRC', 'Done', 'USED', '2012-09-18 17:43:35'),
(3925, 'Tournament Round max. pool count must be in range %s.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3926, 'Tournament Round Status', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3929, 'Maximum Pool count', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(5758, 'Move %s [%s] by %s#ged', 'SRC', 'Done', 'USED', '2013-12-07 07:38:20'),
(3932, 'Configuration of the current tournament round #%s', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3933, 'Init#trd_status', 'SRC', 'Done', 'USED', '2012-09-18 17:43:35'),
(3934, 'Pool#trd_status', 'SRC', 'Done', 'USED', '2012-09-18 17:43:35'),
(3935, 'Pair#trd_status', 'SRC', 'Done', 'USED', '2012-09-18 17:43:35'),
(3936, 'Play#trd_status', 'SRC', 'Done', 'USED', '2012-09-18 17:43:35'),
(3937, 'Done#trd_status', 'SRC', 'Done', 'USED', '2012-09-18 17:43:35'),
(3938, 'Change to Tournament Round Status [%s] only allowed by Tournament Admin.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(5722, 'Confidence interval', 'SRC', 'Done', 'USED', '2013-10-06 02:14:39'),
(5723, 'ELO Rating#ratchg', 'SRC', 'Done', 'USED', '2013-10-06 02:14:39'),
(3941, 'Edit is forbidden for tournament round on status [%s], only allowed for [%s] !', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(5713, 'your position in the ladder ordered by user rating', 'SRC', 'Y', 'USED', '2013-09-18 01:34:48');
INSERT INTO `TranslationTexts` (`ID`, `Text`, `Type`, `Translatable`, `Status`, `Updated`) VALUES
(3951, 'Tournament max. participant limit (%s users) has been exceeded by %s registrations.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3952, 'Error for user %s', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3953, 'Missing at least one tournament director', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3954, 'Tournament has %s unfinished tournament games, that must be ended first.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3955, 'Expecting current Tournament Status [%s] for change to status [%s]', 'SRC', 'Done', 'USED', '2012-09-18 17:43:35'),
(3956, 'Edit is forbidden for tournament on status [%s], only allowed for [%s] !', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3957, 'View of tournament is forbidden on status [%s], only allowed for [%s] !', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3958, 'Expecting current tournament round status [%s] for status-change', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3959, 'Expected %s tournament-games (TG), but found %s games: Start remaining games first!', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3960, 'Expected %s games (G), but found %s games: Contact tournament-admin for fix!', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3961, '( changed by %s )#tourney', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(5712, '%s positions below your position in the ladder ordered by user rating', 'SRC', 'Y', 'USED', '2013-09-18 01:34:48'),
(5711, '%s positions above your position in the ladder ordered by user rating', 'SRC', 'Y', 'USED', '2013-09-18 01:34:48'),
(3969, 'Unknown user-id', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3970, 'Missing tournament user registration for user [%s].', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3971, 'Adding unregistered user to ladder is not allowed.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3980, 'Prepare Ladder', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3981, 'There are %s registered participants from which %s already joined the ladder.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3982, 'Seed ladder with all registered tournament participants', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3983, 'Order by', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3984, 'Seed Ladder', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3985, 'Delete Ladder', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3987, 'Please confirm deletion of ladder', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3988, 'Confirm delete', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3989, 'Admin Ladder participants', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3991, 'Edit participant', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3992, 'Add user [%s] to ladder', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3993, 'Add registered tournament participant to ladder (at bottom).', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3994, 'NOTE: Adding user only allowed for registered tournament participants.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(3995, 'Remove user [%s] from ladder', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4002, 'User will be crowned as king. This is stored as tournament result.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4003, 'User will NOT be notified of this. All tournament directors and owner will be notified.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4005, 'Tournament Ladder Admin', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4006, 'Edit Ladder', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4007, 'User will be notified about this.#tourney', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4008, 'User will NOT be notified about this.#tourney', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4009, 'Challenger is not participating on ladder', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4010, 'Defender is not participating on ladder', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4017, '(also see notes below)', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4019, 'Challenge Ladder User', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4023, 'After confirmation a tournament game will be started immediately.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4024, 'Tournament Ladder Properties saved!', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4028, 'clear to deactivate', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4036, 'Game End handling', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(6273, 'Penalty limit#tourney', 'SRC', 'Y', 'USED', '2015-04-12 13:34:31'),
(4046, 'Use value of \"0\" to disable features!', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4047, 'Save Ladder Properties', 'SRC', 'Done', 'USED', '2012-09-18 17:43:35'),
(4048, 'Tournament Ladder Properties Editor', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4049, 'Preview Properties', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(5834, 'Show ladder info#tourney', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(4073, 'Ladder user info', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4074, 'Started', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(5833, 'No pool entry found for round #%s and user [%s].#tourney', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(5831, 'User [%s] is not participating in this tournament.', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(5832, 'No ladder entry found for user [%s].#tourney', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(4083, 'Player Rank Details', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4090, 'Rank Changed#T_ladder', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4092, 'Tournament-Ladder #%s', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4103, 'Admin Ladder', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4108, 'Edit prohibited#T_ladder', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4109, 'This is you#T_ladder', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4120, 'Tournament Directors #%d', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4121, 'Tournament Directors of [%s]', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4123, '[Tournament #%d]', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4133, 'Tournament News #%d', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4134, 'Tournament News Archive of [%s]', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4156, 'Tournament Participants #%d', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4157, 'Tournament Participants of [%s]', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4180, 'My tournaments as participant', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4181, 'My tournaments as tournament director', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4183, 'Tournament Manager', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4184, 'Your Roles#tourney', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4185, 'Edit locks#tourney', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4188, 'Change Round Status#tourney', 'SRC', 'Done', 'USED', '2012-09-18 17:43:35'),
(4201, 'Edit Ladder Properties', 'SRC', 'Done', 'USED', '2012-09-18 17:43:35'),
(4206, 'Show all running tournament games', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4207, 'also see game info pages', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4209, 'Edit rounds', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4210, 'Setup tournament rounds for pooling and pairing', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4211, 'Define pools', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4212, 'Create pools', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4213, 'Edit pools', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4214, 'View Pools', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4218, 'Edit game pairing', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4222, 'Enter Game ID', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4227, 'Invitation accepted!', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4228, 'Invitation declined and transformed into application!', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4229, '[Errors]: You are not allowed to register for this tournament', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4230, '[Warnings]: You are normally not allowed to register anew for this tournament', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4231, 'Accept invitation#tourney', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4232, 'Edit invitation#tourney', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4233, 'Tournament Registration for [%s]', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4237, 'Questions and support requests regarding this tournament can be directed to the tournament directors.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4247, 'Pool parameters must be defined first before you can manage pools!', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4248, 'There are no pools existing for deletion', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4253, 'Prepare Pools', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4254, 'There are %s stored pools with %s users for current tournament round #%s', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4255, 'Delete all existing pools', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4256, 'Delete Pools', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4257, 'Please confirm deletion of all pools', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4258, 'Confirm deletion', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4259, 'Seeding pools is only allowed with empty pools!', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4260, 'Create and seed pools with all %s registered users for tournament round #%s', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4262, 'Seed Pools', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4263, 'This may take a while, so please be patient!', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4264, 'There are %s registered users from which %s users are not appearing in the pools.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4265, 'Add missing registered users to default pool (with unassigned users).', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4266, 'Assign missing users to Default Pool', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4267, 'Tournament Pools Manager', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4268, 'Last Pool [%s] must be empty to allow deletion!', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4269, 'Pool parameters can only be directly changed if all pools have been removed!', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4272, 'Tournament Round saved!', 'SRC', 'Done', 'USED', '2012-09-18 17:43:35'),
(4274, 'Add Pool (possible if no violation)', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4275, 'Delete last Pool (possible if pool empty and no violation)', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4276, 'Save Pools', 'SRC', 'Done', 'USED', '2012-09-18 17:43:35'),
(4278, 'Suggest Pool Parameters', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4279, 'Tournament Pools Setup', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4280, 'Pool Suggestions', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4283, '%s = maximal user capacity for chosen pool-size and count', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4285, '%s = number of missing users to only have full pools', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4287, '%s = best equally shared round-robin pool distribution for all %s registered users', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4289, 'P x S : P = number of pools, S = pool-size; P1 + P2 = chosen pool-count', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4290, '%s = number of games for best pool distribution', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4292, 'Recommended distributions are the suggestions with a minimal user-diff\nand a minimum of pools, that are smaller than the chosen pool-size.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4293, 'You are free to use other combinations if they are valid.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4295, 'Eventually the pool-size is adjusted in order to find a good pool distribution.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(5830, 'All tournament results', 'SRC', 'Done', 'USED', '2014-03-27 15:21:17'),
(4298, 'Adding and deleting pool are mutual exclusive actions: Choose only one.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4305, 'Pool count [%s] is too large, the min. pool size [%s] would be violated on slicing.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4307, 'Pool count [%s] is too small, the max. pool size [%s] would be violated.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4309, 'Either the pool size [%s] or pool count [%s] is too small to cover all %s registered users.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(5828, 'Delete tournament result', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(5829, 'Tournament Results Editor for [%s]', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(4313, 'Create Tournament Games', 'SRC', 'Done', 'USED', '2012-09-18 17:43:35'),
(4315, 'Creating all games may take a while. Please be patient!', 'SRC', 'Done', 'USED', '2012-06-11 22:37:30'),
(4316, 'Once started, the creation process must not be stopped. Progress of the creation will be shown.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4317, 'The games for all pairings will start immediately and can neither be changed nor removed.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4318, 'Tournament Pairing Editor', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4319, 'Pool Summary', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(5827, 'Save tournament result', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(5825, 'Confirm deletion of result#tourney', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(5826, 'Add tournament result', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(4323, 'Try again to start the remaining games or contact a tournament-admin for support.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4324, 'Pool parameters must be defined first before you can edit pools assigning users!', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4325, 'Pool selection #%s with value [%s] is invalid, must be in range %s', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4326, 'Pool [%s] for assigning is invalid, must be in range %s', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4327, 'Selection', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4329, 'Show Pools', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4330, 'Check', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4331, 'Check Pools', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4332, 'Check pool integrity and show summary', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4333, 'Edit Actions', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4334, 'Please note, that selected marks are not saved!', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(5824, 'Please confirm deletion of the tournament result!', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(4337, 'Reassign Pool', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4339, 'Tournament Pools Editor', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4340, 'Selected Pools', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4341, 'Pool [%s] to assign for unassigned user is invalid, must be in range %s', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4342, 'Pool [%s] to re-assign for pool-user is invalid, must be in range %s', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4345, 'Assign to Pool', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4346, 'You have chosen the following pool parameters on the %s page:', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4347, 'Pool Count [%s], Pool-Size range %s, Best chosen Pool-Size [%s]', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4348, 'Unknown user-id [%s]', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4349, 'User [%s] is not participating in tournament [%s] round [%s]', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4357, 'Fill ranks for finished pools.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4361, 'Execute', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4367, 'or', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4370, 'Tournament Pool Ranks Editor', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4371, 'Action Results', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4378, 'Please confirm adding of a new tournament round', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4379, 'Confirm add', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4381, 'Please confirm deletion of selected tournament round #%s', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4384, 'Please confirm setting the current tournament round from #%s to #%s', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(5710, '%s of the positions above your own position#T_ladder', 'SRC', 'Y', 'USED', '2013-09-18 01:34:48'),
(4387, 'Tournament Round Info', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4389, 'Tournament Rounds Editor', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4390, 'Tournament Round Properties Editor', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4391, 'Save Tournament Round', 'SRC', 'Done', 'USED', '2012-09-18 17:43:35'),
(4392, 'Tournament Round Status saved!', 'SRC', 'Done', 'USED', '2012-09-18 17:43:35'),
(4393, 'Tournament Round Status Editor', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4395, 'Tournament Round Status notes', 'SRC', 'Done', 'USED', '2012-09-18 17:43:35'),
(4396, 'Tournament round properties setup must be complete.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4397, 'All registered users must be assigned to pools for current tournament round.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4398, 'All tournament-games for current tournament round must be ready to start.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4399, 'All tournament-games for current tournament round must have been finished.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4400, 'Tournament Admin can do any status changes.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4406, 'Pools of Tournament #%s for round %s', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4410, 'Tournament Pool notes', 'SRC', 'Done', 'USED', '2012-09-18 17:43:35'),
(4412, 'Pools are ranked by Tie-breakers: %s', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4421, '[%s] in format \"wins : losses\" = number of wins and losses for user', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(5823, 'Note (only for directors)#tourney', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(4423, '[%s] = Tie-Breaker SODOS = Sum of Defeated Opponents Score', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4429, 'Tournament News View #%d', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4430, 'Tournament News of [%s]', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4432, 'Your current ladder rank is #%s out of %s.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4433, 'Tournament #%s', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4434, 'Tournament #%s - General Information', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4435, 'This page contains all necessary information and links to participate in the tournament.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4436, 'There are different sections:#tourney', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4437, 'Tournament Description', 'SRC', 'Done', 'USED', '2012-09-18 17:43:35'),
(4438, 'Tournament Standings', 'SRC', 'Done', 'USED', '2012-09-18 17:43:35'),
(5223, 'Show tournament notes', 'SRC', 'Done', 'USED', '2012-10-13 21:19:06'),
(4441, 'Tournament Games', 'SRC', 'Done', 'USED', '2012-09-18 17:43:35'),
(6056, 'empty = forbid user to change start-round#tourney', 'SRC', 'Y', 'USED', '2014-04-03 23:26:03'),
(4443, 'When you have a question about the tournament, please send a message to one of the tournament directors or ask in the <home forum/index.php>Tournaments forum</home>.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4444, 'Refresh tournament info', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4445, 'Tournament News#T_view', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4448, 'Tournament Locks', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4449, 'Tournament Round', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(5222, 'Hide tournament notes', 'SRC', 'Done', 'USED', '2012-10-13 21:19:06'),
(5221, 'Found users added to ladder without registration (contact tournament-admin to fix inconsistency)', 'SRC', 'Done', 'USED', '2012-10-13 21:19:06'),
(5708, 'My registration for tournament %s', 'SRC', 'Done', 'USED', '2013-09-16 03:30:58'),
(5220, 'Show all messages', 'SRC', 'Done', 'USED', '2012-10-13 21:19:06'),
(5219, '%s free slot(s) of %s players#mpg', 'SRC', 'Done', 'USED', '2012-10-13 21:19:06'),
(5218, 'Multi-Player-Game', 'SRC', 'Done', 'USED', '2012-10-13 21:19:06'),
(5217, 'Unknown tournament [%s]', 'SRC', 'Done', 'USED', '2012-10-13 21:19:06'),
(5216, 'Sorry, you are not allowed to post in this thread.', 'SRC', 'Done', 'USED', '2012-10-13 21:19:06'),
(5215, 'Read-only thread (only admin executives may reply)', 'SRC', 'Done', 'USED', '2012-10-13 21:19:06'),
(5214, 'Set Neutral Vote', 'SRC', 'Done', 'USED', '2012-10-13 21:19:06'),
(5213, 'Mark for setting neutral vote', 'SRC', 'Done', 'USED', '2012-10-13 21:19:06'),
(5212, 'Dragon Go Server', 'SRC', 'Done', 'USED', '2012-09-20 19:50:49'),
(5211, 'Depending of your GreaseMonkey version, either Click or Right-Click on a desired name-link to install it:', 'SRC', 'Done', 'USED', '2012-09-20 19:50:49'),
(5210, 'GreaseMonkey Scripts', 'SRC', 'Done', 'USED', '2012-09-20 19:50:49'),
(5209, 'Dragon Go Goodies', 'SRC', 'Done', 'USED', '2012-09-20 19:50:49'),
(5208, 'Some useful GreaseMonkey scripts for DGS', 'SRC', 'Done', 'USED', '2012-09-20 19:50:49'),
(5207, 'Goodies', 'SRC', 'Done', 'USED', '2012-09-20 19:50:49'),
(5206, 'Tournament Log notes', 'SRC', 'Done', 'USED', '2012-09-19 21:14:31'),
(5205, 'Tournament Log', 'SRC', 'Done', 'USED', '2012-09-19 21:14:31'),
(5204, 'Action User#header', 'SRC', 'Done', 'USED', '2012-09-19 21:14:31'),
(4482, 'Tournament needs: min. %s and max. %s participants', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4483, 'Tournament needs: min. %s participants', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4484, 'Tournament needs: max. %s participants', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4485, 'User rating must be between [%s - %s].', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4486, 'User must have at least %s finished games.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4487, 'User must have at least %s rated finished games.', 'SRC', 'Done', 'USED', '2012-07-10 22:38:37'),
(4488, 'To register for this tournament the following criteria must match', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4489, 'Tournament created!', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4490, 'Tournament Wizard', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4491, 'Choose type of tournament', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4492, 'Create Tournament', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4493, 'Time zone', 'SRC', 'Done', 'USED', '2012-06-14 14:24:06'),
(4494, 'User local time', 'SRC', 'Done', 'USED', '2012-06-14 14:25:51'),
(5203, 'Action Date#header', 'SRC', 'Done', 'USED', '2012-09-19 21:14:31'),
(4496, 'Last quick access', 'SRC', 'Done', 'USED', '2012-07-30 15:05:00'),
(4497, 'disabled#rwt', 'SRC', 'Done', 'USED', '2012-07-30 15:07:15'),
(4498, '%s days#rwt', 'SRC', 'Done', 'USED', '2012-07-30 15:34:38'),
(4499, 'Games lost by timeout', 'SRC', 'Done', 'USED', '2012-06-14 13:59:21'),
(4500, 'MP-games', 'SRC', 'Done', 'USED', '2012-06-15 22:56:53'),
(4501, '%s (Running), %s (Setup)#mpg', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4502, 'User picture (hidden)', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4503, 'User picture', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4505, 'Bulletin View #%d', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(5202, 'Message#header', 'SRC', 'Done', 'USED', '2012-09-19 21:14:31'),
(5201, 'Action#header', 'SRC', 'Done', 'USED', '2012-09-19 21:14:31'),
(4508, 'Source#shape', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(5200, 'Object#header', 'SRC', 'Done', 'USED', '2012-09-19 21:14:31'),
(4510, 'Voting on survey only possible on %s status.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4511, 'Vote saved!', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4512, 'Survey View #%d', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4513, 'Edit survey', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4514, 'You must spend at least %s point(s) in total, but you only spent %s point(s).', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4515, 'You must not spend more than %s point(s) in total, but you spent %s point(s).', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4516, 'You must at least select %s checkbox(es), but you only selected %s.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4517, 'You must not select more than %s checkbox(es), but you selected %s.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4518, 'Conventional#wr_htype', 'SRC', 'Done', 'USED', '2012-06-11 11:26:41'),
(4519, 'Proper#wr_htype', 'SRC', 'Done', 'USED', '2012-06-11 11:26:41'),
(4520, 'Nigiri#wr_htype', 'SRC', 'Done', 'USED', '2012-06-11 11:26:41'),
(4521, 'Double game#wr_htype', 'SRC', 'Done', 'USED', '2012-06-11 11:26:41'),
(4522, 'Color Black#wr_htype', 'SRC', 'Done', 'USED', '2012-06-11 11:26:41'),
(4523, 'Color White#wr_htype', 'SRC', 'Done', 'USED', '2012-06-11 11:26:41'),
(4524, 'Manual#wr_htype', 'SRC', 'Done', 'USED', '2012-06-11 11:26:41'),
(4525, 'Open Auction#wr_htype', 'SRC', 'Done', 'USED', '2012-06-11 11:26:41'),
(4526, 'Secret Auction#wr_htype', 'SRC', 'Done', 'USED', '2012-06-11 11:26:41'),
(4527, 'You cut, I choose#wr_htype', 'SRC', 'Done', 'USED', '2012-06-11 11:26:41'),
(4528, 'I cut, you choose#wr_htype', 'SRC', 'Done', 'USED', '2012-06-11 11:26:41'),
(4529, 'Double', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4530, 'Manual', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4531, 'Fix Color', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4532, 'Fair Komi', 'SRC', 'Done', 'USED', '2012-06-11 22:01:32'),
(4533, 'UserType#headerwr', 'SRC', 'Done', 'USED', '2012-06-10 09:12:44'),
(4534, 'Settings#headerwr', 'SRC', 'Done', 'USED', '2012-06-11 11:26:41'),
(4535, 'Restrictions#header', 'SRC', 'Done', 'USED', '2012-06-11 11:26:41'),
(4536, '%s H%s K%s#wrsettings', 'SRC', 'Done', 'USED', '2012-06-11 11:26:41'),
(4537, '%s Even K%s#wrsettings', 'SRC', 'Done', 'USED', '2012-06-11 11:26:41'),
(4538, 'Negotiate#fairkomi_wrsettings', 'SRC', 'Done', 'USED', '2012-06-11 11:26:41'),
(4539, '(Free Handicap)#handicap_tablewr', 'SRC', 'Done', 'USED', '2012-06-10 09:12:44'),
(5706, 'Finished tournament games of user [%s]', 'SRC', 'Done', 'USED', '2013-09-16 03:30:58'),
(5707, 'Your ladder-rank ordered by rating would be %s.', 'SRC', 'Y', 'USED', '2013-09-16 03:30:58'),
(5705, 'My finished tournament games', 'SRC', 'Done', 'USED', '2013-09-16 03:30:58'),
(5704, 'Running tournament games of user [%s]', 'SRC', 'Done', 'USED', '2013-09-16 03:30:58'),
(5702, 'Running and finished tournament games', 'SRC', 'Done', 'USED', '2013-09-16 03:30:58'),
(5703, 'My running tournament games', 'SRC', 'Done', 'USED', '2013-09-16 03:30:58'),
(4545, 'Contact-option \'Hide waiting room games\', marked by \"%s\"', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4546, 'Column \'Settings\' shows the probable game-color, handicap and komi.', 'SRC', 'Done', 'USED', '2012-07-10 22:08:51'),
(4547, 'indicator of free handicap stone placement', 'SRC', 'Done', 'USED', '2012-07-10 22:10:36'),
(4548, 'A waiting game is <b>suitable</b> when a player matches the requested game restrictions on:', 'SRC', 'Done', 'USED', '2012-07-10 21:54:30'),
(4549, 'Waiting room notes', 'SRC', 'Done', 'USED', '2012-07-10 21:33:21'),
(4552, 'Already invited to or joined this multi-player-game!', 'SRC', 'Done', 'USED', '2012-06-13 22:51:02'),
(4553, 'Manual#color', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4554, 'Nigiri#color', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4555, 'Nigiri (You randomly play Black or White)#color', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4556, 'B+W#color', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4557, 'You play Black and White#color', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4558, 'B#color', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4559, 'I play Black#color', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4560, 'W#color', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4561, 'You play White#color', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4562, 'I play White#color', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4563, 'You play Black#color', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4564, 'You probably play Black#color', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4565, 'You probably play White#color', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4566, 'IGF', 'LINKS', 'Done', 'USED', '2012-08-26 18:17:33'),
(4567, 'World news about game of Go', 'LINKS', 'Done', 'USED', '2012-06-11 20:55:27'),
(4568, 'Go Sensations', 'LINKS', 'Done', 'USED', '2012-08-26 18:17:33'),
(4569, 'Go News and Sensations from other Go servers', 'LINKS', 'Done', 'USED', '2012-08-26 18:17:33'),
(4570, 'Introduction to Go', 'LINKS', 'Done', 'USED', '2012-08-26 18:17:33'),
(4571, 'You can master Go in 10 days', 'LINKS', 'Done', 'USED', '2012-08-26 18:17:33'),
(4572, 'Slate & Shell', 'LINKS', 'Done', 'USED', '2012-08-26 18:17:33'),
(4574, 'Kiseido', 'LINKS', 'Done', 'USED', '2012-08-26 18:17:33'),
(4575, 'Yutopian', 'LINKS', 'Done', 'USED', '2012-08-26 18:17:33'),
(4576, 'Het Paard', 'LINKS', 'Done', 'USED', '2012-08-26 18:17:33'),
(4577, 'IYT - It\'s your turn', 'LINKS', 'Done', 'USED', '2012-08-26 18:17:33'),
(4578, 'OGS', 'LINKS', 'Done', 'USED', '2012-08-26 18:17:33'),
(4579, 'KGS', 'LINKS', 'Done', 'USED', '2012-08-26 18:17:33'),
(4580, 'IGS', 'LINKS', 'Done', 'USED', '2012-08-26 18:17:33'),
(4581, 'Please ensure that the uploaded picture is free from copyright issues!<br>It will be removed otherwise.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(5199, 'tid#header', 'SRC', 'Done', 'USED', '2012-09-19 21:14:31'),
(4583, 'Clock stopped on weekend', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4584, 'Fair Komi Negotiation: [%s] next#fairkomi', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4585, '%s left#vacation', 'SRC', 'Done', 'USED', '2012-06-17 23:15:11'),
(4586, 'The code this server is running (version %s)', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4587, '%s hits#fthread', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4588, 'User\'s running games', 'SRC', 'Done', 'USED', '2012-07-10 21:28:49'),
(4589, 'User\'s finished games', 'SRC', 'Done', 'USED', '2012-07-10 21:31:35'),
(4590, 'Latin', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4591, 'Invalid timezone [%s] selected#profile', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4592, 'Missing email-address for enabled email notifications.#profile', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4593, 'Corrected invalid days [%s] for reject win by timeout.#profile', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4594, 'Corrected days [%s] (too large) for reject win by timeout.#profile', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4595, 'Unknown skin [%s] selected#profile', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4596, 'Invalid stone size [%s] selected (corrected to default).#profile', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4597, 'Invalid wood color selected (corrected to default).#profile', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4598, 'Invalid value [%s] for move-numbering used (allowed range is %s..%s).#profile', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4599, 'Invalid notes cut-off size selected to separate \"small\" from \"large\" boards (corrected to default).#profile', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4600, 'Invalid notes-height for small boards selected (corrected to default).#profile', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4601, 'Invalid notes-height for large boards selected (corrected to default).#profile', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4602, 'Invalid notes-width for small boards selected (corrected to default).#profile', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4603, 'Invalid notes-width for large boards selected (corrected to default).#profile', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4604, 'The activity of the account \'%s\' grew too high and swallowed up our bandwidth and resources.\nPlease, correct this behaviour.\nThis account is blocked until %s.', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4605, 'Users online within %s weeks', 'SRC', 'Done', 'USED', '2012-08-26 18:17:33'),
(4606, 'Edit Bulletin#title', 'SRC', 'Done', 'USED', '2012-08-26 18:10:19'),
(4607, 'New Bulletin#title', 'SRC', 'Done', 'USED', '2012-08-26 18:10:19'),
(4608, 'All features', 'SRC', 'Done', 'USED', '2012-08-26 18:10:19'),
(4609, 'My Feature Votes#title', 'SRC', 'Done', 'USED', '2012-08-26 18:10:19'),
(4610, 'Parsing SGF stopped: Error [%s] at position [%s] found!', 'SRC', 'Done', 'USED', '2012-08-26 18:10:19'),
(4612, 'All tournaments', 'SRC', 'Done', 'USED', '2012-08-26 18:10:19'),
(4613, 'No Fair Komi', 'SRC', 'Done', 'USED', '2012-08-26 18:10:19'),
(5198, 'Current Vote', 'SRC', 'Done', 'USED', '2012-09-19 00:22:09'),
(4615, 'Rating range (user rating must be within the requested rating range), e.g. \"25k-2d\"#wroom', 'SRC', 'Done', 'USED', '2012-08-26 18:10:19'),
(4616, '', 'LINKS', 'Y', 'USED', '2012-08-26 18:22:51'),
(4617, 'Miscellaneous', 'SRC', 'Done', 'USED', '2012-08-26 18:25:43'),
(4618, 'I forgot my password. What can I do?', 'SRC', 'Done', 'USED', '2012-08-26 18:25:43'),
(4619, 'Introduction', 'SRC', 'Done', 'USED', '2012-08-26 18:25:43'),
(4621, 'new#forum', 'SRC', 'Done', 'USED', '2012-08-26 19:55:09'),
(4622, 'reply#forum', 'SRC', 'Done', 'USED', '2012-08-26 19:55:09'),
(4623, 'hide#forum', 'SRC', 'Done', 'USED', '2012-08-26 19:55:09'),
(4624, 'show#forum', 'SRC', 'Done', 'USED', '2012-08-26 19:55:09'),
(4625, 'Tournament Status', 'SRC', 'Done', 'USED', '2012-09-18 17:43:35'),
(4645, 'ca. %s day(s) work#feature', 'SRC', 'Done', 'USED', '2012-09-17 17:39:33'),
(4646, 'ca. %s month(s) work#feature', 'SRC', 'Done', 'USED', '2012-09-17 17:39:33'),
(4647, 'estimated effort#feature', 'SRC', 'Done', 'USED', '2012-09-17 17:39:33'),
(4648, 'unknown size#feature', 'SRC', 'Done', 'USED', '2012-09-17 17:39:33'),
(4649, 'very big, >6 months work#feature', 'SRC', 'Done', 'USED', '2012-09-17 17:39:33'),
(4650, 'EidoGo Game Player', 'SRC', 'Done', 'USED', '2012-09-17 17:39:33'),
(4652, 'no vote', 'SRC', 'Done', 'USED', '2012-09-18 14:36:09'),
(4653, 'User List', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4654, 'User List Warning', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4655, 'Ignore User List Warning', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4656, 'can be empty', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4657, 'User has reject-message contact-setting with bulletin-author', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4658, 'Target Users', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4659, 'No user found for author [%s]', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4660, 'Missing Publish time', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4661, 'Category', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4662, 'Current Status', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4663, 'Min', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4664, 'Max', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4665, 'Min-Points', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4666, 'Max-Points', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4667, 'Survey-Options', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4668, 'Target Type', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4669, 'Create new shape (with Preview), because [%s] is author of shape %s!', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4670, 'Shape saved!', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4671, 'Shape ID', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4672, 'Shape Name', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4673, 'Public Shape', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4674, 'Shape Notes', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4675, 'Save Shape', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4676, 'Edit Shape', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4677, 'View Shape', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4678, 'Show in Goban Editor', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4679, 'Shape Name is missing or too short.', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4680, 'Shape Name is too long (max. %s chars).', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4681, 'Shape Name [%s] is already used, but must be unique.', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4682, 'Missing Size', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4683, 'Invalid size [%s]', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4684, 'Snapshot for shape contains invalid characters [%s].', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4685, 'Snapshot for shape contains illegal positions at [%s].', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4686, 'Missing Snapshot', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4687, 'Play Color#shape', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4688, 'Search Terms', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4689, 'in language (%s)', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4690, 'Old First#thread_view', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4691, 'New First#thread_view', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4692, 'Tree View#thread_view', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4693, 'No.#num', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4695, 'Tournament Game Role', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4696, 'Challenger#T_ladder', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4697, 'Defender#T_ladder', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4698, 'Tournament Game Score', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4699, 'Tournament Game Flags', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4700, 'Shape-Game', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4701, 'Clock runs on weekend', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4702, 'Flags#header', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4703, 'Search term [%s] too short', 'SRC', 'Y', 'USED', '2012-09-18 17:41:56'),
(4704, 'Handicap Type#inv_diff', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4705, 'Adjust Komi', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4706, 'Rematch', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4707, 'Shape', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4708, 'Shape Information', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4709, 'Shape-Game ID', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4710, 'Shape Game', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4711, 'Author#header', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4712, 'Published#header', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4713, 'Expires#header', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4714, 'Updated#header', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4715, 'All shapes', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4716, 'My shapes', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4717, 'New Shape (Goban Editor)', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4718, 'Title#header', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4719, 'Admin manager', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4720, 'Site', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4721, 'Game & Rating', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4722, 'Feature-Vote', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4723, 'Survey', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4724, 'TGame-Role#header', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4725, 'Edit registration properties#tourney', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4726, 'Edit rules#tourney', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4727, 'Registration#tourney', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4728, 'New Shape-Game', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4729, 'change only by admin', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4730, 'Please add your reasons for locking (for other directors/admins)#tourney', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4731, 'Save locks#tourney', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4732, 'news only for tournament-directors#tnews', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4733, 'news only for tournament-users#tnews', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4734, 'Publish time for news#tnews', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5701, 'Your current ladder-rank is #%s.#T_ladder', 'SRC', 'Y', 'USED', '2013-09-16 03:30:58'),
(5700, '%s on ladder-rank #%s has challenged you.#T_ladder', 'SRC', 'Y', 'USED', '2013-09-16 03:30:58'),
(4737, 'Tournament Registration saved!', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4738, 'Registration restrictions#tourney', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4739, 'Current Registration Status#tourney', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4740, 'New Registration Status#tourney', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4741, 'Rating Use Mode#tourney', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4742, 'Customized Rating#tourney', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4743, 'Remove customized rating#tourney', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4744, 'Current Start Round#tourney', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4745, 'Customized Start Round#tourney', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4746, 'Public User Comment#tourney', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4748, 'Confirm removal of registration#tourney', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4749, 'Update registration#tourney', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4750, 'Save registration#tourney', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4751, 'Remove registration#tourney', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(6055, 'Min. Rating Start Round', 'SRC', 'Y', 'USED', '2014-04-03 23:26:03'),
(4753, 'Start Round#tourney', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4754, 'Participant [%s] removed!#tourney', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4755, 'Application of user [%s] accepted!#tourney', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4756, 'User [%s] invited!#tourney', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4757, 'Application of user [%s] changed to invitation!#tourney', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4758, 'Registration of user [%s] changed to invitation!#tourney', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4761, 'Message sent to user!', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5699, 'Missing email for registration.', 'SRC', 'Done', 'USED', '2013-09-16 03:30:58'),
(4763, 'Restrict participants#tourney', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4764, 'Restrict user rating#tourney', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4765, 'End time for registration#tourney', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4766, 'Participants', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4768, 'User-Games', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4769, 'Handicap Type', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4770, 'Adjust Handicap', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4771, 'Confirmation notes', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4772, 'Reserved status changes for Tournament Admins', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4773, 'Missing owner handle#tourney', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4774, 'Unknown user handle for owner#tourney', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4775, 'Tournament Game result set!', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4776, 'Status [%s]', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4777, 'Round %s on Status [%s]#tourney', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4778, 'Tournament Game Info', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4779, 'Unrated', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4780, 'Game Info#tourney', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4781, 'Game Flags', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5822, 'Comment (public)#tourney', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(4783, 'You are not authorised to end a tournament game.', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4784, 'You are not authorised to add time to a tournament game.', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4785, 'Resignation', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4786, 'Timeout', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4787, 'Notes on Jigo', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4788, 'allow to set a score contradicting Jigo-restrictions', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4789, 'Save Game Result', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4790, '%s of %s rounds#tourney', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(6054, 'Range %s, depends on max. participants#tourney', 'SRC', 'Y', 'USED', '2014-04-03 23:26:03'),
(4793, 'Tournament Director [%s]', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4794, 'Tournament Admin', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4795, 'Registration/Edit prohibited at the moment#tourney', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4796, 'Prohibits all writing operations on tournament for non-admins.#T_locktxt', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4797, 'Prohibits users to join tournament (by application, registration, ACK-invite).#T_locktxt', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4798, 'Provides exclusive write-access to tournament directors on certain tournament-data.#T_locktxt', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4799, 'Provides exclusive write-access to tounament-cron on certain tournament-data.#T_locktxt', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4800, 'Prohibits users to join tournament or start challenges (preparation to finish tournament).#T_locktxt', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5821, 'Rank#tresult', 'SRC', 'Done', 'USED', '2014-03-27 15:21:17'),
(5820, 'Result#tresult', 'SRC', 'Done', 'USED', '2014-03-27 15:21:17'),
(4803, 'Active#TG_stat_filter', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4804, 'None#TG_stat_filter', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4805, 'Tournament Rating#header', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4806, 'Rank Kept#header', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(6428, 'Game has secret comments', 'SRC', 'Done', 'USED', '2016-04-15 01:01:28'),
(4808, 'Rank#tourney_result', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4809, 'Current Rating#header', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4810, 'Result Rating#header', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4811, 'Result Date#header', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4812, '%s games already existed', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4813, 'There must be at least one tournament round.', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4814, 'The system has removed the user from the tournament due to the ladder-configurations defined for tournament-game endings.', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4815, 'Removal of user [%s] from tournament #%s', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4816, 'You have been removed from the tournament', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4817, 'User %s has been removed from the tournament', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4818, 'Reason#tourney', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4819, 'My running games for tournament #%s', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4820, 'My running games with user [%s] for tournament #%s', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(6271, 'User has been withdrawn from the ladder tournament.', 'SRC', 'Y', 'USED', '2015-04-12 13:34:31'),
(6272, 'Penalty timeout#tourney', 'SRC', 'Y', 'USED', '2015-04-12 13:34:31'),
(5817, 'Tournament Participant registration-ID', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(5818, 'Result Rating#tourney', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(4823, 'Current Rank#T_ladder', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4824, 'Best Rank#T_ladder', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4825, 'Start of Period (Change)#T_ladder', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4826, 'Previous Period (Change)#T_ladder', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4827, 'There must be at least one USED challenge range configuration.#T_ladder', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4828, 'Challenge Range Relative must be in percentage range of %s.#T_ladder', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(6053, 'Max. Start Round', 'SRC', 'Done', 'USED', '2014-04-03 23:26:03'),
(4830, 'Max. defenses for remaining ranks must be in range %s.#T_ladder', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4831, 'Max. defenses for groups must be in range %s (0 if not used).#T_ladder', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4832, 'Max. defenses start-rank for groups must be 0 (if not used) or >0 otherwise.#T_ladder', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4833, 'Max. defenses and start-rank for group #%s must both be 0 (if not used) or both be given.#T_ladder', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4834, 'Max. defenses for remaining ranks must be < max. defenses for group #%s.#T_ladder', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4835, 'Max. defenses for group #1 must be > max. defenses for group #2.#T_ladder', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4836, 'Max. defenses start-rank for group #1 must be < start-rank for group #2.#T_ladder', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4837, 'If one group is unused, it must be group #2.#T_ladder', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4838, 'Max. outgoing challenges must be in range %s.#T_ladder', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4839, 'User absence must be in range %s days.#T_ladder', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4840, 'Rank-period length must be in range %s months.#T_ladder', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4843, '%s positions above your own#T_ladder', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56');
INSERT INTO `TranslationTexts` (`ID`, `Text`, `Type`, `Translatable`, `Status`, `Updated`) VALUES
(5718, 'Switch colors#ratchg', 'SRC', 'Done', 'USED', '2013-10-06 02:14:39'),
(5719, 'Rating Status', 'SRC', 'Done', 'USED', '2013-10-06 02:14:39'),
(5717, 'Missing userid for white player#ratchg', 'SRC', 'Done', 'USED', '2013-10-06 02:14:39'),
(5716, 'Missing userid for black player#ratchg', 'SRC', 'Done', 'USED', '2013-10-06 02:14:39'),
(4847, 'The number of incoming challenges for any defender is restricted to#T_ladder', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4848, '%s challenges for ranks #%s..%s#T_ladder', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4849, '%s challenges for remaining ranks#T_ladder', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4850, '%s challenges for all ranks#T_ladder', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4851, 'The number of outgoing challenges is restricted to %s games.#T_ladder', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4852, 'The number of outgoing challenges is not restricted.#T_ladder', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4853, 'Before a rematch with the same user you will have to wait %s.#T_ladder', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4854, 'You may only have one running game per opponent.#T_ladder', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4855, 'On game-end the following action is performed:#T_ladder', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4856, 'if challenger wins by score or resignation#T_ladder', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5816, 'Result rid#tourney', 'SRC', 'Done', 'USED', '2014-03-27 15:21:17'),
(5815, 'Result uid#tresult', 'SRC', 'Done', 'USED', '2014-03-27 15:21:17'),
(5814, 'Result Type#tourney', 'SRC', 'Done', 'USED', '2014-03-27 15:21:17'),
(6376, 'White time remaining', 'SRC', 'Done', 'USED', '2015-09-13 23:09:58'),
(4863, 'You may only challenge users above your own position.#T_ladder', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4864, 'Defender rank #%s is out of your rank challenge range [#%s..#%s].#T_ladder', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4865, 'Defender already has max. %s incoming challenges.#T_ladder', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4866, 'Challenger already has max. %s outgoing challenges.#T_ladder', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4867, 'No change#TG_end', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4868, 'Move challenger above defender#TG_end', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4869, 'Move challenger below defender#TG_end', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4870, 'Move challenger to ladder-bottom#TG_end', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4871, 'Remove challenger from ladder#TG_end', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4872, 'Switch challenger and defender#TG_end', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4873, 'Move defender below challenger#TG_end', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4874, 'Move defender to ladder-bottom#TG_end', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4875, 'Remove defender from ladder#TG_end', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4876, 'Tournament Registration Time', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4877, 'Current User Rating#T_ladder', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4878, 'Random#T_ladder', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4879, 'Add new user in position ordered by tournament registration time (bottom of ladder).#T_ladder', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5714, 'Show rating changes', 'SRC', 'Done', 'USED', '2013-10-06 02:14:39'),
(5715, 'Can\'t find user with userid [%s]#ratchg', 'SRC', 'Done', 'USED', '2013-10-06 02:14:39'),
(4881, 'Add new user at random position in the ladder.#T_ladder', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5812, 'Tournament Result ID', 'SRC', 'Done', 'USED', '2014-03-27 15:21:17'),
(5813, 'New entry#tourney', 'SRC', 'Done', 'USED', '2014-03-27 15:21:17'),
(5810, 'Use info data#tourney', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(5811, 'Syntax: uid, \'Userid\' or \'=Userid\', e.g. \'123\', \'abc\' or \'=abc\'#tourney', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(4885, 'Max. defenses%s must be in range %s, but was [%s].#T_ladder', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5809, 'Result User#tourney', 'SRC', 'Done', 'USED', '2014-03-27 15:21:17'),
(4887, 'Edit my registration#tourney', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4888, 'Bad Pool-Number', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4889, 'Unassigned users#tpool', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4890, 'Pool-Size too small', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4891, 'Pool-Size too big', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4892, 'Pool empty', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4893, 'Pool', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4894, 'Pool Errors#header', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4895, 'OK', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4896, 'User Rating#header', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4898, '#Wins#tourney', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4899, 'SODOS#tourney', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4900, 'Rank#tpool', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4901, 'Edit#header', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4902, 'unset#tpool', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5691, 'Registration Time#TP_header', 'SRC', 'Done', 'USED', '2013-08-15 14:36:03'),
(4905, 'Registration phase ended on [%s].#tourney', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4906, 'User needs valid Dragon rating or customized rating, which is required by tournament rating mode.#tourney', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4907, 'Dragon user rating is used for tournament registration, but can be customized by user.', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4908, 'Dragon user rating is copied on tournament registration and can not be changed.', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4909, 'Min. Pool Size', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4910, 'Max. Pool Size', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4911, 'Pool Count', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5807, 'Result Round#tourney', 'SRC', 'Done', 'USED', '2014-03-27 15:21:17'),
(5808, 'Create tournament results from pool-winners', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(4913, 'Manual game with Challenger getting Black#T_ladder', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4914, 'Manual game with Challenger getting White#T_ladder', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4915, 'Manual game with stronger player getting Black#tourney', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4916, 'Manual game with stronger player getting White#tourney', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4917, 'Tournament-rules enforces Jigo, so game score must be an integer, not ending on .5', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4918, 'Tournament-rules forbid Jigo, so game score must be a float ending on .5', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4919, 'Change on Tournament Status [%s] only allowed by Tournament Admin.', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4920, 'Tournament Flags', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4921, '%s\'s Private Ladder#tourney', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4922, '%s\'s Ladder#tourney', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4923, 'Ladder deleted!', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4924, 'Ladder seeded!', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4925, 'No change!', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4926, 'User [%s] added to ladder!', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4927, 'Tournament-Director (or admin) %s has removed the user.', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4928, 'User [%s] removed from this ladder-tournament!', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4929, 'User and opponents have been notified!', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4930, 'User [%s] crowned as king for this ladder-tournament!', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4931, 'User Join Order#T_ladder', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4932, 'Reorder already joined users (otherwise append new users)#T_ladder', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4933, 'User to edit', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4934, 'Tournament Games of [%s]', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4935, 'User will be removed from ladder along with tournament user registration.', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4936, 'Crown King of the Hill#T_ladder', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4937, 'Crown user [%s] as \'King of the Hill\'#T_ladder', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4938, 'User and opponents of running games will be notified about this.#tourney', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5709, 'You can challenge the highest from the following ladder positions', 'SRC', 'Y', 'USED', '2013-09-18 01:34:48'),
(4940, 'Challenge started for tournament #%s#T_ladder', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4941, 'Tournament Game started!', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4942, 'Please confirm if you want to challenge this user!#T_ladder', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4943, 'Confirm Challenge#T_ladder', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4944, 'Challenge notes#T_ladder', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4945, 'Ladder Rank', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4946, 'Kept for %s#T_ladder', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4947, 'Challenge Range Absolute#T_ladder', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4948, 'Challenge Range Relative#T_ladder', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4949, 'Challenge Range Rating#T_ladder', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4950, 'Challenge Rematch Wait-Time#T_ladder', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4951, 'Max. Defenses#T_ladder', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4952, 'Start Rank#T_ladder', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4953, '(Group #%s)#T_ladder', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4954, 'For remaining ranks restrict max. defenses to#T_ladder', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4955, 'Max. outgoing Challenges#T_ladder', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4956, 'Challenger wins by score or resignation#T_ladder', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5806, 'Created %s tournament result entries from pool-winners of round %s!', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(4959, 'order determines ladder-position for newly joined user#T_ladder', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4960, 'User Absence handling#T_ladder', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5693, 'or on vacation#header', 'SRC', 'Done', 'USED', '2013-08-16 21:34:01'),
(6375, 'White time remaining#header', 'SRC', 'Done', 'USED', '2015-09-13 23:09:58'),
(6374, 'Black time remaining', 'SRC', 'Done', 'USED', '2015-09-13 23:09:58'),
(6373, 'Black time remaining#header', 'SRC', 'Done', 'USED', '2015-09-13 23:09:58'),
(5805, 'Tournament result saved!', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(4966, 'Expecting number for relative challenge range in percentage range %s.#T_ladder', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5804, 'Tournament result deleted!', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(4968, 'Expecting number for rematch waiting time in hours range %s.#T_ladder', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4970, 'of group #%s#T_ladder', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4971, 'Expecting number for max. defenses of group #%s in range %s.#T_ladder', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4972, 'Expecting number for max. defenses start-rank of group #%s#T_ladder', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5803, 'Tournament participant rid [%s] for specified user [%s] must match the new/stored result rid [%s].#tourney', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(4974, 'Expecting number for user absence in range %s days#T_ladder', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(6372, 'Alternate#htman', 'SRC', 'Y', 'USED', '2015-09-13 23:09:58'),
(4977, 'Challenge Range#T_ladder', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4978, 'Challenge Rematch Wait#T_ladder', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4979, 'Max. Challenges#T_ladder', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4980, 'Game End', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4981, 'User Absence#T_ladder', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5802, 'Specified uid [%s] for user [%s] must match the new/stored result uid [%s].#tourney', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(5801, 'maximum participants#tourney', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(5799, 'Loadavg#stats', 'SRC', 'Done', 'USED', '2014-03-27 15:21:17'),
(5800, 'minimum participants#tourney', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(5797, '%s hits by %s players#stats', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(5798, 'Activity#stats', 'SRC', 'Done', 'USED', '2014-03-27 15:21:17'),
(4988, 'Moved selected user from rank [%s] to [%s]!#T_ladder', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4989, 'Change#TL_header', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5796, 'Moves#stats', 'SRC', 'Done', 'USED', '2014-03-27 15:21:17'),
(4991, 'Started#header', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4992, 'Challenging locked#T_ladder', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4993, 'You have started %s of max. %s outgoing game challenges#T_ladder', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(6270, 'Withdrawal of user [%s] from tournament #%s', 'SRC', 'Y', 'USED', '2015-04-12 13:34:31'),
(4995, 'Challenging stalled#T_ladder', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4996, 'Challenging allowed#T_ladder', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4997, 'Your start rank (change) in the current period is: %s#T_ladder', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4998, 'Your rank (change) in the previous period was: %s#T_ladder', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(4999, 'Your current rank is %s.#T_ladder', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5000, 'Your best rank is %s.#T_ladder', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5001, 'Missing user selection for rank change#T_ladder', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5002, 'New rank [%s] is out of valid range %s.#T_ladder', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5003, 'No change in rank [%s] for selected user#T_ladder', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5004, 'Update rank#T_ladder', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5005, 'Challenge this user#T_ladder', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5006, 'Already in %s challenges#T_ladder', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5007, 'Rematch Wait [%s]#T_ladder', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5008, 'Rematch Wait due#T_ladder', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5009, 'Tournament director#header', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5010, 'Admin Flags#header', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5011, 'Tournament Owner', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5012, 'Request for %s:\n\nEdit subject and text to match your request but please keep the reference to the tournament.', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5013, 'View Tournament News', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5014, 'Hide news texts#tnews', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5015, 'Show news texts#tnews', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5016, 'Edit tournament news', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5017, 'Reg ID#T_header', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5018, 'Round#header', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5019, 'Registered#T_header', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5020, 'Messages#T_header', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5021, 'Registration info for %s:\n\nEdit subject and text#tourney', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5022, 'Edit user registration#tourney', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5023, 'Scope#T_header', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5024, 'Type#T_header', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5025, 'Registration Status#T_header', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5026, 'Tournament-Size#header', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5027, 'Start time#header', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5028, 'End time#header', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5029, 'Tournament Registration Restrictions', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5030, 'background colors', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5031, 'Tournament can not be joined.', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5032, 'Joining tournament only by invitation, but tournament director may deny it because of restrictions.', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5033, 'Invite-only tournament without restrictions.', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5034, 'Tournament can be joined without restrictions.', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5035, 'values', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5036, 'The darkest background color takes priority for all restrictions.#tourney', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5037, 'Bad tournament status for joining.', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5038, 'Max. number of your started games exceed tournament-limits.', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5039, 'Tournament requires a user rating.', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5040, 'User rating does not match tournaments rating range.', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5041, 'Max. number of tournament participants have been reached.', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5042, 'Tournaments register end time has been reached.', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5043, 'You have too few finished games (rated or unrated).', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5044, 'You have too few rated finished games.', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5045, 'Private tournaments are invite-only.', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5046, 'Column <b>%s</b> shows the current registered X and allowed total Y tournament participants: X / Y.', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5047, 'Tournament notes', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5048, 'Round Status#tourney', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5049, 'Setup phase#tourney', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5050, 'Change start-time, title, description#t_mng', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5051, 'owner, scope#t_mng', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5052, 'only by owner#tourney', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5054, 'user-related: user rating-range, min. games#t_mng', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5055, 'Change game-settings: shape, ruleset, board size, handicap-settings, time-settings, rated#t_mng', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5056, 'Registration phase#tourney', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5057, 'Manage registration of users: invite user, approve or reject application, remove registration#t_mng', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5058, 'Change status, start-round, read message from user and answer with message#t_mng', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5059, 'Start phase#tourney', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5060, 'Play phase#tourney', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5061, 'Show Tournament Log', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5062, 'challenge-range, max. defenses, max. challenges#t_mng', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(6052, 'Warning: This user [%s] has a rating [%s] lower than the minimum rating [%s]\nspecified for this tournament to allow the user to choose a customized start round.', 'SRC', 'Y', 'USED', '2014-04-03 23:26:03'),
(5064, 'Admin Ladder (seed ladder, remove users)#t_mng', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5065, 'Edit Ladder (remove users, rank-changes)#t_mng', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5066, 'End game, Add time#t_mng', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5067, 'Define pools (set pool parameters: pool-size, pool-count)#t_mng', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5068, 'Create pools (create, remove, seed pools)#t_mng', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5069, 'Edit pools (assign users to pools)#t_mng', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5070, 'Starting games for all pools#t_mng', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5071, 'Edit ranks#tpool', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5073, 'Edit#2', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5074, 'Registration for user [%s] removed!#tourney', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(6435, 'DirMsg#tmsg', 'SRC', 'Y', 'USED', '2016-08-20 19:33:13'),
(5690, 'Expecting number for rank archiving period length in range %s months#T_ladder', 'SRC', 'Y', 'USED', '2013-08-15 14:36:03'),
(5077, 'Register#tourney', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5078, 'Registration notes#tourney', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5079, 'Registration restricted#tourney', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5080, 'You will need a customized rating if you don\'t have a DGS-rating yet or if you don\'t want to start with your current DGS-rating.#tourney', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5081, 'Customized rating and round can only be modified freely while in registration phase.#tourney', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5082, 'If you enter a customized rating or a non-default starting-round, your application needs to be verified by a tournament director.#tourney', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(6434, 'For the current round, the pool winners settings is not configured yet.', 'SRC', 'Y', 'USED', '2016-08-20 19:33:13'),
(5084, 'Registration Status#tourney', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5085, 'user is not registered for tournament#tp_status_unreg', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5086, 'user-application needs verification by tournament director#tp_status', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5087, 'user has been invited by tournament director and needs verification by user#tp_status', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5088, 'user has been successfully registered#tp_status', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5089, 'Tournament Pools seeded!', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5090, 'Tournament Pools removed!', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5091, 'Tournament Default Pool filled with missing users!', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5092, 'Slice by#tourney', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5093, 'Pool Size#tpool_sugg_order', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5094, 'Best Pool Distribution#tpool_sugg_order', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5095, 'Base Pool Size', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5096, 'The table shows sample distributions for the %s registered users of round #%s for allowed pool-sizes.#tpool', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5098, 'Legend for pool suggestions', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5099, 'User\nCapacity#tpool_sugg', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5100, 'User\nDiff#tpool_sugg', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5101, 'Best Pool\nDistribution#tpool_sugg', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5102, 'Games\nCount#tpool_sugg', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5103, 'The current parameter choice by tournament director is included and the line is marked if valid.', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5104, 'Pool Size', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5105, 'Pool\nSize#tpool_sugg', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5106, 'Pool\nCount#tpool_sugg', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5107, 'Suggestion Note#tpool_sugg', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5108, 'Violates min. pool-size on slicing!', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5109, 'Violates max. pool-size!', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5110, 'Pool-size or count too small!', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5111, 'TD-Choice#tpool_sugg', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5112, 'Recommended distribution!#tpool_sugg', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5793, 'Show all tournament results', 'SRC', 'Done', 'USED', '2014-03-27 15:21:17'),
(5794, 'Status#stats', 'SRC', 'Done', 'USED', '2014-03-27 15:21:17'),
(5795, 'Games#stats', 'SRC', 'Done', 'USED', '2014-03-27 15:21:17'),
(5792, 'Edit results#tourney', 'SRC', 'Done', 'USED', '2014-03-27 15:21:17'),
(5115, 'Show Unassigned#tpool', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5791, 'No-Result (=Void)', 'SRC', 'Done', 'USED', '2014-03-27 15:21:17'),
(5117, 'To re-assign, enter new pool', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5118, 'User Rating#tourney', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5692, 'The userid looks like a spam-account, please choose another userid.', 'SRC', 'Done', 'USED', '2013-08-16 21:34:01'),
(5120, 'assign (unassigned) user to new pool', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5121, 'mark user for pool-action', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5122, 're-assign user to new pool', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5123, 'pool to assign for marked users', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5768, 'Expecting number for %s in range %s.', 'SRC', 'Done', 'USED', '2014-03-27 15:21:17'),
(5689, 'Rank Archiving Period length#T_ladder', 'SRC', 'Y', 'USED', '2013-08-15 14:36:03'),
(5127, 'Remove Rank#tpool', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5128, 'Show Rank Stats#tourney', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5790, 'Void#gameresult', 'SRC', 'Done', 'USED', '2014-03-27 15:21:17'),
(5130, 'Fill Ranks#tpool', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5131, 'for all users with ranks#tpool', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5132, 'on pool', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5133, 'Edit Rank of pool-user [ %s ] with rating [%s] in pool %s#tpool', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5134, 'Current Rank#tpool', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5136, 'Set Rank#tpool', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5137, 'Tournament Round added!', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5138, 'Tournament Round #%s removed!', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5139, 'Tournament Round #%s switched!', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5140, 'Select Round#tourney', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5141, 'View Round#tourney', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5142, 'Add Round#tourney', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5143, 'Remove Round#tourney', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5144, 'Edit Round Properties#tourney', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5145, 'Set Current Round#tourney', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5146, 'Max. Pool Count', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5147, 'Edit rounds#tourney', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5148, 'Current Round Status#tourney', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5149, 'Tournament round setup phase (set properties needed for pooling, pairing and playing)#trd_status', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5150, 'Tournament round pooling phase (create pools, assign users to pools)#trd_status', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5151, 'Tournament game setup phase (prepare all tournament games)#trd_status', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5687, 'Registered#TP_status', 'SRC', 'Done', 'USED', '2013-08-15 14:36:03'),
(5688, 'Invited#TP_status', 'SRC', 'Done', 'USED', '2013-08-15 14:36:03'),
(5685, 'Length of one rank archiving period#T_ladder', 'SRC', 'Y', 'USED', '2013-08-15 14:36:03'),
(5686, 'Applied#TP_status', 'SRC', 'Done', 'USED', '2013-08-15 14:36:03'),
(5154, 'Round #%s#tourney', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5788, '#Games won : lost by Forfeit', 'SRC', 'Done', 'USED', '2014-03-27 15:21:17'),
(5789, '#Games with No-Result', 'SRC', 'Done', 'USED', '2014-03-27 15:21:17'),
(5156, 'You are playing in %s.#tpool', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5158, 'Edit Rank#tpool', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5159, 'Points#tourney', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5787, '%s wins by forfeit', 'SRC', 'Done', 'USED', '2014-03-27 15:21:17'),
(5161, 'self#tpool_table', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5786, '%s wins by timeout', 'SRC', 'Done', 'USED', '2014-03-27 15:21:17'),
(5163, 'game won#tpool_table', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5164, 'game lost#tpool_table', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5165, 'game draw#tpool_table', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5166, '[%s] = Rank of user within one pool (1=Highest rank); Format \"R (CR) %s\"#tpool', 'SRC', 'Done', 'USED', '2013-03-04 12:19:37'),
(5167, 'R = (optional) rank set by tournament director, really final only at end of tournament round#tpool', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5785, '%s wins by resignation', 'SRC', 'Done', 'USED', '2014-03-27 15:21:17'),
(5169, 'CR = preliminary calculated rank, omitted when it can\'t be calculated or identical to rank R#tpool', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5683, 'Edit pools#tpool', 'SRC', 'Done', 'USED', '2013-08-11 17:45:33'),
(5684, 'Registration end time#tourney', 'SRC', 'Done', 'USED', '2013-08-15 14:36:03'),
(5171, 'Tournament news archive', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5172, 'Rank %s in Pool %s', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5173, 'Tournament Rules', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5174, 'No tournament news.', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5175, '%s finished, %s won, %s lost tournament games', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5176, 'User Result State#tourney', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5177, 'Tournament Standings (TOP %s)', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5178, 'Tournament Registration', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5682, 'My Color', 'SRC', 'Done', 'USED', '2013-08-11 17:45:33'),
(5180, 'adjusted by %s points#komi', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5181, 'Jigo allowed', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5182, 'No Jigo allowed', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5183, 'adjusted by %s stones#handi', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5184, 'limited by min. %s and max. %s stones', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5185, 'limited by min. %s stones', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5186, 'limited by max. %s stones', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5187, 'calculated stones', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5188, '%s stones', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5189, 'calculated komi', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5190, '%s points komi', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5191, '(absolute time)', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5192, 'The following game rules are used for this tournament', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5193, 'Registration phase ends on [%s]#tourney', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5194, 'Admin user rating', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5195, 'Shape ID #%s', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5196, 'Game Shape', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5197, 'No Shapes', 'SRC', 'Done', 'USED', '2012-09-18 17:41:56'),
(5225, 'Max. number of own waiting-room entries [%s] has been reached.', 'SRC', 'Done', 'USED', '2012-11-24 17:35:41'),
(5226, 'You can save the form as template for later, delete one waiting-room offer or wait till they are joined.', 'SRC', 'Done', 'USED', '2012-11-24 17:35:41'),
(5227, 'Number of games for same offer can be set with \'Number of games to add\'.', 'SRC', 'Done', 'USED', '2012-11-24 17:35:41'),
(5228, 'My running MP-games#bookmark', 'SRC', 'Done', 'USED', '2012-12-06 19:03:23'),
(5229, 'Fresh#B_status', 'SRC', 'Done', 'USED', '2012-12-06 19:03:23'),
(5230, 'What is a shape-game?', 'FAQ', 'Y', 'USED', '2012-12-08 00:52:47'),
(5231, 'A <b>shape-game</b> can be played on DGS as an unrated game with an arbitrary setup of white and black stones.  A saved shape can be used to either create a new game in the waiting-room or send an invitation to another player.  \r\n\r\nShape-games are marked with the <image shape.gif>-icon on various pages with a goban thumbnail of the shape if you hover over the icon, and linked to the definition of the particular shape.\r\n\r\nTo find shape-games in the <home show_games.php>games lists</home> or in the <home waiting_room.php>waiting room</home>, you can use the Game-Type filter with \"<i>Shape-Games</i>\" (to only show shape-games) or \"<i>No Shapes</i>\" (to exclude shape games).', 'FAQ', 'Y', 'USED', '2012-12-08 00:52:47'),
(5238, 'Dragon icons and images', 'FAQ', 'Y', 'USED', '2012-12-08 14:38:20'),
(5239, 'Game board images', 'FAQ', 'Done', 'USED', '2012-12-08 15:59:10'),
(5240, '<ul>\r\n<li>Images for playing:\r\n<image board/b.gif> / <image board/w.gif> : black / white stone\r\n<image board/bm.gif> / <image board/wm.gif> : black / white last move marker\r\n<image board/x.gif> <image board/ex.gif> : move capture\r\n\r\n<li>Numbered stones (for <home faq.php?read=t&cat=12&e=235#Entry235>move numbering</home>):\r\n<image board/b1.gif> ... <image board/b500.gif> : numbered black stones 1..500\r\n<image board/w1.gif> ... <image board/w500.gif> : numbered white stones 1..500\r\n\r\n<li>Images for scoring phase:\r\n<image board/eb.gif> : black territory\r\n<image board/ew.gif> : white territory\r\n<image board/ed.gif> : <home faq.php?read=t&cat=3&e=115#Entry115>dame</home> (neutral points)\r\n<image board/eg.gif> : undecided points (e.g. in a <home faq.php?read=t&cat=3&e=101#Entry101>seki</home>)\r\n\r\n<image board/bw.gif> - dead black stone (counted as white prisoner)\r\n<image board/wb.gif> - dead white stone (counted as black prisoner)\r\n</ul>', 'FAQ', 'Y', 'USED', '2012-12-08 15:59:10'),
(5241, 'What are the items on the game-info page?', 'FAQ', 'Y', 'USED', '2012-12-08 17:04:35'),
(5242, 'Each game has a game-info page showing additional information.  On the game page the <image info.gif>-icon in the players info box as well as the bottom-link \"Show game info\" opens the respective game-info page for the game.\r\n\r\nThe game-info page is divided into four sections. Here\'s a brief explanation of the most important fields for each section:\r\n\r\n<b><u>Game settings:</u></b> (not all fields are shown at all times)\r\n<ul>\r\n<li><b>Double Game ID:</b> for games started as <home faq.php?read=t&cat=357&e=111#Entry111>double game</home> this field gives the game-id linked to the sister game.  If the sister-game has been deleted, the game-ID is given but the link is disabled.\r\n<li><b>Message:</b> if the game was started by invitation, this field is linked to the last message of the invitation-process for the game\r\n<li><b>Game Type:</b> normal Go, <home faq.php?read=t&cat=305&e=307#Entry307>Team-Go</home> or <home faq.php?read=t&cat=305&e=308#Entry308>Zen-Go</home>\r\n<li><b>Status:</b> game finished, running or in fair-komi negotiation phase\r\n<li><b>Score:</b> game-result for finished games; if the game was finished by a game-admin the text \"set by admin\" is added.\r\n<li><b>Weekend Clock:</b> No = weekend-clock stopped on weekend, Yes = clock also runs on weekend\r\n</ul>\r\n\r\n<b><u>Time settings and Remaining time:</u></b> shows the time-settings and remaining time for both colors\r\n<ul>\r\n<li><b>Color:</b> the 2nd column shows which color (player) has to move currently\r\n</ul>\r\n\r\n<b><u>Players:</u></b> shows some information of the current black and white player\r\n<ul>\r\n<li><b>On vacation:</b> vacation info of the players\r\n<li><b>Off-time:</b> contains icons indicating if the clock of the players is ticking, see <home faq.php?read=t&cat=56&e=42#Entry42>When are my game clocks counted down?</home>\r\n<li><b>Start Rating:</b> shows the rating of the players when the game was started\r\n<li><b>End Rating, Rating diff:</b> shows the rating of the players and the rating-diff when the game ended.\r\n<li><b>Komi bid:</b> contains information of fair-komi negotiation for fair-komi games.\r\n</ul>\r\n\r\n<u>Section to <b>set the games priority</b></u> for running game lists:\r\nsee <home faq.php?read=t&cat=18&e=364#Entry364>How can I order the status games by a customized priority?</home>\r\n\r\nThe game-info page has also two bottom-links to <home faq.php?read=t&cat=357&e=353#Entry353>start a new game or invitation with the same game settings</home>.', 'FAQ', 'Y', 'USED', '2012-12-08 17:04:35'),
(5245, 'Game icons', 'FAQ', 'Done', 'USED', '2012-12-08 17:38:47'),
(5246, '<ul>\r\n<li><image info.gif> : opens <home faq.php?read=t&cat=18&e=320#Entry320>the game-info page</home> for a game.  Hovering over the icon while on pages with game-lists shows a thumbnail of the current game board in a small pop-up window.\r\n<li><image invite.gif> : <home message.php?mode=Invite>invites another player to a game</home>\r\n<li><image newgame.gif> : opens new game with saved game-offer-template (on the <home templates.php>templates page</home>)\r\n<li><image team.gif> : represents a <home faq.php#Title305>multi-player-game</home>.\r\n* In waiting-room showing number of free-slots in tooltip.\r\n* On game list pages and game-page linked to game-players page with players and info about <home faq.php#Title305>multi-player-game</home>\r\n<li><image forward.gif> : marks the next player in a <home faq.php#Title305>multi-player-game</home> on the game-players-page\r\n<li><image wclock_stop.gif> : indicates that the game-clock has stopped because of weekend (on game-page and game-info page)\r\n<li><image eidogo.gif> : opens <http://eidogo.com |EidoGo Game Player> for a specific game (on the game-page)\r\n<li><image sgf.gif> : indicates the existence of attached SGFs (with game reviews) for the game\r\n<li><image shape.gif> : opens the view of the setup information for a <home faq.php?read=t&cat=329&e=314#Entry314>shape-game</home>.  Hovering over the icon shows a thumbnail of the original shape in a small pop-up window.\r\n<li><image game_comment.gif> : shows if a game has hidden comments.  Icon is shown for <home show_games.php?finished=1&all=1>(all or my) finished games</home>.\r\n<li><image dash.gif> / <image yes.gif> / <image no.gif> : icons on <home show_games.php>(all or my) finished games page</home> to indicate the game-result as <home faq.php?read=t&cat=3&e=240#Entry240><i>jigo</i></home> / <i>won game</i> / <i>lost game</i>\r\n<li><image board/b_b.gif>, <image board/b_w.gif>, <image board/w_b.gif>, <image board/w_w.gif> : indicate what a players colors are and who is next to move for my running games list.\r\nSee help entry: <home faq.php?read=t&cat=18&e=208#Entry208>What is the meaning of the two-colored stones icon in my running games list?</home>\r\n<li><image board/y.gif> : indicates game-colors are determined by <home faq.php?read=t&cat=3&e=21#Entry21>Nigiri</home> or <home faq.php?read=t&cat=3&e=321#Entry321>Fair-Komi</home> (in waiting-room)\r\n<li><image board/w_b.gif> : indicates <home faq.php?read=t&cat=357&e=111#Entry111>double-game</home> (in waiting-room)\r\n<li><image board/w.gif>, <image board/b.gif> : indicates probable color to be black or white for the user (in waiting-room)\r\n</ul>', 'FAQ', 'Y', 'USED', '2012-12-08 17:38:47'),
(5247, 'User icons', 'FAQ', 'Done', 'USED', '2012-12-08 18:02:16'),
(5248, 'User-Type icons (can be set by an admin):<ul>\r\n<li><image professional.gif> : indicates that user is a <i>professional player</i>\r\n<li><image robot.gif> : indicates that user is a <i>robot player</i>\r\n<li><image teacher.gif> : indicates that user is a <i>teacher</i> and can give lessons (free or commercial teacher)\r\n</ul>\r\n\r\nOther user-related icons:\r\n<ul>\r\n<li><image admin.gif> : indicates that user is a <home people.php><i>dragon executive (admin)</i></home> (shown on forum posts and user-info page)\r\n<li><image online.gif> : shows if user is \"<home faq.php?read=t&cat=358&e=232#Entry232><i>online</i></home>\" \r\n<li><image night.gif> : indicates that user is in his/her <home faq.php?read=t&cat=56&e=61#Entry61><i>sleeping time</i></home> (shown on user-info page, game-page and game-info-page)\r\n<li><image vacation.gif> : indicates that user is <i>on vacation</i> (shown on user-info page, game-page and game-info page)\r\n<li><image picture.gif> : indicates that user has a <i>user-picture</i> on the user-info page\r\n<li><image star.gif> (more active), <image star2.gif> (less active): <i>activity-level</i> on <home users.php>the users page</home> and user-info page\r\n</ul>', 'FAQ', 'Y', 'USED', '2012-12-08 18:02:16'),
(5249, 'Message icons', 'FAQ', 'Done', 'USED', '2012-12-08 18:21:17'),
(5250, 'Some of the message icons are also explained in the help entry: <home faq.php?read=t&cat=360&e=220#Entry220>What do the items on the Messages page mean?</home>.\r\n<ul>\r\n<li><image send.gif> : <home message.php?mode=NewMessage>send a new message</home>\r\n\r\n<li><image msg.gif> : message without parent message or answer\r\n<li><image msg_2r.gif> : message that is an answer (has a parent message) and has at least one answer\r\n<li><image msg_lr.gif> : message that is an answer.  Icon is linked to parent message.\r\n<li><image msg_rr.gif> : message that has at least one answer.  Icon is linked to next answer(s).\r\n\r\n<li><image thread.gif> : message thread view showing bifurcations of the message thread\r\n<li><image msg_first.gif> : first message of a thread\r\n\r\n<li><image up_bulk.gif> : message is part of a bulk-message, and pointing to the message that must be used to further process it.\r\n</ul>', 'FAQ', 'Y', 'USED', '2012-12-08 18:21:17'),
(5251, 'Forum icons', 'FAQ', 'Done', 'USED', '2012-12-08 18:42:06'),
(5252, 'Forum navigation icons on the <home faq.php?read=t&cat=339&e=239#Entry239>Thread reading page</home>:\r\n<ul>\r\n<li><image f_top.png> : jumps to the 1st post (at the top)\r\n<li><image f_prevparent.png> : jumps to the previous parent post\r\n<li><image f_prevanswer.png> : jumps to the previous answer\r\n<li><image f_nextanswer.png> : jumps to the next answer\r\n<li><image f_nextparent.png> : jumps to the next parent\r\n<li><image f_bottom.png> : jumps to the last post (at the bottom)\r\n<li><image f_firstanswer.png> : jumps to the 1st answer to a post\r\n</ul>', 'FAQ', 'Y', 'USED', '2012-12-08 18:42:06'),
(5253, 'General icons', 'FAQ', 'Done', 'USED', '2012-12-08 18:59:43'),
(5254, '<ul>\r\n<li><image edit.gif> : edit an object (depends on the page)\r\n<li><image trashcan.gif> : delete an object (depends on the page)\r\n<li><image info.gif> : info-page of an object (depends on the page)\r\n<li><image note.gif> : indicates if there is a description for a <home faq.php?read=t&cat=329&e=314#Entry314>shape</home> on the <home shapes.php>shapes list page</home>.\r\n<li><image rss-icon.png> : RSS-feed of the page it appears on\r\n<li><image table.gif> : table-listing (context dependent)\r\n<li><image tourney.gif> : opens tournament-info page\r\n<li><image no.gif> : represents \"NO\" (negative)\r\n<li><image yes.gif> : represents \"YES\" (positive)\r\n</ul>', 'FAQ', 'Y', 'USED', '2012-12-08 18:59:43'),
(5255, 'Table-listing icons', 'FAQ', 'Done', 'USED', '2012-12-08 19:07:37'),
(5256, 'Icons used on pages containing a list of rows in a tabular structure (e.g. the <home users.php>users page</home>):\r\n<ul>\r\n<li><image start.gif> (first), <image prev.gif> (previous), <image next.gif> (next), <image end.gif> (last) : icons in table-header and footer linked to navigate in the row data jumping to the 1st, previous, next and last page\r\n\r\n<li><image remove.gif> : icon in table-header to remove a specific table-column. The column can be re-added with the select-box and \"<i>Add column</i>\" button below the table.\r\n\r\n<li><image sort1a.gif> <image sort1d.gif> (1st sort criteria), <image sort2a.gif> <image sort2d.gif> (2nd sort criteria) : icon in table-header to indicate the 1st and 2nd sort criteria of table-columns.  See also help entry: <home faq.php?read=t&cat=17&e=227#Entry227>How can I change the order of table listings?</home>\r\n</ul>', 'FAQ', 'Y', 'USED', '2012-12-08 19:07:37'),
(5257, 'FAQ-editor icons', 'FAQ', 'Done', 'USED', '2012-12-08 19:13:12'),
(5258, 'The following icons can only be seen by FAQ-editors:\r\n<ul>\r\n<li><image expand.gif> / <image collapse.gif> : expand / collapse the FAQ category sections\r\n\r\n<li><image up.png> / <image down.png> : move FAQ-entries up / down in the same category\r\n<li><image up_up.png> / <image down_down.png> : move FAQ-entries into the parent / next category\r\n\r\n<li><image new.png> : create a new FAQ-category or FAQ-entry\r\n<li><image hide.png> / <image hide_no.png> : hide / unhide a FAQ-entry\r\n<li><image transl.png> / <image transl_no.png> : mark a FAQ-entry as translatable / untranslatable\r\n</ul>', 'FAQ', 'Y', 'USED', '2012-12-08 19:13:12'),
(5259, 'Dragon shape games', 'FAQ', 'Done', 'USED', '2012-12-09 14:20:25'),
(5260, 'How can I create a shape or game-board?', 'FAQ', 'Y', 'USED', '2012-12-09 14:35:24'),
(5261, 'To start a game with a new shape or use a game-board in the forums or messages you first have to create a goban.  To create or edit a shape you should use the <home goban_editor.php><b>goban editor</b></home>.  In the forums you can also use <i>previewing</i> to create or edit a shape, the <i>goban editor</i> has some helpful extra edit-features though.\r\n\r\n<home faq.php?read=t&cat=329&e=334#Entry334>Using the Dragon goban editor</home> there are roughly six ways to create a <i>goban</i> (game board):\r\n<ul>\r\n<li>Create a goban from scratch.\r\n<li>Create a goban from a Dragon game.\r\n<li>Upload a game from a SGF.\r\n<li>Copy from one of the existing DGS <home list_shapes.php>shapes</home>.\r\n<li>Copy the raw-format of an existing goban on DGS.\r\n<li>Copy the raw-format of a board diagram from <_http://senseis.xmp.net |Sensei`s Library>.\r\n</ul>', 'FAQ', 'Y', 'USED', '2012-12-09 14:35:24'),
(5262, 'How can I create a game board in the forums or messages?', 'FAQ', 'Done', 'USED', '2012-12-09 14:35:51'),
(5263, 'To use a goban (game-board) in the forums, private messages or move messages, you should use the <home faq.php?read=t&cat=329&e=334#Entry334>goban editor</home> to edit the shape, then copy the raw-format with the &lt;igoban>-tag to the target location you want to have it placed without saving it as shape (which is only needed when you want to create a <home faq.php?read=t&cat=329&e=314#Entry314>shape-game</home>).  Use \"<i>Preview</i>\" on the target page to check if it\'s correctly formatted before you submit it.\r\n\r\nThe full syntax of gobans is listed on the <home goban_editor.php>goban editor page</home>.  Also see: <home faq.php?read=t&cat=329&e=335#Entry335>Are there examples of game boards?</home>', 'FAQ', 'Y', 'USED', '2012-12-09 14:35:51'),
(5264, 'How can I start a shape-game?', 'FAQ', 'Y', 'USED', '2012-12-09 14:36:08'),
(5265, 'To start a <home faq.php?read=t&cat=329&e=314#Entry314>shape-game</home> there are basically two ways:\r\nCreate a new shape-game from an existing (running or finished) game OR from an existing shape either as invitation or as new-game for the waiting-room.\r\nIf you want to start a game with a shape, that is not available in the <home list_shapes.php>shapes list</home>, you first have to <home faq.php?read=t&cat=329&e=330#Entry330>create a new shape</home>.\r\n\r\nThere are <b>implicit game-settings</b> involved, that cannot be changed:\r\n<ul>\r\n<li>a shape-game is always <b>unrated</b>\r\n<li>Once a shape has been opened as invitation or on the new-game page, the <b>shape can not be altered</b>.  Also a invitation-dispute can not change this.\r\n<li>the <b>board size is fix</b> and comes along with the used shape\r\n<li>if additional handicap stones are allowed, <b>only free placement of handicap stones</b> is supported, because the standard placement could clash with other present stones.\r\n<li>if the shapes flags enforce the White player to move first, a Black PASS-move is added in the game (except if additional handicap is included)\r\n</ul>\r\n\r\nTo create a new shape-game from an <b>existing game</b>, open the game-info page for it, then:\r\n<ul>\r\n<li>Use the bottom-link \"<i>Rematch</i>\" to start a shape-game as invitation (not possible for multi-player-games though).\r\n<li>Use the bottom-link \"<i>Copy as new game</i>\" to start a shape-game for the waiting-room.\r\n</ul>\r\n\r\nTo create a new shape-game from an <b>existing shape</b>, view one of the <home list_shapes.php>existing shapes</home>, then:\r\n<ul>\r\n<li>Use the bottom-link \"<i>Invite</i>\" to start a shape-game as invitation.\r\n<li>Use the bottom-link \"<i>New Shape-Game</i>\" to start a shape-game for the waiting-room.  From the simple view you can switch to the other new-game expert, multi-player or fair-komi views.\r\n</ul>', 'FAQ', 'Y', 'USED', '2012-12-09 14:36:08'),
(5266, 'What happens with running shape-games when I change the shape?', 'FAQ', 'Y', 'USED', '2012-12-09 14:36:21');
INSERT INTO `TranslationTexts` (`ID`, `Text`, `Type`, `Translatable`, `Status`, `Updated`) VALUES
(5267, 'The game continues with the original shape used to start the game.\r\n\r\nWhen a shape-game is started, a snapshot of the shape is stored with the game.  Changing the original shape will only change the new version of the shape, older games with the same shape-id continue undisturbed.\r\nWhen you view the shape following the linked <image shape.gif>-icon, a comparison is made and the differences shown on the shape-view page.\r\n\r\nThe thumbnail of the <image shape.gif>-icon is still showing the original snapshot the game was started with, while the shape-page for the shape-id might show a different shape then (with the differences).', 'FAQ', 'Y', 'USED', '2012-12-09 14:36:21'),
(5268, 'How can I create a goban with the Goban Editor?', 'FAQ', 'Y', 'USED', '2012-12-09 14:36:36'),
(5269, 'The <i>Goban Editor</i> can be used to create a shape to start a <home faq.php?read=t&cat=329&e=314#Entry314>shape-game</home> or added as game-board in the forums, private messages or move messages.  For a shape-game the shape must be saved and extended with attributes to describe and configure it for game-setup.\r\n\r\nThere are several ways to create a shape with the <home goban_editor.php>Goban Editor</home>:\r\n<ul>\r\n<li><b>Create new board of given size:</b>\r\nSelect the requested width and height for the game-board and press the \"<i>Create Board</i>\"-button to get an empty goban.\r\nTo use a shape as shape-game the width and height must be equal to form a square.\r\nWhen using the goban in the forums the size dimensions can be different.\r\n\r\n<li><b>Load board from game:</b>\r\nTo create a goban from an existing (running or finished) Dragon game you need the game-id.  The move-number is optional.  If it\'s omitted, the last move is used to create the setup of the goban.\r\n\r\n<li><b>Create board by uploading a SGF:</b>\r\nWhen you have a <home faq.php?read=t&cat=3&e=69#Entry69>SGF</home>, you can upload it to create a goban from it.  Variations in the SGF are ignored, only the main-path is used.\r\nUploaded SGF with a size exceeding 30KB are rejected.  If the SGF is larger you first have to reduce its size by stripping away variations or comments for example.\r\n\r\n<li><b>Copy the raw-format of an existing game-board on DGS:</b>\r\nWhen you see a goban (not a game-board from the game-page) on DGS you can add the URL-argument \'<tt>&raw=1</tt>\' to the page-request.  This will show the raw-format of the goban to the right of the board diagram.  To use this you have to create a new empty goban with the goban editor first (see above).  Then copy the raw-format into the top right textarea and pressing \"<i>Preview</i>\".\r\n\r\n<li><b>Copy board from existing DGS shape:</b>\r\nView one of the existing <home list_shapes.php>shapes</home> on DGS.  On viewing the single shape, follow the bottom-link \"<i>Show in Goban-Editor</i>\".  Then in the goban editor if you are not the author of the copied shape, you have to press <i>Preview</i> once to extract the shape; otherwise you are not able to save it as it\'s still connected via the original shape-id.\r\n\r\n<li><b>Copy board from go diagram from Sensei\'s Library (SL):</b>\r\nAs the goban-syntax is based on the go diagram format of <_http://senseis.xmp.net |Sensei`s Library>, you can copy the raw-format from there and edit it into the &lt;igoban&gt;-format used on DGS.  For this you just have to surround the original format from SL with the following tags:\r\n<code><igoban SL1> ... </igoban></code>\r\nNote however, that not the full specification of the SL-format is supported.  The supported DGS syntax is shown on the <home goban_editor.php>goban editor page</home>.\r\n</ul>\r\n\r\nOnce created, you can start to <home faq.php?read=t&cat=329&e=388#Entry388>edit the goban</home> in the <i>Goban Editor</i>.', 'FAQ', 'Y', 'USED', '2012-12-09 14:36:36'),
(5270, 'Are there examples of game boards?', 'FAQ', 'Y', 'USED', '2012-12-09 14:36:49'),
(5271, 'This entry shows some goban examples illustrating the supported syntax on DGS.  The raw-format is based on the go diagram format from <_http://senseis.xmp.net |Sensei`s Library>.\r\n\r\nThe examples are separated by lines.  Most of the examples are taken from <_http://senseis.xmp.net/?HowDiagramsWork |Sensei`s Library - How Diagrams Work>.  Easiest is often to use the <i>goban editor\'s</i> \"Preview\" to test if the format is correctly showing what you want.\r\n\r\nTo view the raw-format of the example please open the link: <home faq.php?read=t&cat=329&e=335&raw=1#Entry335>Are there examples of game boards? (with raw-format)</home>\r\n\r\n<hr>Goban with board-size 11 and short-form edges with \"+\", with title, markup and some describing text to the right of the board.\r\n<igoban SL1>\r\n$$c11 Board Markup\r\n$$ +\r\n$$ . 3 . . . . . . . . =\r\n$$ 1 2 . a b c . x y z .\r\n$$ . . . . . . . . . . .\r\n$$ . X . B . # . Y . Z .\r\n$$ . . . . . . . . . . .\r\n$$ . O . W . @ . Q . P .\r\n$$ . . . . . . . . . . .\r\n$$ . . . C . S . T . M .\r\n$$ . . . . . . . . . . .\r\n$$ . A . V . , . = . ~ .\r\n$$ . . . . . . . . . . .\r\n$$ ++\r\n\r\nText: TA = Black territory, TV = White territory, T~ = Neutral, T= = Dame\r\nText: BO BX\r\n</igoban>\r\n\r\n<hr>Board with images in title and a link to Sensei\'s Library:\r\n<igoban SL1>\r\n$$B Black to BO WO BC WS BT WX EC !BO B100 W99 B7 W54 [joseki]\r\n$$ . . . . . . . . . . . . . . . . . . . . . . .\r\n$$ . 1 2 3 4 5 6 7 8 9 0 . 1 2 3 4 5 6 7 8 9 0 .\r\n$$ . . . . . . . . . . . . . . . . . . . . . . .\r\n</igoban>\r\n\r\n<hr>Incomplete boards with coordinates:\r\n<igoban SL1>\r\n$$Bc3\r\n$$  . . .\r\n$$  . . .\r\n$$  . . .\r\n$$ ---+\r\n</igoban>\r\n<igoban SL1>\r\n$$Bc5\r\n$$ +---\r\n$$  . . .\r\n$$  . . .\r\n</igoban>\r\n\r\n<hr>Goban with move numbering starting with higher number:\r\n<igoban SL1>\r\n$$Wm67 Move numbering starts at 67\r\n$$ . . . . . . . . . . . .\r\n$$ . 1 2 3 4 5 6 7 8 9 0 .\r\n$$ . . . . . . . . . . . .\r\n</igoban>\r\n\r\n<hr>Comparing diagrams:\r\n<igoban SL1>\r\n$$B Example\r\n$$ ------------------------\r\n$$  _ X O . O _ _ X . X O _\r\n$$  _ X O . O _ _ X . X O _\r\n$$  _ X O . O _ _ X . X O _\r\n$$  _ X W . O _ _ X . . O _\r\n$$  _ X . . O _ _ X . B O _\r\n$$  _ X O O O _ _ X X X O _\r\n$$  _ _ _ _ _ _ _ _ _ _ _ _\r\n</igoban>\r\n\r\n<hr>Supported links in diagrams (on small board with size 13):\r\n<igoban SL1>\r\n$$c13 Links in diagrams\r\n$$  --------------\r\n$$ | . . . . . . .\r\n$$ | . C . . . . .\r\n$$ | . . . 1 6 . .\r\n$$ | . . 5 4 . . .\r\n$$ | . . 3 2 . . .\r\n$$ | . . a . . C .\r\n$$ | . . . . . . .\r\n$$ [2|NadareJoseki]\r\n$$ [4|dgs:message.php?mode=NewMessage]\r\n$$ [a|http://gtl.xmp.net/members/info?p_key=349&pseudo=dada]\r\n$$ [C|#Entry334]\r\n\r\nThe links are all opened in a new window for safety reasons (to avoid losing entered text). \r\nLink on \"2\" to Sensei\'s Library\r\nLink on \"4\" to DGS-page (short form)\r\nLink on \"a\" to external link\r\nLink on \"EC\" to page-relative anchor\r\n</igoban>\r\n\r\n<hr>Text at side and below diagram (cannot be mixed).\r\n<igoban SL1>\r\n$$\r\n$$  --------------\r\n$$ | . C . . . . .\r\n$$ | . . . 1 6 . .\r\n\r\nText at side of diagram BO EC\r\n</igoban>\r\n<igoban SL1>\r\n$$\r\n$$  --------------\r\n$$ | . C . . . . .\r\n$$ | . . . 1 6 . .\r\n%%%%\r\nText below diagram BO EC\r\n</igoban>\r\n\r\n<hr>Board with short-form edges.\r\n<igoban SL1>\r\n$$ edge notation \"++\"\r\n$$ ++\r\n$$ . C . . . . .\r\n$$ . . . 1 6 . .\r\n</igoban>\r\n\r\n<hr>Irregular boards: Strange boards do work, they just require lots of fiddling.  Irregular boards are possible, but the syntax of Sensei\'s Library and DGS are incompatible here as the code-base is different.\r\n\r\n<igoban SL1>\r\n$$\r\n$$      -----------\r\n$$ - - | . . . . . | - -\r\n$$ - - | . , . , . | - -\r\n$$ | . . . . . . . . . |\r\n$$ | . , . . . . . , . |\r\n$$ | . . . . . . . . . |\r\n$$ - - | . , . , . | - -\r\n$$ - - | . . . . . | - -\r\n$$      -----------\r\n</igoban>\r\n<igoban SL1>\r\n$$B A sample game played with a friend (neither of us are very good.)\r\n$$  ---------------------------\r\n$$ | . . . . . . O . O O X . . |\r\n$$ | O O . . O O X O O X X . . |\r\n$$ | X O O O X X X O . O X . . |\r\n$$ | X X X X X . X X O O X . . |\r\n$$ | . . . . X O O O O X X . . |\r\n$$ | . . . . .|  -  |. O X . . |\r\n$$ | . X . . .|  -  |. O X . . |\r\n$$ | . . . X X|  -  |O X . X . |\r\n$$ | . . X O O . . . O X . . . |\r\n$$ | . . X O O O . . . O X X X |\r\n$$ | . X X X X O . . O . O O X |\r\n$$ | X X O O O . . . . . . O O |\r\n$$ | O O O . . . . . . . . . . |\r\n$$ | . . . . . . . . . . . X X |\r\n$$ | . . . . . . . . . . . . . |\r\n$$  ---------------------------\r\n%%%%\r\ntaken from Sensei\'s Library\r\n</igoban>', 'FAQ', 'Y', 'USED', '2012-12-09 14:36:49'),
(5272, 'How can I create a game diagram?', 'FAQ', 'Y', 'USED', '2012-12-09 15:06:13'),
(5273, 'Dragon allows to embed game diagrams in messages, the forums and to use for <home faq.php?read=t&cat=329&e=314#Entry314>shape-games</home> using a simple text-based format.  This so-called \"goban-format\" is basically the same format used on <_http://senseis.xmp.net/ |Sensei`s Library> to draw go diagram.\r\n\r\nAlso see help entries:\r\n<ul>\r\n<li><home faq.php?read=t&cat=329&e=330#Entry330>How can I create a shape or game-board?</home>\r\n<li><home faq.php?read=t&cat=329&e=335#Entry335>Are there examples of game boards?</home>\r\n</ul>\r\n\r\nA <i>goban</i> is constructed by using the &lt;igoban>-tag.  In the example below you can see an example for the notation.\r\nThe <tt>SL1</tt> attribute in the tag stands for <i>Sensei\'s Library version 1</i>:\r\n<code>\r\n<igoban SL1>\r\n$$ Nadare joseki\r\n$$ +-\r\n$$ . . . . . . .\r\n$$ . . . . . . .\r\n$$ . . . 1 6 . .\r\n$$ . . 5 4 . . .\r\n$$ . . 3 2 . . .\r\n$$ . . . . . . .\r\n</igoban></code><igoban SL1>\r\n$$19 Nadare joseki\r\n$$ +-\r\n$$ . . . . . . .\r\n$$ . . . . . . .\r\n$$ . . . 1 6 . .\r\n$$ . . 5 4 . . .\r\n$$ . . 3 2 . . .\r\n$$ . . . . . . .\r\n</igoban>', 'FAQ', 'Y', 'USED', '2012-12-09 15:06:13'),
(5274, 'What are the items on the Shapes page?', 'FAQ', 'Y', 'USED', '2012-12-09 15:32:58'),
(5275, 'The shapes page lists per default all <i>public</i> shapes to be used to create <home faq.php?read=t&cat=329&e=314#Entry314>shape-games</home>.\r\n\r\nIn the <i>Flags</i>-column you can un-check the \"<i>Public</i>\"-flag to show <i>private</i> shapes as well, or you can use the bottom-link \"<i>All shapes</i>\".\r\n\r\nHere\'s a brief explanation of the most important columns of the shape table listing:\r\n<ul>\r\n<li><b>ID:</b> shape-id with link to <home faq.php?read=t&cat=329&e=338#Entry338>view the particular shape</home>\r\n<li><image shape.gif> (Shape Information): contains a <image shape.gif>-icon linked to the <i>goban editor</i> with the particular shape.\r\nThe column shows a <image edit.gif>-icon for your own shapes, that leads to edit the shape.\r\n<li><b>Name:</b> shape name.  A <image note.gif>-icon shows the shape-notes as tooltip when you hover over it.\r\n<li><b>Size:</b> board size of shape\r\n<li>for other columns see: <home faq.php?read=t&cat=329&e=338#Entry338>What are all those items on the page showing a single shape?</home>\r\n</ul>\r\n\r\nThe bottom-link \"<i>My shapes</i>\" only shows your own created shapes.\r\n\r\nThe shapes page can be reached from several pages: the <home faq.php>FAQ</home>, the <home goban_editor.php>goban editor</home>, sending an <home message.php?mode=Invite>invitation</home>, the <home new_game.php>new game page</home>, the <home site_map.php>site map</home> and from the other pages to view or edit a shape.', 'FAQ', 'Y', 'USED', '2012-12-09 15:32:58'),
(5276, 'What are all those items on the page showing a single shape?', 'FAQ', 'Y', 'USED', '2012-12-09 15:37:49'),
(5277, 'Viewing a single shape from the list of <home list_shapes.php>shapes</home> shows a table with the shape attributes, a view of the game board with the shape and to the right of it optional shape notes describing it.\r\n\r\nHere\'s a brief explanation of the shape attributes:\r\n<ul>\r\n<li><b>Source:</b> shape-id used to identify a saved shape\r\n<li><b>Author:</b> author of the shape with link to his or her user-info page.  Only the author of a shape can change it, though other users can use it.\r\n<li><b>Shape Name:</b> User-given name of the shape.\r\n<li><b>Board Size:</b> the board dimension for the shape. This should not be changed, because it cuts off the shape in unpredictable ways.\r\n<li><b>Flags:</b> shape flags:\r\n* <i>W-First:</i> indicates, that the White-player moves first for this shape.\r\n* <i>Public:</i> marks the shape as <i>public</i>, otherwise it\'s <i>private</i> and will not be shown per default on the <home list_shapes.php>shapes list</home>\r\n<li><b>Created / Last changed:</b> date when the shape was first created or last changed.\r\n<li><b>Shape Notes:</b> description and notes about the shape. Will be shown on the shapes list as well marked by <image note.gif>-icon.\r\n</ul>\r\n\r\nTo <b>edit the shape</b>, follow the bottom-link \"<i>Edit shape</i>\".  All above shape attributes can be changed on the shape edit page, except of the goban itself.\r\n\r\nTo change the goban (game-board) of the shape, you have use the bottom-link \"<i>Show in Goban Editor</i>\" and then re-save it.\r\n\r\nFollow the bottom-link \"<i>Invite</i>\" to start a new invitation with the current shape.\r\n\r\nFollow the bottom-link \"<i>New Shape-Game</i>\" to create a new game in the waiting-room with the current shape.  On the <home new_game.php>new game page</home> you then can switch to other views to create a shape-game as multi-player-game or as fair-komi game.', 'FAQ', 'Y', 'USED', '2012-12-09 15:37:49'),
(5278, 'Dragon community features', 'FAQ', 'Done', 'USED', '2012-12-09 15:51:43'),
(5279, 'What are the items on the Surveys page?', 'FAQ', 'N', 'USED', '2012-12-09 15:54:26'),
(5280, '## TODO\r\n\r\n* <survey>-tag\r\n* new survey by survey-admin (fields: type (points, sum, single, multi), status (new, active, closed, del), points min/max, title, opts, user-list)\r\n* link in site-map or on forum-list\r\n\r\n* vote on survey: title (shows subject, status, number of voters, creation-date), blue=your-vote, red=all-votes (only shown if your vote given); points-type (can give points in range min/max on every item); sum-type (give points in range on every item but max in total); single-type (select one item); multi-type (select multi-items)', 'FAQ', 'N', 'USED', '2012-12-09 15:54:26'),
(5281, '[moderator only] What are the items on the Forum log page?', 'FAQ', 'N', 'USED', '2012-12-09 15:59:37'),
(5282, '## TODO for forum-moderators only\r\n\r\n* ID\r\n* Userid\r\n* Time\r\n* Action : new thread, new post, edit post, hide/show/approve/reject post\r\n* IP (for admins only)\r\n* Show Thread/Post for moderating', 'FAQ', 'N', 'USED', '2012-12-09 15:59:37'),
(5283, '[moderator only] How to moderate forums?', 'FAQ', 'N', 'USED', '2012-12-09 16:04:38'),
(5284, '## TODO\r\n\r\n* show hidden post\r\n* hide shown post\r\n* approve pending post (created by guest-user e.g. to ask for password-reset), (created by user that have forum-post-moderation-flag)\r\n* reject pending post (e.g. after password-reset to hide sensible data)\r\n\r\n* toggle-forum-moderator', 'FAQ', 'N', 'USED', '2012-12-09 16:04:38'),
(5285, 'What are Bulletins?', 'FAQ', 'Done', 'USED', '2012-12-09 16:26:09'),
(5286, 'Bulletins are global announcements of a certain <b>category</b> shown to all users or only to a selected group of people configured by a <b>target type</b>.\r\n\r\nWhen there are new bulletins for you, the number of unread bulletins is shown in <color red>red color</color> in the main menu, for example \"Bulletins&nbsp;<color red>(3)</color>\".\r\nUnread bulletins are shown on the top of the <home status.php>status page</home> (or on the <home quick_status.php>quick status</home>) and must be <i>marked as read</i> to go away.  Some bulletins also have an <i>expire date</i> on which they disappear automatically if not marked as read before that time.\r\n\r\nAll bulletins are archived and can be viewed on the <home list_bulletins.php>Bulletins page</home>.  In that list you can also see how many users viewed and read the bulletin, which is a useful information for some kind of announcements.\r\n\r\nEach bulletin has a <b>category</b>:\r\n<ul>\r\n<li><b>Maintenance:</b> Announcement of site admins about a planned server maintenance, for which the server must be taken down.  For example for software update or for bugfixes.\r\n<li><b>Admin Announcement:</b> Announcement of site admins about general topics regarding the site without a server outage.\r\n<li><b>Tournament News:</b> News about a specific DGS tournament using Dragons tournament feature (not enabled yet as of Dec-2012).\r\n\r\n<li><b>Tournament Announcement:</b> Announcement about some form of tournament.\r\n<li><b>Feature Info:</b> Used to spread information about specific features, e.g. after Dragon server upgrades, or to give hints and tips how to avoid often seen user mistakes.\r\n<li><b>Private Announcement:</b> Announcements from users to other users.  Only specific use cases are allowed or must be allowed by an admin.  One main use case is to talk with the other players of a <home faq.php?read=t&cat=305&e=306#Entry306>multi-player-game</home>.\r\n<li><b>Advertisement:</b> Advertisements from users to other users.  Must be granted by an admin.\r\n</ul>\r\n\r\nThe last four categories are more informal and can be unsubscribed from, if you are not interested in such announcements.  To subscribe or unsubscribe them see \"<i>Show Bulletin Categories</i>\" in your <home edit_profile.php>user profile</home>.  You are unsubscribed from the category <i>Advertisement</i> per default as this must be an opt-in category regarding the <home policy.php>server policy</home>.\r\n\r\nEach bulletin also has a <b>target type</b> specifying the receiving users:\r\n<ul>\r\n<li><b>All users:</b> bulletin is shown to all users.\r\n<li><b>User list:</b> bulletin is only shown to a specific list of users.\r\n<li><b>MP-game:</b> bulletin is only shown to the players of a <home faq.php?read=t&cat=305&e=306#Entry306>multi-player-game</home>.  A link to the game-players page of the game is included in the bulletin.\r\n<li><b>Tournament directors:</b> bulletin is only shown to tournament directors of a specific tournament given by the tournament-ID.  A link to the tournament is included in the bulletin.\r\n<li><b>Tournament participants:</b> bulletin is only shown to tournament participants of a specific tournament given by the tournament-ID.  A link to the tournament is included in the bulletin.\r\n</ul>', 'FAQ', 'Y', 'USED', '2012-12-09 16:26:09'),
(5287, 'What are the items on the Features page?', 'FAQ', 'N', 'USED', '2012-12-09 16:29:26'),
(5288, '## TODO several pages:\r\n* feature vote results page, feature to vote on (bulk-neutral-vote), my feature votes, single feature-view\r\n\r\n* Vote ID\r\n* Status\r\n* Size\r\n* Subject\r\n* My Points\r\n* Points\r\n* #Votes\r\n* #Y\r\n* #N\r\n\r\n# links to single-feature for voting\r\n\r\n<hr>\r\n* new topic about \"voting on features\" in \"Dragon menus\"-section: feature-vote-page, feature-vote-results; links from main-menu (features -> vote-results), New-features to feature-voting\r\n* features only added by feature-admin (when properly discussed in forums, and not outright opposed by developer)\r\n* features to ask community for \"urgent\"-required features\r\n* voting with points (+ or - or neutral) with max. 5p per feature, vote-status (new, vote, work, done, live, nack), size (S, M, L, XL, XXL, EPIC)\r\n* voting possible if moved in game within 30d, min 5 rated games; feature-points increased by 1p every 20days if moved within last 6 weeks\r\n* points are returned if feature is implemented or rejected', 'FAQ', 'N', 'USED', '2012-12-09 16:29:26'),
(5289, 'How do I know that there are hidden or secret game comments?', 'FAQ', 'Y', 'USED', '2012-12-09 16:35:11'),
(5290, 'A game can have <home faq.php?read=t&cat=365&e=75#Entry75>hidden and secret comments</home> written by the players using the &lt;hidden&gt;hidden comment&lt;/hidden&gt; &lt;mysecret&gt;secret comment&lt;/mysecret&gt; tags (or the short-forms &lt;h&gt;hidden comment&lt;/h&gt; and &lt;m&gt;secret comment&lt;/m&gt;) in move messages.  The <i>hidden comments</i> are visible by the author and to other users only after the game has finished.  The <i>secret comments</i> are visible by the author and to the game opponents only after the game has finished but are never visible to all other users.\r\n\r\nHidden and secret comments for a game are shown:\r\n<ul>\r\n<li>On the list with all finished games and my finished games there\'s a column \"<i>(Hidden comments)</i>\" in the table listing, that can be added.  In the column the <image game_comment.gif>-icon appears for games with hidden or secret comments.  Hover with the mouse over the icon to see the tooltip telling what kind of comments are in the game.\r\nWith the filter in the table-header it\'s also possible to search for games with hidden/secret comments.\r\n<li>On the game-page right to the Comments link the <image game_comment.gif>-icon appears if there are hidden or secret game comments (for finished games only).\r\n<li>In the game end message that the system sends to all players and observers after a game has been finished, a hint is included, that the game contains hidden comments.  A hint for secret comments is also included in the mails to the players, but is not sent to the observers.\r\n</ul>', 'FAQ', 'Y', 'USED', '2012-12-09 16:35:11'),
(5291, 'What are Search Profiles?', 'FAQ', 'Done', 'USED', '2012-12-09 16:41:09'),
(5292, 'Below most of the table listings with <home faq.php?read=t&cat=200&e=246#Entry246>filters</home> on Dragon there\'s a \"<i>Search</i>\" button and a select-box to the left with actions to modify the used filter values for a search.\r\n\r\nThere are actions to use the current filter values, clear or reset the values.  The other actions in the select-box allows to save or load the filter values of the current <i>search</i>.\r\n\r\nHere\'s a brief explanation of the actions in the select-box:\r\n<ul>\r\n<li><b>Current values:</b> The default-selection for a search, which is using all new filter-values, that a users enters. So the \"<i>current values</i>\" (from the filters) are used for a search.\r\n\r\n<li><b>Clear values:</b> This is a search with all filters cleared (emptied). Also the default-values are cleared (e.g. the \"Last move\"-day restriction to avoid too heavy queries for the show-games-page).  This does not change a saved profile, it\'s only changing the next search.\r\n\r\n<li><b>Reset values:</b> This is a search with all filter-values reseted to their defaults (as it\'s provided in the site-code).  This does not change a saved profile, it\'s only changing the next search.\r\n\r\n<li><b>Save as default:</b> This selection saves the current used filter-values as the <i>default-search</i>.  For example you can set the maximum rows in the waiting-room to 100 rows, select the action \"<i>Save as default</i>\" and press \"<i>Search</i>\".  This will save this particular query as the default.  So the next time you open the Waiting-room that default-search is used instead.\r\n\r\n<li><b>Save profile:</b> This also saves the filter-values as search-profile, but the difference is, that it\'s not used implicitly when the page is opened anew (still the site-code default is used).  Instead, it needs to be explicitly loaded with the \"<i>Load profile</i>\" action, that appears when a search is saved (either as non-default or default profile).\r\n\r\n<li><b>Load profile:</b> Load saved filter-values from search-profile (default or non-default).  There\'s only <i>ONE</i> search profile.  The difference of usage is just, if it\'s used as default or not.\r\n\r\n<li><b>Delete profile:</b> The saved search-profile will be deleted, which means on next page opening, the side-coded default search is used again.\r\n</ul>\r\n\r\nBesides the <i>filter-values</i>, also the <i>max. rows, sort columns and sort order</i> is saved in the search profile.\r\n\r\nNot all table listings support search profiles, and not all table listings support all actions.', 'FAQ', 'Y', 'USED', '2012-12-09 16:41:09'),
(5293, 'What are the items on the Statistics page?', 'FAQ', 'Y', 'USED', '2012-12-09 16:45:27'),
(5294, 'The <home statistics.php>statistics page</home> provides some statistical data about the users and games of the server.\r\n\r\nThe <i>standard view</i> shows a table with the number of games and moves on the server showing how many games are in:\r\n<ul>\r\n<li>KOMI = <home faq.php?read=t&cat=357&e=393#Entry393>fair-komi negotiation</home>\r\n<li>SETUP = setup-mode of <home faq.php?read=t&cat=305#Entry306>multi-player-game</home>\r\n<li>INVITED = setup for <home faq.php?read=t&cat=357&e=212#Entry212>game-invitations</home>\r\n<li>PLAY = games in playing-mode\r\n<li>PASS = games where player has passed a move\r\n<li>SCORE, SCORE2 = games in scoring mode\r\n<li>FINISHED = finished games\r\n</ul>\r\n\r\nThe next <i>Statistics graph</i> shows the accumulated number of running games and users from the server foundation in 2001 till the present with one data-point per day.\r\n\r\nNext graph shows a <i>Rating histogram</i> with a distribution of <home faq.php?read=t&cat=105#Entry105>ratings</home> amoung the active users on DGS.\r\n\r\nOn the top there is a link to a <i>Statistics about user countries distribution</i>.  The table shows the country (represented by its flag) and the number of users that selected that particular country.  Below the table the <i>remaining countries</i> with flags are shown, that are not chosen.', 'FAQ', 'Y', 'USED', '2012-12-09 16:45:27'),
(5295, 'Is there a Rank converter?', 'FAQ', 'Y', 'USED', '2012-12-09 16:47:28'),
(5296, 'Dragon provides a <home rank_converter.php>rank converter</home>, which is based on the <_http://senseis.xmp.net/?RankWorldwideComparison |rank comparisons from Sensei`s Library>.  It\'s useful to convert ranks or ratings from other go-servers or other rating-systems into a rating used on DGS.  The page to enter an initial DGS rating has the same rank converter, so you can directly enter the other rank or rating there.', 'FAQ', 'Y', 'USED', '2012-12-09 16:47:28'),
(5297, 'How many games can I start at the same time?', 'FAQ', 'Y', 'USED', '2012-12-09 16:49:00'),
(5298, 'The number of simultaneous games you can start is currently 200 games.  If the limits is reached you get an error when you want to join a game or invite another player to a game.  Other players get an error as well if they want to invite you to more games if your limit is reached.\r\n\r\nIf 75% of the maximum number of games is reached a warning is given when you want to start new games.  We advise you not to start too much games, because then you have no reserves.  It\'s also easy to loose track when there are too many games at once.', 'FAQ', 'Y', 'USED', '2012-12-09 16:49:00'),
(5299, 'What are Templates?', 'FAQ', 'Done', 'USED', '2012-12-09 16:52:03'),
(5300, '<i>Templates</i> can be used to store standard input values for sending private messages, for the game-settings of invitations and waiting-room game-offers.  Each user has its own templates; they are not shared.\r\nWhen you have a standard set of game-settings you use often, you can save it as a template, so you don\'t have to remember all the values.\r\n\r\nYou can save a template under a given name, which must be unique per user and not exceed 10KB in text size.  Each user can save up to 30 templates in total for the three types of templates (message, invitation, new-game).\r\n\r\nRelated help entries:\r\n<ul>\r\n<li><home faq.php?read=t&cat=17&e=389#Entry389>How to save a template?</home>\r\n<li><home faq.php?read=t&cat=17&e=390#Entry390>How to use a template?</home>\r\n</ul>\r\n\r\nThe <home templates.php>templates page</home> can be reached from various pages: <home faq.php>FAQ</home>, <home message.php?mode=NewMessage>Send Message</home>, <home new_game.php>New Game</home>, <home site_map.php>Site map</home>', 'FAQ', 'Y', 'USED', '2012-12-09 16:52:03'),
(5301, 'How to start a fair-komi game?', 'FAQ', 'Done', 'USED', '2012-12-09 17:03:18'),
(5302, 'A <b>fair-komi game</b> can be started as an even game without handicap stones by an <home faq.php?read=t&cat=357&e=212#Entry212>invitation</home> or by creating a <home faq.php?read=t&cat=357&e=210#Entry210>new fair-komi game offer in the waiting room</home>.\r\nFair-komi games are not supported for <home faq.php?read=t&cat=305&e=306#Entry306>multi-player-games</home> or for Dragon Tournaments.\r\n\r\nFor a fair-komi game you must choose from one the four <home faq.php?read=t&cat=357&e=393#Entry393>fair-komi handicap-types</home> and choose from one of the options for \"<i>Jigo-Check</i>\".  The other game-settings are described in <home faq.php?read=t&cat=357&e=210#Entry210>How to add a game offer in the waiting room</home> and are not repeated here.\r\n\r\nThe options for <b>Jigo-Check</b> influence the checks on the komi bids during the <i>komi negotation phase</i> for fair-komi games:\r\n<ul>\r\n<li><b>No Jigo restrictions:</b> the komi bids can increase by 0.5 point steps.\r\n<li><b>Enforce Jigo:</b> the komi bids can only be whole numbers (no fractional part thereby allowing Jigo).\r\n<li><b>Forbid Jigo:</b> the komi bids must be fractional always ending with a .5 to prevent a Jigo.\r\n</ul>\r\n\r\nWhen your game offer is accepted, the fair-komi game starts with the <b>komi negotiation phase</b>.  From this point on forward, the game clocks are running.  The game page (and <home faq.php?read=t&cat=18&e=320#Entry320>game-info page</home>) show instructions how to do the bidding on komi (or to choose the playing color).\r\n\r\nFinally here\'s a hint: If you are undecided how to do your komi bids, you should ask yourself: \"Would I rather play White or Black with this komi?\"', 'FAQ', 'Y', 'USED', '2012-12-09 17:03:18'),
(5319, 'How can I change the order of the status games?', 'FAQ', 'Y', 'USED', '2012-12-16 18:45:55'),
(5303, 'Can I reject a win of a game?', 'FAQ', 'Done', 'USED', '2012-12-09 17:08:44'),
(5304, '<note>forum discussion: http://www.dragongoserver.net/forum/read.php?forum=4&thread=18683#32834</note>\r\n\r\nWhen you are <b>winning a rated game by a timeout of your opponent</b>, the game will be changed to unrated (\"<i>timeout rejected</i>\") if the losing opponent did not move in any of his games for a certain amount of time (X days).\r\n\r\nThe number of days the loser has not moved in any game can be configured in the <home edit_profile.php>user profile</home> with the \"<i>Reject win by timeout</i>\" setting.  To put the option into effect, it must also be activated with the checkbox for that option.\r\n\r\nThe current state of that feature configuration is shown on the user-info page in the field \"<i>Reject win by timeout</i>\".  It\'s a private data field, which is not shown to other users (to avoid that users are \"pressed\" into some behavior).  Shown values are either \"<i>disabled</i>\" or \"<i>X days</i>\".\r\n\r\nThe motivation for this feature option was to give the winner the chance to say:\r\n\"<i>I don\'t want points I have not earned (simply because my opponent timed out).</i>\"\r\n\r\nExamples:\r\n<ul>\r\n<li>Choose X=0 (days), if you ALWAYS want to reject wins on timeouts.\r\n<li>Choose X=7 (days), means that the game is counted as timeout when the opponent last moved within the last 7 days.  The win will be \"rejected\" when the opponents last-move is older than 7 days.\r\n<li>The higher X is, the more likely it is, that the opponent is not returning or left the server.\r\nSo choosing a X > 0 assumes the opponent does not want or waits finishing the game within the last X days.  In which case you wouldn\'t want to treat it as timeout-rejection and take the (rated) win.\r\n</ul>', 'FAQ', 'Y', 'USED', '2012-12-09 17:08:44'),
(5305, 'Can I start a game with the same settings of an existing game?', 'FAQ', 'Y', 'USED', '2012-12-09 17:09:46'),
(5306, 'Yes.  There are two ways you can accomplish that:\r\n\r\n<ol>\r\n<li>When you create a game or invite another player you can save the game settings in a <home faq.php?read=t&cat=17&e=350#Entry350>template</home>, then open the template for a new-game or invitation.\r\n\r\n<li>On the <home faq.php?read=t&cat=18&e=320#Entry320>game-info page</home> for a game you find two links:\r\n<ul>\r\n<li><b>Rematch</b> : This opens a new invitation with the same game-settings as the game was started with.\r\n<li><b>Copy as new game</b> : This opens a new game-offer for the waiting-room with the same game-settings as the game was started with.\r\n</ul>\r\n\r\nOn games started before Jun-2012 the original game-settings were not stored and so defaults are used for some of the game-settings.\r\n</ol>\r\n\r\n<u>Important Note:</u>\r\nIt does not matter how the game was started or saved as template (invitation, new-game offer).  The game-settings are adjusted accordingly for the operation (use saved template, rematch or copy new game).', 'FAQ', 'Y', 'USED', '2012-12-09 17:09:46'),
(5307, 'What are the items in the main-menu?', 'FAQ', 'N', 'USED', '2012-12-09 17:11:09'),
(5308, '* main-menu is positionable (left-side or top) -> edit-profile\r\n* links to main-features with links: status, wroom, user-info, msg + NEW-indicator (N), send-msg, inv, new-game, users, contacts, games, intro, help/faq, site-map, docs, forums + NEW-indicator (*), bulletins + NEW-indicator (N), features + NEW-indicator (N)', 'FAQ', 'N', 'USED', '2012-12-09 17:11:09'),
(5309, 'What are all the items in the user profile page?', 'FAQ', 'Y', 'USED', '2012-12-09 17:14:00'),
(5310, 'Here is a brief explanation of the profile settings on the <home edit_profile.php>user profile page</home>, that can be changed by the user.\r\n\r\nThere are the <b>Personal settings</b> to be shown on the <home userinfo.php>user-info page</home> and to influence some behavior of game-ending and bulletins:\r\n<ul>\r\n<li>Fields shown on the <home faq.php?read=t&cat=12&e=203#Entry203>user-info page</home>: <b>Name, Open for matches?, Country, Time zone, <home faq.php?read=t&cat=12#Entry63>Night time</home>, <home faq.php?read=t&cat=18&e=352#Entry352>Reject Win by Timeout</home></b>\r\n<li><b>Language</b> of site texts\r\n<li><b>Bulletin Categories:</b> Subcribe or unsubscribe from certain <home faq.php?read=t&cat=17&e=343#Entry343>bulletin categories</home>\r\n</ul>\r\n\r\nThe next section is about preferences for site <b>Appearance</b>:\r\n<ul>\r\n<li><b>Table max rows:</b> Sets the default number of rows for all table listings (<home users.php>users</home>, <home show_games.php>game listings</home>, etc).  The default can be overridden on the respective pages by <home faq.php?read=t&cat=17&e=346#Entry346>storing a search profile</home>.\r\n<li><b>Enable JavaScript:</b> The site provide some convenience functions if JavaScript is enabled: <home faq.php?read=t&cat=17&e=228#Entry228>marking rows in table listings</home>, showing game-thumbnails on the <image info.gif> and <image shape.gif> icons, auto-selection for <home faq.php?read=t&cat=17&e=317#Entry317>bookmarks</home> or viewing a move on the game-page\r\n<li><b>Menu direction:</b> The <home faq.php?read=t&cat=17&e=354#Entry354>main-menu</home> can be positioned on the left (vertically) or on the top (horizontally).\r\n<li><b>ID button:</b> The button-graphics used for some identifier-columns in the table-listings of some pages.  You can also choose \"<i>No button</i>\".\r\n</ul>\r\n\r\nThe next section configures <b>Board graphics</b>:\r\n<ul>\r\n<li><b>Stone size:</b> The size of the stones on a game-board.\r\n<li><b>Wood color:</b> The color or textures of the game-board.\r\n<li><b>Smooth board edge:</b> Controls if the game-board has smooth edges.\r\n<li><b>Move numbering:</b> This includes a whole group of settings to <home faq.php?read=t&cat=12&e=235#Entry235>number game-moves</home>.\r\n</ul>\r\n\r\nThe last section contains settings for the <home faq.php?read=t&cat=365&e=229#Entry229><b>Private game notes</b></home>:\r\n<ul>\r\n<li><b>Position:</b> The position of the game-notes input-box on the game-page relative to the game-board (right or left of it).  Enabling the <b>Hidden</b> flag defines the default state of the game notes for all games.\r\n<li><b>Size:</b> The text width and height of the game-notes input-box.\r\n\r\n<li>The position and size can be configured differently for games of different board-size.  The difference between <b>Large</b> and <b>Small boards</b> can be selected right to the \"<i>Large boards from</i>\" text.\r\n</ul>\r\n\r\nThe settings of the last three sections (Appearance, Board graphics, Private game notes) can be saved only for your current browser (using a browser-cookie).  To do this enable the checkbox right above the \"<i>Change profile</i>\" submit-button.', 'FAQ', 'Y', 'USED', '2012-12-09 17:14:00'),
(5311, 'Dragon site access', 'FAQ', 'Done', 'USED', '2012-12-16 14:59:57'),
(5312, 'Dragon game setup', 'FAQ', 'Done', 'USED', '2012-12-16 15:18:43'),
(5313, 'Dragon users', 'FAQ', 'Done', 'USED', '2012-12-16 15:20:15'),
(5315, 'Dragon messaging', 'FAQ', 'Done', 'USED', '2012-12-16 15:24:52'),
(5316, 'Dragon contacts', 'FAQ', 'Done', 'USED', '2012-12-16 16:10:26'),
(5317, 'How can I communicate with other users?', 'FAQ', 'N', 'USED', '2012-12-16 16:26:46'),
(5318, 'To talk privately with another user you can <home message.php?mode=NewMessage>send a message</home> using Dragon\'s messaging system.\r\n\r\nFor that you only need to know the recipients user-id, which can be found in the \"Userid\"-row on the <home faq.php?read=t&cat=12&e=203#Entry203>user info page</home>.\r\nOn same pages there are also direct links to open the page to send a message to a particular user.\r\n\r\nFor other ways to communicate, see: <home faq.php?read=t&cat=339&e=362#Entry362>How can I communicate with other users?</home>', 'FAQ', 'N', 'USED', '2012-12-16 16:26:46'),
(5322, 'Your running games can be ordered by a numeric priority, that can be set by the user on the respective <home faq.php?read=t&cat=18#Entry320>game-info page</home> for each of your own games.  Below the <i>Game settings</i> section you find an input field to enter a numeric priority in the range of [-32768..32767] and the \"<i>Set priority</i>\" button to save it.  Please note, that the priority value of \"0\" is shown as an empty field.\r\n\r\nWhen a game is finished, the game priority will be automatically deleted.\r\n\r\nThe game priority can be used on the pages:\r\n<ul>\r\n<li><b>status page:</b> The <home faq.php?read=t&cat=18#Entry363>status games can be ordered</home> by the game priority.  In this case, the priority column is automatically shown.  Otherwise the priority table column is normally hidden.  \r\n\r\n<li><b>my running games page: </b> The priority table column is normally hidden.  Here a normal sort with a click on the table header is possible as no special handling is required like for the status page.\r\n</ul>', 'FAQ', 'Y', 'USED', '2012-12-16 18:49:33'),
(5323, 'Dragon game playing', 'FAQ', 'Done', 'USED', '2012-12-16 21:14:29'),
(5324, 'Dragon administration', 'FAQ', 'Y', 'USED', '2012-12-17 11:49:04'),
(5361, '[translator only] How to translate texts?', 'FAQ', 'N', 'USED', '2012-12-17 13:12:25'),
(5325, 'What are the admin roles?', 'FAQ', 'N', 'USED', '2012-12-17 12:20:35'),
(5326, 'There are different <b>roles</b> for the administrators of DGS:\r\n<ul>\r\n<li><i>Super Admin:</i> Role to assign roles to other users <home faq.php?read=t&cat=366&e=375#Entry375>making them admins</home>.\r\n<li><i>Database:</i> Allows access to several fix-scripts manipulating the database directly.\r\n<li><i>Skin:</i> Allows to change <i>skin</i> of server (experimental feature).\r\n<li><i>Translators:</i> Allows to <home faq.php?read=t&cat=366&e=369#Entry369>add new translation-languages and to add new translators</home>.\r\n</ul>\r\n\r\nThere are users called <b>executives</b> marked with a <image admin.gif>-icon with the following <i>admin-roles</i>.  These executives are be able to potentially help users directly regarding specific problems:\r\n<ul>\r\n<li><i>Developer:</i> Can do a great deal of special admin tasks.\r\n<li><i>FAQ:</i> Allows to <home faq.php?read=t&cat=366&e=370#Entry370>edit the FAQ, Introduction and Links pages</home>.\r\n<li><i>Feature:</i> Allows to create and <home faq.php?read=t&cat=366&e=372#Entry372>edit features for voting</home>.\r\n<li><i>Forum:</i> Allows to <home faq.php?read=t&cat=366&e=342#Entry342>moderate forum posts</home>.\r\n<li><i>Game:</i> Allows to <home faq.php?read=t&cat=366&e=383#Entry383>finish games or change a games rated-state</home>.\r\n<li><i>Password:</i> Allows to <home faq.php?read=t&cat=366&e=368#Entry368>send new passwords</home> to users.\r\n<li><i>Survey:</i> Allows to <home faq.php?read=t&cat=366&e=373#Entry373>create and edit surveys to vote on</home>.\r\n<li><i>Tournament:</i> Allows to administrate and fix tournaments.\r\n</ul>\r\n\r\nThe <home people.php>people page</home> lists users with their assigned admin-roles.', 'FAQ', 'N', 'USED', '2012-12-17 12:20:35'),
(5327, '[password-admin only] How to send a new password?', 'FAQ', 'N', 'USED', '2012-12-17 12:21:54'),
(5328, 'Follow the \"<i>Admin</i>\" link in the bottom-bar and click on the link \"<i>New password</i>\".  Or follow the follow link: <home admin_password.php>New password</home>.\r\n\r\nEnter the user-id in the bottom form to show if there\'s is an email on record.\r\n\r\nUse the upper form to send a new password:\r\n<ul>\r\n<li>Enter the user-id (e.g. \"ejlo\")\r\n<li>Enter the new email-address\r\n<li>Enable the checkbox to \"<i>overwrite the current new password process</i>\"\r\n<li>Submit \"<i>Send password</i>\"\r\n</ul>\r\n\r\nIn case of a request in the forum for guest-users and after the sending of the new password, \"reject\" the post in the forum in moderator mode ON.  Pending posts can be easily found via the forum-log (see \"Admin\"-page bottom-bar or page bottom of forum-list page).\r\n\r\nSadly there\'s no way to verify if the asking user is the one from the account unless there\'s an email already in the account (but which may be an old one).  Or checking the names.', 'FAQ', 'N', 'USED', '2012-12-17 12:21:54'),
(5329, '[translator-admin only] How to manage translators?', 'FAQ', 'N', 'USED', '2012-12-17 12:23:35'),
(5330, '* manage translators: add transl-langs, set translator-privileges for user (langs add/remove)', 'FAQ', 'N', 'USED', '2012-12-17 12:23:35'),
(5331, '[FAQ-editor only] How to edit the FAQ, Introduction and Links?', 'FAQ', 'N', 'USED', '2012-12-17 12:24:52'),
(5332, '* edit faq / intro / links : search, move-dist, expand/collapse, sections/Q/A, move up/down/cat-up/cat-down, new cat/entry, hide/unhide, transl/untransl; delete entry (only in db)', 'FAQ', 'N', 'USED', '2012-12-17 12:24:52'),
(5333, '[bulletin-admin only] How to admin bulletins?', 'FAQ', 'N', 'USED', '2012-12-17 12:25:29'),
(5334, 'admin bulletins: new admin bulletin (cat, status, type+extra, adm-note, author, publish-time, expire-time, subj, text)\r\n\r\n\r\n<note>\r\nRelated topics: see \"What are Bulletins?\"\r\n* see \"How to create and edit bulletins?\" (admin-created user-bulletins)\r\n** fields: How to create/edit a bulletin (describe fields: category, status, target-type, admin-note, author, publish-time, expire-time, subject, text; input by user: expire, subj, text)\r\n</note>', 'FAQ', 'N', 'USED', '2012-12-17 12:25:29'),
(5335, '[feature-admin only] How to admin features?', 'FAQ', 'N', 'USED', '2012-12-17 12:25:56'),
(5336, 'admin features: new/edit, status, size, subj, desc; status-change influence points', 'FAQ', 'N', 'USED', '2012-12-17 12:25:56'),
(5337, '[survey-admin only] How to admin surveys?', 'FAQ', 'N', 'USED', '2012-12-17 12:26:20'),
(5338, '* admin surveys: new/edit, type (points/sum/single/multi), status, points(min/max), title, opts, ulist; see specs', 'FAQ', 'N', 'USED', '2012-12-17 12:26:20'),
(5339, '[developer only] How to admin forums?', 'FAQ', 'N', 'USED', '2012-12-17 12:27:51'),
(5340, '* admin forums: new/move-up/down, delete? (adm); desc, moderated, read-only, adm/dev-type', 'FAQ', 'N', 'USED', '2012-12-17 12:27:51'),
(5341, '[superadmin only] How to admin admins?', 'FAQ', 'N', 'USED', '2012-12-17 12:29:19'),
(5342, 'edit admin-staff setting admin-roles', 'FAQ', 'N', 'USED', '2012-12-17 12:29:19'),
(5343, '[FAQ-editor only] What are the items on the FAQ log page?', 'FAQ', 'N', 'USED', '2012-12-17 12:31:17'),
(5344, '* ID, Type, User, Time, Ref ID, Question & Reference, Answer\r\n* no search', 'FAQ', 'N', 'USED', '2012-12-17 12:31:17'),
(5345, '[developer only] What are the items on the Error log page?', 'FAQ', 'N', 'USED', '2012-12-17 12:34:10'),
(5346, '* what use-cases are shown?\r\n* ID, uid, User, Time, Message! (errcode), Request, DB error, Debug info, IP\r\n* filter: ID, time, msg', 'FAQ', 'N', 'USED', '2012-12-17 12:34:10'),
(5347, '[developer only] What are the items on the Admin log page?', 'FAQ', 'N', 'USED', '2012-12-17 12:34:58'),
(5348, '* what use-cases are shown?\r\n* ID, Admin, User, time, Message, IP', 'FAQ', 'N', 'USED', '2012-12-17 12:34:58'),
(5349, 'What can admins do?', 'FAQ', 'N', 'USED', '2012-12-17 12:36:59'),
(5350, '* admin-actions page: ref to other topics\r\n** contacts: reject msg from admin not possible\r\n** bulletins: view/edit all bulletins\r\n\r\n* admin-scripts: translations; cache-admin; server-admin; consistency; Info; Migration-scripts\r\n\r\n* docs: people-page (with translator-last-action-date), statistics (extra-data: CPU-load-avg)', 'FAQ', 'N', 'USED', '2012-12-17 12:36:59'),
(5351, '[some admins only] How to send a bulk message?', 'FAQ', 'N', 'USED', '2012-12-17 12:40:22'),
(5352, '* only (ADMIN_DEVELOPER|ADMIN_FORUM|ADMIN_GAME)\r\n* send-msg + space-separated user-list in \'To\'-field\r\n* watch preview (for correct users)\r\n* bulk only 1st msg, no bulk-reply\r\n* view in msg-list', 'FAQ', 'N', 'USED', '2012-12-17 12:40:22'),
(5353, '[developer only] How to admin users?', 'FAQ', 'N', 'USED', '2012-12-17 12:42:34'),
(5354, '* link from user-info page, or via page entering user-id\r\n* see additional user-info (reject-win, MPGs, clock-used; admin-user, new-bull)\r\n\r\n* edit user attributes: user-type (pro/teacher/bot), handle, name, quota-stuff, vac-days, adm-opts (deny login, edit-bio+user-pic, feat-vote, surv-vote, T-creation, T-reg, hide-bio+user-pic, view adm-forum, view dev-forum, deny-new/edit-forum-posts, moderate new/edit-forum-posts, adm-note, block-reason); user-info (session-expire, browser, IP, Lang, Email, SendEmail, Notify, UserFlags, dates, Actitivy, Hits)', 'FAQ', 'N', 'USED', '2012-12-17 12:42:34'),
(5355, '[executive only] How to view administrated users?', 'FAQ', 'N', 'USED', '2012-12-17 12:44:41'),
(5356, 'show administrated users', 'FAQ', 'N', 'USED', '2012-12-17 12:44:41'),
(5357, '[game-admin only] How to admin games?', 'FAQ', 'N', 'USED', '2012-12-17 12:47:12'),
(5358, '* admin game-info (clock-used, detail g-status; game-calc, admin-game!!)\r\n\r\n* admin-game: set game-result (B/W score/resign/timeout/jigo); change rated-status (Y/N); delete game (+msg)', 'FAQ', 'N', 'USED', '2012-12-17 12:47:12'),
(5359, '[game-admin only] How to change a users rating?', 'FAQ', 'N', 'USED', '2012-12-17 12:48:24'),
(5360, '* link from user-info page\r\n* admin user rating: set new rating, reset confidence interval\r\n* not own', 'FAQ', 'N', 'USED', '2012-12-17 12:48:24'),
(5362, '* bottom-bar Translate-link\r\n* choose lang to translate + encoding (if not default in user-profile), e.g. translator for multi-langs\r\n* readme-text\r\n\r\n* entries to translate + pager/navi + 10 entries (left original + preview, right translation + preview + untransl/unchanged-checkbox + last-update)\r\n* apply translation changes, preview transl\r\n* filter: BEST to choose one group (not default selection)\r\n* filter on search term (original english): untranslated | translated | all texts\r\n* \"Select language to translate to:\" for change lang (multi-langs)', 'FAQ', 'N', 'USED', '2012-12-17 13:12:25'),
(5363, 'What are the items for a game offer?', 'FAQ', 'Y', 'USED', '2012-12-17 18:47:32');
INSERT INTO `TranslationTexts` (`ID`, `Text`, `Type`, `Translatable`, `Status`, `Updated`) VALUES
(5364, 'If you select the <i>Info</i> for one of the game offers in the <home waiting_room.php>waiting-room</home> or you received a game invitation or dispute, an info table contains information about what game settings would be used if you join the particular game offer.\r\n\r\nHere\'s a brief explanation of the fields in the main <b>Info</b> section (in the order of appearance).  Please take note, that not all fields are available for all views:\r\n<ul>\r\n<li><b>Number of games:</b> number of offered games in waiting-room with same settings\r\n<li><b>Number of game-players:</b> number of free slots for <home faq.php?read=t&cat=305&e=306#Entry306>multi-player-game</home>\r\n<li><b>Player:</b> name and user-if of opponent\r\n<li><b>Rating:</b> rating of opponent\r\n<li><b>Started games:</b> number of already started and running games with opponent\r\n<li><b>Shape Game:</b> information about <home faq.php?read=t&cat=329&e=314#Entry314>shape for shape-game</home>\r\n<li><b>Game Type:</b> see <home faq.php?read=t&cat=357&e=387#Entry387>Game Types</home>\r\n<li><b>Ruleset:</b> Japanese rules\r\n<li><b>Size:</b> board size\r\n<li><b>Type:</b> see <home faq.php?read=t&cat=357&e=387#Entry387>Handicap Types</home>\r\n<li><b>Colors:</b> the colors given for the opponent and yourself in the game (if possible to calculate at the time)\r\n<li><b>Handicap:</b> number of handicap stones from game-offer (may be different from actual handicap used for game, see \"Game settings\" below)\r\n<li><b>Komi:</b> komi from game-offer (may be different from actual handicap used for game, see \"Game settings\" below)\r\n<li><b>Handicap adjustment:</b> Adjustment for handicap stones (increase, reduction of stones); minimum and maximum handicap\r\n<li><b>Standard placement:</b> free or standard placement of handicap stones\r\n<li><b>Komi adjustment:</b> Adjustment for komi (increase, reduction of komi)\r\n<li><b>Rating restrictions:</b> Accepted rating range of your rating; you are not allowed to join if red background is shown.\r\n<li><b>Accept same opponent:</b> restrictions that show how often the same opponent can join the same game offer; you are not allowed to join if red background is shown\r\n<li><b>Main time:</b> <home faq.php?read=t&cat=56&e=85#Entry85>main-time</home> used for game\r\n<li><b>Japanese byoyomi, Canadian byoyomi, Fischer time:</b> extra time used for game\r\n<li><b>Rated game:</b> if game is rated or unrated\r\n<li><b>Clock runs on weekends:</b> Yes = clock runs on weekend, No = clock stopped on weekend\r\n<li><b>Comment:</b> Comment of game-offer from waiting-room\r\n</ul>\r\n\r\nWhat follows is a section with the <b>Game settings</b> or <b>Probable game settings</b>:\r\n<ul>\r\n<li>The section \"<i>Probable game settings</i>\" contains a probable handicap calculus according to your current rating.  It\'s called <i>probable</i>, because a lot of things can happen while you are just reading it, e.g. the rating of the user can be changed, which also changes the calculated settings.\r\n\r\n<li><b>Color:</b> The color field may contain a nice image indicating which color you get in the game:\r\n<ul>\r\n<li><image board/w.gif> : you get White color\r\n<li><image board/b.gif> : you get Black color\r\n<li><image board/y.gif> (yin-yang symbol) : your color is chosen by random indicating an even or handicap game with <home faq.php?read=t&cat=3&e=21#Entry21>nigiri</home>\r\n<li><image board/w.gif> + <image board/b.gif> : <home faq.php?read=t&cat=357&e=111#Entry111>double game</home>, you get one game with White and one with Black color\r\n</ul>\r\n\r\n<li><b>Handicap:</b> number of <home faq.php?read=t&cat=357&e=97#Entry97>handicap stones</home> used for the actual game\r\n<li><b>Komi:</b> <home faq.php?read=t&cat=3&e=9#Entry9>komi</home> used for the actual game\r\n<li><b>Jigo-Check:</b> Jigo mode for fair komi\r\n</ul>', 'FAQ', 'Y', 'USED', '2012-12-17 18:47:32'),
(5365, 'What types are there for a game offer?', 'FAQ', 'Y', 'USED', '2012-12-17 19:11:47'),
(5366, 'A game offer (invitation or waiting-room) has two kind of types:\r\n\r\n<b>Game-Type:</b>\r\n<ul>\r\n<li><i>Go</i> : the standard (non-multi-player) Go game\r\n<li><home faq.php?read=t&cat=305&e=307#Entry307>Team-Go</home> : multi-player-game with two teams playing each other\r\n<li><home faq.php?read=t&cat=305&e=308#Entry308>Zen-Go</home> : multi-player-game with odd number of players taking turns\r\n</ul>\r\n\r\n<b>Handicap-Type:</b> game-setting that influences the setup and start of a game; often referred to only as \"<i>Type</i>\":\r\n<ul>\r\n<li><b>Conventional:</b> see <home faq.php?read=t&cat=357&e=98#Entry98>Conventional handicap</home>\r\n<li><b>Proper:</b> see <home faq.php?read=t&cat=357&e=98#Entry98>Proper handicap</home>\r\n\r\n<li><b>Manual setting (even or handicap game):</b>\r\n<ul>\r\n<li><b>Nigiri:</b> see <home faq.php?read=t&cat=3&e=21#Entry21>Nigiri</home> (<home faq.php?read=t&cat=357&e=83#Entry83>even</home> or <home faq.php?read=t&cat=357&e=97#Entry97>handicapped</home> game)\r\n<li><b>Double:</b> see <home faq.php?read=t&cat=357&e=111#Entry111>Double game</home>\r\n<li><b>Color Black:</b> player that offers game gets Black color\r\n<li><b>Color White:</b> player that offers game gets White color\r\n</ul>\r\n\r\n<li><b>Fair Komi (even game):</b> see <home faq.php?read=t&cat=357&e=351#Entry351>Fair-komi game</home>\r\n<ul>\r\n<li><b>Open Auction:</b> Fair-komi game with an open auction to negotiate komi\r\n<li><b>Secret Auction:</b> Fair-komi game with a secret auction to negotiate komi\r\n<li><b>You cut, I choose:</b> Fair-komi game with Divide&amp;Choose, one player chooses komi, the other the color\r\n<li><b>I cut, You choose:</b> Fair-komi game with Divide&amp;Choose, one player chooses komi, the other the color\r\n</ul>\r\n</ul>', 'FAQ', 'Y', 'USED', '2012-12-17 19:11:47'),
(5367, 'How can I edit a goban in the Goban Editor?', 'FAQ', 'Y', 'USED', '2012-12-24 13:51:07'),
(5368, 'After creating an initial &lt;igoban>-tag in the <i>goban editor</i>, you can continue to edit the goban (board) using the \"<i>Preview</i>\"-button to view if the syntax is correct.\r\n\r\nLinks used in the diagram are all opening in new windows to avoid losing entered text.\r\n\r\nHere\'s a brief explanation of the other actions:\r\n<ul>\r\n<li><b>Switch Colors:</b> Switches the color of the black and white stones on the goban.\r\n\r\n<li><b>Flatten:</b> Cuts board to smaller dimension (width or height) to make it square.  Removes all markup, text, links leaving only black and white stones ready to be saved as shape to be used for <home faq.php?read=t&cat=329&e=314#Entry314>shape-games</home>.\r\n\r\n<li><b>Save Shape:</b> Flattens goban (see item before) and jumps to edit page to add additional attributes needed for shape.  Also see: <home faq.php?read=t&cat=329&e=338#Entry338>What are all those items on the page showing a single shape?</home>\r\n\r\n<li>If you use the goban in the forums or for messages, just <b>copy the &lt;igoban>-tag</b> to the target location.  When you later want to edit the goban again, you only need to copy the raw-format of the goban again into the <i>goban editor</i>.  This can be achieved by adding the URL-argument \'<tt>raw=1</tt>\' to the web-request.\r\n</ul>', 'FAQ', 'Y', 'USED', '2012-12-24 13:51:07'),
(5369, 'How to save a template?', 'FAQ', 'Y', 'USED', '2012-12-25 13:27:24'),
(5370, 'Here\'s an explanation how to <b>save a template</b>:\r\n<ul>\r\n<li><b>Save game-invitation template:</b> Open a <home message.php?mode=Invite>game invitation</home>, change the game-settings to your liking, then press \"<i>Save Template</i>\".\r\n<li><b>Save new-game template:</b> Open one of the views for a <home new_game.php>new game-offer</home> for the waiting-room, change the game-settings to your liking, then press \"<i>Save Template</i>\".\r\n<li><b>Save private message template:</b> Open the dialog to <home message.php?mode=NewMessage>send a private message</home>, fill in the standard text you want, then press \"<i>Save Template</i>\".\r\n</ul>\r\n\r\nYou are forwarded to the <home templates.php>Templates page</home>, where all your existing templates are shown.  You can save the data in one of the 30 available slots:\r\n<ul>\r\n<li><b>New template:</b> Select the radio-button \"<i>New template</i>\", enter a new (and unique) name, then press \"<i>Save Template</i>\".\r\n<li><b>Replace template:</b> Select the radio-button of the template you want to overwrite.  To use the same name, leave the name input field empty, otherwise enter a new name to rename it as well. Then press \"<i>Save Template</i>\".\r\n</ul>', 'FAQ', 'Y', 'USED', '2012-12-25 13:27:24'),
(5371, 'How to use a template?', 'FAQ', 'Y', 'USED', '2012-12-25 13:29:17'),
(5372, 'After you saved the form data, you can <b>use the template</b> in the following ways:\r\n<ul>\r\n<li>For each template, the \"<i>Actions</i>\" column shows the template actions (see below) you can perform for the template.\r\n<li>With \"New Game\"-templates you can also open new invitations or vice versa, though not in all cases.  For example, multi-player-game templates can not be used for invitations.\r\n<li>When you have a new invitation or private message with already entered recipient and you previewed it, the message page shows a bottom-link \"<i>Templates with user-id [...]</i>\".  Following this link, you can choose a template for invitation or private message and the original recipient is included in the form-data.  Like this you don\'t have to copy the user-id for later filling-in after choosing a template.\r\n</ul>\r\n\r\nThe <home templates.php>templates page</home> lists all your saved templates.  The table listing shows four columns:\r\n<ul>\r\n<li><b>Actions:</b> linked icons with template actions:\r\n<image invite.gif> : opens a new invitation with the saved template-data\r\n<image newgame.gif> : opens a new game-offer for waiting-room with the saved template-data\r\n<image send.gif> : opens the page to send a new private message with the saved template-data\r\n<image trashcan.gif> : delete template asking for confirmation first\r\n\r\n<li><b>Type:</b> template type: \"Message\", \"Invite\", \"New Game\"\r\n<li><b>Name:</b> template name\r\n<li><b>Last changed:</b> date of last change\r\n</ul>', 'FAQ', 'Y', 'USED', '2012-12-25 13:29:17'),
(5373, 'What is shown in the Settings column in the waiting room?', 'FAQ', 'Y', 'USED', '2012-12-26 01:38:31'),
(5374, 'The <home waiting_room.php>waiting room</home> has a column <i>Settings</i>, that shows the probable game settings used for a particular game offer.\r\nFor your own game offers, the Settings-field is empty or only contains \"(FH)\" to indicate <i>free handicap placement</i>.\r\n\r\nThe <b>Settings</b> field basically consists of two parts:\r\n<ul>\r\n<li>A <b>\"color\"-icon</b> with a tooltip telling about the likely color for the player to join, if you hover with the mouse over it.  This can be one of the following icons:\r\n<ul>\r\n<li><image board/y.gif> = indicates, that the color can not be determined yet (it\'s decided later)\r\n<li><image board/w.gif> = your color will (probable) be White\r\n<li><image board/b.gif> = your color will (probable) be Black\r\n<li><image board/w_b.gif> = you play a double-game, one as White and one as Black player\r\n</ul>\r\n\r\n<i>Probable</i> color means, that the color could when you join the game as in the meantime the players ratings could change which influences the color settings.  If the word \"<i>probable</i>\" is omitted, the color-setting is clear (e.g. with a manual handicap-type and fix color).\r\n\r\n<li><b>Additional information</b> about the <home faq.php?read=t&cat=357&e=97#Entry97>handicap</home> and <home faq.php?read=t&cat=3&e=9#Entry9>komi</home>.\r\nThe 2nd part can consist of a short text description or a special format for fair-komi games and multi-player-games.\r\n</ul>\r\n\r\nHere are some examples of the <i>Settings</i> field:\r\n<ul>\r\n<li><image board/y.gif> Even = <home faq.php?read=t&cat=357&e=83#Entry83>Even game with Nigiri</home> (no handicap stones)\r\n<li><image board/y.gif> H3 K-2 = Game with 3 handicap stones, -2 points komi and color chosen by <home faq.php?read=t&cat=3&e=21#Entry21>Nigiri</home>, standard handicap placement is used.\r\n<li><image board/b.gif> H7 K0.5 (FH) = Handicapped game with 7 handicap stones and 0.5 points Komi, free handicap placement is used.\r\n\r\n<li><image board/w_b.gif> Even / Hx Ky [(FH)] = <home faq.php?read=t&cat=357&e=111#Entry111>Double game</home> (even / handicap game with x handicap stones and y points komi).   The optional suffix of \"(FH)\" indicates, that <i>free handicap placement</i> is used.\r\n\r\n<li><image board/y.gif> <image team.gif> (3/4) = <home faq.php?read=t&cat=305&e=306#Entry306>multi-player-game</home>, color is determined by the game-master that started the game-offer.  The <image team.gif>-icon has a tooltip showing number of free slots to join when you hover with the mouse over it.\r\n\r\n<li><image board/y.gif> Negotiate = <home faq.php?read=t&cat=357&e=351#Entry351>fair-komi game</home>, the color will be determined by fair-komi negotiation between the players.\r\n</ul>', 'FAQ', 'Y', 'USED', '2012-12-26 01:38:31'),
(5375, 'How can I prevent that the same user joins my game offer more than once?', 'FAQ', 'Y', 'USED', '2012-12-26 01:58:23'),
(5376, 'In the expert view for <home faq.php?read=t&cat=357#Entry210>creating a new game offer</home> for the waiting room, you can use the option \"<b>Accept same opponent</b>\" to prevent that the same user joins your game offer too often.\r\n\r\nYou can choose from three types of restrictions.\r\nThe text in <color green>green color</color> gives the <home faq.php?read=t&cat=357&e=127#Entry127>abbreviated form shown in the <i>Restrictions</i> column</home> in the waiting room:\r\n<ul>\r\n<li><b>X total times</b> = a player can NOT join your game offer, if the player have at least X running games with you.\r\nExample: If you currently play one game with user A and you choose \"<i>2 total times</i>\" as restriction, player A can join your game offer only one more time.\r\nAbbreviated form: <color green>SOT[2]</color>\r\n\r\n<li><b>X times (same offer)</b> = a player can NOT join the same game offer for more than X times.\r\nExample: \"<i>2 times (same offer)</i>\" means the same player can at most join 2 games for a particular game-offer.\r\nAbbreviated form: <color green>SO[2x]</color>\r\n\r\n<li><b>after X days</b> = a player can NOT join the same game offer unless X days have passed.\r\nExample: \"<i>after 3 days</i>\" means, that the same player need to wait at least 3 days before he can join the same game-offer again.\r\nAbbreviated form: <color green>SO[>3d]</color>\r\n</ul>', 'FAQ', 'Y', 'USED', '2012-12-26 01:58:23'),
(5377, 'What is a fair-komi game?', 'FAQ', 'Done', 'USED', '2012-12-27 20:52:01'),
(5378, 'A <b>fair-komi game</b> on Dragon is always played as even game (without handicap stones).  The komi and the color of the player is not fixed but will be determined at the start of the game by a bidding system.  On Dragon there are four ways how this can be done controlled by the <i>handicap type</i>:\r\n<ul>\r\n<li><b>Open Auction:</b> negotiate komi with an <i>Open Auction</i>\r\n<ul>\r\n<li>Players openly give their komi-bids.\r\n<li>Komi-bids are shown to the other player.\r\n<li>Komi-bids are given in turn till one player starts the game:\r\n* Each komi-bid must be higher than the last bid of the opponent.\r\n* The player with the highest bid takes Black and is giving that number of komi to White.\r\n</ul>\r\n\r\n<li><b>Secret Auction:</b> negotiate komi with a <i>Secret Auction</i>\r\n<ul>\r\n<li>Players secretly give their respective komi-bid (once per player).\r\n<li>Komi-bids are hidden from the other player.\r\n<li>After the 2nd komi-bid, the game will be started:\r\n* The player with the highest bid takes Black and is giving that number of komi to White.\r\n* If the komi-bids are equal, player color is determined by Nigiri.\r\n</ul>\r\n\r\n<li><b>You cut, I choose</b> or <b>I cut, You choose:</b> negotiate komi and colors by <i>Divide &amp; Choose</i>\r\n<ul>\r\n<li>The difference between the two handicap types is just who starts to bid the komi and who ends with choosing the color.\r\n\r\n<li>One player chooses the komi for White (\"cut\").\r\n<li>Then the other player chooses the color to play and the game starts (\"choose\")\r\n</ul>\r\n</ul>\r\n\r\nRelated topics:\r\n<ul>\r\n<li><home faq.php?read=t&cat=357&e=351#Entry351>How to start a fair-komi game?</home>\r\n\r\n<li><_http://senseis.xmp.net/?FairKomi>\r\n<li><_http://senseis.xmp.net/?AuctionKomi>\r\n</ul>', 'FAQ', 'Done', 'USED', '2012-12-27 20:52:01'),
(5379, 'How can I find fair-komi games?', 'FAQ', 'Done', 'USED', '2012-12-27 21:41:12'),
(5380, 'To find or to search for <home faq.php?read=t&cat=357&e=393#Entry393>fair-komi games</home> you can use the filter-value \"<i>Fair Komi</i>\" in the select filter of the \"<i>Game Type</i>\" column in the game table listings on the <home waiting_room.php>waiting room</home> or on the <home show_games.php>game list pages</home>.\r\n\r\nFair-komi games are shown as \"<i>Go (Fair Komi)</i>\" in the respective <i>Game Type</i> column (including the <home status.php>status page</home>).', 'FAQ', 'Done', 'USED', '2012-12-27 21:41:12'),
(5383, 'What are the rules for a multi-player-game?', 'FAQ', 'Y', 'USED', '2012-12-27 23:24:56'),
(5384, 'Normally during a multi-player-game it\'s not allowed to speak with each other about the moves to play.  The only practical allowed consultation on Dragon is a greeting or to ask your partners if you can resign the game.  Though officially forbidden, talk during the game can not be prevented anyway as there are other means to communicate, which is especially true for a <home faq.php?read=t&cat=3&e=152#Entry152>turn-based server</home>.\r\n\r\nIt\'s considered to be much more fun in a multi-player-game NOT to speak about the moves in advance: if a weaker player always consults his stronger teammate, in the end, the weaker player would not much participate in the game.  It can be a great learning experience for a weaker player, while stronger players may be able to use such games as teaching games.\r\n\r\nHowever, if you want to talk to the other players there are three ways, which are explained in: <home faq.php?read=t&cat=305&e=409#Entry409>Can I talk to other players in a multi-player-game?</home>\r\n\r\nSome \"<i>official rules</i>\" can be found on <http://www.pairgo.or.jp/setumei/rule.htm> or <http://senseis.xmp.net/?Rengo>.', 'FAQ', 'Y', 'USED', '2012-12-27 23:24:56'),
(5381, 'How can I play a multi-player-game with a shared team-account?', 'FAQ', 'Y', 'USED', '2012-12-27 23:23:37'),
(5382, 'The used approach on Dragon does not support team-accounts for multi-player-games, though the team-data is preserved (like the average start and end rating and who was on the teams).  This means, there is no explicit history of the accomplishments of teams like a team-rating.  This would make no sense for <home faq.php?read=t&cat=305#Entry308>Zen-Go</home> anyway, only for <home faq.php?read=t&cat=305#Entry307>Team-Go</home>.\r\n\r\nThe current approach has been chosen, because of easier implementation avoiding all \"team\"-related stuff like ratings, team-handling, vacation-issues, etc.', 'FAQ', 'Y', 'USED', '2012-12-27 23:23:37'),
(5385, 'How can I manage a multi-player-game?', 'FAQ', 'Y', 'USED', '2012-12-29 01:55:25'),
(5386, 'The player that created a <home faq.php?read=t&cat=305#Entry306>multi-player-game</home> is referred to as <b>game-master</b>.  Right after <home faq.php?read=t&cat=305&e=309#Entry309>creation of a multi-player-game</home> it is in <b>setup-mode</b>, in which the <i>game-master</i> has to find other players, arrange the players into teams and configure the game-settings (handicap & komi).  After those steps the <home faq.php?read=t&cat=305&e=402#Entry402>game can be started</home> switching into <home faq.php?read=t&cat=305&e=395#Entry395><b>playing-mode</b></home>.  For each multi-player-game there is the so-called <b>game-players page</b>, that provide functions for these tasks, allowing to communicate with the other players and showing information about the participating players.\r\n\r\nMP-games are no ordinary games, that\'s <home faq.php?read=t&cat=305&e=313#Entry313>why they are not always appearing within the game-lists</home> for normal games, and why the game-page and game-info-page are not available yet during <i>setup-mode</i>.\r\nSee also: <home faq.php?read=t&cat=305&e=414#Entry414>How can I find my multi-player-games in setup-mode?</home>\r\n\r\nMP-games in <b>setup-mode</b> can be managed on the <b>game-players page</b> providing the functions to:\r\n<ul>\r\n<li><home faq.php?read=t&cat=305&e=398#Entry398>Find users to play with</home>:\r\n  <ul>\r\n  <li><home faq.php?read=t&cat=305&e=412#Entry412>Invite a specific (single) known player</home>\r\n  <li><home faq.php?read=t&cat=305&e=413#Entry413>Add a game-offer in the waiting-room</home>\r\n  </ul>\r\n\r\n<li><home faq.php?read=t&cat=305&e=403#Entry403>Make up teams and set playing-colors.</home>\r\n<li><home faq.php?read=t&cat=305&e=404#Entry404>Set the handicap & komi for the teams.</home>\r\n<li><home faq.php?read=t&cat=305&e=405#Entry405>Set the playing-order within the teams.</home>\r\n<li><home faq.php?read=t&cat=305&e=402#Entry402>Start to play the game.</home>\r\nFor participating players there\'s a link \"<i>Check game</i>\" instead of \"<i>Start game</i>\" (which is for the game-master only), which checks what steps are still missing to be able to start the game.  This is just for information, the game-master sees this as well.\r\n<li><home faq.php?read=t&cat=305&e=409#Entry409>New bulletin</home> (to communicate with all game-players)\r\n</ul>\r\n\r\nThe contents of the list of participating players is explained in: <home faq.php?read=t&cat=305&e=415#Entry415>What are the items in the list of participating players for multi-player-games?</home>', 'FAQ', 'Y', 'USED', '2012-12-29 01:55:25'),
(5387, 'How can I find players for my multi-player-game?', 'FAQ', 'Y', 'USED', '2012-12-29 15:21:52'),
(5388, 'The <home faq.php?read=t&cat=305&e=397#Entry397>game-master</home> already joined the game taking a slot, and is marked as \"master\".\r\n\r\nThere are two methods to find willing players for your multi-player-game:\r\n<ol>\r\n<li><home faq.php?read=t&cat=305&e=412#Entry412>Invite a specific (single) known player</home>.\r\n<li><home faq.php?read=t&cat=305&e=413#Entry413>Add a game-offer in the waiting-room</home>.\r\n</ol>\r\n\r\nBoth methods can also be used at the same time, though if you want to start a MP-game with your usual buddy, <home faq.php?read=t&cat=305&e=412#Entry412>first invite him or her</home>, <home faq.php?read=t&cat=305&e=403#Entry403>set up groups</home>, then start with <home faq.php?read=t&cat=305&e=413#Entry413>adding a game-offer in the waiting-room</home>, so the users can see against whom they have to play and in which groups.\r\n\r\nNaturally you can also use only invitations, if you know all the players that should play with you or want to join your MP-game.', 'FAQ', 'Y', 'USED', '2012-12-29 15:21:52'),
(5389, 'How can I delete a multi-player-game?', 'FAQ', 'Y', 'USED', '2012-12-29 15:22:14'),
(5390, 'Deleting a multi-player-game by the players is not possible at the moment.\r\n\r\n<u>Reasoning:</u>  One player shouldn\'t \"destroy\" a game, that all agreed upon.\r\nIf the player does not want to play, he should say so before the game is started or refuse from joining in the first place.\r\nMaybe this policy will be changed later.\r\n\r\nPlease ask an admin in the <home forum/list.php?forum=2>support forum</home> to delete a multi-player-game if the need arises.', 'FAQ', 'Y', 'USED', '2012-12-29 15:22:14'),
(5391, 'How much time do I have in a multi-player-game?', 'FAQ', 'Y', 'USED', '2012-12-29 15:22:59'),
(5392, 'The available time in a multi-player-game starts with the time limits, that the game was set up with.  While in <home faq.php?read=t&cat=305&e=309#Entry309>setup-mode</home>, the time is not running down.  The clock starts to run only after the game has been started by the <home faq.php?read=t&cat=305&e=309#Entry309>game-master</home>.\r\n\r\nThe remaining time is separately counted for the Black and White color.  If Black is to move next, the Black time normally is counting down except for the following conditions:\r\n\r\nIf the game was started with the weekend clock stopped, then the colors clock is not counted down on weekends.  This is independent from the players, because the weekend-clock is based on the GMT timezone.\r\n\r\nIf the current Black player has to move next, the time counting down depends on the characteristics of the particular player, that fulfills the Black players role at that moment (colors may change for <home faq.php?read=t&cat=305&e=308#Entry308>Zen-Go</home>).  Is that particular player on vacation or in his <home faq.php?read=t&cat=56#Entry61>sleeping time</home>, then the Black time is not counting down.  Similar applies for the White color.', 'FAQ', 'Y', 'USED', '2012-12-29 15:22:59'),
(5393, 'How can I remove a joined player from my multi-player-game?', 'FAQ', 'Y', 'USED', '2012-12-29 15:23:34'),
(5394, 'Only the game-master of a multi-player-game can remove players and only if the game has not started yet.\r\n\r\nA user may notify the game-master that he wants to be removed from the multi-player-game, or the game-master no longer wants the participation of an already joined player (for whatever reason).  In the latter case politeness dictates, that the game-master informs the to-be-removed player about this decision.\r\n\r\nTo remove a joined player open the game-players page for the multi-player-game and in the players list click on the \"<i>Trashcan</i>\"-icon (<image trashcan.gif>) in the Actions-column for the joined player you want to remove.  You will be asked for confirmation of the removal.', 'FAQ', 'Y', 'USED', '2012-12-29 15:23:34'),
(5395, 'How can I start my multi-player-game?', 'FAQ', 'Y', 'USED', '2012-12-29 15:24:45'),
(5396, 'To start the multi-player-game, the game-master should follow the link \"<i>Start game</i>\" on the \"game-players\"-page.  Some errors might be shown, preventing that the game can be started.  In that case, fix them first.\r\n\r\nTo be able to start a game all free slots must be taken by joined players and the game-master had to complete the following steps:\r\n<ul>\r\n<li><home faq.php?read=t&cat=305&e=403#Entry403>build the teams</home> (for Team-Go only)\r\n<li><home faq.php?read=t&cat=305&e=404#Entry404>choose handicap and komi</home> (if this is not done manually, defaults will be used)\r\n<li><home faq.php?read=t&cat=305&e=405#Entry405>choose playing order</home>\r\n</ul>\r\n\r\n<b>Before starting the game</b>, the game-master may want to send a bulk-message to all game-players by clicking the link \"<i>Send message to all game-players</i>\".  You may edit the message or recipients before sending it.\r\n     \r\nThis would be the last chance to back off from the game by telling the game-master, which is able to <home faq.php?read=t&cat=305&e=401#Entry401>remove an already joined player</home>.  After this point, no player can be removed and the <home faq.php?read=t&cat=305&e=399#Entry399>MP-game can NOT be deleted</home> any longer (except by an admin).\r\n\r\nTo finally <b>start the game</b>, press the \"<i>Start game</i>\"-button.  This step will finish the setup-mode of the MP-game.  Every game-player will be notified with a server-message about the game-start.\r\n\r\nYou will <home faq.php?read=t&cat=305&e=310#Entry310>find a list of your running multi-player-games</home> on various places, but not necessarily in the normal running games lists.', 'FAQ', 'Y', 'USED', '2012-12-29 15:24:45'),
(5397, 'How can I make teams / groups for my multi-player-game?', 'FAQ', 'Y', 'USED', '2012-12-29 15:25:49'),
(5398, 'In <home faq.php?read=t&cat=305#Entry308>Zen-Go</home> there is only one group (\"<image board/y.gif> BW\") for all players, so there\'s no need to build teams and you\'re done.\r\n\r\nTo play a game of <home faq.php?read=t&cat=305#Entry307>Team-Go</home> the <home faq.php?read=t&cat=305&e=397#Entry397>game-master</home> has to define the teams playing with each other.\r\n\r\nTo do that, on the \"game-players\"-page the game-master has to follow the bottom-link \"<i>Change color</i>\" or \"<i>Change color & handicap</i>\" (appears after all players have joined).  Teams can be built using the select-box in the \"<i>Set Group</i>\"-column setting one of the following group-colors and submitting with \"<i>Save selected settings</i>\":\r\n<ul>\r\n<li><image board/b.gif> B = black\r\n<li><image board/w.gif> W  = white \r\n<li><image board/bw.gif> G1 = group #1\r\n<li><image board/wb.gif> G2 = group #2\r\n<li><image board/y.gif> BW = black and white (only used for Zen-Go)\r\n</ul>\r\n\r\nThe group-colors \'<i>G1</i>\' and \'<i>G2</i>\' can be useful to setup a certain team of starting players for Team-Go without setting a particular color of black or white yet.\r\nSetting up teams before <home faq.php?read=t&cat=305&e=398#Entry398>finding other players</home> can be useful to give other users a chance to see against whom they have to play, or they can ask the game-master to be put into a specific team.  Though it\'s optional to setup teams this early.\r\n\r\nThe game-master can change the teams at any time before the <home faq.php?read=t&cat=305&e=402#Entry402>game is finally started</home>.  However, before the game can start, the colors for all players must be set to either \'<i>B</i>\' or \'<i>W</i>\'.\r\n\r\nWhen all required players have joined the MP-game, the average ratings of the teams are shown as well as \"<i>Group ratings</i>\", which can help in choosing a fair team structure with balanced strength distribution.  If all players joined, it\'s also possible to <home faq.php?read=t&cat=305&e=404#Entry404>choose the handicap stones and komi</home> for the MP-game.', 'FAQ', 'Y', 'USED', '2012-12-29 15:25:49'),
(5399, 'How can I choose the handicap and komi for my multi-player-game?', 'FAQ', 'Y', 'USED', '2012-12-29 15:26:13'),
(5400, 'After all players have joined a <home faq.php?read=t&cat=305&e=306#Entry306>multi-player-game</home> you as the <home faq.php?read=t&cat=305&e=397#Entry397>game-master</home> must follow the link \"<i>Choose color & handicap</i>\" (for Team-Go) or \"<i>Choose handicap</i>\" (for Zen-Go) on the \"game-players\"-page to set the handicap and komi for the game.\r\n\r\nFor <home faq.php?read=t&cat=305#Entry308>Zen-Go</home> you only need to enter the wanted handicap and komi and press \"Save selected settings\".\r\n\r\nIn classical games of <home faq.php?read=t&cat=305#Entry307>Team-Go</home> with players of different ratings, an average rating for each team is calculated and the difference in the group ratings define the game-settings for handicap and komi just as like two players would compete normally.\r\n\r\nA good guideline to setup the teams is to try <home faq.php?read=t&cat=305&e=403#Entry403>finding a grouping</home> that results in average group ratings, that are as close as possible.  You can start with putting the two strongest persons in opposite teams, take the next two strongest, and so on.\r\n\r\nThe page can assist with this process.  However, this practice is optional, so you can choose whatever teams you like or whatever handicap and komi you prefer to play with.\r\n\r\nFor <home faq.php?read=t&cat=305#Entry307>Team-Go</home> you can <home faq.php?read=t&cat=305&e=403#Entry403>change the grouping of teams using the group-colors</home> \'<i>B/W/G1/G2</i>\'.  This does recalculate the average \"<i>Group ratings</i>\" which are shown above the players-table.  Additionally below the table you can find the <home faq.php?read=t&cat=357&e=98#Entry98>conventional and proper handicap type</home> applied on the group ratings resulting in a suggestion for handicap and komi.  Using the \"<i>Preview</i>\"-button on the respective line will copy the handicap and komi to the input-fields, so that you can just press \"<i>Save selected settings</i>\" to finally save the values for handicap and komi.\r\nNaturally you can also manually change the handicap and komi to be used disregarding the suggestions.', 'FAQ', 'Y', 'USED', '2012-12-29 15:26:13'),
(5401, 'How can I set the order of players in my multi-player-game?', 'FAQ', 'Y', 'USED', '2012-12-29 15:26:35'),
(5402, 'After all players have joined a <home faq.php?read=t&cat=305&e=306#Entry306>multi-player-game</home> you as the <home faq.php?read=t&cat=305&e=397#Entry397>game-master</home> follow the link \"<i>Choose order</i>\" on the \"game-players\"-page to set the order in which the players in each team plays.\r\n\r\nEach team has its own set of playing-order starting at 1.  Use the select-boxes in the \"<i>Set Order</i>\"-column to choose the order in which you want the players to move within each group.  If you are satisfied with the order, save it by clicking on \"<i>Save selected settings</i>\".  If you used an invalid choice for the order, the orders are not saved and an error will tell you what you have to correct first.\r\n\r\nYou might want to think strategically about the playing-order taking into considerations if stronger players have to play before or after weaker or stronger players.  But as multi-player-games are for fun, don\'t overthink it and choose a fair setup!', 'FAQ', 'Y', 'USED', '2012-12-29 15:26:35'),
(5403, 'How can I recognize a multi-player-game?', 'FAQ', 'Y', 'USED', '2012-12-29 15:27:05'),
(5404, 'On the various page there\'s a \"<i>Game Type</i>\" (as field or column) describing what type of game it is:\r\n<ul>\r\n<li><i>Go</i> = normal games\r\n<li><i>Team-Go (N:M)</i> = <home faq.php?read=t&cat=305#Entry307>Team-Go</home> multi-player-game\r\n<li><i>Zen-Go (N)</i> = <home faq.php?read=t&cat=305#Entry308>Zen-Go</home> multi-player-game\r\n</ul>\r\n\r\nAdditionally the shown team-icon (<image team.gif>) links to the corresponding <home faq.php?read=t&cat=305&e=397#Entry397>\"game-players\"-page for the MP-game</home>.\r\n\r\nOn the game page this game-type can be found in the game-info box below the board.  For MP-games the <image team.gif>-icon as well as the bottom-link \"<i>Show game-players</i>\" lead to the \"game-players\"-page that only exists for multi-player-games.\r\n\r\nOn the game-info page the game-type can be found in the left \"<i>Game settings</i>\"-section.\r\n\r\nIn the <home waiting_room.php>waiting room</home>, there\'s also a \"<i>Game Type</i>\" column giving the type, though the <image team.gif>-icon linked to the \"game-players\"-page appears in the \"<i>Settings</i>\"-column.\r\n\r\nIn the game lists with status-games, running, finished or observed games there\'s a \"<i>Game Type</i>\"-column.\r\nAs multi-player-games are not always listed in the normal game-lists, please also read: <home faq.php?read=t&cat=305&e=310#Entry310>How can I find multi-player-games?</home>', 'FAQ', 'Y', 'USED', '2012-12-29 15:27:05'),
(5407, 'How can I resign a multi-player-game?', 'FAQ', 'Done', 'USED', '2012-12-29 15:27:52'),
(5408, 'A game can be <home faq.php?read=t&cat=365&e=47#Entry47>resigned at any time</home>, even if it\'s not your move.\r\nBut for resigning a multi-player-game, you normally should have the consent of your team-members, though it\'s not enforced by DGS.\r\n\r\nBy official rules in <home faq.php?read=t&cat=305&e=311#Entry311>Rengo</home>, the current player wanting to resign, is inclined to ask the team-partner if it is ok with the phrase \"<i>May I resign?</i>\", on which the partner may answer with only \"<i>Yes</i>\" or \"<i>No</i>\".\r\n\r\nDGS is not enforcing this rule, but clicking \"<i>Resign</i>\" on the game-page shows a note with a link to send a bulk-message to the other players of the same team to ask if it\'s ok to resign.  But this lies in the discretion of the player to move.  The link leads to showing a preview of a bulk-message to the correct team-players with a link to the game.\r\n\r\nFor Rengo it\'s pretty clear (only one answer is to be expected), but for other MP-games with more than two players in the same team, there might appear both answers (Yes & No).  The interpretation of that is left to decide for the one who asked.\r\n\r\nIf you are not using official rules, you may adjust the text and send that instead.  But ensure, you keep the important information in there (reference to the game and the question to resign).\r\nAfter your team mates have answered per private message, you may go on with submitting the resignation.\r\n\r\nHowever, asking for resignation is not enforced, so you can resign regardless of asking your team-mates.', 'FAQ', 'Y', 'USED', '2012-12-29 15:27:52'),
(5409, 'How can I talk to other players in a multi-player-game?', 'FAQ', 'Y', 'USED', '2012-12-29 15:29:15'),
(5410, 'Talking during a multi-player-game is normally not allowed by the official rules.  So please ensure, you have studied \"<home faq.php?read=t&cat=305&e=396#Entry396>What are the rules for a multi-player-game?</home>\" before reading on.\r\n\r\nThe following list gives a brief explanation of the normally allowed cases to talk with the other players:\r\n<ul>\r\n<li>Talk during setup of the game.\r\n<li>Talk before or after starting the game for a greeting.\r\n<li>Talk to ask your team partner(s) if it\'s ok to resign or to end the game.\r\n</ul>\r\n\r\nThere are three ways to talk to the other players for a multi-player-game:\r\n<ul>\r\n<li>You can <b>create a <home faq.php?read=t&cat=17&e=343#Entry343>MPG-bulletin</home> addressing ALL players</b> of the game.  This can be used for communication to start the game.\r\n\r\nOn the game-page follow the <image team.gif>-icon (or \"<i>Show game-players</i>\" bottom-link), then use the \"<i>New bulletin</i>\" bottom-link to create a new <home faq.php?read=t&cat=17&e=343#Entry343>bulletin</home>. \r\n\r\n<li>Use normal <b>game messages to address all players</b>.  Your game message can be seen by all players, though it may not be obvious to them that there is a message (as this is not notified).  In a multi-player-game your team-partner need to browse back to your move to be able to see your message.\r\n\r\n<li>You can <b>send a bulk-message</b> to a list of users to ask your partners if it\'s <b>acceptable to resign</b>.\r\n\r\nThis functionality can be easily used when you click on the \"Resign\"-link.  Dragon then shows a warning to ask your team members about your resignation with a link to create a bulk-message (already filled in with your partners and a reference to the game with the allowed question as subject).\r\n\r\nSending a bulk-message for non-admin users is only possible for multi-player-games.\r\n</ul>', 'FAQ', 'Y', 'USED', '2012-12-29 15:29:15'),
(5411, 'View restricted to specific users#bulletin', 'SRC', 'Done', 'USED', '2013-01-06 16:42:34'),
(5422, 'There are %s attached game-SGFs available for download.', 'SRC', 'Done', 'USED', '2013-01-11 14:39:39'),
(5423, 'Game has attached SGFs', 'SRC', 'Done', 'USED', '2013-01-11 14:39:39'),
(5424, 'Restricted#wroom', 'SRC', 'Done', 'USED', '2013-01-11 14:39:39'),
(5425, 'Bad end of file#sgf', 'SRC', 'Done', 'USED', '2013-01-11 14:39:39'),
(5426, 'Bad root node#sgf', 'SRC', 'Done', 'USED', '2013-01-11 14:39:39'),
(5427, 'Not a Go game (GM[1])#sgf', 'SRC', 'Done', 'USED', '2013-01-11 14:39:39'),
(5428, 'Bad node start#sgf', 'SRC', 'Done', 'USED', '2013-01-11 14:39:39'),
(6180, 'DDK', 'FAQ', 'Done', 'USED', '2014-08-03 11:05:51'),
(5430, 'Missing right parenthesis#sgf', 'SRC', 'Done', 'USED', '2013-01-11 14:39:39'),
(5431, 'Missing right bracket#sgf', 'SRC', 'Done', 'USED', '2013-01-11 14:39:39'),
(5432, 'File not found', 'SRC', 'Done', 'USED', '2013-01-11 14:39:39'),
(5433, 'Bad handicap pattern for %s', 'SRC', 'Done', 'USED', '2013-01-11 14:39:39'),
(5434, 'Insufficient handicap pattern for %s', 'SRC', 'Done', 'USED', '2013-01-11 14:39:39'),
(5435, 'SGF removed!', 'SRC', 'Done', 'USED', '2013-01-11 14:39:39'),
(5436, 'SGF saved!', 'SRC', 'Done', 'USED', '2013-01-11 14:39:39'),
(5437, 'Download attached game-SGF', 'SRC', 'Done', 'USED', '2013-01-11 14:39:39'),
(5438, 'Manage game-SGF attachments', 'SRC', 'Done', 'USED', '2013-01-11 14:39:39'),
(5439, 'Please confirm, that you want to remove your SGF!', 'SRC', 'Done', 'USED', '2013-01-11 14:39:39'),
(5440, 'Remove SGF', 'SRC', 'Done', 'USED', '2013-01-11 14:39:39'),
(5441, 'Upload SGF', 'SRC', 'Done', 'USED', '2013-01-11 14:39:39'),
(5442, 'Save SGF', 'SRC', 'Done', 'USED', '2013-01-11 14:39:39'),
(5443, 'Remove my SGF', 'SRC', 'Done', 'USED', '2013-01-11 14:39:39'),
(5444, 'Attached SGFs', 'SRC', 'Done', 'USED', '2013-01-11 14:39:39'),
(5445, 'No SGF attachments stored', 'SRC', 'Done', 'USED', '2013-01-11 14:39:39'),
(5446, 'Each user can upload only one SGF.', 'SRC', 'Done', 'USED', '2013-01-11 14:39:39'),
(5447, 'Limit on uploaded SGF-file: max. %s KB', 'SRC', 'Done', 'USED', '2013-01-11 14:39:39'),
(5448, 'Manage SGF notes', 'SRC', 'Done', 'USED', '2013-01-11 14:39:39'),
(5449, 'Attached SGF', 'SRC', 'Done', 'USED', '2013-01-11 14:39:39'),
(5450, 'My waiting games', 'SRC', 'Done', 'USED', '2013-01-11 14:39:39'),
(5451, 'All finished games with attached SGFs (reviews)', 'SRC', 'Done', 'USED', '2013-01-11 14:39:39'),
(5452, 'Suitable', 'SRC', 'Done', 'USED', '2013-01-11 14:39:39'),
(5453, 'Mine', 'SRC', 'Done', 'USED', '2013-01-11 14:39:39'),
(5454, 'How can I add a game review (SGF) for a game?', 'FAQ', 'Y', 'USED', '2013-01-11 16:03:59'),
(5455, 'On the game page follow the bottom-link \'<b><i>Attach SGF</i></b>\'.  This opens a new page where you can add, update and delete a <home faq.php?read=t&cat=3&e=69#Entry69>SGF</home> with a game review.  You can add public game reviews for running and finished games.  A table listing on that page shows all available uploaded SGFs from yourself and other users.  These SGFs can be downloaded by clicking on the according <image sgf.gif>-icon shown in the table.\r\n\r\nWhen you upload a SGF, various checks are performed to ensure the SGF matches the Dragon game:\r\n<ul>\r\n<li>The SGF must be syntactically valid.\r\n<li>The SGF must not be larger than 100 KB.\r\n<li>The board size, <home faq.php?read=t&cat=357&e=97#Entry97>handicap</home>, <home faq.php?read=t&cat=3&e=9#Entry9>komi</home>, handicap-setup, <home faq.php?read=t&cat=329&e=314#Entry314>shape-setup</home> and some of the moves are checked, from which all must be identical to the Dragon game.\r\n<li>Per game and user one SGF is allowed, so more than one user can upload game reviews.  If you already uploaded a SGF it will be overwritten.\r\n</ul>\r\n\r\nSo the best way to <b>create a review</b> is:\r\n\r\n<ol>\r\n<li>Download the SGF.  <b>Please be careful what download you use,</b> otherwise you may unintentionally publish private game comments.  Therefore it\'s important you <home faq.php?read=t&cat=365&e=276#Entry276>read about the different ways to download a SGF</home>!\r\n\r\n<li>Edit and save the downloaded SGF locally with your favorite SGF-editor\r\n\r\n<li>Upload the edited SGF with the game review.\r\n\r\n<li>The server checks the SGF.  Validation errors are reported.  If there are no problems, the uploaded SGF is stored under your name and is publicly available for download.\r\n</ol>\r\n\r\nRelated topics:\r\n<ul>\r\n<li><home faq.php?read=t&cat=365&e=276#Entry276>Can I download a SGF from a game?</home>\r\n<li><home faq.php?read=t&cat=18&e=411#Entry411>How can I find game reviews (SGFs) attached to games?</home>\r\n</ul>', 'FAQ', 'Y', 'USED', '2013-01-11 16:03:59'),
(5456, 'How can I find game reviews (SGFs) attached to games?', 'FAQ', 'Done', 'USED', '2013-01-11 16:10:46'),
(5457, 'The game page and the various game listings shows a <image sgf.gif>-icon, if there are <home faq.php?read=t&cat=18&e=410#Entry410>attached SGFs</home> with game reviews to download.  The icon is linked to the page to download the stored SGFs:\r\n<ul>\r\n<li>On the game page, the icon is shown below the game board to the right of the \'<i>View move</i>\'-button and to the left of the \'<i>Comments</i>\'-link.  The tooltip of the icon shows how many attached SGFs are available.\r\n\r\n<li>On the <home show_games.php>game listings</home>, the icon is shown in the separate column \'<i>Attached SGF</i>\'.\r\n</ul>\r\n\r\nTo <b>find games with attached SGFs</b> you can use the filter-checkbox in the \'<i>Attached SGF</i>\'-column in the <home show_games.php>game listings</home>.  This is possible for all game listings (my/all running/finished/observing/observed games).  Please be aware, that some of the game listings have further filter restrictions per default for the end-date.\r\n\r\nYou can use the following links to find games with attached SGFs (without default end-date restrictions):\r\n<ul>\r\n<li><home show_games.php?uid=all&finished=1&sgfs=1>All finished games with attached SGFs (reviews)</home> (link also on <home site_map.php>site map</home>)\r\n<li><home show_games.php?uid=all&sgfs=1>All running games with attached SGFs (reviews)</home>\r\n<li><home show_games.php?finished=1&sgfs=1>My finished games with attached SGFs (reviews)</home>\r\n<li><home show_games.php?sgfs=1>My running games with attached SGFs (reviews)</home>\r\n</ul>', 'FAQ', 'Y', 'USED', '2013-01-11 16:10:46'),
(5458, 'To create a game review it\'s recommended to download the SGF without comments.', 'SRC', 'Done', 'USED', '2013-01-13 16:50:32'),
(5459, 'Otherwise it may happen that private comments or your game notes are published!', 'SRC', 'Done', 'USED', '2013-01-13 16:50:32'),
(5460, 'For instructions please read the FAQ how best to download a SGF.#sgf', 'SRC', 'Done', 'USED', '2013-01-13 16:50:32'),
(5461, 'Download sgf WITHOUT comments', 'SRC', 'Done', 'USED', '2013-01-13 16:50:32'),
(5462, 'How can I invite a specific player to my multi-player-game?', 'FAQ', 'Y', 'USED', '2013-02-07 13:22:44'),
(5463, 'Inviting a player to your <home faq.php?read=t&cat=305#Entry306>multi-player-game</home> involves several steps from yourself and the invited user:\r\n\r\n<ol>\r\n<li>Go to the \"game-players\"-page and select \"<b>Invite</b>\".  This is different from a regular <home faq.php?read=t&cat=357&e=212#Entry212>game invitation</home> because of some special needs for MP-games.\r\n\r\n<li><b>Specify the user-id</b> of the user you want to invite.\r\n<ul>\r\n<li>The user is checked and potential errors are listed, e.g. the user must have a valid rating to participate.\r\n<li>If the user is valid, a reservation is added and you will be forwarded to the \"send-message\"-page to inform the user about the invitation.\r\n<li>A template-text is shown together with a preview.  You may edit the text (or translate it) as you like, but be sure that the main information about the invitation with the original references stay included.\r\n<li>Sending it will forward the message to the invited user as normal private message.\r\n</ul>\r\n\r\n<li><b>When the invited user receives your message</b> and is following the link in the message, thereby entering the \"game-players\"-page, the user will see a reserved slot for his/her invitation.  The user will be automatically asked to join the MP-game.  Then the invited user can:\r\n<ul>\r\n<li>a) accept the invitation, or\r\n<li>b) reject the invitation\r\n</ul>\r\n\r\nAdditionally the user might want to reply to your invitation-message with additional information or questions before or after acceptance or rejection of the invitation.\r\n\r\nThe game-master will be informed about the users decision with a notification message.\r\n\r\n<li><b>When the user does not respond</b>, or as long as the invited user has not accepted or rejected the invitation, the game-master can:\r\n<ul>\r\n<li>c) send a reminder:\r\nTo send a reminder, from the \"game-players\"-page click on the \"Invite\"-image in the Actions-column for the specific reserved-slot of the invited user.\r\nRe-enter/edit some text and send the message.\r\n\r\n<li>d) delete the reserved invitation:\r\nTo delete the reservation, click on the \"Trashcan\"-image in the Actions-column for the invited user.  You will be asked for confirmation of the deletion.\r\n</ul>\r\n</ol>', 'FAQ', 'Y', 'USED', '2013-02-07 13:22:44'),
(5464, 'How can I offer my multi-player-game in the waiting-room?', 'FAQ', 'Y', 'USED', '2013-02-07 13:23:43');
INSERT INTO `TranslationTexts` (`ID`, `Text`, `Type`, `Translatable`, `Status`, `Updated`) VALUES
(5465, 'Select \"<b>Add to waiting-room</b>\" on the \"game-players\"-page of your <home faq.php?read=t&cat=305#Entry306>multi-player-game</home>:\r\n<ul>\r\n<li>Specify how many user-slots you wish to offer in the <home waiting_room.php>waiting-room</home>.\r\n<li>If you want, specify some <home faq.php?read=t&cat=357&e=210#Entry210>game-settings</home> for: rating-range, number of rated finished games and a waiting-room comment.\r\n<li>After submitting your game-offer, a waiting-room entry is added.\r\nOn the <home faq.php?read=t&cat=357&e=386#Entry386>\'Info\'-page</home> and in the <home faq.php?read=t&cat=357&e=391#Entry391>Settings-column</home> in the waiting-room, a link to the corresponding \"game-players\"-page is shown to enable the users to find out the current setup and groups of your MP-game.\r\n</ul>\r\n\r\nWhen a user matches the game-offer criteria, the <b>user can join the offer</b> and will automatically take one of the free reserved waiting-room-slot in your MP-game.\r\nThe game-master will be informed about a joined user with a notification message.\r\n\r\nTo <b>delete or replace the MP-game offer</b> in the waiting-room, an existing MP-game-offer has to be either deleted or be fulfilled (by users joining it) first.\r\n<ul>\r\n<li>Only one waiting-room offer can be created at one time restricted to one set of game-offer-settings.  \r\n<li>The waiting-room entry can be deleted at any time.  All non-taken reserved waiting-room-slots on the \"game-players\"-page are freed with this.\r\n<li>The corresponding entry in the waiting-room can be easily found by the <home faq.php?read=t&cat=305&e=397#Entry397>game-master</home> via the \"game-players\"-page clicking on the bottom-link \"Add to waiting-room\".  If there\'s an existing entry a link to it will be shown.\r\n</ul>', 'FAQ', 'Y', 'USED', '2013-02-07 13:23:43'),
(5467, 'How can I find my multi-player-games in setup-mode?', 'FAQ', 'Y', 'USED', '2013-07-31 20:46:46'),
(5468, 'The <b>status-page</b> (and the <home quick_status.php?version=2>quick-status page</home>) shows a list with MP-games currently in <home faq.php?read=t&cat=305&e=397#Entry397>setup-mode</home>, for which you are either the game-master or participate as a player.\r\n\r\nThe list on the status-page contains the following columns:\r\n<ul>\r\n<li><i>Game ID</i> = linked to the <home faq.php?read=t&cat=305&e=397#Entry397>game-players page</home> of the MP-game\r\n<li><i>GameType</i> = describes the game-type and number of players of the MP-game: <home faq.php?read=t&cat=305#Entry307>Team-Go (N:M)</home> or <home faq.php?read=t&cat=305#Entry308>Zen-Go (N)</home>\r\n<li><i>Joined</i> = gives number of joined players and total number of players in format \"N / M\".  When all players have joined, the value is emphasized, so the game-master can easier spot when to finish up the teams, color and handicap/komi in order to start the game.\r\n<li><i>Game master</i> = the game-master\r\n<li><i>Ruleset</i> = used ruleset\r\n<li><i>Size</i> = used board-size\r\n<li><i>Last changed</i> = date when game-setup has been last changed\r\n</ul>\r\n\r\nMP-games that are in <b>playing-mode</b> are not shown in that list.  To find those, please read: <home faq.php?read=t&cat=305&e=310#Entry310>How can I find multi-player-games?</home>', 'FAQ', 'Y', 'USED', '2013-07-31 20:46:46'),
(5469, 'What are the items in the list of participating players for multi-player-games?', 'FAQ', 'Y', 'USED', '2013-07-31 21:11:24'),
(5470, 'Multi-player-games in <home faq.php?read=t&cat=305&e=397#Entry397><b>setup-mode</b></home> and <home faq.php?read=t&cat=305&e=312#Entry312><b>playing-mode</b></home> show almost the same amount of information: the most important game-settings and the average team-ratings at the top and a list of the participating players (or free slots) with the following columns:\r\n<ul>\r\n<li><i>#</i> = playing order within the team\r\n\r\nFor a <b>running game</b> some additional icons are shown:\r\n<ul>\r\n<li><image board/bm.gif> = Black player to move\r\n<li><image board/wm.gif> = White player to move\r\n<li><image forward.gif> = double-arrow indicating the 2nd-next player to move\r\n</ul>\r\n\r\n<li><i>Col</i> = color identifying team the player takes part in and the playing-color\r\n<li><i>Player, Country, Rating, Last access</i> = information about the participating player\r\n<li><i>Flags</i> shown per user can be:\r\n<ul>\r\n<li><i>Master</i> = <home faq.php?read=t&cat=305&e=397#Entry397>game-master</home>\r\n<li><i>Joined</i> = game-master joined MP-game as player\r\n<li><i>Reserved[WR]</i> = reserved slot for player waiting to join MP-game from waiting-room\r\n<li><i>Reserved[INV]</i> = reserved slot for specific player for which invitation to join MP-game has been sent\r\n\r\n<li><i>Joined[WR|INV]</i> = slot taken by player that already joined the MP-game via WR (waiting-room) or INV (invitation)\r\n</ul>\r\n\r\n<li>Actions (only for game-master in <i>setup-mode</i>):\r\n<image trashcan.gif> = <home faq.php?read=t&cat=305&e=401#Entry401>remove joined player</home> (or reserved slot for invitation)\r\n<image invite.gif> = <home faq.php?read=t&cat=305&e=412#Entry412>invite player to MP-game</home> (or send reminder for invitation)\r\n<li>Action for all participants:\r\n<image msg.gif> = sending message to player\r\n</ul>', 'FAQ', 'Y', 'USED', '2013-07-31 21:11:24'),
(5471, 'What are the items on the Opponents page?', 'FAQ', 'N', 'USED', '2013-08-09 23:10:47'),
(5472, '', 'FAQ', 'N', 'USED', '2013-08-09 23:10:47'),
(5473, 'Dragon source code snapshots', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(5474, 'Browse Dragon source code (Git)', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(5475, 'Browse Dragon source code (CVS, till May-2013)', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(5476, 'Email is invalid!', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(5477, 'Email is verified!', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(5478, 'Email is unverified!', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(5479, 'Email is missing!', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(5480, 'Save settings', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(5481, 'Email#header', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(5482, 'Attempts#header', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(5483, 'Resend verification#email', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(5484, 'Remove verification#email', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(5485, 'Change email & notifications', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(5486, 'Open verifications#email', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(5487, 'To receive notifications or a new password (if forgotten) an email must be set.', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(5488, 'Steps to change your email:', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(5489, 'Enter a new and valid email and click \'Save settings\'', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(5490, 'A message will be sent to your new email-address with a validation-code.', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(5491, 'Opening the link from that message in the browser will verify your new email and\nthe email in your account will be replaced with the new one.', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(5492, 'Change notes', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(5493, 'Notifications updated!', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(5494, 'Verification mail for email-change sent!', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(5495, 'Verification mail for existing email sent!', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(5496, 'Verification to remove couldn\'t be found!', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(5497, 'You can only remove your own verifications!', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(5498, 'Verification removed!#email', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(5499, 'Verification to re-send couldn\'t be found!', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(5500, 'You can only re-send your own verifications!', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(5501, 'Verification mail for email-change [%s] have been re-sent!', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(5502, 'To be able to vote you have to finish %s games and \nactively play in games during the last %s days.', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(5503, 'This game uses area-scoring, so dame (neutral points) count!', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(5504, 'Please ensure you don\'t leave an odd number of dame points!', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(5505, 'Preliminary Score', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(5506, 'Move #%s at [%s]#mpg', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(5507, 'Save selected settings#mpg', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(5508, 'Delete game#mpg', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(5509, 'The other players will be notified about the deletion.#mpg', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(5510, 'Are you sure to delete this game now?#mpg', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(5511, 'User-Registration#VFY_type', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(5512, 'Email-Change#VFY_type', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(5513, 'Unknown problem. This shouldn\'t happen. Please report this to the support describing the context of your actions.', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(5514, 'User initialization error occured because of inconsistent user data. Please report this problem to the support.', 'SRC', 'Y', 'USED', '2013-08-11 17:44:10'),
(5515, 'Verification has been invalidated due to massive overuse.', 'SRC', 'Y', 'USED', '2013-08-11 17:44:10'),
(5516, 'Before you can use your account, you first need to activate it with the verification-code sent to you via email!', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(5517, 'Sorry, userid can be at most 16 characters long.', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(5518, 'Fair Komi of Type [%s], Jigo mode [%s]', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(5519, 'Adjust Handicap#inv_diff', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(5520, 'Adjust Komi#inv_diff', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(5521, 'Note: Some invalid values may have been replaced with default-values!', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(5522, 'User has no rating', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(5523, 'Opponent needs a rating to be able to use conventional or proper handicap-type.', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(5524, 'Opponent needs a rating to be able to play a rated game.', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(5525, 'Invalid extra periods for Japanese byoyomi', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(5526, 'Invalid number of stones for Canadian byoyomi', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(5527, 'Default', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(5528, '%s ruleset', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(5529, 'Default Max.#handi', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(5530, '(Def. is %s for size %s)#defmaxhandi', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(5531, 'standard settings#gsview', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(5532, 'Default#maxhandi', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(5533, 'No Jigo restriction#jigo_mode', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(5534, 'Pool Winner (advancing to next round, or mark for final result)#tourney', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(5535, 'use default komi', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(5536, 'needs a user-rating to be enabled', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(5537, '+ set Jigo mode (see below)#fairkomi', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(5538, 'Adjustments only apply for conventional and proper handicap type!', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(5539, 'Handicap stone adjustments', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(5540, 'Komi adjustments', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(5541, 'Players info', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(5542, 'My Rating', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(5543, 'Opponent Rating', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(5545, 'User rating is out of range#wroom', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(5546, 'User has not enough finished rated games#wroom', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(5547, 'User already has started games#wroom', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(5548, 'Number of rated finished games, e.g. \"%s\"#wroom', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(5549, 'Max. number of opponents started games must not exceed limits, marked by \"%s\"#wroom', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(6427, 'Moving Average with', 'SRC', 'Done', 'USED', '2016-04-13 16:28:55'),
(5551, 'Handicap-type (conventional and proper handicap-type need a rating for calculations), marked by \"%s\"#wroom', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(6426, 'Regression line', 'SRC', 'Done', 'USED', '2016-04-13 16:28:55'),
(5553, 'Missing valid id to process verification for user [%s].', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(5554, 'Logged-in as wrong user [%s] to process verification with id [%s] for user [%s].', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(5555, 'There is nothing to verify for user [%s].', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(5556, 'Missing code to process verification with id [%s].', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(5557, 'No verification entry found for verification-id [%s].', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(5558, 'Found wrong user [%s] to process verification with id [%s].', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(5559, 'Verification with id [%s] has been processed already and is no longer valid.', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(5560, 'Please contact support to help with your registration.', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(5561, 'Please repeat changing your email getting a new verification-code, or else contact support.', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(5562, 'Verification-code expired after %s days.', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(5563, 'Verification code is invalid!', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(5564, 'Your account\'s user-id is:', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(5565, 'This verification code can only be used once and expires after %s days.', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(5566, 'Please do not reply to this automated message!', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(5567, 'Welcome to the Dragon Go Server', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(5568, 'You are now registered with an account at Dragon Go Server, %s!', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(5569, 'Before you can use your account, you first need to activate it.', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(5570, 'You may be redirected to login first with your chosen password.', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(5571, 'To activate your account, please follow this link:#reg', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(5572, 'In case of problems, please login as guest-user and ask for help in the support-forum:', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(5573, 'Provide your user-id and describe the problem with the registration process.', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(5574, 'Verify email for [%s]', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(5575, 'To be able to use your new email, it needs to be verified!', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(5576, 'To verify your new email [%s], please follow this link:#reg', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(5577, 'In case of problems, please ask for help in the support-forum:', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(5578, 'The email is used to send you new passwords or to inform about server related issues.', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(5579, 'In case of problems with your email-change:', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(5580, 'Please describe your problem in the <home %s>support-forum</home>.', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(5581, 'search site documentation#menu', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(5582, 'show policy, release notes, links, contributors, tools, sources, license#menu', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(5583, 'show all pages of this site#menu', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(5584, 'show new game offers from other players#menu', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(5585, 'show your messages and folders#menu', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(5586, 'show new messages#menu', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(5587, 'send game invitation to another player#menu', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(5588, 'offer new games in waiting room for other players#menu', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(5589, 'show support and discussion forums#menu', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(5590, 'show forums with new entries#menu', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(5591, 'show feature votes#menu', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(5592, 'vote on new features#menu', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(5593, 'Version', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(5594, 'Note: Since this server is running on the SCM code, bugs and even data losses could happen at any time, so don\'t feel too attached to your games ;-)', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(5595, 'Account registered!', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(5596, 'Account to log in', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(5597, 'To activate your account and confirm the registration, a validation code will be sent to your email.', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(5598, 'New password for [%s]', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(5599, 'Note', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(5600, 'More links will be available if you\'re logged in.', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(5601, 'Verify email', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(5602, 'Game master#header', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(5603, '[Errors]: Restrictions do not allow user to register.#tourney', 'SRC', 'Y', 'USED', '2013-08-11 17:44:10'),
(5604, '[Warnings]: Restrictions normally do not allow user to register.#tourney', 'SRC', 'Y', 'USED', '2013-08-11 17:44:10'),
(5606, 'Challenger/Defender switched#TG_flag', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(5607, 'The challenger is the player with the lower ladder-position at game-end.', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(5608, 'The challenger is the player with the lower ladder-position at game-start.', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(5609, 'Position#tourneyheader', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(5610, 'Rank \'TP\' = tournament-participants registered to start in next round', 'SRC', 'Y', 'USED', '2013-08-11 17:44:10'),
(5611, '%s = count of users with a set rank#tpool', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(5612, '%s = count of pool-winners (playing in next round, or marked for final result)#tourney', 'SRC', 'Y', 'USED', '2013-08-11 17:44:10'),
(5613, 'Tournament max. participant limit (%s users) for Start-Round %s is reached.', 'SRC', 'Y', 'USED', '2013-08-11 17:44:10'),
(6433, 'Tournament Round pool winner ranks must be in range %s.', 'SRC', 'Y', 'USED', '2016-08-20 19:33:13'),
(5615, 'For the current round, the players with ranks %s are pool winners.', 'SRC', 'Y', 'USED', '2013-08-11 17:44:10'),
(5783, 'Error occured#js', 'SRC', 'Done', 'USED', '2014-03-27 15:21:17'),
(5784, 'Game ends with No-Result', 'SRC', 'Done', 'USED', '2014-03-27 15:21:17'),
(5617, 'Setting current tournament round is only allowed on tournament status [%s].', 'SRC', 'Y', 'USED', '2013-08-11 17:44:10'),
(5781, 'Your access quota is running low!#js', 'SRC', 'Done', 'USED', '2014-03-27 15:21:17'),
(5782, 'Save operation successful!#js', 'SRC', 'Done', 'USED', '2014-03-27 15:21:17'),
(5619, 'Inconsistency found: there are %s unassigned pool-users for tournament #%s in round %s.', 'SRC', 'Y', 'USED', '2013-08-11 17:44:10'),
(5780, 'Show more information about [%s]', 'SRC', 'Done', 'USED', '2014-03-27 15:21:17'),
(5621, '%s players set as pool winners for finished pools.', 'SRC', 'Y', 'USED', '2013-08-11 17:44:10'),
(5622, 'There are still %s unfinished tournament games in round %d.', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(5623, 'Expecting current round status [%s] and tournament status [%s] for change of round status to [%s]', 'SRC', 'Y', 'USED', '2013-08-11 17:44:10'),
(5624, 'Tournament-Status [%s] is only allowed for first round.', 'SRC', 'Y', 'USED', '2013-08-11 17:44:10'),
(5625, 'Tournament min. participant limit (%s users) for round %s has not been reached yet: %s registrations are missing.', 'SRC', 'Y', 'USED', '2013-08-11 17:44:10'),
(5627, 'Found %s non-registered tournament participants on status [%s]: they must be either registered or being removed.', 'SRC', 'Y', 'USED', '2013-08-11 17:44:10'),
(5628, 'Pool(s) [%s] have still %s unset ranks.', 'SRC', 'Y', 'USED', '2013-08-11 17:44:10'),
(5629, 'Pool(s) [%s] have unmarked pool-winners (rank <= %d).', 'SRC', 'Y', 'USED', '2013-08-11 17:44:10'),
(5630, 'Pool %d: user [%s] with rank %d', 'SRC', 'Y', 'USED', '2013-08-11 17:44:10'),
(5775, 'Analyse game#ged', 'SRC', 'Done', 'USED', '2014-03-27 15:21:17'),
(5776, 'Show my previous move#ged', 'SRC', 'Done', 'USED', '2014-03-27 15:21:17'),
(5777, 'Prisoners#ged', 'SRC', 'Done', 'USED', '2014-03-27 15:21:17'),
(5778, 'annulled#tourney', 'SRC', 'Done', 'USED', '2014-03-27 15:21:17'),
(5779, 'Sorry, the game does not belong to the given tournament.', 'SRC', 'Done', 'USED', '2014-03-27 15:21:17'),
(5774, 'Analyse#ged', 'SRC', 'Done', 'USED', '2014-03-27 15:21:17'),
(5633, 'DGS Ladder#tourney', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(5634, 'DGS Round-Robin with multiple rounds and pools#tourney', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(5635, 'Private Ladder#tourney', 'SRC', 'Y', 'USED', '2013-08-11 17:44:10'),
(5636, 'Public Ladder#tourney', 'SRC', 'Y', 'USED', '2013-08-11 17:44:10'),
(5637, 'at game-end#T_ladder', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(5638, 'at game-start#T_ladder', 'SRC', 'Y', 'USED', '2013-08-11 17:44:10'),
(5639, 'Determine Challenger#T_ladder', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(5640, 'Set pool-ranks, pool-winners (next-round flagging)#t_mng', 'SRC', 'Y', 'USED', '2013-08-11 17:44:10'),
(5773, 'Notes have unsaved changes!#ged', 'SRC', 'Done', 'USED', '2014-03-27 15:21:17'),
(5642, 'Restrictions do not allow you to register.#tourney', 'SRC', 'Y', 'USED', '2013-08-11 17:44:10'),
(5643, 'A critical error has occured#tourney', 'SRC', 'Y', 'USED', '2013-08-11 17:44:10'),
(5644, 'Pool Winner Ranks', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(5645, 'Set Pool Winner', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(5646, 'Clear Pool Winner', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(5647, 'Set Pool Winners', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(5648, 'Set pool winners with ranks %s for finished pools.', 'SRC', 'Y', 'USED', '2013-08-11 17:44:10'),
(5649, 'Current Pool-Winner Status#tourney', 'SRC', 'Y', 'USED', '2013-08-11 17:44:10'),
(5650, 'Pool Winner#tourney', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(5653, 'Actions#tourney', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(5772, 'Invalid thumbnail size [%s] selected (corrected to default).#profile', 'SRC', 'Done', 'USED', '2014-03-27 15:21:17'),
(5771, 'Thumbnail size', 'SRC', 'Done', 'USED', '2014-03-27 15:21:17'),
(5770, 'max-selections#survey', 'SRC', 'Done', 'USED', '2014-03-27 15:21:17'),
(5658, 'Switch to selected round#tourney', 'SRC', 'Y', 'USED', '2013-08-11 17:44:10'),
(5659, 'Confirm setting#tround', 'SRC', 'Y', 'USED', '2013-08-11 17:44:10'),
(5661, 'Tournament playing phase (tournament game can be played, set pool winners for next round or final results)#trd_status', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(5662, 'Tournament finalizing phase (tournament round is finished)#trd_status', 'SRC', 'Y', 'USED', '2013-08-11 17:44:10'),
(5663, '%s = marks user as pool winner (to advance to next round, or mark for final result)#tpool', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(5664, 'Registrations for this tournament', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(5665, 'Sum#header', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(5666, 'Round %s#header', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(5667, 'Portuguese (Brazil)', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(5668, 'Portuguese (Europe)', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(5669, 'Account activated!#reg', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(5670, 'Email verified!#reg', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(5671, 'Missing user-id to identify user to process verification.', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(5672, 'Verify email for user [%s]', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(5673, 'A message with a validation-code has been sent to the email-address you provided.\nBy opening the link from that message in the browser, your email-address is verified as valid\nand the respective action (%s) will be executed.', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(5674, 'Account activation#reg', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(5675, 'Email change#reg', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(5676, 'In case of problems with your account activation:', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(5677, 'Please <home %s>login as guest-user</home> and ask for help in the <home %s>support-forum</home>.', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(5678, 'Troubleshooting', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(5679, 'Column \'%s\' shows the handicap or its limitations, e.g. 5 or [0,9] or [0,D9] or %s#wroom', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(5680, 'indicator for calculated default max. handicap for board-size#wroom', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(5681, 'calculated handicap#wroom', 'SRC', 'Done', 'USED', '2013-08-11 17:44:10'),
(5763, 'Total texts to translate', 'SRC', 'Done', 'USED', '2013-12-07 07:38:20'),
(5766, 'Current Move#ged', 'SRC', 'Done', 'USED', '2013-12-09 23:41:29'),
(5767, 'Show current move comment#ged', 'SRC', 'Done', 'USED', '2013-12-09 23:41:29'),
(5852, 'Please confirm creating tournament results from pool-winners!', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(5853, 'Confirm creation of results#tourney', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(5854, 'There are no pool-winners found for this round.', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(5855, 'Game Score#title', 'SRC', 'Done', 'USED', '2014-03-27 15:21:17'),
(5856, 'Missing choice of color', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(5857, 'Missing choice of game-end result', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(5858, 'Missing game-score for game-end result', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(5859, 'Expecting number in format %s, %s.5 or %s.0 for game score', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(5860, 'game score', 'SRC', 'Done', 'USED', '2014-03-27 15:21:17'),
(5861, 'Forfeit', 'SRC', 'Done', 'USED', '2014-03-27 15:21:17'),
(5862, 'Draw (=Jigo)', 'SRC', 'Done', 'USED', '2014-03-27 15:21:17'),
(5864, 'Game end by TD#TG_flag', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(5865, 'Game annulled#tourney', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(5866, 'Game No-Result#TG_flag', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(5867, 'Annulled#TG_stat_filter', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(5868, 'Missing uid for tournament result.', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(5869, 'Missing rid (=TP.ID) for tournament result.', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(5870, 'Invalid tournament-result-type [%s].', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(5871, 'Result type [%s] can not be selected for this tournament-type [%s].', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(5872, 'Result value can only be provided for tournament-result-types [%s].', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(5873, 'Start time and End time can not be in the future.#tresult', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(5874, 'Missing positive value for tournament result rank.', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(5875, 'Tournament Ladder', 'SRC', 'Done', 'USED', '2014-03-27 15:21:17'),
(5876, 'SeqWins [%s], SeqWinsBest [%s],\nRank [%s], BestRank [%s], StartRank [%s], PeriodRank [%s], HistoryRank [%s],\nCreated [%s], RankChanged [%s]#tourney', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(5877, 'if challenger wins by timeout or forfeit#T_ladder', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(5878, 'if challenger loses by timeout or forfeit#T_ladder', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(6269, 'Withdrawal from ladder initiated!', 'SRC', 'Y', 'USED', '2015-04-12 13:34:31'),
(5880, 'if game ended with No-Result set by a tournament-director or game-admin', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(5882, 'Disabling feature of %s with 0-value not allowed.#tourney', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(5883, 'Expecting number for %s in range %%s.', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(5884, 'maximum tournament rounds', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(5885, ', T-Rating [%s][ELO %1.2f]', 'SRC', 'Done', 'USED', '2014-03-27 15:21:17'),
(6370, 'byoyomi reset#addtime', 'SRC', 'Y', 'USED', '2015-09-13 23:09:58'),
(6268, 'End time for registration should be at least %s days in the future#tourney', 'SRC', 'Y', 'USED', '2015-04-12 13:34:31'),
(5887, 'Simple#TPOINTS_type', 'SRC', 'Done', 'USED', '2014-03-27 15:21:17'),
(5888, 'Hahn#TPOINTS_type', 'SRC', 'Done', 'USED', '2014-03-27 15:21:17'),
(5889, 'Tournament Pool', 'SRC', 'Done', 'USED', '2014-03-27 15:21:17'),
(5890, 'Pool [%s], Rank [%s]#tourney', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(5891, 'No Pool winner#tourney', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(5892, 'player withdrawn#tpool', 'SRC', 'Done', 'USED', '2014-03-27 15:21:17'),
(5893, 'Inconsistency: expected %s games, but have: %s TGames & %s Games#tourney', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(5894, 'Found inconsistencies requiring partial restart to create missing tournament games.#tourney', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(5895, 'Found game inconsistencies (TGames!=Games). Contact tournament-admin for assistance!#tourney', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(5896, 'Game won by [%s]', 'SRC', 'Done', 'USED', '2014-03-27 15:21:17'),
(5897, 'Game lost by [%s]', 'SRC', 'Done', 'USED', '2014-03-27 15:21:17'),
(5898, 'Game No-Result (Void)', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(5899, 'Game draw (Jigo)', 'SRC', 'Done', 'USED', '2014-03-27 15:21:17'),
(5900, 'Choice#header', 'SRC', 'Done', 'USED', '2014-03-27 15:21:17'),
(5901, '#Started Games#header', 'SRC', 'Done', 'USED', '2014-03-27 15:21:17'),
(5902, 'Select pool for starting tournament games', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(5903, 'Starting tournament games for ALL pools', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(6266, 'Hide forum posts', 'SRC', 'Done', 'USED', '2015-04-12 13:34:31'),
(5905, 'Indicator for being on vacation#header', 'SRC', 'Done', 'USED', '2014-03-27 15:21:17'),
(5906, 'Rank \'%s\' = pool-user has been withdrawn from next round (no pool-winner)', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(5907, 'King of the Hill#TRES_type', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(6051, 'Warning: Users are not allowed to choose a customized start round.#tourney', 'SRC', 'Y', 'USED', '2014-04-03 23:26:03'),
(5909, 'Pool Winner#TRES_type', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(5910, 'Round#tresheader', 'SRC', 'Done', 'USED', '2014-03-27 15:21:17'),
(5911, 'Edit tournament result#tourney', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(5912, 'Delete tournament result#tourney', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(6050, 'Range %s#tourney', 'SRC', 'Done', 'USED', '2014-04-03 23:26:03'),
(5914, 'Established lock for starting tournament games. Lock expires in %s hours.', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(5915, 'Inconsistencies found: for tournament #%s in round %s there is a mismatch of games per challenge (%s) for user-pairs:', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(5916, 'Released lock for starting tournament games.', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(5917, 'Step %s. Created %s games so far ...#tourney', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(5918, 'There are %s tournament games for round %s.', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(5919, 'There are existing tournament pools for round %s.', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(5920, 'Missing next-round-mark for %s users (with \"start next round\" on previous tournament round %s).', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(5921, 'Starting next round is only allowed on tournament status [%s].', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(5922, 'Current tournament round %s must be finished before starting new round.', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(5923, 'Current tournament round must be last finished round %s. Contact tournament-admin for support!', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(5924, 'Need at least %s players to start next round.', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(5925, 'Pools finished (%s entries updated).#tourney', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(6191, 'Bulletin target user rating range needs both (min & max) rating if used.', 'SRC', 'Y', 'USED', '2014-10-30 00:43:09'),
(5927, 'Direct change to Tournament Round Status [%s] only allowed by Tournament Admin.', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(5928, 'More than %s errors occured, so output was limited.#tourney', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(5929, 'Missing tournament-results for final round #%s in this tournament.', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(5930, 'There are the following users marked as pool winners with a bigger rank \nthan the pool-winner rank [%s] defined for this round (which is either a mistake \nor done intentionally by the tournament directors):', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(5931, 'Pool(s) [%s] should have at least one pool-winner.', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(5932, 'In pool(s) [%s] ALL players are marked as pool-winners.', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(5933, 'There is no pool-winner for this round in any pool.', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(5934, 'There are %s tournament participants registered to start in rounds higher than last round #%s:', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(5935, 'These participants should be \"handled\" first before finishing the tournament.', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(5936, 'Show tournament participants on higher start rounds.', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(5937, 'There is more than one pool in last round #%s: found %s pools.', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(5938, 'All rounds must be done before tournament can be finished: Rounds [%s] are not done yet.', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(6257, 'Bots', 'FAQ', 'Done', 'USED', '2015-03-07 13:36:05'),
(6258, 'What are bots?', 'FAQ', 'Done', 'USED', '2015-03-07 13:42:51'),
(6259, 'Bots (robots) are go playing computer programs.  They are registered as normal users on DGS and are generally capable of playing with anyone interested, but they may have particular game parameters programmed in them, such as a particular board size.\r\n\r\nYou can detect currently active bots by their robot type icon <image robot.gif>. They may also have user-ids that contain the word (ro)bot or the name of some well known go-playing program like gnugo, fuego, mogo, etc.\r\n \r\nThe bots on DGS start games if invited according to their game preferences via the DGS invitation system. Depending on their operator, bots may run 24/7 or just at special times of the day or week.\r\n \r\nBots generate their moves without human intervention, though they may need some help during scoring. The strength of a bot depends on its algorithm, its thinking time and the computer or computer cluster on which it runs.', 'FAQ', 'Y', 'USED', '2015-03-07 13:42:51'),
(5940, 'Challenger wins by timeout or forfeit#T_ladder', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(5941, 'Challenger loses by timeout or forfeit#T_ladder', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(5942, 'Challenges-In#header', 'SRC', 'Done', 'USED', '2014-03-27 15:21:17'),
(5943, 'Challenges-Out#header', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(5946, 'Withdraw from Ladder', 'SRC', 'Done', 'USED', '2014-03-27 15:21:17'),
(5947, 'Withdrawing from this ladder is not possible, because you didn\'t join it.', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(5948, 'User withdrew from the ladder tournament.', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(5949, 'Withdrawn from ladder!', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(5950, 'Please confirm if you want to withdraw from ladder!', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(5951, 'Confirm Withdrawal#T_ladder', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(5952, 'Withdrawal notes#T_ladder', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(5954, 'Withdrawing from this ladder will remove your tournament user registration along with the rank history.', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(5955, 'If you rejoin the ladder, your get a new ladder rank according to the tournaments properties.', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(5956, 'My tournament results', 'SRC', 'Done', 'USED', '2014-03-27 15:21:17'),
(5957, 'Open#tourney', 'SRC', 'Done', 'USED', '2014-03-27 15:21:17'),
(5958, 'current round only#tourney', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(5959, 'Add, edit, delete tournament results', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(5960, 'Edit points#tourney', 'SRC', 'Done', 'USED', '2014-03-27 15:21:17'),
(5961, 'Setup tournament points to determine pool-winners', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(5962, 'Start next round', 'SRC', 'Done', 'USED', '2014-03-27 15:21:17'),
(5963, 'shown in tournament-participants list', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(6432, 'As director with \\\'%s\\\'-rights you can ignore the following warnings,<br>\nbut be wary of the consequences', 'SRC', 'Y', 'USED', '2016-08-20 19:33:13'),
(5965, 'No pool selected to start tournament games.', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(5966, 'If a (repeated) error occured during creation of the tournament-games or it was stopped manually,\nthe tournament could be broken and must be fixed by a tournament-admin.', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(5967, 'A special lock is set when starting games to prevent problems with multiple start operations.', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(5968, 'Creating tournament games is in work already (started at [%s] by %s).', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(5969, 'The lock expires after some time, so please retry first at [%s] before you ask for assistance.#tourney', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(5970, 'Tournament Round #%s has %s pools with %s users: %s of %s expected games have been started.', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(6189, 'only for target types: %s', 'SRC', 'Y', 'USED', '2014-10-30 00:43:09'),
(5972, 'Start games for selected pools in current round#tourney', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(5973, 'Pairing notes#tourney', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(5974, 'Starting tournament games ...', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(5975, 'All %s games for selected pools have been started.', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(5976, 'Tournament-Round Status has been changed to [%s].', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(5977, 'Expected %s games for selected pools, but only %s games has been started.#tourney', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(5978, 'Tournament Points saved!', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(5979, 'Tournament Points Editor', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(5980, 'points for winner#tpoints', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(5981, 'points for loser#tpoints', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(5982, 'points for both players#tpoints', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(5983, 'Points Type#tourney', 'SRC', 'Done', 'USED', '2014-03-27 15:21:17'),
(5984, 'only for points-type [%s]#tourney', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(5985, 'Points Won#tourney', 'SRC', 'Done', 'USED', '2014-03-27 15:21:17'),
(5986, 'Points Lost#tourney', 'SRC', 'Done', 'USED', '2014-03-27 15:21:17'),
(5987, 'Points Draw#tourney', 'SRC', 'Done', 'USED', '2014-03-27 15:21:17'),
(5988, 'Score Block#tourney', 'SRC', 'Done', 'USED', '2014-03-27 15:21:17'),
(5989, 'Max. Points#tourney', 'SRC', 'Done', 'USED', '2014-03-27 15:21:17'),
(5990, 'Share Max. Points#tourney', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(5991, 'Allow Negative Points#tourney', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(5992, 'Points Resignation#tourney', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(5993, 'Points Timeout#tourney', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(5994, 'for all points-types#tourney', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(5995, 'Points Forfeit#tourney', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(5996, 'Points No-Result#tourney', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(5997, 'Save Tournament Points', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(5998, 'Reset to Defaults', 'SRC', 'Done', 'USED', '2014-03-27 15:21:17'),
(5999, 'Examples Preview#tourney', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(6000, 'Options [%s] and [%s] can not both be enabled.#tourney', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(6001, 'Expecting even number for %s if max. points are shared.#tourney', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(6002, 'Category#header', 'SRC', 'Done', 'USED', '2014-03-27 15:21:17'),
(6003, 'Win#header', 'SRC', 'Done', 'USED', '2014-03-27 15:21:17'),
(6004, 'Loss#header', 'SRC', 'Done', 'USED', '2014-03-27 15:21:17'),
(6005, 'Point-Diff#tpoints', 'SRC', 'Done', 'USED', '2014-03-27 15:21:17'),
(6006, 'Draw', 'SRC', 'Done', 'USED', '2014-03-27 15:21:17'),
(6007, 'No-Result#gres', 'SRC', 'Done', 'USED', '2014-03-27 15:21:17'),
(6008, 'Annulled#gres', 'SRC', 'Done', 'USED', '2014-03-27 15:21:17'),
(6009, 'Custom value for point calculations#tpoints', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(6010, 'Remove from Pool', 'SRC', 'Done', 'USED', '2014-03-27 15:21:17'),
(6011, 'To remove, mark in selected pools', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(6012, 'Withdraw Player#tpool', 'SRC', 'Done', 'USED', '2014-03-27 15:21:17'),
(6013, 'Show counts of all ranks & rank-actions + Check Pool Winners.#tourney', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(6014, '%s entries have been updated for this action.#tourney', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(6015, 'Warnings', 'SRC', 'Done', 'USED', '2014-03-27 15:21:17'),
(6016, 'No errors or warnings found.#tourney', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(6017, 'Pool Winners Check', 'SRC', 'Done', 'USED', '2014-03-27 15:21:17'),
(6018, 'Rank Summary Notes#tourney', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(6019, 'Next Tournament Round #%s started!', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(6020, 'Starting next tournament round has failed with error-value [%s].', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(6021, 'Start Next Round#tourney', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(6022, 'Prepare next round, Switch tournament-status, Add & set new round#tourney', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(6023, 'Please confirm starting next tournament round', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(6024, 'Confirm', 'SRC', 'Done', 'USED', '2014-03-27 15:21:17'),
(6049, 'Edit is normally forbidden except for adding or removing user \non higher start round than current round.#tourney', 'SRC', 'Y', 'USED', '2014-04-03 23:26:03'),
(6026, 'View Pools (Round #%s)', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(6027, 'Pool matrix entries & colors (with link to game)#tpool_table', 'SRC', 'Done', 'USED', '2014-03-27 15:21:17'),
(6028, '\'%s\' = running game, \'%s\' = no game#tpool', 'SRC', 'Done', 'USED', '2014-03-27 15:21:17'),
(6029, 'game won by forfeit#tpool_table', 'SRC', 'Done', 'USED', '2014-03-27 15:21:17'),
(6030, 'game lost by forfeit#tpool_table', 'SRC', 'Done', 'USED', '2014-03-27 15:21:17'),
(6031, 'game annulled#tpool_table', 'SRC', 'Done', 'USED', '2014-03-27 15:21:17'),
(6032, 'game no-result#tpool_table', 'SRC', 'Done', 'USED', '2014-03-27 15:21:17'),
(6033, '[%s] = sum of points calculated from game-results of player', 'SRC', 'Done', 'USED', '2014-03-27 15:21:17'),
(6034, 'Points configuration type#tpoints', 'SRC', 'Done', 'USED', '2014-03-27 15:21:17'),
(6035, 'game ended by score (>0), resignation or timeout: %s points for winner, %s points for loser#tpool_table', 'SRC', 'Done', 'USED', '2014-03-27 15:21:17'),
(6036, 'game ended by forfeit: %s points for winner, %s points for loser#tpool_table', 'SRC', 'Done', 'USED', '2014-03-27 15:21:17'),
(6037, 'game ended by draw: %s points for both players#tpool_table', 'SRC', 'Done', 'USED', '2014-03-27 15:21:17'),
(6038, 'game ended by no-result: %s points for both players#tpool_table', 'SRC', 'Done', 'USED', '2014-03-27 15:21:17'),
(6039, 'game annulled: %s points#tpool_table', 'SRC', 'Done', 'USED', '2014-03-27 15:21:17'),
(6040, 'game ended by score or draw: %s points for every block of %s score-points#tpool_table', 'SRC', 'Done', 'USED', '2014-03-27 15:21:17'),
(6041, 'game ended by resignation (%s points), timeout (%s points), forfeit (%s points), no-result (%s points)#tpool_table', 'SRC', 'Done', 'USED', '2014-03-27 15:21:17'),
(6042, 'max. points per game: %s points#tpool_table', 'SRC', 'Done', 'USED', '2014-03-27 15:21:17'),
(6043, 'share points for game ended by score or draw#tpool_table', 'SRC', 'Done', 'USED', '2014-03-27 15:21:17'),
(6044, 'negative points allowed#tpool_table', 'SRC', 'Done', 'USED', '2014-03-27 15:21:17'),
(6045, 'R = \'%s\' = user withdrawing from next round#tpool', 'SRC', 'Done', 'USED', '2014-03-27 15:21:17'),
(6046, 'No tournament results.', 'SRC', 'Y', 'USED', '2014-03-27 15:21:17'),
(6048, 'Toggle Territory Markers#game', 'SRC', 'Done', 'USED', '2014-04-03 23:26:03'),
(6058, '%s can not be set if %s is only %s.#tourney', 'SRC', 'Y', 'USED', '2014-04-03 23:26:03'),
(6059, 'Consecutive Wins Threshold#T_ladder', 'SRC', 'Y', 'USED', '2014-04-03 23:26:03'),
(6060, 'Max. simultaneous games for user: %s defenses + your choice of %s challenges', 'SRC', 'Y', 'USED', '2014-04-03 23:26:03'),
(6061, 'max. %s', 'SRC', 'Done', 'USED', '2014-04-03 23:26:03'),
(6265, 'The author of this post is on your forum-post hide-list. Use %s to display it.', 'SRC', 'Y', 'USED', '2015-04-12 13:34:31'),
(6063, 'Achieving %s or more consecutive wins earns you a place in the \"Hall of Fame\".#T_ladder', 'SRC', 'Y', 'USED', '2014-04-03 23:26:03'),
(6064, 'Registration properties#tourney', 'SRC', 'Y', 'USED', '2014-04-03 23:26:03'),
(6065, 'Consecutive Wins', 'SRC', 'Done', 'USED', '2014-04-03 23:26:03'),
(6066, 'Result Span#header', 'SRC', 'Done', 'USED', '2014-04-03 23:26:03'),
(6067, 'Max. simultaneous games per user in this round', 'SRC', 'Y', 'USED', '2014-04-03 23:26:03'),
(6068, '%s users for round #%s#tourney', 'SRC', 'Y', 'USED', '2014-04-03 23:26:03'),
(6069, 'Be prepared to handle participants on higher start rounds [%s].#tourney', 'SRC', 'Y', 'USED', '2014-04-03 23:26:03'),
(6070, 'Max. Consecutive Wins', 'SRC', 'Done', 'USED', '2014-04-03 23:26:03'),
(6071, '#Consecutive Wins#header', 'SRC', 'Done', 'USED', '2014-04-03 23:26:03'),
(6072, 'Tournament Results (Hall of Fame)', 'SRC', 'Done', 'USED', '2014-04-03 23:26:03'),
(6073, 'tournament-related: end-time, min./max. participants, rating-use-mode, start-round#t_mng', 'SRC', 'Y', 'USED', '2014-04-03 23:26:03'),
(6264, 'Hide forum posts not allowed for admin-users.', 'SRC', 'Done', 'USED', '2015-04-12 13:34:31'),
(6075, 'Edit is normally forbidden except for accepting invitation or removing registration\non higher start round than current round.#tourney', 'SRC', 'Y', 'USED', '2014-04-03 23:26:03'),
(6076, '\"Games Count\" is based on a factor of %s games per challenge!#tpool', 'SRC', 'Done', 'USED', '2014-04-03 23:26:03'),
(6077, '%s = max. number of games per user (calculated for largest pool of distribution)', 'SRC', 'Y', 'USED', '2014-04-03 23:26:03'),
(6078, 'User\nGames#tpool_sugg', 'SRC', 'Done', 'USED', '2014-04-03 23:26:03'),
(6079, 'Round summary (%s players in %s pools): %s games started, %s running, %s finished#tpool', 'SRC', 'Done', 'USED', '2014-04-03 23:26:03'),
(6080, 'Tournament Points Configuration', 'SRC', 'Y', 'USED', '2014-04-03 23:26:03'),
(6081, 'TOP %s#tourney', 'SRC', 'Done', 'USED', '2014-04-03 23:26:03'),
(6082, 'Hit \"Submit\" to confirm and activate conditional-moves!', 'SRC', 'Y', 'USED', '2014-07-30 00:42:57'),
(6083, 'Download SGF with conditional moves', 'SRC', 'Done', 'USED', '2014-07-30 00:42:57'),
(6084, 'Conditional moves', 'SRC', 'Done', 'USED', '2014-07-30 00:42:57'),
(6085, 'Show#condmoves', 'SRC', 'Done', 'USED', '2014-07-30 00:42:57'),
(6086, 'Edit#condmoves', 'SRC', 'Done', 'USED', '2014-07-30 00:42:57'),
(6087, 'Add#condmoves', 'SRC', 'Done', 'USED', '2014-07-30 00:42:57'),
(6088, 'Missing conditional moves.', 'SRC', 'Done', 'USED', '2014-07-30 00:42:57'),
(6089, 'Can\'t detect conditional moves.', 'SRC', 'Done', 'USED', '2014-07-30 00:42:57'),
(6090, 'Conditional moves saved and activated!', 'SRC', 'Done', 'USED', '2014-07-30 00:42:57'),
(6091, 'Conditional moves saved, but not activated!', 'SRC', 'Done', 'USED', '2014-07-30 00:42:57'),
(6092, 'Parse errors#condmoves', 'SRC', 'Y', 'USED', '2014-07-30 00:42:57'),
(6093, 'Upload SGF with conditional moves', 'SRC', 'Done', 'USED', '2014-07-30 00:42:57');
INSERT INTO `TranslationTexts` (`ID`, `Text`, `Type`, `Translatable`, `Status`, `Updated`) VALUES
(6094, 'Sequence#condmoves', 'SRC', 'Done', 'USED', '2014-07-30 00:42:57'),
(6095, 'Edit sequence', 'SRC', 'Done', 'USED', '2014-07-30 00:42:57'),
(6096, 'Variations#condmoves', 'SRC', 'Done', 'USED', '2014-07-30 00:42:57'),
(6097, 'Preview variation#condmoves', 'SRC', 'Done', 'USED', '2014-07-30 00:42:57'),
(6098, 'Status#condmoves', 'SRC', 'Done', 'USED', '2014-07-30 00:42:57'),
(6099, 'Attributes#condmoves', 'SRC', 'Done', 'USED', '2014-07-30 00:42:57'),
(6100, 'Private (after game finished)#condmoves', 'SRC', 'Done', 'USED', '2014-07-30 00:42:57'),
(6101, 'Save to activate#condmoves', 'SRC', 'Y', 'USED', '2014-07-30 00:42:57'),
(6102, 'Activate#condmoves', 'SRC', 'Done', 'USED', '2014-07-30 00:42:57'),
(6103, 'Save inactive#condmoves', 'SRC', 'Done', 'USED', '2014-07-30 00:42:57'),
(6104, 'The uploaded file could not be opened for reading.', 'SRC', 'Done', 'USED', '2014-07-30 00:42:57'),
(6105, 'SGF contains more than one game-tree.', 'SRC', 'Done', 'USED', '2014-07-30 00:42:57'),
(6106, 'Variation [%s] at position %s is missing nodes.#sgf', 'SRC', 'Y', 'USED', '2014-07-30 00:42:57'),
(6107, 'Variation [%s] in node [%s] at position %s must start with opponents move.#condmoves', 'SRC', 'Y', 'USED', '2014-07-30 00:42:57'),
(6108, 'Node [%s] at position %s in variation [%s] has a Black and White move.#condmoves', 'SRC', 'Y', 'USED', '2014-07-30 00:42:57'),
(6109, 'Node [%s] at position %s in variation [%s] has same color as previous move.#condmoves', 'SRC', 'Y', 'USED', '2014-07-30 00:42:57'),
(6110, 'Node [%s] at position %s in variation [%s] has invalid coordinates [%s].#condmoves', 'SRC', 'Y', 'USED', '2014-07-30 00:42:57'),
(6111, 'Move in node [%s] at position %s in variation [%s] is not allowed after 2 PASS-moves.#condmoves', 'SRC', 'Y', 'USED', '2014-07-30 00:42:57'),
(6112, 'Move in node [%s] at position %s in variation [%s] is invalid (%s).#condmoves', 'SRC', 'Y', 'USED', '2014-07-30 00:42:57'),
(6113, 'Found node [%s] at position %s in variation [%s] without Black or White move.#condmoves', 'SRC', 'Y', 'USED', '2014-07-30 00:42:57'),
(6114, 'Variation [%s] at position %s started with move [%s], but it must be different from other variations.#condmoves', 'SRC', 'Y', 'USED', '2014-07-30 00:42:57'),
(6115, 'Variation [%s] ending at position %s must end with players color.#condmoves', 'SRC', 'Y', 'USED', '2014-07-30 00:42:57'),
(6116, 'Variation [%s] ending at position %s must have at least two moves.#condmoves', 'SRC', 'Y', 'USED', '2014-07-30 00:42:57'),
(6117, 'Conditional moves sequence contains %s nodes, but only %s are allowed.', 'SRC', 'Y', 'USED', '2014-07-30 00:42:57'),
(6118, 'Conditional moves sequence is %s bytes long, but only %s are allowed.', 'SRC', 'Y', 'USED', '2014-07-30 00:42:57'),
(6119, 'Variation reference [%s] must start with \'1\'.#condmoves', 'SRC', 'Y', 'USED', '2014-07-30 00:42:57'),
(6120, 'Illegal coordinate found [%s] in sub-variation [%s].#condmoves', 'SRC', 'Y', 'USED', '2014-07-30 00:42:57'),
(6121, 'Sub-variation [%s] can not be found.#condmoves', 'SRC', 'Y', 'USED', '2014-07-30 00:42:57'),
(6122, 'Playing conditional moves stopped: Error [%s] at move #%s [%s] found!', 'SRC', 'Y', 'USED', '2014-07-30 00:42:57'),
(6123, 'Inactive#CM_status', 'SRC', 'Done', 'USED', '2014-07-30 00:42:57'),
(6124, 'Active#CM_status', 'SRC', 'Done', 'USED', '2014-07-30 00:42:57'),
(6125, 'Illegal#CM_status', 'SRC', 'Done', 'USED', '2014-07-30 00:42:57'),
(6126, 'Opponent Message#CM_status', 'SRC', 'Done', 'USED', '2014-07-30 00:42:57'),
(6127, 'Deviated#CM_status', 'SRC', 'Done', 'USED', '2014-07-30 00:42:57'),
(6128, 'Done#CM_status', 'SRC', 'Done', 'USED', '2014-07-30 00:42:57'),
(6129, 'Missing context start-move#CM_err', 'SRC', 'Y', 'USED', '2014-07-30 00:42:57'),
(6130, 'No last move found#CM_err', 'SRC', 'Y', 'USED', '2014-07-30 00:42:57'),
(6131, 'Expected move-node, but found variation#CM_err', 'SRC', 'Y', 'USED', '2014-07-30 00:42:57'),
(6132, 'Unexpected move-nr#CM_err', 'SRC', 'Y', 'USED', '2014-07-30 00:42:57'),
(6133, 'Color mismatch#CM_err', 'SRC', 'Y', 'USED', '2014-07-30 00:42:57'),
(6134, 'Bad game-status for PASS-move#CM_err', 'SRC', 'Y', 'USED', '2014-07-30 00:42:57'),
(6135, 'Illegal position#CM_err', 'SRC', 'Done', 'USED', '2014-07-30 00:42:57'),
(6136, 'Illegal ko#CM_err', 'SRC', 'Done', 'USED', '2014-07-30 00:42:57'),
(6137, 'Illegal suicide#CM_err', 'SRC', 'Y', 'USED', '2014-07-30 00:42:57'),
(6138, 'Sorry, your hero percentage is not in the specified ratio range.', 'SRC', 'Done', 'USED', '2014-07-30 00:42:57'),
(6139, 'Invalid value for min. hero ratio [%s] (only integer in range 0..100).', 'SRC', 'Done', 'USED', '2014-07-30 00:42:57'),
(6140, 'Min. hero percentage', 'SRC', 'Done', 'USED', '2014-07-30 00:42:57'),
(6141, 'Cron-Created#B_flag', 'SRC', 'Done', 'USED', '2014-07-30 00:42:57'),
(6142, 'CRON', 'SRC', 'Done', 'USED', '2014-07-30 00:42:57'),
(6317, 'Message from %s#gamemsg', 'SRC', 'Done', 'USED', '2015-05-14 17:10:39'),
(6316, 'Position relative to game board', 'SRC', 'Done', 'USED', '2015-05-14 17:10:39'),
(6314, 'Above', 'SRC', 'Done', 'USED', '2015-05-14 17:10:39'),
(6315, 'Game move message', 'SRC', 'Done', 'USED', '2015-05-14 17:10:39'),
(6147, 'Your ratio#hero', 'SRC', 'Done', 'USED', '2014-07-30 00:42:57'),
(6148, 'User hero percentage is too small#wroom', 'SRC', 'Done', 'USED', '2014-07-30 00:42:57'),
(6149, 'Min. hero percentage, e.g. \"%s\"#wroom', 'SRC', 'Done', 'USED', '2014-07-30 00:42:57'),
(6150, 'Bad node position outside variation#sgf', 'SRC', 'Y', 'USED', '2014-07-30 00:42:57'),
(6151, 'Game-Tree syntax error#sgf', 'SRC', 'Y', 'USED', '2014-07-30 00:42:57'),
(6152, 'Property not unique#sgf', 'SRC', 'Y', 'USED', '2014-07-30 00:42:57'),
(6153, 'Node syntax error#sgf', 'SRC', 'Y', 'USED', '2014-07-30 00:42:57'),
(6154, 'No-Result#score', 'SRC', 'Done', 'USED', '2014-07-30 00:42:57'),
(6155, 'W#white_short', 'SRC', 'Done', 'USED', '2014-07-30 00:42:57'),
(6156, 'B#black_short', 'SRC', 'Done', 'USED', '2014-07-30 00:42:57'),
(6157, 'Resign#score', 'SRC', 'Done', 'USED', '2014-07-30 00:42:57'),
(6158, 'Time#score', 'SRC', 'Done', 'USED', '2014-07-30 00:42:57'),
(6159, 'Forfeit#score', 'SRC', 'Done', 'USED', '2014-07-30 00:42:57'),
(6160, 'Win%#header', 'SRC', 'Done', 'USED', '2014-07-30 00:42:57'),
(6161, 'Hero%#header', 'SRC', 'Done', 'USED', '2014-07-30 00:42:57'),
(6162, '%s [%s] is not allowed for this tournament.', 'SRC', 'Y', 'USED', '2014-07-30 00:42:57'),
(6163, 'Public Round-Robin', 'SRC', 'Done', 'USED', '2014-07-30 00:42:57'),
(6164, 'Private Round-Robin', 'SRC', 'Done', 'USED', '2014-07-30 00:42:57'),
(6188, 'Target User Rating Range#bulletin', 'SRC', 'Y', 'USED', '2014-10-30 00:43:09'),
(6166, 'The number of games [%s] per participant exceeds the wizard-type limit of [%s].#tourney', 'SRC', 'Y', 'USED', '2014-07-30 00:42:57'),
(6167, 'You can either reduce the max. pool size or do not use handicap-type \"double\" in the tournament rules.', 'SRC', 'Y', 'USED', '2014-07-30 00:42:57'),
(6168, 'You have to reduce the max. pool size.#tourney', 'SRC', 'Y', 'USED', '2014-07-30 00:42:57'),
(6169, '[Notification by CRON]: Last game in round %s finished#tourney', 'SRC', 'Y', 'USED', '2014-07-30 00:42:57'),
(6170, 'To all tournament directors of this tournament,\n\nthis is an automatic notification informing you, that all games in round %s of this tournament has been processed.\nNext step for you is to finish the tournament round, and then either start a new round or end the tournament.', 'SRC', 'Y', 'USED', '2014-07-30 00:42:57'),
(6171, 'This tournament can not be rated due to wizard-type restrictions.', 'SRC', 'Y', 'USED', '2014-07-30 00:42:57'),
(6425, 'Hide rating line', 'SRC', 'Done', 'USED', '2016-04-13 16:28:55'),
(6424, 'Update rating graph', 'SRC', 'Done', 'USED', '2016-04-13 16:28:55'),
(6174, 'Director#tstatfilter', 'SRC', 'Done', 'USED', '2014-07-30 00:42:57'),
(6175, 'Code#header', 'SRC', 'Done', 'USED', '2014-07-30 00:42:57'),
(6176, 'Encoding#header', 'SRC', 'Done', 'USED', '2014-07-30 00:42:57'),
(6177, 'Rated Win %', 'SRC', 'Done', 'USED', '2014-07-30 00:42:57'),
(6178, 'Hero %', 'SRC', 'Done', 'USED', '2014-07-30 00:42:57'),
(6179, 'Percentage of games with weaker players', 'SRC', 'Done', 'USED', '2014-07-30 00:42:57'),
(6182, 'SDK', 'FAQ', 'Done', 'USED', '2014-08-03 11:06:58'),
(6183, 'Single digit kyu - from 1 kyu to 9 kyu inclusive. Refers to a rating, but commonly used in regard to a player with a SDK rating.', 'FAQ', 'Y', 'USED', '2014-08-03 11:06:58'),
(6213, 'Invalid value [%s] for target user rating range [%s].#bulletin', 'SRC', 'Y', 'USED', '2014-12-31 22:02:29'),
(6185, 'How do I set my DGS rating?', 'FAQ', 'Y', 'USED', '2014-09-06 13:33:20'),
(6186, 'At the left hand menu is a link to your User info. There is space there for you to set your initial DGS rating. \r\n\r\nYou may find this whole section about ranks and ratings helpful:\r\n<home faq.php?read=t&cat=105#Entry105>Dragon ranks and ratings</home>', 'FAQ', 'Done', 'USED', '2014-09-06 13:33:20'),
(6187, 'Portuguese (Brazil) (utf-8)', 'SRC', 'Done', 'USED', '2014-10-14 20:30:02'),
(6196, 'If the ranking-diff is >%s, you may ask for a rating-change.#ranknotes', 'SRC', 'Done', 'USED', '2014-10-30 00:43:09'),
(6197, 'quote#forum', 'SRC', 'Done', 'USED', '2014-10-30 00:43:09'),
(6198, 'Last moved (old first)#nextgame', 'SRC', 'Done', 'USED', '2014-10-30 00:43:09'),
(6199, 'Last moved (new first)#nextgame', 'SRC', 'Done', 'USED', '2014-10-30 00:43:09'),
(6200, 'Ukrainian#lang', 'SRC', 'Done', 'USED', '2014-10-30 00:43:09'),
(6201, 'New tournaments', 'SRC', 'Done', 'USED', '2014-10-30 00:43:09'),
(6202, 'Ticket', 'SRC', 'Done', 'USED', '2014-10-30 00:43:09'),
(6203, 'Feature #%s: %s', 'SRC', 'Done', 'USED', '2014-10-30 00:43:09'),
(6204, '???#feature', 'SRC', 'Done', 'USED', '2014-10-30 00:43:09'),
(6205, 'Bulletin has restriction on users rating-range.', 'SRC', 'Y', 'USED', '2014-10-30 00:43:09'),
(6206, 'There are %s more for a total of %s entries ...', 'SRC', 'Y', 'USED', '2014-10-30 00:43:09'),
(6207, 'Status change normally done automatically by <home %s>Pairing-Editor</home> after all games successfully started in final step.#tourney', 'SRC', 'Y', 'USED', '2014-10-30 00:43:09'),
(6208, 'new#tourney', 'SRC', 'Done', 'USED', '2014-10-30 00:43:09'),
(6209, 'Select pools for starting tournament-games (use last checkbox for all pools and final check):', 'SRC', 'Y', 'USED', '2014-10-30 00:43:09'),
(6210, 'As final step you must start the games (once) with the \"All\"-selection to let the system switch the round-status.', 'SRC', 'Y', 'USED', '2014-10-30 00:43:09'),
(6211, 'What is a user\'s hero %?', 'FAQ', 'Y', 'USED', '2014-12-03 17:58:23'),
(6212, 'Players tend to learn by playing those who are stronger. In addition, by playing such players they have the opportunity to increase their ratings (in rated games). Conversely, stronger players are unlikely to learn from such games and they have the possibility of dropping their ratings (in rated games). \r\n\r\nIn view of the above, DGS recognizes those stronger players who help the community by playing those who are weaker. This recognition is known as \'Hero %\' and is shown in the User info and user lists after 20 games have been finished.\r\n\r\nThe metric is calculated by dividing the number of games played against weaker players by the number of finished games.\r\n \r\nA game against weaker players must match the following criteria to count for your Hero %:\r\n<ul>\r\n<li>you must have a DGS rating at the start of the game\r\n<li>at the start of the game your opponent must be weaker by at least 1kyu (>=100 <home faq.php?read=t&cat=105&e=107#Entry107>ELO points</home>) or your opponent has no rating.\r\n</ul>\r\n\r\nGames may be rated or unrated.\r\n\r\nMulti-player games are excluded.\r\n\r\nIf the hero-percentage is over 62% the user is also awarded with a golden badge (<image hero_gold.gif>), over 50% with a silver badge (<image hero_silver.gif>) and over 38% with a bronze badge (<image hero_bronze.gif>). If a user has such a badge, the percentage is shown as well.\r\n \r\nIt is possible to filter the Waiting room list using Hero %. In the Waiting room the hero-badge is shown in the Userid column.\r\n\r\nAlongside the Hero % in the User info is the number of games against weaker players needed to get to the the next level: gold <image hero_gold.gif>, silver <image hero_silver.gif> bronze <image hero_bronze.gif>. Hovering the cursor over the number will reveal a brief explanation. Keep in kind that this number is given \'other things being equal\'. That is, if you have 10 games to go to the next level and you next play five stronger players the number is likely to change. It is a snapshot of the position at the time of looking.', 'FAQ', 'Y', 'USED', '2014-12-03 17:58:23'),
(6214, 'Show rating graph by games', 'SRC', 'Done', 'USED', '2014-12-31 22:02:29'),
(6215, 'Game page settings', 'SRC', 'Done', 'USED', '2014-12-31 22:02:29'),
(6216, 'Submit move button', 'SRC', 'Done', 'USED', '2014-12-31 22:02:29'),
(6217, 'Show button to submit move and stay on same game', 'SRC', 'Done', 'USED', '2014-12-31 22:02:29'),
(6218, 'Submit and stay', 'SRC', 'Done', 'USED', '2014-12-31 22:02:29'),
(6219, 'All messages#filtermsg', 'SRC', 'Done', 'USED', '2014-12-31 22:02:29'),
(6220, 'Pending invitations#filterinv', 'SRC', 'Done', 'USED', '2014-12-31 22:02:29'),
(6221, 'Accepted invitations (for started games)#filterinv', 'SRC', 'Done', 'USED', '2014-12-31 22:02:29'),
(6222, 'Accepted invitations (for finished games)#filterinv', 'SRC', 'Done', 'USED', '2014-12-31 22:02:29'),
(6223, 'Declined invitations#filterinv', 'SRC', 'Done', 'USED', '2014-12-31 22:02:29'),
(6224, 'All invitations (without declines)#filterinv', 'SRC', 'Done', 'USED', '2014-12-31 22:02:29'),
(6225, 'Invitations#filtermsg', 'SRC', 'Done', 'USED', '2014-12-31 22:02:29'),
(6226, 'Game message scope#filtermsg', 'SRC', 'Y', 'USED', '2014-12-31 22:02:29'),
(6227, 'User Rating', 'SRC', 'Done', 'USED', '2014-12-31 22:02:29'),
(6228, 'Tournament Start', 'SRC', 'Y', 'USED', '2014-12-31 22:02:29'),
(6229, 'Need rating and min. %s finished games (%s%% with weaker players >1k-diff) to get hero badge', 'SRC', 'Done', 'USED', '2014-12-31 22:02:29'),
(6230, 'Games with weaker players >1k-diff needed to reach next hero badge level', 'SRC', 'Done', 'USED', '2014-12-31 22:02:29'),
(6231, 'Tournament last move', 'SRC', 'Done', 'USED', '2015-01-04 17:41:01'),
(6253, 'Annulling tournament-game is not allowed for type of this tournament [%s].', 'SRC', 'Y', 'USED', '2015-01-12 18:23:50'),
(6233, '(Date format [%s], local timezone)', 'SRC', 'Done', 'USED', '2015-01-11 12:15:03'),
(6234, 'My voted points', 'SRC', 'Done', 'USED', '2015-01-11 12:15:03'),
(6235, 'The time settings are too large, please choose shorter time settings.', 'SRC', 'Done', 'USED', '2015-01-11 12:15:03'),
(6236, '%s must not be > %s days.', 'SRC', 'Done', 'USED', '2015-01-11 12:15:03'),
(6237, 'Byo-yomi time for [%s] must not be > %s days.', 'SRC', 'Done', 'USED', '2015-01-11 12:15:03'),
(6238, 'Periods for %s [%s] must not be > %s.', 'SRC', 'Done', 'USED', '2015-01-11 12:15:03'),
(6239, 'Moves (stones) for %s [%s] must not be > %s.', 'SRC', 'Done', 'USED', '2015-01-11 12:15:03'),
(6240, 'Extra time for [%s] must not be longer than main time.', 'SRC', 'Done', 'USED', '2015-01-11 12:15:03'),
(6241, 'Extra time for [%s] must not be > %s days.', 'SRC', 'Done', 'USED', '2015-01-11 12:15:03'),
(6242, 'Message Flow', 'SRC', 'Done', 'USED', '2015-01-11 12:15:03'),
(6243, '#Started Games#tourney', 'SRC', 'Y', 'USED', '2015-01-11 12:15:03'),
(6244, 'Last access#T_header', 'SRC', 'Done', 'USED', '2015-01-11 12:15:03'),
(6245, 'Tournament last move#T_header', 'SRC', 'Done', 'USED', '2015-01-11 12:15:03'),
(6246, 'Rating Pos#TL_header', 'SRC', 'Done', 'USED', '2015-01-11 12:15:03'),
(6247, 'Theoretical ladder position if sorted by user rating', 'SRC', 'Y', 'USED', '2015-01-11 12:15:03'),
(6248, 'Rating Position#tourney', 'SRC', 'Y', 'USED', '2015-01-11 12:15:03'),
(6249, '#Consecutive Wins', 'SRC', 'Y', 'USED', '2015-01-11 12:15:03'),
(6250, 'Tournament participants / max. participants', 'SRC', 'Y', 'USED', '2015-01-11 12:15:03'),
(6251, 'Tournament size', 'SRC', 'Done', 'USED', '2015-01-11 12:15:03'),
(6252, '#Game offers', 'SRC', 'Done', 'USED', '2015-01-11 12:15:03'),
(6255, 'not allowed for this tournament-type', 'SRC', 'Y', 'USED', '2015-01-12 18:23:50'),
(6256, 'Running tournament games will be annulled, i.e. detached from the tournament, so they have no further effect on the tournament, but will be continued as normal games.', 'SRC', 'Y', 'USED', '2015-01-12 18:23:50'),
(6260, 'Which bots are active on DGS?', 'FAQ', 'Y', 'USED', '2015-03-07 13:56:57'),
(6261, 'List of robots on DGS (for used engine and game-restrictions, see bio page of robot):\r\n<ul>\r\n<li><user =whiterobot> maintained by <user =whiterabbit>\r\n\r\n<li><user =LeelaBot19> maintained by <user =leu>\r\n<li><user =FuegoBot> maintained by <user =leu>\r\n<li><user =FuegoBot9> maintained by <user =leu>\r\n<li><user =FuegoBot13> maintained by <user =leu>\r\n</ul>\r\n\r\nTo start a game with a robot, <home faq.php?read=t&cat=357&e=212#Entry212>invite them to a game</home>.', 'FAQ', 'Y', 'USED', '2015-03-07 13:56:57'),
(6262, 'Should I declare a bot?', 'FAQ', 'N', 'USED', '2015-04-11 17:57:56'),
(6263, 'Yes.\r\n\r\nAny bot playing on DGS must be declared as such to a DGS administrator.', 'FAQ', 'N', 'USED', '2015-04-11 17:57:56'),
(6276, 'if game was annulled by user or a tournament-director', 'SRC', 'Y', 'USED', '2015-04-12 13:34:31'),
(6277, 'On each <b>timeout</b> the losing player will receive a <b>penalty</b> of %s points.\nThe penalty points can be reduced by one with each own move played.\nIf %s penalty points are reached, the user will be automatically withdrawn from the tournament.#T_ladder', 'SRC', 'Y', 'USED', '2015-04-12 13:34:31'),
(6278, 'The user will be withdrawn from the ladder, if player hasn\'t accessed the server\nwithin the last %d days (excluding vacation).', 'SRC', 'Y', 'USED', '2015-04-12 13:34:31'),
(6279, 'On user removal from the ladder (by game-end action or by tournament-director)', 'SRC', 'Y', 'USED', '2015-04-12 13:34:31'),
(6280, 'Challenger scheduled for withdrawal (challenge not allowed).#T_ladder', 'SRC', 'Y', 'USED', '2015-04-12 13:34:31'),
(6281, 'Defender scheduled for withdrawal (challenge not allowed).#T_ladder', 'SRC', 'Y', 'USED', '2015-04-12 13:34:31'),
(6282, 'Defender can not be challenged due to loss on timeout.#T_ladder', 'SRC', 'Y', 'USED', '2015-04-12 13:34:31'),
(6283, 'rid [%s], StartRound [%s], Finished [%s], Won [%s], Lost [%s], PenaltyPoints [%s],\nFlags [%s]%s,\nCreated [%s]#tourney', 'SRC', 'Y', 'USED', '2015-04-12 13:34:31'),
(6284, 'Timeout-Loss#TP_flag', 'SRC', 'Y', 'USED', '2015-04-12 13:34:31'),
(6285, 'Registration has to wait till the open %s tournament games have been processed.#tourney', 'SRC', 'Y', 'USED', '2015-04-12 13:34:31'),
(6286, 'Withdrawal of user from ladder revoked!', 'SRC', 'Y', 'USED', '2015-04-12 13:34:31'),
(6287, 'Toggled timeout-loss flag for tournament participant (without penalty)!', 'SRC', 'Y', 'USED', '2015-04-12 13:34:31'),
(6288, 'open unprocessed games [%s]', 'SRC', 'Y', 'USED', '2015-04-12 13:34:31'),
(6289, 'Revoke withdrawal of user [%s] from ladder', 'SRC', 'Y', 'USED', '2015-04-12 13:34:31'),
(6290, 'Withdrawal of user from ladder will be revoked.', 'SRC', 'Y', 'USED', '2015-04-12 13:34:31'),
(6291, 'Withdraw user [%s] from ladder', 'SRC', 'Y', 'USED', '2015-04-12 13:34:31'),
(6292, 'Withdrawal from ladder will be initiated.', 'SRC', 'Y', 'USED', '2015-04-12 13:34:31'),
(6293, 'Prevent new challenges with HOLD-flag to allow finishing and processing of tournament games, after which user is automatically removed.', 'SRC', 'Y', 'USED', '2015-04-12 13:34:31'),
(6294, 'Toggle timeout-loss flag for user [%s]', 'SRC', 'Y', 'USED', '2015-04-12 13:34:31'),
(6295, 'Timeout-loss flag of tournament participant', 'SRC', 'Y', 'USED', '2015-04-12 13:34:31'),
(6296, 'Tournament participants penalty points will not be changed.', 'SRC', 'Y', 'USED', '2015-04-12 13:34:31'),
(6297, 'penalty for losing by timeout#tourney', 'SRC', 'Y', 'USED', '2015-04-12 13:34:31'),
(6298, '[days] user can be absent without being withdrawn from ladder', 'SRC', 'Y', 'USED', '2015-04-12 13:34:31'),
(6299, 'Challenging on-hold (due to initiated withdrawal)#T_ladder', 'SRC', 'Y', 'USED', '2015-04-12 13:34:31'),
(6300, 'Withdrawal initiated#T_ladder', 'SRC', 'Y', 'USED', '2015-04-12 13:34:31'),
(6301, 'Challenge timeout lock#T_ladder', 'SRC', 'Y', 'USED', '2015-04-12 13:34:31'),
(6302, 'Challenging on-hold#T_ladder', 'SRC', 'Y', 'USED', '2015-04-12 13:34:31'),
(6303, 'Penalty Points#tourney', 'SRC', 'Y', 'USED', '2015-04-12 13:34:31'),
(6304, 'Auto-withdraw on %s#T_ladder', 'SRC', 'Y', 'USED', '2015-04-12 13:34:31'),
(6305, 'Timeout information#T_ladder', 'SRC', 'Y', 'USED', '2015-04-12 13:34:31'),
(6306, 'Withdrawal state#T_ladder', 'SRC', 'Y', 'USED', '2015-04-12 13:34:31'),
(6307, '(please read notes below first)', 'SRC', 'Y', 'USED', '2015-04-12 13:34:31'),
(6308, 'Already scheduled for withdrawal#T_ladder', 'SRC', 'Y', 'USED', '2015-04-12 13:34:31'),
(6309, '%s running tournament games', 'SRC', 'Y', 'USED', '2015-04-12 13:34:31'),
(6310, 'Withdrawing will schedule your removal from the ladder tournament. You are set on-hold to prevent incoming challenges. After all your running tournament games have been finished and processed, you will be automatically removed from the ladder tournament.', 'SRC', 'Y', 'USED', '2015-04-12 13:34:31'),
(6311, 'A withdrawal request can only be revoked by a tournament-director.#T_ladder', 'SRC', 'Y', 'USED', '2015-04-12 13:34:31'),
(6312, 'Penalty-Points#header', 'SRC', 'Done', 'USED', '2015-04-12 13:34:31'),
(6313, 'game-end-handling, timeout-handling, user-join-order, user-absence-handling, achievements#t_mng', 'SRC', 'Y', 'USED', '2015-04-12 13:34:31'),
(6322, 'show bulletins, private messages, my games to move & MP-games to setup#menu', 'SRC', 'Done', 'USED', '2015-05-14 17:10:39'),
(6323, 'send private message to other user#menu', 'SRC', 'Done', 'USED', '2015-05-14 17:10:39'),
(6324, 'show all users#menu', 'SRC', 'Done', 'USED', '2015-05-14 17:10:39'),
(6325, 'show my private contacts#menu', 'SRC', 'Done', 'USED', '2015-05-14 17:10:39'),
(6326, 'show all games#menu', 'SRC', 'Done', 'USED', '2015-05-14 17:10:39'),
(6327, 'Default#lang', 'SRC', 'Done', 'USED', '2015-05-14 17:10:39'),
(6328, '#Observers', 'SRC', 'Done', 'USED', '2015-05-14 17:10:39'),
(6329, 'Black start rating', 'SRC', 'Done', 'USED', '2015-05-14 17:10:39'),
(6330, 'White start rating', 'SRC', 'Done', 'USED', '2015-05-14 17:10:39'),
(6331, 'Black end rating', 'SRC', 'Done', 'USED', '2015-05-14 17:10:39'),
(6332, 'Black rating diff', 'SRC', 'Done', 'USED', '2015-05-14 17:10:39'),
(6333, 'White end rating', 'SRC', 'Done', 'USED', '2015-05-14 17:10:39'),
(6334, 'White rating diff', 'SRC', 'Done', 'USED', '2015-05-14 17:10:39'),
(6335, 'Opponent name#header', 'SRC', 'Done', 'USED', '2015-05-14 17:10:39'),
(6336, 'Opponent name', 'SRC', 'Done', 'USED', '2015-05-14 17:10:39'),
(6337, 'Opponent userid#header', 'SRC', 'Done', 'USED', '2015-05-14 17:10:39'),
(6338, 'Opponent userid', 'SRC', 'Done', 'USED', '2015-05-14 17:10:39'),
(6339, 'Opponent rating#header', 'SRC', 'Done', 'USED', '2015-05-14 17:10:39'),
(6340, 'Opponent rating#2', 'SRC', 'Done', 'USED', '2015-05-14 17:10:39'),
(6341, 'Opponent start rating#header', 'SRC', 'Done', 'USED', '2015-05-14 17:10:39'),
(6342, 'Opponent start rating', 'SRC', 'Done', 'USED', '2015-05-14 17:10:39'),
(6343, 'Opponent end rating#header', 'SRC', 'Done', 'USED', '2015-05-14 17:10:39'),
(6344, 'Opponent end rating', 'SRC', 'Done', 'USED', '2015-05-14 17:10:39'),
(6345, 'Opponent rating diff#header', 'SRC', 'Done', 'USED', '2015-05-14 17:10:39'),
(6346, 'Opponent rating diff', 'SRC', 'Done', 'USED', '2015-05-14 17:10:39'),
(6347, 'User start rating#header', 'SRC', 'Done', 'USED', '2015-05-14 17:10:39'),
(6348, 'User start rating', 'SRC', 'Done', 'USED', '2015-05-14 17:10:39'),
(6349, 'User end rating#header', 'SRC', 'Done', 'USED', '2015-05-14 17:10:39'),
(6350, 'User end rating', 'SRC', 'Done', 'USED', '2015-05-14 17:10:39'),
(6351, 'User rating diff#header', 'SRC', 'Done', 'USED', '2015-05-14 17:10:39'),
(6352, 'User rating diff', 'SRC', 'Done', 'USED', '2015-05-14 17:10:39'),
(6353, 'Opponents Last Access', 'SRC', 'Done', 'USED', '2015-05-14 17:10:39'),
(6354, 'Priority', 'SRC', 'Done', 'USED', '2015-05-14 17:10:39'),
(6355, 'My time remaining', 'SRC', 'Done', 'USED', '2015-05-14 17:10:39'),
(6356, 'Opponent time remaining', 'SRC', 'Done', 'USED', '2015-05-14 17:10:39'),
(6357, 'Encoding#lang', 'SRC', 'Done', 'USED', '2015-05-14 17:10:39'),
(6358, 'Bulgarian', 'SRC', 'Done', 'USED', '2015-06-18 01:27:55'),
(6361, 'Collect entries by last notification time#notify', 'SRC', 'Done', 'USED', '2015-07-12 18:36:00'),
(6362, 'Email verification will be sent on saving changes!', 'SRC', 'Done', 'USED', '2015-07-12 18:36:00'),
(6363, 'Founder#CTB_category', 'SRC', 'Done', 'USED', '2015-07-12 18:36:00'),
(6364, 'Developer (Main)#CTB_category', 'SRC', 'Y', 'USED', '2015-07-12 18:36:00'),
(6365, 'Developer (Recruit)#CTB_category', 'SRC', 'Y', 'USED', '2015-07-12 18:36:00'),
(6366, 'Developer (Client)#CTB_category', 'SRC', 'Y', 'USED', '2015-07-12 18:36:00'),
(6367, 'Other#CTB_category', 'SRC', 'Y', 'USED', '2015-07-12 18:36:00'),
(6368, 'Administration - Dragon executives - Support contacts', 'SRC', 'Y', 'USED', '2015-07-12 18:36:00'),
(6369, 'Admin user contributions', 'SRC', 'Done', 'USED', '2015-07-12 18:36:00'),
(6378, 'Positive votes', 'SRC', 'Y', 'USED', '2016-04-12 22:04:10'),
(6379, 'Negative votes', 'SRC', 'Y', 'USED', '2016-04-12 22:04:10'),
(6431, 'Tournament Director Message', 'SRC', 'Y', 'USED', '2016-08-20 19:33:13'),
(6381, '1 total time (started games)#same_opp', 'SRC', 'Done', 'USED', '2016-04-12 22:04:10'),
(6382, '%s total times (started games)#same_opp', 'SRC', 'Done', 'USED', '2016-04-12 22:04:10'),
(6383, 'Games with opponent', 'SRC', 'Done', 'USED', '2016-04-12 22:04:10'),
(6384, '%s running, %s finished', 'SRC', 'Done', 'USED', '2016-04-12 22:04:10'),
(6385, 'User already has played with you before#wroom', 'SRC', 'Done', 'USED', '2016-04-12 22:04:10'),
(6386, 'Acceptance mode for challenges from same opponent:', 'SRC', 'Done', 'USED', '2016-04-12 22:04:10'),
(6387, 'never played before#wroom', 'SRC', 'Done', 'USED', '2016-04-12 22:04:10'),
(6388, 'total started games#wroom', 'SRC', 'Done', 'USED', '2016-04-12 22:04:10'),
(6389, 'same offer#same_opp', 'SRC', 'Done', 'USED', '2016-04-12 22:04:10'),
(6390, 'same offer after N days#same_opp', 'SRC', 'Done', 'USED', '2016-04-12 22:04:10'),
(6391, 'User has no rating and rating would be required for handicap calculations, marked by \"%s\"#wroom', 'SRC', 'Done', 'USED', '2016-04-12 22:04:10'),
(6392, '#Running games with user#header', 'SRC', 'Done', 'USED', '2016-04-12 22:04:10'),
(6393, 'Running games with user', 'SRC', 'Done', 'USED', '2016-04-12 22:04:10'),
(6394, 'Restrictions do not apply', 'SRC', 'Done', 'USED', '2016-04-12 22:04:10'),
(6395, '#Finished games with user#header', 'SRC', 'Done', 'USED', '2016-04-12 22:04:10'),
(6396, 'Finished games with user', 'SRC', 'Done', 'USED', '2016-04-12 22:04:10'),
(6397, 'without MP-games', 'SRC', 'Done', 'USED', '2016-04-12 22:04:10'),
(6398, 'X-Axis', 'SRC', 'Done', 'USED', '2016-04-12 22:04:10'),
(6399, 'Y-Axis', 'SRC', 'Done', 'USED', '2016-04-12 22:04:10'),
(6408, 'taps#ratgraph', 'SRC', 'Done', 'USED', '2016-04-12 22:04:10'),
(6409, 'Admin Edit#TD_flag', 'SRC', 'Y', 'USED', '2016-04-12 22:04:10'),
(6430, 'accept only if never played before#same_opp', 'SRC', 'Y', 'USED', '2016-08-20 19:33:13'),
(6411, 'Position#TRR_tourney', 'SRC', 'Y', 'USED', '2016-04-12 22:04:10'),
(6412, 'Sum Of Defeated Opponents\' Scores', 'SRC', 'Done', 'USED', '2016-04-12 22:04:10'),
(6413, 'Manual games with alternating color', 'SRC', 'Done', 'USED', '2016-04-12 22:04:10'),
(6414, 'Private Round-Robin with %s participants, %s pools, %s rounds#tourney', 'SRC', 'Done', 'USED', '2016-04-12 22:04:10'),
(6415, 'Public Round-Robin with %s participants, %s pools, %s rounds#tourney', 'SRC', 'Done', 'USED', '2016-04-12 22:04:10'),
(6416, 'Registration ID', 'SRC', 'Done', 'USED', '2016-04-12 22:04:10'),
(6417, 'Running games with opponent', 'SRC', 'Done', 'USED', '2016-04-12 22:04:10'),
(6418, 'Finished games with opponent', 'SRC', 'Done', 'USED', '2016-04-12 22:04:10'),
(6420, 'Different opponents', 'SRC', 'Done', 'USED', '2016-04-12 22:04:10'),
(6421, 'Different opponents of all games', 'SRC', 'Done', 'USED', '2016-04-12 22:04:10'),
(6422, 'Ratio of different opponents of all games', 'SRC', 'Done', 'USED', '2016-04-12 22:04:10'),
(6429, 'Managing tournaments', 'SRC', 'Done', 'USED', '2016-04-18 22:34:00');

-- --------------------------------------------------------

--
-- Table structure for table `UserQuota`
--

CREATE TABLE `UserQuota` (
  `uid` int NOT NULL,
  `FeaturePoints` smallint NOT NULL DEFAULT '25',
  `FeaturePointsUpdated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00'
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

-- --------------------------------------------------------

--
-- Table structure for table `Verification`
--

CREATE TABLE `Verification` (
  `ID` int NOT NULL,
  `uid` int NOT NULL,
  `Verified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `Created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `VType` tinyint UNSIGNED NOT NULL,
  `Email` varchar(80) NOT NULL,
  `Code` varbinary(40) NOT NULL,
  `Counter` tinyint UNSIGNED NOT NULL DEFAULT '0',
  `IP` varchar(16) NOT NULL DEFAULT ''
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

-- --------------------------------------------------------

--
-- Table structure for table `Waitingroom`
--

CREATE TABLE `Waitingroom` (
  `ID` int NOT NULL,
  `uid` int NOT NULL,
  `gid` int NOT NULL DEFAULT '0',
  `ShapeID` int UNSIGNED NOT NULL DEFAULT '0',
  `nrGames` tinyint UNSIGNED NOT NULL DEFAULT '1',
  `Time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `GameType` enum('GO','TEAM_GO','ZEN_GO') NOT NULL DEFAULT 'GO',
  `GamePlayers` char(5) NOT NULL DEFAULT '',
  `Ruleset` enum('JAPANESE','CHINESE') NOT NULL DEFAULT 'JAPANESE',
  `Size` tinyint UNSIGNED NOT NULL DEFAULT '19',
  `Komi` decimal(4,1) NOT NULL DEFAULT '6.5',
  `Handicap` tinyint UNSIGNED NOT NULL DEFAULT '0',
  `Handicaptype` enum('conv','proper','nigiri','double','black','white','auko_sec','auko_opn','div_ykic','div_ikyc') NOT NULL DEFAULT 'conv',
  `AdjKomi` decimal(4,1) NOT NULL DEFAULT '0.0',
  `JigoMode` enum('KEEP_KOMI','ALLOW_JIGO','NO_JIGO') NOT NULL DEFAULT 'KEEP_KOMI',
  `AdjHandicap` tinyint NOT NULL DEFAULT '0',
  `MinHandicap` tinyint UNSIGNED NOT NULL DEFAULT '0',
  `MaxHandicap` tinyint NOT NULL DEFAULT '-1',
  `Maintime` smallint NOT NULL DEFAULT '0',
  `Byotype` enum('JAP','CAN','FIS') NOT NULL DEFAULT 'JAP',
  `Byotime` smallint NOT NULL DEFAULT '0',
  `Byoperiods` tinyint NOT NULL DEFAULT '0',
  `Rated` enum('N','Y') NOT NULL DEFAULT 'N',
  `StdHandicap` enum('N','Y') NOT NULL DEFAULT 'N',
  `WeekendClock` enum('N','Y') NOT NULL DEFAULT 'Y',
  `MustBeRated` enum('N','Y') NOT NULL DEFAULT 'N',
  `RatingMin` smallint NOT NULL DEFAULT '-9999',
  `RatingMax` smallint NOT NULL DEFAULT '-9999',
  `MinRatedGames` smallint NOT NULL DEFAULT '0',
  `MinHeroRatio` tinyint UNSIGNED NOT NULL DEFAULT '0',
  `SameOpponent` tinyint NOT NULL DEFAULT '0',
  `ShapeSnapshot` varchar(255) NOT NULL DEFAULT '',
  `Comment` varchar(40) NOT NULL DEFAULT ''
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

-- --------------------------------------------------------

--
-- Table structure for table `WaitingroomJoined`
--

CREATE TABLE `WaitingroomJoined` (
  `opp_id` int NOT NULL,
  `wroom_id` int NOT NULL,
  `JoinedCount` tinyint NOT NULL DEFAULT '0',
  `ExpireDate` datetime NOT NULL DEFAULT '0000-00-00 00:00:00'
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

--
-- Indexes for dumped tables
--

--
-- Indexes for table `Adminlog`
--
ALTER TABLE `Adminlog`
  ADD PRIMARY KEY (`ID`);

--
-- Indexes for table `Bio`
--
ALTER TABLE `Bio`
  ADD PRIMARY KEY (`ID`),
  ADD KEY `uid` (`uid`,`SortOrder`);

--
-- Indexes for table `Bulletin`
--
ALTER TABLE `Bulletin`
  ADD PRIMARY KEY (`ID`),
  ADD KEY `Status` (`Status`);

--
-- Indexes for table `BulletinRead`
--
ALTER TABLE `BulletinRead`
  ADD PRIMARY KEY (`bid`,`uid`);

--
-- Indexes for table `BulletinTarget`
--
ALTER TABLE `BulletinTarget`
  ADD PRIMARY KEY (`bid`,`uid`);

--
-- Indexes for table `Clock`
--
ALTER TABLE `Clock`
  ADD PRIMARY KEY (`ID`);

--
-- Indexes for table `ConfigBoard`
--
ALTER TABLE `ConfigBoard`
  ADD PRIMARY KEY (`User_ID`);

--
-- Indexes for table `ConfigPages`
--
ALTER TABLE `ConfigPages`
  ADD PRIMARY KEY (`User_ID`);

--
-- Indexes for table `Contacts`
--
ALTER TABLE `Contacts`
  ADD PRIMARY KEY (`uid`,`cid`);

--
-- Indexes for table `Contribution`
--
ALTER TABLE `Contribution`
  ADD PRIMARY KEY (`ID`);

--
-- Indexes for table `Errorlog`
--
ALTER TABLE `Errorlog`
  ADD PRIMARY KEY (`ID`),
  ADD KEY `Message` (`Message`(8)),
  ADD KEY `Date` (`Date`);

--
-- Indexes for table `FAQ`
--
ALTER TABLE `FAQ`
  ADD PRIMARY KEY (`ID`),
  ADD KEY `Parent` (`Parent`),
  ADD KEY `Level` (`Level`),
  ADD KEY `Flags` (`Flags`);

--
-- Indexes for table `FAQlog`
--
ALTER TABLE `FAQlog`
  ADD PRIMARY KEY (`ID`);

--
-- Indexes for table `Feature`
--
ALTER TABLE `Feature`
  ADD PRIMARY KEY (`ID`),
  ADD KEY `Status` (`Status`);

--
-- Indexes for table `FeatureVote`
--
ALTER TABLE `FeatureVote`
  ADD PRIMARY KEY (`fid`,`Voter_ID`),
  ADD KEY `Voter_ID` (`Voter_ID`),
  ADD KEY `Points` (`Points`);

--
-- Indexes for table `Folders`
--
ALTER TABLE `Folders`
  ADD PRIMARY KEY (`ID`),
  ADD KEY `uid` (`uid`,`Folder_nr`);

--
-- Indexes for table `Forumlog`
--
ALTER TABLE `Forumlog`
  ADD PRIMARY KEY (`ID`),
  ADD KEY `User_ID` (`User_ID`),
  ADD KEY `Time` (`Time`),
  ADD KEY `Action` (`Action`(4));

--
-- Indexes for table `Forumreads`
--
ALTER TABLE `Forumreads`
  ADD PRIMARY KEY (`Thread_ID`,`User_ID`,`Forum_ID`);

--
-- Indexes for table `Forums`
--
ALTER TABLE `Forums`
  ADD PRIMARY KEY (`ID`),
  ADD KEY `SortOrder` (`SortOrder`);

--
-- Indexes for table `GameInvitation`
--
ALTER TABLE `GameInvitation`
  ADD PRIMARY KEY (`gid`,`uid`);

--
-- Indexes for table `GamePlayers`
--
ALTER TABLE `GamePlayers`
  ADD PRIMARY KEY (`ID`),
  ADD KEY `gidGroup` (`gid`,`GroupColor`,`GroupOrder`),
  ADD KEY `uid` (`uid`);

--
-- Indexes for table `Games`
--
ALTER TABLE `Games`
  ADD PRIMARY KEY (`ID`),
  ADD KEY `ToMove_ID` (`ToMove_ID`),
  ADD KEY `Size` (`Size`),
  ADD KEY `Lastchanged` (`Lastchanged`),
  ADD KEY `Status` (`Status`),
  ADD KEY `ClockUsed` (`ClockUsed`),
  ADD KEY `Black_ID` (`Black_ID`),
  ADD KEY `White_ID` (`White_ID`),
  ADD KEY `Handicap` (`Handicap`),
  ADD KEY `Moves` (`Moves`),
  ADD KEY `tid` (`tid`),
  ADD KEY `Score` (`Score`),
  ADD KEY `Flags` (`Flags`);

--
-- Indexes for table `GameSgf`
--
ALTER TABLE `GameSgf`
  ADD PRIMARY KEY (`gid`,`uid`);

--
-- Indexes for table `GamesNotes`
--
ALTER TABLE `GamesNotes`
  ADD PRIMARY KEY (`gid`,`uid`);

--
-- Indexes for table `GamesPriority`
--
ALTER TABLE `GamesPriority`
  ADD PRIMARY KEY (`gid`,`uid`);

--
-- Indexes for table `GameStats`
--
ALTER TABLE `GameStats`
  ADD UNIQUE KEY `uid_oid` (`uid`,`oid`),
  ADD KEY `oid` (`oid`);

--
-- Indexes for table `Intro`
--
ALTER TABLE `Intro`
  ADD PRIMARY KEY (`ID`),
  ADD KEY `Parent` (`Parent`),
  ADD KEY `Level` (`Level`),
  ADD KEY `Flags` (`Flags`);

--
-- Indexes for table `IpStats`
--
ALTER TABLE `IpStats`
  ADD PRIMARY KEY (`uid`,`Page`,`IP`),
  ADD KEY `Created` (`Created`);

--
-- Indexes for table `ko_temp`
--
ALTER TABLE `ko_temp`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `Links`
--
ALTER TABLE `Links`
  ADD PRIMARY KEY (`ID`),
  ADD KEY `Parent` (`Parent`),
  ADD KEY `Level` (`Level`),
  ADD KEY `Flags` (`Flags`);

--
-- Indexes for table `MessageCorrespondents`
--
ALTER TABLE `MessageCorrespondents`
  ADD PRIMARY KEY (`ID`),
  ADD KEY `mid` (`mid`),
  ADD KEY `uid` (`uid`),
  ADD KEY `Sender` (`Sender`),
  ADD KEY `Folder_nr` (`Folder_nr`);

--
-- Indexes for table `Messages`
--
ALTER TABLE `Messages`
  ADD PRIMARY KEY (`ID`),
  ADD KEY `ReplyTo` (`ReplyTo`),
  ADD KEY `Thread` (`Thread`),
  ADD KEY `Time` (`Time`),
  ADD KEY `Game_ID` (`Game_ID`);
ALTER TABLE `Messages` ADD FULLTEXT KEY `Subject` (`Subject`,`Text`);

--
-- Indexes for table `MoveMessages`
--
ALTER TABLE `MoveMessages`
  ADD PRIMARY KEY (`gid`,`MoveNr`);

--
-- Indexes for table `Moves`
--
ALTER TABLE `Moves`
  ADD PRIMARY KEY (`ID`),
  ADD KEY `gid` (`gid`,`MoveNr`);

--
-- Indexes for table `MoveSequence`
--
ALTER TABLE `MoveSequence`
  ADD PRIMARY KEY (`ID`),
  ADD KEY `gid_uid_status` (`gid`,`uid`,`Status`);

--
-- Indexes for table `MoveStats`
--
ALTER TABLE `MoveStats`
  ADD PRIMARY KEY (`uid`,`SlotTime`,`SlotWDay`,`SlotWeek`),
  ADD KEY `SlotWeek` (`SlotWeek`);

--
-- Indexes for table `Observers`
--
ALTER TABLE `Observers`
  ADD PRIMARY KEY (`ID`),
  ADD KEY `uid` (`uid`),
  ADD KEY `gid` (`gid`);

--
-- Indexes for table `Players`
--
ALTER TABLE `Players`
  ADD PRIMARY KEY (`ID`),
  ADD UNIQUE KEY `Handle` (`Handle`),
  ADD KEY `Rating2` (`Rating2`),
  ADD KEY `Name` (`Name`),
  ADD KEY `Activity` (`Activity`),
  ADD KEY `Country` (`Country`),
  ADD KEY `Lastaccess` (`Lastaccess`),
  ADD KEY `Adminlevel` (`Adminlevel`),
  ADD KEY `AdminOptions` (`AdminOptions`),
  ADD KEY `Type` (`Type`),
  ADD KEY `CountFeatNew` (`CountFeatNew`),
  ADD KEY `OnVacation` (`OnVacation`),
  ADD KEY `VacationDays` (`VacationDays`),
  ADD KEY `Notify` (`Notify`);

--
-- Indexes for table `Posts`
--
ALTER TABLE `Posts`
  ADD PRIMARY KEY (`ID`),
  ADD KEY `Thread_ID` (`Thread_ID`),
  ADD KEY `Forum_ID` (`Forum_ID`),
  ADD KEY `Lastchanged` (`Lastchanged`),
  ADD KEY `Parent_ID` (`Parent_ID`),
  ADD KEY `Time` (`Time`),
  ADD KEY `Approved` (`Approved`),
  ADD KEY `User_ID` (`User_ID`),
  ADD KEY `PosIndex` (`PosIndex`);
ALTER TABLE `Posts` ADD FULLTEXT KEY `Subject` (`Subject`,`Text`);

--
-- Indexes for table `Profiles`
--
ALTER TABLE `Profiles`
  ADD PRIMARY KEY (`ID`),
  ADD KEY `UserType` (`User_ID`,`Type`);

--
-- Indexes for table `RatingChangeAdmin`
--
ALTER TABLE `RatingChangeAdmin`
  ADD PRIMARY KEY (`ID`),
  ADD KEY `uid` (`uid`),
  ADD KEY `Created` (`Created`);

--
-- Indexes for table `Ratinglog`
--
ALTER TABLE `Ratinglog`
  ADD PRIMARY KEY (`ID`),
  ADD KEY `gid` (`gid`),
  ADD KEY `UserTime` (`uid`,`Time`);

--
-- Indexes for table `Shape`
--
ALTER TABLE `Shape`
  ADD PRIMARY KEY (`ID`),
  ADD UNIQUE KEY `Name` (`Name`),
  ADD KEY `uid` (`uid`);

--
-- Indexes for table `Statistics`
--
ALTER TABLE `Statistics`
  ADD PRIMARY KEY (`ID`);

--
-- Indexes for table `Survey`
--
ALTER TABLE `Survey`
  ADD PRIMARY KEY (`ID`),
  ADD KEY `uid` (`uid`),
  ADD KEY `Status` (`Status`);

--
-- Indexes for table `SurveyOption`
--
ALTER TABLE `SurveyOption`
  ADD PRIMARY KEY (`ID`),
  ADD UNIQUE KEY `sidTag` (`sid`,`Tag`);

--
-- Indexes for table `SurveyUser`
--
ALTER TABLE `SurveyUser`
  ADD PRIMARY KEY (`sid`,`uid`);

--
-- Indexes for table `SurveyVote`
--
ALTER TABLE `SurveyVote`
  ADD PRIMARY KEY (`soid`,`uid`);

--
-- Indexes for table `Tagged`
--
ALTER TABLE `Tagged`
  ADD KEY `User_Tag` (`User_ID`,`Tag_ID`),
  ADD KEY `User_Post` (`User_ID`,`Post_ID`);

--
-- Indexes for table `Tags`
--
ALTER TABLE `Tags`
  ADD PRIMARY KEY (`ID`),
  ADD KEY `User_ID` (`User_ID`);

--
-- Indexes for table `Tournament`
--
ALTER TABLE `Tournament`
  ADD PRIMARY KEY (`ID`),
  ADD KEY `Status` (`Status`),
  ADD KEY `StartTime` (`StartTime`);

--
-- Indexes for table `TournamentDirector`
--
ALTER TABLE `TournamentDirector`
  ADD PRIMARY KEY (`tid`,`uid`);

--
-- Indexes for table `TournamentExtension`
--
ALTER TABLE `TournamentExtension`
  ADD PRIMARY KEY (`tid`,`Property`),
  ADD KEY `DateValue` (`DateValue`);

--
-- Indexes for table `TournamentGames`
--
ALTER TABLE `TournamentGames`
  ADD PRIMARY KEY (`ID`),
  ADD KEY `Challenger_uid` (`Challenger_uid`),
  ADD KEY `Defender_uid` (`Defender_uid`),
  ADD KEY `gid` (`gid`),
  ADD KEY `Status_Ticks` (`Status`,`TicksDue`),
  ADD KEY `tidRoundPool` (`tid`,`Round_ID`,`Pool`),
  ADD KEY `Challenger_rid` (`Challenger_rid`),
  ADD KEY `Defender_rid` (`Defender_rid`);

--
-- Indexes for table `TournamentLadder`
--
ALTER TABLE `TournamentLadder`
  ADD PRIMARY KEY (`tid`,`rid`),
  ADD KEY `uid` (`uid`),
  ADD KEY `Rank` (`tid`,`Rank`);

--
-- Indexes for table `TournamentLadderProps`
--
ALTER TABLE `TournamentLadderProps`
  ADD PRIMARY KEY (`tid`),
  ADD KEY `UserAbsenceDays` (`UserAbsenceDays`);

--
-- Indexes for table `Tournamentlog`
--
ALTER TABLE `Tournamentlog`
  ADD PRIMARY KEY (`ID`),
  ADD KEY `tid` (`tid`);

--
-- Indexes for table `TournamentNews`
--
ALTER TABLE `TournamentNews`
  ADD PRIMARY KEY (`ID`),
  ADD KEY `tidPublished` (`tid`,`Published`),
  ADD KEY `Status` (`Status`);

--
-- Indexes for table `TournamentParticipant`
--
ALTER TABLE `TournamentParticipant`
  ADD PRIMARY KEY (`ID`),
  ADD KEY `uid` (`uid`),
  ADD KEY `tid_status` (`tid`,`Status`),
  ADD KEY `tidStartRound` (`tid`,`StartRound`),
  ADD KEY `tidNextRound` (`tid`,`NextRound`);

--
-- Indexes for table `TournamentPoints`
--
ALTER TABLE `TournamentPoints`
  ADD PRIMARY KEY (`tid`);

--
-- Indexes for table `TournamentPool`
--
ALTER TABLE `TournamentPool`
  ADD PRIMARY KEY (`ID`),
  ADD KEY `tidRoundPool` (`tid`,`Round`,`Pool`),
  ADD KEY `uid` (`uid`),
  ADD KEY `tidRank` (`tid`,`Rank`);

--
-- Indexes for table `TournamentProperties`
--
ALTER TABLE `TournamentProperties`
  ADD PRIMARY KEY (`tid`);

--
-- Indexes for table `TournamentResult`
--
ALTER TABLE `TournamentResult`
  ADD PRIMARY KEY (`ID`),
  ADD KEY `tidRank` (`tid`,`Rank`),
  ADD KEY `rid` (`rid`);

--
-- Indexes for table `TournamentRound`
--
ALTER TABLE `TournamentRound`
  ADD PRIMARY KEY (`ID`),
  ADD UNIQUE KEY `tidRound` (`tid`,`Round`);

--
-- Indexes for table `TournamentRules`
--
ALTER TABLE `TournamentRules`
  ADD PRIMARY KEY (`ID`),
  ADD KEY `tid` (`tid`),
  ADD KEY `Size` (`Size`);

--
-- Indexes for table `TournamentVisit`
--
ALTER TABLE `TournamentVisit`
  ADD PRIMARY KEY (`uid`,`tid`),
  ADD KEY `tid` (`tid`);

--
-- Indexes for table `TranslationFoundInGroup`
--
ALTER TABLE `TranslationFoundInGroup`
  ADD PRIMARY KEY (`Text_ID`,`Group_ID`);

--
-- Indexes for table `TranslationGroups`
--
ALTER TABLE `TranslationGroups`
  ADD PRIMARY KEY (`ID`);

--
-- Indexes for table `TranslationLanguages`
--
ALTER TABLE `TranslationLanguages`
  ADD PRIMARY KEY (`ID`);

--
-- Indexes for table `Translationlog`
--
ALTER TABLE `Translationlog`
  ADD PRIMARY KEY (`ID`),
  ADD KEY `PlayerLang` (`Player_ID`,`Language_ID`);

--
-- Indexes for table `TranslationPages`
--
ALTER TABLE `TranslationPages`
  ADD PRIMARY KEY (`Page`);

--
-- Indexes for table `Translations`
--
ALTER TABLE `Translations`
  ADD PRIMARY KEY (`Language_ID`,`Original_ID`),
  ADD KEY `Original_ID` (`Original_ID`);

--
-- Indexes for table `TranslationTexts`
--
ALTER TABLE `TranslationTexts`
  ADD PRIMARY KEY (`ID`),
  ADD KEY `Text` (`Text`(4));

--
-- Indexes for table `UserQuota`
--
ALTER TABLE `UserQuota`
  ADD PRIMARY KEY (`uid`),
  ADD KEY `FeaturePointsUpdated` (`FeaturePointsUpdated`);

--
-- Indexes for table `Verification`
--
ALTER TABLE `Verification`
  ADD PRIMARY KEY (`ID`),
  ADD KEY `uid_Verified` (`uid`,`Verified`);

--
-- Indexes for table `Waitingroom`
--
ALTER TABLE `Waitingroom`
  ADD PRIMARY KEY (`ID`),
  ADD KEY `Handicaptype` (`Handicaptype`);

--
-- Indexes for table `WaitingroomJoined`
--
ALTER TABLE `WaitingroomJoined`
  ADD PRIMARY KEY (`wroom_id`,`opp_id`);

--
-- AUTO_INCREMENT for dumped tables
--

--
-- AUTO_INCREMENT for table `Adminlog`
--
ALTER TABLE `Adminlog`
  MODIFY `ID` int NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `Bio`
--
ALTER TABLE `Bio`
  MODIFY `ID` int NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `Bulletin`
--
ALTER TABLE `Bulletin`
  MODIFY `ID` int NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `Contribution`
--
ALTER TABLE `Contribution`
  MODIFY `ID` int NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `Errorlog`
--
ALTER TABLE `Errorlog`
  MODIFY `ID` int NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `FAQ`
--
ALTER TABLE `FAQ`
  MODIFY `ID` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=426;

--
-- AUTO_INCREMENT for table `FAQlog`
--
ALTER TABLE `FAQlog`
  MODIFY `ID` int NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `Feature`
--
ALTER TABLE `Feature`
  MODIFY `ID` int NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `Folders`
--
ALTER TABLE `Folders`
  MODIFY `ID` int NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `Forumlog`
--
ALTER TABLE `Forumlog`
  MODIFY `ID` int NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `Forums`
--
ALTER TABLE `Forums`
  MODIFY `ID` smallint NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `GamePlayers`
--
ALTER TABLE `GamePlayers`
  MODIFY `ID` int NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `Games`
--
ALTER TABLE `Games`
  MODIFY `ID` int NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `Intro`
--
ALTER TABLE `Intro`
  MODIFY `ID` int NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `ko_temp`
--
ALTER TABLE `ko_temp`
  MODIFY `id` int UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=9;

--
-- AUTO_INCREMENT for table `Links`
--
ALTER TABLE `Links`
  MODIFY `ID` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=68;

--
-- AUTO_INCREMENT for table `MessageCorrespondents`
--
ALTER TABLE `MessageCorrespondents`
  MODIFY `ID` int NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `Messages`
--
ALTER TABLE `Messages`
  MODIFY `ID` int NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `Moves`
--
ALTER TABLE `Moves`
  MODIFY `ID` int NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `MoveSequence`
--
ALTER TABLE `MoveSequence`
  MODIFY `ID` int NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `Observers`
--
ALTER TABLE `Observers`
  MODIFY `ID` int NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `Players`
--
ALTER TABLE `Players`
  MODIFY `ID` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;

--
-- AUTO_INCREMENT for table `Posts`
--
ALTER TABLE `Posts`
  MODIFY `ID` int NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `Profiles`
--
ALTER TABLE `Profiles`
  MODIFY `ID` int NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `RatingChangeAdmin`
--
ALTER TABLE `RatingChangeAdmin`
  MODIFY `ID` int NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `Ratinglog`
--
ALTER TABLE `Ratinglog`
  MODIFY `ID` int NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `Shape`
--
ALTER TABLE `Shape`
  MODIFY `ID` int NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `Statistics`
--
ALTER TABLE `Statistics`
  MODIFY `ID` int NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `Survey`
--
ALTER TABLE `Survey`
  MODIFY `ID` int NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `SurveyOption`
--
ALTER TABLE `SurveyOption`
  MODIFY `ID` int NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `Tags`
--
ALTER TABLE `Tags`
  MODIFY `ID` int NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `Tournament`
--
ALTER TABLE `Tournament`
  MODIFY `ID` int NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `TournamentGames`
--
ALTER TABLE `TournamentGames`
  MODIFY `ID` int NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `Tournamentlog`
--
ALTER TABLE `Tournamentlog`
  MODIFY `ID` int NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `TournamentNews`
--
ALTER TABLE `TournamentNews`
  MODIFY `ID` int NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `TournamentParticipant`
--
ALTER TABLE `TournamentParticipant`
  MODIFY `ID` int NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `TournamentPool`
--
ALTER TABLE `TournamentPool`
  MODIFY `ID` int NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `TournamentResult`
--
ALTER TABLE `TournamentResult`
  MODIFY `ID` int NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `TournamentRound`
--
ALTER TABLE `TournamentRound`
  MODIFY `ID` int NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `TournamentRules`
--
ALTER TABLE `TournamentRules`
  MODIFY `ID` int NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `TranslationGroups`
--
ALTER TABLE `TranslationGroups`
  MODIFY `ID` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=21;

--
-- AUTO_INCREMENT for table `TranslationLanguages`
--
ALTER TABLE `TranslationLanguages`
  MODIFY `ID` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=42;

--
-- AUTO_INCREMENT for table `Translationlog`
--
ALTER TABLE `Translationlog`
  MODIFY `ID` int NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `TranslationTexts`
--
ALTER TABLE `TranslationTexts`
  MODIFY `ID` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6436;

--
-- AUTO_INCREMENT for table `Verification`
--
ALTER TABLE `Verification`
  MODIFY `ID` int NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `Waitingroom`
--
ALTER TABLE `Waitingroom`
  MODIFY `ID` int NOT NULL AUTO_INCREMENT;
COMMIT;

/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
//


koh5_pano



Your browser does not support the HTML5 canvas element.


Drag mouse to navigate.

Navigation





17.Aug.2010, Martin Wengenmayer