<?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=Carigorp+Matzerath</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=Carigorp+Matzerath"/>
	<link rel="alternate" type="text/html" href="https://wiki.secondlife.com/wiki/Special:Contributions/Carigorp_Matzerath"/>
	<updated>2026-07-28T16:50:08Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.42.1</generator>
	<entry>
		<id>https://wiki.secondlife.com/w/index.php?title=Talk:LlUnSit&amp;diff=13229</id>
		<title>Talk:LlUnSit</title>
		<link rel="alternate" type="text/html" href="https://wiki.secondlife.com/w/index.php?title=Talk:LlUnSit&amp;diff=13229"/>
		<updated>2007-02-26T19:14:24Z</updated>

		<summary type="html">&lt;p&gt;Carigorp Matzerath: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Not having the conditionals indented is confusing to new scripters. [[User:Strife Onizuka|Strife Onizuka]] 00:47, 26 February 2007 (PST)&lt;br /&gt;
&lt;br /&gt;
I am a &#039;&#039;somewhat&#039;&#039; novice scripter and I was wondering if there is any particular reason for adding the key rather just leaving it to identify llAvatarOnSitTarget the way it was before you edited it. --[[User:Carigorp Matzerath|Carigorp Matzerath]] 11:14, 26 February 2007 (PST)&lt;/div&gt;</summary>
		<author><name>Carigorp Matzerath</name></author>
	</entry>
	<entry>
		<id>https://wiki.secondlife.com/w/index.php?title=LlUnSit&amp;diff=13195</id>
		<title>LlUnSit</title>
		<link rel="alternate" type="text/html" href="https://wiki.secondlife.com/w/index.php?title=LlUnSit&amp;diff=13195"/>
		<updated>2007-02-26T08:43:16Z</updated>

		<summary type="html">&lt;p&gt;Carigorp Matzerath: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{LSL_Function&lt;br /&gt;
|func_id=220|func_sleep=0.0|func_energy=10.0&lt;br /&gt;
|sort=UnSit|func=llUnSit&lt;br /&gt;
|p1_type=key|p1_name=id&lt;br /&gt;
|func_footnote&lt;br /&gt;
|func_desc=If agent identified by &#039;&#039;&#039;id&#039;&#039;&#039; is sitting on the object the script is attached to or is over land owned by the objects owner, the agent is forced to stand up&lt;br /&gt;
|return_text&lt;br /&gt;
|spec&lt;br /&gt;
|caveats&lt;br /&gt;
|constants&lt;br /&gt;
|examples=&lt;br /&gt;
&#039;&#039;&#039;Unsit on Sit&#039;&#039;&#039;&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
default&lt;br /&gt;
{&lt;br /&gt;
    state_entry()&lt;br /&gt;
    {&lt;br /&gt;
        llSitTarget(&amp;lt;0,0,0.1&amp;gt;,ZERO_ROTATION); //needed for llAvatarOnSitTarget to work. Vector values must not all be set to 0.&lt;br /&gt;
    }&lt;br /&gt;
    changed(integer change) //event changed&lt;br /&gt;
    {&lt;br /&gt;
        if (change &amp;amp; CHANGED_LINK) //event changed and it has something to do with linking or avatar sitting&lt;br /&gt;
        if (llAvatarOnSitTarget()) //the changed event is an avatar sitting&lt;br /&gt;
        llUnSit(llAvatarOnSitTarget()); //unsit the avatar on the sit target&lt;br /&gt;
    }&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
|helpers&lt;br /&gt;
|also_functions&lt;br /&gt;
|also_events&lt;br /&gt;
|also_articles&lt;br /&gt;
|also_tests&lt;br /&gt;
|notes&lt;br /&gt;
|permission&lt;br /&gt;
|negative_index&lt;br /&gt;
|cat1=Land&lt;br /&gt;
|cat2=Sit&lt;br /&gt;
|cat3&lt;br /&gt;
|cat4&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>Carigorp Matzerath</name></author>
	</entry>
	<entry>
		<id>https://wiki.secondlife.com/w/index.php?title=LlSitTarget&amp;diff=13193</id>
		<title>LlSitTarget</title>
		<link rel="alternate" type="text/html" href="https://wiki.secondlife.com/w/index.php?title=LlSitTarget&amp;diff=13193"/>
		<updated>2007-02-26T08:37:59Z</updated>

		<summary type="html">&lt;p&gt;Carigorp Matzerath: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{LSL_Function&lt;br /&gt;
|func_id=238|sort=SitTarget|func_sleep=0.0|func_energy=10.0&lt;br /&gt;
|sort=SitTarget&lt;br /&gt;
|func=llSitTarget&lt;br /&gt;
|p1_type=vector|p1_name=offset|p1_desc&lt;br /&gt;
|p2_type=rotation|p2_name=rot|p2_desc&lt;br /&gt;
|func_footnote&lt;br /&gt;
|func_desc=Set the sit location for this object (if &#039;&#039;&#039;offset&#039;&#039;&#039; == {{LSLG|ZERO_VECTOR|&amp;lt;0.0, 0.0, 0.0&amp;gt;}} clear it)&lt;br /&gt;
|return_text&lt;br /&gt;
|spec&lt;br /&gt;
|caveats&lt;br /&gt;
|constants&lt;br /&gt;
|examples=&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
default&lt;br /&gt;
{&lt;br /&gt;
    state_entry()&lt;br /&gt;
    {&lt;br /&gt;
        llSitTarget(&amp;lt;0,0,0.1&amp;gt;,ZERO_ROTATION); //Vector values must not all be set to 0 for effect to take place.&lt;br /&gt;
    }&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
|helpers&lt;br /&gt;
|also_functions=*{{LSLG|llSetSitText}}&lt;br /&gt;
*{{LSLG|llAvatarOnSitTarget}}&lt;br /&gt;
|also_events=*{{LSLG|changed}}&lt;br /&gt;
|also_articles&lt;br /&gt;
|notes&lt;br /&gt;
|permission&lt;br /&gt;
|negative_index&lt;br /&gt;
|cat1=Sit&lt;br /&gt;
|cat2&lt;br /&gt;
|cat3&lt;br /&gt;
|cat4&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>Carigorp Matzerath</name></author>
	</entry>
	<entry>
		<id>https://wiki.secondlife.com/w/index.php?title=User:Carigorp_Matzerath&amp;diff=13182</id>
		<title>User:Carigorp Matzerath</title>
		<link rel="alternate" type="text/html" href="https://wiki.secondlife.com/w/index.php?title=User:Carigorp_Matzerath&amp;diff=13182"/>
		<updated>2007-02-26T08:18:38Z</updated>

		<summary type="html">&lt;p&gt;Carigorp Matzerath: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==About Me==&lt;br /&gt;
In Second Life, I am part of the Justice League Unlimited and the Green Lantern Core. Both are anti griefing groups dedicated to help the innocent of SL. Feel free to contact me in world for help. Also, if you have any other questions or concerns for me, feel free to send me an IM or leave a comment on my talk page.&lt;br /&gt;
==My Links==&lt;br /&gt;
*[[User_talk:Carigorp Matzerath|My Talk Page]]&lt;br /&gt;
*[[User:Carigorp Matzerath/Sandbox|My Sandbox]]&lt;br /&gt;
*[http://slprofiles.com/slprofiles.asp?id=5376 My SL Profile]&lt;br /&gt;
*[http://iceonfireband.tripod.com/ My Band&#039;s Website]&lt;br /&gt;
*[http://online.recoveryversion.org/index2.asp Online Recovery Bible]&lt;br /&gt;
*[http://greenlantern.henson.cc/phpBB2/index.php Green Lantern Forums]&lt;/div&gt;</summary>
		<author><name>Carigorp Matzerath</name></author>
	</entry>
	<entry>
		<id>https://wiki.secondlife.com/w/index.php?title=LlForceMouselook&amp;diff=13179</id>
		<title>LlForceMouselook</title>
		<link rel="alternate" type="text/html" href="https://wiki.secondlife.com/w/index.php?title=LlForceMouselook&amp;diff=13179"/>
		<updated>2007-02-26T06:46:06Z</updated>

		<summary type="html">&lt;p&gt;Carigorp Matzerath: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{LSL_Function&lt;br /&gt;
|func_id=294|func_sleep=0.0|func_energy=10.0&lt;br /&gt;
|func=llForceMouselook&lt;br /&gt;
|p1_type=integer&lt;br /&gt;
|p1_name=mouselook&lt;br /&gt;
|p1_desc=boolean, If {{LSLG|TRUE}} any avatar that sits on this object is forced into {{LSLG|mouselook}} mode.&amp;lt;br/&amp;gt;{{LSLG|FALSE}} undoes this setting.&lt;br /&gt;
|func_footnote&lt;br /&gt;
|func_desc=Sets if a sitting avatar should be forced into {{LSLG|mouselook}} mode upon sitting on the object.&lt;br /&gt;
|return_text&lt;br /&gt;
|spec&lt;br /&gt;
|caveats=*The user may exit mouselook mode at any time.&lt;br /&gt;
**This can be detected by polling {{LSLG|llGetAgentInfo}}.&lt;br /&gt;
|constants&lt;br /&gt;
|examples=&lt;br /&gt;
&#039;&#039;&#039;Force Mouselook on Sit&#039;&#039;&#039;&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
default&lt;br /&gt;
{&lt;br /&gt;
    state_entry()&lt;br /&gt;
    {&lt;br /&gt;
        llSitTarget(&amp;lt;0,0,0.1&amp;gt;,ZERO_ROTATION); //needed for AvatarOnSitTarget to work. Vector values must not all be set to 0.&lt;br /&gt;
    }&lt;br /&gt;
    changed(integer change) //event changed&lt;br /&gt;
    {&lt;br /&gt;
        if (change &amp;amp; CHANGED_LINK) //event changed and it has to do with linking or avatar sitting&lt;br /&gt;
        if (llAvatarOnSitTarget() != NULL_KEY) //the changed event is an avatar sitting&lt;br /&gt;
        llForceMouselook(TRUE); //force into mouselook on sit&lt;br /&gt;
    }&lt;br /&gt;
&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
|helpers&lt;br /&gt;
|also_functions=*{{LSLG|llAvatarOnSitTarget}}&lt;br /&gt;
*{{LSLG|llGetAgentInfo}}&lt;br /&gt;
|also_events&lt;br /&gt;
|also_tests&lt;br /&gt;
|also_articles&lt;br /&gt;
|notes&lt;br /&gt;
|permission&lt;br /&gt;
|negative_index&lt;br /&gt;
|cat1&lt;br /&gt;
|cat2&lt;br /&gt;
|cat3&lt;br /&gt;
|cat4=Stub&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>Carigorp Matzerath</name></author>
	</entry>
	<entry>
		<id>https://wiki.secondlife.com/w/index.php?title=LlForceMouselook&amp;diff=13178</id>
		<title>LlForceMouselook</title>
		<link rel="alternate" type="text/html" href="https://wiki.secondlife.com/w/index.php?title=LlForceMouselook&amp;diff=13178"/>
		<updated>2007-02-26T06:44:29Z</updated>

		<summary type="html">&lt;p&gt;Carigorp Matzerath: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{LSL_Function&lt;br /&gt;
|func_id=294|func_sleep=0.0|func_energy=10.0&lt;br /&gt;
|func=llForceMouselook&lt;br /&gt;
|p1_type=integer&lt;br /&gt;
|p1_name=mouselook&lt;br /&gt;
|p1_desc=boolean, If {{LSLG|TRUE}} any avatar that sits on this object is forced into {{LSLG|mouselook}} mode.&amp;lt;br/&amp;gt;{{LSLG|FALSE}} undoes this setting.&lt;br /&gt;
|func_footnote&lt;br /&gt;
|func_desc=Sets if a sitting avatar should be forced into {{LSLG|mouselook}} mode upon sitting on the object.&lt;br /&gt;
|return_text&lt;br /&gt;
|spec&lt;br /&gt;
|caveats=*The user may exit mouselook mode at any time.&lt;br /&gt;
**This can be detected by polling {{LSLG|llGetAgentInfo}}.&lt;br /&gt;
|constants&lt;br /&gt;
|examples=&lt;br /&gt;
&#039;&#039;&#039;Force Mouselook on Sit&#039;&#039;&#039;&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
default&lt;br /&gt;
{&lt;br /&gt;
    state_entry()&lt;br /&gt;
    {&lt;br /&gt;
        llSitTarget(&amp;lt;0,0,0.1&amp;gt;,ZERO_ROTATION); //needed for AvatarOnSitTarget to work. All vector values must not all be set to 0.&lt;br /&gt;
    }&lt;br /&gt;
    changed(integer change) //event changed&lt;br /&gt;
    {&lt;br /&gt;
        if (change &amp;amp; CHANGED_LINK) //event changed and it has to do with linking or avatar sitting&lt;br /&gt;
        if (llAvatarOnSitTarget() != NULL_KEY) //the changed event is an avatar sitting&lt;br /&gt;
        llForceMouselook(TRUE); //force into mouselook on sit&lt;br /&gt;
    }&lt;br /&gt;
&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
|helpers&lt;br /&gt;
|also_functions=*{{LSLG|llAvatarOnSitTarget}}&lt;br /&gt;
*{{LSLG|llGetAgentInfo}}&lt;br /&gt;
|also_events&lt;br /&gt;
|also_tests&lt;br /&gt;
|also_articles&lt;br /&gt;
|notes&lt;br /&gt;
|permission&lt;br /&gt;
|negative_index&lt;br /&gt;
|cat1&lt;br /&gt;
|cat2&lt;br /&gt;
|cat3&lt;br /&gt;
|cat4=Stub&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>Carigorp Matzerath</name></author>
	</entry>
	<entry>
		<id>https://wiki.secondlife.com/w/index.php?title=LlUnSit&amp;diff=13177</id>
		<title>LlUnSit</title>
		<link rel="alternate" type="text/html" href="https://wiki.secondlife.com/w/index.php?title=LlUnSit&amp;diff=13177"/>
		<updated>2007-02-26T06:42:54Z</updated>

		<summary type="html">&lt;p&gt;Carigorp Matzerath: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{LSL_Function&lt;br /&gt;
|func_id=220|func_sleep=0.0|func_energy=10.0&lt;br /&gt;
|sort=UnSit|func=llUnSit&lt;br /&gt;
|p1_type=key|p1_name=id&lt;br /&gt;
|func_footnote&lt;br /&gt;
|func_desc=If agent identified by &#039;&#039;&#039;id&#039;&#039;&#039; is sitting on the object the script is attached to or is over land owned by the objects owner, the agent is forced to stand up&lt;br /&gt;
|return_text&lt;br /&gt;
|spec&lt;br /&gt;
|caveats&lt;br /&gt;
|constants&lt;br /&gt;
|examples=&lt;br /&gt;
&#039;&#039;&#039;Unsit on Sit&#039;&#039;&#039;&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
default&lt;br /&gt;
{&lt;br /&gt;
    state_entry()&lt;br /&gt;
    {&lt;br /&gt;
        llSitTarget(&amp;lt;0,0,0.1&amp;gt;,ZERO_ROTATION); //needed for llAvatarOnSitTarget to work. Vector values must not all be set to 0.&lt;br /&gt;
    }&lt;br /&gt;
    changed(integer change) //event changed&lt;br /&gt;
    {&lt;br /&gt;
        if (change &amp;amp; CHANGED_LINK) //event changed and it has something to do with linking or avatar sitting&lt;br /&gt;
        if (llAvatarOnSitTarget() != NULL_KEY) //the changed event is an avatar sitting&lt;br /&gt;
        llUnSit(llAvatarOnSitTarget()); //unsit the avatar on the sit target&lt;br /&gt;
    }&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
|helpers&lt;br /&gt;
|also_functions&lt;br /&gt;
|also_events&lt;br /&gt;
|also_articles&lt;br /&gt;
|also_tests&lt;br /&gt;
|notes&lt;br /&gt;
|permission&lt;br /&gt;
|negative_index&lt;br /&gt;
|cat1=Land&lt;br /&gt;
|cat2=Sit&lt;br /&gt;
|cat3&lt;br /&gt;
|cat4&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>Carigorp Matzerath</name></author>
	</entry>
	<entry>
		<id>https://wiki.secondlife.com/w/index.php?title=LlForceMouselook&amp;diff=13176</id>
		<title>LlForceMouselook</title>
		<link rel="alternate" type="text/html" href="https://wiki.secondlife.com/w/index.php?title=LlForceMouselook&amp;diff=13176"/>
		<updated>2007-02-26T06:38:28Z</updated>

		<summary type="html">&lt;p&gt;Carigorp Matzerath: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{LSL_Function&lt;br /&gt;
|func_id=294|func_sleep=0.0|func_energy=10.0&lt;br /&gt;
|func=llForceMouselook&lt;br /&gt;
|p1_type=integer&lt;br /&gt;
|p1_name=mouselook&lt;br /&gt;
|p1_desc=boolean, If {{LSLG|TRUE}} any avatar that sits on this object is forced into {{LSLG|mouselook}} mode.&amp;lt;br/&amp;gt;{{LSLG|FALSE}} undoes this setting.&lt;br /&gt;
|func_footnote&lt;br /&gt;
|func_desc=Sets if a sitting avatar should be forced into {{LSLG|mouselook}} mode upon sitting on the object.&lt;br /&gt;
|return_text&lt;br /&gt;
|spec&lt;br /&gt;
|caveats=*The user may exit mouselook mode at any time.&lt;br /&gt;
**This can be detected by polling {{LSLG|llGetAgentInfo}}.&lt;br /&gt;
|constants&lt;br /&gt;
|examples=&lt;br /&gt;
&#039;&#039;&#039;Force Mouselook on Sit&#039;&#039;&#039;&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
default&lt;br /&gt;
{&lt;br /&gt;
    state_entry()&lt;br /&gt;
    {&lt;br /&gt;
        llSitTarget(&amp;lt;0,0,0.1&amp;gt;,ZERO_ROTATION); //needed for AvatarOnSitTarget to work. Must not all be set to 0.&lt;br /&gt;
    }&lt;br /&gt;
    changed(integer change) //event changed&lt;br /&gt;
    {&lt;br /&gt;
        if (change &amp;amp; CHANGED_LINK) //event changed and it has to do with linking or avatar sitting&lt;br /&gt;
        if (llAvatarOnSitTarget() != NULL_KEY) //the changed event is an avatar sitting&lt;br /&gt;
        llForceMouselook(TRUE); //force into mouselook on sit&lt;br /&gt;
    }&lt;br /&gt;
&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
|helpers&lt;br /&gt;
|also_functions=*{{LSLG|llAvatarOnSitTarget}}&lt;br /&gt;
*{{LSLG|llGetAgentInfo}}&lt;br /&gt;
|also_events&lt;br /&gt;
|also_tests&lt;br /&gt;
|also_articles&lt;br /&gt;
|notes&lt;br /&gt;
|permission&lt;br /&gt;
|negative_index&lt;br /&gt;
|cat1&lt;br /&gt;
|cat2&lt;br /&gt;
|cat3&lt;br /&gt;
|cat4=Stub&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>Carigorp Matzerath</name></author>
	</entry>
	<entry>
		<id>https://wiki.secondlife.com/w/index.php?title=LlForceMouselook&amp;diff=13175</id>
		<title>LlForceMouselook</title>
		<link rel="alternate" type="text/html" href="https://wiki.secondlife.com/w/index.php?title=LlForceMouselook&amp;diff=13175"/>
		<updated>2007-02-26T05:43:04Z</updated>

		<summary type="html">&lt;p&gt;Carigorp Matzerath: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{LSL_Function&lt;br /&gt;
|func_id=294|func_sleep=0.0|func_energy=10.0&lt;br /&gt;
|func=llForceMouselook&lt;br /&gt;
|p1_type=integer&lt;br /&gt;
|p1_name=mouselook&lt;br /&gt;
|p1_desc=boolean, If {{LSLG|TRUE}} any avatar that sits on this object is forced into {{LSLG|mouselook}} mode.&amp;lt;br/&amp;gt;{{LSLG|FALSE}} undoes this setting.&lt;br /&gt;
|func_footnote&lt;br /&gt;
|func_desc=Sets if a sitting avatar should be forced into {{LSLG|mouselook}} mode upon sitting on the object.&lt;br /&gt;
|return_text&lt;br /&gt;
|spec&lt;br /&gt;
|caveats=*The user may exit mouselook mode at any time.&lt;br /&gt;
**This can be detected by polling {{LSLG|llGetAgentInfo}}.&lt;br /&gt;
|constants&lt;br /&gt;
|examples=&lt;br /&gt;
&#039;&#039;&#039;Force Mouselook on Sit&#039;&#039;&#039;&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
default&lt;br /&gt;
{&lt;br /&gt;
    changed(integer change) //event changed&lt;br /&gt;
    {&lt;br /&gt;
        if (change &amp;amp; CHANGED_LINK) //event changed and it has to do with linking or avatar sitting&lt;br /&gt;
        if (llAvatarOnSitTarget() != NULL_KEY) //the changed event is an avatar sitting&lt;br /&gt;
        llForceMouselook(TRUE); //force into mouselook on sit&lt;br /&gt;
    }&lt;br /&gt;
&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
|helpers&lt;br /&gt;
|also_functions=*{{LSLG|llAvatarOnSitTarget}}&lt;br /&gt;
*{{LSLG|llGetAgentInfo}}&lt;br /&gt;
|also_events&lt;br /&gt;
|also_tests&lt;br /&gt;
|also_articles&lt;br /&gt;
|notes&lt;br /&gt;
|permission&lt;br /&gt;
|negative_index&lt;br /&gt;
|cat1&lt;br /&gt;
|cat2&lt;br /&gt;
|cat3&lt;br /&gt;
|cat4=Stub&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>Carigorp Matzerath</name></author>
	</entry>
</feed>