-- MySQL dump 10.11 -- -- Host: 195.246.8.129 Database: insiders -- ------------------------------------------------------ -- Server version 4.1.11-Debian_4sarge7-log /*!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 cp1250 */; /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; /*!40103 SET TIME_ZONE='+00:00' */; /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; -- -- Table structure for table `adminpage` -- DROP TABLE IF EXISTS `adminpage`; CREATE TABLE `adminpage` ( `adminpage_id` int(11) NOT NULL auto_increment, `adminpagename` varchar(255) NOT NULL default '', `template_id` int(11) NOT NULL default '0', `header` varchar(255) NOT NULL default '', `html` text NOT NULL, PRIMARY KEY (`adminpage_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; -- -- Dumping data for table `adminpage` -- LOCK TABLES `adminpage` WRITE; /*!40000 ALTER TABLE `adminpage` DISABLE KEYS */; INSERT INTO `adminpage` VALUES (9,'signfail',62,'Newsletter registration failed','<h2>Newsletter registration failed.</h2>\r\n<p>E-mail address wrong format or e-mail address already exist in our database.</p>\r\n<p>Please try again.<br />\r\n&nbsp;</p>'),(2,'forbidden',62,'Forbidden access','<h1>Forbidden access</h1>\r\n<p>The page doesn't&nbsp;<!--StartFragment --> existed or You haven't got access.</p>\r\n<p>&nbsp;</p>'),(8,'signsuccess',62,'Newsletter registration successful','<h2>You are successfully registered to&nbsp;Insider's Slovenia&nbsp;newsletter.</h2>'); /*!40000 ALTER TABLE `adminpage` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `forum_Category` -- DROP TABLE IF EXISTS `forum_Category`; CREATE TABLE `forum_Category` ( `CategoryID` int(2) NOT NULL auto_increment, `Name` varchar(100) NOT NULL default '', `Description` text, `Priority` int(11) NOT NULL default '0', PRIMARY KEY (`CategoryID`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; -- -- Dumping data for table `forum_Category` -- LOCK TABLES `forum_Category` WRITE; /*!40000 ALTER TABLE `forum_Category` DISABLE KEYS */; INSERT INTO `forum_Category` VALUES (1,'General','General discussions go in here...',7); /*!40000 ALTER TABLE `forum_Category` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `forum_CategoryBlock` -- DROP TABLE IF EXISTS `forum_CategoryBlock`; CREATE TABLE `forum_CategoryBlock` ( `CategoryID` int(11) NOT NULL default '0', `UserID` int(11) NOT NULL default '0', `Blocked` enum('1','0') NOT NULL default '1', PRIMARY KEY (`CategoryID`,`UserID`), KEY `cat_block_user` (`UserID`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; -- -- Dumping data for table `forum_CategoryBlock` -- LOCK TABLES `forum_CategoryBlock` WRITE; /*!40000 ALTER TABLE `forum_CategoryBlock` DISABLE KEYS */; /*!40000 ALTER TABLE `forum_CategoryBlock` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `forum_CategoryRoleBlock` -- DROP TABLE IF EXISTS `forum_CategoryRoleBlock`; CREATE TABLE `forum_CategoryRoleBlock` ( `CategoryID` int(11) NOT NULL default '0', `RoleID` int(11) NOT NULL default '0', `Blocked` enum('1','0') NOT NULL default '0', KEY `cat_roleblock_cat` (`CategoryID`), KEY `cat_roleblock_role` (`RoleID`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; -- -- Dumping data for table `forum_CategoryRoleBlock` -- LOCK TABLES `forum_CategoryRoleBlock` WRITE; /*!40000 ALTER TABLE `forum_CategoryRoleBlock` DISABLE KEYS */; /*!40000 ALTER TABLE `forum_CategoryRoleBlock` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `forum_Comment` -- DROP TABLE IF EXISTS `forum_Comment`; CREATE TABLE `forum_Comment` ( `CommentID` int(8) NOT NULL auto_increment, `DiscussionID` int(8) NOT NULL default '0', `AuthUserID` int(10) NOT NULL default '0', `DateCreated` datetime default NULL, `EditUserID` int(10) default NULL, `DateEdited` datetime default NULL, `WhisperUserID` int(11) default NULL, `Body` text, `FormatType` varchar(20) default NULL, `Deleted` enum('1','0') NOT NULL default '0', `DateDeleted` datetime default NULL, `DeleteUserID` int(10) NOT NULL default '0', `RemoteIp` varchar(100) default '', PRIMARY KEY (`CommentID`,`DiscussionID`), KEY `comment_user` (`AuthUserID`), KEY `comment_whisper` (`WhisperUserID`), KEY `comment_discussion` (`DiscussionID`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; -- -- Dumping data for table `forum_Comment` -- LOCK TABLES `forum_Comment` WRITE; /*!40000 ALTER TABLE `forum_Comment` DISABLE KEYS */; /*!40000 ALTER TABLE `forum_Comment` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `forum_Discussion` -- DROP TABLE IF EXISTS `forum_Discussion`; CREATE TABLE `forum_Discussion` ( `DiscussionID` int(8) NOT NULL auto_increment, `AuthUserID` int(10) NOT NULL default '0', `WhisperUserID` int(11) NOT NULL default '0', `FirstCommentID` int(11) NOT NULL default '0', `LastUserID` int(11) NOT NULL default '0', `Active` enum('1','0') NOT NULL default '1', `Closed` enum('1','0') NOT NULL default '0', `Sticky` enum('1','0') NOT NULL default '0', `Sink` enum('1','0') NOT NULL default '0', `Name` varchar(100) NOT NULL default '', `DateCreated` datetime NOT NULL default '0000-00-00 00:00:00', `DateLastActive` datetime NOT NULL default '0000-00-00 00:00:00', `CountComments` int(4) NOT NULL default '1', `CategoryID` int(11) default NULL, `WhisperToLastUserID` int(11) default NULL, `WhisperFromLastUserID` int(11) default NULL, `DateLastWhisper` datetime default NULL, `TotalWhisperCount` int(11) NOT NULL default '0', PRIMARY KEY (`DiscussionID`), KEY `discussion_user` (`AuthUserID`), KEY `discussion_whisperuser` (`WhisperUserID`), KEY `discussion_first` (`FirstCommentID`), KEY `discussion_last` (`LastUserID`), KEY `discussion_category` (`CategoryID`), KEY `discussion_dateactive` (`DateLastActive`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; -- -- Dumping data for table `forum_Discussion` -- LOCK TABLES `forum_Discussion` WRITE; /*!40000 ALTER TABLE `forum_Discussion` DISABLE KEYS */; /*!40000 ALTER TABLE `forum_Discussion` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `forum_DiscussionUserWhisperFrom` -- DROP TABLE IF EXISTS `forum_DiscussionUserWhisperFrom`; CREATE TABLE `forum_DiscussionUserWhisperFrom` ( `DiscussionID` int(11) NOT NULL default '0', `WhisperFromUserID` int(11) NOT NULL default '0', `LastUserID` int(11) NOT NULL default '0', `CountWhispers` int(11) NOT NULL default '0', `DateLastActive` datetime NOT NULL default '0000-00-00 00:00:00', PRIMARY KEY (`DiscussionID`,`WhisperFromUserID`), KEY `discussion_user_whisper_lastuser` (`LastUserID`), KEY `discussion_user_whisper_lastactive` (`DateLastActive`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; -- -- Dumping data for table `forum_DiscussionUserWhisperFrom` -- LOCK TABLES `forum_DiscussionUserWhisperFrom` WRITE; /*!40000 ALTER TABLE `forum_DiscussionUserWhisperFrom` DISABLE KEYS */; /*!40000 ALTER TABLE `forum_DiscussionUserWhisperFrom` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `forum_DiscussionUserWhisperTo` -- DROP TABLE IF EXISTS `forum_DiscussionUserWhisperTo`; CREATE TABLE `forum_DiscussionUserWhisperTo` ( `DiscussionID` int(11) NOT NULL default '0', `WhisperToUserID` int(11) NOT NULL default '0', `LastUserID` int(11) NOT NULL default '0', `CountWhispers` int(11) NOT NULL default '0', `DateLastActive` datetime NOT NULL default '0000-00-00 00:00:00', PRIMARY KEY (`DiscussionID`,`WhisperToUserID`), KEY `discussion_user_whisperto_lastuser` (`LastUserID`), KEY `discussion_user_whisperto_lastactive` (`DateLastActive`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; -- -- Dumping data for table `forum_DiscussionUserWhisperTo` -- LOCK TABLES `forum_DiscussionUserWhisperTo` WRITE; /*!40000 ALTER TABLE `forum_DiscussionUserWhisperTo` DISABLE KEYS */; /*!40000 ALTER TABLE `forum_DiscussionUserWhisperTo` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `forum_IpHistory` -- DROP TABLE IF EXISTS `forum_IpHistory`; CREATE TABLE `forum_IpHistory` ( `IpHistoryID` int(11) NOT NULL auto_increment, `RemoteIp` varchar(30) NOT NULL default '', `UserID` int(11) NOT NULL default '0', `DateLogged` datetime NOT NULL default '0000-00-00 00:00:00', PRIMARY KEY (`IpHistoryID`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; -- -- Dumping data for table `forum_IpHistory` -- LOCK TABLES `forum_IpHistory` WRITE; /*!40000 ALTER TABLE `forum_IpHistory` DISABLE KEYS */; /*!40000 ALTER TABLE `forum_IpHistory` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `forum_Role` -- DROP TABLE IF EXISTS `forum_Role`; CREATE TABLE `forum_Role` ( `RoleID` int(2) NOT NULL auto_increment, `Name` varchar(100) NOT NULL default '', `Icon` varchar(155) NOT NULL default '', `Description` varchar(200) NOT NULL default '', `Active` enum('1','0') NOT NULL default '1', `PERMISSION_SIGN_IN` enum('1','0') NOT NULL default '0', `PERMISSION_HTML_ALLOWED` enum('0','1') NOT NULL default '0', `PERMISSION_RECEIVE_APPLICATION_NOTIFICATION` enum('1','0') NOT NULL default '0', `Permissions` text, `Priority` int(11) NOT NULL default '0', `UnAuthenticated` enum('1','0') NOT NULL default '0', PRIMARY KEY (`RoleID`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; -- -- Dumping data for table `forum_Role` -- LOCK TABLES `forum_Role` WRITE; /*!40000 ALTER TABLE `forum_Role` DISABLE KEYS */; INSERT INTO `forum_Role` VALUES (1,'Unauthenticated','','','1','1','1','1','a:32:{s:23:\"PERMISSION_ADD_COMMENTS\";N;s:27:\"PERMISSION_START_DISCUSSION\";N;s:28:\"PERMISSION_STICK_DISCUSSIONS\";N;s:27:\"PERMISSION_HIDE_DISCUSSIONS\";N;s:28:\"PERMISSION_CLOSE_DISCUSSIONS\";N;s:27:\"PERMISSION_EDIT_DISCUSSIONS\";N;s:34:\"PERMISSION_VIEW_HIDDEN_DISCUSSIONS\";N;s:24:\"PERMISSION_EDIT_COMMENTS\";N;s:24:\"PERMISSION_HIDE_COMMENTS\";N;s:31:\"PERMISSION_VIEW_HIDDEN_COMMENTS\";N;s:44:\"PERMISSION_ADD_COMMENTS_TO_CLOSED_DISCUSSION\";N;s:25:\"PERMISSION_ADD_CATEGORIES\";N;s:26:\"PERMISSION_EDIT_CATEGORIES\";N;s:28:\"PERMISSION_REMOVE_CATEGORIES\";N;s:26:\"PERMISSION_SORT_CATEGORIES\";N;s:28:\"PERMISSION_VIEW_ALL_WHISPERS\";N;s:29:\"PERMISSION_APPROVE_APPLICANTS\";N;s:27:\"PERMISSION_CHANGE_USER_ROLE\";N;s:21:\"PERMISSION_EDIT_USERS\";N;s:31:\"PERMISSION_IP_ADDRESSES_VISIBLE\";N;s:30:\"PERMISSION_MANAGE_REGISTRATION\";N;s:21:\"PERMISSION_SORT_ROLES\";N;s:20:\"PERMISSION_ADD_ROLES\";N;s:21:\"PERMISSION_EDIT_ROLES\";N;s:23:\"PERMISSION_REMOVE_ROLES\";N;s:28:\"PERMISSION_CHECK_FOR_UPDATES\";N;s:38:\"PERMISSION_CHANGE_APPLICATION_SETTINGS\";N;s:28:\"PERMISSION_MANAGE_EXTENSIONS\";N;s:26:\"PERMISSION_MANAGE_LANGUAGE\";N;s:24:\"PERMISSION_MANAGE_STYLES\";N;s:27:\"PERMISSION_ALLOW_DEBUG_INFO\";N;s:27:\"PERMISSION_DATABASE_CLEANUP\";N;}',0,'1'),(2,'Banned','','','1','0','0','0','a:32:{s:23:\"PERMISSION_ADD_COMMENTS\";N;s:27:\"PERMISSION_START_DISCUSSION\";N;s:28:\"PERMISSION_STICK_DISCUSSIONS\";N;s:27:\"PERMISSION_HIDE_DISCUSSIONS\";N;s:28:\"PERMISSION_CLOSE_DISCUSSIONS\";N;s:27:\"PERMISSION_EDIT_DISCUSSIONS\";N;s:34:\"PERMISSION_VIEW_HIDDEN_DISCUSSIONS\";N;s:24:\"PERMISSION_EDIT_COMMENTS\";N;s:24:\"PERMISSION_HIDE_COMMENTS\";N;s:31:\"PERMISSION_VIEW_HIDDEN_COMMENTS\";N;s:44:\"PERMISSION_ADD_COMMENTS_TO_CLOSED_DISCUSSION\";N;s:25:\"PERMISSION_ADD_CATEGORIES\";N;s:26:\"PERMISSION_EDIT_CATEGORIES\";N;s:28:\"PERMISSION_REMOVE_CATEGORIES\";N;s:26:\"PERMISSION_SORT_CATEGORIES\";N;s:28:\"PERMISSION_VIEW_ALL_WHISPERS\";N;s:29:\"PERMISSION_APPROVE_APPLICANTS\";N;s:27:\"PERMISSION_CHANGE_USER_ROLE\";N;s:21:\"PERMISSION_EDIT_USERS\";N;s:31:\"PERMISSION_IP_ADDRESSES_VISIBLE\";N;s:30:\"PERMISSION_MANAGE_REGISTRATION\";N;s:21:\"PERMISSION_SORT_ROLES\";N;s:20:\"PERMISSION_ADD_ROLES\";N;s:21:\"PERMISSION_EDIT_ROLES\";N;s:23:\"PERMISSION_REMOVE_ROLES\";N;s:28:\"PERMISSION_CHECK_FOR_UPDATES\";N;s:38:\"PERMISSION_CHANGE_APPLICATION_SETTINGS\";N;s:28:\"PERMISSION_MANAGE_EXTENSIONS\";N;s:26:\"PERMISSION_MANAGE_LANGUAGE\";N;s:24:\"PERMISSION_MANAGE_STYLES\";N;s:27:\"PERMISSION_ALLOW_DEBUG_INFO\";N;s:27:\"PERMISSION_DATABASE_CLEANUP\";N;}',1,'0'),(3,'Member','','','1','1','1','0','a:33:{s:23:\"PERMISSION_ADD_COMMENTS\";i:1;s:27:\"PERMISSION_START_DISCUSSION\";i:1;s:27:\"PERMISSION_SINK_DISCUSSIONS\";i:1;s:28:\"PERMISSION_STICK_DISCUSSIONS\";N;s:27:\"PERMISSION_HIDE_DISCUSSIONS\";N;s:28:\"PERMISSION_CLOSE_DISCUSSIONS\";N;s:27:\"PERMISSION_EDIT_DISCUSSIONS\";N;s:34:\"PERMISSION_VIEW_HIDDEN_DISCUSSIONS\";N;s:24:\"PERMISSION_EDIT_COMMENTS\";N;s:24:\"PERMISSION_HIDE_COMMENTS\";N;s:31:\"PERMISSION_VIEW_HIDDEN_COMMENTS\";N;s:44:\"PERMISSION_ADD_COMMENTS_TO_CLOSED_DISCUSSION\";N;s:25:\"PERMISSION_ADD_CATEGORIES\";N;s:26:\"PERMISSION_EDIT_CATEGORIES\";N;s:28:\"PERMISSION_REMOVE_CATEGORIES\";N;s:26:\"PERMISSION_SORT_CATEGORIES\";N;s:28:\"PERMISSION_VIEW_ALL_WHISPERS\";N;s:29:\"PERMISSION_APPROVE_APPLICANTS\";N;s:27:\"PERMISSION_CHANGE_USER_ROLE\";N;s:21:\"PERMISSION_EDIT_USERS\";N;s:31:\"PERMISSION_IP_ADDRESSES_VISIBLE\";N;s:30:\"PERMISSION_MANAGE_REGISTRATION\";N;s:21:\"PERMISSION_SORT_ROLES\";N;s:20:\"PERMISSION_ADD_ROLES\";N;s:21:\"PERMISSION_EDIT_ROLES\";N;s:23:\"PERMISSION_REMOVE_ROLES\";N;s:28:\"PERMISSION_CHECK_FOR_UPDATES\";N;s:38:\"PERMISSION_CHANGE_APPLICATION_SETTINGS\";N;s:28:\"PERMISSION_MANAGE_EXTENSIONS\";N;s:26:\"PERMISSION_MANAGE_LANGUAGE\";N;s:24:\"PERMISSION_MANAGE_STYLES\";N;s:27:\"PERMISSION_ALLOW_DEBUG_INFO\";N;s:27:\"PERMISSION_DATABASE_CLEANUP\";N;}',2,'0'),(4,'Administrator','','','1','1','1','1','a:34:{s:23:\"PERMISSION_ADD_COMMENTS\";i:1;s:27:\"PERMISSION_START_DISCUSSION\";i:1;s:27:\"PERMISSION_SINK_DISCUSSIONS\";i:1;s:28:\"PERMISSION_STICK_DISCUSSIONS\";i:1;s:27:\"PERMISSION_HIDE_DISCUSSIONS\";i:1;s:28:\"PERMISSION_CLOSE_DISCUSSIONS\";i:1;s:27:\"PERMISSION_EDIT_DISCUSSIONS\";i:1;s:34:\"PERMISSION_VIEW_HIDDEN_DISCUSSIONS\";i:1;s:24:\"PERMISSION_EDIT_COMMENTS\";i:1;s:24:\"PERMISSION_HIDE_COMMENTS\";i:1;s:31:\"PERMISSION_VIEW_HIDDEN_COMMENTS\";i:1;s:44:\"PERMISSION_ADD_COMMENTS_TO_CLOSED_DISCUSSION\";i:1;s:25:\"PERMISSION_ADD_CATEGORIES\";i:1;s:26:\"PERMISSION_EDIT_CATEGORIES\";i:1;s:28:\"PERMISSION_REMOVE_CATEGORIES\";i:1;s:26:\"PERMISSION_SORT_CATEGORIES\";i:1;s:28:\"PERMISSION_VIEW_ALL_WHISPERS\";i:1;s:29:\"PERMISSION_APPROVE_APPLICANTS\";i:1;s:27:\"PERMISSION_CHANGE_USER_ROLE\";i:1;s:21:\"PERMISSION_EDIT_USERS\";i:1;s:31:\"PERMISSION_IP_ADDRESSES_VISIBLE\";i:1;s:30:\"PERMISSION_MANAGE_REGISTRATION\";i:1;s:21:\"PERMISSION_SORT_ROLES\";i:1;s:20:\"PERMISSION_ADD_ROLES\";i:1;s:21:\"PERMISSION_EDIT_ROLES\";i:1;s:23:\"PERMISSION_REMOVE_ROLES\";i:1;s:28:\"PERMISSION_CHECK_FOR_UPDATES\";i:1;s:38:\"PERMISSION_CHANGE_APPLICATION_SETTINGS\";i:1;s:28:\"PERMISSION_MANAGE_EXTENSIONS\";i:1;s:26:\"PERMISSION_MANAGE_LANGUAGE\";i:1;s:24:\"PERMISSION_MANAGE_THEMES\";i:1;s:24:\"PERMISSION_MANAGE_STYLES\";i:1;s:27:\"PERMISSION_ALLOW_DEBUG_INFO\";i:1;s:27:\"PERMISSION_DATABASE_CLEANUP\";i:1;}',4,'0'); /*!40000 ALTER TABLE `forum_Role` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `forum_Style` -- DROP TABLE IF EXISTS `forum_Style`; CREATE TABLE `forum_Style` ( `StyleID` int(3) NOT NULL auto_increment, `AuthUserID` int(11) NOT NULL default '0', `Name` varchar(50) NOT NULL default '', `Url` varchar(255) NOT NULL default '', `PreviewImage` varchar(20) NOT NULL default '', PRIMARY KEY (`StyleID`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; -- -- Dumping data for table `forum_Style` -- LOCK TABLES `forum_Style` WRITE; /*!40000 ALTER TABLE `forum_Style` DISABLE KEYS */; INSERT INTO `forum_Style` VALUES (1,0,'default','/plugins/plg_forum/themes/vanilla/styles/default/','preview.gif'); /*!40000 ALTER TABLE `forum_Style` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `forum_User` -- DROP TABLE IF EXISTS `forum_User`; CREATE TABLE `forum_User` ( `UserID` int(10) NOT NULL auto_increment, `RoleID` int(2) NOT NULL default '0', `StyleID` int(3) NOT NULL default '1', `CustomStyle` varchar(255) default NULL, `FirstName` varchar(50) NOT NULL default '', `LastName` varchar(50) NOT NULL default '', `Name` varchar(20) NOT NULL default '', `Password` varchar(32) default NULL, `VerificationKey` varchar(50) NOT NULL default '', `EmailVerificationKey` varchar(50) default NULL, `Email` varchar(200) NOT NULL default '', `UtilizeEmail` enum('1','0') NOT NULL default '0', `ShowName` enum('1','0') NOT NULL default '1', `Icon` varchar(255) default NULL, `Picture` varchar(255) default NULL, `Attributes` text, `CountVisit` int(8) NOT NULL default '0', `CountDiscussions` int(8) NOT NULL default '0', `CountComments` int(8) NOT NULL default '0', `DateFirstVisit` datetime NOT NULL default '0000-00-00 00:00:00', `DateLastActive` datetime NOT NULL default '0000-00-00 00:00:00', `RemoteIp` varchar(100) NOT NULL default '', `LastDiscussionPost` datetime default NULL, `DiscussionSpamCheck` int(11) NOT NULL default '0', `LastCommentPost` datetime default NULL, `CommentSpamCheck` int(11) NOT NULL default '0', `UserBlocksCategories` enum('1','0') NOT NULL default '0', `DefaultFormatType` varchar(20) default NULL, `Discovery` text, `Preferences` text, `SendNewApplicantNotifications` enum('1','0') NOT NULL default '0', PRIMARY KEY (`UserID`), KEY `user_role` (`RoleID`), KEY `user_style` (`StyleID`), KEY `user_name` (`Name`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; -- -- Dumping data for table `forum_User` -- LOCK TABLES `forum_User` WRITE; /*!40000 ALTER TABLE `forum_User` DISABLE KEYS */; INSERT INTO `forum_User` VALUES (1,4,1,NULL,'Administrative','User','insiders','3186f02ead81b114be3efc4a19a3ace3','43bcfd92ba80b466fdd9c60dfe78fd70',NULL,'info@insiders-slovenia.si','0','1',NULL,NULL,NULL,2,0,0,'2008-04-03 08:24:00','2008-04-03 08:29:54','89.216.125.147',NULL,0,NULL,0,'0',NULL,NULL,NULL,'0'); /*!40000 ALTER TABLE `forum_User` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `forum_UserBookmark` -- DROP TABLE IF EXISTS `forum_UserBookmark`; CREATE TABLE `forum_UserBookmark` ( `UserID` int(10) NOT NULL default '0', `DiscussionID` int(8) NOT NULL default '0', PRIMARY KEY (`UserID`,`DiscussionID`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; -- -- Dumping data for table `forum_UserBookmark` -- LOCK TABLES `forum_UserBookmark` WRITE; /*!40000 ALTER TABLE `forum_UserBookmark` DISABLE KEYS */; /*!40000 ALTER TABLE `forum_UserBookmark` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `forum_UserDiscussionWatch` -- DROP TABLE IF EXISTS `forum_UserDiscussionWatch`; CREATE TABLE `forum_UserDiscussionWatch` ( `UserID` int(10) NOT NULL default '0', `DiscussionID` int(8) NOT NULL default '0', `CountComments` int(11) NOT NULL default '0', `LastViewed` datetime NOT NULL default '0000-00-00 00:00:00', PRIMARY KEY (`UserID`,`DiscussionID`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; -- -- Dumping data for table `forum_UserDiscussionWatch` -- LOCK TABLES `forum_UserDiscussionWatch` WRITE; /*!40000 ALTER TABLE `forum_UserDiscussionWatch` DISABLE KEYS */; /*!40000 ALTER TABLE `forum_UserDiscussionWatch` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `forum_UserRoleHistory` -- DROP TABLE IF EXISTS `forum_UserRoleHistory`; CREATE TABLE `forum_UserRoleHistory` ( `UserID` int(10) NOT NULL default '0', `RoleID` int(2) NOT NULL default '0', `Date` datetime NOT NULL default '0000-00-00 00:00:00', `AdminUserID` int(10) NOT NULL default '0', `Notes` varchar(200) default NULL, `RemoteIp` varchar(100) default NULL, KEY `UserID` (`UserID`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; -- -- Dumping data for table `forum_UserRoleHistory` -- LOCK TABLES `forum_UserRoleHistory` WRITE; /*!40000 ALTER TABLE `forum_UserRoleHistory` DISABLE KEYS */; /*!40000 ALTER TABLE `forum_UserRoleHistory` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `links` -- DROP TABLE IF EXISTS `links`; CREATE TABLE `links` ( `linksid` int(11) NOT NULL auto_increment, `linksname` varchar(255) default NULL, `linksurl` varchar(255) default NULL, `linkscategoryid` int(11) default NULL, PRIMARY KEY (`linksid`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; -- -- Dumping data for table `links` -- LOCK TABLES `links` WRITE; /*!40000 ALTER TABLE `links` DISABLE KEYS */; INSERT INTO `links` VALUES (5,'Google','www.google.com',-1),(7,'Triglav Dru??tvo za upravljanje penzionim fondom','www.triglavpenzija.co.yu',6),(8,'ZAVAROVALNICA TRIGLAV, D.D.','www2.zav-triglav.si/ang/',6),(9,'Triglav osiguranje - Hrvatska','www.triglav-osiguranje.hr',6),(10,'Triglav BH Osiguranje d.d. Sarajevo','www.triglav.ba',6),(11,'Lovćen osiguranje - Crna Gora','www.lovcenosiguranje.cg.yu',6),(12,'Vardar osiguranje - Makedonija','www.unet.com.mk/vardar/',6),(13,'Triglav Poji??t\'ovna, a.s - Ä?e??ka','www.triglav.cz',6),(14,'ELEKTRONSKI Ä?ASOPIS TRIGLAV GRUPE','linktriglav.creativ.si/',6),(16,'Mercur Assistance','www.mercur.de',6); /*!40000 ALTER TABLE `links` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `linkscategory` -- DROP TABLE IF EXISTS `linkscategory`; CREATE TABLE `linkscategory` ( `linkscategoryid` int(11) NOT NULL auto_increment, `categoryname` varchar(255) default NULL, PRIMARY KEY (`linkscategoryid`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; -- -- Dumping data for table `linkscategory` -- LOCK TABLES `linkscategory` WRITE; /*!40000 ALTER TABLE `linkscategory` DISABLE KEYS */; INSERT INTO `linkscategory` VALUES (6,'Korisni linkovi'); /*!40000 ALTER TABLE `linkscategory` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `news` -- DROP TABLE IF EXISTS `news`; CREATE TABLE `news` ( `news_id` int(11) NOT NULL auto_increment, `header` varchar(255) NOT NULL default '', `shorthtml` text NOT NULL, `html` text NOT NULL, `date` int(11) NOT NULL default '0', `status` varchar(255) NOT NULL default '', `newscategoryid` int(11) NOT NULL default '0', KEY `news_id` (`news_id`), FULLTEXT KEY `header` (`header`,`html`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; -- -- Dumping data for table `news` -- LOCK TABLES `news` WRITE; /*!40000 ALTER TABLE `news` DISABLE KEYS */; INSERT INTO `news` VALUES (68,'Promenjeno radno vreme','<p>Od 26.11.2007.&nbsp;novo radno vreme od 8.30 - 16.30.</p>','<p>Radno vreme slu??be komercijale, magacina i monta??e biće promenjeno na period od 8.30 - 16.30. Radno vreme maloprodaje sa servisom i dalje je nepromenjo i traje od 8.00 - 20.00.</p>',1195880400,'online',21),(70,'Welcome to Insider`s Slovenia website','<p><b>Insider`s Slovenia is proud to announce today`s launch of its website.</b></p>','<p><b>Please note that this website is currently under construction.<br type="_moz" />\r\n</b></p>\r\n<p><b> Thank you for understanding.</b></p>\r\n<p>&nbsp;</p>\r\n<p>While creating this website we strived for an informative and user friendly navigation. Theme tours, shortbreaks / getaways and custom tours represent our core business. Keeping in mind client's demands and desires, we take great care in creating exclusive and unique tours and extending high-end client's service. &quot;Individual approach, impeccable service and immediate respond to client's feedback&quot; is our motto, we are commited to. In respect to satisfy client's taste, new tours with various theme accents will be published in the following months.</p>\r\n<p>Please note all programs published on our website outline general description of individual tours. Should you wish to receive a deatiled tour of your choice, please send us your e-mail address and we will be pleased to forward you desired pdf brouchure shortly.</p>\r\n<p>You are kindly invited to get to know Slovenia through a film, positioned in the <a href="http://www.insiders-slovenia.si/en/important/video-gallery/27/"><i>Video Gallery</i></a> chapter<i>. </i>The highlights of Slovenia are presented in a fascinating bird`s-eye angle, whereas the epicureans might find mouthwatering recipes of traditional dishes and enjoy watching a video trailer on Slovenian cuisine.</p>\r\n<p>&quot;It is our commitment to execute Slovenia's most memorable tours for our clients who cherish unspoiled landscape, breathtaking views, warm hospitality of local people, enjoy great food and wine and yet are satisfied with oustanding service. And should the clients decide to revisit the country and use our services again, that would be the most effective confirmation of company's testimony. &quot; said Mr. Miha Rott, Managing Director of Insider's Slovenia.</p>\r\n<p>We will appreciate your comments, suggestions and even praise. Please feel free to contact us with your inquiry. Pamper yourself in Slovenia with the help of our agency.</p>\r\n<p>&nbsp;WELCOME TO SLOVENIA!</p>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>',1207519200,'online',20),(72,'PROMOTION OF SLOVENIA','<p><span style="color: rgb(153, 204, 0);"><b>&quot;</b></span><span style="color: rgb(153, 204, 0);"><a href="/files/File/Articles_about_Slovenia/NG Traveler April 2008.pdf"><span style="color: rgb(153, 204, 0);"><b>A NIGHT IN SLOVENIA</b></span></a></span><span style="color: rgb(153, 204, 0);"><b>&quot; </b></span><b>in New York City arranged by National Geographic Traveler.</b></p>\r\n<p><b>Two special events on May 30th and 31st!</b></p>','<p>National Geographic Traveler invites you to spend a NIGHT IN SLOVENIA at two events in New York City.</p>\r\n<p>Please read <a href="/files/File/Articles_about_Slovenia/NG Traveler April 2008.pdf"><span style="color: rgb(153, 204, 0);"><b>the advertisment</b></span></a> for details.</p>',1208815200,'online',20),(74,'FEATURING TOUR','<p><a href="http://www.insiders-slovenia.si/en/theme-tours/"><span style="color: rgb(153, 204, 0);"><b>Insider`s Gourmet Tour of Slovenia</b></span></a><b>- First tour in Fall 2008</b></p>','<p><a href="http://www.insiders-slovenia.si/en/theme-tours/"><b>INSIDER`S GOURMET TOUR OF SLOVENIA</b></a></p>\r\n<p>This Insider`s tour opens the doors of Slovenia`s most exclusive traditional and nouveau restaurants and introduces you to the cellars of its finest winemakers, who have recently won international praise...</p>',1212098400,'online',20),(73,'Insider`s Slovenia in New York City','<p><b>A spectacular musical event &quot;A Night in Slovenia&quot; will take place on May 30 and 31.</b></p>','<p>On the occassion of Slovenia`s 16 page photo tour issued in May/June National Geographic Traveler, an evening of food, wine and live music performances by Slovenia`s stars in rock, jazz and folk will take place in The Town Hall in New York City.</p>\r\n<p>On May 30, Insider`s Slovenia tour operator will also attend a workshop dedicated to Slovene and US tour operators, tour agencies and hotels, organized by the Slovenian Tourist Board.</p>\r\n<p>Promoting Slovenia as a new hot tourist destination with a rich natural and cultural diversity is the main massage to the US market.</p>\r\n<p>Insider`s Slovenia as a boutique tour operator will present itself with unique and exclusive tours, offering a variety of popular destinations and custom made holidays.</p>',1211839200,'online',20),(75,'Private Jets','<p>Starting in July 2008, Insider`s Slovenia has introduced a new&nbsp;service-&nbsp;<a href="http://www.insiders-slovenia.si/en/important/private-jets/41/"><b><i>PRIVATE JETS</i></b></a>.</p>','<p>This&nbsp;product enables us to&nbsp;provide&nbsp;an exclusive, efficient and above all professional service for the most demanding clients.&nbsp;We organize everything for a flawless and relaxing flight in the shortest time possible. Custom made exclusive itineraries are designed upon request- for you only.</p>\r\n<p>The fleet consists of modern, safe, comfortable and reliable Cessna and Embrarer jets which are operated by experienced pilots who meet the highest standards. Impeccable service and beautiful executive interiors combined with state of the art technology are here to satisfy even the most demanding customer. To each and every passanger comfort, convenience and safety are guaranteed.</p>\r\n<p><a href="http://www.insiders-slovenia.si/en/important/private-jets/41/"><b>Read more</b></a></p>',1214517600,'online',20),(76,'NEW - ACTIVE TOUR','<p><span style="color: #99cc00"><b><a href="http://www.insiders-slovenia.si/en/theme-tours/"><span style="color: #99cc00">ACTIVE SLOVENIA TOUR</span></a></b></span></p>\r\n<p>Enjoy an unforgettable active vacation with Insider`s Slovenia.</p>','<p>This 10 day Active tour is designed for people who wants to be active and provides a perfect way of exploring the&nbsp;wonderful nature, cultural heritage and cusine and wine of the country.</p>\r\n<p>Start with a cycling adventure&nbsp;discovering one of the prettiest Alpine valleys in Europe-Logarska valley, explore the underworld on the bike ride&nbsp;through the tourist mine, venture a special treasure hunt, experience canyoning and rafting on the Soca river and much more...</p>\r\n<p>Along the way sample Slovenian wine and cuisine. From the traditional dishes served outdoors&nbsp;to sophisticated meals in distinguished restaurants.</p>\r\n<p><a href="http://www.insiders-slovenia.si/en/theme-tours/"><b>Read more</b></a></p>',1217282400,'online',20),(77,'INSIDER'S IN THE NEW YORK TIMES','<p><a href="http://www.nytimes.com/2008/08/31/travel/31COMslovenia.html?_r=1&amp;ref=travel&amp;oref=slogin"><span style="color: rgb(153, 204, 0);"><b>THE</b></span><b> <span style="color: rgb(153, 204, 0);">NEW YORK TIMES TRAVEL SECTION </span></b></a>has announced Insider's Slovenia Gourmet Tour in its Sunday issue</p>','<p>It is a great privilege and honor to be published by the destinguished newspaper. We believe this article will contribute not only to our business but also to Slovenia's promotion in the United States of America and other countries.</p>\r\n<p>We look forward to meeting our guests on Insider's Gourmet Tour which has been designed for wine and food enthusiasts who also enjoy in nation's natural, historical and cultural landmarks.</p>\r\n<p>To read more about this article please see the &quot;<a href="http://www.nytimes.com/2008/08/31/travel/31COMslovenia.html?_r=1&amp;ref=travel&amp;oref=slogin">Wine and Food Tours in Slovenia</a>&quot;.</p>',1220133600,'online',20),(78,'NEW! Exclusive winter short break','<p>Enjoy in untouched nature, idyllic countryside and tranquility combined with luxurious facilities in <a href="/files/File/iPule shortbreakWINTER SEASON.pdf"><span style="color: rgb(128, 128, 0);"><b>Renaissance Otocec Castle hotel and luxury Pule Estate.</b></span></a></p>\r\n<p>&nbsp;</p>','<p>The oppurtunities to feel the spirit of the past gently interwoven with the rythm of the present, are rare. <b>The Otocec Castle Hotel,</b> with its originally renovated atmosphere in the spirit of Gothic and Renaissance. Enjoy the feeling of being the Lords of the Castle, and let us pamper you; luxuriate in massage, bath or refreshing tropical shower in your spacious bathroom...Delight in your location in a morning walk along the banks of the stunning river. Dine like Kings over a gourmet dinner with exquisite wine and candlelight, then in the evening, relax in the warmth of a cracking fire...Enjoy in a elite countryside <b>Pule Estate</b> retreat of five houses, each uniquely presented and with a natural ambient spirit. Come and experience Slovenia`s richest; the sight of a winter wonderland when the snow withens the plateau Drecji Vrh, the smell of mysterious forests and the cracling of fragrant Beech wood in the open fireplaces...</p>\r\n<p>For more information please click <a href="http://www.insiders-slovenia.si/en/short-breaks-getaways/"><b>HERE</b></a></p>',1225926000,'online',20); /*!40000 ALTER TABLE `news` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `newscategory` -- DROP TABLE IF EXISTS `newscategory`; CREATE TABLE `newscategory` ( `newscategoryid` int(11) NOT NULL auto_increment, `title` varchar(255) NOT NULL default '', `messagenum` int(11) NOT NULL default '0', `status` varchar(255) NOT NULL default '', PRIMARY KEY (`newscategoryid`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; -- -- Dumping data for table `newscategory` -- LOCK TABLES `newscategory` WRITE; /*!40000 ALTER TABLE `newscategory` DISABLE KEYS */; INSERT INTO `newscategory` VALUES (20,'Vesti home page',2,''),(21,'Vesti kontakt',10,''),(22,'Vesti partnerska podr??ka',10,''),(23,'Vesti maloprodaja',10,''),(24,'Vesti VP cenovnici',10,''); /*!40000 ALTER TABLE `newscategory` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `newsletter` -- DROP TABLE IF EXISTS `newsletter`; CREATE TABLE `newsletter` ( `newsletter_id` int(11) NOT NULL auto_increment, `header` varchar(255) default NULL, `html` text, `date` int(11) default NULL, `status` varchar(255) default NULL, `userroleid` int(11) default NULL, PRIMARY KEY (`newsletter_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; -- -- Dumping data for table `newsletter` -- LOCK TABLES `newsletter` WRITE; /*!40000 ALTER TABLE `newsletter` DISABLE KEYS */; INSERT INTO `newsletter` VALUES (1,'Ovde unesite novi naslov','<p>Ovde unesite novu vest</p>',1183413600,'poslato',7),(2,'Pozdravni newsletter!!!!','<p>In this article, you probably learned a lot more about email than you ever wanted to know. That intimate knowledge about what makes email tick allowed us to do some pretty special things with <a href="http://www.sitepoint.com/glossary.php?q=P#term_1" title="PHP, or Hypertext Preprocessor, is an open source, server-side programming language." class="glossary">PHP</a>'s deceptively simple <code>mail</code> function.</p>\r\n<ul>\r\n <li>we learned how to manipulate email headers to play with the recipients of an email</li>\r\n <li>we saw the headers that permit you to send <a href="http://www.sitepoint.com/glossary.php?q=H#term_75" title="HTML stands for HyperText Markup Language." class="glossary">HTML</a> email</li>\r\n <li>we combined the HTML and text versions of an email into a single, mixed message</li>\r\n</ul>\r\n<p>and finally...</p>\r\n<ul>\r\n <li>we brought it all together with a couple of new tricks to send email messages with file attachments.</li>\r\n</ul>\r\n<p>If you're in the mood for a challenge, try expanding the file attachment script in this article to allow for multiple file attachments, or to allow for an HTML message. If you're an object oriented PHP type, try developing a class that encapsulates the functionality we explored in this article (there are a number of such scripts available on the Internet if you're after something ready-made).</p>\r\n<p>If you're <em>really</em> interested, check out the RFC for MIME extensions (<a rel="external" href="http://www.ietf.org/rfc/rfc2045.txt" class="sublink">RFC 2045</a>) to discover everything that email is capable of, then go wild!</p>',1183327200,'poslato',-1); /*!40000 ALTER TABLE `newsletter` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `page` -- DROP TABLE IF EXISTS `page`; CREATE TABLE `page` ( `page_id` int(11) NOT NULL auto_increment, `parent_id` int(11) default NULL, `template_id` int(11) NOT NULL default '1', `level` int(11) default NULL, `order` int(11) NOT NULL default '0', `header` text, `html` longtext, `type` varchar(255) NOT NULL default 'stranica', `status` varchar(20) default NULL, `friendlyurl` varchar(255) NOT NULL default '', `access` varchar(255) NOT NULL default 'slobodan', `userroleid` int(11) NOT NULL default '0', PRIMARY KEY (`page_id`), FULLTEXT KEY `search` (`header`,`html`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; -- -- Dumping data for table `page` -- LOCK TABLES `page` WRITE; /*!40000 ALTER TABLE `page` DISABLE KEYS */; INSERT INTO `page` VALUES (0,-1,62,0,1,'Insider's Slovenia','<p><span>Located at the crossroads of Europe, Slovenia is an Alpine gem, offering dazzling sights, old-world charm and a relaxed lifestyle.&nbsp; Its people are noted for their generous hospitality and grace, which we look forward to sharing with you, our guests.</span></p>\r\n<p><span>Insider's Slovenia is the only firm in Slovenia offering specialized, exclusive tours that open the doors to private places, events and people.&nbsp; </span><span>Our patrons are invited to enjoy our theme tours or short breaks/getaways.&nbsp; Or we will customize a tour for your family, your group, your company, and focus on <i>your</i> interests - cuisine and wine, culture and the arts, music, sports competition, or spas, or more active pursuits like hiking, climbing, biking, ballooning, or white river rafting.&nbsp; </span><span>&nbsp;</span></p>\r\n<h1><u><b> EXCLUSIVE SHORT BREAK<br />\r\n</b></u></h1>\r\n<h2><span style="color: rgb(128, 128, 0);"><a href="/files/File/iSPKrajnska goraBL.pdf"><span style="color: rgb(128, 128, 0);">Men`s World Cup 2009 Alpine skiing at Kranjska Gora</span></a><b><br />\r\n</b></span></h2>\r\n<p>&nbsp;</p>\r\n<h3><span><b>FEATURING TOURS</b></span>&nbsp;</h3>\r\n<div class="vazno">&nbsp;&nbsp;&nbsp; GOURMET TOUR&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ACTIVE TOUR&nbsp;&nbsp;&nbsp;&nbsp; &nbsp; &nbsp;&nbsp; ROGLA RESORT</div>\r\n<div class="vazno">&nbsp; <a href="/files/File/iVinska tura.pdf"><img width="130" height="86" alt="Slovenia, Prekmurje" src="/files/Image/tours/gourmet/prekmurje-iz-zraka.jpg" /></a> <a href="/files/File/iAktivna tura.pdf"><img width="130" height="87" alt="" src="/files/Image/tours/Active_tour/0025M.jpg" /></a>&nbsp;<a href="/files/File/iPohorje insiders.pdf"><img width="130" height="86" alt="Slovenia, Lovrenska lakes" src="/files/Image/Food/9. Lovrenska lakes1.jpg" /></a>&nbsp;&nbsp;</div>\r\n<p>&nbsp;<br />\r\n<span style="font-family: Verdana;"> </span><b><span style="font-family: Verdana;">YOU`VE HEARD OF HELI-SKIING...TRY HELI-DINING IN THE SLOVENIAN ALPS...</span></b></p>\r\n<p><b><span style="font-family: Verdana;"> Please click <a href="/files/File/Luxury treat.pdf"><span style="color: rgb(153, 204, 0);">HERE</span></a> to see more.<br />\r\n</span></b></p>\r\n<p><span>Whatever it is, we will arrange a unique experience for you, while assuring all the personal comforts you expect.</span><b>&nbsp;</b><b>&nbsp;&nbsp;</b></p>\r\n<p>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<b> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</b>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p>\r\n<table width="100%" cellspacing="0" cellpadding="0" border="0">\r\n <tbody>\r\n <tr>\r\n <td style="text-align: center;">\r\n <h6><img width="600" height="400" src="/files/Image/home_page/bohinjsko-jezero.jpg" alt="Copyright &copy; Darila Rokus, 2008. All rights reserved. Photo: T.Jeseničnik" class="thumb" /></h6>\r\n </td>\r\n <td style="text-align: center;">\r\n <h6><img width="600" height="400" src="/files/Image/home_page/bled.jpg" alt="Copyright &copy; Darila Rokus, 2008. All rights reserved. Photo:T.Jeseničnik" class="thumb" /></h6>\r\n </td>\r\n <td style="text-align: center;">\r\n <h6><img width="600" height="398" src="/files/Image/Logarska dolina 1.jpg" class="thumb" alt="Copyright &copy; Darila Rokus, 2008. All rights reserved. Photo:T.Jeseničnik" /></h6>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <h6><b><a href="/en/theme-tours/">THEME TOURS</a></b></h6>\r\n </td>\r\n <td>\r\n <h6><a href="/en/short-breaks-getaways/"><b>SHORT BREAKS<br />\r\n </b></a></h6>\r\n </td>\r\n <td style="text-align: center;">\r\n <h6><a href="/en/custom-tours/"><b>CUSTOM TOURS</b></a></h6>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td valign="top" style="text-align: center;">\r\n <p>&nbsp;&nbsp;</p>\r\n </td>\r\n <td valign="top" style="text-align: center;">&nbsp;</td>\r\n <td valign="top" style="text-align: center;">&nbsp;</td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n<div style="text-align: justify;" class="vazno"><b><i>&nbsp;<span style="background-color: rgb(255, 255, 255);">&quot;...and, of course, we ate. Mouthwatering salami, &scaron;truklji (cottage cheese strudel), homemade butter and jams and cheese, fish as I`ve never had it prepared, and bread that I still dream about. And endlessly watched the rhapsody of world-class wine work its liquid magic...&quot;</span></i></b></div>\r\n<div class="vazno"><span style="background-color: rgb(204, 255, 204);"><span style="background-color: rgb(255, 255, 255);"><span style="font-weight: bold;"><a href="/files/File/Articles_about_Slovenia/Traveler article.pdf"><b><span style="color: rgb(153, 204, 0);">Keith Bellows</span></b>,</a> <i>editor-in-chief</i>,<i> National Geographic Traveler,</i> May/June 2007</span></span></span></div>\r\n<p>&nbsp;<span style="font-size: 12pt;"><br />\r\n</span>&nbsp;</p>','stranica','online','insider-s-slovenia','slobodan',-1),(249,0,1,0,3,'Home ','www.insiders-slovenia.si/en/insider-s-slovenia/','link','online','home','slobodan',-1),(2,0,1,0,5,'About Us','','kategorija','online','about-us','slobodan',-1),(253,2,65,0,1,'About the company','<p style="text-align: justify;"><i>Insider&rsquo;s Slovenia</i> was established to share our intimate knowledge of Slovenia with those travelers looking for unique travel experiences. We pride ourselves in being able to take you where no other tour company has been, while proving you the highest levels of personal service. We strive to do this with elegance and sophistication. We assume that you will enjoy the special opportunities we offer for you to deepen your knowledge of our nation&rsquo;s history and culture. With us, your travel experience will always be enhanced with a touch of exclusiveness, with little delights that touch your spirit, and accommodations that give you maximum comfort. Our goal is to consistently exceed our client&rsquo;s expectations and personally ensure that every aspect of your time with us is perfect.</p>\r\n<p style="text-align: justify;"><span>The founders of Insider's Slovenia literally &quot;wrote the book&quot; on Slovenia, from one of its first atlases, to the first comprehensive books on architecture, geography, folk and craft art, and wine and cuisine.&nbsp; Unlike other tour companies, the principals of Insider's are leading Slovenian professionals who love to show off their country.&nbsp; As leaders in their own fields, they can and will introduce you to leading experts to satisfy your interests, and invite you to share in Slovenia's best-kept secrets.&nbsp; <br />\r\n<br />\r\nWe are world travelers, too, and know what exclusive, personal tours must include to appeal to you, the discriminating traveler.</span></p>\r\n<p style="text-align: justify;"><b><i>We are proud to partner with American travel agency Travcoa and the National Geographic Society.</i></b></p>\r\n<h2><b><b>Professional service<br />\r\n</b></b></h2>\r\n<div class="crta">&nbsp;</div>\r\n<p><b><b> </b></b>INSIDER'S SLOVENIA has an expert team of local staff. Communication with our partners and clients in other countries is both reliable and fast. The staff who accompanies you are trained, experienced and reliable, but above all, love showing Slovenia to you and fellow travellers.</p>\r\n<p>&nbsp;<span><br />\r\n</span></p>\r\n<p>&nbsp;</p>','stranica','online','about-the-company','slobodan',-1),(291,0,1,0,24,'Recipes','<h1><a name="top" href="#belokranjska_pogaca">Belokranjska pogača (Bela Krajina Pogača)</a></h1>\r\n<h1><a href="#belokranjska_povitica">Belokranjska povitica (Bela Krajina Povitica)</a></h1>\r\n<h1><a href="#potato_mush">Kr&uacute;mpluvi žganiki or d&ouml;d&ouml;le (Potato Mush)</a></h1>\r\n<h1><a href="#prekmurian_stew">Prekmurski bograč (Prekmurian Stew)</a></h1>\r\n<h1><a href="#gibanica">Prekmurska gibanica (Prekmurian Layer Cake)</a></h1>\r\n<h1><a href="#bean_struklji">Fižolovi &scaron;truklji (Bean &Scaron;truklji)</a></h1>\r\n<h1><a href="#aplle_stuklji">Jabolčni &scaron;truklji (Apple &Scaron;truklji)</a></h1>\r\n<h1><a href="#bacon_bread">&Scaron;pehovka (Bacon bread)</a></h1>\r\n<p>&nbsp;<a name="top"></a></p>\r\n<p>&nbsp;</p>\r\n<h2><i><a name="belokranjska_pogaca"></a>Belokranjska pogača</i> (Bela Krajina <i>Pogača</i>)</h2>\r\n<div class="crta">&nbsp;</div>\r\n<p><b><img width="250" height="202" align="right" src="/files/Image/recipies/belokranjska-pogaca.jpg" alt="" />INGREDIENTS</b></p>\r\n<p><b>50 dag sifted white flour</b></p>\r\n<p><b>3 tablespoons white flour</b></p>\r\n<p><b>3 dl lukewarm water</b></p>\r\n<p><b>2 tablespoons salt</b></p>\r\n<p><b>2 dag yeast</b></p>\r\n<p><b>&frac12; tablespoon sugar</b></p>\r\n<p><b>1 pinch caraway</b></p>\r\n<p><b>1 egg</b></p>\r\n<p>1. Crumble yeast into pot, add 3 tablespoons white flour, 0,5 dl lukewarm water, sugar. Stir well and let yeast rise until volume has doubled.</p>\r\n<p>2. Mix flour, lukewarm water and leavened yeast into large kneading bowl. Knead dough until elastic and not too stiff. Knead 10 minutes and test: if your fingerprinted pit in the dough disappears immediately, it is ready.</p>\r\n<p>3. Let dough rise in bowl until double in size. Cover with tablecloth.</p>\r\n<p>4. Place leavened dough onto well greased baking tin and stretch into a circle with 30 cm in diameter.</p>\r\n<p>5. Incise square net pattern into dough. Knife it through to the bottom. Brush with beaten egg seasoned with caraway. Sprinkle a pinch of unrefined sea salt or salt flower on top.</p>\r\n<p>6. Bake at 220 &deg;C for 20 to 25 minutes. Pogača must turn light brown. The center reaches 3 to 4 cm in height, corners are 1 to 2 cm high. Serve warm.</p>\r\n<p style="text-align: right;"><a href="#top">go top</a></p>\r\n<h2><i><a name="belokranjska_povitica"></a>Belokranjska povitica</i> (Bela Krajina <i>Povitica</i>)</h2>\r\n<div class="crta">&nbsp;</div>\r\n<p><b><img width="250" height="176" align="right" src="/files/Image/recipies/belokranjska-povitica.jpg" alt="" />INGREDIENTS</b></p>\r\n<p><b><i>Dough</i></b></p>\r\n<p><b>50 dag white flour</b></p>\r\n<p><b>1&nbsp;egg</b></p>\r\n<p><b>3-4 dl lukewarm water</b></p>\r\n<p><b>2 tablespoons oil</b></p>\r\n<p><b>1 tablespoon vinegar</b></p>\r\n<p><b>a pinch of salt</b></p>\r\n<p><b>&nbsp;</b></p>\r\n<p><b><i>Filling</i></b></p>\r\n<p><b>1 kg fresh cottage cheese <i>'&scaron;krlupec'</i></b></p>\r\n<p><b>2 eggs</b></p>\r\n<p><b>2 tablespoons salt</b></p>\r\n<p>&nbsp;</p>\r\n<p>1. Mix dough ingredients and knead until smooth and tender. Make 4 dough balls. Brush with oil and cover with table cloth or cover with bowl. Let it rest for 30 minutes.</p>\r\n<p>2. Roll out dough as thin as possible and stretch. Let it rest again for 10 to 15 minutes until dry.</p>\r\n<p>3. Mix filling ingredients into a paste and spread on the four dough balls equally.</p>\r\n<p>4. Roll each sheet into a swirl and place in greased baking tin.</p>\r\n<p>5. Brush swirl-rolls with beaten egg or egg white.</p>\r\n<p>6. Bake in oven for 30 minutes at 200 &deg;C.</p>\r\n<p>&nbsp;</p>\r\n<p>If you make &scaron;krlupec and cottage cheese by yourself, you will need 5-6 litres of cow milk. After milking, let the milk rest in the refrigerator for 12 hours. Then gradually heat the milk, but do not boil it until a thick layer of filmed cream forms on top. Put milk into oven and bake at 200 &deg;C for 10 to 15 minutes until the top cream has browned. This top layer of cream is <i>&scaron;krlupec</i>, which must be collected and removed from the milk.</p>\r\n<p>Add a tablespoon of apple vinegar while boiling to cause coagulation. Let it cool and drain using linen cloth or gauze. White cottage cheese remains in the table cloth.</p>\r\n<p style="text-align: right;"><a href="#top">go top</a></p>\r\n<h2><i><a name="potato_mush"></a>Kr&uacute;mpluvi žganiki </i>or <i>d&ouml;d&ouml;le</i> (Potato Mush)</h2>\r\n<div class="crta">&nbsp;</div>\r\n<p><b><img width="250" height="188" align="right" src="/files/Image/recipies/krompirjevi-zganci-ali-dodoli.jpg" alt="" />INGREDIENTS</b></p>\r\n<p><b>50 dag potatoes</b></p>\r\n<p><b>40 dag white flour</b></p>\r\n<p><b>boiling salted water</b></p>\r\n<p><b>10 dag zaseka or lard with</b></p>\r\n<p><b>cracklings</b></p>\r\n<p><b>1 dl sour cream</b></p>\r\n<p><b>1 small onion</b></p>\r\n<p>&nbsp;</p>\r\n<p>1. Peel potatoes, dice and boil in salted water. The amount of water should be double as compared to the amount of potatoes.</p>\r\n<p>2. When potatoes are half done, add sifted flour and boil for a while.</p>\r\n<p>3. Turn down the heat when water comes above the flour.</p>\r\n<p>4. Dig a hole using a ladle in the centre of flour.</p>\r\n<p>5. Let simmer for another 30 minutes.</p>\r\n<p>6. Strain some water and add some heated lard.</p>\r\n<p>7. Stir well to make paste. If the paste is too dry, add some strained water while stirring continuously.</p>\r\n<p>8. Use a ladle to pick mush from pot and a fork to grate mush into a bowl.</p>\r\n<p>9. Heat up rest of the lard, roast sliced onions, and add sour cream. Bring to a boil. Lard mush into the bowl.</p>\r\n<p style="text-align: right;"><a href="#top">go top</a></p>\r\n<h2><i><a name="prekmurian_stew"></a>Prekmurski bograč </i>(Prekmurian Stew)</h2>\r\n<div class="crta">&nbsp;</div>\r\n<p><b><img width="200" height="300" align="right" src="/files/Image/recipies/prekmurje-bograc.jpg" alt="" />INGREDIENTS</b></p>\r\n<p><b>25 dag beef fillet</b></p>\r\n<p><b>25 dag pork</b></p>\r\n<p><b>25 dag wild rabbit or other venison (boar, deer)</b></p>\r\n<p><b>4 large chopped onions</b></p>\r\n<p><b>2 garlic cloves</b></p>\r\n<p><b>1 tablespoon pork lard (or 1 dl oil)</b></p>\r\n<p><b>1 fresh paprika</b></p>\r\n<p><b>10 dag tomatoes or 1 tomato paste</b></p>\r\n<p><b>0.25 dag paprika powder</b></p>\r\n<p><b>50 dag potatoes</b></p>\r\n<p><b>laurel leaf</b></p>\r\n<p><b>1 sweet pepper</b></p>\r\n<p><b>black pepper</b></p>\r\n<p><b>thyme</b></p>\r\n<p><b>rosemary</b></p>\r\n<p><b>caraway</b></p>\r\n<p><b>salt to taste</b></p>\r\n<p><b>2 dl red wine (e.g. Modra Frankinja - Lemberger)</b></p>\r\n<p>&nbsp;</p>\r\n<p>1. Saut&eacute; onions on lard, add cubed beef, braise, and add water, as necessary.</p>\r\n<p>2. Add cubed venison and braise until half done.</p>\r\n<p>3. Add cubed pork, vegetables, spices, and paprika powder.</p>\r\n<p>4. Season with salt, stir, and bring to a boil.</p>\r\n<p>5. After a while, spread segmented potatoes on</p>\r\n<p>surface, and add water to cover potatoes.</p>\r\n<p>6. Add wine and bring to a boil again.</p>\r\n<p>7. Taste a little and add necessary spices.</p>\r\n<p style="text-align: right;"><a href="#top">go top</a></p>\r\n<h2><i><a name="gibanica"></a>Prekmurska gibanica </i>(Prekmurian Layer Cake)</h2>\r\n<div class="crta">&nbsp;</div>\r\n<p><b><img width="250" height="203" align="right" src="/files/Image/recipies/prekmurska-gibanica.jpg" alt="" />INGREDIENTS</b></p>\r\n<p><b><i>Shortbread</i></b></p>\r\n<p><b>20 dag hard flour</b></p>\r\n<p><b>10 dag butter</b></p>\r\n<p><b>a pinch of salt</b></p>\r\n<p><b>a pinch of sugar</b></p>\r\n<p><b>approximately 1l water</b></p>\r\n<p>&nbsp;</p>\r\n<p>1. Put all ingredients into a bowl and make dough.</p>\r\n<p>2. Knead the dough until smooth.</p>\r\n<p>3. Let rest for 30 minutes.</p>\r\n<p><b>&nbsp;</b></p>\r\n<p><b><i>Filo Pastry</i></b></p>\r\n<p><b>90 dag soft wheat flour</b></p>\r\n<p><b>1 egg</b></p>\r\n<p><b>1 tablespoon oil</b></p>\r\n<p><b>a pinch of salt</b></p>\r\n<p><b>lukewarm water for kneading</b></p>\r\n<p><b>vinegar or lemon juice</b></p>\r\n<p>&nbsp;</p>\r\n<p>1. Mix all ingredients to form a smooth and elastic filo pastry.</p>\r\n<p>2. Let rest for 30 minutes.</p>\r\n<p>3. Shape about 9 to 10 balls.</p>\r\n<p>4. Set aside for a very thorough kneading, pulling individual layers.</p>\r\n<p>&nbsp;</p>\r\n<p><b><i>Poppy Seed Filling</i></b></p>\r\n<p><b>30 dag finely chopped poppy seeds</b></p>\r\n<p><b>10 dag sugar</b></p>\r\n<p><b>1 vanilla sugar (10 g package)</b></p>\r\n<p><b>grated lemon zest</b></p>\r\n<p>&nbsp;</p>\r\n<p>1. Moisten poppy seeds with 0,5 l scalded milk.</p>\r\n<p>2. Add sugar, vanilla sugar, and grated lemon zest.</p>\r\n<p>3. Mix well and divide the filling into two equal parts.</p>\r\n<p><b>&nbsp;</b></p>\r\n<p><b><i>Cottage Cheese Filling</i></b></p>\r\n<p><b>1 kg cottage cheese</b></p>\r\n<p><b>10 dag sugar</b></p>\r\n<p><b>2 eggs</b></p>\r\n<p><b>2 vanilla sugar bags</b></p>\r\n<p><b>a pinch of salt</b></p>\r\n<p><b>10 dag raisins</b></p>\r\n<p><b>grated lemon zest</b></p>\r\n<p>1. Mix cottage cheese with egg yolks, sugar, vanilla sugar, a</p>\r\n<p>pinch of salt and grated lemon zest.</p>\r\n<p>2. Stir paste well until smooth.</p>\r\n<p>3. Wash raisins and soak in lukewarm water.</p>\r\n<p>4. Strain raisins and stir into the filling.</p>\r\n<p>5. Divide the filling in two equal parts.</p>\r\n<p><b>&nbsp;</b></p>\r\n<p><b><i>Walnut Filling</i></b></p>\r\n<p><b>30 dag ground walnut kernels</b></p>\r\n<p><b>10 dag sugar</b></p>\r\n<p><b>1 vanilla sugar package</b></p>\r\n<p><b>0,5 dl rum</b></p>\r\n<p>1. Mix ground walnut kernels with other ingredients.</p>\r\n<p>2. Divide the filling in two equal parts.</p>\r\n<p><b>&nbsp;</b></p>\r\n<p><b><i>Apple Filling</i></b></p>\r\n<p><b>1 kg peeled apples</b></p>\r\n<p><b>a pinch of salt</b></p>\r\n<p><b>12 dag sugar</b></p>\r\n<p><b>2 vanilla sugar bags</b></p>\r\n<p><b>cinnamon</b></p>\r\n<p><b>10 dag white breadcrumbs mixed with 1 vanilla sugar</b></p>\r\n<p>1. Grate peeled apples into thin slices or strips.</p>\r\n<p>2. Add sugar, 2 vanilla sugars, cinnamon. Stir gently.</p>\r\n<p>3. Divide apple filling into two equal parts.</p>\r\n<p><b>&nbsp;</b></p>\r\n<p><b>Composition of <i>prekmurska gibanica</i></b></p>\r\n<p>Use rectangular baking tin (40x35 cm) or circular ceramic (or metal) baking tin. If using a round baking tin, see that the upper diameter range is 30 to 35 cm and the height range is 7 to 9 cm. Grease baking tin with butter. Cream bind is needed for coating individual dough layers: make: stiff egg white foam (with 5 eggs). In a separate bowl, mix 5 egg yolks with 7 dl thick sour cream. Stir gently while adding egg white foam. Divide into 6 equal parts. Melted raw butter is also needed for filo pastry coating.</p>\r\n<p>&nbsp;1. Roll out the rested shortbread until about 0,5 cm thick. Place into greased oven. Spread equally on the entire surface.</p>\r\n<p>2. Pull and stretch the rested filo pastry into 9-10 layers.</p>\r\n<p>3. Spread half of the poppy seed filling on shortbread. Sprinkle with part of cream bind. Cover up with a layer of filo pastry. Drizzle with melted butter.</p>\r\n<p>4. Spread half of the cottage cheese filling on the dough layer. Cover up with a layer of filo pastry. Drizzle with melted butter.</p>\r\n<p>5. Spread half of the walnut filling on dough layer. Sprinkle with a part of cream bind. Cover up with a layer of filo pastry. Drizzle with butter.</p>\r\n<p>6. Spread half of the apple filling on dough layer. Sprinkle with a part of cream bind. Cover up with a layer of filo pastry. Drizzle with butter.</p>\r\n<p>7. Repeat the procedure in the following sequence: poppy, cottage cheese, walnut, apple filling.</p>\r\n<p>8. Finish the process with one or two sheets of filo pastry. Brush with cream bind. Prick <i>gibanica </i>several times. Push needle to the bottom.</p>\r\n<p>9. Bake in an oven at 180-200 &deg;C for 1 hour. The baking time varies according to the height of <i>gibanica</i>. <i>Gibanica </i>should be cut when still warm or cooled. Cut triangular slices if the baking mould is round. Cut into squares if the baking mould is rectangular.</p>\r\n<p style="text-align: right;"><a href="#top">go top</a></p>\r\n<h2><i><a name="bean_struklji"></a>Fižolovi &scaron;truklji </i>(Bean <i>&Scaron;truklji</i>)</h2>\r\n<div class="crta">&nbsp;</div>\r\n<p><b>INGREDIENTS&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br />\r\n</b></p>\r\n<p><b><i>Dough</i></b></p>\r\n<p><b>50 dag white flour&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</b><b>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</b><b><img width="221" height="203" align="right" src="/files/Image/Dolenjski struklji.jpg" alt="" /></b><b>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </b></p>\r\n<p><b>2 eggs</b></p>\r\n<p><b>2 tablespoons oil</b></p>\r\n<p><b>1 tablespoon lemon juice</b></p>\r\n<p><b>salt</b></p>\r\n<p><b>&nbsp;</b></p>\r\n<p><b><i>Bean Filling</i></b></p>\r\n<p><b>30 dag cooked dry beans</b></p>\r\n<p><b>2 eggs</b></p>\r\n<p><b>2 dl sour cream</b></p>\r\n<p><b>parsley</b></p>\r\n<p><b>salt</b></p>\r\n<p><b>black pepper</b></p>\r\n<p><b>2 tablespoons breadcrumbs</b></p>\r\n<p><b><i>Sauce</i></b></p>\r\n<p><b>7 dl thick sour cream</b></p>\r\n<p>&nbsp;</p>\r\n<p>1. Mix ingredients and knead into smooth and elastic dough. Divide into three balls, brush with oil and let rest on floured board for approximately &frac12; hour.</p>\r\n<p>2. Roll out all three balls until thin, brush with oil and stretch dough as thin as possible.</p>\r\n<p>3. Cut off the edges.</p>\r\n<p>4. Filling: Mash cooked beans, add all listed ingredients and thicken with breadcrumbs.</p>\r\n<p>5. Spread filling on stretched dough sheets. Use tablecloth to roll them tightly into three rolls. Place into baking tin and bake.</p>\r\n<p>6. When baked, pour sour cream over them, cut into pieces and serve with sauerkraut, sauer turnips or lettuce.</p>\r\n<p style="text-align: right;"><a href="#top">go top</a>&nbsp;</p>\r\n<h2><i><a name="aplle_stuklji"></a>Jabolčni &scaron;truklji </i>(Apple <i>&Scaron;truklji</i>)<b>&nbsp;</b></h2>\r\n<div class="crta">&nbsp;</div>\r\n<p><b><i><img width="250" height="188" align="right" src="/files/Image/recipies/jabolcni-strukelj.jpg" alt="" />&Scaron;truklji Filo Pastry (Dough)</i></b></p>\r\n<p><b>INGREDIENTS</b></p>\r\n<p><b>300 g white flour</b></p>\r\n<p><b>&frac14; l warm water</b></p>\r\n<p><b>1 egg</b></p>\r\n<p><b>salt</b></p>\r\n<p><b>1 slice of raw butter</b></p>\r\n<p><b>lemon juice or vinegar</b></p>\r\n<p><b>oil</b></p>\r\n<p>&nbsp;</p>\r\n<p>1. Mix ingredients to form elastic paste of medium consistency and knead well.</p>\r\n<p>2. Form a ball, brush oil on top and let rest for &frac12; hour.</p>\r\n<p>3. Roll out on cloth sprinkled with flour; grease with oil and stretch at each end until thin.</p>\r\n<p>4. Cut the wide dough edges off. The rectangular sheet of dough is now ready to have the filling spread on it.</p>\r\n<p>&nbsp;</p>\r\n<p><b>Cooked</b></p>\r\n<p><b>INGREDIENTS</b></p>\r\n<p><b><i>Dough </i></b></p>\r\n<p><b>4 tablespoons sour cream (or 2 spoons lard)</b></p>\r\n<p><b>1 egg</b></p>\r\n<p><b>1 handful white breadcrumbs</b></p>\r\n<p><b>1 handful wheat groats</b></p>\r\n<p><b>5 peeled apples grated into flakes</b></p>\r\n<p><b>1 handful sugar</b></p>\r\n<p><b>1 handful washed raisins</b></p>\r\n<p><b>cinnamon</b></p>\r\n<p><b>1 tablespoon breadcrumbs</b></p>\r\n<p>&nbsp;</p>\r\n<p>1. Knead dough and let rest.</p>\r\n<p>2. Mix sour cream (or lard) with egg. Smear it on a rolled out sheet of stretched dough. Sprinkle with breadcrumbs, wheat groats, apple flakes, sugar, raisins and cinnamon.</p>\r\n<p>3. Roll dough, wrap it into a wet towel and tie the ends tight. Cook in a big pot for 25 minutes in salted water.</p>\r\n<p>4. The water level should be at least 3 finger lengths. Unwrap when cooked, cut into 2-centimeter slices and top with golden-brown breadcrumbs roasted in melted butter. Sprinkle with spoonful of powdered sugar or drip with honey drops.</p>\r\n<p>&nbsp;</p>\r\n<p><b>Baked</b></p>\r\n<p><b>INGREDIENTS</b></p>\r\n<p><b><i>Dough</i></b></p>\r\n<p><b>3 handfuls white breadcrumbs</b></p>\r\n<p><b>2 tablespoons raw butter</b></p>\r\n<p><b>2 dl sour cream</b></p>\r\n<p><b>1 deep plate of grated apple flakes</b></p>\r\n<p><b>3 handfuls sugar</b></p>\r\n<p><b>cinnamon</b></p>\r\n<p><b>lemon zest</b></p>\r\n<p>&nbsp;</p>\r\n<p>1. Roll and stretch out dough.</p>\r\n<p>2. Roast breadcrumbs in melted butter until golden-brown. Sprinkle one half of dough with breadcrumbs.</p>\r\n<p>3. Spread apple flakes, some cinnamon, grated lemon zest, and 3 handfuls of sugar onto the same half of dough.</p>\r\n<p>4. Smear the other dough half with sour cream.</p>\r\n<p>5. Roll up the dough starting from apple-laden side first.</p>\r\n<p>6. Place <i>&scaron;truklji </i>into a baking tin, brush with sour cream and bake in an oven at medium temperature for about 45 minutes. When done top with powdered sugar.</p>\r\n<p style="text-align: right;"><a href="#top">go top</a>&nbsp;</p>\r\n<h2><i><a name="bacon_bread"></a>&Scaron;pehovka (Bacon bread)</i></h2>\r\n<div class="crta">&nbsp;</div>\r\n<p><b><img width="250" height="212" align="right" src="/files/Image/recipies/spehovka.jpg" alt="" />INGREDIENTS</b></p>\r\n<p>1 cake yeast<br />\r\n1 &frac12; cup lukewarm water<br />\r\n1 teaspoon sugar<br />\r\n<br />\r\nDissolve sugar and yeast in milk and set aside in warm place until foamy.<br />\r\n<br />\r\n1 cup milk<br />\r\n&frac12; cup shortening or butter<br />\r\n1 teaspoon salt<br />\r\n3 tablespoons sugar<br />\r\n2 beaten eggs<br />\r\n6 cups flour</p>\r\n<p>Heat milk, add shortening, salt and sugar. Let cool. Add beaten eggs and mix. Sift flour, add yeast mixture and above mixture. Knead well and set aside to rise until double in bulk,. When dough has risen, punch down and knead it in the bowl. Let rise again. Roll out about &frac14; inch thick and spread with the following filling:<br />\r\n<br />\r\n3 eggs<br />\r\n2 cups grained bacon<br />\r\n1 teaspoon cinnamon<br />\r\n1 teaspoon sugar<br />\r\n&frac12; cup buttered bread crumbs<br />\r\n&nbsp;</p>\r\n<p><b>PROCEDURE</b><br />\r\nBeat eggs well and spread eggs over the dough with a spatula. Sprinkle on the bacon, cinnamon, sugar and buttered bread crumbs. Roll up and place in well greased pan. Let rise until double in bulk and bake in 325&Acirc;&deg; <br />\r\n<br />\r\nChive or mint filling may be used with the above dough:<br />\r\n<br />\r\n&frac12; cup bread crumbs<br />\r\n&frac12; cup butter<br />\r\n1 cup sour cream<br />\r\n3 tablespoons sugar<br />\r\n3 eggs, beaten<br />\r\n3 tablespoons finely chopped chives or 1 cup chopped mint leaves<br />\r\n<br />\r\nBrown bread crumbs in butter and set aside to cool. Mix together the sour cream, sugar, eggs, chives or mint leaves and bread crumbs. Roll out dough and spread quickly with mixture and roll up. Let rise and bake in 325&Acirc;&deg; oven for one hour.</p>','stranica','online','recipes','slobodan',-1),(257,2,65,0,2,'General information','<p><b>INSIDER&rsquo;S SLOVENIA. A TOUR COMPANY</b></p>\r\n<p>Rokus Gifts Ltd</p>\r\n<p>Gosposvetska 2</p>\r\n<p>SI &ndash; 1000 LJUBLJANA</p>\r\n<p>SLOVENIA, EU<b>&nbsp;</b></p>\r\n<p><b>VAT number: </b>SI 54139422</p>\r\n<p><b>Bank: </b>ABANKA VIPA d.d. Ljubljana</p>\r\n<p><b>Bank account number: </b>SI56 051008011682575</p>\r\n<p><b>SWIFT CODE</b>: ABANSI2X</p>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>','stranica','online','general-information','slobodan',-1),(259,2,65,0,4,'Our experts and guides','<p><span style="font-size: 12pt;"><br />\r\n</span><i>Insider&rsquo;s Slovenia</i> has retained several Slovenian experts from various fields to design our exclusive tours. We rely upon their advice to ensure that our travel offerings indeed offer an &ldquo;insider&rsquo;s&rdquo; experience to our clients.</p>\r\n<h2><img width="142" vspace="5" hspace="5" height="200" align="left" alt="" src="/files/Image/about_us/janez-bogataj.jpg" />Janez Bogataj</h2>\r\n<p><span style="font-size: 10pt;">Dr. Bogataj holds a Ph.D. in ethnological sciences and B.A. in art history, and is a professor at the Department of Ethnology and Cultural Anthropology at the University of Ljubljana. His fields of research include the nation's gastronomy, arts and crafts, national heritage, and questions related to changes in customs and national character. He is the author of many books about Slovenian cuisine and handicrafts, including his latest National Geographic book <i>Taste Slovenia</i>.<br />\r\n<br />\r\n</span></p>\r\n<h2>&nbsp;</h2>\r\n<h2><img width="142" vspace="5" hspace="5" height="214" align="left" src="/files/Image/about_us/arne-hodalic.jpg" alt="" />Arne Hodalič</h2>\r\n<p><span style="font-size: 10pt;">Mr. Hodalič is Slovenia's most successful photographer. His work was recently highlighted in early 2007 when <i>National Geographic</i> published his feature story on underwater archeology in the <a href="/files/File/Slovenia River Archaeology.pdf">Ljubljanica River</a>. Educated in biology, he works now as an underwater photographer, specializing in cave photography. Mr. Hodalic is also an avid explorer, sailor, and diver.<br />\r\n<br />\r\n</span></p>\r\n<h2>&nbsp;</h2>\r\n<p>&nbsp;</p>\r\n<h2>&nbsp;</h2>\r\n<h2><img width="142" vspace="5" hspace="5" height="189" align="left" src="/files/Image/about_us/miha-kovac.jpg" alt="" />Miha Kovač</h2>\r\n<p><span style="font-size: 10pt;">Dr. Kovač is an associate professor at the Department for Library and Information Science and Book Studies at the University of Ljubljana, as well as editor-in-chief of the Slovenian edition of <i>National Geographic</i> magazine. Among his research interests are local and global politics and media policy in countries in transition. <br />\r\n<br />\r\n</span></p>\r\n<h2>&nbsp;</h2>\r\n<h2>&nbsp;&nbsp;</h2>\r\n<h2><img width="142" vspace="5" hspace="5" height="180" align="left" src="/files/Image/about_us/rok-kvaternik.jpg" alt="" />Rok Kvaternik</h2>\r\n<p>&nbsp;<span style="font-size: 10pt;">Mr. Kvaternik is the founder of a successful Slovenian publishing house and a passionate globetrotter. He is a connoisseur of traditional Slovenian cuisine and wines, and has published books on Slovenian architecture, art, handicrafts, and gastronomy.</span></p>','stranica','online','our-experts-and-guides','slobodan',-1),(43,0,65,0,26,'Terms and conditions','<h2>Basis of Rates</h2>\r\n<div class="crta">&nbsp;</div>\r\n<p style="text-align: justify;">All prices are based on two persons sharing a room. All prices and fares are quoted in U.S. Dollars/ Euros. The rates are based on current tariffs and are subject to change due to unforeseen circumstances. While we will do everything possible to maintain the listed prices, if it is necessary to levy a surcharge, we reserve the right to do so, and notification will be given at the time of final invoicing.</p>\r\n<h2 style="text-align: justify;">Eligibility</h2>\r\n<div class="crta">&nbsp;</div>\r\n<p>Anyone under 18 must be accompanied by a parent or guardian for the entire journey.</p>\r\n<h2>Cancellations and Refunds</h2>\r\n<div class="crta">&nbsp;</div>\r\n<p style="text-align: justify;">Insider&rsquo;s Slovenia reserves the right to cancel a reservation if full payment has not been received by 60 days prior to departure. For reservations made within 60 days of the departure date, full payment is required when the reservation is accepted.</p>\r\n<p style="text-align: justify;">All cancellation notices must be received in writing and will become effective as of receiving an e-mail or fax message.</p>\r\n<p style="text-align: justify;">&nbsp;</p>\r\n<p style="text-align: justify;">&nbsp;</p>\r\n<div align="center">\r\n<table width="400" cellspacing="0" cellpadding="0" border="1">\r\n <tbody>\r\n <tr>\r\n <td width="409" valign="top" colspan="2" bordercolor="#66ff00">\r\n <p style="text-align: justify;"><b>TABLE OF CANCELLATION FEES</b></p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td width="409" valign="top" bordercolor="#66ff00">\r\n <p style="text-align: justify;"><b>Cancelling of reservation</b></p>\r\n </td>\r\n <td width="409" valign="top" bordercolor="#66ff00">\r\n <p style="text-align: justify;"><b>Placing</b></p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td width="409" valign="top" bordercolor="#66ff00">\r\n <p style="text-align: justify;">Up to 60 days</p>\r\n </td>\r\n <td width="409" valign="top" bordercolor="#66ff00">\r\n <p style="text-align: justify;">50% of deposit</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td width="409" valign="top" bordercolor="#66ff00">\r\n <p style="text-align: justify;">59 days-40 days</p>\r\n </td>\r\n <td width="409" valign="top" bordercolor="#66ff00">\r\n <p style="text-align: justify;">100% of deposit</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td width="409" valign="top" bordercolor="#66ff00">\r\n <p style="text-align: justify;">39 days-30 days</p>\r\n </td>\r\n <td width="409" valign="top" bordercolor="#66ff00">\r\n <p style="text-align: justify;">50% of tour cost</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td width="409" valign="top" bordercolor="#66ff00">\r\n <p style="text-align: justify;">29 days or less prior to departure</p>\r\n </td>\r\n <td width="409" valign="top" bordercolor="#66ff00">\r\n <p style="text-align: justify;">100% of tour cost</p>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n</div>\r\n<p style="text-align: justify;">&nbsp;</p>\r\n<p style="text-align: justify;">If you cancel 60 days or more prior to departure, a refund less an administrative fee of 50% of your deposit will be made.</p>\r\n<p style="text-align: justify;">Per person charges for cancellations that occur less than 60 days prior to departure are as follows: 59-40 days prior to departure: 100% of your deposit amount; 39-30 days prior to departure: 50% of the tour cost; 29 days or fewer days prior to departure: 100% of the tour cost. This policy also applies to pre- and post-trip extensions. Any airline tickets issued are subject to the carrier&rsquo;s refund policy.</p>\r\n<p style="text-align: justify;">Leaving a tour in progress, for any reason whatsoever, will not result in a refund, and no refunds will be made for any unused portions of a tour. Insider`s Slovenia reserves the right to cancel any trip because of inadequate enrollment that makes the trip economically unfeasible to operate or because of good-faith concerns with respect to the safety, health, or welfare of the participants. If Insider`s Slovenia cancels a tour prior to departure, you will receive a full refund of monies paid to Insider`s Slovenia, except in the event the cancellation is due to a major global event that has resulted in the cancellation of multiple trips, in which case you will receive a refund and/or credit equivalent to monies paid to Insider`s Slovenia. If we cancel the trip in progress, you will receive a prorated refund based on the number of days not completed on the tour. We will not be responsible for any refund for nonrefundable airline tickets or for any airline tickets purchased by the passenger directly from an airline or travel agent.</p>\r\n<p style="text-align: justify;"><b>Trip cancellation insurance is strongly recommended.<span> Clients are advised to obtain their own insurances while traveling.</span></b></p>\r\n<h2>&nbsp;</h2>\r\n<h2>Reservations and Payments</h2>\r\n<div class="crta">&nbsp;</div>\r\n<p style="text-align: justify;"><b>To reserve space</b><span> on Theme and Exclusive tours, a $800/535&euro; per person deposit is required at time of reservation and $500/335&euro; per person on Short breaks/Getaways tours. <b>Final payment</b> is due no later than 60 days (30 days for Short breaks/Getaways) prior to departure. </span></p>\r\n<div id="sadrzajborder">\r\n<div id="sadrzaj">\r\n<p style="margin: 0cm 0cm 0.0001pt; text-align: justify;"><span>Once the itinerary is agreed we will ask you to read our booking conditions, complete a booking form and send us a deposit. </span></p>\r\n<p style="margin: 0cm 0cm 0.0001pt; text-align: justify;">&nbsp;<b>Payments can be wired to:</b></p>\r\n<ul>\r\n <li style="text-align: justify;"><span><span style="">&nbsp;</span></span><span>Insider&rsquo;s Slovenia bank account: </span><u><span>ABANKA VIPA d.d. Ljubljan</span><span>a</span></u><span><br />\r\n </span>&nbsp; (acc. no.: SI56 051008011682575)</li>\r\n</ul>\r\n<ul>\r\n <li style="text-align: justify;">SWIFT CODE : ABANSI2X;</li>\r\n</ul>\r\n<p style="margin: 0cm 0cm 0.0001pt; text-align: justify;"><span>or made by a credit card (AMEX, VISA, EC/MC, DINERS). If payment is made by a credit card, please send to <a href="mailto:info@insiders-slovenia.si">info@insiders-slovenia.si</a> the following credit card details:</span></p>\r\n<p style="margin: 0cm 0cm 0.0001pt; text-align: justify;"><b><span>Visa, Mastercard:</span></b><span>&nbsp;card number, validity, CVC 2 (triple security code), first and last name, address, state, country)</span></p>\r\n<p style="margin: 0cm 0cm 0.0001pt; text-align: justify;"><b><span>American Express, Diners: </span></b><span>card number, validity, first and last name, address, state, country</span></p>\r\n</div>\r\n</div>\r\n<h2>Included in Tour Cost</h2>\r\n<div class="crta">&nbsp;</div>\r\n<div id="sadrzajborder">\r\n<div id="sadrzaj">\r\n<ul>\r\n <li>Accommodations and meals as indicated in the itinerary (B = breakfast, L = lunch, D = dinner)</li>\r\n <li>Pre-departure information</li>\r\n <li>Entrance fees and sightseeing noted as included in the itinerary</li>\r\n <li>All gratuities - unless otherwise noted on the itinerary page</li>\r\n <li>Ground transportation during the tour</li>\r\n <li>Transfers to and from group flights where applicable</li>\r\n <li>Services of Insider`s Slovenia experts</li>\r\n <li>Guides, expedition manager and any other staff</li>\r\n <li>Taxes, baggage handling and service charges</li>\r\n</ul>\r\n<p style="text-align: justify;">&nbsp;</p>\r\n<p style="text-align: justify;"><i>Please note: The &quot;B, L, D&quot; notations only apply to the period during the tour and do not include any meals on flights to/from the trip.</i></p>\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</div>\r\n<h2>&nbsp;Not Included:</h2>\r\n<div class="crta">&nbsp;</div>\r\n</div>\r\n<div id="sadrzajborder">\r\n<div id="sadrzaj">\r\n<ul>\r\n <li>Air transportation and related fees<span><br />\r\n </span></li>\r\n <li>Activites noted as optional in the itinerary</li>\r\n <li>Baggage/accident/cancellation insurance</li>\r\n <li>Personal expenses, such as laundry, telephone calls and alcoholic beverages; and any other items not specifically noted as included.</li>\r\n</ul>\r\n</div>\r\n</div>\r\n<h2>Single/Shared Accommodations</h2>\r\n<div class="crta">&nbsp;</div>\r\n<p>A limited number of single rooms are available at extra cost on a first-come, first-served basis. We will assist persons requesting a roommate. Participants will be notified if a suitable roommate is not available, in which case the single rate will be charged.</p>\r\n<h2>Itinerary Changes</h2>\r\n<div class="crta">&nbsp;</div>\r\n<p>Every reasonable effort will be made to operate programs as planned, but alterations may still occur after final itineraries are sent.</p>\r\n<h2>Health requirements</h2>\r\n<div class="crta">&nbsp;</div>\r\n<p>You must be in good physical and mental health. Any physical condition, diet or treatment requiring special attention must be reported in writing when the reservation is made.&nbsp;</p>\r\n<p>Purchase of travel insurance is strongly recommended with respect to trip cancellation, personal baggage, personal accident, injury or illness. Clients are advised to obtain their own insurances while traveling.</p>\r\n<h2>Baggage regulations</h2>\r\n<div class="crta">&nbsp;</div>\r\n<p>Luggage allowance may be limited by different airline carriers. Additional weight must be paid. Average weight is usually around 20 kg.</p>\r\n<h2>Customs regulations</h2>\r\n<div class="crta">&nbsp;</div>\r\n<p>Passenger is obligated to respect the custom regulations of The Republic of Slovenia.</p>\r\n<h2>Property damage</h2>\r\n<div class="crta">&nbsp;</div>\r\n<p>In case of the loss of your private documents and travel documents clients are obligated to cover the needed expenses to be able to proceed the tour. We offer advises and will help to solve the problems. We are not responsible for any other losses or damages.<b><i>&nbsp;</i></b></p>\r\n<h2>Photography</h2>\r\n<div class="crta">&nbsp;</div>\r\n<p>We reserve the right to take photographs or videos during the operation of any tour and to use the resulting photography for promotional purposes. By booking a reservation with Insider`s Slovenia, participants agree to allow their images to be used in such photography.</p>\r\n<h2>Complaints<i><u> </u></i></h2>\r\n<div class="crta">&nbsp;</div>\r\n<p>The client must inform the agency immediately in case of any inconveniences or complaints.</p>\r\n<p>For all the complaints our clients can apply to the travel agency with written notice by e-mail or fax.</p>\r\n<h2>Solving the disputes</h2>\r\n<div class="crta">&nbsp;</div>\r\n<p>Court of Justice Ljubljana has jurisdiction over insolvability of the conflicts between Insider`s Slovenia and the client.</p>\r\n<h2 style="text-align: justify;">Other</h2>\r\n<div class="crta">&nbsp;</div>\r\n<p>Additional Terms and Conditions may apply to some tours and will be provided with pre-trip mailings.</p>\r\n<p>By registering for one of&nbsp;Insider`s Slovenia tours the participant agrees to the Responsibility statement and the Terms and Conditions herein.</p>','stranica','online','terms-and-conditions','slobodan',-1),(46,0,65,0,27,'Contact','<div id="kontaktform">\r\n<p style="text-align: justify">For further information and inquiries please contact :</p>\r\n<p style="text-align: justify"><b>in the USA</b> &ndash; our exclusive &nbsp;representative Mr. Mark Ryavec &nbsp;at 1-877-4SLOVENIA or e-mail: <span><a title="blocked::mailto:InsidersSloveniaUSA@ca.rr.com" href="mailto:InsidersSloveniaUSA@ca.rr.com">InsidersSloveniaUSA@ca.rr.com</a></span></p>\r\n<p style="text-align: justify"><b>those coming from Europe and other locations outside the USA</b>, please contact: &ndash; Insider's Slovenia at&nbsp;<a href="mailto:katja.burgar@insiders-slovenia.si">katja.burgar@insiders-slovenia.si</a><span><a title="blocked::mailto:info@insiders-slovenia.si" href="mailto:info@insiders-slovenia.si">. </a></span></p>\r\n<p>&nbsp;</p>\r\n<div id="forma" align="left">\r\n<form action="http://www.insiders-slovenia.si/plugins/plg_kontakt/index.php" method="post" target="_self" onsubmit="return validate()" name="forma">\r\n <dl><dd><input id="ime" name="ime" type="text" /> </dd><dt><label for="null">Name and surname:</label> </dt><dd><input id="adresa" name="adresa" type="text" /> </dd><dt><label for="null">Address:</label> </dt><dd><input id="telefon" name="telefon" type="text" /> </dd><dt><label for="null">Phone:</label> </dt><dd><input id="mail" name="mail" type="text" /> </dd><dt><label for="null">E-mail:</label> </dt><dd><textarea id="poruka" rows="3" name="poruka"> </textarea> </dd><dt><label for="null">Comments:</label> </dt><dd class="submit"><input type="submit" name="submit" value="Submit" /> <input type="reset" name="reset" value="Reset" />&nbsp;&nbsp; </dd></dl>\r\n</form>\r\n</div>\r\n</div>','stranica','online','contact','slobodan',-1),(256,0,65,0,21,'Slovenia','<p style="text-align: justify;">About the size of the state of New Jersey and half the size of Switzerland, Slovenia is located in Central Europe, bordered by Austria to the north, Croatia to the south, Hungary to the east and Italy to the west.&nbsp;It is a country of amazing variety, with glorious mountains, dense green forests, alpine lakes and deep blue Mediterranean sea, and rich agricultural plains.&nbsp;Located at the crossroads of Europe, Slovenia has a diverse historical and cultural heritage.</p>\r\n<p style="text-align: justify;">It is divided into several traditional regions: Gorenjska, &Scaron;tajerska, Prekmurje, Koro&scaron;ka, Notranjska, Dolenjska, Gori&scaron;ka, Slovenska Istra.</p>\r\n<p style="text-align: justify;">Forests cover half of the territory (the 3<sup>rd</sup> most forested country in Europe, after Finland and Sweden). There are also 363 km2 of orchards and 216 km2 of vineyards.</p>\r\n<p style="text-align: justify;">The country has a high-income, well developed economy, and enjoys the second highest (after Cyprus) GDP per capita of the twelve newest members of the European Union (around 91% of the EU average).</p>\r\n<p style="text-align: justify;">Slovenia has been a member of the EU since 2004 and serves as the president of the EU in the first half of 2008. In January 2007, the Euro became Slovenia&rsquo;s currency.</p>\r\n<p style="text-align: justify;">&nbsp;</p>\r\n<p style="text-align: justify;"><b>THE FLAG OF THE REPUBLIC OF SLOVENIA<br />\r\n</b></p>\r\n<p style="text-align: justify;"><img width="100" height="50" align="bottom" src="/files/Image/zastava.jpg" class="thumb" alt="" /></p>\r\n<p style="text-align: justify;"><i>click on the picture to enlarge</i></p>\r\n<p style="text-align: justify;">&nbsp;</p>\r\n<p style="text-align: justify;"><b>&nbsp;COAT OF ARMS</b></p>\r\n<p style="text-align: justify;">&nbsp;<img width="125" height="160" alt="" class="thumb" src="/files/Image/grb-barvni.jpg" /> &nbsp; &nbsp; &nbsp;&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp; &nbsp; &nbsp;</p>\r\n<p style="text-align: justify;"><i>Click on the picture to enlarge</i><br />\r\n&nbsp;</p>\r\n<h2>&nbsp;<b><i>General information</i></b><b>:</b></h2>\r\n<div class="crta">&nbsp;</div>\r\n<ul>\r\n <li><b>Political system</b>: Democratic parliamentary republic</li>\r\n <li><b>National flag: </b>Horizontal stripes in white, blue and red with Slovenian coat of arms on its left upper side</li>\r\n <li><b>Coat of arms:</b> Three six-pointed yellow stars are symbols of the Counts of Celje with Triglav as a symbol of Slovenehood and underlying two wavy lines symbolizing Slovenian rivers and the sea</li>\r\n <li><b>Area</b>: 20,273 km2</li>\r\n <li><b>Population</b>: 1,996,433</li>\r\n <li><b>Capital</b>: Ljubljana (258,873)</li>\r\n <li><b>Largest cities</b>: Maribor (114,349), Kranj (51,225), Celje (37,834), Koper (23,726)</li>\r\n <li><b>Religion</b>: Roman Catholic (57,8%); Agnostic (3,5%); Islam (2,4%); Orthodox (2,3%); Atheist and undeclared (32,9%)</li>\r\n</ul>\r\n<ul type="disc">\r\n <li><b>Climate</b>: Alpine, Continental, Mediterranean</li>\r\n <li><b>Time zone</b>: Central European Time GMT+1</li>\r\n <li><b>Language</b>: Slovenian</li>\r\n</ul>\r\n<ul type="disc">\r\n <li><b>Currency</b>: Euro (EUR), since 2007</li>\r\n <li><b>Anthem: </b>The seventh stanza of Zdravljica, a poem by France Preseren</li>\r\n <li><b>State holidays: </b>June 25-Statehood Day, December 26-Independence and Unity Day</li>\r\n <li><b>Phone dial code</b>: +386</li>\r\n</ul>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<h2><b><i>Did you know that...?</i></b></h2>\r\n<div class="crta">&nbsp;</div>\r\n<ul type="disc">\r\n <li style="text-align: justify;">&hellip;<b>smoking</b> has not been allowed in any public building since August 2007...</li>\r\n</ul>\r\n<ul>\r\n <li style="text-align: justify;">&hellip;<b>Slovenians</b> describe themselves as honest, a bit envious of each other, and good singers, who enjoy a good glass of wine...</li>\r\n <li>&hellip;Slovenia is a member of&nbsp;several <b>international organisations</b>:</li>\r\n</ul>\r\n<p style="text-align: justify;">&nbsp;&nbsp;&nbsp;&nbsp; - United Nations, 1992<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp; - OSCE, 1992<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp; - World Health Organisation (WHO), 1992<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp; - UNICEF, 1992<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp; - International Monetary Fund, 1993<br />\r\n&nbsp; &nbsp;&nbsp; - WTO &ndash; World Trade Organisation, 1995<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp; - NATO, 2004<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp; - EU, 2004</p>\r\n<ul>\r\n <li><i>&hellip;</i><b><i>Leon Stukelj</i> </b>(1898-1999) &ndash; gymnast (won 8 gold, 4 silver, 5 bronze medals in his long career) was invited to the Olympic Games in Atlanta 1996 as a guest of honor, where he was enthusiastically welcomed by thousands of spectators, including former US President Bill Clinton...</li>\r\n <li><span><span>&nbsp;</span></span><span>&hellip;the annual final competition of the ski-jumping World Cup each year takes place at <b><i>Planica</i></b><i>,</i> the largest natural ski jump in the world...</span></li>\r\n <li><span><span>&nbsp;</span></span><span>&hellip;the most stylish youth hostel in Slovenia was originally a prison inside a military compound. It is called <b>CELICA</b> (&ldquo;The Cell&rdquo;).</span>..</li>\r\n</ul>\r\n<ul>\r\n <li><span>&hellip;Slovenia has around <b>8,000</b> beekeepers</span>...</li>\r\n <li><span>&hellip;Slovenians received their first book in the Slovenian language more than 455 years ago (published in 1550 by the Protestant reformer <b><i>Primož Trubar</i></b>)...</span></li>\r\n <li><span>&hellip; greatest Slovenian poet of all times was </span><b><i><span>France Pre&scaron;eren</span></i></b><span> (who was the author of our national anthem).&nbsp;He has been described as the Slovenian Shakespeare...</span></li>\r\n <li><span>&hellip; Slovenian <b>experts</b> also play a role in one of the worlds most technologically demanding fields-aircraft manufacture...</span></li>\r\n <li><span>..mathematician <b><i>Jurij Vega </i></b>(1754-1802) published the books of logarithem tables (unparalleled aid for computations) and that one of the craters on the Moon is named after him..</span></li>\r\n <li><span><span><em>&hellip;</em></span><b><span><em>Martin Strel</em></span><span>&rsquo;s</span></b><span> name appears in the Guinness Book of Records&nbsp;several times. He holds the world record for uninterrupted long-distance swimming.</span></span>..</li>\r\n</ul>\r\n<ul>\r\n <li><span>&hellip;The highest mountain in Slovenia is called <b>Triglav</b> - the name meaning &quot;three-heads&quot; - and it is 2,864m high. The mountain is a national symbol, featured on the national coat of arms and the flag...</span></li>\r\n <li><span>&hellip;Slovenia is one of the rare countries in Europe with a healthy and growing population of <b>brown bears</b>. Some Slovenian proverbs and sayings reflect our fondness for these creatures:</span><span><span>&nbsp;&nbsp;</span></span><span>&nbsp;</span></li>\r\n</ul>\r\n<p style="text-align: justify;"><i><span>Ne prodajaj koze, dokler je medved se v brlogu </span></i>which means <i>Don`t sell the skin while the bear is still in its den</i></p>\r\n<p style="text-align: justify;"><i><span>Medvedja usluga </span></i>which means <i>A bear`s favor </i>- a favor that does more harm than good.</p>','stranica','online','slovenia','slobodan',-1),(289,0,1,0,28,'Costumer comment`s','<p>We will appreciate your comments, suggestions and even praise. Share with us your opinion about the web, the tours and Slovenia.</p>\r\n<p>Send us an e-mail on Insider`s Slovenia: <a href="mailto:info@insiders-slovenia.si">info@insiders-slovenia.si</a></p>','stranica','offline','costumer-comment-s','slobodan',-1),(294,0,1,0,23,'Tours','','kategorija','offline','tours','slobodan',-1),(295,294,66,0,1,'Theme tours','<p>The Theme programs are specialized for particular fields, designed for experienced travelers, for food and wine connosseurs, culture and history enthusiasts and adrenaline addicts...Simply for people who crave unique experiences combined with high levels of service.</p>','stranica','online','theme-tours','slobodan',-1),(296,294,68,0,2,'Short breaks / Getaways','<p>Take a break and indulge...</p>','stranica','online','short-breaks-getaways','slobodan',-1),(303,0,1,0,31,'Nova stranica','

Ovde unesite novi sadrzaj stranice

','stranica','offline','','slobodno',-1),(299,294,1,0,3,'Custom Tours','<p><span lang="EN-US" style="font-family: Verdana;">Custom made tours to Slovenia are </span><span lang="EN-US" style="font-family: Verdana;">completely designed by your own imagination and personal interests. <o:p></o:p></span></p>\r\n<p style="text-align: justify;" class="MsoNormal"><span lang="EN-US" style="font-family: Verdana;">You may have heard about the secret wonders of Slovenia, but still, you may have a specific city or region, maybe even a hotel in mind. Contact us and we will design a tour customised to your taste. Your costume tour will include hotels and transport arrangements and the expertise of local guides, your wishes and needs, such as departure dates, length of the trip, cities and regions. <o:p></o:p></span></p>\r\n<p style="text-align: justify;" class="MsoNormal"><span lang="EN-US" style="font-family: Verdana;">If you are not sure what you`re looking for, but you would prefer an individual approach, here are some suggestions:<o:p></o:p></span></p>\r\n<h2><span lang="EN-US" style="font-family: Verdana;">REGIONS<o:p></o:p></span></h2>\r\n<p style="text-align: justify;" class="MsoNormal"><b><i><span lang="EN-US" style="font-family: Verdana;">Gorenjska</span></i></b><i><span lang="EN-US" style="font-family: Verdana;"> (Upper Carniola) </span></i><span lang="EN-US" style="font-family: Verdana;">Set in the Julian Alps, noted for its </span><span lang="EN-US" style="font-family: Verdana;">glacial lakes, such as Bled and Bohinj, and Triglav National Park. A wonderful destination for active sports (hiking, skiing, mountain climbing, etc.)<o:p></o:p></span></p>\r\n<p style="text-align: justify;" class="MsoNormal"><b><i><span lang="EN-US" style="font-family: Verdana;">Notranjska </span></i></b><i><span lang="EN-US" style="font-family: Verdana;">(Inner Carniola) </span></i><span lang="EN-US" style="font-family: Verdana;">mainly forests; interesting Karst caves<i> </i>below the ground; protected regional parks; preserved tradition in lace making and mercury mine industry.<o:p></o:p></span></p>\r\n<p style="text-align: justify;" class="MsoNormal"><b><i><span lang="EN-US" style="font-family: Verdana;">Primorska</span></i></b><i><span lang="EN-US" style="font-family: Verdana;"> </span></i><span lang="EN-US" style="font-family: Verdana;">seaside, sunshine, sea food, and excellent wines, all in a mediterranean athmosphere, a relaxing vacation combined with activities on Soca River such as white rive rafting. <o:p></o:p></span></p>\r\n<p style="text-align: justify;" class="MsoNormal"><b><i><span lang="EN-US" style="font-family: Verdana;">Stajerska </span></i></b><span lang="EN-US" style="font-family: Verdana;">region of<i> </i>rich nature, covered with forests, boasts the oldest wine-producing vine in the world; a hearty beer making tradition and<span>&nbsp; </span>winery tours. <o:p></o:p></span></p>\r\n<p style="text-align: justify;" class="MsoNormal"><b><i><span lang="EN-US" style="font-family: Verdana;">Bela Krajina</span></i></b><i><span lang="EN-US" style="font-family: Verdana;"> </span></i><span lang="EN-US" style="font-family: Verdana;">treasure trove of Slovenian folklore (traditional dance and folk music); kayaking on the rapid-water run on Kolpa River<o:p></o:p></span></p>\r\n<p style="text-align: justify;" class="MsoNormal"><b><i><span lang="EN-US" style="font-family: Verdana;">Prekmurje</span></i></b><i><span lang="EN-US" style="font-family: Verdana;"> </span></i><span lang="EN-US" style="font-family: Verdana;">a broad plain with well preserved traditions and fantastic food; many thermal spa areas; floating mills; offering horse riding and cycling<o:p></o:p></span></p>\r\n<p style="text-align: justify;" class="MsoNormal"><b><i><span lang="EN-US" style="font-family: Verdana;">Dolenjska</span></i></b><span lang="EN-US" style="font-family: Verdana;"> <i>(Lower Carniola) </i>a land of gently rolling hills, vineyards and forests, with restored castles, monasteries, abbeys and thermal spas. Ideal place to enjoy hiking, cycling and fishing.<o:p></o:p></span></p>\r\n<h2><span lang="EN-US" style="font-family: Verdana;">CITIES&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></h2>\r\n<ul>\r\n <li><span lang="EN-US" style="font-family: Verdana;">Capital: Ljubljana<o:p></o:p></span></li>\r\n <li><span lang="EN-US" style="font-family: Verdana;">Historical: Maribor, Celje and Ptuj&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></li>\r\n <li><span lang="EN-US" style="font-family: Verdana;">Seaside: Piran, Portoroz, Koper</span></li>\r\n <li><span lang="EN-US" style="font-family: Verdana;">Idylic: Bled and Bohinj</span></li>\r\n</ul>\r\n<p>&nbsp;<img width="150" height="100" alt="" src="/files/Image/iStock_000002374623Small.jpg" /><img width="153" height="100" alt="" src="/files/Image/iStock_000004339976Medium.jpg" /><img width="150" height="100" alt="" src="/files/Image/iStock_000004210194Medium.jpg" />&nbsp;</p>\r\n<h2><span lang="EN-US" style="font-family: Verdana;">SPECIAL INTERESTS&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></h2>\r\n<ul>\r\n <li><span lang="EN-US" style="font-family: Verdana;">Culture and history<o:p></o:p></span></li>\r\n <li><span lang="EN-US" style="font-family: Verdana;">Handicrafts<o:p></o:p></span></li>\r\n <li><span lang="EN-US" style="font-family: Verdana;">Gourmet experience (wine and cuisine)</span></li>\r\n <li><span lang="EN-US" style="font-family: Verdana;">Antique train ride</span><span lang="EN-US" style="font-family: Verdana;"> </span></li>\r\n <li><span lang="EN-US" style="font-family: Verdana;">Panoramic flight with a plane</span></li>\r\n <li><span lang="EN-US" style="font-family: Verdana;">Balloon flight&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <o:p></o:p></span></li>\r\n <li><span lang="EN-US" style="font-family: Verdana;">Short one-day cruises <o:p></o:p></span></li>\r\n <li><span lang="EN-US" style="font-family: Verdana;">Spa and wellness</span></li>\r\n</ul>\r\n<h2><span lang="EN-US" style="font-family: Verdana;"><img width="95" height="143" src="/files/Image/Pisanice1.jpg" alt="" /></span><img width="160" height="106" src="/files/Image/iStock_000005437020Small.jpg" alt="" /><img width="143" height="105" src="/files/Image/Ljubljana - gostilna Manna1.jpg" alt="" /><span lang="EN-US" style="font-family: Verdana;"><br />\r\n</span></h2>\r\n<h2><span lang="EN-US" style="font-family: Verdana;"> </span><span lang="EN-US" style="font-family: Verdana;">ACTIVITIES</span></h2>\r\n<ul>\r\n <li><span lang="EN-US" style="font-family: Verdana;">Mountain-klimbing, hiking and nordic walking<o:p></o:p></span></li>\r\n <li><span lang="EN-US" style="font-family: Verdana;">Cycling<o:p></o:p></span></li>\r\n <li><span lang="EN-US" style="font-family: Verdana;">Adrenaline sports (rafting, canyoning, canoeing, kayaking, paragliding&hellip;) -</span></li>\r\n <li><span lang="EN-US" style="font-family: Verdana;">Diving <o:p></o:p></span></li>\r\n <li><span lang="EN-US" style="font-family: Verdana;">Fishing</span></li>\r\n <li><span lang="EN-US" style="font-family: Verdana;">Swimming and boating</span></li>\r\n <li><span lang="EN-US" style="font-family: Verdana;">Horse riding<o:p></o:p></span></li>\r\n</ul>\r\n<p style="text-align: justify;" class="MsoNormal"><span lang="EN-US" style="font-family: Verdana;"> </span><span lang="EN-US" style="font-family: Verdana;"><img width="102" height="153" alt="" src="/files/Image/iStock_000004737482Medium.jpg" /></span><span lang="EN-US" style="font-family: Verdana;"><img width="100" height="151" alt="" src="/files/Image/DSC_0048 1.jpg" /></span><span lang="EN-US" style="font-family: Verdana;"><img width="125" height="125" src="/files/Image/Pictures/Lipicanci1.jpg" alt="Lipizzaner horses" /></span><span lang="EN-US" style="font-family: Verdana;"><img width="150" height="100" src="/files/Image/Aljazev stolp-011 1.jpg" alt="" /></span><span lang="EN-US" style="font-family: Verdana;">&nbsp;</span><span lang="EN-US" style="font-family: Verdana;"> </span><span lang="EN-US" style="font-family: Verdana;"> &nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp; &nbsp; &nbsp;&nbsp; <o:p></o:p></span></p>\r\n<p style="text-align: justify;" class="MsoNormal"><span lang="EN-US">Once you have decided you would like Insider&rsquo;s Slovenia to plan your travel, please contact us as early as possible (at least a few months before your planned date of departure). </span></p>\r\n<p class="MsoBodyText"><span lang="EN-US">Our charges cover the costs of an experienced, professional guide, accommodation, meals if you like, and entry fees.</span></p>\r\n<p style="text-align: justify;" class="MsoNormal"><span lang="EN-US" style="font-family: Verdana;">We will work with you to design your itinerary, choose travel dates and level of accommodation, and the type of transfers you desire. Then we use our expertise to create the journey of your dreams. <span><o:p></o:p></span></span></p>\r\n<p><span lang="EN-US" style="font-family: Verdana;">We will gather information to provide you with a rough itinerary and estimated cost. After your approval and planning fee payment of 250-500 US Dollars / 170-340 EUR we can begin working on your datailed itinerary and pricing.<o:p></o:p></span></p>\r\n<p style="margin: 0cm 0cm 0pt;"><span lang="EN-US" style="font-family: Verdana;">Once the itinerary is agreed we will ask you to read our booking conditions, complete a booking form and send us a deposit. Payments can be wired to:<o:p></o:p></span></p>\r\n<ul>\r\n <li><span lang="EN-US" style="font-family: Verdana;">Insider&rsquo;s Slovenia bank account: ABANKA VIPA d.d. Ljubljana (acc.no.: SI56&nbsp;&nbsp; 051008011682575);<o:p></o:p></span></li>\r\n <li><span lang="EN-US" style="font-family: Verdana;">SWIFT CODE : ABANSI2X;<o:p></o:p></span></li>\r\n</ul>\r\n<p style="margin: 0cm 0cm 0pt;"><span lang="EN-US" style="font-family: Verdana;">or made by a credit card (AMEX, VISA, EC/MC, DINERS). If payment is made by a credit card, please send to <a href="mailto:info@insiders-slovenia.si">info@insiders-slovenia.si</a> the following credit card details:<o:p></o:p></span></p>\r\n<p style="margin: 0cm 0cm 0pt;"><b><span lang="EN-US" style="font-family: Verdana;">Visa, Mastercard:</span></b><span lang="EN-US" style="font-family: Verdana;"><span>&nbsp; </span>card number, validity, CVC 2(triple security code), first and last name, address, state, country)</span><span lang="EN-US" style="font-family: Verdana;"><o:p></o:p></span></p>\r\n<p style="margin: 0cm 0cm 0pt;"><b><span lang="EN-US" style="font-family: Verdana;">American Express, Diners: </span></b><span lang="EN-US" style="font-family: Verdana;">card number, validity, first and last name, address, state, country</span><span lang="EN-US" style="font-family: Verdana;"><o:p></o:p></span></p>\r\n<p class="MsoNormal"><span lang="EN-US" style="font-family: Verdana;">If anything is not available, we will keep you informed and help you decide on your options at that point.&nbsp;Once we&rsquo;ve confirmed the tour with you, your deposit is non-refundable and non-transferrable. You will get a full booking package with all details about your holiday. Any final details will be sent to you a week or two before you depart.<o:p></o:p></span></p>\r\n<p class="MsoNormal"><span lang="EN-US" style="font-family: Verdana;">We work closely with you during this process to present you with a tailor-made itinerary and final pricing. Your deposit fee is credited toward your journey price when booked.<o:p></o:p></span></p>','stranica','online','custom-tours','slobodan',-1),(302,294,1,0,4,'Novi link','www.google.com','link','offline','','slobodno',-1),(301,0,70,0,30,'Send a postcard','<p>Share your discovery of Slovenia with your family and friends by sending an E-Postcard.</p>\r\n<p>Please click on circle next to the picture to select the card you wish to send. Then fill out the form below.</p>\r\n<p>*<i> Copyright &copy; Darila Rokus, 2008. All rights reserved.&nbsp;</i></p>','stranica','online','send-a-postcard','slobodan',-1),(261,43,1,0,1,'Basis of Rates','<p style="text-align: justify;"><span>All prices are based on two persons sharing a room. All prices and fares are quoted in U.S. Dollars/Euros. The rates are based on current tariffs and are subject to change due to unforeseen circumstances. While we will do everything possible to maintain the listed prices, if it is necessary to levy a surcharge, we reserve the right to do so, and notification will be given at the time of final invoicing. </span></p>','stranica','online','basis-of-rates','slobodan',-1),(262,43,1,0,2,'Eligibility','<p style="text-align: justify;">&nbsp;<span>Anyone under 18 must be accompanied by a parent or guardian for the entire journey. </span></p>','stranica','online','eligibility','slobodan',-1),(263,43,1,0,3,'Cancellations and Refunds','<p style="text-align: justify;"><span>Insider&rsquo;s Slovenia reserves the right to cancel a reservation if full payment has not been received by 60 days prior to departure. For reservations made within 60 days of the departure date, full payment is required when the reservation is accepted.</span></p>\r\n<p style="margin: 0cm 0cm 0.0001pt; text-align: justify;">&nbsp;</p>\r\n<p style="margin: 0cm 0cm 0.0001pt; text-align: justify;"><span>All cancellation notices must be received in writing and will become effective as of receiving an e-mail or fax message. </span></p>\r\n<p style="margin: 0cm 0cm 0.0001pt;">&nbsp;</p>\r\n<div align="center">\r\n<table width="441" height="163" cellspacing="0" cellpadding="0" border="1" style="border: medium none ; border-collapse: collapse;">\r\n <tbody>\r\n <tr>\r\n <td width="409" valign="top" style="border: 0.5pt solid windowtext; padding: 0cm 5.4pt; width: 307.05pt;" colspan="2">\r\n <p><b><span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; TABLE OF CANCELLATION FEES</span></b></p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td width="250" valign="top" style="border-style: none solid solid; border-color: -moz-use-text-color windowtext windowtext; border-width: medium 0.5pt 0.5pt; padding: 0cm 5.4pt; width: 187.75pt;">\r\n <p><b><span>Cancelling of reservation</span></b></p>\r\n </td>\r\n <td width="159" valign="top" style="border-style: none solid solid none; border-color: -moz-use-text-color windowtext windowtext -moz-use-text-color; border-width: medium 0.5pt 0.5pt medium; padding: 0cm 5.4pt; width: 119.3pt;">\r\n <p><b>Placing</b></p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td width="250" valign="top" style="border-style: none solid solid; border-color: -moz-use-text-color windowtext windowtext; border-width: medium 0.5pt 0.5pt; padding: 0cm 5.4pt; width: 187.75pt;">\r\n <p>Up to 60 days</p>\r\n </td>\r\n <td width="159" valign="top" style="border-style: none solid solid none; border-color: -moz-use-text-color windowtext windowtext -moz-use-text-color; border-width: medium 0.5pt 0.5pt medium; padding: 0cm 5.4pt; width: 119.3pt;">\r\n <p>50% of deposit</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td width="250" valign="top" style="border-style: none solid solid; border-color: -moz-use-text-color windowtext windowtext; border-width: medium 0.5pt 0.5pt; padding: 0cm 5.4pt; width: 187.75pt;">\r\n <p>59 days-40 days</p>\r\n </td>\r\n <td width="159" valign="top" style="border-style: none solid solid none; border-color: -moz-use-text-color windowtext windowtext -moz-use-text-color; border-width: medium 0.5pt 0.5pt medium; padding: 0cm 5.4pt; width: 119.3pt;">\r\n <p>100% of deposit</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td width="250" valign="top" style="border-style: none solid solid; border-color: -moz-use-text-color windowtext windowtext; border-width: medium 0.5pt 0.5pt; padding: 0cm 5.4pt; width: 187.75pt;">\r\n <p>39 days-30 days</p>\r\n </td>\r\n <td width="159" valign="top" style="border-style: none solid solid none; border-color: -moz-use-text-color windowtext windowtext -moz-use-text-color; border-width: medium 0.5pt 0.5pt medium; padding: 0cm 5.4pt; width: 119.3pt;">\r\n <p>50% of tour cost</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td width="250" valign="top" style="border-style: none solid solid; border-color: -moz-use-text-color windowtext windowtext; border-width: medium 0.5pt 0.5pt; padding: 0cm 5.4pt; width: 187.75pt;">\r\n <p>29 days or less prior to departure</p>\r\n </td>\r\n <td width="159" valign="top" style="border-style: none solid solid none; border-color: -moz-use-text-color windowtext windowtext -moz-use-text-color; border-width: medium 0.5pt 0.5pt medium; padding: 0cm 5.4pt; width: 119.3pt;">\r\n <p>100% of tour cost</p>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n</div>\r\n<p style="margin: 0cm 0cm 0.0001pt;">&nbsp;</p>\r\n<p style="margin: 0cm 0cm 0.0001pt;">&nbsp;</p>\r\n<p style="margin: 0cm 0cm 0.0001pt; text-align: justify;"><span>If you cancel 60 days or more prior to departure, a refund less an administrative fee of 50% of your deposit will be made. </span></p>\r\n<p style="margin: 0cm 0cm 0.0001pt; text-align: justify;"><span>Per person charges for cancellations that occur less than 60 days prior to departure are as follows: 59-40 days prior to departure: 100% of your deposit amount; 39-30 days prior to departure: 50% of the tour cost; 29 days or fewer days prior to departure: 100% of the tour cost. This policy also applies to pre-and post-trip extensions. Any airline tickets issued are subject to the carrier&rsquo;s refund policy. </span></p>\r\n<p style="margin: 0cm 0cm 0.0001pt; text-align: justify;"><span>Leaving a tour in progress, for any reason whatsoever, will not result in a refund, and no refunds will be made for any unused portions of a tour. Insider`s Slovenia reserves the right to cancel any trip because of inadequate enrollment that makes the trip economically unfeasible to operate or because of good-faith concerns with respect to the safety, health, or welfare of the participants. If Insider`s Slovenia cancels a tour prior to departure, you will receive a full refund of monies paid to Insider`s Slovenia, except in the event the cancellation is due to a major global event that has resulted in the cancellation of multiple trips, in which case you will receive a refund and/or credit equivalent to monies paid to Insider`s Slovenia. If we cancel the trip in progress, you will receive a prorated refund based on the number of days not completed on the tour. We will not be responsible for any refund for nonrefundable airline tickets or for any airline tickets purchased by the passenger directly from an airline or travel agent.</span></p>\r\n<p style="text-align: justify;"><b><span style="font-size: 12pt;">Trip cancellation insurance is strongly recommended. Clients are advised to obtain their own insurances while traveling.</span></b></p>\r\n<p style="margin: 0cm 0cm 0.0001pt;">&nbsp;</p>','stranica','online','cancellations-and-refunds','slobodan',-1),(264,43,1,0,4,'Reservations and Payments','<p style="text-align: justify;"><b>To reserve space</b><span> on Theme and Exclusive tours, a $800/535&euro; per person deposit is required at time of reservation and $500/335&euro; per person on Short breaks/Getaways tours. <b>Final payment</b> is due no later than 60 days (30 days for Short breaks/Getaways) prior to departure. </span></p>\r\n<p style="margin: 0cm 0cm 0.0001pt; text-align: justify;"><span>Once the itinerary is agreed we will ask you to read our booking conditions, complete a booking form and send us a deposit. </span></p>\r\n<p style="margin: 0cm 0cm 0.0001pt; text-align: justify;">&nbsp;<b>Payments can be wired to:</b></p>\r\n<ul>\r\n <li><span><span style="">&nbsp;</span></span><span>Insider&rsquo;s Slovenia bank account: </span><u><span>ABANKA VIPA d.d. Ljubljan</span><span>a</span></u><span><br />\r\n </span>&nbsp; (acc. no.: SI56 051008011682575)</li>\r\n</ul>\r\n<ul>\r\n <li>SWIFT CODE : ABANSI2X;</li>\r\n</ul>\r\n<p style="margin: 0cm 0cm 0.0001pt;"><span>or made by a credit card (AMEX, VISA, EC/MC, DINERS). If payment is made by a credit card, please send to <a href="mailto:info@insiders-slovenia.si">info@insiders-slovenia.si</a> the following credit card details:</span></p>\r\n<p style="margin: 0cm 0cm 0.0001pt;"><b><span>Visa, Mastercard:</span></b><span>&nbsp;card number, validity, CVC 2 (triple security code), first and last name, address, state, country)</span></p>\r\n<p style="margin: 0cm 0cm 0.0001pt;"><b><span>American Express, Diners: </span></b><span>card number, validity, first and last name, address, state, country</span></p>','stranica','online','reservations-and-payments','slobodan',-1),(265,43,1,0,5,'Included in Tour Cost','<ul>\r\n <li style="text-align: justify;">&nbsp;Accommodations and meals as indicated in the itinerary (B = breakfast, L = lunch, D = dinner)</li>\r\n <li style="text-align: justify;">Pre-departure information</li>\r\n <li style="text-align: justify;">Entrance fees and sightseeing noted as included in the itinerary</li>\r\n <li style="text-align: justify;">All gratuities - unless otherwise noted on the itinerary page</li>\r\n <li style="text-align: justify;">Ground transportation during the tour</li>\r\n <li style="text-align: justify;">Transfers to and from group flights where applicable</li>\r\n <li style="text-align: justify;">Services of Insider`s Slovenia experts</li>\r\n <li style="text-align: justify;">Guides, expedition manager and any other staff</li>\r\n <li style="text-align: justify;">Taxes, baggage handling and service charges</li>\r\n</ul>\r\n<p style="text-align: justify;">&nbsp;</p>\r\n<p style="text-align: justify;"><i>Please note: The &quot;B, L, D&quot; notations only apply to the period during the tour and do not include any meals on flights to/from the trip.</i></p>','stranica','online','included-in-tour-cost','slobodan',-1),(266,43,1,0,6,'Not Included in Tour Cost','<ul>\r\n <li>Air transportation and related fees<span><br />\r\n </span></li>\r\n <li>Activites noted as optional in the itinerary </li>\r\n <li>Baggage/accident/cancellation insurance</li>\r\n <li>Personal expenses, such as laundry, telephone calls and alcoholic beverages; and any other items not specifically noted as included.</li>\r\n</ul>','stranica','online','not-included-in-tour-cost','slobodan',-1),(267,43,1,0,7,'Single/Shared Accommodations','<p style="text-align: justify;"><span>A limited number of single rooms are available at extra cost on a first-come, first-served basis. We will assist persons requesting a roommate. Participants will be notified if a suitable roommate is not available, in which case the single rate will be charged.</span></p>\r\n<p>&nbsp;</p>','stranica','online','single-shared-accommodations','slobodan',-1),(268,43,1,0,8,'Itinerary Changes','<p style="text-align: justify;"><span>Every reasonable effort will be made to operate programs as planned, but alterations may still occur after final itineraries are sent.</span></p>\r\n<p style="text-align: justify;">&nbsp;</p>','stranica','online','itinerary-changes','slobodan',-1),(269,43,1,0,9,'Health Requirements','<p style="text-align: justify;">Our clients should be<span> in good physical and mental health. Any physical condition, diet or treatment requiring special attention must be reported in writing when the reservation is made.&nbsp;</span></p>\r\n<p style="text-align: justify;"><span>Purchase of travel insurance is strongly recommended with respect to trip cancellation, personal baggage, personal accident, injury or illness. Clients are advised to obtain their own insurances while traveling.</span></p>','stranica','online','health-requirements','slobodan',-1),(270,43,1,0,10,'Baggage & Custom regulations','<p><span>Luggage allowance may be limited by different airline carriers. Additional weight must be paid.&nbsp; Average weight is usually around 20 kg.</span></p>\r\n<p><span>Passenger is obligated to respect the custom regulations of The Republic of Slovenia. </span></p>','stranica','online','baggage-iamp-custom-regulations','slobodan',-1),(271,43,1,0,11,'Property damage','<p><span>In case of the loss of private or travel documents, clients are obligated to cover the needed expenses to be able to proceed the tour. We offer advises and will help to solve the problems. We are not responsible for any other losses or damages.</span></p>\r\n<p>&nbsp;</p>','stranica','online','property-damage','slobodan',-1),(272,43,1,0,12,'Photography','<p style="text-align: justify;">We reserve the right to take photographs or videos during the operation of any tour and to use the resulting photography for promotional purposes. By booking a reservation with Insider`s Slovenia, participants agree to allow their images to be used in such photography.</p>','stranica','online','photography','slobodan',-1),(274,43,1,0,14,'Complaints','<p style="text-align: justify;"><span lang="EN-US" style="font-family: Verdana;">The client must inform the agency immediately in case of any inconveniences or complaints.<o:p></o:p></span></p>\r\n<p style="text-align: justify;" class="MsoNormal"><span lang="EN-US" style="font-family: Verdana;">For all the complaints our clients can apply to the travel agency with written notice by e-mail or fax. <o:p></o:p></span></p>','stranica','online','complaints','slobodan',-1),(275,43,1,0,15,'Solving the disputes','<p style="text-align: justify;">Court of Justice Ljubljana has jurisdiction over insolvability of the conflicts between Insider`s Slovenia and the client.<span style="font-size: 12pt;"><br />\r\n</span></p>','stranica','online','solving-the-disputes','slobodan',-1),(276,43,1,0,16,'Other','<p style="text-align: justify;">Additional Terms and Conditions may apply to some tours and will be provided with pre-trip mailings.</p>\r\n<p style="text-align: justify;">By registering for one of Insider`s Slovenia tours the participant agrees to the Responsibility statement and the Terms and Conditions herein.</p>\r\n<p>&nbsp;</p>','stranica','online','other','slobodan',-1),(277,46,65,0,1,'Thank You for submiting feedback','<p>For further information and inquiries please contact :</p>\r\n<p><b>in the USA</b> &ndash; our exclusive &nbsp;representative Mr. Mark Ryavec &nbsp;at 1-877-4SLOVENIA or e-mail: <span><a title="blocked::mailto:InsidersSloveniaUSA@ca.rr.com" href="mailto:InsidersSloveniaUSA@ca.rr.com">InsidersSloveniaUSA@ca.rr.com</a></span></p>\r\n<p><b>rest of the world</b> &ndash; Insider's Slovenia, Ms. Tina Razdrh at +386 1 513 46 24, fax +386 1 513 46 28 or send a request to Insider&rsquo;s Slovenia: <span><a title="blocked::mailto:info@insiders-slovenia.si" href="mailto:info@insiders-slovenia.si">info@insiders-slovenia.si</a></span></p>\r\n<p>&nbsp;</p>','stranica','offline','thank-you-for-submiting-feedback','slobodan',-1); /*!40000 ALTER TABLE `page` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `pagelink` -- DROP TABLE IF EXISTS `pagelink`; CREATE TABLE `pagelink` ( `page_id` int(11) NOT NULL default '0', `target` varchar(255) NOT NULL default '', PRIMARY KEY (`page_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; -- -- Dumping data for table `pagelink` -- LOCK TABLES `pagelink` WRITE; /*!40000 ALTER TABLE `pagelink` DISABLE KEYS */; INSERT INTO `pagelink` VALUES (40,'_self'),(249,'_self'),(302,'_self'); /*!40000 ALTER TABLE `pagelink` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `plug_templ` -- DROP TABLE IF EXISTS `plug_templ`; CREATE TABLE `plug_templ` ( `plgtem_id` int(11) NOT NULL auto_increment, `plugin_id` int(11) NOT NULL default '0', `template_id` int(11) NOT NULL default '0', `position` varchar(255) NOT NULL default '', `file_name` varchar(255) NOT NULL default '', `filterid` int(11) NOT NULL default '0', PRIMARY KEY (`plgtem_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; -- -- Dumping data for table `plug_templ` -- LOCK TABLES `plug_templ` WRITE; /*!40000 ALTER TABLE `plug_templ` DISABLE KEYS */; INSERT INTO `plug_templ` VALUES (15,7,3,'','sitemap',-1),(16,3,3,'','news',20),(17,4,3,'','poll',2),(97,3,62,'','news',20),(98,16,62,'','product_search',-1),(99,27,62,'','newsletter',-1),(125,10,62,'','universalplugin_left',21),(114,16,66,'','product_search',-1),(113,9,66,'','universalplugin',19),(107,9,62,'','universalplugin',19),(116,22,66,'','product_tip',57),(115,27,66,'','newsletter',-1),(110,3,65,'','news',20),(111,16,65,'','product_search',-1),(112,27,65,'','newsletter',-1),(117,28,67,'','reservation',-1),(118,9,65,'','universalplugin',20),(133,9,71,'','universalplugin',19),(120,9,68,'','universalplugin',20),(121,16,68,'','product_search',-1),(122,22,68,'','product_tip',53),(127,29,70,'','postcards',-1),(124,27,68,'','newsletter',-1),(132,3,71,'','news',20),(134,16,71,'','product_search',-1),(135,23,71,'','grupaproizvoda',10),(136,27,71,'','newsletter',-1); /*!40000 ALTER TABLE `plug_templ` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `plugins` -- DROP TABLE IF EXISTS `plugins`; CREATE TABLE `plugins` ( `plugin_id` int(11) NOT NULL auto_increment, `title` varchar(255) NOT NULL default '', `file_name` varchar(255) NOT NULL default '', `classname` varchar(255) NOT NULL default '', `module` varchar(255) NOT NULL default '', PRIMARY KEY (`plugin_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; -- -- Dumping data for table `plugins` -- LOCK TABLES `plugins` WRITE; /*!40000 ALTER TABLE `plugins` DISABLE KEYS */; INSERT INTO `plugins` VALUES (3,'News','news','NewsCategory',''),(7,'Sitemap','sitemap','null',''),(9,'Header','universalplugin','UniversalPlugin',''),(23,'Grupa aranzmana','grupaproizvoda','PrGrupaProizvoda','products'),(16,'Search tour','product_search','null','products'),(29,'Postcards','postcards','null',''),(18,'Grupa tipova aranzmana','grupatipovaproizvoda','PrGrupaTipovaProizvoda','products'),(22,'Tip aranzmana','product_tip','PrTipProizvoda','products'),(10,'Banner left','universalplugin_left','universalplugin',''),(28,'Reservation page','reservation','null',''),(27,'Newsletter','newsletter','null',''); /*!40000 ALTER TABLE `plugins` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `poll` -- DROP TABLE IF EXISTS `poll`; CREATE TABLE `poll` ( `pollid` int(11) NOT NULL auto_increment, `header` varchar(255) NOT NULL default '', `description` varchar(255) NOT NULL default '', `status` varchar(255) NOT NULL default 'offline', PRIMARY KEY (`pollid`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; -- -- Dumping data for table `poll` -- LOCK TABLES `poll` WRITE; /*!40000 ALTER TABLE `poll` DISABLE KEYS */; INSERT INTO `poll` VALUES (13,'Nova anketa','Opis ankete','offline'),(2,'Saradnja','? ta Vam se najvi??e dopada u saradnji sa nama?','online'); /*!40000 ALTER TABLE `poll` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `poll_questions` -- DROP TABLE IF EXISTS `poll_questions`; CREATE TABLE `poll_questions` ( `questionid` int(11) NOT NULL auto_increment, `pollid` int(11) NOT NULL default '0', `title` varchar(255) NOT NULL default '', `votes` int(11) NOT NULL default '0', PRIMARY KEY (`questionid`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; -- -- Dumping data for table `poll_questions` -- LOCK TABLES `poll_questions` WRITE; /*!40000 ALTER TABLE `poll_questions` DISABLE KEYS */; INSERT INTO `poll_questions` VALUES (7,2,'StruÄ?nost',10),(6,2,'Brzina',2),(5,2,'Ljubaznost',9),(8,2,'Podr??ka',3),(9,2,'Cene',4); /*!40000 ALTER TABLE `poll_questions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `pr_datumpolaska` -- DROP TABLE IF EXISTS `pr_datumpolaska`; CREATE TABLE `pr_datumpolaska` ( `datum_polaska_id` int(11) NOT NULL auto_increment, `proizvodid` int(11) NOT NULL default '0', `datum_polaska` int(11) NOT NULL default '0', PRIMARY KEY (`datum_polaska_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci; -- -- Dumping data for table `pr_datumpolaska` -- LOCK TABLES `pr_datumpolaska` WRITE; /*!40000 ALTER TABLE `pr_datumpolaska` DISABLE KEYS */; INSERT INTO `pr_datumpolaska` VALUES (2,1256,1204671600),(5,1256,1205967600),(8,1256,1206054000),(7,1256,1205535600),(65,1440,1242424800),(66,1440,1244844000); /*!40000 ALTER TABLE `pr_datumpolaska` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `pr_grupakategorija` -- DROP TABLE IF EXISTS `pr_grupakategorija`; CREATE TABLE `pr_grupakategorija` ( `grupakategorijaid` int(11) NOT NULL auto_increment, `naziv` varchar(255) character set utf8 NOT NULL default '', `opis` text collate latin1_general_ci NOT NULL, PRIMARY KEY (`grupakategorijaid`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci COMMENT='podaci o grupama kategorija'; -- -- Dumping data for table `pr_grupakategorija` -- LOCK TABLES `pr_grupakategorija` WRITE; /*!40000 ALTER TABLE `pr_grupakategorija` DISABLE KEYS */; INSERT INTO `pr_grupakategorija` VALUES (8,'Stoni tel. aparati','Opis grupe kategorija'),(9,'Sistemski tel. aparati - PT','Telefonski aparati namanjeni za prikljuÄ?enje na kuÄ?ne tel. centrale'),(10,'Standardni telefoni - SLT','Standardni stoni, ??iÄ?ni, be??iÄ?ni, telefaks aparati'); /*!40000 ALTER TABLE `pr_grupakategorija` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `pr_grupaproizvoda` -- DROP TABLE IF EXISTS `pr_grupaproizvoda`; CREATE TABLE `pr_grupaproizvoda` ( `grupaproizvodaid` int(11) NOT NULL auto_increment, `naziv` varchar(255) character set utf8 NOT NULL default '', `opis` text collate latin1_general_ci NOT NULL, PRIMARY KEY (`grupaproizvodaid`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci COMMENT='podaci o grupama proizvoda'; -- -- Dumping data for table `pr_grupaproizvoda` -- LOCK TABLES `pr_grupaproizvoda` WRITE; /*!40000 ALTER TABLE `pr_grupaproizvoda` DISABLE KEYS */; INSERT INTO `pr_grupaproizvoda` VALUES (10,'Special tours','Opis grupe aranzmana'); /*!40000 ALTER TABLE `pr_grupaproizvoda` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `pr_grupatipovaproizvoda` -- DROP TABLE IF EXISTS `pr_grupatipovaproizvoda`; CREATE TABLE `pr_grupatipovaproizvoda` ( `grupatipovaproizvodaid` int(11) NOT NULL auto_increment, `naziv` varchar(255) character set utf8 NOT NULL default '', `opis` varchar(255) character set utf8 NOT NULL default '', PRIMARY KEY (`grupatipovaproizvodaid`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -- Dumping data for table `pr_grupatipovaproizvoda` -- LOCK TABLES `pr_grupatipovaproizvoda` WRITE; /*!40000 ALTER TABLE `pr_grupatipovaproizvoda` DISABLE KEYS */; INSERT INTO `pr_grupatipovaproizvoda` VALUES (15,'Summer tours','Opis grupe tipova proizvoda'); /*!40000 ALTER TABLE `pr_grupatipovaproizvoda` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `pr_karakteristika` -- DROP TABLE IF EXISTS `pr_karakteristika`; CREATE TABLE `pr_karakteristika` ( `karakteristikaid` int(11) NOT NULL auto_increment, `tipproizvodaid` int(11) NOT NULL default '0', `naziv` varchar(255) character set utf8 NOT NULL default '', PRIMARY KEY (`karakteristikaid`,`tipproizvodaid`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci COMMENT='sadrzi vrednosti dodatnih karateristika proizvoda'; -- -- Dumping data for table `pr_karakteristika` -- LOCK TABLES `pr_karakteristika` WRITE; /*!40000 ALTER TABLE `pr_karakteristika` DISABLE KEYS */; INSERT INTO `pr_karakteristika` VALUES (28,31,'Analogna'),(29,31,'Digitalna'),(107,53,'LCD'),(108,53,'Plazma'),(106,53,'Standardni'),(103,47,'Rezolucija'),(104,47,'OptiÄ?ki zoom'),(105,47,'Memorija'),(74,43,'Digitalna'),(76,43,'VoIP'),(77,43,'ISDN-BRI'),(78,43,'ISDN-PRI'),(79,44,'ISDN-BRI'),(80,44,'ISDN-PRI'); /*!40000 ALTER TABLE `pr_karakteristika` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `pr_karakteristikaproizvoda` -- DROP TABLE IF EXISTS `pr_karakteristikaproizvoda`; CREATE TABLE `pr_karakteristikaproizvoda` ( `karakteristikaid` int(11) NOT NULL default '0', `proizvodid` int(11) NOT NULL default '0', `vrednost` varchar(255) character set utf8 NOT NULL default '', PRIMARY KEY (`karakteristikaid`,`proizvodid`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci COMMENT='cuva vrednosti dodatnih karakteristika proizvoda'; -- -- Dumping data for table `pr_karakteristikaproizvoda` -- LOCK TABLES `pr_karakteristikaproizvoda` WRITE; /*!40000 ALTER TABLE `pr_karakteristikaproizvoda` DISABLE KEYS */; INSERT INTO `pr_karakteristikaproizvoda` VALUES (108,1417,'ne'),(106,1418,'ne'),(107,1418,'da'),(108,1418,'ne'),(106,1419,'da'),(107,1419,'ne'),(107,1417,'da'),(108,1416,'ne'),(106,1417,'ne'),(105,1367,'SD'),(106,1414,'da'),(107,1414,'ne'),(108,1414,'ne'),(106,1415,'da'),(107,1415,'ne'),(108,1415,'ne'),(106,1416,'da'),(107,1416,'ne'),(104,1367,'4x'),(103,1367,'7.1'),(74,1260,'da'),(80,1265,'ne'),(74,1261,'da'),(79,1265,'da'),(76,1261,'da'),(77,1261,'da'),(78,1261,'ne'),(108,1419,'da'); /*!40000 ALTER TABLE `pr_karakteristikaproizvoda` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `pr_kategorija` -- DROP TABLE IF EXISTS `pr_kategorija`; CREATE TABLE `pr_kategorija` ( `kategorijaid` int(11) NOT NULL auto_increment, `naziv` varchar(255) character set utf8 NOT NULL default '', `opis` text collate latin1_general_ci NOT NULL, PRIMARY KEY (`kategorijaid`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci COMMENT='podaci o kategorijama proizvoda'; -- -- Dumping data for table `pr_kategorija` -- LOCK TABLES `pr_kategorija` WRITE; /*!40000 ALTER TABLE `pr_kategorija` DISABLE KEYS */; INSERT INTO `pr_kategorija` VALUES (57,'LCD TV','Opis kategorije'),(50,'DPT','Digitalni sistemski telefonski aparati koji se povezuju dvo??ilno'),(51,'APT','Analogni sistemski telefonski aparati koji se povezuju Ä?etvoro??ilno'),(56,'Standardni TV aparat','TV aparati koji imaju katodnu cev '); /*!40000 ALTER TABLE `pr_kategorija` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `pr_kategorijagrupakateg` -- DROP TABLE IF EXISTS `pr_kategorijagrupakateg`; CREATE TABLE `pr_kategorijagrupakateg` ( `grupakategorijaid` int(11) NOT NULL default '0', `kategorijaid` int(11) NOT NULL default '0', PRIMARY KEY (`grupakategorijaid`,`kategorijaid`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci COMMENT='veza izmedju kategorija i grupa kategorija'; -- -- Dumping data for table `pr_kategorijagrupakateg` -- LOCK TABLES `pr_kategorijagrupakateg` WRITE; /*!40000 ALTER TABLE `pr_kategorijagrupakateg` DISABLE KEYS */; INSERT INTO `pr_kategorijagrupakateg` VALUES (9,50),(9,51); /*!40000 ALTER TABLE `pr_kategorijagrupakateg` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `pr_kurs` -- DROP TABLE IF EXISTS `pr_kurs`; CREATE TABLE `pr_kurs` ( `kursid` int(11) NOT NULL auto_increment, `kurs` float NOT NULL default '0', PRIMARY KEY (`kursid`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; -- -- Dumping data for table `pr_kurs` -- LOCK TABLES `pr_kurs` WRITE; /*!40000 ALTER TABLE `pr_kurs` DISABLE KEYS */; INSERT INTO `pr_kurs` VALUES (1,1); /*!40000 ALTER TABLE `pr_kurs` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `pr_order` -- DROP TABLE IF EXISTS `pr_order`; CREATE TABLE `pr_order` ( `orderid` int(11) NOT NULL auto_increment, `userid` int(11) NOT NULL default '0', `date` int(11) NOT NULL default '0', `status` varchar(255) NOT NULL default 'neobradjena', `type` varchar(255) NOT NULL default '', PRIMARY KEY (`orderid`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; -- -- Dumping data for table `pr_order` -- LOCK TABLES `pr_order` WRITE; /*!40000 ALTER TABLE `pr_order` DISABLE KEYS */; INSERT INTO `pr_order` VALUES (72,160,1191622747,'neobradjena','narud??benica/ke??'); /*!40000 ALTER TABLE `pr_order` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `pr_orderitem` -- DROP TABLE IF EXISTS `pr_orderitem`; CREATE TABLE `pr_orderitem` ( `orderitemid` int(11) NOT NULL auto_increment, `orderid` int(11) NOT NULL default '0', `proizvodid` int(11) NOT NULL default '0', `quantity` int(11) NOT NULL default '0', PRIMARY KEY (`orderitemid`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci; -- -- Dumping data for table `pr_orderitem` -- LOCK TABLES `pr_orderitem` WRITE; /*!40000 ALTER TABLE `pr_orderitem` DISABLE KEYS */; INSERT INTO `pr_orderitem` VALUES (133,72,1430,1); /*!40000 ALTER TABLE `pr_orderitem` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `pr_proizvod` -- DROP TABLE IF EXISTS `pr_proizvod`; CREATE TABLE `pr_proizvod` ( `proizvodid` int(11) NOT NULL auto_increment, `naziv` varchar(255) character set utf8 NOT NULL default '', `sifra` varchar(255) character set utf8 NOT NULL default '', `opis` text character set utf8 NOT NULL, `opisk` text character set utf8 NOT NULL, `highlights` text collate latin1_general_ci NOT NULL, `itinery` text collate latin1_general_ci NOT NULL, `description` text collate latin1_general_ci NOT NULL, `accomodations` text collate latin1_general_ci NOT NULL, `cenaa` text collate latin1_general_ci, `cenab` text collate latin1_general_ci, `mpoint` text character set utf8 NOT NULL, `jedinica` text character set utf8 NOT NULL, `slika` varchar(255) character set utf8 NOT NULL default '', `dokument` varchar(255) character set utf8 NOT NULL default '', `status` varchar(255) collate latin1_general_ci NOT NULL default '', `proizvodjacid` int(11) NOT NULL default '0', `tipproizvodaid` int(11) NOT NULL default '0', `order` int(11) NOT NULL default '0', PRIMARY KEY (`proizvodid`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci COMMENT='podaci o proizvodima'; -- -- Dumping data for table `pr_proizvod` -- LOCK TABLES `pr_proizvod` WRITE; /*!40000 ALTER TABLE `pr_proizvod` DISABLE KEYS */; INSERT INTO `pr_proizvod` VALUES (1440,'Insider’s Gourmet Tour of Slovenia',' 9 Days','Opis aranzmana','Kratak opis aranzmana','<p style="text-align: justify;">In <b>PREKMURJE</b>, a lush agricultural region in the northeast of Slovenia, taste gibanica, a delicious pie of cottage cheese, apples, walnuts and poppy seeds; bograc, which is similar to goulash; and the sparkling wine Zlata Penina. Visit the Bogojina church, designed by world famous architect Joze Plecnik.</p>\r\n<p style="text-align: justify;"><img width="125" height="75" alt="Slovenia, Prekmurje" src="/files/Image/Pictures/Prekmurje04 1.jpg" />&nbsp; <img width="125" height="102" alt="Prekmurska gibanica" src="/files/Image/recipies/prekmurska-gibanica.jpg" /><img width="80" height="106" alt="Slovenia, Bogojina church" src="/files/Image/tours/gourmet/prekmurje-bogojina.jpg" /></p>\r\n<p style="text-align: justify;"><b>MARIBOR</b>, a charming medieval city in the province of Stajerska, boasts the world&rsquo;s oldest wine-producing vine. At the eastern edge of the Alps, this region offers unique Chardonnays, Pinot Blancs, Rieslings, Muscats, Gerwurtz Traminers, and Modra Frankinja, a dark red wine with a blue tinge, similar to Pinot Noir. In <b>PTUJ, </b>enjoy a remarkable view of the Drava river from the hilltop castle overlooking the city.</p>\r\n<p style="text-align: justify;"><img width="125" height="84" alt="" src="/files/Image/tours/gourmet/maribor-najstarejsa-trta-na-lentu.jpg" /><img width="125" height="83" alt="" src="/files/Image/tours/gourmet/maribor-vinag.jpg" /><img width="125" height="83" alt="" src="/files/Image/DSC_0031 1.jpg" /></p>\r\n<p style="text-align: justify;">In the <b>DOLENJSKA</b> and <b>BELA KRAJINA</b> regions enjoy struklji, similar to dumplings, with fillings of tarragon, cheese, mint or potato. You will also taste Cvicek, a light wine distinguished by a mild taste and high acidity, and Metliska Crnina, another typical wine of Bela Krajina. The tour includes a stop at the Pleterje Cartusian Monastery, known for its ice and late harvest wine.</p>\r\n<p style="text-align: justify;"><img width="100" height="81" alt="" src="/files/Image/Food/Belokranjska pogaca (Bela krajina flat cake)1.jpg" /><img width="125" height="81" alt="" src="/files/Image/Pictures/iStock_000004355761Small.jpg" /><img width="90" height="83" alt="" src="/files/Image/Food/Dolenjski struklji.jpg" /><img width="125" height="80" alt="" src="/files/Image/tours/gourmet/pleterje.jpg" /></p>\r\n<p style="text-align: justify;">In <b>LJUBLJANA</b>, Slovenia&rsquo;s Vienna-like capital, stroll cobblestone streets and explore its bustling riverside market. Later, take a boat ride down the Ljubljanica River.</p>\r\n<p style="text-align: justify;"><img width="80" height="94" alt="" src="/files/Image/Zabji kraki-004.jpg" /><img width="125" height="83" alt="" src="/files/Image/Pictures/iStock_000003946696Medium.jpg" /><img width="124" height="83" alt="" src="/files/Image/Pictures/iStock_000005487865Medium.jpg" /><img width="90" height="74" alt="" src="/files/Image/Loska smojka-002.jpg" /></p>\r\n<p style="text-align: justify;">At <b>POSTOJNA</b> ride a miniature train through an underground wonderland in one of the most extensive cave systems in the world. Nearby visit Hrastovlje Church with its &ldquo;Death Dance&rdquo; frescoes.</p>\r\n<p><img width="125" height="85" alt="Predjama castle" src="/files/Image/Pictures/Predjamski_grad_150578.jpg" />&nbsp;&nbsp;<img width="70" height="109" alt="" src="/files/Image/Brilijant 1.jpg" /> &nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p>\r\n<p style="text-align: justify;">In<b> PRIMORSKA</b>, literally the region &ldquo;by the sea,&rdquo; revel in Piran&rsquo;s Venetian legacy while you dine by the Adriatic on fresh &ldquo;fruits de mer&rdquo; and drink Malvasia, a golden varietal with a distinct bouquet. Also enjoy delightful local versions of Barbera, Refosk and Merlot.&nbsp;</p>\r\n<p style="text-align: justify;"><img width="100" height="93" alt="" src="/files/Image/Ribe v savorju-003.jpg" /><img width="125" height="83" alt="" src="/files/Image/tours/gourmet/Soline1.jpg" /><img width="136" height="83" alt="" src="/files/Image/tours/gourmet/Portoroz by night1.jpg" /><img width="100" height="89" alt="" src="/files/Image/Pedoci.jpg" /></p>\r\n<p style="text-align: justify;">The <b>KARST</b> hills produce Teran, a dark red wine rich in lactic acid, tannin and iron, and famous Karst prosciuttio.&nbsp;&nbsp;</p>\r\n<p style="text-align: justify;"><img width="125" height="83" alt="&Scaron;tanjel" src="/files/Image/Pictures/iStock_000004412821Small(1).jpg" /><img width="125" height="83" alt="&quot;Pr&scaron;ut&quot;" src="/files/Image/Pictures/w18znamke 1.jpg" /><img width="125" height="83" alt="" src="/files/Image/iStock_000004412864Small.jpg" />&nbsp;&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p>\r\n<p style="text-align: justify;">In Idrija visit Antony&rsquo;s Shaft, one of the largest mercury mines, now a museum, and see exquisite Idrian lace being made by hand. Then enjoy zlikrofi, dumplings filled with potato, while quaffing two wines only grown in Slovenia`s <b>VIPAVA VALLEY</b> &ndash; Pinela and Zelen.</p>\r\n<p style="text-align: justify;"><img width="90" height="134" alt="" src="/files/Image/idrijska cipka1.jpg" />&nbsp; <img width="130" height="87" alt="" src="/files/Image/iStock_000005444248Medium.jpg" /><img width="125" height="109" alt="" src="/files/Image/Idrijski zlikrofi bakalca-002.jpg" />&nbsp;&nbsp;</p>\r\n<p style="text-align: justify;"><b>GORISKA BRDA</b>, an area bordering on Italy with over 50 family-owned wineries, produces some of the most interesting wines in Europe. Food specialties include polenta, made from corn, potato or buckwheat.</p>\r\n<p style="text-align: justify;"><img width="122" height="84" alt="Wine cellar with &quot;pr&scaron;ut&quot;" src="/files/Image/tours/gourmet/vinska-klet-scurek.jpg" /><b>&nbsp;<img width="112" height="84" alt="" src="/files/Image/Brda Gorisko vina1.jpg" />&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</b>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br />\r\n&nbsp;<i>Along the way you will be personally escorted by the leading experts in Slovenia on its cuisines, wines, and culture, including: Dr. Janez Bogataj, a professor of ethnology and cultural anthropology, author of &ldquo;Handicrafts of Slovenia&rdquo; and National Geographic&rsquo;s &ldquo;Taste Slovenia&rdquo; and Mr. Miha Mazzini, a best selling author, will join you for dinner; Dr. Julij Nemanic, a distinguished enologist (author of &ldquo;Wine of Slovenia&rdquo;), will join you in a wine tasting, while a leading enologist Mr. Dusan Brejc will help you understand indigenous wines of Slovenia.</i></p>','<h3><b>DAY 1 - LJUBLJANA AIRPORT (LJ)/ STAJERSKA &ndash; PREKMURJE</b></h3>\r\n<ul>\r\n <li>Afternoon arrival to Ljubljana airport,</li>\r\n <li>Private transfer to Ptuj in the northeast of the country</li>\r\n <li>Accommodation</li>\r\n <li>Dinner in a nearby restaurant</li>\r\n</ul>\r\n<h3><b>DAY 2&nbsp; - PTUJ/PREKMURJE</b></h3>\r\n<h4>MORNING</h4>\r\n<ul>\r\n <li>Breakfast at the hotel</li>\r\n <li>Sightseeing around Ptuj</li>\r\n <li>Visit the Curin Winery</li>\r\n</ul>\r\n<h4>AFTERNOON</h4>\r\n<ul>\r\n <li>Lunch/Tourist farm</li>\r\n <li>Bogojina - A church designed by renowned architect Joze Plecnik</li>\r\n <li>Visit to Radgonske Gorice wine cellar</li>\r\n <li>Dinner in a traditional restaurant</li>\r\n <li>Return to hotel</li>\r\n</ul>\r\n<h3><b>DAY 3 - MARIBOR/LJUBLJANA&nbsp;</b></h3>\r\n<h4>MORNING</h4>\r\n<ul>\r\n <li>Breakfast</li>\r\n <li>Check out of hotel</li>\r\n <li>Sightseeing in Maribor/Lent plus the world&rsquo;s oldest producing vine</li>\r\n <li>Vinag Wine Cellar</li>\r\n</ul>\r\n<h4>AFTERNOON</h4>\r\n<ul>\r\n <li>Lunch</li>\r\n <li>Meranovo Vineyard</li>\r\n <li>Depart to Ljubljana</li>\r\n <li>Check in at hotel</li>\r\n <li>Relax at the hotel or take a walking tour of Ljubljana</li>\r\n <li>Dinner with local specialties</li>\r\n <li>Return to hotel</li>\r\n</ul>\r\n<h3><b>DAY 4&nbsp; -&nbsp; LJUBLJANA</b></h3>\r\n<h4>MORNING</h4>\r\n<ul>\r\n <li>Breakfast</li>\r\n <li>Sightseeing in Ljubljana</li>\r\n <li>Handicraft - the making of Palm Sunday bundle</li>\r\n</ul>\r\n<h4>AFTERNOON</h4>\r\n<ul>\r\n <li>Lunch</li>\r\n <li>Handicrafts - pottery making</li>\r\n <li>Dinner &ndash; slow food experience</li>\r\n <li>Return to hotel</li>\r\n</ul>\r\n<h3>&nbsp;<b>DAY 5 - BELA KRAJINA /DOLENJSKA</b></h3>\r\n<h4>MORNING</h4>\r\n<ul>\r\n <li>Breakfast</li>\r\n <li>Drive to Novo Mesto/sightseeing</li>\r\n <li>Carthusian Monastery</li>\r\n</ul>\r\n<h4>AFTERNOON</h4>\r\n<ul>\r\n <li>Lunch, serving traditional food</li>\r\n <li>Visit Wine Cellar in Metlika, with enologist Dr Julij Nemanic</li>\r\n <li>Wine tasting and dinner in a boutique vineyard</li>\r\n <li>Evening return to the hotel</li>\r\n</ul>\r\n<h3><b>DAY 6 - POSTOJNA CAVES/THE COAST</b></h3>\r\n<h4>MORNING</h4>\r\n<ul>\r\n <li>Breakfast</li>\r\n <li>Check out of hotel</li>\r\n <li>Postojna Caves</li>\r\n <li>Hrastovlje</li>\r\n</ul>\r\n<h4>AFTERNOON</h4>\r\n<ul>\r\n <li>Lunch</li>\r\n <li>Wine cellar Vinakoper</li>\r\n <li>Wine cellar Santomas</li>\r\n <li>Check in hotel</li>\r\n <li>Sightseeing in Piran</li>\r\n <li>Dinner</li>\r\n</ul>\r\n<h3><b>DAY 7 - KARST /VIPAVA VALLEY /GORISKA BRDA</b></h3>\r\n<h4>MORNING</h4>\r\n<ul>\r\n <li>Breakfast</li>\r\n <li>Check-out of hotel</li>\r\n <li>Wine Cellar Lisjak/Karst</li>\r\n <li>Wine Cellar Batic/Vipava Valley</li>\r\n</ul>\r\n<h4>AFTERNOON</h4>\r\n<ul>\r\n <li>Wine Cellar Movia - lunch/Goriska Brda</li>\r\n <li>Wine Cellar Scurek</li>\r\n <li>Check in to Hotel Perla/Casino/Nova Gorica</li>\r\n <li>Dinner at Pikol Restaurant</li>\r\n <li>Return to hotel</li>\r\n</ul>\r\n<h3><b>DAY 8&nbsp; - VIPAVA VALLEY/ IDRIJA</b></h3>\r\n<h4>MORNING</h4>\r\n<ul>\r\n <li>Breakfast</li>\r\n <li>Check-out of hotel</li>\r\n <li>Tilia Winery</li>\r\n</ul>\r\n<h4>AFTERNOON</h4>\r\n<ul>\r\n <li>Lunch/Majerija Tourist Farm</li>\r\n <li>Idrija - Anthony&rsquo;s Shaft/mercury mine museum</li>\r\n <li>Check-in at the Kendov Dvorec Hotel</li>\r\n <li>Dinner Kendov Dvorec/presentation by Mr Dusan Brejc</li>\r\n</ul>\r\n<h3><b>DAY 9 - IDRIJA / LJUBLJANA AIRPORT</b></h3>\r\n<p>Time to relax before or optional activites before leaving for the airport. Check-out of the hotel and depart to Ljubljana Airport. (B)</p>','<p style="text-align: justify;"><i>In a nation small enough to drive from the Alps to the Adriatic Sea in 45 minutes, you will travel in time from traditional dishes and delicacies and wine varietals known only in Slovenia, to nouvelle cuisine and avant garde winemaking &ndash; some just next door to each other. Between degustations and sumptuous meals, you will wander the cobblestone streets of small, picturesque villages, gaze across lush, rolling vineyards, enjoy spectacular vistas of the Julian Alps, and discover the charm of Slovenia&rsquo;s Venetian gem, Piran. Along the way you will learn some of the region&rsquo;s </i><i>history that has formed this charming nation of only two million inhabitants.</i></p>\r\n<h3 style="text-align: justify;"><b><i>THE PACE OF THE TOUR</i></b></h3>\r\n<p style="text-align: justify;">The tour has been carefully prepared for wine and food enthusiasts who might also enjoy the nation&rsquo;s natural, cultural and historical landmarks. All guests are expected to be in good health.</p>\r\n<p style="text-align: justify;">We consider our journeys to be active. Moderate to strenuous exertion, including longer walks and climbing stairs is sometimes an integral part of your journey. Ground transportation is provided in comfortable mini buses at all times.</p>\r\n<h3 style="text-align: justify;"><b><i>PRICE</i></b></h3>\r\n<p style="text-align: justify;"><b>$ 7380 / 4850</b> <b>EUR</b> per person on double bed occupancy.</p>\r\n<p style="text-align: justify;">SINGLE SUPPLEMENT: <b>$ 750 / 500 EUR</b></p>\r\n<p style="text-align: justify;"><b>Included in the Price</b>: Accommodations and meals as indicated in the itinerary (B = breakfast, L = lunch, D = dinner); pre-departure information; entrance fees, and sightseeing noted as included in the itinerary; ground transportation during the tour; transfers to and from group flights where applicable; services of Insider&rsquo;s Slovenia experts, guides, tour manager, and any other staff; taxes, baggage handling and service charges. Please note: The &ldquo;B, L, D&rdquo; notations only apply to the period during the tour and do not include any meals on flights to/from the start/end of the tour.</p>\r\n<p style="text-align: justify;"><b>Not Included</b>: Air transportation and related fees; activities noted as optional in the itinerary; passport and visa expenses; baggage/accident/cancellation insurance; personal expenses, such as laundry, telephone calls, and alcoholic beverages (other than those provided at meals and wine tastings); and any other items not specifically noted as included.&nbsp;</p>\r\n<p style="text-align: justify;"><b>Single/Shared Accommodations</b>: A limited number of single rooms are available at extra cost on a first-come, first-served basis. We will assist persons requesting a roommate. Participants will be notified if a suitable roommate is not available, in which case the single rate will be charged.</p>\r\n<p style="text-align: justify;"><b>NOTE:</b> <b>for most of Slovenian wines exclusive delivery to the USA will be available upon request</b><b>. Please contact </b><b>our exclusive &nbsp;representative Mr. Mark Ryavec &nbsp;at 1-877-4SLOVENIA or e-mail: <a title="blocked::mailto:InsidersSloveniaUSA@ca.rr.com" href="mailto:InsidersSloveniaUSA@ca.rr.com"><span>InsidersSloveniaUSA@ca.rr.com</span></a> or </b><a href="mailto:info@insiders-slovenia.si">info@insiders-slovenia.si</a></p>\r\n<h3 style="text-align: justify;"><b><i>RESERVATION AND PAYMENTS</i></b></h3>\r\n<p style="text-align: justify;">Reservations for the tour must be made in writing and sent to info@insiders-slovenia.si.</p>\r\n<p style="text-align: justify;">To reserve space on an Insider&rsquo;s Slovenia tour, a $800 / 535 EUR per person deposit is required at time of reservation.</p>\r\n<p style="text-align: justify;">Final payment is due no later than 60 days prior to departure. Payments can be:</p>\r\n<ul>\r\n <li style="text-align: justify;">wired to a Insider&rsquo;s Slovenia bank account: ABANKA VIPA d.d. Ljubljana<br />\r\n (acc.no.: SI56 051008011682575); SWIFT CODE : ABANSI2X;</li>\r\n <li style="text-align: justify;">or made by a credit card (AMEX, VISA, EC/MC, DINERS). If payment is made by a credit card, please send to info@insiders-slovenia.si the following credit card details:</li>\r\n</ul>\r\n<p style="text-align: justify;"><i><u>Visa, Mastercard:</u></i> card number, expiration date, security code from reverse of the card, first and last name, address, state, country</p>\r\n<p style="text-align: justify;"><u><i>American Express, Diners</i></u>: card number, expiration date, first and last name, address, state, country</p>\r\n<p style="text-align: justify;">&nbsp;</p>','<p style="text-align: justify;">The hotels are carefully selected for each location, close to the attractions and offer the best available services.</p>\r\n<p style="text-align: justify;"><b>DAY 1 and 2 </b>&ndash; Ptuj, <b>Park Hotel</b>, 4* (Art and Heritage Group hotel)</p>\r\n<p style="text-align: justify;"><b>DAY 3 to 5</b> &ndash; Ljubljana, <b>Antiq Hotel</b>, 4* (Boutique stylish hotel)</p>\r\n<p style="text-align: justify;"><b>DAY 6 </b>&ndash; Piran, <b>Tartini Hotel</b>, 4*</p>\r\n<p style="text-align: justify;"><b>Day 7</b> &ndash; Nova Gorica, <b>Hit Perla Hotel</b>, 4*</p>\r\n<p style="text-align: justify;"><b>DAY 8</b> &ndash; Idrija, Kendov dvorec/ <b>Kenda Manor Hotel</b>, 5* (Relais &amp; Chateaux)</p>','$7380 / 4850 EUR','$ 750 / 500 EUR','Ljubljana airport','Please call for dates','/files/Image/Pictures/Prekmurje iz zraka1.jpg','/files/File/iVinska tura.pdf','Aktivan',30,57,1),(1441,'Logarska Valley-A treasure of natural beauty and traditional cuisine',' 4 Days','Opis aranzmana','Kratak opis aranzmana','<ul>\r\n <li>Glacial valley and nature park, nestled amidst the Alps</li>\r\n <li>Ideal for nature lovers; pristine environment with abundant natural sights</li>\r\n <li>Enjoy the tranquility and authentic experiences of Slovene &quot;tourist farms&quot;</li>\r\n <li>Sample traditional Slovene cuisine of home style, natural recipes</li>\r\n <li>Experience nordic walking in the Robanov kot nature park</li>\r\n</ul>','<p>&nbsp;</p>\r\n<h3 style="text-align: justify;"><b>DAY 1 &ndash; THURSDAY - LJUBLJANA&nbsp;AIRPORT (LJ) / GORENJSKA</b></h3>\r\n<p style="text-align: justify;">&nbsp;</p>\r\n<ul type="disc" style="margin-top: 0cm;">\r\n <li style="text-align: justify;">Afternoon arrival to Ljubljana airport</li>\r\n <li style="text-align: justify;">Private transfer to accomodation at a traditional family-run hotel</li>\r\n <li style="text-align: justify;">Dinner in a traditional inn&nbsp;</li>\r\n</ul>\r\n<p style="text-align: justify;">&nbsp;</p>\r\n<p style="text-align: justify;">&nbsp;</p>\r\n<h3 style="text-align: justify;"><b>DAY 2 &ndash; FRIDAY&nbsp; - LJUBLJANA - LOGARSKA VALLEY</b></h3>\r\n<p style="text-align: justify;">&nbsp;</p>\r\n<h4 style="text-align: justify;">&nbsp;&nbsp;&nbsp;&nbsp;MORNING</h4>\r\n<ul type="disc" style="margin-top: 0cm;">\r\n <li style="text-align: justify;">Traditional breakfast</li>\r\n <li style="text-align: justify;">Guided sight&ndash;seeing of Ljubljana, Slovenia's capital</li>\r\n <li style="text-align: justify;">Lunch at the city's top restaurant</li>\r\n</ul>\r\n<p style="text-align: justify;">&nbsp;</p>\r\n<h4 style="text-align: justify;">&nbsp;&nbsp;&nbsp;AFTERNOON</h4>\r\n<ul type="disc" style="margin-top: 0cm;">\r\n <li style="text-align: justify;">Panoramic drive&nbsp;to Logarska valley</li>\r\n <li style="text-align: justify;">Accommodation</li>\r\n <li style="text-align: justify;">Welcome programme with presentation of handicrafts</li>\r\n <li style="text-align: justify;">Dinner in a traditional tourist farm</li>\r\n</ul>\r\n<p style="text-align: justify;">&nbsp;</p>\r\n<p style="text-align: justify;">&nbsp;</p>\r\n<h3 style="text-align: justify;"><b>DAY 3 &ndash; SATURDAY&nbsp; - LOGARSKA VALLEY</b></h3>\r\n<p style="text-align: justify;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p>\r\n<h4 style="text-align: justify;">&nbsp;&nbsp;&nbsp;&nbsp;MORNING</h4>\r\n<ul type="disc" style="margin-top: 0cm;">\r\n <li style="text-align: justify;">Breakfast</li>\r\n <li style="text-align: justify;">Guided cycling tour (moderate level) along a panoramic road in the Logarska valley</li>\r\n <li style="text-align: justify;">Outdoor lunch during cycling excursion</li>\r\n</ul>\r\n<p style="margin-left: 18pt; text-align: justify;"><i>&nbsp;</i></p>\r\n<h4 style="text-align: justify;">&nbsp;&nbsp;&nbsp;AFTERNOON</h4>\r\n<ul type="disc" style="margin-top: 0cm;">\r\n <li style="text-align: justify;">Nordic walking in the Robanov kot nature park</li>\r\n</ul>\r\n<ul type="disc" style="margin-top: 0cm;">\r\n <li style="text-align: justify;">Dinner at a traditional guest house serving natural/organic food</li>\r\n</ul>\r\n<p style="margin-left: 18pt; text-align: justify;">&nbsp;</p>\r\n<p style="margin-left: 18pt; text-align: justify;"><i>NOTE: in case of bad weather an alternative program will be provided.</i></p>\r\n<p style="text-align: justify;">&nbsp;</p>\r\n<h3 style="text-align: justify;"><b>DAY 4 &ndash; SUNDAY - RADMIRJE - TROJANE - LJUBLJANA AIRPORT</b></h3>\r\n<p style="text-align: justify;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p>\r\n<h4 style="text-align: justify;">&nbsp;&nbsp;&nbsp;MORNING</h4>\r\n<ul type="disc" style="margin-top: 0cm;">\r\n <li style="text-align: justify;">Breakfast</li>\r\n <li style="text-align: justify;">Depart to Radmirje</li>\r\n <li style="text-align: justify;">Visit <span style="color: black;">the Church of St. Francis Xavier in Radmirje</span></li>\r\n <li style="text-align: justify;"><span style="color: black;">Stop in Trojane for a sweet snack of a traditional &raquo;krof&laquo; </span></li>\r\n</ul>\r\n<p style="margin-left: 18pt; text-align: justify;"><i><span style="color: black;">&nbsp;</span></i></p>\r\n<h4 style="text-align: justify;"><span style="color: black;">&nbsp;&nbsp; AFTERNOON</span></h4>\r\n<ul type="disc" style="margin-top: 0cm;">\r\n <li style="text-align: justify;"><span style="color: black;">Transfer to Ljubljana airport</span><b><i><br />\r\n </i></b></li>\r\n</ul>','<p style="text-align: justify;"><i>...Logarska Valley, set in the heart of the Kamnik-Savinja Alps, enshrouded by lofty peaks all rising above 2000 meters. The foundations of this picturesque Alpine valley one can enjoy today were in fact created by the play of nature during the last Ice Age when a huge glacier abraded a 7 km long, 250-m wide &quot;U&quot; shaped basin. Behind the green scenery of the forest one can hear the cascading sounds of the Rinka Waterfall. This magnificent 90-metre high arc water is the highest single and unbroken waterfall in Slovenia which, because of its enormous size and beauty, was proclaimed a natural heritage site in 1987...</i></p>\r\n<h3 style="text-align: justify;"><strong><em>THE PACE OF THE TOUR</em></strong></h3>\r\n<p style="text-align: justify;">All guests are expected to be in good health.</p>\r\n<p style="text-align: justify;">We consider our journeys to be active. Moderate to strenuous exertion, including longer walks and climbing stairs is sometimes an integral part of your journey. Ground transportation is provided in comfortable mini buses at all times.</p>\r\n<h3><b><i>PRICE</i></b>&nbsp;</h3>\r\n<p><i><b>(PER PERSON)</b></i></p>\r\n<p>&nbsp;</p>\r\n<p><b>870 EUR (12-15 persons)</b></p>\r\n<p><b>990 EUR (9-11 persons)</b></p>\r\n<p><b>1050 EUR (6-8 persons)</b></p>\r\n<p><b>Single supplement: 200 EUR</b></p>\r\n<p>Our trips are budgeted for a full or nearly full sign-up. To avoid having to cancel trips with fewer clients, we charge more for smaller groups to cover the fixed costs of the trip. Costs are based on double occupancy.</p>\r\n<p><b>Included in the Price</b>: Accommodations and meals as indicated in the itinerary (B = breakfast, L = lunch, D = dinner); pre-departure information; entrance fees, and sightseeing noted as included in the itinerary; ground transportation during the tour; transfers to and from group flights where applicable; services of Insider&rsquo;s Slovenia experts, guides, tour manager, and any other staff; taxes, baggage handling and service charges. Please note: The &ldquo;B, L, D&rdquo; notations only apply to the period during the tour and do not include any meals on flights to/from the start/end of the tour.</p>\r\n<p style="text-align: justify;"><b>Not Included</b>: Air transportation and related fees; activities noted as optional in the itinerary; passport and visa expenses; baggage/accident/cancellation insurance; personal expenses, such as laundry, telephone calls, and alcoholic beverages (other than those provided at meals and wine tastings); and any other items not specifically noted as included.&nbsp;</p>\r\n<p style="text-align: justify;"><b>Single/Shared Accommodations</b>: A limited number of single rooms are available at extra cost on a first-come, first-served basis. We will assist persons requesting a roommate. Participants will be notified if a suitable roommate is not available, in which case the single rate will be charged.</p>\r\n<h3 style="text-align: justify;"><b><i>RESERVATION AND PAYMENTS</i></b></h3>\r\n<p style="text-align: justify;">Reservations for the tour must be made in writing and sent to info@insiders-slovenia.si.</p>\r\n<p style="text-align: justify;">To reserve space on this tour, a $500 / 335 EUR per person deposit is required at time of reservation.</p>\r\n<p style="text-align: justify;">Final payment is due no later than 30 days prior to departure. Payments can be:</p>\r\n<ul>\r\n <li style="text-align: justify;">wired to a Insider&rsquo;s Slovenia bank account: ABANKA VIPA d.d. Ljubljana<br />\r\n (acc.no.: SI56 051008011682575); SWIFT CODE : ABANSI2X;</li>\r\n <li style="text-align: justify;">or made by a credit card (AMEX, VISA, EC/MC, DINERS). If payment is made by a credit card, please send to info@insiders-slovenia.si the following credit card details:</li>\r\n</ul>\r\n<p style="text-align: justify;">Visa, Mastercard: card number, expiration date, security code from reverse of the card, first and</p>\r\n<p style="text-align: justify;">last name, address, state, country American Express, Diners: card number, expiration date, first and last name, address, state, country</p>','<p style="text-align: justify;">The hotels are carefully selected for each location, close to the attractions and offer the best available services.</p>\r\n<p style="text-align: justify;"><b>DAY 1 - </b>Brnik, Dvor Jezersek mansion, 4* (Traditional family-run hotel)</p>\r\n<p style="text-align: justify;"><b>DAY2 and 3 - </b>Plesnik Hotel, 4* (Alpine style hotel)</p>','870 EUR','200 EUR','Ljubljana airport','Please call for dates','/files/Image/Logarska dolina 1.jpg','/files/File/iLogarska.pdf','Aktivan',30,53,1),(1443,'Soca Valley-Kingdom of crystal clear waters and Soca trout',' 4 Days','Opis aranzmana','Kratak opis aranzmana','<ul>\r\n <li style="text-align: justify;">Lake Bled - the gem of Slovenia</li>\r\n <li style="text-align: justify;">The crystal clear turquoise of the Soca river</li>\r\n <li style="text-align: justify;">Rafting on Soca river and mountain biking in the area</li>\r\n <li style="text-align: justify;">Kobarid museum of WWI</li>\r\n <li style="text-align: justify;">Kluze fortress</li>\r\n <li style="text-align: justify;">Slow food experience in a exquisite restaurant</li>\r\n <li style="text-align: justify;">Ideal starting point for all kinds of excursions</li>\r\n</ul>\r\n<p>&nbsp;</p>','<h3 style="text-align: justify;"><b>DAY 1 - THURSDAY&nbsp; - LJUBLJANA AIRPORT - BRNIK</b></h3>\r\n<ul>\r\n <li style="text-align: justify;">Afternoon arrival to Ljubljana airport</li>\r\n <li style="text-align: justify;">Private transfer to accommodation at a family-run hotel</li>\r\n <li style="text-align: justify;">Dinner in a traditional inn</li>\r\n</ul>\r\n<p style="text-align: justify;">&nbsp;</p>\r\n<h3 style="text-align: justify;"><b>DAY 2 - FRIDAY&nbsp; - BLED - BOVEC</b></h3>\r\n<h4 style="text-align: justify;">MORNING</h4>\r\n<ul>\r\n <li style="text-align: justify;">Traditional breakfast</li>\r\n <li style="text-align: justify;">Depart to Lake Bled</li>\r\n <li style="text-align: justify;">Sightseeing at Bled, including Pletna boat ride</li>\r\n <li style="text-align: justify;">Visit Bled Castle, lunch</li>\r\n</ul>\r\n<h4 style="text-align: justify;">AFTERNOON</h4>\r\n<ul>\r\n <li style="text-align: justify;">Depart to Soca Valley over the Vrsic pass</li>\r\n <li style="text-align: justify;">Arrive to Bovec, accommodation in hotel</li>\r\n <li style="text-align: justify;">Dinner</li>\r\n</ul>\r\n<p style="text-align: justify;">&nbsp;</p>\r\n<h3 style="text-align: justify;"><b>DAY 3 - SATURDAY&nbsp; - BOVEC - KOBARID - BOVEC</b></h3>\r\n<h4 style="text-align: justify;">MORNING</h4>\r\n<ul>\r\n <li style="text-align: justify;">Breakfast of fresh local cheeses</li>\r\n <li style="text-align: justify;">Rafting on the Soca river</li>\r\n <li style="text-align: justify;">Mountain biking or hiking on the paths of the Isonzo Front</li>\r\n <li style="text-align: justify;">Lunch</li>\r\n</ul>\r\n<h4 style="text-align: justify;">AFTERNOON</h4>\r\n<ul>\r\n <li style="text-align: justify;">Visit Kluze Fortress (with presentation of WWI soldiers)</li>\r\n <li style="text-align: justify;">Visit WWI museum in Kobarid</li>\r\n <li style="text-align: justify;">Slow food dinner in renowed restaurant</li>\r\n <li style="text-align: justify;">Return to the hotel in Bovec</li>\r\n</ul>\r\n<p style="text-align: justify;">&nbsp;</p>\r\n<h3 style="text-align: justify;"><b>DAY 4 - SUNDAY - BOVEC - VRSIC PASS - KRANJSKA GORA - LJUBLJANA AIRPORT</b></h3>\r\n<h4 style="text-align: justify;">MORNING</h4>\r\n<ul>\r\n <li style="text-align: justify;">Breakfast</li>\r\n <li style="text-align: justify;">Depart Bovec</li>\r\n <li style="text-align: justify;">Return over the Vrsic pass with a stop in Kranjska Gora</li>\r\n</ul>\r\n<h4 style="text-align: justify;">AFTERNOON</h4>\r\n<ul>\r\n <li style="text-align: justify;">Transfer to Ljubljana airport</li>\r\n</ul>\r\n<p>&nbsp;</p>','<p style="text-align: justify;"><i>...The valley, also known as &quot;The Emerald Beauty&quot; because of the Soca`s beautiful emerald green waters creates the perfect platform for memorable rafting expedition. Continue an active day by mountain biking on a moderate trail enjoying breathtaking views of the river. The Soca Valley also notably formed the backdrop of some of the region`s foremost military activity during World War I. Discover the area`s historical significance at the award-winning Kobarid Museum featuring displays explaining the events during the two and a half years of fighting on the Soska fronta-Isonzo Front, notably notorious 12th Isonzo battle (or Caporetto breakthrough), one of the only major historical battles to have taken place on such hilly terrain...</i></p>\r\n<h3 style="text-align: justify;"><b><i>THE PACE OF THE TOUR</i></b></h3>\r\n<p style="text-align: justify;">All guests are expected to be in good health.</p>\r\n<p style="text-align: justify;">We consider our journeys to be active. Moderate to strenuous exertion, including longer walks and climbing stairs is sometimes an integral part of your journey. Ground transportation is provided in comfortable mini buses at all times.</p>\r\n<h3 style="text-align: justify;"><b><i>PRICE</i></b></h3>\r\n<p><i><b>(PER PERSON)</b></i></p>\r\n<p>&nbsp;</p>\r\n<p><b>870 EUR&nbsp; (12-15 persons)&nbsp;</b></p>\r\n<p><b>960 EUR (9-11 persons) &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </b></p>\r\n<p><b>1080 EUR (6-8 persons)</b></p>\r\n<p><b>Single supplement: 200 EUR</b></p>\r\n<p>Our trips are budgeted for a full or nearly full sign-up. To avoid having to cancel trips with fewer clients, we charge more for smaller groups to cover the fixed costs of the trip. Costs are based on double occupancy.</p>\r\n<p style="text-align: justify;"><b>Included in the Price</b>: Accommodations and meals as indicated in the itinerary (B = breakfast, L = lunch, D = dinner); pre-departure information; entrance fees, and sightseeing noted as included in the itinerary; ground transportation during the tour; transfers to and from group flights where applicable; services of Insider&rsquo;s Slovenia experts, guides, tour manager, and any other staff; taxes, baggage handling and service charges. Please note: The &ldquo;B, L, D&rdquo; notations only apply to the period during the tour and do not include any meals on flights to/from the start/end of the tour.</p>\r\n<p style="text-align: justify;"><b>Not Included</b>: Air transportation and related fees; activities noted as optional in the itinerary; passport and visa expenses; baggage/accident/cancellation insurance; personal expenses, such as laundry, telephone calls, and alcoholic beverages (other than those provided at meals and wine tastings); and any other items not specifically noted as included.&nbsp;</p>\r\n<p style="text-align: justify;"><b>Single/Shared Accommodations</b>: A limited number of single rooms are available at extra cost on a first-come, first-served basis. We will assist persons requesting a roommate. Participants will be notified if a suitable roommate is not available, in which case the single rate will be charged.</p>\r\n<h3 style="text-align: justify;"><b><i>RESERVATION AND PAYMENTS</i></b></h3>\r\n<p style="text-align: justify;">Reservations for the tour must be made in writing and sent to info@insiders-slovenia.si.</p>\r\n<p style="text-align: justify;">To reserve space on this tour, a $500 / 335 EUR per person deposit is required at time of reservation.</p>\r\n<p style="text-align: justify;">Final payment is due no later than 30 days prior to departure. Payments can be:</p>\r\n<ul>\r\n <li style="text-align: justify;">wired to a Insider&rsquo;s Slovenia bank account: ABANKA VIPA d.d. Ljubljana<br />\r\n (acc.no.: SI56 051008011682575); SWIFT CODE : ABANSI2X;</li>\r\n <li style="text-align: justify;">or made by a credit card (AMEX, VISA, EC/MC, DINERS). If payment is made by a credit card, please send to info@insiders-slovenia.si the following credit card details:</li>\r\n</ul>\r\n<p style="text-align: justify;">Visa, Mastercard: card number, expiration date, security code from reverse of the card, first and</p>\r\n<p style="text-align: justify;">last name, address, state, country American Express, Diners: card number, expiration date, first and last name, address, state, country.</p>','<p style="text-align: justify;">The hotels are carefully selected for each location, close to the attractions and offer the best available services.</p>\r\n<p style="text-align: justify;"><b>DAY 1</b> -<b> </b>Brnik, Dvor Jezersek Mansion, 4* (Traditional family-run hotel)</p>\r\n<p style="text-align: justify;"><b>DAY 2 and 3 </b>- Bovec, Dobra Vila hotel, 4* (Family run boutique hotel with cosy atmosphere)</p>','870 EUR','200 EUR','Ljubljana airport','Please call for dates','/files/Image/Pictures/DSC_0048 1.jpg','/files/File/iDolinaSoce.pdf','Aktivan',30,53,3),(1442,'Idrija and Postojna-Encounters of past and present',' 4 Days','Opis aranzmana','Kratak opis aranzmana','<ul>\r\n <li>Visit the living museum at Idrija`s 500 year-old mercury mine</li>\r\n <li>Discover the unique underworld of Postojna caves</li>\r\n <li>Admire the traditional craftmanship of Idrija`s lacemaking</li>\r\n <li>Tour a unique &quot;Laufar&quot; mask museum</li>\r\n <li>Enjoy the peace and tranquility of a 5* hotel</li>\r\n <li>Sample the local specialities</li>\r\n</ul>','<p>&nbsp;</p>\r\n<h3 style="text-align: justify;"><b>DAY 1 - THURSDAY&nbsp; - LJUBLJANA AIRPORT - BRNIK</b></h3>\r\n<h4 style="text-align: justify;">MORNING</h4>\r\n<ul>\r\n <li style="text-align: justify;">Afternoon arrival to Ljubljana airport</li>\r\n <li style="text-align: justify;">Private transfer to accommodation at a family run hotel</li>\r\n <li style="text-align: justify;">Dinner in a traditional inn</li>\r\n</ul>\r\n<p style="text-align: justify;">&nbsp;</p>\r\n<h3 style="text-align: justify;"><b>DAY 2 - FRIDAY&nbsp; - LJUBLJANA - IDRIJA</b></h3>\r\n<h4 style="text-align: justify;">MORNING</h4>\r\n<ul>\r\n <li style="text-align: justify;">Traditional breakfast</li>\r\n <li style="text-align: justify;">Guided sight-seeing of Ljubljana, Slovenia`s capital</li>\r\n <li style="text-align: justify;">Lunch at the citiy`s top restaurant</li>\r\n</ul>\r\n<h4 style="text-align: justify;">AFTERNOON</h4>\r\n<ul>\r\n <li>Visit Postojna caves</li>\r\n <li style="text-align: justify;">Accommodation in hotel</li>\r\n <li style="text-align: justify;">Presentation of Idrija lacemaking</li>\r\n <li style="text-align: justify;">Dinner in the hotel</li>\r\n</ul>\r\n<p style="text-align: justify;">&nbsp;</p>\r\n<h3 style="text-align: justify;"><b>DAY3 - SATURDAY&nbsp; - IDRIJA - CERKNO</b></h3>\r\n<h4 style="text-align: justify;">MORNING</h4>\r\n<ul>\r\n <li style="text-align: justify;">Breakfast</li>\r\n <li style="text-align: justify;">Sightseeing in Idrija</li>\r\n <li style="text-align: justify;">Cerkno-Laufar traditional mask museum</li>\r\n <li style="text-align: justify;">Traditional meal in Cerkno</li>\r\n</ul>\r\n<h4 style="text-align: justify;">AFTERNOON</h4>\r\n<ul>\r\n <li style="text-align: justify;">Visit historic Idrija mercury mine, including museum and descent of mine shaft</li>\r\n <li style="text-align: justify;">Dinner in a traditional restaurant</li>\r\n</ul>\r\n<p style="text-align: justify;">&nbsp;</p>\r\n<h3 style="text-align: justify;"><b>DAY 4 - SUNDAY&nbsp; - POSTOJNA - LJUBLJANA AIRPORT</b></h3>\r\n<h4 style="text-align: justify;">MORNING</h4>\r\n<ul>\r\n <li style="text-align: justify;">Breakfast</li>\r\n <li style="text-align: justify;">Relaxation and outdoor brunch in Kenda Manor garden</li>\r\n</ul>\r\n<h4 style="text-align: justify;">AFTERNOON</h4>\r\n<ul>\r\n <li style="text-align: justify;">Transfer to Ljubljana airport<b><i>&nbsp;<br />\r\n </i></b></li>\r\n</ul>','<p style="text-align: justify;"><i>...Today, Idrija`s famous mercury mine, which was once the second largest mercury mine in the world, has now closed after 500 years, and a living history museum remains on the site. Head to Antony`s Shaft to see the oldest part of the mercury mine; the miners` chapel dating back to the 18th century; and view a video about the way the miners once lived. Idrija is also famed for its centuries-old lacemaking tradition; this craft has been practiced here for 300 years and can be witnessed as part of the tour...</i></p>\r\n<h3><b><i>THE PACE OF THE TOUR</i></b></h3>\r\n<p style="text-align: justify;">All guests are expected to be in good health.</p>\r\n<p style="text-align: justify;">We consider our journeys to be active. Moderate to strenuous exertion, including longer walks and climbing stairs is sometimes an integral part of your journey. Ground transportation is provided in comfortable mini buses at all times.</p>\r\n<h3 style="text-align: justify;"><b><i>PRICE</i></b></h3>\r\n<p><i><b>(PER PERSON)</b></i></p>\r\n<p>&nbsp;</p>\r\n<p><b>995 EUR&nbsp; (12-15 persons)&nbsp; </b></p>\r\n<p><b>1170 EUR (9-11 persons) &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</b></p>\r\n<p><b>1260 EUR (6-8 persons)</b></p>\r\n<p><b>Single supplement: 250 EUR</b></p>\r\n<p>Our trips are budgeted for a full or nearly full sign-up. To avoid having to cancel trips with fewer clients, we charge more for smaller groups to cover the fixed costs of the trip. Costs are based on double occupancy.</p>\r\n<p><b>Included in the Price</b>: Accommodations and meals as indicated in the itinerary (B = breakfast, L = lunch, D = dinner); pre-departure information; entrance fees, and sightseeing noted as included in the itinerary; ground transportation during the tour; transfers to and from group flights where applicable; services of Insider&rsquo;s Slovenia experts, guides, tour manager, and any other staff; taxes, baggage handling and service charges. Please note: The &ldquo;B, L, D&rdquo; notations only apply to the period during the tour and do not include any meals on flights to/from the start/end of the tour.</p>\r\n<p style="text-align: justify;"><b>Not Included</b>: Air transportation and related fees; activities noted as optional in the itinerary; passport and visa expenses; baggage/accident/cancellation insurance; personal expenses, such as laundry, telephone calls, and alcoholic beverages (other than those provided at meals and wine tastings); and any other items not specifically noted as included.&nbsp;</p>\r\n<p style="text-align: justify;"><b>Single/Shared Accommodations</b>: A limited number of single rooms are available at extra cost on a first-come, first-served basis. We will assist persons requesting a roommate. Participants will be notified if a suitable roommate is not available, in which case the single rate will be charged.</p>\r\n<h3 style="text-align: justify;"><b><i>RESERVATION AND PAYMENTS</i></b></h3>\r\n<p style="text-align: justify;">Reservations for the tour must be made in writing and sent to info@insiders-slovenia.si.</p>\r\n<p style="text-align: justify;">To reserve space on this tour, a $500 / 335 EUR per person deposit is required at time of reservation.</p>\r\n<p style="text-align: justify;">Final payment is due no later than 30 days prior to departure. Payments can be:</p>\r\n<ul>\r\n <li style="text-align: justify;">wired to a Insider&rsquo;s Slovenia bank account: ABANKA VIPA d.d. Ljubljana<br />\r\n (acc.no.: SI56 051008011682575); SWIFT CODE : ABANSI2X;</li>\r\n <li style="text-align: justify;">or made by a credit card (AMEX, VISA, EC/MC, DINERS). If payment is made by a credit card, please send to info@insiders-slovenia.si the following credit card details:</li>\r\n</ul>\r\n<p style="text-align: justify;">Visa, Mastercard: card number, expiration date, security code from reverse of the card, first and</p>\r\n<p style="text-align: justify;">last name, address, state, country American Express, Diners: card number, expiration date, first and last name, address, state, country.</p>','<p style="text-align: justify;">The hotels are carefully selected for each location, close to the attractions and offer the best available services.</p>\r\n<p style="text-align: justify;"><b>DAY 1 </b>- Brnik, Jezersek mansion, 4* (Traditional family-run hotel)</p>\r\n<p style="text-align: justify;"><b>DAY 2 and 3 </b>- Idrija, Kendov Dvorec / Kenda Manor Hotel, 5* (Relais &amp; Chateaux)</p>','995 EUR','250 EUR','Ljubljana airport','Please call for dates','/files/Image/Pictures/idrijska cipka1.jpg','/files/File/iPostojna.pdf','Aktivan',30,53,2),(1444,'Ljubljana-The vibrant capital with exquisite gastronomy',' 3 Days','Opis aranzmana','Kratak opis aranzmana','<ul>\r\n <li style="text-align: justify;">Sightseeing of the city - landmarks of Ljubljana including the architectural masterpieces of Joze Plecnik</li>\r\n <li style="text-align: justify;">Funicular ride to Ljubljana Castle</li>\r\n <li style="text-align: justify;">Ascend Mt Smarna gora above the city and enjoy its panoramic views</li>\r\n <li style="text-align: justify;">Sample local cuisine in a gourmet restaurant</li>\r\n</ul>','<h3 style="text-align: justify;"><b>DAY 1 - FRIDAY - LJUBLJANA AIRPORT - LJUBLJANA</b></h3>\r\n<ul>\r\n <li style="text-align: justify;">Arrival to Ljubljana airport, private transfer to Ljubljana</li>\r\n <li style="text-align: justify;">Accommodation in hotel, in the city centre</li>\r\n <li style="text-align: justify;">Dinner in a gourmet restaurant</li>\r\n</ul>\r\n<h3 style="text-align: justify;"><b>DAY 2 SATURDAY - LJUBLJANA</b></h3>\r\n<h4 style="text-align: justify;">MORNING</h4>\r\n<ul>\r\n <li style="text-align: justify;">Breakfast</li>\r\n <li style="text-align: justify;">Sightseeing in Ljubljana: Castle, Plecnik`s architecture and other landmarks</li>\r\n <li style="text-align: justify;">Visit Plecnik`s church in Crna vas, just outside Ljubljana</li>\r\n</ul>\r\n<h4 style="text-align: justify;">AFTERNOON</h4>\r\n<ul>\r\n <li style="text-align: justify;">Ascend Smarna gora and enjoy a mountain lunch in a restaurant; or if preferable or weather doesn`t permit</li>\r\n <li style="text-align: justify;">Visit the Tehnical Museum&nbsp;at Bistra</li>\r\n <li style="text-align: justify;">Return to the city</li>\r\n <li style="text-align: justify;">Dinner in a local restaurant just outside Ljubljana</li>\r\n</ul>\r\n<p style="text-align: justify;">&nbsp;</p>\r\n<h3 style="text-align: justify;"><b>DAY 4 - SUNDAY - LJUBLJANA - LJUBLJANA AIRPORT</b></h3>\r\n<h4 style="text-align: justify;"><b>MORNING</b></h4>\r\n<ul>\r\n <li style="text-align: justify;">Breakfast</li>\r\n <li style="text-align: justify;">Check out of hotel</li>\r\n <li style="text-align: justify;">Free time: Visit a flea market along the banks of Ljubljanica river, enjoy coffee in one of the many coffee shops or visit numerous museums and galleries including: City museum of Ljubljana, Ethnographic museum, National museum, National gallery, Modern gallery</li>\r\n</ul>\r\n<h4 style="text-align: justify;">AFTERNOON</h4>\r\n<ul>\r\n <li style="text-align: justify;">Transfer to Ljubljana airport<b><i><br />\r\n </i></b></li>\r\n</ul>','<p style="text-align: justify;"><i>...Ljubljana, Slovenia`s capital, is a dynamic central European city lying in a broad basin between the Alps and the Adriatic Sea. Ljubljana`s geographical position has governed its colorful past, since it situated on a natural passage, the &quot;Ljubljana Gate&quot;, leading from central Europe towards the Mediterannean and the East. Ride the funicular up to Ljubljana Castle, to enjoy its sweeping views over the city. There are many other sights to explore in the city, foremost are the stunning buildings designed by the internationally famed Joze Plecnik, himself a native of Ljubljana...</i></p>\r\n<h3><b><i>THE PACE OF THE TOUR</i></b></h3>\r\n<p style="text-align: justify;">All guests are expected to be in good health.</p>\r\n<p style="text-align: justify;">We consider our journeys to be active. Moderate to strenuous exertion, including longer walks and climbing stairs is sometimes an integral part of your journey. Ground transportation is provided in comfortable mini buses at all times.</p>\r\n<h3 style="text-align: justify;"><b><i>PRICE</i></b></h3>\r\n<p><i><b>(PER PERSON)</b></i></p>\r\n<p><i><br />\r\n</i><b>690 EUR&nbsp; (12-15 persons)&nbsp;</b><b> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <i>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </i></b></p>\r\n<p><b>750 EUR (9-11 persons) &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</b></p>\r\n<p><b>870 EUR (6-8 persons)</b></p>\r\n<p><b>Single supplement: 150 EUR</b></p>\r\n<p style="text-align: justify;">Our trips are budgeted for a full or nearly full sign-up. To avoid having to cancel trips with fewer clients, we charge more for smaller groups to cover the fixed costs of the trip. Costs are based on double occupancy.</p>\r\n<p style="text-align: justify;"><b>Included in the Price</b>: Accommodations and meals as indicated in the itinerary (B = breakfast, L = lunch, D = dinner); pre-departure information; entrance fees, and sightseeing noted as included in the itinerary; ground transportation during the tour; transfers to and from group flights where applicable; services of Insider&rsquo;s Slovenia experts, guides, tour manager, and any other staff; taxes, baggage handling and service charges. Please note: The &ldquo;B, L, D&rdquo; notations only apply to the period during the tour and do not include any meals on flights to/from the start/end of the tour.</p>\r\n<p style="text-align: justify;"><b>Not Included</b>: Air transportation and related fees; activities noted as optional in the itinerary; passport and visa expenses; baggage/accident/cancellation insurance; personal expenses, such as laundry, telephone calls, and alcoholic beverages (other than those provided at meals and wine tastings); and any other items not specifically noted as included.&nbsp;</p>\r\n<p style="text-align: justify;"><b>Single/Shared Accommodations</b>: A limited number of single rooms are available at extra cost on a first-come, first-served basis. We will assist persons requesting a roommate. Participants will be notified if a suitable roommate is not available, in which case the single rate will be charged.</p>\r\n<h3 style="text-align: justify;"><b><i>RESERVATION AND PAYMENTS</i></b></h3>\r\n<p style="text-align: justify;">Reservations for the tour must be made in writing and sent to info@insiders-slovenia.si.</p>\r\n<p style="text-align: justify;">To reserve space on an Insider&rsquo;s Slovenia tour, a $500 / 335 EUR per person deposit is required at time of reservation.</p>\r\n<p style="text-align: justify;">Final payment is due no later than 30 days prior to departure. Payments can be:</p>\r\n<ul>\r\n <li style="text-align: justify;">wired to a Insider&rsquo;s Slovenia bank account: ABANKA VIPA d.d. Ljubljana<br />\r\n (acc.no.: SI56 051008011682575); SWIFT CODE : ABANSI2X;</li>\r\n <li style="text-align: justify;">or made by a credit card (AMEX, VISA, EC/MC, DINERS). If payment is made by a credit card, please send to info@insiders-slovenia.si the following credit card details:</li>\r\n</ul>\r\n<p style="text-align: justify;">Visa, Mastercard: card number, expiration date, security code from reverse of the card, first and</p>\r\n<p style="text-align: justify;">last name, address, state, country American Express, Diners: card number, expiration date, first and last name, address, state, country.</p>','<p style="text-align: justify;">The hotels is carefully selected for the location, close to the attractions and offers the best available services.</p>\r\n<p style="text-align: justify;"><b>DAY 1 - 3</b> - Ljubljana, Antiq Hotel, 4* (boutique stylish hotel)</p>','690 EUR','150 EUR','Ljubljana airport','Please call for dates','/files/Image/Pictures/Ljubljana1.jpg','/files/File/iLjubljana.pdf','Aktivan',30,53,4),(1445,'Bled and Goriska Brda-At the crossroads of the Alps and the Mediterranean',' 4 Days','Opis aranzmana','Kratak opis aranzmana','<ul>\r\n <li style="text-align: justify;">Visit magnificent Lake Bled and St. Mary`s Church on its island</li>\r\n <li style="text-align: justify;">Venture into the Julian Alps to the exquisite Soca Valley on a traditional steam train. Enjoy the stunning sights of the crystal clear turquoise Soca river</li>\r\n <li style="text-align: justify;">Experience the extraordinary natural beauty of Goriska Brda`s vinegrowing landscape</li>\r\n <li style="text-align: justify;">Sample wines from Slovenia`s most distinguished wineries and pamaper yourself with first class cuisine</li>\r\n</ul>','<h3 style="text-align: justify;"><b>DAY 1 - THURSDAY - LJUBLJANA AIRPORT - BLED </b></h3>\r\n<ul>\r\n <li style="text-align: justify;">Afternoon arrival to Ljubljana airport</li>\r\n <li style="text-align: justify;">Private transfer to Lake Bled</li>\r\n <li style="text-align: justify;">Accommodation in the stylish hotel</li>\r\n <li style="text-align: justify;">Dinner of local specialties</li>\r\n</ul>\r\n<p style="text-align: justify;">&nbsp;</p>\r\n<h3 style="text-align: justify;"><b>DAY 2 - FRIDAY - BLED</b></h3>\r\n<h4 style="text-align: justify;"><b>MORNING</b></h4>\r\n<ul>\r\n <li style="text-align: justify;">Traditional breakfast</li>\r\n <li style="text-align: justify;">Depart to Lake Bled</li>\r\n <li style="text-align: justify;">Sightseeing at Lake Bled, including Pletna boat ride</li>\r\n <li style="text-align: justify;">Visit Bled Castle, lunch</li>\r\n</ul>\r\n<h4 style="text-align: justify;">AFTERNOON</h4>\r\n<ul>\r\n <li style="text-align: justify;">Horse-drawn carriage ride around the island</li>\r\n <li style="text-align: justify;">Tasting Bled`s most famous &quot;<i>Kremsnita</i>&quot; cake</li>\r\n <li style="text-align: justify;">Afternoon exploring Bled on your own</li>\r\n <li style="text-align: justify;">Dinner in a traditional inn, tasting <i>struklji</i> and <i>zganci</i></li>\r\n</ul>\r\n<p style="text-align: justify;">&nbsp;</p>\r\n<h3 style="text-align: justify;"><b>DAY 3 - SATURDAY - SOCA VALLEY - GORISKA BRDA</b></h3>\r\n<h4 style="text-align: justify;">MORNING</h4>\r\n<ul>\r\n <li style="text-align: justify;">Breakfast</li>\r\n <li style="text-align: justify;">Steam train ride from Bled to Soca Valley</li>\r\n <li style="text-align: justify;">Sampling finest wines at several wineries in Gori&scaron;ka Brda and tasting local food</li>\r\n</ul>\r\n<h4 style="text-align: justify;">AFTERNOON</h4>\r\n<ul>\r\n <li style="text-align: justify;">Accommodation in a boutique hotel</li>\r\n <li style="text-align: justify;">Presentation and wine sampling</li>\r\n <li style="text-align: justify;">Slow food dinner at most celebrated wine producer</li>\r\n</ul>\r\n<p style="text-align: justify;">&nbsp;</p>\r\n<h3 style="text-align: justify;"><b>DAY 4 - SUNDAY - GORISKA BRDA - LJUBLJANA AIRPORT</b></h3>\r\n<h4 style="text-align: justify;">MORNING</h4>\r\n<ul>\r\n <li style="text-align: justify;">Breakfast</li>\r\n <li style="text-align: justify;">Morning relaxation</li>\r\n <li style="text-align: justify;">Transfer to Ljubljana airport<b><i><br />\r\n </i></b></li>\r\n</ul>','<p style="text-align: justify;"><i>...Enjoy a boat ride on an original historic gondola-like Pletna to Slovenia`s only island and ring the wishing bell in St. Mary`s church. Enjoy a ride on a horse-drawn carriage around the lake and stop to taste Bled`s elicious traditional Kremsnita cream cake. </i></p>\r\n<p style="text-align: justify;"><i>Move on to Goriska Brda, the grape-growing region of western Slovenia, whose roling landscape and hilltop villages are home to more than 50 wine producers. On a clear day you can see the Adriatic Sea on the horizon: it is this influence of the sea combined with favourable Mediterranean climate that nourishes the region`s fertile soil...</i></p>\r\n<h3><b><i>THE PACE OF THE TOUR</i></b></h3>\r\n<p>All guests are expected to be in good health.</p>\r\n<p>We consider our journeys to be active. Moderate to strenuous exertion, including longer walks and climbing stairs is sometimes an integral part of your journey. Ground transportation is provided in comfortable mini buses at all times.</p>\r\n<h3 style="text-align: justify;"><b><i>PRICE</i></b></h3>\r\n<p><i><b>(PER PERSON)</b></i></p>\r\n<p>&nbsp;</p>\r\n<p><b>885 EUR&nbsp; (12-15 persons)</b></p>\r\n<p><b>990 EUR (9-11 persons) &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </b></p>\r\n<p><b>1185 EUR (6-8 persons)</b></p>\r\n<p><b>Single supplement: 250 EUR</b>&nbsp;</p>\r\n<p>Our trips are budgeted for a full or nearly full sign-up. To avoid having to cancel trips with fewer clients, we charge more for smaller groups to cover the fixed costs of the trip. Costs are based on double occupancy.</p>\r\n<p style="text-align: justify;"><b>Included in the Price</b>: Accommodations and meals as indicated in the itinerary (B = breakfast, L = lunch, D = dinner); pre-departure information; entrance fees, and sightseeing noted as included in the itinerary; ground transportation during the tour; transfers to and from group flights where applicable; services of Insider&rsquo;s Slovenia experts, guides, tour manager, and any other staff; taxes, baggage handling and service charges. Please note: The &ldquo;B, L, D&rdquo; notations only apply to the period during the tour and do not include any meals on flights to/from the start/end of the tour.</p>\r\n<p style="text-align: justify;"><b>Not Included</b>: Air transportation and related fees; activities noted as optional in the itinerary; passport and visa expenses; baggage/accident/cancellation insurance; personal expenses, such as laundry, telephone calls, and alcoholic beverages (other than those provided at meals and wine tastings); and any other items not specifically noted as included.&nbsp;</p>\r\n<p style="text-align: justify;"><b>Single/Shared Accommodations</b>: A limited number of single rooms are available at extra cost on a first-come, first-served basis. We will assist persons requesting a roommate. Participants will be notified if a suitable roommate is not available, in which case the single rate will be charged.</p>\r\n<h3 style="text-align: justify;"><b><i>RESERVATION AND PAYMENTS</i></b></h3>\r\n<p style="text-align: justify;">Reservations for the tour must be made in writing and sent to info@insiders-slovenia.si.</p>\r\n<p style="text-align: justify;">To reserve space on an Insider&rsquo;s Slovenia tour, a $500 / 335 EUR per person deposit is required at time of reservation.</p>\r\n<p style="text-align: justify;">Final payment is due no later than 30 days prior to departure. Payments can be:</p>\r\n<ul>\r\n <li style="text-align: justify;">wired to a Insider&rsquo;s Slovenia bank account: ABANKA VIPA d.d. Ljubljana<br />\r\n (acc.no.: SI56 051008011682575); SWIFT CODE : ABANSI2X;</li>\r\n <li style="text-align: justify;">or made by a credit card (AMEX, VISA, EC/MC, DINERS). If payment is made by a credit card, please send to info@insiders-slovenia.si the following credit card details:</li>\r\n</ul>\r\n<p style="text-align: justify;">Visa, Mastercard: card number, expiration date, security code from reverse of the card, first and</p>\r\n<p style="text-align: justify;">last name, address, state, country American Express, Diners: card number, expiration date, first and last name, address, state, country</p>','<p style="text-align: justify;">The hotels are carefully selected for each location, close to the attractions and offer the best available services.</p>\r\n<p style="text-align: justify;"><b>DAY 1 and 2</b> - Bled, GH Toplice, 4*</p>\r\n<p style="text-align: justify;"><b>DAY 3</b> - Goriska Brda, Venko Hotel, 4*</p>','885 EUR','250 EUR','Ljubljana airport','Please call for dates','/files/Image/Pictures/Bled02 1.jpg','/files/File/iBledBrda.pdf','Aktivan',30,53,5),(1446,'Slovenia Multi Activity Holiday (with daily trip to VENICE)',' 10 Days','Opis aranzmana','Kratak opis aranzmana','<p>&nbsp;</p>\r\n<p><b>&nbsp;&nbsp;&nbsp;&nbsp; MULTI ACTIVITIES</b></p>\r\n<ul>\r\n <li>Cycling adventure in Logarska Valley</li>\r\n <li>Bike ride through the amazing Mezica mine</li>\r\n <li>Introductory course in sport climbing</li>\r\n <li>Half-a-day canoe trip dowm the Sava Bohinjka River</li>\r\n <li>Advanced canyoning (waterfall sluicing in full safety gear in the Soca Valley)</li>\r\n <li>Whitewater rafting on the Soca river</li>\r\n <li>Discovering mysterious Postojna caves and magnificent Predjama castle</li>\r\n <li>Gourmet experience of local dishes</li>\r\n <li>Tasting finest wines in Goriska Brda</li>\r\n <li>Day visit to Venice</li>\r\n</ul>\r\n<p>&nbsp; <img width="150" height="100" src="/files/Image/tours/Active_tour/0025M.jpg" alt="" />&nbsp; <img width="150" height="100" src="/files/Image/tours/Active_tour/0007M.jpg" alt="" /> <img width="144" height="94" src="/files/Image/tours/Active_tour/RAFTINGM.jpg" alt="" style="width: 150px; height: 101px;" />&nbsp;&nbsp;</p>\r\n<p>&nbsp;&nbsp;<img width="152" height="108" src="/files/Image/tours/Active_tour/plezanje1M.jpg" alt="" style="width: 152px; height: 117px;" />&nbsp; <img width="148" height="107" src="/files/Image/tours/Active_tour/GLOBM.jpg" alt="" style="width: 148px; height: 117px;" />&nbsp;<img width="125" height="115" src="/files/Image/tours/Active_tour/IMG_0022M.jpg" alt="" style="width: 148px; height: 117px;" />&nbsp;</p>\r\n<p>&nbsp; <img width="151" height="115" src="/files/Image/tours/Active_tour/IMG_0067M.jpg" alt="" />&nbsp;&nbsp;<img width="150" height="100" src="/files/Image/tours/Active_tour/0020.1M.jpg" alt="" style="width: 147px; height: 114px;" />&nbsp;&nbsp;<img width="156" height="101" src="/files/Image/tours/Active_tour/KAJAKM.jpg" alt="" style="width: 146px; height: 115px;" /></p>\r\n<p>&nbsp;</p>\r\n<p style="text-align: justify;">At <b>POSTOJNA</b> ride a miniature train through an underground wonderland in one of the most extensive cave systems in the world.&nbsp;&nbsp;</p>\r\n<p style="text-align: justify;"><img width="150" height="102" src="http://www.insiders-slovenia.si/files/Image/Pictures/Predjamski_grad_150578.jpg" alt="Predjama castle" style="width: 159px; height: 104px;" />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <img width="70" height="109" src="http://www.insiders-slovenia.si/files/Image/Brilijant%201.jpg" alt="" style="width: 72px; height: 105px;" /></p>\r\n<p>The attraction of <b>LOGARSKA VALLEY </b>lies in its abundant natural sights coupled with an almost pristine environment. This picturesque Alpine valley offers an exceptional cycling tour on a panoramic road with amazing views of the surrounding Alps.</p>\r\n<p><img width="156" height="104" src="/files/Image/tours/gourmet/Logarska04.jpg" alt="" />&nbsp;&nbsp; <img width="292" height="106" src="/files/Image/Food/Logarska dolina izsek.jpg" alt="Kamnisko Savinjske Alps" /></p>\r\n<p><b>LAKE BLED</b>, one of the most beautiful Alpine resorts, offers an ideal base for an active holiday. Enjoy a treasure hunt by horse drawn carriage, boat and foot. Visit the only island in Slovenia and taste the traditional <i>Krem&scaron;nita cake.</i></p>\r\n<p><i><img width="150" height="100" src="/files/Image/iStock_000004210194Medium.jpg" alt="Bled island" /> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp; &nbsp;<img width="130" height="101" src="/files/Image/Bled cream cake.jpg" alt="Bled cream cake" /></i></p>\r\n<p><b>BOHINJ</b>, a natural beauty nestled in high mountains, green forests, with several cultural and historical monuments<i>...</i>Bohinj Lake is the country`s largest lake, the clear water is attractive for swimmers or rowers and excellent for canoes and kayaks.</p>\r\n<p><i><img width="98" height="143" src="/files/Image/Bohinj in Triglav.jpg" alt="Bohinj and Triglav in the background. Photo: www.slovenia.info" /></i><i>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <img width="169" height="113" src="/files/Image/Bohinj kanu.jpg" alt="Bohinj canoeing. Photo: www.slovenia.info" /> &nbsp; &nbsp; &nbsp; </i><i><img width="143" height="112" src="/files/Image/Bohinj Avgust 2007-018 1.jpg" alt="Bohinj" /></i><i> &nbsp; </i></p>\r\n<p>The<b> SOCA VALLEY</b> is deeply carved into the white limestone of Julian Alps. Named after the &quot;Emerald beauty&quot; Soca river. The river is a wonderland for water activities (canyoning, whitewater rafting...). As you follow the valley northwards you pass through <b>KOBARID, </b>with an excellent museum reflecting the region`s significance as one of the primary &quot;fronts&quot; during WWI (described by Ernest Hemingway in <i>A farewell to Arms.)</i></p>\r\n<p><i><img width="144" height="163" src="/files/Image/tours/gourmet/Kobarid 1.jpg" alt="Kobarid museum" style="width: 105px; height: 145px;" />&nbsp;&nbsp;</i><i>&nbsp;&nbsp;&nbsp;<img width="152" height="152" src="/files/Image/Food/Soca nore barve.jpg" alt="Soca river" style="width: 154px; height: 145px;" />&nbsp;&nbsp;&nbsp; <img width="174" height="145" src="/files/Image/Food/Raft.jpg" alt="Rafting on Soca river" /></i></p>\r\n<p><i>&nbsp; </i><b>GORISKA BRDA:</b> <i>The Slovene Tuscany&nbsp;&nbsp;&nbsp;</i>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>&nbsp;&nbsp;&nbsp;&nbsp; LIPICA,</b> the cradle of&nbsp; the &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; famous Lipizzaner stallions</p>\r\n<p><img width="235" height="123" src="/files/Image/tours/gourmet/iStock_000005444248Medium.jpg" alt="Goriska Brda" />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <img width="160" height="124" src="/files/Image/Lipicanci1.jpg" alt="Lipizzaner horses" /></p>\r\n<p>&nbsp;</p>\r\n<p>Sightseeing of <b>VENICE</b> featuring all the important monuments from St. Mark&rsquo;s Square to the Rialto Bridge. Visit St. Mark's Square and learn the history that lies behind the walls of its most famous landmarks, the St Mark&rsquo;s Basilica and its Byzantine heritage, the Doge's Palace and its adjoining prisons, that retain the true secrets to comprehend how a city built on swamps became one of the most enlightened cities in the western world.</p>\r\n<p>\r\n<meta http-equiv="Content-Type" content="text/html; charset=utf-8">\r\n<meta name="ProgId" content="Word.Document">\r\n<meta name="Generator" content="Microsoft Word 11">\r\n<meta name="Originator" content="Microsoft Word 11"> </meta>\r\n</meta>\r\n</meta>\r\n</meta>\r\n</p>\r\n<p>Visit the charming capital <b>LJUBLJANA</b>, with its picturesque city centre, which combines the heritage of the medieval period with Baroque and Art Nouveau masterpieces, ancient Roman monuments and the legacy of the architect Joze Plecnik. The surrounding areas boast a range of natural sights and rich cultural heritage.</p>\r\n<p><img width="150" height="100" src="/files/Image/tours/gourmet/iStock_000005487865Medium.jpg" alt="Triple bridge" />&nbsp;&nbsp; <img width="150" height="100" src="/files/Image/tours/gourmet/Ljubljana06.jpg" alt="Franciscan Church (Presernov trg square)" />&nbsp;&nbsp; <img width="148" height="100" src="/files/Image/Postcards/Ljubljana1.jpg" alt="" /></p>','<h3><b>DAY 1 LJUBLJANA AIRPORT (LJ) / LOGARSKA VALLEY</b></h3>\r\n<ul>\r\n <li>Afternoon arrival at Ljubljana airport</li>\r\n <li>Transfer to Logarska Valley, one of most picturesque valleys in Europe</li>\r\n <li>Accommodation at 4* alpine-style Plesnik Hotel in Logarska valley</li>\r\n <li>Welcome dinner and entertainment program</li>\r\n</ul>\r\n<p>&nbsp;</p>\r\n<h3><b>DAY 2 LOGARSKA VALLEY / KOROSKA / LOGARSKA&nbsp;&nbsp;&nbsp;&nbsp; VALLEY</b></h3>\r\n<h4>MORNING</h4>\r\n<ul>\r\n <li>Breakfast</li>\r\n <li>Cycling tour on the panoramic road above Logarska Valley with breathtaking views of the valley and the surrounding Alps</li>\r\n <li>Transfer to Mezica/Koroska</li>\r\n</ul>\r\n<h4>AFTERNOON</h4>\r\n<ul>\r\n <li>Lunch prepared by a caterer in a nearby village</li>\r\n <li>A bike ride through an&nbsp; amazing tourist mine to explore the underground world</li>\r\n <li>Transfer to Luce via Mozirje</li>\r\n <li>Dinner at Raduha, tasting exquisite local specialties</li>\r\n <li>Return to Logarska Valley, overnight at Plesnik Hotel</li>\r\n</ul>\r\n<p>&nbsp;</p>\r\n<h3><b>DAY 3 LOGARSKA VALLEY / LAKE BLED</b></h3>\r\n<h4>MORNING</h4>\r\n<ul>\r\n <li>Breakfast</li>\r\n <li>Check-out of hotel</li>\r\n <li>Panoramic bus drive over Pavlic Pass to Austria and return to Slovenia over Jezersko Pass to reach Lake Bled.</li>\r\n</ul>\r\n<h4>AFTERNOON</h4>\r\n<ul>\r\n <li>Lunch at the castle overlooking Bled Lake</li>\r\n <li>A treasure hunt to explore Bled and its surrounds, by horse drawn carriage, boat and foot</li>\r\n <li>Accommodation in the GH Toplice Hotel</li>\r\n <li>Dinner at Lectar Inn, serving typical Slovene food</li>\r\n</ul>\r\n<p>&nbsp;</p>\r\n<h3><b>DAY 4 BLED LAKE / BOHINJ / BLED LAKE</b></h3>\r\n<h4>MORNING</h4>\r\n<ul>\r\n <li>Breakfast</li>\r\n <li>Check-out hotel</li>\r\n <li>Drive to Bohinj Lake</li>\r\n <li>Accommodation at the 4* Kristal Hotel in Bohinj</li>\r\n <li>Introductory course in sport climbing</li>\r\n</ul>\r\n<h4>AFTERNOON</h4>\r\n<ul>\r\n <li>Half-day trip with canoes down the Sava Bohinjka River &ndash; with a barbeque on the banks of the river</li>\r\n <li>Bus transfer to hotel</li>\r\n <li>Dinner at the hotel<br />\r\n &nbsp;</li>\r\n</ul>\r\n<h3><b>DAY 5 BLED LAKE / TRENTA VALLEY / SOCA GORGE / BOVEC</b></h3>\r\n<h4>MORNING</h4>\r\n<ul>\r\n <li>Breakfast</li>\r\n <li>Check-out of hotel</li>\r\n <li>Full day of sightseeing by bus over the Vrsic Pass (built by Russian prisoners during WWI),&nbsp; stop and take a 20 minute hike to the&nbsp; source of the emerald green Soca River, then descend by van into the Trenta Valley and visit the Soca Gorge</li>\r\n</ul>\r\n<h4>AFTERNOON</h4>\r\n<ul>\r\n <li>Lunch at a tourist farm, tasting freshly-caught Soca trout</li>\r\n <li>Arrival at Bovec, accommodation in the 4* Dobra Vila Hotel</li>\r\n <li>Free afternoon for relaxation</li>\r\n <li>Dinner at the hotel</li>\r\n</ul>\r\n<p>&nbsp;</p>\r\n<h3><b>DAY 6 BOVEC / SOCA VALLEY / KOBARID</b><b><span lang="EN-US"> </span></b><b><u><span lang="EN-US"><o:p></o:p></span></u></b></h3>\r\n<h4><span lang="EN-US">MORNING</span><i><span lang="EN-US"> </span></i><i><u><span lang="EN-US"><o:p></o:p></span></u></i></h4>\r\n<ul type="disc" style="margin-top: 0cm;">\r\n <li class="MsoNormal"><span lang="EN-US">Breakfast</span></li>\r\n <li class="MsoNormal"><span lang="EN-US">Check-out of hotel</span></li>\r\n <li class="MsoNormal"><span lang="EN-US">Advanced canyoning (waterfall sluicing in full safety gear) in the Soca Valley</span></li>\r\n</ul>\r\n<h4>AFTERNOON<i><u><span lang="EN-US"><o:p></o:p></span></u></i></h4>\r\n<ul type="disc" style="margin-top: 0cm;">\r\n <li class="MsoNormal"><span lang="EN-US">Lunch </span></li>\r\n <li class="MsoNormal"><span lang="EN-US">Whitewater rafting on the Soca River</span></li>\r\n <li class="MsoNormal"><span lang="EN-US">Transfer to Kobarid</span></li>\r\n <li class="MsoNormal"><span lang="EN-US">Accommodation at 4* Franko&rsquo;s House</span></li>\r\n <li class="MsoNormal"><span lang="EN-US">Dinner at Franko&rsquo;s House &ndash; a tasting menu/fusion of the sea and Alps</span></li>\r\n</ul>\r\n<p>&nbsp;</p>\r\n<h3><b>DAY 7 KOBARID / GORISKA BRDA</b></h3>\r\n<h4>MORNING</h4>\r\n<ul>\r\n <li>Breakfast with home-made pastries and traditional specialties</li>\r\n <li>Check-out</li>\r\n <li>Visit WW I museum in Kobarid</li>\r\n <li>View the gorge of Tolminka River</li>\r\n <li>Bus drive to Goriska Brda &ndash; the Slovene &ldquo;Tuscany&rdquo;, the land of vineyards, cherries, peaches and chestnuts</li>\r\n</ul>\r\n<h4>AFTERNOON</h4>\r\n<ul>\r\n <li>Lunch, taste local culinary treats</li>\r\n <li>Free afternoon</li>\r\n <li>Accommodation at Kabaj&rsquo;s Mansion</li>\r\n <li>Wine tasting at Movia and Kabaj wineries</li>\r\n <li>Dinner at Kabaj&rsquo;s</li>\r\n</ul>\r\n<p>&nbsp;</p>\r\n<h3><b>DAY 8&nbsp; GORISKA BRDA / KARST / PIRAN</b></h3>\r\n<h4>MORNING</h4>\r\n<ul>\r\n <li>Breakfast</li>\r\n <li>Check-out</li>\r\n <li>Bus ride to Kras/Karst, visit Lipica stud farm</li>\r\n <li>Drive to Hrastovlje, view world&rsquo;s oldest preserved &ldquo;Death Dance&rdquo; frescoes</li>\r\n <li>Arrive at Piran</li>\r\n <li>Accommodation at 4* Tartini Hotel, Piran</li>\r\n</ul>\r\n<h4>AFTERNOON</h4>\r\n<ul>\r\n <li>Boat ride along the Slovenian coast</li>\r\n <li>Sightseeing to the Secovlje salt pans</li>\r\n <li>Return to the hotel</li>\r\n <li>Dinner at Casa del Sal</li>\r\n</ul>\r\n<p>&nbsp;</p>\r\n<h3><b>DAY 9 PIRAN / VENICE / LJUBLJANA</b></h3>\r\n<h4>MORNING</h4>\r\n<ul>\r\n <li>Cruise to Venice by catamaran for a full day guided tour</li>\r\n</ul>\r\n<h4>AFTERNOON</h4>\r\n<ul>\r\n <li>Evening bus transfer to Ljubljana</li>\r\n</ul>\r\n<ul>\r\n <li>Accommodation at the boutique 4* Antiq Hotel or another 4* hotel in the city.</li>\r\n <li>Dinner at Manna Restaurant</li>\r\n</ul>\r\n<p>&nbsp;</p>\r\n<h3><b>DAY 10 LJUBLJANA / LJUBLJANA AIRPORT</b></h3>\r\n<h4>MORNING</h4>\r\n<ul>\r\n <li>Breakfast</li>\r\n <li>Free time to explore Ljubljana</li>\r\n <li>Early afternoon bus transfer to Ljubljana airport</li>\r\n <li>Depart for home</li>\r\n</ul>\r\n<p><br />\r\n<br />\r\n&nbsp;</p>','<p style="text-align: justify;" class="MsoNormal"><i><span lang="EN-US">Travel through the beautiful Slovenian countryside while enjoying an unforgettable, active vacation. Start with a cycling adventure, touring Logarska Valley, one of the prettiest Alpine settings in all of Europe, explore the astonishing underground caverns on another bike ride through the amazing Mezica mine, and then hunt for treasure while admiring Lake Bled and its surrounds. Travel into the past with your visit to the World War I museum in Kobarid, winner of a Council of Europe Prize for best museum, and then experience the magical beauty of the emerald Soca River,&nbsp; canyoning and rafting along the way. Visit the scenic wine region of Goriska Brda - the Slovene &ldquo;Tuscany&rdquo; -<span> </span>and take a sailing excursion along the Slovenian coast. End the tour with a special catamaran cruise to Venice.</span></i></p>\r\n<p style="text-align: justify;" class="MsoNormal"><i><span lang="EN-US">Along the way sample Slovenian wine and cuisine, from traditional dishes prepared by local chefs and served outdoors, to sophisticated meals in distinguished restaurants, and each night luxuriate in an elegant hotel.</span></i><span lang="EN-US"> <o:p></o:p></span></p>\r\n<h3><b><i><span lang="EN-US">THE PACE OF THE TOUR</span></i></b><span lang="EN-US"><o:p></o:p></span></h3>\r\n<p style="text-align: justify;">We consider our journeys to be active. Moderate to strenuous exertion, including longer walks and climbing stairs, is sometimes an integral part of your journey. Ground transportation is provided in comfortable mini buses at all times.</p>\r\n<h3><b><i>PRICE</i></b></h3>\r\n<p><i><b>(PER PERSON)</b></i></p>\r\n<p>&nbsp;</p>\r\n<p><b>2880 EUR (11-15 persons)</b></p>\r\n<p style="text-align: justify;"><b>3150 EUR (7-10 persons)<br />\r\n<br />\r\n3285 EUR (4-6 persons)</b><br />\r\n<br />\r\n<b>Single supplement: 500 EUR</b><br />\r\n<br />\r\nOur trips are budgeted for a full or nearly full sign-up. To avoid having to cancel trips with fewer clients, we charge more for smaller groups to cover the fixed costs of the trip. Costs are based on double occupancy.<br />\r\n<br />\r\n<b>Included in the Price</b>: Accommodations and meals as indicated in the itinerary (B = breakfast, L = lunch, D = dinner); pre-departure information; entrance fees (except Venice) and sightseeing noted as included in the itinerary; ground transportation during the tour; transfers to and from group flights where applicable; professional, english-speaking guides throughout the tour; licensed guides for sport activities (cycling, rafting, kanyoning); local english-speaking guide in Venice; all sports gear (bikes, rafts, wet suits, etc&hellip;); taxes, baggage handling and service charges. Please note: The &ldquo;B, L, D&rdquo; notations only apply to the period during the tour and do not include any meals on flights to/from the start/end of the tour.<br />\r\n<br />\r\n<b>Not Included</b>: Air transportation and related fees; activities noted as optional in the itinerary; passport and visa expenses; baggage/accident/cancellation insurance; personal expenses, such as laundry, telephone calls, and alcoholic beverages (other than those provided at meals and wine tastings); and any other items not specifically noted as included. <br />\r\n<br />\r\n<b>Single/Shared Accommodations</b>: A limited number of single rooms are available at extra cost on a first-come, first-served basis. We will assist persons requesting a roommate. Participants will be notified if a suitable roommate is not available, in which case the single rate will be charged.<br />\r\n<br />\r\n<b>NOTE</b>: for most of Slovenian wines exclusive delivery to the USA will be available upon request. Please contact our exclusive&nbsp; representative Mr. Mark Ryavec&nbsp; at 1-877-4SLOVENIA or e-mail: InsidersSloveniaUSA@ca.rr.com or info@insiders-slovenia.si.</p>\r\n<h3><i><b>RESERVATIONS AND PAYMENTS</b></i></h3>\r\n<p><br />\r\nReservations for the tour must be made in writing and sent to info@insiders-slovenia.si.<br />\r\n<br />\r\nTo reserve space on an Active Slovenia tour, a $800 / 535 EUR per person deposit is required at time of reservation.<br />\r\n<br />\r\nFinal payment is due no later than 60 days prior to departure. Payments can be:</p>\r\n<ul>\r\n <li>wired to a Insider&rsquo;s Slovenia bank account: ABANKA VIPA d.d. Ljubljana (acc.no.: SI56 051008011682575); SWIFT CODE : ABANSI2X;</li>\r\n <li>or made by a credit card (AMEX, VISA, EC/MC, DINERS). If payment is made by a credit card, please send to info@insiders-slovenia.si the following credit card details:</li>\r\n</ul>\r\n<p style="text-align: justify;">Visa, Mastercard: card number, expiration date, security code from reverse of the card, first and last name, address, state, country</p>\r\n<p style="text-align: justify;">American Express, Diners: card number, expiration date, first and last name, address, state, country</p>','<p>The hotels are carefully selected for each location, close to the attractions and offer the best available services.</p>\r\n<p><b>DAY 1 and 2 </b>- Plesnik hotel, 4*</p>\r\n<p><b>DAY 3 </b>- Bled, GH Toplice, 5*</p>\r\n<p><b>DAY 4</b> - Bohinj, Kristal hotel, 4*</p>\r\n<p><b>DAY 5</b> - Bovec, Dobra Vila hotel, 4*&nbsp;</p>\r\n<p><b>DAY 6</b> - Kobarid, Franko`s House (Comparable to 4* hotel)</p>\r\n<p><b>DAY 7</b> - Goriska Brda, Kabaj`s Mansion (Comparable to 4* hotel)</p>\r\n<p><b>DAY 8</b> - Piran, Tartini hotel, 4*</p>\r\n<p><b>DAY 9</b> - Ljubljana, Antiq hotel, 4*</p>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>','2880 EUR','500 EUR','Ljubljana airport','Please call for dates','/files/Image/tours/gourmet/DSC_0048 1.jpg','/files/File/iAktivna tura.pdf','Aktivan',30,57,2),(1447,'Rogla resort - An Alpine wonderland for all sesons',' 4 Days','Opis aranzmana','Kratak opis aranzmana','<table cellspacing="0" cellpadding="0" border="0" align="center">\r\n <tbody>\r\n <tr>\r\n <td valign="bottom">&nbsp;</td>\r\n <td valign="bottom">&nbsp;</td>\r\n <td valign="bottom">&nbsp;</td>\r\n <td valign="bottom">&nbsp;</td>\r\n </tr>\r\n <tr>\r\n <td valign="bottom">\r\n <p align="center"><img width="170" height="113" class="thumb" alt="Zlati Gric" src="/files/Image/Food/SKALCE 101.jpg" />&nbsp;</p>\r\n </td>\r\n <td valign="bottom">\r\n <p><b>Zlati Gric</b></p>\r\n <p style="text-align: justify;">In the idyllic surroundings of vineyards lies a golf course, which is a naturally suitable stirred up&nbsp;and etirely rounded up with vineyards.&nbsp;Venture the colf course, demonstrated&nbsp;by golf instructors. Try yourself</p>\r\n <p style="text-align: justify;">&nbsp;</p>\r\n </td>\r\n <td valign="bottom">\r\n <p align="center">&nbsp;</p>\r\n </td>\r\n <td valign="bottom">\r\n <p align="center">&nbsp;</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td valign="bottom">&nbsp;</td>\r\n <td valign="bottom">&nbsp;</td>\r\n <td valign="bottom">&nbsp;</td>\r\n <td valign="bottom">&nbsp;</td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <h6><img width="170" height="107" alt="Lovrenska Lakes" src="/files/Image/Food/9. Lovrenska lakes1.jpg" class="thumb" /></h6>\r\n </td>\r\n <td>\r\n <p><b>Orientation hiking and nordic walking</b></p>\r\n <p style="text-align: justify;">A hike through the forests and partly across pastures takes you to beautiful Lovrenska jezera (Lovrenska lakes), a wetland with 19 lakes that are considered a natural phenomenon.&nbsp;</p>\r\n <p style="text-align: justify;">&nbsp;</p>\r\n </td>\r\n <td>\r\n <h6 align="center">&nbsp;</h6>\r\n </td>\r\n <td>\r\n <h6 align="center">&nbsp;</h6>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n </tr>\r\n <tr>\r\n <td valign="bottom">\r\n <p><img width="170" height="113" alt="Alpine coaster" src="/files/Image/Food/5. Alpine coaster Zlodejevo_1.jpg" class="thumb" /></p>\r\n </td>\r\n <td valign="bottom">\r\n <p><b>Adrenalin ride on a roller coaster</b></p>\r\n <p style="text-align: justify;">Experience the adventure, rushing down the course on the elevated track, through several loops and curves: slowly or daringly fast for an adrenalin rush. Just like on a roller coaster, but with refreshing scenery. Your pulse will highten, but you can leave the fear behind as the breaks always work excellently.</p>\r\n </td>\r\n <td valign="bottom">\r\n <p align="center">&nbsp;</p>\r\n </td>\r\n <td valign="bottom">\r\n <p align="center">&nbsp;</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td valign="bottom">&nbsp;</td>\r\n <td valign="bottom">&nbsp;</td>\r\n <td valign="bottom">&nbsp;</td>\r\n <td valign="bottom">&nbsp;</td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <h6>&nbsp;<img width="170" height="113" src="/files/Image/Food/KARTUZIJA 31.jpg" class="thumb" alt="The Zice Carthusian monastery" /></h6>\r\n </td>\r\n <td>\r\n <p><b>Zicka katruzija / The Zice Carthusian&nbsp; monastery <br />\r\n </b></p>\r\n <p style="text-align: justify;">The Zice Carthusian monastery is monumentally secured complex and the oldest among this kind of monasteries in Slovenia. Visit the ramains and taste&nbsp; some of the top wines in the wine cellar of the monastery.</p>\r\n </td>\r\n <td>\r\n <h6 align="center"><br />\r\n &nbsp;</h6>\r\n </td>\r\n <td>\r\n <h6 align="center">&nbsp;</h6>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n <td>&nbsp;</td>\r\n </tr>\r\n <tr>\r\n <td valign="bottom">&nbsp;&nbsp;<img width="170" height="128" src="/files/Image/Food/Balonanje1.jpg" alt="Hot air ballooning; Photo: www.slovenia.info" class="thumb" /></td>\r\n <td valign="bottom">\r\n <p style="text-align: justify;"><b>Hot air ballooning <br />\r\n </b>Enjoy spectacular views of the amazing surroundings of the Rogla resort. Whether above looking down onto the beautiful countryside or brushing along the treetops, this is an experience you will never forget.&nbsp;</p>\r\n <p style="text-align: justify;">&nbsp;</p>\r\n </td>\r\n <td valign="bottom">\r\n <p align="center">&nbsp;</p>\r\n </td>\r\n <td valign="bottom">\r\n <p align="center">&nbsp;</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td valign="bottom">&nbsp;</td>\r\n <td valign="bottom">&nbsp;</td>\r\n <td valign="bottom">&nbsp;</td>\r\n </tr>\r\n <tr>\r\n <td valign="bottom">\r\n <p><img width="170" height="136" alt="Cycling through Rogla forests" src="/files/Image/Food/Mountainbike1.jpg" class="thumb" /></p>\r\n </td>\r\n <td valign="bottom">\r\n <p><b>Guided biking tour through the forests</b></p>\r\n <p style="text-align: justify;">Experience a biking trip through the picturesque landscapes of Rogla resort. Ride in the shadows of branchy trees and relax in the tranquility of nature surrounding you.</p>\r\n <p>&nbsp;</p>\r\n </td>\r\n <td valign="bottom">&nbsp;</td>\r\n <td valign="bottom">&nbsp;</td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <h6 align="center">&nbsp;&nbsp; <img width="150" height="158" alt="Pohorje Hot Pot" src="/files/Image/Food/Pohorski pisker-0021.jpg" class="thumb" />&nbsp;</h6>\r\n </td>\r\n <td>\r\n <p><b>Taste the local specialties</b> ...</p>\r\n <p style="text-align: justify;">Including Pohorje Hot Pot (<i>Pohorski lonec</i>) hard-boiled buckwheat porridge with homemade bacon or vension goulash with bread and nut dumplings with cranberries for desert.</p>\r\n </td>\r\n <td>\r\n <h6 align="center">&nbsp;</h6>\r\n </td>\r\n <td>\r\n <h6 align="center">&nbsp;</h6>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n<p>&nbsp;</p>','<h3><b>DAY 1 - THURSDAY / LJUBLJANA AIRPORT - ROGLA RESORT</b></h3>\r\n<ul>\r\n <li>Afternoon arrival to Ljubljana airport</li>\r\n <li>Private transfer to Rogla resort</li>\r\n <li>Accommodation in hotel Planja, 4*</li>\r\n <li>Welcome drink and dinner in a hotel &quot;Hut&quot;</li>\r\n</ul>\r\n<p>&nbsp;</p>\r\n<h3><b>DAY 2 - FRIDAY / ROGLA RESORT - ZLATI GRIC - ROGLA RESORT</b></h3>\r\n<p><b>MORNING</b></p>\r\n<ul>\r\n <li>Opendoor breakfast</li>\r\n <li>Drive to &quot;Zlati Gric&quot; vineyards, sightseeing of the area and golf course among the vineyards</li>\r\n <li>Demonstration of golf playing - tryout at a driving range</li>\r\n</ul>\r\n<p><b>AFTERNOON</b></p>\r\n<ul>\r\n <li>Lunch - tasting the local cuisine</li>\r\n <li>Visit to one of the oldest remains of the Carthusian monastery in the world - <i>Zicka Kartuzija</i></li>\r\n <li>Wine tasting in a wine cellar of the monastery</li>\r\n <li>Free afternoon</li>\r\n <li>Adrenalin ride on an Alpine coaster</li>\r\n <li>Dinner outdoors - barbeque</li>\r\n</ul>\r\n<p>&nbsp;</p>\r\n<h3><b>DAY 3 - SATURDAY / ROGLA RESORT</b></h3>\r\n<p><b>MORNING</b></p>\r\n<ul>\r\n <li>Hot air balooning</li>\r\n <li>Outdoor breakfast served at the landing point of the baloon</li>\r\n <li>Guided cycling tour through the forests of Rogla</li>\r\n</ul>\r\n<p><b>AFTERNOON</b></p>\r\n<ul>\r\n <li>Lunch served outdoor - local speciality &quot;Pohorski lonec&quot;</li>\r\n <li>Orientation hiking and nordic walking course</li>\r\n <li>Time to relax before dinner</li>\r\n <li>Optional adrenalin ride with Alpine coaster</li>\r\n <li>Dinner at a tourist farm</li>\r\n</ul>\r\n<p>&nbsp;</p>\r\n<h3><b>DAY 4 - SUNDAY / ROGLA RESORT - LJUBLJANA AIRPORT</b><b><br />\r\n</b></h3>\r\n<p><b>MORNING</b></p>\r\n<ul>\r\n <li>Breakfast</li>\r\n <li>Morning relaxation</li>\r\n <li>Transfer to Ljubljana airport</li>\r\n</ul>','<p style="text-align: justify;"><i>At&nbsp;the heart of the wonderful nature a rich and diverse&nbsp;experience awaits for&nbsp;you. An experience of activity, repose, relaxation,&nbsp;recreation and pleasant holidays. Due to the pleasant&nbsp;and agreeable climate, and the wholesome alpine air, Rogla`s&nbsp;reputation and official title of climatological health resort is fully justified.&nbsp; It offers exeptional possibilities of sports and various physical and relaxational activities. You will test your physical capabilities by hiking, nordic walking, cycling and golfing and feel the adrenalin rush on hot air ballooning and on an exciting ride on an Alpine coaster. During the activities you will enjoy&nbsp;culinary specialties of Slovenian traditional&nbsp;cuisine</i>.</p>\r\n<h3><b><i>THE PACE OF THE TOUR</i></b></h3>\r\n<p>All guests are expected to be in good health. Our tours are moderate to moderate difficult.</p>\r\n<p>&nbsp;</p>\r\n<p>In cooperation with&nbsp; <a href="http://www.rogla.si/cgi-bin/cms.cgi?doc=12870&amp;sid=ScoCplItXjxcmpih"><img width="150" height="49" alt="" src="/files/Image/Food/unitur h&amp;r.jpg" /></a>.</p>\r\n<h3>&nbsp;</h3>\r\n<h3><b><i>PRICE <br />\r\n</i></b></h3>\r\n<p><i><b>(PER PERSON)</b></i></p>\r\n<p>&nbsp;</p>\r\n<p><b>750&nbsp;EUR&nbsp; (11-15 persons)</b></p>\r\n<p><b>810&nbsp;EUR (8-10 persons)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</b></p>\r\n<p><b>840&nbsp;EUR (5-7 persons)</b></p>\r\n<p><b>885 EUR (min. 4 persons)</b></p>\r\n<p><b>Single supplement:&nbsp;200 EUR</b></p>\r\n<p>Our trips are budgeted for a full or nearly full sign-up. To avoid having to cancel trips with fewer clients, we charge more for smaller groups to cover the fixed costs of the trip. Costs are based on double occupancy.</p>\r\n<p><b>Included in the Price</b>: Accommodations and meals as indicated in the itinerary (B = breakfast, L = lunch, D = dinner); pre-departure information; entrance fees and sightseeing noted as included in the itinerary; ground transportation during the tour; transfers to and from group flights where applicable; professional, english-speaking guides throughout the tour; licensed guides for sport activities (golf, hot air balooning, cycling, hiking and nordic walking); all sports gear; taxes, baggage handling and service charges. Please note: The &ldquo;B, L, D&rdquo; notations only apply to the period during the tour and do not include any meals on flights to/from the start/end of the tour.</p>\r\n<p><b>Not Included</b>: Air transportation and related fees; activities noted as optional in the itinerary; passport and visa expenses; baggage/accident/cancellation insurance; personal expenses, such as laundry, telephone calls, and alcoholic beverages (other than those provided at meals and wine tastings); and any other items not specifically noted as included.</p>\r\n<p><b>Single/Shared Accommodations</b>: A limited number of single rooms are available at extra cost on a first-come, first-served basis. We will assist persons requesting a roommate. Participants will be notified if a suitable roommate is not available, in which case the single rate will be charged.</p>\r\n<h3><br />\r\n<b><i>RESERVATION AND PAYMENTS</i></b></h3>\r\n<p>Reservations for the tour must be made in writing and sent to <a href="mailto:info@insiders-slovenia.si">info@insiders-slovenia.si</a>.</p>\r\n<p>To reserve space on an Insider&rsquo;s Slovenia tour, a $500 / 335 EUR per person deposit is required at time of reservation.</p>\r\n<p>Final payment is due no later than 30 days prior to departure. Payments can be:</p>\r\n<ul>\r\n <li>&nbsp;wired to a Insider&rsquo;s Slovenia bank account: ABANKA VIPA d.d. Ljubljana</li>\r\n</ul>\r\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; (acc.no.: SI56 051008011682575); SWIFT CODE : ABANSI2X;</p>\r\n<ul>\r\n <li>&nbsp;or made by a credit card (AMEX, VISA, EC/MC, DINERS). If payment is made by a credit card, please send to <a href="mailto:info@insiders-slovenia.si">info@insiders-slovenia.si</a> the following credit card details:</li>\r\n</ul>\r\n<p><b>Visa, Mastercard</b>: card number, expiration date, security code from reverse of the card, first and last name, address, state, country</p>\r\n<p><b>American Express, Diners</b>: card number, expiration date, first and last name, address, state, country</p>','<p>The hotels are carefully selected for each location, close to the attractions and offer the best available services.</p>\r\n<p><b>DAY 1 - 4</b> - Rogla resort, Hotel Planja, 4*</p>\r\n<p>&nbsp;</p>\r\n<h2>Hotel Planja ****</h2>\r\n<p style="text-align: justify;">All rooms are equipped with a telephone, satellite TV, mini bar and bathroom (WC, shower). The hotel restaurant offers a varied out-of-board choice, with a fireplace room and aperitif bar in the spacious hotel hall. There are also a large multipurpose hall, a newspaper and souvenir shop, medical centre with a pulmonary clinic, a wellness centre with swimmingpool, whirlpool, sauna centre and sports hall.</p>\r\n<p style="text-align: justify;"><img width="186" height="110" src="/files/Image/Food/0. Hotel Planja and Rogla1.jpg" alt="Hotel Planja" />&nbsp;&nbsp; <img width="188" height="110" src="/files/Image/Food/1. Hotel Planja - room1.jpg" alt="Hotel Planja - room" /></p>','750 EUR','200 EUR','Ljubljana airport','Please call for dates ','/files/Image/Food/2. Rogla in summer1.jpg','/files/File/iPohorje insiders.pdf','Aktivan',30,53,6),(1448,'Short break at luxury Pule estate',' 0','Opis aranzmana','Kratak opis aranzmana','<ul>\r\n <li><b>Horseback riding</b></li>\r\n</ul>\r\n<p>The Pule Estate has an almost spiritual peacefulness&hellip; .Enjoy hacking on beautiful Lipizzaners through unspoilt farmland. Riding highlights include a hack to a nearby medieval castle and another to a local historical town. T</p>\r\n<ul>\r\n <li><b>Exclusive dinner at Pule estate</b></li>\r\n</ul>\r\n<p>Taste the traditional Dolenjska cuisine spiced with the latest culinary trends. A yourney into the Kingdom of Tastes will delight and enraprute you each time anew. The superb wine cellar keeps a rich selection of the highest quality wines, typical Dolenjska sorts and also renowed wines from siginificant wine-growing regions.</p>\r\n<ul>\r\n <li><b>Golf playing at Otocec</b></li>\r\n</ul>\r\n<p>The golf course Otocec is one of the longest courses in Slovenia. It is distinguished with the extraordinary beautiful, viewable and dynamic position. It is bulit according to the most demanding standards, the quality basis enable its good maintenance.</p>\r\n<ul>\r\n <li><b>Novo Mesto sightseeing</b></li>\r\n</ul>\r\n<p>Visit Novo Mesto, the capital of Dolenjska, with its remarkable history<br />\r\nand archeological finds, such as the renowned Situla from 4th-3rd century BC. The old city center is located on the rocky meander of the river Krka and thrills with the great Main Square (Glavni trg) with arcade corridors in ground floors of bourgeois houses.</p>\r\n<ul>\r\n <li><b>Enjoy a boat ride on Krka river</b></li>\r\n</ul>\r\n<p>&nbsp;</p>\r\n<ul>\r\n <li><b>Wine tasting and dinner at Zidanica Kos </b></li>\r\n</ul>\r\n<p>Enjoy a taste of the region&rsquo;s unique Cvi?ek wine and then dine in Kos Vineyards, a boutique vineyard.</p>\r\n<ul>\r\n <li><b>Ljubljana sightseeing</b></li>\r\n</ul>\r\n<p style="text-align: justify;">In Ljubljana, the old meets the new, a picturesque blend of Medieval, Baroque and Art Nouveau masterpieces. Set in this &ldquo;Little Vienna&rdquo; are the unique contributions of architect Jo?e Ple?nik, whose striking structures combine elements of classic Greek and Roman architecture. stroll the banks of the river along his columned Marketplace, and to Ple?nik&rsquo;s University library and St. Nicholas Cathedral.</p>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>','<p>&nbsp;</p>\r\n<h3><b>DAY 1 &ndash; THURSDAY</b> <b>/ LJUBLJANA AIRPORT - BRNIK</b></h3>\r\n<ul>\r\n <li>Afternoon arrival to Ljubljana airport</li>\r\n <li>Transfer to Dvor Jezer&scaron;ek</li>\r\n <li>Accommodation</li>\r\n <li>Dinner&nbsp;</li>\r\n</ul>\r\n<h3><b>DAY 2 &ndash; FRIDAY / BRNIK - PULE ESTATE<br />\r\n</b></h3>\r\n<p><b>MORNING</b><b><br />\r\n</b></p>\r\n<ul>\r\n <li>Relax in the morning</li>\r\n <li>Morning drive to Pule estate</li>\r\n <li>Accommodation and welcome reception</li>\r\n</ul>\r\n<p><b>AFTERNOON</b></p>\r\n<ul>\r\n <li>Lunch</li>\r\n <li>Time to relax/horse back riding/cycling/walking</li>\r\n <li>Exclusive dinner at Pule estate</li>\r\n</ul>\r\n<h3><b>DAY 3 - SATURDAY / PULE ESTATE<br />\r\n</b></h3>\r\n<p><b>MORNING</b></p>\r\n<ul>\r\n <li>Morning relaxation/horse back ring</li>\r\n <li>Golf playing at Otocec</li>\r\n</ul>\r\n<p><b>AFTERNOON</b></p>\r\n<ul>\r\n <li>Lunch at the golf club</li>\r\n <li>Sight seeing Novo Mesto</li>\r\n <li>Boat ride on Krka river</li>\r\n <li>Wine tasting and dinner Kos Zidanica</li>\r\n</ul>\r\n<h3><b>&nbsp;DAY 4 - SUNDAY / PULE ESTATE - LJUBLJANA - LJUBLJANA AIRPORT</b></h3>\r\n<p><b>MORNING</b></p>\r\n<ul>\r\n <li>Morning relaxation</li>\r\n <li>Drive to Ljubljana</li>\r\n <li>Coffee break in the city</li>\r\n</ul>\r\n<p><b>AFTERNOON</b></p>\r\n<ul>\r\n <li>Depart to the airport</li>\r\n</ul>','<p style="text-align: justify;"><i>The Pule Estate is an excellent display of the preserved Slovenian ethnographic heritage. The renovation of the Estate in the 17th century was carried out in accordance with the preserved archival, photographic and word-of-mouth sources and was modelled to the architectural heritage of the region. The skills of traditional craft trades such as hay-thatching, carpentry, joinery, ironworking, roofing, stone-cutting, stove-making and others were used to renovate various parts of the Estate.<br />\r\n<br />\r\nThe elite countryside luxury apartment complex is located only one hour away from Ljubljana. The perfect choice for those desiring only the best. The superior offer of services, untouched nature and priceless peace and quiet ensure a pleasant feeling and a relaxed atmosphere.<br />\r\nThe symbiosis of the modern and the natural allows for an extraordinary experience. Each of the five houses is uniquely equipped and in a natural ambient spirit. A rest between the natural materials and fragrant wood will instil new energy. The crackling of fragrant beech wood in the open fireplace adds to the pleasant feeling.<br />\r\n</i></p>\r\n<p style="text-align: justify;"><br />\r\n<i>The exceptionally rich natural features provide a diverse offer of sports and recreational activities as well as experiences in direct contact with nature. </i></p>\r\n<p style="text-align: justify;">&nbsp;</p>\r\n<h3><b><i>PRICE</i></b></h3>\r\n<p style="text-align: justify;"><b>(PER PERSON)</b><br />\r\n<br />\r\n&nbsp;<br />\r\n<br />\r\n750 EUR&nbsp; (11-15 persons)<br />\r\n<br />\r\n810 EUR (8-10 persons)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br />\r\n<br />\r\n840 EUR (5-7 persons)<br />\r\n<br />\r\n885 EUR (min. 4 persons)<br />\r\n<br />\r\nSingle supplement: 200 EUR<br />\r\n<br />\r\nOur trips are budgeted for a full or nearly full sign-up. To avoid having to cancel trips with fewer clients, we charge more for smaller groups to cover the fixed costs of the trip. Costs are based on double occupancy.<br />\r\n<br />\r\n<b>Included in the Price:</b> Accommodations and meals as indicated in the itinerary (B = breakfast, L = lunch, D = dinner); pre-departure information; entrance fees and sightseeing noted as included in the itinerary; ground transportation during the tour; transfers to and from group flights where applicable; professional, english-speaking guides throughout the tour; licensed guides for sport activities (golf, hot air balooning, cycling, hiking and nordic walking); all sports gear; taxes, baggage handling and service charges. Please note: The &ldquo;B, L, D&rdquo; notations only apply to the period during the tour and do not include any meals on flights to/from the start/end of the tour.<br />\r\n<br />\r\n<b>Not Included:</b> Air transportation and related fees; activities noted as optional in the itinerary; passport and visa expenses; baggage/accident/cancellation insurance; personal expenses, such as laundry, telephone calls, and alcoholic beverages (other than those provided at meals and wine tastings); and any other items not specifically noted as included.<br />\r\n<br />\r\n<b>Single/Shared Accommodations:</b> A limited number of single rooms are available at extra cost on a first-come, first-served basis. We will assist persons requesting a roommate. Participants will be notified if a suitable roommate is not available, in which case the single rate will be charged.</p>\r\n<h3><i><b>RESERVATION AND PAYMENTS</b></i></h3>\r\n<p style="text-align: justify;">&nbsp;</p>\r\n<p style="text-align: justify;"><br />\r\nReservations for the tour must be made in writing and sent to info@insiders-slovenia.si.<br />\r\n<br />\r\nTo reserve space on an Insider&rsquo;s Slovenia tour, a $500 / 335 EUR per person deposit is required at time of reservation.<br />\r\n<br />\r\nFinal payment is due no later than 30 days prior to departure. Payments can be:</p>\r\n<ul>\r\n <li>wired to a Insider&rsquo;s Slovenia bank account: ABANKA VIPA d.d. Ljubljana (acc.no.: SI56 051008011682575); SWIFT CODE : ABANSI2X;</li>\r\n <li>or made by a credit card (AMEX, VISA, EC/MC, DINERS). If payment is made by a credit card, please send to info@insiders-slovenia.si the following credit card details:<br />\r\n <br />\r\n <b> Visa, Mastercard</b>: card number, expiration date, security code from reverse of the card, first and last name, address, state, country<br />\r\n <br />\r\n <b> American Express, Diners</b>: card number, expiration date, first and last name, address, state, country<br />\r\n &nbsp;</li>\r\n</ul>','<p>&nbsp;<b>DAY 1 - 4</b> - Pule Estate</p>\r\n<p>All suites are superbly equipped. Selected natural materials and the unique design give each house a personal touch. Each suite contains a satellite television, telephone, Internet connection, mini bar, shower and hair dryer.</p>\r\n<p style="text-align: justify;"><br />\r\nThe fireplace offers a pleasant feeling and is always fully-stocked with fragrant wood while each suite is equipped with a sweet surprise and bathrobe for delightful mornings and relaxing evenings.</p>','0','0','','Please call for dates','','','Neaktivan',-1,53,7),(1449,'Exclusive short break-Otocec Castle Hotel and Pule Estate',' 4 Days','Opis aranzmana','Kratak opis aranzmana','<p><b>Exquisite cuisine and wines</b></p>\r\n<p style="text-align: justify;">Enjoy the combination of the tastes of traditional Slovenia cuisine and the latest culinary trends; experiences which will fulfill and delight you each time. The superb wine cellar at The Pule Estate keeps a rich selection of the highest quality wines, typical Dolenjska varieties and also renowed wines from noteworthy wine-growing regions.</p>\r\n<p><img width="200" height="134" alt="" src="/files/Image/Food/Grad-Otocec_Hes 011.jpg" />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <img width="200" height="133" alt="" src="/files/Image/Food/_KAM7390.jpg" />&nbsp;</p>\r\n<p><b>Novo Mesto and Kostanjevica sightseeing</b></p>\r\n<p style="text-align: justify;">Visit Novo Mesto, the capital of Dolenjska, with its remarkable history and archeological finds, such as the renowned Situla form 4th-3rd century BC. The menieval city centre is located on the rocky meander of the River Krka and the great Main Square (Glavni Trg) and more recent archer and arcade corridors in the ground floors of bourgeois houses are inspiring. Also see Kostanjevica town, the &quot;Venice&quot; of Dolenjska, a picturesque town on Krka river.</p>\r\n<p style="text-align: justify;"><img width="200" height="134" alt="" src="/files/Image/Food/Kostanjevica.jpg" />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <img width="100" height="143" alt="" src="/files/Image/Food/Krka.jpg" /></p>\r\n<p style="text-align: justify;"><b>Ljubljana sightseeing</b></p>\r\n<p style="text-align: justify;">In Ljubljana, ancient meets modern, a picuresque blend of Medieval, Baroque and Art Nouveau masterpieces. Set in this &quot;Little Vienna&quot; are the unique contributions of architect Joze Plecnik, whose striking structures combine elements of classic Greek and Roman architecture. Stroll the banks of the river, alongside his columned Marketplace, and to Plecnik`s University library and St. Nicholas Cathedral.</p>\r\n<p style="text-align: justify;"><img width="200" height="133" style="" alt="Ljubljana" src="/files/Image/Food/Ljubljana22.jpg" />&nbsp;&nbsp;&nbsp;&nbsp; <img width="100" height="146" style="" alt="Ljubljana Castle" src="/files/Image/Food/Ljubljanski grad1.jpg" /></p>\r\n<p style="text-align: justify;"><b>Horseback riding</b></p>\r\n<p style="text-align: justify;">The Pule Estate has an almost spiritual peacefulness... Enjoy hacking through unspoiled farmland on beautiful Lipizzaner horses. Riding highlights include hacks to a nearby medieval castle and local historical town. (OPTIONAL)</p>\r\n<p style="text-align: justify;"><img width="200" height="133" style="" alt="Horseback riding at Pule Estate" src="/files/Image/Food/26-2-2008002-2.jpg" />&nbsp;&nbsp;&nbsp;&nbsp; <img width="200" height="133" alt="" src="/files/Image/Food/Copy of _KAM9915.jpg" /></p>\r\n<p style="text-align: justify;"><b>Golf playing at Otocec</b></p>\r\n<p style="text-align: justify;">The golf course at Otocec is one of the longest courses in Slovenia. It is distinguished by it`s extraordinarily beautiful, panoramic and dynamic position. It was built, and is now maintained by, high quality and demanding standards. (OPTIONAL)</p>\r\n<p style="text-align: justify;">&nbsp;</p>','<p><b>(03.11.08.-31.03.09) WINTER SEASON</b></p>\r\n<h1>DAY 1 - THURSDAY / LJUBLJANA AIRPORT - OTOCEC</h1>\r\n<ul>\r\n <li>Afternoon arrival at Ljubljana airport</li>\r\n <li>Private transfer to Otocec</li>\r\n <li>Accommodation at Otocec Castle Hotel</li>\r\n <li>Welcome by Lord of the Castle</li>\r\n <li>Gourmet dinner at the castle accompanied by a violinist performing classical music</li>\r\n</ul>\r\n<h1>DAY 2 - FRIDAY / OTOCEC</h1>\r\n<p><b>MORNING</b></p>\r\n<ul>\r\n <li>Breakfast</li>\r\n <li>Morning activities, Options: playing golf at Otocec golf course, sightseeing on a horse drawn carriage, pampering in the Vitarium Wellness centre, hot air ballooning or simply enjoying the tranquility of the stunning countryside</li>\r\n <li>Private transfer to Pule Estate</li>\r\n <li>Accommodation and welcome reception, followed by sightseeing and presentation of the Estate</li>\r\n</ul>\r\n<p><b>AFTERNOON</b></p>\r\n<ul>\r\n <li>Lunch in Novo Mesto, the capital of the Dolenjska region</li>\r\n <li>Sightseeing of the city</li>\r\n <li>Sightseeing of Kostanjevica town, the &quot;Venice&quot; of Dolenjska</li>\r\n <li>Wine tasting and dinner at Zidanica Kos, a winery at Trska gora hill</li>\r\n <li>Overnight at Otocec Castle</li>\r\n</ul>\r\n<h1>DAY 3 -SATURDAY / OTOCEC / PULE ESTATE</h1>\r\n<p><b>MORNING</b></p>\r\n<ul>\r\n <li>After breakfast, private transfer to Pule Estate</li>\r\n <li>Accommodation and welcome reception, followed by sightseeing and presentation of the Estate</li>\r\n</ul>\r\n<p><b>AFTERNOON</b></p>\r\n<ul>\r\n <li>Lunch at the Estate</li>\r\n <li>Time for relaxing/walking/cycling/horseback riding</li>\r\n <li>Wine tasting in the Estate`s wine cellar</li>\r\n <li>Exclusive dinner at Pule`s restaurant</li>\r\n</ul>\r\n<h1>DAY 4 - SUNDAY / PULE ESTATE - LJUBLJANA - LJUBLJANA AIRPORT</h1>\r\n<p><b>MORNING</b></p>\r\n<ul>\r\n <li>Breakfast of home made produce</li>\r\n <li>Morning; relaxation with OPTIONAL massage treatment</li>\r\n <li>Drive to Ljubljana</li>\r\n <li>Short sightseeing of the city</li>\r\n <li>Coffee break</li>\r\n</ul>\r\n<p><b>AFTERNOON</b></p>\r\n<ul>\r\n <li>Depart to the airport</li>\r\n</ul>\r\n<p>&nbsp;</p>\r\n<div class="crta">&nbsp;</div>\r\n<p><b>SUMMER SEASON (01.04.2009 - APROX. 03.11.2009)</b></p>\r\n<p>&nbsp;</p>\r\n<h1>DAY 1 - THURSDAY / LJUBLJANA AIRPORT - OTOCEC</h1>\r\n<ul>\r\n <li>Afternoon arrival at Ljubljana airport</li>\r\n <li>Private transfer to Otocec</li>\r\n <li>Accommodation at Otocec Castle Hotel</li>\r\n <li>Welcome by Lord of the castle</li>\r\n <li>Gourmet dinner at the castle accompanied by a violinist performing classical music</li>\r\n</ul>\r\n<h1>DAY 2 - FRIDAY / OTOCEC - PULE ESTATE</h1>\r\n<p><b>MORNING</b></p>\r\n<ul>\r\n <li>Morning activities, Options: playing golf at Otocec golf course, sightseeing on a horse drawn carriage, pampering in the Vitarium Wellness centre, hot air ballooning or simply enjoying the tranquility of the stunning countryside</li>\r\n <li>Private transfer to Pule Estate</li>\r\n <li>Accommodation and welcome reception, followed by sightseeing and presentation of the Estate</li>\r\n</ul>\r\n<p><b>AFTERNOON</b></p>\r\n<ul>\r\n <li>Lunch in at the Estate</li>\r\n <li>Time for relaxing/walking/cycling/horseback riding</li>\r\n <li>Wine tasting at the Estate`s wine cellar</li>\r\n <li>Exclusive dinner at Pule`s restaurant</li>\r\n</ul>\r\n<h1>DAY 3 -SATURDAY / PULE ESTATE</h1>\r\n<p><b>MORNING</b></p>\r\n<ul>\r\n <li>Morning relaxation/horseback riding/wild animal hunting</li>\r\n</ul>\r\n<p><b>AFTERNOON</b></p>\r\n<ul>\r\n <li>Lunch</li>\r\n <li>Sightseeing of Kostanjevica, a picturesque town on Krka river</li>\r\n <li>Sightseeing of Novo Mesto city, capital of Dolenjska region</li>\r\n <li>Wine tasting and dinner at Kos Zidanica - a winery at Trska gora hill</li>\r\n</ul>\r\n<h1>DAY 4 - SUNDAY / PULE ESTATE - LJUBLJANA - LJUBLJANA AIRPORT</h1>\r\n<p><b>MORNING</b></p>\r\n<ul>\r\n <li>Breakfast</li>\r\n <li>Morning relaxation</li>\r\n <li>Drive to Ljubljana, short sightseeing of the city</li>\r\n <li>Coffee break in the city</li>\r\n</ul>\r\n<p><b>AFTERNOON</b></p>\r\n<ul>\r\n <li>Depart to the airport</li>\r\n</ul>\r\n<p>&nbsp;</p>','<p>The oppurtunities to feel the spirit of the past gently interwoven with the rythm of the present, are rare. The Otocec Castle Hotel, with its originally renovated atmosphere in the spirit of Gothic and Renaissance, enables this very thing-an integral experience of past times with the comfort of today. Enjoy the feelong of being the Lords of the Castle, and let us pamper you; luxuriate in massage, bath or refreshing tropical shower in your spacious bathroom...Delight in your location in a morning walk along the banks of the stunning river. Dine like Kings over a gourmet dinner with exquisite wine and candlelight, then in the evening, relax in the warmth of a cracking fire...</p>\r\n<h3><b><i><b><i>THE PACE OF THE TOUR</i></b></i></b></h3>\r\n<p>All guests are expected to be in good health. Our tours are moderate to moderate difficult.</p>\r\n<h3><b><i>PRICE <br />\r\n</i></b></h3>\r\n<p><i><b>(PER PERSON)</b></i></p>\r\n<p>Please contact us for price.</p>\r\n<p>Our trips are budgeted for a full or nearly full sign-up. To avoid having to cancel trips with fewer clients, we charge more for smaller groups to cover the fixed costs of the trip. Costs are based on double occupancy.</p>\r\n<p><b>Included in the Price</b>: Accommodations and meals as indicated in the itinerary (B = breakfast, L = lunch, D = dinner); pre-departure information; entrance fees and sightseeing noted as included in the itinerary; ground transportation during the tour; transfers to and from group flights where applicable; professional, english-speaking guides throughout the tour; licensed guides for sport activities (golf, hot air balooning, cycling, hiking and nordic walking); all sports gear; taxes, baggage handling and service charges. Please note: The &ldquo;B, L, D&rdquo; notations only apply to the period during the tour and do not include any meals on flights to/from the start/end of the tour.</p>\r\n<p><b>Not Included</b>: Air transportation and related fees; activities noted as optional in the itinerary; passport and visa expenses; baggage/accident/cancellation insurance; personal expenses, such as laundry, telephone calls, and alcoholic beverages (other than those provided at meals and wine tastings); and any other items not specifically noted as included.</p>\r\n<p><b>Single/Shared Accommodations</b>: A limited number of single rooms are available at extra cost on a first-come, first-served basis. We will assist persons requesting a roommate. Participants will be notified if a suitable roommate is not available, in which case the single rate will be charged.</p>\r\n<h3><br />\r\n<b><i>RESERVATION AND PAYMENTS</i></b></h3>\r\n<p>Reservations for the tour must be made in writing and sent to <a href="mailto:info@insiders-slovenia.si">info@insiders-slovenia.si</a>.</p>\r\n<p>To reserve space on an Insider&rsquo;s Slovenia tour, a $500 / 335 EUR per person deposit is required at time of reservation.</p>\r\n<p>Final payment is due no later than 30 days prior to departure. Payments can be:</p>\r\n<ul>\r\n <li>&nbsp;wired to a Insider&rsquo;s Slovenia bank account: ABANKA VIPA d.d. Ljubljana</li>\r\n</ul>\r\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; (acc.no.: SI56 051008011682575); SWIFT CODE : ABANSI2X;</p>\r\n<ul>\r\n <li>&nbsp;or made by a credit card (AMEX, VISA, EC/MC, DINERS). If payment is made by a credit card, please send to <a href="mailto:info@insiders-slovenia.si">info@insiders-slovenia.si</a> the following credit card details:</li>\r\n</ul>\r\n<p><b>Visa, Mastercard</b>: card number, expiration date, security code from reverse of the card, first and last name, address, state, country</p>\r\n<p><b>American Express, Diners</b>: card number, expiration date, first and last name, address, state, country</p>','<p style="text-align: justify;">The hotels are carefully selected for each location, close to the attractions and offer the best available services.</p>\r\n<p style="text-align: justify;"><b>DAY 1-2 </b>Otocec Castle hotel, 5*</p>\r\n<p style="text-align: justify;"><b>DAY 3-4 </b>Pule Estate, 5*</p>\r\n<h2>Otocec Castle hotel *****</h2>\r\n<p style="text-align: justify;">All the rooms are en suite, spacious and beautifully decorated. They are equipped with a hairdryer, cable TV, a telephone, a cable internet connection and a mini bar; free WLAN is available in the restaurant, in the Hunters`s room and in the Cross Hall.</p>\r\n<p style="text-align: justify;"><img width="200" height="135" src="/files/Image/Food/Grad-Otocec_Hes 017.jpg" alt="" />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <img width="100" height="149" src="/files/Image/Food/Grad-Otocec_Hes 010.jpg" alt="" /></p>\r\n<p style="text-align: justify;">&nbsp;</p>\r\n<h2>Pule Estate *****</h2>\r\n<p style="text-align: justify;">All suites are superbly equipped. The use of natural materials and the unique design give each house a personal touch. The fireplace is always fully-stocked with fragrant wood and cosy bathrobes are provided for relaxing evenings and mellow mornings. Each suite also contains a satellite television, telephone, internet connection, mini bar, shower and hair dryer.</p>\r\n<p style="text-align: justify;"><img width="200" height="133" src="/files/Image/Food/_KAM5342.jpg" alt="" />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <img width="200" height="133" src="/files/Image/Food/_KAM5421.jpg" alt="" /></p>\r\n<p>&nbsp;</p>','Please call for price','Please call for price','Ljubljana Airport','Please call for dates','/files/Image/Food/Grad-Otocec_Hes 005.jpg','/files/File/iPule shortbreakWINTER SEASON.pdf','Aktivan',30,53,8); /*!40000 ALTER TABLE `pr_proizvod` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `pr_proizvodgrupaproiz` -- DROP TABLE IF EXISTS `pr_proizvodgrupaproiz`; CREATE TABLE `pr_proizvodgrupaproiz` ( `proizvodid` int(11) NOT NULL default '0', `grupaproizvodaid` int(11) NOT NULL default '0', PRIMARY KEY (`proizvodid`,`grupaproizvodaid`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci COMMENT='veza izmedju proizvoda i grupa proizvoda'; -- -- Dumping data for table `pr_proizvodgrupaproiz` -- LOCK TABLES `pr_proizvodgrupaproiz` WRITE; /*!40000 ALTER TABLE `pr_proizvodgrupaproiz` DISABLE KEYS */; INSERT INTO `pr_proizvodgrupaproiz` VALUES (1441,10),(1442,10),(1445,10); /*!40000 ALTER TABLE `pr_proizvodgrupaproiz` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `pr_proizvodjac` -- DROP TABLE IF EXISTS `pr_proizvodjac`; CREATE TABLE `pr_proizvodjac` ( `proizvodjacid` int(11) NOT NULL auto_increment, `naziv` varchar(255) character set utf8 NOT NULL default '', `opis` text character set utf8 NOT NULL, PRIMARY KEY (`proizvodjacid`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci COMMENT='podaci o proizvodjacima'; -- -- Dumping data for table `pr_proizvodjac` -- LOCK TABLES `pr_proizvodjac` WRITE; /*!40000 ALTER TABLE `pr_proizvodjac` DISABLE KEYS */; INSERT INTO `pr_proizvodjac` VALUES (30,'Slovenia','Opis destinacije'); /*!40000 ALTER TABLE `pr_proizvodjac` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `pr_proizvodkategorija` -- DROP TABLE IF EXISTS `pr_proizvodkategorija`; CREATE TABLE `pr_proizvodkategorija` ( `proizvodid` int(11) NOT NULL default '0', `kategorijaid` int(11) NOT NULL default '0', PRIMARY KEY (`proizvodid`,`kategorijaid`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci COMMENT='veza izmedju proizvoda i kategorija'; -- -- Dumping data for table `pr_proizvodkategorija` -- LOCK TABLES `pr_proizvodkategorija` WRITE; /*!40000 ALTER TABLE `pr_proizvodkategorija` DISABLE KEYS */; INSERT INTO `pr_proizvodkategorija` VALUES (1241,51),(1263,51),(1272,51),(1414,56),(1415,56),(1416,56),(1417,57),(1418,57),(1419,56),(1420,56),(1421,56),(1422,56),(1423,56); /*!40000 ALTER TABLE `pr_proizvodkategorija` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `pr_reservation` -- DROP TABLE IF EXISTS `pr_reservation`; CREATE TABLE `pr_reservation` ( `reservationid` int(11) NOT NULL auto_increment, `prproizvodid` int(11) NOT NULL default '0', `datumpolaskaid` int(11) NOT NULL default '0', `name` varchar(255) NOT NULL default '', `place` varchar(255) NOT NULL default '', `zipcode` varchar(255) NOT NULL default '', `country` varchar(255) NOT NULL default '', `phone` varchar(255) NOT NULL default '', `address` varchar(255) NOT NULL default '', `email` varchar(255) NOT NULL default '', `malepassengers` varchar(255) NOT NULL default '', `femalepassengers` int(11) NOT NULL default '0', `doublebed` int(11) NOT NULL default '0', `twinbed` int(11) NOT NULL default '0', `singlesupplement` int(11) NOT NULL default '0', `smoking` varchar(10) NOT NULL default 'false', `restrictions` varchar(255) NOT NULL default '', `remarks` varchar(255) NOT NULL default '', `reservationdate` int(11) NOT NULL default '0', PRIMARY KEY (`reservationid`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; -- -- Dumping data for table `pr_reservation` -- LOCK TABLES `pr_reservation` WRITE; /*!40000 ALTER TABLE `pr_reservation` DISABLE KEYS */; INSERT INTO `pr_reservation` VALUES (16,1440,1242424800,'Lucas Carter','London','bs33bs','UK','447045732304','237 Regent St Westminster , London W1B 2, UK','lucater@ymail.com','2',2,0,2,0,'false','','Hello i want a tour for our honey moon holidays we are 4 in number. we will arrival on October 14 2009 and will be staying for 14 days. What can you offer to us with the above request get back to me with the tour total cost so that i will make the booking',1250883437); /*!40000 ALTER TABLE `pr_reservation` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `pr_tipproizvoda` -- DROP TABLE IF EXISTS `pr_tipproizvoda`; CREATE TABLE `pr_tipproizvoda` ( `tipproizvodaid` int(11) NOT NULL auto_increment, `naziv` varchar(255) character set utf8 NOT NULL default '', `opis` varchar(255) character set utf8 NOT NULL default '', `order` int(11) NOT NULL default '0', PRIMARY KEY (`tipproizvodaid`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci COMMENT='podaci o tipovima proizvoda'; -- -- Dumping data for table `pr_tipproizvoda` -- LOCK TABLES `pr_tipproizvoda` WRITE; /*!40000 ALTER TABLE `pr_tipproizvoda` DISABLE KEYS */; INSERT INTO `pr_tipproizvoda` VALUES (57,'Theme tours','Opis tipa aranzmana',1),(53,'Short breaks','short breaks',0); /*!40000 ALTER TABLE `pr_tipproizvoda` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `pr_tipproizvodagrupatipovaproiz` -- DROP TABLE IF EXISTS `pr_tipproizvodagrupatipovaproiz`; CREATE TABLE `pr_tipproizvodagrupatipovaproiz` ( `tipproizvodaid` int(11) NOT NULL default '0', `grupatipovaproizvodaid` int(11) NOT NULL default '0', PRIMARY KEY (`tipproizvodaid`,`grupatipovaproizvodaid`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci COMMENT='veza izmedju tip proizvoda i grupa tipova proizvoda'; -- -- Dumping data for table `pr_tipproizvodagrupatipovaproiz` -- LOCK TABLES `pr_tipproizvodagrupatipovaproiz` WRITE; /*!40000 ALTER TABLE `pr_tipproizvodagrupatipovaproiz` DISABLE KEYS */; INSERT INTO `pr_tipproizvodagrupatipovaproiz` VALUES (53,15); /*!40000 ALTER TABLE `pr_tipproizvodagrupatipovaproiz` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `spagelink` -- DROP TABLE IF EXISTS `spagelink`; CREATE TABLE `spagelink` ( `spage_id` int(11) NOT NULL default '0', `target` varchar(255) NOT NULL default '', PRIMARY KEY (`spage_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; -- -- Dumping data for table `spagelink` -- LOCK TABLES `spagelink` WRITE; /*!40000 ALTER TABLE `spagelink` DISABLE KEYS */; INSERT INTO `spagelink` VALUES (14,'_self'),(15,'_self'),(16,'_self'),(17,'_self'),(18,'_self'),(20,'_self'),(34,'_self'),(38,'_self'),(39,'_self'); /*!40000 ALTER TABLE `spagelink` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `staticpage` -- DROP TABLE IF EXISTS `staticpage`; CREATE TABLE `staticpage` ( `spage_id` int(11) NOT NULL auto_increment, `template_id` int(11) NOT NULL default '1', `level` int(11) default NULL, `order` int(11) NOT NULL default '0', `header` text, `html` text, `type` varchar(255) NOT NULL default 'stranica', `status` varchar(20) default NULL, PRIMARY KEY (`spage_id`), FULLTEXT KEY `header` (`header`), FULLTEXT KEY `html` (`html`), FULLTEXT KEY `search` (`header`,`html`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; -- -- Dumping data for table `staticpage` -- LOCK TABLES `staticpage` WRITE; /*!40000 ALTER TABLE `staticpage` DISABLE KEYS */; INSERT INTO `staticpage` VALUES (24,65,0,6,'Links','<h2>Slovenia</h2>\r\n<p>Slovenia Tourist Board`s official tourism and travel guide to Slovenia.</p>\r\n<p><a href="http://www.slovenia.info">www.slovenia.info</a></p>\r\n<p><a href="/files/File/Pdf insiders inreractive2.pdf"><br />\r\n</a>Republic of Slovenia Offical gateway to the information on Slovenia.</p>\r\n<p><a href="http://www.slovenia.si">www.slovenia.si</a><a href="/files/File/TFL.doc"><br />\r\n</a></p>\r\n<p>State portal of the Republic of Slovenia</p>\r\n<p><a href="http://www.gov.si/">www.gov.si</a></p>\r\n<p>Ministry of foreign affairs</p>\r\n<p><a href="http://www.mzz.gov.si/en">www.mzz.gov.si</a></p>\r\n<p>&nbsp;</p>\r\n<div class="crta">&nbsp;</div>\r\n<h2>Slovenian Wines</h2>\r\n<p>About Slovenian wines</p>\r\n<p><a href="http://www.matkurja.com/projects/wine/">www.matkurja.com/projects/wine/</a></p>\r\n<p>A selection of top Slovenian wines available online</p>\r\n<p><a href="http://www.wines.si">www.wines.si</a><a href="http://www.bluedanubewine.com/"><br />\r\n</a></p>\r\n<p>Interesting articles about Slovenian wines</p>\r\n<p><a href="http://www.vinography.com/archives/2008/05/movia_slovenia_current_release.html">www.vinography.com/archives/2008/05/movia_slovenia_current_release.html</a></p>\r\n<p><a href="http://www.vinography.com/archives/2008/05/slovenian_wine_a_new_frontier.html">www.vinography.com/archives/2008/05/slovenian_wine_a_new_frontier.html</a></p>\r\n<p><a href="http://www.latimes.com/features/food/la-fo-wineside30jan30,1,5437370.story">www.latimes.com/features/food/la-fo-wineside30jan30,1,543730.story</a></p>\r\n<p>Slovenian wines available in the USA</p>\r\n<p><a href="http://www.BlueDanubeWine.com">www.BlueDanubeWine.com</a></p>\r\n<p>&nbsp;</p>\r\n<div class="crta">&nbsp;</div>\r\n<h2>Weather</h2>\r\n<p>Weather forecast in Slovenia</p>\r\n<p><a href="http://meteo.arso.gov.si/met/en/">http://meteo.arso.gov.si/met/en/</a></p>\r\n<p>&nbsp;</p>\r\n<div class="crta">&nbsp;</div>\r\n<h2>Traffic - information centre</h2>\r\n<p>Information for public roads</p>\r\n<p><a href="http://www.promet.si/">http://www.promet.si/</a></p>\r\n<p>&nbsp;</p>\r\n<div class="crta">&nbsp;</div>\r\n<h2>Slovenia - Landmarks</h2>\r\n<p>A comprehensive presentation of Slovenia with interactive map</p>\r\n<p><a href="http://www.burger.si/SLOIndex_eng.htm">www.burger.si/</a></p>\r\n<p>&nbsp;</p>\r\n<div class="crta">&nbsp;</div>\r\n<h2>Slovenia news</h2>\r\n<p>A weekly newsletter covering politics, environment, culture, business, science, sports, etc.</p>\r\n<p><a href="http://www.ukom.gov.si/eng/slovenia/publications/slovenia-news/">www.ukom.gov.si/eng/slovenia/publications/slovenia-news/</a></p>\r\n<p>&nbsp;</p>\r\n<div class="crta">&nbsp;</div>\r\n<h2>Entry to Slovenia</h2>\r\n<p>Everything you need to know about required travel documents, visa information...</p>\r\n<p><a href="http://www.mzz.gov.si/en/visa_information/entry_to_slovenia/">http://www.mzz.gov.si/en/visa_information/entry_to_slovenia/</a></p>\r\n<div style="width: 81.2%; height: 180px;" class="crta">&nbsp;\r\n<h2>Adria Airways</h2>\r\n<p>The Slovenian national airline.</p>\r\n<p><a href="http://www.adria.si">www.adria.si</a></p>\r\n</div>\r\n<div class="crta">&nbsp;</div>\r\n<h2>EasyJet</h2>\r\n<p>Voted Europe`s no.1 low cost airline. The easiest way to reach Slovenia.</p>\r\n<p><a href="http://www.easyjet.com">www.easyjet.com</a></p>\r\n<p>&nbsp;</p>\r\n<div class="crta">\r\n<h2>&nbsp;</h2>\r\n</div>\r\n<h2>Rokus Gifts</h2>\r\n<p>Gift items designed by Slovenian designers, handmade Slovenian arts and crafts, jewellery, books and a wide selection of Slovenian wines.</p>\r\n<p><a href="http://www.rokusgifts.si">www.rokusgifts.si</a></p>\r\n<p>&nbsp;</p>\r\n<div class="crta">&nbsp;</div>\r\n<h2>&nbsp;Unitur - hotels and resorts</h2>\r\n<p>&nbsp; Insider`s Slovenia partner company.</p>\r\n<p>&nbsp;<a href="http://www.rogla.si/cgi-bin/cms.cgi?doc=12870&amp;sid=sh0DLipeaLMAhFLi"> www.rogla.si/cgi-bin/cms.cgi?doc=12870&amp;sid=sh0DLipeaLMAhFLi</a></p>\r\n<p>&nbsp;</p>\r\n<div class="crta">&nbsp;</div>','stranica','online'),(25,65,0,7,'Recipes','<h1><a href="#belokranjska_pogaca" name="top">Belokranjska pogača (Bela Krajina Pogača)</a></h1>\r\n<h1><a href="#belokranjska_povitica">Belokranjska povitica (Bela Krajina Povitica)</a></h1>\r\n<h1><a href="#potato_mush">Kr&uacute;mpluvi žganiki or d&ouml;d&ouml;le (Potato Mush)</a></h1>\r\n<h1><a href="#prekmurian_stew">Prekmurski bograč (Prekmurian Stew)</a></h1>\r\n<h1><a href="#gibanica">Prekmurska gibanica (Prekmurian Layer Cake)</a></h1>\r\n<h1><a href="#bean_struklji">Fižolovi &scaron;truklji (Bean &Scaron;truklji)</a></h1>\r\n<h1><a href="#aplle_stuklji">Jabolčni &scaron;truklji (Apple &Scaron;truklji)</a></h1>\r\n<h1><a href="#bacon_bread">&Scaron;pehovka (Bacon bread)</a></h1>\r\n<p>&nbsp;<a name="top"></a></p>\r\n<p>&nbsp;</p>\r\n<h2><i><a name="belokranjska_pogaca"></a>Belokranjska pogača</i> (Bela Krajina <i>Pogača</i>)</h2>\r\n<div class="crta">&nbsp;</div>\r\n<p><b><img width="250" height="202" align="right" alt="" src="/files/Image/recipies/belokranjska-pogaca.jpg" />INGREDIENTS</b></p>\r\n<p><b>50 dag sifted white flour</b></p>\r\n<p><b>3 tablespoons white flour</b></p>\r\n<p><b>3 dl lukewarm water</b></p>\r\n<p><b>2 tablespoons salt</b></p>\r\n<p><b>2 dag yeast</b></p>\r\n<p><b>&frac12; tablespoon sugar</b></p>\r\n<p><b>1 pinch caraway</b></p>\r\n<p><b>1 egg</b></p>\r\n<p>1. Crumble yeast into pot, add 3 tablespoons white flour, 0,5 dl lukewarm water, sugar. Stir well and let yeast rise until volume has doubled.</p>\r\n<p>2. Mix flour, lukewarm water and leavened yeast into large kneading bowl. Knead dough until elastic and not too stiff. Knead 10 minutes and test: if your fingerprinted pit in the dough disappears immediately, it is ready.</p>\r\n<p>3. Let dough rise in bowl until double in size. Cover with tablecloth.</p>\r\n<p>4. Place leavened dough onto well greased baking tin and stretch into a circle with 30 cm in diameter.</p>\r\n<p>5. Incise square net pattern into dough. Knife it through to the bottom. Brush with beaten egg seasoned with caraway. Sprinkle a pinch of unrefined sea salt or salt flower on top.</p>\r\n<p>6. Bake at 220 &deg;C for 20 to 25 minutes. Pogača must turn light brown. The center reaches 3 to 4 cm in height, corners are 1 to 2 cm high. Serve warm.</p>\r\n<p style="text-align: right;"><a href="#top">go top</a></p>\r\n<h2><i><a name="belokranjska_povitica"></a>Belokranjska povitica</i> (Bela Krajina <i>Povitica</i>)</h2>\r\n<div class="crta">&nbsp;</div>\r\n<p><b><img width="250" height="176" align="right" alt="" src="/files/Image/recipies/belokranjska-povitica.jpg" />INGREDIENTS</b></p>\r\n<p><b><i>Dough</i></b></p>\r\n<p><b>50 dag white flour</b></p>\r\n<p><b>1&nbsp;egg</b></p>\r\n<p><b>3-4 dl lukewarm water</b></p>\r\n<p><b>2 tablespoons oil</b></p>\r\n<p><b>1 tablespoon vinegar</b></p>\r\n<p><b>a pinch of salt</b></p>\r\n<p><b>&nbsp;</b></p>\r\n<p><b><i>Filling</i></b></p>\r\n<p><b>1 kg fresh cottage cheese <i>'&scaron;krlupec'</i></b></p>\r\n<p><b>2 eggs</b></p>\r\n<p><b>2 tablespoons salt</b></p>\r\n<p>&nbsp;</p>\r\n<p>1. Mix dough ingredients and knead until smooth and tender. Make 4 dough balls. Brush with oil and cover with table cloth or cover with bowl. Let it rest for 30 minutes.</p>\r\n<p>2. Roll out dough as thin as possible and stretch. Let it rest again for 10 to 15 minutes until dry.</p>\r\n<p>3. Mix filling ingredients into a paste and spread on the four dough balls equally.</p>\r\n<p>4. Roll each sheet into a swirl and place in greased baking tin.</p>\r\n<p>5. Brush swirl-rolls with beaten egg or egg white.</p>\r\n<p>6. Bake in oven for 30 minutes at 200 &deg;C.</p>\r\n<p>&nbsp;</p>\r\n<p>If you make &scaron;krlupec and cottage cheese by yourself, you will need 5-6 litres of cow milk. After milking, let the milk rest in the refrigerator for 12 hours. Then gradually heat the milk, but do not boil it until a thick layer of filmed cream forms on top. Put milk into oven and bake at 200 &deg;C for 10 to 15 minutes until the top cream has browned. This top layer of cream is <i>&scaron;krlupec</i>, which must be collected and removed from the milk.</p>\r\n<p>Add a tablespoon of apple vinegar while boiling to cause coagulation. Let it cool and drain using linen cloth or gauze. White cottage cheese remains in the table cloth.</p>\r\n<p style="text-align: right;"><a href="#top">go top</a></p>\r\n<h2><i><a name="potato_mush"></a>Kr&uacute;mpluvi žganiki </i>or <i>d&ouml;d&ouml;le</i> (Potato Mush)</h2>\r\n<div class="crta">&nbsp;</div>\r\n<p><b><img width="250" height="188" align="right" alt="" src="/files/Image/recipies/krompirjevi-zganci-ali-dodoli.jpg" />INGREDIENTS</b></p>\r\n<p><b>50 dag potatoes</b></p>\r\n<p><b>40 dag white flour</b></p>\r\n<p><b>boiling salted water</b></p>\r\n<p><b>10 dag zaseka or lard with</b></p>\r\n<p><b>cracklings</b></p>\r\n<p><b>1 dl sour cream</b></p>\r\n<p><b>1 small onion</b></p>\r\n<p>&nbsp;</p>\r\n<p>1. Peel potatoes, dice and boil in salted water. The amount of water should be double as compared to the amount of potatoes.</p>\r\n<p>2. When potatoes are half done, add sifted flour and boil for a while.</p>\r\n<p>3. Turn down the heat when water comes above the flour.</p>\r\n<p>4. Dig a hole using a ladle in the centre of flour.</p>\r\n<p>5. Let simmer for another 30 minutes.</p>\r\n<p>6. Strain some water and add some heated lard.</p>\r\n<p>7. Stir well to make paste. If the paste is too dry, add some strained water while stirring continuously.</p>\r\n<p>8. Use a ladle to pick mush from pot and a fork to grate mush into a bowl.</p>\r\n<p>9. Heat up rest of the lard, roast sliced onions, and add sour cream. Bring to a boil. Lard mush into the bowl.</p>\r\n<p style="text-align: right;"><a href="#top">go top</a></p>\r\n<h2><i><a name="prekmurian_stew"></a>Prekmurski bograč </i>(Prekmurian Stew)</h2>\r\n<div class="crta">&nbsp;</div>\r\n<p><b><img width="200" height="300" align="right" alt="" src="/files/Image/recipies/prekmurje-bograc.jpg" />INGREDIENTS</b></p>\r\n<p><b>25 dag beef fillet</b></p>\r\n<p><b>25 dag pork</b></p>\r\n<p><b>25 dag wild rabbit or other venison (boar, deer)</b></p>\r\n<p><b>4 large chopped onions</b></p>\r\n<p><b>2 garlic cloves</b></p>\r\n<p><b>1 tablespoon pork lard (or 1 dl oil)</b></p>\r\n<p><b>1 fresh paprika</b></p>\r\n<p><b>10 dag tomatoes or 1 tomato paste</b></p>\r\n<p><b>0.25 dag paprika powder</b></p>\r\n<p><b>50 dag potatoes</b></p>\r\n<p><b>laurel leaf</b></p>\r\n<p><b>1 sweet pepper</b></p>\r\n<p><b>black pepper</b></p>\r\n<p><b>thyme</b></p>\r\n<p><b>rosemary</b></p>\r\n<p><b>caraway</b></p>\r\n<p><b>salt to taste</b></p>\r\n<p><b>2 dl red wine (e.g. Modra Frankinja - Lemberger)</b></p>\r\n<p>&nbsp;</p>\r\n<p>1. Saut&eacute; onions on lard, add cubed beef, braise, and add water, as necessary.</p>\r\n<p>2. Add cubed venison and braise until half done.</p>\r\n<p>3. Add cubed pork, vegetables, spices, and paprika powder.</p>\r\n<p>4. Season with salt, stir, and bring to a boil.</p>\r\n<p>5. After a while, spread segmented potatoes on</p>\r\n<p>surface, and add water to cover potatoes.</p>\r\n<p>6. Add wine and bring to a boil again.</p>\r\n<p>7. Taste a little and add necessary spices.</p>\r\n<p style="text-align: right;"><a href="#top">go top</a></p>\r\n<h2><i><a name="gibanica"></a>Prekmurska gibanica </i>(Prekmurian Layer Cake)</h2>\r\n<div class="crta">&nbsp;</div>\r\n<p><b><img width="250" height="203" align="right" alt="" src="/files/Image/recipies/prekmurska-gibanica.jpg" />INGREDIENTS</b></p>\r\n<p><b><i>Shortbread</i></b></p>\r\n<p><b>20 dag hard flour</b></p>\r\n<p><b>10 dag butter</b></p>\r\n<p><b>a pinch of salt</b></p>\r\n<p><b>a pinch of sugar</b></p>\r\n<p><b>approximately 1l water</b></p>\r\n<p>&nbsp;</p>\r\n<p>1. Put all ingredients into a bowl and make dough.</p>\r\n<p>2. Knead the dough until smooth.</p>\r\n<p>3. Let rest for 30 minutes.</p>\r\n<p><b>&nbsp;</b></p>\r\n<p><b><i>Filo Pastry</i></b></p>\r\n<p><b>90 dag soft wheat flour</b></p>\r\n<p><b>1 egg</b></p>\r\n<p><b>1 tablespoon oil</b></p>\r\n<p><b>a pinch of salt</b></p>\r\n<p><b>lukewarm water for kneading</b></p>\r\n<p><b>vinegar or lemon juice</b></p>\r\n<p>&nbsp;</p>\r\n<p>1. Mix all ingredients to form a smooth and elastic filo pastry.</p>\r\n<p>2. Let rest for 30 minutes.</p>\r\n<p>3. Shape about 9 to 10 balls.</p>\r\n<p>4. Set aside for a very thorough kneading, pulling individual layers.</p>\r\n<p>&nbsp;</p>\r\n<p><b><i>Poppy Seed Filling</i></b></p>\r\n<p><b>30 dag finely chopped poppy seeds</b></p>\r\n<p><b>10 dag sugar</b></p>\r\n<p><b>1 vanilla sugar (10 g package)</b></p>\r\n<p><b>grated lemon zest</b></p>\r\n<p>&nbsp;</p>\r\n<p>1. Moisten poppy seeds with 0,5 l scalded milk.</p>\r\n<p>2. Add sugar, vanilla sugar, and grated lemon zest.</p>\r\n<p>3. Mix well and divide the filling into two equal parts.</p>\r\n<p><b>&nbsp;</b></p>\r\n<p><b><i>Cottage Cheese Filling</i></b></p>\r\n<p><b>1 kg cottage cheese</b></p>\r\n<p><b>10 dag sugar</b></p>\r\n<p><b>2 eggs</b></p>\r\n<p><b>2 vanilla sugar bags</b></p>\r\n<p><b>a pinch of salt</b></p>\r\n<p><b>10 dag raisins</b></p>\r\n<p><b>grated lemon zest</b></p>\r\n<p>1. Mix cottage cheese with egg yolks, sugar, vanilla sugar, a</p>\r\n<p>pinch of salt and grated lemon zest.</p>\r\n<p>2. Stir paste well until smooth.</p>\r\n<p>3. Wash raisins and soak in lukewarm water.</p>\r\n<p>4. Strain raisins and stir into the filling.</p>\r\n<p>5. Divide the filling in two equal parts.</p>\r\n<p><b>&nbsp;</b></p>\r\n<p><b><i>Walnut Filling</i></b></p>\r\n<p><b>30 dag ground walnut kernels</b></p>\r\n<p><b>10 dag sugar</b></p>\r\n<p><b>1 vanilla sugar package</b></p>\r\n<p><b>0,5 dl rum</b></p>\r\n<p>1. Mix ground walnut kernels with other ingredients.</p>\r\n<p>2. Divide the filling in two equal parts.</p>\r\n<p><b>&nbsp;</b></p>\r\n<p><b><i>Apple Filling</i></b></p>\r\n<p><b>1 kg peeled apples</b></p>\r\n<p><b>a pinch of salt</b></p>\r\n<p><b>12 dag sugar</b></p>\r\n<p><b>2 vanilla sugar bags</b></p>\r\n<p><b>cinnamon</b></p>\r\n<p><b>10 dag white breadcrumbs mixed with 1 vanilla sugar</b></p>\r\n<p>1. Grate peeled apples into thin slices or strips.</p>\r\n<p>2. Add sugar, 2 vanilla sugars, cinnamon. Stir gently.</p>\r\n<p>3. Divide apple filling into two equal parts.</p>\r\n<p><b>&nbsp;</b></p>\r\n<p><b>Composition of <i>prekmurska gibanica</i></b></p>\r\n<p>Use rectangular baking tin (40x35 cm) or circular ceramic (or metal) baking tin. If using a round baking tin, see that the upper diameter range is 30 to 35 cm and the height range is 7 to 9 cm. Grease baking tin with butter. Cream bind is needed for coating individual dough layers: make: stiff egg white foam (with 5 eggs). In a separate bowl, mix 5 egg yolks with 7 dl thick sour cream. Stir gently while adding egg white foam. Divide into 6 equal parts. Melted raw butter is also needed for filo pastry coating.</p>\r\n<p>&nbsp;1. Roll out the rested shortbread until about 0,5 cm thick. Place into greased oven. Spread equally on the entire surface.</p>\r\n<p>2. Pull and stretch the rested filo pastry into 9-10 layers.</p>\r\n<p>3. Spread half of the poppy seed filling on shortbread. Sprinkle with part of cream bind. Cover up with a layer of filo pastry. Drizzle with melted butter.</p>\r\n<p>4. Spread half of the cottage cheese filling on the dough layer. Cover up with a layer of filo pastry. Drizzle with melted butter.</p>\r\n<p>5. Spread half of the walnut filling on dough layer. Sprinkle with a part of cream bind. Cover up with a layer of filo pastry. Drizzle with butter.</p>\r\n<p>6. Spread half of the apple filling on dough layer. Sprinkle with a part of cream bind. Cover up with a layer of filo pastry. Drizzle with butter.</p>\r\n<p>7. Repeat the procedure in the following sequence: poppy, cottage cheese, walnut, apple filling.</p>\r\n<p>8. Finish the process with one or two sheets of filo pastry. Brush with cream bind. Prick <i>gibanica </i>several times. Push needle to the bottom.</p>\r\n<p>9. Bake in an oven at 180-200 &deg;C for 1 hour. The baking time varies according to the height of <i>gibanica</i>. <i>Gibanica </i>should be cut when still warm or cooled. Cut triangular slices if the baking mould is round. Cut into squares if the baking mould is rectangular.</p>\r\n<p style="text-align: right;"><a href="#top">go top</a></p>\r\n<h2><i><a name="bean_struklji"></a>Fižolovi &scaron;truklji </i>(Bean <i>&Scaron;truklji</i>)</h2>\r\n<div class="crta">&nbsp;</div>\r\n<p><b>INGREDIENTS&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br />\r\n</b></p>\r\n<p><b><i>Dough</i></b></p>\r\n<p><b>50 dag white flour&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</b><b>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</b><b><img width="221" height="203" align="right" alt="" src="/files/Image/Dolenjski struklji.jpg" /></b><b>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </b></p>\r\n<p><b>2 eggs</b></p>\r\n<p><b>2 tablespoons oil</b></p>\r\n<p><b>1 tablespoon lemon juice</b></p>\r\n<p><b>salt</b></p>\r\n<p><b>&nbsp;</b></p>\r\n<p><b><i>Bean Filling</i></b></p>\r\n<p><b>30 dag cooked dry beans</b></p>\r\n<p><b>2 eggs</b></p>\r\n<p><b>2 dl sour cream</b></p>\r\n<p><b>parsley</b></p>\r\n<p><b>salt</b></p>\r\n<p><b>black pepper</b></p>\r\n<p><b>2 tablespoons breadcrumbs</b></p>\r\n<p><b><i>Sauce</i></b></p>\r\n<p><b>7 dl thick sour cream</b></p>\r\n<p>&nbsp;</p>\r\n<p>1. Mix ingredients and knead into smooth and elastic dough. Divide into three balls, brush with oil and let rest on floured board for approximately &frac12; hour.</p>\r\n<p>2. Roll out all three balls until thin, brush with oil and stretch dough as thin as possible.</p>\r\n<p>3. Cut off the edges.</p>\r\n<p>4. Filling: Mash cooked beans, add all listed ingredients and thicken with breadcrumbs.</p>\r\n<p>5. Spread filling on stretched dough sheets. Use tablecloth to roll them tightly into three rolls. Place into baking tin and bake.</p>\r\n<p>6. When baked, pour sour cream over them, cut into pieces and serve with sauerkraut, sauer turnips or lettuce.</p>\r\n<p style="text-align: right;"><a href="#top">go top</a>&nbsp;</p>\r\n<h2><i><a name="aplle_stuklji"></a>Jabolčni &scaron;truklji </i>(Apple <i>&Scaron;truklji</i>)<b>&nbsp;</b></h2>\r\n<div class="crta">&nbsp;</div>\r\n<p><b><i><img width="250" height="188" align="right" alt="" src="/files/Image/recipies/jabolcni-strukelj.jpg" />&Scaron;truklji Filo Pastry (Dough)</i></b></p>\r\n<p><b>INGREDIENTS</b></p>\r\n<p><b>300 g white flour</b></p>\r\n<p><b>&frac14; l warm water</b></p>\r\n<p><b>1 egg</b></p>\r\n<p><b>salt</b></p>\r\n<p><b>1 slice of raw butter</b></p>\r\n<p><b>lemon juice or vinegar</b></p>\r\n<p><b>oil</b></p>\r\n<p>&nbsp;</p>\r\n<p>1. Mix ingredients to form elastic paste of medium consistency and knead well.</p>\r\n<p>2. Form a ball, brush oil on top and let rest for &frac12; hour.</p>\r\n<p>3. Roll out on cloth sprinkled with flour; grease with oil and stretch at each end until thin.</p>\r\n<p>4. Cut the wide dough edges off. The rectangular sheet of dough is now ready to have the filling spread on it.</p>\r\n<p>&nbsp;</p>\r\n<p><b>Cooked</b></p>\r\n<p><b>INGREDIENTS</b></p>\r\n<p><b><i>Dough </i></b></p>\r\n<p><b>4 tablespoons sour cream (or 2 spoons lard)</b></p>\r\n<p><b>1 egg</b></p>\r\n<p><b>1 handful white breadcrumbs</b></p>\r\n<p><b>1 handful wheat groats</b></p>\r\n<p><b>5 peeled apples grated into flakes</b></p>\r\n<p><b>1 handful sugar</b></p>\r\n<p><b>1 handful washed raisins</b></p>\r\n<p><b>cinnamon</b></p>\r\n<p><b>1 tablespoon breadcrumbs</b></p>\r\n<p>&nbsp;</p>\r\n<p>1. Knead dough and let rest.</p>\r\n<p>2. Mix sour cream (or lard) with egg. Smear it on a rolled out sheet of stretched dough. Sprinkle with breadcrumbs, wheat groats, apple flakes, sugar, raisins and cinnamon.</p>\r\n<p>3. Roll dough, wrap it into a wet towel and tie the ends tight. Cook in a big pot for 25 minutes in salted water.</p>\r\n<p>4. The water level should be at least 3 finger lengths. Unwrap when cooked, cut into 2-centimeter slices and top with golden-brown breadcrumbs roasted in melted butter. Sprinkle with spoonful of powdered sugar or drip with honey drops.</p>\r\n<p>&nbsp;</p>\r\n<p><b>Baked</b></p>\r\n<p><b>INGREDIENTS</b></p>\r\n<p><b><i>Dough</i></b></p>\r\n<p><b>3 handfuls white breadcrumbs</b></p>\r\n<p><b>2 tablespoons raw butter</b></p>\r\n<p><b>2 dl sour cream</b></p>\r\n<p><b>1 deep plate of grated apple flakes</b></p>\r\n<p><b>3 handfuls sugar</b></p>\r\n<p><b>cinnamon</b></p>\r\n<p><b>lemon zest</b></p>\r\n<p>&nbsp;</p>\r\n<p>1. Roll and stretch out dough.</p>\r\n<p>2. Roast breadcrumbs in melted butter until golden-brown. Sprinkle one half of dough with breadcrumbs.</p>\r\n<p>3. Spread apple flakes, some cinnamon, grated lemon zest, and 3 handfuls of sugar onto the same half of dough.</p>\r\n<p>4. Smear the other dough half with sour cream.</p>\r\n<p>5. Roll up the dough starting from apple-laden side first.</p>\r\n<p>6. Place <i>&scaron;truklji </i>into a baking tin, brush with sour cream and bake in an oven at medium temperature for about 45 minutes. When done top with powdered sugar.</p>\r\n<p style="text-align: right;"><a href="#top">go top</a>&nbsp;</p>\r\n<h2><i><a name="bacon_bread"></a>&Scaron;pehovka (Bacon bread)</i></h2>\r\n<div class="crta">&nbsp;</div>\r\n<p><b><img width="250" height="212" align="right" alt="" src="/files/Image/recipies/spehovka.jpg" />INGREDIENTS</b></p>\r\n<p>1 cake yeast<br />\r\n1 &frac12; cup lukewarm water<br />\r\n1 teaspoon sugar<br />\r\n<br />\r\nDissolve sugar and yeast in milk and set aside in warm place until foamy.<br />\r\n<br />\r\n1 cup milk<br />\r\n&frac12; cup shortening or butter<br />\r\n1 teaspoon salt<br />\r\n3 tablespoons sugar<br />\r\n2 beaten eggs<br />\r\n6 cups flour</p>\r\n<p>Heat milk, add shortening, salt and sugar. Let cool. Add beaten eggs and mix. Sift flour, add yeast mixture and above mixture. Knead well and set aside to rise until double in bulk,. When dough has risen, punch down and knead it in the bowl. Let rise again. Roll out about &frac14; inch thick and spread with the following filling:<br />\r\n<br />\r\n3 eggs<br />\r\n2 cups grained bacon<br />\r\n1 teaspoon cinnamon<br />\r\n1 teaspoon sugar<br />\r\n&frac12; cup buttered bread crumbs<br />\r\n&nbsp;</p>\r\n<p><b>PROCEDURE</b><br />\r\nBeat eggs well and spread eggs over the dough with a spatula. Sprinkle on the bacon, cinnamon, sugar and buttered bread crumbs. Roll up and place in well greased pan. Let rise until double in bulk and bake in 325&Acirc;&deg; <br />\r\n<br />\r\nChive or mint filling may be used with the above dough:<br />\r\n<br />\r\n&frac12; cup bread crumbs<br />\r\n&frac12; cup butter<br />\r\n1 cup sour cream<br />\r\n3 tablespoons sugar<br />\r\n3 eggs, beaten<br />\r\n3 tablespoons finely chopped chives or 1 cup chopped mint leaves<br />\r\n<br />\r\nBrown bread crumbs in butter and set aside to cool. Mix together the sour cream, sugar, eggs, chives or mint leaves and bread crumbs. Roll out dough and spread quickly with mixture and roll up. Let rise and bake in 325&Acirc;&deg; oven for one hour.</p>\r\n<p style="text-align: right;"><a href="#top">go top</a></p>','stranica','offline'),(26,1,0,8,'Forum','<p><iframe src="/plugins/plg_forum/index.php" frameborder="0" width="100%" height="800"></iframe></p>','stranica','offline'),(23,65,0,3,'Photo Gallery','<table cellspacing="0" cellpadding="0" border="0" align="center">\r\n <tbody>\r\n <tr>\r\n <td valign="bottom">\r\n <p align="center"><img width="66" height="100" class="thumb" alt="Copyright &copy; Darila Rokus, 2008. All rights reserved. Photo: T.Jeseničnik" src="/files/Image/Pictures/Aljazev stolp-025 1.jpg" /></p>\r\n </td>\r\n <td valign="bottom">\r\n <p align="center"><img width="139" height="210" class="thumb" alt="Copyright &copy; Darila Rokus, 2008. All rights reserved. Photo: T.Jeseničnik " src="/files/Image/Pictures/DSC_0048 1.jpg" /></p>\r\n </td>\r\n <td valign="bottom">\r\n <p align="center"><img width="139" height="210" class="thumb" alt="Copyright &copy; Darila Rokus, 2008. All rights reserved. Photo: T.Jeseničnik" src="/files/Image/Pictures/Zajamniki 1.jpg" /></p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <h6 align="center">Top of Mt. Triglav</h6>\r\n </td>\r\n <td>\r\n <h6 align="center">Soča river</h6>\r\n </td>\r\n <td>\r\n <h6 align="center">Alpine landscape</h6>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td valign="bottom">\r\n <p align="center"><img width="375" height="250" class="thumb" alt="Copyright &copy; Darila Rokus, 2008. All rights reserved. Photo: I.Bončina " src="/files/Image/Pictures/Bled01 1.jpg" /></p>\r\n </td>\r\n <td valign="bottom">\r\n <p align="center"><img width="375" height="250" class="thumb" alt="Copyright &copy; Darila Rokus, 2008. All rights reserved. Photo: T. Jeseničnik " src="/files/Image/Pictures/Bled02 1.jpg" /></p>\r\n </td>\r\n <td valign="bottom">\r\n <p align="center"><img width="600" height="398" class="thumb" alt="Copyright &copy; Darila Rokus, 2008. All rights reserved. Photo: T.Jeseničnik " src="/files/Image/Pictures/Barje zjutraj-002 1.jpg" /></p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <h6 align="center">&nbsp;Bled Lake</h6>\r\n </td>\r\n <td>\r\n <h6 align="center">Pletna-traditional boat</h6>\r\n </td>\r\n <td>\r\n <h6 align="center">Barje-Moor of Ljubljana</h6>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td valign="bottom">\r\n <p align="center"><img width="375" height="249" alt="Copyright &copy; Darila Rokus, 2008. All rights reserved. Photo: T. Jeseničnik" class="thumb" src="/files/Image/blejskojezero.jpg" />&nbsp;</p>\r\n </td>\r\n <td valign="bottom">\r\n <p align="center"><img width="377" height="250" alt="Copyright &copy; Darila Rokus, 2008. All rights reserved. Photo: T.Jeseničnik" class="thumb" src="/files/Image/Pictures/DSC_0016 1.jpg" />&nbsp;</p>\r\n </td>\r\n <td valign="bottom">\r\n <p align="center"><img width="379" height="250" alt="Copyright &copy; Darila Rokus, 2008. All rights reserved. Photo: T.Jeseničnik" class="thumb" src="/files/Image/Pictures/jakob v koprivni4 1.jpg" />&nbsp;</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <h6 align="center">Bled's Island</h6>\r\n </td>\r\n <td>\r\n <h6 align="center">Lovren&scaron;ko Lakes&nbsp;</h6>\r\n </td>\r\n <td>\r\n <h6 align="center">Countryside</h6>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td valign="bottom">\r\n <p align="center"><img width="150" height="100" alt="Copyright &copy; Darila Rokus, 2008. All rights reserved. Photo: T.Jeseničnik" class="thumb" src="/files/Image/Pictures/Kozorogi na Kriskih-042 1.jpg" /></p>\r\n </td>\r\n <td valign="bottom">\r\n <h6 align="center">&nbsp;<img width="140" height="93" src="/files/Image/home_page/bohinjsko-jezero.jpg" class="thumb" alt="Copyright &copy; Darila Rokus, 2008. All rights reserved. Photo: T.Jeseničnik" /></h6>\r\n </td>\r\n <td valign="bottom">&nbsp;&nbsp;&nbsp; <img width="140" height="93" src="/files/Image/home_page/Logarska dolina1.jpg" class="thumb" alt="Copyright &copy; Darila Rokus, 2008. All rights reserved. Photo: T.Jeseničnik" /></td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <h6>&nbsp;Chamois</h6>\r\n </td>\r\n <td>\r\n <h6>Bohinj</h6>\r\n </td>\r\n <td>\r\n <h6>Logarska Valley</h6>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>&nbsp;&nbsp;&nbsp; <img width="140" height="93" alt="Copyright &copy; Darila Rokus, 2008. All rights reserved. Photo: T.Jeseničnik" class="thumb" src="/files/Image/Pictures/DSC_0019 1.jpg" /></td>\r\n <td>&nbsp;&nbsp; <img width="140" height="88" class="thumb" src="/files/Image/Pictures/Piran04 1.jpg" alt="Copyright &copy; Darila Rokus, 2008. All rights reserved. Photo: I.Bončina" /></td>\r\n <td>&nbsp;&nbsp; &nbsp;<img width="140" height="93" src="/files/Image/Pictures/DSC_0055 1.jpg" class="thumb" alt="Copyright &copy; Darila Rokus, 2008. All rights reserved. Photo: T.Jeseničnik" /></td>\r\n </tr>\r\n <tr>\r\n <td><b>&nbsp;&nbsp;&nbsp; Tranquillity of Cerknica <br />\r\n </b></td>\r\n <td>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <b>Piran sunset</b></td>\r\n <td>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <b>The Coast</b></td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <p>&nbsp;&nbsp;&nbsp;&nbsp; </p>\r\n </td>\r\n <td>&nbsp;&nbsp;&nbsp; </td>\r\n <td>\r\n <p>&nbsp;</p>\r\n <p>&nbsp;</p>\r\n <p>&nbsp;</p>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n<p>&nbsp;</p>','kategorija','online'),(27,65,0,4,'Video Gallery','<script type="text/javascript"> var s1 = new SWFObject("/FCKeditor/editor/plugins/flvPlayer/mediaplayer.swf","single","320","240","7"); s1.addVariable("width","320"); s1.addVariable("height","240"); s1.addVariable("autostart","false"); s1.addVariable("file","/files/File/NaKrilihPtic.flv"); s1.addVariable("repeat","false"); s1.addVariable("image","/files/Image/DVD-Slovenija.gif"); s1.addVariable("showdownload","true"); s1.addVariable("link","/files/File/NaKrilihPtic.flv"); s1.addParam("allowfullscreen","true"); s1.addVariable("showdigits","true"); s1.addVariable("shownavigation","true"); s1.write("player303425"); </script>\r\n<p>&nbsp;</p>\r\n<p>Welcome to cinematic journey accross Slovenia. Discover Slovenia along six chosen routes. &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<script src="/FCKeditor/editor/plugins/flvPlayer/swfobject.js" type="text/javascript"></script><script type="text/javascript"> var s1 = new SWFObject("/FCKeditor/editor/plugins/flvPlayer/mediaplayer.swf","single","320","240","7"); s1.addVariable("width","320"); s1.addVariable("height","240"); s1.addVariable("autostart","false"); s1.addVariable("file","/files/File/NaKrilihPtic.flv"); s1.addVariable("repeat","false"); s1.addVariable("image","/files/Image/DVD-Slovenija(1).gif"); s1.addVariable("showdownload","true"); s1.addVariable("link","/files/File/NaKrilihPtic.flv"); s1.addParam("allowfullscreen","true"); s1.addVariable("showdigits","true"); s1.addVariable("shownavigation","true"); s1.write("player242143"); </script><script src="/FCKeditor/editor/plugins/flvPlayer/swfobject.js" type="text/javascript"></script> &nbsp;</p>\r\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p>\r\n<div id="player804778" style="background: rgb(0, 0, 0) url(/FCKeditor/editor/plugins/flvPlayer/play.gif) no-repeat scroll center; width: 320px; height: 240px; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial;"><script src="/FCKeditor/editor/plugins/flvPlayer/swfobject.js" type="text/javascript"></script><script type="text/javascript"> var s1 = new SWFObject("/FCKeditor/editor/plugins/flvPlayer/mediaplayer.swf","single","320","240","7"); s1.addVariable("width","320"); s1.addVariable("height","240"); s1.addVariable("autostart","false"); s1.addVariable("file","/files/File/Na_krilih_ptic(2).flv"); s1.addVariable("repeat","false"); s1.addVariable("image","/files/Image/telop slovenija.jpg"); s1.addVariable("showdownload","true"); s1.addVariable("link","/files/File/Na_krilih_ptic(2).flv"); s1.addParam("allowfullscreen","true"); s1.addVariable("showdigits","true"); s1.addVariable("shownavigation","true"); s1.write("player804778"); </script></div>\r\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Click the logo to watch the video</p>\r\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <script src="/FCKeditor/editor/plugins/flvPlayer/swfobject.js" type="text/javascript"></script><script type="text/javascript"> var s1 = new SWFObject("/FCKeditor/editor/plugins/flvPlayer/mediaplayer.swf","single","350","260","7"); s1.addVariable("width","350"); s1.addVariable("height","260"); s1.addVariable("autostart","false"); s1.addVariable("file","/files/File/Gastronomija trailer.flv"); s1.addVariable("repeat","false"); s1.addVariable("image","/files/Image/telop slovenija gastronomija.jpg"); s1.addVariable("showdownload","true"); s1.addVariable("link","/files/File/Gastronomija trailer.flv"); s1.addParam("allowfullscreen","true"); s1.addVariable("showdigits","true"); s1.addVariable("shownavigation","true"); s1.write("player25473"); </script>&nbsp;</p>\r\n<p>&nbsp;Enjoy video trailer on Slovenian gastronomy</p>\r\n<p>&nbsp;</p>\r\n<div id="player967551" style="background: rgb(0, 0, 0) url(/FCKeditor/editor/plugins/flvPlayer/play.gif) no-repeat scroll center; width: 320px; height: 240px; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial;"><script src="/FCKeditor/editor/plugins/flvPlayer/swfobject.js" type="text/javascript"></script><script type="text/javascript"> var s1 = new SWFObject("/FCKeditor/editor/plugins/flvPlayer/mediaplayer.swf","single","320","240","7"); s1.addVariable("width","320"); s1.addVariable("height","240"); s1.addVariable("autostart","false"); s1.addVariable("file","/files/File/Gastronomija trailer.flv"); s1.addVariable("repeat","false"); s1.addVariable("image","/files/Image/telop slovenija gastronomija.jpg"); s1.addVariable("showdownload","false"); s1.addVariable("link","/files/File/Gastronomija trailer.flv"); s1.addParam("allowfullscreen","true"); s1.addVariable("showdigits","true"); s1.addVariable("shownavigation","true"); s1.write("player967551"); </script></div>\r\n<p>&nbsp;&nbsp;<script src="/FCKeditor/editor/plugins/flvPlayer/swfobject.js" type="text/javascript"></script><script type="text/javascript"> var s1 = new SWFObject("/FCKeditor/editor/plugins/flvPlayer/mediaplayer.swf","single","320","240","7"); s1.addVariable("width","320"); s1.addVariable("height","240"); s1.addVariable("autostart","false"); s1.addVariable("file","/files/File/Gastronomija trailer.flv"); s1.addVariable("repeat","false"); s1.addVariable("image","/files/Image/DVD-Slovenija(1).gif"); s1.addVariable("showdownload","false"); s1.addVariable("link","/files/File/Gastronomija trailer.flv"); s1.addParam("allowfullscreen","true"); s1.addVariable("showdigits","true"); s1.addVariable("shownavigation","true"); s1.write("player126949"); </script><script src="/FCKeditor/editor/plugins/flvPlayer/swfobject.js" type="text/javascript"></script><script src="/FCKeditor/editor/plugins/flvPlayer/swfobject.js" type="text/javascript"></script><script type="text/javascript"> var s1 = new SWFObject("/FCKeditor/editor/plugins/flvPlayer/mediaplayer.swf","single","300","240","7"); s1.addVariable("width","300"); s1.addVariable("height","240"); s1.addVariable("autostart","false"); s1.addVariable("file","/files/File/Gastronomija trailer.flv"); s1.addVariable("repeat","false"); s1.addVariable("image","/files/Image/DVD-Slovenija.gif"); s1.addVariable("showdownload","true"); s1.addVariable("link","/files/File/Gastronomija trailer.flv"); s1.addParam("allowfullscreen","true"); s1.addVariable("showdigits","true"); s1.addVariable("shownavigation","true"); s1.write("player889276"); </script> Click the logo to watch the video</p>\r\n<p>&nbsp;</p>\r\n<p>If you are interested in buying DVDs Slovenia and Gastronomy, please click <a href="http://www.dvd-slovenija.com">www.dvd-slovenija.com</a></p>\r\n<p>&nbsp;</p>','stranica','online'),(28,65,0,5,'Press about Slovenia','<ul>\r\n <li><span style="color: rgb(153, 204, 0);"><a href="http://www.showcook.co.za/Slovenia.htm"><b>SHOWCOOK, COOKING FOR YOU</b></a></span><span style="color: rgb(128, 128, 0);"> </span>(<i>Going slow in Slovenia;</i>Writer: <b>Jos Baker</b>, January 2009)</li>\r\n <li><a href="http://travel.nytimes.com/2008/11/30/travel/30surfacing.html?emc=eta1"><b>THE NEW YORK TIMES</b></a> (<i>A Slice of Italy Across the Sea; </i>Writer:<b> Lionel Beehner, </b>November 2008)</li>\r\n <li><a href="http://online.wsj.com/article_email/SB122246715385380311-lMyQjAxMDI4MjIyODQyNjg3Wj.html "><b>THE WALL STREET JOURNAL </b></a>(<i>The New Old Country</i>; Writer: <b>Stan Sesser</b>, September 2008)</li>\r\n <li><a href="http://www.nytimes.com/2008/08/31/travel/31COMslovenia.html?_r=1&amp;ref=travel&amp;oref=slogin"><b>THE NEW YORK TIMES</b></a> (<i>Wine and Food Tours in Slovenia; </i>Writer<i>: </i><b>Hillary Howard, </b>August 2008)</li>\r\n <li><a href="/files/File/Traveler May&amp;June.pdf"><b>NATIONAL GEOGRAPHIC TRAVELER</b></a> (<i>Slovenia Portfolio;</i><b>Special 16 page photo tour</b>; May/June 2008)</li>\r\n <li><a href="/files/File/Articles_about_Slovenia/Traveler article.pdf"><b>NATIONAL GEOGRAPHIC TRAVELER</b></a> (<i>Suddenly Slovenia</i>; Writer: <b>Keith Bellows</b> - editor in-chief; May/June 2007)</li>\r\n <li><a href="/files/File/Slovenia River Archaeology.pdf"><b>NATIONAL GEOGRAPHIC MAGAZINE</b><b><span style="color: rgb(0, 0, 255);"> </span></b></a>(<i>A River`s Gifts</i>; Writer: C. Kauffman; Photographer: <b>Arne Hodalic</b>; January 2007)</li>\r\n <li><a href="/files/File/Articles_about_Slovenia/Vino.pdf"><b>L.A. TIMES</b></a> (<i>From Slovenia? Wild, Wild Wines</i>; Writer: <b>Corrie Brown</b>; January 2008)</li>\r\n <li><a href="/files/File/Articles_about_Slovenia/Decanter LowRes.pdf"><b>DECANTER</b></a> (<i>Hidden Beauty</i>; Writer: <b>Anthony Dias Blue</b>; December/January 2000/01)</li>\r\n <li><a href="/files/File/Articles_about_Slovenia/travel LowRES.pdf"><b>THE WINE NEWS</b></a> (Writer: <b>Marguerite Thomas</b>; February/March 2001)<a href="/files/File/Articles_about_Slovenia/Vino.pdf"><b><br />\r\n </b></a></li>\r\n <li><a href="/files/File/Food&amp;Wine.pdf"><b>FOOD &amp; WINE</b></a> (<i>Wine notes from the field</i><i>: Slovenia</i>; Writer: <b>Richard Nalley</b>; July 2005)</li>\r\n <li><a href="/files/File/Gourmet, A land in between.pdf"><b>GOURMET</b></a> (<i>A land in between</i>; Writer: <b>Alexander Lobrano</b>; February 2006)</li>\r\n <li><a href="http://www.ft.com/cms/s/0/6d3617de-ebf6-11dc-9493-0000779fd2ac.html?nclick_check=1"><b>FINANCIAL TIMES</b></a> (<i>The hills are alive with heroic viticulture</i>; Writer: <b>Jancis Robinson</b>; March 2008)</li>\r\n <li><a href="/files/File/SLO_conquers_NY.pdf">THE SLOVENIA TIMES</a> (<i>Slovenia Conquers New York</i>; Writer: <b>Miha Bratec</b>; June 2008)<a href="/files/File/iPohorje insiders.pdf"><br />\r\n </a></li>\r\n</ul>\r\n<p>&nbsp;</p>\r\n<p><a href="/files/File/iPostojna.pdf"><br />\r\n</a></p>\r\n<p><a href="/files/File/iDolinaSoce.pdf"><br />\r\n</a></p>\r\n<p><a href="/files/File/iLjubljana.pdf"><br />\r\n</a></p>\r\n<p><a href="/files/File/iLogarska.pdf"><br />\r\n</a></p>','stranica','online'),(29,67,0,9,'Reservation and payments','<p>Reservations for the tour must be made in writing and sent to <a href="mailto:info@insiders-slovenia.si">info@insiders-slovenia.si</a>.<br />\r\nTo reserve space on an Insider&rsquo;s Slovenia tour, a $800 / 535 EUR per person deposit is required at time of reservation.<br />\r\nFinal payment is due no later than 60 days prior to departure. Payments can be:</p>\r\n<ul>\r\n <li>wired to a Insider&rsquo;s Slovenia bank account: ABANKA VIPA d.d. Ljubljana (acc.no.: SI56 051008011682575); SWIFT CODE : ABANSI2X;&nbsp;</li>\r\n <li>&nbsp;or made by a credit card (AMEX, VISA, EC/MC, DINERS). If payment is made by a credit card, please send to <a href="mailto:info@insiders-slovenia.si">info@insiders-slovenia.si</a> the following credit card details: Visa, Mastercard: card number, expiration date, security code from reverse of the card, first and last name, address, state, country American Express, Diners: card number, expiration date, first and last name, address, state, country</li>\r\n</ul>','stranica','offline'),(37,70,0,11,'Postcards','<p>Ovde unesite novi sadrzaj stranice</p>','stranica','offline'),(36,62,0,1,'Tours','<p>&nbsp;</p>\r\n<ul>\r\n <li><a href="/en/theme-tours/">Theme tours</a></li>\r\n <li><a href="/en/short-breaks-getaways/">Short breaks / Getaways</a></li>\r\n <li><a href="/en/custom-tours/">Custom tours</a></li>\r\n</ul>','stranica','online'),(35,1,0,10,'Customer`s comments','<p>We will appreciate your comments, suggestions and even praise. Share with us your opinion about the web, the tours and Slovenia.</p>\r\n<p>Send us an e-mail on Insider`s Slovenia: <a href="mailto:info@insiders-slovenia.si"><b>info@insiders-slovenia.si</b></a></p>','stranica','online'),(39,1,0,12,'Novi link','','link','offline'),(40,1,0,13,'Nova stranica','

Ovde unesite novi sadrzaj stranice

','stranica','offline'),(41,1,0,2,'Private Jets','<p><b>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <img height="173" width="407" style="width: 410px; height: 175px;" alt="" src="/files/Image/Linxair/Uvod slikica.jpg" /></b></p>\r\n<p>&nbsp;</p>\r\n<p><b>HAVE MORE CONTROL OVER YOUR TIME</b></p>\r\n<p style="text-align: justify;">We can organise everything for a flawless and relaxing flight in the shortest time possible. Custom - made, exclusive itineraries&nbsp;are&nbsp;designed upon request.&nbsp; Just two hours or less from the time of your call, you might be able to take off towards your desired destination. Even the formalities will be arranged promptly and you will board the plane in a very short time without any airport related hassle.&nbsp;The planes can land at smaller airports and even at those which require special safety certificates -&nbsp;pilots have excellent training verified by internationally acknowledged institutions. On board technology, comfort and privacy are there for your convenience. It is all at your disposal and available for you to use at all times during the flight.</p>\r\n<p style="text-align: justify;"><b>PARTNERSHIP</b></p>\r\n<p style="text-align: justify;">We partner with <a href="http://www.linxair.com/en/#Home"><b>Linxair</b></a>, an international Point to Point business carrier. The fleet consists of&nbsp;&nbsp;&nbsp; modern, safe, comfortable and reliable Cessna and Embraer jets which are operated by experienced pilots who meet the highest standards demanded by civil aviation authorities. They are permanently exposed to the latest technologies and challenges in order to obtain and maintain the highest level of proficiency. Impeccable service and beautiful executive interiors combined with state of the art technology are here to satisfy even the most demanding customer. To each and every passenger we guarantee comfort, convenience and above all safety.<br />\r\n<br />\r\n<b>SAFETY</b><br />\r\n<br />\r\nLinxair has the Joint Aviation Authorities (European) license for Commercial Air Transport operations. All LINXAIR pilots have long lasting experience in civil aviation - the Airline Transport Pilots License (ATPL) and they regularly receive further training at the world&rsquo;s foremost recognised training facility at the &ldquo;Flight Safety International&rdquo; in the United States.<br />\r\n<br />\r\n<b>THE FLEET</b></p>\r\n<p><b><a href="/files/File/Linxair predogled za stran1.jpg">Embrarer Legacy 600</a> &nbsp;</b><b> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;&nbsp; <a href="/files/File/Linxair predogled za stran2.jpg">Cessna Citation Excel </a>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <a href="/files/File/Linxair predogled za stran3.jpg">Cessna Citation XLS</a></b>&nbsp;</p>\r\n<p><a href="/files/File/Linxair predogled za stran4.jpg"><b>Cessna Citation CJ3&nbsp;&nbsp;</b></a>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <a href="/files/File/Linxair predogled za stran5.jpg"><b>Cessna Citation CJ2+</b></a>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp; <a href="/files/File/Linxair predogled za stran6.jpg"><b>Cessna Citation CJ1</b></a></p>\r\n<p><b>CONTACT</b></p>\r\n<p>For further information on the availability and reservation of&nbsp;the fleet&nbsp;please contact us at: <a href="mailto:info@insiders-slovenia.si"><b>info@insiders-slovenia.si</b></a></p>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>','stranica','online'),(42,1,0,14,'Nova stranica','

Ovde unesite novi sadrzaj stranice

','stranica','offline'); /*!40000 ALTER TABLE `staticpage` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `template` -- DROP TABLE IF EXISTS `template`; CREATE TABLE `template` ( `template_id` int(11) NOT NULL auto_increment, `title` varchar(255) NOT NULL default '', `description` varchar(255) NOT NULL default '', PRIMARY KEY (`template_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; -- -- Dumping data for table `template` -- LOCK TABLES `template` WRITE; /*!40000 ALTER TABLE `template` DISABLE KEYS */; INSERT INTO `template` VALUES (1,'Standardni','Podrazumevani template'),(3,'Sajt mapa','Ovaj template treba da sluzi samo za mapu sajta'),(62,'Home page','Vesti, mailig lista, search, baneri grupa aranzmana'),(66,'Theme tours','Opis novog templejta'),(67,'Reservation','Opis novog templejta'),(65,'Ostale stranice','Opis novog templejta'),(68,'SHORT BREAKS','Opis novog templejta NEKI TEKST'),(70,'Postcards','This template is for postcards only'),(71,'test','Opis novog templejta'); /*!40000 ALTER TABLE `template` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `universalplugin` -- DROP TABLE IF EXISTS `universalplugin`; CREATE TABLE `universalplugin` ( `universalpluginid` int(11) NOT NULL auto_increment, `header` varchar(255) NOT NULL default '', `html` text NOT NULL, PRIMARY KEY (`universalpluginid`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; -- -- Dumping data for table `universalplugin` -- LOCK TABLES `universalplugin` WRITE; /*!40000 ALTER TABLE `universalplugin` DISABLE KEYS */; INSERT INTO `universalplugin` VALUES (19,'header logarska dolina','<embed width="775" height="150" src="/files/Flash/logarska dolina.swf" play="true" loop="true" menu="true"></embed>'),(20,'header bohinjsko','<embed width="775" height="150" src="/files/Flash/bohinjsko.swf" play="true" loop="true" menu="true"></embed>'),(21,'Korisni linkovi','<p>&nbsp;&nbsp;&nbsp;</p>\r\n<p>&nbsp; &nbsp; <a href="http://www.insiders-slovenia.si/en/important/video-gallery/27/"><span style="color: rgb(153, 204, 0);"><b>VIDEO ON SLOVENIA</b></span></a></p>\r\n<p>&nbsp;</p>\r\n<p><a href="http://www.dvd-slovenija.com/index_uk.htm"><img width="162" height="70" border="0" src="/files/Image/logo dvd slovenija.jpg" alt="" /><br />\r\n</a></p>\r\n<p>&nbsp;&nbsp;<b> </b></p>\r\n<p><b>&nbsp;&nbsp;&nbsp;</b><span style="color: rgb(153, 204, 0);"><b> MAP OF SLOVENIA</b></span></p>\r\n<p>&nbsp;&nbsp;<img width="150" height="104" alt="The map of Slovenia" src="/files/Image/about_slovenia/zemljevid.jpg" class="thumb" /></p>\r\n<p><i>&nbsp;&nbsp;&nbsp; Click the map to enlarge</i></p>\r\n<p>&nbsp;</p>\r\n<p>&nbsp; &nbsp; &nbsp; <a href="/files/File/Traveler May&amp;June.pdf"><img width="100" height="131" border="0" src="/files/Image/Traveler May&amp;June1jpg.jpg" alt="" /><br />\r\n</a></p>\r\n<p>&nbsp;&nbsp;&nbsp;&nbsp;<i> Slovenia in pictures</i></p>\r\n<p>&nbsp;</p>'),(24,'Univerzalni plugin','

Sadrzaj univerzalnog plugina

'); /*!40000 ALTER TABLE `universalplugin` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `user` -- DROP TABLE IF EXISTS `user`; CREATE TABLE `user` ( `userid` int(11) NOT NULL auto_increment, `name` varchar(255) NOT NULL default '', `surname` varchar(255) NOT NULL default '', `firm` varchar(255) NOT NULL default '', `pib` varchar(255) NOT NULL default '', `place` varchar(255) NOT NULL default '', `address` varchar(255) NOT NULL default '', `email` varchar(255) NOT NULL default '', `comment` varchar(255) NOT NULL default '', `phone` varchar(255) NOT NULL default '', `issueno` varchar(255) NOT NULL default '', `username` varchar(255) NOT NULL default '', `password` varchar(255) NOT NULL default '', `kategorija` varchar(255) NOT NULL default '', `status` varchar(255) NOT NULL default 'aktivan', `expirydate` int(11) NOT NULL default '0', PRIMARY KEY (`userid`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; -- -- Dumping data for table `user` -- LOCK TABLES `user` WRITE; /*!40000 ALTER TABLE `user` DISABLE KEYS */; INSERT INTO `user` VALUES (14,'Dejan','Stojadinovic','SD studio','102234296','Beograd','Por. S i m.','office@sdstudio.co.yu','','','','sdstudio','sdstudio','','aktivan',0),(402,'Oxkqjevp','Oxkqjevp','','','','','dmliyxtf@xlmoicmu.com','','','','dmliyxtf@xlmoicmu.com','','','Aktivan',0),(403,'Jcjmwkin','Jcjmwkin','','','','','wjpsnwfk@emgrgale.com','','','','wjpsnwfk@emgrgale.com','','','Aktivan',0),(404,'Xnbwikct','Xnbwikct','','','','','ecgnngai@foytyndf.com','','','','ecgnngai@foytyndf.com','','','Aktivan',0),(405,'Axjtetzs','Axjtetzs','','','','','fwsrqwkz@hnwgxuct.com','','','','fwsrqwkz@hnwgxuct.com','','','Aktivan',0),(401,'Thezjwxr','Thezjwxr','','','','','keopidaz@iptngfgx.com','','','','keopidaz@iptngfgx.com','','','Aktivan',0),(400,'Mardslfb','Mardslfb','','','','','bajbtjzp@lwwinirs.com','','','','bajbtjzp@lwwinirs.com','','','Aktivan',0),(399,'Hssbusgp','Hssbusgp','','','','','uiixzmzl@wsehdppe.com','','','','uiixzmzl@wsehdppe.com','','','Aktivan',0),(398,'Vnbpzttg','Vnbpzttg','','','','','ehkobsqc@atntqsqa.com','','','','ehkobsqc@atntqsqa.com','','','Aktivan',0),(397,'Mhoorgdm','Mhoorgdm','','','','','xqgbtzuc@bwywllci.com','','','','xqgbtzuc@bwywllci.com','','','Aktivan',0),(395,'Yjolacgr','Yjolacgr','','','','','qtauioqa@smfxrtek.com','','','','qtauioqa@smfxrtek.com','','','Aktivan',0),(396,'Cqupjfmb','Cqupjfmb','','','','','suqufhma@kekqxxhi.com','','','','suqufhma@kekqxxhi.com','','','Aktivan',0),(394,'Mdvorhdr','Mdvorhdr','','','','','cyshicwg@tzrbjbbq.com','','','','cyshicwg@tzrbjbbq.com','','','Aktivan',0),(393,'Yoqnpwbf','Yoqnpwbf','','','','','pseeifuu@bpifclez.com','','','','pseeifuu@bpifclez.com','','','Aktivan',0),(392,'Xikcixli','Xikcixli','','','','','lwmmedxc@jkhebkaq.com','','','','lwmmedxc@jkhebkaq.com','','','Aktivan',0),(391,'Lwtrwupz','Lwtrwupz','','','','','dqdrwgyn@pflfttvc.com','','','','dqdrwgyn@pflfttvc.com','','','Aktivan',0),(389,'Tlycanre','Tlycanre','','','','','jydiordd@xzydzqul.com','','','','jydiordd@xzydzqul.com','','','Aktivan',0),(390,'Uxxnfcuy','Uxxnfcuy','','','','','tviqgbvc@osadovhz.com','','','','tviqgbvc@osadovhz.com','','','Aktivan',0),(203,'test','test','','','','','ivan@sdstudio.co.yu','','','','ivan@sdstudio.co.yu','','','Aktivan',0),(204,'wqer','','','','wer','wer','qwer@test.ty','','wer','','','','','neaktivan',0),(205,'test','','','','qwe','qwer','qwer@test.rr','','qwer','','','','','neaktivan',0),(206,'TINA','razdrh','','','','','tina.razdrh@gmail.com','','','','tina.razdrh@gmail.com','','','Aktivan',0),(207,'Nina','Jeklič','','','','','nina@darila.com','','','','nina@darila.com','','','Aktivan',0),(208,'miha','rott','','','','','miha.rott@insiders-slovenia.si','','','','miha.rott@insiders-slovenia.si','','','Aktivan',0),(209,'Stephen','Fon','','','','','slovenefon@aol.com','','','','slovenefon@aol.com','','','Aktivan',0),(210,'m','Your surname','','','','','matejliste@gmail.com','','','','matejliste@gmail.com','','','Aktivan',0),(211,'xmamgatie','xmamgatie','','','','','wbnanw@vpjzii.com','','','','wbnanw@vpjzii.com','','','Aktivan',0),(212,'nonononon','nonononon','','','','','mememe@m2em2e.com','','','','mememe@m2em2e.com','','','Aktivan',0),(213,'dfdsdfcedf','dfdsdfcedf','','','','','exexexer2@freeiqhoh.com','','','','exexexer2@freeiqhoh.com','','','Aktivan',0),(214,'pljvhl','pljvhl','','','','','wlyzdc@gryjzj.com','','','','wlyzdc@gryjzj.com','','','Aktivan',0),(215,'flxljlo','flxljlo','','','','','wkzxfs@rlvxwf.com','','','','wkzxfs@rlvxwf.com','','','Aktivan',0),(216,'FrankieMcgee','FrankieMcgee','','','','','FrankieMcgee67@yahoo.com','','','','FrankieMcgee67@yahoo.com','','','Aktivan',0),(217,'czrethn','czrethn','','','','','xbfxrw@qagfpc.com','','','','xbfxrw@qagfpc.com','','','Aktivan',0),(218,'RosarioRush','RosarioRush','','','','','TyroneGlover66@yahoo.com','','','','TyroneGlover66@yahoo.com','','','Aktivan',0),(219,'DwayneBrooks','DwayneBrooks','','','','','DennyCross04@yahoo.com','','','','DennyCross04@yahoo.com','','','Aktivan',0),(220,'Uuyzdpzu','Uuyzdpzu','','','','','meqoehkk@ocpwpjgk.com','','','','meqoehkk@ocpwpjgk.com','','','Aktivan',0),(221,'Knwjwwhz','Knwjwwhz','','','','','ndfbihkk@cgwqoxxr.com','','','','ndfbihkk@cgwqoxxr.com','','','Aktivan',0),(222,'Egarruwi','Egarruwi','','','','','jvkkfghr@rlroqtub.com','','','','jvkkfghr@rlroqtub.com','','','Aktivan',0),(223,'Jphnzoua','Jphnzoua','','','','','mixhophm@denjogiq.com','','','','mixhophm@denjogiq.com','','','Aktivan',0),(224,'Pjsdajdk','Pjsdajdk','','','','','akczkogy@dofspzys.com','','','','akczkogy@dofspzys.com','','','Aktivan',0),(225,'Kxyonxew','Kxyonxew','','','','','cetdvbyz@nfrzrfkv.com','','','','cetdvbyz@nfrzrfkv.com','','','Aktivan',0),(226,'Epthtate','Epthtate','','','','','owvvkmrd@pafmwdlk.com','','','','owvvkmrd@pafmwdlk.com','','','Aktivan',0),(227,'Zepjztwx','Zepjztwx','','','','','lqahlhtb@attbigti.com','','','','lqahlhtb@attbigti.com','','','Aktivan',0),(228,'Aaqumejb','Aaqumejb','','','','','phevxflh@lwnlinub.com','','','','phevxflh@lwnlinub.com','','','Aktivan',0),(229,'Sdjkuqpt','Sdjkuqpt','','','','','jveoflfn@kipztdlz.com','','','','jveoflfn@kipztdlz.com','','','Aktivan',0),(230,'Vjxbgani','Vjxbgani','','','','','doevjyuv@czwsupyb.com','','','','doevjyuv@czwsupyb.com','','','Aktivan',0),(231,'Irtfiipf','Irtfiipf','','','','','esvdzqks@pbfolcvl.com','','','','esvdzqks@pbfolcvl.com','','','Aktivan',0),(232,'Ihqjgzai','Ihqjgzai','','','','','nxvwyfur@wqprahzh.com','','','','nxvwyfur@wqprahzh.com','','','Aktivan',0),(233,'Ynmhaccc','Ynmhaccc','','','','','oqcgvlwb@nckrcxsj.com','','','','oqcgvlwb@nckrcxsj.com','','','Aktivan',0),(234,'Bnjhxznn','Bnjhxznn','','','','','ropvoslm@dkqwqinf.com','','','','ropvoslm@dkqwqinf.com','','','Aktivan',0),(235,'Qnsywvvz','Qnsywvvz','','','','','zlyxyfkp@ehtoisiq.com','','','','zlyxyfkp@ehtoisiq.com','','','Aktivan',0),(236,'Ovxvzaue','Ovxvzaue','','','','','rrmjjikr@jegdwigb.com','','','','rrmjjikr@jegdwigb.com','','','Aktivan',0),(237,'Frkenvlb','Frkenvlb','','','','','dvdidonu@mqahyqdl.com','','','','dvdidonu@mqahyqdl.com','','','Aktivan',0),(238,'Gtockruw','Gtockruw','','','','','mcwzsspl@cvcothue.com','','','','mcwzsspl@cvcothue.com','','','Aktivan',0),(239,'Zyzppjxf','Zyzppjxf','','','','','pekoxwks@njnsuujq.com','','','','pekoxwks@njnsuujq.com','','','Aktivan',0),(240,'Nrwdebgr','Nrwdebgr','','','','','dvovqbsw@xglolwpc.com','','','','dvovqbsw@xglolwpc.com','','','Aktivan',0),(241,'Bolwjtmr','Bolwjtmr','','','','','kkwvctkf@birbpoxe.com','','','','kkwvctkf@birbpoxe.com','','','Aktivan',0),(242,'Unjqldnd','Unjqldnd','','','','','nmiodgyl@qqsanzpn.com','','','','nmiodgyl@qqsanzpn.com','','','Aktivan',0),(243,'Jfbjsjic','Jfbjsjic','','','','','qfkaxttl@lanpysog.com','','','','qfkaxttl@lanpysog.com','','','Aktivan',0),(244,'Dvrolxul','Dvrolxul','','','','','esuflctr@csyyiqtr.com','','','','esuflctr@csyyiqtr.com','','','Aktivan',0),(245,'Mgvsdpgc','Mgvsdpgc','','','','','ujiqdapt@liplnilt.com','','','','ujiqdapt@liplnilt.com','','','Aktivan',0),(246,'Mjgabwve','Mjgabwve','','','','','eikjhyux@ezklqdrk.com','','','','eikjhyux@ezklqdrk.com','','','Aktivan',0),(247,'Dhgfcflh','Dhgfcflh','','','','','pknqkcaz@jxiicwwp.com','','','','pknqkcaz@jxiicwwp.com','','','Aktivan',0),(248,'Blycyjhj','Blycyjhj','','','','','ynpbvjkr@thzpsosv.com','','','','ynpbvjkr@thzpsosv.com','','','Aktivan',0),(249,'Fvbfhgfw','Fvbfhgfw','','','','','fildxqhp@xllryhil.com','','','','fildxqhp@xllryhil.com','','','Aktivan',0),(250,'Bdrnelqj','Bdrnelqj','','','','','mwpjdfmr@bptxkdai.com','','','','mwpjdfmr@bptxkdai.com','','','Aktivan',0),(251,'Qpbxwueu','Qpbxwueu','','','','','ipezohad@ayrczsst.com','','','','ipezohad@ayrczsst.com','','','Aktivan',0),(252,'Xbecjlfb','Xbecjlfb','','','','','rbamuijg@rseewtnw.com','','','','rbamuijg@rseewtnw.com','','','Aktivan',0),(253,'Xymisglt','Xymisglt','','','','','zzcgrtab@hwhhielm.com','','','','zzcgrtab@hwhhielm.com','','','Aktivan',0),(254,'Uzaaehjg','Uzaaehjg','','','','','zafvaers@laurfhtt.com','','','','zafvaers@laurfhtt.com','','','Aktivan',0),(255,'Htefbtwb','Htefbtwb','','','','','wdmmrori@fpcxqxti.com','','','','wdmmrori@fpcxqxti.com','','','Aktivan',0),(256,'Zlzmjylp','Zlzmjylp','','','','','halfyutz@itnycayc.com','','','','halfyutz@itnycayc.com','','','Aktivan',0),(257,'Lnnrwjts','Lnnrwjts','','','','','fixdkkmb@xfsabslo.com','','','','fixdkkmb@xfsabslo.com','','','Aktivan',0),(258,'Fkdrqxvb','Fkdrqxvb','','','','','ojwzqoll@lmilxvig.com','','','','ojwzqoll@lmilxvig.com','','','Aktivan',0),(259,'Cwdzcfeg','Cwdzcfeg','','','','','vscbqdxf@stvbabya.com','','','','vscbqdxf@stvbabya.com','','','Aktivan',0),(260,'Adcmgeyk','Adcmgeyk','','','','','jkhgktzn@kngyeusc.com','','','','jkhgktzn@kngyeusc.com','','','Aktivan',0),(261,'Fglllgjj','Fglllgjj','','','','','xwemshvx@unpeqfgk.com','','','','xwemshvx@unpeqfgk.com','','','Aktivan',0),(262,'Ybsuqnnr','Ybsuqnnr','','','','','pnhitcuo@aqxheoft.com','','','','pnhitcuo@aqxheoft.com','','','Aktivan',0),(263,'Irmwyhil','Irmwyhil','','','','','ncdqpbtq@knrrtnmn.com','','','','ncdqpbtq@knrrtnmn.com','','','Aktivan',0),(264,'Rdofevis','Rdofevis','','','','','vnwrqhch@kqgrqwog.com','','','','vnwrqhch@kqgrqwog.com','','','Aktivan',0),(265,'Agrkifmi','Agrkifmi','','','','','iytxaelz@wnrwbiyj.com','','','','iytxaelz@wnrwbiyj.com','','','Aktivan',0),(266,'Pukqbmrn','Pukqbmrn','','','','','uwgkjymv@wuujttgd.com','','','','uwgkjymv@wuujttgd.com','','','Aktivan',0),(267,'Jpfnkfki','Jpfnkfki','','','','','fgcgnavs@soklqgbj.com','','','','fgcgnavs@soklqgbj.com','','','Aktivan',0),(268,'Xinwjahb','Xinwjahb','','','','','glskimju@nejhorxv.com','','','','glskimju@nejhorxv.com','','','Aktivan',0),(269,'Buptmvgn','Buptmvgn','','','','','ubvyfhpp@ytnclxhb.com','','','','ubvyfhpp@ytnclxhb.com','','','Aktivan',0),(270,'Yfvtdsku','Yfvtdsku','','','','','nnsxajzw@hecwwgjz.com','','','','nnsxajzw@hecwwgjz.com','','','Aktivan',0),(271,'Ioawjlvq','Ioawjlvq','','','','','wghuzotv@jrnbnvqv.com','','','','wghuzotv@jrnbnvqv.com','','','Aktivan',0),(272,'Tmrstjoe','Tmrstjoe','','','','','aykavagb@lhsdcvka.com','','','','aykavagb@lhsdcvka.com','','','Aktivan',0),(273,'Ljmnylfr','Ljmnylfr','','','','','qlczmpql@epjsjoyy.com','','','','qlczmpql@epjsjoyy.com','','','Aktivan',0),(274,'Gxuqtffl','Gxuqtffl','','','','','rhihhpyd@rnpavbsn.com','','','','rhihhpyd@rnpavbsn.com','','','Aktivan',0),(275,'Dcynrijh','Dcynrijh','','','','','vkjbqcyi@ofmabpum.com','','','','vkjbqcyi@ofmabpum.com','','','Aktivan',0),(276,'Zdldugmv','Zdldugmv','','','','','aqcmpqwy@tauksses.com','','','','aqcmpqwy@tauksses.com','','','Aktivan',0),(277,'Oolywivp','Oolywivp','','','','','znbqjuex@vbkzvktx.com','','','','znbqjuex@vbkzvktx.com','','','Aktivan',0),(278,'Rfmmsats','Rfmmsats','','','','','lrzmnwpt@bmixmgrf.com','','','','lrzmnwpt@bmixmgrf.com','','','Aktivan',0),(279,'Bbtzmeyu','Bbtzmeyu','','','','','ldcjtmgj@bdnhrucl.com','','','','ldcjtmgj@bdnhrucl.com','','','Aktivan',0),(280,'Umyreuet','Umyreuet','','','','','qznruftm@kouftdir.com','','','','qznruftm@kouftdir.com','','','Aktivan',0),(281,'Qbfcmdxu','Qbfcmdxu','','','','','qddbfweb@lymaxaee.com','','','','qddbfweb@lymaxaee.com','','','Aktivan',0),(282,'Tukfiaxh','Tukfiaxh','','','','','psjayyma@aydzelby.com','','','','psjayyma@aydzelby.com','','','Aktivan',0),(283,'Zijbyqqf','Zijbyqqf','','','','','ribowxqv@dhvidplc.com','','','','ribowxqv@dhvidplc.com','','','Aktivan',0),(284,'Vdjkfyox','Vdjkfyox','','','','','unlwhfff@vucmujry.com','','','','unlwhfff@vucmujry.com','','','Aktivan',0),(285,'Shjijmhd','Shjijmhd','','','','','vaejxulh@wmodqhsi.com','','','','vaejxulh@wmodqhsi.com','','','Aktivan',0),(286,'Gxxeupvv','Gxxeupvv','','','','','uzzljink@hcfzmvoe.com','','','','uzzljink@hcfzmvoe.com','','','Aktivan',0),(287,'Ussefahe','Ussefahe','','','','','viqzhdqg@alklwkmq.com','','','','viqzhdqg@alklwkmq.com','','','Aktivan',0),(288,'Kyoeraqr','Kyoeraqr','','','','','jmjyscyq@vhfojubm.com','','','','jmjyscyq@vhfojubm.com','','','Aktivan',0),(289,'Uwbxpaiq','Uwbxpaiq','','','','','ontitvwa@tjmitbua.com','','','','ontitvwa@tjmitbua.com','','','Aktivan',0),(290,'Ranbmgdn','Ranbmgdn','','','','','nbntqskn@ovlshemy.com','','','','nbntqskn@ovlshemy.com','','','Aktivan',0),(291,'Hvzjlisw','Hvzjlisw','','','','','uyqzkgep@veirplqa.com','','','','uyqzkgep@veirplqa.com','','','Aktivan',0),(292,'Ludqsfjc','Ludqsfjc','','','','','azqkbqut@betfrvxi.com','','','','azqkbqut@betfrvxi.com','','','Aktivan',0),(293,'Uudjxine','Uudjxine','','','','','toedcaje@jqjpbvll.com','','','','toedcaje@jqjpbvll.com','','','Aktivan',0),(294,'Yyjjlojq','Yyjjlojq','','','','','tuhvqauq@ejyymjvn.com','','','','tuhvqauq@ejyymjvn.com','','','Aktivan',0),(295,'Jyvgkzyx','Jyvgkzyx','','','','','wzotghux@nkzbwaxe.com','','','','wzotghux@nkzbwaxe.com','','','Aktivan',0),(296,'Beibwqwc','Beibwqwc','','','','','gtzwhdxv@czobypwe.com','','','','gtzwhdxv@czobypwe.com','','','Aktivan',0),(297,'Dupsaihi','Dupsaihi','','','','','olhrvlgm@axzmiazh.com','','','','olhrvlgm@axzmiazh.com','','','Aktivan',0),(298,'Gzzmnlko','Gzzmnlko','','','','','lnnzktal@frpaccew.com','','','','lnnzktal@frpaccew.com','','','Aktivan',0),(299,'Oofhzdco','Oofhzdco','','','','','gdrxwrzi@xtiwbcmy.com','','','','gdrxwrzi@xtiwbcmy.com','','','Aktivan',0),(300,'vmfvxboli','vmfvxboli','','','','','cevdvv@xdoscn.com','','','','cevdvv@xdoscn.com','','','Aktivan',0),(301,'Hrbndkob','Hrbndkob','','','','','nskkpjjh@zqoejjxu.com','','','','nskkpjjh@zqoejjxu.com','','','Aktivan',0),(302,'Klsanieh','Klsanieh','','','','','cumqvmpi@mrtubxps.com','','','','cumqvmpi@mrtubxps.com','','','Aktivan',0),(303,'Krqiaeco','Krqiaeco','','','','','irdvqqxj@hbhurzeb.com','','','','irdvqqxj@hbhurzeb.com','','','Aktivan',0),(304,'Liqwmflb','Liqwmflb','','','','','pfbhyffn@dneqwlro.com','','','','pfbhyffn@dneqwlro.com','','','Aktivan',0),(305,'Avmpvdxv','Avmpvdxv','','','','','xwafqynp@vqwuixti.com','','','','xwafqynp@vqwuixti.com','','','Aktivan',0),(306,'Rckddxue','Rckddxue','','','','','cwgajvko@uuwtvnar.com','','','','cwgajvko@uuwtvnar.com','','','Aktivan',0),(307,'Uwuygmqc','Uwuygmqc','','','','','trrofddd@ouybwcxl.com','','','','trrofddd@ouybwcxl.com','','','Aktivan',0),(308,'Xgflizou','Xgflizou','','','','','kvfcssfq@qsfguylz.com','','','','kvfcssfq@qsfguylz.com','','','Aktivan',0),(309,'Nvgrqume','Nvgrqume','','','','','iirtlxmu@atkiueik.com','','','','iirtlxmu@atkiueik.com','','','Aktivan',0),(310,'Oixtvrid','Oixtvrid','','','','','mukyqljs@lygguwqs.com','','','','mukyqljs@lygguwqs.com','','','Aktivan',0),(311,'Nkvzqtmy','Nkvzqtmy','','','','','ikqwjwjc@obeykgqx.com','','','','ikqwjwjc@obeykgqx.com','','','Aktivan',0),(312,'Yipdqdeq','Yipdqdeq','','','','','hnjgrpge@eebzpyom.com','','','','hnjgrpge@eebzpyom.com','','','Aktivan',0),(313,'Upaqvmkz','Upaqvmkz','','','','','cpshgtag@hqegqmlo.com','','','','cpshgtag@hqegqmlo.com','','','Aktivan',0),(314,'Eyhsupct','Eyhsupct','','','','','bhhdeudd@dndikkby.com','','','','bhhdeudd@dndikkby.com','','','Aktivan',0),(315,'Dcvtpchj','Dcvtpchj','','','','','dzjazibo@ahqoaoyi.com','','','','dzjazibo@ahqoaoyi.com','','','Aktivan',0),(316,'Wvetzteg','Wvetzteg','','','','','qhitdfrn@knrchonc.com','','','','qhitdfrn@knrchonc.com','','','Aktivan',0),(317,'Uwzdcpsp','Uwzdcpsp','','','','','xbtncija@znndldkm.com','','','','xbtncija@znndldkm.com','','','Aktivan',0),(318,'Svwzvruj','Svwzvruj','','','','','kdptphde@cbwyqnhr.com','','','','kdptphde@cbwyqnhr.com','','','Aktivan',0),(319,'Atrxzrie','Atrxzrie','','','','','rkrxxsnx@paztvcau.com','','','','rkrxxsnx@paztvcau.com','','','Aktivan',0),(320,'Awtdgods','Awtdgods','','','','','cogqprte@edzdrdia.com','','','','cogqprte@edzdrdia.com','','','Aktivan',0),(321,'Syfeqjfo','Syfeqjfo','','','','','eqoxuwnt@wykdggea.com','','','','eqoxuwnt@wykdggea.com','','','Aktivan',0),(322,'Oqobqrja','Oqobqrja','','','','','lzjxdboc@clgbeqss.com','','','','lzjxdboc@clgbeqss.com','','','Aktivan',0),(323,'Mwlxnleb','Mwlxnleb','','','','','qzcfxlkp@ykpftekm.com','','','','qzcfxlkp@ykpftekm.com','','','Aktivan',0),(324,'Jktxqpwl','Jktxqpwl','','','','','dfhfqzzc@qchcxgsv.com','','','','dfhfqzzc@qchcxgsv.com','','','Aktivan',0),(325,'Srnjzhyy','Srnjzhyy','','','','','cjtnnvsn@ofrhgsmi.com','','','','cjtnnvsn@ofrhgsmi.com','','','Aktivan',0),(326,'Jnqbbcsf','Jnqbbcsf','','','','','phjothiq@bikfyvzv.com','','','','phjothiq@bikfyvzv.com','','','Aktivan',0),(327,'Flkykotg','Flkykotg','','','','','iosiqzhq@ygpwkgge.com','','','','iosiqzhq@ygpwkgge.com','','','Aktivan',0),(328,'Birkjwjq','Birkjwjq','','','','','mkixcgff@brwuuqwt.com','','','','mkixcgff@brwuuqwt.com','','','Aktivan',0),(329,'Unuulzxf','Unuulzxf','','','','','iwxedtwr@htzbwsqa.com','','','','iwxedtwr@htzbwsqa.com','','','Aktivan',0),(330,'Pfneecgk','Pfneecgk','','','','','besmtjgy@ixnhlxru.com','','','','besmtjgy@ixnhlxru.com','','','Aktivan',0),(331,'Ubbodwnm','Ubbodwnm','','','','','nhvcleck@dnrlirzx.com','','','','nhvcleck@dnrlirzx.com','','','Aktivan',0),(332,'Aunfydzq','Aunfydzq','','','','','icagrhzf@lpvvgdwp.com','','','','icagrhzf@lpvvgdwp.com','','','Aktivan',0),(333,'Fizeryzu','Fizeryzu','','','','','kiedmypz@tghabxvk.com','','','','kiedmypz@tghabxvk.com','','','Aktivan',0),(334,'Pucgeshp','Pucgeshp','','','','','rxdseeon@anhdfexi.com','','','','rxdseeon@anhdfexi.com','','','Aktivan',0),(335,'Xqkahxsy','Xqkahxsy','','','','','vtknevbq@yacwnclx.com','','','','vtknevbq@yacwnclx.com','','','Aktivan',0),(336,'Jzgjefku','Jzgjefku','','','','','bcbuypga@bxwvrlyk.com','','','','bcbuypga@bxwvrlyk.com','','','Aktivan',0),(337,'Ygqotzyv','Ygqotzyv','','','','','lilzvcia@ijxvugad.com','','','','lilzvcia@ijxvugad.com','','','Aktivan',0),(338,'Jhjohhig','Jhjohhig','','','','','czkbuwme@xyxsheag.com','','','','czkbuwme@xyxsheag.com','','','Aktivan',0),(339,'Eqxqozew','Eqxqozew','','','','','yxvjrdvn@rnhilyed.com','','','','yxvjrdvn@rnhilyed.com','','','Aktivan',0),(340,'Ecybtsij','Ecybtsij','','','','','qnqzjdcz@aoyviznu.com','','','','qnqzjdcz@aoyviznu.com','','','Aktivan',0),(341,'Ikrayzso','Ikrayzso','','','','','vwfiivwy@jtkzhmkd.com','','','','vwfiivwy@jtkzhmkd.com','','','Aktivan',0),(342,'Fhbtweyj','Fhbtweyj','','','','','twswykdj@ydlvybfl.com','','','','twswykdj@ydlvybfl.com','','','Aktivan',0),(343,'Cunkzptx','Cunkzptx','','','','','btvxvuux@jmjqojki.com','','','','btvxvuux@jmjqojki.com','','','Aktivan',0),(344,'Fjmvwzug','Fjmvwzug','','','','','nmivbxbg@sgvocdzt.com','','','','nmivbxbg@sgvocdzt.com','','','Aktivan',0),(345,'Gwxtkudq','Gwxtkudq','','','','','xuqzrgvr@hsnvrrwc.com','','','','xuqzrgvr@hsnvrrwc.com','','','Aktivan',0),(346,'Bkzigryy','Bkzigryy','','','','','vvkfgluv@opzhovnc.com','','','','vvkfgluv@opzhovnc.com','','','Aktivan',0),(347,'Xwdhkewb','Xwdhkewb','','','','','ycislssk@eicqtvqf.com','','','','ycislssk@eicqtvqf.com','','','Aktivan',0),(348,'Uwksulhf','Uwksulhf','','','','','lmsqkbje@ugtuixjl.com','','','','lmsqkbje@ugtuixjl.com','','','Aktivan',0),(349,'Xmyqbjao','Xmyqbjao','','','','','nawaahgj@nioxhsah.com','','','','nawaahgj@nioxhsah.com','','','Aktivan',0),(350,'Urdnhdrh','Urdnhdrh','','','','','bchkzgqy@hohwbwio.com','','','','bchkzgqy@hohwbwio.com','','','Aktivan',0),(351,'Nylkdphw','Nylkdphw','','','','','rxqslost@zwdnvjjg.com','','','','rxqslost@zwdnvjjg.com','','','Aktivan',0),(352,'Exqfhjyx','Exqfhjyx','','','','','apulqbgt@ovlwskey.com','','','','apulqbgt@ovlwskey.com','','','Aktivan',0),(353,'Oujreuby','Oujreuby','','','','','bcmpaqss@brlucdjs.com','','','','bcmpaqss@brlucdjs.com','','','Aktivan',0),(354,'Hpwycryv','Hpwycryv','','','','','mljfhhjq@jakgozwj.com','','','','mljfhhjq@jakgozwj.com','','','Aktivan',0),(355,'Amycpxjz','Amycpxjz','','','','','ijsutdqb@kyadolnt.com','','','','ijsutdqb@kyadolnt.com','','','Aktivan',0),(356,'Rvvtpzrg','Rvvtpzrg','','','','','bqasyhwo@lqzhzuen.com','','','','bqasyhwo@lqzhzuen.com','','','Aktivan',0),(357,'Mtjkcbrk','Mtjkcbrk','','','','','enynpxnt@lesomvez.com','','','','enynpxnt@lesomvez.com','','','Aktivan',0),(358,'Hehyxbrw','Hehyxbrw','','','','','fibvpokb@wpaposuv.com','','','','fibvpokb@wpaposuv.com','','','Aktivan',0),(359,'Zssfifso','Zssfifso','','','','','plxjbwkv@ftdcmwxs.com','','','','plxjbwkv@ftdcmwxs.com','','','Aktivan',0),(360,'Jmdsovrc','Jmdsovrc','','','','','srymlkct@yzkbvdqc.com','','','','srymlkct@yzkbvdqc.com','','','Aktivan',0),(361,'Nwudxcjp','Nwudxcjp','','','','','azbvhzfo@jelulicm.com','','','','azbvhzfo@jelulicm.com','','','Aktivan',0),(362,'Fmpraaym','Fmpraaym','','','','','nbbsaqbu@nzsyknbk.com','','','','nbbsaqbu@nzsyknbk.com','','','Aktivan',0),(363,'Zkvawmpy','Zkvawmpy','','','','','avsmcozf@kcwevmmr.com','','','','avsmcozf@kcwevmmr.com','','','Aktivan',0),(364,'Bblmppfu','Bblmppfu','','','','','prvlbgfw@agrovdxp.com','','','','prvlbgfw@agrovdxp.com','','','Aktivan',0),(365,'Aedmynhi','Aedmynhi','','','','','hrzwpzbc@mhmwfxwn.com','','','','hrzwpzbc@mhmwfxwn.com','','','Aktivan',0),(366,'GlendaBarron','GlendaBarron','','','','','VernonBartlett23@yahoo.com','','','','VernonBartlett23@yahoo.com','','','Aktivan',0),(367,'Lercrqwe','Lercrqwe','','','','','jesivhki@pnkvumnw.com','','','','jesivhki@pnkvumnw.com','','','Aktivan',0),(368,'Cojbpcuw','Cojbpcuw','','','','','vjxmecow@wymmlcqi.com','','','','vjxmecow@wymmlcqi.com','','','Aktivan',0),(369,'Eangwcqw','Eangwcqw','','','','','iihrzghy@dcpofdmm.com','','','','iihrzghy@dcpofdmm.com','','','Aktivan',0),(370,'Frvlrhib','Frvlrhib','','','','','kueuddcc@eqfrosor.com','','','','kueuddcc@eqfrosor.com','','','Aktivan',0),(371,'Sdynckav','Sdynckav','','','','','kpqzzjgq@wzhzpjrz.com','','','','kpqzzjgq@wzhzpjrz.com','','','Aktivan',0),(372,'Shaqkcne','Shaqkcne','','','','','ftilbxrc@ewqrykyt.com','','','','ftilbxrc@ewqrykyt.com','','','Aktivan',0),(373,'Qhruiowd','Qhruiowd','','','','','rbqmelyz@wnuryeap.com','','','','rbqmelyz@wnuryeap.com','','','Aktivan',0),(374,'Hebsudka','Hebsudka','','','','','xvanasfp@ixkmzwen.com','','','','xvanasfp@ixkmzwen.com','','','Aktivan',0),(375,'Lbknycom','Lbknycom','','','','','eptxsvtk@jkogtofx.com','','','','eptxsvtk@jkogtofx.com','','','Aktivan',0),(376,'Rabpadaf','Rabpadaf','','','','','jfqpdjav@adnkzmgn.com','','','','jfqpdjav@adnkzmgn.com','','','Aktivan',0),(377,'Kxhviclk','Kxhviclk','','','','','cmwecogg@kjfydlkd.com','','','','cmwecogg@kjfydlkd.com','','','Aktivan',0),(378,'Xpogmzhn','Xpogmzhn','','','','','bardnybm@nfbyhcfj.com','','','','bardnybm@nfbyhcfj.com','','','Aktivan',0),(379,'Xaawvzwz','Xaawvzwz','','','','','gxihqptd@pbuqzefg.com','','','','gxihqptd@pbuqzefg.com','','','Aktivan',0),(380,'Uvpsebne','Uvpsebne','','','','','tdmuecii@rgykuscx.com','','','','tdmuecii@rgykuscx.com','','','Aktivan',0),(381,'Jkddkqne','Jkddkqne','','','','','iovdkutt@egwkntbi.com','','','','iovdkutt@egwkntbi.com','','','Aktivan',0),(382,'Hceqhzas','Hceqhzas','','','','','lgisrxvm@azndefkk.com','','','','lgisrxvm@azndefkk.com','','','Aktivan',0),(383,'Czsapskr','Czsapskr','','','','','wuubwwds@xejmjjip.com','','','','wuubwwds@xejmjjip.com','','','Aktivan',0),(384,'Agdwvpvz','Agdwvpvz','','','','','yteghewm@umtuxcsa.com','','','','yteghewm@umtuxcsa.com','','','Aktivan',0),(385,'Vvdewwmr','Vvdewwmr','','','','','djmqdpaq@wgbmzwwu.com','','','','djmqdpaq@wgbmzwwu.com','','','Aktivan',0),(386,'Nfspnhxl','Nfspnhxl','','','','','rwqjmlio@seihucdn.com','','','','rwqjmlio@seihucdn.com','','','Aktivan',0),(387,'Pxsoxwcf','Pxsoxwcf','','','','','aixpqyqh@tavcusje.com','','','','aixpqyqh@tavcusje.com','','','Aktivan',0),(388,'Achwsjwz','Achwsjwz','','','','','rflzvpsz@huadzdol.com','','','','rflzvpsz@huadzdol.com','','','Aktivan',0),(200,'Ivan','Kolarov','','','','','ivan.kolarov@gmail.com','','','','ivan.kolarov@gmail.com','','','Aktivan',0),(202,'dejan','stojadinovic','','','','','dejan@sdstudio.co.yu','','','','dejan@sdstudio.co.yu','','','Aktivan',0),(406,'Ihlewypy','Ihlewypy','','','','','cbuufnxt@cmjceobd.com','','','','cbuufnxt@cmjceobd.com','','','Aktivan',0),(407,'Muvrkgac','Muvrkgac','','','','','jhqxiaee@nnuifgay.com','','','','jhqxiaee@nnuifgay.com','','','Aktivan',0),(408,'Rtpctrke','Rtpctrke','','','','','nicpkpko@cfiqxmyg.com','','','','nicpkpko@cfiqxmyg.com','','','Aktivan',0),(409,'Xmfzibia','Xmfzibia','','','','','jfwhwkdm@erutcpqu.com','','','','jfwhwkdm@erutcpqu.com','','','Aktivan',0),(410,'Njdgygee','Njdgygee','','','','','bmcslhat@gvtqstyp.com','','','','bmcslhat@gvtqstyp.com','','','Aktivan',0),(411,'Bhfvsutp','Bhfvsutp','','','','','niqlzvbb@qizlobnn.com','','','','niqlzvbb@qizlobnn.com','','','Aktivan',0),(412,'Pdhqpikq','Pdhqpikq','','','','','twsnqlcw@jewiibcm.com','','','','twsnqlcw@jewiibcm.com','','','Aktivan',0),(413,'Iadboajs','Iadboajs','','','','','ubbyvaag@jnihmwrc.com','','','','ubbyvaag@jnihmwrc.com','','','Aktivan',0),(414,'Amkcyyil','Amkcyyil','','','','','vycbsqpp@xdzfgnmm.com','','','','vycbsqpp@xdzfgnmm.com','','','Aktivan',0),(415,'Hmjkpagi','Hmjkpagi','','','','','wknrxzlj@ozerdegm.com','','','','wknrxzlj@ozerdegm.com','','','Aktivan',0),(416,'Lqupqsnu','Lqupqsnu','','','','','uuvhnukn@mnjappnt.com','','','','uuvhnukn@mnjappnt.com','','','Aktivan',0),(417,'Dwywuvgm','Dwywuvgm','','','','','kjytsnhg@whwtkjgm.com','','','','kjytsnhg@whwtkjgm.com','','','Aktivan',0),(418,'Wrmnatoy','Wrmnatoy','','','','','xlqahdxy@wijmgxxm.com','','','','xlqahdxy@wijmgxxm.com','','','Aktivan',0),(419,'Tytagqlm','Tytagqlm','','','','','ygzwiuat@pdxzoklw.com','','','','ygzwiuat@pdxzoklw.com','','','Aktivan',0),(420,'Oovnbnxb','Oovnbnxb','','','','','aikdnheo@evykyfon.com','','','','aikdnheo@evykyfon.com','','','Aktivan',0),(421,'Rpxutneb','Rpxutneb','','','','','wbfszvbj@botowdux.com','','','','wbfszvbj@botowdux.com','','','Aktivan',0),(422,'Zymxwpsa','Zymxwpsa','','','','','zeckmoer@tobhqbuq.com','','','','zeckmoer@tobhqbuq.com','','','Aktivan',0),(423,'Emnjixoz','Emnjixoz','','','','','adsaireh@jjrlnuef.com','','','','adsaireh@jjrlnuef.com','','','Aktivan',0),(424,'Rqtkojqb','Rqtkojqb','','','','','hrkktzvc@brwaucqk.com','','','','hrkktzvc@brwaucqk.com','','','Aktivan',0),(425,'Jqwxaiyu','Jqwxaiyu','','','','','hlrsmabx@drotvksa.com','','','','hlrsmabx@drotvksa.com','','','Aktivan',0),(426,'Wrjjsaex','Wrjjsaex','','','','','xpuftjdr@rrwpifyf.com','','','','xpuftjdr@rrwpifyf.com','','','Aktivan',0),(427,'Pxtaakqn','Pxtaakqn','','','','','whvglqxm@zyiruorc.com','','','','whvglqxm@zyiruorc.com','','','Aktivan',0),(428,'Krbmgpfk','Krbmgpfk','','','','','jnishlpa@gvadzkos.com','','','','jnishlpa@gvadzkos.com','','','Aktivan',0),(429,'Aifvzmvm','Aifvzmvm','','','','','folgmxtk@ajtjrafe.com','','','','folgmxtk@ajtjrafe.com','','','Aktivan',0),(430,'Hmpqroxq','Hmpqroxq','','','','','mytcgecg@tauqlipl.com','','','','mytcgecg@tauqlipl.com','','','Aktivan',0),(431,'Wteddhhc','Wteddhhc','','','','','gphrpjou@icbeibkz.com','','','','gphrpjou@icbeibkz.com','','','Aktivan',0),(432,'Fwnfymzz','Fwnfymzz','','','','','svpwjgnz@owdvceza.com','','','','svpwjgnz@owdvceza.com','','','Aktivan',0),(433,'Pxdtxwhu','Pxdtxwhu','','','','','gvrizqkn@mohnvcws.com','','','','gvrizqkn@mohnvcws.com','','','Aktivan',0),(434,'Xitbdrnk','Xitbdrnk','','','','','rgrcwvlt@bumdmguo.com','','','','rgrcwvlt@bumdmguo.com','','','Aktivan',0),(435,'Gummujgy','Gummujgy','','','','','vaqbhcbe@quedqqyb.com','','','','vaqbhcbe@quedqqyb.com','','','Aktivan',0),(436,'Wnmjtuut','Wnmjtuut','','','','','dhrkdcym@rgdprowg.com','','','','dhrkdcym@rgdprowg.com','','','Aktivan',0),(437,'Tcqkawqc','Tcqkawqc','','','','','thdlteit@cnugqxnr.com','','','','thdlteit@cnugqxnr.com','','','Aktivan',0),(438,'Tdklfksg','Tdklfksg','','','','','ijyzqbgu@lwudtbjf.com','','','','ijyzqbgu@lwudtbjf.com','','','Aktivan',0),(439,'Ujfiygik','Ujfiygik','','','','','lwnctjip@wmlzkdtg.com','','','','lwnctjip@wmlzkdtg.com','','','Aktivan',0),(440,'Cliuywyb','Cliuywyb','','','','','afsmmazt@frsyprol.com','','','','afsmmazt@frsyprol.com','','','Aktivan',0),(441,'Wkrwesai','Wkrwesai','','','','','ahzscddo@ujubirsd.com','','','','ahzscddo@ujubirsd.com','','','Aktivan',0),(442,'Bycnlqbn','Bycnlqbn','','','','','jdgmmgrc@eqdbhipa.com','','','','jdgmmgrc@eqdbhipa.com','','','Aktivan',0),(443,'Rmuzijom','Rmuzijom','','','','','nonkwoez@cekimokv.com','','','','nonkwoez@cekimokv.com','','','Aktivan',0),(444,'Vrmdzbsa','Vrmdzbsa','','','','','uyxdqcbm@mvbzwfhf.com','','','','uyxdqcbm@mvbzwfhf.com','','','Aktivan',0),(445,'Zpwngojw','Zpwngojw','','','','','sdqbpxjl@rfugjrnm.com','','','','sdqbpxjl@rfugjrnm.com','','','Aktivan',0),(446,'Ksbtnnkp','Ksbtnnkp','','','','','faauvpey@iwvyqduz.com','','','','faauvpey@iwvyqduz.com','','','Aktivan',0),(447,'Mzgmloyt','Mzgmloyt','','','','','mejrkxeu@egnixder.com','','','','mejrkxeu@egnixder.com','','','Aktivan',0),(448,'Okejeaib','Okejeaib','','','','','brooltzj@tvnjtoqf.com','','','','brooltzj@tvnjtoqf.com','','','Aktivan',0),(449,'Vwwrszoq','Vwwrszoq','','','','','gayyerix@vhsizkin.com','','','','gayyerix@vhsizkin.com','','','Aktivan',0),(450,'Rlkcszep','Rlkcszep','','','','','eiwfthts@jiqglmid.com','','','','eiwfthts@jiqglmid.com','','','Aktivan',0),(451,'Wohkligp','Wohkligp','','','','','iwxladtq@ysndrqwv.com','','','','iwxladtq@ysndrqwv.com','','','Aktivan',0),(452,'Fevbonpk','Fevbonpk','','','','','lrmfongi@owcesdmn.com','','','','lrmfongi@owcesdmn.com','','','Aktivan',0),(453,'Dyotoiyo','Dyotoiyo','','','','','fupjbjje@nandgmoj.com','','','','fupjbjje@nandgmoj.com','','','Aktivan',0),(454,'Favudreo','Favudreo','','','','','sysrruyc@bdtxailx.com','','','','sysrruyc@bdtxailx.com','','','Aktivan',0),(455,'tsjgbsjygc','tsjgbsjygc','','','','','namqng@pbajil.com','','','','namqng@pbajil.com','','','Aktivan',0),(456,'vnomdc','vnomdc','','','','','ojjmms@kmrfis.com','','','','ojjmms@kmrfis.com','','','Aktivan',0),(457,'mdwvwrjou','mdwvwrjou','','','','','nqglig@pdckfd.com','','','','nqglig@pdckfd.com','','','Aktivan',0),(458,'kdgufguwth','kdgufguwth','','','','','urswys@ltutqf.com','','','','urswys@ltutqf.com','','','Aktivan',0),(459,'Fkqmlffl','Fkqmlffl','','','','','ihzwkvgz@xnldgtoq.com','','','','ihzwkvgz@xnldgtoq.com','','','Aktivan',0),(460,'Nidltgbs','Nidltgbs','','','','','tpmkeuuv@bfzvkguc.com','','','','tpmkeuuv@bfzvkguc.com','','','Aktivan',0),(461,'Kloabmiu','Kloabmiu','','','','','pjlseqke@lawsofwf.com','','','','pjlseqke@lawsofwf.com','','','Aktivan',0),(462,'Lstkunfl','Lstkunfl','','','','','najwxzzj@gmavlpry.com','','','','najwxzzj@gmavlpry.com','','','Aktivan',0),(463,'Jmshikjf','Jmshikjf','','','','','rzfhekpc@lafffkss.com','','','','rzfhekpc@lafffkss.com','','','Aktivan',0),(464,'Vcuhozuv','Vcuhozuv','','','','','aihilpur@ahkunwdc.com','','','','aihilpur@ahkunwdc.com','','','Aktivan',0),(465,'Fnjenqka','Fnjenqka','','','','','yjshwstt@lqaspcsw.com','','','','yjshwstt@lqaspcsw.com','','','Aktivan',0),(466,'Bvymczuy','Bvymczuy','','','','','jbndjisa@vxukiezp.com','','','','jbndjisa@vxukiezp.com','','','Aktivan',0),(467,'Wbdllyyv','Wbdllyyv','','','','','owmrzkfb@dbxxrjny.com','','','','owmrzkfb@dbxxrjny.com','','','Aktivan',0),(468,'Zvkiahpv','Zvkiahpv','','','','','jvbdtcft@wfrcomyh.com','','','','jvbdtcft@wfrcomyh.com','','','Aktivan',0),(469,'Yopadywr','Yopadywr','','','','','qrlaqolm@wuoegdki.com','','','','qrlaqolm@wuoegdki.com','','','Aktivan',0),(470,'Xptjfapk','Xptjfapk','','','','','gmvmbmgi@nudngmhx.com','','','','gmvmbmgi@nudngmhx.com','','','Aktivan',0),(471,'Hmqercja','Hmqercja','','','','','hwnzkewv@cwdgscrt.com','','','','hwnzkewv@cwdgscrt.com','','','Aktivan',0),(472,'Dytbwyfn','Dytbwyfn','','','','','vsktnuxk@isobcunq.com','','','','vsktnuxk@isobcunq.com','','','Aktivan',0),(473,'Zutfghks','Zutfghks','','','','','xqzecmhh@njtvewfe.com','','','','xqzecmhh@njtvewfe.com','','','Aktivan',0),(474,'Nsqycsyo','Nsqycsyo','','','','','ibwiuxyi@hprpiuew.com','','','','ibwiuxyi@hprpiuew.com','','','Aktivan',0),(475,'Mhiamodr','Mhiamodr','','','','','euheaxrd@iorksrth.com','','','','euheaxrd@iorksrth.com','','','Aktivan',0),(476,'Kjgwgvkz','Kjgwgvkz','','','','','osuunwag@juvsefrk.com','','','','osuunwag@juvsefrk.com','','','Aktivan',0),(477,'Juqwwihn','Juqwwihn','','','','','ldrskkmv@yphhswfw.com','','','','ldrskkmv@yphhswfw.com','','','Aktivan',0),(478,'Bxknbmfe','Bxknbmfe','','','','','gthfcieh@yvhctwme.com','','','','gthfcieh@yvhctwme.com','','','Aktivan',0),(479,'Jqplfujv','Jqplfujv','','','','','qtdvoejo@ldbphyyn.com','','','','qtdvoejo@ldbphyyn.com','','','Aktivan',0),(480,'Dsenzucu','Dsenzucu','','','','','zdseahxc@jeqyhriw.com','','','','zdseahxc@jeqyhriw.com','','','Aktivan',0),(481,'Uxeljzgw','Uxeljzgw','','','','','buuvajrs@rmyfqylz.com','','','','buuvajrs@rmyfqylz.com','','','Aktivan',0),(482,'Kfjgjagg','Kfjgjagg','','','','','epncsbfa@guslnfmx.com','','','','epncsbfa@guslnfmx.com','','','Aktivan',0),(483,'Jxyfcnqt','Jxyfcnqt','','','','','lgfkrzvs@jncxgjsr.com','','','','lgfkrzvs@jncxgjsr.com','','','Aktivan',0),(484,'Cnjehoet','Cnjehoet','','','','','hxmduttl@ykkjrtcl.com','','','','hxmduttl@ykkjrtcl.com','','','Aktivan',0),(485,'Bmdhbevl','Bmdhbevl','','','','','sylaorbs@ugwxpkbe.com','','','','sylaorbs@ugwxpkbe.com','','','Aktivan',0),(486,'Ulvknhxm','Ulvknhxm','','','','','nzhzitcw@iofwmwhq.com','','','','nzhzitcw@iofwmwhq.com','','','Aktivan',0),(487,'Buzcrhbr','Buzcrhbr','','','','','yogzhyvn@krnilksd.com','','','','yogzhyvn@krnilksd.com','','','Aktivan',0),(488,'Svnzzswh','Svnzzswh','','','','','lhqrnyzk@ahidwvht.com','','','','lhqrnyzk@ahidwvht.com','','','Aktivan',0),(489,'Zzjhndqh','Zzjhndqh','','','','','llumwxqk@oesotfhy.com','','','','llumwxqk@oesotfhy.com','','','Aktivan',0),(490,'Hqmdrrwh','Hqmdrrwh','','','','','yyvpkubt@ruykrkle.com','','','','yyvpkubt@ruykrkle.com','','','Aktivan',0),(491,'Sirptzyh','Sirptzyh','','','','','vjcghshh@aqhbrkqq.com','','','','vjcghshh@aqhbrkqq.com','','','Aktivan',0),(492,'Vonafrtr','Vonafrtr','','','','','olyicesj@vvmczroz.com','','','','olyicesj@vvmczroz.com','','','Aktivan',0),(493,'Mzatxopv','Mzatxopv','','','','','nfuwzwys@kvmbqtlg.com','','','','nfuwzwys@kvmbqtlg.com','','','Aktivan',0),(494,'Gkgcaiyc','Gkgcaiyc','','','','','cizyjxtw@chovcspy.com','','','','cizyjxtw@chovcspy.com','','','Aktivan',0),(495,'Eciufhei','Eciufhei','','','','','rxgayjmv@jcmuuynv.com','','','','rxgayjmv@jcmuuynv.com','','','Aktivan',0),(496,'Lraxrnvw','Lraxrnvw','','','','','smkudjda@xpbymfws.com','','','','smkudjda@xpbymfws.com','','','Aktivan',0),(497,'Whxecglv','Whxecglv','','','','','qbfaucaj@gcnqoqow.com','','','','qbfaucaj@gcnqoqow.com','','','Aktivan',0),(498,'Kieextva','Kieextva','','','','','pevojnym@xborpadw.com','','','','pevojnym@xborpadw.com','','','Aktivan',0),(499,'Hspfiiev','Hspfiiev','','','','','epjyezbu@mpysueom.com','','','','epjyezbu@mpysueom.com','','','Aktivan',0),(500,'Qmdkzijc','Qmdkzijc','','','','','unplgkua@kqhtquys.com','','','','unplgkua@kqhtquys.com','','','Aktivan',0),(501,'Tkxxtdpe','Tkxxtdpe','','','','','mhvsgjwh@ftdzsmmw.com','','','','mhvsgjwh@ftdzsmmw.com','','','Aktivan',0),(502,'Yjnvdpda','Yjnvdpda','','','','','ueapdvsq@gomsnehy.com','','','','ueapdvsq@gomsnehy.com','','','Aktivan',0),(503,'Oesaxopb','Oesaxopb','','','','','esysvobj@mhswmxua.com','','','','esysvobj@mhswmxua.com','','','Aktivan',0),(504,'Cpqxjked','Cpqxjked','','','','','juvzirus@oadwctes.com','','','','juvzirus@oadwctes.com','','','Aktivan',0),(505,'Drywygqm','Drywygqm','','','','','duppdgoe@mrkbwrcr.com','','','','duppdgoe@mrkbwrcr.com','','','Aktivan',0),(506,'Ztaqpydu','Ztaqpydu','','','','','rsjyfdfm@ibksmglb.com','','','','rsjyfdfm@ibksmglb.com','','','Aktivan',0),(507,'Vuohuonz','Vuohuonz','','','','','lmvodbme@gpczjlgw.com','','','','lmvodbme@gpczjlgw.com','','','Aktivan',0),(508,'Gutwrgqw','Gutwrgqw','','','','','avrfpxfx@qtifloos.com','','','','avrfpxfx@qtifloos.com','','','Aktivan',0),(509,'Pffhuigf','Pffhuigf','','','','','dibylzco@kmtlempw.com','','','','dibylzco@kmtlempw.com','','','Aktivan',0),(510,'Ffvuadfu','Ffvuadfu','','','','','kcgqdkhc@dvdlqprb.com','','','','kcgqdkhc@dvdlqprb.com','','','Aktivan',0),(511,'Goduqeoh','Goduqeoh','','','','','crptcuyf@juyvuzus.com','','','','crptcuyf@juyvuzus.com','','','Aktivan',0),(512,'Qezwpmeo','Qezwpmeo','','','','','pvyqpima@ppaqijbz.com','','','','pvyqpima@ppaqijbz.com','','','Aktivan',0),(513,'Noxdbkdn','Noxdbkdn','','','','','cyyrnuzo@iqrgermw.com','','','','cyyrnuzo@iqrgermw.com','','','Aktivan',0),(514,'Otwqamyf','Otwqamyf','','','','','owluoptv@ehiatowa.com','','','','owluoptv@ehiatowa.com','','','Aktivan',0),(515,'Qfqrcowa','Qfqrcowa','','','','','jdovuhjk@pcanflse.com','','','','jdovuhjk@pcanflse.com','','','Aktivan',0),(516,'Tfibmaec','Tfibmaec','','','','','mqrxggvr@hntcepim.com','','','','mqrxggvr@hntcepim.com','','','Aktivan',0),(517,'Ydmdesxg','Ydmdesxg','','','','','bgkdiunb@vpaxstbt.com','','','','bgkdiunb@vpaxstbt.com','','','Aktivan',0),(518,'Lgkjwdvo','Lgkjwdvo','','','','','eevphpwh@bkrpdyyw.com','','','','eevphpwh@bkrpdyyw.com','','','Aktivan',0),(519,'Dtlyuxph','Dtlyuxph','','','','','ljsjisdi@zkpfyevj.com','','','','ljsjisdi@zkpfyevj.com','','','Aktivan',0),(520,'Lttumlzk','Lttumlzk','','','','','vhpssejm@omavruxg.com','','','','vhpssejm@omavruxg.com','','','Aktivan',0),(521,'Cbghicte','Cbghicte','','','','','udgeccnu@rdjcoywz.com','','','','udgeccnu@rdjcoywz.com','','','Aktivan',0),(522,'Pcldjdis','Pcldjdis','','','','','fubbptix@slhltfwz.com','','','','fubbptix@slhltfwz.com','','','Aktivan',0),(523,'Drhpuruf','Drhpuruf','','','','','expbrctp@hhzgjflt.com','','','','expbrctp@hhzgjflt.com','','','Aktivan',0),(524,'Tkigeiyd','Tkigeiyd','','','','','woyrmzie@jbwkfios.com','','','','woyrmzie@jbwkfios.com','','','Aktivan',0),(525,'Yvufezwf','Yvufezwf','','','','','vkrucire@bwnnlzpx.com','','','','vkrucire@bwnnlzpx.com','','','Aktivan',0),(526,'Lgbvvuvt','Lgbvvuvt','','','','','wcpvvpyy@vzioakav.com','','','','wcpvvpyy@vzioakav.com','','','Aktivan',0),(527,'Fatngujj','Fatngujj','','','','','zyzxwizh@butfdxdp.com','','','','zyzxwizh@butfdxdp.com','','','Aktivan',0),(528,'Lcfcfett','Lcfcfett','','','','','aybvwufd@hkwvosys.com','','','','aybvwufd@hkwvosys.com','','','Aktivan',0),(529,'Oxwzekmc','Oxwzekmc','','','','','sttbyros@xiysuvcv.com','','','','sttbyros@xiysuvcv.com','','','Aktivan',0),(530,'Ktykdffs','Ktykdffs','','','','','eucngret@mqdboedv.com','','','','eucngret@mqdboedv.com','','','Aktivan',0),(531,'Unykipct','Unykipct','','','','','gadavhoq@wupwkcmz.com','','','','gadavhoq@wupwkcmz.com','','','Aktivan',0),(532,'Exayycbb','Exayycbb','','','','','tovjzojx@gzxpahzv.com','','','','tovjzojx@gzxpahzv.com','','','Aktivan',0),(533,'Mcnythve','Mcnythve','','','','','hymabond@vgmkgucs.com','','','','hymabond@vgmkgucs.com','','','Aktivan',0),(534,'Gbrxpibc','Gbrxpibc','','','','','dgtsupcl@uuobeafb.com','','','','dgtsupcl@uuobeafb.com','','','Aktivan',0),(535,'Tcyhahwk','Tcyhahwk','','','','','bnzpdemq@mqctkysi.com','','','','bnzpdemq@mqctkysi.com','','','Aktivan',0),(536,'Vzbdlkiv','Vzbdlkiv','','','','','gbxxljdl@fkyacfeu.com','','','','gbxxljdl@fkyacfeu.com','','','Aktivan',0),(537,'Kfaxfccu','Kfaxfccu','','','','','jpvkodvl@sdmyxzmc.com','','','','jpvkodvl@sdmyxzmc.com','','','Aktivan',0),(538,'Xnmylmtn','Xnmylmtn','','','','','hjrooosl@xclvahkx.com','','','','hjrooosl@xclvahkx.com','','','Aktivan',0),(539,'Bsloxmdn','Bsloxmdn','','','','','hglszfjw@exozqkkt.com','','','','hglszfjw@exozqkkt.com','','','Aktivan',0),(540,'Hhdiufqn','Hhdiufqn','','','','','ahsgdukk@vnkjdllk.com','','','','ahsgdukk@vnkjdllk.com','','','Aktivan',0),(541,'Igwjtnaj','Igwjtnaj','','','','','xqqkmrqw@dqaocilz.com','','','','xqqkmrqw@dqaocilz.com','','','Aktivan',0),(542,'Dbhrlsdh','Dbhrlsdh','','','','','ioesgwhb@pvosvonn.com','','','','ioesgwhb@pvosvonn.com','','','Aktivan',0),(543,'Inauilpa','Inauilpa','','','','','pdobfyin@ezvesatr.com','','','','pdobfyin@ezvesatr.com','','','Aktivan',0),(544,'Wtenryjg','Wtenryjg','','','','','lxzdgwjk@bunbjtvd.com','','','','lxzdgwjk@bunbjtvd.com','','','Aktivan',0),(545,'Wcditbww','Wcditbww','','','','','itzmlbec@sjavqzkg.com','','','','itzmlbec@sjavqzkg.com','','','Aktivan',0),(546,'Zyjcaukv','Zyjcaukv','','','','','ojipgpic@cirtozsl.com','','','','ojipgpic@cirtozsl.com','','','Aktivan',0),(547,'Rctptydp','Rctptydp','','','','','lpbacoht@iilmsucn.com','','','','lpbacoht@iilmsucn.com','','','Aktivan',0),(548,'Dfzjwtob','Dfzjwtob','','','','','rvtnbzqn@ppnntyhz.com','','','','rvtnbzqn@ppnntyhz.com','','','Aktivan',0),(549,'Qzizozsx','Qzizozsx','','','','','cymvkgrw@fwhysbsd.com','','','','cymvkgrw@fwhysbsd.com','','','Aktivan',0),(550,'Ubvpubuk','Ubvpubuk','','','','','wfwvmcwe@xzishfpe.com','','','','wfwvmcwe@xzishfpe.com','','','Aktivan',0),(551,'Tnornsge','Tnornsge','','','','','ljlsixdf@sahjbmbw.com','','','','ljlsixdf@sahjbmbw.com','','','Aktivan',0),(552,'Tglaklzd','Tglaklzd','','','','','tbhjwtsu@bvhpwqxx.com','','','','tbhjwtsu@bvhpwqxx.com','','','Aktivan',0),(553,'Qluvtspk','Qluvtspk','','','','','oovwmpew@khtfwvxa.com','','','','oovwmpew@khtfwvxa.com','','','Aktivan',0),(554,'Raumdjcu','Raumdjcu','','','','','cqswzsdc@xsavchjn.com','','','','cqswzsdc@xsavchjn.com','','','Aktivan',0),(555,'Msgmegqc','Msgmegqc','','','','','pohttcil@fzibgeyp.com','','','','pohttcil@fzibgeyp.com','','','Aktivan',0),(556,'Ppwxlgjp','Ppwxlgjp','','','','','eqenhpor@wdjczrim.com','','','','eqenhpor@wdjczrim.com','','','Aktivan',0),(557,'Jlleucat','Jlleucat','','','','','heiebilc@sjlynsqd.com','','','','heiebilc@sjlynsqd.com','','','Aktivan',0),(558,'Rtrfteix','Rtrfteix','','','','','iapcskzg@flriioln.com','','','','iapcskzg@flriioln.com','','','Aktivan',0),(559,'Gdiutiqb','Gdiutiqb','','','','','voepkove@igdwjkjp.com','','','','voepkove@igdwjkjp.com','','','Aktivan',0),(560,'Nzezyiuh','Nzezyiuh','','','','','bkzlsvqp@ozbkovot.com','','','','bkzlsvqp@ozbkovot.com','','','Aktivan',0),(561,'Snegbazl','Snegbazl','','','','','nccstxps@njwymflk.com','','','','nccstxps@njwymflk.com','','','Aktivan',0),(562,'Mqvihykd','Mqvihykd','','','','','ybarsmqd@btlmwvet.com','','','','ybarsmqd@btlmwvet.com','','','Aktivan',0),(563,'Tehgzuec','Tehgzuec','','','','','cowqlbwe@ouwpijcs.com','','','','cowqlbwe@ouwpijcs.com','','','Aktivan',0),(564,'Xgyxwbrh','Xgyxwbrh','','','','','wudafazg@nzctkewt.com','','','','wudafazg@nzctkewt.com','','','Aktivan',0),(565,'Cvwtrviq','Cvwtrviq','','','','','tyqvwfju@kecmrjuh.com','','','','tyqvwfju@kecmrjuh.com','','','Aktivan',0),(566,'Wbiqahrj','Wbiqahrj','','','','','zbvvrezz@mfjljucs.com','','','','zbvvrezz@mfjljucs.com','','','Aktivan',0),(567,'Bczdoxwm','Bczdoxwm','','','','','vgxsqaan@hjshrsuf.com','','','','vgxsqaan@hjshrsuf.com','','','Aktivan',0),(568,'Zcweqgpa','Zcweqgpa','','','','','pavukyqk@eydijpyo.com','','','','pavukyqk@eydijpyo.com','','','Aktivan',0),(569,'Zukwlipg','Zukwlipg','','','','','tivmlscj@quulqybm.com','','','','tivmlscj@quulqybm.com','','','Aktivan',0),(570,'Ttfxqwjm','Ttfxqwjm','','','','','cgnzqeub@utsldhmy.com','','','','cgnzqeub@utsldhmy.com','','','Aktivan',0),(571,'Mqissvxj','Mqissvxj','','','','','xsuwgqlo@afgwfsnf.com','','','','xsuwgqlo@afgwfsnf.com','','','Aktivan',0),(572,'Pvbmrbub','Pvbmrbub','','','','','pcxwjclt@brhnewpo.com','','','','pcxwjclt@brhnewpo.com','','','Aktivan',0),(573,'Vqunuvok','Vqunuvok','','','','','zejprwms@proxhatc.com','','','','zejprwms@proxhatc.com','','','Aktivan',0),(574,'Qvvhijul','Qvvhijul','','','','','jvjoielg@hakmijzp.com','','','','jvjoielg@hakmijzp.com','','','Aktivan',0),(575,'Chqkakat','Chqkakat','','','','','iqpvjnly@fnaxlfke.com','','','','iqpvjnly@fnaxlfke.com','','','Aktivan',0),(576,'Pilloamw','Pilloamw','','','','','rlcqwbfg@fiqwcoqk.com','','','','rlcqwbfg@fiqwcoqk.com','','','Aktivan',0),(577,'Bpskvapi','Bpskvapi','','','','','gftvwamh@qznakxwq.com','','','','gftvwamh@qznakxwq.com','','','Aktivan',0),(578,'Jqkvlsqy','Jqkvlsqy','','','','','tqqnqskd@bcjcnzmp.com','','','','tqqnqskd@bcjcnzmp.com','','','Aktivan',0),(579,'Eftxevnl','Eftxevnl','','','','','lyedrelt@jzzkqqtv.com','','','','lyedrelt@jzzkqqtv.com','','','Aktivan',0),(580,'Rhsvcipk','Rhsvcipk','','','','','euefollj@thfirucs.com','','','','euefollj@thfirucs.com','','','Aktivan',0),(581,'Grqbxszz','Grqbxszz','','','','','hhecwxar@emuhoqfs.com','','','','hhecwxar@emuhoqfs.com','','','Aktivan',0),(582,'Lsncycys','Lsncycys','','','','','nqiupnnm@xmbynhpo.com','','','','nqiupnnm@xmbynhpo.com','','','Aktivan',0),(583,'Uaajmwrg','Uaajmwrg','','','','','xpryceni@dnhzkpeu.com','','','','xpryceni@dnhzkpeu.com','','','Aktivan',0),(584,'Gymbgobv','Gymbgobv','','','','','jnojpsoy@wslkvrhm.com','','','','jnojpsoy@wslkvrhm.com','','','Aktivan',0),(585,'Jxkqhuud','Jxkqhuud','','','','','bosrgsaw@ntsvjhhp.com','','','','bosrgsaw@ntsvjhhp.com','','','Aktivan',0),(586,'Fhrewuid','Fhrewuid','','','','','wvdxqiih@bkarqznl.com','','','','wvdxqiih@bkarqznl.com','','','Aktivan',0),(587,'Llrxnftn','Llrxnftn','','','','','epmtzlll@zyezmtof.com','','','','epmtzlll@zyezmtof.com','','','Aktivan',0),(588,'Xsozsobz','Xsozsobz','','','','','tixvyrix@jlomgfni.com','','','','tixvyrix@jlomgfni.com','','','Aktivan',0),(589,'Tzqzhqrr','Tzqzhqrr','','','','','aokmuqyn@qxylvsyy.com','','','','aokmuqyn@qxylvsyy.com','','','Aktivan',0),(590,'Txyxdhlm','Txyxdhlm','','','','','znmqhcfx@jadfiebb.com','','','','znmqhcfx@jadfiebb.com','','','Aktivan',0),(591,'Skjfkabw','Skjfkabw','','','','','syqotnyb@efoqjtdi.com','','','','syqotnyb@efoqjtdi.com','','','Aktivan',0),(592,'Zlufypmz','Zlufypmz','','','','','auhjuorq@qpakxhhk.com','','','','auhjuorq@qpakxhhk.com','','','Aktivan',0),(593,'Suvjyzvc','Suvjyzvc','','','','','waqokygq@ggmpnpcg.com','','','','waqokygq@ggmpnpcg.com','','','Aktivan',0),(594,'Tkrqtdmc','Tkrqtdmc','','','','','zeeuosmw@rxmznnnl.com','','','','zeeuosmw@rxmznnnl.com','','','Aktivan',0),(595,'Xrqazydt','Xrqazydt','','','','','wmpjehjg@vezkwcpd.com','','','','wmpjehjg@vezkwcpd.com','','','Aktivan',0),(596,'Comyioqk','Comyioqk','','','','','yvwfianu@ymadywgd.com','','','','yvwfianu@ymadywgd.com','','','Aktivan',0),(597,'Ytgmluzq','Ytgmluzq','','','','','cogtygjx@inmcjgxv.com','','','','cogtygjx@inmcjgxv.com','','','Aktivan',0),(598,'Bbbxgxmb','Bbbxgxmb','','','','','isdcborb@pztefwsu.com','','','','isdcborb@pztefwsu.com','','','Aktivan',0),(599,'Zuwafwlf','Zuwafwlf','','','','','vxyjfsgh@cpmyskdy.com','','','','vxyjfsgh@cpmyskdy.com','','','Aktivan',0),(600,'Vpyqtthf','Vpyqtthf','','','','','jfdsudbm@rgmjizxg.com','','','','jfdsudbm@rgmjizxg.com','','','Aktivan',0),(601,'Ykecsrht','Ykecsrht','','','','','gbnkzwud@bakwnjbb.com','','','','gbnkzwud@bakwnjbb.com','','','Aktivan',0),(602,'Zujjmujl','Zujjmujl','','','','','uwuosjum@ygsqpfvn.com','','','','uwuosjum@ygsqpfvn.com','','','Aktivan',0),(603,'Zxbtjncg','Zxbtjncg','','','','','iiqylobd@lmieynvr.com','','','','iiqylobd@lmieynvr.com','','','Aktivan',0),(604,'Jhgvjmib','Jhgvjmib','','','','','zytjtyaw@xxlittyp.com','','','','zytjtyaw@xxlittyp.com','','','Aktivan',0),(605,'Wuwhilvg','Wuwhilvg','','','','','ieslwyvy@tfdklnox.com','','','','ieslwyvy@tfdklnox.com','','','Aktivan',0),(606,'Fvpbdzja','Fvpbdzja','','','','','zmapwvkn@hxqorool.com','','','','zmapwvkn@hxqorool.com','','','Aktivan',0),(607,'Jsrhramv','Jsrhramv','','','','','babqqsps@kwwxapcf.com','','','','babqqsps@kwwxapcf.com','','','Aktivan',0),(608,'Inbwvoup','Inbwvoup','','','','','ckeurbtz@mrhsroce.com','','','','ckeurbtz@mrhsroce.com','','','Aktivan',0),(609,'Otusifti','Otusifti','','','','','esjnomdo@tnsydlmn.com','','','','esjnomdo@tnsydlmn.com','','','Aktivan',0),(610,'Najdljto','Najdljto','','','','','rrnoaxhy@bkwsyomr.com','','','','rrnoaxhy@bkwsyomr.com','','','Aktivan',0),(611,'Xegbjkah','Xegbjkah','','','','','jctqluoh@ywhivyku.com','','','','jctqluoh@ywhivyku.com','','','Aktivan',0),(612,'Axvhsxmc','Axvhsxmc','','','','','mzzzqlvi@dfybiipo.com','','','','mzzzqlvi@dfybiipo.com','','','Aktivan',0),(613,'Nbqjnobp','Nbqjnobp','','','','','fcalyhns@vmbshmts.com','','','','fcalyhns@vmbshmts.com','','','Aktivan',0),(614,'Cpizdnyk','Cpizdnyk','','','','','bantoolz@zbvqlffr.com','','','','bantoolz@zbvqlffr.com','','','Aktivan',0),(615,'Izhepwml','Izhepwml','','','','','edkompkb@rhoqlsvv.com','','','','edkompkb@rhoqlsvv.com','','','Aktivan',0),(616,'Rgjihwxy','Rgjihwxy','','','','','gucknmfg@knzlrvgh.com','','','','gucknmfg@knzlrvgh.com','','','Aktivan',0),(617,'Xqhtxxuw','Xqhtxxuw','','','','','okvlvolq@clewpbiw.com','','','','okvlvolq@clewpbiw.com','','','Aktivan',0),(618,'Cfidaruj','Cfidaruj','','','','','jxytqxrl@vwoycryh.com','','','','jxytqxrl@vwoycryh.com','','','Aktivan',0),(619,'Riochcok','Riochcok','','','','','fzftwqsc@wefzknsf.com','','','','fzftwqsc@wefzknsf.com','','','Aktivan',0),(620,'Fkjpdqfn','Fkjpdqfn','','','','','nihdntps@poqeqsun.com','','','','nihdntps@poqeqsun.com','','','Aktivan',0),(621,'Clfblpbf','Clfblpbf','','','','','vgziltfv@mghcgjqt.com','','','','vgziltfv@mghcgjqt.com','','','Aktivan',0),(622,'Epbkfhfh','Epbkfhfh','','','','','zwbcsalv@rxwcqezw.com','','','','zwbcsalv@rxwcqezw.com','','','Aktivan',0),(623,'Bthhivno','Bthhivno','','','','','zgldseom@mqolvmrb.com','','','','zgldseom@mqolvmrb.com','','','Aktivan',0),(624,'Hzanagyy','Hzanagyy','','','','','wcapfzpp@xljzwbjt.com','','','','wcapfzpp@xljzwbjt.com','','','Aktivan',0),(625,'Lbhfzfhn','Lbhfzfhn','','','','','cticyrhr@rksrvbsz.com','','','','cticyrhr@rksrvbsz.com','','','Aktivan',0),(626,'Dgeqloxu','Dgeqloxu','','','','','odmyhqww@dqhfwout.com','','','','odmyhqww@dqhfwout.com','','','Aktivan',0),(627,'Llojrpxf','Llojrpxf','','','','','aiosemse@nyqehhyq.com','','','','aiosemse@nyqehhyq.com','','','Aktivan',0),(628,'Qrqffkmm','Qrqffkmm','','','','','hjqvzjxc@gtwcowvn.com','','','','hjqvzjxc@gtwcowvn.com','','','Aktivan',0),(629,'Wfypzxqo','Wfypzxqo','','','','','iaxydwyx@actfmbvu.com','','','','iaxydwyx@actfmbvu.com','','','Aktivan',0),(630,'Irqoweas','Irqoweas','','','','','ynngewhx@tlovilsz.com','','','','ynngewhx@tlovilsz.com','','','Aktivan',0),(631,'Rocpjxrt','Rocpjxrt','','','','','iznplopn@lsyimtov.com','','','','iznplopn@lsyimtov.com','','','Aktivan',0),(632,'Qzbnjjqq','Qzbnjjqq','','','','','qrasqrts@wxosjbbq.com','','','','qrasqrts@wxosjbbq.com','','','Aktivan',0),(633,'Puwgceeh','Puwgceeh','','','','','vrzijihm@kmfqqlij.com','','','','vrzijihm@kmfqqlij.com','','','Aktivan',0),(634,'Ksmtcqhp','Ksmtcqhp','','','','','zhzgfytm@hoajmgno.com','','','','zhzgfytm@hoajmgno.com','','','Aktivan',0),(635,'Jhmuloxx','Jhmuloxx','','','','','tefxgida@slbhsrev.com','','','','tefxgida@slbhsrev.com','','','Aktivan',0),(636,'Zhmtsdiu','Zhmtsdiu','','','','','yofmxmqh@vmkkksca.com','','','','yofmxmqh@vmkkksca.com','','','Aktivan',0),(637,'Cgtusgnl','Cgtusgnl','','','','','btyenelg@gmiyjwqb.com','','','','btyenelg@gmiyjwqb.com','','','Aktivan',0),(638,'Besqpvhd','Besqpvhd','','','','','advkishe@zrubkqxw.com','','','','advkishe@zrubkqxw.com','','','Aktivan',0),(639,'Morhewku','Morhewku','','','','','nazfahjg@iseotrwh.com','','','','nazfahjg@iseotrwh.com','','','Aktivan',0),(640,'Chiqeomn','Chiqeomn','','','','','eohvonxm@xdxtxpde.com','','','','eohvonxm@xdxtxpde.com','','','Aktivan',0),(641,'Wfnsrish','Wfnsrish','','','','','ybjvkmcz@ecilnbdf.com','','','','ybjvkmcz@ecilnbdf.com','','','Aktivan',0),(642,'Pipjfzur','Pipjfzur','','','','','yowqopxk@mliyqoeu.com','','','','yowqopxk@mliyqoeu.com','','','Aktivan',0),(643,'Lyrogdip','Lyrogdip','','','','','fqfoijti@lpfqfwgu.com','','','','fqfoijti@lpfqfwgu.com','','','Aktivan',0),(644,'Mcroonqk','Mcroonqk','','','','','qildioct@dmqtlsye.com','','','','qildioct@dmqtlsye.com','','','Aktivan',0),(645,'Bnybjkwp','Bnybjkwp','','','','','dimnjekz@fanlysxj.com','','','','dimnjekz@fanlysxj.com','','','Aktivan',0),(646,'Zvlmfqyr','Zvlmfqyr','','','','','sdrcqkaz@qxesyoys.com','','','','sdrcqkaz@qxesyoys.com','','','Aktivan',0),(647,'Rzcqysdl','Rzcqysdl','','','','','nhxmpuxj@eqcdbzlq.com','','','','nhxmpuxj@eqcdbzlq.com','','','Aktivan',0),(648,'Inubfhra','Inubfhra','','','','','quelrahr@xjgyjtby.com','','','','quelrahr@xjgyjtby.com','','','Aktivan',0),(649,'Njfptdon','Njfptdon','','','','','tkfwxfmf@fmxwultu.com','','','','tkfwxfmf@fmxwultu.com','','','Aktivan',0),(650,'Xbhbwyei','Xbhbwyei','','','','','dpsbtmex@hfycemlp.com','','','','dpsbtmex@hfycemlp.com','','','Aktivan',0),(651,'Mncviqvp','Mncviqvp','','','','','objixfpa@ljrfular.com','','','','objixfpa@ljrfular.com','','','Aktivan',0),(652,'Eleqceul','Eleqceul','','','','','cmnafxmc@ajzndrmw.com','','','','cmnafxmc@ajzndrmw.com','','','Aktivan',0),(653,'Tpknbhdk','Tpknbhdk','','','','','kbszdpej@buzyzycg.com','','','','kbszdpej@buzyzycg.com','','','Aktivan',0),(654,'Imyeleyi','Imyeleyi','','','','','hpofnxzn@xvnfrtkq.com','','','','hpofnxzn@xvnfrtkq.com','','','Aktivan',0),(655,'Uqadhqxi','Uqadhqxi','','','','','auksbvst@skqloqtl.com','','','','auksbvst@skqloqtl.com','','','Aktivan',0),(656,'Deyvadcp','Deyvadcp','','','','','uptpelth@tekfwrim.com','','','','uptpelth@tekfwrim.com','','','Aktivan',0),(657,'Zgrmivyc','Zgrmivyc','','','','','renrnsfp@uiwonfno.com','','','','renrnsfp@uiwonfno.com','','','Aktivan',0),(658,'Evnwbqfi','Evnwbqfi','','','','','sbkieeuz@uyymuccz.com','','','','sbkieeuz@uyymuccz.com','','','Aktivan',0),(659,'Bglcvwyx','Bglcvwyx','','','','','iusctsjv@yxahrcbu.com','','','','iusctsjv@yxahrcbu.com','','','Aktivan',0),(660,'Ckjyazyk','Ckjyazyk','','','','','olpivwht@txzdrzfz.com','','','','olpivwht@txzdrzfz.com','','','Aktivan',0),(661,'Jbjizrmg','Jbjizrmg','','','','','hmliowev@ltnwdzcf.com','','','','hmliowev@ltnwdzcf.com','','','Aktivan',0),(662,'Uhfpjfqm','Uhfpjfqm','','','','','hfjtctii@ermfqsep.com','','','','hfjtctii@ermfqsep.com','','','Aktivan',0),(663,'Iazzadhe','Iazzadhe','','','','','ivgatruz@aaoibgos.com','','','','ivgatruz@aaoibgos.com','','','Aktivan',0),(664,'Wgrufkbb','Wgrufkbb','','','','','fgfltwvj@rprpppbx.com','','','','fgfltwvj@rprpppbx.com','','','Aktivan',0),(665,'Tvkrvopt','Tvkrvopt','','','','','okycxsov@dtqivasv.com','','','','okycxsov@dtqivasv.com','','','Aktivan',0),(666,'Sjolzuvf','Sjolzuvf','','','','','zoeptguw@dnleersy.com','','','','zoeptguw@dnleersy.com','','','Aktivan',0),(667,'Pphjqnlx','Pphjqnlx','','','','','jbhofurz@twtvkniq.com','','','','jbhofurz@twtvkniq.com','','','Aktivan',0),(668,'Eoutcpqr','Eoutcpqr','','','','','ucdfzgzq@stvqpnvd.com','','','','ucdfzgzq@stvqpnvd.com','','','Aktivan',0),(669,'Cjgiponk','Cjgiponk','','','','','fegrbafz@ftcrzoju.com','','','','fegrbafz@ftcrzoju.com','','','Aktivan',0),(670,'Omhjfrot','Omhjfrot','','','','','srqjkftt@vgswpbov.com','','','','srqjkftt@vgswpbov.com','','','Aktivan',0),(671,'Cpitchuj','Cpitchuj','','','','','uyhwqjum@pzfxdfzj.com','','','','uyhwqjum@pzfxdfzj.com','','','Aktivan',0),(672,'Tavuyrth','Tavuyrth','','','','','hbpctrhd@zfsynrxy.com','','','','hbpctrhd@zfsynrxy.com','','','Aktivan',0),(673,'Fybfzbim','Fybfzbim','','','','','tnngygwv@nelexuqd.com','','','','tnngygwv@nelexuqd.com','','','Aktivan',0),(674,'Qlthjxvq','Qlthjxvq','','','','','xahvwtvv@hnklsnwy.com','','','','xahvwtvv@hnklsnwy.com','','','Aktivan',0),(675,'Uycpkenw','Uycpkenw','','','','','xndqvlfj@fahwxboe.com','','','','xndqvlfj@fahwxboe.com','','','Aktivan',0),(676,'Agrvttgv','Agrvttgv','','','','','vyobribw@ruknlpfp.com','','','','vyobribw@ruknlpfp.com','','','Aktivan',0),(677,'Kpzcmije','Kpzcmije','','','','','xvtttyau@ybblabzi.com','','','','xvtttyau@ybblabzi.com','','','Aktivan',0),(678,'Rfeyzpyx','Rfeyzpyx','','','','','bezofwwu@wqvxybgl.com','','','','bezofwwu@wqvxybgl.com','','','Aktivan',0),(679,'Dmniaiii','Dmniaiii','','','','','mmgqaknd@gfhzsnmf.com','','','','mmgqaknd@gfhzsnmf.com','','','Aktivan',0),(680,'Ajziewcs','Ajziewcs','','','','','zrsammok@buvxtjfa.com','','','','zrsammok@buvxtjfa.com','','','Aktivan',0),(681,'Ozsrgehi','Ozsrgehi','','','','','pktxzzhx@hubclilk.com','','','','pktxzzhx@hubclilk.com','','','Aktivan',0),(682,'Lzrozikk','Lzrozikk','','','','','cqddvsdd@vpbfsmyx.com','','','','cqddvsdd@vpbfsmyx.com','','','Aktivan',0),(683,'Munvuyae','Munvuyae','','','','','ixlmdjnp@icrjprrn.com','','','','ixlmdjnp@icrjprrn.com','','','Aktivan',0),(684,'Pnnggccn','Pnnggccn','','','','','jnybancr@ennjbhcm.com','','','','jnybancr@ennjbhcm.com','','','Aktivan',0),(685,'Wnttxglj','Wnttxglj','','','','','akxvxwkw@xmvjfmnn.com','','','','akxvxwkw@xmvjfmnn.com','','','Aktivan',0),(686,'Icraibok','Icraibok','','','','','gwixqbsi@ctapkkpw.com','','','','gwixqbsi@ctapkkpw.com','','','Aktivan',0),(687,'Jpkpovou','Jpkpovou','','','','','tfxgvyqm@rfyxhncg.com','','','','tfxgvyqm@rfyxhncg.com','','','Aktivan',0),(688,'Iqnyxzrz','Iqnyxzrz','','','','','lqoxbkfw@qkwscozb.com','','','','lqoxbkfw@qkwscozb.com','','','Aktivan',0),(689,'Fayrihqq','Fayrihqq','','','','','wsokuoop@setlhiun.com','','','','wsokuoop@setlhiun.com','','','Aktivan',0),(690,'Kwxflopq','Kwxflopq','','','','','ltsyzfjf@gvnzccsm.com','','','','ltsyzfjf@gvnzccsm.com','','','Aktivan',0),(691,'DennyCross','DennyCross','','','','','GalenPerkins24@yahoo.com','','','','GalenPerkins24@yahoo.com','','','Aktivan',0),(692,'Rqityexh','Rqityexh','','','','','zmdjxgty@chhycvea.com','','','','zmdjxgty@chhycvea.com','','','Aktivan',0),(693,'Asfnzmpb','Asfnzmpb','','','','','guzlzwdy@bdtyahpq.com','','','','guzlzwdy@bdtyahpq.com','','','Aktivan',0),(694,'Ypblxowl','Ypblxowl','','','','','wvuylliw@bkyoeipo.com','','','','wvuylliw@bkyoeipo.com','','','Aktivan',0),(695,'Exxwjlwm','Exxwjlwm','','','','','foyzmaxg@sasnjzeu.com','','','','foyzmaxg@sasnjzeu.com','','','Aktivan',0),(696,'Swkpbizp','Swkpbizp','','','','','nlokdads@eueezkxu.com','','','','nlokdads@eueezkxu.com','','','Aktivan',0),(697,'Pktmmazq','Pktmmazq','','','','','jdzujeqm@dvslvdeq.com','','','','jdzujeqm@dvslvdeq.com','','','Aktivan',0),(698,'Gxasiodk','Gxasiodk','','','','','cftatbro@eehwbelm.com','','','','cftatbro@eehwbelm.com','','','Aktivan',0),(699,'Ioilnghx','Ioilnghx','','','','','ojedmfsx@fmkfcyvp.com','','','','ojedmfsx@fmkfcyvp.com','','','Aktivan',0),(700,'Ytfbypxp','Ytfbypxp','','','','','ulvrlubv@xcvrwvgm.com','','','','ulvrlubv@xcvrwvgm.com','','','Aktivan',0),(701,'Klcojbqu','Klcojbqu','','','','','qwpwzvxg@wgdcyyce.com','','','','qwpwzvxg@wgdcyyce.com','','','Aktivan',0),(702,'Jzrauvav','Jzrauvav','','','','','hgkbqbjo@bobfeqda.com','','','','hgkbqbjo@bobfeqda.com','','','Aktivan',0),(703,'Pzwgnegm','Pzwgnegm','','','','','cyqlzphj@uhmectgw.com','','','','cyqlzphj@uhmectgw.com','','','Aktivan',0),(704,'Updwvkdj','Updwvkdj','','','','','xqmarqeg@fkdkktgt.com','','','','xqmarqeg@fkdkktgt.com','','','Aktivan',0),(705,'Evvexanv','Evvexanv','','','','','qqwlccit@jwtmhgtq.com','','','','qqwlccit@jwtmhgtq.com','','','Aktivan',0),(706,'Ycmllwvp','Ycmllwvp','','','','','ncbbgnkp@rjgrzedv.com','','','','ncbbgnkp@rjgrzedv.com','','','Aktivan',0),(707,'Gtyeidol','Gtyeidol','','','','','lxqxbdpp@sjdykekh.com','','','','lxqxbdpp@sjdykekh.com','','','Aktivan',0),(708,'Lcfnkqcd','Lcfnkqcd','','','','','xhxwayzs@hqumgyzf.com','','','','xhxwayzs@hqumgyzf.com','','','Aktivan',0),(709,'Thapevbu','Thapevbu','','','','','buqgejww@ufrtyrls.com','','','','buqgejww@ufrtyrls.com','','','Aktivan',0),(710,'Fijyerad','Fijyerad','','','','','bahukeow@vgamiweq.com','','','','bahukeow@vgamiweq.com','','','Aktivan',0),(711,'Srvercsm','Srvercsm','','','','','jwvbjgex@kpascodc.com','','','','jwvbjgex@kpascodc.com','','','Aktivan',0),(712,'Aawgvlmh','Aawgvlmh','','','','','xokqnrkk@bflunxay.com','','','','xokqnrkk@bflunxay.com','','','Aktivan',0),(713,'Togitopm','Togitopm','','','','','ezhntgdy@ssakudgo.com','','','','ezhntgdy@ssakudgo.com','','','Aktivan',0),(714,'Oyyummbh','Oyyummbh','','','','','qzngddqr@dojnmulf.com','','','','qzngddqr@dojnmulf.com','','','Aktivan',0),(715,'Klgtbjkq','Klgtbjkq','','','','','cusxyjhp@xgnxqafc.com','','','','cusxyjhp@xgnxqafc.com','','','Aktivan',0),(716,'Tqououiq','Tqououiq','','','','','tsgngcsi@ytspztia.com','','','','tsgngcsi@ytspztia.com','','','Aktivan',0),(717,'Vjknmktw','Vjknmktw','','','','','cooslzoa@ghrvmdin.com','','','','cooslzoa@ghrvmdin.com','','','Aktivan',0),(718,'Iacxqntq','Iacxqntq','','','','','wxjsvvzn@iiuhkfag.com','','','','wxjsvvzn@iiuhkfag.com','','','Aktivan',0),(719,'Kdhyogpr','Kdhyogpr','','','','','rmmdzwte@qybmxznn.com','','','','rmmdzwte@qybmxznn.com','','','Aktivan',0),(720,'Qzdljgjt','Qzdljgjt','','','','','mvhmhwsb@aaulzwmr.com','','','','mvhmhwsb@aaulzwmr.com','','','Aktivan',0),(721,'Khndnoae','Khndnoae','','','','','umyjbmsr@wwztqkwm.com','','','','umyjbmsr@wwztqkwm.com','','','Aktivan',0),(722,'Gdqxuagm','Gdqxuagm','','','','','tibemxlp@ivfhiato.com','','','','tibemxlp@ivfhiato.com','','','Aktivan',0),(723,'Xsrudykp','Xsrudykp','','','','','axejmooj@rsgltbpl.com','','','','axejmooj@rsgltbpl.com','','','Aktivan',0),(724,'Tqwlevos','Tqwlevos','','','','','rpnzgwtb@ctvgksks.com','','','','rpnzgwtb@ctvgksks.com','','','Aktivan',0),(725,'Wjadlohi','Wjadlohi','','','','','obezltsk@xmjtgbud.com','','','','obezltsk@xmjtgbud.com','','','Aktivan',0),(726,'Dwebbvjq','Dwebbvjq','','','','','tuehgecr@hqnvdddt.com','','','','tuehgecr@hqnvdddt.com','','','Aktivan',0),(727,'Nllfeweg','Nllfeweg','','','','','xcwhdxvz@cefxlxim.com','','','','xcwhdxvz@cefxlxim.com','','','Aktivan',0),(728,'Kcwccazh','Kcwccazh','','','','','atbjmfzg@lomaarhl.com','','','','atbjmfzg@lomaarhl.com','','','Aktivan',0),(729,'Fmifjuhk','Fmifjuhk','','','','','cfimwifl@bhxvxrqm.com','','','','cfimwifl@bhxvxrqm.com','','','Aktivan',0),(730,'Ovtmrdjd','Ovtmrdjd','','','','','jwzhjhhz@auapkuas.com','','','','jwzhjhhz@auapkuas.com','','','Aktivan',0),(731,'Xipnzqeu','Xipnzqeu','','','','','vjltzinl@cunlfucs.com','','','','vjltzinl@cunlfucs.com','','','Aktivan',0),(732,'Jqjiuzwg','Jqjiuzwg','','','','','fnxuzlfr@hbtvvswf.com','','','','fnxuzlfr@hbtvvswf.com','','','Aktivan',0),(733,'Reldeesp','Reldeesp','','','','','xhgotaic@pmefmsbo.com','','','','xhgotaic@pmefmsbo.com','','','Aktivan',0),(734,'Igzdunnf','Igzdunnf','','','','','lisbwfsd@vqkfozts.com','','','','lisbwfsd@vqkfozts.com','','','Aktivan',0),(735,'Raakezvy','Raakezvy','','','','','anlrljee@qzxxudbz.com','','','','anlrljee@qzxxudbz.com','','','Aktivan',0),(736,'Emunecej','Emunecej','','','','','ngebkvei@aywyasxt.com','','','','ngebkvei@aywyasxt.com','','','Aktivan',0),(737,'Vkltyifp','Vkltyifp','','','','','gjnnpzzx@pmurtbdn.com','','','','gjnnpzzx@pmurtbdn.com','','','Aktivan',0),(738,'Ljcccksz','Ljcccksz','','','','','yfcihbwx@ymnnxncd.com','','','','yfcihbwx@ymnnxncd.com','','','Aktivan',0),(739,'Wcfcqqpq','Wcfcqqpq','','','','','euykxgic@ubfxalex.com','','','','euykxgic@ubfxalex.com','','','Aktivan',0),(740,'Gfadiutn','Gfadiutn','','','','','puxqpfxf@dgxxkqvo.com','','','','puxqpfxf@dgxxkqvo.com','','','Aktivan',0),(741,'Nseqehvn','Nseqehvn','','','','','amjtkbib@pvuubulj.com','','','','amjtkbib@pvuubulj.com','','','Aktivan',0),(742,'Ytxgfjxs','Ytxgfjxs','','','','','pfmkvisd@jmunybsg.com','','','','pfmkvisd@jmunybsg.com','','','Aktivan',0),(743,'Uzneeygw','Uzneeygw','','','','','gbpcuhos@tuizuztx.com','','','','gbpcuhos@tuizuztx.com','','','Aktivan',0),(744,'Ymqjwfxn','Ymqjwfxn','','','','','lulgojkm@knwcgcsm.com','','','','lulgojkm@knwcgcsm.com','','','Aktivan',0),(745,'Amfrzrig','Amfrzrig','','','','','nifejpnj@pohktgoq.com','','','','nifejpnj@pohktgoq.com','','','Aktivan',0),(746,'Wyickmzh','Wyickmzh','','','','','blhrdxkb@lzsjabyc.com','','','','blhrdxkb@lzsjabyc.com','','','Aktivan',0),(747,'Myrdnyfb','Myrdnyfb','','','','','igphuhcd@xbaxhyvu.com','','','','igphuhcd@xbaxhyvu.com','','','Aktivan',0),(748,'Mwkbysdw','Mwkbysdw','','','','','jomwelys@qmwgnowx.com','','','','jomwelys@qmwgnowx.com','','','Aktivan',0),(749,'Rkyfzaeo','Rkyfzaeo','','','','','wcirvvvx@jmitgayp.com','','','','wcirvvvx@jmitgayp.com','','','Aktivan',0),(750,'Dmzpqqii','Dmzpqqii','','','','','laofrwjv@vpswogtx.com','','','','laofrwjv@vpswogtx.com','','','Aktivan',0),(751,'Ufumdxho','Ufumdxho','','','','','idsvuguw@qzgmebqp.com','','','','idsvuguw@qzgmebqp.com','','','Aktivan',0),(752,'Meoyhvfw','Meoyhvfw','','','','','ekgbgscd@idkuogeq.com','','','','ekgbgscd@idkuogeq.com','','','Aktivan',0),(753,'Feerebra','Feerebra','','','','','lozprtqo@pjgjqhqe.com','','','','lozprtqo@pjgjqhqe.com','','','Aktivan',0),(754,'Fgpblhhc','Fgpblhhc','','','','','dxowthvk@frjyquyy.com','','','','dxowthvk@frjyquyy.com','','','Aktivan',0),(755,'Qwkvveyj','Qwkvveyj','','','','','vjvbtzqb@lymkdplj.com','','','','vjvbtzqb@lymkdplj.com','','','Aktivan',0),(756,'Bqcdxhwr','Bqcdxhwr','','','','','cngyjciv@avfioldc.com','','','','cngyjciv@avfioldc.com','','','Aktivan',0),(757,'Rblunsud','Rblunsud','','','','','uwzcmrpp@arcmrssi.com','','','','uwzcmrpp@arcmrssi.com','','','Aktivan',0),(758,'Froicyxd','Froicyxd','','','','','qrmxykac@hhsdnplz.com','','','','qrmxykac@hhsdnplz.com','','','Aktivan',0),(759,'Xivtvnkj','Xivtvnkj','','','','','qlkndjwc@uzemxrkd.com','','','','qlkndjwc@uzemxrkd.com','','','Aktivan',0),(760,'Okwkbfgl','Okwkbfgl','','','','','nodlnxrg@qnsmyfml.com','','','','nodlnxrg@qnsmyfml.com','','','Aktivan',0),(761,'Lqhhyxrq','Lqhhyxrq','','','','','ycczdtcr@hcdoxygb.com','','','','ycczdtcr@hcdoxygb.com','','','Aktivan',0),(762,'Emjgcugp','Emjgcugp','','','','','oubdjezd@poorxjnp.com','','','','oubdjezd@poorxjnp.com','','','Aktivan',0),(763,'Xbxoxzgg','Xbxoxzgg','','','','','bfiprhbc@wcjidptr.com','','','','bfiprhbc@wcjidptr.com','','','Aktivan',0),(764,'Lzbcbkxm','Lzbcbkxm','','','','','chhtlwxt@gmptevmn.com','','','','chhtlwxt@gmptevmn.com','','','Aktivan',0),(765,'Efbdlcwz','Efbdlcwz','','','','','afolyuqu@fjrzvliu.com','','','','afolyuqu@fjrzvliu.com','','','Aktivan',0),(766,'Qnnfanvp','Qnnfanvp','','','','','dqmukinf@dfgrqsxd.com','','','','dqmukinf@dfgrqsxd.com','','','Aktivan',0),(767,'Forfjfbx','Forfjfbx','','','','','ybzemtrm@tfrwtwfd.com','','','','ybzemtrm@tfrwtwfd.com','','','Aktivan',0),(768,'Mvisqyap','Mvisqyap','','','','','vwdmuynf@kccrjgfk.com','','','','vwdmuynf@kccrjgfk.com','','','Aktivan',0),(769,'Bbttbsow','Bbttbsow','','','','','xtuzczvw@wthoxfry.com','','','','xtuzczvw@wthoxfry.com','','','Aktivan',0),(770,'Mxbeheqv','Mxbeheqv','','','','','vhitbtoe@zgvxeopf.com','','','','vhitbtoe@zgvxeopf.com','','','Aktivan',0),(771,'Bzsbacvq','Bzsbacvq','','','','','yaiebqyl@snnpgedw.com','','','','yaiebqyl@snnpgedw.com','','','Aktivan',0),(772,'Zcgymjps','Zcgymjps','','','','','sgheruql@viqvntob.com','','','','sgheruql@viqvntob.com','','','Aktivan',0),(773,'Ckdvqckq','Ckdvqckq','','','','','ssdjqkjg@azxhydoy.com','','','','ssdjqkjg@azxhydoy.com','','','Aktivan',0),(774,'Jabjrrty','Jabjrrty','','','','','yzihdwmb@tjncdity.com','','','','yzihdwmb@tjncdity.com','','','Aktivan',0),(775,'Vyhuidhd','Vyhuidhd','','','','','opvwlhcd@vggtsxfe.com','','','','opvwlhcd@vggtsxfe.com','','','Aktivan',0),(776,'Ljqbkgxe','Ljqbkgxe','','','','','tytcwbdg@frikwocd.com','','','','tytcwbdg@frikwocd.com','','','Aktivan',0),(777,'Aptxvugn','Aptxvugn','','','','','xwkwdbez@eevovnzd.com','','','','xwkwdbez@eevovnzd.com','','','Aktivan',0),(778,'Voajwzzh','Voajwzzh','','','','','nihoqqvq@ntqojfzc.com','','','','nihoqqvq@ntqojfzc.com','','','Aktivan',0),(779,'Kykeowqs','Kykeowqs','','','','','eqielbki@ejvgolch.com','','','','eqielbki@ejvgolch.com','','','Aktivan',0),(780,'Ahlheudy','Ahlheudy','','','','','jwnrjgie@beemnony.com','','','','jwnrjgie@beemnony.com','','','Aktivan',0),(781,'Gczztqur','Gczztqur','','','','','ybcvnoik@rzeqlsfh.com','','','','ybcvnoik@rzeqlsfh.com','','','Aktivan',0),(782,'Prrkflyk','Prrkflyk','','','','','jsuyyptm@huqdileg.com','','','','jsuyyptm@huqdileg.com','','','Aktivan',0),(783,'Wouerjmy','Wouerjmy','','','','','qipfltxs@nzxbfgsc.com','','','','qipfltxs@nzxbfgsc.com','','','Aktivan',0),(784,'Dihmoswx','Dihmoswx','','','','','aytjrnrp@sexgaxiz.com','','','','aytjrnrp@sexgaxiz.com','','','Aktivan',0),(785,'Ehoeqxuz','Ehoeqxuz','','','','','xeuzsumm@ogtvgoqw.com','','','','xeuzsumm@ogtvgoqw.com','','','Aktivan',0),(786,'Zdamospr','Zdamospr','','','','','ceqamhvr@ntxwznvr.com','','','','ceqamhvr@ntxwznvr.com','','','Aktivan',0),(787,'Wxbrwupb','Wxbrwupb','','','','','wfpqdtlv@teycseel.com','','','','wfpqdtlv@teycseel.com','','','Aktivan',0),(788,'Ojdrqwtl','Ojdrqwtl','','','','','tigehrrb@omdcucoy.com','','','','tigehrrb@omdcucoy.com','','','Aktivan',0),(789,'Mghyyrhp','Mghyyrhp','','','','','eliebgzh@oxmokwir.com','','','','eliebgzh@oxmokwir.com','','','Aktivan',0),(790,'Bwqellle','Bwqellle','','','','','neyipzzi@cryggbey.com','','','','neyipzzi@cryggbey.com','','','Aktivan',0),(791,'Putptjkx','Putptjkx','','','','','zweojrwh@aogibflk.com','','','','zweojrwh@aogibflk.com','','','Aktivan',0),(792,'Cyvsimrb','Cyvsimrb','','','','','ewarsmmp@itenbtbl.com','','','','ewarsmmp@itenbtbl.com','','','Aktivan',0),(793,'Ceysphvb','Ceysphvb','','','','','qjbbrxcw@evjvsykw.com','','','','qjbbrxcw@evjvsykw.com','','','Aktivan',0),(794,'Hffznwmp','Hffznwmp','','','','','lmpltuub@hxrlpfvp.com','','','','lmpltuub@hxrlpfvp.com','','','Aktivan',0),(795,'Yuplalss','Yuplalss','','','','','edmxerai@efvjlfor.com','','','','edmxerai@efvjlfor.com','','','Aktivan',0),(796,'Pypswsxq','Pypswsxq','','','','','bqfclbmp@tocgumwj.com','','','','bqfclbmp@tocgumwj.com','','','Aktivan',0),(797,'Giceugbo','Giceugbo','','','','','iwzngbqo@rksklaxt.com','','','','iwzngbqo@rksklaxt.com','','','Aktivan',0),(798,'Zlimurgx','Zlimurgx','','','','','mbhbhjka@sehbojaz.com','','','','mbhbhjka@sehbojaz.com','','','Aktivan',0),(799,'Xlvxxdux','Xlvxxdux','','','','','vjxbkufk@oulxiqee.com','','','','vjxbkufk@oulxiqee.com','','','Aktivan',0),(800,'Iulvkvoa','Iulvkvoa','','','','','dxwzynuy@vduetxhj.com','','','','dxwzynuy@vduetxhj.com','','','Aktivan',0),(801,'Dizhsnsj','Dizhsnsj','','','','','uapblrzm@uhzhfisy.com','','','','uapblrzm@uhzhfisy.com','','','Aktivan',0),(802,'Djgvcurr','Djgvcurr','','','','','hccxpkcm@lbgvzyfe.com','','','','hccxpkcm@lbgvzyfe.com','','','Aktivan',0),(803,'Ejfriqhq','Ejfriqhq','','','','','ldnbknvg@izezsvqx.com','','','','ldnbknvg@izezsvqx.com','','','Aktivan',0),(804,'Qkjxrinu','Qkjxrinu','','','','','ieqwespg@bdqyedpq.com','','','','ieqwespg@bdqyedpq.com','','','Aktivan',0),(805,'Xvtwuxwc','Xvtwuxwc','','','','','embtmoaw@brabddro.com','','','','embtmoaw@brabddro.com','','','Aktivan',0),(806,'Zfqfimnz','Zfqfimnz','','','','','fzcysfgm@luvultnu.com','','','','fzcysfgm@luvultnu.com','','','Aktivan',0),(807,'Rxjqtadm','Rxjqtadm','','','','','jgwriohb@sctzzohx.com','','','','jgwriohb@sctzzohx.com','','','Aktivan',0),(808,'Gajiiflf','Gajiiflf','','','','','fkvdkhbp@whmcljct.com','','','','fkvdkhbp@whmcljct.com','','','Aktivan',0),(809,'Hewhlsqs','Hewhlsqs','','','','','eiwjkrlx@otttqtnk.com','','','','eiwjkrlx@otttqtnk.com','','','Aktivan',0),(810,'Fihmgyew','Fihmgyew','','','','','jtvdgekd@dssczidu.com','','','','jtvdgekd@dssczidu.com','','','Aktivan',0),(811,'Zlrmhwow','Zlrmhwow','','','','','mscenwig@xhktszmk.com','','','','mscenwig@xhktszmk.com','','','Aktivan',0),(812,'Cevheqpp','Cevheqpp','','','','','iexsbjid@ybjwxysb.com','','','','iexsbjid@ybjwxysb.com','','','Aktivan',0),(813,'Kgjvqwzb','Kgjvqwzb','','','','','feuhrgai@kfcvkauc.com','','','','feuhrgai@kfcvkauc.com','','','Aktivan',0),(814,'Jpacgppe','Jpacgppe','','','','','nnoashmj@yzmcncil.com','','','','nnoashmj@yzmcncil.com','','','Aktivan',0),(815,'Mftnkxzm','Mftnkxzm','','','','','udnwngds@pkmpldim.com','','','','udnwngds@pkmpldim.com','','','Aktivan',0),(816,'Wxuqgsgn','Wxuqgsgn','','','','','mxkwullt@fibphrlj.com','','','','mxkwullt@fibphrlj.com','','','Aktivan',0),(817,'Suebokex','Suebokex','','','','','fwstheym@ywnlyszm.com','','','','fwstheym@ywnlyszm.com','','','Aktivan',0),(818,'Kfkblydp','Kfkblydp','','','','','rvlxjhww@rihxnljs.com','','','','rvlxjhww@rihxnljs.com','','','Aktivan',0),(819,'Jhvxlrcq','Jhvxlrcq','','','','','mghaeuyb@fxqtpuiz.com','','','','mghaeuyb@fxqtpuiz.com','','','Aktivan',0),(820,'Namwkefm','Namwkefm','','','','','uchdkoyi@ljavbpal.com','','','','uchdkoyi@ljavbpal.com','','','Aktivan',0),(821,'Jqgqtjzm','Jqgqtjzm','','','','','ltjcgvth@ndfzjczn.com','','','','ltjcgvth@ndfzjczn.com','','','Aktivan',0),(822,'Xyzrtnvn','Xyzrtnvn','','','','','zfrrblbl@ttftvuzg.com','','','','zfrrblbl@ttftvuzg.com','','','Aktivan',0),(823,'Gvgyhxsa','Gvgyhxsa','','','','','czjypfcf@xdimlrmn.com','','','','czjypfcf@xdimlrmn.com','','','Aktivan',0),(824,'Vjwuucya','Vjwuucya','','','','','kmbiruqe@ulwilduw.com','','','','kmbiruqe@ulwilduw.com','','','Aktivan',0),(825,'Sdkwsjcd','Sdkwsjcd','','','','','fxxgkiyz@dziyttdq.com','','','','fxxgkiyz@dziyttdq.com','','','Aktivan',0),(826,'Uqalulke','Uqalulke','','','','','fznvsgtx@srbszxwu.com','','','','fznvsgtx@srbszxwu.com','','','Aktivan',0),(827,'Vyljddzl','Vyljddzl','','','','','iioeinvx@aerstvst.com','','','','iioeinvx@aerstvst.com','','','Aktivan',0),(828,'Murqtelk','Murqtelk','','','','','vsqdfdqp@tswgbkbc.com','','','','vsqdfdqp@tswgbkbc.com','','','Aktivan',0),(829,'Tcgnxvyy','Tcgnxvyy','','','','','yadbbvkm@hecqpgif.com','','','','yadbbvkm@hecqpgif.com','','','Aktivan',0),(830,'Uwfyknlt','Uwfyknlt','','','','','pnlmedxn@lvscipht.com','','','','pnlmedxn@lvscipht.com','','','Aktivan',0),(831,'Gltgjccq','Gltgjccq','','','','','altowxol@usdleawu.com','','','','altowxol@usdleawu.com','','','Aktivan',0),(832,'Oqorkdwu','Oqorkdwu','','','','','lrrqdzae@ilyivtvl.com','','','','lrrqdzae@ilyivtvl.com','','','Aktivan',0),(833,'Rhxwszbp','Rhxwszbp','','','','','ayppdmhu@pwebpjiv.com','','','','ayppdmhu@pwebpjiv.com','','','Aktivan',0),(834,'Ntkyjuay','Ntkyjuay','','','','','ppuqjrqj@nxkqyhnj.com','','','','ppuqjrqj@nxkqyhnj.com','','','Aktivan',0),(835,'Khsjamuz','Khsjamuz','','','','','ywuwmmrk@rcixymgj.com','','','','ywuwmmrk@rcixymgj.com','','','Aktivan',0),(836,'Ttlpdyze','Ttlpdyze','','','','','kjzuthte@voayfxgi.com','','','','kjzuthte@voayfxgi.com','','','Aktivan',0),(837,'Gafmxuji','Gafmxuji','','','','','yzlzglki@lsukqwjl.com','','','','yzlzglki@lsukqwjl.com','','','Aktivan',0),(838,'Thohoysa','Thohoysa','','','','','mmsbfhst@axndlwyt.com','','','','mmsbfhst@axndlwyt.com','','','Aktivan',0),(839,'Lletqxqb','Lletqxqb','','','','','ghryqxfo@danvztdz.com','','','','ghryqxfo@danvztdz.com','','','Aktivan',0),(840,'Qojqepef','Qojqepef','','','','','rtszhjmt@hllkssit.com','','','','rtszhjmt@hllkssit.com','','','Aktivan',0),(841,'Bfdkzeck','Bfdkzeck','','','','','qgyeuzef@yjohdcec.com','','','','qgyeuzef@yjohdcec.com','','','Aktivan',0),(842,'Jtyimkwz','Jtyimkwz','','','','','kzgyichp@gvnenrwz.com','','','','kzgyichp@gvnenrwz.com','','','Aktivan',0),(843,'Fmcynweg','Fmcynweg','','','','','txbqczqz@ufzkbubp.com','','','','txbqczqz@ufzkbubp.com','','','Aktivan',0),(844,'Tslkjgzj','Tslkjgzj','','','','','twqkwwqe@qvnmuidl.com','','','','twqkwwqe@qvnmuidl.com','','','Aktivan',0),(845,'Ryyayttm','Ryyayttm','','','','','nolivbaw@qnhfyeqt.com','','','','nolivbaw@qnhfyeqt.com','','','Aktivan',0),(846,'Jkynpcyo','Jkynpcyo','','','','','qcfrpttk@otleqprp.com','','','','qcfrpttk@otleqprp.com','','','Aktivan',0),(847,'Mzivlhmw','Mzivlhmw','','','','','pwmybmxz@eiyagmsl.com','','','','pwmybmxz@eiyagmsl.com','','','Aktivan',0),(848,'Syxdgrkj','Syxdgrkj','','','','','cnrqjrcg@yfkbhvbq.com','','','','cnrqjrcg@yfkbhvbq.com','','','Aktivan',0),(849,'Vpmmzyjm','Vpmmzyjm','','','','','mgzdstfm@toepdopm.com','','','','mgzdstfm@toepdopm.com','','','Aktivan',0),(850,'Zsxdeqqs','Zsxdeqqs','','','','','jogpkvxl@wlnlfush.com','','','','jogpkvxl@wlnlfush.com','','','Aktivan',0),(851,'Rxxbeqes','Rxxbeqes','','','','','aomfbtqc@gnmoanps.com','','','','aomfbtqc@gnmoanps.com','','','Aktivan',0),(852,'Tavchoss','Tavchoss','','','','','hykjrtar@ftbzvsof.com','','','','hykjrtar@ftbzvsof.com','','','Aktivan',0),(853,'Yncurziw','Yncurziw','','','','','cciclpsq@iyuhlawl.com','','','','cciclpsq@iyuhlawl.com','','','Aktivan',0),(854,'Hunmygvr','Hunmygvr','','','','','uqytsqzi@ddzfkbuf.com','','','','uqytsqzi@ddzfkbuf.com','','','Aktivan',0),(855,'Smsmcqmf','Smsmcqmf','','','','','ucsmkbcn@rodtpuzu.com','','','','ucsmkbcn@rodtpuzu.com','','','Aktivan',0),(856,'Yvjbdrfp','Yvjbdrfp','','','','','wnmzjvic@tvhtnrjx.com','','','','wnmzjvic@tvhtnrjx.com','','','Aktivan',0),(857,'Yqliuzxg','Yqliuzxg','','','','','fmvhcpmd@dxverduy.com','','','','fmvhcpmd@dxverduy.com','','','Aktivan',0),(858,'Wnuvgpen','Wnuvgpen','','','','','qrefigsr@jlccoeiz.com','','','','qrefigsr@jlccoeiz.com','','','Aktivan',0),(859,'Uowexiit','Uowexiit','','','','','meliyqlm@mqsbtbkt.com','','','','meliyqlm@mqsbtbkt.com','','','Aktivan',0),(860,'Wqbjvozq','Wqbjvozq','','','','','ksrvivaw@sflpckfd.com','','','','ksrvivaw@sflpckfd.com','','','Aktivan',0),(861,'Mzxtjcjy','Mzxtjcjy','','','','','ulalvmfm@qkgrtujc.com','','','','ulalvmfm@qkgrtujc.com','','','Aktivan',0),(862,'Jvxjyxiy','Jvxjyxiy','','','','','ksyiezwl@vbcwpwzz.com','','','','ksyiezwl@vbcwpwzz.com','','','Aktivan',0),(863,'Krswbsfu','Krswbsfu','','','','','bbdetqxm@iicvepja.com','','','','bbdetqxm@iicvepja.com','','','Aktivan',0),(864,'Igxwvgsw','Igxwvgsw','','','','','hvhznnyd@koujciun.com','','','','hvhznnyd@koujciun.com','','','Aktivan',0),(865,'Moukblag','Moukblag','','','','','tktosgcb@qwipvidx.com','','','','tktosgcb@qwipvidx.com','','','Aktivan',0),(866,'Cydlzpsj','Cydlzpsj','','','','','imxlmpds@jxwaofqp.com','','','','imxlmpds@jxwaofqp.com','','','Aktivan',0),(867,'Vucebvay','Vucebvay','','','','','wrkdmyhc@oxcervkx.com','','','','wrkdmyhc@oxcervkx.com','','','Aktivan',0),(868,'Hdcbtipd','Hdcbtipd','','','','','cvsjqyot@aqewvwfy.com','','','','cvsjqyot@aqewvwfy.com','','','Aktivan',0),(869,'Fdlwpbhq','Fdlwpbhq','','','','','moxxqzwp@kxrnenrw.com','','','','moxxqzwp@kxrnenrw.com','','','Aktivan',0),(870,'Enrvmkuv','Enrvmkuv','','','','','ipeymzrp@pkpkocgn.com','','','','ipeymzrp@pkpkocgn.com','','','Aktivan',0),(871,'Hxvcrdnm','Hxvcrdnm','','','','','wnlpafzz@hjrnxmsa.com','','','','wnlpafzz@hjrnxmsa.com','','','Aktivan',0),(872,'Jquoyhgg','Jquoyhgg','','','','','oxouqrgs@kvpgvump.com','','','','oxouqrgs@kvpgvump.com','','','Aktivan',0),(873,'Nglqjqrv','Nglqjqrv','','','','','zflbqxsb@ruuwyoxf.com','','','','zflbqxsb@ruuwyoxf.com','','','Aktivan',0),(874,'Lwsaraoq','Lwsaraoq','','','','','koniyvwr@ezxiwdbv.com','','','','koniyvwr@ezxiwdbv.com','','','Aktivan',0),(875,'Livefjli','Livefjli','','','','','xvcmzncu@dbxcdnho.com','','','','xvcmzncu@dbxcdnho.com','','','Aktivan',0),(876,'Xrhyxexg','Xrhyxexg','','','','','esizcbju@ohvkeruk.com','','','','esizcbju@ohvkeruk.com','','','Aktivan',0),(877,'Uddggsqi','Uddggsqi','','','','','dmnzhwlx@btcgdzyq.com','','','','dmnzhwlx@btcgdzyq.com','','','Aktivan',0),(878,'Cxduplco','Cxduplco','','','','','tbgtfpwq@auaamwpd.com','','','','tbgtfpwq@auaamwpd.com','','','Aktivan',0),(879,'Ciralxlu','Ciralxlu','','','','','pikymsel@awpyyoec.com','','','','pikymsel@awpyyoec.com','','','Aktivan',0),(880,'Hwrmxucm','Hwrmxucm','','','','','mfcyzrne@sfpdcrka.com','','','','mfcyzrne@sfpdcrka.com','','','Aktivan',0),(881,'Rednumrk','Rednumrk','','','','','ucxtxzpe@bfkjfizr.com','','','','ucxtxzpe@bfkjfizr.com','','','Aktivan',0),(882,'Glwbjuuh','Glwbjuuh','','','','','pdckcylf@bvqitueh.com','','','','pdckcylf@bvqitueh.com','','','Aktivan',0),(883,'Dosznmxz','Dosznmxz','','','','','rjsudkdf@opmobevn.com','','','','rjsudkdf@opmobevn.com','','','Aktivan',0),(884,'Aqemtsck','Aqemtsck','','','','','haxdzrnj@yfxvjiwv.com','','','','haxdzrnj@yfxvjiwv.com','','','Aktivan',0),(885,'Quimlgqe','Quimlgqe','','','','','jpqvvjqt@leaxvsxk.com','','','','jpqvvjqt@leaxvsxk.com','','','Aktivan',0),(886,'Wkjotlnu','Wkjotlnu','','','','','mvsrufqc@epjkqhie.com','','','','mvsrufqc@epjkqhie.com','','','Aktivan',0),(887,'Swequjos','Swequjos','','','','','zipasbzs@rbowshto.com','','','','zipasbzs@rbowshto.com','','','Aktivan',0),(888,'Nyhfzsmg','Nyhfzsmg','','','','','suvkhxqg@yptckwfp.com','','','','suvkhxqg@yptckwfp.com','','','Aktivan',0),(889,'aihathprs','aihathprs','','','','','jtaxqo@gnkfpo.com','','','','jtaxqo@gnkfpo.com','','','Aktivan',0),(890,'Nqgmleov','Nqgmleov','','','','','oopqijdr@dhswoxwu.com','','','','oopqijdr@dhswoxwu.com','','','Aktivan',0),(891,'Zaaflftj','Zaaflftj','','','','','nnxvchnf@dnzkwype.com','','','','nnxvchnf@dnzkwype.com','','','Aktivan',0),(892,'Isfrmwfj','Isfrmwfj','','','','','igfykfma@mohasrir.com','','','','igfykfma@mohasrir.com','','','Aktivan',0),(893,'Bmlhcrbn','Bmlhcrbn','','','','','vwkblfho@eejwkgfk.com','','','','vwkblfho@eejwkgfk.com','','','Aktivan',0),(894,'Wtbezozd','Wtbezozd','','','','','eqyhjqsm@vwjoqdju.com','','','','eqyhjqsm@vwjoqdju.com','','','Aktivan',0),(895,'Xtbvbrua','Xtbvbrua','','','','','yjjzcinw@pnhrscae.com','','','','yjjzcinw@pnhrscae.com','','','Aktivan',0),(896,'Tkmdhucu','Tkmdhucu','','','','','ygzylxwy@lsnvqwvj.com','','','','ygzylxwy@lsnvqwvj.com','','','Aktivan',0),(897,'Onadpjil','Onadpjil','','','','','iupejkah@tdxatxos.com','','','','iupejkah@tdxatxos.com','','','Aktivan',0),(898,'Rpeeacqj','Rpeeacqj','','','','','ydanjioq@qbirjgme.com','','','','ydanjioq@qbirjgme.com','','','Aktivan',0),(899,'Ddtpdkhb','Ddtpdkhb','','','','','pkxibhfm@wiuovoht.com','','','','pkxibhfm@wiuovoht.com','','','Aktivan',0),(900,'Iwwrdpmf','Iwwrdpmf','','','','','yjsjvquw@bpmaqwvt.com','','','','yjsjvquw@bpmaqwvt.com','','','Aktivan',0),(901,'Dfzwakra','Dfzwakra','','','','','chnwztiv@ilfhqnce.com','','','','chnwztiv@ilfhqnce.com','','','Aktivan',0),(902,'Oqvvcqsf','Oqvvcqsf','','','','','jntuqpab@eqwdnmqx.com','','','','jntuqpab@eqwdnmqx.com','','','Aktivan',0),(903,'Akeqkzko','Akeqkzko','','','','','bppcvuir@ncsosatq.com','','','','bppcvuir@ncsosatq.com','','','Aktivan',0),(904,'Ahhwitvl','Ahhwitvl','','','','','wdlluwqj@zfveuhlp.com','','','','wdlluwqj@zfveuhlp.com','','','Aktivan',0),(905,'Nxvsoseo','Nxvsoseo','','','','','wwkrbhpx@wbzcqwom.com','','','','wwkrbhpx@wbzcqwom.com','','','Aktivan',0),(906,'Qgozasqe','Qgozasqe','','','','','xrywfaep@bthydwnh.com','','','','xrywfaep@bthydwnh.com','','','Aktivan',0),(907,'Qajnbxlw','Qajnbxlw','','','','','vsiyupuu@llzsrdzm.com','','','','vsiyupuu@llzsrdzm.com','','','Aktivan',0),(908,'Vyvershc','Vyvershc','','','','','bocmvycj@ghulrhab.com','','','','bocmvycj@ghulrhab.com','','','Aktivan',0),(909,'Iuuximdu','Iuuximdu','','','','','ujhjhpgy@zsljllpc.com','','','','ujhjhpgy@zsljllpc.com','','','Aktivan',0),(910,'Zmkkjdja','Zmkkjdja','','','','','mdmjraey@qgcgvcts.com','','','','mdmjraey@qgcgvcts.com','','','Aktivan',0),(911,'Rouyygiw','Rouyygiw','','','','','ougvgfcs@djbvuuff.com','','','','ougvgfcs@djbvuuff.com','','','Aktivan',0),(912,'Nxjxvlqc','Nxjxvlqc','','','','','fnslrzxj@tfiigzrz.com','','','','fnslrzxj@tfiigzrz.com','','','Aktivan',0),(913,'Trfiojgz','Trfiojgz','','','','','cucwikrk@syenuush.com','','','','cucwikrk@syenuush.com','','','Aktivan',0),(914,'Dabbmjxw','Dabbmjxw','','','','','cfrlhiqc@dqzvrxnd.com','','','','cfrlhiqc@dqzvrxnd.com','','','Aktivan',0),(915,'Glehtqbx','Glehtqbx','','','','','orwfmkrq@aljfsuor.com','','','','orwfmkrq@aljfsuor.com','','','Aktivan',0),(916,'Vrmlxglx','Vrmlxglx','','','','','dndvrlkc@mhqjwrge.com','','','','dndvrlkc@mhqjwrge.com','','','Aktivan',0),(917,'Qpirtwel','Qpirtwel','','','','','mnxjvtyq@bsfvadra.com','','','','mnxjvtyq@bsfvadra.com','','','Aktivan',0),(918,'Hmlauzqv','Hmlauzqv','','','','','ujjdjgzj@iowflpxm.com','','','','ujjdjgzj@iowflpxm.com','','','Aktivan',0),(919,'Ewiqrdgh','Ewiqrdgh','','','','','fnpwdsmn@uowrrfst.com','','','','fnpwdsmn@uowrrfst.com','','','Aktivan',0),(920,'Sckkxvlh','Sckkxvlh','','','','','rgmkwawu@icxsihlx.com','','','','rgmkwawu@icxsihlx.com','','','Aktivan',0),(921,'qzhaswjn','qzhaswjn','','','','','euwxzx@lwzqey.com','','','','euwxzx@lwzqey.com','','','Aktivan',0),(922,'FedericoDuran','FedericoDuran','','','','','DwayneBrooks47@yahoo.com','','','','DwayneBrooks47@yahoo.com','','','Aktivan',0),(923,'qsbylzlch','qsbylzlch','','','','','btxhcl@bjzqpa.com','','','','btxhcl@bjzqpa.com','','','Aktivan',0),(924,'uqxcxxwajz','uqxcxxwajz','','','','','duhgll@pbkzyg.com','','','','duhgll@pbkzyg.com','','','Aktivan',0),(925,'jwsosjtptfd','jwsosjtptfd','','','','','owvorx@svosop.com','','','','owvorx@svosop.com','','','Aktivan',0),(926,'ndpppppztsi','ndpppppztsi','','','','','efpcon@egkqyn.com','','','','efpcon@egkqyn.com','','','Aktivan',0),(927,'jmqkbqut','jmqkbqut','','','','','fyyxxh@uosxwv.com','','','','fyyxxh@uosxwv.com','','','Aktivan',0),(928,'ydemjbinhwa','ydemjbinhwa','','','','','owhzpl@oiyeos.com','','','','owhzpl@oiyeos.com','','','Aktivan',0),(929,'irlgcajunu','irlgcajunu','','','','','wyqskw@fhqlbb.com','','','','wyqskw@fhqlbb.com','','','Aktivan',0),(930,'Fmxwflfx','Fmxwflfx','','','','','saodgymp@egzxuzre.com','','','','saodgymp@egzxuzre.com','','','Aktivan',0),(931,'Nkqxrtjf','Nkqxrtjf','','','','','koroeopx@ycbmmrsn.com','','','','koroeopx@ycbmmrsn.com','','','Aktivan',0),(932,'Ufpufgel','Ufpufgel','','','','','yyhofazh@smkxidhi.com','','','','yyhofazh@smkxidhi.com','','','Aktivan',0),(933,'Nmjnhrlr','Nmjnhrlr','','','','','hbgbrzkn@vopqvhjq.com','','','','hbgbrzkn@vopqvhjq.com','','','Aktivan',0),(934,'Rgccfihy','Rgccfihy','','','','','nsaxqvig@rbwdmaqj.com','','','','nsaxqvig@rbwdmaqj.com','','','Aktivan',0),(935,'Xwjzhesn','Xwjzhesn','','','','','grfwmglm@pudgfhug.com','','','','grfwmglm@pudgfhug.com','','','Aktivan',0),(936,'Fwhmcxko','Fwhmcxko','','','','','ovgolwnk@ryjkxmbb.com','','','','ovgolwnk@ryjkxmbb.com','','','Aktivan',0),(937,'Ztaltand','Ztaltand','','','','','qzrnnmna@qjkcgzdx.com','','','','qzrnnmna@qjkcgzdx.com','','','Aktivan',0),(938,'Xxicntrw','Xxicntrw','','','','','mquuxgbv@otuihhov.com','','','','mquuxgbv@otuihhov.com','','','Aktivan',0),(939,'Ihjguhwm','Ihjguhwm','','','','','zlsydghl@zulpwduw.com','','','','zlsydghl@zulpwduw.com','','','Aktivan',0),(940,'Vuaepzil','Vuaepzil','','','','','wackynlp@ouzeaibb.com','','','','wackynlp@ouzeaibb.com','','','Aktivan',0),(941,'Ciskcqzo','Ciskcqzo','','','','','egzwyccs@vgyrwqxs.com','','','','egzwyccs@vgyrwqxs.com','','','Aktivan',0),(942,'Ibccvait','Ibccvait','','','','','bpxfkuny@mgjpxqry.com','','','','bpxfkuny@mgjpxqry.com','','','Aktivan',0),(943,'Qejkyshg','Qejkyshg','','','','','kyeoaewg@nvafxioc.com','','','','kyeoaewg@nvafxioc.com','','','Aktivan',0),(944,'Fhtfjfjp','Fhtfjfjp','','','','','idhwwdal@flrqspfw.com','','','','idhwwdal@flrqspfw.com','','','Aktivan',0),(945,'Zdybzhki','Zdybzhki','','','','','yvtxzjnz@qjehqyin.com','','','','yvtxzjnz@qjehqyin.com','','','Aktivan',0),(946,'Dfhpqkdf','Dfhpqkdf','','','','','rxwnsjuz@brcnuixj.com','','','','rxwnsjuz@brcnuixj.com','','','Aktivan',0),(947,'Kibiwxzv','Kibiwxzv','','','','','ixromaxe@fyiepazj.com','','','','ixromaxe@fyiepazj.com','','','Aktivan',0),(948,'Jmagloxx','Jmagloxx','','','','','icgfwmbv@xwufalkm.com','','','','icgfwmbv@xwufalkm.com','','','Aktivan',0),(949,'Wolwnlwz','Wolwnlwz','','','','','ywemcofu@lhzqdocs.com','','','','ywemcofu@lhzqdocs.com','','','Aktivan',0),(950,'Xddlwzue','Xddlwzue','','','','','aemqsekb@cytfhlfl.com','','','','aemqsekb@cytfhlfl.com','','','Aktivan',0),(951,'Yzlpzysk','Yzlpzysk','','','','','ebvteqye@ozckbtgr.com','','','','ebvteqye@ozckbtgr.com','','','Aktivan',0),(952,'Qmjipzvl','Qmjipzvl','','','','','nrepqzqy@yburdhba.com','','','','nrepqzqy@yburdhba.com','','','Aktivan',0),(953,'Mebnnqir','Mebnnqir','','','','','pvodxsbo@jeqgjpmg.com','','','','pvodxsbo@jeqgjpmg.com','','','Aktivan',0),(954,'Uwuejnhc','Uwuejnhc','','','','','beufsdun@czaesbup.com','','','','beufsdun@czaesbup.com','','','Aktivan',0),(955,'Pdivtgyd','Pdivtgyd','','','','','aspgjzzz@rlvvelgt.com','','','','aspgjzzz@rlvvelgt.com','','','Aktivan',0),(956,'Dauxcjek','Dauxcjek','','','','','uvofcaiz@uyyogshg.com','','','','uvofcaiz@uyyogshg.com','','','Aktivan',0),(957,'Hzwxlmzw','Hzwxlmzw','','','','','pcodqwer@zzxitnjw.com','','','','pcodqwer@zzxitnjw.com','','','Aktivan',0),(958,'Uaiuebwm','Uaiuebwm','','','','','yhmgqgdf@jalzdssm.com','','','','yhmgqgdf@jalzdssm.com','','','Aktivan',0),(959,'Euenmiov','Euenmiov','','','','','hbywswam@bihvxmvz.com','','','','hbywswam@bihvxmvz.com','','','Aktivan',0),(960,'Wwaweqeb','Wwaweqeb','','','','','lhovmnwj@jekoxohj.com','','','','lhovmnwj@jekoxohj.com','','','Aktivan',0),(961,'Xirugadb','Xirugadb','','','','','sgqjhuey@pxdfuctj.com','','','','sgqjhuey@pxdfuctj.com','','','Aktivan',0),(962,'Qvtfikma','Qvtfikma','','','','','sfmyzkka@wlfdggeh.com','','','','sfmyzkka@wlfdggeh.com','','','Aktivan',0),(963,'Xafhccvr','Xafhccvr','','','','','xfcheggi@lozhvwpg.com','','','','xfcheggi@lozhvwpg.com','','','Aktivan',0),(964,'Lzqjipni','Lzqjipni','','','','','dbulcfhg@yflxjbwb.com','','','','dbulcfhg@yflxjbwb.com','','','Aktivan',0),(965,'Bvlnhzue','Bvlnhzue','','','','','gsoywdzb@ouiuzygn.com','','','','gsoywdzb@ouiuzygn.com','','','Aktivan',0),(966,'Xmkqfgwd','Xmkqfgwd','','','','','csbacavr@wowqkpnn.com','','','','csbacavr@wowqkpnn.com','','','Aktivan',0),(967,'Fduhngwp','Fduhngwp','','','','','qoymikfg@apumnudz.com','','','','qoymikfg@apumnudz.com','','','Aktivan',0),(968,'Yjrrtotm','Yjrrtotm','','','','','ernixbtw@lbjrkkck.com','','','','ernixbtw@lbjrkkck.com','','','Aktivan',0),(969,'Lbcedgtq','Lbcedgtq','','','','','rpxjsfwt@isilxmci.com','','','','rpxjsfwt@isilxmci.com','','','Aktivan',0),(970,'Bhpjwkpi','Bhpjwkpi','','','','','ouhvadim@mdugtgrn.com','','','','ouhvadim@mdugtgrn.com','','','Aktivan',0),(971,'Cwaitdmc','Cwaitdmc','','','','','oxrsvndq@lkhosksn.com','','','','oxrsvndq@lkhosksn.com','','','Aktivan',0),(972,'Fmlfrssx','Fmlfrssx','','','','','pebrpexp@yhnzbwpe.com','','','','pebrpexp@yhnzbwpe.com','','','Aktivan',0),(973,'Pkukbahs','Pkukbahs','','','','','egkvhjec@qcrejpks.com','','','','egkvhjec@qcrejpks.com','','','Aktivan',0),(974,'Tfcyqsqr','Tfcyqsqr','','','','','rvtijiwt@cldiqiua.com','','','','rvtijiwt@cldiqiua.com','','','Aktivan',0),(975,'Krtytrqs','Krtytrqs','','','','','lnwssozw@jnpvynyv.com','','','','lnwssozw@jnpvynyv.com','','','Aktivan',0),(976,'Yhkybreu','Yhkybreu','','','','','mdxysmzz@impejjvc.com','','','','mdxysmzz@impejjvc.com','','','Aktivan',0),(977,'Npjdifiz','Npjdifiz','','','','','qddqsggs@uwbqbwvb.com','','','','qddqsggs@uwbqbwvb.com','','','Aktivan',0),(978,'Hhqkjdbr','Hhqkjdbr','','','','','usnmlope@bdpyihco.com','','','','usnmlope@bdpyihco.com','','','Aktivan',0),(979,'Oqbgtigb','Oqbgtigb','','','','','irresfcy@ysrtcfat.com','','','','irresfcy@ysrtcfat.com','','','Aktivan',0),(980,'Zcgwysfm','Zcgwysfm','','','','','mydapbma@urfaroby.com','','','','mydapbma@urfaroby.com','','','Aktivan',0),(981,'Hjwypttq','Hjwypttq','','','','','anpofhmn@hxifqjko.com','','','','anpofhmn@hxifqjko.com','','','Aktivan',0),(982,'Celfyorl','Celfyorl','','','','','oiishtcb@uyvnpzga.com','','','','oiishtcb@uyvnpzga.com','','','Aktivan',0),(983,'Qocgdbsb','Qocgdbsb','','','','','xrxiqwma@ahtsrthu.com','','','','xrxiqwma@ahtsrthu.com','','','Aktivan',0),(984,'Kdnxlvrl','Kdnxlvrl','','','','','dvnazsro@udiwevhi.com','','','','dvnazsro@udiwevhi.com','','','Aktivan',0),(985,'Orgoplfg','Orgoplfg','','','','','yuvimxoi@yufqxrpl.com','','','','yuvimxoi@yufqxrpl.com','','','Aktivan',0),(986,'FosterNieves','FosterNieves','','','','','NettieCooper34@yahoo.com','','','','NettieCooper34@yahoo.com','','','Aktivan',0),(987,'iaoolfqhgyr','iaoolfqhgyr','','','','','joxtzw@rpjgqx.com','','','','joxtzw@rpjgqx.com','','','Aktivan',0),(988,'Dorothy Wekky','Dorothy Wekky','','','','','dorothy.wekky@microsoft.com','','','','dorothy.wekky@microsoft.com','','','Aktivan',0),(989,'swodzz','swodzz','','','','','wnfitk@vssefp.com','','','','wnfitk@vssefp.com','','','Aktivan',0),(990,'ftwejlqttov','ftwejlqttov','','','','','qhmlpd@qihxwd.com','','','','qhmlpd@qihxwd.com','','','Aktivan',0),(991,'FrankieMcgee','FrankieMcgee','','','','','ElizabethLarsen29@yahoo.com','','','','ElizabethLarsen29@yahoo.com','','','Aktivan',0),(992,'otcuoo','otcuoo','','','','','bpoujm@vfhshj.com','','','','bpoujm@vfhshj.com','','','Aktivan',0),(993,'jmhohcccl','jmhohcccl','','','','','jissvw@uxrbsa.com','','','','jissvw@uxrbsa.com','','','Aktivan',0),(994,'jxbajtos','jxbajtos','','','','','rqzajh@jlvzti.com','','','','rqzajh@jlvzti.com','','','Aktivan',0),(995,'Elmer','Graham','','','','','donavan@mail.ru','','','','donavan@mail.ru','','','Aktivan',0),(996,'xrbrgo','xrbrgo','','','','','xchghh@atwwqq.com','','','','xchghh@atwwqq.com','','','Aktivan',0),(997,'yjmbtwwirkp','yjmbtwwirkp','','','','','wmmxos@bdkgxu.com','','','','wmmxos@bdkgxu.com','','','Aktivan',0),(998,'RosarioRush','RosarioRush','','','','','FritzBlake90@yahoo.com','','','','FritzBlake90@yahoo.com','','','Aktivan',0),(999,'urkqyzak','urkqyzak','','','','','ynbnmp@dsuxuq.com','','','','ynbnmp@dsuxuq.com','','','Aktivan',0),(1000,'swjowwlub','swjowwlub','','','','','fcgxue@cqzspt.com','','','','fcgxue@cqzspt.com','','','Aktivan',0),(1001,'Ken','Ramon','','','','','sage@yahoo.com','','','','sage@yahoo.com','','','Aktivan',0),(1002,'bubpzykj','bubpzykj','','','','','etvsiy@icijtd.com','','','','etvsiy@icijtd.com','','','Aktivan',0),(1003,'zpajria','zpajria','','','','','tdauwn@mbdaig.com','','','','tdauwn@mbdaig.com','','','Aktivan',0),(1004,'oladele','segun','','','','','oseg70@yahoo.com','','','','oseg70@yahoo.com','','','Aktivan',0),(1005,'BeckyRivera','BeckyRivera','','','','','BeckyRivera76@yahoo.com','','','','BeckyRivera76@yahoo.com','','','Aktivan',0),(1006,'FritzBlake9','FritzBlake9','','','','','AngeloSilva84@yahoo.com','','','','AngeloSilva84@yahoo.com','','','Aktivan',0),(1007,'iozygr','iozygr','','','','','ogjmeb@dsrxbk.com','','','','ogjmeb@dsrxbk.com','','','Aktivan',0),(1008,'Barbara','Burja','','','','','bjburja@yahoo.com','','','','bjburja@yahoo.com','','','Aktivan',0),(1009,'Aleksander','Sadikov','','','','','aleksander.sadikov@insiders-slovenia.si','','','','aleksander.sadikov@insiders-slovenia.si','','','Aktivan',0),(1010,'bgzshmidfe','bgzshmidfe','','','','','yjmsqm@hgifsw.com','','','','yjmsqm@hgifsw.com','','','Aktivan',0),(1011,'aleksandra','grozdanic','','','','','aleks_grozdanic@hotmail.com','','','','aleks_grozdanic@hotmail.com','','','Aktivan',0),(1012,'Nada','Arnold','','','','','a3379nada@bellsouth.net','','','','a3379nada@bellsouth.net','','','Aktivan',0),(1013,'ann Segal','ann','','','','','annsegal@fuse.net','','','','annsegal@fuse.net','','','Aktivan',0),(1014,'Douglas Mullen','Doug','','','','','mullend@mac.com','','','','mullend@mac.com','','','Aktivan',0),(1015,'zmctrsoqgt','zmctrsoqgt','','','','','plkdgp@ejuler.com','','','','plkdgp@ejuler.com','','','Aktivan',0),(1016,'Ann Marie','Bernstein','','','','','amidoodles@sbcglobal.net','','','','amidoodles@sbcglobal.net','','','Aktivan',0),(1017,'Laura','Fragiacomo','','','','','laurinstan@gmail.com','','','','laurinstan@gmail.com','','','Aktivan',0),(1018,'LawrenceBryant','LawrenceBryant','','','','','DewittWallace69@yahoo.com','','','','DewittWallace69@yahoo.com','','','Aktivan',0),(1019,'pyivmorei','pyivmorei','','','','','pakugu@vgirgz.com','','','','pakugu@vgirgz.com','','','Aktivan',0),(1020,'Daphne','Georges','','','','','dgeorges300@comcast.net','','','','dgeorges300@comcast.net','','','Aktivan',0),(1021,'Avinash','Manohar','','','','','avi1010@gmail.com','','','','avi1010@gmail.com','','','Aktivan',0),(1022,'patrick','mackay','','','','','patrickhmackay@aol.com','','','','patrickhmackay@aol.com','','','Aktivan',0),(1023,'Bill','Hecht','','','','','wshecht@rochester.rr.com','','','','wshecht@rochester.rr.com','','','Aktivan',0),(1024,'Eliza','Hall','','','','','hall_ea@hotmail.com','','','','hall_ea@hotmail.com','','','Aktivan',0),(1025,'cherly','hermelinda','','','','','mymain@mail.com','','','','mymain@mail.com','','','Aktivan',0),(1026,'eosyscmusg','eosyscmusg','','','','','qcrblj@ylpwvw.com','','','','qcrblj@ylpwvw.com','','','Aktivan',0),(1027,'jrkacezybe','jrkacezybe','','','','','aqteqw@fkpjmw.com','','','','aqteqw@fkpjmw.com','','','Aktivan',0),(1028,'pbkzsavhev','pbkzsavhev','','','','','afelkt@bspalm.com','','','','afelkt@bspalm.com','','','Aktivan',0),(1029,'zijkaiht','zijkaiht','','','','','wsfgiv@broovu.com','','','','wsfgiv@broovu.com','','','Aktivan',0),(1030,'ElizabethLarsen','ElizabethLarsen','','','','','GlendaBarron46@yahoo.com','','','','GlendaBarron46@yahoo.com','','','Aktivan',0),(1031,'jihdzuomdsr','jihdzuomdsr','','','','','qprubp@zetrkt.com','','','','qprubp@zetrkt.com','','','Aktivan',0),(1032,'Lucinda','Abonza','','','','','MrsLucindaAbonza@live.com','','','','MrsLucindaAbonza@live.com','','','Aktivan',0),(1033,'oqsugrlm','oqsugrlm','','','','','tcoxqs@fdprhk.com','','','','tcoxqs@fdprhk.com','','','Aktivan',0),(1034,'igouivpqm','igouivpqm','','','','','iowbqp@sytsch.com','','','','iowbqp@sytsch.com','','','Aktivan',0),(1035,'ponyih','ponyih','','','','','zzkkmq@uixxtw.com','','','','zzkkmq@uixxtw.com','','','Aktivan',0),(1036,'TyroneGlover','TyroneGlover','','','','','RosarioRush03@yahoo.com','','','','RosarioRush03@yahoo.com','','','Aktivan',0),(1037,'ifjukos','ifjukos','','','','','vliwon@hvkkzy.com','','','','vliwon@hvkkzy.com','','','Aktivan',0),(1038,'yfethtxihc','yfethtxihc','','','','','fhewvz@leuhaf.com','','','','fhewvz@leuhaf.com','','','Aktivan',0),(1039,'Borut','Kokalj','','','','','borut_kokalj@yahoo.com','','','','borut_kokalj@yahoo.com','','','Aktivan',0),(1040,'TIC','Idrija','','','','','ticidrija@icra.si','','','','ticidrija@icra.si','','','Aktivan',0),(1041,'jannxyujito','jannxyujito','','','','','cpweqw@egesjp.com','','','','cpweqw@egesjp.com','','','Aktivan',0),(1042,'aidugg','aidugg','','','','','iscmmw@fcuszj.com','','','','iscmmw@fcuszj.com','','','Aktivan',0),(1043,'FosterNieves','FosterNieves','','','','','FedericoDuran05@yahoo.com','','','','FedericoDuran05@yahoo.com','','','Aktivan',0),(1044,'ksnpfkmj','ksnpfkmj','','','','','hoquum@brbsqn.com','','','','hoquum@brbsqn.com','','','Aktivan',0),(1045,'narinder singh','narinder singh','','','','','billabunty@yahoo.com','','','','billabunty@yahoo.com','','','Aktivan',0),(1046,'oogxntlyizp','oogxntlyizp','','','','','pxjsix@tkhbqz.com','','','','pxjsix@tkhbqz.com','','','Aktivan',0),(1047,'bsmsfw','bsmsfw','','','','','rnlpej@ezliso.com','','','','rnlpej@ezliso.com','','','Aktivan',0),(1048,'kwwmawipnk','kwwmawipnk','','','','','ajncck@omdkgy.com','','','','ajncck@omdkgy.com','','','Aktivan',0),(1049,'hwsigi','hwsigi','','','','','eotirw@njaeoh.com','','','','eotirw@njaeoh.com','','','Aktivan',0),(1050,'uobutrsdtbf','uobutrsdtbf','','','','','mmlwcw@bvnwvf.com','','','','mmlwcw@bvnwvf.com','','','Aktivan',0),(1051,'htobvphlko','htobvphlko','','','','','xtguxt@kixvpu.com','','','','xtguxt@kixvpu.com','','','Aktivan',0),(1052,'bqnndfpby','bqnndfpby','','','','','gxoccx@fjsijp.com','','','','gxoccx@fjsijp.com','','','Aktivan',0),(1053,'qbzpuqkzmg','qbzpuqkzmg','','','','','uxmhbt@hotvym.com','','','','uxmhbt@hotvym.com','','','Aktivan',0),(1054,'arczkmyrbi','arczkmyrbi','','','','','pvzfbj@wevbxn.com','','','','pvzfbj@wevbxn.com','','','Aktivan',0),(1055,'ihorfsezj','ihorfsezj','','','','','yhbetp@zylxeb.com','','','','yhbetp@zylxeb.com','','','Aktivan',0),(1056,'nhsfvpmtmf','nhsfvpmtmf','','','','','gbgbxd@adjxpf.com','','','','gbgbxd@adjxpf.com','','','Aktivan',0),(1057,'eqqxuvo','eqqxuvo','','','','','tthnbf@fspxqn.com','','','','tthnbf@fspxqn.com','','','Aktivan',0),(1058,'Kent','Kent','','','','','ewroja8@yandex.ru','','','','ewroja8@yandex.ru','','','Aktivan',0),(1059,'Clara03','Clara03','','','','','arzus19e@yahoo.com','','','','arzus19e@yahoo.com','','','Aktivan',0),(1060,'local gay clubs','local gay clubs','','','','','vfbmpqxs@hziyudye.com','','','','vfbmpqxs@hziyudye.com','','','Aktivan',0),(1061,'xlbbypp','xlbbypp','','','','','qthnkf@iimmux.com','','','','qthnkf@iimmux.com','','','Aktivan',0),(1062,'STeven','Setinc','','','','','sjsetinc@aol.com','','','','sjsetinc@aol.com','','','Aktivan',0),(1063,'Broxx','Broxx','','','','','Dan1oo@narod.ru','','','','Dan1oo@narod.ru','','','Aktivan',0),(1064,'FRANCINE','JEREB','','','','','f.jereb@comcast.net','','','','f.jereb@comcast.net','','','Aktivan',0),(1065,'Broxx','Broxx','','','','','Dan1oo@ya.ru','','','','Dan1oo@ya.ru','','','Aktivan',0),(1066,'rvxalc','rvxalc','','','','','natnhg@wnscbr.com','','','','natnhg@wnscbr.com','','','Aktivan',0),(1067,'Krondo8','Krondo8','','','','','kauir761@yahoo.com','','','','kauir761@yahoo.com','','','Aktivan',0),(1068,'pobmctvmm','pobmctvmm','','','','','jddcjg@jfezjm.com','','','','jddcjg@jfezjm.com','','','Aktivan',0),(1069,'uvfpdt','uvfpdt','','','','','gsetdd@uucijj.com','','','','gsetdd@uucijj.com','','','Aktivan',0),(1070,'mrjkztwzk','mrjkztwzk','','','','','akvkmu@ifwywc.com','','','','akvkmu@ifwywc.com','','','Aktivan',0),(1071,'ualphirmgqi','ualphirmgqi','','','','','zoiozy@slgsqj.com','','','','zoiozy@slgsqj.com','','','Aktivan',0),(1072,'nqhlyaa','nqhlyaa','','','','','pwpklm@nchrtv.com','','','','pwpklm@nchrtv.com','','','Aktivan',0),(1073,'dadlzopcnb','dadlzopcnb','','','','','savtnz@vwxjss.com','','','','savtnz@vwxjss.com','','','Aktivan',0),(1074,'qqfnjwxr','qqfnjwxr','','','','','sfjhlk@xjivkx.com','','','','sfjhlk@xjivkx.com','','','Aktivan',0),(1075,'Maria16','Maria16','','','','','ewroja8@narod.ru','','','','ewroja8@narod.ru','','','Aktivan',0),(1076,'Gartman6','Gartman6','','','','','Dan1oo@yandex.ru','','','','Dan1oo@yandex.ru','','','Aktivan',0),(1077,'vcvxeeqfdj','vcvxeeqfdj','','','','','utjrdx@tjzdfd.com','','','','utjrdx@tjzdfd.com','','','Aktivan',0),(1078,'nhxphpi','nhxphpi','','','','','fdveft@slatls.com','','','','fdveft@slatls.com','','','Aktivan',0),(1079,'Maria16','Maria16','','','','','clingo44@ya.ru','','','','clingo44@ya.ru','','','Aktivan',0),(1080,'oiyedzvlpo','oiyedzvlpo','','','','','ktdoid@xqltci.com','','','','ktdoid@xqltci.com','','','Aktivan',0),(1081,'quwnotazs','quwnotazs','','','','','rnpwpq@byvhim.com','','','','rnpwpq@byvhim.com','','','Aktivan',0),(1082,'sesgwjgl','sesgwjgl','','','','','vzjbee@enqcwc.com','','','','vzjbee@enqcwc.com','','','Aktivan',0),(1083,'Krondo8','Krondo8','','','','','clingo44@yandex.ru','','','','clingo44@yandex.ru','','','Aktivan',0),(1084,'Amedeus','Amedeus','','','','','aubree@fisher.com','','','','aubree@fisher.com','','','Aktivan',0),(1085,'vplsxmnq','vplsxmnq','','','','','hduhwj@jgiefp.com','','','','hduhwj@jgiefp.com','','','Aktivan',0),(1086,'Krondo8','Krondo8','','','','','clingo44@narod.ru','','','','clingo44@narod.ru','','','Aktivan',0),(1087,'rlqwqcussoq','rlqwqcussoq','','','','','xhyjwg@ruibkr.com','','','','xhyjwg@ruibkr.com','','','Aktivan',0),(1088,'Sail7T','Sail7T','','','','','ewroja8@ya.ru','','','','ewroja8@ya.ru','','','Aktivan',0),(1089,'agdzgdjljoh','agdzgdjljoh','','','','','cwjiam@typshq.com','','','','cwjiam@typshq.com','','','Aktivan',0),(1090,'shyblekcqm','shyblekcqm','','','','','uezltd@zslpmv.com','','','','uezltd@zslpmv.com','','','Aktivan',0),(1091,'jnnlosi','jnnlosi','','','','','ocnrhb@fuclpp.com','','','','ocnrhb@fuclpp.com','','','Aktivan',0),(1092,'Sillana2','Sillana2','','','','','Ren67v@yahoo.com','','','','Ren67v@yahoo.com','','','Aktivan',0),(1093,'hipswrvslz','hipswrvslz','','','','','nvcqnu@wcwoyc.com','','','','nvcqnu@wcwoyc.com','','','Aktivan',0),(1094,'feupvpazild','feupvpazild','','','','','fxzzmf@zmqryf.com','','','','fxzzmf@zmqryf.com','','','Aktivan',0),(1095,'ktolje','ktolje','','','','','zkadcy@ikwqjq.com','','','','zkadcy@ikwqjq.com','','','Aktivan',0),(1096,'qrrrujxlkh','qrrrujxlkh','','','','','salrzp@csrnlk.com','','','','salrzp@csrnlk.com','','','Aktivan',0),(1097,'lncabk','lncabk','','','','','paekgg@ukuncj.com','','','','paekgg@ukuncj.com','','','Aktivan',0),(1098,'mtpnzgazwzw','mtpnzgazwzw','','','','','uwegjx@mrlnia.com','','','','uwegjx@mrlnia.com','','','Aktivan',0),(1099,'mjtfdzqdk','mjtfdzqdk','','','','','cfeaqd@sxwujr.com','','','','cfeaqd@sxwujr.com','','','Aktivan',0),(1100,'fwjcmybitga','fwjcmybitga','','','','','nrdyel@gpwhkn.com','','','','nrdyel@gpwhkn.com','','','Aktivan',0),(1101,'Kolesa','Your surname','','','','','johnkolesa@gmail.com','','','','johnkolesa@gmail.com','','','Aktivan',0),(1102,'txtnulgg','txtnulgg','','','','','pewfzy@qjmvkl.com','','','','pewfzy@qjmvkl.com','','','Aktivan',0),(1103,'myaqson','myaqson','','','','','olxeej@dtrbaa.com','','','','olxeej@dtrbaa.com','','','Aktivan',0),(1104,'YahooBot','YahooBot','','','','','yah13oaaa@gmail.com','','','','yah13oaaa@gmail.com','','','Aktivan',0),(1105,'HairyMan','HairyMan','','','','','mysuperhaerr@gmail.com','','','','mysuperhaerr@gmail.com','','','Aktivan',0),(1106,'txqbptwdyw','txqbptwdyw','','','','','kcjvhl@oamdap.com','','','','kcjvhl@oamdap.com','','','Aktivan',0),(1107,'lypmzhqhph','lypmzhqhph','','','','','phpagj@atgmrx.com','','','','phpagj@atgmrx.com','','','Aktivan',0),(1108,'wjedblqvoqm','wjedblqvoqm','','','','','exfjdv@onrpbg.com','','','','exfjdv@onrpbg.com','','','Aktivan',0),(1109,'xoqednp','xoqednp','','','','','oqwszi@woibud.com','','','','oqwszi@woibud.com','','','Aktivan',0),(1110,'ecstvsggz','ecstvsggz','','','','','eqmuyh@xdmnvv.com','','','','eqmuyh@xdmnvv.com','','','Aktivan',0),(1111,'fggejthafno','fggejthafno','','','','','kqizla@pbxnww.com','','','','kqizla@pbxnww.com','','','Aktivan',0),(1112,'obhwnqo','obhwnqo','','','','','hmhsua@jasyrg.com','','','','hmhsua@jasyrg.com','','','Aktivan',0),(1113,'lycafhhc','lycafhhc','','','','','vialxh@vbkqrm.com','','','','vialxh@vbkqrm.com','','','Aktivan',0),(1114,'idfnlulxy','idfnlulxy','','','','','btincq@dbwiku.com','','','','btincq@dbwiku.com','','','Aktivan',0),(1115,'xrqnilvndbs','xrqnilvndbs','','','','','oxovdj@lvdrtw.com','','','','oxovdj@lvdrtw.com','','','Aktivan',0),(1116,'kvqtqsrfqlk','kvqtqsrfqlk','','','','','mgabif@ajzhdm.com','','','','mgabif@ajzhdm.com','','','Aktivan',0),(1117,'byecqg','byecqg','','','','','lirinv@xntcph.com','','','','lirinv@xntcph.com','','','Aktivan',0),(1118,'zyaabldeiw','zyaabldeiw','','','','','vaevro@htpbgs.com','','','','vaevro@htpbgs.com','','','Aktivan',0),(1119,'John Malic','John Malic','','','','','vigoro@djiu.cn','','','','vigoro@djiu.cn','','','Aktivan',0),(1120,'John','John','','','','','hudtr@persw.cn','','','','hudtr@persw.cn','','','Aktivan',0),(1121,'Asdif','Asdif','','','','','procc@peevo.com','','','','procc@peevo.com','','','Aktivan',0),(1122,'Pickol','Pickol','','','','','girto@nierto.com','','','','girto@nierto.com','','','Aktivan',0),(1123,'Kim','Gerst','','','','','lemkogirl@gmail.com','','','','lemkogirl@gmail.com','','','Aktivan',0),(1124,'Mirjana','Miše Šrajlehner','','','','','miamsch@gmail.com','','','','miamsch@gmail.com','','','Aktivan',0),(1125,'ozeosl','ozeosl','','','','','opduwr@wvhmxa.com','','','','opduwr@wvhmxa.com','','','Aktivan',0),(1126,'samuel','samuel','','','','','sammy@gmail.com','','','','sammy@gmail.com','','','Aktivan',0),(1127,'Cancer Help','Cancer Help','','','','','helpcancer@microsoft.com','','','','helpcancer@microsoft.com','','','Aktivan',0),(1128,'gtkiavqahs','gtkiavqahs','','','','','mqswpg@idwuru.com','','','','mqswpg@idwuru.com','','','Aktivan',0),(1129,'fycornw','fycornw','','','','','wakmnf@masbey.com','','','','wakmnf@masbey.com','','','Aktivan',0),(1130,'cxbgva','cxbgva','','','','','ezxrss@myvipp.com','','','','ezxrss@myvipp.com','','','Aktivan',0),(1131,'splagtpscz','splagtpscz','','','','','qfllhp@ftovnu.com','','','','qfllhp@ftovnu.com','','','Aktivan',0),(1132,'Marie','Bozic','','','','','marieswoverland@gmail.com','','','','marieswoverland@gmail.com','','','Aktivan',0),(1133,'eklrikixw','eklrikixw','','','','','rosiiy@ydjwtr.com','','','','rosiiy@ydjwtr.com','','','Aktivan',0),(1134,'Christina','Ballard','','','','','cheechkaa@yahoo.com','','','','cheechkaa@yahoo.com','','','Aktivan',0),(1135,'mldowwc','mldowwc','','','','','njtpks@iljnyv.com','','','','njtpks@iljnyv.com','','','Aktivan',0),(1136,'kezkkbyo','kezkkbyo','','','','','emxxgr@dymxeb.com','','','','emxxgr@dymxeb.com','','','Aktivan',0),(1137,'Sally Newman','Sally Newman','','','','','sallynewman@microsoft.com','','','','sallynewman@microsoft.com','','','Aktivan',0),(1138,'kvfhfvofru','kvfhfvofru','','','','','iqkqgz@jrvyyn.com','','','','iqkqgz@jrvyyn.com','','','Aktivan',0),(1139,'hvloueinm','hvloueinm','','','','','aqfsio@edrzqs.com','','','','aqfsio@edrzqs.com','','','Aktivan',0),(1140,'vwmwvccumi','vwmwvccumi','','','','','fuqfyd@lcojux.com','','','','fuqfyd@lcojux.com','','','Aktivan',0),(1141,'kjlbhjp','kjlbhjp','','','','','xmyzie@heijvt.com','','','','xmyzie@heijvt.com','','','Aktivan',0),(1142,'XavierB','XavierB','','','','','Rewalk4@narod.ru','','','','Rewalk4@narod.ru','','','Aktivan',0),(1143,'GarryZero','GarryZero','','','','','Rewalk4@ya.ru','','','','Rewalk4@ya.ru','','','Aktivan',0),(1144,'lqkhnqsh','lqkhnqsh','','','','','zvujxg@sadenk.com','','','','zvujxg@sadenk.com','','','Aktivan',0),(1145,'qectxb','qectxb','','','','','hsbhnf@sdvhjy.com','','','','hsbhnf@sdvhjy.com','','','Aktivan',0),(1146,'aiiodjnpkcn','aiiodjnpkcn','','','','','pueada@ajmkwx.com','','','','pueada@ajmkwx.com','','','Aktivan',0),(1147,'zoljpdqqi','zoljpdqqi','','','','','mjpieu@gevugm.com','','','','mjpieu@gevugm.com','','','Aktivan',0),(1148,'iwiytsks','iwiytsks','','','','','xkpgvu@ahimhp.com','','','','xkpgvu@ahimhp.com','','','Aktivan',0),(1149,'GarryZero','GarryZero','','','','','Rewalk4@yandex.ru','','','','Rewalk4@yandex.ru','','','Aktivan',0),(1150,'cviqqasvh','cviqqasvh','','','','','tzfyto@pfsbeu.com','','','','tzfyto@pfsbeu.com','','','Aktivan',0),(1151,'Larisa9','Larisa9','','','','','claraodi00@yahoo.com','','','','claraodi00@yahoo.com','','','Aktivan',0),(1152,'arikrx','arikrx','','','','','zmftxv@zuyfki.com','','','','zmftxv@zuyfki.com','','','Aktivan',0),(1153,'bsglfegrc','bsglfegrc','','','','','pzwzde@lhblzh.com','','','','pzwzde@lhblzh.com','','','Aktivan',0),(1154,'Alek','Alek','','','','','lovesing@gmail.com','','','','lovesing@gmail.com','','','Aktivan',0),(1155,'lqktss','lqktss','','','','','kmbneg@uxejbl.com','','','','kmbneg@uxejbl.com','','','Aktivan',0),(1156,'yllkha','yllkha','','','','','oeaxlz@fvqsvr.com','','','','oeaxlz@fvqsvr.com','','','Aktivan',0),(1157,'Karen-Jane','Harkins','','','','','karenjaneharkins@yahoo.it','','','','karenjaneharkins@yahoo.it','','','Aktivan',0),(1158,'uojcmjnqq','uojcmjnqq','','','','','jmqcwg@ixfhje.com','','','','jmqcwg@ixfhje.com','','','Aktivan',0),(1159,'aogwcr','aogwcr','','','','','tiuiwh@ndedqb.com','','','','tiuiwh@ndedqb.com','','','Aktivan',0),(1160,'jyhwfpoyy','jyhwfpoyy','','','','','lxtrfv@cihhue.com','','','','lxtrfv@cihhue.com','','','Aktivan',0),(1161,'fnjefwuzztc','fnjefwuzztc','','','','','byihoj@evlnrv.com','','','','byihoj@evlnrv.com','','','Aktivan',0),(1162,'koadxe','koadxe','','','','','gcwtza@rgyvtf.com','','','','gcwtza@rgyvtf.com','','','Aktivan',0),(1163,'xgqmzyhig','xgqmzyhig','','','','','qmsdsx@wocrpt.com','','','','qmsdsx@wocrpt.com','','','Aktivan',0),(1164,'jwbkpsgddgf','jwbkpsgddgf','','','','','rfybrf@qesxcn.com','','','','rfybrf@qesxcn.com','','','Aktivan',0),(1165,'vzuodmgglp','vzuodmgglp','','','','','okquvk@auryds.com','','','','okquvk@auryds.com','','','Aktivan',0),(1166,'wymlybqcbgv','wymlybqcbgv','','','','','lntzix@nlannj.com','','','','lntzix@nlannj.com','','','Aktivan',0),(1167,'ylylbmtwkm','ylylbmtwkm','','','','','iierab@imwcgk.com','','','','iierab@imwcgk.com','','','Aktivan',0),(1168,'oeidccfr','oeidccfr','','','','','lshncl@cozpoi.com','','','','lshncl@cozpoi.com','','','Aktivan',0),(1169,'scott','scott','','','','','matures@gmail.com','','','','matures@gmail.com','','','Aktivan',0),(1170,'jrgmcdtri','jrgmcdtri','','','','','krnedf@qbqkyz.com','','','','krnedf@qbqkyz.com','','','Aktivan',0),(1171,'pprrxslyqni','pprrxslyqni','','','','','gdbjjm@utujwu.com','','','','gdbjjm@utujwu.com','','','Aktivan',0),(1172,'dyvtgi','dyvtgi','','','','','yaypzk@idwrgz.com','','','','yaypzk@idwrgz.com','','','Aktivan',0),(1173,'xynvje','xynvje','','','','','nqxacv@fneqev.com','','','','nqxacv@fneqev.com','','','Aktivan',0),(1174,'Mitja','Trampuz','','','','','mitja_trampuz@hotmail.com','','','','mitja_trampuz@hotmail.com','','','Aktivan',0),(1175,'adrian','sexton','','','','','adriansexton@gmail.com','','','','adriansexton@gmail.com','','','Aktivan',0),(1176,'azgprugtweq','azgprugtweq','','','','','aodnex@iyhzst.com','','','','aodnex@iyhzst.com','','','Aktivan',0),(1177,'fzmtdjcza','fzmtdjcza','','','','','izyoek@dppagk.com','','','','izyoek@dppagk.com','','','Aktivan',0),(1178,'aidmvkv','aidmvkv','','','','','jseshn@evgtej.com','','','','jseshn@evgtej.com','','','Aktivan',0),(1179,'mary','Pluth','','','','','mpluth@cox.net','','','','mpluth@cox.net','','','Aktivan',0),(1180,'oosksfxwcg','oosksfxwcg','','','','','tcymlx@qukgrp.com','','','','tcymlx@qukgrp.com','','','Aktivan',0),(1181,'azfloddvawp','azfloddvawp','','','','','picavf@vdkhpr.com','','','','picavf@vdkhpr.com','','','Aktivan',0),(1182,'Quincy','Quincy','','','','','JoanNoel02@yahoo.com','','','','JoanNoel02@yahoo.com','','','Aktivan',0),(1183,'Riley','Riley','','','','','BrunoEstes43@yahoo.com','','','','BrunoEstes43@yahoo.com','','','Aktivan',0),(1184,'Seamus','Seamus','','','','','TodDunlap35@yahoo.com','','','','TodDunlap35@yahoo.com','','','Aktivan',0),(1185,'Rocco','Rocco','','','','','NoreenButler57@yahoo.com','','','','NoreenButler57@yahoo.com','','','Aktivan',0),(1186,'Rahul','Rahul','','','','','GeorgeThornton13@yahoo.com','','','','GeorgeThornton13@yahoo.com','','','Aktivan',0),(1187,'Tristian','Tristian','','','','','PeteBranch85@yahoo.com','','','','PeteBranch85@yahoo.com','','','Aktivan',0),(1188,'Tristen','Tristen','','','','','PaulHaley99@yahoo.com','','','','PaulHaley99@yahoo.com','','','Aktivan',0),(1189,'Tavion','Tavion','','','','','RolandPeters39@yahoo.com','','','','RolandPeters39@yahoo.com','','','Aktivan',0),(1190,'Grae','Your surname','','','','','grae@nychen.com','','','','grae@nychen.com','','','Aktivan',0),(1191,'jxwhukisisv','jxwhukisisv','','','','','gdojlz@iizboc.com','','','','gdojlz@iizboc.com','','','Aktivan',0),(1192,'lwawujpc','lwawujpc','','','','','nfixip@dmzkza.com','','','','nfixip@dmzkza.com','','','Aktivan',0),(1193,'luathslioge','luathslioge','','','','','npxwim@yhbwtj.com','','','','npxwim@yhbwtj.com','','','Aktivan',0),(1194,'togaf','togaf','','','','','kanop@nnywmj.com','','','','kanop@nnywmj.com','','','Aktivan',0),(1195,'rqeasfslwh','rqeasfslwh','','','','','atgobr@ftekrs.com','','','','atgobr@ftekrs.com','','','Aktivan',0),(1196,'grmbum','grmbum','','','','','nwarxc@fqitng.com','','','','nwarxc@fqitng.com','','','Aktivan',0),(1197,'khllcxfaix','khllcxfaix','','','','','enjwet@idyzub.com','','','','enjwet@idyzub.com','','','Aktivan',0),(1198,'dsjjhcjzfwy','dsjjhcjzfwy','','','','','ojxaoe@xaefhj.com','','','','ojxaoe@xaefhj.com','','','Aktivan',0),(1199,'ziroecor','ziroecor','','','','','wsmzyw@fobwaw.com','','','','wsmzyw@fobwaw.com','','','Aktivan',0),(1200,'kqjxpkfmhri','kqjxpkfmhri','','','','','mgqbwk@mxijxe.com','','','','mgqbwk@mxijxe.com','','','Aktivan',0),(1201,'Lexus','Lexus','','','','','lexuss.kins@gmail.com','','','','lexuss.kins@gmail.com','','','Aktivan',0),(1202,'Alex','Alex','','','','','Sophia.Thomas@gmail.com','','','','Sophia.Thomas@gmail.com','','','Aktivan',0),(1203,'Hot','Hot','','','','','Olivia.White@gmail.com','','','','Olivia.White@gmail.com','','','Aktivan',0),(1204,'jpqfen','jpqfen','','','','','wckdmr@dslnpx.com','','','','wckdmr@dslnpx.com','','','Aktivan',0),(1205,'pcpxhhnr','pcpxhhnr','','','','','gxvnsq@wgeaqn.com','','','','gxvnsq@wgeaqn.com','','','Aktivan',0),(1206,'MONGEZE','BOMELA','','','','','NTSANE@MAGICMAIL.CO.ZA','','','','NTSANE@MAGICMAIL.CO.ZA','','','Aktivan',0),(1207,'uexajrwmz','uexajrwmz','','','','','weatpj@ullpwy.com','','','','weatpj@ullpwy.com','','','Aktivan',0),(1208,'Iolani','Iolani','','','','','dgjjjxez@pivzhmte.com','','','','dgjjjxez@pivzhmte.com','','','Aktivan',0),(1209,'oaxzyftdtdq','oaxzyftdtdq','','','','','gssroh@bgvvcl.com','','','','gssroh@bgvvcl.com','','','Aktivan',0),(1210,'Alexis','Alexis','','','','','Anthony.Jackson@gmail.com','','','','Anthony.Jackson@gmail.com','','','Aktivan',0),(1211,'Sancho','Sancho','','','','','Olivia.Jackson@gmail.com','','','','Olivia.Jackson@gmail.com','','','Aktivan',0),(1212,'Timsky','Timsky','','','','','info.site.mail@gmail.com','','','','info.site.mail@gmail.com','','','Aktivan',0),(1213,'alxnwdapoq','alxnwdapoq','','','','','fnifgu@pgdrml.com','','','','fnifgu@pgdrml.com','','','Aktivan',0),(1214,'Garrick','Garrick','','','','','xuwacrbj@pdmsjjtw.com','','','','xuwacrbj@pdmsjjtw.com','','','Aktivan',0),(1215,'Lanai','Lanai','','','','','tfcusytd@aekmhapd.com','','','','tfcusytd@aekmhapd.com','','','Aktivan',0),(1216,'Virgil','Virgil','','','','','rhytznsj@pbltepur.com','','','','rhytznsj@pbltepur.com','','','Aktivan',0),(1217,'Topaz','Topaz','','','','','utnegwiw@gpkhckra.com','','','','utnegwiw@gpkhckra.com','','','Aktivan',0),(1218,'Mano','Mano','','','','','esbmzyny@hzkffbzx.com','','','','esbmzyny@hzkffbzx.com','','','Aktivan',0),(1219,'Raina','Raina','','','','','vxrnqtiw@msrcefow.com','','','','vxrnqtiw@msrcefow.com','','','Aktivan',0),(1220,'Rune','Rune','','','','','ejiggikz@xdictpwp.com','','','','ejiggikz@xdictpwp.com','','','Aktivan',0),(1221,'wtdsgkgmmys','wtdsgkgmmys','','','','','zfvzjq@mympau.com','','','','zfvzjq@mympau.com','','','Aktivan',0),(1222,'Camille','Camille','','','','','xsacbdnz@nmcurnsv.com','','','','xsacbdnz@nmcurnsv.com','','','Aktivan',0),(1223,'aeymfxyhyxn','aeymfxyhyxn','','','','','xlkuns@avrobu.com','','','','xlkuns@avrobu.com','','','Aktivan',0),(1224,'zejazs','zejazs','','','','','wckevo@rodtil.com','','','','wckevo@rodtil.com','','','Aktivan',0),(1225,'kardozo','kardozo','','','','','ithallthose@gmail.com','','','','ithallthose@gmail.com','','','Aktivan',0),(1226,'Tabidi','Tabidi','','','','','illanasegr@narod.ru','','','','illanasegr@narod.ru','','','Aktivan',0),(1227,'Motor114','Motor114','','','','','illanasegr@ya.ru','','','','illanasegr@ya.ru','','','Aktivan',0),(1228,'Tl1xtor','Tl1xtor','','','','','regnw7s@yahoo.com','','','','regnw7s@yahoo.com','','','Aktivan',0),(1229,'mjztcv','mjztcv','','','','','xxbleb@wkgtsl.com','','','','xxbleb@wkgtsl.com','','','Aktivan',0),(1230,'lankanvin','lankanvin','','','','','pleplan4liiffe@safe-mail.com','','','','pleplan4liiffe@safe-mail.com','','','Aktivan',0),(1231,'xdjnpex','xdjnpex','','','','','fhbbuu@butmvs.com','','','','fhbbuu@butmvs.com','','','Aktivan',0),(1232,'aeuxpdt','aeuxpdt','','','','','vlqibd@ihxjvs.com','','','','vlqibd@ihxjvs.com','','','Aktivan',0),(1233,'xctniatt','xctniatt','','','','','reslos@qlcoam.com','','','','reslos@qlcoam.com','','','Aktivan',0),(1234,'wsgjzppzwqg','wsgjzppzwqg','','','','','jdixug@qferad.com','','','','jdixug@qferad.com','','','Aktivan',0),(1235,'vhhyxxjcrwl','vhhyxxjcrwl','','','','','ksadsz@uwhjnv.com','','','','ksadsz@uwhjnv.com','','','Aktivan',0),(1236,'rmgqlachhyz','rmgqlachhyz','','','','','kypctj@fadqea.com','','','','kypctj@fadqea.com','','','Aktivan',0),(1237,'ujhkmwxfr','ujhkmwxfr','','','','','wlzzad@svmtcs.com','','','','wlzzad@svmtcs.com','','','Aktivan',0),(1238,'fmvxdi','fmvxdi','','','','','ucgztb@lxssxj.com','','','','ucgztb@lxssxj.com','','','Aktivan',0),(1239,'JohnTerez','JohnTerez','','','','','sigmaarese@yahoo.com','','','','sigmaarese@yahoo.com','','','Aktivan',0),(1240,'bhcqddf','bhcqddf','','','','','fkqwme@jczpbl.com','','','','fkqwme@jczpbl.com','','','Aktivan',0),(1241,'Tabidi','Tabidi','','','','','illanasegr@yandex.ru','','','','illanasegr@yandex.ru','','','Aktivan',0),(1242,'Vivian85','Vivian85','','','','','sizclerx@hotmail.com','','','','sizclerx@hotmail.com','','','Aktivan',0),(1243,'Tabidi','Tabidi','','','','','lilm0eer@yahoo.com','','','','lilm0eer@yahoo.com','','','Aktivan',0),(1244,'hhkryqsq','hhkryqsq','','','','','axxkzw@mzebml.com','','','','axxkzw@mzebml.com','','','Aktivan',0),(1245,'ktbnvdknef','ktbnvdknef','','','','','myenbs@eabrfi.com','','','','myenbs@eabrfi.com','','','Aktivan',0),(1246,'tqmdckqoo','tqmdckqoo','','','','','fvecdf@utfbcq.com','','','','fvecdf@utfbcq.com','','','Aktivan',0),(1247,'elfllg','elfllg','','','','','cafkgn@ueyczf.com','','','','cafkgn@ueyczf.com','','','Aktivan',0),(1248,'Lyn','Dyles','','','','','fstinfo@ak.net','','','','fstinfo@ak.net','','','Aktivan',0),(1249,'ixegvmen','ixegvmen','','','','','qocveo@vxhito.com','','','','qocveo@vxhito.com','','','Aktivan',0),(1250,'JohnTerez','JohnTerez','','','','','jes3l3r@live.com','','','','jes3l3r@live.com','','','Aktivan',0),(1251,'mnvvfgjgi','mnvvfgjgi','','','','','arydzq@kvpfob.com','','','','arydzq@kvpfob.com','','','Aktivan',0),(1252,'fcczexsxtm','fcczexsxtm','','','','','hhdhhp@pwjxon.com','','','','hhdhhp@pwjxon.com','','','Aktivan',0),(1253,'ryohkakczpz','ryohkakczpz','','','','','kcihat@epcojd.com','','','','kcihat@epcojd.com','','','Aktivan',0),(1254,'ynnumhhrul','ynnumhhrul','','','','','duiyyp@ovtwkk.com','','','','duiyyp@ovtwkk.com','','','Aktivan',0),(1255,'kiqbgq','kiqbgq','','','','','ncoeok@javxer.com','','','','ncoeok@javxer.com','','','Aktivan',0),(1256,'banrqmqsy','banrqmqsy','','','','','zdogbc@zqcujl.com','','','','zdogbc@zqcujl.com','','','Aktivan',0),(1257,'JohnTerez','JohnTerez','','','','','oesssxiin@yahoo.com','','','','oesssxiin@yahoo.com','','','Aktivan',0),(1258,'moprdt','moprdt','','','','','yuzhmr@yxwfuc.com','','','','yuzhmr@yxwfuc.com','','','Aktivan',0),(1259,'kmoiufq','kmoiufq','','','','','lkxrqq@pzgbzc.com','','','','lkxrqq@pzgbzc.com','','','Aktivan',0),(1260,'ljlkqkwq','ljlkqkwq','','','','','tmbaks@ojkiyn.com','','','','tmbaks@ojkiyn.com','','','Aktivan',0),(1261,'degurbzol','degurbzol','','','','','xmotin@bzrpuy.com','','','','xmotin@bzrpuy.com','','','Aktivan',0),(1262,'peyiewa','peyiewa','','','','','cadeya@xbxkrt.com','','','','cadeya@xbxkrt.com','','','Aktivan',0),(1263,'buytramadol6914','buytramadol6914','','','','','buytramadolische@gmail.com','','','','buytramadolische@gmail.com','','','Aktivan',0),(1264,'lzwgvrp','lzwgvrp','','','','','epepmi@zobwsu.com','','','','epepmi@zobwsu.com','','','Aktivan',0),(1265,'nvcbcidskgs','nvcbcidskgs','','','','','koyhov@vwepuq.com','','','','koyhov@vwepuq.com','','','Aktivan',0),(1266,'bfzvixm','bfzvixm','','','','','zmauzc@hezvcl.com','','','','zmauzc@hezvcl.com','','','Aktivan',0),(1267,'Xfynzahe','Xfynzahe','','','','','thsxepca@ihzmeyzv.com','','','','thsxepca@ihzmeyzv.com','','','Aktivan',0),(1268,'alexc275','alexc275','','','','','johnc618@aol.com','','','','johnc618@aol.com','','','Aktivan',0),(1269,'alexd633','alexd633','','','','','johnd573@aol.com','','','','johnd573@aol.com','','','Aktivan',0),(1270,'alexa274','alexa274','','','','','johna234@aol.com','','','','johna234@aol.com','','','Aktivan',0),(1271,'alexe201','alexe201','','','','','johne184@aol.com','','','','johne184@aol.com','','','Aktivan',0),(1272,'Perdunok','Perdunok','','','','','perdunok@gmail.com','','','','perdunok@gmail.com','','','Aktivan',0),(1273,'jyefkfjyfc','jyefkfjyfc','','','','','qijada@uypmru.com','','','','qijada@uypmru.com','','','Aktivan',0),(1274,'lemyaskin','lemyaskin','','','','','lemyaskin@gmail.com','','','','lemyaskin@gmail.com','','','Aktivan',0),(1275,'ldtdawmxroc','ldtdawmxroc','','','','','jcptca@kciqsz.com','','','','jcptca@kciqsz.com','','','Aktivan',0),(1276,'Fkfqiixg','Fkfqiixg','','','','','ocmisssc@ezokoowp.com','','','','ocmisssc@ezokoowp.com','','','Aktivan',0),(1277,'Zbewzubk','Zbewzubk','','','','','oetlpvxn@rfhhvbfb.com','','','','oetlpvxn@rfhhvbfb.com','','','Aktivan',0),(1278,'eavhjwqhi','eavhjwqhi','','','','','qoabvs@vrtnwo.com','','','','qoabvs@vrtnwo.com','','','Aktivan',0),(1279,'ychsirisbsj','ychsirisbsj','','','','','pgmsof@fuwntx.com','','','','pgmsof@fuwntx.com','','','Aktivan',0),(1280,'Kboynoul','Kboynoul','','','','','xnkvjiva@mcysuogl.com','','','','xnkvjiva@mcysuogl.com','','','Aktivan',0),(1281,'Girttnpz','Girttnpz','','','','','fsyejpev@lxdkvndq.com','','','','fsyejpev@lxdkvndq.com','','','Aktivan',0),(1282,'Xhkdrfzh','Xhkdrfzh','','','','','nwdjrknm@oiqamxvb.com','','','','nwdjrknm@oiqamxvb.com','','','Aktivan',0),(1283,'kkvhnnwaevd','kkvhnnwaevd','','','','','fpoixk@uyiumn.com','','','','fpoixk@uyiumn.com','','','Aktivan',0),(1284,'Umvarjdd','Umvarjdd','','','','','ejexomtr@fqkwsryk.com','','','','ejexomtr@fqkwsryk.com','','','Aktivan',0),(1285,'Uadriowt','Uadriowt','','','','','crhzqjfz@uenrhwcs.com','','','','crhzqjfz@uenrhwcs.com','','','Aktivan',0),(1286,'Lajutpfb','Lajutpfb','','','','','uuyvizkm@dyzluujm.com','','','','uuyvizkm@dyzluujm.com','','','Aktivan',0),(1287,'Mmsxoqvt','Mmsxoqvt','','','','','rdqinjru@wepsiabe.com','','','','rdqinjru@wepsiabe.com','','','Aktivan',0),(1288,'jleuujn','jleuujn','','','','','cvbrxy@lrrpxi.com','','','','cvbrxy@lrrpxi.com','','','Aktivan',0),(1289,'oetvzehfds','oetvzehfds','','','','','mcbcpz@mrmelw.com','','','','mcbcpz@mrmelw.com','','','Aktivan',0),(1290,'swvpmmlu','swvpmmlu','','','','','ekuqeq@ogfcrn.com','','','','ekuqeq@ogfcrn.com','','','Aktivan',0),(1291,'smyycocrm','smyycocrm','','','','','dvfwwy@htffps.com','','','','dvfwwy@htffps.com','','','Aktivan',0),(1292,'Jane','Jensen','','','','','tony.jensen@xtra.co.nz','','','','tony.jensen@xtra.co.nz','','','Aktivan',0),(1293,'Eotwesgv','Eotwesgv','','','','','yypnwdjt@bgvspigf.com','','','','yypnwdjt@bgvspigf.com','','','Aktivan',0),(1294,'Xrwshpbe','Xrwshpbe','','','','','ejrbfifp@rxpfmszq.com','','','','ejrbfifp@rxpfmszq.com','','','Aktivan',0),(1295,'Ptsermpa','Ptsermpa','','','','','lymcqddp@tmlmobcq.com','','','','lymcqddp@tmlmobcq.com','','','Aktivan',0),(1296,'hiaxrlpgouu','hiaxrlpgouu','','','','','zjrknh@wbutjd.com','','','','zjrknh@wbutjd.com','','','Aktivan',0),(1297,'cverirxvuv','cverirxvuv','','','','','oqptqz@kdukgn.com','','','','oqptqz@kdukgn.com','','','Aktivan',0),(1298,'znqnmmvwwn','znqnmmvwwn','','','','','zkbxua@khtebi.com','','','','zkbxua@khtebi.com','','','Aktivan',0),(1299,'ffqshs','ffqshs','','','','','wwrezv@jtwmcm.com','','','','wwrezv@jtwmcm.com','','','Aktivan',0),(1300,'wsrexa','wsrexa','','','','','ojedpt@gdoybw.com','','','','ojedpt@gdoybw.com','','','Aktivan',0),(1301,'xzwyztgfe','xzwyztgfe','','','','','omvhoq@pdbnmp.com','','','','omvhoq@pdbnmp.com','','','Aktivan',0),(1302,'mfqomv','mfqomv','','','','','segzdi@mifein.com','','','','segzdi@mifein.com','','','Aktivan',0),(1303,'mtckyvok','mtckyvok','','','','','wbejei@jefpxp.com','','','','wbejei@jefpxp.com','','','Aktivan',0),(1304,'Miley Cyrus Sextape','Miley Cyrus Sextape','','','','','xnzhxtlz@kswlzpyb.com','','','','xnzhxtlz@kswlzpyb.com','','','Aktivan',0),(1305,'Miley Cyrus Nude','Miley Cyrus Nude','','','','','Miley@Cyrus.com','','','','Miley@Cyrus.com','','','Aktivan',0),(1306,'kjxyakq','kjxyakq','','','','','asdas2qw2@gmail.com','','','','asdas2qw2@gmail.com','','','Aktivan',0),(1307,'myfujdqqx','myfujdqqx','','','','','mzwjfp@danilx.com','','','','mzwjfp@danilx.com','','','Aktivan',0),(1308,'gxtnpytm','gxtnpytm','','','','','jaloyi@yzbcbp.com','','','','jaloyi@yzbcbp.com','','','Aktivan',0),(1309,'jrqxqby','jrqxqby','','','','','szkhjj@reycsj.com','','','','szkhjj@reycsj.com','','','Aktivan',0),(1310,'mxgmufpz','mxgmufpz','','','','','bykahy@mzjrjt.com','','','','bykahy@mzjrjt.com','','','Aktivan',0),(1311,'ctvjfnbtbm','ctvjfnbtbm','','','','','zwfwdx@yrevco.com','','','','zwfwdx@yrevco.com','','','Aktivan',0),(1312,'lfujahp','lfujahp','','','','','pdonzd@syafro.com','','','','pdonzd@syafro.com','','','Aktivan',0),(1313,'eqakbudrfli','eqakbudrfli','','','','','ewxsju@qxknro.com','','','','ewxsju@qxknro.com','','','Aktivan',0),(1314,'fzwdim','fzwdim','','','','','yfkyqc@syimib.com','','','','yfkyqc@syimib.com','','','Aktivan',0),(1315,'Michael','Michael','','','','','MichaelLStokes@text2re.com','','','','MichaelLStokes@text2re.com','','','Aktivan',0),(1316,'xzaikhk','xzaikhk','','','','','paends@kgqvbc.com','','','','paends@kgqvbc.com','','','Aktivan',0),(1317,'Homer','Homer','','','','','HomerFScott@text2re.com','','','','HomerFScott@text2re.com','','','Aktivan',0),(1318,'Joe','Joe','','','','','JoeMThompson@text2re.com','','','','JoeMThompson@text2re.com','','','Aktivan',0),(1319,'Joes','Joes','','','','','JoesMThoson@text2re.com','','','','JoesMThoson@text2re.com','','','Aktivan',0),(1320,'ehgbgfypqv','ehgbgfypqv','','','','','myjbgo@jupvhp.com','','','','myjbgo@jupvhp.com','','','Aktivan',0),(1321,'sibiffh','sibiffh','','','','','afxvur@roidet.com','','','','afxvur@roidet.com','','','Aktivan',0),(1322,'Michael','Michael','','','','','Michael4Stokes@text2re.com','','','','Michael4Stokes@text2re.com','','','Aktivan',0),(1323,'Joes','Joes','','','','','JoefThompson@text2re.com','','','','JoefThompson@text2re.com','','','Aktivan',0),(1324,'Fish','Fish','','','','','FishFScott@text2re.com','','','','FishFScott@text2re.com','','','Aktivan',0),(1325,'Kevin','Kevin','','','','','KevinKBridgeman@text2re.com','','','','KevinKBridgeman@text2re.com','','','Aktivan',0),(1326,'Jeremy','Jeremy','','','','','JeremyAStarkey@text2re.com','','','','JeremyAStarkey@text2re.com','','','Aktivan',0),(1327,'Michael','Michael','','','','','MichaelNPeterman@text2re.com','','','','MichaelNPeterman@text2re.com','','','Aktivan',0),(1328,'Jonathan','Jonathan','','','','','JonathanMJohnson@text2re.com','','','','JonathanMJohnson@text2re.com','','','Aktivan',0),(1329,'Terry','Terry','','','','','TerryEObrien@text2re.com','','','','TerryEObrien@text2re.com','','','Aktivan',0),(1330,'Cory','Cory','','','','','CorySJones@text2re.com','','','','CorySJones@text2re.com','','','Aktivan',0),(1331,'Ryan','Ryan','','','','','RyanTMckim@text2re.com','','','','RyanTMckim@text2re.com','','','Aktivan',0),(1332,'Jorge','Jorge','','','','','JorgePWillis@text2re.com','','','','JorgePWillis@text2re.com','','','Aktivan',0),(1333,'Justin','Justin','','','','','JustinLNagel@text2re.com','','','','JustinLNagel@text2re.com','','','Aktivan',0),(1334,'ozacenlohm','ozacenlohm','','','','','nrtgrn@zjnxcf.com','','','','nrtgrn@zjnxcf.com','','','Aktivan',0),(1335,'Kenneth','Kenneth','','','','','KennethRCaldwell@text2re.com','','','','KennethRCaldwell@text2re.com','','','Aktivan',0),(1336,'zceuoldm','zceuoldm','','','','','egiqdo@ncfgrz.com','','','','egiqdo@ncfgrz.com','','','Aktivan',0),(1337,'ttwkxfuqh','ttwkxfuqh','','','','','ysnzgb@eneuah.com','','','','ysnzgb@eneuah.com','','','Aktivan',0),(1338,'Damion','Damion','','','','','DamionIBurke@text2re.com','','','','DamionIBurke@text2re.com','','','Aktivan',0),(1339,'David','David','','','','','DavidMAdrian@text2re.com','','','','DavidMAdrian@text2re.com','','','Aktivan',0),(1340,'Millard','Millard','','','','','MillardFNelson@text2re.com','','','','MillardFNelson@text2re.com','','','Aktivan',0),(1341,'Joseph','Joseph','','','','','JosephEAnwar@text2re.com','','','','JosephEAnwar@text2re.com','','','Aktivan',0),(1342,'Dong','Dong','','','','','DongIRyan@text2re.com','','','','DongIRyan@text2re.com','','','Aktivan',0),(1343,'Martin','Martin','','','','','MartinJHankins@text2re.com','','','','MartinJHankins@text2re.com','','','Aktivan',0),(1344,'Walter','Walter','','','','','WalterPMartin@text2re.com','','','','WalterPMartin@text2re.com','','','Aktivan',0),(1345,'Daniel','Daniel','','','','','DanielMDodson@text2re.com','','','','DanielMDodson@text2re.com','','','Aktivan',0),(1346,'ocixrmrmwm','ocixrmrmwm','','','','','bmfcwv@uxupue.com','','','','bmfcwv@uxupue.com','','','Aktivan',0),(1347,'Karl','Karl','','','','','KarlJMoore@text2re.com','','','','KarlJMoore@text2re.com','','','Aktivan',0),(1348,'Alexander','Alexander','','','','','AlexanderGShinn@text2re.com','','','','AlexanderGShinn@text2re.com','','','Aktivan',0),(1349,'Mario','Mario','','','','','MarioPMilligan@example.com','','','','MarioPMilligan@example.com','','','Aktivan',0),(1350,'Kevin','Kevin','','','','','KevinBWhite@example.com','','','','KevinBWhite@example.com','','','Aktivan',0),(1351,'Steven','Steven','','','','','StevenLCrisler@example.com','','','','StevenLCrisler@example.com','','','Aktivan',0),(1352,'Joseph','Joseph','','','','','JosephMZimmerman@example.com','','','','JosephMZimmerman@example.com','','','Aktivan',0),(1353,'pgtdgfiwin','pgtdgfiwin','','','','','uvhchp@lmxaby.com','','','','uvhchp@lmxaby.com','','','Aktivan',0),(1354,'ozgegzqwl','ozgegzqwl','','','','','ivufmk@gtrqwt.com','','','','ivufmk@gtrqwt.com','','','Aktivan',0),(1355,'qyekceuu','qyekceuu','','','','','nbjunn@rfnzrn.com','','','','nbjunn@rfnzrn.com','','','Aktivan',0),(1356,'Christopher','Christopher','','','','','ChristopherIPryor@example.com','','','','ChristopherIPryor@example.com','','','Aktivan',0),(1357,'Stuart','Stuart','','','','','StuartAFoote@example.com','','','','StuartAFoote@example.com','','','Aktivan',0),(1358,'mbbnhgnz','mbbnhgnz','','','','','zlqwrl@leybkm.com','','','','zlqwrl@leybkm.com','','','Aktivan',0),(1359,'Martin B. Bowen','Martin B. Bowen','','','','','MartinBBowen@example.com','','','','MartinBBowen@example.com','','','Aktivan',0),(1360,'ungghv','ungghv','','','','','crfmtm@phsodd.com','','','','crfmtm@phsodd.com','','','Aktivan',0),(1361,'qvamxjtztea','qvamxjtztea','','','','','doiqqg@urkfjn.com','','','','doiqqg@urkfjn.com','','','Aktivan',0),(1362,'Ronald E. Harris','Ronald E. Harris','','','','','RonaldEHarris@example.com','','','','RonaldEHarris@example.com','','','Aktivan',0),(1363,'Tony D. Smith','Tony D. Smith','','','','','TonyDSmith@example.com','','','','TonyDSmith@example.com','','','Aktivan',0),(1364,'Duane E. Carter','Duane E. Carter','','','','','DuaneECarter@example.com','','','','DuaneECarter@example.com','','','Aktivan',0),(1365,'Murray M. Pfeifer','Murray M. Pfeifer','','','','','MurrayMPfeifer@example.com','','','','MurrayMPfeifer@example.com','','','Aktivan',0),(1366,'Jerry M. Bowling','Jerry M. Bowling','','','','','JerryMBowling@example.com','','','','JerryMBowling@example.com','','','Aktivan',0),(1367,'Jay S. Cox','Jay S. Cox','','','','','JaySCox@example.com','','','','JaySCox@example.com','','','Aktivan',0),(1368,'kimey','shaddock','','','','','poweronoff@usa.net','','','','poweronoff@usa.net','','','Aktivan',0),(1369,'nslylwi','nslylwi','','','','','xqlley@cyetpo.com','','','','xqlley@cyetpo.com','','','Aktivan',0),(1370,'vqiksc','vqiksc','','','','','vlgsmp@fdnqze.com','','','','vlgsmp@fdnqze.com','','','Aktivan',0),(1371,'Edward E. Harrell','Edward E. Harrell','','','','','EdwardEHarrell@example.com','','','','EdwardEHarrell@example.com','','','Aktivan',0),(1372,'Enrique M. May','Enrique M. May','','','','','EnriqueMMay@example.com','','','','EnriqueMMay@example.com','','','Aktivan',0),(1373,'Junior R. Wright','Junior R. Wright','','','','','JuniorRWright@example.com','','','','JuniorRWright@example.com','','','Aktivan',0),(1374,'Kenneth G. Sparks','Kenneth G. Sparks','','','','','KennethGSparks@example.com','','','','KennethGSparks@example.com','','','Aktivan',0),(1375,'oafopri','oafopri','','','','','qojtof@ontopk.com','','','','qojtof@ontopk.com','','','Aktivan',0),(1376,'Steven J. Heiden','Steven J. Heiden','','','','','StevenJHeiden@example.com','','','','StevenJHeiden@example.com','','','Aktivan',0),(1377,'Francis J. Livingstone','Francis J. Livingstone','','','','','FrancisJLivingstone@example.com','','','','FrancisJLivingstone@example.com','','','Aktivan',0),(1378,'apiftrqp','apiftrqp','','','','','ncpsic@wsbtkv.com','','','','ncpsic@wsbtkv.com','','','Aktivan',0),(1379,'Andrew D. Barrett','Andrew D. Barrett','','','','','AndrewDBarrett@example.com','','','','AndrewDBarrett@example.com','','','Aktivan',0),(1380,'John L. Harrington','John L. Harrington','','','','','JohnLHarrington@example.com','','','','JohnLHarrington@example.com','','','Aktivan',0),(1381,'John A. Shaughnessy','John A. Shaughnessy','','','','','JohnAShaughnessy@example.com','','','','JohnAShaughnessy@example.com','','','Aktivan',0),(1382,'kpjdqbv','kpjdqbv','','','','','khouqc@vufypn.com','','','','khouqc@vufypn.com','','','Aktivan',0),(1383,'spkorhjd','spkorhjd','','','','','leypnm@ifwbak.com','','','','leypnm@ifwbak.com','','','Aktivan',0),(1384,'xbrtkye','xbrtkye','','','','','hfokdy@yjjntc.com','','','','hfokdy@yjjntc.com','','','Aktivan',0),(1385,'John R. Iliff','John R. Iliff','','','','','JohnRIliff@example.com','','','','JohnRIliff@example.com','','','Aktivan',0),(1386,'Joshua J. Erickson','Joshua J. Erickson','','','','','JoshuaJErickson@example.com','','','','JoshuaJErickson@example.com','','','Aktivan',0),(1387,'Darren G. Henry','Darren G. Henry','','','','','DarrenGHenry@example.com','','','','DarrenGHenry@example.com','','','Aktivan',0),(1388,'Lester V. Travers','Lester V. Travers','','','','','LesterVTravers@example.com','','','','LesterVTravers@example.com','','','Aktivan',0),(1389,'where to buy clomid in tokyo','where to buy clomid in tokyo','','','','','jwlsljql@tdftrjxx.com','','','','jwlsljql@tdftrjxx.com','','','Aktivan',0),(1390,'clomid buy','clomid buy','','','','','wpltbikd@oxqtbiip.com','','','','wpltbikd@oxqtbiip.com','','','Aktivan',0),(1391,'cheap buspar','cheap buspar','','','','','fwxnhrou@gcwpolwz.com','','','','fwxnhrou@gcwpolwz.com','','','Aktivan',0),(1392,'name','name','','','','','hwizmfez@ilaftjaf.com','','','','hwizmfez@ilaftjaf.com','','','Aktivan',0),(1393,'ambian buy nexium','ambian buy nexium','','','','','raayzlaf@rttudbkt.com','','','','raayzlaf@rttudbkt.com','','','Aktivan',0),(1394,'buy addiction paxil abuse','buy addiction paxil abuse','','','','','xsxzexoa@dbgsohyg.com','','','','xsxzexoa@dbgsohyg.com','','','Aktivan',0),(1395,'fxarxzutd','fxarxzutd','','','','','wwzihq@twalcg.com','','','','wwzihq@twalcg.com','','','Aktivan',0),(1396,'gdnusyxkjz','gdnusyxkjz','','','','','vndpjg@wtrpvp.com','','','','vndpjg@wtrpvp.com','','','Aktivan',0),(1397,'vaeyfz','vaeyfz','','','','','niphlg@ahaybd.com','','','','niphlg@ahaybd.com','','','Aktivan',0),(1398,'utmpykp','utmpykp','','','','','cerhzn@jqqkzu.com','','','','cerhzn@jqqkzu.com','','','Aktivan',0),(1399,'fxpdtps','fxpdtps','','','','','vglbty@iyzkzf.com','','','','vglbty@iyzkzf.com','','','Aktivan',0),(1400,'vvwilyx','vvwilyx','','','','','ionfgy@zegamq.com','','','','ionfgy@zegamq.com','','','Aktivan',0),(1401,'xlqehxmla','xlqehxmla','','','','','yafjdk@hnvreo.com','','','','yafjdk@hnvreo.com','','','Aktivan',0),(1402,'lpjvqb','lpjvqb','','','','','pnbdae@oldppq.com','','','','pnbdae@oldppq.com','','','Aktivan',0),(1403,'hrzkrkqu','hrzkrkqu','','','','','yycmuc@jrftqq.com','','','','yycmuc@jrftqq.com','','','Aktivan',0),(1404,'hmsnnnuirub','hmsnnnuirub','','','','','ucldfm@zdrcfg.com','','','','ucldfm@zdrcfg.com','','','Aktivan',0),(1405,'hvrawyta','hvrawyta','','','','','htkdyn@qtfbcu.com','','','','htkdyn@qtfbcu.com','','','Aktivan',0),(1406,'kqakslet','kqakslet','','','','','dighcb@ngusna.com','','','','dighcb@ngusna.com','','','Aktivan',0),(1407,'xmzjtqe','xmzjtqe','','','','','khdpwk@ljlbei.com','','','','khdpwk@ljlbei.com','','','Aktivan',0),(1408,'angyonsy','angyonsy','','','','','qtwfsa@ywupuv.com','','','','qtwfsa@ywupuv.com','','','Aktivan',0),(1409,'hxlkvvpo','hxlkvvpo','','','','','wgfcrx@xurfir.com','','','','wgfcrx@xurfir.com','','','Aktivan',0),(1410,'uudavxbixny','uudavxbixny','','','','','odbbik@oocvvv.com','','','','odbbik@oocvvv.com','','','Aktivan',0),(1411,'dwdwijey','dwdwijey','','','','','bowlbj@pbidok.com','','','','bowlbj@pbidok.com','','','Aktivan',0),(1412,'skijfaaozvc','skijfaaozvc','','','','','moehdo@isehnr.com','','','','moehdo@isehnr.com','','','Aktivan',0),(1413,'ceipgdblu','ceipgdblu','','','','','yjldlz@dpkzgk.com','','','','yjldlz@dpkzgk.com','','','Aktivan',0),(1414,'rkopxm','rkopxm','','','','','dozmhx@vpsluy.com','','','','dozmhx@vpsluy.com','','','Aktivan',0),(1415,'ocudvdtxug','ocudvdtxug','','','','','ulrmcf@zwqjok.com','','','','ulrmcf@zwqjok.com','','','Aktivan',0),(1416,'ddhgnijmd','ddhgnijmd','','','','','jzdcgc@nskmam.com','','','','jzdcgc@nskmam.com','','','Aktivan',0),(1417,'lxombfnemt','lxombfnemt','','','','','scpuyc@shgsgj.com','','','','scpuyc@shgsgj.com','','','Aktivan',0),(1418,'qpaizuy','qpaizuy','','','','','snrmtg@geghvq.com','','','','snrmtg@geghvq.com','','','Aktivan',0),(1419,'owndwptfrzd','owndwptfrzd','','','','','iujubk@fnleee.com','','','','iujubk@fnleee.com','','','Aktivan',0),(1420,'xppwan','xppwan','','','','','dywuwp@egoghd.com','','','','dywuwp@egoghd.com','','','Aktivan',0),(1421,'udrnylmk','udrnylmk','','','','','icvynq@ibgdjt.com','','','','icvynq@ibgdjt.com','','','Aktivan',0),(1422,'nfdrpmi','nfdrpmi','','','','','kqrsaq@hgyail.com','','','','kqrsaq@hgyail.com','','','Aktivan',0),(1423,'buy wellbutrin sr from canada','buy wellbutrin sr from canada','','','','','Mergenthaler52@gmail.com','','','','Mergenthaler52@gmail.com','','','Aktivan',0),(1424,'gqbtqslt','gqbtqslt','','','','','gpbmik@fbiggw.com','','','','gpbmik@fbiggw.com','','','Aktivan',0),(1425,'dvycqaoi','dvycqaoi','','','','','lsfsxg@bqtvho.com','','','','lsfsxg@bqtvho.com','','','Aktivan',0),(1426,'zivuwkeq','zivuwkeq','','','','','fmiall@rawlwv.com','','','','fmiall@rawlwv.com','','','Aktivan',0),(1427,'lrqstzyo','lrqstzyo','','','','','uldycr@aqjdrp.com','','','','uldycr@aqjdrp.com','','','Aktivan',0),(1428,'btmjpdejrpw','btmjpdejrpw','','','','','umjvmn@lmpzuv.com','','','','umjvmn@lmpzuv.com','','','Aktivan',0),(1429,'thkibiazgqz','thkibiazgqz','','','','','rajgfp@osiigy.com','','','','rajgfp@osiigy.com','','','Aktivan',0),(1430,'Ecdvvtvq','Ecdvvtvq','','','','','kdbvlckz@xmxpgxzs.com','','','','kdbvlckz@xmxpgxzs.com','','','Aktivan',0),(1431,'tljofw','tljofw','','','','','hjwioq@lavxbe.com','','','','hjwioq@lavxbe.com','','','Aktivan',0),(1432,'Honora','Tavner','','','','','honora_tavner@btinternet.com','','','','honora_tavner@btinternet.com','','','Aktivan',0),(1433,'xlzcuc','xlzcuc','','','','','oyetzc@fvhacz.com','','','','oyetzc@fvhacz.com','','','Aktivan',0),(1434,'qwvzllxofd','qwvzllxofd','','','','','ttbckx@wvogzm.com','','','','ttbckx@wvogzm.com','','','Aktivan',0),(1435,'sbsunyhiqa','sbsunyhiqa','','','','','epasic@gomcxu.com','','','','epasic@gomcxu.com','','','Aktivan',0),(1436,'yyiwwqnenr','yyiwwqnenr','','','','','wgzpeo@nukeux.com','','','','wgzpeo@nukeux.com','','','Aktivan',0),(1437,'nvjsjzery','nvjsjzery','','','','','awzhxy@corrbt.com','','','','awzhxy@corrbt.com','','','Aktivan',0),(1438,'xksmnnzhj','xksmnnzhj','','','','','tshxkw@yugkap.com','','','','tshxkw@yugkap.com','','','Aktivan',0),(1439,'xksmnnzhj','xksmnnzhj','','','','','tshxkw@yugkap.com','','','','tshxkw@yugkap.com','','','Aktivan',0),(1440,'svaxut','svaxut','','','','','rtcwey@kqydmm.com','','','','rtcwey@kqydmm.com','','','Aktivan',0),(1441,'wyjakhpdzjh','wyjakhpdzjh','','','','','kpkesz@sdwjhe.com','','','','kpkesz@sdwjhe.com','','','Aktivan',0),(1442,'dsotdkwjiul','dsotdkwjiul','','','','','sqcppb@abpbzb.com','','','','sqcppb@abpbzb.com','','','Aktivan',0),(1443,'aeiytqaxh','aeiytqaxh','','','','','emgjpi@witxum.com','','','','emgjpi@witxum.com','','','Aktivan',0),(1444,'gzaqwnymj','gzaqwnymj','','','','','jrtced@emmwdv.com','','','','jrtced@emmwdv.com','','','Aktivan',0),(1445,'hndwzrls','hndwzrls','','','','','qzdwth@zpquqx.com','','','','qzdwth@zpquqx.com','','','Aktivan',0),(1446,'ysgddxyuvc','ysgddxyuvc','','','','','nnwbmy@lmtusm.com','','','','nnwbmy@lmtusm.com','','','Aktivan',0),(1447,'iqymxuutyyj','iqymxuutyyj','','','','','wmimgu@pxzlwd.com','','','','wmimgu@pxzlwd.com','','','Aktivan',0),(1448,'xrvdncnskwu','xrvdncnskwu','','','','','loeksb@muazfh.com','','','','loeksb@muazfh.com','','','Aktivan',0),(1449,'ryqebe','ryqebe','','','','','abmtms@gjppxf.com','','','','abmtms@gjppxf.com','','','Aktivan',0),(1450,'akhznxfmxja','akhznxfmxja','','','','','pkpdua@cshvkh.com','','','','pkpdua@cshvkh.com','','','Aktivan',0),(1451,'ydqkgsvje','ydqkgsvje','','','','','yixlva@cmjdng.com','','','','yixlva@cmjdng.com','','','Aktivan',0),(1452,'pwxjrebloyq','pwxjrebloyq','','','','','rvmqcl@jfjwak.com','','','','rvmqcl@jfjwak.com','','','Aktivan',0),(1453,'asiixwfxqy','asiixwfxqy','','','','','axuxsy@mtqugx.com','','','','axuxsy@mtqugx.com','','','Aktivan',0),(1454,'kjyrytfpi','kjyrytfpi','','','','','xhgvvh@wmfahf.com','','','','xhgvvh@wmfahf.com','','','Aktivan',0),(1455,'WaldosM','WaldosM','','','','','arigons3456@gmail.com','','','','arigons3456@gmail.com','','','Aktivan',0),(1456,'jxoljrgpa','jxoljrgpa','','','','','vfoohs@pnomug.com','','','','vfoohs@pnomug.com','','','Aktivan',0),(1457,'lqirpfzmfy','lqirpfzmfy','','','','','clbtcq@obygkd.com','','','','clbtcq@obygkd.com','','','Aktivan',0),(1458,'thkicg','thkicg','','','','','efbrzs@xtqhxi.com','','','','efbrzs@xtqhxi.com','','','Aktivan',0),(1459,'xddeiiraba','xddeiiraba','','','','','cguwey@owsqtr.com','','','','cguwey@owsqtr.com','','','Aktivan',0),(1460,'rpwdosb','rpwdosb','','','','','ffzdsa@inknkv.com','','','','ffzdsa@inknkv.com','','','Aktivan',0),(1461,'idbaivm','idbaivm','','','','','nonnjp@nggcoo.com','','','','nonnjp@nggcoo.com','','','Aktivan',0),(1462,'tjuwenjutt','tjuwenjutt','','','','','xvueit@vlhaqs.com','','','','xvueit@vlhaqs.com','','','Aktivan',0),(1463,'dhseyclfzaq','dhseyclfzaq','','','','','hbeqle@ongzne.com','','','','hbeqle@ongzne.com','','','Aktivan',0),(1464,'okgriypljn','okgriypljn','','','','','tztvnt@sycvzy.com','','','','tztvnt@sycvzy.com','','','Aktivan',0),(1465,'odserqrrwu','odserqrrwu','','','','','rlbvub@cfyaoy.com','','','','rlbvub@cfyaoy.com','','','Aktivan',0),(1466,'bbxocgwjsq','bbxocgwjsq','','','','','itxxdp@yazcdp.com','','','','itxxdp@yazcdp.com','','','Aktivan',0),(1467,'zezjwoxuxt','zezjwoxuxt','','','','','xxkupg@rfatub.com','','','','xxkupg@rfatub.com','','','Aktivan',0),(1468,'jejkfn','jejkfn','','','','','opayox@qcsgiv.com','','','','opayox@qcsgiv.com','','','Aktivan',0),(1469,'qoqehordcx','qoqehordcx','','','','','dzyaff@flyteu.com','','','','dzyaff@flyteu.com','','','Aktivan',0),(1470,'www.insiders-slovenia.si','www.insiders-slovenia.si','','','','','admin@www.insiders-slovenia.si','','','','admin@www.insiders-slovenia.si','','','Aktivan',0),(1471,'rthsebiu','rthsebiu','','','','','cfbhie@epciih.com','','','','cfbhie@epciih.com','','','Aktivan',0),(1472,'ezshwn','ezshwn','','','','','napclr@plzkut.com','','','','napclr@plzkut.com','','','Aktivan',0),(1473,'rihpca','rihpca','','','','','zyuxji@bizxav.com','','','','zyuxji@bizxav.com','','','Aktivan',0),(1474,'gqupgrz','gqupgrz','','','','','uvhiyg@eephak.com','','','','uvhiyg@eephak.com','','','Aktivan',0),(1475,'recutf','recutf','','','','','wydkyj@yhroqi.com','','','','wydkyj@yhroqi.com','','','Aktivan',0),(1476,'tcwfnh','tcwfnh','','','','','mwdzyg@bsjabz.com','','','','mwdzyg@bsjabz.com','','','Aktivan',0),(1477,'Porn','Porn','','','','','naelsor.gaudi@hhsoo-mail.com','','','','naelsor.gaudi@hhsoo-mail.com','','','Aktivan',0),(1478,'rebecca','liu','','','','','reckieliu@hotmail.com','','','','reckieliu@hotmail.com','','','Aktivan',0),(1479,'jonn1','jonn1','','','','','emai1l@gmail.com','','','','emai1l@gmail.com','','','Aktivan',0),(1480,'click here','click here','','','','','alex.pauletti@gmail.com','','','','alex.pauletti@gmail.com','','','Aktivan',0),(1481,'view','view','','','','','paolo.zile@gmail.com','','','','paolo.zile@gmail.com','','','Aktivan',0),(1482,'jonn3','jonn3','','','','','email@gmail.com','','','','email@gmail.com','','','Aktivan',0),(1483,'rxqrdqjow','rxqrdqjow','','','','','hwsnfi@amtvan.com','','','','hwsnfi@amtvan.com','','','Aktivan',0),(1484,'rjdpowq','rjdpowq','','','','','vpesza@kzlatr.com','','','','vpesza@kzlatr.com','','','Aktivan',0),(1485,'oosknvoppdr','oosknvoppdr','','','','','fkznmb@jwwydg.com','','','','fkznmb@jwwydg.com','','','Aktivan',0),(1486,'anal porn','anal porn','','','','','hale.dilons@hotmail.com','','','','hale.dilons@hotmail.com','','','Aktivan',0),(1487,'porn','porn','','','','','harp.pech@ymail.com','','','','harp.pech@ymail.com','','','Aktivan',0),(1488,'Zeteeimm','Zeteeimm','','','','','ondczzpr@tieyynjs.com','','','','ondczzpr@tieyynjs.com','','','Aktivan',0),(1489,'Wbkflmur','Wbkflmur','','','','','wmuridkk@kajejjep.com','','','','wmuridkk@kajejjep.com','','','Aktivan',0),(1490,'Ngqvyrkr','Ngqvyrkr','','','','','unlove@gmail.com','','','','unlove@gmail.com','','','Aktivan',0),(1491,'Pcfdlapx','Pcfdlapx','','','','','razer22@yahoo.com','','','','razer22@yahoo.com','','','Aktivan',0),(1492,'Llbxnlfb','Llbxnlfb','','','','','skqdfzyj@rhlhdglw.com','','','','skqdfzyj@rhlhdglw.com','','','Aktivan',0),(1493,'Ksrjzvwa','Ksrjzvwa','','','','','kzaygzvt@ovyfxmhc.com','','','','kzaygzvt@ovyfxmhc.com','','','Aktivan',0),(1494,'mhosoll','mhosoll','','','','','gdnfhk@hgbxxo.com','','','','gdnfhk@hgbxxo.com','','','Aktivan',0),(1495,'Ydzadpwk','Ydzadpwk','','','','','sjwnowcc@bywnqexu.com','','','','sjwnowcc@bywnqexu.com','','','Aktivan',0),(1496,'Rkkwviqd','Rkkwviqd','','','','','aamyjuip@cbpljutw.com','','','','aamyjuip@cbpljutw.com','','','Aktivan',0),(1497,'Ndhtawvl','Ndhtawvl','','','','','qodvxxiz@mnkfdmey.com','','','','qodvxxiz@mnkfdmey.com','','','Aktivan',0),(1498,'Qwblctik','Qwblctik','','','','','dmilivmn@ydabuict.com','','','','dmilivmn@ydabuict.com','','','Aktivan',0),(1499,'Rbolvwdw','Rbolvwdw','','','','','eyqpvefo@eopnbdnm.com','','','','eyqpvefo@eopnbdnm.com','','','Aktivan',0),(1500,'pakgfwytuyx','pakgfwytuyx','','','','','vjbpaj@lyuwve.com','','','','vjbpaj@lyuwve.com','','','Aktivan',0),(1501,'pekosbg','pekosbg','','','','','wxdhcf@mdonlv.com','','','','wxdhcf@mdonlv.com','','','Aktivan',0),(1502,'xpymntqej','xpymntqej','','','','','bkjinn@yiwikp.com','','','','bkjinn@yiwikp.com','','','Aktivan',0),(1503,'lxivoy','lxivoy','','','','','eobvgg@xupwfs.com','','','','eobvgg@xupwfs.com','','','Aktivan',0); /*!40000 ALTER TABLE `user` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `userrole` -- DROP TABLE IF EXISTS `userrole`; CREATE TABLE `userrole` ( `userroleid` int(11) NOT NULL auto_increment, `description` varchar(255) character set latin1 collate latin1_general_ci NOT NULL default '', `role` varchar(255) NOT NULL default '', PRIMARY KEY (`userroleid`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; -- -- Dumping data for table `userrole` -- LOCK TABLES `userrole` WRITE; /*!40000 ALTER TABLE `userrole` DISABLE KEYS */; INSERT INTO `userrole` VALUES (1,'Ova rola ne sadrzi ni jednog korisnika','Standardna rola'),(7,'',''); /*!40000 ALTER TABLE `userrole` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `useruserrole` -- DROP TABLE IF EXISTS `useruserrole`; CREATE TABLE `useruserrole` ( `userid` int(11) NOT NULL default '0', `userroleid` int(11) NOT NULL default '0' ) ENGINE=MyISAM DEFAULT CHARSET=utf8; -- -- Dumping data for table `useruserrole` -- LOCK TABLES `useruserrole` WRITE; /*!40000 ALTER TABLE `useruserrole` DISABLE KEYS */; INSERT INTO `useruserrole` VALUES (12,4),(1,4),(14,4),(41,4),(40,4),(31,4),(18,4),(19,4),(20,4),(21,4),(22,4),(24,4),(26,4),(27,4),(28,4),(29,4),(30,4),(32,4),(33,4),(34,4),(35,4),(36,4),(37,4),(38,4),(42,4),(43,4),(45,4),(44,4),(48,4),(55,4),(50,4),(49,4),(51,4),(52,4),(54,4),(56,4),(57,4),(59,4),(60,4),(62,4),(63,4),(65,4),(64,4),(66,4),(67,4),(68,4),(69,4),(71,4),(72,4),(215,7),(214,7),(213,7),(212,7),(211,7),(210,7),(73,4),(74,4),(209,7),(75,4),(76,4),(77,4),(78,4),(79,4),(80,4),(81,4),(82,4),(83,4),(84,4),(208,7),(86,4),(88,4),(89,4),(90,4),(91,4),(94,4),(96,4),(97,4),(98,4),(100,4),(101,4),(102,4),(103,4),(104,4),(105,4),(106,4),(107,4),(108,4),(109,4),(110,4),(113,4),(112,4),(207,7),(114,4),(115,4),(116,4),(117,4),(119,4),(120,4),(121,4),(122,4),(123,4),(124,4),(125,4),(206,7),(126,4),(128,4),(127,4),(129,4),(130,4),(131,4),(133,4),(134,4),(135,4),(136,4),(139,4),(140,4),(141,4),(143,4),(144,4),(146,4),(150,4),(151,4),(152,4),(156,4),(157,4),(158,4),(160,4),(161,4),(163,4),(164,4),(165,4),(166,4),(167,4),(168,4),(170,4),(171,4),(172,4),(175,4),(177,4),(179,4),(180,4),(181,4),(183,4),(182,4),(184,4),(185,4),(186,4),(189,4),(188,4),(192,4),(193,4),(194,4),(195,4),(196,4),(200,7),(201,7),(202,7),(216,7),(217,7),(218,7),(219,7),(220,7),(221,7),(222,7),(223,7),(224,7),(225,7),(226,7),(227,7),(228,7),(229,7),(230,7),(231,7),(232,7),(233,7),(234,7),(235,7),(236,7),(237,7),(238,7),(239,7),(240,7),(241,7),(242,7),(243,7),(244,7),(245,7),(246,7),(247,7),(248,7),(249,7),(250,7),(251,7),(252,7),(253,7),(254,7),(255,7),(256,7),(257,7),(258,7),(259,7),(260,7),(261,7),(262,7),(263,7),(264,7),(265,7),(266,7),(267,7),(268,7),(269,7),(270,7),(271,7),(272,7),(273,7),(274,7),(275,7),(276,7),(277,7),(278,7),(279,7),(280,7),(281,7),(282,7),(283,7),(284,7),(285,7),(286,7),(287,7),(288,7),(289,7),(290,7),(291,7),(292,7),(293,7),(294,7),(295,7),(296,7),(297,7),(298,7),(299,7),(300,7),(301,7),(302,7),(303,7),(304,7),(305,7),(306,7),(307,7),(308,7),(309,7),(310,7),(311,7),(312,7),(313,7),(314,7),(315,7),(316,7),(317,7),(318,7),(319,7),(320,7),(321,7),(322,7),(323,7),(324,7),(325,7),(326,7),(327,7),(328,7),(329,7),(330,7),(331,7),(332,7),(333,7),(334,7),(335,7),(336,7),(337,7),(338,7),(339,7),(340,7),(341,7),(342,7),(343,7),(344,7),(345,7),(346,7),(347,7),(348,7),(349,7),(350,7),(351,7),(352,7),(353,7),(354,7),(355,7),(356,7),(357,7),(358,7),(359,7),(360,7),(361,7),(362,7),(363,7),(364,7),(365,7),(366,7),(367,7),(368,7),(369,7),(370,7),(371,7),(372,7),(373,7),(374,7),(375,7),(376,7),(377,7),(378,7),(379,7),(380,7),(381,7),(382,7),(383,7),(384,7),(385,7),(386,7),(387,7),(388,7),(389,7),(390,7),(391,7),(392,7),(393,7),(394,7),(395,7),(396,7),(397,7),(398,7),(399,7),(400,7),(401,7),(402,7),(403,7),(404,7),(405,7),(406,7),(407,7),(408,7),(409,7),(410,7),(411,7),(412,7),(413,7),(414,7),(415,7),(416,7),(417,7),(418,7),(419,7),(420,7),(421,7),(422,7),(423,7),(424,7),(425,7),(426,7),(427,7),(428,7),(429,7),(430,7),(431,7),(432,7),(433,7),(434,7),(435,7),(436,7),(437,7),(438,7),(439,7),(440,7),(441,7),(442,7),(443,7),(444,7),(445,7),(446,7),(447,7),(448,7),(449,7),(450,7),(451,7),(452,7),(453,7),(454,7),(455,7),(456,7),(457,7),(458,7),(459,7),(460,7),(461,7),(462,7),(463,7),(464,7),(465,7),(466,7),(467,7),(468,7),(469,7),(470,7),(471,7),(472,7),(473,7),(474,7),(475,7),(476,7),(477,7),(478,7),(479,7),(480,7),(481,7),(482,7),(483,7),(484,7),(485,7),(486,7),(487,7),(488,7),(489,7),(490,7),(491,7),(492,7),(493,7),(494,7),(495,7),(496,7),(497,7),(498,7),(499,7),(500,7),(501,7),(502,7),(503,7),(504,7),(505,7),(506,7),(507,7),(508,7),(509,7),(510,7),(511,7),(512,7),(513,7),(514,7),(515,7),(516,7),(517,7),(518,7),(519,7),(520,7),(521,7),(522,7),(523,7),(524,7),(525,7),(526,7),(527,7),(528,7),(529,7),(530,7),(531,7),(532,7),(533,7),(534,7),(535,7),(536,7),(537,7),(538,7),(539,7),(540,7),(541,7),(542,7),(543,7),(544,7),(545,7),(546,7),(547,7),(548,7),(549,7),(550,7),(551,7),(552,7),(553,7),(554,7),(555,7),(556,7),(557,7),(558,7),(559,7),(560,7),(561,7),(562,7),(563,7),(564,7),(565,7),(566,7),(567,7),(568,7),(569,7),(570,7),(571,7),(572,7),(573,7),(574,7),(575,7),(576,7),(577,7),(578,7),(579,7),(580,7),(581,7),(582,7),(583,7),(584,7),(585,7),(586,7),(587,7),(588,7),(589,7),(590,7),(591,7),(592,7),(593,7),(594,7),(595,7),(596,7),(597,7),(598,7),(599,7),(600,7),(601,7),(602,7),(603,7),(604,7),(605,7),(606,7),(607,7),(608,7),(609,7),(610,7),(611,7),(612,7),(613,7),(614,7),(615,7),(616,7),(617,7),(618,7),(619,7),(620,7),(621,7),(622,7),(623,7),(624,7),(625,7),(626,7),(627,7),(628,7),(629,7),(630,7),(631,7),(632,7),(633,7),(634,7),(635,7),(636,7),(637,7),(638,7),(639,7),(640,7),(641,7),(642,7),(643,7),(644,7),(645,7),(646,7),(647,7),(648,7),(649,7),(650,7),(651,7),(652,7),(653,7),(654,7),(655,7),(656,7),(657,7),(658,7),(659,7),(660,7),(661,7),(662,7),(663,7),(664,7),(665,7),(666,7),(667,7),(668,7),(669,7),(670,7),(671,7),(672,7),(673,7),(674,7),(675,7),(676,7),(677,7),(678,7),(679,7),(680,7),(681,7),(682,7),(683,7),(684,7),(685,7),(686,7),(687,7),(688,7),(689,7),(690,7),(691,7),(692,7),(693,7),(694,7),(695,7),(696,7),(697,7),(698,7),(699,7),(700,7),(701,7),(702,7),(703,7),(704,7),(705,7),(706,7),(707,7),(708,7),(709,7),(710,7),(711,7),(712,7),(713,7),(714,7),(715,7),(716,7),(717,7),(718,7),(719,7),(720,7),(721,7),(722,7),(723,7),(724,7),(725,7),(726,7),(727,7),(728,7),(729,7),(730,7),(731,7),(732,7),(733,7),(734,7),(735,7),(736,7),(737,7),(738,7),(739,7),(740,7),(741,7),(742,7),(743,7),(744,7),(745,7),(746,7),(747,7),(748,7),(749,7),(750,7),(751,7),(752,7),(753,7),(754,7),(755,7),(756,7),(757,7),(758,7),(759,7),(760,7),(761,7),(762,7),(763,7),(764,7),(765,7),(766,7),(767,7),(768,7),(769,7),(770,7),(771,7),(772,7),(773,7),(774,7),(775,7),(776,7),(777,7),(778,7),(779,7),(780,7),(781,7),(782,7),(783,7),(784,7),(785,7),(786,7),(787,7),(788,7),(789,7),(790,7),(791,7),(792,7),(793,7),(794,7),(795,7),(796,7),(797,7),(798,7),(799,7),(800,7),(801,7),(802,7),(803,7),(804,7),(805,7),(806,7),(807,7),(808,7),(809,7),(810,7),(811,7),(812,7),(813,7),(814,7),(815,7),(816,7),(817,7),(818,7),(819,7),(820,7),(821,7),(822,7),(823,7),(824,7),(825,7),(826,7),(827,7),(828,7),(829,7),(830,7),(831,7),(832,7),(833,7),(834,7),(835,7),(836,7),(837,7),(838,7),(839,7),(840,7),(841,7),(842,7),(843,7),(844,7),(845,7),(846,7),(847,7),(848,7),(849,7),(850,7),(851,7),(852,7),(853,7),(854,7),(855,7),(856,7),(857,7),(858,7),(859,7),(860,7),(861,7),(862,7),(863,7),(864,7),(865,7),(866,7),(867,7),(868,7),(869,7),(870,7),(871,7),(872,7),(873,7),(874,7),(875,7),(876,7),(877,7),(878,7),(879,7),(880,7),(881,7),(882,7),(883,7),(884,7),(885,7),(886,7),(887,7),(888,7),(889,7),(890,7),(891,7),(892,7),(893,7),(894,7),(895,7),(896,7),(897,7),(898,7),(899,7),(900,7),(901,7),(902,7),(903,7),(904,7),(905,7),(906,7),(907,7),(908,7),(909,7),(910,7),(911,7),(912,7),(913,7),(914,7),(915,7),(916,7),(917,7),(918,7),(919,7),(920,7),(921,7),(922,7),(923,7),(924,7),(925,7),(926,7),(927,7),(928,7),(929,7),(930,7),(931,7),(932,7),(933,7),(934,7),(935,7),(936,7),(937,7),(938,7),(939,7),(940,7),(941,7),(942,7),(943,7),(944,7),(945,7),(946,7),(947,7),(948,7),(949,7),(950,7),(951,7),(952,7),(953,7),(954,7),(955,7),(956,7),(957,7),(958,7),(959,7),(960,7),(961,7),(962,7),(963,7),(964,7),(965,7),(966,7),(967,7),(968,7),(969,7),(970,7),(971,7),(972,7),(973,7),(974,7),(975,7),(976,7),(977,7),(978,7),(979,7),(980,7),(981,7),(982,7),(983,7),(984,7),(985,7),(986,7),(987,7),(988,7),(989,7),(990,7),(991,7),(992,7),(993,7),(994,7),(995,7),(996,7),(997,7),(998,7),(999,7),(1000,7),(1001,7),(1002,7),(1003,7),(1004,7),(1005,7),(1006,7),(1007,7),(1008,7),(1009,7),(1010,7),(1011,7),(1012,7),(1013,7),(1014,7),(1015,7),(1016,7),(1017,7),(1018,7),(1019,7),(1020,7),(1021,7),(1022,7),(1023,7),(1024,7),(1025,7),(1026,7),(1027,7),(1028,7),(1029,7),(1030,7),(1031,7),(1032,7),(1033,7),(1034,7),(1035,7),(1036,7),(1037,7),(1038,7),(1039,7),(1040,7),(1041,7),(1042,7),(1043,7),(1044,7),(1045,7),(1046,7),(1047,7),(1048,7),(1049,7),(1050,7),(1051,7),(1052,7),(1053,7),(1054,7),(1055,7),(1056,7),(1057,7),(1058,7),(1059,7),(1060,7),(1061,7),(1062,7),(1063,7),(1064,7),(1065,7),(1066,7),(1067,7),(1068,7),(1069,7),(1070,7),(1071,7),(1072,7),(1073,7),(1074,7),(1075,7),(1076,7),(1077,7),(1078,7),(1079,7),(1080,7),(1081,7),(1082,7),(1083,7),(1084,7),(1085,7),(1086,7),(1087,7),(1088,7),(1089,7),(1090,7),(1091,7),(1092,7),(1093,7),(1094,7),(1095,7),(1096,7),(1097,7),(1098,7),(1099,7),(1100,7),(1101,7),(1102,7),(1103,7),(1104,7),(1105,7),(1106,7),(1107,7),(1108,7),(1109,7),(1110,7),(1111,7),(1112,7),(1113,7),(1114,7),(1115,7),(1116,7),(1117,7),(1118,7),(1119,7),(1120,7),(1121,7),(1122,7),(1123,7),(1124,7),(1125,7),(1126,7),(1127,7),(1128,7),(1129,7),(1130,7),(1131,7),(1132,7),(1133,7),(1134,7),(1135,7),(1136,7),(1137,7),(1138,7),(1139,7),(1140,7),(1141,7),(1142,7),(1143,7),(1144,7),(1145,7),(1146,7),(1147,7),(1148,7),(1149,7),(1150,7),(1151,7),(1152,7),(1153,7),(1154,7),(1155,7),(1156,7),(1157,7),(1158,7),(1159,7),(1160,7),(1161,7),(1162,7),(1163,7),(1164,7),(1165,7),(1166,7),(1167,7),(1168,7),(1169,7),(1170,7),(1171,7),(1172,7),(1173,7),(1174,7),(1175,7),(1176,7),(1177,7),(1178,7),(1179,7),(1180,7),(1181,7),(1182,7),(1183,7),(1184,7),(1185,7),(1186,7),(1187,7),(1188,7),(1189,7),(1190,7),(1191,7),(1192,7),(1193,7),(1194,7),(1195,7),(1196,7),(1197,7),(1198,7),(1199,7),(1200,7),(1201,7),(1202,7),(1203,7),(1204,7),(1205,7),(1206,7),(1207,7),(1208,7),(1209,7),(1210,7),(1211,7),(1212,7),(1213,7),(1214,7),(1215,7),(1216,7),(1217,7),(1218,7),(1219,7),(1220,7),(1221,7),(1222,7),(1223,7),(1224,7),(1225,7),(1226,7),(1227,7),(1228,7),(1229,7),(1230,7),(1231,7),(1232,7),(1233,7),(1234,7),(1235,7),(1236,7),(1237,7),(1238,7),(1239,7),(1240,7),(1241,7),(1242,7),(1243,7),(1244,7),(1245,7),(1246,7),(1247,7),(1248,7),(1249,7),(1250,7),(1251,7),(1252,7),(1253,7),(1254,7),(1255,7),(1256,7),(1257,7),(1258,7),(1259,7),(1260,7),(1261,7),(1262,7),(1263,7),(1264,7),(1265,7),(1266,7),(1267,7),(1268,7),(1269,7),(1270,7),(1271,7),(1272,7),(1273,7),(1274,7),(1275,7),(1276,7),(1277,7),(1278,7),(1279,7),(1280,7),(1281,7),(1282,7),(1283,7),(1284,7),(1285,7),(1286,7),(1287,7),(1288,7),(1289,7),(1290,7),(1291,7),(1292,7),(1293,7),(1294,7),(1295,7),(1296,7),(1297,7),(1298,7),(1299,7),(1300,7),(1301,7),(1302,7),(1303,7),(1304,7),(1305,7),(1306,7),(1307,7),(1308,7),(1309,7),(1310,7),(1311,7),(1312,7),(1313,7),(1314,7),(1315,7),(1316,7),(1317,7),(1318,7),(1319,7),(1320,7),(1321,7),(1322,7),(1323,7),(1324,7),(1325,7),(1326,7),(1327,7),(1328,7),(1329,7),(1330,7),(1331,7),(1332,7),(1333,7),(1334,7),(1335,7),(1336,7),(1337,7),(1338,7),(1339,7),(1340,7),(1341,7),(1342,7),(1343,7),(1344,7),(1345,7),(1346,7),(1347,7),(1348,7),(1349,7),(1350,7),(1351,7),(1352,7),(1353,7),(1354,7),(1355,7),(1356,7),(1357,7),(1358,7),(1359,7),(1360,7),(1361,7),(1362,7),(1363,7),(1364,7),(1365,7),(1366,7),(1367,7),(1368,7),(1369,7),(1370,7),(1371,7),(1372,7),(1373,7),(1374,7),(1375,7),(1376,7),(1377,7),(1378,7),(1379,7),(1380,7),(1381,7),(1382,7),(1383,7),(1384,7),(1385,7),(1386,7),(1387,7),(1388,7),(1389,7),(1390,7),(1391,7),(1392,7),(1393,7),(1394,7),(1395,7),(1396,7),(1397,7),(1398,7),(1399,7),(1400,7),(1401,7),(1402,7),(1403,7),(1404,7),(1405,7),(1406,7),(1407,7),(1408,7),(1409,7),(1410,7),(1411,7),(1412,7),(1413,7),(1414,7),(1415,7),(1416,7),(1417,7),(1418,7),(1419,7),(1420,7),(1421,7),(1422,7),(1423,7),(1424,7),(1425,7),(1426,7),(1427,7),(1428,7),(1429,7),(1430,7),(1431,7),(1432,7),(1433,7),(1434,7),(1435,7),(1436,7),(1437,7),(1438,7),(1439,7),(1440,7),(1441,7),(1442,7),(1443,7),(1444,7),(1445,7),(1446,7),(1447,7),(1448,7),(1449,7),(1450,7),(1451,7),(1452,7),(1453,7),(1454,7),(1455,7),(1456,7),(1457,7),(1458,7),(1459,7),(1460,7),(1461,7),(1462,7),(1463,7),(1464,7),(1465,7),(1466,7),(1467,7),(1468,7),(1469,7),(1470,7),(1471,7),(1472,7),(1473,7),(1474,7),(1475,7),(1476,7),(1477,7),(1478,7),(1479,7),(1480,7),(1481,7),(1482,7),(1483,7),(1484,7),(1485,7),(1486,7),(1487,7),(1488,7),(1489,7),(1490,7),(1491,7),(1492,7),(1493,7),(1494,7),(1495,7),(1496,7),(1497,7),(1498,7),(1499,7),(1500,7),(1501,7),(1502,7),(1503,7); /*!40000 ALTER TABLE `useruserrole` ENABLE KEYS */; UNLOCK TABLES; /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; /*!40101 SET SQL_MODE=@OLD_SQL_MODE */; /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; /*!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 */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; -- Dump completed on 2011-02-16 0:48:17