<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.bzflag.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Tadd</id>
	<title>BZFlagWiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.bzflag.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Tadd"/>
	<link rel="alternate" type="text/html" href="https://wiki.bzflag.org/Special:Contributions/Tadd"/>
	<updated>2026-04-29T01:36:34Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.43.5</generator>
	<entry>
		<id>https://wiki.bzflag.org/index.php?title=Category:Map_Making&amp;diff=1834</id>
		<title>Category:Map Making</title>
		<link rel="alternate" type="text/html" href="https://wiki.bzflag.org/index.php?title=Category:Map_Making&amp;diff=1834"/>
		<updated>2007-04-07T19:54:15Z</updated>

		<summary type="html">&lt;p&gt;Tadd: /* Creating BZW files via scripting or trivial programming */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[BZFlag]] uses its own map file format called the [[BZW]] file. [[BZW]] files are text based and contain a list of objects and map options that are read by the [[BZFS]] server.&lt;br /&gt;
&lt;br /&gt;
== Map Creation Methods ==&lt;br /&gt;
[[BZFlag]] has several well practiced methods for the design of maps, from simple text editing, custom editors, to exporters for 3D modeling software. While basic dedicated map editors, such as BZEdit, can often only create simple objects, 3D modeling software can create complex custom [[mesh]] objects, but have a much steeper learning curve.&lt;br /&gt;
&lt;br /&gt;
=== Dedicated Map editors ===&lt;br /&gt;
Dedicated [[BZFlag]] map editors (i.e. written specifically for graphically editing [[BZW]] files) generally go by the name [[BZEdit]]. There are a number of versions of [[BZEdit]] that have been developed over the years, some of them sharing code, some of them not. Each editor has its own level of support for various map features. At this time there is no custom editor that supports every feature of the [[BZW]] format. In general, these will only support simple map objects such as a [[box]], a [[pyramid]] or a [[teleporter]].&lt;br /&gt;
&lt;br /&gt;
Editors supporting [[BZW]] 1.10 features&lt;br /&gt;
*[[BZEdit]]&lt;br /&gt;
*[[BZEditWin32]]&lt;br /&gt;
*[[BZFed]]&lt;br /&gt;
&lt;br /&gt;
Editors supporting some [[BZW]] 2.0 features.&lt;br /&gt;
*[[iBZEdit]]&lt;br /&gt;
*[[pyBZEdit]]&lt;br /&gt;
&lt;br /&gt;
=== Blender ===&lt;br /&gt;
The [http://www.blender.org/ blender] 3d modelling application features a plug-in called [[BZWTools]], which enables blender to read and write the [[BZW]] file format and to create [[BZW]] specific objects.  This is the preferred method of creating and editing [[BZW]] 2.0 map files. Tutorials on using blender (not specific to BZFlag) can be found on the [http://www.blender.org/tutorials-help/tutorials/ blender web tutorials] pages.&lt;br /&gt;
&lt;br /&gt;
=== Wings 3D ===&lt;br /&gt;
[http://www.wings3d.com/ Wings 3D] is a good modeler to use if you&#039;re new modeling. It has a much smaller learning curve than Blender, although it doesn&#039;t have as many features. There is also a plugin (which you can download [http://trepan.bzflag.bz/wings3d_to_bzw_1.1.tar.gz here]) created by trepan which allows you to export objects to a [[BZW]] file.  It is not widely know that you can export a bzflag map from the actual bzflag client in .obj format.  To do so, you must connect to a server hosting the [[BZW]] map you would like to download and type &#039;&#039;/saveworld -o &amp;quot;mapname.obj&amp;quot;&#039;&#039;.  This will allow you to then import the .obj file into [http://www.wings3d.com/ Wings 3D] and edit the map.  Then you can use the  [http://trepan.bzflag.bz/wings3d_to_bzw_1.1.tar.gz exporter] created by trepan which allows you to export objects to a [[BZW]] file.&lt;br /&gt;
&lt;br /&gt;
=== Creating BZW files via scripting or trivial programming ===&lt;br /&gt;
Several of the existing BZFLAG maps are created using a trivial application custom created for the purpose of generating each map.  The application/program consists of print statements that output BZW file primitives (boxes, pyramids, meshes).  This method, using Perl, visual basic or C, allows re-use of the print statements with variables, for relatively fast creation of nearly identical objects.  Once a coder creates a box primitive, for instance, another box can be created with a simple call to the same set of print statements but with different size or location arguments.  The sets of print statements are then collected by the coder to create a library of available primitives (box, cylinder, fancy-teleporter, cage) that can be used again and again.  The library of primitives may then be used to create additional maps but without all of the original work required to make the first map.  &lt;br /&gt;
The flaws in using this method compared to a graphical modeller or even bzedit are:&lt;br /&gt;
representation of the work are not available without first launching a bzflag client to look at the map;  &lt;br /&gt;
Errors in the library or in calls might make the map unusable but with only visual basic, Perl or C compiler output as a clue;  &lt;br /&gt;
The map is created in a text and syntax intensive process that may not be tollerated by many otherwise creative individuals.  &lt;br /&gt;
&lt;br /&gt;
The advantage of this method is that the library is relatively easy to improve compared to bzedit and new features of bzflag are easily applied.  In addition, the ability to replicate structures in a for-next loop context allow for repetitive or stepped structures with more rapidity than other mapping methods.&lt;br /&gt;
&lt;br /&gt;
=== Editing by Hand ===&lt;br /&gt;
The last method of creating maps is simply coding them by hand as text files using the raw [[BZW]] structures. This is still one of the most common ways that people create and edit maps, and can be very fun and challenging. This is easilly done in any text editor, for example NotePad on Windows, and TextEdit on Mac OS X.&lt;br /&gt;
&lt;br /&gt;
Most maps made by hand tend to be fairly simple, though experienced mappers have made some extraordinary maps in this way. The reason for the popularity of the &#039;hand made&#039; approach is partly because of the simple structure of the [[BZW]] code, but also the fact that, until recently, there were no graphical editors available for operating systems like Mac OS X.&lt;br /&gt;
&lt;br /&gt;
Maps that contain 2.0 objects (such as [[mesh]]) tend to have been either completely made in a text editor, or partly modeled in 3D modeling software, and later manipulated in text format.&lt;br /&gt;
&lt;br /&gt;
[[Category:Server]]&lt;/div&gt;</summary>
		<author><name>Tadd</name></author>
	</entry>
	<entry>
		<id>https://wiki.bzflag.org/index.php?title=Category:Map_Making&amp;diff=1833</id>
		<title>Category:Map Making</title>
		<link rel="alternate" type="text/html" href="https://wiki.bzflag.org/index.php?title=Category:Map_Making&amp;diff=1833"/>
		<updated>2007-04-07T19:51:25Z</updated>

		<summary type="html">&lt;p&gt;Tadd: add comments about using scripts and C to create maps.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[BZFlag]] uses its own map file format called the [[BZW]] file. [[BZW]] files are text based and contain a list of objects and map options that are read by the [[BZFS]] server.&lt;br /&gt;
&lt;br /&gt;
== Map Creation Methods ==&lt;br /&gt;
[[BZFlag]] has several well practiced methods for the design of maps, from simple text editing, custom editors, to exporters for 3D modeling software. While basic dedicated map editors, such as BZEdit, can often only create simple objects, 3D modeling software can create complex custom [[mesh]] objects, but have a much steeper learning curve.&lt;br /&gt;
&lt;br /&gt;
=== Dedicated Map editors ===&lt;br /&gt;
Dedicated [[BZFlag]] map editors (i.e. written specifically for graphically editing [[BZW]] files) generally go by the name [[BZEdit]]. There are a number of versions of [[BZEdit]] that have been developed over the years, some of them sharing code, some of them not. Each editor has its own level of support for various map features. At this time there is no custom editor that supports every feature of the [[BZW]] format. In general, these will only support simple map objects such as a [[box]], a [[pyramid]] or a [[teleporter]].&lt;br /&gt;
&lt;br /&gt;
Editors supporting [[BZW]] 1.10 features&lt;br /&gt;
*[[BZEdit]]&lt;br /&gt;
*[[BZEditWin32]]&lt;br /&gt;
*[[BZFed]]&lt;br /&gt;
&lt;br /&gt;
Editors supporting some [[BZW]] 2.0 features.&lt;br /&gt;
*[[iBZEdit]]&lt;br /&gt;
*[[pyBZEdit]]&lt;br /&gt;
&lt;br /&gt;
=== Blender ===&lt;br /&gt;
The [http://www.blender.org/ blender] 3d modelling application features a plug-in called [[BZWTools]], which enables blender to read and write the [[BZW]] file format and to create [[BZW]] specific objects.  This is the preferred method of creating and editing [[BZW]] 2.0 map files. Tutorials on using blender (not specific to BZFlag) can be found on the [http://www.blender.org/tutorials-help/tutorials/ blender web tutorials] pages.&lt;br /&gt;
&lt;br /&gt;
=== Wings 3D ===&lt;br /&gt;
[http://www.wings3d.com/ Wings 3D] is a good modeler to use if you&#039;re new modeling. It has a much smaller learning curve than Blender, although it doesn&#039;t have as many features. There is also a plugin (which you can download [http://trepan.bzflag.bz/wings3d_to_bzw_1.1.tar.gz here]) created by trepan which allows you to export objects to a [[BZW]] file.  It is not widely know that you can export a bzflag map from the actual bzflag client in .obj format.  To do so, you must connect to a server hosting the [[BZW]] map you would like to download and type &#039;&#039;/saveworld -o &amp;quot;mapname.obj&amp;quot;&#039;&#039;.  This will allow you to then import the .obj file into [http://www.wings3d.com/ Wings 3D] and edit the map.  Then you can use the  [http://trepan.bzflag.bz/wings3d_to_bzw_1.1.tar.gz exporter] created by trepan which allows you to export objects to a [[BZW]] file.&lt;br /&gt;
&lt;br /&gt;
=== Creating BZW files via scripting or trivial programming ===&lt;br /&gt;
Several of the existing BZFLAG maps are created using a trivial application custom created for the purpose of generating each map.  The application/program consists of print statements that output BZW file primitives (boxes, pyramids, meshes).  This method, using Perl, visual basic or C, allows re-use of the print statements with variables, for relatively fast creation of nearly identical objects.  Once a coder creates a box primitive, for instance, another box can be created with a simple call to the same set of print statements but with different size or location arguments.  The sets of print statements are then collected by the coder to create a library of available primitives (box, cylinder, fancy-teleporter, cage) that can be used again and again with modifications.  The library of primitives may then be used to create additional maps but without all of the original work required to make the first map.  &lt;br /&gt;
The flaws in using this method compared to a graphical modeller or even bzedit are:&lt;br /&gt;
representation of the work are not available without first launching a bzflag client to look at the map;  &lt;br /&gt;
Errors in the library or in calls might make the map unusable but with only visual basic, Perl or C compiler output as a clue;  &lt;br /&gt;
The map is created in a text and syntax intensive process that may not be tollerated by many otherwise creative individuals.  &lt;br /&gt;
&lt;br /&gt;
The advantage of this method is that the library is relatively easy to improve compared to bzedit and new features of bzflag are easily applied.  In addition, the ability to replicate structures in a for-next loop context allow for repetitive or stepped structures with more rapidity than other mapping methods.  &lt;br /&gt;
&lt;br /&gt;
=== Editing by Hand ===&lt;br /&gt;
The last method of creating maps is simply coding them by hand as text files using the raw [[BZW]] structures. This is still one of the most common ways that people create and edit maps, and can be very fun and challenging. This is easilly done in any text editor, for example NotePad on Windows, and TextEdit on Mac OS X.&lt;br /&gt;
&lt;br /&gt;
Most maps made by hand tend to be fairly simple, though experienced mappers have made some extraordinary maps in this way. The reason for the popularity of the &#039;hand made&#039; approach is partly because of the simple structure of the [[BZW]] code, but also the fact that, until recently, there were no graphical editors available for operating systems like Mac OS X.&lt;br /&gt;
&lt;br /&gt;
Maps that contain 2.0 objects (such as [[mesh]]) tend to have been either completely made in a text editor, or partly modeled in 3D modeling software, and later manipulated in text format.&lt;br /&gt;
&lt;br /&gt;
[[Category:Server]]&lt;/div&gt;</summary>
		<author><name>Tadd</name></author>
	</entry>
	<entry>
		<id>https://wiki.bzflag.org/index.php?title=Server_Permissions&amp;diff=1699</id>
		<title>Server Permissions</title>
		<link rel="alternate" type="text/html" href="https://wiki.bzflag.org/index.php?title=Server_Permissions&amp;diff=1699"/>
		<updated>2007-03-31T19:35:44Z</updated>

		<summary type="html">&lt;p&gt;Tadd: add hideAdmin perm&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Permissions can be assigned to groups and individual players on a server. &lt;br /&gt;
These permissions control what a player may do on the server. Many of the permissions control which [[Client_Commands|commands]] can be used by players.&lt;br /&gt;
&lt;br /&gt;
{|{{Prettytable}}&lt;br /&gt;
|-&lt;br /&gt;
| {{Hl3}} |&#039;&#039;&#039;Permission&#039;&#039;&#039; &lt;br /&gt;
| {{Hl3}} |&#039;&#039;&#039;Description&#039;&#039;&#039; &lt;br /&gt;
|-&lt;br /&gt;
|  actionMessages  ||  Allowed to use &#039;&#039;&#039;&#039;&#039;/me&#039;&#039;&#039;&#039;&#039;                                                &lt;br /&gt;
|-&lt;br /&gt;
|  adminMessageReceive  ||  Player receives messages sent to the admin channel                  &lt;br /&gt;
|-&lt;br /&gt;
|  adminMessageSend  ||  Player may send messages to the admin channel                       &lt;br /&gt;
|-&lt;br /&gt;
|  antiban  ||  Player is immune to &#039;&#039;&#039;&#039;&#039;/ban&#039;&#039;&#039;&#039;&#039;                                          &lt;br /&gt;
|-&lt;br /&gt;
|  antideregister  ||  Player cannot be deregistered with &#039;&#039;&#039;&#039;&#039;/deregister&#039;&#039;&#039;&#039;&#039;                    &lt;br /&gt;
|-&lt;br /&gt;
|  antikick  ||  Player is immune to &#039;&#039;&#039;&#039;&#039;/kick&#039;&#039;&#039;&#039;&#039;                                         &lt;br /&gt;
|-&lt;br /&gt;
|  antikill  ||  Player is immune to &#039;&#039;&#039;&#039;&#039;/kill&#039;&#039;&#039;&#039;&#039;                                         &lt;br /&gt;
|-&lt;br /&gt;
|  antipoll  ||  Player is immune to &#039;&#039;&#039;&#039;&#039;/poll&#039;&#039;&#039;&#039;&#039;                                         &lt;br /&gt;
|-&lt;br /&gt;
|  antipollban  ||  Player is immune banning with &#039;&#039;&#039;&#039;&#039;/poll&#039;&#039;&#039;&#039;&#039;                               &lt;br /&gt;
|-&lt;br /&gt;
|  antipollkick  ||  Player is immune kicking with &#039;&#039;&#039;&#039;&#039;/poll&#039;&#039;&#039;&#039;&#039;                               &lt;br /&gt;
|-&lt;br /&gt;
|  antipollkill  ||  Player is immune killing with &#039;&#039;&#039;&#039;&#039;/poll&#039;&#039;&#039;&#039;&#039;                               &lt;br /&gt;
|-&lt;br /&gt;
|  ban  ||  Player may ban other players with &#039;&#039;&#039;&#039;&#039;/ban&#039;&#039;&#039;&#039;&#039;                            &lt;br /&gt;
|-&lt;br /&gt;
|  banlist  ||  Player may list active bans with &#039;&#039;&#039;&#039;&#039;/banlist&#039;&#039;&#039;&#039;&#039;                         &lt;br /&gt;
|-&lt;br /&gt;
|  countdown  ||  Player may issue &#039;&#039;&#039;&#039;&#039;/countdown&#039;&#039;&#039;&#039;&#039;                                       &lt;br /&gt;
|-&lt;br /&gt;
|  date  ||  Player may query the date and time from the server with &#039;&#039;&#039;&#039;&#039;/date&#039;&#039;&#039;&#039;&#039;     &lt;br /&gt;
|-&lt;br /&gt;
|  endGame  ||  Player may issue &#039;&#039;&#039;&#039;&#039;/endgame&#039;&#039;&#039;&#039;&#039;                                         &lt;br /&gt;
|-&lt;br /&gt;
|  flagHistory  ||  Player allowed to use &#039;&#039;&#039;&#039;&#039;/flaghistory&#039;&#039;&#039;&#039;&#039;                                &lt;br /&gt;
|-&lt;br /&gt;
|  flagMaster  ||  Player allowed to use &#039;&#039;&#039;&#039;&#039;/flag give&#039;&#039;&#039;&#039;&#039; and &#039;&#039;&#039;&#039;&#039;/flag take&#039;&#039;&#039;&#039;&#039;                 &lt;br /&gt;
|-&lt;br /&gt;
|  flagMod  ||  Player allowed to use &#039;&#039;&#039;&#039;&#039;/flag&#039;&#039;&#039;&#039;&#039;                                       &lt;br /&gt;
|-&lt;br /&gt;
|  hideAdmin  ||  Player doesn&#039;t show @                                  &lt;br /&gt;
|-&lt;br /&gt;
|  idlestats  ||  Player allowed to use &#039;&#039;&#039;&#039;&#039;/idlestats&#039;&#039;&#039;&#039;&#039;                                  &lt;br /&gt;
|-&lt;br /&gt;
|  info  ||                                                                      &lt;br /&gt;
|-&lt;br /&gt;
|  kick  ||  Player allowed to use &#039;&#039;&#039;&#039;&#039;/kick&#039;&#039;&#039;&#039;&#039;                                       &lt;br /&gt;
|-&lt;br /&gt;
|  kill  ||  Player allowed to use &#039;&#039;&#039;&#039;&#039;/kill&#039;&#039;&#039;&#039;&#039;                                       &lt;br /&gt;
|-&lt;br /&gt;
|  lagwarn  ||  Player may use &#039;&#039;&#039;&#039;&#039;/lagwarn&#039;&#039;&#039;&#039;&#039; to query or set lagwarn variable          &lt;br /&gt;
|-&lt;br /&gt;
|  listPerms  ||                                                                      &lt;br /&gt;
|-&lt;br /&gt;
|  masterban  ||  Player may use &#039;&#039;&#039;&#039;&#039;/masterban&#039;&#039;&#039;&#039;&#039;                                         &lt;br /&gt;
|-&lt;br /&gt;
|  mute  ||  Player may use &#039;&#039;&#039;&#039;&#039;/mute&#039;&#039;&#039;&#039;&#039;                                              &lt;br /&gt;
|-&lt;br /&gt;
|  playerList  ||  Player may use &#039;&#039;&#039;&#039;&#039;/playerlist&#039;&#039;&#039;&#039;&#039;                                        &lt;br /&gt;
|-&lt;br /&gt;
|  poll  ||  Player may use &#039;&#039;&#039;&#039;&#039;/poll&#039;&#039;&#039;&#039;&#039;                                              &lt;br /&gt;
|-&lt;br /&gt;
|  pollBan  ||  Player may use &#039;&#039;&#039;&#039;&#039;/poll ban&#039;&#039;&#039;&#039;&#039;                                          &lt;br /&gt;
|-&lt;br /&gt;
|  pollFlagReset  ||  Player may use &#039;&#039;&#039;&#039;&#039;/poll flagreset&#039;&#039;&#039;&#039;&#039;                                    &lt;br /&gt;
|-&lt;br /&gt;
|  pollKick  ||  Player may use &#039;&#039;&#039;&#039;&#039;/poll kick&#039;&#039;&#039;&#039;&#039;                                         &lt;br /&gt;
|-&lt;br /&gt;
|  pollKill  ||  Player may use &#039;&#039;&#039;&#039;&#039;/poll kill&#039;&#039;&#039;&#039;&#039;                                         &lt;br /&gt;
|-&lt;br /&gt;
|  pollSet   ||  Player may use &#039;&#039;&#039;&#039;&#039;/poll set&#039;&#039;&#039;&#039;&#039;                                          &lt;br /&gt;
|-&lt;br /&gt;
|  privateMessage  ||  Player may send private messages with &#039;.&#039;                           &lt;br /&gt;
|-&lt;br /&gt;
|  record  ||  Player may use &#039;&#039;&#039;&#039;&#039;/record&#039;&#039;&#039;&#039;&#039;                                            &lt;br /&gt;
|-&lt;br /&gt;
|  rejoin  ||  Allows instant rejoin, regardless of &#039;&#039;&#039;&#039;&#039;_rejoinTime&#039;&#039;&#039;&#039;&#039;                    &lt;br /&gt;
|-&lt;br /&gt;
|  removePerms  ||  May remove permissions from players                                 &lt;br /&gt;
|-&lt;br /&gt;
|  replay  ||  Player allowed to use &#039;&#039;&#039;&#039;&#039;/replay&#039;&#039;&#039;&#039;&#039;                                     &lt;br /&gt;
|-&lt;br /&gt;
|  requireIdentify  ||  Registered callsigns must identify before they are allowed to spawn &lt;br /&gt;
|-&lt;br /&gt;
|  say  ||  Player allowed to use &#039;&#039;&#039;&#039;&#039;/say&#039;&#039;&#039;&#039;&#039;                                        &lt;br /&gt;
|-&lt;br /&gt;
|  sendHelp  ||  Player allowed to use &#039;&#039;&#039;&#039;&#039;/sendhelp&#039;&#039;&#039;&#039;&#039;                                   &lt;br /&gt;
|-&lt;br /&gt;
|  setAll  ||  Grants all set* perms                                               &lt;br /&gt;
|-&lt;br /&gt;
|  setPerms  ||  May grant permissions to players                                    &lt;br /&gt;
|-&lt;br /&gt;
|  setVar  ||  Player allowed ot use &#039;&#039;&#039;&#039;&#039;/set&#039;&#039;&#039;&#039;&#039;                                        &lt;br /&gt;
|-&lt;br /&gt;
|  shortBan  ||  Allowed bans with limited durations only                            &lt;br /&gt;
|-&lt;br /&gt;
|  showOthers  ||  May use &#039;&#039;&#039;&#039;&#039;/showgroup&#039;&#039;&#039;&#039;&#039; on other callsigns                             &lt;br /&gt;
|-&lt;br /&gt;
|  shutdownServer  ||  Player allowed to use &#039;&#039;&#039;&#039;&#039;/shutdownserver&#039;&#039;&#039;&#039;&#039;                               &lt;br /&gt;
|-&lt;br /&gt;
|  spawn  ||  Join game as a player. Observers don&#039;t need this permission.        &lt;br /&gt;
|-&lt;br /&gt;
|  superkill  ||  Player allowed to use &#039;&#039;&#039;&#039;&#039;/superkill&#039;&#039;&#039;&#039;&#039;                                  &lt;br /&gt;
|-&lt;br /&gt;
|  talk  ||  Allows player to send messages.                                     &lt;br /&gt;
|-&lt;br /&gt;
|  unban  ||  Player may use &#039;&#039;&#039;&#039;&#039;/unban&#039;&#039;&#039;&#039;&#039;                                             &lt;br /&gt;
|-&lt;br /&gt;
|  unmute  ||  Player may use &#039;&#039;&#039;&#039;&#039;/unban&#039;&#039;&#039;&#039;&#039;                                             &lt;br /&gt;
|-&lt;br /&gt;
|  veto  ||  Player may use &#039;&#039;&#039;&#039;&#039;/veto&#039;&#039;&#039;&#039;&#039;                                              &lt;br /&gt;
|-&lt;br /&gt;
|  viewReports  ||  Player may use &#039;&#039;&#039;&#039;&#039;/viewreports&#039;&#039;&#039;&#039;&#039;                                       &lt;br /&gt;
|-&lt;br /&gt;
|  vote  ||  Player may use &#039;&#039;&#039;&#039;&#039;/vote&#039;&#039;&#039;&#039;&#039;                                              &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
[[Category:Server]]&lt;/div&gt;</summary>
		<author><name>Tadd</name></author>
	</entry>
</feed>