diff --git a/CHANGELOG b/CHANGELOG index 4f0c232333..0aab0fe960 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,5 +1,33 @@ +Version 3.4 + + Optionally, "like" and "dislike" activities don't update thread timestamp (annando) + Updated markdown libraries (annando) + Updated jQuery (StefOfficiel) + Cache zrl verification requests to prevent DSoS (issue #1453) (annando) + "Verify SSL" options affects also VERIFYHOST (annando) + Better handling of hashtags (annando) + Updated translations (translation teams, tobias) + Access a contact directly from the contact-manager-page (FlxAlbroscheit) + Reworked GUID generation, remove db store (annando) + Improve search for tags and terms (annando) + Fix OAuth signature (thorsten23) + Fix utf8 characters in items (issue #1307) (hauke) + Ignore tag-likes char sequences in code blocks (issue #1041) (fabrixxm) + Fix sending email to CC recipients (issue #1437) (fabrixxm) + Fix signature check of likes from diaspora (issue #905) (mike, annando) + Fix pagination urls (issue #1341) (fabrixxm) + Add scheme if missing in "web link" dialog (issue #1362) (fabrixxm) + Don't detect Facebook and App.net RSS feeds as contacts (issue #1432) (annando) + Add cli command to generate database.sql from scheme description (issue #1370) (fabrixxm) + Fix warning trying to creating already existing itemcache dir (pztrn) + Send update to directory when account is removed (issue #1038) (annando) + Fix settings page's aside menu visibility (issue #1459) (fabrixxm) + Don't show past events in event reminder in profile page (issue #1306) (annando) + Add help text to explain the options for approving contacts (issue #1349) (silke) + API set as unseen only posts returned by the call (issue #1063) (annando) + Version 3.3.3 - + More separation between php and html in photo album (issue #1258) (rabuzarus) Enhanced community page shows public posts from public contacts of public profiles (annando) Support for IndieAuth/Web-sign-in (hauke) @@ -67,17 +95,17 @@ Version 3.3 API added support in the API to allow image uploads from Twidere support for the diaspora app in Firefox - - Themes + + Themes Stopped support of unmaintained themes. They will continue to work if enabled but are no longer displayed in the list of themes. - Merged all "zero" themes into a theme with variations. + Merged all "zero" themes into a theme with variations. new default avatar by Andi Stadler - + Usability network page as default page after login sections on users' settings page are now collapsable automatic updating the network stream was improved - + Interaction ignoring of threads for selected contects one can now get notifications when they post something, useful e.g. for forums @@ -85,8 +113,8 @@ Version 3.3 many improvement on all connectors, new app.net connector the algorithm for shortening postings when posting to limited platforms was improved improvements for the remote_self functionality for RSS/Atom feeds were done - - System stuff + + System stuff no more apc support due problems with PHP 5.5 privacy image cache moved from an addon into the core updated the following libraries: smarty 3.1.19, fullcalendar 1.6.4, jquery 1.11, jgrowl 1.3.0 @@ -99,8 +127,8 @@ Version 3.3 some bugs were fixed for the profile import function BBCode handling and reformatting to e.g. markdown was improved Internal PusH server for communication with OStatus contacts - - Addons + + Addons translation now done at transifex as well "newmemberwidget" adds widget with help links + welcome message to sidebar of network tab for new members new statistics addon to take part in the Diaspora* survey @@ -109,10 +137,10 @@ Version 3.3 new connector for the buffer service improvements for the connectors with Twitter, StatusNet/GNU Social, pump.io, google+ and facebook improvements to the cal and jappix-mini addons - + Change in the structure of the git repo The "master" branch will now contain stable stuff and hotfixes. - The new "develop" branch will contain the latest changes. + The new "develop" branch will contain the latest changes. Version 3.2 diff --git a/boot.php b/boot.php index d74f38914c..6da885117a 100644 --- a/boot.php +++ b/boot.php @@ -15,10 +15,10 @@ require_once('update.php'); require_once('include/dbstructure.php'); define ( 'FRIENDICA_PLATFORM', 'Friendica'); -define ( 'FRIENDICA_CODENAME', 'Ginger'); -define ( 'FRIENDICA_VERSION', '3.3.3' ); +define ( 'FRIENDICA_CODENAME', 'Lily of the valley'); +define ( 'FRIENDICA_VERSION', '3.4.0' ); define ( 'DFRN_PROTOCOL_VERSION', '2.23' ); -define ( 'DB_UPDATE_VERSION', 1178 ); +define ( 'DB_UPDATE_VERSION', 1182 ); define ( 'EOL', "
\r\n" ); define ( 'ATOM_TIME', 'Y-m-d\TH:i:s\Z' ); @@ -127,6 +127,11 @@ define ( 'PAGE_FREELOVE', 3 ); define ( 'PAGE_BLOG', 4 ); define ( 'PAGE_PRVGROUP', 5 ); +// Type of the community page +define ( 'CP_NO_COMMUNITY_PAGE', -1 ); +define ( 'CP_USERS_ON_SERVER', 0 ); +define ( 'CP_GLOBAL_COMMUNITY', 1 ); + /** * Network and protocol family types */ @@ -1191,36 +1196,25 @@ if(! function_exists('check_plugins')) { } } -function get_guid($size=16) { - $exists = true; // assume by default that we don't have a unique guid - do { - $prefix = ""; - while (strlen($prefix) < ($size - 13)) - $prefix .= mt_rand(); +function get_guid($size=16, $prefix = "") { - $s = substr(uniqid($prefix), -$size); + if ($prefix == "") { + $a = get_app(); + $prefix = hash("crc32", $a->get_hostname()); + } - $r = q("select id from guid where guid = '%s' limit 1", dbesc($s)); - if(! count($r)) - $exists = false; - } while($exists); - q("insert into guid (guid) values ('%s') ", dbesc($s)); - return $s; + while (strlen($prefix) < ($size - 13)) + $prefix .= mt_rand(); + + if ($size >= 24) { + $prefix = substr($prefix, 0, $size - 22); + return(str_replace(".", "", uniqid($prefix, true))); + } else { + $prefix = substr($prefix, 0, $size - 13); + return(uniqid($prefix)); + } } -/*function get_guid($size=16) { - $exists = true; // assume by default that we don't have a unique guid - do { - $s = random_string($size); - $r = q("select id from guid where guid = '%s' limit 1", dbesc($s)); - if(! count($r)) - $exists = false; - } while($exists); - q("insert into guid ( guid ) values ( '%s' ) ", dbesc($s)); - return $s; -}*/ - - // wrapper for adding a login box. If $register == true provide a registration // link. This will most always depend on the value of $a->config['register_policy']. // returns the complete html for inserting into the page @@ -1405,11 +1399,11 @@ if(! function_exists('get_max_import_size')) { if(! function_exists('profile_load')) { function profile_load(&$a, $nickname, $profile = 0, $profiledata = array()) { - $user = q("select uid from user where nickname = '%s' limit 1", + $user = q("SELECT `uid` FROM `user` WHERE `nickname` = '%s' LIMIT 1", dbesc($nickname) ); - if(! ($user && count($user))) { + if(!$user && count($user) && !count($profiledata)) { logger('profile error: ' . $a->query_string, LOGGER_DEBUG); notice( t('Requested account is not available.') . EOL ); $a->error = 404; @@ -1440,7 +1434,7 @@ if(! function_exists('profile_load')) { intval($profile_int) ); } - if((! $r) && (! count($r))) { + if((!$r) && (!count($r))) { $r = q("SELECT `profile`.`uid` AS `profile_uid`, `profile`.* , `contact`.`avatar-date` AS picdate, `user`.* FROM `profile` INNER JOIN `contact` on `contact`.`uid` = `profile`.`uid` INNER JOIN `user` ON `profile`.`uid` = `user`.`uid` WHERE `user`.`nickname` = '%s' AND `profile`.`is-default` = 1 and `contact`.`self` = 1 LIMIT 1", @@ -1448,7 +1442,7 @@ if(! function_exists('profile_load')) { ); } - if(($r === false) || (! count($r))) { + if(($r === false) || (!count($r)) && !count($profiledata)) { logger('profile error: ' . $a->query_string, LOGGER_DEBUG); notice( t('Requested profile is not available.') . EOL ); $a->error = 404; @@ -1457,7 +1451,7 @@ if(! function_exists('profile_load')) { // fetch user tags if this isn't the default profile - if(! $r[0]['is-default']) { + if(!$r[0]['is-default']) { $x = q("select `pub_keywords` from `profile` where uid = %d and `is-default` = 1 limit 1", intval($r[0]['profile_uid']) ); @@ -1673,8 +1667,24 @@ if(! function_exists('profile_sidebar')) { if (!$block){ $contact_block = contact_block(); - } + if(is_array($a->profile) AND !$a->profile['hide-friends']) { + $r = q("SELECT `gcontact`.`updated` FROM `contact` INNER JOIN `gcontact` WHERE `gcontact`.`nurl` = `contact`.`nurl` AND `self` AND `uid` = %d LIMIT 1", + intval($a->profile['uid'])); + if(count($r)) + $updated = date("c", strtotime($r[0]['updated'])); + + $r = q("SELECT COUNT(*) AS `total` FROM `contact` WHERE `uid` = %d AND `self` = 0 AND `blocked` = 0 and `pending` = 0 AND `hidden` = 0 AND `archive` = 0 + AND `network` IN ('%s', '%s', '%s', '')", + intval($profile['uid']), + dbesc(NETWORK_DFRN), + dbesc(NETWORK_DIASPORA), + dbesc(NETWORK_OSTATUS) + ); + if(count($r)) + $contacts = intval($r[0]['total']); + } + } $p = array(); foreach($profile as $k => $v) { @@ -1699,6 +1709,8 @@ if(! function_exists('profile_sidebar')) { '$homepage' => $homepage, '$about' => $about, '$network' => t('Network:'), + '$contacts' => $contacts, + '$updated' => $updated, '$diaspora' => $diaspora, '$contact_block' => $contact_block, )); @@ -1818,10 +1830,10 @@ if(! function_exists('get_events')) { $bd_short = t('F d'); $r = q("SELECT `event`.* FROM `event` - WHERE `event`.`uid` = %d AND `type` != 'birthday' AND `start` < '%s' AND `start` > '%s' + WHERE `event`.`uid` = %d AND `type` != 'birthday' AND `start` < '%s' AND `start` >= '%s' ORDER BY `start` ASC ", intval(local_user()), - dbesc(datetime_convert('UTC','UTC','now + 6 days')), + dbesc(datetime_convert('UTC','UTC','now + 7 days')), dbesc(datetime_convert('UTC','UTC','now - 1 days')) ); @@ -1838,6 +1850,7 @@ if(! function_exists('get_events')) { } $classtoday = (($istoday) ? 'event-today' : ''); + $skip = 0; foreach($r as &$rr) { if($rr['adjust']) @@ -1851,6 +1864,12 @@ if(! function_exists('get_events')) { $title = t('[No description]'); $strt = datetime_convert('UTC',$rr['convert'] ? $a->timezone : 'UTC',$rr['start']); + + if(substr($strt,0,10) < datetime_convert('UTC',$a->timezone,'now','Y-m-d')) { + $skip++; + continue; + } + $today = ((substr($strt,0,10) === datetime_convert('UTC',$a->timezone,'now','Y-m-d')) ? true : false); $rr['link'] = $md; @@ -1865,7 +1884,7 @@ if(! function_exists('get_events')) { return replace_macros($tpl, array( '$baseurl' => $a->get_baseurl(), '$classtoday' => $classtoday, - '$count' => count($r), + '$count' => count($r) - $skip, '$event_reminders' => t('Event Reminders'), '$event_title' => t('Events this week:'), '$events' => $r, @@ -2169,6 +2188,20 @@ function get_my_url() { function zrl_init(&$a) { $tmp_str = get_my_url(); if(validate_url($tmp_str)) { + + // Is it a DDoS attempt? + // The check fetches the cached value from gprobe to reduce the load for this system + $urlparts = parse_url($tmp_str); + + $result = Cache::get("gprobe:".$urlparts["host"]); + if (!is_null($result)) { + $result = unserialize($result); + if ($result["network"] == NETWORK_FEED) { + logger("DDoS attempt detected for ".$urlparts["host"]." by ".$_SERVER["REMOTE_ADDR"].". server data: ".print_r($_SERVER, true), LOGGER_DEBUG); + return; + } + } + proc_run('php','include/gprobe.php',bin2hex($tmp_str)); $arr = array('zrl' => $tmp_str, 'url' => $a->cmd); call_hooks('zrl_init',$arr); @@ -2335,7 +2368,9 @@ function get_itemcachepath() { if ($temppath != "") { $itemcache = $temppath."/itemcache"; - mkdir($itemcache); + if(!file_exists($itemcache) && !is_dir($itemcache)) { + mkdir($itemcache); + } if (is_dir($itemcache) AND is_writable($itemcache)) { set_config("system", "itemcache", $itemcache); diff --git a/database.sql b/database.sql index cbf8933f3d..8babeb4d4f 100644 --- a/database.sql +++ b/database.sql @@ -1,1235 +1,984 @@ --- phpMyAdmin SQL Dump --- version 3.3.10.4 --- http://www.phpmyadmin.net --- +-- ------------------------------------------ +-- Friendica 3.4.0 (Ginger) +-- DB_UPDATE_VERSION 1182 +-- ------------------------------------------ -SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO"; - --- -------------------------------------------------------- -- --- Table structure for table `addon` +-- TABLE addon -- - CREATE TABLE IF NOT EXISTS `addon` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `name` char(255) NOT NULL, - `version` char(255) NOT NULL, - `installed` tinyint(1) NOT NULL DEFAULT '0', - `hidden` tinyint(1) NOT NULL DEFAULT '0', - `timestamp` bigint(20) NOT NULL DEFAULT '0', - `plugin_admin` tinyint(1) NOT NULL DEFAULT '0', - PRIMARY KEY (`id`), - KEY `hidden` (`hidden`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8; - --- -------------------------------------------------------- + `id` int(11) NOT NULL auto_increment PRIMARY KEY, + `name` varchar(255) NOT NULL DEFAULT '', + `version` varchar(255) NOT NULL DEFAULT '', + `installed` tinyint(1) NOT NULL DEFAULT 0, + `hidden` tinyint(1) NOT NULL DEFAULT 0, + `timestamp` bigint(20) NOT NULL DEFAULT 0, + `plugin_admin` tinyint(1) NOT NULL DEFAULT 0 +) DEFAULT CHARSET=utf8; -- --- Table structure for table `attach` +-- TABLE attach -- - CREATE TABLE IF NOT EXISTS `attach` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `uid` int(11) NOT NULL, - `hash` char(64) NOT NULL, - `filename` char(255) NOT NULL, - `filetype` char(64) NOT NULL, - `filesize` int(11) NOT NULL, - `data` longblob NOT NULL, - `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', - `edited` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', - `allow_cid` mediumtext NOT NULL, - `allow_gid` mediumtext NOT NULL, - `deny_cid` mediumtext NOT NULL, - `deny_gid` mediumtext NOT NULL, - PRIMARY KEY (`id`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8; - --- -------------------------------------------------------- + `id` int(11) NOT NULL auto_increment PRIMARY KEY, + `uid` int(11) NOT NULL DEFAULT 0, + `hash` varchar(64) NOT NULL DEFAULT '', + `filename` varchar(255) NOT NULL DEFAULT '', + `filetype` varchar(64) NOT NULL DEFAULT '', + `filesize` int(11) NOT NULL DEFAULT 0, + `data` longblob NOT NULL, + `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + `edited` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + `allow_cid` mediumtext NOT NULL, + `allow_gid` mediumtext NOT NULL, + `deny_cid` mediumtext NOT NULL, + `deny_gid` mediumtext NOT NULL +) DEFAULT CHARSET=utf8; -- --- Table structure for table `auth_codes` +-- TABLE auth_codes -- - CREATE TABLE IF NOT EXISTS `auth_codes` ( - `id` varchar(40) NOT NULL, - `client_id` varchar(20) NOT NULL, - `redirect_uri` varchar(200) NOT NULL, - `expires` int(11) NOT NULL, - `scope` varchar(250) NOT NULL, - PRIMARY KEY (`id`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8; - --- -------------------------------------------------------- + `id` varchar(40) NOT NULL PRIMARY KEY, + `client_id` varchar(20) NOT NULL DEFAULT '', + `redirect_uri` varchar(200) NOT NULL DEFAULT '', + `expires` int(11) NOT NULL DEFAULT 0, + `scope` varchar(250) NOT NULL DEFAULT '' +) DEFAULT CHARSET=utf8; -- --- Table structure for table `cache` +-- TABLE cache -- - CREATE TABLE IF NOT EXISTS `cache` ( - `k` char(255) NOT NULL, - `v` text NOT NULL, - `updated` datetime NOT NULL, - PRIMARY KEY (`k`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8; - --- -------------------------------------------------------- + `k` varchar(255) NOT NULL PRIMARY KEY, + `v` text NOT NULL, + `updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + INDEX `updated` (`updated`) +) DEFAULT CHARSET=utf8; -- --- Table structure for table `challenge` +-- TABLE challenge -- - CREATE TABLE IF NOT EXISTS `challenge` ( - `id` int(10) unsigned NOT NULL AUTO_INCREMENT, - `challenge` char(255) NOT NULL, - `dfrn-id` char(255) NOT NULL, - `expire` int(11) NOT NULL, - `type` char(255) NOT NULL, - `last_update` char(255) NOT NULL, - PRIMARY KEY (`id`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8; - --- -------------------------------------------------------- + `id` int(10) unsigned NOT NULL auto_increment PRIMARY KEY, + `challenge` varchar(255) NOT NULL DEFAULT '', + `dfrn-id` varchar(255) NOT NULL DEFAULT '', + `expire` int(11) NOT NULL DEFAULT 0, + `type` varchar(255) NOT NULL DEFAULT '', + `last_update` varchar(255) NOT NULL DEFAULT '' +) DEFAULT CHARSET=utf8; -- --- Table structure for table `clients` +-- TABLE clients -- - CREATE TABLE IF NOT EXISTS `clients` ( - `client_id` varchar(20) NOT NULL, - `pw` varchar(20) NOT NULL, - `redirect_uri` varchar(200) NOT NULL, - `name` text, - `icon` text, - `uid` int(11) NOT NULL DEFAULT '0', - PRIMARY KEY (`client_id`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8; - --- -------------------------------------------------------- + `client_id` varchar(20) NOT NULL PRIMARY KEY, + `pw` varchar(20) NOT NULL DEFAULT '', + `redirect_uri` varchar(200) NOT NULL DEFAULT '', + `name` text, + `icon` text, + `uid` int(11) NOT NULL DEFAULT 0 +) DEFAULT CHARSET=utf8; -- --- Table structure for table `config` +-- TABLE config -- - CREATE TABLE IF NOT EXISTS `config` ( - `id` int(10) unsigned NOT NULL AUTO_INCREMENT, - `cat` char(255) CHARACTER SET ascii NOT NULL, - `k` char(255) CHARACTER SET ascii NOT NULL, - `v` text NOT NULL, - PRIMARY KEY (`id`), - UNIQUE KEY `access` (`cat`,`k`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8; - --- -------------------------------------------------------- + `id` int(10) unsigned NOT NULL auto_increment PRIMARY KEY, + `cat` varchar(255) NOT NULL DEFAULT '', + `k` varchar(255) NOT NULL DEFAULT '', + `v` text NOT NULL, + INDEX `cat_k` (`cat`(30),`k`(30)) +) DEFAULT CHARSET=utf8; -- --- Table structure for table `contact` +-- TABLE contact -- - CREATE TABLE IF NOT EXISTS `contact` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `uid` int(11) NOT NULL COMMENT 'owner uid', - `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', - `self` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'boolean 1 == info for local UID, primarily name and photo to use in item displays.', - `remote_self` tinyint(1) NOT NULL DEFAULT '0', - `rel` tinyint(1) NOT NULL DEFAULT '0', - `duplex` tinyint(1) NOT NULL DEFAULT '0', - `network` char(255) NOT NULL, - `name` char(255) NOT NULL, - `nick` char(255) NOT NULL, - `attag` char(255) NOT NULL, - `photo` text NOT NULL COMMENT 'remote photo URL initially until approved', - `thumb` text NOT NULL, - `micro` text NOT NULL, - `site-pubkey` text NOT NULL, - `issued-id` char(255) NOT NULL, - `dfrn-id` char(255) NOT NULL, - `url` char(255) NOT NULL, - `nurl` char(255) NOT NULL, - `addr` char(255) NOT NULL, - `alias` char(255) NOT NULL, - `pubkey` text NOT NULL, - `prvkey` text NOT NULL, - `batch` char(255) NOT NULL, - `request` text NOT NULL, - `notify` text NOT NULL, - `poll` text NOT NULL, - `confirm` text NOT NULL, - `poco` text NOT NULL, - `aes_allow` tinyint(1) NOT NULL DEFAULT '0', - `ret-aes` tinyint(1) NOT NULL DEFAULT '0', - `usehub` tinyint(1) NOT NULL DEFAULT '0', - `subhub` tinyint(1) NOT NULL DEFAULT '0', - `hub-verify` char(255) NOT NULL, - `last-update` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', - `success_update` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', - `name-date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', - `uri-date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', - `avatar-date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', - `term-date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', - `priority` tinyint(3) NOT NULL, - `blocked` tinyint(1) NOT NULL DEFAULT '1', - `readonly` tinyint(1) NOT NULL DEFAULT '0', - `writable` tinyint(1) NOT NULL DEFAULT '0', - `forum` tinyint(1) NOT NULL DEFAULT '0', - `prv` tinyint(1) NOT NULL DEFAULT '0', - `hidden` tinyint(1) NOT NULL DEFAULT '0', - `archive` tinyint(1) NOT NULL DEFAULT '0', - `pending` tinyint(1) NOT NULL DEFAULT '1', - `rating` tinyint(1) NOT NULL DEFAULT '0' COMMENT '0-5 reputation, 0 unknown, 1 call police, 5 inscrutable', - `reason` text NOT NULL COMMENT 'why a rating was given - will help friends decide to make friends or not', - `closeness` tinyint(2) NOT NULL DEFAULT '99', - `info` mediumtext NOT NULL, - `profile-id` int(11) NOT NULL DEFAULT '0' COMMENT 'which profile to display - 0 is public default', - `bdyear` char(4) NOT NULL COMMENT 'birthday notify flag', - `bd` date NOT NULL, - `notify_new_posts` TINYINT(1) NOT NULL DEFAULT '0', - `fetch_further_information` TINYINT(1) NOT NULL DEFAULT '0', - PRIMARY KEY (`id`), - KEY `uid` (`uid`), - KEY `self` (`self`), - KEY `issued-id` (`issued-id`), - KEY `dfrn-id` (`dfrn-id`), - KEY `blocked` (`blocked`), - KEY `readonly` (`readonly`), - KEY `network` (`network`), - KEY `name` (`name`), - KEY `nick` (`nick`), - KEY `attag` (`attag`), - KEY `addr` (`addr`), - KEY `url` (`url`), - KEY `batch` (`batch`), - KEY `nurl` (`nurl`), - KEY `pending` (`pending`), - KEY `hidden` (`hidden`), - KEY `archive` (`archive`), - KEY `forum` (`forum`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8; - --- -------------------------------------------------------- + `id` int(11) NOT NULL auto_increment PRIMARY KEY, + `uid` int(11) NOT NULL DEFAULT 0, + `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + `self` tinyint(1) NOT NULL DEFAULT 0, + `remote_self` tinyint(1) NOT NULL DEFAULT 0, + `rel` tinyint(1) NOT NULL DEFAULT 0, + `duplex` tinyint(1) NOT NULL DEFAULT 0, + `network` varchar(255) NOT NULL DEFAULT '', + `name` varchar(255) NOT NULL DEFAULT '', + `nick` varchar(255) NOT NULL DEFAULT '', + `location` varchar(255) NOT NULL DEFAULT '', + `about` text NOT NULL, + `keywords` text NOT NULL, + `gender` varchar(32) NOT NULL DEFAULT '', + `attag` varchar(255) NOT NULL DEFAULT '', + `photo` text NOT NULL, + `thumb` text NOT NULL, + `micro` text NOT NULL, + `site-pubkey` text NOT NULL, + `issued-id` varchar(255) NOT NULL DEFAULT '', + `dfrn-id` varchar(255) NOT NULL DEFAULT '', + `url` varchar(255) NOT NULL DEFAULT '', + `nurl` varchar(255) NOT NULL DEFAULT '', + `addr` varchar(255) NOT NULL DEFAULT '', + `alias` varchar(255) NOT NULL DEFAULT '', + `pubkey` text NOT NULL, + `prvkey` text NOT NULL, + `batch` varchar(255) NOT NULL DEFAULT '', + `request` text NOT NULL, + `notify` text NOT NULL, + `poll` text NOT NULL, + `confirm` text NOT NULL, + `poco` text NOT NULL, + `aes_allow` tinyint(1) NOT NULL DEFAULT 0, + `ret-aes` tinyint(1) NOT NULL DEFAULT 0, + `usehub` tinyint(1) NOT NULL DEFAULT 0, + `subhub` tinyint(1) NOT NULL DEFAULT 0, + `hub-verify` varchar(255) NOT NULL DEFAULT '', + `last-update` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + `success_update` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + `name-date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + `uri-date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + `avatar-date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + `term-date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + `priority` tinyint(3) NOT NULL DEFAULT 0, + `blocked` tinyint(1) NOT NULL DEFAULT 1, + `readonly` tinyint(1) NOT NULL DEFAULT 0, + `writable` tinyint(1) NOT NULL DEFAULT 0, + `forum` tinyint(1) NOT NULL DEFAULT 0, + `prv` tinyint(1) NOT NULL DEFAULT 0, + `hidden` tinyint(1) NOT NULL DEFAULT 0, + `archive` tinyint(1) NOT NULL DEFAULT 0, + `pending` tinyint(1) NOT NULL DEFAULT 1, + `rating` tinyint(1) NOT NULL DEFAULT 0, + `reason` text NOT NULL, + `closeness` tinyint(2) NOT NULL DEFAULT 99, + `info` mediumtext NOT NULL, + `profile-id` int(11) NOT NULL DEFAULT 0, + `bdyear` varchar(4) NOT NULL DEFAULT '', + `bd` date NOT NULL DEFAULT '0000-00-00', + `notify_new_posts` tinyint(1) NOT NULL DEFAULT 0, + `fetch_further_information` tinyint(1) NOT NULL DEFAULT 0, + `ffi_keyword_blacklist` mediumtext NOT NULL, + INDEX `uid` (`uid`) +) DEFAULT CHARSET=utf8; -- --- Table structure for table `conv` +-- TABLE conv -- - CREATE TABLE IF NOT EXISTS `conv` ( - `id` int(10) unsigned NOT NULL AUTO_INCREMENT, - `guid` char(64) NOT NULL, - `recips` mediumtext NOT NULL, - `uid` int(11) NOT NULL, - `creator` char(255) NOT NULL, - `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', - `updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', - `subject` mediumtext NOT NULL, - PRIMARY KEY (`id`), - KEY `created` (`created`), - KEY `updated` (`updated`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8; - --- -------------------------------------------------------- + `id` int(10) unsigned NOT NULL auto_increment PRIMARY KEY, + `guid` varchar(64) NOT NULL DEFAULT '', + `recips` mediumtext NOT NULL, + `uid` int(11) NOT NULL DEFAULT 0, + `creator` varchar(255) NOT NULL DEFAULT '', + `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + `updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + `subject` mediumtext NOT NULL, + INDEX `uid` (`uid`) +) DEFAULT CHARSET=utf8; -- --- Table structure for table `deliverq` +-- TABLE deliverq -- - CREATE TABLE IF NOT EXISTS `deliverq` ( - `id` int(10) unsigned NOT NULL AUTO_INCREMENT, - `cmd` char(32) NOT NULL, - `item` int(11) NOT NULL, - `contact` int(11) NOT NULL, - PRIMARY KEY (`id`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8; - --- -------------------------------------------------------- + `id` int(10) unsigned NOT NULL auto_increment PRIMARY KEY, + `cmd` varchar(32) NOT NULL DEFAULT '', + `item` int(11) NOT NULL DEFAULT 0, + `contact` int(11) NOT NULL DEFAULT 0 +) DEFAULT CHARSET=utf8; -- --- Table structure for table `dsprphotoq` +-- TABLE dsprphotoq -- - -CREATE TABLE `dsprphotoq` ( - `id` int(10) unsigned NOT NULL AUTO_INCREMENT, - `uid` int(11) NOT NULL, - `msg` mediumtext NOT NULL, - `attempt` tinyint(4) NOT NULL, - PRIMARY KEY (`id`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8; - --- -------------------------------------------------------- +CREATE TABLE IF NOT EXISTS `dsprphotoq` ( + `id` int(10) unsigned NOT NULL auto_increment PRIMARY KEY, + `uid` int(11) NOT NULL DEFAULT 0, + `msg` mediumtext NOT NULL, + `attempt` tinyint(4) NOT NULL DEFAULT 0 +) DEFAULT CHARSET=utf8; -- --- Table structure for table `event` +-- TABLE event -- - CREATE TABLE IF NOT EXISTS `event` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `uid` int(11) NOT NULL, - `cid` int(11) NOT NULL, - `uri` char(255) NOT NULL, - `created` datetime NOT NULL, - `edited` datetime NOT NULL, - `start` datetime NOT NULL, - `finish` datetime NOT NULL, - `summary` text NOT NULL, - `desc` text NOT NULL, - `location` text NOT NULL, - `type` char(255) NOT NULL, - `nofinish` tinyint(1) NOT NULL DEFAULT '0', - `adjust` tinyint(1) NOT NULL DEFAULT '1', - `ignore` tinyint(1) NOT NULL DEFAULT '0', - `allow_cid` mediumtext NOT NULL, - `allow_gid` mediumtext NOT NULL, - `deny_cid` mediumtext NOT NULL, - `deny_gid` mediumtext NOT NULL, - PRIMARY KEY (`id`), - KEY `uid` ( `uid` ), - KEY `cid` ( `cid` ), - KEY `uri` ( `uri` ), - KEY `type` ( `type` ), - KEY `start` ( `start` ), - KEY `finish` ( `finish` ), - KEY `adjust` ( `adjust` ), - KEY `ignore` ( `ignore` ) -) ENGINE=MyISAM DEFAULT CHARSET=utf8; - --- -------------------------------------------------------- + `id` int(11) NOT NULL auto_increment PRIMARY KEY, + `uid` int(11) NOT NULL DEFAULT 0, + `cid` int(11) NOT NULL DEFAULT 0, + `uri` varchar(255) NOT NULL DEFAULT '', + `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + `edited` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + `start` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + `finish` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + `summary` text NOT NULL, + `desc` text NOT NULL, + `location` text NOT NULL, + `type` varchar(255) NOT NULL DEFAULT '', + `nofinish` tinyint(1) NOT NULL DEFAULT 0, + `adjust` tinyint(1) NOT NULL DEFAULT 1, + `ignore` tinyint(1) unsigned NOT NULL DEFAULT 0, + `allow_cid` mediumtext NOT NULL, + `allow_gid` mediumtext NOT NULL, + `deny_cid` mediumtext NOT NULL, + `deny_gid` mediumtext NOT NULL, + INDEX `uid` (`uid`) +) DEFAULT CHARSET=utf8; -- --- Table structure for table `fcontact` +-- TABLE fcontact -- - CREATE TABLE IF NOT EXISTS `fcontact` ( - `id` int(10) unsigned NOT NULL AUTO_INCREMENT, - `url` char(255) NOT NULL, - `name` char(255) NOT NULL, - `photo` char(255) NOT NULL, - `request` char(255) NOT NULL, - `nick` char(255) NOT NULL, - `addr` char(255) NOT NULL, - `batch` char(255) NOT NULL, - `notify` char(255) NOT NULL, - `poll` char(255) NOT NULL, - `confirm` char(255) NOT NULL, - `priority` tinyint(1) NOT NULL, - `network` char(32) NOT NULL, - `alias` char(255) NOT NULL, - `pubkey` text NOT NULL, - `updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', - PRIMARY KEY (`id`), - KEY `addr` (`addr`), - KEY `network` (`network`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8; - --- -------------------------------------------------------- + `id` int(10) unsigned NOT NULL auto_increment PRIMARY KEY, + `url` varchar(255) NOT NULL DEFAULT '', + `name` varchar(255) NOT NULL DEFAULT '', + `photo` varchar(255) NOT NULL DEFAULT '', + `request` varchar(255) NOT NULL DEFAULT '', + `nick` varchar(255) NOT NULL DEFAULT '', + `addr` varchar(255) NOT NULL DEFAULT '', + `batch` varchar(255) NOT NULL DEFAULT '', + `notify` varchar(255) NOT NULL DEFAULT '', + `poll` varchar(255) NOT NULL DEFAULT '', + `confirm` varchar(255) NOT NULL DEFAULT '', + `priority` tinyint(1) NOT NULL DEFAULT 0, + `network` varchar(32) NOT NULL DEFAULT '', + `alias` varchar(255) NOT NULL DEFAULT '', + `pubkey` text NOT NULL, + `updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + INDEX `addr` (`addr`) +) DEFAULT CHARSET=utf8; -- --- Table structure for table `ffinder` +-- TABLE ffinder -- - CREATE TABLE IF NOT EXISTS `ffinder` ( - `id` int(10) unsigned NOT NULL AUTO_INCREMENT, - `uid` int(10) unsigned NOT NULL, - `cid` int(10) unsigned NOT NULL, - `fid` int(10) unsigned NOT NULL, - PRIMARY KEY (`id`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8; - --- -------------------------------------------------------- + `id` int(10) unsigned NOT NULL auto_increment PRIMARY KEY, + `uid` int(10) unsigned NOT NULL DEFAULT 0, + `cid` int(10) unsigned NOT NULL DEFAULT 0, + `fid` int(10) unsigned NOT NULL DEFAULT 0 +) DEFAULT CHARSET=utf8; -- --- Table structure for table `fserver` +-- TABLE fserver -- - CREATE TABLE IF NOT EXISTS `fserver` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `server` char(255) NOT NULL, - `posturl` char(255) NOT NULL, - `key` text NOT NULL, - PRIMARY KEY (`id`), - KEY `server` (`server`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8; - --- -------------------------------------------------------- + `id` int(11) NOT NULL auto_increment PRIMARY KEY, + `server` varchar(255) NOT NULL DEFAULT '', + `posturl` varchar(255) NOT NULL DEFAULT '', + `key` text NOT NULL, + INDEX `server` (`server`) +) DEFAULT CHARSET=utf8; -- --- Table structure for table `fsuggest` +-- TABLE fsuggest -- - CREATE TABLE IF NOT EXISTS `fsuggest` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `uid` int(11) NOT NULL, - `cid` int(11) NOT NULL, - `name` char(255) NOT NULL, - `url` char(255) NOT NULL, - `request` char(255) NOT NULL, - `photo` char(255) NOT NULL, - `note` text NOT NULL, - `created` datetime NOT NULL, - PRIMARY KEY (`id`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8; - --- -------------------------------------------------------- + `id` int(11) NOT NULL auto_increment PRIMARY KEY, + `uid` int(11) NOT NULL DEFAULT 0, + `cid` int(11) NOT NULL DEFAULT 0, + `name` varchar(255) NOT NULL DEFAULT '', + `url` varchar(255) NOT NULL DEFAULT '', + `request` varchar(255) NOT NULL DEFAULT '', + `photo` varchar(255) NOT NULL DEFAULT '', + `note` text NOT NULL, + `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00' +) DEFAULT CHARSET=utf8; -- --- Table structure for table `gcign` +-- TABLE gcign -- - CREATE TABLE IF NOT EXISTS `gcign` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `uid` int(11) NOT NULL, - `gcid` int(11) NOT NULL, - PRIMARY KEY (`id`), - KEY `uid` (`uid`), - KEY `gcid` (`gcid`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8; - --- -------------------------------------------------------- + `id` int(11) NOT NULL auto_increment PRIMARY KEY, + `uid` int(11) NOT NULL DEFAULT 0, + `gcid` int(11) NOT NULL DEFAULT 0, + INDEX `uid` (`uid`), + INDEX `gcid` (`gcid`) +) DEFAULT CHARSET=utf8; -- --- Table structure for table `gcontact` +-- TABLE gcontact -- - CREATE TABLE IF NOT EXISTS `gcontact` ( - `id` int(10) unsigned NOT NULL AUTO_INCREMENT, - `name` char(255) NOT NULL, - `url` char(255) NOT NULL, - `nurl` char(255) NOT NULL, - `photo` char(255) NOT NULL, - `connect` char(255) NOT NULL, - PRIMARY KEY (`id`), - KEY `nurl` (`nurl`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8; - --- -------------------------------------------------------- + `id` int(10) unsigned NOT NULL auto_increment PRIMARY KEY, + `name` varchar(255) NOT NULL DEFAULT '', + `url` varchar(255) NOT NULL DEFAULT '', + `nurl` varchar(255) NOT NULL DEFAULT '', + `photo` varchar(255) NOT NULL DEFAULT '', + `connect` varchar(255) NOT NULL DEFAULT '', + `updated` datetime DEFAULT '0000-00-00 00:00:00', + `location` varchar(255) NOT NULL DEFAULT '', + `about` text NOT NULL, + `keywords` text NOT NULL, + `gender` varchar(32) NOT NULL DEFAULT '', + `network` varchar(255) NOT NULL DEFAULT '', + `generation` tinyint(3) NOT NULL DEFAULT 0, + INDEX `nurl` (`nurl`) +) DEFAULT CHARSET=utf8; -- --- Table structure for table `glink` +-- TABLE glink -- - CREATE TABLE IF NOT EXISTS `glink` ( - `id` int(10) unsigned NOT NULL AUTO_INCREMENT, - `cid` int(11) NOT NULL, - `uid` int(11) NOT NULL, - `gcid` int(11) NOT NULL, - `zcid` int(11) NOT NULL, - `updated` datetime NOT NULL, - PRIMARY KEY (`id`), - KEY `cid` (`cid`), - KEY `uid` (`uid`), - KEY `gcid` (`gcid`), - KEY `zcid` (`zcid`), - KEY `updated` (`updated`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8; - --- -------------------------------------------------------- + `id` int(10) unsigned NOT NULL auto_increment PRIMARY KEY, + `cid` int(11) NOT NULL DEFAULT 0, + `uid` int(11) NOT NULL DEFAULT 0, + `gcid` int(11) NOT NULL DEFAULT 0, + `zcid` int(11) NOT NULL DEFAULT 0, + `updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + INDEX `cid_uid_gcid_zcid` (`cid`,`uid`,`gcid`,`zcid`), + INDEX `gcid` (`gcid`), + INDEX `zcid` (`zcid`) +) DEFAULT CHARSET=utf8; -- --- Table structure for table `group` +-- TABLE group -- - CREATE TABLE IF NOT EXISTS `group` ( - `id` int(10) unsigned NOT NULL AUTO_INCREMENT, - `uid` int(10) unsigned NOT NULL, - `visible` tinyint(1) NOT NULL DEFAULT '0', - `deleted` tinyint(1) NOT NULL DEFAULT '0', - `name` char(255) NOT NULL, - PRIMARY KEY (`id`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8; - --- -------------------------------------------------------- + `id` int(10) unsigned NOT NULL auto_increment PRIMARY KEY, + `uid` int(10) unsigned NOT NULL DEFAULT 0, + `visible` tinyint(1) NOT NULL DEFAULT 0, + `deleted` tinyint(1) NOT NULL DEFAULT 0, + `name` varchar(255) NOT NULL DEFAULT '', + INDEX `uid` (`uid`) +) DEFAULT CHARSET=utf8; -- --- Table structure for table `group_member` +-- TABLE group_member -- - CREATE TABLE IF NOT EXISTS `group_member` ( - `id` int(10) unsigned NOT NULL AUTO_INCREMENT, - `uid` int(10) unsigned NOT NULL, - `gid` int(10) unsigned NOT NULL, - `contact-id` int(10) unsigned NOT NULL, - PRIMARY KEY (`id`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8; - --- -------------------------------------------------------- + `id` int(10) unsigned NOT NULL auto_increment PRIMARY KEY, + `uid` int(10) unsigned NOT NULL DEFAULT 0, + `gid` int(10) unsigned NOT NULL DEFAULT 0, + `contact-id` int(10) unsigned NOT NULL DEFAULT 0, + INDEX `uid_gid_contactid` (`uid`,`gid`,`contact-id`) +) DEFAULT CHARSET=utf8; -- --- Table structure for table `guid` +-- TABLE guid -- - CREATE TABLE IF NOT EXISTS `guid` ( - `id` int(10) unsigned NOT NULL AUTO_INCREMENT, - `guid` char(64) NOT NULL, - PRIMARY KEY (`id`), - KEY `guid` (`guid`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8; - --- -------------------------------------------------------- + `id` int(10) unsigned NOT NULL auto_increment PRIMARY KEY, + `guid` varchar(255) NOT NULL DEFAULT '', + INDEX `guid` (`guid`) +) DEFAULT CHARSET=utf8; -- --- Table structure for table `hook` +-- TABLE hook -- - CREATE TABLE IF NOT EXISTS `hook` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `hook` char(255) NOT NULL, - `file` char(255) NOT NULL, - `function` char(255) NOT NULL, - `priority` int(11) UNSIGNED NOT NULL DEFAULT '0', - PRIMARY KEY (`id`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8; - --- -------------------------------------------------------- + `id` int(11) NOT NULL auto_increment PRIMARY KEY, + `hook` varchar(255) NOT NULL DEFAULT '', + `file` varchar(255) NOT NULL DEFAULT '', + `function` varchar(255) NOT NULL DEFAULT '', + `priority` int(11) unsigned NOT NULL DEFAULT 0, + INDEX `hook_file_function` (`hook`(30),`file`(60),`function`(30)) +) DEFAULT CHARSET=utf8; -- --- Table structure for table `intro` +-- TABLE intro -- - CREATE TABLE IF NOT EXISTS `intro` ( - `id` int(10) unsigned NOT NULL AUTO_INCREMENT, - `uid` int(10) unsigned NOT NULL, - `fid` int(11) NOT NULL DEFAULT '0', - `contact-id` int(11) NOT NULL, - `knowyou` tinyint(1) NOT NULL, - `duplex` tinyint(1) NOT NULL DEFAULT '0', - `note` text NOT NULL, - `hash` char(255) NOT NULL, - `datetime` datetime NOT NULL, - `blocked` tinyint(1) NOT NULL DEFAULT '1', - `ignore` tinyint(1) NOT NULL DEFAULT '0', - PRIMARY KEY (`id`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8; - --- -------------------------------------------------------- + `id` int(10) unsigned NOT NULL auto_increment PRIMARY KEY, + `uid` int(10) unsigned NOT NULL DEFAULT 0, + `fid` int(11) NOT NULL DEFAULT 0, + `contact-id` int(11) NOT NULL DEFAULT 0, + `knowyou` tinyint(1) NOT NULL DEFAULT 0, + `duplex` tinyint(1) NOT NULL DEFAULT 0, + `note` text NOT NULL, + `hash` varchar(255) NOT NULL DEFAULT '', + `datetime` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + `blocked` tinyint(1) NOT NULL DEFAULT 1, + `ignore` tinyint(1) NOT NULL DEFAULT 0 +) DEFAULT CHARSET=utf8; -- --- Table structure for table `item` +-- TABLE item -- - CREATE TABLE IF NOT EXISTS `item` ( - `id` int(10) unsigned NOT NULL AUTO_INCREMENT, - `guid` char(255) NOT NULL, - `uri` char(255) CHARACTER SET ascii NOT NULL, - `uid` int(10) unsigned NOT NULL DEFAULT '0', - `contact-id` int(10) unsigned NOT NULL DEFAULT '0', - `type` char(255) NOT NULL, - `wall` tinyint(1) NOT NULL DEFAULT '0', - `gravity` tinyint(1) NOT NULL DEFAULT '0', - `parent` int(10) unsigned NOT NULL DEFAULT '0', - `parent-uri` char(255) CHARACTER SET ascii NOT NULL, - `extid` char(255) NOT NULL, - `thr-parent` char(255) NOT NULL, - `created` datetime NOT NULL, - `edited` datetime NOT NULL, - `commented` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', - `received` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', - `changed` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', - `owner-name` char(255) NOT NULL, - `owner-link` char(255) NOT NULL, - `owner-avatar` char(255) NOT NULL, - `author-name` char(255) NOT NULL, - `author-link` char(255) NOT NULL, - `author-avatar` char(255) NOT NULL, - `title` char(255) NOT NULL, - `body` mediumtext NOT NULL, - `app` char(255) NOT NULL, - `verb` char(255) NOT NULL, - `object-type` char(255) NOT NULL, - `object` text NOT NULL, - `target-type` char(255) NOT NULL, - `target` text NOT NULL, - `postopts` text NOT NULL, - `plink` char(255) NOT NULL, - `resource-id` char(255) NOT NULL, - `event-id` int(11) NOT NULL, - `tag` mediumtext NOT NULL, - `attach` mediumtext NOT NULL, - `inform` mediumtext NOT NULL, - `file` mediumtext NOT NULL, - `location` char(255) NOT NULL, - `coord` char(255) NOT NULL, - `allow_cid` mediumtext NOT NULL, - `allow_gid` mediumtext NOT NULL, - `deny_cid` mediumtext NOT NULL, - `deny_gid` mediumtext NOT NULL, - `private` tinyint(1) NOT NULL DEFAULT '0', - `pubmail` tinyint(1) NOT NULL DEFAULT '0', - `moderated` tinyint(1) NOT NULL DEFAULT '0', - `visible` tinyint(1) NOT NULL DEFAULT '0', - `spam` tinyint(1) NOT NULL DEFAULT '0', - `starred` tinyint(1) NOT NULL DEFAULT '0', - `bookmark` tinyint(1) NOT NULL DEFAULT '0', - `unseen` tinyint(1) NOT NULL DEFAULT '1', - `deleted` tinyint(1) NOT NULL DEFAULT '0', - `origin` tinyint(1) NOT NULL DEFAULT '0', - `forum_mode` tinyint(1) NOT NULL DEFAULT '0', - `mention` tinyint(1) NOT NULL DEFAULT '0', - `last-child` tinyint(1) unsigned NOT NULL DEFAULT '1', - `network` char(32) NOT NULL, - PRIMARY KEY (`id`), - KEY `uri` (`uri`), - KEY `uid` (`uid`), - KEY `contact-id` (`contact-id`), - KEY `type` (`type`), - KEY `parent` (`parent`), - KEY `parent-uri` (`parent-uri`), - KEY `created` (`created`), - KEY `edited` (`edited`), - KEY `visible` (`visible`), - KEY `deleted` (`deleted`), - KEY `last-child` (`last-child`), - KEY `unseen` (`unseen`), - KEY `extid` (`extid`), - KEY `received` (`received`), - KEY `starred` (`starred`), - KEY `guid` (`guid`), - KEY `origin` (`origin`), - KEY `wall` (`wall`), - KEY `forum_mode` (`forum_mode`), - KEY `author-link` (`author-link`), - KEY `bookmark` (`bookmark`), - KEY `moderated` (`moderated`), - KEY `spam` (`spam`), - KEY `author-name` (`author-name`), - KEY `uid_commented` (`uid`, `commented`), - KEY `uid_created` (`uid`, `created`), - KEY `uid_unseen` (`uid`, `unseen`), - KEY `mention` (`mention`), - KEY `resource-id` (`resource-id`), - KEY `event_id` (`event-id`), - KEY `network` (`network`), - FULLTEXT KEY `title` (`title`), - FULLTEXT KEY `body` (`body`), - FULLTEXT KEY `allow_cid` (`allow_cid`), - FULLTEXT KEY `allow_gid` (`allow_gid`), - FULLTEXT KEY `deny_cid` (`deny_cid`), - FULLTEXT KEY `deny_gid` (`deny_gid`), - FULLTEXT KEY `tag` (`tag`), - FULLTEXT KEY `file` (`file`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8; - --- -------------------------------------------------------- + `id` int(10) unsigned NOT NULL auto_increment PRIMARY KEY, + `guid` varchar(255) NOT NULL DEFAULT '', + `uri` varchar(255) NOT NULL DEFAULT '', + `uid` int(10) unsigned NOT NULL DEFAULT 0, + `contact-id` int(11) NOT NULL DEFAULT 0, + `type` varchar(255) NOT NULL DEFAULT '', + `wall` tinyint(1) NOT NULL DEFAULT 0, + `gravity` tinyint(1) NOT NULL DEFAULT 0, + `parent` int(10) unsigned NOT NULL DEFAULT 0, + `parent-uri` varchar(255) NOT NULL DEFAULT '', + `extid` varchar(255) NOT NULL DEFAULT '', + `thr-parent` varchar(255) NOT NULL DEFAULT '', + `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + `edited` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + `commented` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + `received` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + `changed` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + `owner-name` varchar(255) NOT NULL DEFAULT '', + `owner-link` varchar(255) NOT NULL DEFAULT '', + `owner-avatar` varchar(255) NOT NULL DEFAULT '', + `author-name` varchar(255) NOT NULL DEFAULT '', + `author-link` varchar(255) NOT NULL DEFAULT '', + `author-avatar` varchar(255) NOT NULL DEFAULT '', + `title` varchar(255) NOT NULL DEFAULT '', + `body` mediumtext NOT NULL, + `app` varchar(255) NOT NULL DEFAULT '', + `verb` varchar(255) NOT NULL DEFAULT '', + `object-type` varchar(255) NOT NULL DEFAULT '', + `object` text NOT NULL, + `target-type` varchar(255) NOT NULL DEFAULT '', + `target` text NOT NULL, + `postopts` text NOT NULL, + `plink` varchar(255) NOT NULL DEFAULT '', + `resource-id` varchar(255) NOT NULL DEFAULT '', + `event-id` int(11) NOT NULL DEFAULT 0, + `tag` mediumtext NOT NULL, + `attach` mediumtext NOT NULL, + `inform` mediumtext NOT NULL, + `file` mediumtext NOT NULL, + `location` varchar(255) NOT NULL DEFAULT '', + `coord` varchar(255) NOT NULL DEFAULT '', + `allow_cid` mediumtext NOT NULL, + `allow_gid` mediumtext NOT NULL, + `deny_cid` mediumtext NOT NULL, + `deny_gid` mediumtext NOT NULL, + `private` tinyint(1) NOT NULL DEFAULT 0, + `pubmail` tinyint(1) NOT NULL DEFAULT 0, + `moderated` tinyint(1) NOT NULL DEFAULT 0, + `visible` tinyint(1) NOT NULL DEFAULT 0, + `spam` tinyint(1) NOT NULL DEFAULT 0, + `starred` tinyint(1) NOT NULL DEFAULT 0, + `bookmark` tinyint(1) NOT NULL DEFAULT 0, + `unseen` tinyint(1) NOT NULL DEFAULT 1, + `deleted` tinyint(1) NOT NULL DEFAULT 0, + `origin` tinyint(1) NOT NULL DEFAULT 0, + `forum_mode` tinyint(1) NOT NULL DEFAULT 0, + `last-child` tinyint(1) unsigned NOT NULL DEFAULT 1, + `mention` tinyint(1) NOT NULL DEFAULT 0, + `network` varchar(32) NOT NULL DEFAULT '', + `rendered-hash` varchar(32) NOT NULL DEFAULT '', + `rendered-html` mediumtext NOT NULL, + `global` tinyint(1) NOT NULL DEFAULT 0, + INDEX `guid` (`guid`), + INDEX `uri` (`uri`), + INDEX `parent` (`parent`), + INDEX `parent-uri` (`parent-uri`), + INDEX `extid` (`extid`), + INDEX `uid_id` (`uid`,`id`), + INDEX `uid_created` (`uid`,`created`), + INDEX `uid_unseen` (`uid`,`unseen`), + INDEX `uid_network_received` (`uid`,`network`,`received`), + INDEX `uid_received` (`uid`,`received`), + INDEX `uid_network_commented` (`uid`,`network`,`commented`), + INDEX `uid_commented` (`uid`,`commented`), + INDEX `uid_title` (`uid`,`title`), + INDEX `uid_thrparent` (`uid`,`thr-parent`), + INDEX `uid_parenturi` (`uid`,`parent-uri`), + INDEX `uid_contactid_created` (`uid`,`contact-id`,`created`), + INDEX `wall_body` (`wall`,`body`(6)), + INDEX `uid_visible_moderated_created` (`uid`,`visible`,`moderated`,`created`), + INDEX `uid_uri` (`uid`,`uri`), + INDEX `uid_wall_created` (`uid`,`wall`,`created`), + INDEX `resource-id` (`resource-id`), + INDEX `uid_type` (`uid`,`type`), + INDEX `uid_starred` (`uid`,`starred`), + INDEX `contactid_allowcid_allowpid_denycid_denygid` (`contact-id`,`allow_cid`(10),`allow_gid`(10),`deny_cid`(10),`deny_gid`(10)), + INDEX `uid_wall_parent_created` (`uid`,`wall`,`parent`,`created`), + INDEX `uid_type_changed` (`uid`,`type`,`changed`), + INDEX `contactid_verb` (`contact-id`,`verb`), + INDEX `deleted_changed` (`deleted`,`changed`), + INDEX `uid_wall_changed` (`uid`,`wall`,`changed`), + INDEX `uid_eventid` (`uid`,`event-id`), + INDEX `uid_authorlink` (`uid`,`author-link`), + INDEX `uid_ownerlink` (`uid`,`owner-link`) +) DEFAULT CHARSET=utf8; -- --- Table structure for table `item_id` +-- TABLE item_id -- - CREATE TABLE IF NOT EXISTS `item_id` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `iid` int(11) NOT NULL, - `uid` int(11) NOT NULL, - `sid` char(255) NOT NULL, - `service` char(255) NOT NULL, - PRIMARY KEY (`id`), - KEY `iid` (`iid`), - KEY `uid` (`uid`), - KEY `sid` (`sid`), - KEY `service` (`service`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8; - --- -------------------------------------------------------- + `id` int(11) NOT NULL auto_increment PRIMARY KEY, + `iid` int(11) NOT NULL DEFAULT 0, + `uid` int(11) NOT NULL DEFAULT 0, + `sid` varchar(255) NOT NULL DEFAULT '', + `service` varchar(255) NOT NULL DEFAULT '', + INDEX `uid` (`uid`), + INDEX `sid` (`sid`), + INDEX `service` (`service`), + INDEX `iid` (`iid`) +) DEFAULT CHARSET=utf8; -- --- Table structure for table `locks` +-- TABLE locks -- - CREATE TABLE IF NOT EXISTS `locks` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `name` char(128) NOT NULL, - `locked` tinyint(1) NOT NULL DEFAULT '0', - PRIMARY KEY (`id`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8; - --- -------------------------------------------------------- + `id` int(11) NOT NULL auto_increment PRIMARY KEY, + `name` varchar(128) NOT NULL DEFAULT '', + `locked` tinyint(1) NOT NULL DEFAULT 0, + `created` datetime DEFAULT '0000-00-00 00:00:00' +) DEFAULT CHARSET=utf8; -- --- Table structure for table `mail` +-- TABLE mail -- - CREATE TABLE IF NOT EXISTS `mail` ( - `id` int(10) unsigned NOT NULL AUTO_INCREMENT, - `uid` int(10) unsigned NOT NULL, - `guid` char(64) NOT NULL, - `from-name` char(255) NOT NULL, - `from-photo` char(255) NOT NULL, - `from-url` char(255) NOT NULL, - `contact-id` char(255) NOT NULL, - `convid` int(11) NOT NULL, - `title` char(255) NOT NULL, - `body` mediumtext NOT NULL, - `seen` tinyint(1) NOT NULL, - `reply` tinyint(1) NOT NULL DEFAULT '0', - `replied` tinyint(1) NOT NULL, - `unknown` tinyint(1) NOT NULL DEFAULT '0', - `uri` char(255) NOT NULL, - `parent-uri` char(255) NOT NULL, - `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', - PRIMARY KEY (`id`), - KEY `reply` (`reply`), - KEY `uid` (`uid`), - KEY `guid` (`guid`), - KEY `seen` (`seen`), - KEY `uri` (`uri`), - KEY `parent-uri` (`parent-uri`), - KEY `created` (`created`), - KEY `convid` (`convid`), - KEY `unknown` (`unknown`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8; - --- -------------------------------------------------------- + `id` int(10) unsigned NOT NULL auto_increment PRIMARY KEY, + `uid` int(10) unsigned NOT NULL DEFAULT 0, + `guid` varchar(64) NOT NULL DEFAULT '', + `from-name` varchar(255) NOT NULL DEFAULT '', + `from-photo` varchar(255) NOT NULL DEFAULT '', + `from-url` varchar(255) NOT NULL DEFAULT '', + `contact-id` varchar(255) NOT NULL DEFAULT '', + `convid` int(11) unsigned NOT NULL DEFAULT 0, + `title` varchar(255) NOT NULL DEFAULT '', + `body` mediumtext NOT NULL, + `seen` tinyint(1) NOT NULL DEFAULT 0, + `reply` tinyint(1) NOT NULL DEFAULT 0, + `replied` tinyint(1) NOT NULL DEFAULT 0, + `unknown` tinyint(1) NOT NULL DEFAULT 0, + `uri` varchar(255) NOT NULL DEFAULT '', + `parent-uri` varchar(255) NOT NULL DEFAULT '', + `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + INDEX `uid` (`uid`), + INDEX `guid` (`guid`), + INDEX `convid` (`convid`), + INDEX `reply` (`reply`), + INDEX `uri` (`uri`), + INDEX `parent-uri` (`parent-uri`) +) DEFAULT CHARSET=utf8; -- --- Table structure for table `mailacct` +-- TABLE mailacct -- - CREATE TABLE IF NOT EXISTS `mailacct` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `uid` int(11) NOT NULL, - `server` char(255) NOT NULL, - `port` int(11) NOT NULL, - `ssltype` char(16) NOT NULL, - `mailbox` char(255) NOT NULL, - `user` char(255) NOT NULL, - `pass` text NOT NULL, - `action` int(11) NOT NULL, - `movetofolder` char(255) NOT NULL, - `reply_to` char(255) NOT NULL, - `pubmail` tinyint(1) NOT NULL DEFAULT '0', - `last_check` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', - PRIMARY KEY (`id`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8; - --- -------------------------------------------------------- + `id` int(11) NOT NULL auto_increment PRIMARY KEY, + `uid` int(11) NOT NULL DEFAULT 0, + `server` varchar(255) NOT NULL DEFAULT '', + `port` int(11) NOT NULL DEFAULT 0, + `ssltype` varchar(16) NOT NULL DEFAULT '', + `mailbox` varchar(255) NOT NULL DEFAULT '', + `user` varchar(255) NOT NULL DEFAULT '', + `pass` text NOT NULL, + `reply_to` varchar(255) NOT NULL DEFAULT '', + `action` int(11) NOT NULL DEFAULT 0, + `movetofolder` varchar(255) NOT NULL DEFAULT '', + `pubmail` tinyint(1) NOT NULL DEFAULT 0, + `last_check` datetime NOT NULL DEFAULT '0000-00-00 00:00:00' +) DEFAULT CHARSET=utf8; -- --- Table structure for table `manage` +-- TABLE manage -- - CREATE TABLE IF NOT EXISTS `manage` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `uid` int(11) NOT NULL, - `mid` int(11) NOT NULL, - PRIMARY KEY (`id`), - KEY `uid` (`uid`), - KEY `mid` (`mid`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8; - --- -------------------------------------------------------- + `id` int(11) NOT NULL auto_increment PRIMARY KEY, + `uid` int(11) NOT NULL DEFAULT 0, + `mid` int(11) NOT NULL DEFAULT 0, + INDEX `uid_mid` (`uid`,`mid`) +) DEFAULT CHARSET=utf8; -- --- Table structure for table `notify` +-- TABLE notify -- - CREATE TABLE IF NOT EXISTS `notify` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `hash` char(64) NOT NULL, - `name` char(255) NOT NULL, - `url` char(255) NOT NULL, - `photo` char(255) NOT NULL, - `date` datetime NOT NULL, - `msg` mediumtext NOT NULL, - `uid` int(11) NOT NULL, - `link` char(255) NOT NULL, - `parent` int(11) NOT NULL, - `seen` tinyint(1) NOT NULL DEFAULT '0', - `type` int(11) NOT NULL, - `verb` char(255) NOT NULL, - `otype` char(16) NOT NULL, - PRIMARY KEY (`id`), - KEY `type` (`type`), - KEY `seen` (`seen`), - KEY `uid` (`uid`), - KEY `date` (`date`), - KEY `hash` (`hash`), - KEY `parent` (`parent`), - KEY `link` (`link`), - KEY `otype` (`otype`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8; - --- -------------------------------------------------------- + `id` int(11) NOT NULL auto_increment PRIMARY KEY, + `hash` varchar(64) NOT NULL DEFAULT '', + `type` int(11) NOT NULL DEFAULT 0, + `name` varchar(255) NOT NULL DEFAULT '', + `url` varchar(255) NOT NULL DEFAULT '', + `photo` varchar(255) NOT NULL DEFAULT '', + `date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + `msg` mediumtext NOT NULL, + `uid` int(11) NOT NULL DEFAULT 0, + `link` varchar(255) NOT NULL DEFAULT '', + `parent` int(11) NOT NULL DEFAULT 0, + `seen` tinyint(1) NOT NULL DEFAULT 0, + `verb` varchar(255) NOT NULL DEFAULT '', + `otype` varchar(16) NOT NULL DEFAULT '', + INDEX `uid` (`uid`) +) DEFAULT CHARSET=utf8; -- --- Table structure for table `notify-threads` +-- TABLE notify-threads -- - CREATE TABLE IF NOT EXISTS `notify-threads` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `notify-id` int(11) NOT NULL, - `master-parent-item` int(10) unsigned NOT NULL DEFAULT '0', - `parent-item` int(10) unsigned NOT NULL DEFAULT '0', - `receiver-uid` int(11) NOT NULL, - PRIMARY KEY (`id`), - KEY `master-parent-item` (`master-parent-item`), - KEY `receiver-uid` (`receiver-uid`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8; - --- -------------------------------------------------------- + `id` int(11) NOT NULL auto_increment PRIMARY KEY, + `notify-id` int(11) NOT NULL DEFAULT 0, + `master-parent-item` int(10) unsigned NOT NULL DEFAULT 0, + `parent-item` int(10) unsigned NOT NULL DEFAULT 0, + `receiver-uid` int(11) NOT NULL DEFAULT 0, + INDEX `master-parent-item` (`master-parent-item`), + INDEX `receiver-uid` (`receiver-uid`) +) DEFAULT CHARSET=utf8; -- --- Table structure for table `pconfig` +-- TABLE pconfig -- - CREATE TABLE IF NOT EXISTS `pconfig` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `uid` int(11) NOT NULL DEFAULT '0', - `cat` char(255) CHARACTER SET ascii NOT NULL, - `k` char(255) CHARACTER SET ascii NOT NULL, - `v` mediumtext NOT NULL, - PRIMARY KEY (`id`), - UNIQUE KEY `access` (`uid`,`cat`,`k`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8; - --- -------------------------------------------------------- + `id` int(11) NOT NULL auto_increment PRIMARY KEY, + `uid` int(11) NOT NULL DEFAULT 0, + `cat` varchar(255) NOT NULL DEFAULT '', + `k` varchar(255) NOT NULL DEFAULT '', + `v` mediumtext NOT NULL, + INDEX `uid_cat_k` (`uid`,`cat`(30),`k`(30)) +) DEFAULT CHARSET=utf8; -- --- Table structure for table `photo` +-- TABLE photo -- - CREATE TABLE IF NOT EXISTS `photo` ( - `id` int(10) unsigned NOT NULL AUTO_INCREMENT, - `uid` int(10) unsigned NOT NULL, - `contact-id` int(10) unsigned NOT NULL DEFAULT '0', - `guid` char(64) NOT NULL, - `resource-id` char(255) NOT NULL, - `created` datetime NOT NULL, - `edited` datetime NOT NULL, - `title` char(255) NOT NULL, - `desc` text NOT NULL, - `album` char(255) NOT NULL, - `filename` char(255) NOT NULL, - `type` CHAR(128) NOT NULL DEFAULT 'image/jpeg', - `height` smallint(6) NOT NULL, - `width` smallint(6) NOT NULL, - `datasize` int(10) unsigned NOT NULL DEFAULT '0', - `data` mediumblob NOT NULL, - `scale` tinyint(3) NOT NULL, - `profile` tinyint(1) NOT NULL DEFAULT '0', - `allow_cid` mediumtext NOT NULL, - `allow_gid` mediumtext NOT NULL, - `deny_cid` mediumtext NOT NULL, - `deny_gid` mediumtext NOT NULL, - PRIMARY KEY (`id`), - KEY `uid` (`uid`), - KEY `resource-id` (`resource-id`), - KEY `album` (`album`), - KEY `scale` (`scale`), - KEY `datasize` (`datasize`), - KEY `profile` (`profile`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8; - --- -------------------------------------------------------- + `id` int(10) unsigned NOT NULL auto_increment PRIMARY KEY, + `uid` int(10) unsigned NOT NULL DEFAULT 0, + `contact-id` int(10) unsigned NOT NULL DEFAULT 0, + `guid` varchar(64) NOT NULL DEFAULT '', + `resource-id` varchar(255) NOT NULL DEFAULT '', + `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + `edited` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + `title` varchar(255) NOT NULL DEFAULT '', + `desc` text NOT NULL, + `album` varchar(255) NOT NULL DEFAULT '', + `filename` varchar(255) NOT NULL DEFAULT '', + `type` varchar(128) NOT NULL DEFAULT 'image/jpeg', + `height` smallint(6) NOT NULL DEFAULT 0, + `width` smallint(6) NOT NULL DEFAULT 0, + `datasize` int(10) unsigned NOT NULL DEFAULT 0, + `data` mediumblob NOT NULL, + `scale` tinyint(3) NOT NULL DEFAULT 0, + `profile` tinyint(1) NOT NULL DEFAULT 0, + `allow_cid` mediumtext NOT NULL, + `allow_gid` mediumtext NOT NULL, + `deny_cid` mediumtext NOT NULL, + `deny_gid` mediumtext NOT NULL, + INDEX `uid` (`uid`), + INDEX `resource-id` (`resource-id`), + INDEX `guid` (`guid`) +) DEFAULT CHARSET=utf8; -- --- Table structure for table `poll` +-- TABLE poll -- - CREATE TABLE IF NOT EXISTS `poll` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `uid` int(11) NOT NULL, - `q0` mediumtext NOT NULL, - `q1` mediumtext NOT NULL, - `q2` mediumtext NOT NULL, - `q3` mediumtext NOT NULL, - `q4` mediumtext NOT NULL, - `q5` mediumtext NOT NULL, - `q6` mediumtext NOT NULL, - `q7` mediumtext NOT NULL, - `q8` mediumtext NOT NULL, - `q9` mediumtext NOT NULL, - PRIMARY KEY (`id`), - KEY `uid` (`uid`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8; - --- -------------------------------------------------------- + `id` int(11) NOT NULL auto_increment PRIMARY KEY, + `uid` int(11) NOT NULL DEFAULT 0, + `q0` mediumtext NOT NULL, + `q1` mediumtext NOT NULL, + `q2` mediumtext NOT NULL, + `q3` mediumtext NOT NULL, + `q4` mediumtext NOT NULL, + `q5` mediumtext NOT NULL, + `q6` mediumtext NOT NULL, + `q7` mediumtext NOT NULL, + `q8` mediumtext NOT NULL, + `q9` mediumtext NOT NULL, + INDEX `uid` (`uid`) +) DEFAULT CHARSET=utf8; -- --- Table structure for table `poll_result` +-- TABLE poll_result -- - CREATE TABLE IF NOT EXISTS `poll_result` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `poll_id` int(11) NOT NULL, - `choice` int(11) NOT NULL, - PRIMARY KEY (`id`), - KEY `poll_id` (`poll_id`), - KEY `choice` (`choice`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8; - --- -------------------------------------------------------- + `id` int(11) NOT NULL auto_increment PRIMARY KEY, + `poll_id` int(11) NOT NULL DEFAULT 0, + `choice` int(11) NOT NULL DEFAULT 0, + INDEX `poll_id` (`poll_id`), + INDEX `choice` (`choice`) +) DEFAULT CHARSET=utf8; -- --- Table structure for table `profile` +-- TABLE profile -- - CREATE TABLE IF NOT EXISTS `profile` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `uid` int(11) NOT NULL, - `profile-name` char(255) NOT NULL, - `is-default` tinyint(1) NOT NULL DEFAULT '0', - `hide-friends` tinyint(1) NOT NULL DEFAULT '0', - `name` char(255) NOT NULL, - `pdesc` char(255) NOT NULL, - `dob` char(32) NOT NULL DEFAULT '0000-00-00', - `address` char(255) NOT NULL, - `locality` char(255) NOT NULL, - `region` char(255) NOT NULL, - `postal-code` char(32) NOT NULL, - `country-name` char(255) NOT NULL, - `hometown` char(255) NOT NULL, - `gender` char(32) NOT NULL, - `marital` char(255) NOT NULL, - `with` text NOT NULL, - `howlong` datetime NOT NULL default '0000-00-00 00:00:00', - `sexual` char(255) NOT NULL, - `politic` char(255) NOT NULL, - `religion` char(255) NOT NULL, - `pub_keywords` text NOT NULL, - `prv_keywords` text NOT NULL, - `likes` text NOT NULL, - `dislikes` text NOT NULL, - `about` text NOT NULL, - `summary` char(255) NOT NULL, - `music` text NOT NULL, - `book` text NOT NULL, - `tv` text NOT NULL, - `film` text NOT NULL, - `interest` text NOT NULL, - `romance` text NOT NULL, - `work` text NOT NULL, - `education` text NOT NULL, - `contact` text NOT NULL, - `homepage` char(255) NOT NULL, - `photo` char(255) NOT NULL, - `thumb` char(255) NOT NULL, - `publish` tinyint(1) NOT NULL DEFAULT '0', - `net-publish` tinyint(1) NOT NULL DEFAULT '0', - PRIMARY KEY (`id`), - FULLTEXT KEY `pub_keywords` (`pub_keywords`), - FULLTEXT KEY `prv_keywords` (`prv_keywords`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8; - --- -------------------------------------------------------- + `id` int(11) NOT NULL auto_increment PRIMARY KEY, + `uid` int(11) NOT NULL DEFAULT 0, + `profile-name` varchar(255) NOT NULL DEFAULT '', + `is-default` tinyint(1) NOT NULL DEFAULT 0, + `hide-friends` tinyint(1) NOT NULL DEFAULT 0, + `name` varchar(255) NOT NULL DEFAULT '', + `pdesc` varchar(255) NOT NULL DEFAULT '', + `dob` varchar(32) NOT NULL DEFAULT '0000-00-00', + `address` varchar(255) NOT NULL DEFAULT '', + `locality` varchar(255) NOT NULL DEFAULT '', + `region` varchar(255) NOT NULL DEFAULT '', + `postal-code` varchar(32) NOT NULL DEFAULT '', + `country-name` varchar(255) NOT NULL DEFAULT '', + `hometown` varchar(255) NOT NULL DEFAULT '', + `gender` varchar(32) NOT NULL DEFAULT '', + `marital` varchar(255) NOT NULL DEFAULT '', + `with` text NOT NULL, + `howlong` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + `sexual` varchar(255) NOT NULL DEFAULT '', + `politic` varchar(255) NOT NULL DEFAULT '', + `religion` varchar(255) NOT NULL DEFAULT '', + `pub_keywords` text NOT NULL, + `prv_keywords` text NOT NULL, + `likes` text NOT NULL, + `dislikes` text NOT NULL, + `about` text NOT NULL, + `summary` varchar(255) NOT NULL DEFAULT '', + `music` text NOT NULL, + `book` text NOT NULL, + `tv` text NOT NULL, + `film` text NOT NULL, + `interest` text NOT NULL, + `romance` text NOT NULL, + `work` text NOT NULL, + `education` text NOT NULL, + `contact` text NOT NULL, + `homepage` varchar(255) NOT NULL DEFAULT '', + `photo` varchar(255) NOT NULL DEFAULT '', + `thumb` varchar(255) NOT NULL DEFAULT '', + `publish` tinyint(1) NOT NULL DEFAULT 0, + `net-publish` tinyint(1) NOT NULL DEFAULT 0, + INDEX `hometown` (`hometown`) +) DEFAULT CHARSET=utf8; -- --- Table structure for table `profile_check` +-- TABLE profile_check -- - CREATE TABLE IF NOT EXISTS `profile_check` ( - `id` int(10) unsigned NOT NULL AUTO_INCREMENT, - `uid` int(10) unsigned NOT NULL, - `cid` int(10) unsigned NOT NULL DEFAULT '0', - `dfrn_id` char(255) NOT NULL, - `sec` char(255) NOT NULL, - `expire` int(11) NOT NULL, - PRIMARY KEY (`id`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8; - --- -------------------------------------------------------- + `id` int(10) unsigned NOT NULL auto_increment PRIMARY KEY, + `uid` int(10) unsigned NOT NULL DEFAULT 0, + `cid` int(10) unsigned NOT NULL DEFAULT 0, + `dfrn_id` varchar(255) NOT NULL DEFAULT '', + `sec` varchar(255) NOT NULL DEFAULT '', + `expire` int(11) NOT NULL DEFAULT 0 +) DEFAULT CHARSET=utf8; -- --- Table structure for table `queue` +-- TABLE push_subscriber -- - -CREATE TABLE IF NOT EXISTS `queue` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `cid` int(11) NOT NULL, - `network` char(32) NOT NULL, - `created` datetime NOT NULL, - `last` datetime NOT NULL, - `content` mediumtext NOT NULL, - `batch` tinyint(1) NOT NULL DEFAULT '0', - PRIMARY KEY (`id`), - KEY `cid` (`cid`), - KEY `network` (`network`), - KEY `created` (`created`), - KEY `last` (`last`), - KEY `batch` (`batch`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8; - --- -------------------------------------------------------- - --- --- Table structure for table `register` --- - -CREATE TABLE IF NOT EXISTS `register` ( - `id` int(10) unsigned NOT NULL AUTO_INCREMENT, - `hash` char(255) NOT NULL, - `created` datetime NOT NULL, - `uid` int(10) unsigned NOT NULL, - `password` char(255) NOT NULL, - `language` char(16) NOT NULL, - PRIMARY KEY (`id`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8; - --- -------------------------------------------------------- - --- --- Table structure for table `search` --- - -CREATE TABLE IF NOT EXISTS `search` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `uid` int(11) NOT NULL, - `term` char(255) NOT NULL, - PRIMARY KEY (`id`), - KEY `uid` (`uid`), - KEY `term` (`term`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8; - --- -------------------------------------------------------- - --- --- Table structure for table `session` --- - -CREATE TABLE IF NOT EXISTS `session` ( - `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, - `sid` char(255) NOT NULL, - `data` text NOT NULL, - `expire` int(10) unsigned NOT NULL, - PRIMARY KEY (`id`), - KEY `sid` (`sid`), - KEY `expire` (`expire`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8; - --- -------------------------------------------------------- - --- --- Table structure for table `sign` --- - -CREATE TABLE IF NOT EXISTS `sign` ( - `id` int(10) unsigned NOT NULL AUTO_INCREMENT, - `iid` int(10) unsigned NOT NULL DEFAULT '0', - `retract_iid` int(10) unsigned NOT NULL DEFAULT '0', - `signed_text` mediumtext NOT NULL, - `signature` text NOT NULL, - `signer` char(255) NOT NULL, - PRIMARY KEY (`id`), - KEY `iid` (`iid`), - KEY `retract_iid` (`retract_iid`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8; - --- -------------------------------------------------------- - --- --- Table structure for table `spam` --- - -CREATE TABLE IF NOT EXISTS `spam` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `uid` int(11) NOT NULL, - `spam` int(11) NOT NULL DEFAULT '0', - `ham` int(11) NOT NULL DEFAULT '0', - `term` char(255) NOT NULL, - `date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', - PRIMARY KEY (`id`), - KEY `uid` (`uid`), - KEY `spam` (`spam`), - KEY `ham` (`ham`), - KEY `term` (`term`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8; - --- -------------------------------------------------------- - --- --- Table structure for table `term` --- - -CREATE TABLE IF NOT EXISTS `term` ( - `tid` int(10) unsigned NOT NULL AUTO_INCREMENT, - `aid` int(10) unsigned NOT NULL DEFAULT '0', - `uid` int(10) unsigned NOT NULL DEFAULT '0', - `oid` int(10) unsigned NOT NULL, - `otype` tinyint(3) unsigned NOT NULL, - `type` tinyint(3) unsigned NOT NULL, - `term` char(255) NOT NULL, - `url` char(255) NOT NULL, - PRIMARY KEY (`tid`), - KEY `oid` (`oid`), - KEY `otype` (`otype`), - KEY `type` (`type`), - KEY `term` (`term`), - KEY `uid` (`uid`), - KEY `aid` (`aid`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8; - --- -------------------------------------------------------- - --- --- Table structure for table `tokens` --- - -CREATE TABLE IF NOT EXISTS `tokens` ( - `id` varchar(40) NOT NULL, - `secret` text NOT NULL, - `client_id` varchar(20) NOT NULL, - `expires` int(11) NOT NULL, - `scope` varchar(200) NOT NULL, - `uid` int(11) NOT NULL, - PRIMARY KEY (`id`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8; - --- -------------------------------------------------------- - --- --- Table structure for table `user` --- - -CREATE TABLE IF NOT EXISTS `user` ( - `uid` int(11) NOT NULL AUTO_INCREMENT, - `guid` char(16) NOT NULL, - `username` char(255) NOT NULL, - `password` char(255) NOT NULL, - `nickname` char(255) NOT NULL, - `email` char(255) NOT NULL, - `openid` char(255) NOT NULL, - `timezone` char(128) NOT NULL, - `language` char(16) NOT NULL DEFAULT 'en', - `register_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', - `login_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', - `default-location` char(255) NOT NULL, - `allow_location` tinyint(1) NOT NULL DEFAULT '0', - `theme` char(255) NOT NULL, - `pubkey` text NOT NULL, - `prvkey` text NOT NULL, - `spubkey` text NOT NULL, - `sprvkey` text NOT NULL, - `verified` tinyint(1) unsigned NOT NULL DEFAULT '0', - `blocked` tinyint(1) unsigned NOT NULL DEFAULT '0', - `blockwall` tinyint(1) NOT NULL DEFAULT '0', - `hidewall` tinyint(1) NOT NULL DEFAULT '0', - `blocktags` tinyint(1) NOT NULL DEFAULT '0', - `unkmail` tinyint(1) NOT NULL DEFAULT '0', - `cntunkmail` int(11) NOT NULL DEFAULT '10', - `notify-flags` int(11) unsigned NOT NULL DEFAULT '65535', - `page-flags` int(11) NOT NULL DEFAULT '0', - `prvnets` tinyint(1) NOT NULL DEFAULT '0', - `pwdreset` char(255) NOT NULL, - `maxreq` int(11) NOT NULL DEFAULT '10', - `expire` int(10) unsigned NOT NULL DEFAULT '0', - `account_removed` tinyint(1) NOT NULL DEFAULT '0', - `account_expired` tinyint(1) NOT NULL DEFAULT '0', - `account_expires_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', - `expire_notification_sent` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', - `service_class` char(32) NOT NULL, - `def_gid` int(11) NOT NULL DEFAULT '0', - `allow_cid` mediumtext NOT NULL, - `allow_gid` mediumtext NOT NULL, - `deny_cid` mediumtext NOT NULL, - `deny_gid` mediumtext NOT NULL, - `openidserver` text NOT NULL, - PRIMARY KEY (`uid`), - KEY `nickname` (`nickname`), - KEY `login_date` (`login_date`), - KEY `account_expired` (`account_expired`), - KEY `hidewall` (`hidewall`), - KEY `blockwall` (`blockwall`), - KEY `blocked` (`blocked`), - KEY `verified` (`verified`), - KEY `unkmail` (`unkmail`), - KEY `cntunkmail` (`cntunkmail`), - KEY `account_removed` (`account_removed`), - KEY `service_class` (`service_class`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8; - --- -------------------------------------------------------- - --- --- Table structure for table `userd` --- - -CREATE TABLE IF NOT EXISTS `userd` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `username` char(255) NOT NULL, - PRIMARY KEY (`id`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8; - --- -------------------------------------------------------- - --- --- Table structure for table `tag` --- - -CREATE TABLE IF NOT EXISTS `tag` ( - `iid` int(11) NOT NULL, - `tag` char(255) NOT NULL, - `link` char(255) NOT NULL, - PRIMARY KEY (`iid`, `tag`), - KEY `tag` (`tag`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8; - --- -------------------------------------------------------- - --- --- Table structure for table `push_subscriber` --- - CREATE TABLE IF NOT EXISTS `push_subscriber` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `uid` int(11) NOT NULL, - `callback_url` char(255) NOT NULL, - `topic` char(255) NOT NULL, - `nickname` char(255) NOT NULL, - `push` int(11) NOT NULL, - `last_update` datetime NOT NULL, - `secret` char(255) NOT NULL, - PRIMARY KEY (`id`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8; - --- -------------------------------------------------------- + `id` int(11) NOT NULL auto_increment PRIMARY KEY, + `uid` int(11) NOT NULL DEFAULT 0, + `callback_url` varchar(255) NOT NULL DEFAULT '', + `topic` varchar(255) NOT NULL DEFAULT '', + `nickname` varchar(255) NOT NULL DEFAULT '', + `push` int(11) NOT NULL DEFAULT 0, + `last_update` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + `secret` varchar(255) NOT NULL DEFAULT '' +) DEFAULT CHARSET=utf8; -- --- Table structure for table `unique_contacts` +-- TABLE queue -- - -CREATE TABLE IF NOT EXISTS `unique_contacts` ( - `id` INT NOT NULL AUTO_INCREMENT, - `url` CHAR(255) NOT NULL, - `nick` CHAR(255) NOT NULL, - `name` CHAR(255) NOT NULL, - `avatar` CHAR(255) NOT NULL, - PRIMARY KEY (`id`), - KEY `url` (`url`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8; - --- -------------------------------------------------------- +CREATE TABLE IF NOT EXISTS `queue` ( + `id` int(11) NOT NULL auto_increment PRIMARY KEY, + `cid` int(11) NOT NULL DEFAULT 0, + `network` varchar(32) NOT NULL DEFAULT '', + `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + `last` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + `content` mediumtext NOT NULL, + `batch` tinyint(1) NOT NULL DEFAULT 0, + INDEX `cid` (`cid`), + INDEX `created` (`created`), + INDEX `last` (`last`), + INDEX `network` (`network`), + INDEX `batch` (`batch`) +) DEFAULT CHARSET=utf8; -- --- Table structure for table `thread` +-- TABLE register -- +CREATE TABLE IF NOT EXISTS `register` ( + `id` int(11) unsigned NOT NULL auto_increment PRIMARY KEY, + `hash` varchar(255) NOT NULL DEFAULT '', + `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + `uid` int(11) unsigned NOT NULL DEFAULT 0, + `password` varchar(255) NOT NULL DEFAULT '', + `language` varchar(16) NOT NULL DEFAULT '' +) DEFAULT CHARSET=utf8; +-- +-- TABLE search +-- +CREATE TABLE IF NOT EXISTS `search` ( + `id` int(11) NOT NULL auto_increment PRIMARY KEY, + `uid` int(11) NOT NULL DEFAULT 0, + `term` varchar(255) NOT NULL DEFAULT '', + INDEX `uid` (`uid`), + INDEX `term` (`term`) +) DEFAULT CHARSET=utf8; + +-- +-- TABLE session +-- +CREATE TABLE IF NOT EXISTS `session` ( + `id` bigint(20) unsigned NOT NULL auto_increment PRIMARY KEY, + `sid` varchar(255) NOT NULL DEFAULT '', + `data` text NOT NULL, + `expire` int(10) unsigned NOT NULL DEFAULT 0, + INDEX `sid` (`sid`), + INDEX `expire` (`expire`) +) DEFAULT CHARSET=utf8; + +-- +-- TABLE sign +-- +CREATE TABLE IF NOT EXISTS `sign` ( + `id` int(10) unsigned NOT NULL auto_increment PRIMARY KEY, + `iid` int(10) unsigned NOT NULL DEFAULT 0, + `retract_iid` int(10) unsigned NOT NULL DEFAULT 0, + `signed_text` mediumtext NOT NULL, + `signature` text NOT NULL, + `signer` varchar(255) NOT NULL DEFAULT '', + INDEX `iid` (`iid`), + INDEX `retract_iid` (`retract_iid`) +) DEFAULT CHARSET=utf8; + +-- +-- TABLE spam +-- +CREATE TABLE IF NOT EXISTS `spam` ( + `id` int(11) NOT NULL auto_increment PRIMARY KEY, + `uid` int(11) NOT NULL DEFAULT 0, + `spam` int(11) NOT NULL DEFAULT 0, + `ham` int(11) NOT NULL DEFAULT 0, + `term` varchar(255) NOT NULL DEFAULT '', + `date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + INDEX `uid` (`uid`), + INDEX `spam` (`spam`), + INDEX `ham` (`ham`), + INDEX `term` (`term`) +) DEFAULT CHARSET=utf8; + +-- +-- TABLE term +-- +CREATE TABLE IF NOT EXISTS `term` ( + `tid` int(10) unsigned NOT NULL auto_increment PRIMARY KEY, + `oid` int(10) unsigned NOT NULL DEFAULT 0, + `otype` tinyint(3) unsigned NOT NULL DEFAULT 0, + `type` tinyint(3) unsigned NOT NULL DEFAULT 0, + `term` varchar(255) NOT NULL DEFAULT '', + `url` varchar(255) NOT NULL DEFAULT '', + `guid` varchar(255) NOT NULL DEFAULT '', + `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + `received` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + `global` tinyint(1) NOT NULL DEFAULT 0, + `aid` int(10) unsigned NOT NULL DEFAULT 0, + `uid` int(10) unsigned NOT NULL DEFAULT 0, + INDEX `oid_otype_type_term` (`oid`,`otype`,`type`,`term`), + INDEX `uid_term_tid` (`uid`,`term`,`tid`), + INDEX `type_term` (`type`,`term`), + INDEX `uid_otype_type_term_global_created` (`uid`,`otype`,`type`,`term`,`global`,`created`), + INDEX `otype_type_term_tid` (`otype`,`type`,`term`,`tid`), + INDEX `guid` (`guid`) +) DEFAULT CHARSET=utf8; + +-- +-- TABLE thread +-- CREATE TABLE IF NOT EXISTS `thread` ( - `iid` int(10) unsigned NOT NULL DEFAULT '0', - `uid` int(10) unsigned NOT NULL DEFAULT '0', - `contact-id` int(11) unsigned NOT NULL DEFAULT '0', - `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', - `edited` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', - `commented` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', - `received` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', - `changed` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', - `wall` tinyint(1) NOT NULL DEFAULT '0', - `private` tinyint(1) NOT NULL DEFAULT '0', - `pubmail` tinyint(1) NOT NULL DEFAULT '0', - `moderated` tinyint(1) NOT NULL DEFAULT '0', - `visible` tinyint(1) NOT NULL DEFAULT '0', - `spam` tinyint(1) NOT NULL DEFAULT '0', - `starred` tinyint(1) NOT NULL DEFAULT '0', - `bookmark` tinyint(1) NOT NULL DEFAULT '0', - `unseen` tinyint(1) NOT NULL DEFAULT '1', - `deleted` tinyint(1) NOT NULL DEFAULT '0', - `origin` tinyint(1) NOT NULL DEFAULT '0', - `forum_mode` tinyint(1) NOT NULL DEFAULT '0', - `mention` tinyint(1) NOT NULL DEFAULT '0', - `network` char(32) NOT NULL, - PRIMARY KEY (`iid`), - KEY `created` (`created`), - KEY `commented` (`commented`), - KEY `uid_network_commented` (`uid`,`network`,`commented`), - KEY `uid_network_created` (`uid`,`network`,`created`), - KEY `uid_contactid_commented` (`uid`,`contact-id`,`commented`), - KEY `uid_contactid_created` (`uid`,`contact-id`,`created`), - KEY `wall_private_received` (`wall`,`private`,`received`), - KEY `uid_created` (`uid`,`created`), - KEY `uid_commented` (`uid`,`commented`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8; + `iid` int(10) unsigned NOT NULL DEFAULT 0 PRIMARY KEY, + `uid` int(10) unsigned NOT NULL DEFAULT 0, + `contact-id` int(11) unsigned NOT NULL DEFAULT 0, + `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + `edited` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + `commented` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + `received` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + `changed` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + `wall` tinyint(1) NOT NULL DEFAULT 0, + `private` tinyint(1) NOT NULL DEFAULT 0, + `pubmail` tinyint(1) NOT NULL DEFAULT 0, + `moderated` tinyint(1) NOT NULL DEFAULT 0, + `visible` tinyint(1) NOT NULL DEFAULT 0, + `spam` tinyint(1) NOT NULL DEFAULT 0, + `starred` tinyint(1) NOT NULL DEFAULT 0, + `ignored` tinyint(1) NOT NULL DEFAULT 0, + `bookmark` tinyint(1) NOT NULL DEFAULT 0, + `unseen` tinyint(1) NOT NULL DEFAULT 1, + `deleted` tinyint(1) NOT NULL DEFAULT 0, + `origin` tinyint(1) NOT NULL DEFAULT 0, + `forum_mode` tinyint(1) NOT NULL DEFAULT 0, + `mention` tinyint(1) NOT NULL DEFAULT 0, + `network` varchar(32) NOT NULL DEFAULT '', + INDEX `created` (`created`), + INDEX `commented` (`commented`), + INDEX `uid_network_commented` (`uid`,`network`,`commented`), + INDEX `uid_network_created` (`uid`,`network`,`created`), + INDEX `uid_contactid_commented` (`uid`,`contact-id`,`commented`), + INDEX `uid_contactid_created` (`uid`,`contact-id`,`created`), + INDEX `wall_private_received` (`wall`,`private`,`received`), + INDEX `uid_created` (`uid`,`created`), + INDEX `uid_commented` (`uid`,`commented`) +) DEFAULT CHARSET=utf8; + +-- +-- TABLE tokens +-- +CREATE TABLE IF NOT EXISTS `tokens` ( + `id` varchar(40) NOT NULL PRIMARY KEY, + `secret` text NOT NULL, + `client_id` varchar(20) NOT NULL DEFAULT '', + `expires` int(11) NOT NULL DEFAULT 0, + `scope` varchar(200) NOT NULL DEFAULT '', + `uid` int(11) NOT NULL DEFAULT 0 +) DEFAULT CHARSET=utf8; + +-- +-- TABLE unique_contacts +-- +CREATE TABLE IF NOT EXISTS `unique_contacts` ( + `id` int(11) NOT NULL auto_increment PRIMARY KEY, + `url` varchar(255) NOT NULL DEFAULT '', + `nick` varchar(255) NOT NULL DEFAULT '', + `name` varchar(255) NOT NULL DEFAULT '', + `avatar` varchar(255) NOT NULL DEFAULT '', + `location` varchar(255) NOT NULL DEFAULT '', + `about` text NOT NULL, + INDEX `url` (`url`) +) DEFAULT CHARSET=utf8; + +-- +-- TABLE user +-- +CREATE TABLE IF NOT EXISTS `user` ( + `uid` int(11) NOT NULL auto_increment PRIMARY KEY, + `guid` varchar(64) NOT NULL DEFAULT '', + `username` varchar(255) NOT NULL DEFAULT '', + `password` varchar(255) NOT NULL DEFAULT '', + `nickname` varchar(255) NOT NULL DEFAULT '', + `email` varchar(255) NOT NULL DEFAULT '', + `openid` varchar(255) NOT NULL DEFAULT '', + `timezone` varchar(128) NOT NULL DEFAULT '', + `language` varchar(32) NOT NULL DEFAULT 'en', + `register_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + `login_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + `default-location` varchar(255) NOT NULL DEFAULT '', + `allow_location` tinyint(1) NOT NULL DEFAULT 0, + `theme` varchar(255) NOT NULL DEFAULT '', + `pubkey` text NOT NULL, + `prvkey` text NOT NULL, + `spubkey` text NOT NULL, + `sprvkey` text NOT NULL, + `verified` tinyint(1) unsigned NOT NULL DEFAULT 0, + `blocked` tinyint(1) unsigned NOT NULL DEFAULT 0, + `blockwall` tinyint(1) unsigned NOT NULL DEFAULT 0, + `hidewall` tinyint(1) unsigned NOT NULL DEFAULT 0, + `blocktags` tinyint(1) unsigned NOT NULL DEFAULT 0, + `unkmail` tinyint(1) NOT NULL DEFAULT 0, + `cntunkmail` int(11) NOT NULL DEFAULT 10, + `notify-flags` int(11) unsigned NOT NULL DEFAULT 65535, + `page-flags` int(11) unsigned NOT NULL DEFAULT 0, + `prvnets` tinyint(1) NOT NULL DEFAULT 0, + `pwdreset` varchar(255) NOT NULL DEFAULT '', + `maxreq` int(11) NOT NULL DEFAULT 10, + `expire` int(11) unsigned NOT NULL DEFAULT 0, + `account_removed` tinyint(1) NOT NULL DEFAULT 0, + `account_expired` tinyint(1) NOT NULL DEFAULT 0, + `account_expires_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + `expire_notification_sent` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + `service_class` varchar(32) NOT NULL DEFAULT '', + `def_gid` int(11) NOT NULL DEFAULT 0, + `allow_cid` mediumtext NOT NULL, + `allow_gid` mediumtext NOT NULL, + `deny_cid` mediumtext NOT NULL, + `deny_gid` mediumtext NOT NULL, + `openidserver` text NOT NULL, + INDEX `nickname` (`nickname`) +) DEFAULT CHARSET=utf8; + +-- +-- TABLE userd +-- +CREATE TABLE IF NOT EXISTS `userd` ( + `id` int(11) NOT NULL auto_increment PRIMARY KEY, + `username` varchar(255) NOT NULL, + INDEX `username` (`username`) +) DEFAULT CHARSET=utf8; + diff --git a/doc/Developers-Intro.md b/doc/Developers-Intro.md index 727d3be92e..23aff4f01b 100644 --- a/doc/Developers-Intro.md +++ b/doc/Developers-Intro.md @@ -18,25 +18,24 @@ Remember the questions you had when you first tried Friendica? A good place to s **Translations** -The documentation contains help on how to translate Friendica in the /help/translations page. - -* Check if the user interface has already been translated to your language. -* If not, we might want to start with translating the /help pages. +The documentation contains help on how to translate Friendica in the [at Transifex](/help/translations) where the UI is translated. +If you don't want to translate the UI, or it is already done to your satisfaction, you might want to work on the translation of the /help files? **Design** Are you good at designing things? If you have seen Friendica you probably have ideas to improve it, haven't you? +* If you would like to work with us on enhancing the user interface, please join the [UX Watchdogs forum](https://fc.oscp.info/profile/ux-watchdogs) * Make plans for a better Friendica interface design and share them with us. * Tell us if you are able to realize your ideas or what kind of help you need. We can't promise we have the right skills in the group but we'll try. * Choose a thing to start with, e.g. work on the icon set of your favourite theme **Programming** -* **Issues:** Have a look at our issue tracker on gihub! +* **Issues:** Have a look at our [issue tracker](https://github.com/friendica/friendica) on gihub! * Try to reproduce a bug that needs more inquries and write down what you find out. * If a bug looks fixed, ask the bug reporters for feedback to find out if the bug can be closed. - * Fix a bug if you can. + * Fix a bug if you can. Please make the pull request against the *develop* branch of the repository. * **Web interface:** The thing many people want most is a better interface, preferably a responsive Friendica theme. This is a piece of work! If you want to get involved here: * Look at the first steps that were made (e.g. the clean theme). Ask us to find out whom to talk to about their experiences. diff --git a/doc/Vagrant.md b/doc/Vagrant.md index fd6b818e78..136583c4d9 100644 --- a/doc/Vagrant.md +++ b/doc/Vagrant.md @@ -3,6 +3,8 @@ Vagrant for Friendica Developers * [Home](help) +**Getting started** + [Vagrant](https://www.vagrantup.com/) is a virtualization solution for developers. No need to setup up a webserver, database etc. before actually starting. Vagrant creates a virtual machine (an Ubuntu 12.04) for you that you can just run inside VirtualBox and start to work directly on Friendica. What you need to do: 1. Install VirtualBox and vagrant. @@ -20,4 +22,18 @@ If you want to stop vagrant after finishing your work, run the following command in the development directory. +**Import test data** + +If you want some test data in your vagrant Friendica instance import the database dump friendica_test_data.sql like so (inside the VM): + + $> mysql -u root -p friendica < /vagrant/friendica_test_data.sql + +You will then have the following accounts to login: + + * admin, password admin + * friendica1, password friendica + * friendica2, password friendica2 and so on until friendica5 + * friendica1 is connected to all others. friendica1 has two groups: group1 with friendica2 and friendica4, group2 with friendica3 and friendica5. + * friendica2 and friendica3 are conntected. friendica4 and friendica5 are connected. + For further documentation of vagrant, please see [the vagrant*docs*](https://docs.vagrantup.com/v2/). diff --git a/friendica_test_data.sql b/friendica_test_data.sql new file mode 100644 index 0000000000..c39a057651 --- /dev/null +++ b/friendica_test_data.sql @@ -0,0 +1,1787 @@ +-- MySQL dump 10.13 Distrib 5.5.40, for debian-linux-gnu (x86_64) +-- +-- Host: localhost Database: friendica +-- ------------------------------------------------------ +-- Server version 5.5.40-0ubuntu0.12.04.1 + +/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; +/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; +/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; +/*!40101 SET NAMES utf8 */; +/*!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 */; + +-- +-- Current Database: `friendica` +-- + +CREATE DATABASE /*!32312 IF NOT EXISTS*/ `friendica` /*!40100 DEFAULT CHARACTER SET latin1 */; + +USE `friendica`; + +-- +-- Table structure for table `addon` +-- + +DROP TABLE IF EXISTS `addon`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `addon` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `name` varchar(255) NOT NULL DEFAULT '', + `version` varchar(255) NOT NULL DEFAULT '', + `installed` tinyint(1) NOT NULL DEFAULT '0', + `hidden` tinyint(1) NOT NULL DEFAULT '0', + `timestamp` bigint(20) NOT NULL DEFAULT '0', + `plugin_admin` tinyint(1) NOT NULL DEFAULT '0', + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `addon` +-- + +LOCK TABLES `addon` WRITE; +/*!40000 ALTER TABLE `addon` DISABLE KEYS */; +/*!40000 ALTER TABLE `addon` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `attach` +-- + +DROP TABLE IF EXISTS `attach`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `attach` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `uid` int(11) NOT NULL DEFAULT '0', + `hash` varchar(64) NOT NULL DEFAULT '', + `filename` varchar(255) NOT NULL DEFAULT '', + `filetype` varchar(64) NOT NULL DEFAULT '', + `filesize` int(11) NOT NULL DEFAULT '0', + `data` longblob NOT NULL, + `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + `edited` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + `allow_cid` mediumtext NOT NULL, + `allow_gid` mediumtext NOT NULL, + `deny_cid` mediumtext NOT NULL, + `deny_gid` mediumtext NOT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `attach` +-- + +LOCK TABLES `attach` WRITE; +/*!40000 ALTER TABLE `attach` DISABLE KEYS */; +/*!40000 ALTER TABLE `attach` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `auth_codes` +-- + +DROP TABLE IF EXISTS `auth_codes`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `auth_codes` ( + `id` varchar(40) NOT NULL, + `client_id` varchar(20) NOT NULL DEFAULT '', + `redirect_uri` varchar(200) NOT NULL DEFAULT '', + `expires` int(11) NOT NULL DEFAULT '0', + `scope` varchar(250) NOT NULL DEFAULT '', + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `auth_codes` +-- + +LOCK TABLES `auth_codes` WRITE; +/*!40000 ALTER TABLE `auth_codes` DISABLE KEYS */; +/*!40000 ALTER TABLE `auth_codes` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `cache` +-- + +DROP TABLE IF EXISTS `cache`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `cache` ( + `k` varchar(255) NOT NULL, + `v` text NOT NULL, + `updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + PRIMARY KEY (`k`), + KEY `updated` (`updated`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `cache` +-- + +LOCK TABLES `cache` WRITE; +/*!40000 ALTER TABLE `cache` DISABLE KEYS */; +INSERT INTO `cache` VALUES ('probe_url:0:friendica1@friendica.dev','a:15:{s:4:\"name\";s:10:\"friendica1\";s:4:\"nick\";s:10:\"friendica1\";s:3:\"url\";s:39:\"http://friendica.dev/profile/friendica1\";s:4:\"addr\";N;s:5:\"batch\";N;s:6:\"notify\";s:43:\"http://friendica.dev/dfrn_notify/friendica1\";s:4:\"poll\";s:41:\"http://friendica.dev/dfrn_poll/friendica1\";s:7:\"request\";s:44:\"http://friendica.dev/dfrn_request/friendica1\";s:7:\"confirm\";s:44:\"http://friendica.dev/dfrn_confirm/friendica1\";s:4:\"poco\";s:36:\"http://friendica.dev/poco/friendica1\";s:5:\"photo\";s:68:\"http://192.168.22.10/photo/profile/2.jpg?rev=2015-02-02+12%3A02%3A11\";s:8:\"priority\";N;s:7:\"network\";s:4:\"dfrn\";s:5:\"alias\";N;s:6:\"pubkey\";N;}','2015-02-02 18:30:00'),('probe_url:0:friendica4@friendica.dev','a:15:{s:4:\"name\";s:10:\"friendica4\";s:4:\"nick\";s:10:\"friendica4\";s:3:\"url\";s:39:\"http://friendica.dev/profile/friendica4\";s:4:\"addr\";N;s:5:\"batch\";N;s:6:\"notify\";s:43:\"http://friendica.dev/dfrn_notify/friendica4\";s:4:\"poll\";s:41:\"http://friendica.dev/dfrn_poll/friendica4\";s:7:\"request\";s:44:\"http://friendica.dev/dfrn_request/friendica4\";s:7:\"confirm\";s:44:\"http://friendica.dev/dfrn_confirm/friendica4\";s:4:\"poco\";s:36:\"http://friendica.dev/poco/friendica4\";s:5:\"photo\";s:68:\"http://192.168.22.10/photo/profile/6.jpg?rev=2015-02-02+12%3A04%3A29\";s:8:\"priority\";N;s:7:\"network\";s:4:\"dfrn\";s:5:\"alias\";N;s:6:\"pubkey\";N;}','2015-02-02 18:32:24'),('probe_url:0:http://192.168.22.10/profile/friendica1','a:15:{s:4:\"name\";s:10:\"friendica1\";s:4:\"nick\";s:10:\"friendica1\";s:3:\"url\";s:39:\"http://192.168.22.10/profile/friendica1\";s:4:\"addr\";N;s:5:\"batch\";N;s:6:\"notify\";s:43:\"http://192.168.22.10/dfrn_notify/friendica1\";s:4:\"poll\";s:41:\"http://192.168.22.10/dfrn_poll/friendica1\";s:7:\"request\";s:44:\"http://192.168.22.10/dfrn_request/friendica1\";s:7:\"confirm\";s:44:\"http://192.168.22.10/dfrn_confirm/friendica1\";s:4:\"poco\";s:36:\"http://192.168.22.10/poco/friendica1\";s:5:\"photo\";s:68:\"http://192.168.22.10/photo/profile/2.jpg?rev=2015-02-02+12%3A02%3A11\";s:8:\"priority\";N;s:7:\"network\";s:4:\"dfrn\";s:5:\"alias\";N;s:6:\"pubkey\";N;}','2015-02-02 18:49:11'),('probe_url:0:http://192.168.22.10/profile/friendica2','a:15:{s:4:\"name\";s:10:\"friendica2\";s:4:\"nick\";s:10:\"friendica2\";s:3:\"url\";s:39:\"http://192.168.22.10/profile/friendica2\";s:4:\"addr\";N;s:5:\"batch\";N;s:6:\"notify\";s:43:\"http://192.168.22.10/dfrn_notify/friendica2\";s:4:\"poll\";s:41:\"http://192.168.22.10/dfrn_poll/friendica2\";s:7:\"request\";s:44:\"http://192.168.22.10/dfrn_request/friendica2\";s:7:\"confirm\";s:44:\"http://192.168.22.10/dfrn_confirm/friendica2\";s:4:\"poco\";s:36:\"http://192.168.22.10/poco/friendica2\";s:5:\"photo\";s:68:\"http://192.168.22.10/photo/profile/3.jpg?rev=2015-02-02+12%3A02%3A40\";s:8:\"priority\";N;s:7:\"network\";s:4:\"dfrn\";s:5:\"alias\";N;s:6:\"pubkey\";N;}','2015-02-02 18:40:43'),('probe_url:0:http://192.168.22.10/profile/friendica4','a:15:{s:4:\"name\";s:10:\"friendica4\";s:4:\"nick\";s:10:\"friendica4\";s:3:\"url\";s:39:\"http://192.168.22.10/profile/friendica4\";s:4:\"addr\";N;s:5:\"batch\";N;s:6:\"notify\";s:43:\"http://192.168.22.10/dfrn_notify/friendica4\";s:4:\"poll\";s:41:\"http://192.168.22.10/dfrn_poll/friendica4\";s:7:\"request\";s:44:\"http://192.168.22.10/dfrn_request/friendica4\";s:7:\"confirm\";s:44:\"http://192.168.22.10/dfrn_confirm/friendica4\";s:4:\"poco\";s:36:\"http://192.168.22.10/poco/friendica4\";s:5:\"photo\";s:68:\"http://192.168.22.10/photo/profile/6.jpg?rev=2015-02-02+12%3A04%3A29\";s:8:\"priority\";N;s:7:\"network\";s:4:\"dfrn\";s:5:\"alias\";N;s:6:\"pubkey\";N;}','2015-02-02 18:45:05'),('probe_url:0:http://192.168.22.10/profile/friendica5','a:15:{s:4:\"name\";s:10:\"friendica5\";s:4:\"nick\";s:10:\"friendica5\";s:3:\"url\";s:39:\"http://192.168.22.10/profile/friendica5\";s:4:\"addr\";N;s:5:\"batch\";N;s:6:\"notify\";s:43:\"http://192.168.22.10/dfrn_notify/friendica5\";s:4:\"poll\";s:41:\"http://192.168.22.10/dfrn_poll/friendica5\";s:7:\"request\";s:44:\"http://192.168.22.10/dfrn_request/friendica5\";s:7:\"confirm\";s:44:\"http://192.168.22.10/dfrn_confirm/friendica5\";s:4:\"poco\";s:36:\"http://192.168.22.10/poco/friendica5\";s:5:\"photo\";s:68:\"http://192.168.22.10/photo/profile/5.jpg?rev=2015-02-02+12%3A04%3A06\";s:8:\"priority\";N;s:7:\"network\";s:4:\"dfrn\";s:5:\"alias\";N;s:6:\"pubkey\";N;}','2015-02-02 18:44:00'),('probe_url:1:anarchism@friendika.openmindspace.org','a:15:{s:4:\"name\";s:0:\"\";s:4:\"nick\";s:0:\"\";s:3:\"url\";s:37:\"anarchism@friendika.openmindspace.org\";s:4:\"addr\";N;s:5:\"batch\";N;s:6:\"notify\";N;s:4:\"poll\";N;s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";N;s:5:\"photo\";s:42:\"http://192.168.22.10/images/person-175.jpg\";s:8:\"priority\";i:0;s:7:\"network\";N;s:5:\"alias\";N;s:6:\"pubkey\";N;}','2015-02-02 11:30:17'),('probe_url:1:ccase@friendika.openmindspace.org','a:15:{s:4:\"name\";s:0:\"\";s:4:\"nick\";s:0:\"\";s:3:\"url\";s:33:\"ccase@friendika.openmindspace.org\";s:4:\"addr\";N;s:5:\"batch\";N;s:6:\"notify\";N;s:4:\"poll\";N;s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";N;s:5:\"photo\";s:42:\"http://192.168.22.10/images/person-175.jpg\";s:8:\"priority\";i:0;s:7:\"network\";N;s:5:\"alias\";N;s:6:\"pubkey\";N;}','2015-02-02 11:30:25'),('probe_url:1:friendicasuggestionbox@friendika.openmindspace.org','a:15:{s:4:\"name\";s:0:\"\";s:4:\"nick\";s:0:\"\";s:3:\"url\";s:50:\"friendicasuggestionbox@friendika.openmindspace.org\";s:4:\"addr\";N;s:5:\"batch\";N;s:6:\"notify\";N;s:4:\"poll\";N;s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";N;s:5:\"photo\";s:42:\"http://192.168.22.10/images/person-175.jpg\";s:8:\"priority\";i:0;s:7:\"network\";N;s:5:\"alias\";N;s:6:\"pubkey\";N;}','2015-02-02 11:30:21'),('probe_url:1:http://192.168.22.10/profile/friendica1','a:15:{s:4:\"name\";s:10:\"friendica1\";s:4:\"nick\";s:10:\"friendica1\";s:3:\"url\";s:39:\"http://192.168.22.10/profile/friendica1\";s:4:\"addr\";N;s:5:\"batch\";N;s:6:\"notify\";s:38:\"http://192.168.22.10/salmon/friendica1\";s:4:\"poll\";s:41:\"http://192.168.22.10/dfrn_poll/friendica1\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:36:\"http://192.168.22.10/poco/friendica1\";s:5:\"photo\";s:71:\"http://192.168.22.10/photo/custom/300/2.jpg?rev=2015-02-02+12%3A02%3A11\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"stat\";s:5:\"alias\";N;s:6:\"pubkey\";N;}','2015-02-02 18:49:12'),('probe_url:1:http://192.168.22.10/profile/friendica2','a:15:{s:4:\"name\";s:10:\"friendica2\";s:4:\"nick\";s:10:\"friendica2\";s:3:\"url\";s:39:\"http://192.168.22.10/profile/friendica2\";s:4:\"addr\";N;s:5:\"batch\";N;s:6:\"notify\";s:38:\"http://192.168.22.10/salmon/friendica2\";s:4:\"poll\";s:41:\"http://192.168.22.10/dfrn_poll/friendica2\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:36:\"http://192.168.22.10/poco/friendica2\";s:5:\"photo\";s:71:\"http://192.168.22.10/photo/custom/300/3.jpg?rev=2015-02-02+12%3A02%3A40\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"stat\";s:5:\"alias\";N;s:6:\"pubkey\";N;}','2015-02-02 18:40:44'),('probe_url:1:http://192.168.22.10/profile/friendica4','a:15:{s:4:\"name\";s:10:\"friendica4\";s:4:\"nick\";s:10:\"friendica4\";s:3:\"url\";s:39:\"http://192.168.22.10/profile/friendica4\";s:4:\"addr\";N;s:5:\"batch\";N;s:6:\"notify\";s:38:\"http://192.168.22.10/salmon/friendica4\";s:4:\"poll\";s:41:\"http://192.168.22.10/dfrn_poll/friendica4\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:36:\"http://192.168.22.10/poco/friendica4\";s:5:\"photo\";s:71:\"http://192.168.22.10/photo/custom/300/6.jpg?rev=2015-02-02+12%3A04%3A29\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"stat\";s:5:\"alias\";N;s:6:\"pubkey\";N;}','2015-02-02 18:45:06'),('probe_url:1:http://192.168.22.10/profile/friendica5','a:15:{s:4:\"name\";s:10:\"friendica5\";s:4:\"nick\";s:10:\"friendica5\";s:3:\"url\";s:39:\"http://192.168.22.10/profile/friendica5\";s:4:\"addr\";N;s:5:\"batch\";N;s:6:\"notify\";s:38:\"http://192.168.22.10/salmon/friendica5\";s:4:\"poll\";s:41:\"http://192.168.22.10/dfrn_poll/friendica5\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:36:\"http://192.168.22.10/poco/friendica5\";s:5:\"photo\";s:71:\"http://192.168.22.10/photo/custom/300/5.jpg?rev=2015-02-02+12%3A04%3A06\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"stat\";s:5:\"alias\";N;s:6:\"pubkey\";N;}','2015-02-02 18:44:01'),('probe_url:1:http://mist.loozah.com/profile/derbuffer','a:15:{s:4:\"name\";s:10:\"der buffer\";s:4:\"nick\";s:9:\"derbuffer\";s:3:\"url\";s:40:\"http://mist.loozah.com/profile/derbuffer\";s:4:\"addr\";N;s:5:\"batch\";s:37:\"http://mist.loozah.com/receive/public\";s:6:\"notify\";s:53:\"http://mist.loozah.com/receive/users/d64d23ed5df3879a\";s:4:\"poll\";s:42:\"http://mist.loozah.com/dfrn_poll/derbuffer\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:37:\"http://mist.loozah.com/poco/derbuffer\";s:5:\"photo\";s:74:\"http://mist.loozah.com/photo/custom/300/98.jpg?rev=2013-07-27+00%3A10%3A59\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAxYVep62s0skTI+leYCrps\n6Ms4wUZKaX4+nGniLFmcJl/wTscDEKNh81PBaTropeNNQUjxYxqvabkGFg3OZte+D\nDAfXkHunpeRXgBPwV4sBHuJGFVU1hAxkt9QKxXSimjQDbBygAOsXdgbAiuBsBADQL\n0UOM5CPRdhWiHebwRsg2TQOrRq+DOEXkuiednRHjiMxK9lKR5UP4xptrzOlJTfGZB\n89nszA2khxgZpUYRuFUtcvipJSBT1Q2OLAmBPEg7kmOkO1RxumsU3sUBLCigoolPl\nNNbdHXBQZZMGDUMs9pxcDzqBJHCIGeTYEfFuTqZ05bb3TDorU1EdODy8u48x5ficQ\n551E+Z4iLaBxNd2CGplGZ5S241xrby+6oEj4ftPzaYlsfldMpijNcNiW2ffU6qwls\nLKTHKw9IB3CtxQ3ZqjTpb8qwNKip7cUgR8knX2YVS3ApcJHqWdkyhqDIpxiaKdj8G\niGdid+XXQLwJjfkQYbVMbXzU8jZHu1aMcYknF6YdW6YqVe+8qkvanIQniO/GpqS8Q\nm1SS1xVvh3quTOpX0pB3aiJ2ODsQbYndSv2Aw087FJVV+o6G93EHDVbrigb1ZJtKG\ngZwjS2kC8tOztX4/hslJ7kDnVEFMLWjoMXc2kugbSH0/89C824TlrWgY1m8pSD5AO\nFx7+yYcgljaMCAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:31:45'),('probe_url:1:http://mist.loozah.com/profile/joooo','a:15:{s:4:\"name\";s:4:\"Jo A\";s:4:\"nick\";s:5:\"joooo\";s:3:\"url\";s:36:\"http://mist.loozah.com/profile/joooo\";s:4:\"addr\";N;s:5:\"batch\";s:37:\"http://mist.loozah.com/receive/public\";s:6:\"notify\";s:53:\"http://mist.loozah.com/receive/users/c8dae3b8a08f3e1c\";s:4:\"poll\";s:38:\"http://mist.loozah.com/dfrn_poll/joooo\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:33:\"http://mist.loozah.com/poco/joooo\";s:5:\"photo\";s:74:\"http://mist.loozah.com/photo/custom/300/64.jpg?rev=2012-11-12+15%3A32%3A02\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAz+yckaZV72WcvJT7fVQlq\naHAomn9zUfGhHSF8pNWY2dYhnuzZ4l1kjSSjWckisqZdL1amTF+/phlO+2y8wqrc4\n1NbVNQpjx0prgqsjm2KS9iQjEeFnhqSZdULLBb9oTgYK+lzQj4AL3lOZZrVxR60/l\nprGREhvO1OJyIq0Kw/qf5Ib+zNLyHKRoH/F1NIi8F5aOfZuVWI4H6XPPBg+LgW6So\nKNPPaNaX1S7xTbASPgcQPFLVWZmTdpmyot4hfX5Qj4LiBlADWFJ/YiOXskSEzuYT/\nSpCURQ3cHB0UvIARF4r57JbOZVEdUyiN46d/33Ua+iFdTnNJBdqokDZhGqh/dJhMS\njk557u2ZihGNoaizIlad9+30Jj07O6JlPF4vC58hCDQ3c5Jmc7m3oDUylhAFiTxfR\nfES9pE8wDXIF81ur0DbsLpThfEkmEjwOUHnHFN1gYspfJii/dNaUVuluxVcqJ20RD\nyg9BXo+5IhC/mu2tKiMdV6NrYkU3W8NGDo7QyH3EsceRXE8i/H4QgkYeQQz0puoKN\nIM+cQZmuqPsr1BGWuGzYJ36047Am6kQYqfIYoizNKqse1yASpHS+ZOuRB0EeatGvV\n4DtYmXrhQy0iZJysN7GtyysGe2Q2mqwa2y+YvMaftkOgbtaqcs/xuESE+PGcD+myr\nZOeXgL1c5CBcCAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:31:46'),('probe_url:1:http://mist.loozah.com/profile/mkay','a:15:{s:4:\"name\";s:6:\"Marcel\";s:4:\"nick\";s:4:\"mkay\";s:3:\"url\";s:35:\"http://mist.loozah.com/profile/mkay\";s:4:\"addr\";N;s:5:\"batch\";s:37:\"http://mist.loozah.com/receive/public\";s:6:\"notify\";s:53:\"http://mist.loozah.com/receive/users/05fab1296382d87f\";s:4:\"poll\";s:37:\"http://mist.loozah.com/dfrn_poll/mkay\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:32:\"http://mist.loozah.com/poco/mkay\";s:5:\"photo\";s:74:\"http://mist.loozah.com/photo/custom/300/24.jpg?rev=2012-06-14+19%3A06%3A37\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:272:\"-----BEGIN PUBLIC KEY-----\nMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQC1H7PI3m1GkbjKK2KVu/8hUQmqa\nDzcvHzk8S3Yo+5duMaBR9TTs/CMSylc/dSkyG6m52dJl1PL1Hm5/gcdIu4udciHz7\nqfwS2o5EwwqmtMhlq12/L8WnZRzYOlkEr8dF1hkKqu+4QO9/NUyNYq60+7lOJfNYK\ntMsLAZgGpUt91xQIDAQAB\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:31:45'),('probe_url:1:http://mist.loozah.com/profile/rike','a:15:{s:4:\"name\";s:4:\"Rike\";s:4:\"nick\";s:4:\"rike\";s:3:\"url\";s:35:\"http://mist.loozah.com/profile/rike\";s:4:\"addr\";N;s:5:\"batch\";s:37:\"http://mist.loozah.com/receive/public\";s:6:\"notify\";s:53:\"http://mist.loozah.com/receive/users/aea03cdf0e19a1fd\";s:4:\"poll\";s:37:\"http://mist.loozah.com/dfrn_poll/rike\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:32:\"http://mist.loozah.com/poco/rike\";s:5:\"photo\";s:73:\"http://mist.loozah.com/photo/custom/300/2.jpg?rev=2012-02-03+14%3A10%3A17\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAvALRLW3VfSJgD/rKSitV1\nuOhnX32dd7V+SZ52sWMZz4MWmMMZpy8cHup+Fku+IlXEaQTdYjaJz4rTXxKEwmWSR\nG/EcbdyMS1RQnVsmQ0W7SUM7jgDeHtZFS6V+5uT1/2UVpaONvvGPuZuBpbAoQZD6a\nbmwoSTxCZG4j4jo+ne81pxPe524ovSzvQOR7oCfRx68+EOIiBUmyTqhKgdKE5ZtID\nDRtcn452ePZbb+ejhBpNoQx5ulhGOPdRKprN6sz7VyF0+7UFW0ALjGA0wGhRmlACT\n/UEqrJZvaG6Fs50/8NTNtaUvCtqvXvea1n2KAhUMd7pg41L+t71uPx98U96XmY51w\n4jK4SV/OWNyMGTkjtlsbiqA3IW7CN9BVuTLkmaIiGe7SyYvEgPPMMW1h3LCDJAYnA\nxPo1W8u8S9hCbGdobQY2pFaj8Z3Z52aleb+Gp1AxtEI1MNA4toBUe/XZAKZW+fPKA\nJvrZJG6E+LORvPeSZgj7R2eiTKo+5E466WhlwtO74tCygb9P3wQDMX/TbMRCGQne7\nGc87kev/62HtfD9QhBIGSiyCawy3UCv4M3y8q06xOCYcvoxme41ZmgriX1Si3ynSG\n7r5o/yE+TBxK2yOk/fHRM8xocMNp5fxVaGk4JVpUnoXs/vabaBDfz9yBkmXQHzfy1\nqO8fgmH13NdECAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:31:44'),('probe_url:1:http://mist.loozah.com/profile/torsten_peh','a:15:{s:4:\"name\";s:11:\"Torsten Peh\";s:4:\"nick\";s:11:\"torsten_peh\";s:3:\"url\";s:42:\"http://mist.loozah.com/profile/torsten_peh\";s:4:\"addr\";N;s:5:\"batch\";s:37:\"http://mist.loozah.com/receive/public\";s:6:\"notify\";s:53:\"http://mist.loozah.com/receive/users/7f29b32e15e64456\";s:4:\"poll\";s:44:\"http://mist.loozah.com/dfrn_poll/torsten_peh\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:39:\"http://mist.loozah.com/poco/torsten_peh\";s:5:\"photo\";s:74:\"http://mist.loozah.com/photo/custom/300/13.jpg?rev=2012-05-15+12%3A58%3A18\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA1NRmqgaCC7Yw/Im0cS6U9\na87HbNmWinBcp8QypZGyyELDfoeaoUcjwASRWSdOC0VSJ1uyTiQl9Fhm1j5W+iJde\ndBrR8oOc3xH/ExIJY5ZfhwXdmPZkZ3ANIYPPuS9wINmeRQvR+3hNxci+YEag+RGz4\n4DWA137iYNgDRGb6w+I223dIp7oHgJ7NfRab+vaUknWw4oFQEQoO6qsLNtysvTxf4\nFwkUjmadPVLN7LfSG8iFLlpA6u8nBa3ef5qPI7WczYF31vcACov3zo8sCWSZW9xMf\n6sN9ZwIflzEVTka41LIwq5LKve/3AKUHa9cjibDyHykodDSB1B157kHvJtF/v40ti\nLIayiJU4/Jq8OuKSTZNvtmI4m9T4WsMOOVDPwCzlIDxA1UkQcGWBTq+RB0bLzoJH+\n0pnnLHg691oS7uaFvdp1PRTiwBlBE9IkEzsAFjAjjhmvU8k2QuA2r/5W3drwXqBKK\nmQGyx8jYr3ecTzPHY/6f6nZs+mcsgqMCQHwenstetpvP1huC03GoluOt0FehV/bXw\nmDE6H3LlgBsHiQ339H/CVTUQsUB/CNY4P/9Swx5KWq9aSI0fN0CdyB3Opw/cxel06\nbHuSLdIKf+mdia42LV+dScMFINHftADR11Ujvi5TP+UVULDlzNd+ANoN1DTYt0iSi\nrWVu/aNlZdx0CAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:31:44'),('probe_url:1:http://mist.loozah.com/profile/zoninoz','a:15:{s:4:\"name\";s:13:\"Gianluca Zoni\";s:4:\"nick\";s:7:\"zoninoz\";s:3:\"url\";s:38:\"http://mist.loozah.com/profile/zoninoz\";s:4:\"addr\";N;s:5:\"batch\";s:37:\"http://mist.loozah.com/receive/public\";s:6:\"notify\";s:53:\"http://mist.loozah.com/receive/users/d5fd9c60544dd54d\";s:4:\"poll\";s:40:\"http://mist.loozah.com/dfrn_poll/zoninoz\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:35:\"http://mist.loozah.com/poco/zoninoz\";s:5:\"photo\";s:74:\"http://mist.loozah.com/photo/custom/300/56.jpg?rev=2012-09-12+15%3A38%3A42\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAzWff4nB2B2byJNEjqm9RP\nVnbik6snJIKzCVpZtHvimjj9FT3TM32y8f05gI6e9JQXclYdpfTOS/nz6hVJFrnus\n60I7CLqQtrXTN/d50p0wDjCM7O3hvpw44ALF1GBvR+ZEjO7Cu8FgxpFARMLMCc7uS\n7ok6Qs7rH0IobV/vdOnYadiQr/zrysN0g6yV9qyH97sgRUrWAGk+G1bPv6Cvn8+Z0\nz0yzxx6VufDC0PHyP+5AIABUQJcoJsN+Ds68ywVYZB/qx41h5tX/CC+nvIr7a8fwk\n0KeAYn1rWKj1nC5eb9Q4Ko5b6GFKGIGe8JhQGRhjJLYwVrUd3BQ5j2m0C/jyAJot/\ndQSIouwOh4sAvLodfsckAYwbqP0W7l2RNoustrzFj4q3xoVYTY47DxWqOfY85uaCy\ndAjzcQRA7/3OUIlAfTJnC7NX3DhwfztthPBRWngze5dmrqNi7C6J0J3N5qcNJfQaU\nVSrW7tv3WvFw2a6hNSni+v0vGH1xUUBkbGVo973R0kirU42w8y0KVeoXizX+QdPpB\ntLFDX3qy7NoH1DcHyXSw/Ti0teFkJ0m0Or20PmiC0O8KUuqwvimNHG+goLtdit2K9\nJoFUcxSJEOCLIsEQBxES7ZnNxYulrqKF2/5ykK4l1TpfnFkdfce6J8nbUqE2e6vfz\nE8vD/O67EZIcCAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:31:45'),('probe_url:1:http://social.rueetschli.org/profile/dj-atropine','a:15:{s:4:\"name\";s:8:\"Kevin K.\";s:4:\"nick\";s:11:\"dj-atropine\";s:3:\"url\";s:48:\"http://social.rueetschli.org/profile/dj-atropine\";s:4:\"addr\";N;s:5:\"batch\";s:43:\"http://social.rueetschli.org/receive/public\";s:6:\"notify\";s:59:\"http://social.rueetschli.org/receive/users/9b76304e18c5a4a9\";s:4:\"poll\";s:50:\"http://social.rueetschli.org/dfrn_poll/dj-atropine\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:45:\"http://social.rueetschli.org/poco/dj-atropine\";s:5:\"photo\";s:80:\"http://social.rueetschli.org/photo/custom/300/66.jpg?rev=2014-12-31+13%3A05%3A29\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAtfHtX7kMAF5shJt+g2DaJ\nFLm9bWzDcXvUk2mSiEnvHs+S/5I+fBvTBshYljiIN0shCQY5XM838vMRle4WUxczm\nVQpWFBZkxnLGUwkyqwQuU4btfMTWCswhi9t8LJRpQD3idpoSGqZuQa+YAMRth2WCX\niIQV3LV04gpcolKuLo4wyNRT8OULQFdhFnSNs+js4307LIiRSJT+yX9dHTY/0qK3/\nH4Ciq1WKw46dTHSEkoWPW4oXvWBdS7HOxi7w5hYx++5+MYqqOvL7PavCSgTj0Crvp\nuVs0Bq8DKqUtCAAsf8kSB2/GeGxdpxgJHeF2NrX99xN4hqTIyHmvj9/rH9YRMFKPo\nruqTLvfWlQ+rzykzCGB4ntJ/JioesPOTcEEm9iQU2TMGiwdjD55Ri56EtepC2BOlB\nVUF23eax9SAb/FSEnSZ1nRUP3I+FcdfHes0Mn2Dc8s/DbBNRT3bhfTqzkinPkEX4P\n+Wd0olfXnKw69n3e30MQv+rhaSeqDy2D/yY3QgZlPB4RCXnf9fnd3vzmNfyWCQdyf\nFiYu2jPUTmwi8IDbm3ffXg2Ydypj5QiSWJt60zej6BkQjo2sBuewX7rkkfGPClwsd\nk66fIhT5OcloqfMyk1tFxgsq4cXVpOvWj+6RzVRVZLil6W4o+nSFoSF7w1WjXtx/q\nyLuhzxAj+h+sCAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:35:39'),('probe_url:1:http://social.rueetschli.org/profile/gsxrpilot','a:15:{s:4:\"name\";s:10:\"Jim Wiskey\";s:4:\"nick\";s:9:\"gsxrpilot\";s:3:\"url\";s:46:\"http://social.rueetschli.org/profile/gsxrpilot\";s:4:\"addr\";N;s:5:\"batch\";s:43:\"http://social.rueetschli.org/receive/public\";s:6:\"notify\";s:59:\"http://social.rueetschli.org/receive/users/67e3845ede95d2cc\";s:4:\"poll\";s:48:\"http://social.rueetschli.org/dfrn_poll/gsxrpilot\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:43:\"http://social.rueetschli.org/poco/gsxrpilot\";s:5:\"photo\";s:80:\"http://social.rueetschli.org/photo/custom/300/36.jpg?rev=2014-08-21+01%3A47%3A44\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA7avQsSRv37f0BXuCqA2Ar\nYJjz7iYgbZRotAV74tZ4uLCFBEBYJC7xeIxAdJH4qdltSNftjeeEOiaeSBpTKapgR\nOMRGhYtIJrABilrArxBRYHmwxHXsXvJmSODweXmpmod9klyINoPTGEJUDWLwA+m4Z\nGnqTWnsTaq4piMUKn00iBINtjP5DRkUpQhCZtwciW9gMFdgz07pqW+Pko2zSILOrh\n+ndM0IDnB958vzdBUcXweSv9Ryd1Qtj4R0lHGfdgsQ6EpCyW2Ocrs+o99B0NLRoII\nYfk/4GLi8OrmqCNRqMWGI3ENysPYIKuY2aI6q2dNXAeLdm9tJrloHLwHr7eTqMlyz\nCJrasFihic/1ACVCfQplcmuDkhvSUx2i7LYlD7te0MH6in6c90qMNs2MbqAZo+CMN\nkMjyGJxMLiiXjW2puQq+tJkj4TYj5PTssPrKwvbd8Mt6hogoEHm/AcRNdC3U8/Rzt\nnTysXJAb7DjC1r2eyOA7n4So3RLS+e0Itjw1dY/CalKgTdKZijLBe3IoEYaOPl1SW\nJbW76UkKL7JfPG+dyCDcCSVMDuday2n9A3/ICua9+Mpr4Xy0w11TdSaDA3pbymo4z\nNBnl5PbX9WfwSLjeepidLBjXbwuGDwf79XVj42kQa1TeALUPeBQVkaB1++keE1wq4\nXVDHnlShE8i0CAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:35:37'),('probe_url:1:http://social.rueetschli.org/profile/land_ei','a:15:{s:4:\"name\";s:7:\"Land Ei\";s:4:\"nick\";s:7:\"land_ei\";s:3:\"url\";s:44:\"http://social.rueetschli.org/profile/land_ei\";s:4:\"addr\";N;s:5:\"batch\";s:43:\"http://social.rueetschli.org/receive/public\";s:6:\"notify\";s:59:\"http://social.rueetschli.org/receive/users/f036c656065704e3\";s:4:\"poll\";s:46:\"http://social.rueetschli.org/dfrn_poll/land_ei\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:41:\"http://social.rueetschli.org/poco/land_ei\";s:5:\"photo\";s:80:\"http://social.rueetschli.org/photo/custom/300/32.jpg?rev=2014-07-25+17%3A03%3A43\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAtfPAAYbhu+jGszgk8jNdu\n1Jgn4hxGqQHbxTLF19CM7s6c+h1SNPBtnF2lcbrSHcPhzkLkmE+WlNiM97Pm/XgQD\n/N3Yzlv+xrJjGLn3odnTv/nvag8s8GVY5C5T9da1T1udziuuvEUui+by8Eh3Gv9TL\njGp/buIO0Lw7j0lb/R/vo8DZzfswqYLmOaS6SgmqgBsC4W5B2011A4srOrRK3YhVP\nX4Sw5EAfuaJwH0d62hsBPDYPg8OSZ9U5hTbpjgDN9TG155tqQadBT9z3YpqtZ8X5x\nDzacBKSURnNpm7nLVTLhDPtKY04tjibofEne0EFlitQ4rOH4deQdU3leoyqhThPzb\nZd5h/bqI46MfAs/cFyzSv2C5HU/RmTKXLj2Fy6wMCZoJOkDRoB+xsIBfjYQANAWbV\na+crxgqYk8F9aYndShMRQJ3bkrJ28K64dmVWwuPHPf27lS+uJeXUOxmbb3WvpqRRb\n8k33qdvOmNEp1KgfENYSwymQGsgtNPDptr4k/XtbPITDUKp1w6Ywho8e2dpDPECyd\ngErA1yGsOgRimul2ZqX4xV0aXF9SJGpv0XWELf/EFYrfJEmr7gmWJ6vZl8ZOPtxJw\nTfVmOiKEpzTzdED1nsDqCPACR4g3aeWiWBPzD9PC4VrqHx4vtou9XFNPUVRlXeAvE\nic+paai97QxUCAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:35:36'),('probe_url:1:http://social.rueetschli.org/profile/rueetschli','a:15:{s:4:\"name\";s:18:\"Michael Rueetschli\";s:4:\"nick\";s:10:\"rueetschli\";s:3:\"url\";s:47:\"http://social.rueetschli.org/profile/rueetschli\";s:4:\"addr\";N;s:5:\"batch\";s:43:\"http://social.rueetschli.org/receive/public\";s:6:\"notify\";s:59:\"http://social.rueetschli.org/receive/users/cff69c2545d38198\";s:4:\"poll\";s:49:\"http://social.rueetschli.org/dfrn_poll/rueetschli\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:44:\"http://social.rueetschli.org/poco/rueetschli\";s:5:\"photo\";s:79:\"http://social.rueetschli.org/photo/custom/300/1.jpg?rev=2014-03-14+09%3A30%3A42\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAzHcQZ0bYfqClvUbGxdsTO\n10KreprdvbRBPAArS5RZsswSR4u5U/rSI9XIwrNhu3xbzoE1Qk98intf2A92JWyYm\nWv2YLn/TB08woVC+6Tn9SLDi2JONQv4H7MzDyNSdaQgKncuejI0Va0xGkiDaBFyU0\nvKyI80tVaIkvJLa6fx9RB2b2j3fEnjyn0gk1x8QrYCKdgfildk6qcToIjslp7CGjc\nPNcVfr1HguIr/umDrOKkeTt+aYFxa1vUFi4+OW5BblPS1QabubByx8ERvTRv1or1V\njGIHoVMz9cTyHiPsebH+XgvqyR5LkHp1RM5GO3jLEKj7Jp51SkdHSAYZvJ8KpD9oM\nKQ2izxQUyLqj45UHEtlhh/Sxo3B0XLb97hhvhwTXszhP2ccKUlxS8TcfHrKuKe41J\nriEJoqd99LuZ++iezmLsXcxtxPAuplDOzCobzwGvaynpFoDHgOsmBQJyFWOtZjsR8\nbODuHyW7BKDq+Yb+XpAZ6I1izFjL4bpYmcWdKAkqN6SBofEgeH1G6TwAnHXHag3lO\nV6j2dQOwYkyg6iqfb1dCpKDFHMPbz4BmCeaBwmsT8ArJPPhL66r98iXL/yl2bL/up\nnVMy2RUxs5kncSob6XGEMejZD9bWm98n489LoBQ72L4pSwRrnIdTs+qQnRgNQKGHN\naKlAi7Bi2SMkCAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:35:35'),('probe_url:1:https://friendica.eu/profile/arescorpio','a:15:{s:4:\"name\";s:13:\"Nepesh Hacker\";s:4:\"nick\";s:10:\"arescorpio\";s:3:\"url\";s:39:\"https://friendica.eu/profile/arescorpio\";s:4:\"addr\";N;s:5:\"batch\";s:35:\"https://friendica.eu/receive/public\";s:6:\"notify\";s:51:\"https://friendica.eu/receive/users/1ef695c1de7dd7fd\";s:4:\"poll\";s:41:\"https://friendica.eu/dfrn_poll/arescorpio\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:36:\"https://friendica.eu/poco/arescorpio\";s:5:\"photo\";s:73:\"https://friendica.eu/photo/custom/300/516.jpg?rev=2012-11-07+22%3A39%3A38\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA1N890+0zW04i6ljy7QMuX\nCl5MmJooxApqHKsvwoe8fJY2K67zhdb+Fg2LDtggQFlkDFZ39jZWVr0nxvaebpq7p\nQ0G75N+8nsFhSxlcb6w2LW3u10w7oeQMPIOkCkM3HDGr71rfc8TGTAlEjxf19YdwA\nQjrAQeuVtEkCbWWef2nxmxAHIn64LDe5TY8sd13aqUR3x2e3bcqeE07W69KtUP03i\nfsvL6xc0V9GHNmyQsEI/4B14lCS/su8pUuW3f2JwXGWAVGcW0NJdqtsBCeBTV626u\nuf0522ygclrqWCJQVJyzil04jeBUs6Se9cmCEnl9CBH3nscOHmDZ2BdVU8kXV6Y6g\nfeq8efJz6kIYsty15OpzKTDOUmkn6wP4Hdf1E3t1u7IenntL9piNXhUKWr2tFu+9d\njxJovSGdn13I6eJlV7LWeehB86l+XtqQnhANJAq17QQ/nOm47lQ6Gl2aFKyolemX9\nCLhbZXXapDiydnZUm2NhV2glg9LtMYmucqR8k0w1jIO/XPLyg4qBmJOez9/lhqcIJ\ngB8ruBl1BVIZ93QiLPcYuIQcnVaBGmxcG1EkoZWZa99vO8TcpXci/ReOfVDFABlbF\nImAeWxGXNsk7LKDjAKvdwcUmSzANMDvKc5MU1r8IKeffADZ51f2XVEZlOGhhCbclK\n5p/nwWYch8EMCAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:31:27'),('probe_url:1:https://friendica.eu/profile/auga09','a:15:{s:4:\"name\";s:13:\"Montse Freire\";s:4:\"nick\";s:6:\"auga09\";s:3:\"url\";s:35:\"https://friendica.eu/profile/auga09\";s:4:\"addr\";N;s:5:\"batch\";s:35:\"https://friendica.eu/receive/public\";s:6:\"notify\";s:51:\"https://friendica.eu/receive/users/3b1042012d4f3e70\";s:4:\"poll\";s:37:\"https://friendica.eu/dfrn_poll/auga09\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:32:\"https://friendica.eu/poco/auga09\";s:5:\"photo\";s:73:\"https://friendica.eu/photo/custom/300/934.jpg?rev=2014-02-16+14%3A17%3A30\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAsVHR5j5ct5Gts+3aRNEKB\n96sL2E8jGh5dgKNP9pUxANQOEUE0fl4koHcyFEPOJw9y23HOmqDdH02wyRumRlDut\n4ONyR8Wh+jh/h83SULHk5sirMNQdunnVOf/I+7/WrxL474+SOTKtiEVsZsxIdp8vM\nVQcwu/C1wXN9o6Mw/eCNfNwdL1XrDA/TkobsyMOHesBgsx4rgeuZkNl0Z4p9vtfra\nHjPsWMlTUVNUyBAO4Ike6bYnzPp2+UWkUm045gMbruRdeYcM8HlZClzfVRRGuDola\nK+9rvgwbsEnacUTHIVYj1g8uFF+IbuDKW+6mIZNo3jADPXiwB1b6DA6PNqRIC3AzW\n8oHZMGJNYR8gC24udo21y7rX1R8VjtVRvDShzLPiNMgYAuaRBLooQh05ToV3CS2z7\ns7c50vbBmVoKTMLy7PDTtANVbfx7h7zvGMT0Hqr5LtaHINAOwMQyEK2HmHRTThQ+v\n7D7H7iStCDkEmkUoZv1P5MbGkkNw69tkMgt8kO0ijZP1uELkT5+nRiPKMlrDYQ9gF\ntj0n0oLDfcYn4BJyDE6gKyU2qen8HdnnOmnMr2UA9KzvtHtUFetC5/IB1iw9JjYGg\nNQ2t8jSEoauQ7o9EjQYhgmAFYYOP2wAD0e7Mi9yYxwx74YFoV30uXyskZs7ZzBPKu\nRe64J++DDgL8CAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:31:31'),('probe_url:1:https://friendica.eu/profile/cecile','a:15:{s:4:\"name\";s:14:\"Cécile Maitre\";s:4:\"nick\";s:6:\"cecile\";s:3:\"url\";s:35:\"https://friendica.eu/profile/cecile\";s:4:\"addr\";N;s:5:\"batch\";s:35:\"https://friendica.eu/receive/public\";s:6:\"notify\";s:51:\"https://friendica.eu/receive/users/612fd61458519106\";s:4:\"poll\";s:37:\"https://friendica.eu/dfrn_poll/cecile\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:32:\"https://friendica.eu/poco/cecile\";s:5:\"photo\";s:74:\"https://friendica.eu/photo/custom/300/1703.jpg?rev=2014-12-23+19%3A29%3A41\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA6KaZOzPrc79dwfyz6CTef\n5z0srOyutnvPSD+bX3Lc0DLUooIep5YGfUY7Ug0AegqajgDIplnBvz10Y3tIieSHz\npSkVOx14/96Eqt1GVLw9Pkzp8YO+dSCN5fHNJDkywJKod/pdSptKFcs6juL4rMmDY\nBQOz/G+CGQ05Z/nQWx9Uo6DXKT5Zi5FhnIPhLpOvH/G+6Zmf4dV5Gom2if7LbBJfq\nYU/XEP2lIvOy9ordTNi/r8ILz+T2CiwkG4QJ0YUrkZQc0r1xyazStCon8/ka7AnNt\nLMSIdkFlMJr+M4Mj+EHPVuDxSTILocJx6UH5iqLFPMBZjWMmwvHsBJLTmtszQmBIo\nYQzMVLJua7aDIPzFOKjQAQ+5qwOEaCEpaVk0Q8QYGUyx9/PIF2JCtEBjdvhhxEpPb\nfK6vWPysAVG1H7uFQ59YIleTyDpUgBaujImVa2ZE7ov6ZUHCPaItpbIPgYcXclluT\n3tMvQXcNNvD97mYVmHP6zbAesk0iiuemCovdjYAPLW/1tzGPLxEJcDvKH4tq/X8l5\nQa3Yut3N065abs8mePYWcvmxEm+8HxIGisMY8Fm1w4C3iOjyFtVEtgW+T9p0zJVFk\nmi+1IB/XwsZBB+iZyHXFGVVnWcd0vWyIh9eEvQ+WnBogH3JuOV+Q50Ro9aMKiCOq1\nRkvGv9WJ0Xm0CAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:31:40'),('probe_url:1:https://friendica.eu/profile/damez','a:15:{s:4:\"name\";s:18:\"Daniel Steinbacher\";s:4:\"nick\";s:5:\"damez\";s:3:\"url\";s:34:\"https://friendica.eu/profile/damez\";s:4:\"addr\";N;s:5:\"batch\";s:35:\"https://friendica.eu/receive/public\";s:6:\"notify\";s:51:\"https://friendica.eu/receive/users/ba8be719533da194\";s:4:\"poll\";s:36:\"https://friendica.eu/dfrn_poll/damez\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:31:\"https://friendica.eu/poco/damez\";s:5:\"photo\";s:74:\"https://friendica.eu/photo/custom/300/1791.jpg?rev=2015-01-15+16%3A49%3A29\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAq8tyVGYjkHOpIUAJSE7fg\naA8awy7k7HH3YIMLG4e9fY1OH/36rk2PQc4LedqMqbdXbryqlw1NlQCQfcDQlECBH\nyNoiKMANdxFHEEmDs5BTbbM9Zi+ZXp2QDSKD2eHm9JDrP5udy1nrTdIrPwTttNU2A\ntQsNxIlocvp4Fy2X7eMEw/fjCT1FNZaQw8OYzcVoaqQOSS3H3732XLFNMNVad6p7f\nXfOYyW3vzXQDkj3CWg7111bL3Bw5O1ydd8Jg/joxMVbC6hX4c4+NAFnSiTOc5/gJD\nL9+sDRzXKLQW8C4b+9GfJh0j8Ij/0DzeuxQipdWBKN6HzY6DnYVmeo/LVeQ1iKWLZ\n6pPaZE8J7IUlUNa6q7NusgzA1XIG6GDPGORfPIWS+qj7jbM4QMH/2Qfr6XOLIsicb\n1l25/q0/gM1+IAs1qxcvG2NsPIW1euTRdbxC/IuwTe4sSrGLSL9rduTi7rYUvcniz\nYTCP+I38IJ3N5U5f32svp45ZPduYEWUOQbFydh/27Q0aJOf9rxHZOjqcZKr81bzjD\nOXDmhotX8+JFYQooMcz48HCz8rOQ9aO7ImIQBagYj0aUlIKXEozV+tDJ6J1TX2V0J\nk6XwGh8Wy8b7blWGR3bQecZAjLnw2yYT6F3NeWiod/NISKge347WFlaxYRwuXBABW\nZZTgAm3yOTIECAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:31:28'),('probe_url:1:https://friendica.eu/profile/discomplex','a:15:{s:4:\"name\";s:18:\"Alexandre Pólvora\";s:4:\"nick\";s:10:\"discomplex\";s:3:\"url\";s:39:\"https://friendica.eu/profile/discomplex\";s:4:\"addr\";N;s:5:\"batch\";s:35:\"https://friendica.eu/receive/public\";s:6:\"notify\";s:51:\"https://friendica.eu/receive/users/ab8540763d91389c\";s:4:\"poll\";s:41:\"https://friendica.eu/dfrn_poll/discomplex\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:36:\"https://friendica.eu/poco/discomplex\";s:5:\"photo\";s:74:\"https://friendica.eu/photo/custom/300/1522.jpg?rev=2014-11-05+23%3A54%3A57\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAwFA28FQsQY1O0iX4+sg8+\neAQuTgxz/KGUMWxbzM8ZCBLf3sQrYCvLjV88qvJVBBH+H5Nd2RYR6CyaIgL9c1ag+\nKUC0H6VvD1LqYzPKpCuM2AyaXIztJ8jzr5PXIQ9RMmriiQvV6zXKkOvvAedh7LF3D\n2DUK4ukwUtYjA6qkYh55cI0CfwsbbevB2lqLmuZ3YszIAgeQ6VwXuASdAnqXr7USl\nlu8/EiJalvPta5YAFHsLUBRZa3vWqStTrIr7GZj/t/6g8JK8UD4NG/NK+BJ4WL0LZ\nBmIPJqawDMssb2bQ3/7lJoYpZyK7luTVyq5irnuJDQxX+PYWGhbZYQqP/OqTWp4Wi\nBqPY46vsOz9xReVbFBD69ZMHfNRHdGE3j29b2JHy24CXpwRFydSjVZphifR6XGDD4\nNX7vf12mDQRddsHNIKe2i01JCs0WRW7My+JNnGvW2HIPsp5By99goRAkw/fDLIUJD\nrKqiyr2rFHDLxaCL5oeN6z5C+2wHGbD5/LmlJoQQ1zutTS+uXsSBWStRD8tdU4Xif\n5p+0KKYeXgh/w03/7DGa92d/Ib5DeK6p+uZFI0MyRdqK1qtUzD8YITaL/MzX/XEDJ\no8iwTL+TGP/s78sJXP4TrWlSNKo/U5hj+/Di/flrI+CrUGL/cmzFnyAk2k9JWwhAI\n5g75fUyTZ6D0CAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:31:35'),('probe_url:1:https://friendica.eu/profile/eilsib','a:15:{s:4:\"name\";s:12:\"Elie Bissery\";s:4:\"nick\";s:6:\"eilsib\";s:3:\"url\";s:35:\"https://friendica.eu/profile/eilsib\";s:4:\"addr\";N;s:5:\"batch\";s:35:\"https://friendica.eu/receive/public\";s:6:\"notify\";s:51:\"https://friendica.eu/receive/users/a9d2a9e51fe1dbe5\";s:4:\"poll\";s:37:\"https://friendica.eu/dfrn_poll/eilsib\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:32:\"https://friendica.eu/poco/eilsib\";s:5:\"photo\";s:74:\"https://friendica.eu/photo/custom/300/1680.jpg?rev=2014-12-17+16%3A05%3A23\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEApMxfgm7Lf/fZvvWF8A79a\nIaoi+aPAhpgRGdwbW1Ect5AyAnP9yf39lxY+yuHliWYb7Ex9mmBa7hGy8BRthm/Rh\nLz8LqImD3y8UibdRzJhKQp8w4nYLzem04xXmLC1s5/gFXYT3zuBypcUitMGCcZOyY\nTH7aWdPaQdZnY07vlbW4wsVd0hJmLA1OQ9yyoFNrwBzC+A2P7wG/auLbJJLJ1U90k\nKucoDX92jREmPbk0ZXfEAND6Z/wMeiIDrv14GDcAIuUtKOBoP+Pc2gU8sVBJ2fzt+\n4RPfKAvoDQ1CpJhtrU2Fqh16wYqJiyswfeLG/Q1gWMZF4GHqEZW/Gqp7Dmmf7MkIE\n1y519d7N1VDVN/QFA1qmeYxK0Y+w8E376YPedidTEVjHlqSZffnKgtIKEij1nh+L3\nNLcZLY5YOnkqmepZb8pnP77fsTDb+QEjbKHBE2iwuoGhfc+4128VGbynUWKKIKX46\nvnp1+kpSIiY9+9+Ylm2Onk6+TIM0W016HLXd54Qo24bFddk8KyOLRbHcW6RS0Szd+\niEsGZdrdtnBEqyCHVweexJ5KrdOUF+3pUt5LY2WCFtt/rGVfBrtnmO0C1CLfUfkGg\nm2r729XUKxQRP/ce1uqNiN2s1bCGZRsK/ppYrREIKQEJiQqDh9tL6Y5eTQKXAH4cB\nqIrzTYbWjv9cCAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:31:39'),('probe_url:1:https://friendica.eu/profile/ftdevs','a:15:{s:4:\"name\";s:26:\"Friendica Theme Developers\";s:4:\"nick\";s:6:\"ftdevs\";s:3:\"url\";s:35:\"https://friendica.eu/profile/ftdevs\";s:4:\"addr\";N;s:5:\"batch\";s:35:\"https://friendica.eu/receive/public\";s:6:\"notify\";s:51:\"https://friendica.eu/receive/users/842cd856a883df2c\";s:4:\"poll\";s:37:\"https://friendica.eu/dfrn_poll/ftdevs\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:32:\"https://friendica.eu/poco/ftdevs\";s:5:\"photo\";s:73:\"https://friendica.eu/photo/custom/300/366.jpg?rev=2012-03-01+11%3A58%3A18\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA37HoXSAn/8ni65nqmDiwh\ndNntVQs+A2EW9f3hMe4p7pUIF9jr3wiYvRbTSBsXJ1XO6i62BlNgUX+c6M9TNiI3e\npwinmVDMB989RMQwLNpvDeJ7UMzgTvdld8BTTb3tcYVUfuF9bDxYscrwv0ThN0LWy\n5/RuVSBm2/qjm6R241EpBQpZGGwgimDUnhijWTS4AvcJDVVwxrB3Xh6xq81Qxsbqy\nOK4yP3mTYLt7bqN/bCuq92fFOAIHOjauwK4KT30E0V33oKxu4MV0nTaiR8U9ZoO3N\nr4QxyoDYvGhBBHNglUl2SbDswVcz1+KSneJ0H8wRhQlLU18zOIek1/Ra4umDyyNWx\nxnH2WvFQPYrPbhc0p69rxpIZ44ZCxNsqu4mTMLcGfcEndorLpULXA172i5ZY5nXqr\neWb4yk1g+EC6eSup4zbjtMm4t6938axiPwsEvFURcKrYgdxUeihUgqAo+/2EPR5ek\nMabF/REPk2exWV+3DduRqkxihcSJpE34wYZXdkmQzMo8kcL5rLyjfTa2/U0xHKRln\na8rRMBvbQOaNhqHGH3kQ7AERcmRDr1Qh6xJw82oEYf/8EUil6vWxuqjLg3oZExkgJ\n8hs8IGYKu1iZ3AfAtk+0Ty7uHWP1+ItsiTzXZsa+MTlidJugyrhAnfyr2AEeybzp+\nZleLM/xVBo7ECAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:31:26'),('probe_url:1:https://friendica.eu/profile/hvm','a:15:{s:4:\"name\";s:18:\"Henrike Van Mortis\";s:4:\"nick\";s:3:\"hvm\";s:3:\"url\";s:32:\"https://friendica.eu/profile/hvm\";s:4:\"addr\";N;s:5:\"batch\";s:35:\"https://friendica.eu/receive/public\";s:6:\"notify\";s:51:\"https://friendica.eu/receive/users/211ec34e3b62bdd7\";s:4:\"poll\";s:34:\"https://friendica.eu/dfrn_poll/hvm\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:29:\"https://friendica.eu/poco/hvm\";s:5:\"photo\";s:45:\"https://friendica.eu/photo/custom/300/250.jpg\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAySe6KB1KAB4boiEnf103h\no6c2r6azQP9TCdc7wK7sBFfj0eUj503/pfGcRyGgvOPgi+qqRxE+hfW2TJi54TUGu\nmAMUJbC/265PLpg2a2eSez0JlTwFa5PFuEh0MSROIgaqYaLemKiqE26uIVVWidEN+\nOumKs8kUSvIJ1FWpkvfawXIIgmr4WGVwAPMac2ZF2+0ElV17tBu7B2WteoCRlqm9D\n8lAloXgWUD38fy72bbok8ACyyKaVss97DH6SwltZ7dSbE7puUkQXFAy+5OVPlhqXi\nl1cqo8jTnhwI1EHWX5GfSTfa/eSF6lFyisQDc0e8VZ1q1L0zcCxqPlyAh5o0um6mR\nVMKC1LiuSJ7zMlejm8l+Jjk7zTSmIFiB51d6aYbI+MIJy6TXmXZIfG5TN211r3WI2\n7g2G7moz2T37GyqvTbB+y48uLbnuZ16S8hI6WeSqcqa2NBWSDtgO7L9TfTkXKOrbS\njHpyz6lW9wueYhQDFdxZrVhcSc9GTqw4LiQBrhgYlizQwiyzXt4ZnCn2pcKEU5PdS\n3qn97EYyGIrnIPJypJ/x+7xeGsL9pgY0aP49WHj2bLZn3nk0nTSJEA7VaXHDa+5Am\nyyN7R2cgFD/rC5NSS09xBhwGZ8yQbFthAdi+2d+Kz/zwvlhu6hH1MrJ304Msz1mn8\nbK2fbMaxaVl8CAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:31:24'),('probe_url:1:https://friendica.eu/profile/jacques','a:15:{s:4:\"name\";s:7:\"Jacques\";s:4:\"nick\";s:7:\"jacques\";s:3:\"url\";s:36:\"https://friendica.eu/profile/jacques\";s:4:\"addr\";N;s:5:\"batch\";s:35:\"https://friendica.eu/receive/public\";s:6:\"notify\";s:51:\"https://friendica.eu/receive/users/7625102b4b42335c\";s:4:\"poll\";s:38:\"https://friendica.eu/dfrn_poll/jacques\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:33:\"https://friendica.eu/poco/jacques\";s:5:\"photo\";s:73:\"https://friendica.eu/photo/custom/300/907.jpg?rev=2015-01-15+14%3A37%3A37\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA2+Ex6et8LUQHr0YN5iJQ+\nE/+4mJvCfk4oVJMevpvPmnrUV1RBszyISUROwOuzLEE1BnmOQQyYJMaJ0i33Slx78\n4//AR3CF6mnR2k7/xSF6107JmqAWu6VliN1+k3ZjP/FidtHrxBfW35NC3mQZv67VJ\nN5iz9PSSz/qPSDPpXmo1nRaWVqb+894MUB7uH2Xxm4fx0CZv/LDnYJ7OjVH6bGAHI\nnETOA+3fHHApHDF29ezOZfhTbM1A7qEP0HE2Wm93WI21Ft5X4iEpXhf0cxWDhTKEe\nXCsuHc9HdNEfdB4NyWY/ghkSgOfmvfipsfee0BPV8EcQjuk10PBk40J76BAVTtDAH\nr9T/06ZlfZ9pDGaBv9JthzXKmdxeUsAVtbr9Z519dwi0gwwvac3e32FPcKdthISrN\nm7a8esYtWA1hXzpoQ7QZNapiZJBE03MqcJSuLpMYzTFAZUrCSrMTmKVlq9VzbzCdg\n6Fan6tcaJzI4LZ09N9mtSqlB0GO8aONFD1A7cti1vXCgJZXLgyC58jqV0Gx+Wpnbv\nhEARygVhouSb5YaNlU96enPBM5UevckNbET7IaBU4/R1paOCIMX9D5CQBzDgQyXDO\ndCSZVsytJpz/RHL5rcP9KkLTrGxlsoehTzzjuD0t2ArhE/RBoPb5M084aPeQJEui6\nkN1l/JBY4G/sCAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:31:30'),('probe_url:1:https://friendica.eu/profile/krinbouch','a:15:{s:4:\"name\";s:10:\"Krin Bouch\";s:4:\"nick\";s:9:\"krinbouch\";s:3:\"url\";s:38:\"https://friendica.eu/profile/krinbouch\";s:4:\"addr\";N;s:5:\"batch\";s:35:\"https://friendica.eu/receive/public\";s:6:\"notify\";s:51:\"https://friendica.eu/receive/users/09d41b4984c76966\";s:4:\"poll\";s:40:\"https://friendica.eu/dfrn_poll/krinbouch\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:35:\"https://friendica.eu/poco/krinbouch\";s:5:\"photo\";s:74:\"https://friendica.eu/photo/custom/300/1471.jpg?rev=2014-09-20+14%3A18%3A24\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA8Vgfyns8r/fGfU5Z3WnpL\nsyURateY/4VVkSiLILb8pAGjDqN0VfAE9+ElppXHXNve5YPXcS7ewn9FcfH7B1xih\n15zE6EH/cU6m6bzcu2dbkOGrU8AGlhqMv4Xti5Chx6iPboOkMRpaFXjhMmert5bYY\nlj4jr3SMilR58rVp9nLFEdP5cY/rBs1isqO8wzhNTchobqhVEeesEQRjF47N3itJw\n37OEuKcWS1pcTU6qo8CEcpLlUQKIQk4um/hLNbTdk654kH68MKv3oDTf4TKQi7hEN\nTnCIhTYD+gTy72sOiNGYodGTzb7PA3MGtCwps8D447fkvrjdATFJmyrGGpZzaLLK/\nEkuBQF0+5mY7Hi1RCrEPUogA1m4CYYepwPnt0KacSff/BKsufKndDsKc/C+1ESJZB\npHN9O8rPEDBw7912CXB7XT5UMxni5z45MQg0QwIEjZHNwwHSzqCQRlf5HxyIWuIVN\nA30Ek1p1WMiT/I+yoa2l9xWGB9i+zSVwEDCcvKR8/jS3auy6dI4iAz5/5l6gsABye\nzOpRWnwyDIbZ177knyO9clSP8PVtlU1d4B2aWuVSGoYDcfhs7TQd6aFxDBePX3R3T\nDbqhQmMK8tzplWEq9ZsU4IDGIM0FYSzmlFz8zv5WBpfpvhrn4CgA1sRIuUb1x7+yM\nA5RgDq1lM59ECAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:31:34'),('probe_url:1:https://friendica.eu/profile/lefou','a:15:{s:4:\"name\";s:11:\"Jörn Rinne\";s:4:\"nick\";s:5:\"lefou\";s:3:\"url\";s:34:\"https://friendica.eu/profile/lefou\";s:4:\"addr\";N;s:5:\"batch\";s:35:\"https://friendica.eu/receive/public\";s:6:\"notify\";s:51:\"https://friendica.eu/receive/users/508d1c2f542be96f\";s:4:\"poll\";s:36:\"https://friendica.eu/dfrn_poll/lefou\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:31:\"https://friendica.eu/poco/lefou\";s:5:\"photo\";s:74:\"https://friendica.eu/photo/custom/300/1782.jpg?rev=2015-01-11+15%3A39%3A33\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAsSesd5WVljG0TKC3NCZHq\n9WKsZulRL8irzmvOxRHdpA4YFpUKkPDXsqrH6DU2ZXnsGA1kaAvjVLVyIDfWSUO29\nkUkcxcz437PIzjHm8OoFoJ7ZgYMPhOu1Lcd+CASo2hCcKl3zXejWbNQh8daurmkY8\nOjAQDQjL74vVrtiG7D1zbd2nDHXHgYcxZ0uOoNLo9Po9ucq4T4eT69vsNK5FYcTBC\nmR4QrKJC1rGluq347lpTpzJ5p7JVm67HW2eBw9qOdtt2eGy0d789BK10DLH1xpqWX\nSW9AVoSppiLMwQRNxDb5EHxT+J2yDvo1hiMs+FRqx7ualcXvoPuxlqP4d9hVXkqOJ\nBXaT5f4gJBrHxNfmEPff214FQLuhx39p2S3DWdtQ5ZWHcFNPAqI9fKwIFhhbYktVP\niKamjlWdTg0MkH+PQUvtSTGXX4gW1y9XJAVTC5plCknJ+DfCeCpkGD8anWFSItt80\n1K9FbL9/O2Hw6zwxQB6MOZJ0xLxedwV5wKlAoYomXxPtAnIzM7qRLcM89UhZVUF02\nDzL1jo2YnRu+QwUXUAUEDrHeeQP/T4Ws4Zh4Jj7I4x6po7Lmy4SqUVK5/3wnTEbz2\n2ZZBbianaTWZ23R/kW5soK3LPz9IR+iHCmidaJpfEXxLK2qG8VWf//c7PVTm2vTAk\npoqBDpjVpwz0CAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:31:42'),('probe_url:1:https://friendica.eu/profile/loran_mcfly','a:15:{s:4:\"name\";s:9:\"Loran Btn\";s:4:\"nick\";s:11:\"loran_mcfly\";s:3:\"url\";s:40:\"https://friendica.eu/profile/loran_mcfly\";s:4:\"addr\";N;s:5:\"batch\";s:35:\"https://friendica.eu/receive/public\";s:6:\"notify\";s:51:\"https://friendica.eu/receive/users/c6b410f205e95e49\";s:4:\"poll\";s:42:\"https://friendica.eu/dfrn_poll/loran_mcfly\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:37:\"https://friendica.eu/poco/loran_mcfly\";s:5:\"photo\";s:74:\"https://friendica.eu/photo/custom/300/1781.jpg?rev=2015-01-11+09%3A10%3A33\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA2awWpa4k4aYuFtZq/hRSG\nDhilybrjcrWhCPiWcykVWDNEgMdx9oCvv+DS1JPSzVKu3q+56cuTC/wgkYVHpO5G6\nCaENsAeYWc6Lib4BEBHGCz0iZIgzwDimJjeb6sQ5bku9ReqtddMB+QgHrNvwk87m4\nW+U6Z2Gr4s3hW1/MxsuHTgwuUbcFId0wj3ZruULLgZk6Z4X89iS1gl6d1cB7Ou+TR\nBM356l/QCrLOBPTR4wk6e2ilJh469W4ezEwwCX5zFUhhyzHURdwqi2iXy2/kiHDHb\n6l58Q+5zO9+gvmpDotFkrGS9SSz/Y2x86843LuR8l0tUt3sUvhW8nrHdghieWxZLS\nqpqHuSc7jskQb7WRVugZxgLdXusdqdnuJ71tS+iwY+JFjY+TqKsGvId3tn/r0sCrA\nvREs84vWcgDgY9GwVd86LYcv6Pbn0kk7McAPAUU8pNbniNK2fdNg+vPWYmLrLZMbI\nTHd+/+sUWAcmcJOBKf36ahm438X1LzbQQWoUTK+zODER1wRvHrjf07qtK9Mfjx4Ux\nJVNMKOGZoh4lf/a/RnocSMPNBl7IgbviZYmgTKhoLNh6Bz1pRk6nDcfXbjq7OoeN7\n59BXeCGKJdnWlnYFOXWmjLQb/EHgYBCBUnrzhmxAuFXrhxebYvH1vOvn/uKaD2hc8\n5GMqd92T/fzcCAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:31:41'),('probe_url:1:https://friendica.eu/profile/ludwig','a:15:{s:4:\"name\";s:7:\"Lud Wig\";s:4:\"nick\";s:6:\"ludwig\";s:3:\"url\";s:35:\"https://friendica.eu/profile/ludwig\";s:4:\"addr\";N;s:5:\"batch\";s:35:\"https://friendica.eu/receive/public\";s:6:\"notify\";s:51:\"https://friendica.eu/receive/users/40a0c12314cd9c60\";s:4:\"poll\";s:37:\"https://friendica.eu/dfrn_poll/ludwig\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:32:\"https://friendica.eu/poco/ludwig\";s:5:\"photo\";s:74:\"https://friendica.eu/photo/custom/300/1810.jpg?rev=2015-01-25+04%3A41%3A20\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAxL78Ss4zLyvAPA+fgUETy\nqGKZXCpdbN9H+b7g0sXjPqex7G4gnRCPqiY6SMjm3eLTqRLT62alny4T71rUayTCA\noolzSfC5dVLRyqpU7zuplkKacAs85eYmDV+UTdOBsVuDZGYRF61JHNdJXfile7+C+\noJT4xizPCpfkMxu5fUCKHGq06/mVP4pkjL/JABizLB8K76or9hukdd/lTtPYadvHB\niE/d1aV91ab3QzhXM4HLKRLA/zJZHBOuvC2reWgwOhFl3hNTThljlSGQkCEQ6rp77\n64+d1acyJWyhg4qjJ8RUbRoJhQDd0ADGifEArslBgPwJ81MtUenqIPXdXsC0Wa8Gj\nK0sVgxr3jL0vqoeWIx9h1YBqlbcjLZmmOPdwJb2XmAkzRv358WZTW5lzvc9GhDuXB\nccNJlc4n+I1oAN0I9lKlVpkfki7fo7kpc2Id9kRyVJO/BB904AIOKljpVLG7m8NXJ\ntBv2icP1GpOu+7ChA8cHwlSl3CjGzVcvNzI+klk1qZgCog1HbuXuUbRMStEoQsjuH\nrdNo8T52WlHynm/ew0hGEzJAZxkrMAvr90MDttM2s/0tsC5LKf+LBEXCgOGh0k/8p\nKZXJgK7NLL8F+xvClH+xdrbEv5yN18yec/UcMZizyU0JNsiYG1Gp+NoH6SkII9MN1\nbC9A8vP09mN8CAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:31:43'),('probe_url:1:https://friendica.eu/profile/miguelmenendez','a:15:{s:4:\"name\";s:16:\"Miguel Menéndez\";s:4:\"nick\";s:14:\"miguelmenendez\";s:3:\"url\";s:43:\"https://friendica.eu/profile/miguelmenendez\";s:4:\"addr\";N;s:5:\"batch\";s:35:\"https://friendica.eu/receive/public\";s:6:\"notify\";s:51:\"https://friendica.eu/receive/users/cae894978859269a\";s:4:\"poll\";s:45:\"https://friendica.eu/dfrn_poll/miguelmenendez\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:40:\"https://friendica.eu/poco/miguelmenendez\";s:5:\"photo\";s:74:\"https://friendica.eu/photo/custom/300/1508.jpg?rev=2014-10-26+15%3A21%3A28\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAzwBwabu6w4qiLL6iV2b7n\nVdC36EXz0C27ZumHBzYSWQTYViHfQwBu/6RLC9IX0YEZWERLxAJU6cf10FUQiHezv\n9M33CsI/BqPbVfLv+oPLpGwkTb7zlQloM5kaN4zXDGl+PplR8W9w/CEzvg2HQx0vR\nZY8hUR32j0zbqiyz3SsTtQdphiNqrFSXaedRUBh1h7ytOtY2hlAFb5lu7aJ7+seBp\nUbMFGQ0P4XWAT3l/D3GbR+o2zb1ul+yohkR3bTysHmQUq+qik/6u5uFBYHxLgODap\nX5WzTd30f5Btpmm1Ba9eoVYiOHR5nj4sn09iogukX+kKkKiA/UanNPTCXU5JW2PlH\nFnbd1Nj4JEWjNG4LzJnx2sPJXU20OWkpZxP/7/3AunkFIAKAQHGRC9zzaRQ87sO3S\njr3onBjsCFMDMmNURruSX1i82CZYU0Na3j3jpXj1VGH/v5kcw2aLTyH9+Pnqvp2+s\nLUW2BUPY88ljTm7gcnxlaaYWRsYo2B+tdgA27zh5lsi7EAMXw6MF4o9a9Aq3hXwFl\nZI5EKbGhhktLGyLO6NpJKlK5efzk8GKckwjDSTSDtoekr3CNXV0vEgNVQvLgnYokG\nRHCLTlHVU3DcyTsew4K3+QgC4ou5oRPZ1CtWS/0rGnD6hvpPW3Sg24mtBBqDbgGPs\nb2Wb4+/dgCNECAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:31:35'),('probe_url:1:https://friendica.eu/profile/murokka','a:15:{s:4:\"name\";s:8:\"Chak\'pur\";s:4:\"nick\";s:7:\"murokka\";s:3:\"url\";s:36:\"https://friendica.eu/profile/murokka\";s:4:\"addr\";N;s:5:\"batch\";s:35:\"https://friendica.eu/receive/public\";s:6:\"notify\";s:51:\"https://friendica.eu/receive/users/32f341d7fb336e38\";s:4:\"poll\";s:38:\"https://friendica.eu/dfrn_poll/murokka\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:33:\"https://friendica.eu/poco/murokka\";s:5:\"photo\";s:74:\"https://friendica.eu/photo/custom/300/1535.jpg?rev=2014-11-13+09%3A13%3A55\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAmwA7zn4xE/+0DIvXCzxRW\nsFF4uJCK8dh4VaqfKrAb+hn3xaf+JPRsT8KGa/0aEB1rm7sXu8GXhYsyybJANJkTL\nmMlpjEaoqEK4Ay8vFdE8MWoRww4MWAnNxWXTYLzHTAZKuP/K6B9S0WZWzaW+TVRgG\nUXDqTA09Xa+G3ae69sSxiEiqvggHYk5OOHn3+FuDUeBUu/YVY6TmBJDigMypFBiC/\nNvxLynPAft6CQpJYWiyhXBgMKOlu4jY3cMioSKunp7bVG+gH00DhjgW2CIZIpvOZq\nXaAchIAfRJZ0/JK9Zahy4Ar8/GmIUg/D8gbQBYGdGyx3gQpYUdd9ejeOdbHURW02m\nTGbY1J7P2VE2d+HwAxkAEkhuWKV1eEZJBUl1mLtN3KBf2Z7Czkp9JUATwBgbALKJ7\nXz/r8SfySpUNYEVwhYUbIzlEzSAj/bSKbdCSYeiIQcIISU6/9VdN18Fwo72omyd6B\nwrUFeJO9IoRAllpaBgD6dGq/AruU4Mm0wEicnXdeVL1Px7/puza2ujRJTnkYGJPWi\n7cZFk+4GOEchxcCnN8qVUYUJJrFwZzpT79JnPiUmuRQK4k3GyLAx8Sh3a4RcmnBOK\n07IsqVruNW8EhlriMCLjKOJkYzArnDsBnNW11SXjFtagL4L/C2ylsiu4m6laYe+2Q\nk0NQNlA4xmZ0CAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:31:36'),('probe_url:1:https://friendica.eu/profile/numan','a:15:{s:4:\"name\";s:15:\"Martin Langlotz\";s:4:\"nick\";s:5:\"numan\";s:3:\"url\";s:34:\"https://friendica.eu/profile/numan\";s:4:\"addr\";N;s:5:\"batch\";s:35:\"https://friendica.eu/receive/public\";s:6:\"notify\";s:51:\"https://friendica.eu/receive/users/870164bef29efefe\";s:4:\"poll\";s:36:\"https://friendica.eu/dfrn_poll/numan\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:31:\"https://friendica.eu/poco/numan\";s:5:\"photo\";s:74:\"https://friendica.eu/photo/custom/300/1621.jpg?rev=2014-12-02+10%3A37%3A34\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA4AtKt9MdB2Der14kWZ6UW\nLBUVY2nq8UbdtfFe1HME4OmRxfzvlWriMEk54BTLzfYW3JlXrLPYkhSMxE0aeLB61\ngm4Q9qepIwAw6KJkXLQzHYQ10cT/UooEdOAuqobc67IxB7xaQzsAkQPs++nQ5kWtP\nHp32nSRsOw/rIeeLLcVWRExnt3bd+6B19t4jrYyxJBh/69J9ErVAD63mj/7J+wmzq\nl3QqYOkKz2ko1P2RTCmzYyB+1VqZm7WOeDQdo/T85byyXv/bAh+m4xZnP/Bh2LJY8\nVtYw0e1vSsr4jg8mOOeykZ8CxEjO9XkkH2PuwuDTN9eL19n0U0aei3ieFoAqb8ISx\nKaXPA2iL+1fvUWvbgmMTIRM2SSaiKlG06yY0G3yWNpuWIoP4CON4r1DtirPdY4Fgx\njSUFwb/yighV5qXBUxewGXysUiCrNuoB9+SUl0ZnTSgOVdGg9oLUT9UvWBk4CDpzF\n0PtuXmBSeL4R0l6ycvTDhvZzVIWKogiK3/094zBNoWmdFHEqb8QBiGf9LGchCt+oc\nqCAAFIW1ytBNxcRyDETIWEe4Bl/fHYDjhHrXw0Tb8KYaixqrSpQ/j6CGEuQzHUjRO\nO7uXbODwAZWoCSrPkBn0Kog3AJ88xKbf+xmgLWe4xQoZZtYL1Kf7IpOn6X4CSz/bL\nXCpEvXg8463UCAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:31:38'),('probe_url:1:https://friendica.eu/profile/o2myfrdca01','a:15:{s:4:\"name\";s:30:\"offene Ablage: nothing to hide\";s:4:\"nick\";s:11:\"o2myfrdca01\";s:3:\"url\";s:40:\"https://friendica.eu/profile/o2myfrdca01\";s:4:\"addr\";N;s:5:\"batch\";s:35:\"https://friendica.eu/receive/public\";s:6:\"notify\";s:51:\"https://friendica.eu/receive/users/8c4fdf8affc1ba0f\";s:4:\"poll\";s:42:\"https://friendica.eu/dfrn_poll/o2myfrdca01\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:37:\"https://friendica.eu/poco/o2myfrdca01\";s:5:\"photo\";s:73:\"https://friendica.eu/photo/custom/300/259.jpg?rev=2012-02-16+16%3A49%3A37\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAv6lArTd0EQz6jdSZlsdb0\nUxRS1jID1Lxys7kJyNHL0fIEBXPask/HPnjZyRCFkjYltT/fyAyVpcU8RW6xI1UDo\nNiVqWmjqns7yQ3zGkXhl6tVBBvlJKjmbU4owAsjPA7d850xNv/pK5e6Ri2Yd9+tGP\nuWsIRuNEqFp4lB3O2nebBKeeT/KBCDrbN9ZODVkdiZNlpDtdfITFJZVZzi9nKlbTx\nm1vFtAHk22p6Scrtd7t5U14k3ZCELQTwKzjYkSJWOVoel6lTGajJJhR33eZf597Ra\n6aRpGvd4nzSdSu+0VzPbRhZhWzfUUOgxBW7PlZ0BVVsvK+375G+RsTBGfARWlMnVw\nv8onNdw+fC3uqHmdlAPzpZ3mniV1ZDMKW9Zv6qJGFD8UYCrCTmpaCE2owPLijH3Zj\nOe56bu+4Iw8sBg0zXFtJz9i68PIAGmVPt9numRB5zNzqZuMjFw4UdLGtQ29wBNBV9\nUtV/8Jicbk3Mm+Ytf0JsI0vYhbt+KsXYFv+qThE/E44B88AfrxZ1vBMLziAM1qFFf\nAzMeoLpt1aqvRuN74+xguaCGiaeki+PtTaDoRPSvNEzfSliMs8zpObSd1vkdXpeYJ\nOAMG7U6AaNH+zS0aVlmvB0wt7u4fJoLgWYpyUOLe4IYWNr38hFw2O2yCqo6AylfFH\nPlCh0Ih0za8sCAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:31:25'),('probe_url:1:https://friendica.eu/profile/oremus','a:15:{s:4:\"name\";s:6:\"oremus\";s:4:\"nick\";s:6:\"oremus\";s:3:\"url\";s:35:\"https://friendica.eu/profile/oremus\";s:4:\"addr\";N;s:5:\"batch\";s:35:\"https://friendica.eu/receive/public\";s:6:\"notify\";s:51:\"https://friendica.eu/receive/users/bd707e92602233f6\";s:4:\"poll\";s:37:\"https://friendica.eu/dfrn_poll/oremus\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:32:\"https://friendica.eu/poco/oremus\";s:5:\"photo\";s:74:\"https://friendica.eu/photo/custom/300/1073.jpg?rev=2014-04-29+15%3A09%3A50\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAvhY0nAx2iW/NY6lufh6Yg\nVCODCAd+m5+97kMZlw3ZWw2krRSfyOkgUuELjfoLG0NcDqz9NMlLrp6sqfGnGNAX5\nAc+KVXE9G3nEWG2LnIeHzfiRWsZRU1bm74uCPIVMgVuWG8M/H89bb7LxaWso0WXmn\nZr1Bo22a3Sz/LUitH9i/h1QT4Qbq4NLeqgMn704pQwQiqw2wpQ2tC83N5L82891TV\n7F48xKYRDYPK9pMUbohHQyF62+vL1HTYgGr254WjATX9tqI/WbXf9qnfjrT1vWecf\nLW8ougCi/U9/5G8l5PIvMUjtu5V7tlud/CsaPHYuKZsKjH2vBEq/3sc97IGV04mBq\nxzYpDSctGYxhxpdG/Q9kfHY7D4fa5ZNmnV9xtJFfljoQjSeyIX0X4UmTbEyk54mGN\nU0n60IXnSh7BV925Rtvj8GfI0q3lj2VOEi69YpWqk3ho8PjudVwshRJk/bFu9H5Cf\nyrDpEZi4ytuC8OLb11y2JpaymdYFMqyZlpR5vqioeqxf8HwlrqF+Rh3zOMbjl531e\n223CG0pLOmIRF0vYYR8lzbIa3BbPDQMcyFxo5kjO/JXU7GSds1ge1Nj3928pZYfYm\n4ivcben1KLYw7PmCSz0yBddDDgaYKHZmTvmXpamaXLPjvdo9oR2mf7VK7alls7b/5\nvWxRuEk9WkJMCAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:31:32'),('probe_url:1:https://friendica.eu/profile/piratetimes','a:15:{s:4:\"name\";s:12:\"Pirate Times\";s:4:\"nick\";s:11:\"piratetimes\";s:3:\"url\";s:40:\"https://friendica.eu/profile/piratetimes\";s:4:\"addr\";N;s:5:\"batch\";s:35:\"https://friendica.eu/receive/public\";s:6:\"notify\";s:51:\"https://friendica.eu/receive/users/a5fc21ab06138444\";s:4:\"poll\";s:42:\"https://friendica.eu/dfrn_poll/piratetimes\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:37:\"https://friendica.eu/poco/piratetimes\";s:5:\"photo\";s:73:\"https://friendica.eu/photo/custom/300/885.jpg?rev=2014-01-21+11%3A09%3A35\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAsCF9bWhZeCoI1nSK58KxJ\n/gIM4jyDmEJ3IcBys0pY/eEeibLKirr+7R5ZBE3I9ClFODAHpXV/9ZSyg6b00Bujj\nGp9/6mDDl6If9pY2g+58nvN2TfLNmGpVVueKGf0LTJ8djsT5K06Vfq2DY+D3RMyqK\n/aBM+5iLUzaZvSWKTF90Sch2Tgy8tB3ha7hftnEMc9nQKjqk6+wQ12WmBfIdi6pAx\nmeLqLfrcwvA6wcc53GVTC+mCDpq+cjo8Bsac2E9XQ77XX0IAgcdpHDe5CzGxlGEjJ\nHWI6cprgcGIVilSDYzN8iBO/6du1cEGcgEU4drAMaoqfEvplL2EI5zIrxdBMewffC\n+46MSCLajFautbZYHFOiA4JNssIxjEis0v333M5S76gQTzPooU8XR/KwPS9RP7NJ2\nVjvnRRLx6qilIMc5swKbiP3vBILq6/BmssYqjvE5z6hxGwKZeRahRjud4tXOuS3ht\n+Lnm4bQAZBIPuD1LRjVE/3E6XWVIsPDBobJwHXmK8X48splr/myvQMud+PndKtFls\nGB2+V1mQvzBeGa+KJtxN6oVlWHPGPsNwEsQOBapWdWC/t4Y06fPN9BGXzqVNLp/84\nh1MQrQSeui4dF2s+pBXB0yRM4TRe+adgfQbD0B632WnNtMP242AOtmmZ0gs0rJJFV\nxNjllTyDxqQ8CAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:31:29'),('probe_url:1:https://friendica.eu/profile/ppp','a:15:{s:4:\"name\";s:3:\"ppp\";s:4:\"nick\";s:3:\"ppp\";s:3:\"url\";s:32:\"https://friendica.eu/profile/ppp\";s:4:\"addr\";N;s:5:\"batch\";s:35:\"https://friendica.eu/receive/public\";s:6:\"notify\";s:51:\"https://friendica.eu/receive/users/7f71f7031586d823\";s:4:\"poll\";s:34:\"https://friendica.eu/dfrn_poll/ppp\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:29:\"https://friendica.eu/poco/ppp\";s:5:\"photo\";s:74:\"https://friendica.eu/photo/custom/300/1134.jpg?rev=2014-06-01+12%3A58%3A28\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAxr9qHjG2TPA8d8n0jccq6\nqBLtbk02MQKf0B3vaXkDL56bXl1ayFb+xjCaHlNxmd09hQSuL1WqbKp00bRpHHrQY\nm0cKakXMKYzjAfDRmlWkSrrsC7Y7GRqXWV02WBqcnrB52FprNfqKPc3grgOrJ5Rk3\nRCFeTuTqJLmuTr3i0vspyHesgXNA5ZJA3SjaSE2d/BViJwwtiQjNT1RESi+UHTMJ/\nNDD6d1bMGJ3GGf4e2/qkjzyoxzLYILbb+RXqbsClQbDFGzgy4RQjol6LOKoBs4iVz\nKETnZ8/Lyu9rpew7BrjQ/g8hV9/JpBBXAue/TcDirU8nMyWS7dOpjxgI/L8AqC30l\nvd+g6w2Am5fajIMvN7p9bphChZSwkX7PlLpq4U7uI/qBw3NQkcK1tE9NcAVZkJioN\nFLtlUsANqbR0L9fCEzJY8Aes4iSp5ELgz/JlvrVP8SuBD0/J92gMpHKaG34NpITQ7\ni2U9bSgi/fpgI3FmXUrdtXl8OF+yENEHD6B407gKuTlAsa6EKv1a1eNY4IqzOqB/N\nDLUvQssjpc/2JF3Kyx5u44JLEiQKoqHHAmNnzbgcoVHv7CtDzjegoKnqgGqrbaDR9\nFawBEMNKqn/kbxPiHyMYMQLlAAkPz5gA0/w7HM0W117SY6FdAmrDVhmCjfjdB5P+D\nF9D2MCL+mhycCAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:31:33'),('probe_url:1:https://friendica.eu/profile/ralf','a:15:{s:4:\"name\";s:11:\"Ralf Gerdes\";s:4:\"nick\";s:4:\"ralf\";s:3:\"url\";s:33:\"https://friendica.eu/profile/ralf\";s:4:\"addr\";N;s:5:\"batch\";s:35:\"https://friendica.eu/receive/public\";s:6:\"notify\";s:51:\"https://friendica.eu/receive/users/934d11cf5da8c3c2\";s:4:\"poll\";s:35:\"https://friendica.eu/dfrn_poll/ralf\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:30:\"https://friendica.eu/poco/ralf\";s:5:\"photo\";s:74:\"https://friendica.eu/photo/custom/300/1739.jpg?rev=2014-12-30+12%3A43%3A12\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA2pHSstAs3UckdgTaEybF0\nxlCFfiwTDoXEh2qeEECHKqbITx31IXvE6mOr0yhFD8gPAAA09302wFi+j9H8QYosR\nAxQCb7QdsYh50BgiWwbPE85lr0ePewtYTfukTNPq6Nx41lQpTMNWS2uWMMPnjlvkO\nffZsQ4XPbMIHBRHdXh2iLG9+/Nu/oe3j3LpMJlP6o0KSw9Drb5H6kQDWZSGTSvrsb\nFgAgxoL4Khybdx9qD+7z9JuSz2gOqo9BeHb7K+5596V4xHAu16jO867Vs10liH7Ym\nhXYzSdnGk9FYKzJh28kGqW6dfub7Fq7r7uJ7BF8CC6/xBndcLJRi48A0Y7Frg9VkP\nSJoKPeXBAAbgN8MNGiM9fWee3rjZgqmNK1efa30bE4G9mJWlv/dAU7VLwKsSxvrSk\nGlpVh5t9GLstmBWMKAXn11oXJs6XYwMkV4AfHJoWIWrfleTsDou8lvPkGzuvG0+VG\nqGhxVv8TXcW9zVbSvVFIbbYsJt11jZX7IVUKNbev3JDeVtMPczwjYhcgwvQGx3BD8\npEBK8BtpyZsYqvHZetyXgRKQFVXHpCGvp+J64MF7E/EypPH+Oq4W7AIWrFjGollA+\nwJpMp9fnWbmBq8rFMh/Po73Nov5LlpfdFBFU5ydbFjFIfshaUkAtcRkzW0FpLWaHx\ndrd93QNlLS/UCAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:31:41'),('probe_url:1:https://friendica.eu/profile/rcr','a:15:{s:4:\"name\";s:9:\"Rolf Rupp\";s:4:\"nick\";s:3:\"rcr\";s:3:\"url\";s:32:\"https://friendica.eu/profile/rcr\";s:4:\"addr\";N;s:5:\"batch\";s:35:\"https://friendica.eu/receive/public\";s:6:\"notify\";s:51:\"https://friendica.eu/receive/users/b86065076c7a3bf1\";s:4:\"poll\";s:34:\"https://friendica.eu/dfrn_poll/rcr\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:29:\"https://friendica.eu/poco/rcr\";s:5:\"photo\";s:73:\"https://friendica.eu/photo/custom/300/841.jpg?rev=2014-01-09+22%3A15%3A09\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA6s9Tfw1a7nJAb6+6+Nox3\ni0vyxmaQofZpgMPEZSMHN2NTn/90C76KIxjPxKTOxu8SP5CCdwrzJp8J77aZ6/jhL\n/f//bx0wngxWfO1yu2Vdq2/XdR8Mjsftlkro3AAmEBiGZ2SgU6VbJpWN810NniYX6\n9k/ko5gmQgDisWBFbDk+5NksGV08m3KmFcw4Z+e2Cw8EqRG6jySV2fgGKyljkhy4L\n4Uf/SyTgQki1ZpVOIqamI/lOn6ReGtAgGxE79nYW+aKL32N2Bqa62hpH+dCEKOr9M\n/7UHB9tfDjS1+IFgM+GiPFcoddPwG5HuIINFXsoE5ltykL2VZ1WrgmhuH36AqhaC/\n1lWiGLJJKESWE/HML1XuA6+NPbOJfU8h35I9Epb7pQoGAdBPY+L+9DWn9TJcE68d9\nB/y3EVUJuyE/OrwHRb3y4T5IcTTTvWmtCsmiIJDoN/GuHG0i7JTVVLxv+XbRPJVmb\nouWcAB3HnqFSGPSpI2n1jiz3p9XiZZAHokSt32DaIkw80WBDo7KnNeZDhGyaJ74Ef\nOmK3XzI6MhIiXkyZKIxGgltc/W+/XQHkBtEgGiAW9chP0SnMAstkOgs4ds/PnOAi1\nTQ7pQnEbase/n0yNlBEOSBEprxN/Y0P8kdFlBxbhlc9kA+ogbFELsYpSO9Wcp4NtC\nCUJEkFcuBhTcCAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:31:28'),('probe_url:1:https://friendica.eu/profile/stace-melunor','a:15:{s:4:\"name\";s:16:\"Samuel Contraste\";s:4:\"nick\";s:13:\"stace-melunor\";s:3:\"url\";s:42:\"https://friendica.eu/profile/stace-melunor\";s:4:\"addr\";N;s:5:\"batch\";s:35:\"https://friendica.eu/receive/public\";s:6:\"notify\";s:51:\"https://friendica.eu/receive/users/0e76e39fd890027d\";s:4:\"poll\";s:44:\"https://friendica.eu/dfrn_poll/stace-melunor\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:39:\"https://friendica.eu/poco/stace-melunor\";s:5:\"photo\";s:74:\"https://friendica.eu/photo/custom/300/1586.jpg?rev=2014-11-28+13%3A01%3A22\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA8G2F2fE8XM6T1ZgnIg47P\nZxoLcR4jzgbYoDW+ORKoVUAmkvQab7x9TLi2+05HekLTxL/N09BQra772ZNBUkpc5\nB3v16ROZxwrdE1rPsebZVhfoIrZsJMcjJhQG4U9RuoQEg/l67topBBvBlqYkQtXgs\nACuLOY2B0t/FDKzbLbEvKPBkwvQR1pqHxqdXfVmfPX1jinKgfwX7DjMX99+ieBkMF\nEZAsONhQLLSEEdLJIQw0itdqAWGAZcPbSOwIP5Qd5VEp32IBal5XwAWy8fDwsOeXD\nZ8O7TeDt3BVQ1xZCI7Ib+HjBTUyfBakdW4hpj2gsjyEUq810+8+Jes5x8p11gJrq4\n6qWNeutL3L6asB90T8NQNzxU6zmgFxG/Jz5+eHoKGDD+L+o36cUw0BlVqW3+rP6AL\n85jjyXxEai9apa4rmqwmZTQ/gKLGD9btIM8k7XhYr9g0j+kpnPH+rcXuf+TCfS2Hk\nXRNtxQc84D3SHK9Ql6zH/zmd7U/fOTre02oWbYfcj/0BS3QTLC9OTBQsQiovoGIa5\ndOVrZIIRkbu14ixc+T/z2SySxUHe6wu6kZj2KJXwPh5AHa6JNfc+vswGVK4ZH2W71\nUN0jwcm2rs9QjbMxUQY4KuNWSqVgHPay2Dgr9yjyOqcTth4c/+aOWThbwdWn4FGyI\nn6lrQ0O9+//cCAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:31:37'),('probe_url:1:https://friendica.eu/profile/support','a:15:{s:4:\"name\";s:5:\"Keith\";s:4:\"nick\";s:7:\"support\";s:3:\"url\";s:36:\"https://friendica.eu/profile/support\";s:4:\"addr\";N;s:5:\"batch\";s:35:\"https://friendica.eu/receive/public\";s:6:\"notify\";s:51:\"https://friendica.eu/receive/users/1503b8ff50e44111\";s:4:\"poll\";s:38:\"https://friendica.eu/dfrn_poll/support\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:33:\"https://friendica.eu/poco/support\";s:5:\"photo\";s:71:\"https://friendica.eu/photo/custom/300/1.jpg?rev=2011-12-21+14%3A41%3A44\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAve96jxENeBOoA29E8lT1o\nUGRcT5sSRNImjBleZ97bfBn8px/DgS3K6De1MrJluq9/G+Q2NC36cA4xx25YFzCI2\naQEOqk2ywS2gWtSWviHp0UNG/PDQ97i5Hk1VgYhg1YenrY+INsCGTltX4ZLHxKZuG\nBTar3QGwZ4q2CJ7iKSRyUVYrXYfLXCfV+twC2FSrZYW8xmkAay1lTttJ185cYW1ZX\nWkfDD7/ysB2NmKMWHY8eRcIG/k/BujiAncOyY/SOtM/viWFIj6HuP1mUL3E/ge9iK\nAvBIDWdNW3ZLijLISmoOCNeRyWqUTc3ijBRZr9fEGLRc9Amjc2e7pLefnxdXfzFEx\n1hwuoSXPVuROBWh9i6kIGpGBOIJ2D8CjmfNYD7B5XKUgvHLg594qOckkmplXNcBmP\nChXnL+r5Rj2zjuOxECWdSwkzuONZaZPeeMi23d0odIpmS7v+xoOJr0GiJqw3a8LDW\n9yJ/JtLY0yeq1jjjYzWD/2T1U7J/OzhJpTPwQJfb8AF/kNWxRoJ3IEN0STrCWJW5O\nxE4wVC3F5P2rGbOGcM2whTsHYgetRYWS2pYrXJDPyN5dmAortwLGRcYEwZzxL3l1E\n9nmZ5ghGDwhMmmDv9/JFQVoWA2zaLxXKYFg4RD/zXbkZOndWvkQmYI5SH3odQH3yG\nzjbaUdsaHps8CAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:31:23'),('probe_url:1:https://friendica.free-beer.ch/profile/ac44bo','a:15:{s:4:\"name\";s:26:\"AntiChristos44 BodhiSattva\";s:4:\"nick\";s:6:\"ac44bo\";s:3:\"url\";s:45:\"https://friendica.free-beer.ch/profile/ac44bo\";s:4:\"addr\";N;s:5:\"batch\";s:45:\"https://friendica.free-beer.ch/receive/public\";s:6:\"notify\";s:61:\"https://friendica.free-beer.ch/receive/users/b3c19884b708f2c3\";s:4:\"poll\";s:47:\"https://friendica.free-beer.ch/dfrn_poll/ac44bo\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:42:\"https://friendica.free-beer.ch/poco/ac44bo\";s:5:\"photo\";s:83:\"https://friendica.free-beer.ch/photo/custom/300/440.jpg?rev=2013-07-15+01%3A55%3A24\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAtbtrzWYn+rBivpufzN62H\n6Two3ztcITGsXH7UcMBP7zQ2UbwE5ADJXnyrJT/wFzZMyXZn/wQYdC8vbwcBx/J51\nDYp/O1UodBzH3+8YE9mrN/0wuY8Hj17Og+KcZwQuYn23EPsMmxw/JnWCMmVwW/dHA\nvtAApbNww6lsjhUd+JL7WMKIJsyJ7Oy65GcYaweEL8EOUbIg6wQqJ0KdrJBAdSAwZ\ncfH6CAmOq+/2MTV2za9LQL3psf4WYfI3HuA7LVfcvUL5SphaQOjBiwAWw9W01dN4o\nYWd/jirb+rszEb4TWGL3n9oxo4gc/a1tmIXbBQC6Kz+ny+YRUR8MAXKk2Y9ijNvqN\n2pEKDUzlAA8f3vwXYgEvOblovVlIb7WQiymqEIA1hfLMz8CIxdHsbLVfymWgv8IVl\nvb+G/r8MlCW1jpfNQ2YXPSEOsXw3obINHNfOSOWHwiciT93L8wsChbVvZIO+rMaNZ\n9aOJ2upQiwxxf701pyLV2tWptZjDTtFjz4CyYOuhMqMdbsf9v02Qrfxc4b5gw1SfC\nBtQVLISyuCQfuHobeK/QFQtoCQAHGQ8wb0c+x0Boaac9Ao+FdlIyku1lUYE6wwFGW\nqxl8Xwc7C1CqabYKPvcMvj/U1GPYdkCjwdKmNk7q4SxEeXZm2sDuXoZjrhPqy7inA\nNTSRWdvjOAVsCAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:35:09'),('probe_url:1:https://friendica.free-beer.ch/profile/airon90','a:15:{s:4:\"name\";s:14:\"Michael Moroni\";s:4:\"nick\";s:7:\"airon90\";s:3:\"url\";s:46:\"https://friendica.free-beer.ch/profile/airon90\";s:4:\"addr\";N;s:5:\"batch\";s:45:\"https://friendica.free-beer.ch/receive/public\";s:6:\"notify\";s:61:\"https://friendica.free-beer.ch/receive/users/7e687fc048888f3d\";s:4:\"poll\";s:48:\"https://friendica.free-beer.ch/dfrn_poll/airon90\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:43:\"https://friendica.free-beer.ch/poco/airon90\";s:5:\"photo\";s:83:\"https://friendica.free-beer.ch/photo/custom/300/547.jpg?rev=2013-09-27+11%3A19%3A56\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA1F6pqVyU8SGXDVcwk4AyZ\nPngu4NZmhb7p0SEInAouT6UbvsrF1IOoctwdvT4+DiqeoN7Q/bYaGqzxgFW6qjsaY\nYsJKqqLdA2L90f+A/VtP4Kqg9Q5qGB4i0wIB0owKo0FkzVLUmRvj5Ckr3Ypf0eRl9\nZfhkpljU0HHwPt/UyvA82i+GVucdnoheISmW5FmFI5bSMX/y5De7nl+xQAXc7Sf7E\nd7B3EeOh6nHesB4Ri1gjPb0DyHYs2muJkIaP+SjG0+jIiGMazROBfLcwkHN0ZZEFN\nMHHegv3JxX7vYAR4zp6jV7vfBPvLLU22liA49tqtQLd4ro9u7SoxEgxJ5hxsHWwkd\nZ2DxdIixKH4BMGQr5sZj9ccorbOYZ0rE78Bv4cajWx/3kP677gPZtEhn43FYyBvxA\nxGPrDVr78hS+f+SJ7xaPjmXq/p/GZhvajngUzXox5HW4YS8ZfNap1vVR9plJUc2s2\ncZT2LHv5PySf3rHhymR4Bu4nGAZryxtP1NU7140AjL8/jbZQ+hFAvwWVPDNnFD4wE\nwZKpJ8rBxJs5hG5udTui5SVtvYiFiwnhDBNflff1OfbKhtS4tWkYEQdbWRZVStzTD\niU6kxR9K0G7qL73wkBDpmaTgEhXiDN4Yaeqr0ht2Y2jv4eyMcTQJayj2oMXit4wGm\nexku0sjzrkB8CAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:35:10'),('probe_url:1:https://friendica.free-beer.ch/profile/alexanderjobst','a:15:{s:4:\"name\";s:15:\"Alexander Jobst\";s:4:\"nick\";s:14:\"alexanderjobst\";s:3:\"url\";s:53:\"https://friendica.free-beer.ch/profile/alexanderjobst\";s:4:\"addr\";N;s:5:\"batch\";s:45:\"https://friendica.free-beer.ch/receive/public\";s:6:\"notify\";s:61:\"https://friendica.free-beer.ch/receive/users/e77f6336649c0855\";s:4:\"poll\";s:55:\"https://friendica.free-beer.ch/dfrn_poll/alexanderjobst\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:50:\"https://friendica.free-beer.ch/poco/alexanderjobst\";s:5:\"photo\";s:82:\"https://friendica.free-beer.ch/photo/custom/300/77.jpg?rev=2012-07-11+08%3A19%3A36\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAuS51pvIz6R8mYc2mK/WYX\nSGeZVwSHLjxtH6G/8PfUNOkrUXpgcEXH1ic/m6luIX7c7/jdvTvB3Yt+w0Mkri+lt\nQfk4qDBsyCW7k5fq9UWdsQED3BPqmkR1wsXAqrqH66Yx/iKmjIGUHWxYHT5S5GRAi\nDOC908y8F25qAWKZ/wGTUuwGNzk0W9F1IKAQzZxpq3i62vdYKNf9nCzuV1K13xgVI\nhPuX0UqkPek1bffxyyl3FHD5dXc8lAmH8uO9LY335NvrU2u/n24oDICyyyK6sh2Ym\nwmsBaF3gqmy0hQJ439xsDR2S3FDlu81LCwtlTMwW41DXzNQssz7Mq+qvoxTHu33pu\nghk99xpc06J2WSfPiUuDlvjcdYipvqA9KwHF4v7Mlsj2uUZO7b6VpBrhy0x+FY9C5\nBONQqCPPqPhAoJkO4gPEL86ycdaaJydu1ke1GTpnMSJwwA2zK+SWmeqU8dPVmNwyc\npvWyj0vT8Hn02fV07Fs4FXCHdtEVhdqkyaV1p9siyMa0zGU0vIsOy5tG+I5WZIuiL\nOkRgehIMsiKAPdjIitZycYYASsDzIcRqy2iPRPUM/eaiCwncT4DvaIqR89X/wnu4G\n3RcD0VLAb3tUcSUnMXTgcg2W3GfoHY+cKUuNPKd9OmnjsUwg/5/XaA+IH4l+rxNOp\nd7xhCsMg9xe0CAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:34:50'),('probe_url:1:https://friendica.free-beer.ch/profile/arescorpio','a:15:{s:4:\"name\";s:17:\"Arescorpio Nepesh\";s:4:\"nick\";s:10:\"arescorpio\";s:3:\"url\";s:49:\"https://friendica.free-beer.ch/profile/arescorpio\";s:4:\"addr\";N;s:5:\"batch\";s:45:\"https://friendica.free-beer.ch/receive/public\";s:6:\"notify\";s:61:\"https://friendica.free-beer.ch/receive/users/b413ebfff5608c52\";s:4:\"poll\";s:51:\"https://friendica.free-beer.ch/dfrn_poll/arescorpio\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:46:\"https://friendica.free-beer.ch/poco/arescorpio\";s:5:\"photo\";s:83:\"https://friendica.free-beer.ch/photo/custom/300/158.jpg?rev=2012-10-05+19%3A05%3A49\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEArp90jy6uf6TbvSAIXk+QG\n6dagqnv35cAJpjZpoMGw8p2id73U926zKUadngxwVFh9MJBQ9ghWRewvkYJJ1lEnC\n3ZKti0ROsm9CTKl83FLcfwMgk43Ys0q7HghCz9uNA9IxOKPQiuzQVwQHFymWXRhFo\n6aEC20XDLoco0kRTbpTocotjXy2BE9nPZg5639guhhvykESJilxvAluTzUsVTD1z4\nqHoFmXL4USCiw7Yd5B0cBx2nPkSQCZ1xu00EjReVx9dQd9gADytN2HxR+XYO5p03f\nETdb14g8Q89pEniBF8l/4O6tVsLYhPzhHd7QMcLwKMXteISUBqXxdjXsPS2rukBmQ\nbkavCvpXlPDY9IWqvMpiNqwEDTHq1ft7vRM7Pt1Fk7SKBGaojR1I7W4Trfuo5H1eU\nWyygpSXUzbIzoJ56d736XepIug+HlFEpaqD0GTleQtxNR3Q4HVb9zBEv+3+Y+DyXC\nFDKCNrzWxZDpS0Y1eFwxgIizPmDoj9rtyovVb8T9ALhplt9n1ODFRfK04+gJbRRIG\n6p5+G05RqqvE/KYhssM65lQtkthDhAOHf9gLlQS2vM0llHp9oY2j2HqoQdtYpv2Lq\nyCCMYDKqBQSWEdM6VpLFbsSX8GgK3jvbVYhHqjUYo3rfI5TXH9b4onQjg+0SaqATg\nbD8ycQq3hgpcCAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:35:01'),('probe_url:1:https://friendica.free-beer.ch/profile/arlojamesbarnes','a:15:{s:4:\"name\";s:17:\"Arlo James Barnes\";s:4:\"nick\";s:15:\"arlojamesbarnes\";s:3:\"url\";s:54:\"https://friendica.free-beer.ch/profile/arlojamesbarnes\";s:4:\"addr\";N;s:5:\"batch\";s:45:\"https://friendica.free-beer.ch/receive/public\";s:6:\"notify\";s:61:\"https://friendica.free-beer.ch/receive/users/744dc72a4038a52e\";s:4:\"poll\";s:56:\"https://friendica.free-beer.ch/dfrn_poll/arlojamesbarnes\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:51:\"https://friendica.free-beer.ch/poco/arlojamesbarnes\";s:5:\"photo\";s:83:\"https://friendica.free-beer.ch/photo/custom/300/593.jpg?rev=2013-11-04+21%3A56%3A10\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAwuvzvQs7t1y5BAlmt1yZW\nacl2khR2tNJGIcFg48sGzGe4aGk4FQ9W5sgagpRT05udIAegQ6PpPJvJj4C//rMDP\nliQWHSjHSfuz9cE710lObzNkovSuLllmC1aTZVtSNT2CmK0YJAotPtWjJjrQDhGn0\nttJ6vCWBlAZCCssrM8gotzt/NZOAJAqa8uaBddVq4BKnse1Rp085DL0odUO7IFG6n\n5wERDP+AAhbHXrdOkKwhLr+CGPSBHQF2GUh4N0uo6DeYzhrE084nonLcJ1mVM4SSk\noh14rmHvWnt83ZfosOA/QqrPLEz7eJMeBQggTV0lYm7X1lbB79DZNFj69XNfZaYgQ\nAO25Z7LKPsqm6Jm0kgp/Bq7Y9kpiMmoQljH12n2xvlplii6ae+IQthdyCGWL3qWbB\nAL/VGV6/1I5gn8GwADoYAc3Zhb1ex1pfVKwidE9xXOPskqKkInalEosFTwgYyA+E0\nBW9Kj786r8JzI5bAWhaMW1ei0IA5UorXy7U6jWRQ4oC6h08pDuRyM0Z0UCkHuYyvv\n+Cj6E6rJ+t0I3Tk/dkWASc2wVF8yYw/GQE8eXgl0v00r2J1nM+4rtMHd1OsVobY2N\nS1a6KFbRccJOKZkVnsrBqa3ekFhpyBBVIIHCIgM4bGLuWo2T4GoDGDpEG0onCI6DK\n5gu+rUUN5Hh8CAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:35:16'),('probe_url:1:https://friendica.free-beer.ch/profile/atterratio','a:15:{s:4:\"name\";s:19:\"Atterratio Aeternus\";s:4:\"nick\";s:10:\"atterratio\";s:3:\"url\";s:49:\"https://friendica.free-beer.ch/profile/atterratio\";s:4:\"addr\";N;s:5:\"batch\";s:45:\"https://friendica.free-beer.ch/receive/public\";s:6:\"notify\";s:61:\"https://friendica.free-beer.ch/receive/users/03fb018e2d4e7c21\";s:4:\"poll\";s:51:\"https://friendica.free-beer.ch/dfrn_poll/atterratio\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:46:\"https://friendica.free-beer.ch/poco/atterratio\";s:5:\"photo\";s:83:\"https://friendica.free-beer.ch/photo/custom/300/753.jpg?rev=2014-04-04+01%3A23%3A23\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA3WPh9kAFIo7UiF6x3CDLJ\njbft9UQmxaaYeN58z+/bZzsfZZCi2g902CpsQKTMZYtNyz6/Exl2H/TyvAyeQKoqL\nQ8men8djmleT+svUnahkq1R+rz+cjW88Gqi1C+SLrxl5imWFawjJEENewiCFRqUFZ\nDQl2n5mrGMg27QgkxHiWgrgFTDxAHqKU26d5ecRzNYp2aw/MFn7UGtH1GMP4W9Vza\nJGU/SYp3kLFaKx012UY3zols/rdfh3qBejJcQ37LEbsQLJQpW57knijZIXKAoEL4u\nXnih7iNxffPFrZKh88I2WXwOw31OwJvYPvNtZCgZV4h0zcVpvjLXSp9nMdNK5fgd6\nZ7ng8ceFSIWo8txbNPrF8VIoVgUd5TsO+LNPBg/vV5s9ML6ykXXqqe+a0XAwVm0NR\nrOz9dzG4FxpKtWpXxoTcIuO9nWTvgTypQu+Dh2ZX1672Huq95XwipnmqYlGArLFRb\n8YLnoJuMxZQD0u64C5W7IRbexbZDMU/7ohmhulbVAXpbqWJTM0mst/H8rH4ncgAPD\n/slhwf1xFZv5bvfolDFJJ6v5v7qyV8YPwjtr1Xu9dt9s9XnFb8ios3spJVUURw8d7\nMRx5nuRwIJclC5iES7ZY7t5/O8BWtE85OKeYypJ0sLLi8U3jGB04VNe8PQl3vUUI1\nSRJGEfdmi2zcCAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:35:28'),('probe_url:1:https://friendica.free-beer.ch/profile/axel','a:15:{s:4:\"name\";s:4:\"Axel\";s:4:\"nick\";s:4:\"axel\";s:3:\"url\";s:43:\"https://friendica.free-beer.ch/profile/axel\";s:4:\"addr\";N;s:5:\"batch\";s:45:\"https://friendica.free-beer.ch/receive/public\";s:6:\"notify\";s:61:\"https://friendica.free-beer.ch/receive/users/0f242c9afb85a717\";s:4:\"poll\";s:45:\"https://friendica.free-beer.ch/dfrn_poll/axel\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:40:\"https://friendica.free-beer.ch/poco/axel\";s:5:\"photo\";s:82:\"https://friendica.free-beer.ch/photo/custom/300/61.jpg?rev=2014-01-08+17%3A14%3A05\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEApwqoTuYNgurcWlcSnqTYD\nYC7ikFuaHly3czgi/G1TeSYAEiApBcKgj9rbe3mAN3iQGQTbxFJBr7anrTThvkbZ6\nRkHTFvU2wO4h/YA9yFTsWPzx9Fmnm8NfO91fuHtyTbbPpcvMeLkRCukpv5nwBvO17\nHze+lhSUiMAzdkOgYgsOE8A9mPuSwVXRLYnpiBRJIpN5OsY4TOwNHQ2kECg3htXrz\nzmC2UtNYJ9Smq65cJIQ7Ic4AHfSsEROdqNyy+LAXeQVonWWFXduXlRtj3Ka7IevX5\nCMIESRNuRBDkeTGVdgDKxwzQind2wc6zH/WChbns9Rn/QsmDVPD/roBT/mVwyYVTG\ns0/Bu+qt+4bxL4cR1k4WvitjzM14w7fZ3wMX0s65V5Y5ecke4Cwdj6tmVLAU1YNNo\nCer1zRqO0ZF4s35vhqn1j/KH1dvMTsDVfqIX/9E7nhEVBs1DiZRU2tCPdr6t/vWFY\neu9u2vHInj/D4DiBRJGwZZV+Mt72eXH2wvpu4ctsgLhIJ8Y5AVGL48RnMZ3WFHa44\nvr0ErqrFZT99iC0HLVruGyzVz4sKgQvglbKPFRSZ5b9QZDQYIEOswxVX6sZRmWART\nvkNYrcW/59kWoRE98+NR8hoHM1rUJQCKicwVQTxdIVRYFI7nPYIqLz7uXtYM1ze3D\nOQ8Zb4fT4J78CAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:34:49'),('probe_url:1:https://friendica.free-beer.ch/profile/barba_negra','a:15:{s:4:\"name\";s:14:\"Raphael Vieira\";s:4:\"nick\";s:11:\"barba_negra\";s:3:\"url\";s:50:\"https://friendica.free-beer.ch/profile/barba_negra\";s:4:\"addr\";N;s:5:\"batch\";s:45:\"https://friendica.free-beer.ch/receive/public\";s:6:\"notify\";s:61:\"https://friendica.free-beer.ch/receive/users/f78495cc269c58a0\";s:4:\"poll\";s:52:\"https://friendica.free-beer.ch/dfrn_poll/barba_negra\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:47:\"https://friendica.free-beer.ch/poco/barba_negra\";s:5:\"photo\";s:83:\"https://friendica.free-beer.ch/photo/custom/300/772.jpg?rev=2014-05-04+03%3A45%3A51\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAtiW9Beu8mY3QXTDfRUymS\nllxAPVMyUbDvscKqlrqH1EWze/vjnTFC/tTnhIG2gnMeNPfspIVu0ue2uoLudUy3M\nZA4Z4zkPkhZKQHAgyuTk7rminvbYOl7890LhEje9DYK6fv+lUmp2NNssgtlSIx+tz\n2wxLK5kei+2PPkwdBOsa8fyVGwQoP452SXNAxq2Db1SSjo6R8MSjOpPkpbYChJAvd\nO9ICOilfqlQYlGBFqnccOJIar/kQh8JMiS2VdVzTbW0P1rY+IQo/VQ/FfXN+/4rxW\n0b2qkHeRzixMBMMT88qCE567QXT+9J5OLaAki6+0rNTGhqUxXb3c0Ir7jlfwqbXoF\nGeTClAr+eARKoqDENR8HqbPsqdEHRleWZtbCyUTuudZMHZsjObYXpR1bHwh2Kv348\nAzLLAC0HC6oiew/+n4aQWYelClKc1uhdGPI6FKFfoRb4iNnCPjyBHSGcISqriY/so\ninYlF/KICQaIE1QAsUXs21WtsoSc/RcrJScl2PVzlzRWcM2FepgemU50m6RDoESZs\n+ZAht04PNqcI0joygFUodwvD467FUL8INEAZq5ozFvPZlvOchFVZLcUJRbnhyH/EA\n6rYlDSkTg4IAeUrB2D53GQhAQpR9gnN8A8HJGk46C9qb+f/AvAm1mrME5q3N4wdWt\nRiNq4XvU8p+8CAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:35:03'),('probe_url:1:https://friendica.free-beer.ch/profile/bookman37','a:15:{s:4:\"name\";s:13:\"Jerry Briardy\";s:4:\"nick\";s:9:\"bookman37\";s:3:\"url\";s:48:\"https://friendica.free-beer.ch/profile/bookman37\";s:4:\"addr\";N;s:5:\"batch\";s:45:\"https://friendica.free-beer.ch/receive/public\";s:6:\"notify\";s:61:\"https://friendica.free-beer.ch/receive/users/95ff0bcfe10da7d0\";s:4:\"poll\";s:50:\"https://friendica.free-beer.ch/dfrn_poll/bookman37\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:45:\"https://friendica.free-beer.ch/poco/bookman37\";s:5:\"photo\";s:83:\"https://friendica.free-beer.ch/photo/custom/300/651.jpg?rev=2013-12-31+06%3A49%3A25\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAphaYNbY9PzMVFHyXMA4DQ\nq7W+djSkqUa7raSLt/yJqaMVJQlaJEWiP2jPo/kcKDovbj0oUclih/BAmoXNr0wR1\n370q2P3Fmi5+P2i53dM+nj2o4Qy8UbzECb9bFexOdDWtBxBa7PqgnxQvS3uAeCQE4\nzGI9fqc+HCmAOSWrU3JB0x6J9LIqupda9KvWT/kvWvS6k7Z7Ssr44A3QS6AKGuAli\nTlNeUVhNKXHM5aBNDVMBZ18/tTEyyeOsJFs0RLFhZZwkNBLctBHyMsB09exY/wpf/\nkn+sbZf732Yy7AEeDMT+GyeyAPeEvXnnHbKlmOZSYL8AeNa+4PZN/cBERzxu9z508\nxJQzoWpyNZN9I8B6pNhaGT+0sHrPLCvj9M+ask4WglcGZxggpKRtGRq8nC8k87IaY\nouWOuq+dv/la6fIkIYtrkHgBy2pRa5E1foABzWwuv/5TlIxdNCtMDlhuAEqjfp0F2\nuziIxJw0TAatybJrxK0Snov7DxLy3Xeta6Wx7wrr0npA6juFLG/ivgztkN0z/qUJp\npeo5n6J2dX2yHRiZczrmc4iw0f2dv1oZvPFzSYGavqzvKVvPCM71YBULzsJquwq/4\neQA9Rh6BNhYpMVhUrKCLoj1Ig7+oV1rdZ5axUPbtO0sCZJJrSRRBqHk0lgTNYZrea\nR85AHyLEibz0CAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:35:20'),('probe_url:1:https://friendica.free-beer.ch/profile/border','a:15:{s:4:\"name\";s:18:\"Frederic Guilbault\";s:4:\"nick\";s:6:\"border\";s:3:\"url\";s:45:\"https://friendica.free-beer.ch/profile/border\";s:4:\"addr\";N;s:5:\"batch\";s:45:\"https://friendica.free-beer.ch/receive/public\";s:6:\"notify\";s:61:\"https://friendica.free-beer.ch/receive/users/c04a69f1eff6d290\";s:4:\"poll\";s:47:\"https://friendica.free-beer.ch/dfrn_poll/border\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:42:\"https://friendica.free-beer.ch/poco/border\";s:5:\"photo\";s:82:\"https://friendica.free-beer.ch/photo/custom/300/23.jpg?rev=2012-06-01+02%3A24%3A09\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:272:\"-----BEGIN PUBLIC KEY-----\nMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCqyK/r0Zj3HeP44zwghs2NN2szF\ndgEGz7jGS8UbI9FUh/f8kRdeBQgg2h4bvGoIaQ+QevHKeMsTzo9tDgs13jFop6EkY\nB2YR6oX6g5XpCGWoWhjV/s/BvOosQZkncXSIFr9M+f4kcQMrAROXnHVIS8mEDdf1k\nQGsBEy2ng99kTtwIDAQAB\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:34:47'),('probe_url:1:https://friendica.free-beer.ch/profile/clandestino','a:15:{s:4:\"name\";s:16:\"Philipp Obenauer\";s:4:\"nick\";s:11:\"clandestino\";s:3:\"url\";s:50:\"https://friendica.free-beer.ch/profile/clandestino\";s:4:\"addr\";N;s:5:\"batch\";s:45:\"https://friendica.free-beer.ch/receive/public\";s:6:\"notify\";s:61:\"https://friendica.free-beer.ch/receive/users/ecd38c90be136819\";s:4:\"poll\";s:52:\"https://friendica.free-beer.ch/dfrn_poll/clandestino\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:47:\"https://friendica.free-beer.ch/poco/clandestino\";s:5:\"photo\";s:83:\"https://friendica.free-beer.ch/photo/custom/300/621.jpg?rev=2013-12-14+11%3A09%3A01\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAs8fpI47RU7TvUWHp+yOw0\nvnONmvMg/yOsm84c/zBAN+cazxo4SoJtoSHD71txQ/9DqvwwYTTLUqCB/DU7fFaZ6\nvhvtTWp1s46fUbiX++MPBrJ+QGLtuigwp/I7oEf7FUtoUOeyn7jsC2mS+h2egzVk8\nqF2E5/npPB8qwgc4wpTUArut4mbdpkAYFeMWP/Vj/h37Wv/Lm9pZCqw3bYEk9eXXi\n7VhwKlmIMSgvthdqNsv6ucGIhG183xlp33aBBsE4YLJN0A00u44mTI1tuoQygoPDW\n4JMdNpwF3Ht3IIvnZhgCqQTHwxrxwPJN1lWtayoMOrES5m0cMtl3+Cxh44d7a7JPH\nFNaORDJttT6cg0ewVzWj/tW7+FIi4monBxo9bBsDxye3LxmNugpyj4O4R64vGAQ35\nEmPSDDYeuSMF5/ND1eime29U62Is4T4G0Ijesxbh9a4wJJsNucgN22an7MAap4O4S\ndeJEzOPefq3V46oKEFLf31HQLAl4PrMa+q7g793eerzyH1e9vKZUJkJ3wJJZPiI6z\npfyEZ1xE7Fj5/lOScj4B8CW6v1Zwz2KAz7cRqrcT2EvFFfTUcLqUh2Igz6ppx6gdp\nsAyiigZOKQbgMj9goeDhneby1E1Wci+N0WfbcRKtlGx8nkhBMKD0xZBolYFvRWW/B\nqJaiA58ig9ZMCAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:35:18'),('probe_url:1:https://friendica.free-beer.ch/profile/clausmuehlenkamp','a:15:{s:4:\"name\";s:17:\"Claus Muehlenkamp\";s:4:\"nick\";s:16:\"clausmuehlenkamp\";s:3:\"url\";s:55:\"https://friendica.free-beer.ch/profile/clausmuehlenkamp\";s:4:\"addr\";N;s:5:\"batch\";s:45:\"https://friendica.free-beer.ch/receive/public\";s:6:\"notify\";s:61:\"https://friendica.free-beer.ch/receive/users/68eb750fc6aa2080\";s:4:\"poll\";s:57:\"https://friendica.free-beer.ch/dfrn_poll/clausmuehlenkamp\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:52:\"https://friendica.free-beer.ch/poco/clausmuehlenkamp\";s:5:\"photo\";s:83:\"https://friendica.free-beer.ch/photo/custom/300/368.jpg?rev=2013-06-12+21%3A21%3A07\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAxIG0HqsYAmnOmbgTLJrp5\nOuddMR6zMMn80Jnwigo7KUSGVBh00xJhemdqOQ8W2Z6iW5QiyuqaqLnVgIjLZTN9s\nJT1Ec9j5dhRoivmINT14juk/ZBDSEhkakHrMm9aO1sz2jpfpEqqUegbI1r7D5kHMB\ntsYiMHK8UkuZ9b97GntbxqhS1UuEmiomROn1T9LpcDAifNzo02UkHKRoRXw43Mugf\nQIpVQunJkMPbgPUPme3QGjiqlPzsLIHXxa9jsz91rzTvPRO/DvAemHEgokjy2zS5D\n5VLX8qa8jMKRu5AChdhDg7sTq0ra7gTkLjDbCptOCukPwWIDlRIQ1CNt9cYVa9VkM\niNgLYj1B9xD+Uh9xo4n6yIWx2Z3/qO8E17Iv4kgem65/XAx/0QRwivN8+RfKEL2h4\nP2MbhyJgELeHUyOEFVoV5RdzhKoa3VF8SeMUvFmDPV+ai0c2ergTQGckFOcCScH14\n9DTwLucYyyxHRqLeIp0q8SuA91/2ij8YsEC4gN95JxGnmgCLFiCrHvaF4KvgRYyfQ\nu5ULqoVtNrjyu1Tp4lD1fB+1VUuGPz1KBBhbiuSVHLvRANOi+1aRmYBld88jh4m+S\nW03XVS6UyTafpcE/I2ilPwXPHL6o2AseBirDlZZIqWIaIFPNjLt6uIZVvJQHoYnmj\ny1PrxfRFR51cCAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:34:45'),('probe_url:1:https://friendica.free-beer.ch/profile/csolisr','a:15:{s:4:\"name\";s:13:\"Carlos Solís\";s:4:\"nick\";s:7:\"csolisr\";s:3:\"url\";s:46:\"https://friendica.free-beer.ch/profile/csolisr\";s:4:\"addr\";N;s:5:\"batch\";s:45:\"https://friendica.free-beer.ch/receive/public\";s:6:\"notify\";s:61:\"https://friendica.free-beer.ch/receive/users/6dca8f1a80b5800d\";s:4:\"poll\";s:48:\"https://friendica.free-beer.ch/dfrn_poll/csolisr\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:43:\"https://friendica.free-beer.ch/poco/csolisr\";s:5:\"photo\";s:82:\"https://friendica.free-beer.ch/photo/custom/300/22.jpg?rev=2012-05-31+23%3A00%3A24\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:272:\"-----BEGIN PUBLIC KEY-----\nMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDDWxDCP9Fb0YzaoKXKiAdi/Mk4w\niLgACnLClW1y5HOh5YKlANfJwRISdUglzzFV7n8WcTd38fg7mBkBXq1MmEeLqMbEQ\n/jzplWmIAm+Vfh9sy6DE1e0gx9zS/mKUflyv+fmTFTc8s5ZJOfWI73CYelyznUrNs\nbXGwjTXESr4p4EwIDAQAB\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:34:46'),('probe_url:1:https://friendica.free-beer.ch/profile/d2o','a:15:{s:4:\"name\";s:3:\"D2O\";s:4:\"nick\";s:3:\"d2o\";s:3:\"url\";s:42:\"https://friendica.free-beer.ch/profile/d2o\";s:4:\"addr\";N;s:5:\"batch\";s:45:\"https://friendica.free-beer.ch/receive/public\";s:6:\"notify\";s:61:\"https://friendica.free-beer.ch/receive/users/5cfca8f65062b6cc\";s:4:\"poll\";s:44:\"https://friendica.free-beer.ch/dfrn_poll/d2o\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:39:\"https://friendica.free-beer.ch/poco/d2o\";s:5:\"photo\";s:83:\"https://friendica.free-beer.ch/photo/custom/300/673.jpg?rev=2014-01-16+14%3A57%3A25\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAsHUjaV5/pUcQbQWH/xg77\nZ/TtfZ2J8B+VK4eTzCzy3YRrdkmILcN3s09Cj6p0MAZTEOQ7vCYadU3lFJNaOvKAs\ncVWjwBc48CT5Qf+W7TxzrjjwmUduHLpqg1yXVfiW4QcWUQwLxCGKpiebkJe3FXRKK\nE+YnNaYp8TNu1GRCyyHZrZAUXRU+xxFCvdoPCLYAaDk7w+URaPPZ/stSJOxO/Dghp\nnTiBbg4gCtHpq6h/0PRWE/yAFuVGO+9TP3+ybdOTwEp0pdxqkdy4c2uuPyRrrQqJV\nI5WHU/kTG5uO2LIiamxyW6d0mjWPNxHjHl8xdpadm3BI6SYpUl/TxKrYsL1lVQSX4\nDnAjm5YshQFF320FKIFad9xsFfVGTD5klcyuw4oa8XJp286yTewfQNv7Dz84CJEUQ\nKQu/xo92AOKInmsDMSJYyKyhaQ3rUmsOYk/ki17sTN/qTFffzlokqWhf+lEVy+IkH\nti7b/J/NYOps2Q+MgfRvtj9uCuEZL/zLbHClBW2fYWXN+f7NFuWDUyH/3l1IevOD6\nQwwcPlY9gcCrX60FEHV5KLcGiAM6KdEzoEtqFB44MZrDVns5HshpXjB2VmSQSOaVY\n9mMTeyUxDW+IERw3bgOLlA/7RuPBVrrOCSw64bxGZJ04Anutg9sjaxYdP77B5yPTm\ngBxaHHouureMCAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:35:21'),('probe_url:1:https://friendica.free-beer.ch/profile/derhuaba','a:15:{s:4:\"name\";s:6:\"Als Ob\";s:4:\"nick\";s:8:\"derhuaba\";s:3:\"url\";s:47:\"https://friendica.free-beer.ch/profile/derhuaba\";s:4:\"addr\";N;s:5:\"batch\";s:45:\"https://friendica.free-beer.ch/receive/public\";s:6:\"notify\";s:61:\"https://friendica.free-beer.ch/receive/users/2e4c11f7486793d6\";s:4:\"poll\";s:49:\"https://friendica.free-beer.ch/dfrn_poll/derhuaba\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:44:\"https://friendica.free-beer.ch/poco/derhuaba\";s:5:\"photo\";s:83:\"https://friendica.free-beer.ch/photo/custom/300/842.jpg?rev=2014-08-06+23%3A24%3A06\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA1YNrfi6Cz+owdvH0+0+ca\neJVf23j4wuuLlOdBZ5r4x6JXhf033s6c7AzmXqsKDWNPVRlc4oDCVGxgXQXXb9EVv\nmMm8p6H71+gbdAYG/gsWhejWngjSSGSavCMWsXbcY+H3yUowXdCGg9WBCHM4AnU+Q\njHfp3qU/WnGIHx4XEos1agBvhhlsswDwvml9qnyYU4UFkuwiCV7Fk8xSZX/gCURup\n3nn/81Sw7NPEq5Mu/a/wWDT4zcvpMLGIZqlxB991CV1nBXJ0yiy1cxnyAF6N8dAP3\nA+7y5p5k7dbHyOFxBpI2WD+P0/qXLqoLvNcQT7nEk7WBF1UFlGIUja6acP9EsxBcQ\nwV1miPhNdsCKSo5Zytg+LRUZ0CLCG4eIvv3fy/pdxq9djLxohcE3lI5Orcbtp1oQi\nHjwooHx1bHJBtXGEQAZ+fzIH5kPlKBa53mFCp/DOtvkuHaft4lmSMho9JH+fxCvvl\nZ9JHdmxdtHcN+mCy4ZlIezQShBkTtQ/5t2XwPVPl/B4o3cFk9jHoIA4xZrWhnpPBq\nol2M8eL5wvWoEGu5MnHm0HeR3lCfkQGmUumkyeufdzwUzYjgEV/zYN9GzPsLKZgAV\nBVkZURl2zsNf5Wic+bvNtJGhN8nPrA2A/Bnku8/ZX43fUep3lP/EPfUa+hIuVOLre\nRlZsm29mBcQ0CAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:35:05'),('probe_url:1:https://friendica.free-beer.ch/profile/dr_emporio_efikz','a:15:{s:4:\"name\";s:25:\"亗 Dr. Emporio Efikz 亗\";s:4:\"nick\";s:16:\"dr_emporio_efikz\";s:3:\"url\";s:55:\"https://friendica.free-beer.ch/profile/dr_emporio_efikz\";s:4:\"addr\";N;s:5:\"batch\";s:45:\"https://friendica.free-beer.ch/receive/public\";s:6:\"notify\";s:61:\"https://friendica.free-beer.ch/receive/users/91d4366d0dd46528\";s:4:\"poll\";s:57:\"https://friendica.free-beer.ch/dfrn_poll/dr_emporio_efikz\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:52:\"https://friendica.free-beer.ch/poco/dr_emporio_efikz\";s:5:\"photo\";s:83:\"https://friendica.free-beer.ch/photo/custom/300/108.jpg?rev=2012-08-17+01%3A48%3A09\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAuJq4dSVBCRYzbo23viYoK\n1sQadX9SKgeuPhPnUCLozW/olBcAjRZjm1pxhtEuh6ET6si8JUT6gqtarvnlC1kxe\nynErCrrhvmgJgrAqEUO4jUpg0QDPDaWl/lisu/K2WEdEFm+2sfQ7NjMm28YPy4yb0\nt9ygsLkU/YEVuIV47csfarBNbTPsTwZvYDCLirbYZIFA/Lc5LxdzhQbGWIsenGJ2F\nScRg2bbf+Z9QJj3K3aAuVTcmXKvZB6Z5uEaIOEBLpM021JNAJGFW6g2H6W1Vt6QbB\nWw+46va7j2CBW4UfrSlR/owkz+9R4P65xyrrZ4TOYDBUx9YD8fVEzq39Lp+esDMDd\nmyuf8ogcRRQUUf5bt2urD/QoYBaBq5WEv7AvhpChy5wEF74PX28aK2whguEEwKlyN\nZJoV9LZ+jEk+jMpspECR/yJdAf1ydRSzXBE7w4FCyLTBGYVQcK9HJsiKIXR0Qup+p\nWRyZpKumG42Z2YXjed2ykD6qTgGY2dHK6o7a3pm+4LvByZz6pnqOYwIbYn/CUi3v3\nFLkKVEyZgstuGvsADfTL3lKM5HTAl6gxm+tVI4e31Il4b8tyFTHGg8PIiqWkHJFaW\n6ZpTsDGX4QmB0cmzcv8IDEVMyuiaYWXocaX8fG03MpWZvcOincKsVLtds9gg40dl4\niuflq4GUHKMcCAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:34:54'),('probe_url:1:https://friendica.free-beer.ch/profile/dysfunctional','a:15:{s:4:\"name\";s:6:\"Brando\";s:4:\"nick\";s:13:\"dysfunctional\";s:3:\"url\";s:52:\"https://friendica.free-beer.ch/profile/dysfunctional\";s:4:\"addr\";N;s:5:\"batch\";s:45:\"https://friendica.free-beer.ch/receive/public\";s:6:\"notify\";s:61:\"https://friendica.free-beer.ch/receive/users/06b9f5c967a6dfb1\";s:4:\"poll\";s:54:\"https://friendica.free-beer.ch/dfrn_poll/dysfunctional\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:49:\"https://friendica.free-beer.ch/poco/dysfunctional\";s:5:\"photo\";s:82:\"https://friendica.free-beer.ch/photo/custom/300/89.jpg?rev=2012-07-28+04%3A35%3A53\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAsiWLlO+FgyIn6OXbpPGH4\nFlCvD0yfYXrsdP+K9zpS+VVRreTxk/gpjBZUBsBc7wAXLtXwAr0bC7LYdQe1g4JyC\nKFyqt0A+vvy2LqnqFKXl3DjhUerfuh73ecFIeHgU2IwnqWhZZEVkKyjakNx9/JJDW\n2I8YqWdLgKw/NeilKc85wSkLkQh5yj5VmQ11yavY/WUzSBb8lpxL/0MuoZihnoRsY\nZCyGoM3OSnNXSbHtgkhgXROWdT8hoJ95i4YaiiRBuZbFBXnCOAk9CVFKtNm8j8sfa\n4zgLf9CJKr06zHW/GGFyVCtGcgr0i9EyCNPQr8oEy06FW2ptqwVAlr/vgisJpvY7r\n+MRObuCxTfSOFOdfQJEj9zHPjVcSPE9azwFv2ZcQQoNIU/mWElV1bcgiat3lV/eA/\nye1G5NjTmyOw5ATKFMRBMWBeziBgf1YVN3cAJT+5pfyWnAPoOdlZIcQbBloNI2Fkh\nMDnOhoQcd8l3DWy4brjSj7lQKrLO4GZSKJsD//RNwxo+4sa6tTMr9FomjKpOmXXra\nSWAgU4r69N0LRdZiL5kQ5Z72FvSgUztQyhS5JxHGb8/4iXqoEDSjvkG6X/dKyLL18\nzpKPTH7cgiaGbz53/EIEvnV0WjX5vKA9KRD0uVnWRS15LfColTptcmApBsDbBovAp\nm4LTJ8KpfmCsCAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:34:51'),('probe_url:1:https://friendica.free-beer.ch/profile/ecologielibidinale','a:15:{s:4:\"name\";s:19:\"Ecologie Libidinale\";s:4:\"nick\";s:18:\"ecologielibidinale\";s:3:\"url\";s:57:\"https://friendica.free-beer.ch/profile/ecologielibidinale\";s:4:\"addr\";N;s:5:\"batch\";s:45:\"https://friendica.free-beer.ch/receive/public\";s:6:\"notify\";s:61:\"https://friendica.free-beer.ch/receive/users/b0ebb244e15fb761\";s:4:\"poll\";s:59:\"https://friendica.free-beer.ch/dfrn_poll/ecologielibidinale\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:54:\"https://friendica.free-beer.ch/poco/ecologielibidinale\";s:5:\"photo\";s:83:\"https://friendica.free-beer.ch/photo/custom/300/118.jpg?rev=2012-08-23+18%3A19%3A23\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA4uz9XFXLE7ZyuSrEcALdD\n7NMiZaMQVTI/tM9Rv9QMaw1bke8hWVQ+ZT7leHFdv131fL8/DsOq6TWCcRz/xYJD9\n0qVBn8VgzNGqPfkzNK15mfSvqLwL2UCkdiR0GG0dBOtFkSpLVbMKJu33deKcCVh8G\nCJilH8XSMle6Fw8oHdaVXLumASHpZk0P6+qWMlJ4uoAYE3sep2OhX9iSfotPVj2H3\ncs18XHDLzwB5o9wzCM2VgZUOamFrKd1JQHJwDe1WDsoYoVPsMP0i94lRH67bW4/lk\n7IjjVq7Sk606H0jv43jlaA9K17vVjBrjUqG+fxvsnDUpc9uKVCQ7wtbYHGOSrs9WD\nIg8fJPIYDGU3ixhFelgduhoj+L/tn4xXAFxYkGpAR7OHzBE7ITip6OII41QcHyVQs\n5XQGWLl/HTFP1qZ7sHCXYqwu16si2eW1nS4gTfcUTYKUOJ9ssC/cOpWdIjo8HdSMk\nR917awR9fEMe3L2QAXAM82VrzXrOtxLb5m+TflgfjLzMX0/d2i55nbEaI2gHC2MFu\nzGxbrbdC+W2JIw0eOkaVBfi3aBSQlWwrU2dg6+Q2Z6P56qhwDtNEHTsdOPc4JS/Nv\nV6zq0wb+sm4aoSz1tJ75yYoZA2q6xtVt4An5RLp8FdRZ2ct+A3Kb61p6qD8Poba7e\ns1YH1KAPs+gsCAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:34:56'),('probe_url:1:https://friendica.free-beer.ch/profile/edwes','a:15:{s:4:\"name\";s:6:\"Ed Wes\";s:4:\"nick\";s:5:\"edwes\";s:3:\"url\";s:44:\"https://friendica.free-beer.ch/profile/edwes\";s:4:\"addr\";N;s:5:\"batch\";s:45:\"https://friendica.free-beer.ch/receive/public\";s:6:\"notify\";s:61:\"https://friendica.free-beer.ch/receive/users/517df4f697622d21\";s:4:\"poll\";s:46:\"https://friendica.free-beer.ch/dfrn_poll/edwes\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:41:\"https://friendica.free-beer.ch/poco/edwes\";s:5:\"photo\";s:56:\"https://friendica.free-beer.ch/photo/custom/300/1206.jpg\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAumv4COQgF70gY9hb0z5cr\nqtAdYCpFPQdRsaz/ND0VgAY8w6OZIInKsQ6vEKK+K+pCHlmyRHiCfG1pPDOrDnx54\nRLwRyJdL2ZWKWcRXhAPar+VPhI3t9XFyLdIzzWSUoRFbd/sQABXoAxrbefTiOljrG\nZtR+o5Bj34yH1C1lb6B726CSEa21LMPIYTee4JrPkbQV8AOMDYVZXECAXHKSi/eUF\nnqNSFycZUAZ6ufU5LvzphTyqWQ60ILqxkVWR3rJhAFVDgr17kF9lst/XWPIqCGd2w\nVUscmVjecTlhw13eCg21JeJZ67LWCLKBk7awe/GWOdPddHlciMwCPKVEeYNftEnfU\nr/kYFqEhAe5G5XuxIveX/mw+HYRSAEA2YAKKwPKVwXyhYCMHeFtKNermng7ufvu2z\nPLcrVsZXKnDs27I+zY9Thd3AowZNBK89LqvHzaDYqgKCIUYst1P+a7c8FkAPllyA9\nNV2rmWjJs5VXIC3VVA5VLQtFaDyNZ794Am09ga0vB1Jo3S/9qV1f+gw7xZi/3DGZs\nUspek4r0DCb0i+XqZjOLd8OVRFqjlPxvnkihZKGK+8rYQm2CpJQokcX6mQUINHtmQ\nWpRecfR9y9y5mNpCLEfBTRPBtKXoGSB9kknE6s6oeCC9t+4clRIxuabcNbRl26fVa\nhlOvg4k3Ze4sCAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:35:31'),('probe_url:1:https://friendica.free-beer.ch/profile/emberleaf','a:15:{s:4:\"name\";s:12:\"Colin Steele\";s:4:\"nick\";s:9:\"emberleaf\";s:3:\"url\";s:48:\"https://friendica.free-beer.ch/profile/emberleaf\";s:4:\"addr\";N;s:5:\"batch\";s:45:\"https://friendica.free-beer.ch/receive/public\";s:6:\"notify\";s:61:\"https://friendica.free-beer.ch/receive/users/0bd0e0e9de54bf70\";s:4:\"poll\";s:50:\"https://friendica.free-beer.ch/dfrn_poll/emberleaf\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:45:\"https://friendica.free-beer.ch/poco/emberleaf\";s:5:\"photo\";s:83:\"https://friendica.free-beer.ch/photo/custom/300/245.jpg?rev=2013-02-23+16%3A54%3A57\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAtxYBVedz2BQIz7aIfs6ot\nWmCl+2vtypan/5PzewOqQ5h244U6RZHY4QGN8hL7AhbEU5ggMSOO4hWK1n9JIK4x+\n7I/4NUoGU3f4YLD56v3VskUhnhSA5zsSsIhB3Z+qGqStG0gMZbJLYH7vPsEGyX8ZT\nrdCUWIS0wdeLgD5QWLyHFiRFo51a+EeklwptWSaJIELiPkhv0DERtZ5Bfp1gBfKbo\nAIINaW1nAroJibIgFjQhBpvrhvTqgxV1p9tX5+BPyWmg5gk51BafWRM9WPoP8ZMeD\ntaXpNJoe40LrMUR7g+NoO4phDtzUt4jCLXFdgEDfOLVk3fhai1bG0vbTRKVAN54AR\n+S+/JYlv6iTyweZt7riSNLfVpuwUZ1hH1E2bZ4/N/WUJB5wXo+BNymRzLLYUpVz8u\nHtAeg/ZsWn9j55RF//bZVjo40TvLAUdP4F3wE1E8TXBHkMv+ChqhuJmYIJIkjUOoM\ntdO1Zo0SL7WosW/LTMpUOAR/RYDwX9BAXehgY5TlP4PCWPUJVHTqsT1nllTS33wq3\n0AQmSSdSg+h5oOeO3sWjZbsiNqRAO5iM/unB+vkmX+kPGrGXw2rQgn4afsr06Y1NN\n62Gq8ObpMALsY+Kwh7jQrrjpMO873H+gFFEH7GgMGKjeMGxDbkfuCGIU5Fl1a0yR8\nPAbBAsORC378CAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:35:06'),('probe_url:1:https://friendica.free-beer.ch/profile/eyal72','a:15:{s:4:\"name\";s:6:\"eyal72\";s:4:\"nick\";s:6:\"eyal72\";s:3:\"url\";s:45:\"https://friendica.free-beer.ch/profile/eyal72\";s:4:\"addr\";N;s:5:\"batch\";s:45:\"https://friendica.free-beer.ch/receive/public\";s:6:\"notify\";s:61:\"https://friendica.free-beer.ch/receive/users/c3ce7e628bca902c\";s:4:\"poll\";s:47:\"https://friendica.free-beer.ch/dfrn_poll/eyal72\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:42:\"https://friendica.free-beer.ch/poco/eyal72\";s:5:\"photo\";s:83:\"https://friendica.free-beer.ch/photo/custom/300/872.jpg?rev=2014-09-03+22%3A35%3A36\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAxRcIcEIF5DJyYQJXMA/EY\nRhjLRohuLLMhzCAQpgrPjKUhs02C3BwDY74/FulIhQXxUX7yWz+rYIgwXCLp58kPb\nvZBKAgTsHALTfqZzPu0PdrZ7rDdNuMvqU9FXe2MMM/bfkl83hySDLppMMv7567wGU\n3FxGRzHmT+y/iQoeB58J0JVJuY0YxUS2LkNT/zL1dHs0cYaz+DOWrs1GNujHam8s4\nGdOcavbKEx+MqGYWQsoJBMa4xw2GulsFlDn7CfxGq5xkU1IHgQ1EY0GNhQKplmAx2\nDGYBaCSJ5k5r8zHuEuHC67h4KHdqbXn4CEEZjtzPF9EN56RoG89f98bfIhfFt5LcR\nZ18B5vp4J1T5zXG+GlkxyDHTYXctT/27H2fLBdStH5YJyn+HZU2Sw2+oEXrtd2zMH\nT5hHY53gGZ3JGcXs0+8JMkkEoE4V76uyiR4Q5QRKGRuHdIBOraKIEcXzIttP3BvnT\nu7o5raPKOO4w0LBlzTcWk9MDIZjvhhM+U3W0wsRJ0/QGgvU4RT5E4VeZHKI8sR2SF\nqfixKa4BjodvdNDgEo5DemfgyqvhdXSqTOdPncOFJmKLl6IA4/tWHWoPlrZMuFdYW\ncxpZBU86MwyVY7Hfty4aYjBKi7nZpG2yQSfhF1YCAtHWDnU/901V7XD4j4rAz0Eh1\nm/J8uTiju6ecCAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:35:30'),('probe_url:1:https://friendica.free-beer.ch/profile/funkymartin','a:15:{s:4:\"name\";s:14:\"Martin Neujahr\";s:4:\"nick\";s:11:\"funkymartin\";s:3:\"url\";s:50:\"https://friendica.free-beer.ch/profile/funkymartin\";s:4:\"addr\";N;s:5:\"batch\";s:45:\"https://friendica.free-beer.ch/receive/public\";s:6:\"notify\";s:61:\"https://friendica.free-beer.ch/receive/users/1dbdb91a2060bcd6\";s:4:\"poll\";s:52:\"https://friendica.free-beer.ch/dfrn_poll/funkymartin\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:47:\"https://friendica.free-beer.ch/poco/funkymartin\";s:5:\"photo\";s:83:\"https://friendica.free-beer.ch/photo/custom/300/557.jpg?rev=2013-10-04+06%3A33%3A29\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAlt3NZ09UmvP9y/O8wdPlu\n4Iq6P+yxQuLuuc7ITiP10JGLJKruAGef9MDdJEM5zzkQS8U5+53ACAftaOn0ASkhZ\n+bg7/SgkBBEgGFt+bmpuvZfJmeQ8q1eirMdoE2AwZpiMHX8tKGZZyA1zefBpUGi8A\n6SuMNcAHszJficb6B0HSxnWdzB74I1aZrsWxRuNGtWfYGsDEQTQfXVzxVEekSB1ph\nIdgdt4IkuN1gtxcp85axP1QlYAJBNxILUKNIvSxCTYQKs7l1Chyx9mAH5Mc/8kz12\n1K89vOcYOcpilhlnG0aO68hpYiGvrBTGE6IcYp9f2ElHppn3JcCJm7BEzP88i2kK/\ntjOrGxXZ9YnbMISl+dz40KAYGsquw9mUA8ZLSX370eWJV66e5j82e92zkkdzrz0K1\n0tcgxlgPkSge/A9Uqbm5An64tyAoFDI0EBEs9F4zf743szM1h8hgvamOrUB9K48qQ\njG4Q3xWQXhASRhdA5kf7M75Pzj9A+9la9NlN3dnfn9oGpXuofR6sQDe7wTBxTp+Za\nd/S0rMuPAIzJq9ZRAWOCNxAW9GMM0yQ0lLUDzYdLgWOi3LWXVaYtHX3oBT3JRZIOB\nS5s4FI7JWmhLMkJ8vFPLfSofnK98nhvhbhNPtrL+LikO5PpoVHZqQF7uLw5e51QtX\ndi6vtg1hh+f0CAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:35:11'),('probe_url:1:https://friendica.free-beer.ch/profile/heindys','a:15:{s:4:\"name\";s:11:\"Roxana Diaz\";s:4:\"nick\";s:7:\"heindys\";s:3:\"url\";s:46:\"https://friendica.free-beer.ch/profile/heindys\";s:4:\"addr\";N;s:5:\"batch\";s:45:\"https://friendica.free-beer.ch/receive/public\";s:6:\"notify\";s:61:\"https://friendica.free-beer.ch/receive/users/cbc318c9f4be1d3f\";s:4:\"poll\";s:48:\"https://friendica.free-beer.ch/dfrn_poll/heindys\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:43:\"https://friendica.free-beer.ch/poco/heindys\";s:5:\"photo\";s:83:\"https://friendica.free-beer.ch/photo/custom/300/774.jpg?rev=2014-05-10+09%3A51%3A52\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAwOk5lDZN0XQF7eQwuVFMD\nutarxfUFP7o3wHxIBJ44hIUpHsV5gJNQsaG6AHfZbnrMHKHTaAQNUofZfXvYuiiNQ\nYbIZo/BTWeAuCyPCHOLbRQXSm8kSWsD16/BOFSuUj+CXTX1izQBLyZsXq+wCO46wr\n/2npSfgjIehJJr8sbNzxDu+aSeu/4vsajPJsdi4R4QUa88QEfVkvyffx3Xr1HNfT+\nk59nABrRD+M3BFfQsNBBZJtVT/qHhJvIkje/6DkKyjFy3VFB07GlhSFe7FUp/dIvQ\nYw8PX4whVZZmHTDHPTgJMWwgfNgQf3jvCh5Tii1QSHARXQgAX0bdrgewmUFZ+WHg1\nKlDxqhHFiM3rco2mC+mn+8hFiTFaQ45TAT7OlmCBJqeBXWXWV7HEmaUOGUxCGoHsJ\nJzq3OjFAVs52OYyHZf+ERF9La145qH+ssy7WX/I/gFrha79aoUHZKLyydHUoMHOsC\n1k10CcGUbO4N0++0srjFdVLtaYLNGBD3F2lbjmxFBgxtXaeOM6lT1iY44zN8C1Qpr\nwAzeG21SVFnPOyC0KsTUDAOvJM1lzfNhbAW7ZwXfZZMM9p5pa14ka7QU4dokitb2L\ntdcUy8o8FIWM2wVc8rP/NiscgaUPCYR0m9SuZolUcp+HUtBwbOhnLDV5oVsREaVqi\nJP/6mn3lZ+tcCAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:35:17'),('probe_url:1:https://friendica.free-beer.ch/profile/hook','a:15:{s:4:\"name\";s:14:\"Matija Šuklje\";s:4:\"nick\";s:4:\"hook\";s:3:\"url\";s:43:\"https://friendica.free-beer.ch/profile/hook\";s:4:\"addr\";N;s:5:\"batch\";s:45:\"https://friendica.free-beer.ch/receive/public\";s:6:\"notify\";s:61:\"https://friendica.free-beer.ch/receive/users/41b5ee1ff0572c15\";s:4:\"poll\";s:45:\"https://friendica.free-beer.ch/dfrn_poll/hook\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:40:\"https://friendica.free-beer.ch/poco/hook\";s:5:\"photo\";s:83:\"https://friendica.free-beer.ch/photo/custom/300/336.jpg?rev=2013-06-02+20%3A40%3A51\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAspUYbaIsiwH9Mz7oeHzjX\nPDFw+7cQbT+MaBHCc8qtuhZU0JxcQnU4F+2GZh1BrmEdXcOdN/bANmCO7DMO2zD0U\n6KHPPPktB3TD7p2DH5aTdPh18kVk/5FWVPAyX0b45fRSCggUKz3GEpiQ8ADKIS+IB\nzQsZUDGysTkuywoVBTacZO8J8FyQbG13i81p0Ga7O6Rg+en3ffCW403Kw2+PYyWJ1\nMiFW6h9eK+TOoA4pPtLSuCjsltNADLLCu9fCrzZPjKRC+ZNNIltAx++ik9ljlSSiv\nufdqs22CeQ+Pn8AkUDiKRUsVObi3DbgmYFN7jSdyIIOzdIX5pqJGbFFAj3EKkfr7l\nUrfVMB9E/EFIwPJasYaOMO+y++2GFfngRMcRKtvgInfFOOrpxgi3Fgb0K1A/hlEUM\nub9wLvGx8XPkh47Ypi3H582LwFj34NfRh898k56WYMP7J54k8Da3vNwrA6GTdgEFT\nTRfi0vaM0T1KXb2QaSCF+kV/x3lgC5UcE8riyhbBxJ+5oQPqAFfezZv/nRQdG/DCA\nYRPcZvljCMg0GT4dpPAzu55BpLKTrCg+t7xWCVlqFLlc6Q/BQwjDPOgj8NV4QEBeI\n0FdEFtKYuuvASC5UMHWAst5WqMWXvF/BYorNfyzk6yAMsAZFszmqsF5EkTfCMX9rm\nqXd0/VrIAntcCAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:34:51'),('probe_url:1:https://friendica.free-beer.ch/profile/ilma','a:15:{s:4:\"name\";s:4:\"ilma\";s:4:\"nick\";s:4:\"ilma\";s:3:\"url\";s:43:\"https://friendica.free-beer.ch/profile/ilma\";s:4:\"addr\";N;s:5:\"batch\";s:45:\"https://friendica.free-beer.ch/receive/public\";s:6:\"notify\";s:61:\"https://friendica.free-beer.ch/receive/users/f2d794d273152c9e\";s:4:\"poll\";s:45:\"https://friendica.free-beer.ch/dfrn_poll/ilma\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:40:\"https://friendica.free-beer.ch/poco/ilma\";s:5:\"photo\";s:83:\"https://friendica.free-beer.ch/photo/custom/300/739.jpg?rev=2014-03-14+03%3A41%3A44\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAw5ChEbjeimj04lu9MKgjL\nMxVQrytNGD2OlbYEpptsQjPjVhgbGko6qEutEsfReoHDDVIpRm3rVFiQCY755kG23\n4QMDxcwTCBJl8dCEBoSTkW9SU6b1Crno/YQH9zoacaLH7tNb6C9dzwHHlbtBIHs8N\nI/kF/cA3ntisyMoWqvCLxYvl9RKy5H/jyOKf0Pd8pORydUJmlF2NkVC+KVmymrJ2j\nd76pFXyWJWzGeCz+Eu3+OiWn4XGyQME3OkkMWIZqmB/msIgWhWrsibGKdVqqx0fJR\nqpeTSbaJIS5xckf+e80++ipASpo/l8s7yGjkc/11YYgtRveLk+CDDyOytKycv3KEG\nsWS6xsSsc/HvoNoDsIklWnCDRfu7xti2OLUzuVJ2XD6ZUo1hEk6KurHNQMSwYfZjg\nWzyBvm/MUhZ9uAHeq6vdfTxhnTgdLKpVdMQeWLHONAoBvK9zc3qi3rR+SJciiN5Eg\nwQY1uiSybTG90O9RvT1Ng/KwxoOyVsDa347uZRoI9CCYJgfiSafemHn0DNKYetn1Q\nEdKTJx42Tg/A7x8EvW7FuVchGvH4vdV0zrSjKVDEuptcqY27k2odcwndiTgylkEl3\nwp5im44HqqGx60HNYQ6T2eoeO1SM6wAflkQD68lIqKV7lKw0ynxM8rXQCVdapbir9\nb3zjH/t5fuaUCAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:35:26'),('probe_url:1:https://friendica.free-beer.ch/profile/inyan','a:15:{s:4:\"name\";s:5:\"Inyan\";s:4:\"nick\";s:5:\"inyan\";s:3:\"url\";s:44:\"https://friendica.free-beer.ch/profile/inyan\";s:4:\"addr\";N;s:5:\"batch\";s:45:\"https://friendica.free-beer.ch/receive/public\";s:6:\"notify\";s:61:\"https://friendica.free-beer.ch/receive/users/b11a008bcc65e199\";s:4:\"poll\";s:46:\"https://friendica.free-beer.ch/dfrn_poll/inyan\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:41:\"https://friendica.free-beer.ch/poco/inyan\";s:5:\"photo\";s:83:\"https://friendica.free-beer.ch/photo/custom/300/111.jpg?rev=2012-08-18+19%3A01%3A17\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA5PQCDobzIAJU8kIrKZtmV\nPyD9Lckhlkp+Av/XI5PWqWeOyh4R7yhQCctBO7WxLQTVwBjGDjAZlp+jKsl4+OLq0\nuqd42RhAK8eppWqS7XDjgOJbRXGzaHzmnqFkJsiRyALcHOARHEHrPm3iU87A410lU\nQ3JDmRN6dPIREU+I+ruDLhv8g638ORUa5HKuaShxv9mT9Gebeqn16IPnAhVoM0nAF\ncbQzR9Ej0dwVGzcHeslUrCPjGJVHmRRYrKNffcTykdmYn93LeFR/dr/OF1DNr/aBT\n2M7/Yb6mlEIRjJ38nCyKSTbcCVSZRVH5JYWng6MPT/ek7CFZKjM5FyhxNV11at0Iu\nmqRP5GsuUL+y4cAMeePkF0Sa7Z0smH85/UBWOI26FeMttUoMUk6lHLrih18vHQGh+\niv6WuVJ+8tJNuzRfXi7zo4S71Tfi6F9QcYYyu3HioX2dQggELYSUh7+vucjl0rbV8\n5BW8+p9iH3eId+LQqtUeuSyTATBj5lQfQKwtsg6rNt37nhhgkdouk/OZzXuUz9tiY\nhHmM0pWn7AxU7KZYEYl7M+4dT5bwI9/OnTvZEct7D2CG3Z081206hLyFFij+LOe7E\n99WKz0jeoL902TxCjhWe3j+VrnEoyzP5otPeJw5+KBEPw4RzbPiLeK8JSJ/s8g9He\nhPBlF2+X2V7UCAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:34:53'),('probe_url:1:https://friendica.free-beer.ch/profile/jan_sofasurfer','a:15:{s:4:\"name\";s:14:\"Max Mustermann\";s:4:\"nick\";s:14:\"jan_sofasurfer\";s:3:\"url\";s:53:\"https://friendica.free-beer.ch/profile/jan_sofasurfer\";s:4:\"addr\";N;s:5:\"batch\";s:45:\"https://friendica.free-beer.ch/receive/public\";s:6:\"notify\";s:61:\"https://friendica.free-beer.ch/receive/users/b17c740d1f8c5cc6\";s:4:\"poll\";s:55:\"https://friendica.free-beer.ch/dfrn_poll/jan_sofasurfer\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:50:\"https://friendica.free-beer.ch/poco/jan_sofasurfer\";s:5:\"photo\";s:83:\"https://friendica.free-beer.ch/photo/custom/300/246.jpg?rev=2013-02-24+13%3A17%3A05\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEApNV4Z2wskvZWGHJgty5iC\nTi178E3gmiIwuciq2QEq69J6SQFYt9wiKZsOYVYd73LBuUdVSXfYj2QYLUZ8kSKGZ\noTol03lHVY5QwlpEbMNwsgJMiSzwBCPEB89SN9bhU/6/iE4HMrLs5EDyALCN0tZDN\nZr1B7OoG2wAVFyQZLWp+2T5FNcFl1W9uttWSeyVYTz1c8Mw/3nzk2c0OQ48PqykPI\nlXVES+QAUwnY6xSIjtwpPOc7ReMlO1FwKkXj9etM8G2yiRW1WLnu/IvT+Xx8vr/WY\nj9H0XR+/B0PEaE2+gn8ffzOvwz84BCqZXmKdnyS1M26FwCvD6M6twhoGflIHo9lYW\nHm/IAR87KBfQvsswqZgpih8UkTbxiyzKpkVmldrmhkdSFt+jV9FjlnTx2gVGCeKeS\noJq1k4LMUsUEX3BdVrr2O2dgot287/LfliLqjsvakJsqJkgGoaysBR0mbxai4Tcbv\nvr287nfYe7aGsR390JM7eTNncbMMQKHcnWmfmkwEvSPWD9Ft+wuOoXIdnANSld2SV\nDjsgC0QBIgZnQEyIQl8V4Z4sizKcAF79OqBI++tdj4WZ6iC5xImpyx+ZfJJi8Gytv\npFmA3WkwGxGZtb9Wl2yv6ismsutjimN+6jLI3arKb11F3m38owNU1bWDUjpoNksJ7\nIVXGXAHNa57MCAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:35:06'),('probe_url:1:https://friendica.free-beer.ch/profile/jh72de','a:15:{s:4:\"name\";s:14:\"Jörg Hartmann\";s:4:\"nick\";s:6:\"jh72de\";s:3:\"url\";s:45:\"https://friendica.free-beer.ch/profile/jh72de\";s:4:\"addr\";N;s:5:\"batch\";s:45:\"https://friendica.free-beer.ch/receive/public\";s:6:\"notify\";s:61:\"https://friendica.free-beer.ch/receive/users/cf1f9b3f44a8ea19\";s:4:\"poll\";s:47:\"https://friendica.free-beer.ch/dfrn_poll/jh72de\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:42:\"https://friendica.free-beer.ch/poco/jh72de\";s:5:\"photo\";s:83:\"https://friendica.free-beer.ch/photo/custom/300/295.jpg?rev=2013-04-09+19%3A21%3A01\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAqlD0We9Ex8SKMh+tvZS0R\nQewKf86fczUro7E9HpcWdn3biu64/GRhcv2roZBiZin7KbGl8gJr+dHMxbCqdtUsj\n+kFxrbA5jAEgxktOdUxfkueCFYqAp32RUqWFxju0+KD8ryuz7bqQ3iCnIQAyhCqlL\nXiUDw4WHgfRf+Rz01DCGi0Yr8cqUaKMb0cPe+q+bmTHDZ6nZM7vj690YfNKiS8bRe\nuXkZNdmxeraq/Hp0GrNmmqQc61uI9h+3hhFEpNhpKr90j/AJw7Yls2WWlKnI1UqEO\nmA2OHpoFm3P9vh529rRtRp8sYM+u27oCRCpabgzFcLXjHUXpMgWKZF+1TZzF6roR5\nlfCKLCGtA8a/pk5nBuu30/sSxvp7/uBwDSrqG6pm500XAP3y/sy6eomU2Ntjg07Ba\nw/woZZ/AUBuxnmgV9HR61ryk2KbvWuCqkpCrxOt9F7b3Gr84hjv65OJJLJxmnKPvE\nOaZovlXP4t1aHd2QmmVY+7Lc39F/F1s4QMV2i6BwUl5s4pDyAYsPi1NaqzgyWEtHx\nnUvR87BqJmuWNRzN2CbJwdpYe152T/KcEwcl+qW3ZCoPFQAEcy18G2KUahJc0uO3C\nKsB8oFq29W3fm/HOP9fa2BhrLhlPwjZ+aIQ9/4Ufzc938KVHperCIHO/qNrLlr1Ux\nVzIwnIZtWHgsCAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:34:46'),('probe_url:1:https://friendica.free-beer.ch/profile/jooxz','a:15:{s:4:\"name\";s:15:\"Yossefa Mekyton\";s:4:\"nick\";s:5:\"jooxz\";s:3:\"url\";s:44:\"https://friendica.free-beer.ch/profile/jooxz\";s:4:\"addr\";N;s:5:\"batch\";s:45:\"https://friendica.free-beer.ch/receive/public\";s:6:\"notify\";s:61:\"https://friendica.free-beer.ch/receive/users/bac7439ce9fbdf3d\";s:4:\"poll\";s:46:\"https://friendica.free-beer.ch/dfrn_poll/jooxz\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:41:\"https://friendica.free-beer.ch/poco/jooxz\";s:5:\"photo\";s:83:\"https://friendica.free-beer.ch/photo/custom/300/413.jpg?rev=2013-06-29+18%3A54%3A44\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA0RLYasqvNH/TWfmRmanHo\ng1YDeLfis0D3UmjrTBqd7QkIPlK9dydQgaCpe94Qi0LdwDPuaxDvXViH5zXrvs+6C\nyfB+rbI+u1KCkzPwFs5FCP+SGsQg3yFR1amct6EdYQ9kNcum9tC2KUzZBcC9lRlFo\nZQ7aBmerA8RO1YIo+ikiQPFiz5lub5S+YjnjcBhln2QSGlWGQWJGz1mkFrO5H99w9\nUrFij0pYYq7VR1w4FSXNYrW1K9foC3P2em9rCHOwFHF8BDmqQ4gw97tLd84zt2x0j\nlgodAgtGiYUEbe60UO4/+wyQO/gdTye2kS2WGVx02lDilkZJWogCiHH5Z7unap27A\nY4F+jblWIEcukx+hMdRPHH6d8JFgJ1ux6p04TU0lr5oXzHok6wtCeI0nwVqP8bzBs\nhkFhpuhGp9GBXlSb2zaPyt7UXUCvwEa9UURlkP8RZ+GTn39DdZaLgsG1/DOT0zwof\nhk3q6jnvqLFwI2hB/toT3EgPvA5Bgc0UTxHxddw8jsZhj+KyUPGVCCUXT7EhXhQtA\nNNjBcJi/GzU7m+EobtDCQd43FGyqeyqAN96dncQk5AkhnsmHZoBPnmVZofpW3sgxD\nmLS36GlNGORUB3nJSjpBL7AlMcH636WCT0ZIP/0DPiwKRCcBJPJM6gXx9rxM4ztCC\nxls0RYEYFM40CAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:34:58'),('probe_url:1:https://friendica.free-beer.ch/profile/juansantiago','a:15:{s:4:\"name\";s:13:\"Jaun Santiago\";s:4:\"nick\";s:12:\"juansantiago\";s:3:\"url\";s:51:\"https://friendica.free-beer.ch/profile/juansantiago\";s:4:\"addr\";N;s:5:\"batch\";s:45:\"https://friendica.free-beer.ch/receive/public\";s:6:\"notify\";s:61:\"https://friendica.free-beer.ch/receive/users/b1948791a5a4debb\";s:4:\"poll\";s:53:\"https://friendica.free-beer.ch/dfrn_poll/juansantiago\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:48:\"https://friendica.free-beer.ch/poco/juansantiago\";s:5:\"photo\";s:82:\"https://friendica.free-beer.ch/photo/custom/300/94.jpg?rev=2012-08-05+21%3A12%3A40\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAumhu89KZy6cL/5XC4o7i5\n91XFtEhzlVF0M3PedN26d/7UW673ckOXxLlxkda2az4u78+eYsn4J/riNFD7vcSOE\nSABL8LjsL/eOQV5PK6zXaae8RAMd04OuLnB2xokhTWy5JSdTSRhDc+uH4YBCJFp3b\naWQoocBu8j2dbS2pfK7Tf0QxXGpZ9A1dwaHAOIJYLvuDiCFG95tgq/V7599FkjJBG\n0kwcQKBGyM5CAp0VYsbh6A6TyON8mnpaJrUzMBXvOIchVZlbyjFeVfT2I3vE22G6C\nZTmFF7wRDWA1cQCIVzWDBcrx+n2vcoWQhxEUaDNU61TOmY8idTl55vD9Sy83F/opT\nM52iXGSUxdImXgQy9Cm3k6B4gc7/y0awpNAp5ieVIhK++ali4vnUvVDTpxSQ00U6+\ntqHWoKYxxa0ZjzQlM/LnXhXHKOrGNnSY3WDdpmrSWEPLJGu0kviVNYlOUlrNO7RwZ\nPKFb4CfGN27lsfYRJS3tAt41DKu9jSAp0unSTQTZk31t/pxU6sONoUYOPnr9LhzVj\nsvKC99V3qNVfM0azOk93gDuiuR2rdw0PMyeK8IywunHegBO+IfboK8UzHECugrrdV\nPmhhcjNUXu2xScJ73Rd4XnXRDNrkbylcJTAy1BPkXTq4cG94QKqq69R1qVFe2oM9H\n/nOCKvERR+AMCAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:34:49'),('probe_url:1:https://friendica.free-beer.ch/profile/klampfattacke','a:15:{s:4:\"name\";s:15:\"FreeBeer Klampf\";s:4:\"nick\";s:13:\"klampfattacke\";s:3:\"url\";s:52:\"https://friendica.free-beer.ch/profile/klampfattacke\";s:4:\"addr\";N;s:5:\"batch\";s:45:\"https://friendica.free-beer.ch/receive/public\";s:6:\"notify\";s:61:\"https://friendica.free-beer.ch/receive/users/ab2c558e5acd04d1\";s:4:\"poll\";s:54:\"https://friendica.free-beer.ch/dfrn_poll/klampfattacke\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:49:\"https://friendica.free-beer.ch/poco/klampfattacke\";s:5:\"photo\";s:83:\"https://friendica.free-beer.ch/photo/custom/300/167.jpg?rev=2012-10-27+02%3A34%3A19\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAqbIJhut/KZj4r3Xu0l2/J\nuOyt/S6JzI9QX9HGTZi/6odlaq4ct2Rc1zyebxuBU9XeRNNxYQgf4Qmbs9JXO5nsG\n971ex6SSJZSK7od0HkA/SaSm4OgMRrD7cbg8plgcmzMvX4MOawoV3qa/zs0/IownB\n288wWm0yO7BJau7DNmJ3409oEqZafmURFWIJ8Z8peOjAMgtqLPewVgqimfCm1LFN6\nwyRbVNAFuPEaCA9Lc/x1RhpLVtQVojisskC4H2GYqVsUNV+/lLWQAQsmscoGmuxlc\ngR8Z09GMKPt1WzvqMqBH7zSblFzYa3jY069gK4n+eoUbixHyc2Z+WZNtxi/0bT8ss\nxCmXRQR9S72Hv5+dpolvYQRtHzj1vhUZ+SV9mOL0gFiKUxOhi1YlKjbgd7cS0cL1s\nS5zIFtBR6FeVVtv+Tl4sLyAFjjY0mEf7Ax6z4N/oKJHuO/hFT46xq+UboEnRwO1Ln\nUVjOd9GqoC9fQjIeGePDH/HBHPlaIhz7ri1RWYR30Z91ys27u2tyQ3YsZJDUYSfGy\nXbnq1VDvD9Fa+3RhWJa657edLSVolHYQn3x42+DMFRJZojj+7pnYSigYFduWWQGRQ\n42EZujVpwaMX/Fy0AiI4xLLH9w3YHi8XJAhwsaCuJkScMOhmEnT74EjZWUyHn8Kow\nnGYPVdg5cngkCAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:35:02'),('probe_url:1:https://friendica.free-beer.ch/profile/kreuzmacher','a:15:{s:4:\"name\";s:14:\"Markus Krüger\";s:4:\"nick\";s:11:\"kreuzmacher\";s:3:\"url\";s:50:\"https://friendica.free-beer.ch/profile/kreuzmacher\";s:4:\"addr\";N;s:5:\"batch\";s:45:\"https://friendica.free-beer.ch/receive/public\";s:6:\"notify\";s:61:\"https://friendica.free-beer.ch/receive/users/ef8224601d4a8016\";s:4:\"poll\";s:52:\"https://friendica.free-beer.ch/dfrn_poll/kreuzmacher\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:47:\"https://friendica.free-beer.ch/poco/kreuzmacher\";s:5:\"photo\";s:83:\"https://friendica.free-beer.ch/photo/custom/300/800.jpg?rev=2014-06-26+05%3A48%3A58\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAwzaZQbxuGxkxYb9iO3I92\nl5a/zaQHDUwJ6ADFj4c9aHZh7H5S8LKX6SE9qAdVghG5dXNluVEkbz7nxCccps+Ku\nP0pIep4WvtbdwR8DaglBaLJWawA74P/+j0WqEj2Qj+zyvK9Pp9TEWd1ec4esa1UMG\nEdi0nREn1TJ/dVarKtjus7p7fk8EqU8Zcw7lBVXIyngA4OjuC6ECk7bNQMU6QtYSn\nJlOpLHAshGkVXC0+7e0BwRKT0kJ0EukFOeOv+emxxQ7URJl5210uRQRXaVkzfg8SC\nl89G/Vc5pCwEEQzdeca3yrxCA5//R6qdsi4bXcGlFDNQO2rnTcp6YNG+bG8U1/Z7I\nPtxaDjiOQcgVODCCS5ru4PC+yqT5lpYCu4uDMfLqgVjWzmDZQ5AqM1YvvTFqgGV6+\nUEFrFHA9FYtVlnA+j45/2lkPYLLUogI28pLkE7iqwCo/NqbyJbavV1Wn3naqrWB4h\nHMzkjZQwV34bf8GcXnvZMi22aDO6e6L4vb1XlvvnU+HtuIR5Y24NCS+1iY+Er90I3\nDnKVw14wtB4e9dWgGKN6i5gg5c1BTC3nJx2r81lF7HA+y0TuJZHjBlY6JjqzoDaeW\n7u8Oy7pPQkt0ws9uL4sWncWaIS6QtRYPG7P81eCv780lPuiX9ohfMzWHjonaeFKVD\nKb496VQJarLMCAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:35:29'),('probe_url:1:https://friendica.free-beer.ch/profile/lechju','a:15:{s:4:\"name\";s:25:\"Don Viktoranghelo De Cuyo\";s:4:\"nick\";s:6:\"lechju\";s:3:\"url\";s:45:\"https://friendica.free-beer.ch/profile/lechju\";s:4:\"addr\";N;s:5:\"batch\";s:45:\"https://friendica.free-beer.ch/receive/public\";s:6:\"notify\";s:61:\"https://friendica.free-beer.ch/receive/users/e86e4102a95850b0\";s:4:\"poll\";s:47:\"https://friendica.free-beer.ch/dfrn_poll/lechju\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:42:\"https://friendica.free-beer.ch/poco/lechju\";s:5:\"photo\";s:83:\"https://friendica.free-beer.ch/photo/custom/300/583.jpg?rev=2013-11-02+22%3A56%3A06\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA1HiiNDc/MkhUbhtBvbq87\nw3cxqjkOz8xtVkVZ2njSGcsPLJm53ZLUG0wBNyAvxFvetl0Cxr7MG4W6y1lprw1DQ\nFz9WeDAOWN38OmzhTS7Ga2TI3h+rUXcQmc+GNxlBxRQT8Witp7XIc6RDIffnPRxHi\njrFMXQFqfIQvTJS3cBeoDTJd5RccUooH+TMBkPhQUVFiPm8jUauPReQAP1h3aXjOF\nXcRmbCYS3I6JPQRY2XQK7QU0H9lBr0x+IogYNSHYWt8Fwt/+sS1RHvKhtIfezVJmm\n919h7kGLKR0eJ5rWnF2hqk2HYP67Ko7mX+cNzw25Ldsa8uGsUkaqQPJkWW6G7Pezy\nhBX9n2A8TGdLr7YidpIT7ce3C+89w8EE+dNnEV2h1T8dLfeYWA7IAm1pX1ve4fp/C\nVeAQydbzAaNPEHANeaPNLpmYs12+P49hOxPg7sGdmOOQpU50V0sxajqB3b1kBX5zI\nuHJe1pAYjigYh3n7v+271SiB1Ee2pk+VCPHl1X1spW1QWm66EAJviFWSVKKx1VcVO\nmvEhtvlDKa0Xd3DzhzTmQHCFY+Yy/IeDF5RetoEINCKq0EVkPBoWoSuOPlzUbNtVw\n06Sg9SiTjYIf39cnRJ5eysr/ogBae3dGW/uSRGA2mc1yGbGajSrX9eAiIVtdsV2lq\na5J5D5KCz6v8CAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:35:15'),('probe_url:1:https://friendica.free-beer.ch/profile/manoelnascimento','a:15:{s:4:\"name\";s:17:\"Manoel Nascimento\";s:4:\"nick\";s:16:\"manoelnascimento\";s:3:\"url\";s:55:\"https://friendica.free-beer.ch/profile/manoelnascimento\";s:4:\"addr\";N;s:5:\"batch\";s:45:\"https://friendica.free-beer.ch/receive/public\";s:6:\"notify\";s:61:\"https://friendica.free-beer.ch/receive/users/bdb93436b5a48bdc\";s:4:\"poll\";s:57:\"https://friendica.free-beer.ch/dfrn_poll/manoelnascimento\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:52:\"https://friendica.free-beer.ch/poco/manoelnascimento\";s:5:\"photo\";s:83:\"https://friendica.free-beer.ch/photo/custom/300/734.jpg?rev=2014-03-09+14%3A15%3A23\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA2k1ibgFHrWL0wHN5fbQqd\ncXwuiCfsS/EteKnVVJnOhRTUIVNa6ybmJtQd6+nsINvGUyKPOPrfLSwOa7/Ytup2g\nuXEM+uK7n2V30k5iE1DZ7FE58xKIJ09JyeTTfraUZWmNdUt4RxQmq+M82jgEnDuI6\n2DV+iE17q1t4K1VDq5p/Cx6m/XheMcM6M+7I3cDn6pvFMA+xpNE0Ltn6g5x1XewkT\nQLYxjV02PWz2NS1dGmHiNCdxWyIKVchylRUsNN5FLePtXiGJ2hHiKOa1EVZKQbGk6\nozuw+Qp62hzAPTfcoplELbjGTTMIDJz5RT5FA9BFqPouhC9dFWEiXIIEcEylZNL7X\nvzXW6ahUgEDxH+XoLc4zRP8/EMQ2Z2y2pLKvyrikzxOcCd7faBaBSpMKSgH6d0m9D\ng2mti/dzq+9mNlqbQocb9Aty1AVdVFXEDQ7i2FBnAkhguVtusm2zPRB6OwFl7ZpFA\nNgNxz6IGLLKiq85fB0G+6TYb0NbvJ57m0+uxn3AalBuPQerJVSzIjzfac0ddP1oDA\nU2ba2m3lgWVbJ58EFMKxiSci8E3QFL5iXzSNHHihTpvjeOn/31Lqtamm1BG5hpiyI\niQdFWtDfslVgn1LeoQAihTXx32LHZLbINnFUPr3XNzB4xXD1Lb4q8qHzQNxeH/vCY\n739pIOEjo7TECAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:35:25'),('probe_url:1:https://friendica.free-beer.ch/profile/marisoler','a:15:{s:4:\"name\";s:12:\"Marina Soler\";s:4:\"nick\";s:9:\"marisoler\";s:3:\"url\";s:48:\"https://friendica.free-beer.ch/profile/marisoler\";s:4:\"addr\";N;s:5:\"batch\";s:45:\"https://friendica.free-beer.ch/receive/public\";s:6:\"notify\";s:61:\"https://friendica.free-beer.ch/receive/users/e1c6cf1c8e3868a7\";s:4:\"poll\";s:50:\"https://friendica.free-beer.ch/dfrn_poll/marisoler\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:45:\"https://friendica.free-beer.ch/poco/marisoler\";s:5:\"photo\";s:83:\"https://friendica.free-beer.ch/photo/custom/300/514.jpg?rev=2013-09-01+18%3A38%3A55\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAtH9brU7mueoHwXR1vB/FP\npayBuv0yd8mP0/Ap4Zn3cZ2g4c4CxPkZNVob+hkRwjiXHZgyI1AqsVs8PCQuLx7aT\n414mKhzSpxjfgTA6AwUwUip0oJVXdp+tAFQr8HohJ0eVedAXm0d2/9SRxVBVZsdSz\nViD9XN5R9kW2AYCFxVv42lOTt+byNtrYgqqjyAxOIhhm6atZgFkFZl+xvLojwtCxI\nD0oC5uT1ZPmTW3C//b8xGh8ZiTAbDRFkxnUAQXiM5oFBNnDiUSyTL6JOS51CNsb+0\ngnumbWgtXMDfmqZDS/UXzm2hGovFeiQAsOPRttUf8+e+OlXuoXUsuzFYmFeifRGLm\n90Qt4qPwdGa56eqD1o9Uc0y5HlfvIfflgOnGTiih4T6e0hXQzMG+m+LoCcsxW46yt\nlf9nOMcuAVCrAfGOUSK0RXJrANLol7iZxFHqgrglte/UjbA3uS7xwG/5AZubtOtOh\nW0siTg3OQKev4ei/OuIwDWDHQgWHOmUI3GkIbxp4XfdnLpI9Xrxl00W1opJ0LNU7g\nWHT1SZWpUXl9UQIIuc40v2XkYWO0rHiQj9O6fV4yhez6dHQDz54MqyVsEmw/i9i6V\noWpvcOP8HtZMg+urx8e795fMwpwcUSX19FKrS/EsT1JiSGTGPlbX4hKv2G66BWjcx\niAVXNflMdtXECAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:35:04'),('probe_url:1:https://friendica.free-beer.ch/profile/marius_katca','a:15:{s:4:\"name\";s:13:\"Marius Katcá\";s:4:\"nick\";s:12:\"marius_katca\";s:3:\"url\";s:51:\"https://friendica.free-beer.ch/profile/marius_katca\";s:4:\"addr\";N;s:5:\"batch\";s:45:\"https://friendica.free-beer.ch/receive/public\";s:6:\"notify\";s:61:\"https://friendica.free-beer.ch/receive/users/f63a522a48b40b63\";s:4:\"poll\";s:53:\"https://friendica.free-beer.ch/dfrn_poll/marius_katca\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:48:\"https://friendica.free-beer.ch/poco/marius_katca\";s:5:\"photo\";s:83:\"https://friendica.free-beer.ch/photo/custom/300/143.jpg?rev=2012-09-10+11%3A02%3A55\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEApGqPIrtXYktJ3mNpMG50o\nkf/X+Qf7FSOi+ODYHoVF2PXFPpSmdnHn6CbP8/9OmxG0TBW8xtAsQYFY2824tneFK\nwtzpbt0tCXlCPVfGyjXhH+cljaW3w1LDy1nk9EESj2bFtszwy5lfPeCTZqR+B8ixe\n1CECUXAb1UITBoL338awAV2VvuROCEGTB/fZAsGnk40osmAJND00snlV8SN9TJemJ\nky6Sr00FeJpREYTiOm/ovvFne25tMT6wUfUA2n0hxthiSTBOsqc0Qi7ijbaZ9Mut6\nTEcKsyZhAr/5BCZUI40paEuDMKDt5tWPIuuODY07e33yypwkCa/ucqqXq+qOCdO4y\nSr+ywu0CcfxbntjE3FPvAVD5i6stDL1MYZku2ZZaXIyyFYE1jXe9Z9IMbPzmdlMSz\n5l8G14/M9D898rAklp+yMzWJId/hK1iKbzmSj2MjI6HckbmRCHRPCvs6iZMNZFoVp\ndrqKog+BbzwP83d7JvSeFhRSvn1j/hu1XmaQhrRfgtJqWEm1xsPgWl2vUkIzkYPqk\np5EuSQXFWa0+BFD1qlN9zQBywNXs8fHEO/mh5mzG/U+GlZ5+0LRoH8SKUeKVqZr89\nrfkDVqxvlRa9w4wxxnAP/760bRGw/d/Vm0X/w5vD8R5OtFU6XPtjtWTKVb5jdBpxu\nJiuGH/9zjaiUCAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:34:58'),('probe_url:1:https://friendica.free-beer.ch/profile/masterodisaster','a:15:{s:4:\"name\";s:17:\"Master O Disaster\";s:4:\"nick\";s:15:\"masterodisaster\";s:3:\"url\";s:54:\"https://friendica.free-beer.ch/profile/masterodisaster\";s:4:\"addr\";N;s:5:\"batch\";s:45:\"https://friendica.free-beer.ch/receive/public\";s:6:\"notify\";s:61:\"https://friendica.free-beer.ch/receive/users/cc80847a02355083\";s:4:\"poll\";s:56:\"https://friendica.free-beer.ch/dfrn_poll/masterodisaster\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:51:\"https://friendica.free-beer.ch/poco/masterodisaster\";s:5:\"photo\";s:83:\"https://friendica.free-beer.ch/photo/custom/300/855.jpg?rev=2014-08-18+20%3A31%3A42\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAt+br3gjlgXA4U9/etjMvV\nQJwebviefeCGRxNrc7c5+Ogxf7hU5zkRwFtQRrT8HxFUzF9VptCJER1QArJOFMWcc\nmiyN7B2t+UOMJgRbrLjVRrn8TjL7yh/s4XBbCkGqws9obtQBUujalTHgqmRjUtRah\nhrXgfyrcEyhml3gZtN9mH2q+ZBuUcbwvWI8fCLqC+nojAY8PhDEAuA+GZlrS9XwL5\nQxzl3BVMnxJEzkoamu59DbPHIabBVV1DNsF7BFLfJ/p4BqAV6ixhV1scieCHJLROP\nlROBur56CjbsExfnIM9JrYzyVNEsTrsTXNDUPUSAv3BUXipmNBUhoqZ8XmHAlcvcI\nX9oImx6LiJ8mSdFp3DmVDKyRbkOSQPQZxkiGhByOCwgpdED9eF3bbR0bPE4GAK4AL\nyQep6jtXv3m71rXrMKGM4khN4SFoBKd5AcjbF9pFD0m8BZgSasw+qceWxtQDQcrdV\nKOaVNdSDA6zKPUFhjOrbz45JJM9n5JEe/HpUsP69sePhKsGhwtozzO9w4IZV0LyJG\naO3huADy8ui5uhaaM09W29KfgWJ11biycgd28TswhEMXe9Rz2oNlSUF8id94R0z7X\nd07GqQzvg98HsrIJaVCbzHGVYVSyP2sPXgt9iOGjmm0zG/tOMDwuoSE6m8+i1mz9B\n0WG8F78KBLpsCAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:35:29'),('probe_url:1:https://friendica.free-beer.ch/profile/miefda','a:15:{s:4:\"name\";s:11:\"Marc Leunig\";s:4:\"nick\";s:6:\"miefda\";s:3:\"url\";s:45:\"https://friendica.free-beer.ch/profile/miefda\";s:4:\"addr\";N;s:5:\"batch\";s:45:\"https://friendica.free-beer.ch/receive/public\";s:6:\"notify\";s:61:\"https://friendica.free-beer.ch/receive/users/059d8ffe084c5a51\";s:4:\"poll\";s:47:\"https://friendica.free-beer.ch/dfrn_poll/miefda\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:42:\"https://friendica.free-beer.ch/poco/miefda\";s:5:\"photo\";s:83:\"https://friendica.free-beer.ch/photo/custom/300/675.jpg?rev=2014-01-16+20%3A51%3A38\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAt45Xz38tkLnZfUJWrU8qR\nNXsWPt+Rd6tMTFlvJQFhyNfBGl9ZX00V6ljdB2C6ruklNWjv5w5jORLF/O+NTHI+X\ngz2W7uUynAmKKyWMQAR1vcwivXWeeKXzG5yhWaLBlFHB1IBpQdtNN5TurTiTFHnFr\nmJAWPCAqec0/Z465eSVVy/7/q5smQKyWO43mjdnnN7fLn6Mv85e5SqHEKBURu+zXv\nNX+w28s7IefYe040e8QqP3vYn+fqTi52v+dsGWZ2BZ2DgY5MwN1B9GuokcsQhek4z\nhaswkXfXq8xJ661/bqGIly/8Y5CvptTF7HZPc5jVPOkgVJI2eGKtRei2IA5a5rFKC\nXFSPGo3gNKML0lojWyfolrmQZ3nM0KXzQlBpCghumgk6gkJQTcnSvKK/vRORpJqQq\n8sDYI+BAgGB2G+foVkgwbz32FtzroERaij7QdRnvSOTKBy6pbyHZ7ul6WplUceuMT\nmp62YI5k5FqkmwQHkaPHcCcZC3l6srzVRkFUoNL1DL6X9pNgxQQEbDqXocJwkQHKT\nrNwjpTocdYmkMEe2UQS8Q79OwCOiYfvufF/F3/W1iCAv6YITz4yzL3FTyvLx578LO\nQt6eqBYk9cRhFYflNVM/XvBecCtZthnj/xHNkD4dIO3C1PvSONe3QruN2VtG9hLJm\nF/7lcSU4fWnMCAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:35:22'),('probe_url:1:https://friendica.free-beer.ch/profile/musikmamma','a:15:{s:4:\"name\";s:17:\"Liselotte Vinberg\";s:4:\"nick\";s:10:\"musikmamma\";s:3:\"url\";s:49:\"https://friendica.free-beer.ch/profile/musikmamma\";s:4:\"addr\";N;s:5:\"batch\";s:45:\"https://friendica.free-beer.ch/receive/public\";s:6:\"notify\";s:61:\"https://friendica.free-beer.ch/receive/users/bcea46165727cd5e\";s:4:\"poll\";s:51:\"https://friendica.free-beer.ch/dfrn_poll/musikmamma\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:46:\"https://friendica.free-beer.ch/poco/musikmamma\";s:5:\"photo\";s:83:\"https://friendica.free-beer.ch/photo/custom/300/589.jpg?rev=2013-11-02+18%3A22%3A16\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAwK9oWOPy3yArW5/OcM7c6\nW2tfCpgZ+ihkmdA3yaBOK5CBGVUT1Buk54AtsPzBZquF2zJffGN+UH/MQHpYW9WZX\nYHX6SlWmNOfNBeNR4CZq4doaHOa1Gpwyp/QgMJnHeGmgyNPTf7xMlYOujYeKi9Cqb\ndVj7vNAzuMyROlDqkmirmmo22vLzILeJxck1t4tHLKxqpo8rkHrYOWIvXLk90FYl1\nxJTYloeBJeYlvwpd9C5L65yp22THGzmnaLPYo43ySKH1pRQOEl6FLqKCGelQCIbVA\njeIIQGFAngJN+3iDpXMNqHZLiGS0c1CFIUemKEbj12ZbSV2Dru//Bb8E3LA4OsebO\nT1zA5b974j6/o1JTjkO0a/m89/eVfQY1AORUjes0qHL4xCfLe0YQ7RAwDhyNCJng3\nVL5VX8bg8agj6uBeB0tSNgYZMwWbyHweDVH5gIBDyvB3q7cBicFjm1RxoHRwDkurK\no3WbjvQgLiMr8obXyp7PiPJA3XnzKbNKqXq4SoWcjKGC5i1llY2kY7fHI0RwNaC5Y\n5og9mKGLeOuSSOWlNOaPndvdgTsZMz9pRvHyOUGq9YQbd7GomV9V7TdfM5E42XjxG\n/TVV8lM/nZ9S3Auy1TKu921MVSsV6AWno1h5nbfSYD8PXwXeMrH+TDHKG8UKI2+gI\nIJZSHPO0OaLUCAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:35:15'),('probe_url:1:https://friendica.free-beer.ch/profile/nk','a:15:{s:4:\"name\";s:33:\"Nicola Sisto Alessandro Vaccarone\";s:4:\"nick\";s:2:\"nk\";s:3:\"url\";s:41:\"https://friendica.free-beer.ch/profile/nk\";s:4:\"addr\";N;s:5:\"batch\";s:45:\"https://friendica.free-beer.ch/receive/public\";s:6:\"notify\";s:61:\"https://friendica.free-beer.ch/receive/users/a46a6fcbeee139fe\";s:4:\"poll\";s:43:\"https://friendica.free-beer.ch/dfrn_poll/nk\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:38:\"https://friendica.free-beer.ch/poco/nk\";s:5:\"photo\";s:83:\"https://friendica.free-beer.ch/photo/custom/300/286.jpg?rev=2014-03-05+18%3A14%3A39\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA0CVjunXj+wCYsjE8qx/G2\nzE/erRd3AifT2u6Y84NtnFAlMV+u8VbfEZIAafpCzZThNi1W9PYV2GeL40i5I+/rv\naA8S9HvLmGJUNYZ8/5AJIH0BxmBzla7gP8/cMNX+D3yOrVhTyUDUX4JXggNHE0Gjt\ncti6QB8yzwfZRJN8i0A7ylMgiKLo8hAiVwyOm4Hje6liFYyQSLiyNd9DHNoK2Lyzn\nGJHaFV6zQzWYrDjiEVHXkBmQR8CL3pTliHqfRYgi4cOrek6zjQB3IRF6S6NQZHOVn\n2Fu3rodolyIMLQUaBfPFtR27iO2RexI2DyJN97me5jiuuvEBd0D+y3AgFQugCjqRQ\nzcdUE4JOnF21/h+9dyJumlTglc2IgwF4F5ZYD9LxOyd2qVyHzFCkceEqukYSRx8La\nTVIrgZ3POL2pR1whs2vsDDdoA5w4yhBt+xxB8nD8vzxhFl9H0FM5GpZLei773d0kJ\nhncsQSPUnRiqPFXnM6KVyg2+b+autj83uwBOkyjv5lqJxxnc+xmjYll5vsQ40H5lp\nlFdw4PxSCLR4nrtoCe9sc2vov40OgJSIwTHOY3KkuFGppLHUm6hI1Ed7QgDCVE3R3\nb/Ti5skFKe5yG/l+xqFtU0K1Bjt/PcoUV2JLpj3Yl0QltLdvmfZnc7dNVVM+6VRfa\nuXzBj3/JProMCAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:35:07'),('probe_url:1:https://friendica.free-beer.ch/profile/ntimes','a:15:{s:4:\"name\";s:9:\"Max Anton\";s:4:\"nick\";s:6:\"ntimes\";s:3:\"url\";s:45:\"https://friendica.free-beer.ch/profile/ntimes\";s:4:\"addr\";N;s:5:\"batch\";s:45:\"https://friendica.free-beer.ch/receive/public\";s:6:\"notify\";s:61:\"https://friendica.free-beer.ch/receive/users/b11f6bc07d3eb2b1\";s:4:\"poll\";s:47:\"https://friendica.free-beer.ch/dfrn_poll/ntimes\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:42:\"https://friendica.free-beer.ch/poco/ntimes\";s:5:\"photo\";s:82:\"https://friendica.free-beer.ch/photo/custom/300/98.jpg?rev=2012-08-08+21%3A32%3A00\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAvQ++Gn+wgpzhydf73WJuP\nyHpviMOs6P76U/1ctJyirDRcHm7x+o3VUnqfIkwJB44quCP083fUA020NWbmoEv/1\nE5CKTOOa3vUcdl/3EW2oj6AjD9+3h/CVlSInboRyEK0oshDZJfREGGO1F6EHDty0x\nTsw587PEbZNdrRVCWRQdy85pQ+qyWqQA6QhXjkRAUhjifcWxzByec8kYrh3E6KYvT\nFAWm67QbyIfO0le+hBZRy/YmuDOx5CmGew7rkBmuDuG7k/tAbQQxTCPDYXvRmY53V\nBmjSJyV931gPmk1KZ+2zPys6tgmhm8nz0W8+/xynZlSIP04juOWpdnaHaMvmcD9rI\nlSFnZRlRizKfi4P9NkacGldLjecesZ9YIm0GYGQ4thdjK4dUSeDEzFgPuOujjxNyc\nkso3JbSqHgesjc5to8j8O9z12rDpWWTt1iiIdYT2TWtBwhZwph9lP3rGiJBCggX9c\nFlIxhSRL3cpIZFHUYixXgaJ/5GZaejSfqmyf175iHSp8CwnUJabYTAXM7j4W3Hbyp\ngAO3kPsQ/vXmKquifGU0nBGwdQWcFuWrKkGeSIbQXUMxKqSUumEYsyQOkn3mZBY3+\npVIIucuYks3y9IScxV/l2SxOxaEz44Max30dAD6VDppKllfKaI5g6QxMbYNKZufcu\nq+3Pr786dIy0CAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:34:52'),('probe_url:1:https://friendica.free-beer.ch/profile/olivier','a:15:{s:4:\"name\";s:7:\"Olivier\";s:4:\"nick\";s:7:\"olivier\";s:3:\"url\";s:46:\"https://friendica.free-beer.ch/profile/olivier\";s:4:\"addr\";N;s:5:\"batch\";s:45:\"https://friendica.free-beer.ch/receive/public\";s:6:\"notify\";s:61:\"https://friendica.free-beer.ch/receive/users/5b5f450b9ae0a7b0\";s:4:\"poll\";s:48:\"https://friendica.free-beer.ch/dfrn_poll/olivier\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:43:\"https://friendica.free-beer.ch/poco/olivier\";s:5:\"photo\";s:81:\"https://friendica.free-beer.ch/photo/custom/300/1.jpg?rev=2012-05-02+09%3A02%3A19\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAzO6Oge1F0HGvpCGZ4Fvd1\n2+oC7s9VK4sxPwYjkSSGnxNvgJN20BbxUcyBlpfOXoB3oOEfVUariUbrpWqRfT6z6\nPW0J+qPmUAsDkGWeu1s1TsF++atB/GHozbAkcJOLqy02ElA3axd9OUjlFbiBc0fMR\nJYuPWQHYRdGVbVg5H+oh06hamQW0RUt9faAkrYtQRx19E3yov1tgu6AOPbB6Ua+ee\nQ8J80iFtz4o6WyZrdmuj40o3cfpEbGzlOaeBK0+Yk4bcSaAKj00Xyj4v9ORuapMwW\nwyhVQo08ZaiLUddIkXzBvjPTDiZ6n7fgZLj4hoBTQJa3dz/HVmJdBLKW/XmAuTHep\nzy3eJdvEt59Mfl3ZBKMxg1jtWehEwL9f8LJFrAZIUvWgnQ5jMIakTNXYp3YxC1cXh\ng8DuidcKf/G3ENRmR/hX4R5PzYtft5sCudRUHgNrdKfnUkQeNywPM+kEUbV+MzOtO\np3DtdYVGkqrzEV542zgYPI6+QDSpPxeTFNwMGMhGk2zqntEjCNKac1TUwQ9GY1Zcs\nk68vLfArcGUjdTKHqLFaz5w/6stGmzUr9ZhFTaz1OWqMbVEdov9LHqerCAjpEDrIa\nY4CnwHuBIdgSg9pQMegVAw/ZXvRScrDhYJeNrVbom3+x0CM0CNkBhepMgoVtnaTDz\nUnQAXre5NRTcCAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:34:43'),('probe_url:1:https://friendica.free-beer.ch/profile/opticalrevenge','a:15:{s:4:\"name\";s:14:\"David Mccauley\";s:4:\"nick\";s:14:\"opticalrevenge\";s:3:\"url\";s:53:\"https://friendica.free-beer.ch/profile/opticalrevenge\";s:4:\"addr\";N;s:5:\"batch\";s:45:\"https://friendica.free-beer.ch/receive/public\";s:6:\"notify\";s:61:\"https://friendica.free-beer.ch/receive/users/cceaf1508663be91\";s:4:\"poll\";s:55:\"https://friendica.free-beer.ch/dfrn_poll/opticalrevenge\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:50:\"https://friendica.free-beer.ch/poco/opticalrevenge\";s:5:\"photo\";s:83:\"https://friendica.free-beer.ch/photo/custom/300/746.jpg?rev=2014-03-22+18%3A30%3A05\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA2SeUZ2Gz1l4t1jtyD+y3X\nbUw7qljHT7/Qsas9GY0xBF+WPSN4K+2p2CpTktzROvXMzh2gUEohLKseQgJWAex/Z\n4M+dt2O2pEWU/ZMDHw0B+yygh6S2YblqBxonaabV2JMqeTqzu1eUI+0RBfY4uM8Az\nra7N3VTK9QQis8kWM503R3wwruC7pdLOxZlruO/xS/rlxdOUvRMggPXx2X6CXJYBR\nNjJx9KrTanQKKdp2sNrtPKRGjRHoq3/9wWeXfbCsrjti8io7PHXsKxZcdDui4y6fq\nikHTaoZEDIJ/D9W0AXxldfaiC4CRCgptDTs5Je3yjGzIdbNrOryqik2WQpk96OR+2\nyHHNH83dLyA56yExwpyEFK43ecmJOcj8sZq6oSnjNpZyH1Tj62cMdYrGgPkkHXqp+\n3u7QAArpHpR6fa2RrwaP4PMKTVDPxbpsdXHB2gsSJtkKK4DbYJPCo/VD1sNIeiY/N\nHWpBVm2xB8DBc9nvyhhhiJEBxWyuio9fgCC2zQNFTgSZU9cLq8lrP4Kl4we9DaXGd\nsP7/w9wjgaiK6cYapbmmVnciBBuX0qxvet4kIZCpVAmW9p6JiKtC7Go0nqxNQffy/\niLoYEf1+Zr5pZF7YrpOr2sNpz4ZQtAc9hEp+pEw0sKOgJaHsd6nKuwl/XCLOFAlWV\nqu7/zHcOoJW0CAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:35:27'),('probe_url:1:https://friendica.free-beer.ch/profile/pascala','a:15:{s:4:\"name\";s:19:\"Pascal Daniel Angst\";s:4:\"nick\";s:7:\"pascala\";s:3:\"url\";s:46:\"https://friendica.free-beer.ch/profile/pascala\";s:4:\"addr\";N;s:5:\"batch\";s:45:\"https://friendica.free-beer.ch/receive/public\";s:6:\"notify\";s:61:\"https://friendica.free-beer.ch/receive/users/9a7f0101d0427294\";s:4:\"poll\";s:48:\"https://friendica.free-beer.ch/dfrn_poll/pascala\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:43:\"https://friendica.free-beer.ch/poco/pascala\";s:5:\"photo\";s:83:\"https://friendica.free-beer.ch/photo/custom/300/268.jpg?rev=2013-03-16+14%3A39%3A19\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAsubP859FVYnrbWvRkm5Ix\ncuY4s0tWve+ukI4GgAYJGH98LRh8USayn8EjrZSAHEODFICm6gzEr3kcno8RNAti+\n5jp/ain9eZJlDUeo9vx+sku8sY538Xm0PT9rACVhHSz4ncrg5Yvwfp9bXvlpUDbO5\nmdATfQgPfbw1sxSroz4rnI6RwaNiIibZvy0SgPrYw3dXYt/7bKxZhMcAK587iLHPW\ndDMSHxaGhLpj/2IDLm1pHj2Pe/BlJnQ5l4ZaISW7TgY+8IJU1rkNoUNrSZAblU8U0\nUw2a8g4UXv+meIlm3E455kIl+AYd+qpauyCPC+mUA63hWeA/BtG3zRcADf9AjcqYx\nKlOArwHiwZoaEaN2/EQK1f0+Mfubn+R9lu5e3abB4HEsv3FHdVzlbxsokQVcrvgKF\nN+Q13ixPUa/cEPwlBbv8ATvWjODCzdQ4bxFi06Xl9PeqHk2BgRsWvbqMjsK/hZ7o8\nyRseTTq+RcFGXhQcJagkjNHRIZQRAXHgxVQS97OaMPJFVOGK6g/rHrUyVPhUMTHe2\nJfdhz8rPOV6Gd4pnfNxMkMpzlc3sHBVJDGkKYo1iVymGrbgJLnKBvZATQWIqIFA7D\n4bN+/cwqOHBAq08ddc+uIyb1p+pKgSKCReGa149/BuAMu5bQD1eXM6fYFWzZDqQbI\nfa3R17pQzpfMCAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:35:08'),('probe_url:1:https://friendica.free-beer.ch/profile/picaflor','a:15:{s:4:\"name\";s:13:\"Picaflor Azul\";s:4:\"nick\";s:8:\"picaflor\";s:3:\"url\";s:47:\"https://friendica.free-beer.ch/profile/picaflor\";s:4:\"addr\";N;s:5:\"batch\";s:45:\"https://friendica.free-beer.ch/receive/public\";s:6:\"notify\";s:61:\"https://friendica.free-beer.ch/receive/users/8a0b12f9b79a2a3b\";s:4:\"poll\";s:49:\"https://friendica.free-beer.ch/dfrn_poll/picaflor\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:44:\"https://friendica.free-beer.ch/poco/picaflor\";s:5:\"photo\";s:83:\"https://friendica.free-beer.ch/photo/custom/300/549.jpg?rev=2013-09-28+15%3A36%3A46\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAu1s27SynM8IjcZVZ6ZZ3x\npPeT4DnY8Yn0AqFEhKMBQFiEZ4aJPS4XooLQBuqhprq/jk2csoNZNnyCE9T469TK+\nCEQDbtY03sin+Qq1Q6NQ/xrTM/t9IR2lPTmqU6+i+ubHy19p6baIZxtiSvLmvfBUM\n9LHYfF3GPLcgbclj8eC57QZHZCSC2TsLhGYk+5hKk72caCrYfD+1gw7HutB+rl5t7\nHpgtlsQmDpg7K5xgHRuIHNkQcIc+LwrbXP2bJzrEuMCHbJuW1puM0L6xdMZizqVN5\nxiON1qCuSbAQCIh5H1R4LakUQ6HSNQUw6gp+ci4HDxjs/QQnEQgxQWtvcdqJQ7lYv\nJDVePJEpdsZ925GSI8+v9V5YH+/2fiNkyNI3a0LZ400fH8pHJUbZ3jBPEdgo/kVsg\nIBxMuTmEIRTbb2FESttcMZXcnXAmtN6c9bNFoJULNRNiPnzIGlUuO419xV9BXSQ48\nLYzwZ4jtk0z5/hbvKoEi9wB1RjfE6cYx+HvvT0hkD0G6F70eMA5q+9dfS6ym6zdFu\nPlPZ7sdP80NVR6w9XIzIGIkjZ2YoDMhfvwfj1z9p7y+qMicTa6+rmvScVPdbo6VDK\nTlHPoB2UwXSfxBSJI350aazYdUHVsFoD2aiwEbLw6gzEtKgEikDy4QQTlxaylK6Oa\nWICsGW52gSnMCAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:35:13'),('probe_url:1:https://friendica.free-beer.ch/profile/pogonator','a:15:{s:4:\"name\";s:9:\"pogonator\";s:4:\"nick\";s:9:\"pogonator\";s:3:\"url\";s:48:\"https://friendica.free-beer.ch/profile/pogonator\";s:4:\"addr\";N;s:5:\"batch\";s:45:\"https://friendica.free-beer.ch/receive/public\";s:6:\"notify\";s:61:\"https://friendica.free-beer.ch/receive/users/7d03007b5952caaf\";s:4:\"poll\";s:50:\"https://friendica.free-beer.ch/dfrn_poll/pogonator\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:45:\"https://friendica.free-beer.ch/poco/pogonator\";s:5:\"photo\";s:83:\"https://friendica.free-beer.ch/photo/custom/300/396.jpg?rev=2013-06-22+07%3A51%3A38\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAnTo4Ft860rkvXsajQi6TH\nQdezDt1voLi5Q+UcTMq8kYxwo4CCfvHwUdXE9sD0aJtMtTln7gk5pBiJeXs5EAbaA\n+kffqI2svQkxcx0kRBQJYrCp03G9LXJR97RchKm6WAz7zzBDr/ij38sW3WBY0DCrE\nMCohNtmokeiBiYRxMWag6GIkWgqlqBTWo4pTGbcImdEJVO7eyQN9SJkhys8Ts3i8f\nqhP1GRUIWAb2qIVeRG7X79bdkNS3lMiDgO+uCfS47ftYUgoMwObEFcJ8nyAgdcYZA\n6xehEO98njGjt+Js6uBiOTAeM8tGYwboO0oQx6/rH6IDLlmB42pGR/Hyu+tEODPCm\nydTelHJG2tP0U9SJl0+wWBJnI5+5lcPJg8/NioTbr9pLoybTlokmzKa2d8bFVdtCD\n3bOX6wIo4ApvkZYsQGEauhrIeLdeOrpbkL/JXV2vEyGeV/mtSsF5wdTvUIrQlPHkS\ncRmR2th36oeenzWEZNBYQWVxusM1Yqrvuz7yOKMt1H0GV3hGn8XoqPS0F5zA+kfGr\nS7rzENYjAyXupfI6yxRmKn8qedPbCnYn3+4tkaQ9D3SGhpmN6C1C4YHxiGW0lcmn+\nV0cCIe1H5m7IKWSsTkdXqd5bvEVOkTw01cQ7ggIcmm4MFhY8onLk78Lw8Rx4iQBaA\nvxW3RCYZRlkECAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:34:44'),('probe_url:1:https://friendica.free-beer.ch/profile/red','a:15:{s:4:\"name\";s:15:\"Redrick Deckard\";s:4:\"nick\";s:3:\"red\";s:3:\"url\";s:42:\"https://friendica.free-beer.ch/profile/red\";s:4:\"addr\";N;s:5:\"batch\";s:45:\"https://friendica.free-beer.ch/receive/public\";s:6:\"notify\";s:61:\"https://friendica.free-beer.ch/receive/users/0649e46fe2debcc2\";s:4:\"poll\";s:44:\"https://friendica.free-beer.ch/dfrn_poll/red\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:39:\"https://friendica.free-beer.ch/poco/red\";s:5:\"photo\";s:83:\"https://friendica.free-beer.ch/photo/custom/300/724.jpg?rev=2014-03-02+17%3A12%3A30\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAxmUEdiFPPbD2qr/zYpRuY\nMMChpA8xzby1GMvhL1Zgq+uetJqizH7F34WKhHEQjN6Z0j636B+TYXZcYQCyrRs+b\ngF/pKFJb16HgwHqj2lyJpf0+oAmM8GW3GqR1q+f2bv1CYEOlNLEqNv2/L/m0gFl9l\nCNrEmhuC9EZXCnC1Q2tHwU0+bE3VLMfCGzy19q+cI/AaNnHrAFYD1Pc8D3UhMJ9Fb\nwXpE/wNs0qZIphlDnrc2y8n+uHum1htSKfyY8xIq/1lhN9Vlkprlmxepob61YiDOX\n3F2JEazJ73slICRbqXP4nztefTJoTq61RXvZbYDS3w+4chFYb51a4A3lCqI2eA0Z7\nksINMrTuvRzeUBio8V7pVTyqjhDPo9hrzK2fzwA0Xt4u1Wpaswg7Wl+lwB5K93zH6\nna8esaQ6hjWaBnDhW3cZzjYYU3nlzxFRmcWzEalrAWGSJTjOcexlnXJjfbFlUSDpt\nbdsU4FLFrX3zn+OvOBuO6LeyJP1JHTZTIrjreJDAkby53KvkFiXS+t1cMDCD4/Dhd\nJ8eN8jrZJUghiCFTjFViBp0GL5PcEN6fWkDXd/RC0N+i/rHKk5X03HFxLfRlo8v8h\nC7MqaaPHGdEJRh77d05WQqJFJlsXw7idJo/CeJf8vHBRWs1v3XdqEgYn3dqlg+nIg\nq16QdEkdDU00CAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:35:23'),('probe_url:1:https://friendica.free-beer.ch/profile/redleghorn','a:15:{s:4:\"name\";s:12:\"Romoli Marco\";s:4:\"nick\";s:10:\"redleghorn\";s:3:\"url\";s:49:\"https://friendica.free-beer.ch/profile/redleghorn\";s:4:\"addr\";N;s:5:\"batch\";s:45:\"https://friendica.free-beer.ch/receive/public\";s:6:\"notify\";s:61:\"https://friendica.free-beer.ch/receive/users/7b9e864d95745916\";s:4:\"poll\";s:51:\"https://friendica.free-beer.ch/dfrn_poll/redleghorn\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:46:\"https://friendica.free-beer.ch/poco/redleghorn\";s:5:\"photo\";s:84:\"https://friendica.free-beer.ch/photo/custom/300/1270.jpg?rev=2014-11-26+16%3A57%3A51\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAwsuFAfdoCuA+7lcvE7Ld1\nqNJ6ANPBukYjv9Yi4yY7pKNSr8pFlnh/CfvTjwLPyuZtwV9a7G3TbYPfrNg0XUpyd\nMh6Q4wxXoxjGwb7j/T25ZF2oCrN3ux9jv0/OGWUZr7afWc2E/oOtcYkyw6O/Z2Q59\nQl0YSoWbT9X8STAODFFniqqvG2omanAsdqfJQmkUlSV+KWkxKpuaRk39bMD1jrTWT\nvYRyzfL73srsHHPpaMKgQea3o42KI4auNuZYeLy6jCFDtSIqtW/Q32+0QObmJ6one\nNkvkFiekUj8alYxkSdm0uU0+Zm9CU2o7j4eGj3+d3+KJrCsp4+d26+WSV8g0pJvQ2\ndVDtp3AL2olq+mMMYecavdePpkbo9HltWTSF+77M1vA1ovaoPqcV2kz2hilNLtWwP\nSIKz4+qPnD7i2QC4Pvy+CBg3YGO66L5Rf0idfwNqKwgk8OvsIcvlooJqnp9zbMFWT\nIvvoEezi4dTNnJXsKUX+T1r2H4S1E6KZzk+VsfM+SQVhYzK9YvT59PEIYM3xXpjlQ\nkzg6cUnxrjEr/ebm5xQKNidzLOtwW8+fF0FtKrzqrqJ+yeRihMfF2AR7MfYpi4e/H\njz1mlNfArZ5WzKU6uLjKfk71SeGizo2xFYarFY5/7lmxccDf5cYLOneSDd+iMim4R\nUKx7ehwH3i2UCAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:35:32'),('probe_url:1:https://friendica.free-beer.ch/profile/robrob','a:15:{s:4:\"name\";s:12:\"Robert Bonie\";s:4:\"nick\";s:6:\"robrob\";s:3:\"url\";s:45:\"https://friendica.free-beer.ch/profile/robrob\";s:4:\"addr\";N;s:5:\"batch\";s:45:\"https://friendica.free-beer.ch/receive/public\";s:6:\"notify\";s:61:\"https://friendica.free-beer.ch/receive/users/380a0723f8a496c0\";s:4:\"poll\";s:47:\"https://friendica.free-beer.ch/dfrn_poll/robrob\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:42:\"https://friendica.free-beer.ch/poco/robrob\";s:5:\"photo\";s:83:\"https://friendica.free-beer.ch/photo/custom/300/138.jpg?rev=2012-09-07+17%3A57%3A21\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAyTQZz2ttNtLN1Uyoitqk2\nGQ25PaTqpP3gBClvTP+l6Wuw8R6MtK0cZlbwTPEKG0fPXaYGl3k3yas07Yew6a40X\nHe+62EM44vAgBvmgziFhqdDIeqbwiDJhzn3fgI2E11hKr7v8hUSnHiIDF2EoyGLkp\naAmrgUUjukJcpdBMY31PGSx8UYK3U0R04zncQqhlnT+muW7UyAOuPSVT+3/qzXseo\n5lRwLVBvWj6w7+JTvT7wbaqVOai94E2zk/KCNYDJFZF0CAYwoj1ox+dfEe+VbxK7C\nhOlzb1dgvQZeaGzsbKHIKksTm8rYVT1RDKq5Q6z9IREIJ+eQZPThrIL4WDxfKJuan\nheNx+FACKKx3pHYVnEr8Nz0lbyNnm7cpONHgzCLFWmgAFP1Sb0456rBqrBgbwO0Z1\neM4Uq+SN1ggF0lROjy1GV2lg5s0QQMdxOPUF+s6kZiBAnl98VJiy/me9VKQSTLCE4\n0BtPRq/3iQQPQwWXK0UHb2ETiBS2dB6/Xza/GiCISYIzU6A+wwVq3cYeuQhMUcPzR\nK7E3zNLPcOxpKssbFn6h+6FKwp1N2UOi/cvjV4bfWAna0cijd1VEk9MyfteCjoXIW\nQWNEuCIbAnDawz5uJgRherWG8epQhH8hTOO8Yhu3N8Y3IDhfu4+plReJFB9AsuCa4\ngyTdoBuBVDdECAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:34:57'),('probe_url:1:https://friendica.free-beer.ch/profile/rufusson','a:15:{s:4:\"name\";s:14:\"Fergus Ferrier\";s:4:\"nick\";s:8:\"rufusson\";s:3:\"url\";s:47:\"https://friendica.free-beer.ch/profile/rufusson\";s:4:\"addr\";N;s:5:\"batch\";s:45:\"https://friendica.free-beer.ch/receive/public\";s:6:\"notify\";s:61:\"https://friendica.free-beer.ch/receive/users/a6a268bad7ea78f3\";s:4:\"poll\";s:49:\"https://friendica.free-beer.ch/dfrn_poll/rufusson\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:44:\"https://friendica.free-beer.ch/poco/rufusson\";s:5:\"photo\";s:83:\"https://friendica.free-beer.ch/photo/custom/300/146.jpg?rev=2012-09-14+01%3A11%3A23\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAvFM+RIar2WI5j8CgqI3Vr\njp4QUNJ/TNsTNqa+3+sxEC2JMmRcSeeF9vFv/C74twfbyoJii0ujNWx7cLSSFNBSV\nCwUUxI8rQpSlYVqbznu9Zw7Pjwb6n8sYxLAR8h6qeuE7JiRQWhJaPmFBXi/VqHQO9\nKCTm2UYqXkl9fT2VaYCawjoIyVmXHKlHUMG+X+I9nTzWMAEpayQexiUfFilIo3DpQ\n4awdBut8+sKNUO2Jz8GASNDgowuOKGDT+rn/yGGbsUv4IaUWMv7ujI74+Ia8ZvsMO\nxeFa+A8GkVZnz1Ccss2DVMYTP/FcwJeJz3bJPFWMBIVf1NVPOrPt0RP1D3CFhi45Z\nD9OVG4jRLQkk/qtcy7AelvZ4R9y2Y1lIhSxtbhYXCNd7yeTuqfZ1PFafUiSx007Rm\neCV3ByT7Q2bhmw63D9luycaewk9FErjZ38vp77guSuaLhA0mqcEixGKKWGSP8vN2F\n1SZ+hTdXYVpUo6fsdnlAxL3w0RjYn3DOmn8iINg+bN/cYaGrQbdA6k+D0wytwX4r4\nvAXeYD2oeBzfDK0MrR3T4o7aYbumjtdGkjtBDLKv1JwcCp7i6gmOkFP6BIROLCWtL\nH45eMwNkO6EfxelueNk0aDa0JGxNyrP75cIfilhTVLoMAT3PIzqg7/S5C5O8q5GcS\n1bGsqXLtB5f0CAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:35:00'),('probe_url:1:https://friendica.free-beer.ch/profile/rui_miguel','a:15:{s:4:\"name\";s:12:\"Rui Bernardo\";s:4:\"nick\";s:10:\"rui_miguel\";s:3:\"url\";s:49:\"https://friendica.free-beer.ch/profile/rui_miguel\";s:4:\"addr\";N;s:5:\"batch\";s:45:\"https://friendica.free-beer.ch/receive/public\";s:6:\"notify\";s:61:\"https://friendica.free-beer.ch/receive/users/f74970a82e224ded\";s:4:\"poll\";s:51:\"https://friendica.free-beer.ch/dfrn_poll/rui_miguel\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:46:\"https://friendica.free-beer.ch/poco/rui_miguel\";s:5:\"photo\";s:83:\"https://friendica.free-beer.ch/photo/custom/300/729.jpg?rev=2014-03-05+15%3A46%3A11\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA6ydMDaStwKPZiQsc9DmcK\nyJmi7IQ3UfaLNvpa5z5wNPD6OqAh2kmionXW7p/EBypEAGBPEmGiVBXLi60ncENh3\nUvQp5EU47bRAxIUdMA/s8sHyuova8SdKMHPn4HHpS6MLY0yo/zrvjnlky/ApWhelW\nOPVCWHkP5by2fruLc6h3oHqTVobUHopPZ5iBgAScHrguhAO1mzK7UQCMqDGPvwjGI\n4snOiXM8k5Z5VEOl0LMpWfDfzFzh4LUhuMwcsENQx/AS7F79ncrIhdXM14IQouhf9\nfaoXcgN613syZy0SgrZiH0sIBBUO4OEnetSsZevqXOfXm8Z70QMss735KeMvPsrI7\n8a4YViXuiXmABue5bI0ohEzp7ZN5wTaggB4KOTcwU17L6E/E5tbEgVQ9MlHovccV3\nYWEd47N81r0KPHR3AmTg2l9z6A70GWbcohLlIVOVM5sGPOYA6yocCCMBsyI5HDfMI\n7xoJPfz357sU4wVpct+jYWadVE98v1UfUUeJ+gC2EAFm/ObUH32jt/U0Cpbpeh28Q\nopMHrzhBW+rHMXZNxOmE13oweECv0C8Io1Lya7cVCe6CAyV75A9gakW7jsjgXPgHp\notqOPr7fEwhma4mbO3M8GAghNhz63tFiJi0FdHOa/s/U/YjejpQ8ggBI/ptIEMXnE\nq/NMevrJurtUCAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:35:24'),('probe_url:1:https://friendica.free-beer.ch/profile/sebasped','a:15:{s:4:\"name\";s:14:\"Sebas Pesersen\";s:4:\"nick\";s:8:\"sebasped\";s:3:\"url\";s:47:\"https://friendica.free-beer.ch/profile/sebasped\";s:4:\"addr\";N;s:5:\"batch\";s:45:\"https://friendica.free-beer.ch/receive/public\";s:6:\"notify\";s:61:\"https://friendica.free-beer.ch/receive/users/e3d4b2be642b476d\";s:4:\"poll\";s:49:\"https://friendica.free-beer.ch/dfrn_poll/sebasped\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:44:\"https://friendica.free-beer.ch/poco/sebasped\";s:5:\"photo\";s:83:\"https://friendica.free-beer.ch/photo/custom/300/714.jpg?rev=2014-02-16+21%3A33%3A10\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA6N0RIns/qbzVptEUGlIQn\nYLo/M5CtU17OKagH9AcVDhrhjurAENotrs2U2InRtLFc9serbGInlNCxEmbVBjDON\nIAyGxG9oJKrLhOG+3xUtCX9SEA/lUZtC5XR7t78mXqtqsYW0LsM7Gd7+37gndEyPw\n2mE/M4z1Vo8UHrS+roVFKrkJZhY5NZzV4chjG/SbDBr2xaaHGSDcyIjQBKwu3NKlX\n8tGKdxskV4todjduwNVj5ygtR5VGWE0h42NPuwE9XxN1lOCPWui7hYwslAz0UP/Yk\nSwImt9PVJWjmuzxo8Yt2yKvosoLCDB/VEN8XilG7OOZkwLQGWd6ZY0Zac9UpVNA4O\nHPmGPHI07QTjltzPRshDP86rDS6HITWOMDZ+KgAWAYnZ/g7jd+W88XbbYLxGur+hO\nvAU5TjhY5t88zWGi3q69A0MxyFDHlHeuUf9BtzrdfBblB1Jyw9biVwkw713YXDJ5Z\nb1YGbtjvvfvxQyyv7JZP/wNHEsy4l/hQXCasCi9g0MKtm0Pi5jmMAY2F6TZdhxDWj\nyBHAcLCThbMwlA9rscQEVEEPdpCW7dY9qFdDrGTk2ulCuHG5Hl3hWRgMAYRCgF1qg\nvWNmFICDsxY2+T8Y/sxcI1yg6a6t9RvlC3IeKlBWbWZcXqQa6lmgPbKzmC8qN9qNC\n2BKOuf6DDQCMCAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:35:23'),('probe_url:1:https://friendica.free-beer.ch/profile/shiroikuma','a:15:{s:4:\"name\";s:10:\"Shiroikuma\";s:4:\"nick\";s:10:\"shiroikuma\";s:3:\"url\";s:49:\"https://friendica.free-beer.ch/profile/shiroikuma\";s:4:\"addr\";N;s:5:\"batch\";s:45:\"https://friendica.free-beer.ch/receive/public\";s:6:\"notify\";s:61:\"https://friendica.free-beer.ch/receive/users/0b0ae0827faf6fd5\";s:4:\"poll\";s:51:\"https://friendica.free-beer.ch/dfrn_poll/shiroikuma\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:46:\"https://friendica.free-beer.ch/poco/shiroikuma\";s:5:\"photo\";s:83:\"https://friendica.free-beer.ch/photo/custom/300/334.jpg?rev=2013-06-02+09%3A59%3A35\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA0//dYC6puchRRtmr5N23i\nSTwrtb4I1z6qR9O6BzofHLpWL4rgQ4O4cO5r+3RLUmpgo635Z1QzTeGHSE6YjT3Zh\nG8elSEUR8Ca20OAPpd4wnzcWyFPPNLQFxyY7D13hfIlyoks8C+WDppulRvUv2QJAk\nHirrES7pjxZFaxsgPTV8PDqtfCY+4mgctn5cDMDFYcl8VxhJpOWYLbjmegQJY2YKz\nzCOxRTu6xCw/93KvwXbYXQyDauy6tInsBmERUAZnLVmihB3e/7UDKCE9WVxC9ucpT\nVtmnLjGf79gEmI6u95ge0mEDaoRyzdnuW/Il43H4jNCVbiwYCjAYSY3ZZQ3jw6GyG\nMy7K7QaQ37LskVYCgvKn2DbHt3MdIWm7vw+XmtaJ2XtFCoq9KQBvQqgSTXhNSql1J\nKxNqQHxrlElj+TUS3MTJiyoDEL995m6oFPzBLWhFw6o68PwS4SRxjI7vU7Z8nRw8R\nAuNH1qNBwBOrSop8DDckeb4wwTKzLUKDTbUyJcIQzetz1Y529Rqw6s6kW4OGQJOJy\nHF4H5pCSWQSGUuG/EeOvAoW6NIx+w6NebFs4fGmSEP1kG85SasadIPHPFBWQ9LM7/\nPz4Rd5+gsomZuYXxiHh2gTnq7GlLsVwDqPG5RTMwIZXeqJpV9JUwpj2y7nHCM4AjZ\nDdqDcSBDWOE0CAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:35:02'),('probe_url:1:https://friendica.free-beer.ch/profile/snapdragon','a:15:{s:4:\"name\";s:31:\"Bodhi SparkleSnapdragon Goforth\";s:4:\"nick\";s:10:\"snapdragon\";s:3:\"url\";s:49:\"https://friendica.free-beer.ch/profile/snapdragon\";s:4:\"addr\";N;s:5:\"batch\";s:45:\"https://friendica.free-beer.ch/receive/public\";s:6:\"notify\";s:61:\"https://friendica.free-beer.ch/receive/users/9834f5764710a04e\";s:4:\"poll\";s:51:\"https://friendica.free-beer.ch/dfrn_poll/snapdragon\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:46:\"https://friendica.free-beer.ch/poco/snapdragon\";s:5:\"photo\";s:83:\"https://friendica.free-beer.ch/photo/custom/300/494.jpg?rev=2013-08-15+14%3A51%3A39\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA0h6UjlyAUWxo2V6lU7ZUo\nnx5TJVB8yop7pXvclh7iznyiv1YVKQrCWkrKXh8iquX9V5tFL++OrnzblYxkc2bWB\nPiX1hxeH2pqvuM5hHHe2ailYnrbuPj5+OFXMu9Nt3DgAobplUPTOjkBZXyaGhKRPt\n1/jlOpvlEr9p6ZYSlcx6n/xWGnhxTSK5htcP4RfPYz1mxFX3JrtdGFWvg6tD4jXUr\nt1itnW66Ohn4KNjHnU7S/5a7mT8wryavmzPsYHo6DgvTMOHdaSAgwN90APZmr6xOY\n8p8uijfN1l75ie+dZ3uk57siIW7S49XVhX+7CccEUVhC4+U3OVkKGo6US2go2o5jD\nt7eI7hWGH6Ds2v5kNwQ+fAovAWdZSRGwsJe+ipMUnzpbmDMpMoMiLSA9Qq/kWHYSc\nVTfhZAgNsW/XuEXnCYcxlJKypfq56cDjVBN+qZG3vLwSicQwW0S7pQf8D0AB8ymlT\nmLZ/WW1S7AuQUmwjw1NA7eJRSOz5euBpAt+rSRBvLMJlnL1XxYnpg3Nnm68+Dq+VC\n/Pjcr0/UGcnRegftvpoGSVFCQgwhag6otismAjqS+9nTKm9cpxRUFBdJxtIaB8wDu\nxRmAnMCG1thK7Qrh7UkltFiNNYREqP0yGl9eCEA9pwgpY70YBSIhN5qSEG4u3HAZQ\noXJe5fs2iZTECAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:35:09'),('probe_url:1:https://friendica.free-beer.ch/profile/steinkampf','a:15:{s:4:\"name\";s:19:\"ѕтєιикαмρf\";s:4:\"nick\";s:10:\"steinkampf\";s:3:\"url\";s:49:\"https://friendica.free-beer.ch/profile/steinkampf\";s:4:\"addr\";N;s:5:\"batch\";s:45:\"https://friendica.free-beer.ch/receive/public\";s:6:\"notify\";s:61:\"https://friendica.free-beer.ch/receive/users/d3ec65e4b5e78eb5\";s:4:\"poll\";s:51:\"https://friendica.free-beer.ch/dfrn_poll/steinkampf\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:46:\"https://friendica.free-beer.ch/poco/steinkampf\";s:5:\"photo\";s:83:\"https://friendica.free-beer.ch/photo/custom/300/652.jpg?rev=2014-01-19+13%3A36%3A41\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA3S+IqfmT6Cv9xrEvNcsj/\nJQE492FEP4YBEu+r5LoGbaK8udElsEsBFidQwmHkvB+4SnQrSHv6tuNamT0IZTMuW\nrCBoB2Rrv9IIyO0gdJJgSSEncb+XLw7Nwlwh5wB6RJjYADfAXt/BOC7smNo5BMhNn\n9r7+TUDuwJtJjqsXuhTLilEkJjysXPE+imhPIVq/wPDvwl82wlqemz77gkjGSj7jE\nND62PkrMG/6enZGHgPlqkg7VBcau20VpRbz6OWBw+qpQSFkr8QHYAFQ0mlAuooA20\n+kOUvxS6dDdpv+TcRG5w6ZtlaQZxbJCEPYenKQzLZ8/chEiSNDTtl2N/pKrYgLKUl\n969l4WX9kTx1dRCLqoaOQzJIeP02rFz/IsI0P6+/sy3AXMlA27bVk3P35X+5/1tWO\ndAE/sm7kwNkjbnerVwX1mg5RCeL9ZTaTPQmKVlOBL0ngvqD3fBq8ZREEKs32OqGeg\ne/F5ovLZZMMPHZexV/gZDdKG16jxGIKgS1pNo1bhk8yVJM1FeazxP7DP9Bvi6gmrq\nilYu9noFV9rv8IUOlSx9LEk2iM6d9w6V8scNk1MjoKQPpBra8ZeOHJCaVIUPNylVD\nLBcT1BFekI3Znc4zzSKFdu/92YSwsW2bv8sP0iZGgtmbdrvvgbhUGfLc2YJP1+Jwu\nrgk4gjgoTu4UCAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:35:19'),('probe_url:1:https://friendica.free-beer.ch/profile/sunsunich','a:15:{s:4:\"name\";s:10:\"Sun Sunich\";s:4:\"nick\";s:9:\"sunsunich\";s:3:\"url\";s:48:\"https://friendica.free-beer.ch/profile/sunsunich\";s:4:\"addr\";N;s:5:\"batch\";s:45:\"https://friendica.free-beer.ch/receive/public\";s:6:\"notify\";s:61:\"https://friendica.free-beer.ch/receive/users/360eb19714a3c7c5\";s:4:\"poll\";s:50:\"https://friendica.free-beer.ch/dfrn_poll/sunsunich\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:45:\"https://friendica.free-beer.ch/poco/sunsunich\";s:5:\"photo\";s:83:\"https://friendica.free-beer.ch/photo/custom/300/337.jpg?rev=2013-06-06+19%3A54%3A58\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAoXvjGQlnrGB9iGYlXc+2L\ncuKGlA3PSPbrFnF5TwWn/84IJQVg6IRUgn0PTmi05XY4fzr63nyLzK9MJCbnlBddw\nvV1r/GFvLeHrKRxYIdq7iHZ0yZFKfD4TWUDPrsSHIuVg2l1N9DuVuSRYnwo75sske\nQRzSttrBL1eifbiivajHKOKoY5fOtMBaytYVwrghMHXXx/nFFoFe9TXUCzhIwxqxO\nkrQVK2k2ZtGJyrQLPxY3R92EiMYKOVcztB3y6qPSATePAApBiueZApRCkXCISXsHD\ny8x8W4vEQc+yHXmYX941oM3EtrX0jPUQVn1BigFHDEzRZTDijGvqm53061Lfu4ESN\neKog0wJwvaqc4xTbrFwTK+8VW1+Vx6fMoImMYv4HTgTT+7a1e9TiqBHb5b+GdhFUp\neg/dPYkQUgRPBvvXOWnWEAiej/fsycn/cTwtIWvMA03nADo8wsJho+QscrZZh81xc\ne5dy3H/HrgqpogA8CR21mZ4hxvruxjiF/Uv7dZEfPNIpBSDOHqqYi6A/RDwrMKiSp\nDkuk1curwDYtMS+UuJP7hiWWvkghrm3i56KNu9OHDnWvgHswQhxD8LZR6kjhLW27T\nWLfy2hYcF2Mq5euhqhYbQwu+gbcnFV51z/CnhJiyfraH/z3E8umC4iEFe21SaqXOC\nZvNm5ov0BuqECAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:34:48'),('probe_url:1:https://friendica.free-beer.ch/profile/temsa','a:15:{s:4:\"name\";s:16:\"Florian Traverse\";s:4:\"nick\";s:5:\"temsa\";s:3:\"url\";s:44:\"https://friendica.free-beer.ch/profile/temsa\";s:4:\"addr\";N;s:5:\"batch\";s:45:\"https://friendica.free-beer.ch/receive/public\";s:6:\"notify\";s:61:\"https://friendica.free-beer.ch/receive/users/be4b2b5485f201ae\";s:4:\"poll\";s:46:\"https://friendica.free-beer.ch/dfrn_poll/temsa\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:41:\"https://friendica.free-beer.ch/poco/temsa\";s:5:\"photo\";s:83:\"https://friendica.free-beer.ch/photo/custom/300/548.jpg?rev=2013-09-28+06%3A16%3A05\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAs9WQTD2qYDNc6c8HwJofI\nCo5qoC6Me3SOpV8WbZXwFioywAjKqpGkfZ6acPFQ6I+3QTCN9Gx+WSGnaV+b+w78t\nQbcrcO7f/SeQpvzVcceohK2BSSGIduyONXsMH4O9p3erVzO/cZv1//f08Cat5zUJe\nSLPS1kFUxaLGz4ugKegjVhmYbK0a75rKnoTwBJZAiuEEL63o+qj0WJ2OcHVKn1sxz\nBVF5ex5vEn1IcYkalGxiG9dDgi5+VB4otedXTDKVwmU2Wg/VZpqikZOSfSGk5Qs/d\nrpXRmQvvVYblsmOtpOTKoq6x1AaK0CnMmYvDSSIrwODbpZu/FCNKLEQr+xQN/5KnL\nvAg4GVuSjCGMornE2kYW17QElsPbsSitqrkIiiDgqMq3CxX92LPcvW/oR80AaXd/B\nQFVZ9/bBqXKwo+lTU2NVrqwyecrDcopakQh9HqiLlVlke/MH1gLeqgkGjukyO6voP\nacXGEqFs4lD5f0PPpQlMaSA7zh1j/nHT6elxFYhzJAYkVNW1wz6FEkD4r4QPifQMy\nLI3jbQO7YwqagwZczfdVSW+yB7RM73lHGr92C0XOWAoog52k3fFD5K3JtkvMf8rvk\nSNHILMeMsuZG+TALNtbjukDEf2J+sBLgQxQ3cTbZLPzFaSG4W5OHVcLmYW7WwCK7T\nELCHO8aJbIm8CAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:35:12'),('probe_url:1:https://friendica.free-beer.ch/profile/torsten1968','a:15:{s:4:\"name\";s:18:\"Torsten Schilinsky\";s:4:\"nick\";s:11:\"torsten1968\";s:3:\"url\";s:50:\"https://friendica.free-beer.ch/profile/torsten1968\";s:4:\"addr\";N;s:5:\"batch\";s:45:\"https://friendica.free-beer.ch/receive/public\";s:6:\"notify\";s:61:\"https://friendica.free-beer.ch/receive/users/1afc1759c98d2467\";s:4:\"poll\";s:52:\"https://friendica.free-beer.ch/dfrn_poll/torsten1968\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:47:\"https://friendica.free-beer.ch/poco/torsten1968\";s:5:\"photo\";s:83:\"https://friendica.free-beer.ch/photo/custom/300/107.jpg?rev=2012-09-18+11%3A17%3A42\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA3mRei/n0ebC8aG3XAGSm1\nPVpotAhnPIYCgzS2qbVrlmVhtz2YtnbCBX7TudLxvC9f7war5v7tmEL0Tlex3pdjN\nDoZuj1DuRV1ClvocXNhdw7WKXsRY/zaLlSK+XTrJgd10QCo96yEL41xPmsvTF60so\nc3DiMc/3M7bjJIaFYvOyOtkZymebmNV5MznRzxs2q5+7DY3+mXsUfROOJOXIYfTeq\ndQ1DLPU2gdP9Q84ZohuBvtca0aiJTkZYkrsUrVRcBqjqJ0bJeLdJjsV2tW9S0bE23\n11S96TTOHxiLPF4Ae89G4bxJvl+0wkXS6i3vFHW3gdnFsuz22BoiC8VMq8KG8Tz5D\niLmf/j2KLNJ0J4oQ3qI9JVxXKyCFHuSYFwLeuMc320uA5hmadkXxxjSdx+KaVE/xR\nzQ2nF+vjY/22l8RWdZRW2PzNoKOk+p1reZV98h1AJyqxcsuGIQu9oUJgrKKEvtHdv\nOINP9+vES7BMpZKotMjUQk3p7nwUzuCXpmzBU/tWWDzA/XKxPu2OPSKEig5RghXC6\nHvshIiSB3ijLBkw/IBLC7oNQKMiG8pspAPpj/HtLfhviDYfZZmIOdyQAp/cFXbjwQ\nEdkRqOUvY4lWO0kXOpCKCh0teqT5B3koxTHASZDoQCar+NP3paQP6zcQ1bY1Seztm\njxMV38hw0gl0CAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:34:55'),('probe_url:1:https://friendica.free-beer.ch/profile/vaugs3roty','a:15:{s:4:\"name\";s:12:\"edson duarte\";s:4:\"nick\";s:10:\"vaugs3roty\";s:3:\"url\";s:49:\"https://friendica.free-beer.ch/profile/vaugs3roty\";s:4:\"addr\";N;s:5:\"batch\";s:45:\"https://friendica.free-beer.ch/receive/public\";s:6:\"notify\";s:61:\"https://friendica.free-beer.ch/receive/users/9615a042c260c95a\";s:4:\"poll\";s:51:\"https://friendica.free-beer.ch/dfrn_poll/vaugs3roty\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:46:\"https://friendica.free-beer.ch/poco/vaugs3roty\";s:5:\"photo\";s:83:\"https://friendica.free-beer.ch/photo/custom/300/570.jpg?rev=2013-10-13+18%3A01%3A06\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAtd/GlFYQpyEoFDaGK4Iv9\nmQdjtvkN7IYNV+w47ZPgxP+OL05U24wwPmqS8a2NZzFTgTXjYThIeOns0JSFuLk9u\nqH7IZnfWkRi5BQB58/qzeCgtEKu3YZMrvIOBhXpRoxshQK2+7H3eN4WHkBYYa5QVj\ntnDybcD2UzblNVDdIMSHEAmMFfrP27wdVMpqg9Xmh9JI4iQFY8Kf6xvBlc3gkP7yG\nPK7X2HhGMl5BCp838Ql/6rRuTSH7RjS/UjEN0tT/ZvWmI6ghU777lcCfWIgrR/N4/\nhDA3jR8jc9YtomCVBbYzl5dQHrr67IMybIck50FkntyW8/yKYlTHe7oIGow7edMxa\nx0UtqOYBr0a+Uu87kKWTZbAxRStNHHmq3Uo4cwnWtBJlGUOIS3LgnO/h4bOwmXtw9\n8HMoVOxX3FvHd5osH09G9TnMc0WXbIChzaXlrky2sKTrsqUVfCVOCAMARkZYbuMAH\nry8GBtUEvNzkz42Lbr3Q+Ajo8XDG/fIlzf/LdUwf2wWh/h5E8LCOFNiuZLHXTWKxa\nAQ8ZofK22JOD4zH2TSQWDBrdf1dKUwTPMk3hh2RS9rjeKfceGQFeb8Zf4mueLYSEV\nVCdXrObFyGSk7dJjyNYNGk7nu4ytlnMYTDwT5a6BVway4a6u8zgocF2LywWNush4g\no/L9hhGHqW7MCAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:35:14'),('probe_url:1:https://friendica.free-beer.ch/profile/w2bh','a:15:{s:4:\"name\";s:19:\"w2bh.- free-beer.ch\";s:4:\"nick\";s:4:\"w2bh\";s:3:\"url\";s:43:\"https://friendica.free-beer.ch/profile/w2bh\";s:4:\"addr\";N;s:5:\"batch\";s:45:\"https://friendica.free-beer.ch/receive/public\";s:6:\"notify\";s:61:\"https://friendica.free-beer.ch/receive/users/737fbb1b26914edc\";s:4:\"poll\";s:45:\"https://friendica.free-beer.ch/dfrn_poll/w2bh\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:40:\"https://friendica.free-beer.ch/poco/w2bh\";s:5:\"photo\";s:83:\"https://friendica.free-beer.ch/photo/custom/300/104.jpg?rev=2012-08-15+10%3A52%3A29\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAt+9nHtc1JTMK1l/Vr9vTA\n+Y2RpBfnYQ4K7REdo0ZzugeqXOxN/Q7tUuNep2kvy5LlMOJj+1MtWH7M5oeuAgOuC\n8nOq/NrzRn6GNxLvUeO+OrRnYT4Lk6HFu10WlOF8gsbufYayyyyJR+bnD4MaSaE3J\nh93SqyqSEmNV5eC8ii1DOA1hno7Zpfz0gQrzhrrlr5FKxGDkz8sGbTxi0eY7Tgale\nrcvGMAO8Ukmwhvy3kCdCPxAxaC5bEMBmSifhGiGckVW9rpQnLtL7MCfFh/OkTQ6ig\n4jfR0OCT+2hiIiNFuJHFGRm38/MOhnvXAaZfOGzcqYMyuQEahV0tRjUwLplXkj+t+\nj3eiUqleKP6StLDCa7urcdpKoLUO9/920G+FOWWdY8v3S6zEDvH41UNAnFkZv6I5N\nc01lZItbH6kom0Mm/79FYvMMqQh+dCckRUYZjOiOde5CbyTW4ljma1w0Lt/YPxy7P\nzhnSydRAcWoIzSemYJvYKtPGrhwesOxj9Pz+XGh0Tv7KzS84dYr+U58MgijexgJmu\nmm7bKQL1qJ5UIoj+yT3BTKzyisagP+POijPR/tec36D+zvLIt4KKSFbR6YXm6UiKz\nqVJKTH8g0Xq5BTcSVSz+yrtu8I4CGP+bjhm2xbMDw+CZCAbFo1hwhCjMdXiUud88j\nrEcUCSnoLZT8CAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:34:55'),('probe_url:1:https://friendica.free-beer.ch/profile/xurxoventos','a:15:{s:4:\"name\";s:12:\"Xurxo Ventos\";s:4:\"nick\";s:11:\"xurxoventos\";s:3:\"url\";s:50:\"https://friendica.free-beer.ch/profile/xurxoventos\";s:4:\"addr\";N;s:5:\"batch\";s:45:\"https://friendica.free-beer.ch/receive/public\";s:6:\"notify\";s:61:\"https://friendica.free-beer.ch/receive/users/d2b4ddd0929993d6\";s:4:\"poll\";s:52:\"https://friendica.free-beer.ch/dfrn_poll/xurxoventos\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:47:\"https://friendica.free-beer.ch/poco/xurxoventos\";s:5:\"photo\";s:83:\"https://friendica.free-beer.ch/photo/custom/300/412.jpg?rev=2013-06-29+10%3A07%3A23\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAuVBMOSFi7Pak4WQQ2HwJ0\nmTAfI5YZ6gE6IX4/o72tCqtnvJ3ZYQZ3LBRS8/0Ry7ehQ6c43M6JJJlqa7GkgbXmi\nLwHAHWwd9FDzHTbiLb0juVB0jfsxbq8vkX/C2oQfwM7B9i+ivFmhEjQhO95F2eCdc\nJsE0Or9W4QOEm2AZH3CZLdTaZruxFfzUtSw21zuY6gPDckcGy8Eq/Lmhurc3PoYhB\nWQWaNUriL3IXrlkrxzgHfxMnEGnqDBvYJ2Pqk+F4NBD+9eCLQ+N0jMRExqGZyNS/h\nxIn2XV+5vBGAxhMYfJ8biyX1cp6sqHHVxkyZXYFkV9rjPlRK8jMwbyVCFVRfoVXsQ\n+R4Cw9EcE1ebTPXsabe6f5eh/zYpSsvNvHUX/3C+dbp8XVKjwVzZc5aRChA7p6o8S\ngQQUQOyK7gmJ7LIJR7aVV6p/iLuh9j3pEYe9JL16kwHyzni3gDWv7A6O/AznTQ+1M\nhHN1Irttscd5fRV+1K1UAvEYKIE8QlHWBF0Ya6qJJKVy3ONGK+D1qlZh0iJ3v0gIO\n/y9QnfZi0Y1tPWqIcEUo51Umeu89azPzSdrLvIfpIZ5ZMhB08sOLcicQUWNjCQLsE\nK/ipuIHgS7U+dRfNj/l/9uoEPX2KcMWLMHReS+APfIMU/tseIe+MWcR9ex/Vqs/Xw\nPyVzu6EVVDtkCAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:34:59'),('probe_url:1:https://friendica.free-beer.ch/profile/zebra','a:15:{s:4:\"name\";s:10:\"Armin Lutz\";s:4:\"nick\";s:5:\"zebra\";s:3:\"url\";s:44:\"https://friendica.free-beer.ch/profile/zebra\";s:4:\"addr\";N;s:5:\"batch\";s:45:\"https://friendica.free-beer.ch/receive/public\";s:6:\"notify\";s:61:\"https://friendica.free-beer.ch/receive/users/a947eec04f59b8d3\";s:4:\"poll\";s:46:\"https://friendica.free-beer.ch/dfrn_poll/zebra\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:41:\"https://friendica.free-beer.ch/poco/zebra\";s:5:\"photo\";s:83:\"https://friendica.free-beer.ch/photo/custom/300/612.jpg?rev=2013-11-20+12%3A36%3A03\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA1FMq1E9w3UjAE1plu8Clb\nt4P4T6F6NYv7eWZQ+xsjEQrEv3l/FMsiSru1Z7MhO4DwhNxJPngrhkt2sI7aIWArb\nmTmhEqxf3WbIH36cgFNWBA/J9K8CkQu3Q1N2xk/25ZY+JDGMJJwKETSYG60KZcfN7\nw60EwoMQXoNCnj7VeET3snblRO/EAFf+DYhHIBQ5H7NlCLW1D4tGrB2Sctz6jcYyW\n1nTuzPeEboJfzCCB2BM44dPlNhlROvPOcmQA2w/G/wU1/aooWWFFRt84TraOrcC1J\nen26LAztONNn64W+wg/Zk5y8uzXurZkhc3R4pi52A1VOigi5XMhJ2xxaxEven7wbH\nPbCp+IFFDHV9ikvADoVjxzTqwCE5+eB+YIsoPvmiRhJv9PvoyeMhnpQ/bR2CzMH4C\nqaWqi8ePn5djQ5a1Dp4AQeI3YfJBccM/BfNjCgPn8oog43P/EjfJ6TnQmlzOZHkGk\n8KhHYGeshq/aFziHTenkwU3MRwQLhKFvDd+CH6cg6fNuTfknS6Pe4xswgzKPLx4lG\n9R5qMZAK3Lgu+LCHtGWX3xd0GX6t97YTSfgvx0FfboqkSwBl4xBu335ar7El317jj\ndgbMJ8ILFe+3dSmFl+C33aNU1P7DZehr8wAR3fgGGWTSy8LrCkuHj4Fghv06F7qPp\n4K36Fn5A5EZECAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:35:18'),('probe_url:1:https://friendica.styliztique.biz/profile/stb','a:15:{s:4:\"name\";s:29:\"Lass Mi Randa Den Sie Will Ja\";s:4:\"nick\";s:3:\"stb\";s:3:\"url\";s:45:\"https://friendica.styliztique.biz/profile/stb\";s:4:\"addr\";N;s:5:\"batch\";s:48:\"https://friendica.styliztique.biz/receive/public\";s:6:\"notify\";s:64:\"https://friendica.styliztique.biz/receive/users/ba09b241ba872139\";s:4:\"poll\";s:47:\"https://friendica.styliztique.biz/dfrn_poll/stb\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:42:\"https://friendica.styliztique.biz/poco/stb\";s:5:\"photo\";s:85:\"https://friendica.styliztique.biz/photo/custom/300/20.jpg?rev=2013-09-06+16%3A04%3A10\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAxgqWrggPeYOab48lIP8xn\nxNUo6vEymJeLI0DDuiBH34sCRwt73jbz3MaAjGXOOWDRSXvxcl6jxBowTcopViPEh\nt3y5NZLj2JxgEyENeF49gqd/FBpaap8QVQUiqmD54+z6MkGfTlUkKYk/q0z4F0Ypp\nQZNVgDWZgq1VcQYpMWQnAFmIEr+7ndDp2AR7u46Bb2qm2YgU1PgavR5G2qPqy6ieO\nUvhNjQ78hH3dklXilnQI/pTUFh1VgsNFlYuklT54Z07ITDgcIbGlnW5tWIYfU6hfL\noGWoUEtexVPAOOLto0DJBxAZQPYFDpRq/snoM/Ojr+M7iUtVFYFMXr9YwFKN+qjqA\nbt7uSK/WfrR/glcperIP9OAOipNxD9ZmLO0NjAfolNe4uW7Q2IhQ0lEElgupNxqma\nQTblzVaUrIJoo2G+nlMh9CWwC5fPVn/xwnoTG+H16lTuHIQnN582DaCBeACaVFQeZ\nHfvDS0os5u6LTu3eDdlkYvg2KgBGOsh+j7DOsXCmXkSvLKP4bfs/iSZ/7pp9DsaDf\nLOBpKoTYiIYnua+BpwTTEiqMMsaz29YumWB+9ykl0bLPxOR8CDMgfDf69ZDuF8gHi\nU7zqhNN6EXnLN+1ay5AbgBdE8+QyxEdZeFfWzmAPQfdQnRGWcyeabFg978MPjO1jD\nKFUj2/3gcY2sCAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:31:47'),('probe_url:1:https://friendika.me4.it/profile/jmgoig','a:15:{s:4:\"name\";s:17:\"José Manuel Goig\";s:4:\"nick\";s:6:\"jmgoig\";s:3:\"url\";s:39:\"https://friendika.me4.it/profile/jmgoig\";s:4:\"addr\";N;s:5:\"batch\";s:39:\"https://friendika.me4.it/receive/public\";s:6:\"notify\";s:55:\"https://friendika.me4.it/receive/users/edd126d4135d5e2f\";s:4:\"poll\";s:41:\"https://friendika.me4.it/dfrn_poll/jmgoig\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:36:\"https://friendika.me4.it/poco/jmgoig\";s:5:\"photo\";s:77:\"https://friendika.me4.it/photo/custom/300/283.jpg?rev=2014-12-16+10%3A11%3A40\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA03gRxsnGr0Q0v3aFOdJvE\nLf/RWQWN2W6UQf4B0CYZg7dipt5KnL15/X9HK4+8YgTTQ1FgueQmxrkGD35XhLcvA\nfCNTdCrR0NXD7JtEAiBkXCaz3dRDCp1AB9RGNNbeQBCKMu4wFBXpjcNZ6R7QU9qp9\ndGUZn2EYMg92zFs+M0lg6FURj3URY+/Z838JlBBSQ5MslYIK1Ehar01Y2rkq1neLl\nnpdXvwKx4/eT5apxCBQPmTzj0swzpLDILPD/NvYJpwSXoYiWhnAC1KBrQHT4omIif\nwbvoNQUuVa+D4L3PK+kj8XZNjlohv/YMeUl0o1PcWFwByxn+g9VJFw/iMxhtN/Tdd\nb9Si18NTT7tACqk7/VOeE5FcdO5hdTn32UebAR0v5+gnw2KpLLV1yoxijkVMf4j8E\nHU8RJaOvBvdZ+78Au/zCBEBPK9aVTsmlAMXGkLyKPrxNRISISbbGOjKwPACu8afgg\nesBF4NXSNii/7ZX2hH+7AaBm1j3SsWATlynADmOOTMtcahcLNZIr2OMQzkVci/Bgs\ntmTN+vOl/+P7d5RG3CKBoA5F4gQ5TgQKzbl+S2r5plZFW/FsODrgnV6M4yeo0qz2W\ngT1QrU+KQNlsVIzln5x/x+bYqxsKz6zBwKZ7sC2QQ75si7Muo4MqqdWQ4Hojp6E1Z\nwhQRCGHB/lhsCAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:31:22'),('probe_url:1:https://friendika.me4.it/profile/keith','a:15:{s:4:\"name\";s:5:\"Keith\";s:4:\"nick\";s:5:\"keith\";s:3:\"url\";s:38:\"https://friendika.me4.it/profile/keith\";s:4:\"addr\";N;s:5:\"batch\";s:39:\"https://friendika.me4.it/receive/public\";s:6:\"notify\";s:55:\"https://friendika.me4.it/receive/users/692676bfa1ec918b\";s:4:\"poll\";s:40:\"https://friendika.me4.it/dfrn_poll/keith\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:35:\"https://friendika.me4.it/poco/keith\";s:5:\"photo\";s:75:\"https://friendika.me4.it/photo/custom/300/1.jpg?rev=2014-07-27+19%3A34%3A36\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA/em/rc1hSqF5B2ldP9NMH\neD7SgqdSxBrQtyAZyTv9kcgVp/VHeOp3/shSc85rH4xGPyLklefmu+Gg2LRjEVsYF\n3ZCdw4AXjUEEJDSViYINRHXYp0WkRpTnQ5gzXFCUiSePBBtLfFDJnKhYyWRfFJQsV\n009LjPSQNeuBDI51M3m6hLedYA49yG4iEpvcPWcGN/dmLSXK38MWe22aXf0t6DkZ5\nIhgaCxbS3+xOQE0C/cHfp7NPLkRLQsIqt2Jw3KK5/DX5Mf8yYuk/DP+tHKsFAzC8l\nP9t8AImgN3M+OzbGxRbw2I5GvAPeT4KrFkoDMU8otD2kPno18YQ2U+nOWHe3WlEHR\nE64K3/Xn82NtJGRP1tm+ptC/5L1X0kJl1Cb9ZDQ05rLv6PJiMQy5KyrBx3FZ756vQ\nCoZyKdcB5TyzASUoX82pVOtYwKxf5wdzVe15QDjaLSlTgd0TsPVthZRmMAb2xTP+z\nygJuM02rAKNJRMFHmq/VY495sxUbIOF3VNg2HrrMF4WNIYVjRvaGierWDxOdhLezj\nBIUS6zzGlSuqC+2dA8sgSlxdXDBbKYiqeU94apDwbDtoIk4Ybj076vF7SGAE51azU\nES5dqRpxU0hiQXIQrR2W3C7ARz8WaHvKqLJL9p9R9MIf5aK5qFf0cxx7MPMrGKNVd\nIKK+xJGWeftcCAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:31:20'),('probe_url:1:https://friendika.me4.it/profile/manolofreiria','a:15:{s:4:\"name\";s:14:\"Manuel Freiria\";s:4:\"nick\";s:13:\"manolofreiria\";s:3:\"url\";s:46:\"https://friendika.me4.it/profile/manolofreiria\";s:4:\"addr\";N;s:5:\"batch\";s:39:\"https://friendika.me4.it/receive/public\";s:6:\"notify\";s:55:\"https://friendika.me4.it/receive/users/3c78460e1503a644\";s:4:\"poll\";s:48:\"https://friendika.me4.it/dfrn_poll/manolofreiria\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:43:\"https://friendika.me4.it/poco/manolofreiria\";s:5:\"photo\";s:77:\"https://friendika.me4.it/photo/custom/300/254.jpg?rev=2014-09-06+23%3A58%3A50\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAvkqMmn/MrUSVVgCQagoiV\n5YAohzh+HOvJtJB8XQ4cIwrQXacPcRMv97AHUeFAfr8L/+65QEYxJ7jNSY6qY8QQw\nqhXQUwR8qjjJMbk/1XVFGUJvK49kSvR287t+GikgPHoQoa0ZbyqgPsP7nhru4N9ZW\n0zJ9sm0Wgl3xkGmiDblvynltouNubcOzON1ne7VHZpM2CvMMZjob3xES0Ci9TG171\nbA2rAH4Y4zIn7AS16DWG2XceUruHg65ssfv2YWmux2LzfQR7MQm8wqSTHXnSAuDDz\nn8zp6QDto6sfEKOf6UFTD40qbxdta44tsWIuYH5zgNxKuiRGvytHucA+KemMvQZA/\nAHTJJbCBvgEz1IRw/3p0qHb1gMJ2Q3pCqqJ4E52adeLrvsBZ1fKisdSkbeUXGqYE2\ndExAUnL/xJB5YdB6oh8MclNBLS8fxOWTCvM1WdIZcQb2BDxTdpdZmRxs3+aK3ardu\npBm3uZR1i1nBd6TcPamvDzme2XhIxF4gvWC6aXs7X7vCDCOFAozfl0DL8Zbt//ty1\nsz8JQFFLwmVIJddtblwu+XLZNrxXqa368RFkyxM1FivuXIgz/zyt1ItftjMwTV0JG\nUjVhNwcYUElwI1vICi0xZWHb/ZNMbfcz/vscJ+3Cs9yEqyIzWy4NSj6p7jwzgoSTc\nBXEGsp6pPDtcCAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:31:21'),('probe_url:1:https://friendika.openmindspace.org/profile/anarchism','a:15:{s:4:\"name\";s:9:\"Anarchism\";s:4:\"nick\";s:9:\"anarchism\";s:3:\"url\";s:53:\"https://friendika.openmindspace.org/profile/anarchism\";s:4:\"addr\";N;s:5:\"batch\";N;s:6:\"notify\";N;s:4:\"poll\";s:55:\"https://friendika.openmindspace.org/dfrn_poll/anarchism\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";N;s:5:\"photo\";s:42:\"http://192.168.22.10/images/person-175.jpg\";s:8:\"priority\";i:2;s:7:\"network\";s:4:\"feed\";s:5:\"alias\";N;s:6:\"pubkey\";N;}','2015-02-02 11:30:17'),('probe_url:1:https://friendika.openmindspace.org/profile/ccase','a:15:{s:4:\"name\";s:10:\"Chris Case\";s:4:\"nick\";s:5:\"chris\";s:3:\"url\";s:49:\"https://friendika.openmindspace.org/profile/ccase\";s:4:\"addr\";N;s:5:\"batch\";N;s:6:\"notify\";N;s:4:\"poll\";s:51:\"https://friendika.openmindspace.org/dfrn_poll/ccase\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";N;s:5:\"photo\";s:42:\"http://192.168.22.10/images/person-175.jpg\";s:8:\"priority\";i:2;s:7:\"network\";s:4:\"feed\";s:5:\"alias\";N;s:6:\"pubkey\";N;}','2015-02-02 11:30:25'),('probe_url:1:https://friendika.openmindspace.org/profile/friendicasuggestionbox','a:15:{s:4:\"name\";s:24:\"Friendica Suggestion Box\";s:4:\"nick\";s:9:\"friendica\";s:3:\"url\";s:66:\"https://friendika.openmindspace.org/profile/friendicasuggestionbox\";s:4:\"addr\";N;s:5:\"batch\";N;s:6:\"notify\";N;s:4:\"poll\";s:68:\"https://friendika.openmindspace.org/dfrn_poll/friendicasuggestionbox\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";N;s:5:\"photo\";s:42:\"http://192.168.22.10/images/person-175.jpg\";s:8:\"priority\";i:2;s:7:\"network\";s:4:\"feed\";s:5:\"alias\";N;s:6:\"pubkey\";N;}','2015-02-02 11:30:21'),('probe_url:1:https://friendika.openmindspace.org/profile/iulian','a:15:{s:4:\"name\";s:17:\"Iulian Dumitrascu\";s:4:\"nick\";s:6:\"iulian\";s:3:\"url\";s:50:\"https://friendika.openmindspace.org/profile/iulian\";s:4:\"addr\";N;s:5:\"batch\";N;s:6:\"notify\";N;s:4:\"poll\";s:52:\"https://friendika.openmindspace.org/dfrn_poll/iulian\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";N;s:5:\"photo\";s:42:\"http://192.168.22.10/images/person-175.jpg\";s:8:\"priority\";i:2;s:7:\"network\";s:4:\"feed\";s:5:\"alias\";N;s:6:\"pubkey\";N;}','2015-02-02 11:30:11'),('probe_url:1:https://friendika.openmindspace.org/profile/joecskues','a:15:{s:4:\"name\";s:53:\"https://friendika.openmindspace.org/profile/joecskues\";s:4:\"nick\";s:0:\"\";s:3:\"url\";s:53:\"https://friendika.openmindspace.org/profile/joecskues\";s:4:\"addr\";N;s:5:\"batch\";N;s:6:\"notify\";N;s:4:\"poll\";s:55:\"https://friendika.openmindspace.org/dfrn_poll/joecskues\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";N;s:5:\"photo\";s:42:\"http://192.168.22.10/images/person-175.jpg\";s:8:\"priority\";i:2;s:7:\"network\";s:4:\"feed\";s:5:\"alias\";N;s:6:\"pubkey\";N;}','2015-02-02 11:30:13'),('probe_url:1:https://friendika.openmindspace.org/profile/survivalism','a:15:{s:4:\"name\";s:11:\"Survivalism\";s:4:\"nick\";s:11:\"survivalism\";s:3:\"url\";s:55:\"https://friendika.openmindspace.org/profile/survivalism\";s:4:\"addr\";N;s:5:\"batch\";N;s:6:\"notify\";N;s:4:\"poll\";s:57:\"https://friendika.openmindspace.org/dfrn_poll/survivalism\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";N;s:5:\"photo\";s:42:\"http://192.168.22.10/images/person-175.jpg\";s:8:\"priority\";i:2;s:7:\"network\";s:4:\"feed\";s:5:\"alias\";N;s:6:\"pubkey\";N;}','2015-02-02 11:30:28'),('probe_url:1:https://karl.marx.pm/profile/anarquia','a:15:{s:4:\"name\";s:7:\"Anarkia\";s:4:\"nick\";s:8:\"anarquia\";s:3:\"url\";s:37:\"https://karl.marx.pm/profile/anarquia\";s:4:\"addr\";N;s:5:\"batch\";s:35:\"https://karl.marx.pm/receive/public\";s:6:\"notify\";s:51:\"https://karl.marx.pm/receive/users/8466a0a1b3dfcf31\";s:4:\"poll\";s:39:\"https://karl.marx.pm/dfrn_poll/anarquia\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:34:\"https://karl.marx.pm/poco/anarquia\";s:5:\"photo\";s:72:\"https://karl.marx.pm/photo/custom/300/45.jpg?rev=2012-05-29+11%3A01%3A11\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:272:\"-----BEGIN PUBLIC KEY-----\nMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDVSK7blRwRTqgtBhYBtar1ZXgAl\nJjsfoQ71LvfybF+xaHJNsRDqv6a0mceT/aIj33iXOIEGkln1qHm22R6dPvgcRAaQm\nMoeS3fMi/zgACuU0z0d+PxsKb+M27awFXeJb77fjCRYgoFonAQSpJ9yh7JOGaAgB7\njgqsOy/RV/zHTNwIDAQAB\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:32:55'),('probe_url:1:https://karl.marx.pm/profile/antifa','a:15:{s:4:\"name\";s:22:\"Grupo antiFa Friendica\";s:4:\"nick\";s:6:\"antifa\";s:3:\"url\";s:35:\"https://karl.marx.pm/profile/antifa\";s:4:\"addr\";N;s:5:\"batch\";s:35:\"https://karl.marx.pm/receive/public\";s:6:\"notify\";s:51:\"https://karl.marx.pm/receive/users/a289c92a3e430755\";s:4:\"poll\";s:37:\"https://karl.marx.pm/dfrn_poll/antifa\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:32:\"https://karl.marx.pm/poco/antifa\";s:5:\"photo\";s:72:\"https://karl.marx.pm/photo/custom/300/60.jpg?rev=2012-06-11+08%3A46%3A48\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:272:\"-----BEGIN PUBLIC KEY-----\nMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDFA+v2tkyOqlXxxh3pZeXXNWNdI\ntw/f8F2nhGH6K8fmsZ4BdshoPBfNej8gfj+xQkae2yS/uv96B7fa8Cvg/kJLAIuOS\nuGYpZdyyckNX8DT9xv9jF5OMt/X2/Q9sj/PqKD+kmlrvTvQeoIMwzsuw9HDWw9JRU\n/M4mTvwBfVo1GnQIDAQAB\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:32:58'),('probe_url:1:https://karl.marx.pm/profile/cine','a:15:{s:4:\"name\";s:9:\"Todo Cine\";s:4:\"nick\";s:4:\"cine\";s:3:\"url\";s:33:\"https://karl.marx.pm/profile/cine\";s:4:\"addr\";N;s:5:\"batch\";s:35:\"https://karl.marx.pm/receive/public\";s:6:\"notify\";s:51:\"https://karl.marx.pm/receive/users/9bee352f894739e1\";s:4:\"poll\";s:35:\"https://karl.marx.pm/dfrn_poll/cine\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:30:\"https://karl.marx.pm/poco/cine\";s:5:\"photo\";s:72:\"https://karl.marx.pm/photo/custom/300/65.jpg?rev=2012-06-15+07%3A20%3A01\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:272:\"-----BEGIN PUBLIC KEY-----\nMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCmlmMUqPzMi+FsD5K6JY+y2/V1r\nagkCQywQp75YRZdTb3lib3dag8M0cIlkg7RsKfT3MnlA6J/vu4/6JqZrj04/Zltui\nXjD/z57Bq/I3IuEs4gTNTp+L/Fbu0+ITmGyoej0B266LEcIc4Mgn/+eCMvKSE70cU\naHeT9SkCkgb+D6QIDAQAB\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:33:00'),('probe_url:1:https://karl.marx.pm/profile/eco','a:15:{s:4:\"name\";s:8:\"Ecologia\";s:4:\"nick\";s:3:\"eco\";s:3:\"url\";s:32:\"https://karl.marx.pm/profile/eco\";s:4:\"addr\";N;s:5:\"batch\";s:35:\"https://karl.marx.pm/receive/public\";s:6:\"notify\";s:51:\"https://karl.marx.pm/receive/users/cff1bc16b6039814\";s:4:\"poll\";s:34:\"https://karl.marx.pm/dfrn_poll/eco\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:29:\"https://karl.marx.pm/poco/eco\";s:5:\"photo\";s:72:\"https://karl.marx.pm/photo/custom/300/57.jpg?rev=2012-06-09+06%3A42%3A04\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:272:\"-----BEGIN PUBLIC KEY-----\nMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQC1ugD+z09Rou59yNJnUhQ6Uvun2\n9WByN8/+3ArLZx7OKLvo5I68EAXkbOpQY0r3pU7E/XxpUmu9JNo4wXW3T4CdhuFfJ\nNuwlXL/tQIL9wClSZx8/o6b6066dQOZW9EvALzAk/o1eWHgj3jBBloMoPU+xg+XOw\nKSJWudzrslE9+kQIDAQAB\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:32:57'),('probe_url:1:https://karl.marx.pm/profile/facebook','a:15:{s:4:\"name\";s:24:\"Facebook (alias Feisbuk)\";s:4:\"nick\";s:8:\"facebook\";s:3:\"url\";s:37:\"https://karl.marx.pm/profile/facebook\";s:4:\"addr\";N;s:5:\"batch\";s:35:\"https://karl.marx.pm/receive/public\";s:6:\"notify\";s:51:\"https://karl.marx.pm/receive/users/88fee75f42ce5343\";s:4:\"poll\";s:39:\"https://karl.marx.pm/dfrn_poll/facebook\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:34:\"https://karl.marx.pm/poco/facebook\";s:5:\"photo\";s:72:\"https://karl.marx.pm/photo/custom/300/61.jpg?rev=2014-01-17+09%3A50%3A44\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:272:\"-----BEGIN PUBLIC KEY-----\nMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDfI1THUAn/zyz5EmRSANXFk0Ofd\n5Nzt1PnAoF7p4ISH7xTQdLf8EpU4qkAJYs94OhBFH4d7MqbDGTKKAKvg8FOSDZOEN\njNwPCM2DPF9Nbl5UcS/TkTQ5yjtj5hZAk7+SjKoSeJ07OgkR5XIJYHSTO0/UPaHCl\nkpgsJyQpC/swbZwIDAQAB\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:32:59'),('probe_url:1:https://karl.marx.pm/profile/gnu','a:15:{s:4:\"name\";s:17:\"Grupo GNU | Linux\";s:4:\"nick\";s:3:\"gnu\";s:3:\"url\";s:32:\"https://karl.marx.pm/profile/gnu\";s:4:\"addr\";N;s:5:\"batch\";s:35:\"https://karl.marx.pm/receive/public\";s:6:\"notify\";s:51:\"https://karl.marx.pm/receive/users/bdb488e7dabb250c\";s:4:\"poll\";s:34:\"https://karl.marx.pm/dfrn_poll/gnu\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:29:\"https://karl.marx.pm/poco/gnu\";s:5:\"photo\";s:72:\"https://karl.marx.pm/photo/custom/300/47.jpg?rev=2012-05-27+15%3A34%3A20\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:272:\"-----BEGIN PUBLIC KEY-----\nMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDpS5eQYohbGoKt9fR2II8j5733b\n2BsD+cxf19ECcjMbvUQIxoBKvzbRc5rv7zGUwp5d6LcAyhRTIg68LRtPqx9aMtKnn\nq970q55/Nh45BkG6eMZKEgH/JKu2as2fHHRpwCM74UWfMl4QgY/byjGAmbsIh9enW\nfmOilgG5c9mr1eQIDAQAB\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:32:57'),('probe_url:1:https://karl.marx.pm/profile/indignados','a:15:{s:4:\"name\";s:10:\"Indignados\";s:4:\"nick\";s:10:\"indignados\";s:3:\"url\";s:39:\"https://karl.marx.pm/profile/indignados\";s:4:\"addr\";N;s:5:\"batch\";s:35:\"https://karl.marx.pm/receive/public\";s:6:\"notify\";s:51:\"https://karl.marx.pm/receive/users/c5ea7f73d58ca420\";s:4:\"poll\";s:41:\"https://karl.marx.pm/dfrn_poll/indignados\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:36:\"https://karl.marx.pm/poco/indignados\";s:5:\"photo\";s:72:\"https://karl.marx.pm/photo/custom/300/44.jpg?rev=2012-05-27+14%3A53%3A52\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:272:\"-----BEGIN PUBLIC KEY-----\nMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCqx0Jsx0DpVQXbcJxgD+T1fS1JE\nW40lB5hVvhDG8gue1wII7EQ4JypSe/7m9Dt0QnKm8vuyHqkuAdiDJEOVjlDt7PfZm\nwLfRIGQ51rcVqG6K6CutgnVhggzBdP+09XXL6y/zMy+M7AVP9W8MA+FnpUqInPsIg\nN5A1apDIYHC20TwIDAQAB\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:32:54'),('probe_url:1:https://karl.marx.pm/profile/kmarky','a:15:{s:4:\"name\";s:23:\"кαяισz м☠яку\";s:4:\"nick\";s:6:\"kmarky\";s:3:\"url\";s:35:\"https://karl.marx.pm/profile/kmarky\";s:4:\"addr\";N;s:5:\"batch\";s:35:\"https://karl.marx.pm/receive/public\";s:6:\"notify\";s:51:\"https://karl.marx.pm/receive/users/fbe3d559a1f9ef78\";s:4:\"poll\";s:37:\"https://karl.marx.pm/dfrn_poll/kmarky\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:32:\"https://karl.marx.pm/poco/kmarky\";s:5:\"photo\";s:72:\"https://karl.marx.pm/photo/custom/300/11.jpg?rev=2014-01-17+09%3A48%3A33\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAt0CGGw3YcZx8ZaxwTNrjy\nFZOtJK3+zPZLVAe6Ay6bS3tiZWDbpwaeRJFzHQ6zQCHhF3j1wzBPkchmKZP+OvD0f\ntzdrtypygpwi+RmGzryb30KP9SaZa8See1BpSXKYmyi1Vw4PQPXRLinQKL3F8DgJG\n1p6kEadqryP39jM5SH8piyIU2DBv2Q3SV81dYLfrA2RWlxnScWN61rNWbhjC/JB/p\n9Fj28giZ+visoQObNMb6sKjEAJa6euQe4x0oL2azKnZ+2/zwvY/Jqtd7ykQcgCdmC\nnw/X4PypIp8JUa0O0A8iCWORl1n74Y32YscjjFOgJZwE8Y4XQQQpBI5fKhaKov7/c\nW49e+lN369BNtJUPkhJ42vbYIPlCy9EilGbcrgBWMEdiIMn6oUIIBCK4XgNYBDhLN\nkIOvCeM0OGFO/PR9bRDr2Nxbfcxv84zwi7s5bZVSQgtgJGesU2zU5scjO0g+JC9UJ\n5eHJdbe/aMa4Y1fHi4kLw+eFuRCRlh6c0tRl/tT6PJstjjofJfU99lJRBDA5N3wOJ\nm3xVZejd1el/MHnB1RYqGEPUjEZG0WYi/OKrrf4w/6yMs5Picf8Be39vAHUVBg9Bs\nL1EYiiJmSaQFH3B1fQW7VbIGEMfYoE0z4JTD1zI6CdYxpYB4gXE7H7500RqbvrsHq\n/qVIjUQ48jaMCAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:32:53'),('probe_url:1:https://karl.marx.pm/profile/pirata','a:15:{s:4:\"name\";s:14:\"Planeta Pirata\";s:4:\"nick\";s:6:\"pirata\";s:3:\"url\";s:35:\"https://karl.marx.pm/profile/pirata\";s:4:\"addr\";N;s:5:\"batch\";s:35:\"https://karl.marx.pm/receive/public\";s:6:\"notify\";s:51:\"https://karl.marx.pm/receive/users/fd10d8a6b338cdef\";s:4:\"poll\";s:37:\"https://karl.marx.pm/dfrn_poll/pirata\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:32:\"https://karl.marx.pm/poco/pirata\";s:5:\"photo\";s:72:\"https://karl.marx.pm/photo/custom/300/46.jpg?rev=2012-05-27+15%3A20%3A12\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:272:\"-----BEGIN PUBLIC KEY-----\nMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDS4+WZCUmZ0sj+h0qhAeewf4SRn\nUnyEKFUvx14qdCki10ajeLdw44YhFMeHKp4OgkOr4CTbUEfzTW/MulRwaukB1fQlR\nKDSDgUoeKAJhWg4Dd/+Cl2VaRDzxcnZ3xNoKArvm8LYVOduOiuPp6KF0ihOF7tqd7\nzY7ZH6Enh/QfF1wIDAQAB\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:32:56'),('probe_url:1:https://karl.marx.pm/profile/protestation_','a:15:{s:4:\"name\";s:12:\"Protestation\";s:4:\"nick\";s:13:\"protestation_\";s:3:\"url\";s:42:\"https://karl.marx.pm/profile/protestation_\";s:4:\"addr\";N;s:5:\"batch\";s:35:\"https://karl.marx.pm/receive/public\";s:6:\"notify\";s:51:\"https://karl.marx.pm/receive/users/97790bd375d9652f\";s:4:\"poll\";s:44:\"https://karl.marx.pm/dfrn_poll/protestation_\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:39:\"https://karl.marx.pm/poco/protestation_\";s:5:\"photo\";s:45:\"https://karl.marx.pm/photo/custom/300/414.jpg\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAwSQygPqEoLI2nDe6YlnSi\nA/c3VFDY7JSbGRwKjYhTd0t4fgu3er20w8nJo7+3asBWv7iaa7ob6rsADBE+Ji3ZV\ndMSlzngmkASkPiJMH9A/OfO+K8DB94QP4IxsJw+QbeSJKplFPiVandqlc1qITBYqj\nqgJhG+lIKTk4stU7k5DB4FCIlhFBRu9qHNrbNc3PmmQJ0E7gvU/nXMX2BReGGLEhK\nsCBnXKwHBaVaj9MSRdxw7htbgWvqnvRn7tdZ+0vZtL00Ju1ZloutLKQ1Qi92rGLt0\ng4JYZU70jrPwbxTSflzKDTXnnQ5ZjrZ5XJVUnKp7rQvM3No8uPsyN4AfTEjdEOqZM\n/OA+Pxa7WAaZOuKv9LR0AaH6CT6YVEcmcu+HIBShy4YE1//hL+m9GjqsMuC5DmV36\nLN7JxOtzvos1cFLaLZVa1cIOox6gFkVDThrNkPnCW4zN4yLtBhZ6dH1nrBbnxRwVW\nc6Y3sBhetykoS7JPCzxjmBEdEV3z9NWQ8QD/U5jAA7hd4ZToOZ76HEkmzjRmbkvoP\nFSDpuArYRDdnFxWiRQLCG2XtCvxkMjCag1Ig39t9735Coo+A7Vk6V4zM7rULWhvnb\nfLtI2xsJQUD6BA0ZWmj0yRWP8/MwGm0BIRm2TJ/YDnxzjwjxRbhjrw8+NTQoiVGtU\n1TPQhV2GBo6kCAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:33:03'),('probe_url:1:https://karl.marx.pm/profile/riveravaldez','a:15:{s:4:\"name\";s:13:\"Rivera Valdez\";s:4:\"nick\";s:12:\"riveravaldez\";s:3:\"url\";s:41:\"https://karl.marx.pm/profile/riveravaldez\";s:4:\"addr\";N;s:5:\"batch\";s:35:\"https://karl.marx.pm/receive/public\";s:6:\"notify\";s:51:\"https://karl.marx.pm/receive/users/9ed0065099596e32\";s:4:\"poll\";s:43:\"https://karl.marx.pm/dfrn_poll/riveravaldez\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:38:\"https://karl.marx.pm/poco/riveravaldez\";s:5:\"photo\";s:73:\"https://karl.marx.pm/photo/custom/300/205.jpg?rev=2013-06-18+10%3A58%3A46\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA4dOLBLnr5Tb1uUZZjhrm/\niXj/MlXin4GQLiETSDrGl+K1LjyOLX8yVksOdUJYXFpuQcLBaGi93Dj/TvuQN/A6D\n6EJU7NuN2KYqhi4aIDi8ifqBwRLGn8VAR785IOpOStXiWZnYO7tkvjAvgzfFnY5i+\nbs6r0MxEMbHAHFHNcFNV+YBFJJleI6caluAandVubJr6r6icnF4NMrtiGwX1cxNnn\nFc+4bQWkOomLsU9qcmHWVY5IN5lDBwx+tekVz/aI/WowSpXEz7FQReiIDj8X0t8OX\nMY4rZKpwER77jkS+U/oDrT9myIoaA3IbyAcngCQ/D5ZV1TXeySunzKQuODQc8Gm0H\nl3X4BdLgWJIOPKDYrMkSuSQs7MpQmjAhc0+sQEaCnNYO9Knum8B4Oe8bAPyZA13XP\n/Y4BIN8AJEYtGXhhrSwBRVPvBS9+fEul6Thbd8hQr8nKnynZ3v7Bp53WyN/CHYMsl\nXeIJZ0R+Vy9UqVSSRSJrHbrVjfmHwpeQq6VCK8isPvwH1jE3JDfMyagf7SSZn2lde\n8DER+OT3UxEG+GBhb2lfORBbWiNO5glbwvTzUOGwGGembunnsJGXvOrSlTc5aO4Tj\njuq/pzFdyHi6Ci7RfgP5d4/mJhNHRa7kQzFMWJpjoHIkHkD3JIHHVdTb4FpCv3OXl\nNeDfBNWXL/V8CAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:33:01'),('probe_url:1:https://karl.marx.pm/profile/tazman','a:15:{s:4:\"name\";s:12:\"Tazman Devil\";s:4:\"nick\";s:6:\"tazman\";s:3:\"url\";s:35:\"https://karl.marx.pm/profile/tazman\";s:4:\"addr\";N;s:5:\"batch\";s:35:\"https://karl.marx.pm/receive/public\";s:6:\"notify\";s:51:\"https://karl.marx.pm/receive/users/8fc03e02d6916c7b\";s:4:\"poll\";s:37:\"https://karl.marx.pm/dfrn_poll/tazman\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:32:\"https://karl.marx.pm/poco/tazman\";s:5:\"photo\";s:73:\"https://karl.marx.pm/photo/custom/300/228.jpg?rev=2013-08-24+02%3A59%3A52\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA4bv87MwaehueYXpIIRNBb\n3aERb8XF3s9oKto8R73Hlf9hv+CR1SJGHle0VOmhplhDVgKwVHhjAckUy1Bny1O04\nVmNyyC9VrKXNrsnbIq85T+r3EA4pw8+rd2xrPxUCI04WEVUCVv1PFMk9i78VnLKNk\nhFARh/dLxtn0UCHTb7D2/Gw9nQ6kRn0D3Nv04g2lVnsrHxqPILAhAidhQeIxSU06w\nohurWGXMODwQUmXqmrEwG240ybCgVw1ge3o9yY+ZXoNkw0HckHCZMhFL0zHO/vYwe\nba1wVsXFQD5xYqdTHfd4KufJHhXEoSJ2jbdlG0YuNGLgPeiJikumxm1aPyiJ3VGDl\nPXvnbC44LizHbIkXkvC54pfM8T2g3pu0FyHEozV3XrOH7B1rVurDF0g7BY7kntiFt\npExN0D+PF1ZI1uJCzfwh6sAqwKePiNhKDjsh1nec2CKHhcp9B0AtrPOkg1cbu/UZ2\nPmNvNpIZm010gzeWvYLT0rd1n16Arm+YAQpxgWyb/2r3g0uvh5WSfMwq8ArrqDpUo\nLdvCSDmjyHI13oARWRsCwDEacqZ/xvHgNWKrmxN8UVfTUUEClYrRNdB20QOylT+Hc\nS+TX2uMh8b+yS6D17dCVuXgHkST7qL8M7vWBvCua7adw3PTOxwkDVepcuQey7N4u2\nD5L6fYfL1bHMCAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:33:02'),('probe_url:1:https://karl.marx.pm/profile/tiago','a:15:{s:4:\"name\";s:19:\"Tiago Casal Ribeiro\";s:4:\"nick\";s:5:\"tiago\";s:3:\"url\";s:34:\"https://karl.marx.pm/profile/tiago\";s:4:\"addr\";N;s:5:\"batch\";s:35:\"https://karl.marx.pm/receive/public\";s:6:\"notify\";s:51:\"https://karl.marx.pm/receive/users/29bdb60d559fb11a\";s:4:\"poll\";s:36:\"https://karl.marx.pm/dfrn_poll/tiago\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:31:\"https://karl.marx.pm/poco/tiago\";s:5:\"photo\";s:73:\"https://karl.marx.pm/photo/custom/300/391.jpg?rev=2014-10-30+17%3A10%3A40\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAtXhSfMpcKHWja6y/SBJGf\nbM+S2AJjuPlvqgb11k62eyT4Zr+tlh/mB9RdtKEFtvcypfeqIIn4+KsCVABGg7sJo\nB2jCSqyJrmq6VEmxtSmYJrV+1NEgD+8dJOiWNXkZBXCw4UMkx1xtRzwOKvrJHAMNC\n1gNmtGxQyM+GhnMFHPK5WbcMoVym/2UBl4Hzx6sPLEcn9tFFLVHQFT+RCJVP8ixXZ\ndAuisvJNeSaa66C6oHMUpUW154DaM61VNUmNqGXaC0O4mY7JEubFGJ7PkOK89FXEo\nd1aWECDUZrNaH5zyhiXSuYV6gwO0sf9a57icr0gHT8/7biA/hTSD4GjhGJbUs2qjj\nRERbBtQ8E8bQBUQO47fuMMM6sSd7DCfzfcieErUy8tNX2ILinMmzu7F411C11uFOQ\n1TH9XSRnLh22PxGxbgKnJ5WyWOcbL0+Q4R+nTTkV3jBZ0SJTKaNaHv6rYOYfa3SjI\n+NXA5UZPA+7CCKLYpfkq7yJu5ME32l3xsh+4evlq6JlgQu+4nJudBUO+lLhCL5sG7\nSKdwv+H2R8POfyWHBe5U8irVAvuOZ011oBKPKOD+APvBgJ70XKyBp6+cLQZONiroQ\ndjk78Y73F3cdlhmqEFvSiIUAgX/XuOfTvMlJhK9/IPPbwo/xMEnIvW0c8F6dJ6LPm\nIVAlbSmImbfcCAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:33:02'),('probe_url:1:https://myfriendica.net/profile/arto','a:15:{s:4:\"name\";s:4:\"Arto\";s:4:\"nick\";s:4:\"arto\";s:3:\"url\";s:36:\"https://myfriendica.net/profile/arto\";s:4:\"addr\";N;s:5:\"batch\";s:38:\"https://myfriendica.net/receive/public\";s:6:\"notify\";s:54:\"https://myfriendica.net/receive/users/32a2258e87172b16\";s:4:\"poll\";s:38:\"https://myfriendica.net/dfrn_poll/arto\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:33:\"https://myfriendica.net/poco/arto\";s:5:\"photo\";s:74:\"https://myfriendica.net/photo/custom/300/5.jpg?rev=2012-04-29+18%3A36%3A29\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAzAsxi3wBqf4HlVhnmg4+i\nNdQ6KfBbRtF/gGT3FeUK+H/EynXEIx5I7Co6/zob4oiGHHIB67kGNjOjSeB9oN8Ip\npzG5x+0d6E2ulrNWow1XuyldPQryAnlrFtFstWXp3PkozT2vA/g2ZUvz2ajbsYyS6\nVoVL2tTCWh+MydRKpdjTe45va0gK//HrTcjnWqkZdQWiyW6VvvT/mRdIAhe4omJZu\n7Az7m3kYGWlVm0D4K9+zl3TukRPGXSWk+eOGtLfDrbX29KiXSyNpclkggblJ2xFH3\ncl6QZN07uvU4eSfLjEVXpf/KCE+4pFE1AP52INDyAmtNOAz/wXeaM8cONH4l1qcqW\n8/UH5yS4edzTEQT6n36hQ21ZkGw/70fhSL1fv2BiDJiUQDjrzmLWxv0r5NQw5rqhj\nkSc0/qgqNFKgmYwdq7DdQxtQbGplnfHT2HOyBg3hEOvLh7/CcvcM8Hkauy7KQ+m6b\n6tFMhdou84CJv0zzrwIfiOqTVxY7wsGuyURKSL4RMgsRAv0CkVfI3PA6NKxycgysF\nQHlb12WT80DOvI1vxI+lWKkjCNFkK2hEvd1vjCLXolaGKpv0Xvzh9C5sGzkX2Itvt\nf1mlXThGU7HFUrYE3B3mWD1sP2UwkbnN3NRQboF0i9yjmlEm6K4kj4/n/+Z3rkrCV\n6xG4tScTYdScCAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:33:05'),('probe_url:1:https://myfriendica.net/profile/believingprayer','a:15:{s:4:\"name\";s:16:\"Believing Prayer\";s:4:\"nick\";s:15:\"believingprayer\";s:3:\"url\";s:47:\"https://myfriendica.net/profile/believingprayer\";s:4:\"addr\";N;s:5:\"batch\";s:38:\"https://myfriendica.net/receive/public\";s:6:\"notify\";s:54:\"https://myfriendica.net/receive/users/a1af2de8567ecd93\";s:4:\"poll\";s:49:\"https://myfriendica.net/dfrn_poll/believingprayer\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:44:\"https://myfriendica.net/poco/believingprayer\";s:5:\"photo\";s:75:\"https://myfriendica.net/photo/custom/300/11.jpg?rev=2012-03-19+13%3A12%3A07\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAyBWW9eGyoJPVH7nopTBYZ\nTarKvHuzJ8KhEHq6t2IrTxGi9eRVkCzEIDiWV5/A6O0QOP5hAGyFNMiWsw3M13tv+\n+j6xzrd4V34VrL7S9YM92MZBi2pjnJVF0XHj9DMGvS4NTMvea5Dn3Df8Ik9H2Q5Q0\nQtFV9J5u0i0sBZ8NMbC7n1FywivquyNKwBf/vhRysM7n7SnF/o4ZZ0UCdjNpVJQ6Y\nKvA6ZHkouWX4evf0BTfG7797RMC6mnWMCsSamVsJsIuB6RVhme7hdWoiW/rs2w14t\nXlvT8z0AJOULqnI4ytVxQ/ooaK9T/aPLmAncHuZxHY6OP8R02G4i2cHUwkPfQNr6t\nDvPyaD4/m59d3DpgWWg9S9JF7nJgLvGkLw7nh2VL8yBp86eZZUvXG7UAHOlHN5WSy\njXRLK7krdGBhU2n+VxZxOwa56L0HkDiodIwBKzZ5qXSw3VLcqdvZ02XUCuhm4efP6\nq7Puf7PdHp1aPZjMhaYL/4FtLywwyImE9A3VRev2KaFlfY/CopZkzU0o3TviZzuyo\nzxoe3cQiScWLC3cUOC2wl1WMTv5045Vi21iC/cCkpoovv7KBsrJN7ysWlJeoRIzwZ\nKWwxe2p+TBjTZ89cFpMNw9W1MnMFT0YKAzihT2GDYpO7dYtEmsuEfJfs4WJ8Gny1W\nccwkoF9aXfgMCAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:33:07'),('probe_url:1:https://myfriendica.net/profile/berlin','a:15:{s:4:\"name\";s:12:\"Berlin Group\";s:4:\"nick\";s:6:\"berlin\";s:3:\"url\";s:38:\"https://myfriendica.net/profile/berlin\";s:4:\"addr\";N;s:5:\"batch\";s:38:\"https://myfriendica.net/receive/public\";s:6:\"notify\";s:54:\"https://myfriendica.net/receive/users/9d9664e239095f08\";s:4:\"poll\";s:40:\"https://myfriendica.net/dfrn_poll/berlin\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:35:\"https://myfriendica.net/poco/berlin\";s:5:\"photo\";s:75:\"https://myfriendica.net/photo/custom/300/65.jpg?rev=2012-04-28+09%3A21%3A19\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAz9TDeARTfgTfdzewRxsRX\nfD3einI5HPV0eI6OME1ftABrDvPG+KOmb8Bzoe05pLnIRpk2UhxhAllJFV4yMI/dG\nXRxYzhfJjyusJ8Uyq0K+YJAsD7TaJm4nhbrx9eT4ymYC9cfjPf8oJ8jNGNsakq5OG\n9wkwUq1GsrrN5B52IMPA7bJQ6lWfw3946fIe8k5cbAb0rVlgrRWJ9tGolibNg5Vln\nMSpQ4dzVXvdHQM434TRagmsK6UsuiQOt/edltHh7n59kyebmsJP2afY2LNBA7dj/e\n0oGKgM5B5mYRpjfzPizeAubUdoiRf7yJVnon6Bw2kPw4wGpfjUbqCWEvaiaUIq8vW\n+0zSFfQOGGzSesHVY+eUaqlAbYxBKROru05peOR64vJMWgqcBWMETn83Wng+VmVDe\nhLPciZedKYTBVR5Z99w0bOSGsiFx/BcMiJJzuyPj5c4DchQRk8FukKca87uhQfMtx\nskH0KU/18pxxnlaKyTdYdtjATyqLvseDA2V6X00svOuEQrkqNPEF+gIwtonacwuJf\nvIvs7jY+/Dj1NRfL80Xk+M78YQ1dnIk5e9D9mj+ClCQpjlXr7+1pYqvoBZ55gUssx\nI/Au4+VVFIBUldDfxAi0ajCQTqWaXg7dsGcZ5DbQ0NKwWsBNipu4IWjB1Cb4N6s/a\nSu2Jj9N/kNPUCAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:33:11'),('probe_url:1:https://myfriendica.net/profile/cirilearth','a:15:{s:4:\"name\";s:11:\"Ciril Earth\";s:4:\"nick\";s:10:\"cirilearth\";s:3:\"url\";s:42:\"https://myfriendica.net/profile/cirilearth\";s:4:\"addr\";N;s:5:\"batch\";s:38:\"https://myfriendica.net/receive/public\";s:6:\"notify\";s:54:\"https://myfriendica.net/receive/users/3fae3213c2922f2a\";s:4:\"poll\";s:44:\"https://myfriendica.net/dfrn_poll/cirilearth\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:39:\"https://myfriendica.net/poco/cirilearth\";s:5:\"photo\";s:76:\"https://myfriendica.net/photo/custom/300/519.jpg?rev=2014-12-22+12%3A19%3A09\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA0U+XwWXHPJen+Gxfm3LC4\nsFUUhgng3EuRJGiIcFiaEk4jT162I4qOeBUbrMazdp+gdMX47SCySQ3v7xNDXlE7N\n5GCV9bHU0RGOTMFvzQu6l9FPVHhjTDpsvMGScIuVTCMt4Ckpl/r/XIGtGkhYPZSji\nC0KWCrlx5lZ7tUmkaKawkEidZh3IHoufnYVL5dfkHhng1s6Epenzvs1ISbw+2S+D7\n1Puk9n4NNs2SdfP0F4ACuB8Fm/OqvoTYzugk83/7BW1qfhzqmbdy8+C+Ah9FprJN6\npHZ3537ttNS9KxBel1dxLg2DnDemwfWW6Vz2FjThx8GNEj20SWzbIpiM+WQh9L+uv\nOZb0n+PpJBs/RyTM+ZkV7x4OgbOGX74Vj/ORSK6czMKKCqVFPoKMv46eobZc8NHFb\nWu97tu85SxmC9sKhBEdFQIeSi+no+GAf6MJJ1DjuxmFyfFruewYeRIbhG/dXkT9+Q\nlYByHaJ5jIEgMbjP2jUlL6Ucg0yk/Ggf/nHI9Wq7K/K7bOFmTou5U/xHv3AuMH8CE\nV48XUdSbccAW/CR9MJkm8iMmIhAsx7rBMcJPpUZ0uke5PzaL9VQ73wyF/IhpHmjMH\nbJbzhiwHljXAP23lNj/GNZy+227Ss95Z0LBzHWVVOO/jtivNLtI+hZoDdzcCyjQrJ\nd5+r2/BfL7YkCAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:33:33'),('probe_url:1:https://myfriendica.net/profile/deb92','a:15:{s:4:\"name\";s:6:\"Damian\";s:4:\"nick\";s:5:\"deb92\";s:3:\"url\";s:37:\"https://myfriendica.net/profile/deb92\";s:4:\"addr\";N;s:5:\"batch\";s:38:\"https://myfriendica.net/receive/public\";s:6:\"notify\";s:54:\"https://myfriendica.net/receive/users/4e7e4823afc7b306\";s:4:\"poll\";s:39:\"https://myfriendica.net/dfrn_poll/deb92\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:34:\"https://myfriendica.net/poco/deb92\";s:5:\"photo\";s:76:\"https://myfriendica.net/photo/custom/300/462.jpg?rev=2014-07-29+18%3A18%3A26\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAwuZ3T0u2Y+lkEqVj5hPnv\nsHzAR5V2Qzyhdg/f78o4CAc6CFYvfPNkdb8UvyYo5DIiPhYTw7XyJu3p68qOTwgyU\nJo0qFa98XGXJUCO0c4l5r3MfqDdNrlXAwdflB9Zy6ZABvMSz9fxqdygxtbagCCWdq\nOHMRk9vetyZeyrJXQx4Rxz808CmCPYwOc5GwTmA89TtCLeMam36Ipm74sgaYGaY2e\nzMGhKZLngLYY4fNngRI8BXD7PvtCXQ+ORf53Gfm5LYvrHoYXiGE1T6xC8MTgDbErH\nCwDOIcg/mSxo4LV2+PyxXYl8MDmmB2UnOMVGZKmmp/xd8BTJ5BUBMMJJ4o/FLENLv\nxQfTSrjJ8sAacnjorDOEheRVTARCr2m1ftuQwm9zzT0VGmApuSGBuwADbp9VnBIQY\nKUHD0OU/u2sslslDySFogKEKWxW+XzRXz5UhwTiJj6aR0miRatk6DjmbQAOBd793k\nyHYwyydF4WcKjnyrBpUBYCZ+TYjForF48777Q309Y01kG3k0YQzG3DYTMinQF3jRU\n8jsqn7mwwP5dZvvSVV50Nz9SRhVJ7u/IZpFrEK9v9SdAzZWPLFQxN8oOH1kzaTOI8\nXrWdEM3RL9cQOCMw1cK63kQHYnjjzmd4T6gqidIU7XUbB5y/XAr+duTdcFs6vJGIL\nx9r3t3+fcTIcCAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:33:32'),('probe_url:1:https://myfriendica.net/profile/docaltmed','a:15:{s:4:\"name\";s:13:\"Avery Jenkins\";s:4:\"nick\";s:9:\"docaltmed\";s:3:\"url\";s:41:\"https://myfriendica.net/profile/docaltmed\";s:4:\"addr\";N;s:5:\"batch\";s:38:\"https://myfriendica.net/receive/public\";s:6:\"notify\";s:54:\"https://myfriendica.net/receive/users/a004ea236d34c7ba\";s:4:\"poll\";s:43:\"https://myfriendica.net/dfrn_poll/docaltmed\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:38:\"https://myfriendica.net/poco/docaltmed\";s:5:\"photo\";s:75:\"https://myfriendica.net/photo/custom/300/17.jpg?rev=2012-03-27+11%3A05%3A26\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA6sZXbwHlk7xmVsoTuQyVQ\nlWrAkRkbehQLcvOT+yR6uEtd2g0HumAkPVEUEaFTgRbMOIuf/1pzwd+KmeQCt0N2b\nH++MfpX+BSoG3c6XbiUvx3O3Et0WEwvknvsPysMY0kKEIi/UdARHdNFOyNWvk6erV\nTtSnraN4fEnRrdCuyN7KHOB5C6g9/HN4HNXYyuVW5QusCxvYhTOY3O/Ry9lCmXnqi\n8WXk+XZsc+M3KCFYd5Da5wlrRmsKfeQjlj3DbHo88vm0o5ARDLIhQcmanNET9CW3V\n+epjbrjtY9UXANriNgpUaswSqnofxHPbELtoNMBLPguVVv3Fa31C4fNz3Uzymb9HU\n+EJM9601T0D5EzAwQe3prwsAK4vwxtANZrorviRRdOzCZ1cAE+iOKgujWmbp5GUk/\n2zEbdGRqB8FrepLVfwckm9QE5ZsykILa+eFupktMs0PC5TuOiGPcQcXg0kyH2cXdP\neGSHM15cnOyZm8d3cADQ1jKnT1eMutSb4it52lRceiS8QwuZZGwwwAtrrxX2JUjs6\nO0886kIdKD82tDDtfgeLIP3nxPMkGTS86lw1uJN2ZigCIFvA6Uig57J0Si9OTBNhE\nI/uzEjY85qIzCKApUp3T/pBgY/X4AB3EA2f7SZRoGzTRXeEGFVb4szBwN4Djy/fKA\nKk2NNJADeaFMCAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:33:08'),('probe_url:1:https://myfriendica.net/profile/gatoso','a:15:{s:4:\"name\";s:10:\"Gatoso Kot\";s:4:\"nick\";s:6:\"gatoso\";s:3:\"url\";s:38:\"https://myfriendica.net/profile/gatoso\";s:4:\"addr\";N;s:5:\"batch\";s:38:\"https://myfriendica.net/receive/public\";s:6:\"notify\";s:54:\"https://myfriendica.net/receive/users/00b5c8fc5fc4cee1\";s:4:\"poll\";s:40:\"https://myfriendica.net/dfrn_poll/gatoso\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:35:\"https://myfriendica.net/poco/gatoso\";s:5:\"photo\";s:76:\"https://myfriendica.net/photo/custom/300/159.jpg?rev=2013-04-05+05%3A51%3A58\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA4d1l7KaUEuqngljFgcFzr\noPMU7vroEiDVVyXuE6m41RpHtRLIEhO5zC4EH9iI9tdbP+BZgHhA9+D2zcbWOw6zt\nUrKHGKLSnvbM4OeD+rn+D3JDaPkMKELPw8pJJFDQJ2MSwSzD0+p9MNo441z9Vgfr7\n2BNx+ibGRafa6Ickgq2T7bm/FT5C/BFe4WaIS+TD1lyHnGsBcYAiVTYT9xabShr4b\n8zcR6R4Onh6wf1l/KXAPYXRktwhFZY1eDo9bpPSYzYnAJuzztEpErPzx5rfeAxaeh\ns5JVKjbI6goUqP+94EaB0yz9XOYIdMBMbuWjfcoIF9GqBtR2u0DtwnGzhQc9c8Bdd\nf4VdtFsvhUhIjWZlckp1R418VUqgOW3ml/xEbzpcaKURdeJo3HcJfg645OYUQPlbn\nMhpCttjFb0U8UiucOvLxb+OxTWYPNr7hLGgNLVNEWxq1Fm7TXUHyxXjGA4Jua3xgA\nAFy6u5U1X9Vj3Rwy9yKAK5JSMGXIZmUnAfDarqqUB6zTewDcZtkkdFbCg5+B+XlD3\nxgRYSPRYTtGufgySweZSp1VPzOyh8NRKjl99/jU7xc70prYV8UVJrKfY6OJon4axb\nQrLLmFao5iHqhlSd3OUt8ygKJVNqn5GjXJYijvUGA0yL66shVCfNLm/tskx2zwqOS\nZ40oS9qE7pTUCAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:33:06'),('probe_url:1:https://myfriendica.net/profile/influencepc','a:15:{s:4:\"name\";s:7:\"Vincent\";s:4:\"nick\";s:11:\"influencepc\";s:3:\"url\";s:43:\"https://myfriendica.net/profile/influencepc\";s:4:\"addr\";N;s:5:\"batch\";s:38:\"https://myfriendica.net/receive/public\";s:6:\"notify\";s:54:\"https://myfriendica.net/receive/users/fcecf605e42d8311\";s:4:\"poll\";s:45:\"https://myfriendica.net/dfrn_poll/influencepc\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:40:\"https://myfriendica.net/poco/influencepc\";s:5:\"photo\";s:75:\"https://myfriendica.net/photo/custom/300/55.jpg?rev=2012-04-26+12%3A47%3A48\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAyjBkMg/LHNajEX7DYQRpk\nR2E2bfjKEvMgiOGOAu55vx8RLPdyvjwCUGJeY0CQpnbFRLP1pq9fUrFk/y6JP9znm\n9GM1LFpjlv/jJ/+K/86hQ9FAQN4hcwwZtmwDMjJ3Pbi7S2HSqwd8Y8bVAWDaHbafx\nSQA2YYepVFQ76S88D6xAt8DVIs8hSm7xDP0/vH+vcoe9IB41Yfri6Jr8pU2ISqOLi\nLKvkW1xGwkuq7n9Yatr6Uj4alQaUzCmTm8qXlMkQgDLW11GQHiajpBGxPywScpb05\no+eom5U3NdfdQAIQte3dKRrPRY5wke0Xf3YdDoczE+9KMP9tXDWnXPlHADyyPawSy\nuDeEjsTHJ5eXl0u/mDN3lk82GdbqpRWr7UrLfCGJOX+Vyy4cpCQRpeFx+ZJTPjFM/\nnRqT3muYQtk4j0sKMMO5MVK/ocdjITylNFPBahTyRFEiab+NhPCqBukdB1ICwjJ+5\nlrNHyufsrKvG/VDmhDp6R9OWxFUcVL8pX+z05PSq2dVUTVBkWEtMXgiEUPP6WlL4B\nusW60PDgFMcY4UAyoWqWR1gLrG2JaB7ANAUYXo7DRt/DH9ZMLASJZSrVjCeQSxx00\nJ5BLnO6kUSKQe/dVo3H5H295ghU9mczdo/pIfhZX9PHuV4PCOs4lGfQ/eSEacIYK+\n0JJ/zp7E7nfcCAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:33:10'),('probe_url:1:https://myfriendica.net/profile/jcsesecuneta','a:15:{s:4:\"name\";s:28:\"jcsesecuneta@myfriendica.net\";s:4:\"nick\";s:12:\"jcsesecuneta\";s:3:\"url\";s:44:\"https://myfriendica.net/profile/jcsesecuneta\";s:4:\"addr\";N;s:5:\"batch\";s:38:\"https://myfriendica.net/receive/public\";s:6:\"notify\";s:54:\"https://myfriendica.net/receive/users/3c3ecb1de262fdbd\";s:4:\"poll\";s:46:\"https://myfriendica.net/dfrn_poll/jcsesecuneta\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:41:\"https://myfriendica.net/poco/jcsesecuneta\";s:5:\"photo\";s:76:\"https://myfriendica.net/photo/custom/300/281.jpg?rev=2013-09-06+11%3A51%3A59\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEArjBYBTa8nODBemFKZzKnP\nR98axNEpN41+tEkCp7lSm9LbgLqdpta2SbXyV0XZD+1OFQbtQ04gn8/xM92T2CzK+\n3OqnGoMgVJ09vGabK+yfEETohuNnqNLlzPtZO8dxsTN6QTd/0+EGrYlRqy+UD/mQp\nBTJig33Z71rXD9tJm96BqlpfhRSVtwoUGWljCsyvHXk1yo7uSwy9us0YJiy0CnCVV\nHelwucvjj5KS5gAJqVK60JNv9evF1SeM+03mKdsJe11fp9/rliMCQuGHf0zP2Gzee\nQCBBsUHbhtOpTqAyfIP9AxhMVSNFKP77w5jRGrS4ZuKTLdw3lijTH/UvKq0tFeGjv\nZJYJZ4QQdPV1+swumrItOaYfVSFRYTkT8Dku0fwI6qSMrFQSaD+jj37YnKN5PnQB3\nMKUyCTVVWdQUyN0xoiyGFiPg6k4TCw/lsKZIrYrw9I9BYxVe544Wgtr4DGmay66xt\n6+5AIcjJMwXfeVcWqzQ8KxNw8oz+eK/4ocQxQIcMcnpoRPafPmlNbvVTAavQVY1zT\nNM5co/dO3HHKBIyucXZKCF/ZTfvCxd+kUPGnqX9UfUx2V+tfJeBtQ25Q3vq7gqdnh\nqMYej9bQXAG5Odpzcee/ZeKuu58Cht/GIIoJICelu1lqbNqo4GelLZNqKwQu/i2JZ\nUuqSf4OsZPGkCAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:33:12'),('probe_url:1:https://myfriendica.net/profile/linamaria','a:15:{s:4:\"name\";s:17:\"Lina María Largo\";s:4:\"nick\";s:9:\"linamaria\";s:3:\"url\";s:41:\"https://myfriendica.net/profile/linamaria\";s:4:\"addr\";N;s:5:\"batch\";s:38:\"https://myfriendica.net/receive/public\";s:6:\"notify\";s:54:\"https://myfriendica.net/receive/users/c1235a2b13f6df0b\";s:4:\"poll\";s:43:\"https://myfriendica.net/dfrn_poll/linamaria\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:38:\"https://myfriendica.net/poco/linamaria\";s:5:\"photo\";s:76:\"https://myfriendica.net/photo/custom/300/332.jpg?rev=2013-12-18+08%3A14%3A24\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAx9uvBC3ZLSpQgmHIjB82M\n4nD4OJxYNfJ2FCcwtGyu+E26uZRwzga441elbMxdH9L/65becw7+QThXoHENNBxFJ\nao+SfdPfJYTD+i/KoCyA0kIZA0w9D4VvN+W5Nt4yck75jYl1FGj+L5b83inzDwqyi\nhNl7yKB148hIZYqdNyh2PEvHcNevlEPoeJfVZMzDo6pG5HkGw+u3tXPHcBaebqpek\nrNLs1+eL+TtLrjFN2Wx3Yo1nnxgHfmB3mENsEMtNIdQDuauMnPkGiMtWujzdIFFKH\nforEfz6jFtBOUwAd31/CHSKLOd/uo96EOZ4HxOm/emheUqdLBTFrLv6ofe/QTx5NI\n9+wJ4VUrOjewh4hQIBysqBzZgeE4vm03JYFD1NPEzWSgDb5jaJgzZCyM2YDz2pUf8\nV7pZy4EjIvo8Ft4CpliOLjYdC8jWQGLlJlB4ws9Mr9ByIr+YJoljLoXpJIdCFTnec\nyEwekErkfHDgBV5iI/ltaNp2Z2hKEVaxV6X3LFBXzqZbmPICkH+jpxSgDtFXzs9c9\nnJKQ8wXKPwCrmTDd5hEFXp01S8Ajq4MmJD+kIaOTOd8FTN2xx56Pfug17WaVjW+mt\nD32Of0gJJGKaEvb+gJzYZWXKIW/Jrj8DCHPKnjM5Np1yOIDOhnL9fE25BKmaM25x5\n8+i3tNrvPE5ECAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:33:16'),('probe_url:1:https://myfriendica.net/profile/panko','a:15:{s:4:\"name\";s:5:\"Panko\";s:4:\"nick\";s:5:\"panko\";s:3:\"url\";s:37:\"https://myfriendica.net/profile/panko\";s:4:\"addr\";N;s:5:\"batch\";s:38:\"https://myfriendica.net/receive/public\";s:6:\"notify\";s:54:\"https://myfriendica.net/receive/users/9de3ca1214eff317\";s:4:\"poll\";s:39:\"https://myfriendica.net/dfrn_poll/panko\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:34:\"https://myfriendica.net/poco/panko\";s:5:\"photo\";s:76:\"https://myfriendica.net/photo/custom/300/354.jpg?rev=2014-07-30+14%3A22%3A42\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAqlNSvu1qWcKRlbbsM1etL\nfLN1fOs5vEDP8uDer9DfuJZAaW8jcB43w55368ArdpPRfuqIqfzjV2laytYdASvym\nDP8uOSHH7k2JcbqhLcxcFwkZOmbDQ+EnOMe+Hq5BH5Dn/GVteP/zTpuNvMzWoYJOD\n+Lg71Pt2fwL7r0HQvHKCufYoEsIU6YV+s5YayqulWtT6Dp8V349GP0PR1f4eu2taw\ne8E/3qZKuOSHQ6PFaaTTmGJKsQCF5OkFb0iJv4+fhFEoFYq/TBld0759InbdTclWh\n1e/RtPbSVL35PhY/Wy3yHDBhHkAgiDszW+LATWxEWWxTPcL2Agnw032IsFxuHHWMo\ng3ySdXbRs5q32rbGkPC5dl+ZflhluFqLkGLQxvjvF0dtV6Q5pBDkBZjv3w0mjLkA9\ndBR7qcfMjltfP4qaiUru6i/+U6K11alUD9eTZWPSnoZUAlvS4awGdQwaChI/wZd2d\nSQ/jbyrH20Xoy0a/3AauuZwnC00A1s8rWxlKh+Yd+H0AnEYvJfA+GRCiryGsjAuK0\nQKh8jAgEdrh3zN3SAyVJ2Z3RFM9NxsMzqS6krFfHS6ehyQA4rUjCBq6qRWQ+CKWN8\ngbJHg5EQi9GLZ7ovnLURONlOsgp5yIFgqLdswT/gkJITp4RlEB4OcQgUHzR1BE8YO\ngcxP8wAiywscCAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:33:18'),('probe_url:1:https://myfriendica.net/profile/petra-l','a:15:{s:4:\"name\";s:8:\"Petra L.\";s:4:\"nick\";s:7:\"petra-l\";s:3:\"url\";s:39:\"https://myfriendica.net/profile/petra-l\";s:4:\"addr\";N;s:5:\"batch\";s:38:\"https://myfriendica.net/receive/public\";s:6:\"notify\";s:54:\"https://myfriendica.net/receive/users/dd8deb588e52ce2e\";s:4:\"poll\";s:41:\"https://myfriendica.net/dfrn_poll/petra-l\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:36:\"https://myfriendica.net/poco/petra-l\";s:5:\"photo\";s:76:\"https://myfriendica.net/photo/custom/300/349.jpg?rev=2014-04-05+13%3A41%3A25\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAw1ZbmUNI3+dwbMfBABNG2\n+L4LE6q+SZcvisa0CrDT2Ya2r98keJq7RYtL5vMilonKDSOnYo+NwmnkuKa41GlrB\nlm19UrmCECW8Jruk+cVVcJunx5wU9L1GaAzlYOV08SPBqvXSVYs9YNbGrvv3gRYHh\n75eERhm/tIKBA4W3smLR5EdoRhZOd3MBpcqE336e3r5Rdvy8J2FvkxUyDe9MRs+VL\nXFwnWCBJY6m6kWSbtNJEt/USvOusW1D995ApN3F5BrAprwlqjBNzjFJfM9172fOCK\n0OkJM4cM6we4qnvFbLHRrRIfd1E+Lv7JeegV1++TJQKsZ2Ng+DDMHkoMJ6h0bgCRO\nmXds6lX+3o9HPORumpYzYfHI/P3Oh6qOFd4JZCeJKk2TY3CEPNETHXf+0FuIpd6I0\n3VPmogrUvPo23ca5QbMpUkGuWhxAutr35HfC3/NmAGkxKO8NbJOM2OYa/oEH+qqCT\nTbZneVx9/VcgAYSSqXvcVG5kwVOIxZdp6YmSjsT9wTE8yRtSQIrAT3SzFtigh0+/M\ncaBQ9hNoN/zfexXhNct0tv65IKhRWsHbQJWKgOiz59KbXisbi6F8rE02tHMXRtjXo\naHJLbU+Lm/Snn0bEJNyx0t7usLltRNq//GaQwAOVM6rd3qT5M+0WRC8VYTrKpUEUg\n8I4L15h1rM8ECAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:33:17'),('probe_url:1:https://myfriendica.net/profile/prevete','a:15:{s:4:\"name\";s:0:\"\";s:4:\"nick\";s:0:\"\";s:3:\"url\";s:39:\"https://myfriendica.net/profile/prevete\";s:4:\"addr\";N;s:5:\"batch\";s:38:\"https://myfriendica.net/receive/public\";s:6:\"notify\";s:54:\"https://myfriendica.net/receive/users/ffa2cc355cd48374\";s:4:\"poll\";s:41:\"https://myfriendica.net/dfrn_poll/prevete\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:36:\"https://myfriendica.net/poco/prevete\";s:5:\"photo\";s:42:\"http://192.168.22.10/images/person-175.jpg\";s:8:\"priority\";i:2;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAsVXg3079xURAFnY6cPjy1\nOG9EkurCBLr1lLjyTkjKht6O+mfEGqr2Ov9sRNQn3YfSpmu5nmPbmuyppVnA8qmZ8\nTXw9wMXO9MDuyZX291EylevJ3HksazEXndP36CDxeNwuNxidAt5pnXJPzKDELnxk7\nOwL93RamlJqIURwqzZUFhrbjI0xUlIBMbVcHC+WnbbDzdYfByPeaQ53/UVli1eefh\nXUdSluNQYP+yN58NZ7KzcG5GXgtGThiRg7YNiF3nM+Wu30PuSTTEgG+vW/z7RBwrk\nNjDUYg8N36FlE0EoKEH5jlR59NBWDfOBlUQOa0G0R/NstEfUvFRHdvvNqlzqBANEJ\npUH2m6sYRPaM+PT9r2qgqxfGNdznJamz1bV1t1FTsiJQRoEDfSVeFuapMdo3kiYSz\n70O+GMorfh8QwdnXZuZ1q6x0tqM8mi5yTub8Vr4im1eggug+njqlUSg0x8Z5Gexgc\nuGc9uJjT56v6IllfiqZanfGH4Bzr58wACZdjCbGihuZgOZrhqjKaxPKLec5wYfkj3\n216Tc+//wLwrd7zbkJjbNsKTECwUyAIs88hieb0rg2HZX6CM8/6VJzZaFKKFBF1iy\nUJLihaaAcDoYrlwjwzyCl6O4q6jp1TKzyUlDNg6GDQrMGX217Y49HUOmJZfa+t+Pk\nSy+Xt0z75hv8CAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:33:31'),('probe_url:1:https://myfriendica.net/profile/protestation_','a:15:{s:4:\"name\";s:0:\"\";s:4:\"nick\";s:0:\"\";s:3:\"url\";s:45:\"https://myfriendica.net/profile/protestation_\";s:4:\"addr\";N;s:5:\"batch\";s:38:\"https://myfriendica.net/receive/public\";s:6:\"notify\";s:54:\"https://myfriendica.net/receive/users/97790bd375d9652f\";s:4:\"poll\";s:47:\"https://myfriendica.net/dfrn_poll/protestation_\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:42:\"https://myfriendica.net/poco/protestation_\";s:5:\"photo\";s:42:\"http://192.168.22.10/images/person-175.jpg\";s:8:\"priority\";i:2;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAwSQygPqEoLI2nDe6YlnSi\nA/c3VFDY7JSbGRwKjYhTd0t4fgu3er20w8nJo7+3asBWv7iaa7ob6rsADBE+Ji3ZV\ndMSlzngmkASkPiJMH9A/OfO+K8DB94QP4IxsJw+QbeSJKplFPiVandqlc1qITBYqj\nqgJhG+lIKTk4stU7k5DB4FCIlhFBRu9qHNrbNc3PmmQJ0E7gvU/nXMX2BReGGLEhK\nsCBnXKwHBaVaj9MSRdxw7htbgWvqnvRn7tdZ+0vZtL00Ju1ZloutLKQ1Qi92rGLt0\ng4JYZU70jrPwbxTSflzKDTXnnQ5ZjrZ5XJVUnKp7rQvM3No8uPsyN4AfTEjdEOqZM\n/OA+Pxa7WAaZOuKv9LR0AaH6CT6YVEcmcu+HIBShy4YE1//hL+m9GjqsMuC5DmV36\nLN7JxOtzvos1cFLaLZVa1cIOox6gFkVDThrNkPnCW4zN4yLtBhZ6dH1nrBbnxRwVW\nc6Y3sBhetykoS7JPCzxjmBEdEV3z9NWQ8QD/U5jAA7hd4ZToOZ76HEkmzjRmbkvoP\nFSDpuArYRDdnFxWiRQLCG2XtCvxkMjCag1Ig39t9735Coo+A7Vk6V4zM7rULWhvnb\nfLtI2xsJQUD6BA0ZWmj0yRWP8/MwGm0BIRm2TJ/YDnxzjwjxRbhjrw8+NTQoiVGtU\n1TPQhV2GBo6kCAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:33:28'),('probe_url:1:https://myfriendica.net/profile/raudy93','a:15:{s:4:\"name\";s:12:\"Bastian Lang\";s:4:\"nick\";s:7:\"raudy93\";s:3:\"url\";s:39:\"https://myfriendica.net/profile/raudy93\";s:4:\"addr\";N;s:5:\"batch\";s:38:\"https://myfriendica.net/receive/public\";s:6:\"notify\";s:54:\"https://myfriendica.net/receive/users/e0880e62815a2400\";s:4:\"poll\";s:41:\"https://myfriendica.net/dfrn_poll/raudy93\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:36:\"https://myfriendica.net/poco/raudy93\";s:5:\"photo\";s:76:\"https://myfriendica.net/photo/custom/300/436.jpg?rev=2014-05-29+12%3A40%3A00\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEApdDrpyR06QyHaiW2eLHqI\nseveAH8Va6ZRtosXD1yL+TJdXxU2t5+uW+G7TSxzzyGGBMGOFmmfE420VFecFw2hj\nCNgf+r2ChVpBRWe2ZtFHSWBFjGUoAMvopibiKY7vUsuIsBHAsfDMSyxRJ0FYR5hQ6\n4yldBDiFkdcJvmsw21ptMjKv/c7LhWAVvHVhTlwN25tVzxBgv3EW69YxXIEIuyYHJ\nrxMxhi2ETFOXicWKoomNLA/VKt5P9gS3cjuFAupq+SyObO7X7hujSRdaPQZbDoAY1\naM5wUmGrKnj3BcPRlC5u1Xsf2d+XUe8jmw1pebrwb63Xc6VNBRJ39oGpo4BkHSEHR\nLiRsLsjhzChdm2GwmbJyVI9zzuujJTrkqaV+NXs+mZldR6v0mFKoNxb6qG09vJAai\nyJ8oU6fOM/ZVT7uF7un6qFIwEtog7EAb+UVy+tHuq3/Btmu+YXbrBjsOlt7Q1uVD3\nDXvTAo7ZKFWMYSgb58pWGCOc17Zx6p4wnNEYwSwalDV7AqLfXG/mfAOQg+peHcUg+\nghUve7T+BnuQnoWekEUyUDJm5D97qNBZ9rZGMY7hveCTwvfDvLV1FUjap6lR7tZ+s\nsYecde5ENC5sCxpGw1t1hNPObhF6eOdMxTCRfRvqnKFYMqNjSBOIpkZtmZHWVylZC\nY5Uo5hb3lBccCAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:33:25'),('probe_url:1:https://myfriendica.net/profile/rtgriffiti','a:15:{s:4:\"name\";s:11:\"RT Griffiti\";s:4:\"nick\";s:10:\"rtgriffiti\";s:3:\"url\";s:42:\"https://myfriendica.net/profile/rtgriffiti\";s:4:\"addr\";N;s:5:\"batch\";s:38:\"https://myfriendica.net/receive/public\";s:6:\"notify\";s:54:\"https://myfriendica.net/receive/users/0c3e89a21ec02b87\";s:4:\"poll\";s:44:\"https://myfriendica.net/dfrn_poll/rtgriffiti\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:39:\"https://myfriendica.net/poco/rtgriffiti\";s:5:\"photo\";s:76:\"https://myfriendica.net/photo/custom/300/437.jpg?rev=2014-05-30+01%3A17%3A19\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAwCBxA90kmqGwKdxMtItgI\n2QMTZwa5M3/dQ3ihykKtAltwuoh25hrR+bmcC9AM6UDJFOf9oGmNHqLStm9xqnOpP\n+djRrZVOZCf5ZofWjdjQmYEmtwuGSmtkeq9nGA5L8PmAl9HtqkINfy2KHnomsBrpY\ny0D9p1Sq/H8C3m6pf8J3dezAcd63uPNbX2/RmdfT0+8aybWVQWq/ALYFt1RAH6ZuD\nPZWdlvXOUNpZjqv7yUAw3pTcooM971l50lbTTscDQ9S8mPDcaLLkOe768m8lXbFby\nqDa3acWY+qUC6NE9n7oTS0E/Wg/BW635HWxDMH3ZwTSYR1adbF3te6jv63bkmEG1Z\nRne3B93GV28nyYJZeg9aWry93Pkm7VzmeLnffFlZ+3zF2ARFch6GXcwCPCtg2kBzG\n3IQy08x2fETRfvkV59dZEzvxL29SkeeMley9dWRe7X7M7h99ff0CGiIGidOP5VHrX\nYPC4CR0v8QDbgmFqOJ54qrLWvh4u4XgNQgYi/ZvwkmEs1CnYsEBfpWrTRz0doJzyC\nn33rpv7U9fnXRSWlVj/KmYStl1XRwgWwkoUQ98L8ImtJfp28d4eWT6VvewSgw2xVV\nhGddl/83fnkYZEMB/0Uiq5cZiXYfP3MseN4fhzJdNEojy51iFdHBZ8A19kP5f6imK\nbGagKMTpQaFkCAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:33:29'),('probe_url:1:https://myfriendica.net/profile/sam01','a:15:{s:4:\"name\";s:5:\"Sam I\";s:4:\"nick\";s:5:\"sam01\";s:3:\"url\";s:37:\"https://myfriendica.net/profile/sam01\";s:4:\"addr\";N;s:5:\"batch\";s:38:\"https://myfriendica.net/receive/public\";s:6:\"notify\";s:54:\"https://myfriendica.net/receive/users/43d8823a711d3dc7\";s:4:\"poll\";s:39:\"https://myfriendica.net/dfrn_poll/sam01\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:34:\"https://myfriendica.net/poco/sam01\";s:5:\"photo\";s:76:\"https://myfriendica.net/photo/custom/300/183.jpg?rev=2013-06-28+15%3A34%3A46\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEArLHYJeWqzhMm17HLzC2P8\nyOU3aZFyCqW0TIfWF8K7w4UxoCysSXRJ5TYQVmIe4eCd5WY4+/ZbkTxIWvb53SWrx\nQJNo/tf6gUnUC/buu1yruuxdkDt/3b7SP9tG40+haYW9TJr4shU1JtKCFsb9X7GqL\n0OBITSlsGlqqxAclsr6//eGSpv6X/VJ/oiQmk5l5YcHohsKRAEtDnInj+eyCRehIK\nnBNH/qI7pBeTP0Muqg6P6IpolHMIrocLMQ+tCShWeaNNjeaFom78bwl7nTQ6qZiBv\nJjHRWVurodX8fNVAcXOXeEuEfNHDqa5Ugs50Ovozz2k03GViuK8BMw7UYaZKVXKJh\nm29BacgLm/3Jj5ScNnW9JUBJykLce3zIJfNao0Z1P4kIBY7ZBFmYnMBQrE73LPJAv\nPw2e+3O9yj3ocQk7VGUUKYY7elf89yuJvFoXik4vS7thjq23vRWT8wWEtRZlMCGgc\nErK0I5BTvZR9gOFNNqIok5OrE9EbE4gbZmxP1KR+st1js1c+VN+Q/qZ1xKzw/ShVX\n+P7xa+M0U6MnvV02JsUK0twGAyktJEzqDlk8pKm2Y6jL8jCXOY63n6tnYnj47WD6y\nIMa110cQ/VHaB+KVqTDCUgVK73XIPOLh/lHJF9CueG1mi8F5aHG/DJ46l+F41cxH1\nVhmfy8MQ/LmUCAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:33:13'),('probe_url:1:https://myfriendica.net/profile/sebasped','a:15:{s:4:\"name\";s:14:\"Sebas Pedersen\";s:4:\"nick\";s:8:\"sebasped\";s:3:\"url\";s:40:\"https://myfriendica.net/profile/sebasped\";s:4:\"addr\";N;s:5:\"batch\";s:38:\"https://myfriendica.net/receive/public\";s:6:\"notify\";s:54:\"https://myfriendica.net/receive/users/0ce9f1805e01ff46\";s:4:\"poll\";s:42:\"https://myfriendica.net/dfrn_poll/sebasped\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:37:\"https://myfriendica.net/poco/sebasped\";s:5:\"photo\";s:76:\"https://myfriendica.net/photo/custom/300/373.jpg?rev=2015-01-15+23%3A04%3A06\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAyRWFGet7JazIoJW8nrkmU\nOfCgoXD9XiV1WJFDgTy9ow8xieYXK7Ium7jWX10PCkVzIdakrotqxfu+yF3+9yHaQ\nr0WmLcM2XjkA074H2vtvxptdSbhbIpLm0+3PDsz9DmcIi5gl+2f76/hz/EDcFct5P\nNlceX7uvcb/IGmJ8hoSpgKKLs++5PXAYUmgSyo6nysH8o2Bqr498yiU71cL7ffE90\nJa2c6tVHvcFRhMWZp2PZOq/A2ms062zKz/Y09bDTB2274sQWznpJ01Sa/SOD10vZK\nzti24VtuJBx/adVxwjw3NMCkHGbhEc9iXUMVprPzOlRwmjVEEoWP9+6dYYx9dPF2G\nKcU4yheFKHsK+B8EbxvSfqctIULZEIOvCaKMr4InCXlFryUTU3ntG0slWftUvjgTx\nWGeCcwiUmhyEB1O1D64Ubt+BZBueCoDexNog3bZ1oiLttuauJIqcyDvupp840Z0rX\nooG4ADQj4Vzd3vuEnPp2VkbMW6tU5fd+KGGT+uKFWPhhyYEu0Hc1D1LCbgyzV/JXZ\nCNoKoc5pM3S/2U9JO7uvp2D9CPyVWkyiz1wPTeaeg9ydsu0ajv/7v0L7H42ezAEus\nJrwsdqLgtxCfO54ZMUins3M2zMRxFQIFwT9sSBUBOmhHwVs9sinTQATxAHQ7S7oEl\n0vPdf83YRYZUCAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:33:21'),('probe_url:1:https://myfriendica.net/profile/shimriez','a:15:{s:4:\"name\";s:8:\"Shimriez\";s:4:\"nick\";s:8:\"shimriez\";s:3:\"url\";s:40:\"https://myfriendica.net/profile/shimriez\";s:4:\"addr\";N;s:5:\"batch\";s:38:\"https://myfriendica.net/receive/public\";s:6:\"notify\";s:54:\"https://myfriendica.net/receive/users/655aadab88638464\";s:4:\"poll\";s:42:\"https://myfriendica.net/dfrn_poll/shimriez\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:37:\"https://myfriendica.net/poco/shimriez\";s:5:\"photo\";s:76:\"https://myfriendica.net/photo/custom/300/403.jpg?rev=2014-06-21+17%3A18%3A05\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAp2HddutFQSE95ifBz7mKx\nQmwDTUW2y3TZh/m4ZKGidLgfmimJ2MWGREcZltCJxe48pGAudan0VQPNmtV1/CnV5\nz4YsZ0JNWXUJ+fENIaTc3RfEjZ13x1/kSuCURY8yo0s0sCNtLq3Ue4qtNGDPTq9RG\nptr8WUuwOe8ywNEOmHo79nGPpogUL3LaF+PVSPBgyQK4y7bv6/+21PtPJMqnwrzmz\nZUF8g4BcgfJTLEyxBqwO17n09PACcyONk8F4JjbOFzVRbTntM9M70M8P2AqHvcohq\naWaq6XTdwEwxsCFPpPcLfB+57/mW19muyUcfafmO5zO46NybC/gUrFR1QsnW8xVSX\nN9iUWyDO9ZOimUs7dqOsrztx+LoL92FwyrN62obBPrmdR+faYEXlvq2HkfhMuh5OV\nqMMTOnwKGL9BMGuLt8yv3llC4t9zviWX7pjj6nJURvS21wc1cDC3eJNCTt9yB5k4u\ncHPAyOzMQy9uP5ICe31aKCk+r6RzRjgn3/0GZN0ze8HFUNj0jq3GI/1P/+gZ4S+xc\nypdB4C70oKdvkJCRC+FuG3nKgGrMk8FEm/hEPJcdHVBhdzWqD1QfMRu5mvxBi5qNE\n1TVW/3oZlbepqI2KQD/JvaOsxNw8ITDRxZyxdp7ScIk25faFILYfGviKOAbhU5JLC\ndRlajR2pFqL0CAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:33:23'),('probe_url:1:https://myfriendica.net/profile/sim6','a:15:{s:4:\"name\";s:22:\"Simó Albert i Beltran\";s:4:\"nick\";s:4:\"sim6\";s:3:\"url\";s:36:\"https://myfriendica.net/profile/sim6\";s:4:\"addr\";N;s:5:\"batch\";s:38:\"https://myfriendica.net/receive/public\";s:6:\"notify\";s:54:\"https://myfriendica.net/receive/users/5bf154d267d525ce\";s:4:\"poll\";s:38:\"https://myfriendica.net/dfrn_poll/sim6\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:33:\"https://myfriendica.net/poco/sim6\";s:5:\"photo\";s:76:\"https://myfriendica.net/photo/custom/300/419.jpg?rev=2014-05-14+16%3A14%3A04\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA28T3RdxyBu+m2BvDxcNYE\nbxF6h4WWt8ghITizexyE80Rsr8yem2E3n7GdqtBBdkCFSqtV0WGtLx5mnFrrMygw+\n8vQU7rbGNmgDAG8Q3RQdq+gL8xRYvU482Ynh0YCBHVMHDIg1KhHN8p+zj/iITSLXj\nNEPUdFxqEL/k3yWP06MKZuiz4K1Du6fD8G5cCH6+kUj1bq7EqteZkk6zcgl1g2B0Q\niEC8pQUYTPRUf20RU6eiJvRUujQ3Ft1NQsSBO9b4OWQQKxGpANy0FwVeHyPM9I6bA\naeNto0x9MyvGFid4LUeTPJfjH4HFcwr1NKlWPArcJDvull+rWqo+fraFh6JaSuweu\nktUtglaEAAGGQAnEeFCg1IQT6FiNmVhJBY+KQw2IEef75Kq94qIVdIl6PjedAnpLN\nlyp6tbAUCfgIOqRCdmSF93VFOm7U2Nl3+QhxJ2q2Yb9cPXuNwmt56cBYwpm1KDSH7\n9bxeJdNHdHg0TI0SpkQXwbBpQ+KbmvnRuH3bwEezD1XMcC9x7vWDyDBX0ss4fyZnC\nDNahb7ldzmRx/wK/Zwh3sTw0yGox3xHKMoS/csoIz/CJuDZNKxv6kNtrkrBt4HG/A\nT3VmfaRANj2y5Bdoy+GYBdH1tLGjcrVW9Yq0HkoKcWVI2FceEzUxkazumy5Kw9me8\n9PmxEn27f9yECAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:33:26'),('probe_url:1:https://myfriendica.net/profile/sitesonix','a:15:{s:4:\"name\";s:23:\"Sitesonix Web Solutions\";s:4:\"nick\";s:9:\"sitesonix\";s:3:\"url\";s:41:\"https://myfriendica.net/profile/sitesonix\";s:4:\"addr\";N;s:5:\"batch\";s:38:\"https://myfriendica.net/receive/public\";s:6:\"notify\";s:54:\"https://myfriendica.net/receive/users/46e18d45a3905b6d\";s:4:\"poll\";s:43:\"https://myfriendica.net/dfrn_poll/sitesonix\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:38:\"https://myfriendica.net/poco/sitesonix\";s:5:\"photo\";s:76:\"https://myfriendica.net/photo/custom/300/445.jpg?rev=2014-06-13+17%3A25%3A54\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA5Xmoeam87MqJynSY+lUvw\n8BetNBICTFx7J4gnUdFXIZ/0KazJ0co7hrRK1IALUaEmEdJj0G3SeMrwwm4nQAv6M\nQPeqhuDCr/NgD9mIBNN3U0Tj6M4We60IxbJDLRTOLquA4mWkucH31sivDNLDfbqZ3\nu2Wsa99cpy685BhjvzmxCB//e2stifcia9ltIhpB3FtFM+vgyiFMnLknn4x/1KyDc\n5rETSibCQq0/nwoa7VskKtoO7Ht3E4Hef8qjMaEz6ImHHyojHk2oy6l4dnAFTSXpw\niUZAXwUfImovE5zwJkrqUGt8vsnBXq6J3CUVAmZokwdJQTC/DAP4XtLacEQ2kTvc0\n2vD5SYlL4MXcOesQTJTnv6D55t2UDLc8tnjHvEO7aruEkMw/SYlJLPLCqLQZ2+yi6\nKSxW7IdFqzYR2jd654u8oyzlERXaEWSnUZFW8c4YlK9SG2Ugj2hC4LQijnJx8Ml1a\ncMu3ECX+a0baZdzJvQG9svgegsHVG2bXGxzdGHY6jq6Sp1P84QNtfARRfkC27Fd5V\nRundrivY6SfPwmowQPkYJVVx/rIGDYLuS5P9MhsdOr6iq5kGgSiOOCPJPFuD+7XpB\n6PMyEd9Z8rRu1ESBe9aGb5U0HSCqn4MuP47WkxwMFOER1esdLQ50TpfKJRNGxCZXy\n7IZ1MuX0TZKcCAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:33:24'),('probe_url:1:https://myfriendica.net/profile/soloojos','a:15:{s:4:\"name\";s:5:\"Jorge\";s:4:\"nick\";s:8:\"soloojos\";s:3:\"url\";s:40:\"https://myfriendica.net/profile/soloojos\";s:4:\"addr\";N;s:5:\"batch\";s:38:\"https://myfriendica.net/receive/public\";s:6:\"notify\";s:54:\"https://myfriendica.net/receive/users/fa72f9bbb67ab10c\";s:4:\"poll\";s:42:\"https://myfriendica.net/dfrn_poll/soloojos\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:37:\"https://myfriendica.net/poco/soloojos\";s:5:\"photo\";s:76:\"https://myfriendica.net/photo/custom/300/370.jpg?rev=2014-03-02+16%3A20%3A32\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAzO58j0c32QUtIyM+pdN5O\nJAcP06iUruYZkyM/9OqOKhBZQk+k7W3Dwzf0sbc4UdnwMsZ1qwxsF5RT7cDqRlG8A\nJJIvX2uwVByl3l81ITUO3Q5SU/Vc3lj0VVYZE/iYM15HqdM27ntCJNTpzoZTvVmtR\n2pej9xm80w5GYyGz96a/nO52Qj9fv7rvQ++hWgBFnl37zjqGUDgy8Gg9jP021Mm9a\nb1lL/bB+6U+CZhjc+VOxw8abwp6lxsblBDNCGHbacME68zvQfcptPmfb94z9W4s18\n7rxijur9/rabk5qIBU1GLKNB7Vb7qNGK9BRPC7bbzYRflc3UID4lZYQA1XZidDHpv\ncKjM2OmIWxE6twAPZac92BQrxpWX024CcBOt3qiO8BMepyEnEqt8CX2LdC/KpqLhr\n3/BmQlBfgJZsqrocDXSms+XvnxWf8MnRBZ2q99uBRQUn0ko3i4OI1XelZnRba4n/d\np3K42iDPZh8h3KqNXYJ0lI6li/dAI9MmhF/XAQqai4VPYwrPleZW1FRquHQL+oPjD\noLV/qLzSg0nqJoHHaTiTsFTocCayZ9u+Z1PXLhFsshH3Tp6DL5OQ2FqRdR0sDi11R\nA1Grg2bn/FPvCAzAUTifW2O86yE+Q/xWBzF41vuW3UudMCcsojuhxRFcY0MwoQP7O\nHb1d2OxNGQlMCAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:33:19'),('probe_url:1:https://myfriendica.net/profile/stephen','a:15:{s:4:\"name\";s:13:\"Stephen Judge\";s:4:\"nick\";s:7:\"stephen\";s:3:\"url\";s:39:\"https://myfriendica.net/profile/stephen\";s:4:\"addr\";N;s:5:\"batch\";s:38:\"https://myfriendica.net/receive/public\";s:6:\"notify\";s:54:\"https://myfriendica.net/receive/users/5968afdfaa0a55f9\";s:4:\"poll\";s:41:\"https://myfriendica.net/dfrn_poll/stephen\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:36:\"https://myfriendica.net/poco/stephen\";s:5:\"photo\";s:76:\"https://myfriendica.net/photo/custom/300/294.jpg?rev=2014-02-25+15%3A07%3A05\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAwQzDw7KknZ7+9XRPdIe0R\nzx6a+fTv3/c1WH5hcMTHoPXlIgngXxzRJCb90uCmfz3CfUDehYAGSadRDZZs6ve0y\n2FfAylbVkgIiXIWm51WjJR6WTq39Cm2SCBVBziwp6hGKzlct3kIY6UYVBXJ7msyjr\nzX9M5qFZSa3oo3Or1FHJSvG7Z0fFZ209emdwSV2acDLa3mHIXUS0KEtqW6bfcTRwR\nzZOfNTo5qRqhhIHXhInhVuktqK5jCTqoWPBJqNOKCqt2sGpgeHhEyWUoAU2wGGRLV\nL14CSqsTC9Eu833H4gEmZglLCfBM9PFYyVIyzw8i13dErkjbxi6JUq6l6WAK36bTK\nSh9P5cjU8UY3G2BEVLtfE/K3qJwe8FpQ8SxkxRLAWjhg+W3GFV2+zym5kKiStg9Lc\n5rNZZuO0qTk3K7hPW7bkn4+jPcHkSB/fh3or5IsEUH4o2RYt7x+HpFwDW0/vksGEO\n4g5UoD2Ww1XZr2l7ShTnpC6yi57yRptnTWmiwbvEGoBNrC0TwLeLuoIk7HHkywCSL\napb7sD73ALcu4V+WIM456smPQ8/SnjxafjoQBwBXaaNwTF84wkGz2tswzkoyXzBNz\nOsEE1PN4/zrNutKvI6aolVoKaj/XQ7Zr4MI86fN0Anulm10rzNRdXw/T+phauQ1fP\nuDBTr1RlqtiUCAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:33:14'),('probe_url:1:https://myfriendica.net/profile/the_sos_card_project','a:15:{s:4:\"name\";s:20:\"The SOS Card Project\";s:4:\"nick\";s:20:\"the_sos_card_project\";s:3:\"url\";s:52:\"https://myfriendica.net/profile/the_sos_card_project\";s:4:\"addr\";N;s:5:\"batch\";s:38:\"https://myfriendica.net/receive/public\";s:6:\"notify\";s:54:\"https://myfriendica.net/receive/users/de2b54c34fc13794\";s:4:\"poll\";s:54:\"https://myfriendica.net/dfrn_poll/the_sos_card_project\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:49:\"https://myfriendica.net/poco/the_sos_card_project\";s:5:\"photo\";s:76:\"https://myfriendica.net/photo/custom/300/524.jpg?rev=2014-12-26+19%3A54%3A41\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAsVQ9NQ6q1nnDmXHovH/Vj\noZgpKnL44AmnP6QvHNCx2Q/Hl6VNNBauilPvNgpC1FmW33b84YCMfziNy4gBlC+Uk\nsnFppDtqOadtdZt6/RJtBgta5hzZdnLW0Mck2sC4nR1KtikkW5jDkdqf/o6bdosZY\nj8XmPRqPXG6eKM/3hiJGRXMKucdzOwKodPIwmvF9WxB/wrvF88rOvNs0SaXhROgNO\nvD5WYF48G1OR8vleuUpx6pZ2rLydRwHnxNkzAUKCX+y6gB9AYVS51Rp7vFSEXaKyz\n2CFzfJBHxxLfNMLjvRKLsZt+R6KblnqovqHaLinnBwIzbpmmfjlQ8M/H5s0yGgJz4\nCII3gVIPMwtC9H6O56/t+R7aLb6h+V1ki3fXuBXK+OOo47FBwvYgUARPw6PHS4Jfr\nkygHpgBbCqMNGihG+bG9HjsgSys4QQg+tGl0A7Bp0mJ+Q1nNGRvMYY8SYDV4Q0Fd+\nL8wWhrcIW5nHR6JTnJ1Ovvy8273dV+cbmsnBLpLoXFv1cVBjaRCt8iFB3PleFcd1R\nzTI5YTkw/9zqMusufJFZO1YStQwzdxRU2Wak4rCSshJHJJGGkp1j7HSqIWhO0Mol6\nFarApxX8dmBEPuUrsCq19wsT9eGinrN0mgNf1mxX3Jv9ya29BhxGfnl7+Wc/X5Tvn\noYEj0D2MR6Z8CAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:33:34'),('probe_url:1:https://myfriendica.net/profile/tonyphuah','a:15:{s:4:\"name\";s:20:\"潘隆吉 Tony Phuah\";s:4:\"nick\";s:9:\"tonyphuah\";s:3:\"url\";s:41:\"https://myfriendica.net/profile/tonyphuah\";s:4:\"addr\";N;s:5:\"batch\";s:38:\"https://myfriendica.net/receive/public\";s:6:\"notify\";s:54:\"https://myfriendica.net/receive/users/5936952ed8eaebca\";s:4:\"poll\";s:43:\"https://myfriendica.net/dfrn_poll/tonyphuah\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:38:\"https://myfriendica.net/poco/tonyphuah\";s:5:\"photo\";s:76:\"https://myfriendica.net/photo/custom/300/304.jpg?rev=2013-11-02+00%3A37%3A59\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAvlN4eZjapDkcaZ1ykRCFB\n7T0gTZ0b+Ff8WlCG6q7yIdsc99Zb+fXi/Ire8kGyEfPv4Ff2Bv7ZOj5tL8srcZbBn\n90IJa/xH7kq6HN1HqGMwzptpHvLSYqjFm8JIyLn3lOUSS70g2ClcQ2u+RX1izaNaW\n7Ne6UuszlCAP3N649iSxjw4DViKAXkSNIIGuXy4z43+SU6ggGeFYIMgX1mTkE0gzZ\noxOU90CB+zNQgXIYD8XgspDB9f2W8PcpZMrzE0dMNwf62BrKHCPFcaf0uyLNWUHme\nzHvTJbaZAjJaVbd6DE06TZcMfRarFb25AabpxkmyCvGh9s/Lw/15hCykJfd0qH6NK\n6Afcel4n2OVtLp7gf6JtmTDSi+eFsvJSlXgnI/5Y9q5N2B+2C1qRpKLuiq9bj8GsT\nfvJnviiuwbCCOiazJa2WjoC5zpz4Zc9r2xPm2BcVYNBOxJUnFxBS4fMfEp51hwGdg\nbDRieEAJHb4bwN3jY+Ly5pOZZ5aBrNd0PgYZKh7c1OJOtQl4XNCR2X0veoGuVcibp\nx7uTrrbRPjlsOtD++EvimHu9YHda3CrLZVRdB1Y1qWWkWcl2SzALMmmC/MUlUdL0r\n7q5OxktMOUnqa+RKvfGjFQenHr+jZJrMeAQK9EKlkhB6H4f5zqKUlGVMDKLJHSneR\nfeoUCZory418CAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:33:15'),('probe_url:1:https://myfriendica.net/profile/zlaxyi','a:15:{s:4:\"name\";s:9:\"ivan zlax\";s:4:\"nick\";s:6:\"zlaxyi\";s:3:\"url\";s:38:\"https://myfriendica.net/profile/zlaxyi\";s:4:\"addr\";N;s:5:\"batch\";s:38:\"https://myfriendica.net/receive/public\";s:6:\"notify\";s:54:\"https://myfriendica.net/receive/users/997b994a938e7317\";s:4:\"poll\";s:40:\"https://myfriendica.net/dfrn_poll/zlaxyi\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:35:\"https://myfriendica.net/poco/zlaxyi\";s:5:\"photo\";s:76:\"https://myfriendica.net/photo/custom/300/376.jpg?rev=2014-03-09+09%3A56%3A13\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA+G9lcuuPlVM8g5oJVgARE\n8G7mXo82BLHMCaZLhUX5Qwdzesr//Bu+pbOqy8JAeaSIV52VJZL494Q65KA5YngSo\nVLl3qLG69QmXLC+aa70kPut4VP5Efu/IiK7uaeEtgHrC5E3Lg2bmb+3Ej+ce4YqLk\nyFc1VRvylU35bI3uiw5j1w24Spf4tQgY4MsueLS3mrr3pYsKnB7qNu9Tlzht8za+6\nGDEG0kMZ27ur3UjXdAPLgx9DsxqlWoBVKi00b7osu0EhjeXi+nDNR9J61F3jJn2fe\nRxV2Acogoi4B7V5e9dk7LSZvOgSuK2/FFB1C1qNpPVKmhjrWhyZEjjb/V/b4e9FKS\nYCeEKb9qqZe/smqUmRiedq0z2b0kJRqJrbsVhx0aN5NUFsy/MeMctG4Cw7/yqxeJU\ni/+8SUG22mF8h4db99fNjUr3+P9w1imBrDHGMlsbreXg8Xr2kwMr56pzanMw7pA/o\nHZT3qoAaiDUC3mqMfM64MsKzxTQ9m9kStkbxAcTI1fKtoYRetS72y9tTPp34m1mxm\nWsJ7UnBq9WF24VzRPX6G9PI7iA/atmNGo/xUiR8iD1GZiLSNn3TCXhFHaaCtdqlKd\nqkxMa/+5tMuJrSLvMMUhTWhyuxHlUFHZP5aMM7BEe9Y6RNwf3xiXoz3wdTfiyjBON\nxpkyzuROUDD8CAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:33:22'),('probe_url:1:https://oradon.pegasus.uberspace.de/profile/oradon','a:15:{s:4:\"name\";s:6:\"Oradon\";s:4:\"nick\";s:6:\"oradon\";s:3:\"url\";s:50:\"https://oradon.pegasus.uberspace.de/profile/oradon\";s:4:\"addr\";N;s:5:\"batch\";s:50:\"https://oradon.pegasus.uberspace.de/receive/public\";s:6:\"notify\";s:66:\"https://oradon.pegasus.uberspace.de/receive/users/0b4d9b4c48604b7e\";s:4:\"poll\";s:52:\"https://oradon.pegasus.uberspace.de/dfrn_poll/oradon\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:47:\"https://oradon.pegasus.uberspace.de/poco/oradon\";s:5:\"photo\";s:58:\"https://oradon.pegasus.uberspace.de/photo/custom/300/1.jpg\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAsM4vwa4jcajmSUZFXXWt1\nB7JrgTqEIqQ66g08EOjLxKlEpmZap1W4dXlnpP37wnVQ5F1n4YEY1c7E2/ZbpDVhP\n3LUIVv6BFYxLrAnTsoXG5726EL5utY6wxRZIOhJHY1KJJMYBAw5O8bE3OCeWVW6Qh\nltZ5ezvdi7KZfQVqbh2KI5si+IbqZqydjZPMCfhIL2bN0ys79h5q8yFr/LU3k7BUw\n5c2CprTQppnKi4rSH+J8F4Vv2Bxlwh4j+3IMM153Pvx4I1jRLl8tBvAkPSjP/QRhH\nYPAyZO1nyPvv6cVLqa8fnnOenJSFDF7qZm9FHu12A3X6QZGilqsTd52Plheqa2a+/\nrYjnapqNFNGuK4UbZc1/IfWl5RLC861T5IsD48VftBq9ZvNQzOip/6Bvt69LbEZw5\ngkLBF4mY/HedL9TGioaaRlDgz+3T/Wx5+Q/3dNwr6sVHJz6F/NpNQI0AckKqmcNxk\nYIKfiqTohwQgOnfjvPjETft14rGh6J0YfQi8R+H1LeupLgcoaijOVV0YLrizOVzdE\nmfInqFcPOMVdpeqyqpYrJEeo/KF48RWD6X9CWLGHQABdpmj0S/aei8/nnRGauf16W\nkqKtnEDVn8fWg37eyLVENctlHvHGsDmvR3m0MFEeMhoH9hp2emsHhUtcfwxr1PL/Q\ndeRcxZkKu5KUCAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:34:41'),('probe_url:1:https://oradon.pegasus.uberspace.de/profile/stuttgart','a:15:{s:4:\"name\";s:9:\"Stuttgart\";s:4:\"nick\";s:9:\"stuttgart\";s:3:\"url\";s:53:\"https://oradon.pegasus.uberspace.de/profile/stuttgart\";s:4:\"addr\";N;s:5:\"batch\";s:50:\"https://oradon.pegasus.uberspace.de/receive/public\";s:6:\"notify\";s:66:\"https://oradon.pegasus.uberspace.de/receive/users/1ac52ca5766a8779\";s:4:\"poll\";s:55:\"https://oradon.pegasus.uberspace.de/dfrn_poll/stuttgart\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:50:\"https://oradon.pegasus.uberspace.de/poco/stuttgart\";s:5:\"photo\";s:59:\"https://oradon.pegasus.uberspace.de/photo/custom/300/12.jpg\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAxzWMuVFgMiptw6tUtu5Hq\nhiKnpgrzGC2hgkL06WbkHGaPwbwm3h7NmLTe59mq7c1mELzU6+w1nm18q1zRHvBK+\nSYiUOMXqgKsHfF1Wgor46FVWqAasdAgtBOusMNdj/K4gLQfVehm94abyf+p2TLeyW\nsdxbOlhs14O1sO3O+JydfYInsf019X9WvrUrGD/PQciDNzCFAcDeRJvswt4TvHrFq\ncMQqgCePrfTb3+q8zRN034xSkOnKihkkn+NqgIooU2fkhRiZo7iyR9omO1YPSh+is\nF72+AUWcrkbtNXEdh44jYw9sctuspfEgLeBHioRPQZqOaDNbdqAg3hClDMQGL2eQ7\nkW8d67pRmxZZp5TVgV2EKUY0LxWOfoNFDOactTqQ+k7dofOs6PhChU696NeQYzD5Q\nJDgtYH9NNtwFoc+L4mVZNnGl5yKhVq3+8mHqCeyUUv9huGEVUBu2JJSM3cw2MJR/N\nscr1XtymzMNyJswLfVuszuERCvviPJpuuYjbLy/OfSadfj2WOo2Hgv3Wj0frMXbeY\nNoAJCc7qzpIlDegx8sVnxQ4s3P7IqTJGnbxmlX7iT8OFxydb35cbtodQ0fN0pHUAI\nSrDTkk/IBdSdAkI2ajjZCOvag9TEJYQ9lO+huOHyQRDh2gZ/3e1tLFyvnkfyHbPva\n5mS5H9bu27EcCAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:34:42'),('probe_url:1:iulian@friendika.openmindspace.org','a:15:{s:4:\"name\";s:0:\"\";s:4:\"nick\";s:0:\"\";s:3:\"url\";s:34:\"iulian@friendika.openmindspace.org\";s:4:\"addr\";N;s:5:\"batch\";N;s:6:\"notify\";N;s:4:\"poll\";N;s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";N;s:5:\"photo\";s:42:\"http://192.168.22.10/images/person-175.jpg\";s:8:\"priority\";i:0;s:7:\"network\";N;s:5:\"alias\";N;s:6:\"pubkey\";N;}','2015-02-02 11:30:11'),('probe_url:1:joecskues@friendika.openmindspace.org','a:15:{s:4:\"name\";s:0:\"\";s:4:\"nick\";s:0:\"\";s:3:\"url\";s:37:\"joecskues@friendika.openmindspace.org\";s:4:\"addr\";N;s:5:\"batch\";N;s:6:\"notify\";N;s:4:\"poll\";N;s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";N;s:5:\"photo\";s:42:\"http://192.168.22.10/images/person-175.jpg\";s:8:\"priority\";i:0;s:7:\"network\";N;s:5:\"alias\";N;s:6:\"pubkey\";N;}','2015-02-02 11:30:13'),('probe_url:1:survivalism@friendika.openmindspace.org','a:15:{s:4:\"name\";s:0:\"\";s:4:\"nick\";s:0:\"\";s:3:\"url\";s:39:\"survivalism@friendika.openmindspace.org\";s:4:\"addr\";N;s:5:\"batch\";N;s:6:\"notify\";N;s:4:\"poll\";N;s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";N;s:5:\"photo\";s:42:\"http://192.168.22.10/images/person-175.jpg\";s:8:\"priority\";i:0;s:7:\"network\";N;s:5:\"alias\";N;s:6:\"pubkey\";N;}','2015-02-02 11:30:28'); +/*!40000 ALTER TABLE `cache` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `challenge` +-- + +DROP TABLE IF EXISTS `challenge`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `challenge` ( + `id` int(10) unsigned NOT NULL AUTO_INCREMENT, + `challenge` varchar(255) NOT NULL DEFAULT '', + `dfrn-id` varchar(255) NOT NULL DEFAULT '', + `expire` int(11) NOT NULL DEFAULT '0', + `type` varchar(255) NOT NULL DEFAULT '', + `last_update` varchar(255) NOT NULL DEFAULT '', + PRIMARY KEY (`id`) +) ENGINE=InnoDB AUTO_INCREMENT=13 DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `challenge` +-- + +LOCK TABLES `challenge` WRITE; +/*!40000 ALTER TABLE `challenge` DISABLE KEYS */; +/*!40000 ALTER TABLE `challenge` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `clients` +-- + +DROP TABLE IF EXISTS `clients`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `clients` ( + `client_id` varchar(20) NOT NULL, + `pw` varchar(20) NOT NULL DEFAULT '', + `redirect_uri` varchar(200) NOT NULL DEFAULT '', + `name` text, + `icon` text, + `uid` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`client_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `clients` +-- + +LOCK TABLES `clients` WRITE; +/*!40000 ALTER TABLE `clients` DISABLE KEYS */; +/*!40000 ALTER TABLE `clients` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `config` +-- + +DROP TABLE IF EXISTS `config`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `config` ( + `id` int(10) unsigned NOT NULL AUTO_INCREMENT, + `cat` varchar(255) NOT NULL DEFAULT '', + `k` varchar(255) NOT NULL DEFAULT '', + `v` text NOT NULL, + PRIMARY KEY (`id`), + KEY `cat_k` (`cat`(30),`k`(30)) +) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `config` +-- + +LOCK TABLES `config` WRITE; +/*!40000 ALTER TABLE `config` DISABLE KEYS */; +INSERT INTO `config` VALUES (1,'system','url','http://192.168.22.10'),(2,'system','build','1178'),(3,'system','temppath','/tmp'),(4,'system','itemcache','/tmp/itemcache'),(5,'system','lockpath','/tmp/lock'),(6,'system','ostatus_last_poll','1422903602'),(7,'system','last_expire_day','2'),(8,'system','cache_last_cleared','1422901802'),(9,'system','site_prvkey','-----BEGIN PRIVATE KEY-----\nMIICeQIBADANBgkqhkiG9w0BAQEFAASCAmMwggJfAgEAAoGBAL0EwaczRvO+Cgts\nHUCJde+q53ynJmuc8bHYhBRJ5hYQA/20Gnf6LP5KFXgezl1x8AmcGe0UYUT/0jjW\naL6m20aEAEXXdCk33BubHkU+N6drb0fDa5mO4TQ5dwiL+9njvwoepAe8vzfV6bL7\nMNiLTMRyOZZQ8amT2z9/IP1b69BbAgMBAAECgYEAti1obDtKzk/CpKGuS+5w4e9J\nr2X27M9WUAALxPY4sdj7z8GPpUVVqj1DFgQzB/Nx1AFFJ7B106fxOODGEcMGIPe6\nfcP36DzgW83htO73olosOq1qhKOiElqMbHHUQ7hyNxjKZPgAAN9TfRGhjGevGl8r\nfc5qDsLGu+d8o7j5ArkCQQDd4HEkBr0N5DiGR0J4eNVbnq/meHTDRCfUS4wjmMh1\nP7RD3R7hkiP92AIySVOnSWTWiniZ8mdfNyKEwtWMvK3VAkEA2hamKv4hMdczrhTH\nBa5ovpa3/uh1yqAwf/CldVVDAvuhgGRLw9kLsT23IpmjjLyIcqhGYLMh+UjgSQcj\nrlYtbwJBAKAS902YlvjYuHcYHjqwYq3RFPLf4M2n9FxTjO15otYEedekRk1TlCfl\nmeARywqcBuZJzKy0mCO3sW266zq4PWkCQQC8iB3oRr7Nhlt/3yhaKfcU49h1/eFu\nZGLpB1ESCL4ggwWPp6SzzxtDgrWhrK3tSUKv0/bbO6BgD3cMyqY23PrzAkEAtdlU\npnK0A8CRKYgSl5hq6YRVdrTc37/2up0nVP7Mm/zTsPQaEpeNh8JXPk6nO/s9Zgyt\nTSuUPQy0zj/RY8u8vw==\n-----END PRIVATE KEY-----\n'),(10,'system','site_pubkey','-----BEGIN PUBLIC KEY-----\nMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQC9BMGnM0bzvgoLbB1AiXXvqud8\npyZrnPGx2IQUSeYWEAP9tBp3+iz+ShV4Hs5dcfAJnBntFGFE/9I41mi+pttGhABF\n13QpN9wbmx5FPjena29Hw2uZjuE0OXcIi/vZ478KHqQHvL831emy+zDYi0zEcjmW\nUPGpk9s/fyD9W+vQWwIDAQAB\n-----END PUBLIC KEY-----\n'); +/*!40000 ALTER TABLE `config` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `contact` +-- + +DROP TABLE IF EXISTS `contact`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `contact` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `uid` int(11) NOT NULL DEFAULT '0', + `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + `self` tinyint(1) NOT NULL DEFAULT '0', + `remote_self` tinyint(1) NOT NULL DEFAULT '0', + `rel` tinyint(1) NOT NULL DEFAULT '0', + `duplex` tinyint(1) NOT NULL DEFAULT '0', + `network` varchar(255) NOT NULL DEFAULT '', + `name` varchar(255) NOT NULL DEFAULT '', + `nick` varchar(255) NOT NULL DEFAULT '', + `location` varchar(255) NOT NULL DEFAULT '', + `about` text NOT NULL, + `keywords` text NOT NULL, + `gender` varchar(32) NOT NULL DEFAULT '', + `attag` varchar(255) NOT NULL DEFAULT '', + `photo` text NOT NULL, + `thumb` text NOT NULL, + `micro` text NOT NULL, + `site-pubkey` text NOT NULL, + `issued-id` varchar(255) NOT NULL DEFAULT '', + `dfrn-id` varchar(255) NOT NULL DEFAULT '', + `url` varchar(255) NOT NULL DEFAULT '', + `nurl` varchar(255) NOT NULL DEFAULT '', + `addr` varchar(255) NOT NULL DEFAULT '', + `alias` varchar(255) NOT NULL DEFAULT '', + `pubkey` text NOT NULL, + `prvkey` text NOT NULL, + `batch` varchar(255) NOT NULL DEFAULT '', + `request` text NOT NULL, + `notify` text NOT NULL, + `poll` text NOT NULL, + `confirm` text NOT NULL, + `poco` text NOT NULL, + `aes_allow` tinyint(1) NOT NULL DEFAULT '0', + `ret-aes` tinyint(1) NOT NULL DEFAULT '0', + `usehub` tinyint(1) NOT NULL DEFAULT '0', + `subhub` tinyint(1) NOT NULL DEFAULT '0', + `hub-verify` varchar(255) NOT NULL DEFAULT '', + `last-update` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + `success_update` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + `name-date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + `uri-date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + `avatar-date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + `term-date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + `priority` tinyint(3) NOT NULL DEFAULT '0', + `blocked` tinyint(1) NOT NULL DEFAULT '1', + `readonly` tinyint(1) NOT NULL DEFAULT '0', + `writable` tinyint(1) NOT NULL DEFAULT '0', + `forum` tinyint(1) NOT NULL DEFAULT '0', + `prv` tinyint(1) NOT NULL DEFAULT '0', + `hidden` tinyint(1) NOT NULL DEFAULT '0', + `archive` tinyint(1) NOT NULL DEFAULT '0', + `pending` tinyint(1) NOT NULL DEFAULT '1', + `rating` tinyint(1) NOT NULL DEFAULT '0', + `reason` text NOT NULL, + `closeness` tinyint(2) NOT NULL DEFAULT '99', + `info` mediumtext NOT NULL, + `profile-id` int(11) NOT NULL DEFAULT '0', + `bdyear` varchar(4) NOT NULL DEFAULT '', + `bd` date NOT NULL DEFAULT '0000-00-00', + `notify_new_posts` tinyint(1) NOT NULL DEFAULT '0', + `fetch_further_information` tinyint(1) NOT NULL DEFAULT '0', + `ffi_keyword_blacklist` mediumtext NOT NULL, + PRIMARY KEY (`id`), + KEY `uid` (`uid`) +) ENGINE=InnoDB AUTO_INCREMENT=19 DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `contact` +-- + +LOCK TABLES `contact` WRITE; +/*!40000 ALTER TABLE `contact` DISABLE KEYS */; +INSERT INTO `contact` VALUES (1,1,'2015-02-02 11:24:17',1,0,0,0,'','admin','admin','','','','','','http://192.168.22.10/photo/profile/1.jpg','http://192.168.22.10/photo/avatar/1.jpg','http://192.168.22.10/photo/micro/1.jpg','','','','http://192.168.22.10/profile/admin','http://192.168.22.10/profile/admin','','','','','','http://192.168.22.10/dfrn_request/admin','http://192.168.22.10/dfrn_notify/admin','http://192.168.22.10/dfrn_poll/admin','http://192.168.22.10/dfrn_confirm/admin','http://192.168.22.10/poco/admin',0,0,0,0,'','0000-00-00 00:00:00','0000-00-00 00:00:00','2015-02-02 11:24:17','2015-02-02 11:24:17','2015-02-02 11:24:17','0000-00-00 00:00:00',0,0,0,0,0,0,0,0,0,0,'',0,'',0,'','0000-00-00',0,0,''),(2,2,'2015-02-02 12:02:11',1,0,0,0,'','friendica1','friendica1','','','','','','http://192.168.22.10/photo/profile/2.jpg','http://192.168.22.10/photo/avatar/2.jpg','http://192.168.22.10/photo/micro/2.jpg','','','','http://192.168.22.10/profile/friendica1','http://192.168.22.10/profile/friendica1','','','','','','http://192.168.22.10/dfrn_request/friendica1','http://192.168.22.10/dfrn_notify/friendica1','http://192.168.22.10/dfrn_poll/friendica1','http://192.168.22.10/dfrn_confirm/friendica1','http://192.168.22.10/poco/friendica1',0,0,0,0,'','0000-00-00 00:00:00','0000-00-00 00:00:00','2015-02-02 12:02:11','2015-02-02 12:02:11','2015-02-02 12:02:11','0000-00-00 00:00:00',0,0,0,0,0,0,0,0,0,0,'',0,'',0,'','0000-00-00',0,0,''),(3,3,'2015-02-02 12:02:40',1,0,0,0,'','friendica2','friendica2','','','','','','http://192.168.22.10/photo/profile/3.jpg','http://192.168.22.10/photo/avatar/3.jpg','http://192.168.22.10/photo/micro/3.jpg','','','','http://192.168.22.10/profile/friendica2','http://192.168.22.10/profile/friendica2','','','','','','http://192.168.22.10/dfrn_request/friendica2','http://192.168.22.10/dfrn_notify/friendica2','http://192.168.22.10/dfrn_poll/friendica2','http://192.168.22.10/dfrn_confirm/friendica2','http://192.168.22.10/poco/friendica2',0,0,0,0,'','0000-00-00 00:00:00','0000-00-00 00:00:00','2015-02-02 12:02:40','2015-02-02 12:02:40','2015-02-02 12:02:40','0000-00-00 00:00:00',0,0,0,0,0,0,0,0,0,0,'',0,'',0,'','0000-00-00',0,0,''),(4,4,'2015-02-02 12:03:07',1,0,0,0,'','friendica3','friendica3','','','','','','http://192.168.22.10/photo/profile/4.jpg','http://192.168.22.10/photo/avatar/4.jpg','http://192.168.22.10/photo/micro/4.jpg','','','','http://192.168.22.10/profile/friendica3','http://192.168.22.10/profile/friendica3','','','','','','http://192.168.22.10/dfrn_request/friendica3','http://192.168.22.10/dfrn_notify/friendica3','http://192.168.22.10/dfrn_poll/friendica3','http://192.168.22.10/dfrn_confirm/friendica3','http://192.168.22.10/poco/friendica3',0,0,0,0,'','0000-00-00 00:00:00','0000-00-00 00:00:00','2015-02-02 12:03:07','2015-02-02 12:03:07','2015-02-02 12:03:07','0000-00-00 00:00:00',0,0,0,0,0,0,0,0,0,0,'',0,'',0,'','0000-00-00',0,0,''),(5,5,'2015-02-02 12:04:06',1,0,0,0,'','friendica5','friendica5','','','','','','http://192.168.22.10/photo/profile/5.jpg','http://192.168.22.10/photo/avatar/5.jpg','http://192.168.22.10/photo/micro/5.jpg','','','','http://192.168.22.10/profile/friendica5','http://192.168.22.10/profile/friendica5','','','','','','http://192.168.22.10/dfrn_request/friendica5','http://192.168.22.10/dfrn_notify/friendica5','http://192.168.22.10/dfrn_poll/friendica5','http://192.168.22.10/dfrn_confirm/friendica5','http://192.168.22.10/poco/friendica5',0,0,0,0,'','0000-00-00 00:00:00','0000-00-00 00:00:00','2015-02-02 12:04:06','2015-02-02 12:04:06','2015-02-02 12:04:06','0000-00-00 00:00:00',0,0,0,0,0,0,0,0,0,0,'',0,'',0,'','0000-00-00',0,0,''),(6,6,'2015-02-02 12:04:29',1,0,0,0,'','friendica4','friendica4','','','','','','http://192.168.22.10/photo/profile/6.jpg','http://192.168.22.10/photo/avatar/6.jpg','http://192.168.22.10/photo/micro/6.jpg','','','','http://192.168.22.10/profile/friendica4','http://192.168.22.10/profile/friendica4','','','','','','http://192.168.22.10/dfrn_request/friendica4','http://192.168.22.10/dfrn_notify/friendica4','http://192.168.22.10/dfrn_poll/friendica4','http://192.168.22.10/dfrn_confirm/friendica4','http://192.168.22.10/poco/friendica4',0,0,0,0,'','0000-00-00 00:00:00','0000-00-00 00:00:00','2015-02-02 12:04:29','2015-02-02 12:04:29','2015-02-02 12:04:29','0000-00-00 00:00:00',0,0,0,0,0,0,0,0,0,0,'',0,'',0,'','0000-00-00',0,0,''),(7,4,'2015-02-02 18:41:17',0,0,3,1,'dfrn','friendica2','friendica2','','','','','','http://192.168.22.10/photo/343e3e9f0f5a36ea763c101490db9ca6-4.jpg','http://192.168.22.10/photo/343e3e9f0f5a36ea763c101490db9ca6-5.jpg','http://192.168.22.10/photo/343e3e9f0f5a36ea763c101490db9ca6-6.jpg','-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA4QpA4flE9v17fh+yrMpR\nU4iKSxLOF/8ROTotrdQsk8HcHkPS7E60QUaRK45gDc9O+7FU1+90V+oo0BqdkJFL\nbFtTogP5fdNSD3ApHz7s03oBX9JenU/8JhxaH1VwEs3lLDlFrywngiYcEDZIeLGZ\nIFK1GWP79+ZwJ9WWoBhzCD4hg4excOWPwwQMjCLYAzI5INEPTw+R3CKD6EsnVLu0\nS+u3zBBsL/A+bgDDfgZoD6igJQlvenK5jStgfbiuVp1mqdXKJ8D+rYz5FQ72Yn3r\nn6AvrXcPQMbLSaUK5m1Ug7beasuhRJ5Z7TVtJ/RLNgA3mOX2A2Vy1i38VYmcTaG5\nom8AYeI/nSvMzJt7FYXOBdxKnSW0UhkXsjBQavefz7sp2Lhcw5U+7eaPi2fIkYio\nVHKU2r8uiJPFfUMAbHA2+rScBjn2lYZH0nfMKrZTzva7y6d19EOsO2aP5e4XNjU8\n0tX/C1iy6LPMCf7xG844iROXi7NPJJoTgx/Sl6+o0oqBl9J5wJDK5U33rUSqYI/p\nsPEfaStqA5CgBAvAsq0N+NQQndJzGfuYaIdfleyUSLIchHhEICE4SN62RHZ6VTlg\nIVCva4xdBrGlkGV/IgE228FwgX4GWELclfUH/KwcGHChlY8dTtVZHbTCuizvPLvl\nXuZQ9ROdQiwkYwGJA/bhM3kCAwEAAQ==\n-----END PUBLIC KEY-----\n','af2c1bff1518afaf2df6d3600a7f2f036cc758f0044c4c3c7649cf53edcb4faa','','http://192.168.22.10/profile/friendica2','http://192.168.22.10/profile/friendica2','','','','-----BEGIN PRIVATE KEY-----\nMIIJQwIBADANBgkqhkiG9w0BAQEFAASCCS0wggkpAgEAAoICAQCp8Dy/Kp04TBGT\n4n0FpcvC2VuOXQb62qzikK7x7PXny/ObmM0L/Ew5tw71qsOnZECDy6tcow7NAMxQ\nbrALF/xJexHxVPBTj4RYxLIPGCzxFhTWYhzWm+R4pYOsvfqJJ7X6Re9Qc6NXb7U9\nAnrHYjJgHAA9POPDE5JOE+6Z9P0zzCpLIJi+pjm49CKu7VXLwQR25lKmjyXq6EDj\nYIk/WkzhBsiknaA9Rg7IDM0ssp820i8SRr3GQLyMfyTNPCIqB3lejaDZNpyo9AEI\nSGuc8O2ei9LJ/cg6aWR1D4hZxMg4LzZneggrh9jdZhyED+ZPhWtpp179T8KhxMqP\ng5Z+EZr2RIHwBiSbcuzGZQ1QgQb57/gJTsKlKWGHptdg1H/KxHGlexylpIF5X5pQ\nPLxBcmE3VtxJEIUP9Sf1/11DBrCl6ZQ1xhBiD31MGqz3pJiR5k2gQBalqPlVODPY\nBlaOTPS5duCbUTn+DqR+8igAJTsw/dIa1xOoRjtMB5nNyrijIIHZigF/3DtnnMEo\n1iNJFUgRr+R6B1sly8W2qFjgVln4ybJdf8HV8UWGNR7hZozPG6lU15CebAeH7ZEV\n1FURc0T1yHYJDWIXauonr2G8q+JkCx59tMSuzb4JwOjfEXgUWApSTay1KNXIc1/z\nJYv4Taac6VAAAf4MDvDbyRN5P76j7QIDAQABAoICAA6miXYppFhAJpvLQOAFxSVN\nO9lwJ7PkulbmBk8RELolGSFm8PaBj8jCAWYojKmXuQAjxOg9nn8J/JNKl569OKDV\nHVzi570seEp22qr2eJloP++jkbzmv7GvA0UXM8wzQjsLYHBdJ83X8ZYK6q7ZxmIG\nx/Z/k1s0Cr70dPOM7W9TwKmta72z8vIBCiRujaD9SPc/MAzv9mLkFwQDRJHTpSEZ\nRp76f+AIdCnHAMFDvPoq8KfwtVesKRUruO6AqqlY75u5Ng7D6ImgT555L93d3351\nq3yChoqSn3iAGE806dX+LACLwryN/6JGtVqlTEO6yuHW7heEktEDeDsbKxQ/TE6e\n7T3PZDqb54COe/YEpeiaA+t6CDfsWIOqi7YZen2PEqr1rYVTSt9RR9ZV+yLaDyfJ\n9Wm2j8Uk6x7KJ/AS/gakiVTJu2BOWfFySz+R8CO61XL6ZqUhOeRmYivv/sJj7eAu\nurjhQt9L8rWOt619PqlI1GxIWtKTgBQNuUN1vTVKb8QF9A8Yo34OkrXgwXCx9OyO\nPZl0vhvpHbEAX7qE4v3GDNOMJ7ACJWhJ1z7UHpt+q6Q6TgqwYoQqVeFmrqVYQgwY\nnDLNJyWZwcy6Hn13DHiC3yvslKXvP/McmAg+Hfn5Bq5bFq4auDYbJr/MDQLpTqhi\n8sWGkdtFJ4sCTf7wZn05AoIBAQDURDfn5JI7E4gWUfwtucSAsVEtDbO5yKFuVR2x\nKHC2XJgooNeWoIY1AsqfMAY2pkMUaQZ79RkV6zJLq3UCn9aAXzFn/7ce7qPzZdrS\n73Ku3NNlIyd/0icQ8kSvNf4OyoZjl6ByeaweE0y2PboZJysubD3cnVuNDVCAwMq2\nOUsgTb94i4Am/6gK8IoZf/OlLXmYJgcHKGsc63upBzNSnJRB+pRaKtUBfOEV+zNv\n1z8YB8d3P5GVfAu5kKOm9prwqkEq5FIUkoUrftHukxTGPaaLRcisJM+9JroshneX\nTUS2fsJErdwXJl74u1qvxBCQlHau5h/GMeRTDeXDl8v+6q83AoIBAQDM83fuT4gr\nhPJHRwq2/IAy/ZzESr02qxz/Wy0QSM4/uz8lsiGRijML0c7A6c21+cKj5v76tsNH\nQavPqbqr+p/90v9Vz7EdOKsK4eWT9kEQa7vqjgUwiZwnI79IgYJBmKjabPk9XoQy\nRBn5WC+IISN3PQi2W1fyDxn73k4RS6TcuTN0UrNIvDcX/NJqBiJD5horZr5KQQR7\nfT/jSNhkuY6HyAZccwU0C/ShBKhIkG0RWo53Ul1J8IA+DvUBmQB7kESrsUbnr6Ob\nEA8qDUrxPudlOAC2UOsfL6A00dQIVtkZxH/qUbXvmRUM9GNpVFJiG8TUgTv4Z5Mp\nrjaMpE79tG/7AoIBAEckWgxpii0snabFcZytr1NmmotcFUmGGbzN4Da5FBW6sPCk\n/7ynLnPj7J8vzFVSohbcIGU5P2AeROwhmgT4Jz89KGTvyqMeXmq8T3v07t32ew9h\nmeJ4P8mpOSX0FaNFc4c7kXXsm6g01bgath2qCAn2E0G2p7F9reaJNyedyjUYebzg\nHGJ1uw93kQF85d8Nf7xjumVGwaeesQJ0vFnKytHWNxSFWIC4JwRj/dhVLvtR2CN6\ndcPBIHjgJklWS5WvqknC3lOwy9tJFPk96G+MyB3TlK9FYy7FJQ65PqnCJu53S4sT\nLjnADYKV4I4aS2b5q1FxJWMa46iGduR4ItHcPD8CggEBAJpsiF0Dh/Jihbq3CJe/\nwUiqVsiAF/ltDLhLFrVCZkUW7QmWIjzrCHNLbqFkiR8oRUQB9PUraA/0p2Qc2w5i\nFNLHfKRHjYga/qWAd974mSWqRzkAMWDVDtde0+3pxx9tyyxpF5Lp+Gl3bqq1i3ri\nnTpmvn3IbYdxYX6pjeDyQhIdaWuoNHYFeu2UDWbdoEvQwL8a9x4zxxDU2qKCbKnY\nNlCQolpeP/lrWLNKMxIZ4FRHCzlU0f24PKiF1I2Tnw17MoK7XFWNvZREkWh6A5Gq\nd+eIPuEgL0icNfYWc9Ckv4fuywLe9lrF2VqdeZoPctOBYNlNVsZgJD4vieKGmw4G\nOqkCggEBALkyBL734pf4dlyKmZeTGvv3Y8f45QmJSivGIksuTBDSF5MSLOL5hQwX\nnTnbi48X2fmFxfuPxkO4fhAjioVG0HXwr9+6CTYQmi6MK6lfFEKAh6JNO45GBRuO\nCWbsFUIrIcPULYkArtyeVz7bWs0yWUpzguddO1ekso3bZlk3fPp5Kt5b1wJAkz56\nPsYvAp9oLG0Pc1wPDJVBocsDtDVnZCxxz/rViuajut84llz5/9l0iGzB4bJrA2uG\nVX0A1gkaHRb3VdpF4856/pJAoH2ljh1U+5iquHBuvvK4vMxFeN+1fVm9c/Ksb2OU\ndLrR3o8mxnuDuIMDIUjpEZaR+FYKCSQ=\n-----END PRIVATE KEY-----\n','','http://192.168.22.10/dfrn_request/friendica2','http://192.168.22.10/dfrn_notify/friendica2','http://192.168.22.10/dfrn_poll/friendica2','http://192.168.22.10/dfrn_confirm/friendica2','http://192.168.22.10/poco/friendica2',0,0,0,0,'','2015-02-02 18:50:08','2015-02-02 18:50:08','2015-02-02 18:50:08','2015-02-02 18:41:48','2015-02-02 18:41:48','0000-00-00 00:00:00',0,0,0,1,0,0,0,0,0,0,'',99,'',0,'','0000-00-00',0,0,''),(8,3,'2015-02-02 18:41:21',0,0,3,1,'dfrn','friendica3','friendica3','','','','','','http://192.168.22.10/photo/1f4766db71f0f2d503287947c1d67dcd-4.jpg','http://192.168.22.10/photo/1f4766db71f0f2d503287947c1d67dcd-5.jpg','http://192.168.22.10/photo/1f4766db71f0f2d503287947c1d67dcd-6.jpg','-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAliSi9id9Ll1dpzXC/lL6\n2/5FYxdn0XYb5I2JeXBNopwbXOLDsnnzXlV2NN8riZaYRQcIbS00OuAvyYj/IG3i\nDykD2zPjVnLEWADtj1YhLSgKcfQgv6Cj/7CPdb1Rg3icbvWdVY9wabcblVa9k+qr\ngK273C47lCQzXgvMtPst1DOzxtVCGmPJJHKjXZ8hDvf/IS0pVGa0zIv9kdofqQV9\nD5u5LuNzRuEGnrpAzpfzMueDppBrrrr37sKrZfCvyYHZ/ouFgZ3bY9NNVnjuFItP\nrcDlJPL8NhGmmzuYtI03MLor+1yVdBKLIJ3G2Bxzn5tynjSX9XZzOQgC3+YVH4TU\n7WDUHjTWJ9mliD2M1WXCp2Lwc/pV1Prnvv057pAqdiMhnddzucV9nLk9X9fR8xyy\nC7PRwx0hkB427EtAYaOTr3RtInP6+cm+3M7wd6ZKTqWAU+Pi20RNrQRsqfHJ7+hx\n+i5rIG6/knB/C+MAAutEH25oY8kJYtJzXid2OBSE462DTuYaee9aGHUDNy+HQau8\nBhJ4/Wsc7Nf/7GRZ38SVT/HQShl47B1AG5AyomyWgwn9J2KJ8kMuScPmBv5u7Mwq\nSjLk5pLkwyUtZwUu8UtsFKw9HLcRksGSze5s2cbw3rf/6jgKycT72Bfm1fjRnv6s\nXt1GdSzfG9zVHuEwRDgTX3UCAwEAAQ==\n-----END PUBLIC KEY-----\n','','af2c1bff1518afaf2df6d3600a7f2f036cc758f0044c4c3c7649cf53edcb4faa','http://192.168.22.10/profile/friendica3','http://192.168.22.10/profile/friendica3','','','-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAqfA8vyqdOEwRk+J9BaXL\nwtlbjl0G+tqs4pCu8ez158vzm5jNC/xMObcO9arDp2RAg8urXKMOzQDMUG6wCxf8\nSXsR8VTwU4+EWMSyDxgs8RYU1mIc1pvkeKWDrL36iSe1+kXvUHOjV2+1PQJ6x2Iy\nYBwAPTzjwxOSThPumfT9M8wqSyCYvqY5uPQiru1Vy8EEduZSpo8l6uhA42CJP1pM\n4QbIpJ2gPUYOyAzNLLKfNtIvEka9xkC8jH8kzTwiKgd5Xo2g2TacqPQBCEhrnPDt\nnovSyf3IOmlkdQ+IWcTIOC82Z3oIK4fY3WYchA/mT4Vraade/U/CocTKj4OWfhGa\n9kSB8AYkm3LsxmUNUIEG+e/4CU7CpSlhh6bXYNR/ysRxpXscpaSBeV+aUDy8QXJh\nN1bcSRCFD/Un9f9dQwawpemUNcYQYg99TBqs96SYkeZNoEAWpaj5VTgz2AZWjkz0\nuXbgm1E5/g6kfvIoACU7MP3SGtcTqEY7TAeZzcq4oyCB2YoBf9w7Z5zBKNYjSRVI\nEa/kegdbJcvFtqhY4FZZ+MmyXX/B1fFFhjUe4WaMzxupVNeQnmwHh+2RFdRVEXNE\n9ch2CQ1iF2rqJ69hvKviZAsefbTErs2+CcDo3xF4FFgKUk2stSjVyHNf8yWL+E2m\nnOlQAAH+DA7w28kTeT++o+0CAwEAAQ==\n-----END PUBLIC KEY-----\n','','','http://192.168.22.10/dfrn_request/friendica3','http://192.168.22.10/dfrn_notify/friendica3','http://192.168.22.10/dfrn_poll/friendica3','http://192.168.22.10/dfrn_confirm/friendica3','http://192.168.22.10/poco/friendica3',1,0,0,0,'','2015-02-02 18:50:03','2015-02-02 18:50:03','2015-02-02 18:50:03','2015-02-02 18:41:48','2015-02-02 18:41:48','0000-00-00 00:00:00',0,0,0,1,0,0,0,0,0,0,'',99,'',0,'','0000-00-00',0,0,''),(9,6,'2015-02-02 18:44:07',0,0,3,1,'dfrn','friendica5','friendica5','','','','','','http://192.168.22.10/photo/75b60a2a1e6b2cdf2eb3637955a7a5c2-4.jpg','http://192.168.22.10/photo/75b60a2a1e6b2cdf2eb3637955a7a5c2-5.jpg','http://192.168.22.10/photo/75b60a2a1e6b2cdf2eb3637955a7a5c2-6.jpg','-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAyvuTsaZaTgPDm69uxixR\n8qd0ylkeA/IY3KDsI4vjrLuF7WLmU07lzQXmilQJ+MlipIju+wFXx3a8ksavEYpP\n9ZU9YrpXe7zneHRLTxgMDH9IMbSCIUAkEsozpzF02Ft0+G36tzIET2oTuU6uLtx6\nI5ifmF/qFC+4avAoABQg8qfOPpuaP3AJ6FppqEifUsb0lTWqP4zg7PQXC36oKIJ0\nUDuQniVy8lTxVfkhoi/aHZw0khVXe6tDK7C0ALg5U7jLTDNdJ1R0v5iC41QK4CEt\n5x4x008mdk6xLKGZiou1UuEPv/+WSQU1Q21JFzNVGBASkRu7dUVH6k+59VQr3ONI\n5bdbAZviVY3ezFNtBeWWfDk06BWoZwX67eGG/dVsCPnEkuP9CpemcwwGZbYCIqf0\n++5h0CU41CjNShHdBD+Q+ZQmT3I4sAlPZ7x90nA9KfuKM9QyTPQ9EmK2bxq7TKvV\nzLqHptL5mC/VH4FbO1eKf7p/f7XxOaeXGANUaRSPwLSO7lk8lkl/wj7sNJYGYygC\nMLTqH8GTizpyPkSDv5xO6bYn/g3BYFuUM5x1MZVS8MdG2a3L8UzRiXUsm/AjnfSV\nImN2+8bHJI0wy9zRxfEaG8pvbupb7UU5zWr3WRkSVr84Bq1SJNxLfWZj3GHLaesr\nu3exEdYGfxLuG1zHIROVwlcCAwEAAQ==\n-----END PUBLIC KEY-----\n','','1457f73164eefae32c107b310f3720c83bb5c7f9df88de0114714f4c77055337','http://192.168.22.10/profile/friendica5','http://192.168.22.10/profile/friendica5','','','-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA4HA9qXSYftx7tS6kTVvs\nBhVx7hPK57GIpUU6azuFGqmrAqEEsBh2+oLTDzYGvq7UW5NAbL6QdvoFkJC4tTJK\nwfMO7noAhBzzrLpGjJn6W1v7OaGX1VAQM32+dqgUP7aJF91DKx8nCcAqo8yPp4gr\nUe1Ev5Yrsa9so6XRXEI0n7PHTgRir8HIAHC4sDl1THuUdahD0q5hy+7ymyUHHEsF\nJJIC4zCuFNGdk2wqDdG534FAU5CKOL/OZW1n9vbumU8zwk3hdt5rmzxyxx6ji9KU\nJiSLSErGLo0xQklT2N+DND61SgSqKk2JDmnD6NtCb9u9Q06E+jpT4mKrTrxURqa0\nQ0So/7ZbJJWb2y7Yd7KTN8pvVzC3Set9+YXH8EVypVsAW/Io6KoUiFEuJhp1291R\nVXjt4opm3unxNVCYnl/Ui/p0mw9QjuaEx9/7Iu/RUKjXFWzqmzpXEinfVk6rscC5\nTJn7BAZFkhZD85YSmSuPkDbtiAS99uIyO2jaD1G29lkVzdG74KW54r2Np6rIOgqK\n4Gsr8H7LM/R03jBMPCjHtWT0bOyT6ySzqdq9YHsW/9Fr5uBL5EeOuL/xKuRNaaQs\nIflXwfcb35ouz5PDeP3T8m1tBhwWN2kiWVCiQuRQINhG1vFHU28Yof3XAQ3iWiV+\nfPp/WfEiQ/HnkJdmlwq82eECAwEAAQ==\n-----END PUBLIC KEY-----\n','','','http://192.168.22.10/dfrn_request/friendica5','http://192.168.22.10/dfrn_notify/friendica5','http://192.168.22.10/dfrn_poll/friendica5','http://192.168.22.10/dfrn_confirm/friendica5','http://192.168.22.10/poco/friendica5',0,1,0,0,'','2015-02-02 18:50:05','2015-02-02 18:50:05','2015-02-02 18:50:05','2015-02-02 18:45:30','2015-02-02 18:45:30','0000-00-00 00:00:00',0,0,0,1,0,0,0,0,0,0,'',99,'',0,'','0000-00-00',0,0,''),(10,5,'2015-02-02 18:45:10',0,0,3,1,'dfrn','friendica4','friendica4','','','','','','http://192.168.22.10/photo/d04134664ffd0d558b08ee01f6859f3a-4.jpg','http://192.168.22.10/photo/d04134664ffd0d558b08ee01f6859f3a-5.jpg','http://192.168.22.10/photo/d04134664ffd0d558b08ee01f6859f3a-6.jpg','-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA3nCYawg+HTyQgV7a7Osg\nCXeACOitKLhcb2WDTN/lLOMO7n1lSm3Kdv1dbOc0/lkAPeB2XsLF/aDfoUPWWg4Q\n/oRPrXFIi2dK/cIQVvgOhebQheztAYPJyaYYMWVK7bLbPuKVTyzALqkWD8Zjjtit\n4Uvm3kjmcofKr+/Lw+VFaEBMESQDbP5eTDtQeDGGjluWQMj1/D+V/Tcm+SMrAVIv\njyklQEhBJlYGJ+LsfXv4XXbeH73dkIXkQW5JgWQyPCloJ+PxmmjjEDozsdgmFQXq\n6T9HFVHvW2O2lmDoaTrbIGrULWBpslKZJJrV+LgtkzhP4uuKfJPD2DpMJ4+ixtBE\nzM/o+EuYDTz0P3dTvwruq1t8gUYcQOVUzEp1LM0qYDMVY86XneW1W5xghztl5zqy\nGBMBvjVIFvMVL1cVeXze4zpwwKln2cArepToSpN7lmy9EgBd9mZrVLWosZShB9R0\n05kBc2Tfv7FlixwZ1P8rwJn9sEEs9oa6TnRLL+7L8eqapg6vUI1G7e0HWWEjdHsR\nrYVHYW+ogtOYjrQ1Tfh1W2PtNaez5fGYVBDjC+1vy0scJmqrgy00z7MHBT2WTOAL\noHbdedhpa3UZ0FrsCto+vqil8BcF5aBhi2Hi5YdKtbY3EBsaabcSO2joc7rlmee4\nxdKfDRYXCPysFPhZNgIW708CAwEAAQ==\n-----END PUBLIC KEY-----\n','1457f73164eefae32c107b310f3720c83bb5c7f9df88de0114714f4c77055337','','http://192.168.22.10/profile/friendica4','http://192.168.22.10/profile/friendica4','','','','-----BEGIN PRIVATE KEY-----\nMIIJRAIBADANBgkqhkiG9w0BAQEFAASCCS4wggkqAgEAAoICAQDgcD2pdJh+3Hu1\nLqRNW+wGFXHuE8rnsYilRTprO4UaqasCoQSwGHb6gtMPNga+rtRbk0BsvpB2+gWQ\nkLi1MkrB8w7uegCEHPOsukaMmfpbW/s5oZfVUBAzfb52qBQ/tokX3UMrHycJwCqj\nzI+niCtR7US/liuxr2yjpdFcQjSfs8dOBGKvwcgAcLiwOXVMe5R1qEPSrmHL7vKb\nJQccSwUkkgLjMK4U0Z2TbCoN0bnfgUBTkIo4v85lbWf29u6ZTzPCTeF23mubPHLH\nHqOL0pQmJItISsYujTFCSVPY34M0PrVKBKoqTYkOacPo20Jv271DToT6OlPiYqtO\nvFRGprRDRKj/tlsklZvbLth3spM3ym9XMLdJ6335hcfwRXKlWwBb8ijoqhSIUS4m\nGnXb3VFVeO3iimbe6fE1UJieX9SL+nSbD1CO5oTH3/si79FQqNcVbOqbOlcSKd9W\nTquxwLlMmfsEBkWSFkPzlhKZK4+QNu2IBL324jI7aNoPUbb2WRXN0bvgpbnivY2n\nqsg6Corgayvwfssz9HTeMEw8KMe1ZPRs7JPrJLOp2r1gexb/0Wvm4EvkR464v/Eq\n5E1ppCwh+VfB9xvfmi7Pk8N4/dPybW0GHBY3aSJZUKJC5FAg2EbW8UdTbxih/dcB\nDeJaJX58+n9Z8SJD8eeQl2aXCrzZ4QIDAQABAoICAQCwFwAaIvO+nQimV8jrNRLS\nlyLDU14gOMdoPA+gsJs3FyWoM2M1Moyu8dPcnFvgYdUVYEvsxfscjf+ttA5ng+Tp\nlOUDME+VWA3LWH8fs3OdGGbcia9R2rZLX/3+pNL2RiX7xkr72z5KxS3vRAD1xb2P\nUuRcmNsBVwyavO+tPfiB0JCv4nr3QMfFqKsPAJXKgy8wvOsxskXitkA8f2m7xhRr\n4+9GBxyeEvRaBURdgU4fUQ6CQeZgrgSmyZcHSihbuqt2aJpcJBgzPNMk7SIOAxLf\ndk6dUqV5QqgCRPv3LS6I4CZmw5ArDphY6Zye5uCSWMp+s21b0kWcWiPj65kHsaW9\npU/ffgJGr3YQBBJ+bca6XGuABvm4edolk4OS08CKa/Jh3YLO95Pvvn0Uj15alq2D\n7itEUv8LF6r9EA0KyulEAPYyTeiDEXcis0vxo4aimmq3SbhxxwngMIWvDmTrI5C1\nnjYsRw/4D6GWta32dLpYr5MgGMlJmw8gVa8yauDANnOoM5Qn3rKNT/meuxE1EwZU\nz7q8mfdiO6SMec9Q+X/irbJ4l+IRKW5qgqUOVFKRs5DuJI8FbpQioHs/fEDtmTUP\nvIMBXncX74vhoTUX+gZpuGMFWqCMmE11YR6wA4DnmLUCf8VSHez9noBmEiTDT8eu\nIBVR/p9qsc9JkYNo2FG9nQKCAQEA789ecTua3S5BXSA0w4bjnvLAMVG4PejLNuE6\nqRosRFx3+SgnH7/WMMLfwTRgUkWQA+ehMgr43pfI28ECuWqlqfsNJK3IRC33i777\nMefCQ3CXNpTWjLnVvv4hMjqLCKfjxzSlCt0a4gYsZRdMtqzn6XhgD/mCCV8xBq5s\nevMZGnmxeAuGSpfHcj0NzIz388r3t9T7mDP2x2SQ2NS68kbdWiddkbayUWRnvlhO\n8gxjECCqzmMnjeDH4I0H61KCBKxwTdR31u4upBktRE2zf6gLyjUMwcYVGmSt2a2o\nRgiR7lqSLweND6Wa02IvhpvlwPoWLUQu7ZXUi9AT+bhjw6yOIwKCAQEA75c0fvEp\nsUZlau1JgmHWXLyZS6HGNylBYNqKLgupIq9F1GLedGpByPgOsIINNwPP9CyxgQxQ\nRsE7Idd6tg+7FAHo6CW8YhKvMtbwQb8/HrOABv0noevDk89uPIKMlfwLgL3noFx8\ne8WpAQ2juEm+kpzfclu48u3WxnGi28SSHWrc9dbUxKPL/aMvLQ9CuZiXzSBrE6Xr\nkKJFrDSVAleUW9k9zfLW22MdFYBfMPa1FJCGVHLdzknZF1zErvHYIjTYLrAkrvmy\nV5flXjz7wpjL4g0ajCzb2YWi1CbJ5SWVRL3OaT2hL4ijSR122TxH6QKxHXDZGDQD\nBCkk9PZVwGG+KwKCAQEAraUrjrSJU8UtoWAztK1U3wCJ+GxjC7kohOmcD1ybVzjZ\nyrmvcsb3MsG5Qe5KHOiv+pPb3h+hy5R+5dkhvt8hbC8Uek236N6cFD3LKHzX5vt9\nExG9NZNO2gisQvGvQSpIvjM5mt81mxq7RMwVSWV0XFNEw+x4o46hMmRUusaSk+Aw\niGtX52V2Dxt0hXxCAu8iZqO7Np/R/tmsJMYNRGfZ2nEMyPlQr60Tjfnl2FDt3ny5\nEc8skgiE0u1sIZLSAM5YV5MU37YCYeK1K3NUGYi2WMoHHbzwBPeIB0o+wc9s0/oT\nRiiilQTmUlATd9YlDJJKQqbPkEvg5whZnoZM/yBQnwKCAQBFZt9mBiW1nFa0apfo\nlL6rjlY5elsYj3LIw4VTYT1VNsBbjWgzALSdqn1W09VQImKSsH+aih6W4FJosypw\noo3mdccpuAShxBfL+kcORH/cPNLRM3PPi6PTpTqhfI+Mwr3yRRBbe27zy4XxMCpE\nr9fsUFTJo5gnho24XiJ21rIco1/uNpTbgTcN+b8opksFyBXw7XsW7fEWrGrSP0kK\nrKPlF0C376gdVNCP8eehH1XE5ziCLePiZbHk+pJeut+IyRX2MD/wD5SBmxZt/exP\nqkMk7/bItBXbJMLOAY5qOkDK8NBh2+BdDI+AFnDe7H9IF+eGR7IbOLXG9sQl0VV1\nrNqRAoIBAQDcaPs8IbbP5SdAGRUMotS94XRdnJOTuJ6jev1zS1yvp/8ptMdkByoy\nqXw4UKUXpQOUDr82B/MPWSRAS5xjXogfbYIeBLm6CpYtjV+XhGJcGbBg/wVUMKvz\nFreSCIEICWi7OiGQG9j7E1hLWpMI59LBFHgLBX6KvNAiuQbTeEHus243FXFlD9Sl\ne+k4tw1/CNgPozRfrLJF+uxUH0P9kYXFXFxXff2PK7VLr3/2Je7uV1ckPLlAJCFI\nnEQpdPjPmRhmohiHv5NHlqLVNX8I0XincM1XPdD/qiIqP+asrc9CF4z/Od9F0XSP\nuAn81wfguN+AIeC3BnIO1RLZnpAEwUWW\n-----END PRIVATE KEY-----\n','','http://192.168.22.10/dfrn_request/friendica4','http://192.168.22.10/dfrn_notify/friendica4','http://192.168.22.10/dfrn_poll/friendica4','http://192.168.22.10/dfrn_confirm/friendica4','http://192.168.22.10/poco/friendica4',0,0,0,0,'','2015-02-02 18:50:11','2015-02-02 18:50:11','2015-02-02 18:50:11','2015-02-02 18:45:30','2015-02-02 18:45:30','0000-00-00 00:00:00',0,0,0,1,0,0,0,0,0,0,'',99,'',0,'','0000-00-00',0,0,''),(11,3,'2015-02-02 18:49:20',0,0,3,1,'dfrn','friendica1','friendica1','','','','','','http://192.168.22.10/photo/389cca68d9a2e64538a81680925703b8-4.jpg','http://192.168.22.10/photo/389cca68d9a2e64538a81680925703b8-5.jpg','http://192.168.22.10/photo/389cca68d9a2e64538a81680925703b8-6.jpg','-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA8/tIxRBs81u0V6ug4VXh\nG8omo+8YIckQqL5m7jWJqQ3v0fCrjyO8EcrjXhKC6esafSOlVhgxzFOkqNH8rRGF\ntF00suNJXy/0fh6EFFvifX1hQw1ZCXXlHxmmM4yNkGOzbRXPeVuSxyn1OtQNGRnB\nSGeqdCZc4QMtgPbVPwTTWYB4rSbVGYbEa5vpqY0OFnlIwC+BtQrd0xFEO7+FGfmv\n2jRt7ImRiyFazef0NhZL890IFeB5+rF8fifC3o7OP0kzB75+z5LkBfnsveZCriaj\nwHjUmMOa/hTOVHw4qYIq6XY4Q2OgaGTs2xqBz4/gniKjNSBbRyYy45prFOuJTLmO\ns07078nfg3NbWq5JkszwPen+gcvc4Pv38z2DBc2RxjgU0YbY4ZV053GIzd8hutA4\nm+eD1Cl0NZcEd9OYi3dtXWACPsf2C0/FsouAj1juXWxeRZ9exHphs0tCXt/RPgyK\nOqFPaPRCBL6MUvM0N1yR2TVk3s3Uq0k/4AExcplJGuZt8bMDIGR6g3RF+bXn3eLb\n9SnpnLSIMpHS/N/JVQzMs4W8tkdwi2OiIeNWhYrFH/stfU7KPYXdwVfduDTAv9LA\nY5Yk8oMomfL5b097eKDdzXFJ3rKUXktobl74REtgAfXEA3OgqCXUGPLbS45I8gsZ\nxBFRmmPH3SuOCQSRkY0gb/UCAwEAAQ==\n-----END PUBLIC KEY-----\n','4968c78f8a9df6fc4e43949748a0e94567dc0f83166cf83cd8e0f98f406e1b3f','','http://192.168.22.10/profile/friendica1','http://192.168.22.10/profile/friendica1','','','','-----BEGIN PRIVATE KEY-----\nMIIJQwIBADANBgkqhkiG9w0BAQEFAASCCS0wggkpAgEAAoICAQCjZo+s91a7V4+A\nBcZd/axeCE1p9HDhxwEwDWGoAePFzaksP4MyreLJWgf51LwAzYaEoeyYv+iyUEMt\nfkn/9VLWuA4qRG8yKQVqh28OdDPUdwsvIo7TmFgkVBL3yOuPts0EeJddle+CBOCO\nViXl5LgVf2pPY5ELIPmOUOQdk6IX6aixV42gt4L8V+hQVCS+b4S+LmGBTxr8e8XD\nTYEY1kQQpUtXU9G1A0kdr4bxGuA0WNY3pplbOwV1/F1YYpwtANslhuV6FTKgEjCd\noQhRaKFH0lp0HMu7s48R7UgPjVkP1c5MOAXqJo3biqMyFctAx78jaHij0VONr2qL\nayYTPfY0fypBb5uKfYquvcRQO6v/oaiZ4jP0hLszekBo4sPqtDduMWwlzEmEDqNT\nMctn0ADpgnvmPT69OSSyFE6d2dxcPbP77v5hjF3UJ6inzqzuxE2NxYK5UfhUwL3Y\nBynrZISwN+THekkABx9/tqwLCd2z68ocoaJi/tc2oQKSGwNgk/pa7Gg9zkgMdhQK\nAzYcn+cNpODx6LOKi7ILhiNEISHU6CnobbUpwNZrESL0fhSwxqTMV6s9zCQxdtVX\nhhrzhh9MCz0fRi8wYvU3ZIbEsP36iXAyqUhRHm3LZoH6VL/qHLZIlZGKEK48cbLo\npqiPzsGMazBECJvRg3mWC7mfzEQqAQIDAQABAoICAGFrR2PHP0WIiby5NLBbCoYx\niv4Nx7NEc5fTkpKZNdR7rk38O9teQqTrcW/o/oG4B2hSJf5YBIMzSSn5bmMVP2NW\n7tMSY/1S6bC+uF60tyYIJ3ndr6vF218lZP2oI5FWWls9Dnm0Z8xr3fnesM+kkn/2\nrEpSwWoSKddIsQhVOcHqBDJfUcgtQQHz40TpNdL4J/s/KdDvedZocNrk/X/yVzhZ\nZFbXWWMDZ3c0bE6ZSGzNPkKFqE71HGdgo8KLYDOQnBd+mpgzxTAcSDHijVQD/owU\nhOtPM8Rf5H+6qUjka+H+BfX5PMWCYPcwa+Xzim+/51xT8AEzTw5dNDeVFWlJetyT\nul/OUTUZL9oFdFlxaMvLZkhcKeVEvms6/QvUiouIe3g6l+yfqbqAnGSQLtil07Kv\nfNBmX3/PR3d0/NjClr9afWrLUXUSgcWXF70JwkUk3pes8WNg5v1/rk2i6Cqj7ns8\nv1Vlq9FThQcNbCNK/Qh44ytJeox7+7HzNWqYeRjYm7pUTm5aIrSUR7avETUDwSPg\nmd+IfL0m0gp3tFycY/gDNmE7BLoXZuPl0/vm48BVOuVszJ7dV/YQ1gP+HKtzPntI\n7CFXl2zxr9gLOoFC687eMVUagTQjvq/M1LLOlkr8RNqPKS/a7F7mwW+X0l0T5RER\nir5g5xsSqkJbVrPSvP7VAoIBAQDQxgkdBMDqK0PtxsBsFhSD1K8ueTXk99OzRTxj\nCU8fSGJr/lKbsG5jRHBmlj1HViRoD2JXnTfzwtIkbiZMjRJG4cjj0d8UDb4dUwZ6\ndU08Mb2Y8p7oKl+Dv6lI5GylP6vy2N7bcvHLgxWteeByhOIp9mNHKD4c5Cg3iOLD\n3HuUOEGY9DBqcpj94QYsQUdpLTp1cAq5Np6B4ZC1lGFfyzAr32NN+sQpXVHt/RsE\nMqKKu6R1U1rWpXCCGlJWkLdC9QI/raJKfQXGvixYLMngmb5nuyfp46rUmaur/Ogn\nq8KA4eNQdDa1UP1YKEzkbXCebcxtiJK+9kGeUCalUZx6d0lLAoIBAQDIXQDAfvta\nnU32dDJTA5GT6upTYF9NwYAe+89/kAvoBIL+nnbiOPsvReBb+XQsD6UucxgQy4yo\nCcEWhi2Bvg4ACoEIK+XULwm5SurFlptpTbpivVkbHv66O4uHbWRoegHAlz7lISIV\nLPNYrn71WcDVkfFDOBu7llXJ0wOUAeaX1ESAnDRHKZ4q/z4bSvMfiAbeL89Ghb/t\nfVC74Ac5cWYIgY10jGpSPxYUVb0Z1dka9BmBPqhaXk5ss2Nz5cR4F2VWIRF+29bU\nw+ws7iBwPiuK2zliesH/F8mqs02bH207PlcGtBH5scrlQWwPRItF1E91glJEyDcF\nXldTHFns5zZjAoIBAQCbEi3cvxYoGaDoMdPltPTiAw1oIKJWg3pc01WKXnTF0LdC\nbfKgMAmedExk9r1nimWaYarzVxUjW5dJdgO+op5rxfO4vL/NHnQTRgMu3IhU6MFi\npPxBiI/PxYIRYZINoGCxDkNij1toheKJK1j61xdCgf+17/9K6HGy5ltBjjjAnJSk\n7uQzfRGEqisynf5T8kNUzbc5YYeVA53AMgmt5LfQLqqNVnF0JBviATmbAZ1YHQ6I\nEzUK8HHEQZbdM7rb4i8ca3V7jKfIuqMnj4UX7jrOw+ZexTuzlL0+D6nFJcBgiOiW\nbuvf+9tiKvUKSvv2wamxxlrxuup8lB5Qd3EaShZHAoIBAQDBG8HpxXkEMLA/ZGZM\nVBgu9C68BRpVmrWdJx0p2O9gw1hthtUV281cFoDSpG4vOTT+u7bqGQSLwDr1NoUN\nkttzdqw97/Emu98nUulLXoiSyXNmTxBeb1UasOEduXUYrN6bfCoGNBThS92OD0AV\nwFd2f56EJsOz3IT6bAH62Iois1cCjYplO9tRnYeCTo5cSYI1Cuc/FRGSF0GEkbrk\nxkKM2DA5sEuY0Wy6VJhZGh6RN8qNIpKn5lS3t32W6lCdXg8xH9X46nD3x40NEMT6\n6TCWOAvqul3XOloHx6B4baWdf8vojgz1F0JyCsfXPzzsJGAg5WXdHQrKhc6sL5sM\nFRv5AoIBACzRCOFP9Yys7eBDF9E7vHOllH3yfKFZl23kywn8VqWBApd8azn3ThFr\niKvpQI4LjR0s62al/oLYRQeAQYX9zQBJQntQp7oIRMRCn4IqPNTuwWJ3A/RLlBGX\nsShEJhIEBQRMb/ZqOQ4Hgu1/k5AhYmdbT7YMNGXKscqRRWUqT7MDRsDCQhx2ue8v\nVSB49HqYqGBpTPWix27sO/VzcAvEjXEAJi5jOvLbkkHlRJqu3tZ/+szkoWx1YFwi\nHHJ6L6Urou7sxdnXULT+iMW+/oEob8ZezbDRLWjiln95rhwUnu17B7paZmIVe6Cy\n/FhZIOns6kkCi8CcaS3V3qLfXQrQSfI=\n-----END PRIVATE KEY-----\n','','http://192.168.22.10/dfrn_request/friendica1','http://192.168.22.10/dfrn_notify/friendica1','http://192.168.22.10/dfrn_poll/friendica1','http://192.168.22.10/dfrn_confirm/friendica1','http://192.168.22.10/poco/friendica1',0,0,0,0,'','2015-02-02 19:00:09','2015-02-02 19:00:09','2015-02-02 19:00:14','2015-02-02 18:51:35','2015-02-02 18:51:35','0000-00-00 00:00:00',0,0,0,1,0,0,0,0,0,0,'',99,'',0,'','0000-00-00',0,0,''),(12,2,'2015-02-02 18:49:41',0,0,3,1,'dfrn','friendica2','friendica2','','','','','','http://192.168.22.10/photo/b18ee0c7f160fdbf8f5d91a56a07a13c-4.jpg','http://192.168.22.10/photo/b18ee0c7f160fdbf8f5d91a56a07a13c-5.jpg','http://192.168.22.10/photo/b18ee0c7f160fdbf8f5d91a56a07a13c-6.jpg','-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA4QpA4flE9v17fh+yrMpR\nU4iKSxLOF/8ROTotrdQsk8HcHkPS7E60QUaRK45gDc9O+7FU1+90V+oo0BqdkJFL\nbFtTogP5fdNSD3ApHz7s03oBX9JenU/8JhxaH1VwEs3lLDlFrywngiYcEDZIeLGZ\nIFK1GWP79+ZwJ9WWoBhzCD4hg4excOWPwwQMjCLYAzI5INEPTw+R3CKD6EsnVLu0\nS+u3zBBsL/A+bgDDfgZoD6igJQlvenK5jStgfbiuVp1mqdXKJ8D+rYz5FQ72Yn3r\nn6AvrXcPQMbLSaUK5m1Ug7beasuhRJ5Z7TVtJ/RLNgA3mOX2A2Vy1i38VYmcTaG5\nom8AYeI/nSvMzJt7FYXOBdxKnSW0UhkXsjBQavefz7sp2Lhcw5U+7eaPi2fIkYio\nVHKU2r8uiJPFfUMAbHA2+rScBjn2lYZH0nfMKrZTzva7y6d19EOsO2aP5e4XNjU8\n0tX/C1iy6LPMCf7xG844iROXi7NPJJoTgx/Sl6+o0oqBl9J5wJDK5U33rUSqYI/p\nsPEfaStqA5CgBAvAsq0N+NQQndJzGfuYaIdfleyUSLIchHhEICE4SN62RHZ6VTlg\nIVCva4xdBrGlkGV/IgE228FwgX4GWELclfUH/KwcGHChlY8dTtVZHbTCuizvPLvl\nXuZQ9ROdQiwkYwGJA/bhM3kCAwEAAQ==\n-----END PUBLIC KEY-----\n','','4968c78f8a9df6fc4e43949748a0e94567dc0f83166cf83cd8e0f98f406e1b3f','http://192.168.22.10/profile/friendica2','http://192.168.22.10/profile/friendica2','','','-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAo2aPrPdWu1ePgAXGXf2s\nXghNafRw4ccBMA1hqAHjxc2pLD+DMq3iyVoH+dS8AM2GhKHsmL/oslBDLX5J//VS\n1rgOKkRvMikFaodvDnQz1HcLLyKO05hYJFQS98jrj7bNBHiXXZXvggTgjlYl5eS4\nFX9qT2ORCyD5jlDkHZOiF+mosVeNoLeC/FfoUFQkvm+Evi5hgU8a/HvFw02BGNZE\nEKVLV1PRtQNJHa+G8RrgNFjWN6aZWzsFdfxdWGKcLQDbJYblehUyoBIwnaEIUWih\nR9JadBzLu7OPEe1ID41ZD9XOTDgF6iaN24qjMhXLQMe/I2h4o9FTja9qi2smEz32\nNH8qQW+bin2Krr3EUDur/6GomeIz9IS7M3pAaOLD6rQ3bjFsJcxJhA6jUzHLZ9AA\n6YJ75j0+vTkkshROndncXD2z++7+YYxd1Ceop86s7sRNjcWCuVH4VMC92Acp62SE\nsDfkx3pJAAcff7asCwnds+vKHKGiYv7XNqECkhsDYJP6WuxoPc5IDHYUCgM2HJ/n\nDaTg8eiziouyC4YjRCEh1Ogp6G21KcDWaxEi9H4UsMakzFerPcwkMXbVV4Ya84Yf\nTAs9H0YvMGL1N2SGxLD9+olwMqlIUR5ty2aB+lS/6hy2SJWRihCuPHGy6Kaoj87B\njGswRAib0YN5lgu5n8xEKgECAwEAAQ==\n-----END PUBLIC KEY-----\n','','','http://192.168.22.10/dfrn_request/friendica2','http://192.168.22.10/dfrn_notify/friendica2','http://192.168.22.10/dfrn_poll/friendica2','http://192.168.22.10/dfrn_confirm/friendica2','http://192.168.22.10/poco/friendica2',1,0,0,0,'','2015-02-02 19:00:21','2015-02-02 19:00:21','2015-02-02 19:00:21','2015-02-02 18:51:34','2015-02-02 18:51:34','0000-00-00 00:00:00',0,0,0,1,0,0,0,0,0,0,'',99,'',0,'','0000-00-00',0,0,''),(13,4,'2015-02-02 18:50:05',0,0,3,1,'dfrn','friendica1','friendica1','','','','','','http://192.168.22.10/photo/ba266e976726cba185c218750c545814-4.jpg','http://192.168.22.10/photo/ba266e976726cba185c218750c545814-5.jpg','http://192.168.22.10/photo/ba266e976726cba185c218750c545814-6.jpg','-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA8/tIxRBs81u0V6ug4VXh\nG8omo+8YIckQqL5m7jWJqQ3v0fCrjyO8EcrjXhKC6esafSOlVhgxzFOkqNH8rRGF\ntF00suNJXy/0fh6EFFvifX1hQw1ZCXXlHxmmM4yNkGOzbRXPeVuSxyn1OtQNGRnB\nSGeqdCZc4QMtgPbVPwTTWYB4rSbVGYbEa5vpqY0OFnlIwC+BtQrd0xFEO7+FGfmv\n2jRt7ImRiyFazef0NhZL890IFeB5+rF8fifC3o7OP0kzB75+z5LkBfnsveZCriaj\nwHjUmMOa/hTOVHw4qYIq6XY4Q2OgaGTs2xqBz4/gniKjNSBbRyYy45prFOuJTLmO\ns07078nfg3NbWq5JkszwPen+gcvc4Pv38z2DBc2RxjgU0YbY4ZV053GIzd8hutA4\nm+eD1Cl0NZcEd9OYi3dtXWACPsf2C0/FsouAj1juXWxeRZ9exHphs0tCXt/RPgyK\nOqFPaPRCBL6MUvM0N1yR2TVk3s3Uq0k/4AExcplJGuZt8bMDIGR6g3RF+bXn3eLb\n9SnpnLSIMpHS/N/JVQzMs4W8tkdwi2OiIeNWhYrFH/stfU7KPYXdwVfduDTAv9LA\nY5Yk8oMomfL5b097eKDdzXFJ3rKUXktobl74REtgAfXEA3OgqCXUGPLbS45I8gsZ\nxBFRmmPH3SuOCQSRkY0gb/UCAwEAAQ==\n-----END PUBLIC KEY-----\n','1993beda190780abf81b6585d66643d9c14726c3fc5876604985b687f74877f5','','http://192.168.22.10/profile/friendica1','http://192.168.22.10/profile/friendica1','','','','-----BEGIN PRIVATE KEY-----\nMIIJQQIBADANBgkqhkiG9w0BAQEFAASCCSswggknAgEAAoICAQClyqb0yY9wQ4jm\nPo9836jQWx2FxXtGZ/hPVNSG9/ig+PGdwL+kQy/95yz80A2J+Bu5zd9ePe9Xt2fL\nEw8qX1pVqxMb1WL6L6rmRIy7JGEcRbmggoN/sp+1bCstxVWKTgJYcYv6rgL7aeEP\n3RRt1LcwpqLD9oeIpkHMJ/LnCksCJTgxGwsbJcsRGFd4smgVjL+kcAfiWQjajkim\nU6FbB6K3KrxeNcM//i6vRX0fx7B1PLuEroMfE6VfX/2TW0Gcn4P6VTCJeCMDU+iq\nD4ae880zykRKZyKeFnlG4oe7yYI/n3YD6PglfNgmfH4HoK5oYK6YhZHLWUOg+pQl\nbIf69b60U5f7tnlhtz3mkF0w7HO1TS/6W0BAQABXohv/96RMeZOV1rvHR1fNiDSg\nSWjDbHDeTbaSPyR9czOg+DysfIZc4xVK8Bt10MWz/3Telij95UZS5Lw7YYHlCVVC\n8Q1aeeNM9fm0w8mFcQ0FTYBAkWxP9E9cUbKkGS17lma1uq0sePLTCvzHtrM0zScA\nmneY5ZYAHfhsXmTVuK4tKuDP4d6sfH7zTDm39zSJnI9DNTzK+D8CCPEULqJdeHKa\nuWcL3lO/mtmlL/RwaLIGuvd2OG1+6iGQ8pvxtt792FkzmHWP5HgaQ3+ikYUcTda4\nk4DPhzz9STz+dXYPzgRid0PJ+wQAUQIDAQABAoICAD/VO90J8glGZ2JG+hYZQzUd\nr8s+ks0z4L4iqkVhGkBYOScE/IRxPfwjUwXv0RarCXnLk1IExK9gNT1SFEe7ONu9\nJ3lS+m3bhpBsGkc/pYguLF9pgNnc23MNt75CuUGr8Wk+JqgY8Zr9VCM4etIi0XmQ\n3yBWPi7V3IWPaA2ev+yOigkWIXuNXJczaRJWlo6dh3f3joGOyELl/4DSuFCFKxgd\nAzO+vXNZGX5wYdGnoAAzpvtZ+bAwbz6+hbKDs0prfHQY8rwrHkf8uZsoqStwMTTc\njtiaxxBZFM6/D4W0+0olylmNDGXaoJqI2jlzm1MiznZ5Dv5dWxWTBRE3rU9p6MeE\nlIWRrZpFe/BavvRPAr3XTVHTc7JgRYCgiUA1Q/yQ27BMTzeW8gudXDWQE9/IyI1+\ncqo8Fdiz+OgNvB1q2ohS9YrDU3LQrdTbdu9ryVCgJM3Gn0qmLxtOWyTVC6KL6dS3\nGzFPT2e1V0G+TzHG+40eMy/UWZPSiksxhUMhSfqK/CVZ7oEnG90DzcKsCvgMAxch\ni12a9aCWiJEaMX2xzcblx1DFA++IY/U8uV701ANtZJZM11VPqpQEtH5nkhFNhu9J\nG6L/Z/sZ6yPXi5e6QB3oE7Yjw/5iVN+sofdi8yn2d/dVBESmd9Z3DEYdSpEz0tem\niGFywmhRi/3ZZeIHP6ABAoIBAQDWvenT4DTrl1YTzmX9Di/3vS9mppvQWDlx6Vuo\n/jKzM+1TkTiEdveUt6Gvs3XcPHxq2xpNp/SCtu4QEktR33vnbtIgbCLhz7zrcR28\njiB7npYDS5UcXTqk3iDVS/NadZVReElXAVRrKpcE3USwbzPPHu02vq9sBx3L10K0\nrJGgJngUoed222oVmV9P+b2DN2gEHyKTX0WCjxwOcKJMT+ffYpbu2//lzfdSONAw\nfdea7XUxDhHYWm+8rsvpdQWSGX2YBwZqfa9jpjOFVrIoR0NYU/yNrgw1q7kovGMG\nW/hsTUwFyKtz36nNs1O4VTWr0YNIEBK+Q5tUkZVi3ErGQCIBAoIBAQDFpR6I1GeT\nzD8IL7gdnmM21oVuWa/rzsiCdVSW14K9wfIbgUgtgB0RCzGhDJC6yBjjwjWnzzZY\n4KbJZyEB0719P+JOEIQRCGTb6ZbhkmEOK12ZtggMDBFsxRlccr/UN3FoBPN6+nZE\nqjQyALd/LFNo98Lhg/VddMsZo7QCc0pqBffHmJmZtgv/BSDfN6OyM97HIMBRqNlE\nYmAbH5gMKc23++EyFq9pHPrsb3igf8MhA44bbb8dAtTLB1CFaYTYk8XkJ2JinfYC\nqNk4AfylVFzIpJ7Mc7k6BwDwkT0Tu52FEqvwgw3vgo7Jhd0vfgmyT15vhFq5w+4B\n1Jv7YNEefT5RAoIBAAbA0DKukVt7VeSnkAOGR7HlzDDROoMx0xSm/w/wdo22K1d+\ncKWRzDVsFPSeky1K5arCmzAoAQN/VztAKAg6G/5qOMd2Px6U1t8cno/IdHMOyK7v\n2I+cyvRWW/f5PHzyx7BZNQ08aHg6TaeEgd1+kcWItnMLSh7+lkxLx7hA2Q+NRid3\n8/yD5/En8pxkQTZ4Lpg6lm7GBzyU3ZACsMfvl14qDo8Schi7AnUefkWYH4iqwQ26\n4IrKRUtMv/LmkDdI/+8hAW2l6DcdCe++iznDC/YiJgYanB2v+dGzIvYXPFfDkol4\nBxRMy11Br3dTjq2JmDRS9RPwsljVfzotrVhQugECggEAbdybvXk73ebhfp5v3F7n\nTVsvLijCZfQ6dnHbxEElFm+RMYLKaShWf9vWCWxfosOJOkkA5DeFQSAW9crSiR52\nrQFuvO/nSUR+M9ODH/3q3yJx0/hgProSkYB52W6bfM4YxrZB1TEVvpNRkh3d4d30\nu1tFQ2/DWuCJ6MWbUOVfDtIkahlEADI2NtpV7F4UKwE0K0HkRT/zDVUVkN4d+Vzf\nUg67nckIVgha3kQULDr4bwh33H1Dh0/EktqNAqulwXFaxbiyspiVX+MVY1GPayMa\ntBj1gDYvVrb/6bkB108pfwfi9T0T6PeMgS5cxYJsx2Xg22IZwDrNuMzCq5ekhise\nEQKCAQB4AUuBYKS4cAA7t5PSZG3TWrej9+8QMygzDDSpxQt/nyBM3Gzy58YOIczS\nQhgUGhwSA9HF2ghdJ5pyHpuT0OVWNtCpZr7NGlq28dYjC6vbr36b79xrW+poPFv7\nfOSSLHOxW/rqvWxconkMYfUDgSay333r+t3KNPzNwPRjawZBL91I2Dnjy2XgogT+\nXV9Xr0mQ5g8iQAV+HNYXYuQxlAkbVkpLyJAvacPjrgQ6+BrQMhzklKo6h4RW9PS9\n9PopqjwsXCKR1VnZhkhbt66xqmkEOtyl6ytYhUKDlzI3z8V1yK8V7hGhM2P17ksr\nNjUrIANF0eZWxtdfweUXB3ncY1qM\n-----END PRIVATE KEY-----\n','','http://192.168.22.10/dfrn_request/friendica1','http://192.168.22.10/dfrn_notify/friendica1','http://192.168.22.10/dfrn_poll/friendica1','http://192.168.22.10/dfrn_confirm/friendica1','http://192.168.22.10/poco/friendica1',0,0,0,0,'','2015-02-02 19:00:15','2015-02-02 19:00:15','2015-02-02 19:00:15','2015-02-02 18:52:24','2015-02-02 18:52:24','0000-00-00 00:00:00',0,0,0,1,0,0,0,0,0,0,'',99,'',0,'','0000-00-00',0,0,''),(14,2,'2015-02-02 18:50:08',0,0,3,1,'dfrn','friendica3','friendica3','','','','','','http://192.168.22.10/photo/1fc6596c195944666e18cbd313795942-4.jpg','http://192.168.22.10/photo/1fc6596c195944666e18cbd313795942-5.jpg','http://192.168.22.10/photo/1fc6596c195944666e18cbd313795942-6.jpg','-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAliSi9id9Ll1dpzXC/lL6\n2/5FYxdn0XYb5I2JeXBNopwbXOLDsnnzXlV2NN8riZaYRQcIbS00OuAvyYj/IG3i\nDykD2zPjVnLEWADtj1YhLSgKcfQgv6Cj/7CPdb1Rg3icbvWdVY9wabcblVa9k+qr\ngK273C47lCQzXgvMtPst1DOzxtVCGmPJJHKjXZ8hDvf/IS0pVGa0zIv9kdofqQV9\nD5u5LuNzRuEGnrpAzpfzMueDppBrrrr37sKrZfCvyYHZ/ouFgZ3bY9NNVnjuFItP\nrcDlJPL8NhGmmzuYtI03MLor+1yVdBKLIJ3G2Bxzn5tynjSX9XZzOQgC3+YVH4TU\n7WDUHjTWJ9mliD2M1WXCp2Lwc/pV1Prnvv057pAqdiMhnddzucV9nLk9X9fR8xyy\nC7PRwx0hkB427EtAYaOTr3RtInP6+cm+3M7wd6ZKTqWAU+Pi20RNrQRsqfHJ7+hx\n+i5rIG6/knB/C+MAAutEH25oY8kJYtJzXid2OBSE462DTuYaee9aGHUDNy+HQau8\nBhJ4/Wsc7Nf/7GRZ38SVT/HQShl47B1AG5AyomyWgwn9J2KJ8kMuScPmBv5u7Mwq\nSjLk5pLkwyUtZwUu8UtsFKw9HLcRksGSze5s2cbw3rf/6jgKycT72Bfm1fjRnv6s\nXt1GdSzfG9zVHuEwRDgTX3UCAwEAAQ==\n-----END PUBLIC KEY-----\n','','1993beda190780abf81b6585d66643d9c14726c3fc5876604985b687f74877f5','http://192.168.22.10/profile/friendica3','http://192.168.22.10/profile/friendica3','','','-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEApcqm9MmPcEOI5j6PfN+o\n0FsdhcV7Rmf4T1TUhvf4oPjxncC/pEMv/ecs/NANifgbuc3fXj3vV7dnyxMPKl9a\nVasTG9Vi+i+q5kSMuyRhHEW5oIKDf7KftWwrLcVVik4CWHGL+q4C+2nhD90UbdS3\nMKaiw/aHiKZBzCfy5wpLAiU4MRsLGyXLERhXeLJoFYy/pHAH4lkI2o5IplOhWwei\ntyq8XjXDP/4ur0V9H8ewdTy7hK6DHxOlX1/9k1tBnJ+D+lUwiXgjA1Poqg+GnvPN\nM8pESmcinhZ5RuKHu8mCP592A+j4JXzYJnx+B6CuaGCumIWRy1lDoPqUJWyH+vW+\ntFOX+7Z5Ybc95pBdMOxztU0v+ltAQEAAV6Ib//ekTHmTlda7x0dXzYg0oElow2xw\n3k22kj8kfXMzoPg8rHyGXOMVSvAbddDFs/903pYo/eVGUuS8O2GB5QlVQvENWnnj\nTPX5tMPJhXENBU2AQJFsT/RPXFGypBkte5ZmtbqtLHjy0wr8x7azNM0nAJp3mOWW\nAB34bF5k1biuLSrgz+HerHx+80w5t/c0iZyPQzU8yvg/AgjxFC6iXXhymrlnC95T\nv5rZpS/0cGiyBrr3djhtfuohkPKb8bbe/dhZM5h1j+R4GkN/opGFHE3WuJOAz4c8\n/Uk8/nV2D84EYndDyfsEAFECAwEAAQ==\n-----END PUBLIC KEY-----\n','','','http://192.168.22.10/dfrn_request/friendica3','http://192.168.22.10/dfrn_notify/friendica3','http://192.168.22.10/dfrn_poll/friendica3','http://192.168.22.10/dfrn_confirm/friendica3','http://192.168.22.10/poco/friendica3',1,0,0,0,'','2015-02-02 19:00:12','2015-02-02 19:00:12','2015-02-02 19:00:12','2015-02-02 18:52:24','2015-02-02 18:52:24','0000-00-00 00:00:00',0,0,0,1,0,0,0,0,0,0,'',99,'',0,'','0000-00-00',0,0,''),(15,5,'2015-02-02 18:50:52',0,0,3,1,'dfrn','friendica1','friendica1','','','','','','http://192.168.22.10/photo/73de577b8bcc76d9358ab8536f0a5cca-4.jpg','http://192.168.22.10/photo/73de577b8bcc76d9358ab8536f0a5cca-5.jpg','http://192.168.22.10/photo/73de577b8bcc76d9358ab8536f0a5cca-6.jpg','-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA8/tIxRBs81u0V6ug4VXh\nG8omo+8YIckQqL5m7jWJqQ3v0fCrjyO8EcrjXhKC6esafSOlVhgxzFOkqNH8rRGF\ntF00suNJXy/0fh6EFFvifX1hQw1ZCXXlHxmmM4yNkGOzbRXPeVuSxyn1OtQNGRnB\nSGeqdCZc4QMtgPbVPwTTWYB4rSbVGYbEa5vpqY0OFnlIwC+BtQrd0xFEO7+FGfmv\n2jRt7ImRiyFazef0NhZL890IFeB5+rF8fifC3o7OP0kzB75+z5LkBfnsveZCriaj\nwHjUmMOa/hTOVHw4qYIq6XY4Q2OgaGTs2xqBz4/gniKjNSBbRyYy45prFOuJTLmO\ns07078nfg3NbWq5JkszwPen+gcvc4Pv38z2DBc2RxjgU0YbY4ZV053GIzd8hutA4\nm+eD1Cl0NZcEd9OYi3dtXWACPsf2C0/FsouAj1juXWxeRZ9exHphs0tCXt/RPgyK\nOqFPaPRCBL6MUvM0N1yR2TVk3s3Uq0k/4AExcplJGuZt8bMDIGR6g3RF+bXn3eLb\n9SnpnLSIMpHS/N/JVQzMs4W8tkdwi2OiIeNWhYrFH/stfU7KPYXdwVfduDTAv9LA\nY5Yk8oMomfL5b097eKDdzXFJ3rKUXktobl74REtgAfXEA3OgqCXUGPLbS45I8gsZ\nxBFRmmPH3SuOCQSRkY0gb/UCAwEAAQ==\n-----END PUBLIC KEY-----\n','0bc099852fd312feafb2cba2fa0019cf973e643951ddbf6ffdf6fad5aa58f25a','','http://192.168.22.10/profile/friendica1','http://192.168.22.10/profile/friendica1','','','','-----BEGIN PRIVATE KEY-----\nMIIJQgIBADANBgkqhkiG9w0BAQEFAASCCSwwggkoAgEAAoICAQDbCtvcmn1RIKfD\nUusiez0aVlimCIEltnEjNeKz/2PTRZqMWdrkhbWMGtYuWBq6FmK3yWB9MkNtyKDE\npo4ncGeWMKtPk2oyY7wyV2KazTKGpfrymwKqF3/YYmbiLSAWpzpBThP0Dd7Eg35Y\nyeCTbKzYN7hp2VUR52j6XxhxgLbj97bnd7+oBst+TN4ZTZ061xjWDexpWYiQR1ck\nBS+0JKxh89t6n3oA64CPY/e3W8vJ5BIaW/PW4rHAwWU4fa4PKUcepHin5yYC1n5h\nQLBbpPOShLBeGisJ1370bVi/yfdYUohxGVFmy1u863VF3I0iTDuvSDSvdfud/Vrt\nJaCnHL9FKhhYMpW8cDTxCttNZ0fu927f5ftLbnmm/JQOGR7E/6JFmDkMWUCGGr7z\nTXyqnGkn3N1KjmBNfRGifA0pJQqZHWYyDsXTW/barNsGykz3njjo045RLvGHfAoM\nafuOg+trniQfi7kDJr+/ipnxAMYphXORfnFljX2RLPWIHOLGxKUgdprjdxOoc7L7\nEDniw+mUl7/IxKkCjeK23sMjPfcdwmfDBHFMpMtnCp/E4Het27YZWksDokgS+Xs4\n4sV85xJL71BqeQkr8ntd79qV2ZapAGiDH10tbtcZM9IMX+6c1y1rODQrzhpZRsfs\n1z1sLka+zO5OxV+Jq+u4rRQITSpC2QIDAQABAoICAQCcKTK0JQQAybow+7WdIKVg\nWHzc6iVAwMAKLUmRsBr4LaBQPWNcFqNm3l8iLTfowTrh8lSzDRmbdDSB3ohsP6vq\nHIqVsfA9OnOapEgtOuuxqTWurqqInzZLC2R0DV3aKKDUnBiHnzfZfDGglVRhZlIX\n2CnGdOY8XHGwRgnEKdK51gn1HZ9q6GU9hwm0mmvk3iLbwJNyTB2bVvEeQgBPevHW\n56bq1jWB4GQIVmnttCkmp03ssu+1nGrDlF1Yl+l276O/idxnP9kOnuL87MSOoZvx\nMl4WyKs0Wgkts6NZIGER+81AbJ9nHMYreuZhxyprcFQA1AaTrRaU/WJMvc26Njl5\ngLfvYnzbgy3Qsi32Dp+99PNGUKLLK/WnLZ/lkvRgrG2XALGa0Y3zb6pzh41kenLZ\ntHq1JGf2I1qBxolCXTtpm4dr2YmEBvrvk4Bq5EvE43okK85Gm0/3bpq1X21Vkpno\nkd0aLWLymIGT6V80fmp/9k4pLfsnfLOB8uVrRgwt+fb9QweIhQNMgpsSwkfpuaUj\nkQW1mt5nicT5sYTq0ZZ3895l2lVWHNfT0zxlG/p+24086eExlKGD5WWXyyV1NlmM\nbnQbeRx2q/nnXk4EZAZjvdI1+w/Jg1m2eDDCRWINtP1wgb9cv2/blTjRyyhhvJrS\nMqWWZh1fLoVe0p6vCaGEgQKCAQEA+b38DbuibKhuzgHPg4ne0L4NI8OM8MbSsebt\nvcHPG9pqExV8dvMpYqnxPIY2ETI/Q1Uh9ff6cdrYTnWyGk8H18z8IdNJb/a7+oCW\nCOUIKIi0heFoyIkl5Jy9dUkRHZNTf5D77h74z2xUiExQHiBKMwCdG7GbNms62ANX\nFFtLKgDMi1ITAk2RglWrnuksoqNQsMCsfVRZQYhB/XLsfkeL3Wp1ajsggLQKdRZW\nMZMFw+ZNLEUFzeQqWoGF3ob44/OoEsoHPZ8EnZXykwZd4yNDvnrRcrwxSRFbadg5\nOKh/KcrYes33MKpHeN+N4hH04Z0U2uerKF/xyiYIWNE858Y8aQKCAQEA4IfyC1nU\nlR8MRzZiFHmCyVvDpzzx4BfbjjNGjXE/BTfb4VDjSTZAWxozgRDG1G4ODZUaL0eK\nOkJwB7yCfvvmAahQf9tFes7VFSQ4/DypEufKrXg1IxgGsKseR14ULfNZXD5rygUl\nXI60frYHKQm4rdWTZj+df/1VEF4cyRWRFNN2mKC6mj2poqM4vaQU1rGWtQPA2IFA\n5J7F3pY9ikNVMfai997M3SolVSD6FfwQcTVLnK8n/gaCUNMFchJGhAy5gPz3epmZ\nLe/F4x035ChBpdAQbERij+gmrm/JjaH2KtE59JoVnB/8pipjdi4CRuPkLiIByMF5\noH2/DpjL3ZPE8QKCAQBLHtNvSg5MQsm5m5/QwCrOfSw0osCFODjuHDlMx7xFc4hO\nnzrmCLRdIiMXAoPG3mdbGINzmhiyIJLJ3usosLb6OYVpo0VGsV/PtNfsav/uOVib\noLbFA0PrpR3z5nuIeuU1zOWKtbQ/qCUxLks3FJ1dBAU97El0sAJuMWsDC4brZnwg\nOBrRqYVoP960mQy9CwTddccsl6+VX6gB1Yy/W0P94OTahFh9fipbF9HrbX7hcyep\ndkWNreDzglxDGDRLVOIsbKqK5Ycc45qokNSy2suowwa3TVZB1T+68bgci8pcRtCg\n980vzThcaloiMyaGqpo4UlEQfvOay5/dH2sDiIRpAoIBAHfHzlZD2+aZo6Ex3+zw\nTddBvwSuvJJB5/zaWd8G9QnBnOl8j2P1LyvqtGM8IfYdqB2S1181mQYvfziBVlSL\n6U4lDpzGyzASuxYGNuhJLCFLypH0ONS58oe5IfQMulMxKRDOtA4X5LCV6LBYR0Wb\nTAxgjbvUYB9xdDnBGzYi7Tzg+rm9tQ6nqqF61cBFkmBeaPm0QOK/QXE1SnXOTJJA\nDWkUHCiDkWLDIxtg9klYKSVbuzShNIKN0mNvz83k9f1oFGY9jYC4BEG/UiAw7Cop\nV6wvbTN03+fJfyk7tZh7OKnq6DIXKUQaxFuY7WqUbN6IoKgDuFPy8wGtU4lj9g4E\n0OECggEAG+9Bz9Tzp+JWhGXVsQ5NAKFHw2SJFFFCqFe27hVS7R7E+wJx84i6AEuh\nMWA7bxKHU4XJ5waCmxLLiY9BTb8lkYzT0gttl7O6J5mWTW/wT4VDZGSywQpt0uVD\nNPRpKAvFumXJccaWDz9Oz9oChk4P93a0kZi/H59uePb95xW8MXsVPIjiq/PjVewY\nsKRqEXeE3qeahieyz9ac9Dc2MJVvuuot3wRM3YERgjzZAfSqK8Lo4rSHgiGg4iYj\n2IoxAN007n4ZSiXH/qUtMAIOQGFfO1jqmt6dZkt3kJ9+2JkYa01vnLUvA9KViPI3\n3fhPNAoXmu3k6cGhzDjNG5bQVWIU8g==\n-----END PRIVATE KEY-----\n','','http://192.168.22.10/dfrn_request/friendica1','http://192.168.22.10/dfrn_notify/friendica1','http://192.168.22.10/dfrn_poll/friendica1','http://192.168.22.10/dfrn_confirm/friendica1','http://192.168.22.10/poco/friendica1',0,0,0,0,'','2015-02-02 19:00:06','2015-02-02 19:00:06','2015-02-02 19:00:06','2015-02-02 18:51:07','2015-02-02 18:51:07','0000-00-00 00:00:00',0,0,0,1,0,0,0,0,0,0,'',99,'',0,'','0000-00-00',0,0,''),(16,2,'2015-02-02 18:50:55',0,0,3,1,'dfrn','friendica5','friendica5','','','','','','http://192.168.22.10/photo/01072618a17425401fafdeb40fcd79ac-4.jpg','http://192.168.22.10/photo/01072618a17425401fafdeb40fcd79ac-5.jpg','http://192.168.22.10/photo/01072618a17425401fafdeb40fcd79ac-6.jpg','-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAyvuTsaZaTgPDm69uxixR\n8qd0ylkeA/IY3KDsI4vjrLuF7WLmU07lzQXmilQJ+MlipIju+wFXx3a8ksavEYpP\n9ZU9YrpXe7zneHRLTxgMDH9IMbSCIUAkEsozpzF02Ft0+G36tzIET2oTuU6uLtx6\nI5ifmF/qFC+4avAoABQg8qfOPpuaP3AJ6FppqEifUsb0lTWqP4zg7PQXC36oKIJ0\nUDuQniVy8lTxVfkhoi/aHZw0khVXe6tDK7C0ALg5U7jLTDNdJ1R0v5iC41QK4CEt\n5x4x008mdk6xLKGZiou1UuEPv/+WSQU1Q21JFzNVGBASkRu7dUVH6k+59VQr3ONI\n5bdbAZviVY3ezFNtBeWWfDk06BWoZwX67eGG/dVsCPnEkuP9CpemcwwGZbYCIqf0\n++5h0CU41CjNShHdBD+Q+ZQmT3I4sAlPZ7x90nA9KfuKM9QyTPQ9EmK2bxq7TKvV\nzLqHptL5mC/VH4FbO1eKf7p/f7XxOaeXGANUaRSPwLSO7lk8lkl/wj7sNJYGYygC\nMLTqH8GTizpyPkSDv5xO6bYn/g3BYFuUM5x1MZVS8MdG2a3L8UzRiXUsm/AjnfSV\nImN2+8bHJI0wy9zRxfEaG8pvbupb7UU5zWr3WRkSVr84Bq1SJNxLfWZj3GHLaesr\nu3exEdYGfxLuG1zHIROVwlcCAwEAAQ==\n-----END PUBLIC KEY-----\n','','0bc099852fd312feafb2cba2fa0019cf973e643951ddbf6ffdf6fad5aa58f25a','http://192.168.22.10/profile/friendica5','http://192.168.22.10/profile/friendica5','','','-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA2wrb3Jp9USCnw1LrIns9\nGlZYpgiBJbZxIzXis/9j00WajFna5IW1jBrWLlgauhZit8lgfTJDbcigxKaOJ3Bn\nljCrT5NqMmO8Mldims0yhqX68psCqhd/2GJm4i0gFqc6QU4T9A3exIN+WMngk2ys\n2De4adlVEedo+l8YcYC24/e253e/qAbLfkzeGU2dOtcY1g3saVmIkEdXJAUvtCSs\nYfPbep96AOuAj2P3t1vLyeQSGlvz1uKxwMFlOH2uDylHHqR4p+cmAtZ+YUCwW6Tz\nkoSwXhorCdd+9G1Yv8n3WFKIcRlRZstbvOt1RdyNIkw7r0g0r3X7nf1a7SWgpxy/\nRSoYWDKVvHA08QrbTWdH7vdu3+X7S255pvyUDhkexP+iRZg5DFlAhhq+8018qpxp\nJ9zdSo5gTX0RonwNKSUKmR1mMg7F01v22qzbBspM95446NOOUS7xh3wKDGn7joPr\na54kH4u5Aya/v4qZ8QDGKYVzkX5xZY19kSz1iBzixsSlIHaa43cTqHOy+xA54sPp\nlJe/yMSpAo3itt7DIz33HcJnwwRxTKTLZwqfxOB3rdu2GVpLA6JIEvl7OOLFfOcS\nS+9QankJK/J7Xe/aldmWqQBogx9dLW7XGTPSDF/unNctazg0K84aWUbH7Nc9bC5G\nvszuTsVfiavruK0UCE0qQtkCAwEAAQ==\n-----END PUBLIC KEY-----\n','','','http://192.168.22.10/dfrn_request/friendica5','http://192.168.22.10/dfrn_notify/friendica5','http://192.168.22.10/dfrn_poll/friendica5','http://192.168.22.10/dfrn_confirm/friendica5','http://192.168.22.10/poco/friendica5',1,0,0,0,'','2015-02-02 19:00:18','2015-02-02 19:00:18','2015-02-02 19:00:18','2015-02-02 18:51:07','2015-02-02 18:51:07','0000-00-00 00:00:00',0,0,0,1,0,0,0,0,0,0,'',99,'',0,'','0000-00-00',0,0,''),(17,6,'2015-02-02 18:51:55',0,0,3,1,'dfrn','friendica1','friendica1','','','','','','http://192.168.22.10/photo/b4cbb73d1178aab3424a788419bbe016-4.jpg','http://192.168.22.10/photo/b4cbb73d1178aab3424a788419bbe016-5.jpg','http://192.168.22.10/photo/b4cbb73d1178aab3424a788419bbe016-6.jpg','-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA8/tIxRBs81u0V6ug4VXh\nG8omo+8YIckQqL5m7jWJqQ3v0fCrjyO8EcrjXhKC6esafSOlVhgxzFOkqNH8rRGF\ntF00suNJXy/0fh6EFFvifX1hQw1ZCXXlHxmmM4yNkGOzbRXPeVuSxyn1OtQNGRnB\nSGeqdCZc4QMtgPbVPwTTWYB4rSbVGYbEa5vpqY0OFnlIwC+BtQrd0xFEO7+FGfmv\n2jRt7ImRiyFazef0NhZL890IFeB5+rF8fifC3o7OP0kzB75+z5LkBfnsveZCriaj\nwHjUmMOa/hTOVHw4qYIq6XY4Q2OgaGTs2xqBz4/gniKjNSBbRyYy45prFOuJTLmO\ns07078nfg3NbWq5JkszwPen+gcvc4Pv38z2DBc2RxjgU0YbY4ZV053GIzd8hutA4\nm+eD1Cl0NZcEd9OYi3dtXWACPsf2C0/FsouAj1juXWxeRZ9exHphs0tCXt/RPgyK\nOqFPaPRCBL6MUvM0N1yR2TVk3s3Uq0k/4AExcplJGuZt8bMDIGR6g3RF+bXn3eLb\n9SnpnLSIMpHS/N/JVQzMs4W8tkdwi2OiIeNWhYrFH/stfU7KPYXdwVfduDTAv9LA\nY5Yk8oMomfL5b097eKDdzXFJ3rKUXktobl74REtgAfXEA3OgqCXUGPLbS45I8gsZ\nxBFRmmPH3SuOCQSRkY0gb/UCAwEAAQ==\n-----END PUBLIC KEY-----\n','cd8d6796a986b38a7fb102d05cb41dabe3bdd042f05bf2e5d184a9fdae0255fc','','http://192.168.22.10/profile/friendica1','http://192.168.22.10/profile/friendica1','','','','-----BEGIN PRIVATE KEY-----\nMIIJQwIBADANBgkqhkiG9w0BAQEFAASCCS0wggkpAgEAAoICAQDCyqFtB4TgbrcJ\n59saeXpo/P+01pHCILBzYKhWhrPDhzI2S+ByaeGbMm/ID2EqGrMxBiJs8gPzPVLk\nF1o/V2HWwelM/adgSoT8zihpebfOTjMFB3ExenheLqym7dbigt2f11ArDCF9wPli\nKgOuSwhb9JQSBkhHtfByVVTlKHKP9nmyyWVeo5ZI9cCJ9DlNw/c9uoSX4gW43df0\n/onnVwd6Z4MtoapKmiI6WDljsTveRliJerXFRbmXhzb/AnYUp4aZa8lpeH7TqGQ3\nl93zRjrz29JGxCho9eexOt3Kaq41kiLvIbElT+5nPxkPXnw9DALm5wYTWhyQDw8h\nRSLoNwll9IVCO7OuUWyopolLsxBz6fKwtF2tuMFxApAcRhtADY8dFn2tT/1+UgI1\nNI9Xh/mLtbCJyNTUG9hwP/VYRpw49hnvo0Jp7hVom9o/pxCl69x3fD0hs3WILclV\n/z2gpikEs+lP9PdUjR3XtS6CD/nVjP7hFOZhlJn9IyAJR8bi4TX2bzL+PZ9JQLpF\nOohIGwYMJFsi7uudSRLke9zG1UrCQdPpwA1VQVq0Ugh/Lj97RoTtE7tO8Kon5YG4\nrtYDS5JptsXEE/p794NQMRAjxMga4yf9+cdFOpyGc+a6hMoBlqKGHU1TYmjz4riz\nsBs9zBlmnOLWgmdaFLGwYR4aKXKWTwIDAQABAoICAGTRe7tyqNOAejwmRMDvHuw4\nBiES7V4MjUcqP/aIwYHx94siuoh9RMeO00w4qZGhQB2fjzHUETdUBhMIAy3FjF4a\n/yVaI8cyyqIOEdyFoxykXMO9lliFisc0YSgE8bNLCGoyhsvA+5SazHiCRmVvcGQn\nsnuhxMdY45pJkCcLSEA60cI3esAA60fX6k98mCwnwU+xue7ijROhvqSPGdEiujwg\nV0TG59y06gJIp2tx0Aq7XhfJ60qvS9+hnFVgcL0/9+pwX063juz9uuELOVUwhFKy\n86Ks5D1vCPwx+5lIneIcQPiD96vYMww9HDtYK/VswhPAfuSFP0NQiAQwRGDsG3BC\nKf00QdRtcPIof2jleYeuptzn0dshgCve8/0Txy32t1ziNo9bBQV1XepgoGF/3vfu\nj31Tnv+zKxYE3M7RZHyAJ5UA4ewIxVNFWlVPNRu+9X3kusi4p9kDfl7JZY6hz09D\nMfgi4MjgqEb4lzhEnuUBNuOUtbo6c93+DSDyj6vkYmnQyG66ljvfHZEFC7dCqKMU\n90iRXUQv9+/hFyIukPikB+BApSYpAD7sMXOBkOgZdoGH5UZrF9TlwSV1QssEYk0o\nd6BjB68IsXSbUezDRyTxPphYqnR9L9+2Qo5mh6RTv9PDPplb//wlvKVnfJgMZPxR\nUn4sl3TLwurAPAUN24QBAoIBAQDq6qya37jQN5zJIt6VAWrSvNmyjULLaf/9t/7f\nnG5e6+vmODBhTq5GKfDoImVXwG/og7/t/G4P4yNdxNHUZhx9H0nnsUdYMaveYINm\n2njw4oBVH70GylgDRstMFnQ445NjaAy/H7dXefemxjnAh6yyTAVuE7a89o4GzHao\njYUKFTwVsXxuYcT2gmUcaQ47Q4CJx3SZ2WtUEb4ixHiyMR43ApdRh4t7pr6/nKWd\nP3UQEHlUmSk0p7AxtCwvVUUsm85KCUvFkBodgwgN7izRhrm2cD0n6/4F5JF0l6XV\nEXOxou/hltG0Rd4IX4UovvV7yi0gIIi0KSWJDzg+XQn4msvjAoIBAQDURg+ajla3\nv28suV/MKzFcaesu3W/aTDsrPslL5bBeqFuATkqQ0stCKLD9IRiWIvOb2dxteCHN\nzxKPNbCaZdNCm9DmJB3qh0Te8VKjoofgw2h23kH97q1sgczQlZp/4g2sROugZr2P\nl/vSxKdBQ3nCVlLeqX99cvKZGleyLYtVkiFUS+VJ479McP3NuVZDgQ2N0cR8ZKDz\nla3jL3cmlAgcM9NVXWec1usX2jjRsPpM7QDM2RqAXrlpQGw1TBds3s6LIVqkFyqp\n7+EoZYa61VzijDWI5knOC00aGW43xBCV/lKWYcMrh9qj0lXdFMyX0ZLrQi/diU3h\nMQgNNW5OD6+lAoIBAQDQaM4kwGJX516jWtoZW56Hw59nNseRa0L+tuPZQhDxCWDJ\naAQT8BfQi5j8eLdr+H/PykLWQeLrGVng8KIvSz/vCXkpoi9nYPnXWcx5zU0KeAfe\nfT/X7F/U2FO39xu49L1nrYHRdbPUWZKKVMYbtsJRk/wlQjwWvK4X/gEvXA4xedFK\ndaGs0/RHtjs5z0Ie9a3tjhQ2AZukg/EpKyDhBY6Gwze3zwbB9pa3q6OKNCgIznS1\nxwO1gSdhkTS58W5jOv7y0/hzF3rzv7G/mhQM9vd/kWfQKR+93p/kzj0DIG6Bo8op\nWwJEas+mogeitHdZEW6jV/mvy+lPBT+ipCwacEp9AoIBAQCr9T16tMfm/jsvfdPu\n7yaDeII+ar/LlWlxNOGYjC7932CQZdvdygVCSPhndkIWjaXOoQQB4glwUcj1Hkc8\nLDShhtwJM0TQ0lemStPpHyb3mxSrBo1rCciPV+71IdwQsKzm2sYOIGx7QGGNciUT\np3ehSJDFM4XFuDJyeHaGLoLrBP/e68SIwOgdIoNX/kW1VXwHYODM7C++Y4iDu9XH\n+K9BOXJ/erUOxsOXhP32UGnTm0LErzLavuFwM/H0kvl/BldHOfPVbbbwBxTcxrIH\n9APUukQ77GHpehoxhFxW7IuLFoUMsZGLV/h0MVXBTLIYYnuj/PANhMcEH9Yn7Rq4\nPdjJAoIBAEYONbywm3BUYvpQeN+PZPgfNAdRsFCU+dlPCFGA02fzF5H/NmKxIT6A\naqU7AA2W7ZmgRHuXMVGf+0q19xPvzi2LVZpSnfHI0eq28c5ai/Tig6stW/FYNDdl\n828a+ZAXvksesiGwD2R53aAF5NNvOIGsaL31T5d5aka1wUQw7bzx8w7OhW+jP+qj\nAq/pMBapUML5TTAhE5wBJI+F6qoIpp7BomMO36nSzaofqS4I96r2kcTb1bNBGErw\no8HHBbXTrZ/vz8i8h5bGoikI0YbxplPaLTylUxuxv0x+gmlaZLbSfjosgfxTGmDu\nyi/YAMIgyQM3WSd9kEzLbr40D8NRK8w=\n-----END PRIVATE KEY-----\n','','http://192.168.22.10/dfrn_request/friendica1','http://192.168.22.10/dfrn_notify/friendica1','http://192.168.22.10/dfrn_poll/friendica1','http://192.168.22.10/dfrn_confirm/friendica1','http://192.168.22.10/poco/friendica1',0,0,0,0,'','2015-02-02 19:00:03','2015-02-02 19:00:03','2015-02-02 19:00:16','2015-02-02 18:53:04','2015-02-02 18:53:04','0000-00-00 00:00:00',0,0,0,1,0,0,0,0,0,0,'',99,'',0,'','0000-00-00',0,0,''),(18,2,'2015-02-02 18:52:03',0,0,3,1,'dfrn','friendica4','friendica4','','','','','','http://192.168.22.10/photo/0f1ac566d253bcd264437b7f7a347f88-4.jpg','http://192.168.22.10/photo/0f1ac566d253bcd264437b7f7a347f88-5.jpg','http://192.168.22.10/photo/0f1ac566d253bcd264437b7f7a347f88-6.jpg','-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA3nCYawg+HTyQgV7a7Osg\nCXeACOitKLhcb2WDTN/lLOMO7n1lSm3Kdv1dbOc0/lkAPeB2XsLF/aDfoUPWWg4Q\n/oRPrXFIi2dK/cIQVvgOhebQheztAYPJyaYYMWVK7bLbPuKVTyzALqkWD8Zjjtit\n4Uvm3kjmcofKr+/Lw+VFaEBMESQDbP5eTDtQeDGGjluWQMj1/D+V/Tcm+SMrAVIv\njyklQEhBJlYGJ+LsfXv4XXbeH73dkIXkQW5JgWQyPCloJ+PxmmjjEDozsdgmFQXq\n6T9HFVHvW2O2lmDoaTrbIGrULWBpslKZJJrV+LgtkzhP4uuKfJPD2DpMJ4+ixtBE\nzM/o+EuYDTz0P3dTvwruq1t8gUYcQOVUzEp1LM0qYDMVY86XneW1W5xghztl5zqy\nGBMBvjVIFvMVL1cVeXze4zpwwKln2cArepToSpN7lmy9EgBd9mZrVLWosZShB9R0\n05kBc2Tfv7FlixwZ1P8rwJn9sEEs9oa6TnRLL+7L8eqapg6vUI1G7e0HWWEjdHsR\nrYVHYW+ogtOYjrQ1Tfh1W2PtNaez5fGYVBDjC+1vy0scJmqrgy00z7MHBT2WTOAL\noHbdedhpa3UZ0FrsCto+vqil8BcF5aBhi2Hi5YdKtbY3EBsaabcSO2joc7rlmee4\nxdKfDRYXCPysFPhZNgIW708CAwEAAQ==\n-----END PUBLIC KEY-----\n','','cd8d6796a986b38a7fb102d05cb41dabe3bdd042f05bf2e5d184a9fdae0255fc','http://192.168.22.10/profile/friendica4','http://192.168.22.10/profile/friendica4','','','-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAwsqhbQeE4G63CefbGnl6\naPz/tNaRwiCwc2CoVoazw4cyNkvgcmnhmzJvyA9hKhqzMQYibPID8z1S5BdaP1dh\n1sHpTP2nYEqE/M4oaXm3zk4zBQdxMXp4Xi6spu3W4oLdn9dQKwwhfcD5YioDrksI\nW/SUEgZIR7XwclVU5Shyj/Z5ssllXqOWSPXAifQ5TcP3PbqEl+IFuN3X9P6J51cH\nemeDLaGqSpoiOlg5Y7E73kZYiXq1xUW5l4c2/wJ2FKeGmWvJaXh+06hkN5fd80Y6\n89vSRsQoaPXnsTrdymquNZIi7yGxJU/uZz8ZD158PQwC5ucGE1ockA8PIUUi6DcJ\nZfSFQjuzrlFsqKaJS7MQc+nysLRdrbjBcQKQHEYbQA2PHRZ9rU/9flICNTSPV4f5\ni7WwicjU1BvYcD/1WEacOPYZ76NCae4VaJvaP6cQpevcd3w9IbN1iC3JVf89oKYp\nBLPpT/T3VI0d17Uugg/51Yz+4RTmYZSZ/SMgCUfG4uE19m8y/j2fSUC6RTqISBsG\nDCRbIu7rnUkS5HvcxtVKwkHT6cANVUFatFIIfy4/e0aE7RO7TvCqJ+WBuK7WA0uS\nabbFxBP6e/eDUDEQI8TIGuMn/fnHRTqchnPmuoTKAZaihh1NU2Jo8+K4s7AbPcwZ\nZpzi1oJnWhSxsGEeGilylk8CAwEAAQ==\n-----END PUBLIC KEY-----\n','','','http://192.168.22.10/dfrn_request/friendica4','http://192.168.22.10/dfrn_notify/friendica4','http://192.168.22.10/dfrn_poll/friendica4','http://192.168.22.10/dfrn_confirm/friendica4','http://192.168.22.10/poco/friendica4',1,0,0,0,'','2015-02-02 19:00:24','2015-02-02 19:00:24','2015-02-02 19:00:24','2015-02-02 18:53:03','2015-02-02 18:53:03','0000-00-00 00:00:00',0,0,0,1,0,0,0,0,0,0,'',99,'',0,'','0000-00-00',0,0,''); +/*!40000 ALTER TABLE `contact` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `conv` +-- + +DROP TABLE IF EXISTS `conv`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `conv` ( + `id` int(10) unsigned NOT NULL AUTO_INCREMENT, + `guid` varchar(64) NOT NULL DEFAULT '', + `recips` mediumtext NOT NULL, + `uid` int(11) NOT NULL DEFAULT '0', + `creator` varchar(255) NOT NULL DEFAULT '', + `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + `updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + `subject` mediumtext NOT NULL, + PRIMARY KEY (`id`), + KEY `uid` (`uid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `conv` +-- + +LOCK TABLES `conv` WRITE; +/*!40000 ALTER TABLE `conv` DISABLE KEYS */; +/*!40000 ALTER TABLE `conv` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `deliverq` +-- + +DROP TABLE IF EXISTS `deliverq`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `deliverq` ( + `id` int(10) unsigned NOT NULL AUTO_INCREMENT, + `cmd` varchar(32) NOT NULL DEFAULT '', + `item` int(11) NOT NULL DEFAULT '0', + `contact` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`id`) +) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `deliverq` +-- + +LOCK TABLES `deliverq` WRITE; +/*!40000 ALTER TABLE `deliverq` DISABLE KEYS */; +/*!40000 ALTER TABLE `deliverq` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `dsprphotoq` +-- + +DROP TABLE IF EXISTS `dsprphotoq`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `dsprphotoq` ( + `id` int(10) unsigned NOT NULL AUTO_INCREMENT, + `uid` int(11) NOT NULL DEFAULT '0', + `msg` mediumtext NOT NULL, + `attempt` tinyint(4) NOT NULL DEFAULT '0', + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `dsprphotoq` +-- + +LOCK TABLES `dsprphotoq` WRITE; +/*!40000 ALTER TABLE `dsprphotoq` DISABLE KEYS */; +/*!40000 ALTER TABLE `dsprphotoq` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `event` +-- + +DROP TABLE IF EXISTS `event`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `event` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `uid` int(11) NOT NULL DEFAULT '0', + `cid` int(11) NOT NULL DEFAULT '0', + `uri` varchar(255) NOT NULL DEFAULT '', + `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + `edited` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + `start` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + `finish` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + `summary` text NOT NULL, + `desc` text NOT NULL, + `location` text NOT NULL, + `type` varchar(255) NOT NULL DEFAULT '', + `nofinish` tinyint(1) NOT NULL DEFAULT '0', + `adjust` tinyint(1) NOT NULL DEFAULT '1', + `ignore` tinyint(1) unsigned NOT NULL DEFAULT '0', + `allow_cid` mediumtext NOT NULL, + `allow_gid` mediumtext NOT NULL, + `deny_cid` mediumtext NOT NULL, + `deny_gid` mediumtext NOT NULL, + PRIMARY KEY (`id`), + KEY `uid` (`uid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `event` +-- + +LOCK TABLES `event` WRITE; +/*!40000 ALTER TABLE `event` DISABLE KEYS */; +/*!40000 ALTER TABLE `event` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `fcontact` +-- + +DROP TABLE IF EXISTS `fcontact`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `fcontact` ( + `id` int(10) unsigned NOT NULL AUTO_INCREMENT, + `url` varchar(255) NOT NULL DEFAULT '', + `name` varchar(255) NOT NULL DEFAULT '', + `photo` varchar(255) NOT NULL DEFAULT '', + `request` varchar(255) NOT NULL DEFAULT '', + `nick` varchar(255) NOT NULL DEFAULT '', + `addr` varchar(255) NOT NULL DEFAULT '', + `batch` varchar(255) NOT NULL DEFAULT '', + `notify` varchar(255) NOT NULL DEFAULT '', + `poll` varchar(255) NOT NULL DEFAULT '', + `confirm` varchar(255) NOT NULL DEFAULT '', + `priority` tinyint(1) NOT NULL DEFAULT '0', + `network` varchar(32) NOT NULL DEFAULT '', + `alias` varchar(255) NOT NULL DEFAULT '', + `pubkey` text NOT NULL, + `updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + PRIMARY KEY (`id`), + KEY `addr` (`addr`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `fcontact` +-- + +LOCK TABLES `fcontact` WRITE; +/*!40000 ALTER TABLE `fcontact` DISABLE KEYS */; +/*!40000 ALTER TABLE `fcontact` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `ffinder` +-- + +DROP TABLE IF EXISTS `ffinder`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `ffinder` ( + `id` int(10) unsigned NOT NULL AUTO_INCREMENT, + `uid` int(10) unsigned NOT NULL DEFAULT '0', + `cid` int(10) unsigned NOT NULL DEFAULT '0', + `fid` int(10) unsigned NOT NULL DEFAULT '0', + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `ffinder` +-- + +LOCK TABLES `ffinder` WRITE; +/*!40000 ALTER TABLE `ffinder` DISABLE KEYS */; +/*!40000 ALTER TABLE `ffinder` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `fserver` +-- + +DROP TABLE IF EXISTS `fserver`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `fserver` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `server` varchar(255) NOT NULL DEFAULT '', + `posturl` varchar(255) NOT NULL DEFAULT '', + `key` text NOT NULL, + PRIMARY KEY (`id`), + KEY `server` (`server`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `fserver` +-- + +LOCK TABLES `fserver` WRITE; +/*!40000 ALTER TABLE `fserver` DISABLE KEYS */; +/*!40000 ALTER TABLE `fserver` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `fsuggest` +-- + +DROP TABLE IF EXISTS `fsuggest`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `fsuggest` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `uid` int(11) NOT NULL DEFAULT '0', + `cid` int(11) NOT NULL DEFAULT '0', + `name` varchar(255) NOT NULL DEFAULT '', + `url` varchar(255) NOT NULL DEFAULT '', + `request` varchar(255) NOT NULL DEFAULT '', + `photo` varchar(255) NOT NULL DEFAULT '', + `note` text NOT NULL, + `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `fsuggest` +-- + +LOCK TABLES `fsuggest` WRITE; +/*!40000 ALTER TABLE `fsuggest` DISABLE KEYS */; +/*!40000 ALTER TABLE `fsuggest` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `gcign` +-- + +DROP TABLE IF EXISTS `gcign`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `gcign` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `uid` int(11) NOT NULL DEFAULT '0', + `gcid` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`id`), + KEY `uid` (`uid`), + KEY `gcid` (`gcid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `gcign` +-- + +LOCK TABLES `gcign` WRITE; +/*!40000 ALTER TABLE `gcign` DISABLE KEYS */; +/*!40000 ALTER TABLE `gcign` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `gcontact` +-- + +DROP TABLE IF EXISTS `gcontact`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `gcontact` ( + `id` int(10) unsigned NOT NULL AUTO_INCREMENT, + `name` varchar(255) NOT NULL DEFAULT '', + `url` varchar(255) NOT NULL DEFAULT '', + `nurl` varchar(255) NOT NULL DEFAULT '', + `photo` varchar(255) NOT NULL DEFAULT '', + `connect` varchar(255) NOT NULL DEFAULT '', + `updated` datetime DEFAULT '0000-00-00 00:00:00', + `location` varchar(255) NOT NULL DEFAULT '', + `about` text NOT NULL, + `keywords` text NOT NULL, + `gender` varchar(32) NOT NULL DEFAULT '', + `network` varchar(255) NOT NULL DEFAULT '', + PRIMARY KEY (`id`), + KEY `nurl` (`nurl`) +) ENGINE=InnoDB AUTO_INCREMENT=157 DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `gcontact` +-- + +LOCK TABLES `gcontact` WRITE; +/*!40000 ALTER TABLE `gcontact` DISABLE KEYS */; +INSERT INTO `gcontact` VALUES (1,'Keith','https://friendika.me4.it/profile/keith','http://friendika.me4.it/profile/keith','https://friendika.me4.it/photo/custom/300/1.jpg?rev=2014-07-27+19%3A34%3A36','','0000-00-00 00:00:00','','','','','dspr'),(2,'Manuel Freiria','https://friendika.me4.it/profile/manolofreiria','http://friendika.me4.it/profile/manolofreiria','https://friendika.me4.it/photo/custom/300/254.jpg?rev=2014-09-06+23%3A58%3A50','','0000-00-00 00:00:00','','','','','dspr'),(3,'José Manuel Goig','https://friendika.me4.it/profile/jmgoig','http://friendika.me4.it/profile/jmgoig','https://friendika.me4.it/photo/custom/300/283.jpg?rev=2014-12-16+10%3A11%3A40','','0000-00-00 00:00:00','','','','','dspr'),(4,'Keith','https://friendica.eu/profile/support','http://friendica.eu/profile/support','https://friendica.eu/photo/custom/300/1.jpg?rev=2011-12-21+14%3A41%3A44','','0000-00-00 00:00:00','','','','','dspr'),(5,'Henrike Van Mortis','https://friendica.eu/profile/hvm','http://friendica.eu/profile/hvm','https://friendica.eu/photo/custom/300/250.jpg','','0000-00-00 00:00:00','','','','','dspr'),(6,'offene Ablage: nothing to hide','https://friendica.eu/profile/o2myfrdca01','http://friendica.eu/profile/o2myfrdca01','https://friendica.eu/photo/custom/300/259.jpg?rev=2012-02-16+16%3A49%3A37','','0000-00-00 00:00:00','','','','','dspr'),(7,'Friendica Theme Developers','https://friendica.eu/profile/ftdevs','http://friendica.eu/profile/ftdevs','https://friendica.eu/photo/custom/300/366.jpg?rev=2012-03-01+11%3A58%3A18','','0000-00-00 00:00:00','','','','','dspr'),(8,'Nepesh Hacker','https://friendica.eu/profile/arescorpio','http://friendica.eu/profile/arescorpio','https://friendica.eu/photo/custom/300/516.jpg?rev=2012-11-07+22%3A39%3A38','','0000-00-00 00:00:00','','','','','dspr'),(9,'Rolf Rupp','https://friendica.eu/profile/rcr','http://friendica.eu/profile/rcr','https://friendica.eu/photo/custom/300/841.jpg?rev=2014-01-09+22%3A15%3A09','','0000-00-00 00:00:00','','','','','dspr'),(10,'Daniel Steinbacher','https://friendica.eu/profile/damez','http://friendica.eu/profile/damez','https://friendica.eu/photo/custom/300/1791.jpg?rev=2015-01-15+16%3A49%3A29','','0000-00-00 00:00:00','','','','','dspr'),(11,'Pirate Times','https://friendica.eu/profile/piratetimes','http://friendica.eu/profile/piratetimes','https://friendica.eu/photo/custom/300/885.jpg?rev=2014-01-21+11%3A09%3A35','','0000-00-00 00:00:00','','','','','dspr'),(12,'Jacques','https://friendica.eu/profile/jacques','http://friendica.eu/profile/jacques','https://friendica.eu/photo/custom/300/907.jpg?rev=2015-01-15+14%3A37%3A37','','0000-00-00 00:00:00','','','','','dspr'),(13,'Montse Freire','https://friendica.eu/profile/auga09','http://friendica.eu/profile/auga09','https://friendica.eu/photo/custom/300/934.jpg?rev=2014-02-16+14%3A17%3A30','','0000-00-00 00:00:00','','','','','dspr'),(14,'oremus','https://friendica.eu/profile/oremus','http://friendica.eu/profile/oremus','https://friendica.eu/photo/custom/300/1073.jpg?rev=2014-04-29+15%3A09%3A50','','0000-00-00 00:00:00','','','','','dspr'),(15,'ppp','https://friendica.eu/profile/ppp','http://friendica.eu/profile/ppp','https://friendica.eu/photo/custom/300/1134.jpg?rev=2014-06-01+12%3A58%3A28','','0000-00-00 00:00:00','','','','','dspr'),(16,'Krin Bouch','https://friendica.eu/profile/krinbouch','http://friendica.eu/profile/krinbouch','https://friendica.eu/photo/custom/300/1471.jpg?rev=2014-09-20+14%3A18%3A24','','0000-00-00 00:00:00','','','','','dspr'),(17,'Miguel Menéndez','https://friendica.eu/profile/miguelmenendez','http://friendica.eu/profile/miguelmenendez','https://friendica.eu/photo/custom/300/1508.jpg?rev=2014-10-26+15%3A21%3A28','','0000-00-00 00:00:00','','','','','dspr'),(18,'Alexandre Pólvora','https://friendica.eu/profile/discomplex','http://friendica.eu/profile/discomplex','https://friendica.eu/photo/custom/300/1522.jpg?rev=2014-11-05+23%3A54%3A57','','0000-00-00 00:00:00','','','','','dspr'),(19,'Chak\'pur','https://friendica.eu/profile/murokka','http://friendica.eu/profile/murokka','https://friendica.eu/photo/custom/300/1535.jpg?rev=2014-11-13+09%3A13%3A55','','0000-00-00 00:00:00','','','','','dspr'),(20,'Samuel Contraste','https://friendica.eu/profile/stace-melunor','http://friendica.eu/profile/stace-melunor','https://friendica.eu/photo/custom/300/1586.jpg?rev=2014-11-28+13%3A01%3A22','','0000-00-00 00:00:00','','','','','dspr'),(21,'Martin Langlotz','https://friendica.eu/profile/numan','http://friendica.eu/profile/numan','https://friendica.eu/photo/custom/300/1621.jpg?rev=2014-12-02+10%3A37%3A34','','0000-00-00 00:00:00','','','','','dspr'),(22,'Elie Bissery','https://friendica.eu/profile/eilsib','http://friendica.eu/profile/eilsib','https://friendica.eu/photo/custom/300/1680.jpg?rev=2014-12-17+16%3A05%3A23','','0000-00-00 00:00:00','','','','','dspr'),(23,'Cécile Maitre','https://friendica.eu/profile/cecile','http://friendica.eu/profile/cecile','https://friendica.eu/photo/custom/300/1703.jpg?rev=2014-12-23+19%3A29%3A41','','0000-00-00 00:00:00','','','','','dspr'),(24,'Ralf Gerdes','https://friendica.eu/profile/ralf','http://friendica.eu/profile/ralf','https://friendica.eu/photo/custom/300/1739.jpg?rev=2014-12-30+12%3A43%3A12','','0000-00-00 00:00:00','','','','','dspr'),(25,'Loran Btn','https://friendica.eu/profile/loran_mcfly','http://friendica.eu/profile/loran_mcfly','https://friendica.eu/photo/custom/300/1781.jpg?rev=2015-01-11+09%3A10%3A33','','0000-00-00 00:00:00','','','','','dspr'),(26,'Jörn Rinne','https://friendica.eu/profile/lefou','http://friendica.eu/profile/lefou','https://friendica.eu/photo/custom/300/1782.jpg?rev=2015-01-11+15%3A39%3A33','','0000-00-00 00:00:00','','','','','dspr'),(27,'Lud Wig','https://friendica.eu/profile/ludwig','http://friendica.eu/profile/ludwig','https://friendica.eu/photo/custom/300/1810.jpg?rev=2015-01-25+04%3A41%3A20','','0000-00-00 00:00:00','','','','','dspr'),(28,'Rike','http://mist.loozah.com/profile/rike','http://mist.loozah.com/profile/rike','http://mist.loozah.com/photo/custom/300/2.jpg?rev=2012-02-03+14%3A10%3A17','','0000-00-00 00:00:00','','','','','dspr'),(29,'Torsten Peh','http://mist.loozah.com/profile/torsten_peh','http://mist.loozah.com/profile/torsten_peh','http://mist.loozah.com/photo/custom/300/13.jpg?rev=2012-05-15+12%3A58%3A18','','0000-00-00 00:00:00','','','','','dspr'),(30,'der buffer','http://mist.loozah.com/profile/derbuffer','http://mist.loozah.com/profile/derbuffer','http://mist.loozah.com/photo/custom/300/98.jpg?rev=2013-07-27+00%3A10%3A59','','0000-00-00 00:00:00','','','','','dspr'),(31,'Marcel','http://mist.loozah.com/profile/mkay','http://mist.loozah.com/profile/mkay','http://mist.loozah.com/photo/custom/300/24.jpg?rev=2012-06-14+19%3A06%3A37','','0000-00-00 00:00:00','','','','','dspr'),(32,'Gianluca Zoni','http://mist.loozah.com/profile/zoninoz','http://mist.loozah.com/profile/zoninoz','http://mist.loozah.com/photo/custom/300/56.jpg?rev=2012-09-12+15%3A38%3A42','','0000-00-00 00:00:00','','','','','dspr'),(33,'Jo A','http://mist.loozah.com/profile/joooo','http://mist.loozah.com/profile/joooo','http://mist.loozah.com/photo/custom/300/64.jpg?rev=2012-11-12+15%3A32%3A02','','0000-00-00 00:00:00','','','','','dspr'),(34,'Lass Mi Randa Den Sie Will Ja','https://friendica.styliztique.biz/profile/stb','http://friendica.styliztique.biz/profile/stb','https://friendica.styliztique.biz/photo/custom/300/20.jpg?rev=2013-09-06+16%3A04%3A10','','0000-00-00 00:00:00','','','','','dspr'),(35,'кαяισz м☠яку','https://karl.marx.pm/profile/kmarky','http://karl.marx.pm/profile/kmarky','https://karl.marx.pm/photo/custom/300/11.jpg?rev=2014-01-17+09%3A48%3A33','','0000-00-00 00:00:00','','','','','dspr'),(36,'Indignados','https://karl.marx.pm/profile/indignados','http://karl.marx.pm/profile/indignados','https://karl.marx.pm/photo/custom/300/44.jpg?rev=2012-05-27+14%3A53%3A52','','0000-00-00 00:00:00','','','','','dspr'),(37,'Anarkia','https://karl.marx.pm/profile/anarquia','http://karl.marx.pm/profile/anarquia','https://karl.marx.pm/photo/custom/300/45.jpg?rev=2012-05-29+11%3A01%3A11','','0000-00-00 00:00:00','','','','','dspr'),(38,'Planeta Pirata','https://karl.marx.pm/profile/pirata','http://karl.marx.pm/profile/pirata','https://karl.marx.pm/photo/custom/300/46.jpg?rev=2012-05-27+15%3A20%3A12','','0000-00-00 00:00:00','','','','','dspr'),(39,'Grupo GNU | Linux','https://karl.marx.pm/profile/gnu','http://karl.marx.pm/profile/gnu','https://karl.marx.pm/photo/custom/300/47.jpg?rev=2012-05-27+15%3A34%3A20','','0000-00-00 00:00:00','','','','','dspr'),(40,'Ecologia','https://karl.marx.pm/profile/eco','http://karl.marx.pm/profile/eco','https://karl.marx.pm/photo/custom/300/57.jpg?rev=2012-06-09+06%3A42%3A04','','0000-00-00 00:00:00','','','','','dspr'),(41,'Grupo antiFa Friendica','https://karl.marx.pm/profile/antifa','http://karl.marx.pm/profile/antifa','https://karl.marx.pm/photo/custom/300/60.jpg?rev=2012-06-11+08%3A46%3A48','','0000-00-00 00:00:00','','','','','dspr'),(42,'Facebook (alias Feisbuk)','https://karl.marx.pm/profile/facebook','http://karl.marx.pm/profile/facebook','https://karl.marx.pm/photo/custom/300/61.jpg?rev=2014-01-17+09%3A50%3A44','','0000-00-00 00:00:00','','','','','dspr'),(43,'Todo Cine','https://karl.marx.pm/profile/cine','http://karl.marx.pm/profile/cine','https://karl.marx.pm/photo/custom/300/65.jpg?rev=2012-06-15+07%3A20%3A01','','0000-00-00 00:00:00','','','','','dspr'),(44,'Rivera Valdez','https://karl.marx.pm/profile/riveravaldez','http://karl.marx.pm/profile/riveravaldez','https://karl.marx.pm/photo/custom/300/205.jpg?rev=2013-06-18+10%3A58%3A46','','0000-00-00 00:00:00','','','','','dspr'),(45,'Tazman Devil','https://karl.marx.pm/profile/tazman','http://karl.marx.pm/profile/tazman','https://karl.marx.pm/photo/custom/300/228.jpg?rev=2013-08-24+02%3A59%3A52','','0000-00-00 00:00:00','','','','','dspr'),(46,'Tiago Casal Ribeiro','https://karl.marx.pm/profile/tiago','http://karl.marx.pm/profile/tiago','https://karl.marx.pm/photo/custom/300/391.jpg?rev=2014-10-30+17%3A10%3A40','','0000-00-00 00:00:00','','','','','dspr'),(47,'Protestation','https://karl.marx.pm/profile/protestation_','http://karl.marx.pm/profile/protestation_','https://karl.marx.pm/photo/custom/300/414.jpg','','0000-00-00 00:00:00','','','','','dspr'),(48,'Arto','https://myfriendica.net/profile/arto','http://myfriendica.net/profile/arto','https://myfriendica.net/photo/custom/300/5.jpg?rev=2012-04-29+18%3A36%3A29','','0000-00-00 00:00:00','','','','','dspr'),(49,'Gatoso Kot','https://myfriendica.net/profile/gatoso','http://myfriendica.net/profile/gatoso','https://myfriendica.net/photo/custom/300/159.jpg?rev=2013-04-05+05%3A51%3A58','','0000-00-00 00:00:00','','','','','dspr'),(50,'Believing Prayer','https://myfriendica.net/profile/believingprayer','http://myfriendica.net/profile/believingprayer','https://myfriendica.net/photo/custom/300/11.jpg?rev=2012-03-19+13%3A12%3A07','','0000-00-00 00:00:00','','','','','dspr'),(51,'Avery Jenkins','https://myfriendica.net/profile/docaltmed','http://myfriendica.net/profile/docaltmed','https://myfriendica.net/photo/custom/300/17.jpg?rev=2012-03-27+11%3A05%3A26','','0000-00-00 00:00:00','','','','','dspr'),(52,'Vincent','https://myfriendica.net/profile/influencepc','http://myfriendica.net/profile/influencepc','https://myfriendica.net/photo/custom/300/55.jpg?rev=2012-04-26+12%3A47%3A48','','0000-00-00 00:00:00','','','','','dspr'),(53,'Berlin Group','https://myfriendica.net/profile/berlin','http://myfriendica.net/profile/berlin','https://myfriendica.net/photo/custom/300/65.jpg?rev=2012-04-28+09%3A21%3A19','','0000-00-00 00:00:00','','','','','dspr'),(54,'jcsesecuneta@myfriendica.net','https://myfriendica.net/profile/jcsesecuneta','http://myfriendica.net/profile/jcsesecuneta','https://myfriendica.net/photo/custom/300/281.jpg?rev=2013-09-06+11%3A51%3A59','','0000-00-00 00:00:00','','','','','dspr'),(55,'Sam I','https://myfriendica.net/profile/sam01','http://myfriendica.net/profile/sam01','https://myfriendica.net/photo/custom/300/183.jpg?rev=2013-06-28+15%3A34%3A46','','0000-00-00 00:00:00','','','','','dspr'),(56,'Stephen Judge','https://myfriendica.net/profile/stephen','http://myfriendica.net/profile/stephen','https://myfriendica.net/photo/custom/300/294.jpg?rev=2014-02-25+15%3A07%3A05','','0000-00-00 00:00:00','','','','','dspr'),(57,'潘隆吉 Tony Phuah','https://myfriendica.net/profile/tonyphuah','http://myfriendica.net/profile/tonyphuah','https://myfriendica.net/photo/custom/300/304.jpg?rev=2013-11-02+00%3A37%3A59','','0000-00-00 00:00:00','','','','','dspr'),(58,'Lina María Largo','https://myfriendica.net/profile/linamaria','http://myfriendica.net/profile/linamaria','https://myfriendica.net/photo/custom/300/332.jpg?rev=2013-12-18+08%3A14%3A24','','0000-00-00 00:00:00','','','','','dspr'),(59,'Petra L.','https://myfriendica.net/profile/petra-l','http://myfriendica.net/profile/petra-l','https://myfriendica.net/photo/custom/300/349.jpg?rev=2014-04-05+13%3A41%3A25','','0000-00-00 00:00:00','','','','','dspr'),(60,'Panko','https://myfriendica.net/profile/panko','http://myfriendica.net/profile/panko','https://myfriendica.net/photo/custom/300/354.jpg?rev=2014-07-30+14%3A22%3A42','','0000-00-00 00:00:00','','','','','dspr'),(61,'Jorge','https://myfriendica.net/profile/soloojos','http://myfriendica.net/profile/soloojos','https://myfriendica.net/photo/custom/300/370.jpg?rev=2014-03-02+16%3A20%3A32','','0000-00-00 00:00:00','','','','','dspr'),(62,'Sebas Pedersen','https://myfriendica.net/profile/sebasped','http://myfriendica.net/profile/sebasped','https://myfriendica.net/photo/custom/300/373.jpg?rev=2015-01-15+23%3A04%3A06','','0000-00-00 00:00:00','','','','','dspr'),(63,'ivan zlax','https://myfriendica.net/profile/zlaxyi','http://myfriendica.net/profile/zlaxyi','https://myfriendica.net/photo/custom/300/376.jpg?rev=2014-03-09+09%3A56%3A13','','0000-00-00 00:00:00','','','','','dspr'),(64,'Shimriez','https://myfriendica.net/profile/shimriez','http://myfriendica.net/profile/shimriez','https://myfriendica.net/photo/custom/300/403.jpg?rev=2014-06-21+17%3A18%3A05','','0000-00-00 00:00:00','','','','','dspr'),(65,'Sitesonix Web Solutions','https://myfriendica.net/profile/sitesonix','http://myfriendica.net/profile/sitesonix','https://myfriendica.net/photo/custom/300/445.jpg?rev=2014-06-13+17%3A25%3A54','','0000-00-00 00:00:00','','','','','dspr'),(66,'Bastian Lang','https://myfriendica.net/profile/raudy93','http://myfriendica.net/profile/raudy93','https://myfriendica.net/photo/custom/300/436.jpg?rev=2014-05-29+12%3A40%3A00','','0000-00-00 00:00:00','','','','','dspr'),(67,'Simó Albert i Beltran','https://myfriendica.net/profile/sim6','http://myfriendica.net/profile/sim6','https://myfriendica.net/photo/custom/300/419.jpg?rev=2014-05-14+16%3A14%3A04','','0000-00-00 00:00:00','','','','','dspr'),(68,'RT Griffiti','https://myfriendica.net/profile/rtgriffiti','http://myfriendica.net/profile/rtgriffiti','https://myfriendica.net/photo/custom/300/437.jpg?rev=2014-05-30+01%3A17%3A19','','0000-00-00 00:00:00','','','','','dspr'),(69,'Damian','https://myfriendica.net/profile/deb92','http://myfriendica.net/profile/deb92','https://myfriendica.net/photo/custom/300/462.jpg?rev=2014-07-29+18%3A18%3A26','','0000-00-00 00:00:00','','','','','dspr'),(70,'Ciril Earth','https://myfriendica.net/profile/cirilearth','http://myfriendica.net/profile/cirilearth','https://myfriendica.net/photo/custom/300/519.jpg?rev=2014-12-22+12%3A19%3A09','','0000-00-00 00:00:00','','','','','dspr'),(71,'The SOS Card Project','https://myfriendica.net/profile/the_sos_card_project','http://myfriendica.net/profile/the_sos_card_project','https://myfriendica.net/photo/custom/300/524.jpg?rev=2014-12-26+19%3A54%3A41','','0000-00-00 00:00:00','','','','','dspr'),(72,'Hauke Altmann','https://snarl.de/profile/tugelblend','http://snarl.de/profile/tugelblend','https://www.snarl.de/photo/profile/5.jpg','','2015-01-25 05:02:28','Berlin','Softwaredeveloper, friendica enthusiast, member of http://www.graffitiresearchlab.de/, cyclist','graffiti, friendica, graffiti, research, lab, diy, collectivism, urban, art, surfing, berlin, opensource, critical, mass, freifunk','','dfrn'),(73,'Chris Thina','https://snarl.de/profile/chillkroete','http://snarl.de/profile/chillkroete','https://snarl.de/photo/profile/69.jpg','','2014-01-11 11:59:56','','','','','dfrn'),(74,'Dirk Schlechter','https://snarl.de/profile/viewfinder','http://snarl.de/profile/viewfinder','https://snarl.de/photo/profile/106.jpg','','2014-03-24 16:20:54','','','','Männlich','dfrn'),(75,'Tauschring Prenzelberg','https://snarl.de/profile/prenzeltausch','http://snarl.de/profile/prenzeltausch','https://snarl.de/photo/profile/117.jpg','','2015-01-25 19:31:54','Berlin','Haareschneiden gegen Waschmaschinenreparatur?
Autotransport gegen Katze gießen?
Der Prenzelberger Tauschring
sucht weitere Mitglieder.
Komm doch mal vorbei:
Treffen jeden 2. & 4. Montag im Monat
im Kiezladen in der Dunckerstr. 14, 19-20 Uhr
prenzeltausch.thing.de','tauschring, zeitkonto','Intersex','dfrn'),(76,'Panko','https://snarl.de/profile/panko','http://snarl.de/profile/panko','https://snarl.de/photo/profile/141.jpg','@','2015-02-02 11:31:46','La Vila Joiosa','','debian, linux, gnu, gnu/linux, scifi, horror, xmpp, jabber, friendica, pump, freesoftware, darts, dardos, dards, punk, rock, ska, reggae, beer','Home','dfrn'),(77,'Berlin Group','https://snarl.de/profile/berlin','http://snarl.de/profile/berlin','https://snarl.de/photo/profile/0.jpg','','2012-04-28 09:21:19','Berlin','Eine Gruppe für alle Friendicianer, die an der geilsten Stadt Deutschlands interessiert sind.','berlin','','dfrn'),(78,'Daniel C. Würl','https://snarl.de/profile/decadentgray','http://snarl.de/profile/decadentgray','https://snarl.de/photo/profile/158.jpg','','2014-08-29 02:20:44','','','','','dfrn'),(79,'Michaela Gruber','https://snarl.de/profile/starling','http://snarl.de/profile/starling','https://snarl.de/photo/profile/160.jpg','','2014-09-03 18:19:10','','','','','dfrn'),(80,'Kristian R.','https://snarl.de/profile/z428','http://snarl.de/profile/z428','https://snarl.de/photo/profile/181.jpg','','2015-01-30 13:47:31','','Software engineer (#java, #javaee, #python, mainly server-sided and backend), art and imaging addict mainly using #gimp, #opensource / #softwarelibre # freesoftware software user and promoter, lover of bizarre #music (especially #netaudio stuff, #metal, #postrock, more open-minded #indie), #vegetarian, 30something and a few other things.
kr428 virtually everywhere, including twitter, identica et al.','linux, gimp, photography, music, java, opensource, gnome, philosophy, spirituality, art','Männlich','dfrn'),(81,'Georg Hofer','https://snarl.de/profile/ironhead','http://snarl.de/profile/ironhead','https://snarl.de/photo/profile/228.jpg','','2014-12-31 15:47:14','','','','','dfrn'),(82,'Nick Power','https://snarl.de/profile/veganvincent','http://snarl.de/profile/veganvincent','https://snarl.de/photo/profile/240.jpg','','2015-01-26 16:59:02','','','','','dfrn'),(83,'Yushin W','https://snarl.de/profile/opduur','http://snarl.de/profile/opduur','https://snarl.de/photo/profile/254.jpg','','2015-01-28 19:44:40','','','freesoftware, floss, foss, opensource, linux, vim, cli, command-line, creativecommons, ocw, oer, commons, sustainability, energy, lohas, mdg, sdg','','dfrn'),(84,'Oradon','https://oradon.pegasus.uberspace.de/profile/oradon','http://oradon.pegasus.uberspace.de/profile/oradon','https://oradon.pegasus.uberspace.de/photo/custom/300/1.jpg','','0000-00-00 00:00:00','','','','','dspr'),(85,'Stuttgart','https://oradon.pegasus.uberspace.de/profile/stuttgart','http://oradon.pegasus.uberspace.de/profile/stuttgart','https://oradon.pegasus.uberspace.de/photo/custom/300/12.jpg','','0000-00-00 00:00:00','','','','','dspr'),(86,'Olivier','https://friendica.free-beer.ch/profile/olivier','http://friendica.free-beer.ch/profile/olivier','https://friendica.free-beer.ch/photo/custom/300/1.jpg?rev=2012-05-02+09%3A02%3A19','','0000-00-00 00:00:00','','','','','dspr'),(87,'pogonator','https://friendica.free-beer.ch/profile/pogonator','http://friendica.free-beer.ch/profile/pogonator','https://friendica.free-beer.ch/photo/custom/300/396.jpg?rev=2013-06-22+07%3A51%3A38','','0000-00-00 00:00:00','','','','','dspr'),(88,'Claus Muehlenkamp','https://friendica.free-beer.ch/profile/clausmuehlenkamp','http://friendica.free-beer.ch/profile/clausmuehlenkamp','https://friendica.free-beer.ch/photo/custom/300/368.jpg?rev=2013-06-12+21%3A21%3A07','','0000-00-00 00:00:00','','','','','dspr'),(89,'Jörg Hartmann','https://friendica.free-beer.ch/profile/jh72de','http://friendica.free-beer.ch/profile/jh72de','https://friendica.free-beer.ch/photo/custom/300/295.jpg?rev=2013-04-09+19%3A21%3A01','','0000-00-00 00:00:00','','','','','dspr'),(90,'Carlos Solís','https://friendica.free-beer.ch/profile/csolisr','http://friendica.free-beer.ch/profile/csolisr','https://friendica.free-beer.ch/photo/custom/300/22.jpg?rev=2012-05-31+23%3A00%3A24','','0000-00-00 00:00:00','','','','','dspr'),(91,'Frederic Guilbault','https://friendica.free-beer.ch/profile/border','http://friendica.free-beer.ch/profile/border','https://friendica.free-beer.ch/photo/custom/300/23.jpg?rev=2012-06-01+02%3A24%3A09','','0000-00-00 00:00:00','','','','','dspr'),(92,'Sun Sunich','https://friendica.free-beer.ch/profile/sunsunich','http://friendica.free-beer.ch/profile/sunsunich','https://friendica.free-beer.ch/photo/custom/300/337.jpg?rev=2013-06-06+19%3A54%3A58','','0000-00-00 00:00:00','','','','','dspr'),(93,'Jaun Santiago','https://friendica.free-beer.ch/profile/juansantiago','http://friendica.free-beer.ch/profile/juansantiago','https://friendica.free-beer.ch/photo/custom/300/94.jpg?rev=2012-08-05+21%3A12%3A40','','0000-00-00 00:00:00','','','','','dspr'),(94,'Axel','https://friendica.free-beer.ch/profile/axel','http://friendica.free-beer.ch/profile/axel','https://friendica.free-beer.ch/photo/custom/300/61.jpg?rev=2014-01-08+17%3A14%3A05','','0000-00-00 00:00:00','','','','','dspr'),(95,'Alexander Jobst','https://friendica.free-beer.ch/profile/alexanderjobst','http://friendica.free-beer.ch/profile/alexanderjobst','https://friendica.free-beer.ch/photo/custom/300/77.jpg?rev=2012-07-11+08%3A19%3A36','','0000-00-00 00:00:00','','','','','dspr'),(96,'Matija Å uklje','https://friendica.free-beer.ch/profile/hook','http://friendica.free-beer.ch/profile/hook','https://friendica.free-beer.ch/photo/custom/300/336.jpg?rev=2013-06-02+20%3A40%3A51','','0000-00-00 00:00:00','','','','','dspr'),(97,'Brando','https://friendica.free-beer.ch/profile/dysfunctional','http://friendica.free-beer.ch/profile/dysfunctional','https://friendica.free-beer.ch/photo/custom/300/89.jpg?rev=2012-07-28+04%3A35%3A53','','0000-00-00 00:00:00','','','','','dspr'),(98,'Max Anton','https://friendica.free-beer.ch/profile/ntimes','http://friendica.free-beer.ch/profile/ntimes','https://friendica.free-beer.ch/photo/custom/300/98.jpg?rev=2012-08-08+21%3A32%3A00','','0000-00-00 00:00:00','','','','','dspr'),(99,'Inyan','https://friendica.free-beer.ch/profile/inyan','http://friendica.free-beer.ch/profile/inyan','https://friendica.free-beer.ch/photo/custom/300/111.jpg?rev=2012-08-18+19%3A01%3A17','','0000-00-00 00:00:00','','','','','dspr'),(100,'亗 Dr. Emporio Efikz 亗','https://friendica.free-beer.ch/profile/dr_emporio_efikz','http://friendica.free-beer.ch/profile/dr_emporio_efikz','https://friendica.free-beer.ch/photo/custom/300/108.jpg?rev=2012-08-17+01%3A48%3A09','','0000-00-00 00:00:00','','','','','dspr'),(101,'w2bh.- free-beer.ch','https://friendica.free-beer.ch/profile/w2bh','http://friendica.free-beer.ch/profile/w2bh','https://friendica.free-beer.ch/photo/custom/300/104.jpg?rev=2012-08-15+10%3A52%3A29','','0000-00-00 00:00:00','','','','','dspr'),(102,'Torsten Schilinsky','https://friendica.free-beer.ch/profile/torsten1968','http://friendica.free-beer.ch/profile/torsten1968','https://friendica.free-beer.ch/photo/custom/300/107.jpg?rev=2012-09-18+11%3A17%3A42','','0000-00-00 00:00:00','','','','','dspr'),(103,'Ecologie Libidinale','https://friendica.free-beer.ch/profile/ecologielibidinale','http://friendica.free-beer.ch/profile/ecologielibidinale','https://friendica.free-beer.ch/photo/custom/300/118.jpg?rev=2012-08-23+18%3A19%3A23','','0000-00-00 00:00:00','','','','','dspr'),(104,'Robert Bonie','https://friendica.free-beer.ch/profile/robrob','http://friendica.free-beer.ch/profile/robrob','https://friendica.free-beer.ch/photo/custom/300/138.jpg?rev=2012-09-07+17%3A57%3A21','','0000-00-00 00:00:00','','','','','dspr'),(105,'Marius Katcá','https://friendica.free-beer.ch/profile/marius_katca','http://friendica.free-beer.ch/profile/marius_katca','https://friendica.free-beer.ch/photo/custom/300/143.jpg?rev=2012-09-10+11%3A02%3A55','','0000-00-00 00:00:00','','','','','dspr'),(106,'Yossefa Mekyton','https://friendica.free-beer.ch/profile/jooxz','http://friendica.free-beer.ch/profile/jooxz','https://friendica.free-beer.ch/photo/custom/300/413.jpg?rev=2013-06-29+18%3A54%3A44','','0000-00-00 00:00:00','','','','','dspr'),(107,'Xurxo Ventos','https://friendica.free-beer.ch/profile/xurxoventos','http://friendica.free-beer.ch/profile/xurxoventos','https://friendica.free-beer.ch/photo/custom/300/412.jpg?rev=2013-06-29+10%3A07%3A23','','0000-00-00 00:00:00','','','','','dspr'),(108,'Fergus Ferrier','https://friendica.free-beer.ch/profile/rufusson','http://friendica.free-beer.ch/profile/rufusson','https://friendica.free-beer.ch/photo/custom/300/146.jpg?rev=2012-09-14+01%3A11%3A23','','0000-00-00 00:00:00','','','','','dspr'),(109,'Arescorpio Nepesh','https://friendica.free-beer.ch/profile/arescorpio','http://friendica.free-beer.ch/profile/arescorpio','https://friendica.free-beer.ch/photo/custom/300/158.jpg?rev=2012-10-05+19%3A05%3A49','','0000-00-00 00:00:00','','','','','dspr'),(110,'Shiroikuma','https://friendica.free-beer.ch/profile/shiroikuma','http://friendica.free-beer.ch/profile/shiroikuma','https://friendica.free-beer.ch/photo/custom/300/334.jpg?rev=2013-06-02+09%3A59%3A35','','0000-00-00 00:00:00','','','','','dspr'),(111,'FreeBeer Klampf','https://friendica.free-beer.ch/profile/klampfattacke','http://friendica.free-beer.ch/profile/klampfattacke','https://friendica.free-beer.ch/photo/custom/300/167.jpg?rev=2012-10-27+02%3A34%3A19','','0000-00-00 00:00:00','','','','','dspr'),(112,'Raphael Vieira','https://friendica.free-beer.ch/profile/barba_negra','http://friendica.free-beer.ch/profile/barba_negra','https://friendica.free-beer.ch/photo/custom/300/772.jpg?rev=2014-05-04+03%3A45%3A51','','0000-00-00 00:00:00','','','','','dspr'),(113,'Marina Soler','https://friendica.free-beer.ch/profile/marisoler','http://friendica.free-beer.ch/profile/marisoler','https://friendica.free-beer.ch/photo/custom/300/514.jpg?rev=2013-09-01+18%3A38%3A55','','0000-00-00 00:00:00','','','','','dspr'),(114,'Als Ob','https://friendica.free-beer.ch/profile/derhuaba','http://friendica.free-beer.ch/profile/derhuaba','https://friendica.free-beer.ch/photo/custom/300/842.jpg?rev=2014-08-06+23%3A24%3A06','','0000-00-00 00:00:00','','','','','dspr'),(115,'Colin Steele','https://friendica.free-beer.ch/profile/emberleaf','http://friendica.free-beer.ch/profile/emberleaf','https://friendica.free-beer.ch/photo/custom/300/245.jpg?rev=2013-02-23+16%3A54%3A57','','0000-00-00 00:00:00','','','','','dspr'),(116,'Max Mustermann','https://friendica.free-beer.ch/profile/jan_sofasurfer','http://friendica.free-beer.ch/profile/jan_sofasurfer','https://friendica.free-beer.ch/photo/custom/300/246.jpg?rev=2013-02-24+13%3A17%3A05','','0000-00-00 00:00:00','','','','','dspr'),(117,'Nicola Sisto Alessandro Vaccarone','https://friendica.free-beer.ch/profile/nk','http://friendica.free-beer.ch/profile/nk','https://friendica.free-beer.ch/photo/custom/300/286.jpg?rev=2014-03-05+18%3A14%3A39','','0000-00-00 00:00:00','','','','','dspr'),(118,'Pascal Daniel Angst','https://friendica.free-beer.ch/profile/pascala','http://friendica.free-beer.ch/profile/pascala','https://friendica.free-beer.ch/photo/custom/300/268.jpg?rev=2013-03-16+14%3A39%3A19','','0000-00-00 00:00:00','','','','','dspr'),(119,'Bodhi SparkleSnapdragon Goforth','https://friendica.free-beer.ch/profile/snapdragon','http://friendica.free-beer.ch/profile/snapdragon','https://friendica.free-beer.ch/photo/custom/300/494.jpg?rev=2013-08-15+14%3A51%3A39','','0000-00-00 00:00:00','','','','','dspr'),(120,'AntiChristos44 BodhiSattva','https://friendica.free-beer.ch/profile/ac44bo','http://friendica.free-beer.ch/profile/ac44bo','https://friendica.free-beer.ch/photo/custom/300/440.jpg?rev=2013-07-15+01%3A55%3A24','','0000-00-00 00:00:00','','','','','dspr'),(121,'Michael Moroni','https://friendica.free-beer.ch/profile/airon90','http://friendica.free-beer.ch/profile/airon90','https://friendica.free-beer.ch/photo/custom/300/547.jpg?rev=2013-09-27+11%3A19%3A56','','0000-00-00 00:00:00','','','','','dspr'),(122,'Martin Neujahr','https://friendica.free-beer.ch/profile/funkymartin','http://friendica.free-beer.ch/profile/funkymartin','https://friendica.free-beer.ch/photo/custom/300/557.jpg?rev=2013-10-04+06%3A33%3A29','','0000-00-00 00:00:00','','','','','dspr'),(123,'Florian Traverse','https://friendica.free-beer.ch/profile/temsa','http://friendica.free-beer.ch/profile/temsa','https://friendica.free-beer.ch/photo/custom/300/548.jpg?rev=2013-09-28+06%3A16%3A05','','0000-00-00 00:00:00','','','','','dspr'),(124,'Picaflor Azul','https://friendica.free-beer.ch/profile/picaflor','http://friendica.free-beer.ch/profile/picaflor','https://friendica.free-beer.ch/photo/custom/300/549.jpg?rev=2013-09-28+15%3A36%3A46','','0000-00-00 00:00:00','','','','','dspr'),(125,'edson duarte','https://friendica.free-beer.ch/profile/vaugs3roty','http://friendica.free-beer.ch/profile/vaugs3roty','https://friendica.free-beer.ch/photo/custom/300/570.jpg?rev=2013-10-13+18%3A01%3A06','','0000-00-00 00:00:00','','','','','dspr'),(126,'Don Viktoranghelo De Cuyo','https://friendica.free-beer.ch/profile/lechju','http://friendica.free-beer.ch/profile/lechju','https://friendica.free-beer.ch/photo/custom/300/583.jpg?rev=2013-11-02+22%3A56%3A06','','0000-00-00 00:00:00','','','','','dspr'),(127,'Liselotte Vinberg','https://friendica.free-beer.ch/profile/musikmamma','http://friendica.free-beer.ch/profile/musikmamma','https://friendica.free-beer.ch/photo/custom/300/589.jpg?rev=2013-11-02+18%3A22%3A16','','0000-00-00 00:00:00','','','','','dspr'),(128,'Arlo James Barnes','https://friendica.free-beer.ch/profile/arlojamesbarnes','http://friendica.free-beer.ch/profile/arlojamesbarnes','https://friendica.free-beer.ch/photo/custom/300/593.jpg?rev=2013-11-04+21%3A56%3A10','','0000-00-00 00:00:00','','','','','dspr'),(129,'Roxana Diaz','https://friendica.free-beer.ch/profile/heindys','http://friendica.free-beer.ch/profile/heindys','https://friendica.free-beer.ch/photo/custom/300/774.jpg?rev=2014-05-10+09%3A51%3A52','','0000-00-00 00:00:00','','','','','dspr'),(130,'Armin Lutz','https://friendica.free-beer.ch/profile/zebra','http://friendica.free-beer.ch/profile/zebra','https://friendica.free-beer.ch/photo/custom/300/612.jpg?rev=2013-11-20+12%3A36%3A03','','0000-00-00 00:00:00','','','','','dspr'),(131,'Philipp Obenauer','https://friendica.free-beer.ch/profile/clandestino','http://friendica.free-beer.ch/profile/clandestino','https://friendica.free-beer.ch/photo/custom/300/621.jpg?rev=2013-12-14+11%3A09%3A01','','0000-00-00 00:00:00','','','','','dspr'),(132,'ѕтєιикαмρf','https://friendica.free-beer.ch/profile/steinkampf','http://friendica.free-beer.ch/profile/steinkampf','https://friendica.free-beer.ch/photo/custom/300/652.jpg?rev=2014-01-19+13%3A36%3A41','','0000-00-00 00:00:00','','','','','dspr'),(133,'Jerry Briardy','https://friendica.free-beer.ch/profile/bookman37','http://friendica.free-beer.ch/profile/bookman37','https://friendica.free-beer.ch/photo/custom/300/651.jpg?rev=2013-12-31+06%3A49%3A25','','0000-00-00 00:00:00','','','','','dspr'),(134,'D2O','https://friendica.free-beer.ch/profile/d2o','http://friendica.free-beer.ch/profile/d2o','https://friendica.free-beer.ch/photo/custom/300/673.jpg?rev=2014-01-16+14%3A57%3A25','','0000-00-00 00:00:00','','','','','dspr'),(135,'Marc Leunig','https://friendica.free-beer.ch/profile/miefda','http://friendica.free-beer.ch/profile/miefda','https://friendica.free-beer.ch/photo/custom/300/675.jpg?rev=2014-01-16+20%3A51%3A38','','0000-00-00 00:00:00','','','','','dspr'),(136,'Sebas Pesersen','https://friendica.free-beer.ch/profile/sebasped','http://friendica.free-beer.ch/profile/sebasped','https://friendica.free-beer.ch/photo/custom/300/714.jpg?rev=2014-02-16+21%3A33%3A10','','0000-00-00 00:00:00','','','','','dspr'),(137,'Redrick Deckard','https://friendica.free-beer.ch/profile/red','http://friendica.free-beer.ch/profile/red','https://friendica.free-beer.ch/photo/custom/300/724.jpg?rev=2014-03-02+17%3A12%3A30','','0000-00-00 00:00:00','','','','','dspr'),(138,'Rui Bernardo','https://friendica.free-beer.ch/profile/rui_miguel','http://friendica.free-beer.ch/profile/rui_miguel','https://friendica.free-beer.ch/photo/custom/300/729.jpg?rev=2014-03-05+15%3A46%3A11','','0000-00-00 00:00:00','','','','','dspr'),(139,'Manoel Nascimento','https://friendica.free-beer.ch/profile/manoelnascimento','http://friendica.free-beer.ch/profile/manoelnascimento','https://friendica.free-beer.ch/photo/custom/300/734.jpg?rev=2014-03-09+14%3A15%3A23','','0000-00-00 00:00:00','','','','','dspr'),(140,'ilma','https://friendica.free-beer.ch/profile/ilma','http://friendica.free-beer.ch/profile/ilma','https://friendica.free-beer.ch/photo/custom/300/739.jpg?rev=2014-03-14+03%3A41%3A44','','0000-00-00 00:00:00','','','','','dspr'),(141,'David Mccauley','https://friendica.free-beer.ch/profile/opticalrevenge','http://friendica.free-beer.ch/profile/opticalrevenge','https://friendica.free-beer.ch/photo/custom/300/746.jpg?rev=2014-03-22+18%3A30%3A05','','0000-00-00 00:00:00','','','','','dspr'),(142,'Atterratio Aeternus','https://friendica.free-beer.ch/profile/atterratio','http://friendica.free-beer.ch/profile/atterratio','https://friendica.free-beer.ch/photo/custom/300/753.jpg?rev=2014-04-04+01%3A23%3A23','','0000-00-00 00:00:00','','','','','dspr'),(143,'Markus Krüger','https://friendica.free-beer.ch/profile/kreuzmacher','http://friendica.free-beer.ch/profile/kreuzmacher','https://friendica.free-beer.ch/photo/custom/300/800.jpg?rev=2014-06-26+05%3A48%3A58','','0000-00-00 00:00:00','','','','','dspr'),(144,'Master O Disaster','https://friendica.free-beer.ch/profile/masterodisaster','http://friendica.free-beer.ch/profile/masterodisaster','https://friendica.free-beer.ch/photo/custom/300/855.jpg?rev=2014-08-18+20%3A31%3A42','','0000-00-00 00:00:00','','','','','dspr'),(145,'eyal72','https://friendica.free-beer.ch/profile/eyal72','http://friendica.free-beer.ch/profile/eyal72','https://friendica.free-beer.ch/photo/custom/300/872.jpg?rev=2014-09-03+22%3A35%3A36','','0000-00-00 00:00:00','','','','','dspr'),(146,'Ed Wes','https://friendica.free-beer.ch/profile/edwes','http://friendica.free-beer.ch/profile/edwes','https://friendica.free-beer.ch/photo/custom/300/1206.jpg','','0000-00-00 00:00:00','','','','','dspr'),(147,'Romoli Marco','https://friendica.free-beer.ch/profile/redleghorn','http://friendica.free-beer.ch/profile/redleghorn','https://friendica.free-beer.ch/photo/custom/300/1270.jpg?rev=2014-11-26+16%3A57%3A51','','0000-00-00 00:00:00','','','','','dspr'),(148,'Michael Rueetschli','http://social.rueetschli.org/profile/rueetschli','http://social.rueetschli.org/profile/rueetschli','http://social.rueetschli.org/photo/custom/300/1.jpg?rev=2014-03-14+09%3A30%3A42','','0000-00-00 00:00:00','','','','','dspr'),(149,'Land Ei','http://social.rueetschli.org/profile/land_ei','http://social.rueetschli.org/profile/land_ei','http://social.rueetschli.org/photo/custom/300/32.jpg?rev=2014-07-25+17%3A03%3A43','','0000-00-00 00:00:00','','','','','dspr'),(150,'Jim Wiskey','http://social.rueetschli.org/profile/gsxrpilot','http://social.rueetschli.org/profile/gsxrpilot','http://social.rueetschli.org/photo/custom/300/36.jpg?rev=2014-08-21+01%3A47%3A44','','0000-00-00 00:00:00','','','','','dspr'),(151,'Kevin K.','http://social.rueetschli.org/profile/dj-atropine','http://social.rueetschli.org/profile/dj-atropine','http://social.rueetschli.org/photo/custom/300/66.jpg?rev=2014-12-31+13%3A05%3A29','','0000-00-00 00:00:00','','','','','dspr'),(152,'friendica2','http://192.168.22.10/profile/friendica2','http://192.168.22.10/profile/friendica2','http://192.168.22.10/photo/avatar/3.jpg','','2015-02-02 19:00:21','','','','','stat'),(153,'friendica5','http://192.168.22.10/profile/friendica5','http://192.168.22.10/profile/friendica5','http://192.168.22.10/photo/avatar/5.jpg','','2015-02-02 19:00:18','','','','','stat'),(154,'friendica4','http://192.168.22.10/profile/friendica4','http://192.168.22.10/profile/friendica4','http://192.168.22.10/photo/avatar/6.jpg','','2015-02-02 19:00:24','','','','','stat'),(155,'friendica1','http://192.168.22.10/profile/friendica1','http://192.168.22.10/profile/friendica1','http://192.168.22.10/photo/profile/2.jpg','','2015-02-02 12:02:11','','','','','stat'),(156,'friendica3','http://192.168.22.10/profile/friendica3','http://192.168.22.10/profile/friendica3','http://192.168.22.10/photo/1fc6596c195944666e18cbd313795942-4.jpg','','2015-02-02 19:00:12','','','','','dfrn'); +/*!40000 ALTER TABLE `gcontact` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `glink` +-- + +DROP TABLE IF EXISTS `glink`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `glink` ( + `id` int(10) unsigned NOT NULL AUTO_INCREMENT, + `cid` int(11) NOT NULL DEFAULT '0', + `uid` int(11) NOT NULL DEFAULT '0', + `gcid` int(11) NOT NULL DEFAULT '0', + `zcid` int(11) NOT NULL DEFAULT '0', + `updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + PRIMARY KEY (`id`), + KEY `cid_uid_gcid_zcid` (`cid`,`uid`,`gcid`,`zcid`), + KEY `gcid` (`gcid`), + KEY `zcid` (`zcid`) +) ENGINE=InnoDB AUTO_INCREMENT=189 DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `glink` +-- + +LOCK TABLES `glink` WRITE; +/*!40000 ALTER TABLE `glink` DISABLE KEYS */; +INSERT INTO `glink` VALUES (1,0,0,1,0,'2015-02-02 11:31:20'),(2,0,0,2,0,'2015-02-02 11:31:21'),(3,0,0,3,0,'2015-02-02 11:31:22'),(4,0,0,4,0,'2015-02-02 11:31:23'),(5,0,0,5,0,'2015-02-02 11:31:24'),(6,0,0,6,0,'2015-02-02 11:31:25'),(7,0,0,7,0,'2015-02-02 11:31:26'),(8,0,0,8,0,'2015-02-02 11:31:27'),(9,0,0,9,0,'2015-02-02 11:31:28'),(10,0,0,10,0,'2015-02-02 11:31:28'),(11,0,0,11,0,'2015-02-02 11:31:29'),(12,0,0,12,0,'2015-02-02 11:31:30'),(13,0,0,13,0,'2015-02-02 11:31:31'),(14,0,0,14,0,'2015-02-02 11:31:32'),(15,0,0,15,0,'2015-02-02 11:31:33'),(16,0,0,16,0,'2015-02-02 11:31:34'),(17,0,0,17,0,'2015-02-02 11:31:35'),(18,0,0,18,0,'2015-02-02 11:31:35'),(19,0,0,19,0,'2015-02-02 11:31:36'),(20,0,0,20,0,'2015-02-02 11:31:37'),(21,0,0,21,0,'2015-02-02 11:31:38'),(22,0,0,22,0,'2015-02-02 11:31:39'),(23,0,0,23,0,'2015-02-02 11:31:40'),(24,0,0,24,0,'2015-02-02 11:31:41'),(25,0,0,25,0,'2015-02-02 11:31:41'),(26,0,0,26,0,'2015-02-02 11:31:42'),(27,0,0,27,0,'2015-02-02 11:31:43'),(28,0,0,28,0,'2015-02-02 11:31:44'),(29,0,0,29,0,'2015-02-02 11:31:44'),(30,0,0,30,0,'2015-02-02 11:31:45'),(31,0,0,31,0,'2015-02-02 11:31:45'),(32,0,0,32,0,'2015-02-02 11:31:45'),(33,0,0,33,0,'2015-02-02 11:31:46'),(34,0,0,34,0,'2015-02-02 11:31:47'),(35,0,0,35,0,'2015-02-02 11:32:53'),(36,0,0,36,0,'2015-02-02 11:32:54'),(37,0,0,37,0,'2015-02-02 11:32:55'),(38,0,0,38,0,'2015-02-02 11:32:56'),(39,0,0,39,0,'2015-02-02 11:32:57'),(40,0,0,40,0,'2015-02-02 11:32:57'),(41,0,0,41,0,'2015-02-02 11:32:58'),(42,0,0,42,0,'2015-02-02 11:32:59'),(43,0,0,43,0,'2015-02-02 11:33:00'),(44,0,0,44,0,'2015-02-02 11:33:01'),(45,0,0,45,0,'2015-02-02 11:33:02'),(46,0,0,46,0,'2015-02-02 11:33:02'),(47,0,0,47,0,'2015-02-02 11:33:03'),(48,0,0,48,0,'2015-02-02 11:33:05'),(49,0,0,49,0,'2015-02-02 11:33:06'),(50,0,0,50,0,'2015-02-02 11:33:07'),(51,0,0,51,0,'2015-02-02 11:33:08'),(52,0,0,52,0,'2015-02-02 11:33:10'),(53,0,0,53,0,'2015-02-02 11:33:11'),(54,0,0,54,0,'2015-02-02 11:33:12'),(55,0,0,55,0,'2015-02-02 11:33:13'),(56,0,0,56,0,'2015-02-02 11:33:14'),(57,0,0,57,0,'2015-02-02 11:33:15'),(58,0,0,58,0,'2015-02-02 11:33:16'),(59,0,0,59,0,'2015-02-02 11:33:17'),(60,0,0,60,0,'2015-02-02 11:33:18'),(61,0,0,61,0,'2015-02-02 11:33:19'),(62,0,0,62,0,'2015-02-02 11:33:21'),(63,0,0,63,0,'2015-02-02 11:33:22'),(64,0,0,64,0,'2015-02-02 11:33:23'),(65,0,0,65,0,'2015-02-02 11:33:24'),(66,0,0,66,0,'2015-02-02 11:33:25'),(67,0,0,67,0,'2015-02-02 11:33:26'),(68,0,0,68,0,'2015-02-02 11:33:29'),(69,0,0,69,0,'2015-02-02 11:33:32'),(70,0,0,70,0,'2015-02-02 11:33:33'),(71,0,0,71,0,'2015-02-02 11:33:34'),(72,0,0,72,0,'2015-02-02 11:34:38'),(73,0,0,73,0,'2015-02-02 11:34:38'),(74,0,0,74,0,'2015-02-02 11:34:38'),(75,0,0,75,0,'2015-02-02 11:34:38'),(76,0,0,76,0,'2015-02-02 11:34:38'),(77,0,0,77,0,'2015-02-02 11:34:38'),(78,0,0,78,0,'2015-02-02 11:34:38'),(79,0,0,79,0,'2015-02-02 11:34:38'),(80,0,0,80,0,'2015-02-02 11:34:38'),(81,0,0,81,0,'2015-02-02 11:34:38'),(82,0,0,82,0,'2015-02-02 11:34:38'),(83,0,0,83,0,'2015-02-02 11:34:38'),(84,0,0,84,0,'2015-02-02 11:34:41'),(85,0,0,85,0,'2015-02-02 11:34:42'),(86,0,0,86,0,'2015-02-02 11:34:43'),(87,0,0,87,0,'2015-02-02 11:34:44'),(88,0,0,88,0,'2015-02-02 11:34:45'),(89,0,0,89,0,'2015-02-02 11:34:46'),(90,0,0,90,0,'2015-02-02 11:34:46'),(91,0,0,91,0,'2015-02-02 11:34:47'),(92,0,0,92,0,'2015-02-02 11:34:48'),(93,0,0,93,0,'2015-02-02 11:34:49'),(94,0,0,94,0,'2015-02-02 11:34:49'),(95,0,0,95,0,'2015-02-02 11:34:50'),(96,0,0,96,0,'2015-02-02 11:34:51'),(97,0,0,97,0,'2015-02-02 11:34:51'),(98,0,0,98,0,'2015-02-02 11:34:52'),(99,0,0,99,0,'2015-02-02 11:34:53'),(100,0,0,100,0,'2015-02-02 11:34:54'),(101,0,0,101,0,'2015-02-02 11:34:55'),(102,0,0,102,0,'2015-02-02 11:34:55'),(103,0,0,103,0,'2015-02-02 11:34:56'),(104,0,0,104,0,'2015-02-02 11:34:57'),(105,0,0,105,0,'2015-02-02 11:34:58'),(106,0,0,106,0,'2015-02-02 11:34:58'),(107,0,0,107,0,'2015-02-02 11:34:59'),(108,0,0,108,0,'2015-02-02 11:35:00'),(109,0,0,109,0,'2015-02-02 11:35:01'),(110,0,0,110,0,'2015-02-02 11:35:02'),(111,0,0,111,0,'2015-02-02 11:35:02'),(112,0,0,112,0,'2015-02-02 11:35:03'),(113,0,0,113,0,'2015-02-02 11:35:04'),(114,0,0,114,0,'2015-02-02 11:35:05'),(115,0,0,115,0,'2015-02-02 11:35:06'),(116,0,0,116,0,'2015-02-02 11:35:06'),(117,0,0,117,0,'2015-02-02 11:35:07'),(118,0,0,118,0,'2015-02-02 11:35:08'),(119,0,0,119,0,'2015-02-02 11:35:09'),(120,0,0,120,0,'2015-02-02 11:35:09'),(121,0,0,121,0,'2015-02-02 11:35:10'),(122,0,0,122,0,'2015-02-02 11:35:11'),(123,0,0,123,0,'2015-02-02 11:35:12'),(124,0,0,124,0,'2015-02-02 11:35:13'),(125,0,0,125,0,'2015-02-02 11:35:14'),(126,0,0,126,0,'2015-02-02 11:35:15'),(127,0,0,127,0,'2015-02-02 11:35:15'),(128,0,0,128,0,'2015-02-02 11:35:16'),(129,0,0,129,0,'2015-02-02 11:35:17'),(130,0,0,130,0,'2015-02-02 11:35:18'),(131,0,0,131,0,'2015-02-02 11:35:18'),(132,0,0,132,0,'2015-02-02 11:35:19'),(133,0,0,133,0,'2015-02-02 11:35:20'),(134,0,0,134,0,'2015-02-02 11:35:21'),(135,0,0,135,0,'2015-02-02 11:35:22'),(136,0,0,136,0,'2015-02-02 11:35:23'),(137,0,0,137,0,'2015-02-02 11:35:23'),(138,0,0,138,0,'2015-02-02 11:35:24'),(139,0,0,139,0,'2015-02-02 11:35:25'),(140,0,0,140,0,'2015-02-02 11:35:26'),(141,0,0,141,0,'2015-02-02 11:35:27'),(142,0,0,142,0,'2015-02-02 11:35:28'),(143,0,0,143,0,'2015-02-02 11:35:29'),(144,0,0,144,0,'2015-02-02 11:35:29'),(145,0,0,145,0,'2015-02-02 11:35:30'),(146,0,0,146,0,'2015-02-02 11:35:31'),(147,0,0,147,0,'2015-02-02 11:35:32'),(148,0,0,148,0,'2015-02-02 11:35:35'),(149,0,0,149,0,'2015-02-02 11:35:36'),(150,0,0,150,0,'2015-02-02 11:35:37'),(151,0,0,151,0,'2015-02-02 11:35:39'),(152,0,0,152,152,'2015-02-02 18:40:44'),(153,0,0,153,153,'2015-02-02 18:44:01'),(154,0,0,154,154,'2015-02-02 18:45:06'),(155,0,0,155,155,'2015-02-02 18:51:50'),(156,8,3,156,0,'2015-02-02 18:50:03'),(157,9,6,153,0,'2015-02-02 18:50:06'),(158,9,6,154,0,'2015-02-02 18:50:06'),(159,7,4,152,0,'2015-02-02 18:50:08'),(160,7,4,156,0,'2015-02-02 18:50:08'),(161,10,5,154,0,'2015-02-02 18:50:11'),(162,10,5,153,0,'2015-02-02 18:50:11'),(163,0,0,152,155,'2015-02-02 18:51:50'),(164,0,0,153,155,'2015-02-02 18:51:50'),(165,17,6,155,0,'2015-02-02 19:00:03'),(166,17,6,152,0,'2015-02-02 19:00:03'),(167,17,6,156,0,'2015-02-02 19:00:03'),(168,17,6,153,0,'2015-02-02 19:00:03'),(169,17,6,154,0,'2015-02-02 19:00:03'),(170,15,5,155,0,'2015-02-02 19:00:06'),(171,15,5,152,0,'2015-02-02 19:00:06'),(172,15,5,156,0,'2015-02-02 19:00:06'),(173,15,5,153,0,'2015-02-02 19:00:06'),(174,15,5,154,0,'2015-02-02 19:00:06'),(175,11,3,155,0,'2015-02-02 19:00:09'),(176,11,3,152,0,'2015-02-02 19:00:09'),(177,11,3,156,0,'2015-02-02 19:00:09'),(178,11,3,153,0,'2015-02-02 19:00:09'),(179,11,3,154,0,'2015-02-02 19:00:09'),(180,14,2,156,0,'2015-02-02 19:00:12'),(181,13,4,155,0,'2015-02-02 19:00:15'),(182,13,4,152,0,'2015-02-02 19:00:15'),(183,13,4,156,0,'2015-02-02 19:00:15'),(184,13,4,153,0,'2015-02-02 19:00:15'),(185,13,4,154,0,'2015-02-02 19:00:15'),(186,16,2,153,0,'2015-02-02 19:00:18'),(187,12,2,152,0,'2015-02-02 19:00:21'),(188,18,2,154,0,'2015-02-02 19:00:24'); +/*!40000 ALTER TABLE `glink` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `group` +-- + +DROP TABLE IF EXISTS `group`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `group` ( + `id` int(10) unsigned NOT NULL AUTO_INCREMENT, + `uid` int(10) unsigned NOT NULL DEFAULT '0', + `visible` tinyint(1) NOT NULL DEFAULT '0', + `deleted` tinyint(1) NOT NULL DEFAULT '0', + `name` varchar(255) NOT NULL DEFAULT '', + PRIMARY KEY (`id`), + KEY `uid` (`uid`) +) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `group` +-- + +LOCK TABLES `group` WRITE; +/*!40000 ALTER TABLE `group` DISABLE KEYS */; +INSERT INTO `group` VALUES (1,1,0,0,'Friends'),(2,2,0,0,'Friends'),(3,3,0,0,'Friends'),(4,4,0,0,'Friends'),(5,5,0,0,'Friends'),(6,6,0,0,'Friends'),(7,2,0,0,'group1'),(8,2,0,0,'group2'); +/*!40000 ALTER TABLE `group` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `group_member` +-- + +DROP TABLE IF EXISTS `group_member`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `group_member` ( + `id` int(10) unsigned NOT NULL AUTO_INCREMENT, + `uid` int(10) unsigned NOT NULL DEFAULT '0', + `gid` int(10) unsigned NOT NULL DEFAULT '0', + `contact-id` int(10) unsigned NOT NULL DEFAULT '0', + PRIMARY KEY (`id`), + KEY `uid_gid_contactid` (`uid`,`gid`,`contact-id`) +) ENGINE=InnoDB AUTO_INCREMENT=16 DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `group_member` +-- + +LOCK TABLES `group_member` WRITE; +/*!40000 ALTER TABLE `group_member` DISABLE KEYS */; +INSERT INTO `group_member` VALUES (4,2,2,12),(5,2,2,14),(6,2,2,16),(9,2,2,18),(12,2,7,12),(13,2,7,18),(14,2,8,14),(15,2,8,16),(1,3,3,8),(8,3,3,11),(2,4,4,7),(10,4,4,13),(3,5,5,10),(7,5,5,15),(11,6,6,17); +/*!40000 ALTER TABLE `group_member` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `guid` +-- + +DROP TABLE IF EXISTS `guid`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `guid` ( + `id` int(10) unsigned NOT NULL AUTO_INCREMENT, + `guid` varchar(255) NOT NULL DEFAULT '', + PRIMARY KEY (`id`), + KEY `guid` (`guid`) +) ENGINE=InnoDB AUTO_INCREMENT=29 DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `guid` +-- + +LOCK TABLES `guid` WRITE; +/*!40000 ALTER TABLE `guid` DISABLE KEYS */; +INSERT INTO `guid` VALUES (2,'043683592163744406954cf601a6ea7c'),(4,'06554cf6760d7bd9'),(26,'115265984886425346054cfc8cd2b30d'),(16,'134524908174756698954cfc6f6af694'),(3,'14654cf674381248'),(27,'147164917208927777754cfc90495ae1'),(25,'173326339068575320654cfc86b794cc'),(1,'19754cf5e616d58b'),(20,'21254cfc73701af6'),(18,'27554cfc71bcb2e8'),(12,'32554cfc4ecad9ed'),(10,'384434952122597196054cfc3e54fb70'),(11,'43554cfc4ec523d0'),(9,'480886065162043563354cfc37dd52a5'),(23,'48654cfc78f98728'),(17,'49454cfc71b75a4e'),(8,'513563952202228973954cfc33761f0c'),(6,'51854cf67b60ceec'),(24,'52754cfc79010af9'),(15,'57054cfc5cac8e5c'),(19,'58354cfc7369ebdb'),(22,'69454cfc7686a537'),(5,'75354cf677be64c1'),(14,'79554cfc5ca68cdc'),(21,'83254cfc7681d1da'),(7,'84554cf67cd393c4'),(13,'855416271212197658654cfc567bcd52'),(28,'962929709188110261054cfc93d1c583'); +/*!40000 ALTER TABLE `guid` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `hook` +-- + +DROP TABLE IF EXISTS `hook`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `hook` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `hook` varchar(255) NOT NULL DEFAULT '', + `file` varchar(255) NOT NULL DEFAULT '', + `function` varchar(255) NOT NULL DEFAULT '', + `priority` int(11) unsigned NOT NULL DEFAULT '0', + PRIMARY KEY (`id`), + KEY `hook_file_function` (`hook`(30),`file`(60),`function`(30)) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `hook` +-- + +LOCK TABLES `hook` WRITE; +/*!40000 ALTER TABLE `hook` DISABLE KEYS */; +/*!40000 ALTER TABLE `hook` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `intro` +-- + +DROP TABLE IF EXISTS `intro`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `intro` ( + `id` int(10) unsigned NOT NULL AUTO_INCREMENT, + `uid` int(10) unsigned NOT NULL DEFAULT '0', + `fid` int(11) NOT NULL DEFAULT '0', + `contact-id` int(11) NOT NULL DEFAULT '0', + `knowyou` tinyint(1) NOT NULL DEFAULT '0', + `duplex` tinyint(1) NOT NULL DEFAULT '0', + `note` text NOT NULL, + `hash` varchar(255) NOT NULL DEFAULT '', + `datetime` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + `blocked` tinyint(1) NOT NULL DEFAULT '1', + `ignore` tinyint(1) NOT NULL DEFAULT '0', + PRIMARY KEY (`id`) +) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `intro` +-- + +LOCK TABLES `intro` WRITE; +/*!40000 ALTER TABLE `intro` DISABLE KEYS */; +INSERT INTO `intro` VALUES (2,6,0,9,1,0,'','4142285f3a13a4470e6e8bca48f18f9452574c9f608050678d82b5156ba9272e1422902647','2015-02-02 18:44:07',1,0); +/*!40000 ALTER TABLE `intro` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `item` +-- + +DROP TABLE IF EXISTS `item`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `item` ( + `id` int(10) unsigned NOT NULL AUTO_INCREMENT, + `guid` varchar(255) NOT NULL DEFAULT '', + `uri` varchar(255) NOT NULL DEFAULT '', + `uid` int(10) unsigned NOT NULL DEFAULT '0', + `contact-id` int(11) NOT NULL DEFAULT '0', + `type` varchar(255) NOT NULL DEFAULT '', + `wall` tinyint(1) NOT NULL DEFAULT '0', + `gravity` tinyint(1) NOT NULL DEFAULT '0', + `parent` int(10) unsigned NOT NULL DEFAULT '0', + `parent-uri` varchar(255) NOT NULL DEFAULT '', + `extid` varchar(255) NOT NULL DEFAULT '', + `thr-parent` varchar(255) NOT NULL DEFAULT '', + `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + `edited` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + `commented` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + `received` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + `changed` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + `owner-name` varchar(255) NOT NULL DEFAULT '', + `owner-link` varchar(255) NOT NULL DEFAULT '', + `owner-avatar` varchar(255) NOT NULL DEFAULT '', + `author-name` varchar(255) NOT NULL DEFAULT '', + `author-link` varchar(255) NOT NULL DEFAULT '', + `author-avatar` varchar(255) NOT NULL DEFAULT '', + `title` varchar(255) NOT NULL DEFAULT '', + `body` mediumtext NOT NULL, + `app` varchar(255) NOT NULL DEFAULT '', + `verb` varchar(255) NOT NULL DEFAULT '', + `object-type` varchar(255) NOT NULL DEFAULT '', + `object` text NOT NULL, + `target-type` varchar(255) NOT NULL DEFAULT '', + `target` text NOT NULL, + `postopts` text NOT NULL, + `plink` varchar(255) NOT NULL DEFAULT '', + `resource-id` varchar(255) NOT NULL DEFAULT '', + `event-id` int(11) NOT NULL DEFAULT '0', + `tag` mediumtext NOT NULL, + `attach` mediumtext NOT NULL, + `inform` mediumtext NOT NULL, + `file` mediumtext NOT NULL, + `location` varchar(255) NOT NULL DEFAULT '', + `coord` varchar(255) NOT NULL DEFAULT '', + `allow_cid` mediumtext NOT NULL, + `allow_gid` mediumtext NOT NULL, + `deny_cid` mediumtext NOT NULL, + `deny_gid` mediumtext NOT NULL, + `private` tinyint(1) NOT NULL DEFAULT '0', + `pubmail` tinyint(1) NOT NULL DEFAULT '0', + `moderated` tinyint(1) NOT NULL DEFAULT '0', + `visible` tinyint(1) NOT NULL DEFAULT '0', + `spam` tinyint(1) NOT NULL DEFAULT '0', + `starred` tinyint(1) NOT NULL DEFAULT '0', + `bookmark` tinyint(1) NOT NULL DEFAULT '0', + `unseen` tinyint(1) NOT NULL DEFAULT '1', + `deleted` tinyint(1) NOT NULL DEFAULT '0', + `origin` tinyint(1) NOT NULL DEFAULT '0', + `forum_mode` tinyint(1) NOT NULL DEFAULT '0', + `last-child` tinyint(1) unsigned NOT NULL DEFAULT '1', + `mention` tinyint(1) NOT NULL DEFAULT '0', + `network` varchar(32) NOT NULL DEFAULT '', + PRIMARY KEY (`id`), + KEY `guid` (`guid`), + KEY `uri` (`uri`), + KEY `parent` (`parent`), + KEY `parent-uri` (`parent-uri`), + KEY `extid` (`extid`), + KEY `uid_id` (`uid`,`id`), + KEY `uid_created` (`uid`,`created`), + KEY `uid_unseen` (`uid`,`unseen`), + KEY `uid_network_received` (`uid`,`network`,`received`), + KEY `uid_received` (`uid`,`received`), + KEY `uid_network_commented` (`uid`,`network`,`commented`), + KEY `uid_commented` (`uid`,`commented`), + KEY `uid_title` (`uid`,`title`), + KEY `uid_thrparent` (`uid`,`thr-parent`), + KEY `uid_parenturi` (`uid`,`parent-uri`), + KEY `uid_contactid_created` (`uid`,`contact-id`,`created`), + KEY `wall_body` (`wall`,`body`(6)), + KEY `uid_visible_moderated_created` (`uid`,`visible`,`moderated`,`created`), + KEY `uid_uri` (`uid`,`uri`), + KEY `uid_wall_created` (`uid`,`wall`,`created`), + KEY `resource-id` (`resource-id`), + KEY `uid_type` (`uid`,`type`), + KEY `uid_starred` (`uid`,`starred`), + KEY `contactid_allowcid_allowpid_denycid_denygid` (`contact-id`,`allow_cid`(10),`allow_gid`(10),`deny_cid`(10),`deny_gid`(10)), + KEY `uid_wall_parent_created` (`uid`,`wall`,`parent`,`created`), + KEY `uid_type_changed` (`uid`,`type`,`changed`), + KEY `contactid_verb` (`contact-id`,`verb`), + KEY `deleted_changed` (`deleted`,`changed`), + KEY `uid_wall_changed` (`uid`,`wall`,`changed`), + KEY `uid_eventid` (`uid`,`event-id`), + KEY `uid_authorlink` (`uid`,`author-link`), + KEY `uid_ownerlink` (`uid`,`owner-link`) +) ENGINE=InnoDB AUTO_INCREMENT=31 DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `item` +-- + +LOCK TABLES `item` WRITE; +/*!40000 ALTER TABLE `item` DISABLE KEYS */; +INSERT INTO `item` VALUES (1,'043683592163744406954cf601a6ea7c','urn:X-dfrn:192.168.22.10:1:d2aa595d1d0a1dcd796ffa5adf071f2d9a6f8e5ca39c6d5b024f5ddacdc9d2bb',1,1,'wall',1,0,1,'urn:X-dfrn:192.168.22.10:1:d2aa595d1d0a1dcd796ffa5adf071f2d9a6f8e5ca39c6d5b024f5ddacdc9d2bb','','urn:X-dfrn:192.168.22.10:1:d2aa595d1d0a1dcd796ffa5adf071f2d9a6f8e5ca39c6d5b024f5ddacdc9d2bb','2015-02-02 11:31:38','2015-02-02 11:31:38','2015-02-02 11:31:38','2015-02-02 11:31:38','2015-02-02 11:31:38','admin','http://192.168.22.10/profile/admin','http://192.168.22.10/photo/avatar/1.jpg','admin','http://192.168.22.10/profile/admin','http://192.168.22.10/photo/avatar/1.jpg','Initial admin post','Hello world!','','http://activitystrea.ms/schema/1.0/post','http://activitystrea.ms/schema/1.0/note','','','','lang=pidgin;0.25363636363636:english;0.20848484848485:hawaiian;0.1730303030303','http://192.168.22.10/display/043683592163744406954cf601a6ea7c','',0,'','','','','','','','','','',0,0,0,1,0,0,0,0,0,1,0,1,0,'dfrn'),(2,'513563952202228973954cfc33761f0c','urn:X-dfrn:192.168.22.10:3:0d3a137305f0b57b724553b21be0e5ec39b358da44e553f41fc66e9d8f28ce65',3,3,'wall',1,0,2,'urn:X-dfrn:192.168.22.10:3:0d3a137305f0b57b724553b21be0e5ec39b358da44e553f41fc66e9d8f28ce65','','urn:X-dfrn:192.168.22.10:3:0d3a137305f0b57b724553b21be0e5ec39b358da44e553f41fc66e9d8f28ce65','2015-02-02 18:34:31','2015-02-02 18:34:31','2015-02-02 18:34:31','2015-02-02 18:34:31','2015-02-02 18:34:31','friendica2','http://192.168.22.10/profile/friendica2','http://192.168.22.10/photo/avatar/3.jpg','friendica2','http://192.168.22.10/profile/friendica2','http://192.168.22.10/photo/avatar/3.jpg','Friendica2 is here!','Hi, this is my first post!','','http://activitystrea.ms/schema/1.0/post','http://activitystrea.ms/schema/1.0/note','','','','lang=latin;0.27460317460317:english;0.26285714285714:french;0.15936507936508','http://192.168.22.10/display/513563952202228973954cfc33761f0c','',0,'','','','','','','','','','',0,0,0,1,0,0,0,0,0,1,0,1,0,'dfrn'),(3,'480886065162043563354cfc37dd52a5','urn:X-dfrn:192.168.22.10:4:39454efb15b0aff04057c81b8d4cd36f68b0d9fa37cf2c8adcefc596bc8fa61b',4,4,'wall',1,0,3,'urn:X-dfrn:192.168.22.10:4:39454efb15b0aff04057c81b8d4cd36f68b0d9fa37cf2c8adcefc596bc8fa61b','','urn:X-dfrn:192.168.22.10:4:39454efb15b0aff04057c81b8d4cd36f68b0d9fa37cf2c8adcefc596bc8fa61b','2015-02-02 18:35:41','2015-02-02 18:35:41','2015-02-02 18:35:41','2015-02-02 18:35:41','2015-02-02 18:35:41','friendica3','http://192.168.22.10/profile/friendica3','http://192.168.22.10/photo/avatar/4.jpg','friendica3','http://192.168.22.10/profile/friendica3','http://192.168.22.10/photo/avatar/4.jpg','Friendica3 says hi','Here I am!','','http://activitystrea.ms/schema/1.0/post','http://activitystrea.ms/schema/1.0/note','','','','lang=danish;0.54814814814815:english;0.48925925925926:italian;0.43','http://192.168.22.10/display/480886065162043563354cfc37dd52a5','',0,'','','','','','','','','','',0,0,0,1,0,0,0,0,0,1,0,1,0,'dfrn'),(4,'384434952122597196054cfc3e54fb70','urn:X-dfrn:192.168.22.10:6:5e30601337e1e0e76da32f5eefec71954162a82e73c3369249bddc98a0e266b7',6,6,'wall',1,0,4,'urn:X-dfrn:192.168.22.10:6:5e30601337e1e0e76da32f5eefec71954162a82e73c3369249bddc98a0e266b7','','urn:X-dfrn:192.168.22.10:6:5e30601337e1e0e76da32f5eefec71954162a82e73c3369249bddc98a0e266b7','2015-02-02 18:37:25','2015-02-02 18:37:25','2015-02-02 18:37:25','2015-02-02 18:37:25','2015-02-02 18:37:25','friendica4','http://192.168.22.10/profile/friendica4','http://192.168.22.10/photo/avatar/6.jpg','friendica4','http://192.168.22.10/profile/friendica4','http://192.168.22.10/photo/avatar/6.jpg','Friendica4 check-in','Hey ho!','','http://activitystrea.ms/schema/1.0/post','http://activitystrea.ms/schema/1.0/note','','','','lang=hawaiian;0.42722222222222:english;0.41388888888889:vietnamese;0.25333333333333','http://192.168.22.10/display/384434952122597196054cfc3e54fb70','',0,'','','','','','','','','','',0,0,0,1,0,0,0,0,0,1,0,1,0,'dfrn'),(5,'855416271212197658654cfc567bcd52','urn:X-dfrn:192.168.22.10:5:e5b0ebeda709811e23178fef5c443cdd9fc9b40cf1bbef31f4860c3ef9a4f87b',5,5,'wall',1,0,5,'urn:X-dfrn:192.168.22.10:5:e5b0ebeda709811e23178fef5c443cdd9fc9b40cf1bbef31f4860c3ef9a4f87b','','urn:X-dfrn:192.168.22.10:5:e5b0ebeda709811e23178fef5c443cdd9fc9b40cf1bbef31f4860c3ef9a4f87b','2015-02-02 18:43:51','2015-02-02 18:43:51','2015-02-02 18:43:51','2015-02-02 18:43:51','2015-02-02 18:43:51','friendica5','http://192.168.22.10/profile/friendica5','http://192.168.22.10/photo/avatar/5.jpg','friendica5','http://192.168.22.10/profile/friendica5','http://192.168.22.10/photo/avatar/5.jpg','Friendica5 mic check','There we go!','','http://activitystrea.ms/schema/1.0/post','http://activitystrea.ms/schema/1.0/note','','','','lang=pidgin;0.6330303030303:english;0.54242424242424:dutch;0.29969696969697','http://192.168.22.10/display/855416271212197658654cfc567bcd52','',0,'','','','','','','','','','',0,0,0,1,0,0,0,0,0,1,0,1,0,'dfrn'),(6,'480886065162043563354cfc37dd52a5','urn:X-dfrn:192.168.22.10:4:39454efb15b0aff04057c81b8d4cd36f68b0d9fa37cf2c8adcefc596bc8fa61b',3,8,'remote',0,0,6,'urn:X-dfrn:192.168.22.10:4:39454efb15b0aff04057c81b8d4cd36f68b0d9fa37cf2c8adcefc596bc8fa61b','','urn:X-dfrn:192.168.22.10:4:39454efb15b0aff04057c81b8d4cd36f68b0d9fa37cf2c8adcefc596bc8fa61b','2015-02-02 18:35:41','2015-02-02 18:35:41','2015-02-02 18:50:03','2015-02-02 18:50:03','2015-02-02 18:50:03','friendica3','http://192.168.22.10/profile/friendica3','http://192.168.22.10/photo/avatar/4.jpg','friendica3','http://192.168.22.10/profile/friendica3','http://192.168.22.10/photo/avatar/4.jpg','Friendica3 says hi','Here I am!','','http://activitystrea.ms/schema/1.0/post','','','','','lang=danish;0.54814814814815:english;0.48925925925926:italian;0.43','http://192.168.22.10/display/friendica3/3','',0,'','','','','','','','','','',0,0,0,1,0,0,0,0,0,0,0,1,0,'dfrn'),(7,'855416271212197658654cfc567bcd52','urn:X-dfrn:192.168.22.10:5:e5b0ebeda709811e23178fef5c443cdd9fc9b40cf1bbef31f4860c3ef9a4f87b',6,9,'remote',0,0,7,'urn:X-dfrn:192.168.22.10:5:e5b0ebeda709811e23178fef5c443cdd9fc9b40cf1bbef31f4860c3ef9a4f87b','','urn:X-dfrn:192.168.22.10:5:e5b0ebeda709811e23178fef5c443cdd9fc9b40cf1bbef31f4860c3ef9a4f87b','2015-02-02 18:43:51','2015-02-02 18:43:51','2015-02-02 18:50:05','2015-02-02 18:50:05','2015-02-02 18:50:05','friendica5','http://192.168.22.10/profile/friendica5','http://192.168.22.10/photo/avatar/5.jpg','friendica5','http://192.168.22.10/profile/friendica5','http://192.168.22.10/photo/avatar/5.jpg','Friendica5 mic check','There we go!','','http://activitystrea.ms/schema/1.0/post','','','','','lang=pidgin;0.6330303030303:english;0.54242424242424:dutch;0.29969696969697','http://192.168.22.10/display/friendica5/5','',0,'','','','','','','','','','',0,0,0,1,0,0,0,0,0,0,0,1,0,'dfrn'),(8,'513563952202228973954cfc33761f0c','urn:X-dfrn:192.168.22.10:3:0d3a137305f0b57b724553b21be0e5ec39b358da44e553f41fc66e9d8f28ce65',4,7,'remote',0,0,8,'urn:X-dfrn:192.168.22.10:3:0d3a137305f0b57b724553b21be0e5ec39b358da44e553f41fc66e9d8f28ce65','','urn:X-dfrn:192.168.22.10:3:0d3a137305f0b57b724553b21be0e5ec39b358da44e553f41fc66e9d8f28ce65','2015-02-02 18:34:31','2015-02-02 18:34:31','2015-02-02 18:50:08','2015-02-02 18:50:08','2015-02-02 18:50:08','friendica2','http://192.168.22.10/profile/friendica2','http://192.168.22.10/photo/avatar/3.jpg','friendica2','http://192.168.22.10/profile/friendica2','http://192.168.22.10/photo/avatar/3.jpg','Friendica2 is here!','Hi, this is my first post!','','http://activitystrea.ms/schema/1.0/post','','','','','lang=latin;0.27460317460317:english;0.26285714285714:french;0.15936507936508','http://192.168.22.10/display/friendica2/2','',0,'','','','','','','','','','',0,0,0,1,0,0,0,0,0,0,0,1,0,'dfrn'),(9,'384434952122597196054cfc3e54fb70','urn:X-dfrn:192.168.22.10:6:5e30601337e1e0e76da32f5eefec71954162a82e73c3369249bddc98a0e266b7',5,10,'remote',0,0,9,'urn:X-dfrn:192.168.22.10:6:5e30601337e1e0e76da32f5eefec71954162a82e73c3369249bddc98a0e266b7','','urn:X-dfrn:192.168.22.10:6:5e30601337e1e0e76da32f5eefec71954162a82e73c3369249bddc98a0e266b7','2015-02-02 18:37:25','2015-02-02 18:37:25','2015-02-02 18:50:11','2015-02-02 18:50:11','2015-02-02 18:50:11','friendica4','http://192.168.22.10/profile/friendica4','http://192.168.22.10/photo/avatar/6.jpg','friendica4','http://192.168.22.10/profile/friendica4','http://192.168.22.10/photo/avatar/6.jpg','Friendica4 check-in','Hey ho!','','http://activitystrea.ms/schema/1.0/post','','','','','lang=hawaiian;0.42722222222222:english;0.41388888888889:vietnamese;0.25333333333333','http://192.168.22.10/display/friendica4/4','',0,'','','','','','','','','','',0,0,0,1,0,0,0,1,0,0,0,1,0,'dfrn'),(10,'134524908174756698954cfc6f6af694','urn:X-dfrn:192.168.22.10:2:1cece68cbcb342dbcc12b18aae215d73c66e0ae06ecb26d33bc4d674751eb9b2',2,2,'wall',1,0,10,'urn:X-dfrn:192.168.22.10:2:1cece68cbcb342dbcc12b18aae215d73c66e0ae06ecb26d33bc4d674751eb9b2','','urn:X-dfrn:192.168.22.10:2:1cece68cbcb342dbcc12b18aae215d73c66e0ae06ecb26d33bc4d674751eb9b2','2015-02-02 18:50:30','2015-02-02 18:50:30','2015-02-02 18:50:30','2015-02-02 18:50:30','2015-02-02 18:50:30','friendica1','http://192.168.22.10/profile/friendica1','http://192.168.22.10/photo/avatar/2.jpg','friendica1','http://192.168.22.10/profile/friendica1','http://192.168.22.10/photo/avatar/2.jpg','Friendica1 is here, too!','Yo!','','http://activitystrea.ms/schema/1.0/post','http://activitystrea.ms/schema/1.0/note','','','','','http://192.168.22.10/display/134524908174756698954cfc6f6af694','',0,'','','','','','','','','','',0,0,0,1,0,0,0,0,0,1,0,1,0,'dfrn'),(11,'173326339068575320654cfc86b794cc','urn:X-dfrn:192.168.22.10:2:83eb0c132241d0746df5aa23aa82cba2ffd8490e4d7c189a0df78b7586b58592',2,2,'wall',1,0,11,'urn:X-dfrn:192.168.22.10:2:83eb0c132241d0746df5aa23aa82cba2ffd8490e4d7c189a0df78b7586b58592','','urn:X-dfrn:192.168.22.10:2:83eb0c132241d0746df5aa23aa82cba2ffd8490e4d7c189a0df78b7586b58592','2015-02-02 18:56:43','2015-02-02 18:56:43','2015-02-02 19:00:13','2015-02-02 18:56:43','2015-02-02 19:00:13','friendica1','http://192.168.22.10/profile/friendica1','http://192.168.22.10/photo/avatar/2.jpg','friendica1','http://192.168.22.10/profile/friendica1','http://192.168.22.10/photo/avatar/2.jpg','Friendica1 posting to group1','This post goes to group1, containing friendica2 and friendica4.','','http://activitystrea.ms/schema/1.0/post','http://activitystrea.ms/schema/1.0/note','','','','lang=english;0.33489361702128:pidgin;0.26085106382979:lithuanian;0.23836879432624','http://192.168.22.10/display/173326339068575320654cfc86b794cc','',0,'','','','','','','','<7>','','',1,0,0,1,0,0,0,0,0,1,0,0,0,'dfrn'),(12,'173326339068575320654cfc86b794cc','urn:X-dfrn:192.168.22.10:2:83eb0c132241d0746df5aa23aa82cba2ffd8490e4d7c189a0df78b7586b58592',3,11,'remote',0,0,12,'urn:X-dfrn:192.168.22.10:2:83eb0c132241d0746df5aa23aa82cba2ffd8490e4d7c189a0df78b7586b58592','','urn:X-dfrn:192.168.22.10:2:83eb0c132241d0746df5aa23aa82cba2ffd8490e4d7c189a0df78b7586b58592','2015-02-02 18:56:43','2015-02-02 18:56:43','2015-02-02 19:00:13','2015-02-02 18:56:44','2015-02-02 19:00:13','friendica1','http://192.168.22.10/profile/friendica1','http://192.168.22.10/photo/avatar/2.jpg','friendica1','http://192.168.22.10/profile/friendica1','http://192.168.22.10/photo/avatar/2.jpg','Friendica1 posting to group1','This post goes to group1, containing friendica2 and friendica4.','','http://activitystrea.ms/schema/1.0/post','','','','','lang=english;0.33489361702128:pidgin;0.26085106382979:lithuanian;0.23836879432624','http://192.168.22.10/display/friendica1/11','',0,'','','','','','','','','','',1,0,0,1,0,0,0,0,0,0,0,0,0,'dfrn'),(13,'173326339068575320654cfc86b794cc','urn:X-dfrn:192.168.22.10:2:83eb0c132241d0746df5aa23aa82cba2ffd8490e4d7c189a0df78b7586b58592',6,17,'remote',0,0,13,'urn:X-dfrn:192.168.22.10:2:83eb0c132241d0746df5aa23aa82cba2ffd8490e4d7c189a0df78b7586b58592','','urn:X-dfrn:192.168.22.10:2:83eb0c132241d0746df5aa23aa82cba2ffd8490e4d7c189a0df78b7586b58592','2015-02-02 18:56:43','2015-02-02 18:56:43','2015-02-02 19:00:16','2015-02-02 18:56:46','2015-02-02 19:00:16','friendica1','http://192.168.22.10/profile/friendica1','http://192.168.22.10/photo/avatar/2.jpg','friendica1','http://192.168.22.10/profile/friendica1','http://192.168.22.10/photo/avatar/2.jpg','Friendica1 posting to group1','This post goes to group1, containing friendica2 and friendica4.','','http://activitystrea.ms/schema/1.0/post','','','','','lang=english;0.33489361702128:pidgin;0.26085106382979:lithuanian;0.23836879432624','http://192.168.22.10/display/friendica1/11','',0,'','','','','','','','','','',1,0,0,1,0,0,0,0,0,0,0,0,0,'dfrn'),(14,'115265984886425346054cfc8cd2b30d','urn:X-dfrn:192.168.22.10:2:979bf84af239ceb7f18d4ca98a518b87f86ecc993facf9821a03153d950496e9',2,2,'wall',1,0,14,'urn:X-dfrn:192.168.22.10:2:979bf84af239ceb7f18d4ca98a518b87f86ecc993facf9821a03153d950496e9','','urn:X-dfrn:192.168.22.10:2:979bf84af239ceb7f18d4ca98a518b87f86ecc993facf9821a03153d950496e9','2015-02-02 18:58:21','2015-02-02 18:58:21','2015-02-02 18:58:21','2015-02-02 18:58:21','2015-02-02 18:58:21','friendica1','http://192.168.22.10/profile/friendica1','http://192.168.22.10/photo/avatar/2.jpg','friendica1','http://192.168.22.10/profile/friendica1','http://192.168.22.10/photo/avatar/2.jpg','Friendica1 posting to group2','This post is visible to group2, that is friendica3 and friendica5.','','http://activitystrea.ms/schema/1.0/post','http://activitystrea.ms/schema/1.0/note','','','','lang=english;0.34785185185185:lithuanian;0.22888888888889:pidgin;0.22266666666667','http://192.168.22.10/display/115265984886425346054cfc8cd2b30d','',0,'','','','','','','','<8>','','',1,0,0,1,0,0,0,0,0,1,0,1,0,'dfrn'),(15,'115265984886425346054cfc8cd2b30d','urn:X-dfrn:192.168.22.10:2:979bf84af239ceb7f18d4ca98a518b87f86ecc993facf9821a03153d950496e9',4,13,'remote',0,0,15,'urn:X-dfrn:192.168.22.10:2:979bf84af239ceb7f18d4ca98a518b87f86ecc993facf9821a03153d950496e9','','urn:X-dfrn:192.168.22.10:2:979bf84af239ceb7f18d4ca98a518b87f86ecc993facf9821a03153d950496e9','2015-02-02 18:58:21','2015-02-02 18:58:21','2015-02-02 18:58:22','2015-02-02 18:58:22','2015-02-02 18:58:22','friendica1','http://192.168.22.10/profile/friendica1','http://192.168.22.10/photo/avatar/2.jpg','friendica1','http://192.168.22.10/profile/friendica1','http://192.168.22.10/photo/avatar/2.jpg','Friendica1 posting to group2','This post is visible to group2, that is friendica3 and friendica5.','','http://activitystrea.ms/schema/1.0/post','','','','','lang=english;0.34785185185185:lithuanian;0.22888888888889:pidgin;0.22266666666667','http://192.168.22.10/display/friendica1/14','',0,'','','','','','','','','','',1,0,0,1,0,0,0,0,0,0,0,1,0,'dfrn'),(16,'115265984886425346054cfc8cd2b30d','urn:X-dfrn:192.168.22.10:2:979bf84af239ceb7f18d4ca98a518b87f86ecc993facf9821a03153d950496e9',5,15,'remote',0,0,16,'urn:X-dfrn:192.168.22.10:2:979bf84af239ceb7f18d4ca98a518b87f86ecc993facf9821a03153d950496e9','','urn:X-dfrn:192.168.22.10:2:979bf84af239ceb7f18d4ca98a518b87f86ecc993facf9821a03153d950496e9','2015-02-02 18:58:21','2015-02-02 18:58:21','2015-02-02 18:58:24','2015-02-02 18:58:24','2015-02-02 18:58:24','friendica1','http://192.168.22.10/profile/friendica1','http://192.168.22.10/photo/avatar/2.jpg','friendica1','http://192.168.22.10/profile/friendica1','http://192.168.22.10/photo/avatar/2.jpg','Friendica1 posting to group2','This post is visible to group2, that is friendica3 and friendica5.','','http://activitystrea.ms/schema/1.0/post','','','','','lang=english;0.34785185185185:lithuanian;0.22888888888889:pidgin;0.22266666666667','http://192.168.22.10/display/friendica1/14','',0,'','','','','','','','','','',1,0,0,1,0,0,0,1,0,0,0,1,0,'dfrn'),(17,'147164917208927777754cfc90495ae1','urn:X-dfrn:192.168.22.10:6:867f4977b76e9c71928e8cc4630d51b89b86669b1d0124f3c22412406dad62ee',6,6,'remote-comment',0,6,13,'urn:X-dfrn:192.168.22.10:2:83eb0c132241d0746df5aa23aa82cba2ffd8490e4d7c189a0df78b7586b58592','','urn:X-dfrn:192.168.22.10:2:83eb0c132241d0746df5aa23aa82cba2ffd8490e4d7c189a0df78b7586b58592','2015-02-02 18:59:16','2015-02-02 18:59:16','2015-02-02 18:59:16','2015-02-02 18:59:16','2015-02-02 18:59:16','friendica4','http://192.168.22.10/profile/friendica4','http://192.168.22.10/photo/avatar/6.jpg','friendica4','http://192.168.22.10/profile/friendica4','http://192.168.22.10/photo/avatar/6.jpg','','This is a comment on a group1 post.','','http://activitystrea.ms/schema/1.0/post','http://activitystrea.ms/schema/1.0/comment','','','','lang=english;0.42811111111111:french;0.37277777777778:latin;0.29722222222222','http://192.168.22.10/display/147164917208927777754cfc90495ae1','',0,'','','','','','','','','','',1,0,0,1,0,0,0,0,0,1,0,1,0,'dfrn'),(18,'147164917208927777754cfc90495ae1','urn:X-dfrn:192.168.22.10:6:867f4977b76e9c71928e8cc4630d51b89b86669b1d0124f3c22412406dad62ee',2,18,'remote-comment',1,6,11,'urn:X-dfrn:192.168.22.10:2:83eb0c132241d0746df5aa23aa82cba2ffd8490e4d7c189a0df78b7586b58592','','urn:X-dfrn:192.168.22.10:2:83eb0c132241d0746df5aa23aa82cba2ffd8490e4d7c189a0df78b7586b58592','2015-02-02 18:59:16','2015-02-02 18:59:16','2015-02-02 18:59:17','2015-02-02 18:59:17','2015-02-02 19:00:13','friendica1','http://192.168.22.10/profile/friendica1','http://192.168.22.10/photo/avatar/2.jpg','friendica4','http://192.168.22.10/profile/friendica4','http://192.168.22.10/photo/avatar/6.jpg','','This is a comment on a group1 post.','','http://activitystrea.ms/schema/1.0/post','','','','','lang=english;0.42811111111111:french;0.37277777777778:latin;0.29722222222222','http://192.168.22.10/display/friendica4/17','',0,'','','','','','','','<7>','','',1,0,0,1,0,0,0,0,0,0,0,0,0,'dfrn'),(19,'147164917208927777754cfc90495ae1','urn:X-dfrn:192.168.22.10:6:867f4977b76e9c71928e8cc4630d51b89b86669b1d0124f3c22412406dad62ee',3,11,'remote',0,6,12,'urn:X-dfrn:192.168.22.10:2:83eb0c132241d0746df5aa23aa82cba2ffd8490e4d7c189a0df78b7586b58592','','urn:X-dfrn:192.168.22.10:2:83eb0c132241d0746df5aa23aa82cba2ffd8490e4d7c189a0df78b7586b58592','2015-02-02 18:59:16','2015-02-02 18:59:16','2015-02-02 18:59:18','2015-02-02 18:59:18','2015-02-02 19:00:13','friendica1','http://192.168.22.10/profile/friendica1','http://192.168.22.10/photo/avatar/2.jpg','friendica4','http://192.168.22.10/profile/friendica4','http://192.168.22.10/photo/avatar/6.jpg','','This is a comment on a group1 post.','','http://activitystrea.ms/schema/1.0/post','','','','','lang=english;0.42811111111111:french;0.37277777777778:latin;0.29722222222222','http://192.168.22.10/display/friendica1/18','',0,'','','','','','','','','','',1,0,0,1,0,0,0,0,0,0,0,0,0,'dfrn'),(20,'134524908174756698954cfc6f6af694','urn:X-dfrn:192.168.22.10:2:1cece68cbcb342dbcc12b18aae215d73c66e0ae06ecb26d33bc4d674751eb9b2',6,17,'remote',0,0,20,'urn:X-dfrn:192.168.22.10:2:1cece68cbcb342dbcc12b18aae215d73c66e0ae06ecb26d33bc4d674751eb9b2','','urn:X-dfrn:192.168.22.10:2:1cece68cbcb342dbcc12b18aae215d73c66e0ae06ecb26d33bc4d674751eb9b2','2015-02-02 18:50:30','2015-02-02 18:50:30','2015-02-02 19:00:03','2015-02-02 19:00:03','2015-02-02 19:00:03','friendica1','http://192.168.22.10/profile/friendica1','http://192.168.22.10/photo/avatar/2.jpg','friendica1','http://192.168.22.10/profile/friendica1','http://192.168.22.10/photo/avatar/2.jpg','Friendica1 is here, too!','Yo!','','http://activitystrea.ms/schema/1.0/post','','','','','','http://192.168.22.10/display/friendica1/10','',0,'','','','','','','','','','',0,0,0,1,0,0,0,0,0,0,0,1,0,'dfrn'),(21,'134524908174756698954cfc6f6af694','urn:X-dfrn:192.168.22.10:2:1cece68cbcb342dbcc12b18aae215d73c66e0ae06ecb26d33bc4d674751eb9b2',5,15,'remote',0,0,21,'urn:X-dfrn:192.168.22.10:2:1cece68cbcb342dbcc12b18aae215d73c66e0ae06ecb26d33bc4d674751eb9b2','','urn:X-dfrn:192.168.22.10:2:1cece68cbcb342dbcc12b18aae215d73c66e0ae06ecb26d33bc4d674751eb9b2','2015-02-02 18:50:30','2015-02-02 18:50:30','2015-02-02 19:00:06','2015-02-02 19:00:06','2015-02-02 19:00:06','friendica1','http://192.168.22.10/profile/friendica1','http://192.168.22.10/photo/avatar/2.jpg','friendica1','http://192.168.22.10/profile/friendica1','http://192.168.22.10/photo/avatar/2.jpg','Friendica1 is here, too!','Yo!','','http://activitystrea.ms/schema/1.0/post','','','','','','http://192.168.22.10/display/friendica1/10','',0,'','','','','','','','','','',0,0,0,1,0,0,0,1,0,0,0,1,0,'dfrn'),(22,'134524908174756698954cfc6f6af694','urn:X-dfrn:192.168.22.10:2:1cece68cbcb342dbcc12b18aae215d73c66e0ae06ecb26d33bc4d674751eb9b2',3,11,'remote',0,0,22,'urn:X-dfrn:192.168.22.10:2:1cece68cbcb342dbcc12b18aae215d73c66e0ae06ecb26d33bc4d674751eb9b2','','urn:X-dfrn:192.168.22.10:2:1cece68cbcb342dbcc12b18aae215d73c66e0ae06ecb26d33bc4d674751eb9b2','2015-02-02 18:50:30','2015-02-02 18:50:30','2015-02-02 19:00:09','2015-02-02 19:00:09','2015-02-02 19:00:09','friendica1','http://192.168.22.10/profile/friendica1','http://192.168.22.10/photo/avatar/2.jpg','friendica1','http://192.168.22.10/profile/friendica1','http://192.168.22.10/photo/avatar/2.jpg','Friendica1 is here, too!','Yo!','','http://activitystrea.ms/schema/1.0/post','','','','','','http://192.168.22.10/display/friendica1/10','',0,'','','','','','','','','','',0,0,0,1,0,0,0,0,0,0,0,1,0,'dfrn'),(23,'480886065162043563354cfc37dd52a5','urn:X-dfrn:192.168.22.10:4:39454efb15b0aff04057c81b8d4cd36f68b0d9fa37cf2c8adcefc596bc8fa61b',2,14,'remote',0,0,23,'urn:X-dfrn:192.168.22.10:4:39454efb15b0aff04057c81b8d4cd36f68b0d9fa37cf2c8adcefc596bc8fa61b','','urn:X-dfrn:192.168.22.10:4:39454efb15b0aff04057c81b8d4cd36f68b0d9fa37cf2c8adcefc596bc8fa61b','2015-02-02 18:35:41','2015-02-02 18:35:41','2015-02-02 19:00:12','2015-02-02 19:00:12','2015-02-02 19:00:12','friendica3','http://192.168.22.10/profile/friendica3','http://192.168.22.10/photo/avatar/4.jpg','friendica3','http://192.168.22.10/profile/friendica3','http://192.168.22.10/photo/avatar/4.jpg','Friendica3 says hi','Here I am!','','http://activitystrea.ms/schema/1.0/post','','','','','lang=danish;0.54814814814815:english;0.48925925925926:italian;0.43','http://192.168.22.10/display/friendica3/3','',0,'','','','','','','','','','',0,0,0,1,0,0,0,0,0,0,0,1,0,'dfrn'),(24,'962929709188110261054cfc93d1c583','urn:X-dfrn:192.168.22.10:3:3168271a1dea83d54e5a024e8f82a38b7fe8a15a9cce3bcf8370d583170d4fac',3,3,'remote-comment',0,6,12,'urn:X-dfrn:192.168.22.10:2:83eb0c132241d0746df5aa23aa82cba2ffd8490e4d7c189a0df78b7586b58592','','urn:X-dfrn:192.168.22.10:2:83eb0c132241d0746df5aa23aa82cba2ffd8490e4d7c189a0df78b7586b58592','2015-02-02 19:00:13','2015-02-02 19:00:13','2015-02-02 19:00:13','2015-02-02 19:00:13','2015-02-02 19:00:13','friendica2','http://192.168.22.10/profile/friendica2','http://192.168.22.10/photo/avatar/3.jpg','friendica2','http://192.168.22.10/profile/friendica2','http://192.168.22.10/photo/avatar/3.jpg','','I am in group1 and I can read the post and the comment.','','http://activitystrea.ms/schema/1.0/post','http://activitystrea.ms/schema/1.0/comment','','','','lang=english;0.43734848484848:italian;0.32325757575758:romanian;0.31931818181818','http://192.168.22.10/display/962929709188110261054cfc93d1c583','',0,'','','','','','','','','','',1,0,0,1,0,0,0,0,0,1,0,1,0,'dfrn'),(25,'962929709188110261054cfc93d1c583','urn:X-dfrn:192.168.22.10:3:3168271a1dea83d54e5a024e8f82a38b7fe8a15a9cce3bcf8370d583170d4fac',2,12,'remote-comment',1,6,11,'urn:X-dfrn:192.168.22.10:2:83eb0c132241d0746df5aa23aa82cba2ffd8490e4d7c189a0df78b7586b58592','','urn:X-dfrn:192.168.22.10:2:83eb0c132241d0746df5aa23aa82cba2ffd8490e4d7c189a0df78b7586b58592','2015-02-02 19:00:13','2015-02-02 19:00:13','2015-02-02 19:00:13','2015-02-02 19:00:13','2015-02-02 19:00:13','friendica1','http://192.168.22.10/profile/friendica1','http://192.168.22.10/photo/avatar/2.jpg','friendica2','http://192.168.22.10/profile/friendica2','http://192.168.22.10/photo/avatar/3.jpg','','I am in group1 and I can read the post and the comment.','','http://activitystrea.ms/schema/1.0/post','','','','','lang=english;0.43734848484848:italian;0.32325757575758:romanian;0.31931818181818','http://192.168.22.10/display/friendica2/24','',0,'','','','','','','','<7>','','',1,0,0,1,0,0,0,0,0,0,0,1,0,'dfrn'),(26,'134524908174756698954cfc6f6af694','urn:X-dfrn:192.168.22.10:2:1cece68cbcb342dbcc12b18aae215d73c66e0ae06ecb26d33bc4d674751eb9b2',4,13,'remote',0,0,26,'urn:X-dfrn:192.168.22.10:2:1cece68cbcb342dbcc12b18aae215d73c66e0ae06ecb26d33bc4d674751eb9b2','','urn:X-dfrn:192.168.22.10:2:1cece68cbcb342dbcc12b18aae215d73c66e0ae06ecb26d33bc4d674751eb9b2','2015-02-02 18:50:30','2015-02-02 18:50:30','2015-02-02 19:00:15','2015-02-02 19:00:15','2015-02-02 19:00:15','friendica1','http://192.168.22.10/profile/friendica1','http://192.168.22.10/photo/avatar/2.jpg','friendica1','http://192.168.22.10/profile/friendica1','http://192.168.22.10/photo/avatar/2.jpg','Friendica1 is here, too!','Yo!','','http://activitystrea.ms/schema/1.0/post','','','','','','http://192.168.22.10/display/friendica1/10','',0,'','','','','','','','','','',0,0,0,1,0,0,0,1,0,0,0,1,0,'dfrn'),(27,'962929709188110261054cfc93d1c583','urn:X-dfrn:192.168.22.10:3:3168271a1dea83d54e5a024e8f82a38b7fe8a15a9cce3bcf8370d583170d4fac',6,17,'remote',0,6,13,'urn:X-dfrn:192.168.22.10:2:83eb0c132241d0746df5aa23aa82cba2ffd8490e4d7c189a0df78b7586b58592','','urn:X-dfrn:192.168.22.10:2:83eb0c132241d0746df5aa23aa82cba2ffd8490e4d7c189a0df78b7586b58592','2015-02-02 19:00:13','2015-02-02 19:00:13','2015-02-02 19:00:16','2015-02-02 19:00:16','2015-02-02 19:00:16','friendica1','http://192.168.22.10/profile/friendica1','http://192.168.22.10/photo/avatar/2.jpg','friendica2','http://192.168.22.10/profile/friendica2','http://192.168.22.10/photo/avatar/3.jpg','','I am in group1 and I can read the post and the comment.','','http://activitystrea.ms/schema/1.0/post','','','','','lang=english;0.43734848484848:italian;0.32325757575758:romanian;0.31931818181818','http://192.168.22.10/display/friendica1/25','',0,'','','','','','','','','','',1,0,0,1,0,0,0,0,0,0,0,1,0,'dfrn'),(28,'855416271212197658654cfc567bcd52','urn:X-dfrn:192.168.22.10:5:e5b0ebeda709811e23178fef5c443cdd9fc9b40cf1bbef31f4860c3ef9a4f87b',2,16,'remote',0,0,28,'urn:X-dfrn:192.168.22.10:5:e5b0ebeda709811e23178fef5c443cdd9fc9b40cf1bbef31f4860c3ef9a4f87b','','urn:X-dfrn:192.168.22.10:5:e5b0ebeda709811e23178fef5c443cdd9fc9b40cf1bbef31f4860c3ef9a4f87b','2015-02-02 18:43:51','2015-02-02 18:43:51','2015-02-02 19:00:18','2015-02-02 19:00:18','2015-02-02 19:00:18','friendica5','http://192.168.22.10/profile/friendica5','http://192.168.22.10/photo/avatar/5.jpg','friendica5','http://192.168.22.10/profile/friendica5','http://192.168.22.10/photo/avatar/5.jpg','Friendica5 mic check','There we go!','','http://activitystrea.ms/schema/1.0/post','','','','','lang=pidgin;0.6330303030303:english;0.54242424242424:dutch;0.29969696969697','http://192.168.22.10/display/friendica5/5','',0,'','','','','','','','','','',0,0,0,1,0,0,0,0,0,0,0,1,0,'dfrn'),(29,'513563952202228973954cfc33761f0c','urn:X-dfrn:192.168.22.10:3:0d3a137305f0b57b724553b21be0e5ec39b358da44e553f41fc66e9d8f28ce65',2,12,'remote',0,0,29,'urn:X-dfrn:192.168.22.10:3:0d3a137305f0b57b724553b21be0e5ec39b358da44e553f41fc66e9d8f28ce65','','urn:X-dfrn:192.168.22.10:3:0d3a137305f0b57b724553b21be0e5ec39b358da44e553f41fc66e9d8f28ce65','2015-02-02 18:34:31','2015-02-02 18:34:31','2015-02-02 19:00:21','2015-02-02 19:00:21','2015-02-02 19:00:21','friendica2','http://192.168.22.10/profile/friendica2','http://192.168.22.10/photo/avatar/3.jpg','friendica2','http://192.168.22.10/profile/friendica2','http://192.168.22.10/photo/avatar/3.jpg','Friendica2 is here!','Hi, this is my first post!','','http://activitystrea.ms/schema/1.0/post','','','','','lang=latin;0.27460317460317:english;0.26285714285714:french;0.15936507936508','http://192.168.22.10/display/friendica2/2','',0,'','','','','','','','','','',0,0,0,1,0,0,0,0,0,0,0,1,0,'dfrn'),(30,'384434952122597196054cfc3e54fb70','urn:X-dfrn:192.168.22.10:6:5e30601337e1e0e76da32f5eefec71954162a82e73c3369249bddc98a0e266b7',2,18,'remote',0,0,30,'urn:X-dfrn:192.168.22.10:6:5e30601337e1e0e76da32f5eefec71954162a82e73c3369249bddc98a0e266b7','','urn:X-dfrn:192.168.22.10:6:5e30601337e1e0e76da32f5eefec71954162a82e73c3369249bddc98a0e266b7','2015-02-02 18:37:25','2015-02-02 18:37:25','2015-02-02 19:00:24','2015-02-02 19:00:24','2015-02-02 19:00:24','friendica4','http://192.168.22.10/profile/friendica4','http://192.168.22.10/photo/avatar/6.jpg','friendica4','http://192.168.22.10/profile/friendica4','http://192.168.22.10/photo/avatar/6.jpg','Friendica4 check-in','Hey ho!','','http://activitystrea.ms/schema/1.0/post','','','','','lang=hawaiian;0.42722222222222:english;0.41388888888889:vietnamese;0.25333333333333','http://192.168.22.10/display/friendica4/4','',0,'','','','','','','','','','',0,0,0,1,0,0,0,0,0,0,0,1,0,'dfrn'); +/*!40000 ALTER TABLE `item` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `item_id` +-- + +DROP TABLE IF EXISTS `item_id`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `item_id` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `iid` int(11) NOT NULL DEFAULT '0', + `uid` int(11) NOT NULL DEFAULT '0', + `sid` varchar(255) NOT NULL DEFAULT '', + `service` varchar(255) NOT NULL DEFAULT '', + PRIMARY KEY (`id`), + KEY `uid` (`uid`), + KEY `sid` (`sid`), + KEY `service` (`service`), + KEY `iid` (`iid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `item_id` +-- + +LOCK TABLES `item_id` WRITE; +/*!40000 ALTER TABLE `item_id` DISABLE KEYS */; +/*!40000 ALTER TABLE `item_id` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `locks` +-- + +DROP TABLE IF EXISTS `locks`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `locks` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `name` varchar(128) NOT NULL DEFAULT '', + `locked` tinyint(1) NOT NULL DEFAULT '0', + `created` datetime DEFAULT '0000-00-00 00:00:00', + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `locks` +-- + +LOCK TABLES `locks` WRITE; +/*!40000 ALTER TABLE `locks` DISABLE KEYS */; +/*!40000 ALTER TABLE `locks` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mail` +-- + +DROP TABLE IF EXISTS `mail`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mail` ( + `id` int(10) unsigned NOT NULL AUTO_INCREMENT, + `uid` int(10) unsigned NOT NULL DEFAULT '0', + `guid` varchar(64) NOT NULL DEFAULT '', + `from-name` varchar(255) NOT NULL DEFAULT '', + `from-photo` varchar(255) NOT NULL DEFAULT '', + `from-url` varchar(255) NOT NULL DEFAULT '', + `contact-id` varchar(255) NOT NULL DEFAULT '', + `convid` int(11) unsigned NOT NULL DEFAULT '0', + `title` varchar(255) NOT NULL DEFAULT '', + `body` mediumtext NOT NULL, + `seen` tinyint(1) NOT NULL DEFAULT '0', + `reply` tinyint(1) NOT NULL DEFAULT '0', + `replied` tinyint(1) NOT NULL DEFAULT '0', + `unknown` tinyint(1) NOT NULL DEFAULT '0', + `uri` varchar(255) NOT NULL DEFAULT '', + `parent-uri` varchar(255) NOT NULL DEFAULT '', + `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + PRIMARY KEY (`id`), + KEY `uid` (`uid`), + KEY `guid` (`guid`), + KEY `convid` (`convid`), + KEY `reply` (`reply`), + KEY `uri` (`uri`), + KEY `parent-uri` (`parent-uri`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mail` +-- + +LOCK TABLES `mail` WRITE; +/*!40000 ALTER TABLE `mail` DISABLE KEYS */; +/*!40000 ALTER TABLE `mail` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mailacct` +-- + +DROP TABLE IF EXISTS `mailacct`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mailacct` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `uid` int(11) NOT NULL DEFAULT '0', + `server` varchar(255) NOT NULL DEFAULT '', + `port` int(11) NOT NULL DEFAULT '0', + `ssltype` varchar(16) NOT NULL DEFAULT '', + `mailbox` varchar(255) NOT NULL DEFAULT '', + `user` varchar(255) NOT NULL DEFAULT '', + `pass` text NOT NULL, + `reply_to` varchar(255) NOT NULL DEFAULT '', + `action` int(11) NOT NULL DEFAULT '0', + `movetofolder` varchar(255) NOT NULL DEFAULT '', + `pubmail` tinyint(1) NOT NULL DEFAULT '0', + `last_check` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mailacct` +-- + +LOCK TABLES `mailacct` WRITE; +/*!40000 ALTER TABLE `mailacct` DISABLE KEYS */; +/*!40000 ALTER TABLE `mailacct` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `manage` +-- + +DROP TABLE IF EXISTS `manage`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `manage` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `uid` int(11) NOT NULL DEFAULT '0', + `mid` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`id`), + KEY `uid_mid` (`uid`,`mid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `manage` +-- + +LOCK TABLES `manage` WRITE; +/*!40000 ALTER TABLE `manage` DISABLE KEYS */; +/*!40000 ALTER TABLE `manage` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `notify` +-- + +DROP TABLE IF EXISTS `notify`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `notify` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `hash` varchar(64) NOT NULL DEFAULT '', + `type` int(11) NOT NULL DEFAULT '0', + `name` varchar(255) NOT NULL DEFAULT '', + `url` varchar(255) NOT NULL DEFAULT '', + `photo` varchar(255) NOT NULL DEFAULT '', + `date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + `msg` mediumtext NOT NULL, + `uid` int(11) NOT NULL DEFAULT '0', + `link` varchar(255) NOT NULL DEFAULT '', + `parent` int(11) NOT NULL DEFAULT '0', + `seen` tinyint(1) NOT NULL DEFAULT '0', + `verb` varchar(255) NOT NULL DEFAULT '', + `otype` varchar(16) NOT NULL DEFAULT '', + PRIMARY KEY (`id`), + KEY `uid` (`uid`) +) ENGINE=InnoDB AUTO_INCREMENT=16 DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `notify` +-- + +LOCK TABLES `notify` WRITE; +/*!40000 ALTER TABLE `notify` DISABLE KEYS */; +INSERT INTO `notify` VALUES (1,'3d5423a2cc45d4b8c8b290c660e2c6b8e57b9e88b671e4c579a559be08b27561',1,'friendica2','http://192.168.22.10/profile/friendica2','http://192.168.22.10/photo/profile/3.jpg?rev=2015-02-02+12%3A02%3A40','2015-02-02 18:41:22','You\'ve received [url=]an introduction[/url] from [url=http://192.168.22.10/profile/friendica2]friendica2[/url].',4,'http://192.168.22.10/notifications/intros',0,1,'http://activitystrea.ms/schema/1.0/request-friend','intro'),(2,'fbda244c49b754cb9f025d492d75dd0117a3124a5be71aa8ec92b97f9d49ee56',2,'friendica3','http://192.168.22.10/profile/friendica3','http://192.168.22.10/photo/1f4766db71f0f2d503287947c1d67dcd-4.jpg','2015-02-02 18:41:48','[url=http://192.168.22.10/profile/friendica3]friendica3[/url] has accepted your [url=]connection request[/url].',3,'http://192.168.22.10/contacts/8',0,1,'http://activitystrea.ms/schema/1.0/make-friend','intro'),(3,'cfe0cdc5cc637ec14db44138a3763b8e837891649081f3537ed45ff900415468',1,'friendica4','http://192.168.22.10/profile/friendica4','http://192.168.22.10/photo/profile/6.jpg?rev=2015-02-02+12%3A04%3A29','2015-02-02 18:45:15','You\'ve received [url=]an introduction[/url] from [url=http://192.168.22.10/profile/friendica4]friendica4[/url].',5,'http://192.168.22.10/notifications/intros',0,0,'http://activitystrea.ms/schema/1.0/request-friend','intro'),(4,'babf1684421dae503abe820f19e2f4714e61b1813cef84bc79fb743992cc56d4',2,'friendica5','http://192.168.22.10/profile/friendica5','http://192.168.22.10/photo/75b60a2a1e6b2cdf2eb3637955a7a5c2-4.jpg','2015-02-02 18:45:30','[url=http://192.168.22.10/profile/friendica5]friendica5[/url] has accepted your [url=]connection request[/url].',6,'http://192.168.22.10/contacts/9',0,1,'http://activitystrea.ms/schema/1.0/make-friend','intro'),(5,'7d70a57209f952be69671134ea646cdd180308ecfbc11608cbc938a12b2b3a00',1,'friendica1','http://192.168.22.10/profile/friendica1','http://192.168.22.10/photo/profile/2.jpg?rev=2015-02-02+12%3A02%3A11','2015-02-02 18:49:41','You\'ve received [url=]an introduction[/url] from [url=http://192.168.22.10/profile/friendica1]friendica1[/url].',3,'http://192.168.22.10/notifications/intros',0,1,'http://activitystrea.ms/schema/1.0/request-friend','intro'),(6,'44f69e938a6125af6e7487da7b7933966f6f3bfc69da02989105e74110e4a061',1,'friendica1','http://192.168.22.10/profile/friendica1','http://192.168.22.10/photo/profile/2.jpg?rev=2015-02-02+12%3A02%3A11','2015-02-02 18:50:09','You\'ve received [url=]an introduction[/url] from [url=http://192.168.22.10/profile/friendica1]friendica1[/url].',4,'http://192.168.22.10/notifications/intros',0,1,'http://activitystrea.ms/schema/1.0/request-friend','intro'),(7,'f3f9b580032f30d6bc0832b66bbaaab56769d3aca16d1d790c256139eebee1b4',1,'friendica1','http://192.168.22.10/profile/friendica1','http://192.168.22.10/photo/profile/2.jpg?rev=2015-02-02+12%3A02%3A11','2015-02-02 18:50:55','You\'ve received [url=]an introduction[/url] from [url=http://192.168.22.10/profile/friendica1]friendica1[/url].',5,'http://192.168.22.10/notifications/intros',0,0,'http://activitystrea.ms/schema/1.0/request-friend','intro'),(8,'7c94e6c1e7ca90e651b8c0cea37d1f1466562b6e3248863336d32280d908c1fc',2,'friendica5','http://192.168.22.10/profile/friendica5','http://192.168.22.10/photo/01072618a17425401fafdeb40fcd79ac-4.jpg','2015-02-02 18:51:07','[url=http://192.168.22.10/profile/friendica5]friendica5[/url] has accepted your [url=]connection request[/url].',2,'http://192.168.22.10/contacts/16',0,1,'http://activitystrea.ms/schema/1.0/make-friend','intro'),(9,'31c4206b3a7dae13c8e9932d496dbab0b8a74b6230eb2656926523e85634d561',2,'friendica2','http://192.168.22.10/profile/friendica2','http://192.168.22.10/photo/b18ee0c7f160fdbf8f5d91a56a07a13c-4.jpg','2015-02-02 18:51:34','[url=http://192.168.22.10/profile/friendica2]friendica2[/url] has accepted your [url=]connection request[/url].',2,'http://192.168.22.10/contacts/12',0,1,'http://activitystrea.ms/schema/1.0/make-friend','intro'),(10,'d644bd370f1171b59135aa13f1fad8ac50f3043866b3d46315088f378018c35e',1,'friendica1','http://192.168.22.10/profile/friendica1','http://192.168.22.10/photo/profile/2.jpg?rev=2015-02-02+12%3A02%3A11','2015-02-02 18:52:03','You\'ve received [url=]an introduction[/url] from [url=http://192.168.22.10/profile/friendica1]friendica1[/url].',6,'http://192.168.22.10/notifications/intros',0,1,'http://activitystrea.ms/schema/1.0/request-friend','intro'),(11,'26d24ba1d23e382fba4b92ad1d9147a5a67128ea39fec7d86e324837fd32961d',2,'friendica3','http://192.168.22.10/profile/friendica3','http://192.168.22.10/photo/1fc6596c195944666e18cbd313795942-4.jpg','2015-02-02 18:52:24','[url=http://192.168.22.10/profile/friendica3]friendica3[/url] has accepted your [url=]connection request[/url].',2,'http://192.168.22.10/contacts/14',0,1,'http://activitystrea.ms/schema/1.0/make-friend','intro'),(12,'a3257549c21f341cbcbf5b91837dfba6c0266f2c8d511dcce9616f5dffb4813c',2,'friendica4','http://192.168.22.10/profile/friendica4','http://192.168.22.10/photo/0f1ac566d253bcd264437b7f7a347f88-4.jpg','2015-02-02 18:53:03','[url=http://192.168.22.10/profile/friendica4]friendica4[/url] has accepted your [url=]connection request[/url].',2,'http://192.168.22.10/contacts/18',0,1,'http://activitystrea.ms/schema/1.0/make-friend','intro'),(13,'a3b65a351066f8cac0690e182e4692f31744a73fc8b015f70ea18bcb52673c2d',8,'friendica4','http://192.168.22.10/profile/friendica4','http://192.168.22.10/photo/0f1ac566d253bcd264437b7f7a347f88-5.jpg','2015-02-02 18:59:17','[url=http://192.168.22.10/profile/friendica4]friendica4[/url] commented on [url=]your post[/url]',2,'http://192.168.22.10/display/147164917208927777754cfc90495ae1',11,0,'http://activitystrea.ms/schema/1.0/post','item'),(14,'bf0e548a4452320ec6415d395bfcec49f833ec1a6e1d377c4ccf856ce9729d17',8,'friendica2','http://192.168.22.10/profile/friendica2','http://192.168.22.10/photo/b18ee0c7f160fdbf8f5d91a56a07a13c-5.jpg','2015-02-02 19:00:13','[url=http://192.168.22.10/profile/friendica2]friendica2[/url] commented on [url=]your post[/url]',2,'http://192.168.22.10/display/962929709188110261054cfc93d1c583',11,0,'http://activitystrea.ms/schema/1.0/post','item'),(15,'c294b4af1bfc2c1f229db33d7b165265858e19321a8f5065c4c1095183689921',8,'friendica2','http://192.168.22.10/profile/friendica2','http://192.168.22.10/photo/avatar/3.jpg','2015-02-02 19:00:16','[url=http://192.168.22.10/profile/friendica2]friendica2[/url] commented on [url=]friendica1\'s post[/url]',6,'http://192.168.22.10/display/962929709188110261054cfc93d1c583',13,0,'http://activitystrea.ms/schema/1.0/post','item'); +/*!40000 ALTER TABLE `notify` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `notify-threads` +-- + +DROP TABLE IF EXISTS `notify-threads`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `notify-threads` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `notify-id` int(11) NOT NULL DEFAULT '0', + `master-parent-item` int(10) unsigned NOT NULL DEFAULT '0', + `parent-item` int(10) unsigned NOT NULL DEFAULT '0', + `receiver-uid` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`id`), + KEY `master-parent-item` (`master-parent-item`), + KEY `receiver-uid` (`receiver-uid`) +) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `notify-threads` +-- + +LOCK TABLES `notify-threads` WRITE; +/*!40000 ALTER TABLE `notify-threads` DISABLE KEYS */; +INSERT INTO `notify-threads` VALUES (1,13,11,0,2),(2,15,13,0,6); +/*!40000 ALTER TABLE `notify-threads` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `pconfig` +-- + +DROP TABLE IF EXISTS `pconfig`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `pconfig` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `uid` int(11) NOT NULL DEFAULT '0', + `cat` varchar(255) NOT NULL DEFAULT '', + `k` varchar(255) NOT NULL DEFAULT '', + `v` mediumtext NOT NULL, + PRIMARY KEY (`id`), + KEY `uid_cat_k` (`uid`,`cat`(30),`k`(30)) +) ENGINE=InnoDB AUTO_INCREMENT=79 DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `pconfig` +-- + +LOCK TABLES `pconfig` WRITE; +/*!40000 ALTER TABLE `pconfig` DISABLE KEYS */; +INSERT INTO `pconfig` VALUES (1,1,'expire','items','1'),(2,1,'expire','notes','1'),(3,1,'expire','starred','1'),(4,1,'expire','photos','0'),(5,1,'expire','network_only','0'),(6,1,'system','suggestme','0'),(7,1,'system','post_newfriend','0'),(8,1,'system','post_joingroup','0'),(9,1,'system','post_profilechange','0'),(10,1,'system','email_textonly','0'),(11,1,'network.view','group.selected','0'),(12,1,'network.view','tab.selected','a:7:{i:0;s:6:\"active\";i:1;s:0:\"\";i:2;s:0:\"\";i:3;s:0:\"\";i:4;s:0:\"\";i:5;s:0:\"\";i:6;s:0:\"\";}'),(13,1,'network.view','net.selected','all'),(14,2,'expire','items','1'),(15,2,'expire','notes','1'),(16,2,'expire','starred','1'),(17,2,'expire','photos','0'),(18,2,'expire','network_only','0'),(19,2,'system','suggestme','0'),(20,2,'system','post_newfriend','0'),(21,2,'system','post_joingroup','0'),(22,2,'system','post_profilechange','0'),(23,2,'system','email_textonly','0'),(24,3,'expire','items','1'),(25,3,'expire','notes','1'),(26,3,'expire','starred','1'),(27,3,'expire','photos','0'),(28,3,'expire','network_only','0'),(29,3,'system','suggestme','0'),(30,3,'system','post_newfriend','0'),(31,3,'system','post_joingroup','0'),(32,3,'system','post_profilechange','0'),(33,3,'system','email_textonly','0'),(34,4,'expire','items','1'),(35,4,'expire','notes','1'),(36,4,'expire','starred','1'),(37,4,'expire','photos','0'),(38,4,'expire','network_only','0'),(39,4,'system','suggestme','0'),(40,4,'system','post_newfriend','0'),(41,4,'system','post_joingroup','0'),(42,4,'system','post_profilechange','0'),(43,4,'system','email_textonly','0'),(44,4,'network.view','group.selected','0'),(45,4,'network.view','tab.selected','a:7:{i:0;s:6:\"active\";i:1;s:0:\"\";i:2;s:0:\"\";i:3;s:0:\"\";i:4;s:0:\"\";i:5;s:0:\"\";i:6;s:0:\"\";}'),(46,4,'network.view','net.selected','all'),(47,6,'expire','items','1'),(48,6,'expire','notes','1'),(49,6,'expire','starred','1'),(50,6,'expire','photos','0'),(51,6,'expire','network_only','0'),(52,6,'system','suggestme','0'),(53,6,'system','post_newfriend','0'),(54,6,'system','post_joingroup','0'),(55,6,'system','post_profilechange','0'),(56,6,'system','email_textonly','0'),(57,5,'expire','items','1'),(58,5,'expire','notes','1'),(59,5,'expire','starred','1'),(60,5,'expire','photos','0'),(61,5,'expire','network_only','0'),(62,5,'system','suggestme','0'),(63,5,'system','post_newfriend','0'),(64,5,'system','post_joingroup','0'),(65,5,'system','post_profilechange','0'),(66,5,'system','email_textonly','0'),(67,3,'network.view','group.selected','0'),(68,3,'network.view','tab.selected','a:7:{i:0;s:6:\"active\";i:1;s:0:\"\";i:2;s:0:\"\";i:3;s:0:\"\";i:4;s:0:\"\";i:5;s:0:\"\";i:6;s:0:\"\";}'),(69,3,'network.view','net.selected','all'),(70,6,'network.view','group.selected','0'),(71,6,'network.view','tab.selected','a:7:{i:0;s:6:\"active\";i:1;s:0:\"\";i:2;s:0:\"\";i:3;s:0:\"\";i:4;s:0:\"\";i:5;s:0:\"\";i:6;s:0:\"\";}'),(72,6,'network.view','net.selected','all'),(73,5,'network.view','group.selected','0'),(74,5,'network.view','tab.selected','a:7:{i:0;s:6:\"active\";i:1;s:0:\"\";i:2;s:0:\"\";i:3;s:0:\"\";i:4;s:0:\"\";i:5;s:0:\"\";i:6;s:0:\"\";}'),(75,5,'network.view','net.selected','all'),(76,2,'network.view','group.selected','0'),(77,2,'network.view','tab.selected','a:7:{i:0;s:6:\"active\";i:1;s:0:\"\";i:2;s:0:\"\";i:3;s:0:\"\";i:4;s:0:\"\";i:5;s:0:\"\";i:6;s:0:\"\";}'),(78,2,'network.view','net.selected','all'); +/*!40000 ALTER TABLE `pconfig` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `photo` +-- + +DROP TABLE IF EXISTS `photo`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `photo` ( + `id` int(10) unsigned NOT NULL AUTO_INCREMENT, + `uid` int(10) unsigned NOT NULL DEFAULT '0', + `contact-id` int(10) unsigned NOT NULL DEFAULT '0', + `guid` varchar(64) NOT NULL DEFAULT '', + `resource-id` varchar(255) NOT NULL DEFAULT '', + `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + `edited` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + `title` varchar(255) NOT NULL DEFAULT '', + `desc` text NOT NULL, + `album` varchar(255) NOT NULL DEFAULT '', + `filename` varchar(255) NOT NULL DEFAULT '', + `type` varchar(128) NOT NULL DEFAULT 'image/jpeg', + `height` smallint(6) NOT NULL DEFAULT '0', + `width` smallint(6) NOT NULL DEFAULT '0', + `datasize` int(10) unsigned NOT NULL DEFAULT '0', + `data` mediumblob NOT NULL, + `scale` tinyint(3) NOT NULL DEFAULT '0', + `profile` tinyint(1) NOT NULL DEFAULT '0', + `allow_cid` mediumtext NOT NULL, + `allow_gid` mediumtext NOT NULL, + `deny_cid` mediumtext NOT NULL, + `deny_gid` mediumtext NOT NULL, + PRIMARY KEY (`id`), + KEY `uid` (`uid`), + KEY `resource-id` (`resource-id`), + KEY `guid` (`guid`) +) ENGINE=InnoDB AUTO_INCREMENT=55 DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `photo` +-- + +LOCK TABLES `photo` WRITE; +/*!40000 ALTER TABLE `photo` DISABLE KEYS */; +INSERT INTO `photo` VALUES (1,1,0,'19754cf5e616d58b','29cf28c92e2f9327de1fd8f3772ff6eb','2015-02-02 11:24:17','2015-02-02 11:24:17','','','Profile Photos','person-175.jpg','image/jpeg',175,175,5531,'\0JFIF\0\0\0\0\0\0\0&Ǝwa-U*nG+/aX|R Duw)Rtܥa-`3x ^@\Zpv)\"K(G#{<4[Ny)ˋ RL$;V5ڟ礼F\ZjŽ/wܓ5=\'׆{1S?SUP_\0w?FTZyeC5{.ojS}mk?\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0`\0?s\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0`\0?s\0P\0 \0\0\0\0\0\0#!$0 \"1234BCScd%ADQRTaqst@UbruEP\0\0?\041 U3Y۟hXy\rkZs4JRIa(!N>W@`NW nj|c;|6sw6Y/D?.j/m-iMoC X[;xeWcNw6fKJrcx\\WTLj\0JFBd,MI*-qo6XrXctrL#;P_\\/P3I_/7_hПO\'QSU𲎆\\\Z;.<GrG!%;JDn8bV`}\ZGlj廑KBHfJG4n 8\0ؽ+!ЖJiw?#\num^38#Ԇd|/6Z7;)o`I\'\ns.7\'%n͍6@jc\'P͜Et\r鬽\nVD\0|tsEcċ{_,$VDT~\"BգZuxG[Pj t>:\rWA?9S\\S9Xx:j/7.h,&a(ו/N\Z΄\r\"gua1QHE\rD9-??F1FNg,Br?\n8U i] -MC0`-TY-\"plyB(V\r Dh<&\0Nn/bm_|P$n>(|cV>qx[dyR-!#nF8z%\\j%kr\r*-{\Z\0٨\0\0i@PA.*z7tAf4v4e2M5i6.]Z\"f%g)R\'0{-,,#G/8VC)Kh>mo:%d\"WW\'\rχ;zx֘Ѵ׍R ISO&-xwKO!~XQzHvf1g\\\Z{Q;jY\0!\'3vCO{iJҸҼи2sDrjǃ).[h yku-Vh:wBppͲ\Z{[΋xRX\"a7WJ0.ȶN.t`l?ѭ vВvMo@unp5pr)Z!*除\ZUՍmkI+F66R?g\nHyun>$BgpYlG6Ç\nlm+ni6\Zf7NZie\'Λd~nʴo .=#\"#튷,()fe 8S[#Ɓ %zd-dLςsr~-I<^BoYi#8m\0|Z~>f\n\'psb$RN{[c̅Hw\nb-:z\'M3(q@ = P)ׄJyS^)\Z$#UlH1j6U:\0 &AE\'v/.\\X`\rsޮƒ#*v)g^bԖ# \Z$3y9[?X^Ws2\0cٹ\Z\"AI(밑 aE +F69JTiE#\Z6P/\0jٽϣ~ׄl?/.\0(8<&M\0?\Z\0nJOf.W\0 \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\04\0\0\0\0\0\0\0\0\0\0\0P\0\0\0\0$\0\0\0\00\0\0\0\0\0\0\0\0\0 \0\0\0\0\0C\0\0\0\0\0\0@\0\0\0\0\0\0\0\0\0\0\0\0\0\0 \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0`\0?s\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0`\0?s\0)\0\0\0\0\0\0\0!\01A0Q aq@P\0\0?\0تf-:`\"#JAwH2Z\Z!cX`]+NC\\ 8ppA9VQa-^s(sTFe\"/\r]^M$g~\'8Y|+\\%z)E -@G${LHSVuk\"PQT щ#- (|Cq3a*X`:$N\0\rϥI*Nu1ontnc\\3TX<+fSh<;RiB ح!t =Dcd\\\0\"Fav^c+ۆn̺`C8 @\0*.0=SJ@<X\nL@Zg7n=xҠP[PQOC=\\sjCvCbU)E4\'~>wKD,Hr0h$u80\r }/wV{A$cd\0: +Q0=G3PR}K瘼eA@!w*&b9m/1\":‹\ZLA,,6\03qrh-O3@L\"?+\njr\n`=uY\0d q*,JJˊC;HtZ}!3-hB:`fB!($mQ{^\'?4S\n)Dc\'`c- #\0lys:#aT1=^ o8_%Ag 9ɯn\n0\0f\"\n43h{a4DkA #@LKmpY&%M~08J)U.dz,L3&<~Lxa0G!/V;RlJEp娲L3gc\n9m_B-<6kS2w0tYp ܫś\'I2Nu砷ߋ[RVV9;w#ङWbl1=:8\0n8\'Κ()oWӽɋ«nj\0:詑2lU',4,1,'','','',''),(2,1,0,'19754cf5e616d58b','29cf28c92e2f9327de1fd8f3772ff6eb','2015-02-02 11:24:17','2015-02-02 11:24:17','','','Profile Photos','person-175.jpg','image/jpeg',80,80,2854,'\0JFIF\0\0\0\0\0\0\0g˥=\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\0?O\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\0?O\09\0 \0\0\0\0\0\0!1 \"2A#BQa$%0CRqrs\0\0?SI[U\0Dݳc1>k!yṊAX-\rY՘=&IW^.1Vrce:q^:bC+]x!- Ա\0mazIx \n~Eyv>[zW2cɽ1t,d[k ]` zTJMjՐZ\0򁈎ezaSiY b>[ lcwM22FB+䰶7%> Up#-QftHvE&QQI*3I>{TH;Mè YgCG~wחK8.^iסHG#+-)sh!ӘW`j\\Y$BQĄq)Lz׶Z13!\r\Z7חqRx=aY._d.cUv`!8i|ĢKq(vnelC@fOHL~/>ڃMdE{/\rO*;tA\nrCOZ|)aR&ǟoq>{aWRcLu˱CQUaAy /MGI*5GZL<ǁ^k*%;Ր03\"\"#ڽ\nNDz*^Vq\0#fg1w1юD\":{qSMdNmzhg6l)5]P7I4WjhL}ժ!U3 !s#\\l B JT0K`1\0\"\"1{!R12ue312ieܞ!m5qVdGWbdDԫzVaFU;NأƋ$˯V_Ff\"dpJ@\0%a;\0Jw(KF(^\0G}5вQe}YAkȭc۩mސTo8oOo~cɤ28_fqv` f~ѿȶ\04\0ShG׌L^\0\0\0\0\0\0\0\0\0\0\0\0!1 AaQq\0\0?!.©OQ8c>[ TFuLD>.@iM:)Nt4rYYy|\0{Hoa$f`/ !<h먊&#[5ęoh]ι(Zav\00g%Bb҅B+\'T is|hvJ?\0 \0\0\0\0\0\0p\0B$\0 8@\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\0?O\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\0?O\0\"\0\0\0\0\0\0\0\0\0!1 AQaq\0\0?P3M=]`#xXP?ߕo\n.; Wdi{iHN}9& V@\\d;3ΐ(!x NiT@J|`+K%9-R@013F9 6/B9a b|he2 e]7bE|Eq+YFGK5;r@\n^ :i=\0:\ZBaD B8XFOtdVmr\'81Ϫ?!eݍ{e>#lm8\"L[:0i%qjx _BDU\0\Z\rsǼyXN3$Q)2Z+Xjp`Lp}\0\\\ZyӮu_Q9( uv=ߎp\0-:hTB8',5,1,'','','',''),(3,1,0,'19754cf5e616d58b','29cf28c92e2f9327de1fd8f3772ff6eb','2015-02-02 11:24:17','2015-02-02 11:24:17','','','Profile Photos','person-175.jpg','image/jpeg',48,48,2070,'\0JFIF\0\0\0\0\0\0\0gdԏ;TvX]%QȒkݱ,fdffc\'ɷCFl&ɇ>-@~ds>y(Dc6,v-ޥ\'gX[-aXC*Jbl3Aq+% YbM\"ϙLQZ/.\r`lީnؤ#U$0b\'a5r\ZgRaaҘ1M-ԶlRsܓ),[\0p\\`oOh]?_\"\"\"#\"\"9DDH+JVV 5Y)1&BQ>&\'-Jə7s2]:rP3@,#kI-D\0s#\0\0#\0\0\0\0\0\0\0\0\0\0!1AQaq\0\0?!=Hkz LLY2Кć9N_3b~BM 5fBbDo>9B}\r `\"0pIAͦH9 \0fTAfݗi$\nnL䆡(vOVqaz5X\rFD1_8t7{]%cTn /p.<3\0\0\ZOǞ}ATJĤ#p\"\n[q^Ӛ9zCRUP?\0 \0\0\0\0\0S\04\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00\0?\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00\0?\0%\0\0\0\0\0\0\0\0\0!1AQaq\0\0?5Ѵ,S{T \0N\0JmlZ{_ $LYИm2g#G+}>=p.{*=#\"TZQ\r;G\'U߁S<<_tL\"4uH0B̟SExiP.Z<Lz\0c}Cv4A8.[j3\0B^\0\'2;af(ؠg\r bBr駲)cWƒ\rygifqÛyS&Z;#Pl,`0dٴspBkA|}F$(0N7| P.k',6,1,'','','',''),(4,2,0,'14654cf674381248','ca76a172375b6d5a37bf290a402534ea','2015-02-02 12:02:11','2015-02-02 12:02:11','','','Profile Photos','person-175.jpg','image/jpeg',175,175,5531,'\0JFIF\0\0\0\0\0\0\0&Ǝwa-U*nG+/aX|R Duw)Rtܥa-`3x ^@\Zpv)\"K(G#{<4[Ny)ˋ RL$;V5ڟ礼F\ZjŽ/wܓ5=\'׆{1S?SUP_\0w?FTZyeC5{.ojS}mk?\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0`\0?s\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0`\0?s\0P\0 \0\0\0\0\0\0#!$0 \"1234BCScd%ADQRTaqst@UbruEP\0\0?\041 U3Y۟hXy\rkZs4JRIa(!N>W@`NW nj|c;|6sw6Y/D?.j/m-iMoC X[;xeWcNw6fKJrcx\\WTLj\0JFBd,MI*-qo6XrXctrL#;P_\\/P3I_/7_hПO\'QSU𲎆\\\Z;.<GrG!%;JDn8bV`}\ZGlj廑KBHfJG4n 8\0ؽ+!ЖJiw?#\num^38#Ԇd|/6Z7;)o`I\'\ns.7\'%n͍6@jc\'P͜Et\r鬽\nVD\0|tsEcċ{_,$VDT~\"BգZuxG[Pj t>:\rWA?9S\\S9Xx:j/7.h,&a(ו/N\Z΄\r\"gua1QHE\rD9-??F1FNg,Br?\n8U i] -MC0`-TY-\"plyB(V\r Dh<&\0Nn/bm_|P$n>(|cV>qx[dyR-!#nF8z%\\j%kr\r*-{\Z\0٨\0\0i@PA.*z7tAf4v4e2M5i6.]Z\"f%g)R\'0{-,,#G/8VC)Kh>mo:%d\"WW\'\rχ;zx֘Ѵ׍R ISO&-xwKO!~XQzHvf1g\\\Z{Q;jY\0!\'3vCO{iJҸҼи2sDrjǃ).[h yku-Vh:wBppͲ\Z{[΋xRX\"a7WJ0.ȶN.t`l?ѭ vВvMo@unp5pr)Z!*除\ZUՍmkI+F66R?g\nHyun>$BgpYlG6Ç\nlm+ni6\Zf7NZie\'Λd~nʴo .=#\"#튷,()fe 8S[#Ɓ %zd-dLςsr~-I<^BoYi#8m\0|Z~>f\n\'psb$RN{[c̅Hw\nb-:z\'M3(q@ = P)ׄJyS^)\Z$#UlH1j6U:\0 &AE\'v/.\\X`\rsޮƒ#*v)g^bԖ# \Z$3y9[?X^Ws2\0cٹ\Z\"AI(밑 aE +F69JTiE#\Z6P/\0jٽϣ~ׄl?/.\0(8<&M\0?\Z\0nJOf.W\0 \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\04\0\0\0\0\0\0\0\0\0\0\0P\0\0\0\0$\0\0\0\00\0\0\0\0\0\0\0\0\0 \0\0\0\0\0C\0\0\0\0\0\0@\0\0\0\0\0\0\0\0\0\0\0\0\0\0 \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0`\0?s\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0`\0?s\0)\0\0\0\0\0\0\0!\01A0Q aq@P\0\0?\0تf-:`\"#JAwH2Z\Z!cX`]+NC\\ 8ppA9VQa-^s(sTFe\"/\r]^M$g~\'8Y|+\\%z)E -@G${LHSVuk\"PQT щ#- (|Cq3a*X`:$N\0\rϥI*Nu1ontnc\\3TX<+fSh<;RiB ح!t =Dcd\\\0\"Fav^c+ۆn̺`C8 @\0*.0=SJ@<X\nL@Zg7n=xҠP[PQOC=\\sjCvCbU)E4\'~>wKD,Hr0h$u80\r }/wV{A$cd\0: +Q0=G3PR}K瘼eA@!w*&b9m/1\":‹\ZLA,,6\03qrh-O3@L\"?+\njr\n`=uY\0d q*,JJˊC;HtZ}!3-hB:`fB!($mQ{^\'?4S\n)Dc\'`c- #\0lys:#aT1=^ o8_%Ag 9ɯn\n0\0f\"\n43h{a4DkA #@LKmpY&%M~08J)U.dz,L3&<~Lxa0G!/V;RlJEp娲L3gc\n9m_B-<6kS2w0tYp ܫś\'I2Nu砷ߋ[RVV9;w#ङWbl1=:8\0n8\'Κ()oWӽɋ«nj\0:詑2lU',4,1,'','','',''),(5,2,0,'14654cf674381248','ca76a172375b6d5a37bf290a402534ea','2015-02-02 12:02:11','2015-02-02 12:02:11','','','Profile Photos','person-175.jpg','image/jpeg',80,80,2854,'\0JFIF\0\0\0\0\0\0\0g˥=\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\0?O\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\0?O\09\0 \0\0\0\0\0\0!1 \"2A#BQa$%0CRqrs\0\0?SI[U\0Dݳc1>k!yṊAX-\rY՘=&IW^.1Vrce:q^:bC+]x!- Ա\0mazIx \n~Eyv>[zW2cɽ1t,d[k ]` zTJMjՐZ\0򁈎ezaSiY b>[ lcwM22FB+䰶7%> Up#-QftHvE&QQI*3I>{TH;Mè YgCG~wחK8.^iסHG#+-)sh!ӘW`j\\Y$BQĄq)Lz׶Z13!\r\Z7חqRx=aY._d.cUv`!8i|ĢKq(vnelC@fOHL~/>ڃMdE{/\rO*;tA\nrCOZ|)aR&ǟoq>{aWRcLu˱CQUaAy /MGI*5GZL<ǁ^k*%;Ր03\"\"#ڽ\nNDz*^Vq\0#fg1w1юD\":{qSMdNmzhg6l)5]P7I4WjhL}ժ!U3 !s#\\l B JT0K`1\0\"\"1{!R12ue312ieܞ!m5qVdGWbdDԫzVaFU;NأƋ$˯V_Ff\"dpJ@\0%a;\0Jw(KF(^\0G}5вQe}YAkȭc۩mސTo8oOo~cɤ28_fqv` f~ѿȶ\04\0ShG׌L^\0\0\0\0\0\0\0\0\0\0\0\0!1 AaQq\0\0?!.©OQ8c>[ TFuLD>.@iM:)Nt4rYYy|\0{Hoa$f`/ !<h먊&#[5ęoh]ι(Zav\00g%Bb҅B+\'T is|hvJ?\0 \0\0\0\0\0\0p\0B$\0 8@\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\0?O\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\0?O\0\"\0\0\0\0\0\0\0\0\0!1 AQaq\0\0?P3M=]`#xXP?ߕo\n.; Wdi{iHN}9& V@\\d;3ΐ(!x NiT@J|`+K%9-R@013F9 6/B9a b|he2 e]7bE|Eq+YFGK5;r@\n^ :i=\0:\ZBaD B8XFOtdVmr\'81Ϫ?!eݍ{e>#lm8\"L[:0i%qjx _BDU\0\Z\rsǼyXN3$Q)2Z+Xjp`Lp}\0\\\ZyӮu_Q9( uv=ߎp\0-:hTB8',5,1,'','','',''),(6,2,0,'14654cf674381248','ca76a172375b6d5a37bf290a402534ea','2015-02-02 12:02:11','2015-02-02 12:02:11','','','Profile Photos','person-175.jpg','image/jpeg',48,48,2070,'\0JFIF\0\0\0\0\0\0\0gdԏ;TvX]%QȒkݱ,fdffc\'ɷCFl&ɇ>-@~ds>y(Dc6,v-ޥ\'gX[-aXC*Jbl3Aq+% YbM\"ϙLQZ/.\r`lީnؤ#U$0b\'a5r\ZgRaaҘ1M-ԶlRsܓ),[\0p\\`oOh]?_\"\"\"#\"\"9DDH+JVV 5Y)1&BQ>&\'-Jə7s2]:rP3@,#kI-D\0s#\0\0#\0\0\0\0\0\0\0\0\0\0!1AQaq\0\0?!=Hkz LLY2Кć9N_3b~BM 5fBbDo>9B}\r `\"0pIAͦH9 \0fTAfݗi$\nnL䆡(vOVqaz5X\rFD1_8t7{]%cTn /p.<3\0\0\ZOǞ}ATJĤ#p\"\n[q^Ӛ9zCRUP?\0 \0\0\0\0\0S\04\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00\0?\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00\0?\0%\0\0\0\0\0\0\0\0\0!1AQaq\0\0?5Ѵ,S{T \0N\0JmlZ{_ $LYИm2g#G+}>=p.{*=#\"TZQ\r;G\'U߁S<<_tL\"4uH0B̟SExiP.Z<Lz\0c}Cv4A8.[j3\0B^\0\'2;af(ؠg\r bBr駲)cWƒ\rygifqÛyS&Z;#Pl,`0dٴspBkA|}F$(0N7| P.k',6,1,'','','',''),(7,3,0,'06554cf6760d7bd9','5a6c31caf8e43479b07178eaf39bea94','2015-02-02 12:02:40','2015-02-02 12:02:40','','','Profile Photos','person-175.jpg','image/jpeg',175,175,5531,'\0JFIF\0\0\0\0\0\0\0&Ǝwa-U*nG+/aX|R Duw)Rtܥa-`3x ^@\Zpv)\"K(G#{<4[Ny)ˋ RL$;V5ڟ礼F\ZjŽ/wܓ5=\'׆{1S?SUP_\0w?FTZyeC5{.ojS}mk?\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0`\0?s\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0`\0?s\0P\0 \0\0\0\0\0\0#!$0 \"1234BCScd%ADQRTaqst@UbruEP\0\0?\041 U3Y۟hXy\rkZs4JRIa(!N>W@`NW nj|c;|6sw6Y/D?.j/m-iMoC X[;xeWcNw6fKJrcx\\WTLj\0JFBd,MI*-qo6XrXctrL#;P_\\/P3I_/7_hПO\'QSU𲎆\\\Z;.<GrG!%;JDn8bV`}\ZGlj廑KBHfJG4n 8\0ؽ+!ЖJiw?#\num^38#Ԇd|/6Z7;)o`I\'\ns.7\'%n͍6@jc\'P͜Et\r鬽\nVD\0|tsEcċ{_,$VDT~\"BգZuxG[Pj t>:\rWA?9S\\S9Xx:j/7.h,&a(ו/N\Z΄\r\"gua1QHE\rD9-??F1FNg,Br?\n8U i] -MC0`-TY-\"plyB(V\r Dh<&\0Nn/bm_|P$n>(|cV>qx[dyR-!#nF8z%\\j%kr\r*-{\Z\0٨\0\0i@PA.*z7tAf4v4e2M5i6.]Z\"f%g)R\'0{-,,#G/8VC)Kh>mo:%d\"WW\'\rχ;zx֘Ѵ׍R ISO&-xwKO!~XQzHvf1g\\\Z{Q;jY\0!\'3vCO{iJҸҼи2sDrjǃ).[h yku-Vh:wBppͲ\Z{[΋xRX\"a7WJ0.ȶN.t`l?ѭ vВvMo@unp5pr)Z!*除\ZUՍmkI+F66R?g\nHyun>$BgpYlG6Ç\nlm+ni6\Zf7NZie\'Λd~nʴo .=#\"#튷,()fe 8S[#Ɓ %zd-dLςsr~-I<^BoYi#8m\0|Z~>f\n\'psb$RN{[c̅Hw\nb-:z\'M3(q@ = P)ׄJyS^)\Z$#UlH1j6U:\0 &AE\'v/.\\X`\rsޮƒ#*v)g^bԖ# \Z$3y9[?X^Ws2\0cٹ\Z\"AI(밑 aE +F69JTiE#\Z6P/\0jٽϣ~ׄl?/.\0(8<&M\0?\Z\0nJOf.W\0 \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\04\0\0\0\0\0\0\0\0\0\0\0P\0\0\0\0$\0\0\0\00\0\0\0\0\0\0\0\0\0 \0\0\0\0\0C\0\0\0\0\0\0@\0\0\0\0\0\0\0\0\0\0\0\0\0\0 \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0`\0?s\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0`\0?s\0)\0\0\0\0\0\0\0!\01A0Q aq@P\0\0?\0تf-:`\"#JAwH2Z\Z!cX`]+NC\\ 8ppA9VQa-^s(sTFe\"/\r]^M$g~\'8Y|+\\%z)E -@G${LHSVuk\"PQT щ#- (|Cq3a*X`:$N\0\rϥI*Nu1ontnc\\3TX<+fSh<;RiB ح!t =Dcd\\\0\"Fav^c+ۆn̺`C8 @\0*.0=SJ@<X\nL@Zg7n=xҠP[PQOC=\\sjCvCbU)E4\'~>wKD,Hr0h$u80\r }/wV{A$cd\0: +Q0=G3PR}K瘼eA@!w*&b9m/1\":‹\ZLA,,6\03qrh-O3@L\"?+\njr\n`=uY\0d q*,JJˊC;HtZ}!3-hB:`fB!($mQ{^\'?4S\n)Dc\'`c- #\0lys:#aT1=^ o8_%Ag 9ɯn\n0\0f\"\n43h{a4DkA #@LKmpY&%M~08J)U.dz,L3&<~Lxa0G!/V;RlJEp娲L3gc\n9m_B-<6kS2w0tYp ܫś\'I2Nu砷ߋ[RVV9;w#ङWbl1=:8\0n8\'Κ()oWӽɋ«nj\0:詑2lU',4,1,'','','',''),(8,3,0,'06554cf6760d7bd9','5a6c31caf8e43479b07178eaf39bea94','2015-02-02 12:02:40','2015-02-02 12:02:40','','','Profile Photos','person-175.jpg','image/jpeg',80,80,2854,'\0JFIF\0\0\0\0\0\0\0g˥=\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\0?O\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\0?O\09\0 \0\0\0\0\0\0!1 \"2A#BQa$%0CRqrs\0\0?SI[U\0Dݳc1>k!yṊAX-\rY՘=&IW^.1Vrce:q^:bC+]x!- Ա\0mazIx \n~Eyv>[zW2cɽ1t,d[k ]` zTJMjՐZ\0򁈎ezaSiY b>[ lcwM22FB+䰶7%> Up#-QftHvE&QQI*3I>{TH;Mè YgCG~wחK8.^iסHG#+-)sh!ӘW`j\\Y$BQĄq)Lz׶Z13!\r\Z7חqRx=aY._d.cUv`!8i|ĢKq(vnelC@fOHL~/>ڃMdE{/\rO*;tA\nrCOZ|)aR&ǟoq>{aWRcLu˱CQUaAy /MGI*5GZL<ǁ^k*%;Ր03\"\"#ڽ\nNDz*^Vq\0#fg1w1юD\":{qSMdNmzhg6l)5]P7I4WjhL}ժ!U3 !s#\\l B JT0K`1\0\"\"1{!R12ue312ieܞ!m5qVdGWbdDԫzVaFU;NأƋ$˯V_Ff\"dpJ@\0%a;\0Jw(KF(^\0G}5вQe}YAkȭc۩mސTo8oOo~cɤ28_fqv` f~ѿȶ\04\0ShG׌L^\0\0\0\0\0\0\0\0\0\0\0\0!1 AaQq\0\0?!.©OQ8c>[ TFuLD>.@iM:)Nt4rYYy|\0{Hoa$f`/ !<h먊&#[5ęoh]ι(Zav\00g%Bb҅B+\'T is|hvJ?\0 \0\0\0\0\0\0p\0B$\0 8@\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\0?O\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\0?O\0\"\0\0\0\0\0\0\0\0\0!1 AQaq\0\0?P3M=]`#xXP?ߕo\n.; Wdi{iHN}9& V@\\d;3ΐ(!x NiT@J|`+K%9-R@013F9 6/B9a b|he2 e]7bE|Eq+YFGK5;r@\n^ :i=\0:\ZBaD B8XFOtdVmr\'81Ϫ?!eݍ{e>#lm8\"L[:0i%qjx _BDU\0\Z\rsǼyXN3$Q)2Z+Xjp`Lp}\0\\\ZyӮu_Q9( uv=ߎp\0-:hTB8',5,1,'','','',''),(9,3,0,'06554cf6760d7bd9','5a6c31caf8e43479b07178eaf39bea94','2015-02-02 12:02:40','2015-02-02 12:02:40','','','Profile Photos','person-175.jpg','image/jpeg',48,48,2070,'\0JFIF\0\0\0\0\0\0\0gdԏ;TvX]%QȒkݱ,fdffc\'ɷCFl&ɇ>-@~ds>y(Dc6,v-ޥ\'gX[-aXC*Jbl3Aq+% YbM\"ϙLQZ/.\r`lީnؤ#U$0b\'a5r\ZgRaaҘ1M-ԶlRsܓ),[\0p\\`oOh]?_\"\"\"#\"\"9DDH+JVV 5Y)1&BQ>&\'-Jə7s2]:rP3@,#kI-D\0s#\0\0#\0\0\0\0\0\0\0\0\0\0!1AQaq\0\0?!=Hkz LLY2Кć9N_3b~BM 5fBbDo>9B}\r `\"0pIAͦH9 \0fTAfݗi$\nnL䆡(vOVqaz5X\rFD1_8t7{]%cTn /p.<3\0\0\ZOǞ}ATJĤ#p\"\n[q^Ӛ9zCRUP?\0 \0\0\0\0\0S\04\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00\0?\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00\0?\0%\0\0\0\0\0\0\0\0\0!1AQaq\0\0?5Ѵ,S{T \0N\0JmlZ{_ $LYИm2g#G+}>=p.{*=#\"TZQ\r;G\'U߁S<<_tL\"4uH0B̟SExiP.Z<Lz\0c}Cv4A8.[j3\0B^\0\'2;af(ؠg\r bBr駲)cWƒ\rygifqÛyS&Z;#Pl,`0dٴspBkA|}F$(0N7| P.k',6,1,'','','',''),(10,4,0,'75354cf677be64c1','1e68dd1e2c32ae390c21fc6911d10461','2015-02-02 12:03:07','2015-02-02 12:03:07','','','Profile Photos','person-175.jpg','image/jpeg',175,175,5531,'\0JFIF\0\0\0\0\0\0\0&Ǝwa-U*nG+/aX|R Duw)Rtܥa-`3x ^@\Zpv)\"K(G#{<4[Ny)ˋ RL$;V5ڟ礼F\ZjŽ/wܓ5=\'׆{1S?SUP_\0w?FTZyeC5{.ojS}mk?\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0`\0?s\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0`\0?s\0P\0 \0\0\0\0\0\0#!$0 \"1234BCScd%ADQRTaqst@UbruEP\0\0?\041 U3Y۟hXy\rkZs4JRIa(!N>W@`NW nj|c;|6sw6Y/D?.j/m-iMoC X[;xeWcNw6fKJrcx\\WTLj\0JFBd,MI*-qo6XrXctrL#;P_\\/P3I_/7_hПO\'QSU𲎆\\\Z;.<GrG!%;JDn8bV`}\ZGlj廑KBHfJG4n 8\0ؽ+!ЖJiw?#\num^38#Ԇd|/6Z7;)o`I\'\ns.7\'%n͍6@jc\'P͜Et\r鬽\nVD\0|tsEcċ{_,$VDT~\"BգZuxG[Pj t>:\rWA?9S\\S9Xx:j/7.h,&a(ו/N\Z΄\r\"gua1QHE\rD9-??F1FNg,Br?\n8U i] -MC0`-TY-\"plyB(V\r Dh<&\0Nn/bm_|P$n>(|cV>qx[dyR-!#nF8z%\\j%kr\r*-{\Z\0٨\0\0i@PA.*z7tAf4v4e2M5i6.]Z\"f%g)R\'0{-,,#G/8VC)Kh>mo:%d\"WW\'\rχ;zx֘Ѵ׍R ISO&-xwKO!~XQzHvf1g\\\Z{Q;jY\0!\'3vCO{iJҸҼи2sDrjǃ).[h yku-Vh:wBppͲ\Z{[΋xRX\"a7WJ0.ȶN.t`l?ѭ vВvMo@unp5pr)Z!*除\ZUՍmkI+F66R?g\nHyun>$BgpYlG6Ç\nlm+ni6\Zf7NZie\'Λd~nʴo .=#\"#튷,()fe 8S[#Ɓ %zd-dLςsr~-I<^BoYi#8m\0|Z~>f\n\'psb$RN{[c̅Hw\nb-:z\'M3(q@ = P)ׄJyS^)\Z$#UlH1j6U:\0 &AE\'v/.\\X`\rsޮƒ#*v)g^bԖ# \Z$3y9[?X^Ws2\0cٹ\Z\"AI(밑 aE +F69JTiE#\Z6P/\0jٽϣ~ׄl?/.\0(8<&M\0?\Z\0nJOf.W\0 \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\04\0\0\0\0\0\0\0\0\0\0\0P\0\0\0\0$\0\0\0\00\0\0\0\0\0\0\0\0\0 \0\0\0\0\0C\0\0\0\0\0\0@\0\0\0\0\0\0\0\0\0\0\0\0\0\0 \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0`\0?s\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0`\0?s\0)\0\0\0\0\0\0\0!\01A0Q aq@P\0\0?\0تf-:`\"#JAwH2Z\Z!cX`]+NC\\ 8ppA9VQa-^s(sTFe\"/\r]^M$g~\'8Y|+\\%z)E -@G${LHSVuk\"PQT щ#- (|Cq3a*X`:$N\0\rϥI*Nu1ontnc\\3TX<+fSh<;RiB ح!t =Dcd\\\0\"Fav^c+ۆn̺`C8 @\0*.0=SJ@<X\nL@Zg7n=xҠP[PQOC=\\sjCvCbU)E4\'~>wKD,Hr0h$u80\r }/wV{A$cd\0: +Q0=G3PR}K瘼eA@!w*&b9m/1\":‹\ZLA,,6\03qrh-O3@L\"?+\njr\n`=uY\0d q*,JJˊC;HtZ}!3-hB:`fB!($mQ{^\'?4S\n)Dc\'`c- #\0lys:#aT1=^ o8_%Ag 9ɯn\n0\0f\"\n43h{a4DkA #@LKmpY&%M~08J)U.dz,L3&<~Lxa0G!/V;RlJEp娲L3gc\n9m_B-<6kS2w0tYp ܫś\'I2Nu砷ߋ[RVV9;w#ङWbl1=:8\0n8\'Κ()oWӽɋ«nj\0:詑2lU',4,1,'','','',''),(11,4,0,'75354cf677be64c1','1e68dd1e2c32ae390c21fc6911d10461','2015-02-02 12:03:07','2015-02-02 12:03:07','','','Profile Photos','person-175.jpg','image/jpeg',80,80,2854,'\0JFIF\0\0\0\0\0\0\0g˥=\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\0?O\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\0?O\09\0 \0\0\0\0\0\0!1 \"2A#BQa$%0CRqrs\0\0?SI[U\0Dݳc1>k!yṊAX-\rY՘=&IW^.1Vrce:q^:bC+]x!- Ա\0mazIx \n~Eyv>[zW2cɽ1t,d[k ]` zTJMjՐZ\0򁈎ezaSiY b>[ lcwM22FB+䰶7%> Up#-QftHvE&QQI*3I>{TH;Mè YgCG~wחK8.^iסHG#+-)sh!ӘW`j\\Y$BQĄq)Lz׶Z13!\r\Z7חqRx=aY._d.cUv`!8i|ĢKq(vnelC@fOHL~/>ڃMdE{/\rO*;tA\nrCOZ|)aR&ǟoq>{aWRcLu˱CQUaAy /MGI*5GZL<ǁ^k*%;Ր03\"\"#ڽ\nNDz*^Vq\0#fg1w1юD\":{qSMdNmzhg6l)5]P7I4WjhL}ժ!U3 !s#\\l B JT0K`1\0\"\"1{!R12ue312ieܞ!m5qVdGWbdDԫzVaFU;NأƋ$˯V_Ff\"dpJ@\0%a;\0Jw(KF(^\0G}5вQe}YAkȭc۩mސTo8oOo~cɤ28_fqv` f~ѿȶ\04\0ShG׌L^\0\0\0\0\0\0\0\0\0\0\0\0!1 AaQq\0\0?!.©OQ8c>[ TFuLD>.@iM:)Nt4rYYy|\0{Hoa$f`/ !<h먊&#[5ęoh]ι(Zav\00g%Bb҅B+\'T is|hvJ?\0 \0\0\0\0\0\0p\0B$\0 8@\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\0?O\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\0?O\0\"\0\0\0\0\0\0\0\0\0!1 AQaq\0\0?P3M=]`#xXP?ߕo\n.; Wdi{iHN}9& V@\\d;3ΐ(!x NiT@J|`+K%9-R@013F9 6/B9a b|he2 e]7bE|Eq+YFGK5;r@\n^ :i=\0:\ZBaD B8XFOtdVmr\'81Ϫ?!eݍ{e>#lm8\"L[:0i%qjx _BDU\0\Z\rsǼyXN3$Q)2Z+Xjp`Lp}\0\\\ZyӮu_Q9( uv=ߎp\0-:hTB8',5,1,'','','',''),(12,4,0,'75354cf677be64c1','1e68dd1e2c32ae390c21fc6911d10461','2015-02-02 12:03:07','2015-02-02 12:03:07','','','Profile Photos','person-175.jpg','image/jpeg',48,48,2070,'\0JFIF\0\0\0\0\0\0\0gdԏ;TvX]%QȒkݱ,fdffc\'ɷCFl&ɇ>-@~ds>y(Dc6,v-ޥ\'gX[-aXC*Jbl3Aq+% YbM\"ϙLQZ/.\r`lީnؤ#U$0b\'a5r\ZgRaaҘ1M-ԶlRsܓ),[\0p\\`oOh]?_\"\"\"#\"\"9DDH+JVV 5Y)1&BQ>&\'-Jə7s2]:rP3@,#kI-D\0s#\0\0#\0\0\0\0\0\0\0\0\0\0!1AQaq\0\0?!=Hkz LLY2Кć9N_3b~BM 5fBbDo>9B}\r `\"0pIAͦH9 \0fTAfݗi$\nnL䆡(vOVqaz5X\rFD1_8t7{]%cTn /p.<3\0\0\ZOǞ}ATJĤ#p\"\n[q^Ӛ9zCRUP?\0 \0\0\0\0\0S\04\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00\0?\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00\0?\0%\0\0\0\0\0\0\0\0\0!1AQaq\0\0?5Ѵ,S{T \0N\0JmlZ{_ $LYИm2g#G+}>=p.{*=#\"TZQ\r;G\'U߁S<<_tL\"4uH0B̟SExiP.Z<Lz\0c}Cv4A8.[j3\0B^\0\'2;af(ؠg\r bBr駲)cWƒ\rygifqÛyS&Z;#Pl,`0dٴspBkA|}F$(0N7| P.k',6,1,'','','',''),(13,5,0,'51854cf67b60ceec','2943d936c14c4ba3af6d5acdad543952','2015-02-02 12:04:06','2015-02-02 12:04:06','','','Profile Photos','person-175.jpg','image/jpeg',175,175,5531,'\0JFIF\0\0\0\0\0\0\0&Ǝwa-U*nG+/aX|R Duw)Rtܥa-`3x ^@\Zpv)\"K(G#{<4[Ny)ˋ RL$;V5ڟ礼F\ZjŽ/wܓ5=\'׆{1S?SUP_\0w?FTZyeC5{.ojS}mk?\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0`\0?s\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0`\0?s\0P\0 \0\0\0\0\0\0#!$0 \"1234BCScd%ADQRTaqst@UbruEP\0\0?\041 U3Y۟hXy\rkZs4JRIa(!N>W@`NW nj|c;|6sw6Y/D?.j/m-iMoC X[;xeWcNw6fKJrcx\\WTLj\0JFBd,MI*-qo6XrXctrL#;P_\\/P3I_/7_hПO\'QSU𲎆\\\Z;.<GrG!%;JDn8bV`}\ZGlj廑KBHfJG4n 8\0ؽ+!ЖJiw?#\num^38#Ԇd|/6Z7;)o`I\'\ns.7\'%n͍6@jc\'P͜Et\r鬽\nVD\0|tsEcċ{_,$VDT~\"BգZuxG[Pj t>:\rWA?9S\\S9Xx:j/7.h,&a(ו/N\Z΄\r\"gua1QHE\rD9-??F1FNg,Br?\n8U i] -MC0`-TY-\"plyB(V\r Dh<&\0Nn/bm_|P$n>(|cV>qx[dyR-!#nF8z%\\j%kr\r*-{\Z\0٨\0\0i@PA.*z7tAf4v4e2M5i6.]Z\"f%g)R\'0{-,,#G/8VC)Kh>mo:%d\"WW\'\rχ;zx֘Ѵ׍R ISO&-xwKO!~XQzHvf1g\\\Z{Q;jY\0!\'3vCO{iJҸҼи2sDrjǃ).[h yku-Vh:wBppͲ\Z{[΋xRX\"a7WJ0.ȶN.t`l?ѭ vВvMo@unp5pr)Z!*除\ZUՍmkI+F66R?g\nHyun>$BgpYlG6Ç\nlm+ni6\Zf7NZie\'Λd~nʴo .=#\"#튷,()fe 8S[#Ɓ %zd-dLςsr~-I<^BoYi#8m\0|Z~>f\n\'psb$RN{[c̅Hw\nb-:z\'M3(q@ = P)ׄJyS^)\Z$#UlH1j6U:\0 &AE\'v/.\\X`\rsޮƒ#*v)g^bԖ# \Z$3y9[?X^Ws2\0cٹ\Z\"AI(밑 aE +F69JTiE#\Z6P/\0jٽϣ~ׄl?/.\0(8<&M\0?\Z\0nJOf.W\0 \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\04\0\0\0\0\0\0\0\0\0\0\0P\0\0\0\0$\0\0\0\00\0\0\0\0\0\0\0\0\0 \0\0\0\0\0C\0\0\0\0\0\0@\0\0\0\0\0\0\0\0\0\0\0\0\0\0 \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0`\0?s\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0`\0?s\0)\0\0\0\0\0\0\0!\01A0Q aq@P\0\0?\0تf-:`\"#JAwH2Z\Z!cX`]+NC\\ 8ppA9VQa-^s(sTFe\"/\r]^M$g~\'8Y|+\\%z)E -@G${LHSVuk\"PQT щ#- (|Cq3a*X`:$N\0\rϥI*Nu1ontnc\\3TX<+fSh<;RiB ح!t =Dcd\\\0\"Fav^c+ۆn̺`C8 @\0*.0=SJ@<X\nL@Zg7n=xҠP[PQOC=\\sjCvCbU)E4\'~>wKD,Hr0h$u80\r }/wV{A$cd\0: +Q0=G3PR}K瘼eA@!w*&b9m/1\":‹\ZLA,,6\03qrh-O3@L\"?+\njr\n`=uY\0d q*,JJˊC;HtZ}!3-hB:`fB!($mQ{^\'?4S\n)Dc\'`c- #\0lys:#aT1=^ o8_%Ag 9ɯn\n0\0f\"\n43h{a4DkA #@LKmpY&%M~08J)U.dz,L3&<~Lxa0G!/V;RlJEp娲L3gc\n9m_B-<6kS2w0tYp ܫś\'I2Nu砷ߋ[RVV9;w#ङWbl1=:8\0n8\'Κ()oWӽɋ«nj\0:詑2lU',4,1,'','','',''),(14,5,0,'51854cf67b60ceec','2943d936c14c4ba3af6d5acdad543952','2015-02-02 12:04:06','2015-02-02 12:04:06','','','Profile Photos','person-175.jpg','image/jpeg',80,80,2854,'\0JFIF\0\0\0\0\0\0\0g˥=\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\0?O\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\0?O\09\0 \0\0\0\0\0\0!1 \"2A#BQa$%0CRqrs\0\0?SI[U\0Dݳc1>k!yṊAX-\rY՘=&IW^.1Vrce:q^:bC+]x!- Ա\0mazIx \n~Eyv>[zW2cɽ1t,d[k ]` zTJMjՐZ\0򁈎ezaSiY b>[ lcwM22FB+䰶7%> Up#-QftHvE&QQI*3I>{TH;Mè YgCG~wחK8.^iסHG#+-)sh!ӘW`j\\Y$BQĄq)Lz׶Z13!\r\Z7חqRx=aY._d.cUv`!8i|ĢKq(vnelC@fOHL~/>ڃMdE{/\rO*;tA\nrCOZ|)aR&ǟoq>{aWRcLu˱CQUaAy /MGI*5GZL<ǁ^k*%;Ր03\"\"#ڽ\nNDz*^Vq\0#fg1w1юD\":{qSMdNmzhg6l)5]P7I4WjhL}ժ!U3 !s#\\l B JT0K`1\0\"\"1{!R12ue312ieܞ!m5qVdGWbdDԫzVaFU;NأƋ$˯V_Ff\"dpJ@\0%a;\0Jw(KF(^\0G}5вQe}YAkȭc۩mސTo8oOo~cɤ28_fqv` f~ѿȶ\04\0ShG׌L^\0\0\0\0\0\0\0\0\0\0\0\0!1 AaQq\0\0?!.©OQ8c>[ TFuLD>.@iM:)Nt4rYYy|\0{Hoa$f`/ !<h먊&#[5ęoh]ι(Zav\00g%Bb҅B+\'T is|hvJ?\0 \0\0\0\0\0\0p\0B$\0 8@\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\0?O\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\0?O\0\"\0\0\0\0\0\0\0\0\0!1 AQaq\0\0?P3M=]`#xXP?ߕo\n.; Wdi{iHN}9& V@\\d;3ΐ(!x NiT@J|`+K%9-R@013F9 6/B9a b|he2 e]7bE|Eq+YFGK5;r@\n^ :i=\0:\ZBaD B8XFOtdVmr\'81Ϫ?!eݍ{e>#lm8\"L[:0i%qjx _BDU\0\Z\rsǼyXN3$Q)2Z+Xjp`Lp}\0\\\ZyӮu_Q9( uv=ߎp\0-:hTB8',5,1,'','','',''),(15,5,0,'51854cf67b60ceec','2943d936c14c4ba3af6d5acdad543952','2015-02-02 12:04:06','2015-02-02 12:04:06','','','Profile Photos','person-175.jpg','image/jpeg',48,48,2070,'\0JFIF\0\0\0\0\0\0\0gdԏ;TvX]%QȒkݱ,fdffc\'ɷCFl&ɇ>-@~ds>y(Dc6,v-ޥ\'gX[-aXC*Jbl3Aq+% YbM\"ϙLQZ/.\r`lީnؤ#U$0b\'a5r\ZgRaaҘ1M-ԶlRsܓ),[\0p\\`oOh]?_\"\"\"#\"\"9DDH+JVV 5Y)1&BQ>&\'-Jə7s2]:rP3@,#kI-D\0s#\0\0#\0\0\0\0\0\0\0\0\0\0!1AQaq\0\0?!=Hkz LLY2Кć9N_3b~BM 5fBbDo>9B}\r `\"0pIAͦH9 \0fTAfݗi$\nnL䆡(vOVqaz5X\rFD1_8t7{]%cTn /p.<3\0\0\ZOǞ}ATJĤ#p\"\n[q^Ӛ9zCRUP?\0 \0\0\0\0\0S\04\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00\0?\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00\0?\0%\0\0\0\0\0\0\0\0\0!1AQaq\0\0?5Ѵ,S{T \0N\0JmlZ{_ $LYИm2g#G+}>=p.{*=#\"TZQ\r;G\'U߁S<<_tL\"4uH0B̟SExiP.Z<Lz\0c}Cv4A8.[j3\0B^\0\'2;af(ؠg\r bBr駲)cWƒ\rygifqÛyS&Z;#Pl,`0dٴspBkA|}F$(0N7| P.k',6,1,'','','',''),(16,6,0,'84554cf67cd393c4','c80c222d7c06a142719eb8b2df65808f','2015-02-02 12:04:29','2015-02-02 12:04:29','','','Profile Photos','person-175.jpg','image/jpeg',175,175,5531,'\0JFIF\0\0\0\0\0\0\0&Ǝwa-U*nG+/aX|R Duw)Rtܥa-`3x ^@\Zpv)\"K(G#{<4[Ny)ˋ RL$;V5ڟ礼F\ZjŽ/wܓ5=\'׆{1S?SUP_\0w?FTZyeC5{.ojS}mk?\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0`\0?s\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0`\0?s\0P\0 \0\0\0\0\0\0#!$0 \"1234BCScd%ADQRTaqst@UbruEP\0\0?\041 U3Y۟hXy\rkZs4JRIa(!N>W@`NW nj|c;|6sw6Y/D?.j/m-iMoC X[;xeWcNw6fKJrcx\\WTLj\0JFBd,MI*-qo6XrXctrL#;P_\\/P3I_/7_hПO\'QSU𲎆\\\Z;.<GrG!%;JDn8bV`}\ZGlj廑KBHfJG4n 8\0ؽ+!ЖJiw?#\num^38#Ԇd|/6Z7;)o`I\'\ns.7\'%n͍6@jc\'P͜Et\r鬽\nVD\0|tsEcċ{_,$VDT~\"BգZuxG[Pj t>:\rWA?9S\\S9Xx:j/7.h,&a(ו/N\Z΄\r\"gua1QHE\rD9-??F1FNg,Br?\n8U i] -MC0`-TY-\"plyB(V\r Dh<&\0Nn/bm_|P$n>(|cV>qx[dyR-!#nF8z%\\j%kr\r*-{\Z\0٨\0\0i@PA.*z7tAf4v4e2M5i6.]Z\"f%g)R\'0{-,,#G/8VC)Kh>mo:%d\"WW\'\rχ;zx֘Ѵ׍R ISO&-xwKO!~XQzHvf1g\\\Z{Q;jY\0!\'3vCO{iJҸҼи2sDrjǃ).[h yku-Vh:wBppͲ\Z{[΋xRX\"a7WJ0.ȶN.t`l?ѭ vВvMo@unp5pr)Z!*除\ZUՍmkI+F66R?g\nHyun>$BgpYlG6Ç\nlm+ni6\Zf7NZie\'Λd~nʴo .=#\"#튷,()fe 8S[#Ɓ %zd-dLςsr~-I<^BoYi#8m\0|Z~>f\n\'psb$RN{[c̅Hw\nb-:z\'M3(q@ = P)ׄJyS^)\Z$#UlH1j6U:\0 &AE\'v/.\\X`\rsޮƒ#*v)g^bԖ# \Z$3y9[?X^Ws2\0cٹ\Z\"AI(밑 aE +F69JTiE#\Z6P/\0jٽϣ~ׄl?/.\0(8<&M\0?\Z\0nJOf.W\0 \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\04\0\0\0\0\0\0\0\0\0\0\0P\0\0\0\0$\0\0\0\00\0\0\0\0\0\0\0\0\0 \0\0\0\0\0C\0\0\0\0\0\0@\0\0\0\0\0\0\0\0\0\0\0\0\0\0 \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0`\0?s\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0`\0?s\0)\0\0\0\0\0\0\0!\01A0Q aq@P\0\0?\0تf-:`\"#JAwH2Z\Z!cX`]+NC\\ 8ppA9VQa-^s(sTFe\"/\r]^M$g~\'8Y|+\\%z)E -@G${LHSVuk\"PQT щ#- (|Cq3a*X`:$N\0\rϥI*Nu1ontnc\\3TX<+fSh<;RiB ح!t =Dcd\\\0\"Fav^c+ۆn̺`C8 @\0*.0=SJ@<X\nL@Zg7n=xҠP[PQOC=\\sjCvCbU)E4\'~>wKD,Hr0h$u80\r }/wV{A$cd\0: +Q0=G3PR}K瘼eA@!w*&b9m/1\":‹\ZLA,,6\03qrh-O3@L\"?+\njr\n`=uY\0d q*,JJˊC;HtZ}!3-hB:`fB!($mQ{^\'?4S\n)Dc\'`c- #\0lys:#aT1=^ o8_%Ag 9ɯn\n0\0f\"\n43h{a4DkA #@LKmpY&%M~08J)U.dz,L3&<~Lxa0G!/V;RlJEp娲L3gc\n9m_B-<6kS2w0tYp ܫś\'I2Nu砷ߋ[RVV9;w#ङWbl1=:8\0n8\'Κ()oWӽɋ«nj\0:詑2lU',4,1,'','','',''),(17,6,0,'84554cf67cd393c4','c80c222d7c06a142719eb8b2df65808f','2015-02-02 12:04:29','2015-02-02 12:04:29','','','Profile Photos','person-175.jpg','image/jpeg',80,80,2854,'\0JFIF\0\0\0\0\0\0\0g˥=\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\0?O\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\0?O\09\0 \0\0\0\0\0\0!1 \"2A#BQa$%0CRqrs\0\0?SI[U\0Dݳc1>k!yṊAX-\rY՘=&IW^.1Vrce:q^:bC+]x!- Ա\0mazIx \n~Eyv>[zW2cɽ1t,d[k ]` zTJMjՐZ\0򁈎ezaSiY b>[ lcwM22FB+䰶7%> Up#-QftHvE&QQI*3I>{TH;Mè YgCG~wחK8.^iסHG#+-)sh!ӘW`j\\Y$BQĄq)Lz׶Z13!\r\Z7חqRx=aY._d.cUv`!8i|ĢKq(vnelC@fOHL~/>ڃMdE{/\rO*;tA\nrCOZ|)aR&ǟoq>{aWRcLu˱CQUaAy /MGI*5GZL<ǁ^k*%;Ր03\"\"#ڽ\nNDz*^Vq\0#fg1w1юD\":{qSMdNmzhg6l)5]P7I4WjhL}ժ!U3 !s#\\l B JT0K`1\0\"\"1{!R12ue312ieܞ!m5qVdGWbdDԫzVaFU;NأƋ$˯V_Ff\"dpJ@\0%a;\0Jw(KF(^\0G}5вQe}YAkȭc۩mސTo8oOo~cɤ28_fqv` f~ѿȶ\04\0ShG׌L^\0\0\0\0\0\0\0\0\0\0\0\0!1 AaQq\0\0?!.©OQ8c>[ TFuLD>.@iM:)Nt4rYYy|\0{Hoa$f`/ !<h먊&#[5ęoh]ι(Zav\00g%Bb҅B+\'T is|hvJ?\0 \0\0\0\0\0\0p\0B$\0 8@\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\0?O\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\0?O\0\"\0\0\0\0\0\0\0\0\0!1 AQaq\0\0?P3M=]`#xXP?ߕo\n.; Wdi{iHN}9& V@\\d;3ΐ(!x NiT@J|`+K%9-R@013F9 6/B9a b|he2 e]7bE|Eq+YFGK5;r@\n^ :i=\0:\ZBaD B8XFOtdVmr\'81Ϫ?!eݍ{e>#lm8\"L[:0i%qjx _BDU\0\Z\rsǼyXN3$Q)2Z+Xjp`Lp}\0\\\ZyӮu_Q9( uv=ߎp\0-:hTB8',5,1,'','','',''),(18,6,0,'84554cf67cd393c4','c80c222d7c06a142719eb8b2df65808f','2015-02-02 12:04:29','2015-02-02 12:04:29','','','Profile Photos','person-175.jpg','image/jpeg',48,48,2070,'\0JFIF\0\0\0\0\0\0\0gdԏ;TvX]%QȒkݱ,fdffc\'ɷCFl&ɇ>-@~ds>y(Dc6,v-ޥ\'gX[-aXC*Jbl3Aq+% YbM\"ϙLQZ/.\r`lީnؤ#U$0b\'a5r\ZgRaaҘ1M-ԶlRsܓ),[\0p\\`oOh]?_\"\"\"#\"\"9DDH+JVV 5Y)1&BQ>&\'-Jə7s2]:rP3@,#kI-D\0s#\0\0#\0\0\0\0\0\0\0\0\0\0!1AQaq\0\0?!=Hkz LLY2Кć9N_3b~BM 5fBbDo>9B}\r `\"0pIAͦH9 \0fTAfݗi$\nnL䆡(vOVqaz5X\rFD1_8t7{]%cTn /p.<3\0\0\ZOǞ}ATJĤ#p\"\n[q^Ӛ9zCRUP?\0 \0\0\0\0\0S\04\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00\0?\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00\0?\0%\0\0\0\0\0\0\0\0\0!1AQaq\0\0?5Ѵ,S{T \0N\0JmlZ{_ $LYИm2g#G+}>=p.{*=#\"TZQ\r;G\'U߁S<<_tL\"4uH0B̟SExiP.Z<Lz\0c}Cv4A8.[j3\0B^\0\'2;af(ؠg\r bBr駲)cWƒ\rygifqÛyS&Z;#Pl,`0dٴspBkA|}F$(0N7| P.k',6,1,'','','',''),(19,3,8,'43554cfc4ec523d0','1f4766db71f0f2d503287947c1d67dcd','2015-02-02 18:41:48','2015-02-02 18:41:48','','','Contact Photos','4.jpg?rev=2015-02-02+12%3A03%3A07','image/jpeg',175,175,5559,'\0JFIF\0\0\0\0\0\0\0`r;YFHRQM)3;&אc[\0D1pfF\0읇6^inGO\\k9dٹ ȕ^XX ڧgJy9lɎ=&1HZ)n?#зɒy5իpSW)_Z±p=ͅB,i@duQiL`8zo~\\G~G7\"l@Q2i3 L vY\njt^&k3Z 3LcC Sl*x \0ݯ{r6ȶO&/$\r4 iM;e+=g$p#mE\'ӛi\n5KDfz8v2: J՞:tȇ!(Is䰤E\0+82tdJO\nUӭ&&ww4ߣ٧*LIh/r6#v9 )٢R#e%iɫt\\r? hZe,T[iH-Ԟ`vGE&-7R#A\Z]ϡaeu9򬌸R/DxK_ݰJgkܬNv].=\'&5gq\0+WNF9lD(l㓦1{D)[B×m\ncG~1. .$^7hC\n5@@YMC0`,V a6)yEB(Vb TUU\"T4D6X7u/blϟl5hcy<-L\nE$t=j}ѱH_~| Vw\Z0EmrV@5\Z\0\0\r9#ͮh,WƎӣ\\IaZh\0MKunq6D(DIYG3~؉/K; NJR$\Z)٧o:%zd+Ww;zw֗Ѵ YcTRTD4 ^7ݒ盇!o,z޲zR<Ljm]\0vN+tŽZǫKڻ\n7\"fbk~R=R$-̢\\;P˷&<Olmg&жAYBlHƹ%v:-t’IHF}ar 59k\"!9ĺFmۇ\"I؛AgYG:IHYƷxoXe[/9ϡMp7q\njNEk%IR+sho8WA,ito}J]iz)O\0[_&+ ,\"\0xut47-kZV7QZ]k1.Ltg\0zGRd2_p*:GiT*H\nN=iN\"v\Z· pѕEQVȜvh^?8W^)zzҿ\0)\0\0\0\0\0\0\0!\010AQ aq@P\0\0?!\0*؍G@&(MQ9;`?)ztHB*!`+a$B/24d\'f-:fT`\"BPZ-L3hPvr9݃ gfteO!Ҋ@;$s :JL.sKf j \rWi\',hLAFj]&Aq&Ojyl\0n{rJ0Z٣6&=/{gӋ w!j\n!6qtxoQTO dO=ZX_w@O38:pM\0Z:i|n?)ާGZ e=\0sPTH4~ *\'u@Gz`<tإ:ıO9?Hf˓e&OlB(uDz\n=v.Wќ̅v/6r4EbIrIF] R9;-8rʌ-R =E&fAM}TWU x7Py,$1*j=B1(znc߳$   gl;ۿXaB\n^9wCRlJEr娲L3Lb,qE3߯ˡLzȞH5xX֨092$h,jì\n l2r;<\'@H޹v;=\\rozVV\r^MpRLի\r#Nr안-Dhp\0oW ۗf*0;w\0_>:詑2}_',4,0,'','','',''),(20,3,8,'43554cfc4ec523d0','1f4766db71f0f2d503287947c1d67dcd','2015-02-02 18:41:48','2015-02-02 18:41:48','','','Contact Photos','4.jpg?rev=2015-02-02+12%3A03%3A07','image/jpeg',80,80,2858,'\0JFIF\0\0\0\0\0\0\0rk!yX-\rW՘=&IW^.1Vrce:q^:bC+]x!- Ա\0]azIx \n~Eyv>[zW2cɹ1t,d[k \\.R*5V@B҄ !jJvZ`\0c\";7\reŅN>۫YfGt0Sd\"~zA`l%7c۲ܖ81W1dF!\"@c3TG-FF=$\\HXLy<7U;y%a0/B#Y߶Bǫ:G\'R?KuD208:wEQx-s|%cn/~\n.4*/U\Z+I+>Hn311X\\}f?Fd2vSFb\":6PO+%⬅vJ.Ҵ1G1ϘA n%Q1\ZTܬ߃-p iT7iPw`^/c\Z]~A =E_\'n1@#U_\ZbXyϟ!Ϻ,wMZ\"UZ1>a@m\"W2>%ʭ]@!`C ZZ \01 1#G*ݯ3(]6S3*pLv]<ߖWefD~^v/RYqTc{ׂ\Z,.Y}\Zڋ go+\0 r+VPy-ʻx?$J>lZY(-|\0Yb7c۩mސTr\Z=?i?_M?&yف\0gh13\0H[_r#f&cg\0\0\0\0\0\0\0\0\0\0!\01 AQaq\0\0?!\'sXMoVd:EA+c/Wh;6G\Zk Pk^`h,we.O͘\0ϔS\\B+pD P@(꺓p\'>[ J\"m 4r\0+3<9w:kͅ\0g *,PRdP*&O5wB?!#V~Q\n$第0\'\"hI2%c5mTOcc0Q (\\9`VSSHaDX_\'͐dm&vUiC\n_J\0 \0\0\0\0\0\0p\0 B$\0 8\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\0?O\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\0?O\0\"\0\0\0\0\0\0\0\0\0!1A Qaq\0\0?꡴>Z4;Hީ\0Ƽ)a{\\^ޅ ϰۺBz)ctT᯾:@Bܰ\n\nCiZi\\f ojqO> +K*ל̮-Rd`Cwd n3[\ZG fBcA-A4|V|#Yk[P74iicneb 9lJatP%){rn2\\>T2=_o?Qz$^x9EcuVˆcj(wl\0uSRC\"q&W!1q&<)3KlVˡ,|! fs1MbLx8z~F>Ԙ<Q\"#D|iZP::`zMY!0\"1\0ć{HF E1bdHZ^NjiNtzCRUP\0 \0\0\0\0\0S\04\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00\0?\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00\0?\0%\0\0\0\0\0\0\0\0\0!1AQaq\0\0?5Ѵ,S{T \0N\0JmlZ+TH;0TNvbLjQ{fu\' G^(dd[JM:v>hN27^wp8xއ)= vtڔ&SBƇ͏_oqh0´zG8I-f=c5\r^2zJ ,#vk2+}{@и$\'.{.B<5|(: +ݧqk98j\n:QU5 6o(@-h2qϏ(մ~||4e fς\n`r;YFHRQM)3;&אc[\0D1pfF\0읇6^inGO\\k9dٹ ȕ^XX ڧgJy9lɎ=&1HZ)n?#зɒy5իpSW)_Z±p=ͅB,i@duQiL`8zo~\\G~G7\"l@Q2i3 L vY\njt^&k3Z 3LcC Sl*x \0ݯ{r6ȶO&/$\r4 iM;e+=g$p#mE\'ӛi\n5KDfz8v2: J՞:tȇ!(Is䰤E\0+82tdJO\nUӭ&&ww4ߣ٧*LIh/r6#v9 )٢R#e%iɫt\\r? hZe,T[iH-Ԟ`vGE&-7R#A\Z]ϡaeu9򬌸R/DxK_ݰJgkܬNv].=\'&5gq\0+WNF9lD(l㓦1{D)[B×m\ncG~1. .$^7hC\n5@@YMC0`,V a6)yEB(Vb TUU\"T4D6X7u/blϟl5hcy<-L\nE$t=j}ѱH_~| Vw\Z0EmrV@5\Z\0\0\r9#ͮh,WƎӣ\\IaZh\0MKunq6D(DIYG3~؉/K; NJR$\Z)٧o:%zd+Ww;zw֗Ѵ YcTRTD4 ^7ݒ盇!o,z޲zR<Ljm]\0vN+tŽZǫKڻ\n7\"fbk~R=R$-̢\\;P˷&<Olmg&жAYBlHƹ%v:-t’IHF}ar 59k\"!9ĺFmۇ\"I؛AgYG:IHYƷxoXe[/9ϡMp7q\njNEk%IR+sho8WA,ito}J]iz)O\0[_&+ ,\"\0xut47-kZV7QZ]k1.Ltg\0zGRd2_p*:GiT*H\nN=iN\"v\Z· pѕEQVȜvh^?8W^)zzҿ\0)\0\0\0\0\0\0\0!\010AQ aq@P\0\0?!\0*؍G@&(MQ9;`?)ztHB*!`+a$B/24d\'f-:fT`\"BPZ-L3hPvr9݃ gfteO!Ҋ@;$s :JL.sKf j \rWi\',hLAFj]&Aq&Ojyl\0n{rJ0Z٣6&=/{gӋ w!j\n!6qtxoQTO dO=ZX_w@O38:pM\0Z:i|n?)ާGZ e=\0sPTH4~ *\'u@Gz`<tإ:ıO9?Hf˓e&OlB(uDz\n=v.Wќ̅v/6r4EbIrIF] R9;-8rʌ-R =E&fAM}TWU x7Py,$1*j=B1(znc߳$   gl;ۿXaB\n^9wCRlJEr娲L3Lb,qE3߯ˡLzȞH5xX֨092$h,jì\n l2r;<\'@H޹v;=\\rozVV\r^MpRLի\r#Nr안-Dhp\0oW ۗf*0;w\0_>:詑2}_',4,0,'','','',''),(23,4,7,'32554cfc4ecad9ed','343e3e9f0f5a36ea763c101490db9ca6','2015-02-02 18:41:48','2015-02-02 18:41:48','','','Contact Photos','3.jpg?rev=2015-02-02+12%3A02%3A40','image/jpeg',80,80,2858,'\0JFIF\0\0\0\0\0\0\0rk!yX-\rW՘=&IW^.1Vrce:q^:bC+]x!- Ա\0]azIx \n~Eyv>[zW2cɹ1t,d[k \\.R*5V@B҄ !jJvZ`\0c\";7\reŅN>۫YfGt0Sd\"~zA`l%7c۲ܖ81W1dF!\"@c3TG-FF=$\\HXLy<7U;y%a0/B#Y߶Bǫ:G\'R?KuD208:wEQx-s|%cn/~\n.4*/U\Z+I+>Hn311X\\}f?Fd2vSFb\":6PO+%⬅vJ.Ҵ1G1ϘA n%Q1\ZTܬ߃-p iT7iPw`^/c\Z]~A =E_\'n1@#U_\ZbXyϟ!Ϻ,wMZ\"UZ1>a@m\"W2>%ʭ]@!`C ZZ \01 1#G*ݯ3(]6S3*pLv]<ߖWefD~^v/RYqTc{ׂ\Z,.Y}\Zڋ go+\0 r+VPy-ʻx?$J>lZY(-|\0Yb7c۩mސTr\Z=?i?_M?&yف\0gh13\0H[_r#f&cg\0\0\0\0\0\0\0\0\0\0!\01 AQaq\0\0?!\'sXMoVd:EA+c/Wh;6G\Zk Pk^`h,we.O͘\0ϔS\\B+pD P@(꺓p\'>[ J\"m 4r\0+3<9w:kͅ\0g *,PRdP*&O5wB?!#V~Q\n$第0\'\"hI2%c5mTOcc0Q (\\9`VSSHaDX_\'͐dm&vUiC\n_J\0 \0\0\0\0\0\0p\0 B$\0 8\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\0?O\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\0?O\0\"\0\0\0\0\0\0\0\0\0!1A Qaq\0\0?꡴>Z4;Hީ\0Ƽ)a{\\^ޅ ϰۺBz)ctT᯾:@Bܰ\n\nCiZi\\f ojqO> +K*ל̮-Rd`Cwd n3[\ZG fBcA-A4|V|#Yk[P74iicneb 9lJatP%){rn2\\>T2=_o?Qz$^x9EcuVˆcj(wl\0uSRC\"q&W!1q&<)3KlVˡ,|! fs1MbLx8z~F>Ԙ<Q\"#D|iZP::`zMY!0\"1\0ć{HF E1bdHZ^NjiNtzCRUP\0 \0\0\0\0\0S\04\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00\0?\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00\0?\0%\0\0\0\0\0\0\0\0\0!1AQaq\0\0?5Ѵ,S{T \0N\0JmlZ+TH;0TNvbLjQ{fu\' G^(dd[JM:v>hN27^wp8xއ)= vtڔ&SBƇ͏_oqh0´zG8I-f=c5\r^2zJ ,#vk2+}{@и$\'.{.B<5|(: +ݧqk98j\n:QU5 6o(@-h2qϏ(մ~||4e fς\n`r;YFHRQM)3;&אc[\0D1pfF\0읇6^inGO\\k9dٹ ȕ^XX ڧgJy9lɎ=&1HZ)n?#зɒy5իpSW)_Z±p=ͅB,i@duQiL`8zo~\\G~G7\"l@Q2i3 L vY\njt^&k3Z 3LcC Sl*x \0ݯ{r6ȶO&/$\r4 iM;e+=g$p#mE\'ӛi\n5KDfz8v2: J՞:tȇ!(Is䰤E\0+82tdJO\nUӭ&&ww4ߣ٧*LIh/r6#v9 )٢R#e%iɫt\\r? hZe,T[iH-Ԟ`vGE&-7R#A\Z]ϡaeu9򬌸R/DxK_ݰJgkܬNv].=\'&5gq\0+WNF9lD(l㓦1{D)[B×m\ncG~1. .$^7hC\n5@@YMC0`,V a6)yEB(Vb TUU\"T4D6X7u/blϟl5hcy<-L\nE$t=j}ѱH_~| Vw\Z0EmrV@5\Z\0\0\r9#ͮh,WƎӣ\\IaZh\0MKunq6D(DIYG3~؉/K; NJR$\Z)٧o:%zd+Ww;zw֗Ѵ YcTRTD4 ^7ݒ盇!o,z޲zR<Ljm]\0vN+tŽZǫKڻ\n7\"fbk~R=R$-̢\\;P˷&<Olmg&жAYBlHƹ%v:-t’IHF}ar 59k\"!9ĺFmۇ\"I؛AgYG:IHYƷxoXe[/9ϡMp7q\njNEk%IR+sho8WA,ito}J]iz)O\0[_&+ ,\"\0xut47-kZV7QZ]k1.Ltg\0zGRd2_p*:GiT*H\nN=iN\"v\Z· pѕEQVȜvh^?8W^)zzҿ\0)\0\0\0\0\0\0\0!\010AQ aq@P\0\0?!\0*؍G@&(MQ9;`?)ztHB*!`+a$B/24d\'f-:fT`\"BPZ-L3hPvr9݃ gfteO!Ҋ@;$s :JL.sKf j \rWi\',hLAFj]&Aq&Ojyl\0n{rJ0Z٣6&=/{gӋ w!j\n!6qtxoQTO dO=ZX_w@O38:pM\0Z:i|n?)ާGZ e=\0sPTH4~ *\'u@Gz`<tإ:ıO9?Hf˓e&OlB(uDz\n=v.Wќ̅v/6r4EbIrIF] R9;-8rʌ-R =E&fAM}TWU x7Py,$1*j=B1(znc߳$   gl;ۿXaB\n^9wCRlJEr娲L3Lb,qE3߯ˡLzȞH5xX֨092$h,jì\n l2r;<\'@H޹v;=\\rozVV\r^MpRLի\r#Nr안-Dhp\0oW ۗf*0;w\0_>:詑2}_',4,0,'','','',''),(26,6,9,'79554cfc5ca68cdc','75b60a2a1e6b2cdf2eb3637955a7a5c2','2015-02-02 18:45:30','2015-02-02 18:45:30','','','Contact Photos','5.jpg?rev=2015-02-02+12%3A04%3A06','image/jpeg',80,80,2858,'\0JFIF\0\0\0\0\0\0\0rk!yX-\rW՘=&IW^.1Vrce:q^:bC+]x!- Ա\0]azIx \n~Eyv>[zW2cɹ1t,d[k \\.R*5V@B҄ !jJvZ`\0c\";7\reŅN>۫YfGt0Sd\"~zA`l%7c۲ܖ81W1dF!\"@c3TG-FF=$\\HXLy<7U;y%a0/B#Y߶Bǫ:G\'R?KuD208:wEQx-s|%cn/~\n.4*/U\Z+I+>Hn311X\\}f?Fd2vSFb\":6PO+%⬅vJ.Ҵ1G1ϘA n%Q1\ZTܬ߃-p iT7iPw`^/c\Z]~A =E_\'n1@#U_\ZbXyϟ!Ϻ,wMZ\"UZ1>a@m\"W2>%ʭ]@!`C ZZ \01 1#G*ݯ3(]6S3*pLv]<ߖWefD~^v/RYqTc{ׂ\Z,.Y}\Zڋ go+\0 r+VPy-ʻx?$J>lZY(-|\0Yb7c۩mސTr\Z=?i?_M?&yف\0gh13\0H[_r#f&cg\0\0\0\0\0\0\0\0\0\0!\01 AQaq\0\0?!\'sXMoVd:EA+c/Wh;6G\Zk Pk^`h,we.O͘\0ϔS\\B+pD P@(꺓p\'>[ J\"m 4r\0+3<9w:kͅ\0g *,PRdP*&O5wB?!#V~Q\n$第0\'\"hI2%c5mTOcc0Q (\\9`VSSHaDX_\'͐dm&vUiC\n_J\0 \0\0\0\0\0\0p\0 B$\0 8\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\0?O\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\0?O\0\"\0\0\0\0\0\0\0\0\0!1A Qaq\0\0?꡴>Z4;Hީ\0Ƽ)a{\\^ޅ ϰۺBz)ctT᯾:@Bܰ\n\nCiZi\\f ojqO> +K*ל̮-Rd`Cwd n3[\ZG fBcA-A4|V|#Yk[P74iicneb 9lJatP%){rn2\\>T2=_o?Qz$^x9EcuVˆcj(wl\0uSRC\"q&W!1q&<)3KlVˡ,|! fs1MbLx8z~F>Ԙ<Q\"#D|iZP::`zMY!0\"1\0ć{HF E1bdHZ^NjiNtzCRUP\0 \0\0\0\0\0S\04\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00\0?\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00\0?\0%\0\0\0\0\0\0\0\0\0!1AQaq\0\0?5Ѵ,S{T \0N\0JmlZ+TH;0TNvbLjQ{fu\' G^(dd[JM:v>hN27^wp8xއ)= vtڔ&SBƇ͏_oqh0´zG8I-f=c5\r^2zJ ,#vk2+}{@и$\'.{.B<5|(: +ݧqk98j\n:QU5 6o(@-h2qϏ(մ~||4e fς\n`r;YFHRQM)3;&אc[\0D1pfF\0읇6^inGO\\k9dٹ ȕ^XX ڧgJy9lɎ=&1HZ)n?#зɒy5իpSW)_Z±p=ͅB,i@duQiL`8zo~\\G~G7\"l@Q2i3 L vY\njt^&k3Z 3LcC Sl*x \0ݯ{r6ȶO&/$\r4 iM;e+=g$p#mE\'ӛi\n5KDfz8v2: J՞:tȇ!(Is䰤E\0+82tdJO\nUӭ&&ww4ߣ٧*LIh/r6#v9 )٢R#e%iɫt\\r? hZe,T[iH-Ԟ`vGE&-7R#A\Z]ϡaeu9򬌸R/DxK_ݰJgkܬNv].=\'&5gq\0+WNF9lD(l㓦1{D)[B×m\ncG~1. .$^7hC\n5@@YMC0`,V a6)yEB(Vb TUU\"T4D6X7u/blϟl5hcy<-L\nE$t=j}ѱH_~| Vw\Z0EmrV@5\Z\0\0\r9#ͮh,WƎӣ\\IaZh\0MKunq6D(DIYG3~؉/K; NJR$\Z)٧o:%zd+Ww;zw֗Ѵ YcTRTD4 ^7ݒ盇!o,z޲zR<Ljm]\0vN+tŽZǫKڻ\n7\"fbk~R=R$-̢\\;P˷&<Olmg&жAYBlHƹ%v:-t’IHF}ar 59k\"!9ĺFmۇ\"I؛AgYG:IHYƷxoXe[/9ϡMp7q\njNEk%IR+sho8WA,ito}J]iz)O\0[_&+ ,\"\0xut47-kZV7QZ]k1.Ltg\0zGRd2_p*:GiT*H\nN=iN\"v\Z· pѕEQVȜvh^?8W^)zzҿ\0)\0\0\0\0\0\0\0!\010AQ aq@P\0\0?!\0*؍G@&(MQ9;`?)ztHB*!`+a$B/24d\'f-:fT`\"BPZ-L3hPvr9݃ gfteO!Ҋ@;$s :JL.sKf j \rWi\',hLAFj]&Aq&Ojyl\0n{rJ0Z٣6&=/{gӋ w!j\n!6qtxoQTO dO=ZX_w@O38:pM\0Z:i|n?)ާGZ e=\0sPTH4~ *\'u@Gz`<tإ:ıO9?Hf˓e&OlB(uDz\n=v.Wќ̅v/6r4EbIrIF] R9;-8rʌ-R =E&fAM}TWU x7Py,$1*j=B1(znc߳$   gl;ۿXaB\n^9wCRlJEr娲L3Lb,qE3߯ˡLzȞH5xX֨092$h,jì\n l2r;<\'@H޹v;=\\rozVV\r^MpRLի\r#Nr안-Dhp\0oW ۗf*0;w\0_>:詑2}_',4,0,'','','',''),(29,5,10,'57054cfc5cac8e5c','d04134664ffd0d558b08ee01f6859f3a','2015-02-02 18:45:30','2015-02-02 18:45:30','','','Contact Photos','6.jpg?rev=2015-02-02+12%3A04%3A29','image/jpeg',80,80,2858,'\0JFIF\0\0\0\0\0\0\0rk!yX-\rW՘=&IW^.1Vrce:q^:bC+]x!- Ա\0]azIx \n~Eyv>[zW2cɹ1t,d[k \\.R*5V@B҄ !jJvZ`\0c\";7\reŅN>۫YfGt0Sd\"~zA`l%7c۲ܖ81W1dF!\"@c3TG-FF=$\\HXLy<7U;y%a0/B#Y߶Bǫ:G\'R?KuD208:wEQx-s|%cn/~\n.4*/U\Z+I+>Hn311X\\}f?Fd2vSFb\":6PO+%⬅vJ.Ҵ1G1ϘA n%Q1\ZTܬ߃-p iT7iPw`^/c\Z]~A =E_\'n1@#U_\ZbXyϟ!Ϻ,wMZ\"UZ1>a@m\"W2>%ʭ]@!`C ZZ \01 1#G*ݯ3(]6S3*pLv]<ߖWefD~^v/RYqTc{ׂ\Z,.Y}\Zڋ go+\0 r+VPy-ʻx?$J>lZY(-|\0Yb7c۩mސTr\Z=?i?_M?&yف\0gh13\0H[_r#f&cg\0\0\0\0\0\0\0\0\0\0!\01 AQaq\0\0?!\'sXMoVd:EA+c/Wh;6G\Zk Pk^`h,we.O͘\0ϔS\\B+pD P@(꺓p\'>[ J\"m 4r\0+3<9w:kͅ\0g *,PRdP*&O5wB?!#V~Q\n$第0\'\"hI2%c5mTOcc0Q (\\9`VSSHaDX_\'͐dm&vUiC\n_J\0 \0\0\0\0\0\0p\0 B$\0 8\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\0?O\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\0?O\0\"\0\0\0\0\0\0\0\0\0!1A Qaq\0\0?꡴>Z4;Hީ\0Ƽ)a{\\^ޅ ϰۺBz)ctT᯾:@Bܰ\n\nCiZi\\f ojqO> +K*ל̮-Rd`Cwd n3[\ZG fBcA-A4|V|#Yk[P74iicneb 9lJatP%){rn2\\>T2=_o?Qz$^x9EcuVˆcj(wl\0uSRC\"q&W!1q&<)3KlVˡ,|! fs1MbLx8z~F>Ԙ<Q\"#D|iZP::`zMY!0\"1\0ć{HF E1bdHZ^NjiNtzCRUP\0 \0\0\0\0\0S\04\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00\0?\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00\0?\0%\0\0\0\0\0\0\0\0\0!1AQaq\0\0?5Ѵ,S{T \0N\0JmlZ+TH;0TNvbLjQ{fu\' G^(dd[JM:v>hN27^wp8xއ)= vtڔ&SBƇ͏_oqh0´zG8I-f=c5\r^2zJ ,#vk2+}{@и$\'.{.B<5|(: +ݧqk98j\n:QU5 6o(@-h2qϏ(մ~||4e fς\n`r;YFHRQM)3;&אc[\0D1pfF\0읇6^inGO\\k9dٹ ȕ^XX ڧgJy9lɎ=&1HZ)n?#зɒy5իpSW)_Z±p=ͅB,i@duQiL`8zo~\\G~G7\"l@Q2i3 L vY\njt^&k3Z 3LcC Sl*x \0ݯ{r6ȶO&/$\r4 iM;e+=g$p#mE\'ӛi\n5KDfz8v2: J՞:tȇ!(Is䰤E\0+82tdJO\nUӭ&&ww4ߣ٧*LIh/r6#v9 )٢R#e%iɫt\\r? hZe,T[iH-Ԟ`vGE&-7R#A\Z]ϡaeu9򬌸R/DxK_ݰJgkܬNv].=\'&5gq\0+WNF9lD(l㓦1{D)[B×m\ncG~1. .$^7hC\n5@@YMC0`,V a6)yEB(Vb TUU\"T4D6X7u/blϟl5hcy<-L\nE$t=j}ѱH_~| Vw\Z0EmrV@5\Z\0\0\r9#ͮh,WƎӣ\\IaZh\0MKunq6D(DIYG3~؉/K; NJR$\Z)٧o:%zd+Ww;zw֗Ѵ YcTRTD4 ^7ݒ盇!o,z޲zR<Ljm]\0vN+tŽZǫKڻ\n7\"fbk~R=R$-̢\\;P˷&<Olmg&жAYBlHƹ%v:-t’IHF}ar 59k\"!9ĺFmۇ\"I؛AgYG:IHYƷxoXe[/9ϡMp7q\njNEk%IR+sho8WA,ito}J]iz)O\0[_&+ ,\"\0xut47-kZV7QZ]k1.Ltg\0zGRd2_p*:GiT*H\nN=iN\"v\Z· pѕEQVȜvh^?8W^)zzҿ\0)\0\0\0\0\0\0\0!\010AQ aq@P\0\0?!\0*؍G@&(MQ9;`?)ztHB*!`+a$B/24d\'f-:fT`\"BPZ-L3hPvr9݃ gfteO!Ҋ@;$s :JL.sKf j \rWi\',hLAFj]&Aq&Ojyl\0n{rJ0Z٣6&=/{gӋ w!j\n!6qtxoQTO dO=ZX_w@O38:pM\0Z:i|n?)ާGZ e=\0sPTH4~ *\'u@Gz`<tإ:ıO9?Hf˓e&OlB(uDz\n=v.Wќ̅v/6r4EbIrIF] R9;-8rʌ-R =E&fAM}TWU x7Py,$1*j=B1(znc߳$   gl;ۿXaB\n^9wCRlJEr娲L3Lb,qE3߯ˡLzȞH5xX֨092$h,jì\n l2r;<\'@H޹v;=\\rozVV\r^MpRLի\r#Nr안-Dhp\0oW ۗf*0;w\0_>:詑2}_',4,0,'','','',''),(32,2,16,'49454cfc71b75a4e','01072618a17425401fafdeb40fcd79ac','2015-02-02 18:51:07','2015-02-02 18:51:07','','','Contact Photos','5.jpg?rev=2015-02-02+12%3A04%3A06','image/jpeg',80,80,2858,'\0JFIF\0\0\0\0\0\0\0rk!yX-\rW՘=&IW^.1Vrce:q^:bC+]x!- Ա\0]azIx \n~Eyv>[zW2cɹ1t,d[k \\.R*5V@B҄ !jJvZ`\0c\";7\reŅN>۫YfGt0Sd\"~zA`l%7c۲ܖ81W1dF!\"@c3TG-FF=$\\HXLy<7U;y%a0/B#Y߶Bǫ:G\'R?KuD208:wEQx-s|%cn/~\n.4*/U\Z+I+>Hn311X\\}f?Fd2vSFb\":6PO+%⬅vJ.Ҵ1G1ϘA n%Q1\ZTܬ߃-p iT7iPw`^/c\Z]~A =E_\'n1@#U_\ZbXyϟ!Ϻ,wMZ\"UZ1>a@m\"W2>%ʭ]@!`C ZZ \01 1#G*ݯ3(]6S3*pLv]<ߖWefD~^v/RYqTc{ׂ\Z,.Y}\Zڋ go+\0 r+VPy-ʻx?$J>lZY(-|\0Yb7c۩mސTr\Z=?i?_M?&yف\0gh13\0H[_r#f&cg\0\0\0\0\0\0\0\0\0\0!\01 AQaq\0\0?!\'sXMoVd:EA+c/Wh;6G\Zk Pk^`h,we.O͘\0ϔS\\B+pD P@(꺓p\'>[ J\"m 4r\0+3<9w:kͅ\0g *,PRdP*&O5wB?!#V~Q\n$第0\'\"hI2%c5mTOcc0Q (\\9`VSSHaDX_\'͐dm&vUiC\n_J\0 \0\0\0\0\0\0p\0 B$\0 8\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\0?O\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\0?O\0\"\0\0\0\0\0\0\0\0\0!1A Qaq\0\0?꡴>Z4;Hީ\0Ƽ)a{\\^ޅ ϰۺBz)ctT᯾:@Bܰ\n\nCiZi\\f ojqO> +K*ל̮-Rd`Cwd n3[\ZG fBcA-A4|V|#Yk[P74iicneb 9lJatP%){rn2\\>T2=_o?Qz$^x9EcuVˆcj(wl\0uSRC\"q&W!1q&<)3KlVˡ,|! fs1MbLx8z~F>Ԙ<Q\"#D|iZP::`zMY!0\"1\0ć{HF E1bdHZ^NjiNtzCRUP\0 \0\0\0\0\0S\04\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00\0?\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00\0?\0%\0\0\0\0\0\0\0\0\0!1AQaq\0\0?5Ѵ,S{T \0N\0JmlZ+TH;0TNvbLjQ{fu\' G^(dd[JM:v>hN27^wp8xއ)= vtڔ&SBƇ͏_oqh0´zG8I-f=c5\r^2zJ ,#vk2+}{@и$\'.{.B<5|(: +ݧqk98j\n:QU5 6o(@-h2qϏ(մ~||4e fς\n`r;YFHRQM)3;&אc[\0D1pfF\0읇6^inGO\\k9dٹ ȕ^XX ڧgJy9lɎ=&1HZ)n?#зɒy5իpSW)_Z±p=ͅB,i@duQiL`8zo~\\G~G7\"l@Q2i3 L vY\njt^&k3Z 3LcC Sl*x \0ݯ{r6ȶO&/$\r4 iM;e+=g$p#mE\'ӛi\n5KDfz8v2: J՞:tȇ!(Is䰤E\0+82tdJO\nUӭ&&ww4ߣ٧*LIh/r6#v9 )٢R#e%iɫt\\r? hZe,T[iH-Ԟ`vGE&-7R#A\Z]ϡaeu9򬌸R/DxK_ݰJgkܬNv].=\'&5gq\0+WNF9lD(l㓦1{D)[B×m\ncG~1. .$^7hC\n5@@YMC0`,V a6)yEB(Vb TUU\"T4D6X7u/blϟl5hcy<-L\nE$t=j}ѱH_~| Vw\Z0EmrV@5\Z\0\0\r9#ͮh,WƎӣ\\IaZh\0MKunq6D(DIYG3~؉/K; NJR$\Z)٧o:%zd+Ww;zw֗Ѵ YcTRTD4 ^7ݒ盇!o,z޲zR<Ljm]\0vN+tŽZǫKڻ\n7\"fbk~R=R$-̢\\;P˷&<Olmg&жAYBlHƹ%v:-t’IHF}ar 59k\"!9ĺFmۇ\"I؛AgYG:IHYƷxoXe[/9ϡMp7q\njNEk%IR+sho8WA,ito}J]iz)O\0[_&+ ,\"\0xut47-kZV7QZ]k1.Ltg\0zGRd2_p*:GiT*H\nN=iN\"v\Z· pѕEQVȜvh^?8W^)zzҿ\0)\0\0\0\0\0\0\0!\010AQ aq@P\0\0?!\0*؍G@&(MQ9;`?)ztHB*!`+a$B/24d\'f-:fT`\"BPZ-L3hPvr9݃ gfteO!Ҋ@;$s :JL.sKf j \rWi\',hLAFj]&Aq&Ojyl\0n{rJ0Z٣6&=/{gӋ w!j\n!6qtxoQTO dO=ZX_w@O38:pM\0Z:i|n?)ާGZ e=\0sPTH4~ *\'u@Gz`<tإ:ıO9?Hf˓e&OlB(uDz\n=v.Wќ̅v/6r4EbIrIF] R9;-8rʌ-R =E&fAM}TWU x7Py,$1*j=B1(znc߳$   gl;ۿXaB\n^9wCRlJEr娲L3Lb,qE3߯ˡLzȞH5xX֨092$h,jì\n l2r;<\'@H޹v;=\\rozVV\r^MpRLի\r#Nr안-Dhp\0oW ۗf*0;w\0_>:詑2}_',4,0,'','','',''),(35,5,15,'27554cfc71bcb2e8','73de577b8bcc76d9358ab8536f0a5cca','2015-02-02 18:51:07','2015-02-02 18:51:07','','','Contact Photos','2.jpg?rev=2015-02-02+12%3A02%3A11','image/jpeg',80,80,2858,'\0JFIF\0\0\0\0\0\0\0rk!yX-\rW՘=&IW^.1Vrce:q^:bC+]x!- Ա\0]azIx \n~Eyv>[zW2cɹ1t,d[k \\.R*5V@B҄ !jJvZ`\0c\";7\reŅN>۫YfGt0Sd\"~zA`l%7c۲ܖ81W1dF!\"@c3TG-FF=$\\HXLy<7U;y%a0/B#Y߶Bǫ:G\'R?KuD208:wEQx-s|%cn/~\n.4*/U\Z+I+>Hn311X\\}f?Fd2vSFb\":6PO+%⬅vJ.Ҵ1G1ϘA n%Q1\ZTܬ߃-p iT7iPw`^/c\Z]~A =E_\'n1@#U_\ZbXyϟ!Ϻ,wMZ\"UZ1>a@m\"W2>%ʭ]@!`C ZZ \01 1#G*ݯ3(]6S3*pLv]<ߖWefD~^v/RYqTc{ׂ\Z,.Y}\Zڋ go+\0 r+VPy-ʻx?$J>lZY(-|\0Yb7c۩mސTr\Z=?i?_M?&yف\0gh13\0H[_r#f&cg\0\0\0\0\0\0\0\0\0\0!\01 AQaq\0\0?!\'sXMoVd:EA+c/Wh;6G\Zk Pk^`h,we.O͘\0ϔS\\B+pD P@(꺓p\'>[ J\"m 4r\0+3<9w:kͅ\0g *,PRdP*&O5wB?!#V~Q\n$第0\'\"hI2%c5mTOcc0Q (\\9`VSSHaDX_\'͐dm&vUiC\n_J\0 \0\0\0\0\0\0p\0 B$\0 8\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\0?O\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\0?O\0\"\0\0\0\0\0\0\0\0\0!1A Qaq\0\0?꡴>Z4;Hީ\0Ƽ)a{\\^ޅ ϰۺBz)ctT᯾:@Bܰ\n\nCiZi\\f ojqO> +K*ל̮-Rd`Cwd n3[\ZG fBcA-A4|V|#Yk[P74iicneb 9lJatP%){rn2\\>T2=_o?Qz$^x9EcuVˆcj(wl\0uSRC\"q&W!1q&<)3KlVˡ,|! fs1MbLx8z~F>Ԙ<Q\"#D|iZP::`zMY!0\"1\0ć{HF E1bdHZ^NjiNtzCRUP\0 \0\0\0\0\0S\04\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00\0?\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00\0?\0%\0\0\0\0\0\0\0\0\0!1AQaq\0\0?5Ѵ,S{T \0N\0JmlZ+TH;0TNvbLjQ{fu\' G^(dd[JM:v>hN27^wp8xއ)= vtڔ&SBƇ͏_oqh0´zG8I-f=c5\r^2zJ ,#vk2+}{@и$\'.{.B<5|(: +ݧqk98j\n:QU5 6o(@-h2qϏ(մ~||4e fς\n`r;YFHRQM)3;&אc[\0D1pfF\0읇6^inGO\\k9dٹ ȕ^XX ڧgJy9lɎ=&1HZ)n?#зɒy5իpSW)_Z±p=ͅB,i@duQiL`8zo~\\G~G7\"l@Q2i3 L vY\njt^&k3Z 3LcC Sl*x \0ݯ{r6ȶO&/$\r4 iM;e+=g$p#mE\'ӛi\n5KDfz8v2: J՞:tȇ!(Is䰤E\0+82tdJO\nUӭ&&ww4ߣ٧*LIh/r6#v9 )٢R#e%iɫt\\r? hZe,T[iH-Ԟ`vGE&-7R#A\Z]ϡaeu9򬌸R/DxK_ݰJgkܬNv].=\'&5gq\0+WNF9lD(l㓦1{D)[B×m\ncG~1. .$^7hC\n5@@YMC0`,V a6)yEB(Vb TUU\"T4D6X7u/blϟl5hcy<-L\nE$t=j}ѱH_~| Vw\Z0EmrV@5\Z\0\0\r9#ͮh,WƎӣ\\IaZh\0MKunq6D(DIYG3~؉/K; NJR$\Z)٧o:%zd+Ww;zw֗Ѵ YcTRTD4 ^7ݒ盇!o,z޲zR<Ljm]\0vN+tŽZǫKڻ\n7\"fbk~R=R$-̢\\;P˷&<Olmg&жAYBlHƹ%v:-t’IHF}ar 59k\"!9ĺFmۇ\"I؛AgYG:IHYƷxoXe[/9ϡMp7q\njNEk%IR+sho8WA,ito}J]iz)O\0[_&+ ,\"\0xut47-kZV7QZ]k1.Ltg\0zGRd2_p*:GiT*H\nN=iN\"v\Z· pѕEQVȜvh^?8W^)zzҿ\0)\0\0\0\0\0\0\0!\010AQ aq@P\0\0?!\0*؍G@&(MQ9;`?)ztHB*!`+a$B/24d\'f-:fT`\"BPZ-L3hPvr9݃ gfteO!Ҋ@;$s :JL.sKf j \rWi\',hLAFj]&Aq&Ojyl\0n{rJ0Z٣6&=/{gӋ w!j\n!6qtxoQTO dO=ZX_w@O38:pM\0Z:i|n?)ާGZ e=\0sPTH4~ *\'u@Gz`<tإ:ıO9?Hf˓e&OlB(uDz\n=v.Wќ̅v/6r4EbIrIF] R9;-8rʌ-R =E&fAM}TWU x7Py,$1*j=B1(znc߳$   gl;ۿXaB\n^9wCRlJEr娲L3Lb,qE3߯ˡLzȞH5xX֨092$h,jì\n l2r;<\'@H޹v;=\\rozVV\r^MpRLի\r#Nr안-Dhp\0oW ۗf*0;w\0_>:詑2}_',4,0,'','','',''),(38,2,12,'58354cfc7369ebdb','b18ee0c7f160fdbf8f5d91a56a07a13c','2015-02-02 18:51:34','2015-02-02 18:51:34','','','Contact Photos','3.jpg?rev=2015-02-02+12%3A02%3A40','image/jpeg',80,80,2858,'\0JFIF\0\0\0\0\0\0\0rk!yX-\rW՘=&IW^.1Vrce:q^:bC+]x!- Ա\0]azIx \n~Eyv>[zW2cɹ1t,d[k \\.R*5V@B҄ !jJvZ`\0c\";7\reŅN>۫YfGt0Sd\"~zA`l%7c۲ܖ81W1dF!\"@c3TG-FF=$\\HXLy<7U;y%a0/B#Y߶Bǫ:G\'R?KuD208:wEQx-s|%cn/~\n.4*/U\Z+I+>Hn311X\\}f?Fd2vSFb\":6PO+%⬅vJ.Ҵ1G1ϘA n%Q1\ZTܬ߃-p iT7iPw`^/c\Z]~A =E_\'n1@#U_\ZbXyϟ!Ϻ,wMZ\"UZ1>a@m\"W2>%ʭ]@!`C ZZ \01 1#G*ݯ3(]6S3*pLv]<ߖWefD~^v/RYqTc{ׂ\Z,.Y}\Zڋ go+\0 r+VPy-ʻx?$J>lZY(-|\0Yb7c۩mސTr\Z=?i?_M?&yف\0gh13\0H[_r#f&cg\0\0\0\0\0\0\0\0\0\0!\01 AQaq\0\0?!\'sXMoVd:EA+c/Wh;6G\Zk Pk^`h,we.O͘\0ϔS\\B+pD P@(꺓p\'>[ J\"m 4r\0+3<9w:kͅ\0g *,PRdP*&O5wB?!#V~Q\n$第0\'\"hI2%c5mTOcc0Q (\\9`VSSHaDX_\'͐dm&vUiC\n_J\0 \0\0\0\0\0\0p\0 B$\0 8\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\0?O\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\0?O\0\"\0\0\0\0\0\0\0\0\0!1A Qaq\0\0?꡴>Z4;Hީ\0Ƽ)a{\\^ޅ ϰۺBz)ctT᯾:@Bܰ\n\nCiZi\\f ojqO> +K*ל̮-Rd`Cwd n3[\ZG fBcA-A4|V|#Yk[P74iicneb 9lJatP%){rn2\\>T2=_o?Qz$^x9EcuVˆcj(wl\0uSRC\"q&W!1q&<)3KlVˡ,|! fs1MbLx8z~F>Ԙ<Q\"#D|iZP::`zMY!0\"1\0ć{HF E1bdHZ^NjiNtzCRUP\0 \0\0\0\0\0S\04\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00\0?\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00\0?\0%\0\0\0\0\0\0\0\0\0!1AQaq\0\0?5Ѵ,S{T \0N\0JmlZ+TH;0TNvbLjQ{fu\' G^(dd[JM:v>hN27^wp8xއ)= vtڔ&SBƇ͏_oqh0´zG8I-f=c5\r^2zJ ,#vk2+}{@и$\'.{.B<5|(: +ݧqk98j\n:QU5 6o(@-h2qϏ(մ~||4e fς\n`r;YFHRQM)3;&אc[\0D1pfF\0읇6^inGO\\k9dٹ ȕ^XX ڧgJy9lɎ=&1HZ)n?#зɒy5իpSW)_Z±p=ͅB,i@duQiL`8zo~\\G~G7\"l@Q2i3 L vY\njt^&k3Z 3LcC Sl*x \0ݯ{r6ȶO&/$\r4 iM;e+=g$p#mE\'ӛi\n5KDfz8v2: J՞:tȇ!(Is䰤E\0+82tdJO\nUӭ&&ww4ߣ٧*LIh/r6#v9 )٢R#e%iɫt\\r? hZe,T[iH-Ԟ`vGE&-7R#A\Z]ϡaeu9򬌸R/DxK_ݰJgkܬNv].=\'&5gq\0+WNF9lD(l㓦1{D)[B×m\ncG~1. .$^7hC\n5@@YMC0`,V a6)yEB(Vb TUU\"T4D6X7u/blϟl5hcy<-L\nE$t=j}ѱH_~| Vw\Z0EmrV@5\Z\0\0\r9#ͮh,WƎӣ\\IaZh\0MKunq6D(DIYG3~؉/K; NJR$\Z)٧o:%zd+Ww;zw֗Ѵ YcTRTD4 ^7ݒ盇!o,z޲zR<Ljm]\0vN+tŽZǫKڻ\n7\"fbk~R=R$-̢\\;P˷&<Olmg&жAYBlHƹ%v:-t’IHF}ar 59k\"!9ĺFmۇ\"I؛AgYG:IHYƷxoXe[/9ϡMp7q\njNEk%IR+sho8WA,ito}J]iz)O\0[_&+ ,\"\0xut47-kZV7QZ]k1.Ltg\0zGRd2_p*:GiT*H\nN=iN\"v\Z· pѕEQVȜvh^?8W^)zzҿ\0)\0\0\0\0\0\0\0!\010AQ aq@P\0\0?!\0*؍G@&(MQ9;`?)ztHB*!`+a$B/24d\'f-:fT`\"BPZ-L3hPvr9݃ gfteO!Ҋ@;$s :JL.sKf j \rWi\',hLAFj]&Aq&Ojyl\0n{rJ0Z٣6&=/{gӋ w!j\n!6qtxoQTO dO=ZX_w@O38:pM\0Z:i|n?)ާGZ e=\0sPTH4~ *\'u@Gz`<tإ:ıO9?Hf˓e&OlB(uDz\n=v.Wќ̅v/6r4EbIrIF] R9;-8rʌ-R =E&fAM}TWU x7Py,$1*j=B1(znc߳$   gl;ۿXaB\n^9wCRlJEr娲L3Lb,qE3߯ˡLzȞH5xX֨092$h,jì\n l2r;<\'@H޹v;=\\rozVV\r^MpRLի\r#Nr안-Dhp\0oW ۗf*0;w\0_>:詑2}_',4,0,'','','',''),(41,3,11,'21254cfc73701af6','389cca68d9a2e64538a81680925703b8','2015-02-02 18:51:35','2015-02-02 18:51:35','','','Contact Photos','2.jpg?rev=2015-02-02+12%3A02%3A11','image/jpeg',80,80,2858,'\0JFIF\0\0\0\0\0\0\0rk!yX-\rW՘=&IW^.1Vrce:q^:bC+]x!- Ա\0]azIx \n~Eyv>[zW2cɹ1t,d[k \\.R*5V@B҄ !jJvZ`\0c\";7\reŅN>۫YfGt0Sd\"~zA`l%7c۲ܖ81W1dF!\"@c3TG-FF=$\\HXLy<7U;y%a0/B#Y߶Bǫ:G\'R?KuD208:wEQx-s|%cn/~\n.4*/U\Z+I+>Hn311X\\}f?Fd2vSFb\":6PO+%⬅vJ.Ҵ1G1ϘA n%Q1\ZTܬ߃-p iT7iPw`^/c\Z]~A =E_\'n1@#U_\ZbXyϟ!Ϻ,wMZ\"UZ1>a@m\"W2>%ʭ]@!`C ZZ \01 1#G*ݯ3(]6S3*pLv]<ߖWefD~^v/RYqTc{ׂ\Z,.Y}\Zڋ go+\0 r+VPy-ʻx?$J>lZY(-|\0Yb7c۩mސTr\Z=?i?_M?&yف\0gh13\0H[_r#f&cg\0\0\0\0\0\0\0\0\0\0!\01 AQaq\0\0?!\'sXMoVd:EA+c/Wh;6G\Zk Pk^`h,we.O͘\0ϔS\\B+pD P@(꺓p\'>[ J\"m 4r\0+3<9w:kͅ\0g *,PRdP*&O5wB?!#V~Q\n$第0\'\"hI2%c5mTOcc0Q (\\9`VSSHaDX_\'͐dm&vUiC\n_J\0 \0\0\0\0\0\0p\0 B$\0 8\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\0?O\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\0?O\0\"\0\0\0\0\0\0\0\0\0!1A Qaq\0\0?꡴>Z4;Hީ\0Ƽ)a{\\^ޅ ϰۺBz)ctT᯾:@Bܰ\n\nCiZi\\f ojqO> +K*ל̮-Rd`Cwd n3[\ZG fBcA-A4|V|#Yk[P74iicneb 9lJatP%){rn2\\>T2=_o?Qz$^x9EcuVˆcj(wl\0uSRC\"q&W!1q&<)3KlVˡ,|! fs1MbLx8z~F>Ԙ<Q\"#D|iZP::`zMY!0\"1\0ć{HF E1bdHZ^NjiNtzCRUP\0 \0\0\0\0\0S\04\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00\0?\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00\0?\0%\0\0\0\0\0\0\0\0\0!1AQaq\0\0?5Ѵ,S{T \0N\0JmlZ+TH;0TNvbLjQ{fu\' G^(dd[JM:v>hN27^wp8xއ)= vtڔ&SBƇ͏_oqh0´zG8I-f=c5\r^2zJ ,#vk2+}{@и$\'.{.B<5|(: +ݧqk98j\n:QU5 6o(@-h2qϏ(մ~||4e fς\n`r;YFHRQM)3;&אc[\0D1pfF\0읇6^inGO\\k9dٹ ȕ^XX ڧgJy9lɎ=&1HZ)n?#зɒy5իpSW)_Z±p=ͅB,i@duQiL`8zo~\\G~G7\"l@Q2i3 L vY\njt^&k3Z 3LcC Sl*x \0ݯ{r6ȶO&/$\r4 iM;e+=g$p#mE\'ӛi\n5KDfz8v2: J՞:tȇ!(Is䰤E\0+82tdJO\nUӭ&&ww4ߣ٧*LIh/r6#v9 )٢R#e%iɫt\\r? hZe,T[iH-Ԟ`vGE&-7R#A\Z]ϡaeu9򬌸R/DxK_ݰJgkܬNv].=\'&5gq\0+WNF9lD(l㓦1{D)[B×m\ncG~1. .$^7hC\n5@@YMC0`,V a6)yEB(Vb TUU\"T4D6X7u/blϟl5hcy<-L\nE$t=j}ѱH_~| Vw\Z0EmrV@5\Z\0\0\r9#ͮh,WƎӣ\\IaZh\0MKunq6D(DIYG3~؉/K; NJR$\Z)٧o:%zd+Ww;zw֗Ѵ YcTRTD4 ^7ݒ盇!o,z޲zR<Ljm]\0vN+tŽZǫKڻ\n7\"fbk~R=R$-̢\\;P˷&<Olmg&жAYBlHƹ%v:-t’IHF}ar 59k\"!9ĺFmۇ\"I؛AgYG:IHYƷxoXe[/9ϡMp7q\njNEk%IR+sho8WA,ito}J]iz)O\0[_&+ ,\"\0xut47-kZV7QZ]k1.Ltg\0zGRd2_p*:GiT*H\nN=iN\"v\Z· pѕEQVȜvh^?8W^)zzҿ\0)\0\0\0\0\0\0\0!\010AQ aq@P\0\0?!\0*؍G@&(MQ9;`?)ztHB*!`+a$B/24d\'f-:fT`\"BPZ-L3hPvr9݃ gfteO!Ҋ@;$s :JL.sKf j \rWi\',hLAFj]&Aq&Ojyl\0n{rJ0Z٣6&=/{gӋ w!j\n!6qtxoQTO dO=ZX_w@O38:pM\0Z:i|n?)ާGZ e=\0sPTH4~ *\'u@Gz`<tإ:ıO9?Hf˓e&OlB(uDz\n=v.Wќ̅v/6r4EbIrIF] R9;-8rʌ-R =E&fAM}TWU x7Py,$1*j=B1(znc߳$   gl;ۿXaB\n^9wCRlJEr娲L3Lb,qE3߯ˡLzȞH5xX֨092$h,jì\n l2r;<\'@H޹v;=\\rozVV\r^MpRLի\r#Nr안-Dhp\0oW ۗf*0;w\0_>:詑2}_',4,0,'','','',''),(44,2,14,'83254cfc7681d1da','1fc6596c195944666e18cbd313795942','2015-02-02 18:52:24','2015-02-02 18:52:24','','','Contact Photos','4.jpg?rev=2015-02-02+12%3A03%3A07','image/jpeg',80,80,2858,'\0JFIF\0\0\0\0\0\0\0rk!yX-\rW՘=&IW^.1Vrce:q^:bC+]x!- Ա\0]azIx \n~Eyv>[zW2cɹ1t,d[k \\.R*5V@B҄ !jJvZ`\0c\";7\reŅN>۫YfGt0Sd\"~zA`l%7c۲ܖ81W1dF!\"@c3TG-FF=$\\HXLy<7U;y%a0/B#Y߶Bǫ:G\'R?KuD208:wEQx-s|%cn/~\n.4*/U\Z+I+>Hn311X\\}f?Fd2vSFb\":6PO+%⬅vJ.Ҵ1G1ϘA n%Q1\ZTܬ߃-p iT7iPw`^/c\Z]~A =E_\'n1@#U_\ZbXyϟ!Ϻ,wMZ\"UZ1>a@m\"W2>%ʭ]@!`C ZZ \01 1#G*ݯ3(]6S3*pLv]<ߖWefD~^v/RYqTc{ׂ\Z,.Y}\Zڋ go+\0 r+VPy-ʻx?$J>lZY(-|\0Yb7c۩mސTr\Z=?i?_M?&yف\0gh13\0H[_r#f&cg\0\0\0\0\0\0\0\0\0\0!\01 AQaq\0\0?!\'sXMoVd:EA+c/Wh;6G\Zk Pk^`h,we.O͘\0ϔS\\B+pD P@(꺓p\'>[ J\"m 4r\0+3<9w:kͅ\0g *,PRdP*&O5wB?!#V~Q\n$第0\'\"hI2%c5mTOcc0Q (\\9`VSSHaDX_\'͐dm&vUiC\n_J\0 \0\0\0\0\0\0p\0 B$\0 8\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\0?O\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\0?O\0\"\0\0\0\0\0\0\0\0\0!1A Qaq\0\0?꡴>Z4;Hީ\0Ƽ)a{\\^ޅ ϰۺBz)ctT᯾:@Bܰ\n\nCiZi\\f ojqO> +K*ל̮-Rd`Cwd n3[\ZG fBcA-A4|V|#Yk[P74iicneb 9lJatP%){rn2\\>T2=_o?Qz$^x9EcuVˆcj(wl\0uSRC\"q&W!1q&<)3KlVˡ,|! fs1MbLx8z~F>Ԙ<Q\"#D|iZP::`zMY!0\"1\0ć{HF E1bdHZ^NjiNtzCRUP\0 \0\0\0\0\0S\04\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00\0?\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00\0?\0%\0\0\0\0\0\0\0\0\0!1AQaq\0\0?5Ѵ,S{T \0N\0JmlZ+TH;0TNvbLjQ{fu\' G^(dd[JM:v>hN27^wp8xއ)= vtڔ&SBƇ͏_oqh0´zG8I-f=c5\r^2zJ ,#vk2+}{@и$\'.{.B<5|(: +ݧqk98j\n:QU5 6o(@-h2qϏ(մ~||4e fς\n`r;YFHRQM)3;&אc[\0D1pfF\0읇6^inGO\\k9dٹ ȕ^XX ڧgJy9lɎ=&1HZ)n?#зɒy5իpSW)_Z±p=ͅB,i@duQiL`8zo~\\G~G7\"l@Q2i3 L vY\njt^&k3Z 3LcC Sl*x \0ݯ{r6ȶO&/$\r4 iM;e+=g$p#mE\'ӛi\n5KDfz8v2: J՞:tȇ!(Is䰤E\0+82tdJO\nUӭ&&ww4ߣ٧*LIh/r6#v9 )٢R#e%iɫt\\r? hZe,T[iH-Ԟ`vGE&-7R#A\Z]ϡaeu9򬌸R/DxK_ݰJgkܬNv].=\'&5gq\0+WNF9lD(l㓦1{D)[B×m\ncG~1. .$^7hC\n5@@YMC0`,V a6)yEB(Vb TUU\"T4D6X7u/blϟl5hcy<-L\nE$t=j}ѱH_~| Vw\Z0EmrV@5\Z\0\0\r9#ͮh,WƎӣ\\IaZh\0MKunq6D(DIYG3~؉/K; NJR$\Z)٧o:%zd+Ww;zw֗Ѵ YcTRTD4 ^7ݒ盇!o,z޲zR<Ljm]\0vN+tŽZǫKڻ\n7\"fbk~R=R$-̢\\;P˷&<Olmg&жAYBlHƹ%v:-t’IHF}ar 59k\"!9ĺFmۇ\"I؛AgYG:IHYƷxoXe[/9ϡMp7q\njNEk%IR+sho8WA,ito}J]iz)O\0[_&+ ,\"\0xut47-kZV7QZ]k1.Ltg\0zGRd2_p*:GiT*H\nN=iN\"v\Z· pѕEQVȜvh^?8W^)zzҿ\0)\0\0\0\0\0\0\0!\010AQ aq@P\0\0?!\0*؍G@&(MQ9;`?)ztHB*!`+a$B/24d\'f-:fT`\"BPZ-L3hPvr9݃ gfteO!Ҋ@;$s :JL.sKf j \rWi\',hLAFj]&Aq&Ojyl\0n{rJ0Z٣6&=/{gӋ w!j\n!6qtxoQTO dO=ZX_w@O38:pM\0Z:i|n?)ާGZ e=\0sPTH4~ *\'u@Gz`<tإ:ıO9?Hf˓e&OlB(uDz\n=v.Wќ̅v/6r4EbIrIF] R9;-8rʌ-R =E&fAM}TWU x7Py,$1*j=B1(znc߳$   gl;ۿXaB\n^9wCRlJEr娲L3Lb,qE3߯ˡLzȞH5xX֨092$h,jì\n l2r;<\'@H޹v;=\\rozVV\r^MpRLի\r#Nr안-Dhp\0oW ۗf*0;w\0_>:詑2}_',4,0,'','','',''),(47,4,13,'69454cfc7686a537','ba266e976726cba185c218750c545814','2015-02-02 18:52:24','2015-02-02 18:52:24','','','Contact Photos','2.jpg?rev=2015-02-02+12%3A02%3A11','image/jpeg',80,80,2858,'\0JFIF\0\0\0\0\0\0\0rk!yX-\rW՘=&IW^.1Vrce:q^:bC+]x!- Ա\0]azIx \n~Eyv>[zW2cɹ1t,d[k \\.R*5V@B҄ !jJvZ`\0c\";7\reŅN>۫YfGt0Sd\"~zA`l%7c۲ܖ81W1dF!\"@c3TG-FF=$\\HXLy<7U;y%a0/B#Y߶Bǫ:G\'R?KuD208:wEQx-s|%cn/~\n.4*/U\Z+I+>Hn311X\\}f?Fd2vSFb\":6PO+%⬅vJ.Ҵ1G1ϘA n%Q1\ZTܬ߃-p iT7iPw`^/c\Z]~A =E_\'n1@#U_\ZbXyϟ!Ϻ,wMZ\"UZ1>a@m\"W2>%ʭ]@!`C ZZ \01 1#G*ݯ3(]6S3*pLv]<ߖWefD~^v/RYqTc{ׂ\Z,.Y}\Zڋ go+\0 r+VPy-ʻx?$J>lZY(-|\0Yb7c۩mސTr\Z=?i?_M?&yف\0gh13\0H[_r#f&cg\0\0\0\0\0\0\0\0\0\0!\01 AQaq\0\0?!\'sXMoVd:EA+c/Wh;6G\Zk Pk^`h,we.O͘\0ϔS\\B+pD P@(꺓p\'>[ J\"m 4r\0+3<9w:kͅ\0g *,PRdP*&O5wB?!#V~Q\n$第0\'\"hI2%c5mTOcc0Q (\\9`VSSHaDX_\'͐dm&vUiC\n_J\0 \0\0\0\0\0\0p\0 B$\0 8\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\0?O\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\0?O\0\"\0\0\0\0\0\0\0\0\0!1A Qaq\0\0?꡴>Z4;Hީ\0Ƽ)a{\\^ޅ ϰۺBz)ctT᯾:@Bܰ\n\nCiZi\\f ojqO> +K*ל̮-Rd`Cwd n3[\ZG fBcA-A4|V|#Yk[P74iicneb 9lJatP%){rn2\\>T2=_o?Qz$^x9EcuVˆcj(wl\0uSRC\"q&W!1q&<)3KlVˡ,|! fs1MbLx8z~F>Ԙ<Q\"#D|iZP::`zMY!0\"1\0ć{HF E1bdHZ^NjiNtzCRUP\0 \0\0\0\0\0S\04\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00\0?\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00\0?\0%\0\0\0\0\0\0\0\0\0!1AQaq\0\0?5Ѵ,S{T \0N\0JmlZ+TH;0TNvbLjQ{fu\' G^(dd[JM:v>hN27^wp8xއ)= vtڔ&SBƇ͏_oqh0´zG8I-f=c5\r^2zJ ,#vk2+}{@и$\'.{.B<5|(: +ݧqk98j\n:QU5 6o(@-h2qϏ(մ~||4e fς\n`r;YFHRQM)3;&אc[\0D1pfF\0읇6^inGO\\k9dٹ ȕ^XX ڧgJy9lɎ=&1HZ)n?#зɒy5իpSW)_Z±p=ͅB,i@duQiL`8zo~\\G~G7\"l@Q2i3 L vY\njt^&k3Z 3LcC Sl*x \0ݯ{r6ȶO&/$\r4 iM;e+=g$p#mE\'ӛi\n5KDfz8v2: J՞:tȇ!(Is䰤E\0+82tdJO\nUӭ&&ww4ߣ٧*LIh/r6#v9 )٢R#e%iɫt\\r? hZe,T[iH-Ԟ`vGE&-7R#A\Z]ϡaeu9򬌸R/DxK_ݰJgkܬNv].=\'&5gq\0+WNF9lD(l㓦1{D)[B×m\ncG~1. .$^7hC\n5@@YMC0`,V a6)yEB(Vb TUU\"T4D6X7u/blϟl5hcy<-L\nE$t=j}ѱH_~| Vw\Z0EmrV@5\Z\0\0\r9#ͮh,WƎӣ\\IaZh\0MKunq6D(DIYG3~؉/K; NJR$\Z)٧o:%zd+Ww;zw֗Ѵ YcTRTD4 ^7ݒ盇!o,z޲zR<Ljm]\0vN+tŽZǫKڻ\n7\"fbk~R=R$-̢\\;P˷&<Olmg&жAYBlHƹ%v:-t’IHF}ar 59k\"!9ĺFmۇ\"I؛AgYG:IHYƷxoXe[/9ϡMp7q\njNEk%IR+sho8WA,ito}J]iz)O\0[_&+ ,\"\0xut47-kZV7QZ]k1.Ltg\0zGRd2_p*:GiT*H\nN=iN\"v\Z· pѕEQVȜvh^?8W^)zzҿ\0)\0\0\0\0\0\0\0!\010AQ aq@P\0\0?!\0*؍G@&(MQ9;`?)ztHB*!`+a$B/24d\'f-:fT`\"BPZ-L3hPvr9݃ gfteO!Ҋ@;$s :JL.sKf j \rWi\',hLAFj]&Aq&Ojyl\0n{rJ0Z٣6&=/{gӋ w!j\n!6qtxoQTO dO=ZX_w@O38:pM\0Z:i|n?)ާGZ e=\0sPTH4~ *\'u@Gz`<tإ:ıO9?Hf˓e&OlB(uDz\n=v.Wќ̅v/6r4EbIrIF] R9;-8rʌ-R =E&fAM}TWU x7Py,$1*j=B1(znc߳$   gl;ۿXaB\n^9wCRlJEr娲L3Lb,qE3߯ˡLzȞH5xX֨092$h,jì\n l2r;<\'@H޹v;=\\rozVV\r^MpRLի\r#Nr안-Dhp\0oW ۗf*0;w\0_>:詑2}_',4,0,'','','',''),(50,2,18,'48654cfc78f98728','0f1ac566d253bcd264437b7f7a347f88','2015-02-02 18:53:03','2015-02-02 18:53:03','','','Contact Photos','6.jpg?rev=2015-02-02+12%3A04%3A29','image/jpeg',80,80,2858,'\0JFIF\0\0\0\0\0\0\0rk!yX-\rW՘=&IW^.1Vrce:q^:bC+]x!- Ա\0]azIx \n~Eyv>[zW2cɹ1t,d[k \\.R*5V@B҄ !jJvZ`\0c\";7\reŅN>۫YfGt0Sd\"~zA`l%7c۲ܖ81W1dF!\"@c3TG-FF=$\\HXLy<7U;y%a0/B#Y߶Bǫ:G\'R?KuD208:wEQx-s|%cn/~\n.4*/U\Z+I+>Hn311X\\}f?Fd2vSFb\":6PO+%⬅vJ.Ҵ1G1ϘA n%Q1\ZTܬ߃-p iT7iPw`^/c\Z]~A =E_\'n1@#U_\ZbXyϟ!Ϻ,wMZ\"UZ1>a@m\"W2>%ʭ]@!`C ZZ \01 1#G*ݯ3(]6S3*pLv]<ߖWefD~^v/RYqTc{ׂ\Z,.Y}\Zڋ go+\0 r+VPy-ʻx?$J>lZY(-|\0Yb7c۩mސTr\Z=?i?_M?&yف\0gh13\0H[_r#f&cg\0\0\0\0\0\0\0\0\0\0!\01 AQaq\0\0?!\'sXMoVd:EA+c/Wh;6G\Zk Pk^`h,we.O͘\0ϔS\\B+pD P@(꺓p\'>[ J\"m 4r\0+3<9w:kͅ\0g *,PRdP*&O5wB?!#V~Q\n$第0\'\"hI2%c5mTOcc0Q (\\9`VSSHaDX_\'͐dm&vUiC\n_J\0 \0\0\0\0\0\0p\0 B$\0 8\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\0?O\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\0?O\0\"\0\0\0\0\0\0\0\0\0!1A Qaq\0\0?꡴>Z4;Hީ\0Ƽ)a{\\^ޅ ϰۺBz)ctT᯾:@Bܰ\n\nCiZi\\f ojqO> +K*ל̮-Rd`Cwd n3[\ZG fBcA-A4|V|#Yk[P74iicneb 9lJatP%){rn2\\>T2=_o?Qz$^x9EcuVˆcj(wl\0uSRC\"q&W!1q&<)3KlVˡ,|! fs1MbLx8z~F>Ԙ<Q\"#D|iZP::`zMY!0\"1\0ć{HF E1bdHZ^NjiNtzCRUP\0 \0\0\0\0\0S\04\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00\0?\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00\0?\0%\0\0\0\0\0\0\0\0\0!1AQaq\0\0?5Ѵ,S{T \0N\0JmlZ+TH;0TNvbLjQ{fu\' G^(dd[JM:v>hN27^wp8xއ)= vtڔ&SBƇ͏_oqh0´zG8I-f=c5\r^2zJ ,#vk2+}{@и$\'.{.B<5|(: +ݧqk98j\n:QU5 6o(@-h2qϏ(մ~||4e fς\n`r;YFHRQM)3;&אc[\0D1pfF\0읇6^inGO\\k9dٹ ȕ^XX ڧgJy9lɎ=&1HZ)n?#зɒy5իpSW)_Z±p=ͅB,i@duQiL`8zo~\\G~G7\"l@Q2i3 L vY\njt^&k3Z 3LcC Sl*x \0ݯ{r6ȶO&/$\r4 iM;e+=g$p#mE\'ӛi\n5KDfz8v2: J՞:tȇ!(Is䰤E\0+82tdJO\nUӭ&&ww4ߣ٧*LIh/r6#v9 )٢R#e%iɫt\\r? hZe,T[iH-Ԟ`vGE&-7R#A\Z]ϡaeu9򬌸R/DxK_ݰJgkܬNv].=\'&5gq\0+WNF9lD(l㓦1{D)[B×m\ncG~1. .$^7hC\n5@@YMC0`,V a6)yEB(Vb TUU\"T4D6X7u/blϟl5hcy<-L\nE$t=j}ѱH_~| Vw\Z0EmrV@5\Z\0\0\r9#ͮh,WƎӣ\\IaZh\0MKunq6D(DIYG3~؉/K; NJR$\Z)٧o:%zd+Ww;zw֗Ѵ YcTRTD4 ^7ݒ盇!o,z޲zR<Ljm]\0vN+tŽZǫKڻ\n7\"fbk~R=R$-̢\\;P˷&<Olmg&жAYBlHƹ%v:-t’IHF}ar 59k\"!9ĺFmۇ\"I؛AgYG:IHYƷxoXe[/9ϡMp7q\njNEk%IR+sho8WA,ito}J]iz)O\0[_&+ ,\"\0xut47-kZV7QZ]k1.Ltg\0zGRd2_p*:GiT*H\nN=iN\"v\Z· pѕEQVȜvh^?8W^)zzҿ\0)\0\0\0\0\0\0\0!\010AQ aq@P\0\0?!\0*؍G@&(MQ9;`?)ztHB*!`+a$B/24d\'f-:fT`\"BPZ-L3hPvr9݃ gfteO!Ҋ@;$s :JL.sKf j \rWi\',hLAFj]&Aq&Ojyl\0n{rJ0Z٣6&=/{gӋ w!j\n!6qtxoQTO dO=ZX_w@O38:pM\0Z:i|n?)ާGZ e=\0sPTH4~ *\'u@Gz`<tإ:ıO9?Hf˓e&OlB(uDz\n=v.Wќ̅v/6r4EbIrIF] R9;-8rʌ-R =E&fAM}TWU x7Py,$1*j=B1(znc߳$   gl;ۿXaB\n^9wCRlJEr娲L3Lb,qE3߯ˡLzȞH5xX֨092$h,jì\n l2r;<\'@H޹v;=\\rozVV\r^MpRLի\r#Nr안-Dhp\0oW ۗf*0;w\0_>:詑2}_',4,0,'','','',''),(53,6,17,'52754cfc79010af9','b4cbb73d1178aab3424a788419bbe016','2015-02-02 18:53:04','2015-02-02 18:53:04','','','Contact Photos','2.jpg?rev=2015-02-02+12%3A02%3A11','image/jpeg',80,80,2858,'\0JFIF\0\0\0\0\0\0\0rk!yX-\rW՘=&IW^.1Vrce:q^:bC+]x!- Ա\0]azIx \n~Eyv>[zW2cɹ1t,d[k \\.R*5V@B҄ !jJvZ`\0c\";7\reŅN>۫YfGt0Sd\"~zA`l%7c۲ܖ81W1dF!\"@c3TG-FF=$\\HXLy<7U;y%a0/B#Y߶Bǫ:G\'R?KuD208:wEQx-s|%cn/~\n.4*/U\Z+I+>Hn311X\\}f?Fd2vSFb\":6PO+%⬅vJ.Ҵ1G1ϘA n%Q1\ZTܬ߃-p iT7iPw`^/c\Z]~A =E_\'n1@#U_\ZbXyϟ!Ϻ,wMZ\"UZ1>a@m\"W2>%ʭ]@!`C ZZ \01 1#G*ݯ3(]6S3*pLv]<ߖWefD~^v/RYqTc{ׂ\Z,.Y}\Zڋ go+\0 r+VPy-ʻx?$J>lZY(-|\0Yb7c۩mސTr\Z=?i?_M?&yف\0gh13\0H[_r#f&cg\0\0\0\0\0\0\0\0\0\0!\01 AQaq\0\0?!\'sXMoVd:EA+c/Wh;6G\Zk Pk^`h,we.O͘\0ϔS\\B+pD P@(꺓p\'>[ J\"m 4r\0+3<9w:kͅ\0g *,PRdP*&O5wB?!#V~Q\n$第0\'\"hI2%c5mTOcc0Q (\\9`VSSHaDX_\'͐dm&vUiC\n_J\0 \0\0\0\0\0\0p\0 B$\0 8\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\0?O\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\0?O\0\"\0\0\0\0\0\0\0\0\0!1A Qaq\0\0?꡴>Z4;Hީ\0Ƽ)a{\\^ޅ ϰۺBz)ctT᯾:@Bܰ\n\nCiZi\\f ojqO> +K*ל̮-Rd`Cwd n3[\ZG fBcA-A4|V|#Yk[P74iicneb 9lJatP%){rn2\\>T2=_o?Qz$^x9EcuVˆcj(wl\0uSRC\"q&W!1q&<)3KlVˡ,|! fs1MbLx8z~F>Ԙ<Q\"#D|iZP::`zMY!0\"1\0ć{HF E1bdHZ^NjiNtzCRUP\0 \0\0\0\0\0S\04\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00\0?\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00\0?\0%\0\0\0\0\0\0\0\0\0!1AQaq\0\0?5Ѵ,S{T \0N\0JmlZ+TH;0TNvbLjQ{fu\' G^(dd[JM:v>hN27^wp8xއ)= vtڔ&SBƇ͏_oqh0´zG8I-f=c5\r^2zJ ,#vk2+}{@и$\'.{.B<5|(: +ݧqk98j\n:QU5 6o(@-h2qϏ(մ~||4e fς\nget_baseurl() . '/contacts/' . $contact['id']; $posts_link = $a->get_baseurl() . '/network/0?nets=all&cid=' . $contact['id']; $contact_drop_link = $a->get_baseurl() . "/contacts/" . $contact['id'] . '/drop?confirm=1'; - + $menu = Array( 'poke' => array(t("Poke"), $poke_link), 'status' => array(t("View Status"), $status_link), 'profile' => array(t("View Profile"), $profile_link), - 'photos' => array(t("View Photos"), $photos_link), - 'network' => array(t("Network Posts"), $posts_link), + 'photos' => array(t("View Photos"), $photos_link), + 'network' => array(t("Network Posts"), $posts_link), 'edit' => array(t("Edit Contact"), $contact_url), 'drop' => array(t("Drop Contact"), $contact_drop_link), 'pm' => array(t("Send PM"), $pm_url), ); - - + + $args = array('contact' => $contact, 'menu' => &$menu); - + call_hooks('contact_photo_menu', $args); - + /* $o = ""; foreach($menu as $k=>$v){ if ($v!="") { @@ -293,3 +297,107 @@ function contacts_not_grouped($uid,$start = 0,$count = 0) { return $r; } +function get_contact($url, $uid = 0) { + require_once("include/Scrape.php"); + + $data = array(); + $contactid = 0; + + // is it an address in the format user@server.tld? + if (!strstr($url, "http") OR strstr($url, "@")) { + $data = probe_url($url); + $url = $data["url"]; + if ($url == "") + return 0; + } + + $contact = q("SELECT `id`, `avatar-date` FROM `contact` WHERE `nurl` = '%s' AND `uid` = %d", + dbesc(normalise_link($url)), + intval($uid)); + + if (!$contact) + $contact = q("SELECT `id`, `avatar-date` FROM `contact` WHERE `alias` IN ('%s', '%s') AND `uid` = %d", + dbesc($url), + dbesc(normalise_link($url)), + intval($uid)); + + if ($contact) { + $contactid = $contact[0]["id"]; + + // Update the contact every 7 days + $update_photo = ($contact[0]['avatar-date'] < datetime_convert('','','now -7 days')); + //$update_photo = ($contact[0]['avatar-date'] < datetime_convert('','','now -12 hours')); + + if (!$update_photo) + return($contactid); + } + + if (!count($data)) + $data = probe_url($url); + + // Does this address belongs to a valid network? + if (!in_array($data["network"], array(NETWORK_DFRN, NETWORK_OSTATUS, NETWORK_DIASPORA))) + return 0; + + // tempory programming. Can be deleted after 2015-02-07 + if (($data["alias"] == "") AND (normalise_link($data["url"]) != normalise_link($url))) + $data["alias"] = normalise_link($url); + + if ($contactid == 0) { + q("INSERT INTO `contact` (`uid`, `created`, `url`, `nurl`, `addr`, `alias`, `notify`, `poll`, + `name`, `nick`, `photo`, `network`, `pubkey`, `rel`, `priority`, + `batch`, `request`, `confirm`, `poco`, + `writable`, `blocked`, `readonly`, `pending`) + VALUES (%d, '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', %d, %d, '%s', '%s', '%s', '%s', 1, 0, 0, 0)", + intval($uid), + dbesc(datetime_convert()), + dbesc($data["url"]), + dbesc(normalise_link($data["url"])), + dbesc($data["addr"]), + dbesc($data["alias"]), + dbesc($data["notify"]), + dbesc($data["poll"]), + dbesc($data["name"]), + dbesc($data["nick"]), + dbesc($data["photo"]), + dbesc($data["network"]), + dbesc($data["pubkey"]), + intval(CONTACT_IS_SHARING), + intval($data["priority"]), + dbesc($data["batch"]), + dbesc($data["request"]), + dbesc($data["confirm"]), + dbesc($data["poco"]) + ); + + $contact = q("SELECT `id` FROM `contact` WHERE `nurl` = '%s' AND `uid` = %d", + dbesc(normalise_link($data["url"])), + intval($uid)); + if (!$contact) + return 0; + + $contactid = $contact[0]["id"]; + } + + require_once("Photo.php"); + + $photos = import_profile_photo($data["photo"],$uid,$contactid); + + q("UPDATE `contact` SET `photo` = '%s', `thumb` = '%s', `micro` = '%s', + `addr` = '%s', `alias` = '%s', `name` = '%s', `nick` = '%s', + `name-date` = '%s', `uri-date` = '%s', `avatar-date` = '%s' WHERE `id` = %d", + dbesc($photos[0]), + dbesc($photos[1]), + dbesc($photos[2]), + dbesc($data["addr"]), + dbesc($data["alias"]), + dbesc($data["name"]), + dbesc($data["nick"]), + dbesc(datetime_convert()), + dbesc(datetime_convert()), + dbesc(datetime_convert()), + intval($contactid) + ); + + return $contactid; +} diff --git a/include/Photo.php b/include/Photo.php index 2f7c990256..ccb6af29e9 100644 --- a/include/Photo.php +++ b/include/Photo.php @@ -516,7 +516,12 @@ class Photo { return FALSE; $string = $this->imageString(); + + $a = get_app(); + + $stamp1 = microtime(true); file_put_contents($path, $string); + $a->save_timestamp($stamp1, "file"); } public function imageString() { @@ -767,7 +772,12 @@ function get_photo_info($url) { $filesize = strlen($img_str); $tempfile = tempnam(get_temppath(), "cache"); + + $a = get_app(); + $stamp1 = microtime(true); file_put_contents($tempfile, $img_str); + $a->save_timestamp($stamp1, "file"); + $data = getimagesize($tempfile); unlink($tempfile); @@ -851,7 +861,10 @@ function store_photo($a, $uid, $imagedata = "", $url = "") { return(array()); } elseif (strlen($imagedata) == 0) { logger("Uploading picture from ".$url, LOGGER_DEBUG); + + $stamp1 = microtime(true); $imagedata = @file_get_contents($url); + $a->save_timestamp($stamp1, "file"); } $maximagesize = get_config('system','maximagesize'); @@ -875,7 +888,11 @@ function store_photo($a, $uid, $imagedata = "", $url = "") { */ $tempfile = tempnam(get_temppath(), "cache"); + + $stamp1 = microtime(true); file_put_contents($tempfile, $imagedata); + $a->save_timestamp($stamp1, "file"); + $data = getimagesize($tempfile); if (!isset($data["mime"])) { diff --git a/include/Scrape.php b/include/Scrape.php index 7df86d9f2d..ce18bb1033 100644 --- a/include/Scrape.php +++ b/include/Scrape.php @@ -364,16 +364,6 @@ function probe_url($url, $mode = PROBE_NORMAL) { $network = NETWORK_TWITTER; } - if (strpos($url,'www.facebook.com')) { - $connectornetworks = true; - $network = NETWORK_FACEBOOK; - } - - if (strpos($url,'alpha.app.net')) { - $appnet = true; - $network = NETWORK_APPNET; - } - // Twitter is deactivated since twitter closed its old API //$twitter = ((strpos($url,'twitter.com') !== false) ? true : false); $lastfm = ((strpos($url,'last.fm/user') !== false) ? true : false); @@ -433,7 +423,7 @@ function probe_url($url, $mode = PROBE_NORMAL) { // to a contact on incoming messages to prevent spam, and we won't know which one // to match. So in case of two, one of them is stored as an alias. Only store URL's // and not webfinger user@host aliases. If they've got more than two non-email style - // aliases, let's hope we're lucky and get one that matches the feed author-uri because + // aliases, let's hope we're lucky and get one that matches the feed author-uri because // otherwise we're screwed. foreach($links as $link) { @@ -448,6 +438,10 @@ function probe_url($url, $mode = PROBE_NORMAL) { } } } + + // If the profile is different from the url then the url is abviously an alias + if (($alias == "") AND ($profile != "") AND !$at_addr AND (normalise_link($profile) != normalise_link($url))) + $alias = $url; } elseif($mode == PROBE_NORMAL) { @@ -522,8 +516,8 @@ function probe_url($url, $mode = PROBE_NORMAL) { if($j) { $network = NETWORK_ZOT; $vcard = array( - 'fn' => $j->fullname, - 'nick' => $j->nickname, + 'fn' => $j->fullname, + 'nick' => $j->nickname, 'photo' => $j->photo ); $profile = $j->url; @@ -565,6 +559,10 @@ function probe_url($url, $mode = PROBE_NORMAL) { $network = NETWORK_DIASPORA; elseif($has_lrdd) $network = NETWORK_OSTATUS; + + if(strpos($url,'@')) + $addr = str_replace('acct:', '', $url); + $priority = 0; if($hcard && ! $vcard) { @@ -758,6 +756,22 @@ function probe_url($url, $mode = PROBE_NORMAL) { if(($network === NETWORK_FEED) && ($poll) && (! x($vcard,'fn'))) $vcard['fn'] = $url; + if (($notify != "") AND ($poll != "")) { + $baseurl = matching($notify, $poll); + + $baseurl2 = matching($baseurl, $profile); + if ($baseurl2 != "") + $baseurl = $baseurl2; + } + + if (($baseurl == "") AND ($notify != "")) + $baseurl = matching($profile, $notify); + + if (($baseurl == "") AND ($poll != "")) + $baseurl = matching($profile, $poll); + + $baseurl = rtrim($baseurl, "/"); + $vcard['fn'] = notags($vcard['fn']); $vcard['nick'] = str_replace(' ','',notags($vcard['nick'])); @@ -776,11 +790,12 @@ function probe_url($url, $mode = PROBE_NORMAL) { $result['network'] = $network; $result['alias'] = $alias; $result['pubkey'] = $pubkey; + $result['baseurl'] = $baseurl; logger('probe_url: ' . print_r($result,true), LOGGER_DEBUG); // Trying if it maybe a diaspora account - if ($result['network'] == NETWORK_FEED) { + if (($result['network'] == NETWORK_FEED) OR ($result['addr'] == "")) { require_once('include/bbcode.php'); $address = GetProfileUsername($url, "", true); $result2 = probe_url($address, $mode); @@ -792,3 +807,20 @@ function probe_url($url, $mode = PROBE_NORMAL) { return $result; } + +function matching($part1, $part2) { + $len = min(strlen($part1), strlen($part2)); + + $match = ""; + $matching = true; + $i = 0; + while (($i <= $len) AND $matching) { + if (substr($part1, $i, 1) == substr($part2, $i, 1)) + $match .= substr($part1, $i, 1); + else + $matching = false; + + $i++; + } + return($match); +} diff --git a/include/api.php b/include/api.php index 2d3c31af0c..600cc0c3d6 100644 --- a/include/api.php +++ b/include/api.php @@ -733,8 +733,7 @@ $_REQUEST['body'] = html2bbcode($txt); } - } - else + } else $_REQUEST['body'] = requestdata('status'); $_REQUEST['title'] = requestdata('title'); @@ -811,14 +810,15 @@ } $_REQUEST['type'] = 'wall'; - if(x($_FILES,'media')) { - // upload the image if we have one - $_REQUEST['hush']='yeah'; //tell wall_upload function to return img info instead of echo - require_once('mod/wall_upload.php'); - $media = wall_upload_post($a); - if(strlen($media)>0) - $_REQUEST['body'] .= "\n\n".$media; - } + } + + if(x($_FILES,'media')) { + // upload the image if we have one + $_REQUEST['hush']='yeah'; //tell wall_upload function to return img info instead of echo + require_once('mod/wall_upload.php'); + $media = wall_upload_post($a); + if(strlen($media)>0) + $_REQUEST['body'] .= "\n\n".$media; } // set this so that the item_post() function is quiet and doesn't redirect or emit json @@ -848,7 +848,7 @@ // get last public wall message $lastwall = q("SELECT `item`.*, `i`.`contact-id` as `reply_uid`, `i`.`author-link` AS `item-author` FROM `item`, `item` as `i` - WHERE `item`.`contact-id` = %d + WHERE `item`.`contact-id` = %d AND `item`.`uid` = %d AND ((`item`.`author-link` IN ('%s', '%s')) OR (`item`.`owner-link` IN ('%s', '%s'))) AND `i`.`id` = `item`.`parent` AND `item`.`type`!='activity' @@ -856,6 +856,7 @@ ORDER BY `item`.`created` DESC LIMIT 1", intval($user_info['cid']), + intval(api_user()), dbesc($user_info['url']), dbesc(normalise_link($user_info['url'])), dbesc($user_info['url']), @@ -1128,15 +1129,14 @@ $ret = api_format_items($r,$user_info); - // We aren't going to try to figure out at the item, group, and page - // level which items you've seen and which you haven't. If you're looking - // at the network timeline just mark everything seen. + // Set all posts from the query above to seen + $idarray = array(); + foreach ($r AS $item) + $idarray[] = intval($item["id"]); - $r = q("UPDATE `item` SET `unseen` = 0 - WHERE `unseen` = 1 AND `uid` = %d", - //intval($user_info['uid']) - intval(api_user()) - ); + $idlist = implode(",", $idarray); + + $r = q("UPDATE `item` SET `unseen` = 0 WHERE `unseen` AND `id` IN (%s)", $idlist); $data = array('$statuses' => $ret); diff --git a/include/bb2diaspora.php b/include/bb2diaspora.php index 7107c49139..919bfc331d 100644 --- a/include/bb2diaspora.php +++ b/include/bb2diaspora.php @@ -5,7 +5,7 @@ require_once("include/event.php"); require_once("library/markdown.php"); require_once("include/html2bbcode.php"); require_once("include/bbcode.php"); -require_once("include/markdownify/markdownify.php"); +require_once("library/html-to-markdown/HTML_To_Markdown.php"); // we don't want to support a bbcode specific markdown interpreter @@ -17,19 +17,21 @@ function diaspora2bb($s) { $s = html_entity_decode($s,ENT_COMPAT,'UTF-8'); - // Simply remove cr. + // Remove CR to avoid problems with following code $s = str_replace("\r","",$s); - //
is invalid. Replace it with the valid expression - $s = str_replace(array("
", "

", "

", '

'),array("
", "
", "
", "
"),$s); + $s = str_replace("\n"," \n",$s); - $s = preg_replace('/\@\{(.+?)\; (.+?)\@(.+?)\}/','@[url=https://$3/u/$2]$1[/url]',$s); + // The parser cannot handle paragraphs correctly + $s = str_replace(array("

", "

", '

'),array("
", "
", "
"),$s); // Escaping the hash tags $s = preg_replace('/\#([^\s\#])/','#$1',$s); $s = Markdown($s); + $s = preg_replace('/\@\{(.+?)\; (.+?)\@(.+?)\}/','@[url=https://$3/u/$2]$1[/url]',$s); + $s = str_replace('#','#',$s); $s = html2bbcode($s); @@ -56,6 +58,8 @@ function diaspora2bb($s) { function bb2diaspora($Text,$preserve_nl = false, $fordiaspora = true) { + $a = get_app(); + $OriginalText = $Text; // Since Diaspora is creating a summary for links, this function removes them before posting @@ -88,41 +92,22 @@ function bb2diaspora($Text,$preserve_nl = false, $fordiaspora = true) { $Text = $Text."
".$tagline; } - } else { + } else $Text = bbcode($Text, $preserve_nl, false, 4); - // Libertree doesn't convert a harizontal rule if there isn't a linefeed - $Text = str_replace(array("


", "
"), array("

", "

"), $Text); - } + // If a link is followed by a quote then there should be a newline before it + // Maybe we should make this newline at every time before a quote. + $Text = str_replace(array("
"), array("
"), $Text); + + $stamp1 = microtime(true); // Now convert HTML to Markdown - $md = new Markdownify(false, false, false); - $Text = $md->parseString($Text); + $Text = new HTML_To_Markdown($Text); - // The Markdownify converter converts underscores '_' in URLs to '\_', which - // messes up the URL. Manually fix these - $count = 1; - $pos = bb_find_open_close($Text, '[', ']', $count); - while($pos !== false) { - $start = substr($Text, 0, $pos['start']); - $subject = substr($Text, $pos['start'], $pos['end'] - $pos['start'] + 1); - $end = substr($Text, $pos['end'] + 1); + $a->save_timestamp($stamp1, "parser"); - $subject = str_replace('\_', '_', $subject); - $Text = $start . $subject . $end; - - $count++; - $pos = bb_find_open_close($Text, '[', ']', $count); - } - - // If the text going into bbcode() has a plain URL in it, i.e. - // with no [url] tags around it, it will come out of parseString() - // looking like: , which gets removed by strip_tags(). - // So take off the angle brackets of any such URL - $Text = preg_replace("//is", "http$1", $Text); - - // Remove all unconverted tags - $Text = strip_tags($Text); + // Libertree has a problem with escaped hashtags. + $Text = str_replace(array('\#'), array('#'), $Text); // Remove any leading or trailing whitespace, as this will mess up // the Diaspora signature verification and cause the item to disappear diff --git a/include/bbcode.php b/include/bbcode.php index c2ebf35e63..ef791d9e7c 100644 --- a/include/bbcode.php +++ b/include/bbcode.php @@ -42,7 +42,7 @@ function bb_attachment($Text, $plaintext = false, $tryoembed = true) { $title = $matches[1]; //$title = htmlentities($title, ENT_QUOTES, 'UTF-8', false); - $title = bbcode(html_entity_decode($title), false, false, true); + $title = bbcode(html_entity_decode($title, ENT_QUOTES, 'UTF-8'), false, false, true); $title = str_replace(array("[", "]"), array("[", "]"), $title); $image = ""; @@ -168,6 +168,8 @@ function bb_remove_share_information($Text, $plaintext = false, $nolink = false) } function bb_cleanup_share($shared, $plaintext, $nolink) { + $shared[1] = trim($shared[1]); + if (!in_array($shared[2], array("type-link", "type-video"))) return($shared[0]); @@ -178,7 +180,7 @@ function bb_cleanup_share($shared, $plaintext, $nolink) { return($shared[0]); if ($nolink) - return(trim($shared[1])); + return($shared[1]); $title = ""; $link = ""; @@ -189,6 +191,9 @@ function bb_cleanup_share($shared, $plaintext, $nolink) { if (isset($bookmark[1][0])) $link = $bookmark[1][0]; + if (($shared[1] != "") AND (strpos($title, $shared[1]) !== false)) + $shared[1] = $title; + if (($title != "") AND ((strpos($shared[1],$title) !== false) OR (similar_text($shared[1],$title) / strlen($title)) > 0.9)) $title = ""; @@ -504,9 +509,7 @@ function bb_ShareAttributes($share, $simplehtml) { $text = $preshare.html_entity_decode("♲ ", ENT_QUOTES, 'UTF-8').' '.$userid_compact.":
".$share[3]; break; case 3: // Diaspora - $headline = '
'; - $headline .= ''.html_entity_decode("♲ ", ENT_QUOTES, 'UTF-8').$userid.':'; - $headline .= "
"; + $headline .= ''.html_entity_decode("♲ ", ENT_QUOTES, 'UTF-8').$userid.':
'; $text = trim($share[1]); @@ -514,7 +517,7 @@ function bb_ShareAttributes($share, $simplehtml) { $text .= "
"; if (substr(normalise_link($link), 0, 19) != "http://twitter.com/") { - $text .= $headline.'
'.trim($share[3])."

"; + $text .= $headline.'
'.trim($share[3])."

"; if ($link != "") $text .= '
[l]'; @@ -664,12 +667,20 @@ function GetProfileUsername($profile, $username, $compact = false, $getnetwork = return($username); } +function bb_DiasporaLinks($match) { + $a = get_app(); + + return "[url=".$a->get_baseurl()."/display/".$match[1]."]".$match[2]."[/url]"; +} + function bb_RemovePictureLinks($match) { $text = Cache::get($match[1]); if(is_null($text)){ $a = get_app(); + $stamp1 = microtime(true); + $ch = @curl_init($match[1]); @curl_setopt($ch, CURLOPT_NOBODY, true); @curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); @@ -677,6 +688,8 @@ function bb_RemovePictureLinks($match) { @curl_exec($ch); $curl_info = @curl_getinfo($ch); + $a->save_timestamp($stamp1, "network"); + if (substr($curl_info["content_type"], 0, 6) == "image/") $text = "[url=".$match[1]."]".$match[1]."[/url]"; else { @@ -720,6 +733,8 @@ function bb_CleanPictureLinksSub($match) { if(is_null($text)){ $a = get_app(); + $stamp1 = microtime(true); + $ch = @curl_init($match[1]); @curl_setopt($ch, CURLOPT_NOBODY, true); @curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); @@ -727,6 +742,8 @@ function bb_CleanPictureLinksSub($match) { @curl_exec($ch); $curl_info = @curl_getinfo($ch); + $a->save_timestamp($stamp1, "network"); + // if its a link to a picture then embed this picture if (substr($curl_info["content_type"], 0, 6) == "image/") $text = "[img]".$match[1]."[/img]"; @@ -768,8 +785,6 @@ function bb_CleanPictureLinks($text) { function bbcode($Text,$preserve_nl = false, $tryoembed = true, $simplehtml = false, $forplaintext = false) { - $stamp1 = microtime(true); - $a = get_app(); // Hide all [noparse] contained bbtags by spacefying them @@ -831,8 +846,10 @@ function bbcode($Text,$preserve_nl = false, $tryoembed = true, $simplehtml = fal // removing multiplicated newlines if (get_config("system", "remove_multiplicated_lines")) { - $search = array("\n\n\n", "\n ", " \n", "[/quote]\n\n", "\n[/quote]", "[/li]\n", "\n[li]", "\n[ul]", "[/ul]\n", "\n\n[share ", "[/attachment]\n"); - $replace = array("\n\n", "\n", "\n", "[/quote]\n", "[/quote]", "[/li]", "[li]", "[ul]", "[/ul]", "\n[share ", "[/attachment]"); + $search = array("\n\n\n", "\n ", " \n", "[/quote]\n\n", "\n[/quote]", "[/li]\n", "\n[li]", "\n[ul]", "[/ul]\n", "\n\n[share ", "[/attachment]\n", + "\n[h1]", "[/h1]\n", "\n[h2]", "[/h2]\n", "\n[h3]", "[/h3]\n", "\n[h4]", "[/h4]\n", "\n[h5]", "[/h5]\n", "\n[h6]", "[/h6]\n"); + $replace = array("\n\n", "\n", "\n", "[/quote]\n", "[/quote]", "[/li]", "[li]", "[ul]", "[/ul]", "\n[share ", "[/attachment]", + "[h1]", "[/h1]", "[h2]", "[/h2]", "[h3]", "[/h3]", "[h4]", "[/h4]", "[h5]", "[/h5]", "[h6]", "[/h6]"); do { $oldtext = $Text; $Text = str_replace($search, $replace, $Text); @@ -880,6 +897,9 @@ function bbcode($Text,$preserve_nl = false, $tryoembed = true, $simplehtml = fal else $Text = preg_replace("/\[bookmark\=([^\]]*)\](.*?)\[\/bookmark\]/ism",'[url=$1]$2[/url]',$Text); + // Handle Diaspora posts + $Text = preg_replace_callback("&\[url=/posts/([^\[\]]*)\](.*)\[\/url\]&Usi", 'bb_DiasporaLinks', $Text); + // if the HTML is used to generate plain text, then don't do this search, but replace all URL of that kind to text if (!$forplaintext) $Text = preg_replace("/([^\]\='".'"'."]|^)(https?\:\/\/[a-zA-Z0-9\:\/\-\?\&\;\.\=\_\~\#\%\$\!\+\,]+)/ism", '$1$2', $Text); @@ -909,6 +929,14 @@ function bbcode($Text,$preserve_nl = false, $tryoembed = true, $simplehtml = fal $Text = preg_replace("/\[mail\]([$MAILSearchString]*)\[\/mail\]/", '$1', $Text); $Text = preg_replace("/\[mail\=([$MAILSearchString]*)\](.*?)\[\/mail\]/", '$2', $Text); + // Check for headers + $Text = preg_replace("(\[h1\](.*?)\[\/h1\])ism",'

$1

',$Text); + $Text = preg_replace("(\[h2\](.*?)\[\/h2\])ism",'

$1

',$Text); + $Text = preg_replace("(\[h3\](.*?)\[\/h3\])ism",'

$1

',$Text); + $Text = preg_replace("(\[h4\](.*?)\[\/h4\])ism",'

$1

',$Text); + $Text = preg_replace("(\[h5\](.*?)\[\/h5\])ism",'
$1
',$Text); + $Text = preg_replace("(\[h6\](.*?)\[\/h6\])ism",'
$1
',$Text); + // Check for bold text $Text = preg_replace("(\[b\](.*?)\[\/b\])ism",'$1',$Text); @@ -1089,8 +1117,8 @@ function bbcode($Text,$preserve_nl = false, $tryoembed = true, $simplehtml = fal 'https://www.youtube.com/watch?v=$1', $Text); if ($tryoembed) { - $Text = preg_replace_callback("/\[vimeo\](https?:\/\/player.vimeo.com\/video\/[0-9]+).*?\[\/vimeo\]/ism",'tryoembed',$Text); - $Text = preg_replace_callback("/\[vimeo\](https?:\/\/vimeo.com\/[0-9]+).*?\[\/vimeo\]/ism",'tryoembed',$Text); + $Text = preg_replace_callback("/\[vimeo\](https?:\/\/player.vimeo.com\/video\/[0-9]+).*?\[\/vimeo\]/ism",'tryoembed',$Text); + $Text = preg_replace_callback("/\[vimeo\](https?:\/\/vimeo.com\/[0-9]+).*?\[\/vimeo\]/ism",'tryoembed',$Text); } $Text = preg_replace("/\[vimeo\]https?:\/\/player.vimeo.com\/video\/([0-9]+)(.*?)\[\/vimeo\]/ism",'[vimeo]$1[/vimeo]',$Text); @@ -1104,7 +1132,6 @@ function bbcode($Text,$preserve_nl = false, $tryoembed = true, $simplehtml = fal // $Text = preg_replace("/\[youtube\](.*?)\[\/youtube\]/", '', $Text); - // oembed tag $Text = oembed_bbcode2html($Text); @@ -1174,16 +1201,8 @@ function bbcode($Text,$preserve_nl = false, $tryoembed = true, $simplehtml = fal //$Text = str_replace('
  • ','
  • ', $Text); // $Text = str_replace('
    save_timestamp($stamp1, "parser"); - return trim($Text); } ?> diff --git a/include/dbstructure.php b/include/dbstructure.php index adb826c8b4..f131abe64f 100644 --- a/include/dbstructure.php +++ b/include/dbstructure.php @@ -106,29 +106,17 @@ function table_structure($table) { } function print_structure($database) { + echo "-- ------------------------------------------\n"; + echo "-- ".FRIENDICA_PLATFORM." ".FRIENDICA_VERSION." (".FRIENDICA_CODENAME,")\n"; + echo "-- DB_UPDATE_VERSION ".DB_UPDATE_VERSION."\n"; + echo "-- ------------------------------------------\n\n\n"; foreach ($database AS $name => $structure) { - echo "\t".'$database["'.$name."\"] = array(\n"; + echo "--\n"; + echo "-- TABLE $name\n"; + echo "--\n"; + db_create_table($name, $structure['fields'], true, false, $structure["indexes"]); - echo "\t\t\t".'"fields" => array('."\n"; - foreach ($structure["fields"] AS $fieldname => $parameters) { - echo "\t\t\t\t\t".'"'.$fieldname.'" => array('; - - $data = ""; - foreach ($parameters AS $name => $value) { - if ($data != "") - $data .= ", "; - $data .= '"'.$name.'" => "'.$value.'"'; - } - - echo $data."),\n"; - } - echo "\t\t\t\t\t),\n"; - echo "\t\t\t".'"indexes" => array('."\n"; - foreach ($structure["indexes"] AS $indexname => $fieldnames) { - echo "\t\t\t\t\t".'"'.$indexname.'" => array("'.implode($fieldnames, '","').'"'."),\n"; - } - echo "\t\t\t\t\t)\n"; - echo "\t\t\t);\n"; + echo "\n"; } } @@ -231,9 +219,13 @@ function db_field_command($parameters, $create = true) { if ($parameters["not null"]) $fieldstruct .= " NOT NULL"; - if (isset($parameters["default"])) - $fieldstruct .= " DEFAULT '".$parameters["default"]."'"; - + if (isset($parameters["default"])){ + if (strpos(strtolower($parameters["type"]),"int")!==false) { + $fieldstruct .= " DEFAULT ".$parameters["default"]; + } else { + $fieldstruct .= " DEFAULT '".$parameters["default"]."'"; + } + } if ($parameters["extra"] != "") $fieldstruct .= " ".$parameters["extra"]; @@ -243,20 +235,28 @@ function db_field_command($parameters, $create = true) { return($fieldstruct); } -function db_create_table($name, $fields, $verbose, $action) { +function db_create_table($name, $fields, $verbose, $action, $indexes=null) { global $a, $db; $r = true; $sql = ""; + $sql_rows = array(); foreach($fields AS $fieldname => $field) { - if ($sql != "") - $sql .= ",\n"; - - $sql .= "`".dbesc($fieldname)."` ".db_field_command($field); + $sql_rows[] = "`".dbesc($fieldname)."` ".db_field_command($field); } - $sql = sprintf("CREATE TABLE IF NOT EXISTS `%s` (\n", dbesc($name)).$sql."\n) DEFAULT CHARSET=utf8"; + if (!is_null($indexes)) { + + foreach ($indexes AS $indexname => $fieldnames) { + $sql_index = db_create_index($indexname, $fieldnames, ""); + if (!is_null($sql_index)) $sql_rows[] = $sql_index; + } + } + + $sql = implode(",\n\t", $sql_rows); + + $sql = sprintf("CREATE TABLE IF NOT EXISTS `%s` (\n\t", dbesc($name)).$sql."\n) DEFAULT CHARSET=utf8"; if ($verbose) echo $sql.";\n"; @@ -282,7 +282,7 @@ function db_drop_index($indexname) { return($sql); } -function db_create_index($indexname, $fieldnames) { +function db_create_index($indexname, $fieldnames, $method="ADD") { if ($indexname == "PRIMARY") return; @@ -298,7 +298,13 @@ function db_create_index($indexname, $fieldnames) { $names .= "`".dbesc($fieldname)."`"; } - $sql = sprintf("ADD INDEX `%s` (%s)", dbesc($indexname), $names); + $method = strtoupper(trim($method)); + if ($method!="" && $method!="ADD") { + throw new Exception("Invalid parameter 'method' in db_create_index(): '$method'"); + killme(); + } + + $sql = sprintf("%s INDEX `%s` (%s)", $method, dbesc($indexname), $names); return($sql); } @@ -626,6 +632,7 @@ function db_definition() { "keywords" => array("type" => "text", "not null" => "1"), "gender" => array("type" => "varchar(32)", "not null" => "1", "default" => ""), "network" => array("type" => "varchar(255)", "not null" => "1", "default" => ""), + "generation" => array("type" => "tinyint(3)", "not null" => "1", "default" => "0"), ), "indexes" => array( "PRIMARY" => array("id"), @@ -775,6 +782,9 @@ function db_definition() { "last-child" => array("type" => "tinyint(1) unsigned", "not null" => "1", "default" => "1"), "mention" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"), "network" => array("type" => "varchar(32)", "not null" => "1", "default" => ""), + "rendered-hash" => array("type" => "varchar(32)", "not null" => "1", "default" => ""), + "rendered-html" => array("type" => "mediumtext", "not null" => "1"), + "global" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"), ), "indexes" => array( "PRIMARY" => array("id"), @@ -1187,6 +1197,10 @@ function db_definition() { "type" => array("type" => "tinyint(3) unsigned", "not null" => "1", "default" => "0"), "term" => array("type" => "varchar(255)", "not null" => "1", "default" => ""), "url" => array("type" => "varchar(255)", "not null" => "1", "default" => ""), + "guid" => array("type" => "varchar(255)", "not null" => "1", "default" => ""), + "created" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"), + "received" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"), + "global" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"), "aid" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0"), "uid" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0"), ), @@ -1195,8 +1209,9 @@ function db_definition() { "oid_otype_type_term" => array("oid","otype","type","term"), "uid_term_tid" => array("uid","term","tid"), "type_term" => array("type","term"), - "uid_otype_type_term_tid" => array("uid","otype","type","term","tid"), + "uid_otype_type_term_global_created" => array("uid","otype","type","term","global","created"), "otype_type_term_tid" => array("otype","type","term","tid"), + "guid" => array("guid"), ) ); $database["thread"] = array( @@ -1348,7 +1363,29 @@ function dbstructure_run(&$argv, &$argc) { unset($db_host, $db_user, $db_pass, $db_data); } - update_structure(true, true); + if ($argc==2) { + switch ($argv[1]) { + case "update": + update_structure(true, true); + return; + case "dumpsql": + print_structure(db_definition()); + return; + } + } + + + // print help + echo $argv[0]." \n"; + echo "\n"; + echo "commands:\n"; + echo "update update database schema\n"; + echo "dumpsql dump database schema\n"; + return; + + + + } if (array_search(__file__,get_included_files())===0){ diff --git a/include/diaspora.php b/include/diaspora.php index affd59d489..dd877112ba 100755 --- a/include/diaspora.php +++ b/include/diaspora.php @@ -6,6 +6,7 @@ require_once('include/bb2diaspora.php'); require_once('include/contact_selectors.php'); require_once('include/queue_fn.php'); require_once('include/lock.php'); +require_once('include/threads.php'); function diaspora_dispatch_public($msg) { @@ -589,7 +590,7 @@ function diaspora_request($importer,$xml) { intval($importer['uid']) ); - if((count($r)) && (! $r[0]['hide-friends']) && (! $contact['hidden'])) { + if((count($r)) && (!$r[0]['hide-friends']) && (!$contact['hidden']) && intval(get_pconfig($importer['uid'],'system','post_newfriend'))) { require_once('include/items.php'); $self = q("SELECT * FROM `contact` WHERE `self` = 1 AND `uid` = %d LIMIT 1", @@ -833,31 +834,6 @@ function diaspora_post($importer,$xml,$msg) { $str_tags = ''; - $tags = get_tags($body); - - if(count($tags)) { - foreach($tags as $tag) { - if(strpos($tag,'#') === 0) { - if(strpos($tag,'[url=')) - continue; - - // don't link tags that are already embedded in links - - if(preg_match('/\[(.*?)' . preg_quote($tag,'/') . '(.*?)\]/',$body)) - continue; - if(preg_match('/\[(.*?)\]\((.*?)' . preg_quote($tag,'/') . '(.*?)\)/',$body)) - continue; - - $basetag = str_replace('_',' ',substr($tag,1)); - $body = str_replace($tag,'#[url=' . $a->get_baseurl() . '/search?tag=' . rawurlencode($basetag) . ']' . $basetag . '[/url]',$body); - if(strlen($str_tags)) - $str_tags .= ','; - $str_tags .= '#[url=' . $a->get_baseurl() . '/search?tag=' . rawurlencode($basetag) . ']' . $basetag . '[/url]'; - continue; - } - } - } - $cnt = preg_match_all('/@\[url=(.*?)\[\/url\]/ism',$body,$matches,PREG_SET_ORDER); if($cnt) { foreach($matches as $mtch) { @@ -895,19 +871,92 @@ function diaspora_post($importer,$xml,$msg) { $datarray['visible'] = ((strlen($body)) ? 1 : 0); + DiasporaFetchGuid($datarray); $message_id = item_store($datarray); - //if($message_id) { - // q("update item set plink = '%s' where id = %d", - // dbesc($a->get_baseurl() . '/display/' . $importer['nickname'] . '/' . $message_id), - // intval($message_id) - // ); - //} - return; } +function DiasporaFetchGuid($item) { + preg_replace_callback("&\[url=/posts/([^\[\]]*)\](.*)\[\/url\]&Usi", + function ($match) use ($item){ + return(DiasporaFetchGuidSub($match, $item)); + },$item["body"]); +} + +function DiasporaFetchGuidSub($match, $item) { + $a = get_app(); + + $author = parse_url($item["author-link"]); + $authorserver = $author["scheme"]."://".$author["host"]; + + $owner = parse_url($item["owner-link"]); + $ownerserver = $owner["scheme"]."://".$owner["host"]; + + if (!diaspora_store_by_guid($match[1], $authorserver)) + diaspora_store_by_guid($match[1], $ownerserver); +} + +function diaspora_store_by_guid($guid, $server) { + require_once("include/Contact.php"); + + logger("fetching item ".$guid." from ".$server, LOGGER_DEBUG); + + $item = diaspora_fetch_message($guid, $server); + + if (!$item) + return false; + + $body = $item["body"]; + $str_tags = $item["tag"]; + $app = $item["app"]; + $created = $item["created"]; + $author = $item["author"]; + $guid = $item["guid"]; + $private = $item["private"]; + + $message_id = $author.':'.$guid; + $r = q("SELECT `id` FROM `item` WHERE `uid` = 0 AND `uri` = '%s' AND `guid` = '%s' LIMIT 1", + dbesc($message_id), + dbesc($guid) + ); + if(count($r)) + return $r[0]["id"]; + + $person = find_diaspora_person_by_handle($author); + + $datarray = array(); + $datarray['uid'] = 0; + $datarray['contact-id'] = get_contact($person['url'], 0); + $datarray['wall'] = 0; + $datarray['network'] = NETWORK_DIASPORA; + $datarray['guid'] = $guid; + $datarray['uri'] = $datarray['parent-uri'] = $message_id; + $datarray['changed'] = $datarray['created'] = $datarray['edited'] = datetime_convert('UTC','UTC',$created); + $datarray['private'] = $private; + $datarray['parent'] = 0; + $datarray['plink'] = 'https://'.substr($author,strpos($author,'@')+1).'/posts/'.$guid; + $datarray['author-name'] = $person['name']; + $datarray['author-link'] = $person['url']; + $datarray['author-avatar'] = ((x($person,'thumb')) ? $person['thumb'] : $person['photo']); + $datarray['owner-name'] = $datarray['author-name']; + $datarray['owner-link'] = $datarray['author-link']; + $datarray['owner-avatar'] = $datarray['author-avatar']; + $datarray['body'] = $body; + $datarray['tag'] = $str_tags; + $datarray['app'] = $app; + $datarray['visible'] = ((strlen($body)) ? 1 : 0); + + DiasporaFetchGuid($datarray); + $message_id = item_store($datarray); + + // To-Do: + // Looking if there is some subscribe mechanism in Diaspora to get all comments for this post + + return $message_id; +} + function diaspora_fetch_message($guid, $server, $level = 0) { if ($level > 5) @@ -981,34 +1030,8 @@ function diaspora_fetch_message($guid, $server, $level = 0) { return false; $item["tag"] = ''; - - $tags = get_tags($body); - - if(count($tags)) { - foreach($tags as $tag) { - if(strpos($tag,'#') === 0) { - if(strpos($tag,'[url=')) - continue; - - // don't link tags that are already embedded in links - - if(preg_match('/\[(.*?)' . preg_quote($tag,'/') . '(.*?)\]/',$body)) - continue; - if(preg_match('/\[(.*?)\]\((.*?)' . preg_quote($tag,'/') . '(.*?)\)/',$body)) - continue; - - - $basetag = str_replace('_',' ',substr($tag,1)); - $body = str_replace($tag,'#[url=' . $a->get_baseurl() . '/search?tag=' . rawurlencode($basetag) . ']' . $basetag . '[/url]',$body); - if(strlen($item["tag"])) - $item["tag"] .= ','; - $item["tag"] .= '#[url=' . $a->get_baseurl() . '/search?tag=' . rawurlencode($basetag) . ']' . $basetag . '[/url]'; - continue; - } - } - } - $item["body"] = $body; + return $item; } @@ -1102,7 +1125,8 @@ function diaspora_reshare($importer,$xml,$msg) { $orig_created = $item["created"]; $orig_author = $item["author"]; $orig_guid = $item["guid"]; - //$create_original_post = ($body != ""); + $create_original_post = ($body != ""); + $orig_url = $a->get_baseurl()."/display/".$orig_guid; } } @@ -1144,6 +1168,8 @@ function diaspora_reshare($importer,$xml,$msg) { $prefix = "[share author='".str_replace(array("'", "[", "]"), array("'", "[", "]"),$person['name']). "' profile='".$person['url']. "' avatar='".((x($person,'thumb')) ? $person['thumb'] : $person['photo']). + "' guid='".$orig_guid. + "' posted='".$orig_created. "' link='".str_replace(array("'", "[", "]"), array("'", "[", "]"),$orig_url)."']"; $datarray['author-name'] = $contact['name']; $datarray['author-link'] = $contact['url']; @@ -1164,12 +1190,13 @@ function diaspora_reshare($importer,$xml,$msg) { $datarray['visible'] = ((strlen($body)) ? 1 : 0); // Store the original item of a reshare - // Deactivated by now. Items without a matching contact can't be shown via "mod/display.php" by now. if ($create_original_post) { + require_once("include/Contact.php"); + $datarray2 = $datarray; $datarray2['uid'] = 0; - $datarray2['contact-id'] = 0; + $datarray2['contact-id'] = get_contact($person['url'], 0); $datarray2['guid'] = $orig_guid; $datarray2['uri'] = $datarray2['parent-uri'] = $orig_author.':'.$orig_guid; $datarray2['changed'] = $datarray2['created'] = $datarray2['edited'] = datetime_convert('UTC','UTC',$orig_created); @@ -1183,11 +1210,13 @@ function diaspora_reshare($importer,$xml,$msg) { $datarray2['owner-avatar'] = $datarray2['author-avatar']; $datarray2['body'] = $body; + DiasporaFetchGuid($datarray2); $message_id = item_store($datarray2); logger("Store original item ".$orig_guid." under message id ".$message_id); } + DiasporaFetchGuid($datarray); $message_id = item_store($datarray); return; @@ -1280,6 +1309,7 @@ function diaspora_asphoto($importer,$xml,$msg) { $datarray['app'] = 'Diaspora/Cubbi.es'; + DiasporaFetchGuid($datarray); $message_id = item_store($datarray); //if($message_id) { @@ -1403,34 +1433,6 @@ function diaspora_comment($importer,$xml,$msg) { $datarray = array(); - $str_tags = ''; - - $tags = get_tags($body); - - if(count($tags)) { - foreach($tags as $tag) { - if(strpos($tag,'#') === 0) { - if(strpos($tag,'[url=')) - continue; - - // don't link tags that are already embedded in links - - if(preg_match('/\[(.*?)' . preg_quote($tag,'/') . '(.*?)\]/',$body)) - continue; - if(preg_match('/\[(.*?)\]\((.*?)' . preg_quote($tag,'/') . '(.*?)\)/',$body)) - continue; - - - $basetag = str_replace('_',' ',substr($tag,1)); - $body = str_replace($tag,'#[url=' . $a->get_baseurl() . '/search?tag=' . rawurlencode($basetag) . ']' . $basetag . '[/url]',$body); - if(strlen($str_tags)) - $str_tags .= ','; - $str_tags .= '#[url=' . $a->get_baseurl() . '/search?tag=' . rawurlencode($basetag) . ']' . $basetag . '[/url]'; - continue; - } - } - } - $datarray['uid'] = $importer['uid']; $datarray['contact-id'] = $contact['id']; $datarray['type'] = 'remote-comment'; @@ -1454,12 +1456,12 @@ function diaspora_comment($importer,$xml,$msg) { $datarray['author-link'] = $person['url']; $datarray['author-avatar'] = ((x($person,'thumb')) ? $person['thumb'] : $person['photo']); $datarray['body'] = $body; - $datarray['tag'] = $str_tags; // We can't be certain what the original app is if the message is relayed. if(($parent_item['origin']) && (! $parent_author_signature)) $datarray['app'] = 'Diaspora'; + DiasporaFetchGuid($datarray); $message_id = item_store($datarray); //if($message_id) { @@ -1854,11 +1856,12 @@ function diaspora_photo($importer,$xml,$msg,$attempt=1) { array($remote_photo_name, 'scaled_full_' . $remote_photo_name)); if(strpos($parent_item['body'],$link_text) === false) { - $r = q("update item set `body` = '%s', `visible` = 1 where `id` = %d and `uid` = %d", + $r = q("UPDATE `item` SET `body` = '%s', `visible` = 1 WHERE `id` = %d AND `uid` = %d", dbesc($link_text . $parent_item['body']), intval($parent_item['id']), intval($parent_item['uid']) ); + update_thread($parent_item['id']); } return; @@ -1933,7 +1936,7 @@ function diaspora_like($importer,$xml,$msg) { if($positive === 'false') { logger('diaspora_like: received a like with positive set to "false"'); logger('diaspora_like: unlike received with no corresponding like...ignoring'); - return; + return; } @@ -1949,26 +1952,28 @@ function diaspora_like($importer,$xml,$msg) { who sent the salmon */ - $signed_data = $guid . ';' . $target_type . ';' . $parent_guid . ';' . $positive . ';' . $diaspora_handle; + // Diaspora has changed the way they are signing the likes. + // Just to make sure that we don't miss any likes we will check the old and the current way. + $old_signed_data = $guid . ';' . $target_type . ';' . $parent_guid . ';' . $positive . ';' . $diaspora_handle; + + $signed_data = $positive . ';' . $guid . ';' . $target_type . ';' . $parent_guid . ';' . $diaspora_handle; + $key = $msg['key']; - if($parent_author_signature) { + if ($parent_author_signature) { // If a parent_author_signature exists, then we've received the like // relayed from the top-level post owner. There's no need to check the // author_signature if the parent_author_signature is valid $parent_author_signature = base64_decode($parent_author_signature); - if(! rsa_verify($signed_data,$parent_author_signature,$key,'sha256')) { - if (intval(get_config('system','ignore_diaspora_like_signature'))) - logger('diaspora_like: top-level owner verification failed. Proceeding anyway.'); - else { - logger('diaspora_like: top-level owner verification failed.'); - return; - } + if (!rsa_verify($signed_data,$parent_author_signature,$key,'sha256') AND + !rsa_verify($old_signed_data,$parent_author_signature,$key,'sha256')) { + + logger('diaspora_like: top-level owner verification failed.'); + return; } - } - else { + } else { // If there's no parent_author_signature, then we've received the like // from the like creator. In that case, the person is "like"ing // our post, so he/she must be a contact of ours and his/her public key @@ -1976,13 +1981,11 @@ function diaspora_like($importer,$xml,$msg) { $author_signature = base64_decode($author_signature); - if(! rsa_verify($signed_data,$author_signature,$key,'sha256')) { - if (intval(get_config('system','ignore_diaspora_like_signature'))) - logger('diaspora_like: like creator verification failed. Proceeding anyway'); - else { - logger('diaspora_like: like creator verification failed.'); - return; - } + if (!rsa_verify($signed_data,$author_signature,$key,'sha256') AND + !rsa_verify($old_signed_data,$author_signature,$key,'sha256')) { + + logger('diaspora_like: like creator verification failed.'); + return; } } @@ -2319,7 +2322,7 @@ function diaspora_profile($importer,$xml,$msg) { if (unxmlify($xml->searchable) == "true") { require_once('include/socgraph.php'); poco_check($contact['url'], $name, NETWORK_DIASPORA, $images[0], $about, $location, $gender, $keywords, "", - datetime_convert(), $contact['id'], $importer['uid']); + datetime_convert(), 2, $contact['id'], $importer['uid']); } $profileurl = ""; @@ -2509,6 +2512,26 @@ function diaspora_is_reshare($body) { if ($body == $attributes) return(false); + $guid = ""; + preg_match("/guid='(.*?)'/ism", $attributes, $matches); + if ($matches[1] != "") + $guid = $matches[1]; + + preg_match('/guid="(.*?)"/ism', $attributes, $matches); + if ($matches[1] != "") + $guid = $matches[1]; + + if ($guid != "") { + $r = q("SELECT `contact-id` FROM `item` WHERE `guid` = '%s' AND `network` IN ('%s', '%s') LIMIT 1", + dbesc($guid), NETWORK_DFRN, NETWORK_DIASPORA); + if ($r) { + $ret= array(); + $ret["root_handle"] = diaspora_handle_from_contact($r[0]["contact-id"]); + $ret["root_guid"] = $guid; + return($ret); + } + } + $profile = ""; preg_match("/profile='(.*?)'/ism", $attributes, $matches); if ($matches[1] != "") diff --git a/include/enotify.php b/include/enotify.php index 99bc0fd324..4327e75b83 100644 --- a/include/enotify.php +++ b/include/enotify.php @@ -23,12 +23,15 @@ function notification($params) { $site_admin = sprintf( t('%s Administrator'), $sitename); $nickname = ""; - $sender_name = $product; + $sender_name = $sitename; $hostname = $a->get_hostname(); if(strpos($hostname,':')) $hostname = substr($hostname,0,strpos($hostname,':')); - - $sender_email = t('noreply') . '@' . $hostname; + + $sender_email = $a->config['sender_email']; + if (empty($sender_email)) { + $sender_email = t('noreply') . '@' . $hostname; + } $user = q("SELECT `nickname` FROM `user` WHERE `uid` = %d", intval($params['uid'])); if ($user) diff --git a/include/gprobe.php b/include/gprobe.php index 52c5483c87..03cdbd072b 100644 --- a/include/gprobe.php +++ b/include/gprobe.php @@ -41,7 +41,23 @@ function gprobe_run(&$argv, &$argc){ if(! count($r)) { + // Is it a DDoS attempt? + $urlparts = parse_url($url); + + $result = Cache::get("gprobe:".$urlparts["host"]); + if (!is_null($result)) { + $result = unserialize($result); + if ($result["network"] == NETWORK_FEED) { + logger("DDoS attempt detected for ".$urlparts["host"]." by ".$_SERVER["REMOTE_ADDR"].". server data: ".print_r($_SERVER, true), LOGGER_DEBUG); + return; + } + } + $arr = probe_url($url); + + if (is_null($result)) + Cache::set("gprobe:".$urlparts["host"],serialize($arr)); + if(count($arr) && x($arr,'network') && $arr['network'] === NETWORK_DFRN) { q("insert into `gcontact` (`name`,`url`,`nurl`,`photo`) values ( '%s', '%s', '%s', '%s') ", diff --git a/include/html2bbcode.php b/include/html2bbcode.php index 650bbdcae8..d2699460e3 100644 --- a/include/html2bbcode.php +++ b/include/html2bbcode.php @@ -88,9 +88,6 @@ function deletenode(&$doc, $node) function html2bbcode($message) { - //$file = tempnam("/tmp/", "html"); - //file_put_contents($file, $message); - $message = str_replace("\r", "", $message); $message = str_replace(array( @@ -207,12 +204,19 @@ function html2bbcode($message) //node2bbcode($doc, 'tr', array(), "[tr]", "[/tr]"); //node2bbcode($doc, 'td', array(), "[td]", "[/td]"); - node2bbcode($doc, 'h1', array(), "\n\n[size=xx-large][b]", "[/b][/size]\n"); - node2bbcode($doc, 'h2', array(), "\n\n[size=x-large][b]", "[/b][/size]\n"); - node2bbcode($doc, 'h3', array(), "\n\n[size=large][b]", "[/b][/size]\n"); - node2bbcode($doc, 'h4', array(), "\n\n[size=medium][b]", "[/b][/size]\n"); - node2bbcode($doc, 'h5', array(), "\n\n[size=small][b]", "[/b][/size]\n"); - node2bbcode($doc, 'h6', array(), "\n\n[size=x-small][b]", "[/b][/size]\n"); + //node2bbcode($doc, 'h1', array(), "\n\n[size=xx-large][b]", "[/b][/size]\n"); + //node2bbcode($doc, 'h2', array(), "\n\n[size=x-large][b]", "[/b][/size]\n"); + //node2bbcode($doc, 'h3', array(), "\n\n[size=large][b]", "[/b][/size]\n"); + //node2bbcode($doc, 'h4', array(), "\n\n[size=medium][b]", "[/b][/size]\n"); + //node2bbcode($doc, 'h5', array(), "\n\n[size=small][b]", "[/b][/size]\n"); + //node2bbcode($doc, 'h6', array(), "\n\n[size=x-small][b]", "[/b][/size]\n"); + + node2bbcode($doc, 'h1', array(), "\n\n[h1]", "[/h1]\n"); + node2bbcode($doc, 'h2', array(), "\n\n[h2]", "[/h2]\n"); + node2bbcode($doc, 'h3', array(), "\n\n[h3]", "[/h3]\n"); + node2bbcode($doc, 'h4', array(), "\n\n[h4]", "[/h4]\n"); + node2bbcode($doc, 'h5', array(), "\n\n[h5]", "[/h5]\n"); + node2bbcode($doc, 'h6', array(), "\n\n[h6]", "[/h6]\n"); node2bbcode($doc, 'a', array('href'=>'/mailto:(.+)/'), '[mail=$1]', '[/mail]'); node2bbcode($doc, 'a', array('href'=>'/(.+)/'), '[url=$1]', '[/url]'); diff --git a/include/html2plain.php b/include/html2plain.php index f09087e0b0..1d5910d83b 100644 --- a/include/html2plain.php +++ b/include/html2plain.php @@ -113,12 +113,6 @@ function html2plain($html, $wraplength = 75, $compact = false) $message = str_replace("\r", "", $html); - // replace all hashtag addresses -/* if (get_config("system", "remove_hashtags_on_export")) { - $pattern = '/#(.*?)<\/a>/is'; - $message = preg_replace($pattern, '#$2', $message); - } -*/ $doc = new DOMDocument(); $doc->preserveWhiteSpace = false; diff --git a/include/items.php b/include/items.php index 344b06ec8b..0b8bf8fea9 100644 --- a/include/items.php +++ b/include/items.php @@ -1210,8 +1210,8 @@ function item_store($arr,$force_parent = false, $notify = false, $dontcache = fa $arr['attach'] = ((x($arr,'attach')) ? notags(trim($arr['attach'])) : ''); $arr['app'] = ((x($arr,'app')) ? notags(trim($arr['app'])) : ''); $arr['origin'] = ((x($arr,'origin')) ? intval($arr['origin']) : 0 ); - $arr['guid'] = ((x($arr,'guid')) ? notags(trim($arr['guid'])) : get_guid(30)); $arr['network'] = ((x($arr,'network')) ? trim($arr['network']) : ''); + $arr['guid'] = ((x($arr,'guid')) ? notags(trim($arr['guid'])) : get_guid(32, $arr['network'])); $arr['postopts'] = ((x($arr,'postopts')) ? trim($arr['postopts']) : ''); $arr['resource-id'] = ((x($arr,'resource-id')) ? trim($arr['resource-id']) : ''); $arr['event-id'] = ((x($arr,'event-id')) ? intval($arr['event-id']) : 0 ); @@ -1239,6 +1239,9 @@ function item_store($arr,$force_parent = false, $notify = false, $dontcache = fa logger("item_store: Set network to ".$arr["network"]." for ".$arr["uri"], LOGGER_DEBUG); } + // Check for hashtags in the body and repair or add hashtag links + item_body_set_hashtags($arr); + $arr['thr-parent'] = $arr['parent-uri']; if($arr['parent-uri'] === $arr['uri']) { $parent_id = 0; @@ -1343,6 +1346,20 @@ function item_store($arr,$force_parent = false, $notify = false, $dontcache = fa return 0; } + // Is this item available in the global items (with uid=0)? + if ($arr["uid"] == 0) { + $arr["global"] = true; + + q("UPDATE `item` SET `global` = 1 WHERE `guid` = '%s'", dbesc($arr["guid"])); + } else { + $isglobal = q("SELECT `global` FROM `item` WHERE `uid` = 0 AND `guid` = '%s'", dbesc($arr["guid"])); + + $arr["global"] = (count($isglobal) > 0); + } + + // Fill the cache field + put_item_in_cache($arr); + call_hooks('post_remote',$arr); if(x($arr,'cancel')) { @@ -1376,16 +1393,6 @@ function item_store($arr,$force_parent = false, $notify = false, $dontcache = fa $current_post = $r[0]['id']; logger('item_store: created item ' . $current_post); - // Add every contact to the global contact table - // Contacts from the statusnet connector are also added since you could add them in OStatus as well. - if (!$arr['private'] AND in_array($arr["network"], - array(NETWORK_DFRN, NETWORK_DIASPORA, NETWORK_OSTATUS, NETWORK_STATUSNET, ""))) { - poco_check($arr["author-link"], $arr["author-name"], $arr["network"], $arr["author-avatar"], "", "", "", "", "", $arr["received"], $arr["contact-id"], $arr["uid"]); - - // Maybe its a body with a shared item? Then extract a global contact from it. - poco_contact_from_body($arr["body"], $arr["received"], $arr["contact-id"], $arr["uid"]); - } - // Set "success_update" to the date of the last time we heard from this contact // This can be used to filter for inactive contacts and poco. // Only do this for public postings to avoid privacy problems, since poco data is public. @@ -1395,56 +1402,12 @@ function item_store($arr,$force_parent = false, $notify = false, $dontcache = fa dbesc($arr['received']), intval($arr['contact-id']) ); - - // Only check for notifications on start posts - if ($arr['parent-uri'] === $arr['uri']) { - add_thread($r[0]['id']); - logger('item_store: Check notification for contact '.$arr['contact-id'].' and post '.$current_post, LOGGER_DEBUG); - - // Send a notification for every new post? - $r = q("SELECT `notify_new_posts` FROM `contact` WHERE `id` = %d AND `uid` = %d AND `notify_new_posts` LIMIT 1", - intval($arr['contact-id']), - intval($arr['uid']) - ); - - if(count($r)) { - logger('item_store: Send notification for contact '.$arr['contact-id'].' and post '.$current_post, LOGGER_DEBUG); - $u = q("SELECT * FROM user WHERE uid = %d LIMIT 1", - intval($arr['uid'])); - - $item = q("SELECT * FROM `item` WHERE `id` = %d AND `uid` = %d", - intval($current_post), - intval($arr['uid']) - ); - - $a = get_app(); - - require_once('include/enotify.php'); - notification(array( - 'type' => NOTIFY_SHARE, - 'notify_flags' => $u[0]['notify-flags'], - 'language' => $u[0]['language'], - 'to_name' => $u[0]['username'], - 'to_email' => $u[0]['email'], - 'uid' => $u[0]['uid'], - 'item' => $item[0], - 'link' => $a->get_baseurl().'/display/'.urlencode($arr['guid']), - 'source_name' => $item[0]['author-name'], - 'source_link' => $item[0]['author-link'], - 'source_photo' => $item[0]['author-avatar'], - 'verb' => ACTIVITY_TAG, - 'otype' => 'item' - )); - logger('item_store: Notification sent for contact '.$arr['contact-id'].' and post '.$current_post, LOGGER_DEBUG); - } - } - } else { logger('item_store: could not locate created item'); return 0; } if(count($r) > 1) { - logger('item_store: duplicated post occurred. Removing duplicates.'); + logger('item_store: duplicated post occurred. Removing duplicates. uri = '.$arr['uri'].' uid = '.$arr['uid']); q("DELETE FROM `item` WHERE `uri` = '%s' AND `uid` = %d AND `id` != %d ", dbesc($arr['uri']), intval($arr['uid']), @@ -1488,13 +1451,18 @@ function item_store($arr,$force_parent = false, $notify = false, $dontcache = fa $arr['deleted'] = $parent_deleted; // update the commented timestamp on the parent - - q("UPDATE `item` set `commented` = '%s', `changed` = '%s' WHERE `id` = %d", - dbesc(datetime_convert()), - dbesc(datetime_convert()), - intval($parent_id) - ); - update_thread($parent_id); + // Only update "commented" if it is really a comment + if (($arr['verb'] == ACTIVITY_POST) OR !get_config("system", "like_no_comment")) + q("UPDATE `item` SET `commented` = '%s', `changed` = '%s' WHERE `id` = %d", + dbesc(datetime_convert()), + dbesc(datetime_convert()), + intval($parent_id) + ); + else + q("UPDATE `item` SET `changed` = '%s' WHERE `id` = %d", + dbesc(datetime_convert()), + intval($parent_id) + ); if($dsprsig) { q("insert into sign (`iid`,`signed_text`,`signature`,`signer`) values (%d,'%s','%s','%s') ", @@ -1520,39 +1488,157 @@ function item_store($arr,$force_parent = false, $notify = false, $dontcache = fa $deleted = tag_deliver($arr['uid'],$current_post); - // current post can be deleted if is for a communuty page and no mention are + // current post can be deleted if is for a community page and no mention are // in it. if (!$deleted AND !$dontcache) { - // Store the fresh generated item into the cache - $cachefile = get_cachefile(urlencode($arr["guid"])."-".hash("md5", $arr['body'])); - - if (($cachefile != '') AND !file_exists($cachefile)) { - $s = prepare_text($arr['body']); - $a = get_app(); - $stamp1 = microtime(true); - file_put_contents($cachefile, $s); - $a->save_timestamp($stamp1, "file"); - logger('item_store: put item '.$current_post.' into cachefile '.$cachefile); - } - $r = q('SELECT * FROM `item` WHERE id = %d', intval($current_post)); if (count($r) == 1) { call_hooks('post_remote_end', $r[0]); - } else { + } else logger('item_store: new item not found in DB, id ' . $current_post); - } } - create_tags_from_item($current_post, $dontcache); + // Add every contact of the post to the global contact table + poco_store($arr); + + create_tags_from_item($current_post); create_files_from_item($current_post); + // Only check for notifications on start posts + if ($arr['parent-uri'] === $arr['uri']) { + add_thread($current_post); + logger('item_store: Check notification for contact '.$arr['contact-id'].' and post '.$current_post, LOGGER_DEBUG); + + // Send a notification for every new post? + $r = q("SELECT `notify_new_posts` FROM `contact` WHERE `id` = %d AND `uid` = %d AND `notify_new_posts` LIMIT 1", + intval($arr['contact-id']), + intval($arr['uid']) + ); + $send_notification = count($r); + + if (!$send_notification) { + $tags = q("SELECT `url` FROM `term` WHERE `otype` = %d AND `oid` = %d AND `type` = %d AND `uid` = %d", + intval(TERM_OBJ_POST), intval($current_post), intval(TERM_MENTION), intval($arr['uid'])); + + if (count($tags)) { + foreach ($tags AS $tag) { + $r = q("SELECT `id` FROM `contact` WHERE `nurl` = '%s' AND `uid` = %d AND `notify_new_posts`", + normalise_link($tag["url"]), intval($arr['uid'])); + if (count($r)) + $send_notification = true; + } + } + } + + if ($send_notification) { + logger('item_store: Send notification for contact '.$arr['contact-id'].' and post '.$current_post, LOGGER_DEBUG); + $u = q("SELECT * FROM user WHERE uid = %d LIMIT 1", + intval($arr['uid'])); + + $item = q("SELECT * FROM `item` WHERE `id` = %d AND `uid` = %d", + intval($current_post), + intval($arr['uid']) + ); + + $a = get_app(); + + require_once('include/enotify.php'); + notification(array( + 'type' => NOTIFY_SHARE, + 'notify_flags' => $u[0]['notify-flags'], + 'language' => $u[0]['language'], + 'to_name' => $u[0]['username'], + 'to_email' => $u[0]['email'], + 'uid' => $u[0]['uid'], + 'item' => $item[0], + 'link' => $a->get_baseurl().'/display/'.urlencode($arr['guid']), + 'source_name' => $item[0]['author-name'], + 'source_link' => $item[0]['author-link'], + 'source_photo' => $item[0]['author-avatar'], + 'verb' => ACTIVITY_TAG, + 'otype' => 'item' + )); + logger('item_store: Notification sent for contact '.$arr['contact-id'].' and post '.$current_post, LOGGER_DEBUG); + } + } else { + update_thread($parent_id); + add_shadow_entry($arr); + } + if ($notify) proc_run('php', "include/notifier.php", $notify_type, $current_post); return $current_post; } +function item_body_set_hashtags(&$item) { + + $tags = get_tags($item["body"]); + + // No hashtags? + if(!count($tags)) + return(false); + + // This sorting is important when there are hashtags that are part of other hashtags + // Otherwise there could be problems with hashtags like #test and #test2 + rsort($tags); + + $a = get_app(); + + $URLSearchString = "^\[\]"; + + // All hashtags should point to the home server + //$item["body"] = preg_replace("/#\[url\=([$URLSearchString]*)\](.*?)\[\/url\]/ism", + // "#[url=".$a->get_baseurl()."/search?tag=$2]$2[/url]", $item["body"]); + + //$item["tag"] = preg_replace("/#\[url\=([$URLSearchString]*)\](.*?)\[\/url\]/ism", + // "#[url=".$a->get_baseurl()."/search?tag=$2]$2[/url]", $item["tag"]); + + // mask hashtags inside of url, bookmarks and attachments to avoid urls in urls + $item["body"] = preg_replace_callback("/\[url\=([$URLSearchString]*)\](.*?)\[\/url\]/ism", + function ($match){ + return("[url=".$match[1]."]".str_replace("#", "#", $match[2])."[/url]"); + },$item["body"]); + + $item["body"] = preg_replace_callback("/\[bookmark\=([$URLSearchString]*)\](.*?)\[\/bookmark\]/ism", + function ($match){ + return("[bookmark=".$match[1]."]".str_replace("#", "#", $match[2])."[/bookmark]"); + },$item["body"]); + + $item["body"] = preg_replace_callback("/\[attachment (.*)\](.*?)\[\/attachment\]/ism", + function ($match){ + return("[attachment ".str_replace("#", "#", $match[1])."]".$match[2]."[/attachment]"); + },$item["body"]); + + // Repair recursive urls + $item["body"] = preg_replace("/#\[url\=([$URLSearchString]*)\](.*?)\[\/url\]/ism", + "#$2", $item["body"]); + + foreach($tags as $tag) { + if(strpos($tag,'#') !== 0) + continue; + + if(strpos($tag,'[url=')) + continue; + + $basetag = str_replace('_',' ',substr($tag,1)); + + $newtag = '#[url='.$a->get_baseurl().'/search?tag='.rawurlencode($basetag).']'.$basetag.'[/url]'; + + $item["body"] = str_replace($tag, $newtag, $item["body"]); + + if(!stristr($item["tag"],"/search?tag=".$basetag."]".$basetag."[/url]")) { + if(strlen($item["tag"])) + $item["tag"] = ','.$item["tag"]; + $item["tag"] = $newtag.$item["tag"]; + } + } + + // Convert back the masked hashtags + $item["body"] = str_replace("#", "#", $item["body"]); +} + function get_item_guid($id) { $r = q("SELECT `guid` FROM `item` WHERE `id` = %d LIMIT 1", intval($id)); if (count($r)) @@ -2078,6 +2164,7 @@ function consume_feed($xml,$importer,&$contact, &$hub, $datedir = 0, $pass = 0) $photo_timestamp = ''; $photo_url = ''; $birthday = ''; + $contact_updated = ''; $hubs = $feed->get_links('hub'); logger('consume_feed: hubs: ' . print_r($hubs,true), LOGGER_DATA); @@ -2093,9 +2180,16 @@ function consume_feed($xml,$importer,&$contact, &$hub, $datedir = 0, $pass = 0) if($elems['name'][0]['attribs'][NAMESPACE_DFRN]['updated']) { $name_updated = $elems['name'][0]['attribs'][NAMESPACE_DFRN]['updated']; $new_name = $elems['name'][0]['data']; + + // Manually checking for changed contact names + if (($new_name != $contact['name']) AND ($new_name != "") AND ($name_updated <= $contact['name-date'])) { + $name_updated = date("c"); + $photo_timestamp = date("c"); + } } if((x($elems,'link')) && ($elems['link'][0]['attribs']['']['rel'] === 'photo') && ($elems['link'][0]['attribs'][NAMESPACE_DFRN]['updated'])) { - $photo_timestamp = datetime_convert('UTC','UTC',$elems['link'][0]['attribs'][NAMESPACE_DFRN]['updated']); + if ($photo_timestamp == "") + $photo_timestamp = datetime_convert('UTC','UTC',$elems['link'][0]['attribs'][NAMESPACE_DFRN]['updated']); $photo_url = $elems['link'][0]['attribs']['']['href']; } @@ -2106,6 +2200,9 @@ function consume_feed($xml,$importer,&$contact, &$hub, $datedir = 0, $pass = 0) if((is_array($contact)) && ($photo_timestamp) && (strlen($photo_url)) && ($photo_timestamp > $contact['avatar-date'])) { logger('consume_feed: Updating photo for '.$contact['name'].' from '.$photo_url.' uid: '.$contact['uid']); + + $contact_updated = $photo_timestamp; + require_once("include/Photo.php"); $photo_failure = false; $have_photo = false; @@ -2163,6 +2260,9 @@ function consume_feed($xml,$importer,&$contact, &$hub, $datedir = 0, $pass = 0) } if((is_array($contact)) && ($name_updated) && (strlen($new_name)) && ($name_updated > $contact['name-date'])) { + if ($name_updated > $contact_updated) + $contact_updated = $name_updated; + $r = q("select * from contact where uid = %d and id = %d limit 1", intval($contact['uid']), intval($contact['id']) @@ -2187,6 +2287,9 @@ function consume_feed($xml,$importer,&$contact, &$hub, $datedir = 0, $pass = 0) } } + if ($contact_updated AND $new_name AND $photo_url) + poco_check($contact['url'], $new_name, NETWORK_DFRN, $photo_url, "", "", "", "", "", $contact_updated, 2, $contact['id'], $contact['uid']); + if(strlen($birthday)) { if(substr($birthday,0,4) != $contact['bdyear']) { logger('consume_feed: updating birthday: ' . $birthday); @@ -2233,7 +2336,6 @@ function consume_feed($xml,$importer,&$contact, &$hub, $datedir = 0, $pass = 0) $contact['bdyear'] = substr($birthday,0,4); } - } $community_page = 0; @@ -2715,6 +2817,10 @@ function item_is_remote_self($contact, &$datarray) { if ($datarray["app"] == $a->get_hostname()) return false; + // Only forward posts + if ($datarray["verb"] != ACTIVITY_POST) + return false; + if (($contact['network'] != NETWORK_FEED) AND $datarray['private']) return false; @@ -2795,6 +2901,7 @@ function local_delivery($importer,$data) { $new_name = ''; $photo_timestamp = ''; $photo_url = ''; + $contact_updated = ''; $rawtags = $feed->get_feed_tags( NAMESPACE_DFRN, 'owner'); @@ -2808,14 +2915,24 @@ function local_delivery($importer,$data) { if($elems['name'][0]['attribs'][NAMESPACE_DFRN]['updated']) { $name_updated = $elems['name'][0]['attribs'][NAMESPACE_DFRN]['updated']; $new_name = $elems['name'][0]['data']; + + // Manually checking for changed contact names + if (($new_name != $importer['name']) AND ($new_name != "") AND ($name_updated <= $importer['name-date'])) { + $name_updated = date("c"); + $photo_timestamp = date("c"); + } } if((x($elems,'link')) && ($elems['link'][0]['attribs']['']['rel'] === 'photo') && ($elems['link'][0]['attribs'][NAMESPACE_DFRN]['updated'])) { - $photo_timestamp = datetime_convert('UTC','UTC',$elems['link'][0]['attribs'][NAMESPACE_DFRN]['updated']); + if ($photo_timestamp == "") + $photo_timestamp = datetime_convert('UTC','UTC',$elems['link'][0]['attribs'][NAMESPACE_DFRN]['updated']); $photo_url = $elems['link'][0]['attribs']['']['href']; } } if(($photo_timestamp) && (strlen($photo_url)) && ($photo_timestamp > $importer['avatar-date'])) { + + $contact_updated = $photo_timestamp; + logger('local_delivery: Updating photo for ' . $importer['name']); require_once("include/Photo.php"); $photo_failure = false; @@ -2874,6 +2991,9 @@ function local_delivery($importer,$data) { } if(($name_updated) && (strlen($new_name)) && ($name_updated > $importer['name-date'])) { + if ($name_updated > $contact_updated) + $contact_updated = $name_updated; + $r = q("select * from contact where uid = %d and id = %d limit 1", intval($importer['importer_uid']), intval($importer['id']) @@ -2898,7 +3018,8 @@ function local_delivery($importer,$data) { } } - + if ($contact_updated AND $new_name AND $photo_url) + poco_check($importer['url'], $new_name, NETWORK_DFRN, $photo_url, "", "", "", "", "", $contact_updated, 2, $importer['id'], $importer['importer_uid']); // Currently unsupported - needs a lot of work $reloc = $feed->get_feed_tags( NAMESPACE_DFRN, 'relocate' ); @@ -2937,6 +3058,7 @@ function local_delivery($importer,$data) { thumb = '%s', micro = '%s', url = '%s', + nurl = '%s', request = '%s', confirm = '%s', notify = '%s', @@ -2948,6 +3070,7 @@ function local_delivery($importer,$data) { dbesc($newloc['thumb']), dbesc($newloc['micro']), dbesc($newloc['url']), + dbesc(normalise_link($newloc['url'])), dbesc($newloc['request']), dbesc($newloc['confirm']), dbesc($newloc['notify']), @@ -4649,8 +4772,8 @@ function drop_item($id,$interactive = true) { dbesc($item['parent-uri']), intval($item['uid']) ); - create_tags_from_item($item['parent-uri'], $item['uid']); - create_files_from_item($item['parent-uri'], $item['uid']); + create_tags_from_itemuri($item['parent-uri'], $item['uid']); + create_files_from_itemuri($item['parent-uri'], $item['uid']); delete_thread_uri($item['parent-uri'], $item['uid']); // ignore the result } diff --git a/include/markdownify/LICENSE_LGPL.txt b/include/markdownify/LICENSE_LGPL.txt deleted file mode 100644 index 5ab7695ab8..0000000000 --- a/include/markdownify/LICENSE_LGPL.txt +++ /dev/null @@ -1,504 +0,0 @@ - GNU LESSER GENERAL PUBLIC LICENSE - Version 2.1, February 1999 - - Copyright (C) 1991, 1999 Free Software Foundation, Inc. - 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - Everyone is permitted to copy and distribute verbatim copies - of this license document, but changing it is not allowed. - -[This is the first released version of the Lesser GPL. It also counts - as the successor of the GNU Library Public License, version 2, hence - the version number 2.1.] - - Preamble - - The licenses for most software are designed to take away your -freedom to share and change it. By contrast, the GNU General Public -Licenses are intended to guarantee your freedom to share and change -free software--to make sure the software is free for all its users. - - This license, the Lesser General Public License, applies to some -specially designated software packages--typically libraries--of the -Free Software Foundation and other authors who decide to use it. You -can use it too, but we suggest you first think carefully about whether -this license or the ordinary General Public License is the better -strategy to use in any particular case, based on the explanations below. - - When we speak of free software, we are referring to freedom of use, -not price. Our General Public Licenses are designed to make sure that -you have the freedom to distribute copies of free software (and charge -for this service if you wish); that you receive source code or can get -it if you want it; that you can change the software and use pieces of -it in new free programs; and that you are informed that you can do -these things. - - To protect your rights, we need to make restrictions that forbid -distributors to deny you these rights or to ask you to surrender these -rights. These restrictions translate to certain responsibilities for -you if you distribute copies of the library or if you modify it. - - For example, if you distribute copies of the library, whether gratis -or for a fee, you must give the recipients all the rights that we gave -you. You must make sure that they, too, receive or can get the source -code. If you link other code with the library, you must provide -complete object files to the recipients, so that they can relink them -with the library after making changes to the library and recompiling -it. And you must show them these terms so they know their rights. - - We protect your rights with a two-step method: (1) we copyright the -library, and (2) we offer you this license, which gives you legal -permission to copy, distribute and/or modify the library. - - To protect each distributor, we want to make it very clear that -there is no warranty for the free library. Also, if the library is -modified by someone else and passed on, the recipients should know -that what they have is not the original version, so that the original -author's reputation will not be affected by problems that might be -introduced by others. - - Finally, software patents pose a constant threat to the existence of -any free program. We wish to make sure that a company cannot -effectively restrict the users of a free program by obtaining a -restrictive license from a patent holder. Therefore, we insist that -any patent license obtained for a version of the library must be -consistent with the full freedom of use specified in this license. - - Most GNU software, including some libraries, is covered by the -ordinary GNU General Public License. This license, the GNU Lesser -General Public License, applies to certain designated libraries, and -is quite different from the ordinary General Public License. We use -this license for certain libraries in order to permit linking those -libraries into non-free programs. - - When a program is linked with a library, whether statically or using -a shared library, the combination of the two is legally speaking a -combined work, a derivative of the original library. The ordinary -General Public License therefore permits such linking only if the -entire combination fits its criteria of freedom. The Lesser General -Public License permits more lax criteria for linking other code with -the library. - - We call this license the "Lesser" General Public License because it -does Less to protect the user's freedom than the ordinary General -Public License. It also provides other free software developers Less -of an advantage over competing non-free programs. These disadvantages -are the reason we use the ordinary General Public License for many -libraries. However, the Lesser license provides advantages in certain -special circumstances. - - For example, on rare occasions, there may be a special need to -encourage the widest possible use of a certain library, so that it becomes -a de-facto standard. To achieve this, non-free programs must be -allowed to use the library. A more frequent case is that a free -library does the same job as widely used non-free libraries. In this -case, there is little to gain by limiting the free library to free -software only, so we use the Lesser General Public License. - - In other cases, permission to use a particular library in non-free -programs enables a greater number of people to use a large body of -free software. For example, permission to use the GNU C Library in -non-free programs enables many more people to use the whole GNU -operating system, as well as its variant, the GNU/Linux operating -system. - - Although the Lesser General Public License is Less protective of the -users' freedom, it does ensure that the user of a program that is -linked with the Library has the freedom and the wherewithal to run -that program using a modified version of the Library. - - The precise terms and conditions for copying, distribution and -modification follow. Pay close attention to the difference between a -"work based on the library" and a "work that uses the library". The -former contains code derived from the library, whereas the latter must -be combined with the library in order to run. - - GNU LESSER GENERAL PUBLIC LICENSE - TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION - - 0. This License Agreement applies to any software library or other -program which contains a notice placed by the copyright holder or -other authorized party saying it may be distributed under the terms of -this Lesser General Public License (also called "this License"). -Each licensee is addressed as "you". - - A "library" means a collection of software functions and/or data -prepared so as to be conveniently linked with application programs -(which use some of those functions and data) to form executables. - - The "Library", below, refers to any such software library or work -which has been distributed under these terms. A "work based on the -Library" means either the Library or any derivative work under -copyright law: that is to say, a work containing the Library or a -portion of it, either verbatim or with modifications and/or translated -straightforwardly into another language. (Hereinafter, translation is -included without limitation in the term "modification".) - - "Source code" for a work means the preferred form of the work for -making modifications to it. For a library, complete source code means -all the source code for all modules it contains, plus any associated -interface definition files, plus the scripts used to control compilation -and installation of the library. - - Activities other than copying, distribution and modification are not -covered by this License; they are outside its scope. The act of -running a program using the Library is not restricted, and output from -such a program is covered only if its contents constitute a work based -on the Library (independent of the use of the Library in a tool for -writing it). Whether that is true depends on what the Library does -and what the program that uses the Library does. - - 1. You may copy and distribute verbatim copies of the Library's -complete source code as you receive it, in any medium, provided that -you conspicuously and appropriately publish on each copy an -appropriate copyright notice and disclaimer of warranty; keep intact -all the notices that refer to this License and to the absence of any -warranty; and distribute a copy of this License along with the -Library. - - You may charge a fee for the physical act of transferring a copy, -and you may at your option offer warranty protection in exchange for a -fee. - - 2. You may modify your copy or copies of the Library or any portion -of it, thus forming a work based on the Library, and copy and -distribute such modifications or work under the terms of Section 1 -above, provided that you also meet all of these conditions: - - a) The modified work must itself be a software library. - - b) You must cause the files modified to carry prominent notices - stating that you changed the files and the date of any change. - - c) You must cause the whole of the work to be licensed at no - charge to all third parties under the terms of this License. - - d) If a facility in the modified Library refers to a function or a - table of data to be supplied by an application program that uses - the facility, other than as an argument passed when the facility - is invoked, then you must make a good faith effort to ensure that, - in the event an application does not supply such function or - table, the facility still operates, and performs whatever part of - its purpose remains meaningful. - - (For example, a function in a library to compute square roots has - a purpose that is entirely well-defined independent of the - application. Therefore, Subsection 2d requires that any - application-supplied function or table used by this function must - be optional: if the application does not supply it, the square - root function must still compute square roots.) - -These requirements apply to the modified work as a whole. If -identifiable sections of that work are not derived from the Library, -and can be reasonably considered independent and separate works in -themselves, then this License, and its terms, do not apply to those -sections when you distribute them as separate works. But when you -distribute the same sections as part of a whole which is a work based -on the Library, the distribution of the whole must be on the terms of -this License, whose permissions for other licensees extend to the -entire whole, and thus to each and every part regardless of who wrote -it. - -Thus, it is not the intent of this section to claim rights or contest -your rights to work written entirely by you; rather, the intent is to -exercise the right to control the distribution of derivative or -collective works based on the Library. - -In addition, mere aggregation of another work not based on the Library -with the Library (or with a work based on the Library) on a volume of -a storage or distribution medium does not bring the other work under -the scope of this License. - - 3. You may opt to apply the terms of the ordinary GNU General Public -License instead of this License to a given copy of the Library. To do -this, you must alter all the notices that refer to this License, so -that they refer to the ordinary GNU General Public License, version 2, -instead of to this License. (If a newer version than version 2 of the -ordinary GNU General Public License has appeared, then you can specify -that version instead if you wish.) Do not make any other change in -these notices. - - Once this change is made in a given copy, it is irreversible for -that copy, so the ordinary GNU General Public License applies to all -subsequent copies and derivative works made from that copy. - - This option is useful when you wish to copy part of the code of -the Library into a program that is not a library. - - 4. You may copy and distribute the Library (or a portion or -derivative of it, under Section 2) in object code or executable form -under the terms of Sections 1 and 2 above provided that you accompany -it with the complete corresponding machine-readable source code, which -must be distributed under the terms of Sections 1 and 2 above on a -medium customarily used for software interchange. - - If distribution of object code is made by offering access to copy -from a designated place, then offering equivalent access to copy the -source code from the same place satisfies the requirement to -distribute the source code, even though third parties are not -compelled to copy the source along with the object code. - - 5. A program that contains no derivative of any portion of the -Library, but is designed to work with the Library by being compiled or -linked with it, is called a "work that uses the Library". Such a -work, in isolation, is not a derivative work of the Library, and -therefore falls outside the scope of this License. - - However, linking a "work that uses the Library" with the Library -creates an executable that is a derivative of the Library (because it -contains portions of the Library), rather than a "work that uses the -library". The executable is therefore covered by this License. -Section 6 states terms for distribution of such executables. - - When a "work that uses the Library" uses material from a header file -that is part of the Library, the object code for the work may be a -derivative work of the Library even though the source code is not. -Whether this is true is especially significant if the work can be -linked without the Library, or if the work is itself a library. The -threshold for this to be true is not precisely defined by law. - - If such an object file uses only numerical parameters, data -structure layouts and accessors, and small macros and small inline -functions (ten lines or less in length), then the use of the object -file is unrestricted, regardless of whether it is legally a derivative -work. (Executables containing this object code plus portions of the -Library will still fall under Section 6.) - - Otherwise, if the work is a derivative of the Library, you may -distribute the object code for the work under the terms of Section 6. -Any executables containing that work also fall under Section 6, -whether or not they are linked directly with the Library itself. - - 6. As an exception to the Sections above, you may also combine or -link a "work that uses the Library" with the Library to produce a -work containing portions of the Library, and distribute that work -under terms of your choice, provided that the terms permit -modification of the work for the customer's own use and reverse -engineering for debugging such modifications. - - You must give prominent notice with each copy of the work that the -Library is used in it and that the Library and its use are covered by -this License. You must supply a copy of this License. If the work -during execution displays copyright notices, you must include the -copyright notice for the Library among them, as well as a reference -directing the user to the copy of this License. Also, you must do one -of these things: - - a) Accompany the work with the complete corresponding - machine-readable source code for the Library including whatever - changes were used in the work (which must be distributed under - Sections 1 and 2 above); and, if the work is an executable linked - with the Library, with the complete machine-readable "work that - uses the Library", as object code and/or source code, so that the - user can modify the Library and then relink to produce a modified - executable containing the modified Library. (It is understood - that the user who changes the contents of definitions files in the - Library will not necessarily be able to recompile the application - to use the modified definitions.) - - b) Use a suitable shared library mechanism for linking with the - Library. A suitable mechanism is one that (1) uses at run time a - copy of the library already present on the user's computer system, - rather than copying library functions into the executable, and (2) - will operate properly with a modified version of the library, if - the user installs one, as long as the modified version is - interface-compatible with the version that the work was made with. - - c) Accompany the work with a written offer, valid for at - least three years, to give the same user the materials - specified in Subsection 6a, above, for a charge no more - than the cost of performing this distribution. - - d) If distribution of the work is made by offering access to copy - from a designated place, offer equivalent access to copy the above - specified materials from the same place. - - e) Verify that the user has already received a copy of these - materials or that you have already sent this user a copy. - - For an executable, the required form of the "work that uses the -Library" must include any data and utility programs needed for -reproducing the executable from it. However, as a special exception, -the materials to be distributed need not include anything that is -normally distributed (in either source or binary form) with the major -components (compiler, kernel, and so on) of the operating system on -which the executable runs, unless that component itself accompanies -the executable. - - It may happen that this requirement contradicts the license -restrictions of other proprietary libraries that do not normally -accompany the operating system. Such a contradiction means you cannot -use both them and the Library together in an executable that you -distribute. - - 7. You may place library facilities that are a work based on the -Library side-by-side in a single library together with other library -facilities not covered by this License, and distribute such a combined -library, provided that the separate distribution of the work based on -the Library and of the other library facilities is otherwise -permitted, and provided that you do these two things: - - a) Accompany the combined library with a copy of the same work - based on the Library, uncombined with any other library - facilities. This must be distributed under the terms of the - Sections above. - - b) Give prominent notice with the combined library of the fact - that part of it is a work based on the Library, and explaining - where to find the accompanying uncombined form of the same work. - - 8. You may not copy, modify, sublicense, link with, or distribute -the Library except as expressly provided under this License. Any -attempt otherwise to copy, modify, sublicense, link with, or -distribute the Library is void, and will automatically terminate your -rights under this License. However, parties who have received copies, -or rights, from you under this License will not have their licenses -terminated so long as such parties remain in full compliance. - - 9. You are not required to accept this License, since you have not -signed it. However, nothing else grants you permission to modify or -distribute the Library or its derivative works. These actions are -prohibited by law if you do not accept this License. Therefore, by -modifying or distributing the Library (or any work based on the -Library), you indicate your acceptance of this License to do so, and -all its terms and conditions for copying, distributing or modifying -the Library or works based on it. - - 10. Each time you redistribute the Library (or any work based on the -Library), the recipient automatically receives a license from the -original licensor to copy, distribute, link with or modify the Library -subject to these terms and conditions. You may not impose any further -restrictions on the recipients' exercise of the rights granted herein. -You are not responsible for enforcing compliance by third parties with -this License. - - 11. If, as a consequence of a court judgment or allegation of patent -infringement or for any other reason (not limited to patent issues), -conditions are imposed on you (whether by court order, agreement or -otherwise) that contradict the conditions of this License, they do not -excuse you from the conditions of this License. If you cannot -distribute so as to satisfy simultaneously your obligations under this -License and any other pertinent obligations, then as a consequence you -may not distribute the Library at all. For example, if a patent -license would not permit royalty-free redistribution of the Library by -all those who receive copies directly or indirectly through you, then -the only way you could satisfy both it and this License would be to -refrain entirely from distribution of the Library. - -If any portion of this section is held invalid or unenforceable under any -particular circumstance, the balance of the section is intended to apply, -and the section as a whole is intended to apply in other circumstances. - -It is not the purpose of this section to induce you to infringe any -patents or other property right claims or to contest validity of any -such claims; this section has the sole purpose of protecting the -integrity of the free software distribution system which is -implemented by public license practices. Many people have made -generous contributions to the wide range of software distributed -through that system in reliance on consistent application of that -system; it is up to the author/donor to decide if he or she is willing -to distribute software through any other system and a licensee cannot -impose that choice. - -This section is intended to make thoroughly clear what is believed to -be a consequence of the rest of this License. - - 12. If the distribution and/or use of the Library is restricted in -certain countries either by patents or by copyrighted interfaces, the -original copyright holder who places the Library under this License may add -an explicit geographical distribution limitation excluding those countries, -so that distribution is permitted only in or among countries not thus -excluded. In such case, this License incorporates the limitation as if -written in the body of this License. - - 13. The Free Software Foundation may publish revised and/or new -versions of the Lesser General Public License from time to time. -Such new versions will be similar in spirit to the present version, -but may differ in detail to address new problems or concerns. - -Each version is given a distinguishing version number. If the Library -specifies a version number of this License which applies to it and -"any later version", you have the option of following the terms and -conditions either of that version or of any later version published by -the Free Software Foundation. If the Library does not specify a -license version number, you may choose any version ever published by -the Free Software Foundation. - - 14. If you wish to incorporate parts of the Library into other free -programs whose distribution conditions are incompatible with these, -write to the author to ask for permission. For software which is -copyrighted by the Free Software Foundation, write to the Free -Software Foundation; we sometimes make exceptions for this. Our -decision will be guided by the two goals of preserving the free status -of all derivatives of our free software and of promoting the sharing -and reuse of software generally. - - NO WARRANTY - - 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO -WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW. -EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR -OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY -KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE -LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME -THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. - - 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN -WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY -AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU -FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR -CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE -LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING -RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A -FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF -SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGES. - - END OF TERMS AND CONDITIONS - - How to Apply These Terms to Your New Libraries - - If you develop a new library, and you want it to be of the greatest -possible use to the public, we recommend making it free software that -everyone can redistribute and change. You can do so by permitting -redistribution under these terms (or, alternatively, under the terms of the -ordinary General Public License). - - To apply these terms, attach the following notices to the library. It is -safest to attach them to the start of each source file to most effectively -convey the exclusion of warranty; and each file should have at least the -"copyright" line and a pointer to where the full notice is found. - - - Copyright (C) - - This library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public - License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. - - This library is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. - - You should have received a copy of the GNU Lesser General Public - License along with this library; if not, write to the Free Software - Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - -Also add information on how to contact you by electronic and paper mail. - -You should also get your employer (if you work as a programmer) or your -school, if any, to sign a "copyright disclaimer" for the library, if -necessary. Here is a sample; alter the names: - - Yoyodyne, Inc., hereby disclaims all copyright interest in the - library `Frob' (a library for tweaking knobs) written by James Random Hacker. - - , 1 April 1990 - Ty Coon, President of Vice - -That's all there is to it! - - diff --git a/include/markdownify/TODO b/include/markdownify/TODO deleted file mode 100644 index 06ec8508ba..0000000000 --- a/include/markdownify/TODO +++ /dev/null @@ -1,29 +0,0 @@ -Markdownify -=========== -* handle non-markdownifiable lists (i.e. `
    • asdf
    `) -* organize methods better (i.e. flushlinebreaks & setlinebreaks close to each other) -* take a look at function names etc. -* is the new (in rev. 93) lastclosedtag property needed? -* word wrapping (some work is done but it's still very buggy) - - -Markdownify Extra -================= - -* handle table alignment with KEEP_HTML=false -* handle tables without headings when KEEP_HTML=false is set -* handle Markdown inside non-markdownable tags - - -Implementation Thoughts -======================= -* non-markdownifiable lists and markdown inside non-markdownable tags as well as the current - table implementation could be rewritten by using a rollback mechanism. - - example: - -
    • asdf
    • asdf
    - - we come to `