<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>http://www.wiki.adultfunonline.info/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Afowiki</id>
	<title>AdultFunOnline.info Wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="http://www.wiki.adultfunonline.info/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Afowiki"/>
	<link rel="alternate" type="text/html" href="http://www.wiki.adultfunonline.info/Special:Contributions/Afowiki"/>
	<updated>2026-04-07T01:54:37Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.37.1</generator>
	<entry>
		<id>http://www.wiki.adultfunonline.info/index.php?title=MediaWiki:Monobook.js&amp;diff=43</id>
		<title>MediaWiki:Monobook.js</title>
		<link rel="alternate" type="text/html" href="http://www.wiki.adultfunonline.info/index.php?title=MediaWiki:Monobook.js&amp;diff=43"/>
		<updated>2022-01-20T04:40:28Z</updated>

		<summary type="html">&lt;p&gt;Afowiki: Replaced content with &amp;quot;/* All JavaScript here will be loaded for users of the MonoBook skin */&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;/* All JavaScript here will be loaded for users of the MonoBook skin */&lt;/div&gt;</summary>
		<author><name>Afowiki</name></author>
	</entry>
	<entry>
		<id>http://www.wiki.adultfunonline.info/index.php?title=MediaWiki:Monobook.js&amp;diff=42</id>
		<title>MediaWiki:Monobook.js</title>
		<link rel="alternate" type="text/html" href="http://www.wiki.adultfunonline.info/index.php?title=MediaWiki:Monobook.js&amp;diff=42"/>
		<updated>2022-01-20T04:30:00Z</updated>

		<summary type="html">&lt;p&gt;Afowiki: Created page with &amp;quot;/* All JavaScript here will be loaded for users of the MonoBook skin */  ///////////////////////////////////////////////////////// // Code snippet to make your sidebar items expandable.  // Use this code ONLY for the Monobook skin.  /////////////////////////////////////////////////////////  $( document ).ready( function() { 	// Set the default expanded items by their headline 	var defaultExpandItems = ['Navigation', 'Orga']; 	// Set the basic-name for the cookies, which...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;/* All JavaScript here will be loaded for users of the MonoBook skin */&lt;br /&gt;
&lt;br /&gt;
/////////////////////////////////////////////////////////&lt;br /&gt;
// Code snippet to make your sidebar items expandable. &lt;br /&gt;
// Use this code ONLY for the Monobook skin. &lt;br /&gt;
/////////////////////////////////////////////////////////&lt;br /&gt;
&lt;br /&gt;
$( document ).ready( function() {&lt;br /&gt;
	// Set the default expanded items by their headline&lt;br /&gt;
	var defaultExpandItems = ['Navigation', 'Orga'];&lt;br /&gt;
	// Set the basic-name for the cookies, which save the current state of expanding&lt;br /&gt;
	var expandCookieName = 'disdance_project_wiki_nav_expanded_';&lt;br /&gt;
&lt;br /&gt;
var maxHeights = [];&lt;br /&gt;
	var expandeds = [];&lt;br /&gt;
	var labels = [];&lt;br /&gt;
	initNav();&lt;br /&gt;
});&lt;br /&gt;
&lt;br /&gt;
function initNav() {&lt;br /&gt;
	$( '#p-logo' ).css({'position': 'relative', 'display': 'block'});&lt;br /&gt;
	$( '.generated-sidebar h5,#p-tb h5 ').each( function( i ) {&lt;br /&gt;
		var id = $( this ).parent().attr( 'id' );&lt;br /&gt;
		maxHeights[id] = $( this ).next( 'div' ).height();&lt;br /&gt;
		var str = $( this ).html();&lt;br /&gt;
		labels[id] = str;&lt;br /&gt;
&lt;br /&gt;
if ( $.cookie( expandCookieName + id ) == 'false' ) {&lt;br /&gt;
			expandeds[id] = false;&lt;br /&gt;
			minimize( $( this ) );&lt;br /&gt;
		} else if ( $.cookie( expandCookieName + id ) == 'true' ) {&lt;br /&gt;
			expandeds[id] = true;&lt;br /&gt;
			maximize( $( this ) );&lt;br /&gt;
		} else if ( defaultExpandItems.indexOf( str ) == -1 ) {&lt;br /&gt;
			expandeds[id] = false;&lt;br /&gt;
			minimize( $( this ) );&lt;br /&gt;
		} else {&lt;br /&gt;
			expandeds[id] = true;&lt;br /&gt;
			maximize( $( this ) );&lt;br /&gt;
		}&lt;br /&gt;
		$( this ).css({'cursor': 'pointer'});&lt;br /&gt;
		$( this ).click( toggleNav );&lt;br /&gt;
	} );&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
function minimize( target ) {&lt;br /&gt;
	var id = $( target ).parent().attr( 'id' );&lt;br /&gt;
	// You can change the expires parameter to save the cookie longer/shorter than 7 days like in this code&lt;br /&gt;
	$.cookie( expandCookieName + id, 'false', { expires: 7} );&lt;br /&gt;
	var str = labels[id] + '  ►';&lt;br /&gt;
	$( target ).next( 'div' ).animate({'height': '0px'});&lt;br /&gt;
	$( target ).html( str );&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
function maximize( target ) {&lt;br /&gt;
	var id = $( target ).parent().attr( 'id' );&lt;br /&gt;
	// You can change the expires parameter to save the cookie longer/shorter than 7 days like in this code&lt;br /&gt;
	$.cookie( expandCookieName + id, 'true', { expires: 7} );&lt;br /&gt;
	var str = labels[id] + '  ▼';&lt;br /&gt;
	var newHeight = maxHeights[id];&lt;br /&gt;
	$( target ).next( 'div' ).animate({'height': newHeight + 'px'});&lt;br /&gt;
	$( target ).html( str );&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
function toggleNav( e ) {&lt;br /&gt;
	var id = $(e.target ).parent().attr( 'id' );&lt;br /&gt;
	expandeds[id] = !expandeds[id];&lt;br /&gt;
	if( expandeds[id] == true ) {&lt;br /&gt;
		maximize( e.target );&lt;br /&gt;
	} else {&lt;br /&gt;
		minimize( e.target );&lt;br /&gt;
	}&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
///////////////////////////////////////////////////////&lt;br /&gt;
///////////////////////////////////////////////////////&lt;/div&gt;</summary>
		<author><name>Afowiki</name></author>
	</entry>
	<entry>
		<id>http://www.wiki.adultfunonline.info/index.php?title=User_talk:Afowiki&amp;diff=41</id>
		<title>User talk:Afowiki</title>
		<link rel="alternate" type="text/html" href="http://www.wiki.adultfunonline.info/index.php?title=User_talk:Afowiki&amp;diff=41"/>
		<updated>2015-08-09T22:18:13Z</updated>

		<summary type="html">&lt;p&gt;Afowiki: Created page with &amp;quot;Administrator of this Wiki, also Administrator of Main Website:  http://www.AdultFunOnline.info/   On-line Contact Form:  http://www.adultfunonline.info/contact.html&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Administrator of this Wiki, also Administrator of Main Website:&lt;br /&gt;
&lt;br /&gt;
http://www.AdultFunOnline.info/&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
On-line Contact Form:&lt;br /&gt;
&lt;br /&gt;
http://www.adultfunonline.info/contact.html&lt;/div&gt;</summary>
		<author><name>Afowiki</name></author>
	</entry>
	<entry>
		<id>http://www.wiki.adultfunonline.info/index.php?title=User:Afowiki&amp;diff=40</id>
		<title>User:Afowiki</title>
		<link rel="alternate" type="text/html" href="http://www.wiki.adultfunonline.info/index.php?title=User:Afowiki&amp;diff=40"/>
		<updated>2015-08-09T22:16:53Z</updated>

		<summary type="html">&lt;p&gt;Afowiki: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Administrator of this Wiki, also Administrator of Main Website:&lt;br /&gt;
&lt;br /&gt;
http://www.AdultFunOnline.info/&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
On-line Contact Form:&lt;br /&gt;
&lt;br /&gt;
http://www.adultfunonline.info/contact.html&lt;/div&gt;</summary>
		<author><name>Afowiki</name></author>
	</entry>
	<entry>
		<id>http://www.wiki.adultfunonline.info/index.php?title=User:Afowiki&amp;diff=39</id>
		<title>User:Afowiki</title>
		<link rel="alternate" type="text/html" href="http://www.wiki.adultfunonline.info/index.php?title=User:Afowiki&amp;diff=39"/>
		<updated>2015-08-09T22:16:42Z</updated>

		<summary type="html">&lt;p&gt;Afowiki: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Administrator of this Wiki, also Administrator of Main Website:&lt;br /&gt;
&lt;br /&gt;
http://www.AdultFunOnline.info/&lt;br /&gt;
&lt;br /&gt;
On-line Contact Form:&lt;br /&gt;
&lt;br /&gt;
http://www.adultfunonline.info/contact.html&lt;/div&gt;</summary>
		<author><name>Afowiki</name></author>
	</entry>
	<entry>
		<id>http://www.wiki.adultfunonline.info/index.php?title=User:Afowiki&amp;diff=38</id>
		<title>User:Afowiki</title>
		<link rel="alternate" type="text/html" href="http://www.wiki.adultfunonline.info/index.php?title=User:Afowiki&amp;diff=38"/>
		<updated>2015-08-09T22:15:03Z</updated>

		<summary type="html">&lt;p&gt;Afowiki: Created page with &amp;quot;Administrator of this Wiki, also Administrator of Main Website:  http://www.AdultFunOnline.info/&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Administrator of this Wiki, also Administrator of Main Website:&lt;br /&gt;
&lt;br /&gt;
http://www.AdultFunOnline.info/&lt;/div&gt;</summary>
		<author><name>Afowiki</name></author>
	</entry>
	<entry>
		<id>http://www.wiki.adultfunonline.info/index.php?title=Main_Page&amp;diff=37</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="http://www.wiki.adultfunonline.info/index.php?title=Main_Page&amp;diff=37"/>
		<updated>2015-06-30T23:41:46Z</updated>

		<summary type="html">&lt;p&gt;Afowiki: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''Welcome to the AdultFunOnline Wiki!'''&lt;br /&gt;
&lt;br /&gt;
Most of content is being uploaded. '''Remember that you can add and edit content in this wiki! Please do so!'''&lt;br /&gt;
&lt;br /&gt;
== Contents ==&lt;br /&gt;
&lt;br /&gt;
* [[Flash Games]]&lt;br /&gt;
* [[Game Walkthroughs]]&lt;br /&gt;
* [[Flash Games websites links]]&lt;br /&gt;
* [[You-Tube -like free video websites]]&lt;br /&gt;
* [[Picture of the day websites]]&lt;br /&gt;
* [[Other adult encyclopedias]]&lt;br /&gt;
* [[How to use Peer-to-Peer Networks Portal]]&lt;br /&gt;
* [[How to set up uTorrent]]&lt;br /&gt;
* [[Torrent websites, and how to search]]&lt;br /&gt;
* [[LimeWire]]&lt;br /&gt;
* [[Celebrities adult content]]&lt;br /&gt;
* [[Full-length DVD / movie websites]]&lt;br /&gt;
* [[Mainstream movies]]&lt;br /&gt;
* [[TV Shows]]&lt;br /&gt;
* [[Free websites]]&lt;br /&gt;
* [[Adult websites by category]] (no hardcore).&lt;br /&gt;
...&lt;/div&gt;</summary>
		<author><name>Afowiki</name></author>
	</entry>
	<entry>
		<id>http://www.wiki.adultfunonline.info/index.php?title=Main_Page&amp;diff=36</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="http://www.wiki.adultfunonline.info/index.php?title=Main_Page&amp;diff=36"/>
		<updated>2012-12-16T20:43:51Z</updated>

		<summary type="html">&lt;p&gt;Afowiki: /* Contents */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''Welcome to the AdultFunOnline Wiki!'''&lt;br /&gt;
&lt;br /&gt;
Most of content is being uploaded. '''Remember that you can add and edit content in this wiki! Please do so!'''&lt;br /&gt;
&lt;br /&gt;
== Contents ==&lt;br /&gt;
&lt;br /&gt;
* [[Flash Games]]&lt;br /&gt;
* [[Game Walkthroughs]]&lt;br /&gt;
* [[Flash Games websites links]]&lt;br /&gt;
* [[You-Tube -like free video websites]]&lt;br /&gt;
* [[Picture of the day websites]]&lt;br /&gt;
* [[Other adult encyclopedias]]&lt;br /&gt;
* [[How to use Peer-to-Peer Networks Portal]]&lt;br /&gt;
* [[How to set up uTorrent]]&lt;br /&gt;
* [[Torrent websites, and how to search]]&lt;br /&gt;
* [[LimeWire]]&lt;br /&gt;
* [[Celebrities adult content]]&lt;br /&gt;
* [[Full-length DVD / movie websites]]&lt;br /&gt;
* [[Mainstream movies]]&lt;br /&gt;
* [[TV Shows]]&lt;br /&gt;
* [[Free websites]]&lt;br /&gt;
* [[Adult websites by category]] (no hardcore).&lt;/div&gt;</summary>
		<author><name>Afowiki</name></author>
	</entry>
	<entry>
		<id>http://www.wiki.adultfunonline.info/index.php?title=MediaWiki:Common.css&amp;diff=35</id>
		<title>MediaWiki:Common.css</title>
		<link rel="alternate" type="text/html" href="http://www.wiki.adultfunonline.info/index.php?title=MediaWiki:Common.css&amp;diff=35"/>
		<updated>2011-11-24T17:32:57Z</updated>

		<summary type="html">&lt;p&gt;Afowiki: Created page with &amp;quot;/* CSS placed here will be applied to all skins */ div#footer {display:none}&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;/* CSS placed here will be applied to all skins */&lt;br /&gt;
div#footer {display:none}&lt;/div&gt;</summary>
		<author><name>Afowiki</name></author>
	</entry>
	<entry>
		<id>http://www.wiki.adultfunonline.info/index.php?title=MediaWiki:Sidebar&amp;diff=34</id>
		<title>MediaWiki:Sidebar</title>
		<link rel="alternate" type="text/html" href="http://www.wiki.adultfunonline.info/index.php?title=MediaWiki:Sidebar&amp;diff=34"/>
		<updated>2011-11-24T17:20:45Z</updated>

		<summary type="html">&lt;p&gt;Afowiki: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;* navigation&lt;br /&gt;
** mainpage|mainpage-description&lt;br /&gt;
** http://AdultFunOnline.info/|Back to AdultFunOnline.info website&lt;br /&gt;
** http://forum.AdultFunOnline.info/|AdultFunOnline.info Forum&lt;br /&gt;
** recentchanges-url|recentchanges&lt;br /&gt;
** randompage-url|randompage&lt;br /&gt;
* SEARCH&lt;br /&gt;
* TOOLBOX&lt;br /&gt;
* LANGUAGES&lt;/div&gt;</summary>
		<author><name>Afowiki</name></author>
	</entry>
	<entry>
		<id>http://www.wiki.adultfunonline.info/index.php?title=MediaWiki:Sidebar&amp;diff=33</id>
		<title>MediaWiki:Sidebar</title>
		<link rel="alternate" type="text/html" href="http://www.wiki.adultfunonline.info/index.php?title=MediaWiki:Sidebar&amp;diff=33"/>
		<updated>2011-11-24T17:19:54Z</updated>

		<summary type="html">&lt;p&gt;Afowiki: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;* navigation&lt;br /&gt;
** mainpage|mainpage-description&lt;br /&gt;
** http://AdultFunOnline.info/|Back to AdultFunOnline.info website&lt;br /&gt;
** http://forum.AdultFunOnline.info/|AdultFunOnline.info Forum&lt;br /&gt;
** recentchanges-url|recentchanges&lt;br /&gt;
** randompage-url|randompage&lt;br /&gt;
** helppage|help&lt;br /&gt;
* SEARCH&lt;br /&gt;
* TOOLBOX&lt;br /&gt;
* LANGUAGES&lt;/div&gt;</summary>
		<author><name>Afowiki</name></author>
	</entry>
	<entry>
		<id>http://www.wiki.adultfunonline.info/index.php?title=MediaWiki:Sidebar&amp;diff=32</id>
		<title>MediaWiki:Sidebar</title>
		<link rel="alternate" type="text/html" href="http://www.wiki.adultfunonline.info/index.php?title=MediaWiki:Sidebar&amp;diff=32"/>
		<updated>2011-11-24T17:17:22Z</updated>

		<summary type="html">&lt;p&gt;Afowiki: Created page with &amp;quot;* navigation ** mainpage|mainpage-description ** portal-url|portal ** recentchanges-url|recentchanges ** randompage-url|randompage ** helppage|help * SEARCH * TOOLBOX * LANGUAGES&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;* navigation&lt;br /&gt;
** mainpage|mainpage-description&lt;br /&gt;
** portal-url|portal&lt;br /&gt;
** recentchanges-url|recentchanges&lt;br /&gt;
** randompage-url|randompage&lt;br /&gt;
** helppage|help&lt;br /&gt;
* SEARCH&lt;br /&gt;
* TOOLBOX&lt;br /&gt;
* LANGUAGES&lt;/div&gt;</summary>
		<author><name>Afowiki</name></author>
	</entry>
	<entry>
		<id>http://www.wiki.adultfunonline.info/index.php?title=Main_Page&amp;diff=17</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="http://www.wiki.adultfunonline.info/index.php?title=Main_Page&amp;diff=17"/>
		<updated>2011-10-16T13:19:39Z</updated>

		<summary type="html">&lt;p&gt;Afowiki: Reverted edits by Fs (talk) to last revision by Afowiki&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''Welcome to the AdultFunOnline Wiki!'''&lt;br /&gt;
&lt;br /&gt;
Most of content is being uploaded. '''Remember that you can add and edit content in this wiki! Please do so!'''&lt;br /&gt;
&lt;br /&gt;
== Contents ==&lt;br /&gt;
&lt;br /&gt;
* [[Flash Games]]&lt;br /&gt;
* [[Game Walkthroughs]]&lt;br /&gt;
* [[Flash Games websites links]]&lt;br /&gt;
* [[You-Tube -like free video websites]]&lt;br /&gt;
* [[Picture of the day websites]]&lt;br /&gt;
* [[Other adult encyclopedias]]&lt;br /&gt;
* [[How to use Peer-to-Peer Networks Portal]]&lt;br /&gt;
* [[How to set up uTorrent]]&lt;br /&gt;
* [[Torrent websites, and how to search]]&lt;br /&gt;
* [[LimeWire]]&lt;br /&gt;
* [[Celebrities adult content]]&lt;br /&gt;
* [[Full-length DVD / movie websites]]&lt;br /&gt;
* [[Mainstream movies]]&lt;br /&gt;
* [[TV Shows]]&lt;br /&gt;
* [[Free websites]]&lt;br /&gt;
* [[Adult websites by category]] (no hardcore)&lt;/div&gt;</summary>
		<author><name>Afowiki</name></author>
	</entry>
	<entry>
		<id>http://www.wiki.adultfunonline.info/index.php?title=Tor_and_encryption_for_P2P&amp;diff=10</id>
		<title>Tor and encryption for P2P</title>
		<link rel="alternate" type="text/html" href="http://www.wiki.adultfunonline.info/index.php?title=Tor_and_encryption_for_P2P&amp;diff=10"/>
		<updated>2011-10-02T15:33:24Z</updated>

		<summary type="html">&lt;p&gt;Afowiki: Created page with &amp;quot;Tor and encryption is NOT used for Torrent networks.  Tor network does not have enough bandwidth and capacity to do P2P. Don't even try.  And besides, it would not provide real s...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Tor and encryption is NOT used for Torrent networks.&lt;br /&gt;
&lt;br /&gt;
Tor network does not have enough bandwidth and capacity to do P2P. Don't even try.&lt;br /&gt;
&lt;br /&gt;
And besides, it would not provide real security.&lt;br /&gt;
&lt;br /&gt;
Real protection methods for P2P are:&lt;br /&gt;
&lt;br /&gt;
1) Don't use it. This is what I do. There are now plenty of websites where content is posted for free, including movies. Just make sure that you run an Antivirus program like Avast!, and you do not download anything from the websites. Do not download any players, toolbars, extensions, add-ons. If they say you need to download something, move on to the next one.&lt;br /&gt;
&lt;br /&gt;
2) Some protection can be gained by using [http://www.peerblock.com/ PeerBlock]. Enable their A-P2P list.&lt;br /&gt;
&lt;br /&gt;
3) Do not download any torrents from websites that are not mainstream. If you are looking for a torrent, Google is not the right way. It will come up with results for any search, but more often than not, you will be downloading viruses and malware.&lt;/div&gt;</summary>
		<author><name>Afowiki</name></author>
	</entry>
	<entry>
		<id>http://www.wiki.adultfunonline.info/index.php?title=How_to_use_Peer-to-Peer_Networks_Portal&amp;diff=9</id>
		<title>How to use Peer-to-Peer Networks Portal</title>
		<link rel="alternate" type="text/html" href="http://www.wiki.adultfunonline.info/index.php?title=How_to_use_Peer-to-Peer_Networks_Portal&amp;diff=9"/>
		<updated>2011-10-02T14:57:26Z</updated>

		<summary type="html">&lt;p&gt;Afowiki: Created page with &amp;quot;* Tor and encryption for P2P&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;* [[Tor and encryption for P2P]]&lt;/div&gt;</summary>
		<author><name>Afowiki</name></author>
	</entry>
	<entry>
		<id>http://www.wiki.adultfunonline.info/index.php?title=Adult_websites_by_category&amp;diff=8</id>
		<title>Adult websites by category</title>
		<link rel="alternate" type="text/html" href="http://www.wiki.adultfunonline.info/index.php?title=Adult_websites_by_category&amp;diff=8"/>
		<updated>2011-06-20T06:19:46Z</updated>

		<summary type="html">&lt;p&gt;Afowiki: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Softcore ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.ftvgirls.com/ FTV - First Time Videos]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Pictures ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Free pictures ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Free Videos ==&lt;/div&gt;</summary>
		<author><name>Afowiki</name></author>
	</entry>
	<entry>
		<id>http://www.wiki.adultfunonline.info/index.php?title=Adult_websites_by_category&amp;diff=7</id>
		<title>Adult websites by category</title>
		<link rel="alternate" type="text/html" href="http://www.wiki.adultfunonline.info/index.php?title=Adult_websites_by_category&amp;diff=7"/>
		<updated>2011-06-20T06:15:56Z</updated>

		<summary type="html">&lt;p&gt;Afowiki: Created page with &amp;quot;== Softcore ==  * [http://www.ftvgirls.com/ FTV - First Time Videos]&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Softcore ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.ftvgirls.com/ FTV - First Time Videos]&lt;/div&gt;</summary>
		<author><name>Afowiki</name></author>
	</entry>
	<entry>
		<id>http://www.wiki.adultfunonline.info/index.php?title=Main_Page&amp;diff=6</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="http://www.wiki.adultfunonline.info/index.php?title=Main_Page&amp;diff=6"/>
		<updated>2011-06-20T06:14:24Z</updated>

		<summary type="html">&lt;p&gt;Afowiki: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''Welcome to the AdultFunOnline Wiki!'''&lt;br /&gt;
&lt;br /&gt;
Most of content is being uploaded. '''Remember that you can add and edit content in this wiki! Please do so!'''&lt;br /&gt;
&lt;br /&gt;
== Contents ==&lt;br /&gt;
&lt;br /&gt;
* [[Flash Games]]&lt;br /&gt;
* [[Game Walkthroughs]]&lt;br /&gt;
* [[Flash Games websites links]]&lt;br /&gt;
* [[You-Tube -like free video websites]]&lt;br /&gt;
* [[Picture of the day websites]]&lt;br /&gt;
* [[Other adult encyclopedias]]&lt;br /&gt;
* [[How to use Peer-to-Peer Networks Portal]]&lt;br /&gt;
* [[How to set up uTorrent]]&lt;br /&gt;
* [[Torrent websites, and how to search]]&lt;br /&gt;
* [[LimeWire]]&lt;br /&gt;
* [[Celebrities adult content]]&lt;br /&gt;
* [[Full-length DVD / movie websites]]&lt;br /&gt;
* [[Mainstream movies]]&lt;br /&gt;
* [[TV Shows]]&lt;br /&gt;
* [[Free websites]]&lt;br /&gt;
* [[Adult websites by category]] (no hardcore)&lt;/div&gt;</summary>
		<author><name>Afowiki</name></author>
	</entry>
	<entry>
		<id>http://www.wiki.adultfunonline.info/index.php?title=Mainstream_movies&amp;diff=5</id>
		<title>Mainstream movies</title>
		<link rel="alternate" type="text/html" href="http://www.wiki.adultfunonline.info/index.php?title=Mainstream_movies&amp;diff=5"/>
		<updated>2011-06-20T06:02:34Z</updated>

		<summary type="html">&lt;p&gt;Afowiki: Created page with &amp;quot;* Surrender Cinema&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;* [[Surrender Cinema]]&lt;/div&gt;</summary>
		<author><name>Afowiki</name></author>
	</entry>
	<entry>
		<id>http://www.wiki.adultfunonline.info/index.php?title=Main_Page&amp;diff=4</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="http://www.wiki.adultfunonline.info/index.php?title=Main_Page&amp;diff=4"/>
		<updated>2011-06-20T06:02:12Z</updated>

		<summary type="html">&lt;p&gt;Afowiki: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''Welcome to the AdultFunOnline Wiki!'''&lt;br /&gt;
&lt;br /&gt;
Most of content is being uploaded. '''Remember that you can add and edit content in this wiki! Please do so!'''&lt;br /&gt;
&lt;br /&gt;
== Contents ==&lt;br /&gt;
* [[Flash Games websites links]]&lt;br /&gt;
* [[You-Tube -like free video websites]]&lt;br /&gt;
* [[Picture of the day websites]]&lt;br /&gt;
* [[Other adult encyclopedias]]&lt;br /&gt;
* [[How to use Peer-to-Peer Networks Portal]]&lt;br /&gt;
* [[How to set up uTorrent]]&lt;br /&gt;
* [[Torrent websites, and how to search]]&lt;br /&gt;
* [[LimeWire]]&lt;br /&gt;
* [[Celebrities adult content]]&lt;br /&gt;
* [[Full-length DVD / movie websites]]&lt;br /&gt;
* [[Mainstream movies]]&lt;br /&gt;
* [[TV Shows]]&lt;/div&gt;</summary>
		<author><name>Afowiki</name></author>
	</entry>
	<entry>
		<id>http://www.wiki.adultfunonline.info/index.php?title=Main_Page&amp;diff=3</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="http://www.wiki.adultfunonline.info/index.php?title=Main_Page&amp;diff=3"/>
		<updated>2011-06-20T05:59:05Z</updated>

		<summary type="html">&lt;p&gt;Afowiki: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''Welcome to the AdultFunOnline Wiki!'''&lt;br /&gt;
&lt;br /&gt;
Most of content is being uploaded. '''Remember that you can add and edit content in this wiki! Please do so!'''&lt;br /&gt;
&lt;br /&gt;
== Contents ==&lt;br /&gt;
* [[Flash Games websites links]]&lt;br /&gt;
* [[You-Tube -like free video websites]]&lt;br /&gt;
* [[Picture of the day websites]]&lt;br /&gt;
* [[Other adult encyclopedias]]&lt;br /&gt;
* [[How to use Peer-to-Peer Networks Portal]]&lt;br /&gt;
* [[How to set up uTorrent]]&lt;br /&gt;
* [[Torrent websites, and how to search]]&lt;br /&gt;
* [[LimeWire]]&lt;/div&gt;</summary>
		<author><name>Afowiki</name></author>
	</entry>
	<entry>
		<id>http://www.wiki.adultfunonline.info/index.php?title=Main_Page&amp;diff=2</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="http://www.wiki.adultfunonline.info/index.php?title=Main_Page&amp;diff=2"/>
		<updated>2011-06-20T05:55:42Z</updated>

		<summary type="html">&lt;p&gt;Afowiki: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''Welcome to the AdultFunOnline Wiki!'''&lt;br /&gt;
&lt;br /&gt;
Most of content is being uploaded. '''Remember that you can add and edit content in this wiki! Please do so!'''&lt;br /&gt;
&lt;br /&gt;
== Contents ==&lt;br /&gt;
* A&lt;br /&gt;
* B&lt;br /&gt;
* C&lt;/div&gt;</summary>
		<author><name>Afowiki</name></author>
	</entry>
</feed>