<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.secondlife.com/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Sven+Pertelson</id>
	<title>Second Life Wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.secondlife.com/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Sven+Pertelson"/>
	<link rel="alternate" type="text/html" href="https://wiki.secondlife.com/wiki/Special:Contributions/Sven_Pertelson"/>
	<updated>2026-06-26T15:45:43Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.42.1</generator>
	<entry>
		<id>https://wiki.secondlife.com/w/index.php?title=OZLAND&amp;diff=1155807</id>
		<title>OZLAND</title>
		<link rel="alternate" type="text/html" href="https://wiki.secondlife.com/w/index.php?title=OZLAND&amp;diff=1155807"/>
		<updated>2011-10-15T13:15:14Z</updated>

		<summary type="html">&lt;p&gt;Sven Pertelson: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Ozland is an [[Estate#Estate|estate]] of 5 private [[Estate#Region|regions]] in Second Life.&lt;br /&gt;
&lt;br /&gt;
Please come and visit [http://slurl.com/secondlife/OZLAND/96/92/23 OZLAND]&lt;br /&gt;
&lt;br /&gt;
For more information visit the following websites;&lt;br /&gt;
&lt;br /&gt;
[http://ozlandish.blogspot.com/ OZLANDISH News] for news about OZLAND and events there.&lt;br /&gt;
&lt;br /&gt;
[http://ozlandre.blogspot.com/ OZLAND Real Estate] for details of land sales and rentals.&lt;br /&gt;
&lt;br /&gt;
[http://ozlandart.blogspot.com/ OZLANDISH Art] for details our exhibition - changes monthly&lt;br /&gt;
&lt;br /&gt;
Contact Llola Lane or Sven Pertelson in world for more information&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Private_Estates]]&lt;/div&gt;</summary>
		<author><name>Sven Pertelson</name></author>
	</entry>
	<entry>
		<id>https://wiki.secondlife.com/w/index.php?title=LlSetKeyframedMotion&amp;diff=1155452</id>
		<title>LlSetKeyframedMotion</title>
		<link rel="alternate" type="text/html" href="https://wiki.secondlife.com/w/index.php?title=LlSetKeyframedMotion&amp;diff=1155452"/>
		<updated>2011-10-04T18:05:56Z</updated>

		<summary type="html">&lt;p&gt;Sven Pertelson: Corrected  typo should have been llEuler2Rot&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{LSL_Function&lt;br /&gt;
|func=llSetKeyframedAnimation&lt;br /&gt;
|inject-1={{LSL_Generic/proposal|text=It has not yet been scheduled for development.}}&lt;br /&gt;
|func_id=?&lt;br /&gt;
|func_desc=Specify a list of times, positions, and orientations to be followed by an object. The object will be smoothly moved between keyframes by the simulator. Collisions with other nonphysical or keyframed objects will be ignored (no script events will fire and collision processing will not occur). Collisions with physical objects will be computed and reported, but the keyframed object will be unaffected by those collisions. (The physical object will be affected, however.)&lt;br /&gt;
|func_sleep&lt;br /&gt;
|func_energy&lt;br /&gt;
&lt;br /&gt;
|func_footnote&lt;br /&gt;
|p1_type=list|p1_name=keyframes|p1_hover=Strided keyframe list of the form: [vector position, rotation orientation, float time]&lt;br /&gt;
|p1_desc=Strided keyframe list of the form:&lt;br /&gt;
* &#039;&#039;vector&#039;&#039; position (optional via KFA_TRANSLATION and KFA_DATA)&lt;br /&gt;
* &#039;&#039;rotation&#039;&#039; orientation (optional via KFA_ROTATION and KFA_DATA)&lt;br /&gt;
* &#039;&#039;float&#039;&#039; time&lt;br /&gt;
&lt;br /&gt;
Each keyframe is interpreted relative to the previous transform of the object. For example, consider the following list of keyframes: [&amp;lt;0, 0, 10&amp;gt;, [[ZERO_ROTATION]], 5, &amp;lt;0, 0, 0&amp;gt;, [[ZERO_ROTATION]], 5, &amp;lt;0, 0, -10&amp;gt;, [[ZERO_ROTATION]], 5]. This would cause the object to move up 10m over the course of 5s. It would then remain at the location for 5s before moving down 10m over the course of another 5s.&lt;br /&gt;
Time values must be greater than 0.1s.&lt;br /&gt;
Linear and angular velocities will be clamped to limits set by the simulator (values TBD).&lt;br /&gt;
An empty list will terminate any keyframed animation currently playing. &lt;br /&gt;
&lt;br /&gt;
|p2_type=list|p2_name=options|p2_desc=modifiers and future options &lt;br /&gt;
&lt;br /&gt;
|spec=&lt;br /&gt;
The following flags will be supported within the &#039;&#039;options&#039;&#039; list:&lt;br /&gt;
*KFA_MODE followed by one of: KFA_LOOP, KFA_REVERSE, KFA_FORWARD, or KFA_PING_PONG will specify the playback mode. Defaults to KFA_FORWARD. Must be specified when the keyframe list is provided.&lt;br /&gt;
*KFA_DATA followed by a bitwise combination of: KFA_TRANSLATION and KFA_ROTATION. By default both rotations and translations must be provided. If you specify one or the other, you should only include translations or rotations in your keyframe list. Must be specified at the time the keyframe list is provided.&lt;br /&gt;
*KFA_COMMAND followed by one of: KFA_CMD_STOP, KFA_CMD_PLAY, KFA_CMD_PAUSE, KFA_CMD_MODE. STOP will pause the animation AND reset it to the beginning. PAUSE will pause the animation without resetting. PLAY will resume a paused or stopped animation. &lt;br /&gt;
**KFA_CMD_MODE should be followed by one of the KFA_MODE options above and can be used to modify the playback format. The animation must be in a stopped or paused state to use this parameter.&lt;br /&gt;
Note that if a KFA_COMMAND is provided in the options list, it must be the first option and only one may be used per call.&lt;br /&gt;
&lt;br /&gt;
Inter-region animations may be supported depending on development complexity.&lt;br /&gt;
&lt;br /&gt;
|caveats=&lt;br /&gt;
*This function can only be called on NON-physical objects. In the future it could be extended to support physical objects, but this is more complicated as collisions could prevent the object from reaching its goal positions on time.&lt;br /&gt;
*This function can only be called on the root prim of a linkset.&lt;br /&gt;
*This function requires the linkset to use the Prim Equivalency system. However, it keyframed objects will not receive the dynamics penalty and can have a physics {{HoverText|PE|Prim Equivalency}} of up to 64.&lt;br /&gt;
*There are a few bugs in the avatar animation system that may cause strange looking animations to play when standing on a moving platform (e.g., walking in place, feet-at-pelvis). We hope to fix these in the future, but doing so is out of scope for this feature.&lt;br /&gt;
&lt;br /&gt;
|examples=&lt;br /&gt;
&amp;lt;code&amp;gt;llSetKeyframedAnimation([&amp;lt;0,0,10&amp;gt;, 5, &amp;lt;0,0,-10&amp;gt;, 5], [KFA_DATA, KFA_TRANSLATION, KFA_MODE, KFA_PING_PONG]);&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;llSetKeyframedAnimation([&amp;lt;0,0,10&amp;gt;, llEuler2Rot(&amp;lt;90, 45, 180&amp;gt; * DEG_TO_RAD), 5, &amp;lt;0,0,-10&amp;gt;, llEuler2Rot(&amp;lt;270, 225, 360&amp;gt; * DEG_TO_RAD), 5], [KFA_MODE, KFA_REVERSE]);&amp;lt;/code&amp;gt;&lt;br /&gt;
|notes=&lt;br /&gt;
Potential Use Cases:&lt;br /&gt;
* Elevators&lt;br /&gt;
* Moving platforms&lt;br /&gt;
* Trains/Fixed-Track Vehicles&lt;br /&gt;
* Moving doors/walls/gates&lt;br /&gt;
* Windmills and other machines&lt;br /&gt;
&lt;br /&gt;
|cat1=LSL Physics}}&lt;/div&gt;</summary>
		<author><name>Sven Pertelson</name></author>
	</entry>
	<entry>
		<id>https://wiki.secondlife.com/w/index.php?title=Private_Estate_Management_Companies&amp;diff=968793</id>
		<title>Private Estate Management Companies</title>
		<link rel="alternate" type="text/html" href="https://wiki.secondlife.com/w/index.php?title=Private_Estate_Management_Companies&amp;diff=968793"/>
		<updated>2010-07-19T15:42:09Z</updated>

		<summary type="html">&lt;p&gt;Sven Pertelson: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;There are many companies, large and small, that rent/sell private estate land in Second Life.  They range from individual residents who rent single parcels to major holding companies with dozens of privately owned sims.  &lt;br /&gt;
There are pros and cons between renting land from Linden Labs and private owners, and then even between renting from single parcel owners and large companies.&lt;br /&gt;
&lt;br /&gt;
Below is a list of some of the many privately owned companies that offer Private Estate sales and rentals.  &lt;br /&gt;
It should be noted that none of these companies represent Linden Labs directly or are officially endorsed by them in any way.  &lt;br /&gt;
It is in fact recommended that one should always review and research any company before engaging in any financial transaction; hence, these companies are listed here for the convenience of visitors to this page to begin their own research. &lt;br /&gt;
&lt;br /&gt;
[http://s0c-enterprises.com/ *~s0c~* Enterprises]&lt;br /&gt;
&lt;br /&gt;
[http://Landstore.virtuateq.com Virtuateq Estates]&lt;br /&gt;
&lt;br /&gt;
[http://www.exoticislandinc.com/ Exotic Islands Real Estate] - Simply the best...watch our Video &lt;br /&gt;
&lt;br /&gt;
[http://slurl.com/secondlife/MLCC/57/37/23/ Regent Estates]&lt;br /&gt;
&lt;br /&gt;
[http://www.dalliez.com/ dAlliez Estates] &lt;br /&gt;
&lt;br /&gt;
[http://www.vianaislands.net/ Viana Islands Estates] &lt;br /&gt;
&lt;br /&gt;
[http://slurl.com/secondlife/Spice%20Bay/94/132/672/ Spice Islands]&lt;br /&gt;
&lt;br /&gt;
[http://GSEstates.org/ GS Estates]&lt;br /&gt;
&lt;br /&gt;
[http://www.lionheartsl.com/ Lionheart Virtual Real Estate]&lt;br /&gt;
&lt;br /&gt;
[http://www.fruit-islands.com/land-estate.html Fruit Islands Estate]&lt;br /&gt;
We offer homestead, full sims and islands in a 100 sim connected sailing area&lt;br /&gt;
&lt;br /&gt;
[http://www.solacebeach.com/ Solace Beach Estates]&lt;br /&gt;
&lt;br /&gt;
[http://www.countburks.com/ Count Burks Estates]&lt;br /&gt;
&lt;br /&gt;
[http://www.bell-estate.com/ Bell Estate]&lt;br /&gt;
&lt;br /&gt;
[http://www.dreamseekerestates.com/ Dream Seeker Estates]&lt;br /&gt;
&lt;br /&gt;
[http://www.mainlandsl.com/ MainlandSL]&lt;br /&gt;
&lt;br /&gt;
[http://azureislands.com/ Azure Islands]&lt;br /&gt;
&lt;br /&gt;
[http://maps.secondlife.com/secondlife/Radio/116/141/22/ RGF Estates Inc.]&lt;br /&gt;
&lt;br /&gt;
[http://maps.secondlife.com/secondlife/Careers/238/148/794/ West Indies Resorts&amp;amp;Lands Inc.]&lt;br /&gt;
&lt;br /&gt;
[http://conchcove.blogs.metashop.me  Conch Cove Community]&lt;br /&gt;
&lt;br /&gt;
[http://www.asrux.com/ AsRux]&lt;br /&gt;
&lt;br /&gt;
[http://dreamland.anshechung.com/ Dreamland]&lt;br /&gt;
&lt;br /&gt;
[http://slurl.com/secondlife/Wild%20Islands/83/193/23/ Wild Islands Estates]&lt;br /&gt;
&lt;br /&gt;
[https://www.xstreetsl.com/modules.php?name=Real_Estate XStreetSL]&lt;br /&gt;
&lt;br /&gt;
[http://www.fairchang.com/ FairChang Islands]&lt;br /&gt;
&lt;br /&gt;
[http://www.innovatiapark.com/ Innovatia Park]&lt;br /&gt;
&lt;br /&gt;
[http://www.rentmainland.com/ RentMainland]&lt;br /&gt;
&lt;br /&gt;
[http://www.coral-estates.com/ Coral Estates Land Rentals]&lt;br /&gt;
&lt;br /&gt;
[http://ozlandre.blogspot.com/ OZLAND Estate] The best of both worlds.&lt;br /&gt;
&lt;br /&gt;
[http://slurl.com/secondlife/State%20of%20Mind/14/79/22 Mindless Islands Rentals]&lt;br /&gt;
&lt;br /&gt;
[http://maps.secondlife.com/secondlife/Insula%20Inferi/13/209/27 Insula Inferi Rentals]&lt;br /&gt;
&lt;br /&gt;
Back to [[Land]]&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;[[Land choices]]&#039;&#039;&#039;&lt;br /&gt;
* &#039;&#039;&#039;[[Land Buying FAQ]]&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
[[Category:Private Estates]]&lt;/div&gt;</summary>
		<author><name>Sven Pertelson</name></author>
	</entry>
	<entry>
		<id>https://wiki.secondlife.com/w/index.php?title=OZLAND&amp;diff=967812</id>
		<title>OZLAND</title>
		<link rel="alternate" type="text/html" href="https://wiki.secondlife.com/w/index.php?title=OZLAND&amp;diff=967812"/>
		<updated>2010-07-16T14:18:06Z</updated>

		<summary type="html">&lt;p&gt;Sven Pertelson: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Ozland is an [[Estate#Estate|estate]] of 7 private [[Estate#Region|regions]] in Second Life.&lt;br /&gt;
&lt;br /&gt;
Please come and visit [http://slurl.com/secondlife/OZLAND/96/92/23 OZLAND]&lt;br /&gt;
&lt;br /&gt;
For more information visit the following websites;&lt;br /&gt;
&lt;br /&gt;
[http://ozlandish.blogspot.com/ OZLANDISH News] for news about OZLAND and events there.&lt;br /&gt;
&lt;br /&gt;
[http://ozlandre.blogspot.com/ OZLAND Real Estate] for details of land sales and rentals.&lt;br /&gt;
&lt;br /&gt;
[http://ozlandart.blogspot.com/ OZLANDISH Art] for details our exhibition - changes monthly&lt;br /&gt;
&lt;br /&gt;
Contact Llola Lane or Sven Pertelson in world for more information&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Private_Estates]]&lt;/div&gt;</summary>
		<author><name>Sven Pertelson</name></author>
	</entry>
	<entry>
		<id>https://wiki.secondlife.com/w/index.php?title=OZLAND&amp;diff=967802</id>
		<title>OZLAND</title>
		<link rel="alternate" type="text/html" href="https://wiki.secondlife.com/w/index.php?title=OZLAND&amp;diff=967802"/>
		<updated>2010-07-16T14:16:40Z</updated>

		<summary type="html">&lt;p&gt;Sven Pertelson: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Ozland is an [[Estate#Estate|estate]] of 7 private regions in Second Life.&lt;br /&gt;
&lt;br /&gt;
Please come and visit [http://slurl.com/secondlife/OZLAND/96/92/23 OZLAND]&lt;br /&gt;
&lt;br /&gt;
For more information visit the following websites;&lt;br /&gt;
&lt;br /&gt;
[http://ozlandish.blogspot.com/ OZLANDISH News] for news about OZLAND and events there.&lt;br /&gt;
&lt;br /&gt;
[http://ozlandre.blogspot.com/ OZLAND Real Estate] for details of land sales and rentals.&lt;br /&gt;
&lt;br /&gt;
[http://ozlandart.blogspot.com/ OZLANDISH Art] for details our exhibition - changes monthly&lt;br /&gt;
&lt;br /&gt;
Contact Llola Lane or Sven Pertelson in world for more information&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Private_Estates]]&lt;/div&gt;</summary>
		<author><name>Sven Pertelson</name></author>
	</entry>
	<entry>
		<id>https://wiki.secondlife.com/w/index.php?title=OZLAND&amp;diff=967792</id>
		<title>OZLAND</title>
		<link rel="alternate" type="text/html" href="https://wiki.secondlife.com/w/index.php?title=OZLAND&amp;diff=967792"/>
		<updated>2010-07-16T14:12:55Z</updated>

		<summary type="html">&lt;p&gt;Sven Pertelson: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Ozland is a group of 7 private estate sims in Second Life.&lt;br /&gt;
&lt;br /&gt;
Please come and visit [http://slurl.com/secondlife/OZLAND/96/92/23 OZLAND]&lt;br /&gt;
&lt;br /&gt;
For more information visit the following websites;&lt;br /&gt;
&lt;br /&gt;
[http://ozlandish.blogspot.com/ OZLANDISH News] for news about OZLAND and events there.&lt;br /&gt;
&lt;br /&gt;
[http://ozlandre.blogspot.com/ OZLAND Real Estate] for details of land sales and rentals.&lt;br /&gt;
&lt;br /&gt;
[http://ozlandart.blogspot.com/ OZLANDISH Art] for details our exhibition - changes monthly&lt;br /&gt;
&lt;br /&gt;
Contact Llola Lane or Sven Pertelson in world for more information&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Private_Estates]]&lt;/div&gt;</summary>
		<author><name>Sven Pertelson</name></author>
	</entry>
	<entry>
		<id>https://wiki.secondlife.com/w/index.php?title=OZLAND&amp;diff=967782</id>
		<title>OZLAND</title>
		<link rel="alternate" type="text/html" href="https://wiki.secondlife.com/w/index.php?title=OZLAND&amp;diff=967782"/>
		<updated>2010-07-16T13:59:07Z</updated>

		<summary type="html">&lt;p&gt;Sven Pertelson: Created page with &amp;#039;Ozland is a group of 7 private estate sims in Second Life.  Please come and visit [http://slurl.com/secondlife/OZLAND/96/92/23 OZLAND]  For more information visit the following w...&amp;#039;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Ozland is a group of 7 private estate sims in Second Life.&lt;br /&gt;
&lt;br /&gt;
Please come and visit [http://slurl.com/secondlife/OZLAND/96/92/23 OZLAND]&lt;br /&gt;
&lt;br /&gt;
For more information visit the following websites;&lt;br /&gt;
&lt;br /&gt;
[http://ozlandish.blogspot.com/ OZLANDISH News] for news about OZLAND and events there.&lt;br /&gt;
&lt;br /&gt;
[http://ozlandre.blogspot.com/ OZLAND Real Estate] for details of land sales and rentals.&lt;br /&gt;
&lt;br /&gt;
[http://ozlandart.blogspot.com/ OZLANDISH Art] for details our exhibition - changes monthly&lt;br /&gt;
&lt;br /&gt;
Contact Llola Lane or Sven Pertelson in world for more information&lt;/div&gt;</summary>
		<author><name>Sven Pertelson</name></author>
	</entry>
	<entry>
		<id>https://wiki.secondlife.com/w/index.php?title=Private_Estate_Management_Companies&amp;diff=967772</id>
		<title>Private Estate Management Companies</title>
		<link rel="alternate" type="text/html" href="https://wiki.secondlife.com/w/index.php?title=Private_Estate_Management_Companies&amp;diff=967772"/>
		<updated>2010-07-16T13:49:06Z</updated>

		<summary type="html">&lt;p&gt;Sven Pertelson: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;There are many companies, large and small, that rent/sell private estate land in Second Life.  They range from individual residents who rent single parcels to major holding companies with dozens of privately owned sims.  &lt;br /&gt;
There are pros and cons between renting land from Linden Labs and private owners, and then even between renting from single parcel owners and large companies.&lt;br /&gt;
&lt;br /&gt;
Below is a list of some of the many privately owned companies that offer Private Estate sales and rentals.  &lt;br /&gt;
It should be noted that none of these companies represent Linden Labs directly or are officially endorsed by them in any way.  &lt;br /&gt;
It is in fact recommended that one should always review and research any company before engaging in any financial transaction; hence, these companies are listed here for the convenience of visitors to this page to begin their own research. &lt;br /&gt;
&lt;br /&gt;
[http://www.vianaislands.net/ Viana Islands Estates] &lt;br /&gt;
&lt;br /&gt;
[http://slurl.com/secondlife/Spice%20Bay/94/132/672/ Spice Islands]&lt;br /&gt;
&lt;br /&gt;
[http://GSEstates.org/ GS Estates]&lt;br /&gt;
&lt;br /&gt;
[http://www.lionheartsl.com/ Lionheart Virtual Real Estate]&lt;br /&gt;
&lt;br /&gt;
[http://www.fruit-islands.com/land-estate.html Fruit Islands Sailing Estate]&lt;br /&gt;
&lt;br /&gt;
[http://www.solacebeach.com/ Solace Beach Estates]&lt;br /&gt;
&lt;br /&gt;
[http://www.countburks.com/ Count Burks Estates]&lt;br /&gt;
&lt;br /&gt;
[http://www.bell-estate.com/ Bell Estate]&lt;br /&gt;
&lt;br /&gt;
[http://www.exoticislandinc.com/ Exotic Islands Real Estate]&lt;br /&gt;
&lt;br /&gt;
[http://www.dreamseekerestates.com/ Dream Seeker Estates]&lt;br /&gt;
&lt;br /&gt;
[http://www.mainlandsl.com/ MainlandSL]&lt;br /&gt;
&lt;br /&gt;
[http://azureislands.com/ Azure Islands]&lt;br /&gt;
&lt;br /&gt;
[http://maps.secondlife.com/secondlife/Radio/116/141/22/ RGF Estates Inc.]&lt;br /&gt;
&lt;br /&gt;
[http://maps.secondlife.com/secondlife/Careers/238/148/794/ West Indies Resorts&amp;amp;Lands Inc.]&lt;br /&gt;
&lt;br /&gt;
[http://conchcove.blogs.metashop.me  Conch Cove Community]&lt;br /&gt;
&lt;br /&gt;
[http://www.asrux.com/ AsRux]&lt;br /&gt;
&lt;br /&gt;
[http://dreamland.anshechung.com/ Dreamland]&lt;br /&gt;
&lt;br /&gt;
[http://slurl.com/secondlife/Wild%20Islands/83/193/23/ Wild Islands Estates]&lt;br /&gt;
&lt;br /&gt;
[https://www.xstreetsl.com/modules.php?name=Real_Estate XStreetSL]&lt;br /&gt;
&lt;br /&gt;
[http://www.fairchang.com/ FairChang Islands]&lt;br /&gt;
&lt;br /&gt;
[http://www.innovatiapark.com/ Innovatia Park]&lt;br /&gt;
&lt;br /&gt;
[http://www.rentmainland.com/ RentMainland]&lt;br /&gt;
&lt;br /&gt;
[http://www.coral-estates.com/ Coral Estates Land Rentals]&lt;br /&gt;
&lt;br /&gt;
[http://ozlandre.blogspot.com/ OZLAND Estate]&lt;br /&gt;
&lt;br /&gt;
Back to [[Land]]&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;[[Land choices]]&#039;&#039;&#039;&lt;br /&gt;
* &#039;&#039;&#039;[[Land Buying FAQ]]&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
[[Category:Private Estates]]&lt;/div&gt;</summary>
		<author><name>Sven Pertelson</name></author>
	</entry>
	<entry>
		<id>https://wiki.secondlife.com/w/index.php?title=User:Sven_Pertelson&amp;diff=922352</id>
		<title>User:Sven Pertelson</title>
		<link rel="alternate" type="text/html" href="https://wiki.secondlife.com/w/index.php?title=User:Sven_Pertelson&amp;diff=922352"/>
		<updated>2010-05-21T18:18:16Z</updated>

		<summary type="html">&lt;p&gt;Sven Pertelson: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Jira Reporter}}&lt;br /&gt;
&lt;br /&gt;
[http://ozlandish.blogspot.com OZLANDISH News]&lt;/div&gt;</summary>
		<author><name>Sven Pertelson</name></author>
	</entry>
	<entry>
		<id>https://wiki.secondlife.com/w/index.php?title=User:Sven_Pertelson&amp;diff=922342</id>
		<title>User:Sven Pertelson</title>
		<link rel="alternate" type="text/html" href="https://wiki.secondlife.com/w/index.php?title=User:Sven_Pertelson&amp;diff=922342"/>
		<updated>2010-05-21T18:13:55Z</updated>

		<summary type="html">&lt;p&gt;Sven Pertelson: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Jira Reporter}}&lt;br /&gt;
&lt;br /&gt;
[http://ozlandish.blogspot.com]&lt;/div&gt;</summary>
		<author><name>Sven Pertelson</name></author>
	</entry>
	<entry>
		<id>https://wiki.secondlife.com/w/index.php?title=User:Sven_Pertelson&amp;diff=922332</id>
		<title>User:Sven Pertelson</title>
		<link rel="alternate" type="text/html" href="https://wiki.secondlife.com/w/index.php?title=User:Sven_Pertelson&amp;diff=922332"/>
		<updated>2010-05-21T18:12:13Z</updated>

		<summary type="html">&lt;p&gt;Sven Pertelson: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
{{Jira Reporter}}&lt;/div&gt;</summary>
		<author><name>Sven Pertelson</name></author>
	</entry>
</feed>